Skip to content

Instantly share code, notes, and snippets.

@emeeks
Last active August 29, 2015 14:06
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 emeeks/28fcb6803748a31718d9 to your computer and use it in GitHub Desktop.
Save emeeks/28fcb6803748a31718d9 to your computer and use it in GitHub Desktop.
Dynamic Markers - d3.carto

Dynamic markers with d3.carto.map.

See also: Changing markers with d3.carto

This example simply shows that if your code can handle different types of SVG elements used as markers, then it can adjust those markers even when you've changed them from their default shape. If you click on any marker, it will show the network distance from that marker to all other markers (or gray if inaccessible). Even if you change the markers to little mailboxes by clicking SVG Marker, clicking on a little mailbox will still show network distance, this time with little mailboxes.

Little mailbox icon is public domain, as all icons should be.

path,circle,rect,polygon,ellipse,line {
vector-effect: non-scaling-stroke;
}
svg, canvas {
top: 0;
}
#d3MapZoomBox {
position: absolute;
z-index: 10;
height: 100px;
width: 25px;
top: 10px;
right: 50px;
}
#d3MapZoomBox > button {
height:25px;
width: 25px;
line-height: 25px;
}
.d3MapControlsBox > button {
font-size:22px;
font-weight:900;
border: none;
height:25px;
width:25px;
background: rgba(35,31,32,.85);
color: white;
padding: 0;
cursor: pointer;
}
.d3MapControlsBox > button:hover {
background: black;
}
#d3MapPanBox {
position: absolute;
z-index: 10;
height: 100px;
width: 25px;
top: 60px;
right: 50px;
}
#d3MapPanBox > button {
height:25px;
width: 25px;
line-height: 25px;
}
#d3MapPanBox > button#left {
position: absolute;
left: -25px;
top: 10px;
}
#d3MapPanBox > button#right {
position: absolute;
right: -25px;
top: 10px;
}
#d3MapLayerBox {
position: relative;
z-index: 10;
height: 100px;
width: 120px;
top: 10px;
left: 10px;
overflow: auto;
color: white;
background: rgba(35,31,32,.85);
}
#d3MapLayerBox > div {
margin: 5px;
border: none;
}
#d3MapLayerBox ul {
list-style: none;
padding: 0;
margin: 0;
cursor: pointer;
}
#d3MapLayerBox li {
list-style: none;
padding: 0;
}
#d3MapLayerBox li:hover {
font-weight:700;
}
#d3MapLayerBox li input {
cursor: pointer;
}
div.d3MapModal {
position: absolute;
z-index: 11;
background: rgba(35,31,32,.90);
top: 50px;
left: 50px;
color: white;
max-width: 400px;
}
div.d3MapModalContent {
width:100%;
height: 100%;
overflow: auto;
}
div.d3MapModalContent > p {
padding: 0px 20px;
margin: 5px 0;
}
div.d3MapModalContent > h1 {
padding: 0px 20px;
font-size: 20px;
}
div.d3MapModalArrow {
content: "";
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid rgba(35,31,32,.90);
position: absolute;
bottom: -20px;
left: 33px;
}
#d3MapSVG {
}
rect.minimap-extent {
fill: rgba(200,255,255,0.35);
stroke: black;
stroke-width: 2px;
stroke-dasharray: 5 5;
}
circle.newpoints {
fill: black;
stroke: red;
stroke-width: 2px;
}
path.newfeatures {
fill: steelblue;
fill-opacity: .5;
stroke: pink;
stroke-width: 2px;
}
var Graph = (function (undefined) {
var extractKeys = function (obj) {
var keys = [], key;
for (key in obj) {
Object.prototype.hasOwnProperty.call(obj,key) && keys.push(key);
}
return keys;
}
var sorter = function (a, b) {
return parseFloat (a) - parseFloat (b);
}
var findPaths = function (map, start, end, infinity) {
infinity = infinity || Infinity;
var costs = {},
open = {'0': [start]},
predecessors = {},
keys;
var addToOpen = function (cost, vertex) {
var key = "" + cost;
if (!open[key]) open[key] = [];
open[key].push(vertex);
}
costs[start] = 0;
while (open) {
if(!(keys = extractKeys(open)).length) break;
keys.sort(sorter);
var key = keys[0],
bucket = open[key],
node = bucket.shift(),
currentCost = parseFloat(key),
adjacentNodes = map[node] || {};
if (!bucket.length) delete open[key];
for (var vertex in adjacentNodes) {
if (Object.prototype.hasOwnProperty.call(adjacentNodes, vertex)) {
var cost = adjacentNodes[vertex],
totalCost = cost + currentCost,
vertexCost = costs[vertex];
if ((vertexCost === undefined) || (vertexCost > totalCost)) {
costs[vertex] = totalCost;
addToOpen(totalCost, vertex);
predecessors[vertex] = node;
}
}
}
}
if (costs[end] === undefined) {
return null;
} else {
return predecessors;
}
}
var extractShortest = function (predecessors, end) {
var nodes = [],
u = end;
while (u) {
nodes.push(u);
predecessor = predecessors[u];
u = predecessors[u];
}
nodes.reverse();
return nodes;
}
var findShortestPath = function (map, nodes) {
var start = nodes.shift(),
end,
predecessors,
path = [],
shortest;
while (nodes.length) {
end = nodes.shift();
predecessors = findPaths(map, start, end);
if (predecessors) {
shortest = extractShortest(predecessors, end);
if (nodes.length) {
path.push.apply(path, shortest.slice(0, -1));
} else {
return path.concat(shortest);
}
} else {
return null;
}
start = end;
}
}
var toArray = function (list, offset) {
try {
return Array.prototype.slice.call(list, offset);
} catch (e) {
var a = [];
for (var i = offset || 0, l = list.length; i < l; ++i) {
a.push(list[i]);
}
return a;
}
}
var Graph = function (map) {
this.map = map;
}
Graph.prototype.findShortestPath = function (start, end) {
if (Object.prototype.toString.call(start) === '[object Array]') {
return findShortestPath(this.map, start);
} else if (arguments.length === 2) {
return findShortestPath(this.map, [start, end]);
} else {
return findShortestPath(this.map, toArray(arguments));
}
}
Graph.findShortestPath = function (map, start, end) {
if (Object.prototype.toString.call(start) === '[object Array]') {
return findShortestPath(map, start);
} else if (arguments.length === 3) {
return findShortestPath(map, [start, end]);
} else {
return findShortestPath(map, toArray(arguments, 1));
}
}
return Graph;
})();
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.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Responsive Markers - d3.carto</title>
<meta charset="utf-8" />
<link type="text/css" rel="stylesheet" href="d3map.css" />
<link type="text/css" rel="stylesheet" href="https://raw.githubusercontent.com/emeeks/d3-carto-map/master/examples/example.css" />
</head>
<style>
html,body {
height: 100%;
width: 100%;
margin: 0;
}
#map {
height: 100%;
width: 100%;
position: absolute;
}
.reproject {
position: absolute;
z-index: 99;
left: 50px;
top: 250px;
}
.node {
fill: blue;
stroke: black;
stroke-width: 1
}
.markerButton {
position: fixed;
top: 20px;
z-index: 99;
cursor: pointer;
}
.roads {
fill: none;
stroke: brown;
stroke-width: 2px;
}
</style>
<script>
function rectangleMarker() {
d3.selectAll("g.marker").selectAll("*").remove();
d3.selectAll("g.marker").append("rect").attr("height", 10).attr("width", 10)
.attr("x", -5)
.attr("y", -5)
.style("fill", "yellow")
.style("stroke", "black")
.style("stroke-width", "1px")
}
function circleMarker() {
d3.selectAll("g.marker").selectAll("*").remove();
d3.selectAll("g.marker").append("circle").attr("r", 5)
.style("fill", "blue")
.style("stroke", "black")
.style("stroke-width", "1px")
}
function svgMarker() {
d3.selectAll("g.marker").selectAll("*").remove();
d3.html("icon_2330.svg", loadSVG);
function loadSVG(svgData) {
d3.select(svgData).selectAll("path").each(function(d) {
var that = this;
d3.selectAll("g.marker").each(
function() {
d3.select(this).node().appendChild(that.cloneNode(true));
}
)
})
d3.selectAll("g.marker").select("path");
}
}
function makeSomeMaps() {
pathSource = 0;
map = d3.carto.map();
d3.select("#map").call(map);
map.centerOn([-88,39],"latlong");
map.setScale(4);
map.refresh();
wcLayer = d3.carto.layer.tile();
wcLayer
.tileType("stamen")
.path("watercolor")
.label("Watercolor")
.visibility(true)
postLayer = d3.carto.layer.topojson();
postLayer
.path("uspost.topojson")
.label("Postal Routes")
.cssClass("roads")
.renderMode("svg")
.on("load", createMatrix);
map.addCartoLayer(wcLayer).addCartoLayer(postLayer);
function createMatrix() {
postdata = postLayer.features()
edgeList = [];
edgeMap = {};
nodes = [];
nodeHash = {};
for (x in postdata) {
var line = postdata[x].geometry.coordinates;
var lS = line[0];
var lE = line[line.length - 1];
var nA = [lS,lE];
for (y in nA) {
if (!nodeHash["node" + Math.ceil(nA[y][0] * 1000) + (nA[y][1] * 1000)]) {
var newNode = {label: "Node " + nodes.length, id: nodes.length.toString(), coordinates: [nA[y]], x: nA[y][0], y: nA[y][1]}
nodeHash["node" + Math.ceil(nA[y][0] * 1000) + (nA[y][1] * 1000)] = newNode;
nodes.push(newNode)
}
}
postdata[x].properties.source = nodeHash["node" + Math.ceil(lS[0] * 1000) + (lS[1] * 1000)];
postdata[x].properties.target = nodeHash["node" + Math.ceil(lE[0] * 1000) + (lE[1] * 1000)];
postdata[x].properties.cost = d3.geo.length(postdata[x]) * 6371;
}
nodeLayer = d3.carto.layer.xyArray();
nodeLayer
.features(nodes)
.label("Vertices")
.cssClass("node")
.renderMode("svg")
.x("x")
.y("y")
.markerSize(5)
.clickableFeatures(true)
.on("load", function() {nodeLayer.g().selectAll("g.marker").on("click", function(d) {flood(d.id)})});
map.addCartoLayer(nodeLayer);
for (x in postdata) {
if (edgeMap[postdata[x].properties.source.id]) {
edgeMap[postdata[x].properties.source.id][postdata[x].properties.target.id] = postdata[x].properties.cost;
}
else {
edgeMap[postdata[x].properties.source.id] = {};
edgeMap[postdata[x].properties.source.id][postdata[x].properties.target.id] = postdata[x].properties.cost;
}
if (edgeMap[postdata[x].properties.target.id]) {
edgeMap[postdata[x].properties.target.id][postdata[x].properties.source.id] = postdata[x].properties.cost;
}
else {
edgeMap[postdata[x].properties.target.id] = {};
edgeMap[postdata[x].properties.target.id][postdata[x].properties.source.id] = postdata[x].properties.cost;
}
}
graph = new Graph(edgeMap);
}
function flood(siteID) {
siteDistance = d3.keys(graph.map).map(function(d) {return Infinity});
siteDistance[siteID] = 0;
var map = graph.map;
var calculatedSites = [siteID];
var connectedSites = d3.keys(graph.map[siteID]);
var visitedSites = [siteID];
var sitesToVisit = [siteID];
var currentNode = siteID;
var currentCost = 0;
while (sitesToVisit.length > 0) {
sitesToVisit.splice(0,1);
for (x in connectedSites) {
if (calculatedSites.indexOf(connectedSites[x]) == -1) {
calculatedSites.push(connectedSites[x]);
siteDistance[connectedSites[x]] = currentCost + map[currentNode][connectedSites[x]];
}
else {
siteDistance[connectedSites[x]] = Math.min(currentCost + map[currentNode][connectedSites[x]], siteDistance[connectedSites[x]]);
}
if (visitedSites.indexOf(connectedSites[x]) == -1 && sitesToVisit.indexOf(connectedSites[x]) == -1) {
sitesToVisit.push(connectedSites[x]);
}
}
visitedSites.push(currentNode)
//sort sitesToVisit
sitesToVisit = sitesToVisit.sort(function(a,b) {
if (siteDistance[a] < siteDistance[b])
return -1;
if (siteDistance[a] > siteDistance[b])
return 1;
return 0;
})
currentNode = sitesToVisit[0];
currentCost = siteDistance[currentNode];
connectedSites = d3.keys(graph.map[currentNode]);
}
color = d3.scale.linear().domain([0,500,3500]).range(["green","yellow","red"])
nodeLayer.g().selectAll("g.marker").selectAll("*").style("fill", "lightgray")
.transition()
.delay(function(d) {return siteDistance[d.id] == Infinity ? 5000 : siteDistance[d.id] * 2})
.duration(1000)
.style("fill", function(d) {return siteDistance[d.id] == Infinity ? "gray" : color(siteDistance[d.id])})
}
}
</script>
<body onload="makeSomeMaps()">
<div id="map">
<button style="left: 140px;" class="markerButton" onclick="rectangleMarker();">Rectangle Marker</button>
<button style="left: 250px;" class="markerButton" onclick="circleMarker();">Circle Marker</button>
<button style="left: 338px;" class="markerButton" onclick="svgMarker();">SVG Marker</button>
</div>
<footer>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8" type="text/javascript"></script>
<script src="http://d3js.org/topojson.v1.min.js" type="text/javascript">
</script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js" type="text/javascript">
</script>
<script src="http://bl.ocks.org/emeeks/raw/f3105fda25ff785dc5ed/tile.js" type="text/javascript">
</script>
<script src="http://bl.ocks.org/emeeks/raw/f3105fda25ff785dc5ed/d3.quadtiles.js" type="text/javascript">
</script>
<script src="http://bl.ocks.org/emeeks/raw/f3105fda25ff785dc5ed/d3.geo.raster.js" type="text/javascript">
</script>
<script src="https://rawgit.com/emeeks/d3-carto-map/master/d3.carto.map.js" type="text/javascript">
</script>
<script src="dijkstra.js" type="text/javascript">
</script>
</footer>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"posts":{"type":"GeometryCollection","bbox":[-107.99105269882295,25.92291148058041,-66.97358588178298,46.22846234526105],"geometries":[{"type":"LineString","properties":{"OBJECTID":1,"Shape_Leng":746.714332708},"arcs":[0]},{"type":"LineString","properties":{"OBJECTID":2,"Shape_Leng":746.714332708},"arcs":[1]},{"type":"LineString","properties":{"OBJECTID":3,"Shape_Leng":746.714332708},"arcs":[2]},{"type":"LineString","properties":{"OBJECTID":4,"Shape_Leng":746.714332708},"arcs":[3]},{"type":"LineString","properties":{"OBJECTID":5,"Shape_Leng":746.714332708},"arcs":[4]},{"type":"LineString","properties":{"OBJECTID":6,"Shape_Leng":746.714332708},"arcs":[5]},{"type":"LineString","properties":{"OBJECTID":7,"Shape_Leng":746.714332708},"arcs":[6]},{"type":"LineString","properties":{"OBJECTID":8,"Shape_Leng":746.714332708},"arcs":[7]},{"type":"LineString","properties":{"OBJECTID":9,"Shape_Leng":746.714332708},"arcs":[8]},{"type":"LineString","properties":{"OBJECTID":10,"Shape_Leng":746.714332708},"arcs":[9]},{"type":"LineString","properties":{"OBJECTID":11,"Shape_Leng":746.714332708},"arcs":[10]},{"type":"LineString","properties":{"OBJECTID":12,"Shape_Leng":746.714332708},"arcs":[11]},{"type":"LineString","properties":{"OBJECTID":13,"Shape_Leng":746.714332708},"arcs":[-10]},{"type":"LineString","properties":{"OBJECTID":14,"Shape_Leng":746.714332708},"arcs":[9]},{"type":"LineString","properties":{"OBJECTID":15,"Shape_Leng":746.714332708},"arcs":[10]},{"type":"LineString","properties":{"OBJECTID":16,"Shape_Leng":746.714332708},"arcs":[12]},{"type":"LineString","properties":{"OBJECTID":17,"Shape_Leng":746.714332708},"arcs":[13]},{"type":"LineString","properties":{"OBJECTID":18,"Shape_Leng":746.714332708},"arcs":[14]},{"type":"LineString","properties":{"OBJECTID":19,"Shape_Leng":746.714332708},"arcs":[15]},{"type":"LineString","properties":{"OBJECTID":20,"Shape_Leng":746.714332708},"arcs":[16]},{"type":"LineString","properties":{"OBJECTID":21,"Shape_Leng":746.714332708},"arcs":[17]},{"type":"LineString","properties":{"OBJECTID":22,"Shape_Leng":746.714332708},"arcs":[18]},{"type":"LineString","properties":{"OBJECTID":23,"Shape_Leng":746.714332708},"arcs":[19]},{"type":"LineString","properties":{"OBJECTID":24,"Shape_Leng":746.714332708},"arcs":[20]},{"type":"LineString","properties":{"OBJECTID":25,"Shape_Leng":746.714332708},"arcs":[21]},{"type":"LineString","properties":{"OBJECTID":26,"Shape_Leng":746.714332708},"arcs":[22]},{"type":"LineString","properties":{"OBJECTID":27,"Shape_Leng":746.714332708},"arcs":[23]},{"type":"LineString","properties":{"OBJECTID":28,"Shape_Leng":746.714332708},"arcs":[24]},{"type":"LineString","properties":{"OBJECTID":29,"Shape_Leng":746.714332708},"arcs":[25]},{"type":"LineString","properties":{"OBJECTID":30,"Shape_Leng":746.714332708},"arcs":[26]},{"type":"LineString","properties":{"OBJECTID":31,"Shape_Leng":746.714332708},"arcs":[27]},{"type":"LineString","properties":{"OBJECTID":32,"Shape_Leng":746.714332708},"arcs":[28]},{"type":"LineString","properties":{"OBJECTID":33,"Shape_Leng":746.714332708},"arcs":[29]},{"type":"LineString","properties":{"OBJECTID":34,"Shape_Leng":746.714332708},"arcs":[30]},{"type":"LineString","properties":{"OBJECTID":35,"Shape_Leng":746.714332708},"arcs":[31]},{"type":"LineString","properties":{"OBJECTID":36,"Shape_Leng":746.714332708},"arcs":[32]},{"type":"LineString","properties":{"OBJECTID":37,"Shape_Leng":746.714332708},"arcs":[33]},{"type":"LineString","properties":{"OBJECTID":38,"Shape_Leng":746.714332708},"arcs":[34]},{"type":"LineString","properties":{"OBJECTID":39,"Shape_Leng":746.714332708},"arcs":[35]},{"type":"LineString","properties":{"OBJECTID":40,"Shape_Leng":746.714332708},"arcs":[36]},{"type":"LineString","properties":{"OBJECTID":41,"Shape_Leng":746.714332708},"arcs":[37]},{"type":"LineString","properties":{"OBJECTID":42,"Shape_Leng":746.714332708},"arcs":[38]},{"type":"LineString","properties":{"OBJECTID":43,"Shape_Leng":746.714332708},"arcs":[39]},{"type":"LineString","properties":{"OBJECTID":44,"Shape_Leng":746.714332708},"arcs":[40]},{"type":"LineString","properties":{"OBJECTID":45,"Shape_Leng":746.714332708},"arcs":[41]},{"type":"LineString","properties":{"OBJECTID":46,"Shape_Leng":746.714332708},"arcs":[42]},{"type":"LineString","properties":{"OBJECTID":47,"Shape_Leng":746.714332708},"arcs":[41]},{"type":"LineString","properties":{"OBJECTID":48,"Shape_Leng":746.714332708},"arcs":[43]},{"type":"LineString","properties":{"OBJECTID":49,"Shape_Leng":746.714332708},"arcs":[44]},{"type":"LineString","properties":{"OBJECTID":50,"Shape_Leng":746.714332708},"arcs":[45]},{"type":"LineString","properties":{"OBJECTID":51,"Shape_Leng":746.714332708},"arcs":[46]},{"type":"LineString","properties":{"OBJECTID":52,"Shape_Leng":746.714332708},"arcs":[47]},{"type":"LineString","properties":{"OBJECTID":53,"Shape_Leng":746.714332708},"arcs":[48]},{"type":"LineString","properties":{"OBJECTID":54,"Shape_Leng":746.714332708},"arcs":[49]},{"type":"LineString","properties":{"OBJECTID":55,"Shape_Leng":746.714332708},"arcs":[50]},{"type":"LineString","properties":{"OBJECTID":56,"Shape_Leng":746.714332708},"arcs":[51]},{"type":"LineString","properties":{"OBJECTID":57,"Shape_Leng":746.714332708},"arcs":[52]},{"type":"LineString","properties":{"OBJECTID":58,"Shape_Leng":746.714332708},"arcs":[53]},{"type":"LineString","properties":{"OBJECTID":59,"Shape_Leng":746.714332708},"arcs":[54]},{"type":"LineString","properties":{"OBJECTID":60,"Shape_Leng":746.714332708},"arcs":[55]},{"type":"LineString","properties":{"OBJECTID":61,"Shape_Leng":746.714332708},"arcs":[56]},{"type":"LineString","properties":{"OBJECTID":62,"Shape_Leng":746.714332708},"arcs":[57]},{"type":"LineString","properties":{"OBJECTID":63,"Shape_Leng":746.714332708},"arcs":[58]},{"type":"LineString","properties":{"OBJECTID":64,"Shape_Leng":746.714332708},"arcs":[59]},{"type":"LineString","properties":{"OBJECTID":65,"Shape_Leng":746.714332708},"arcs":[60]},{"type":"LineString","properties":{"OBJECTID":66,"Shape_Leng":746.714332708},"arcs":[61]},{"type":"LineString","properties":{"OBJECTID":67,"Shape_Leng":746.714332708},"arcs":[62]},{"type":"LineString","properties":{"OBJECTID":68,"Shape_Leng":746.714332708},"arcs":[63]},{"type":"LineString","properties":{"OBJECTID":69,"Shape_Leng":746.714332708},"arcs":[64]},{"type":"LineString","properties":{"OBJECTID":70,"Shape_Leng":746.714332708},"arcs":[65]},{"type":"LineString","properties":{"OBJECTID":71,"Shape_Leng":746.714332708},"arcs":[66]},{"type":"LineString","properties":{"OBJECTID":72,"Shape_Leng":746.714332708},"arcs":[67]},{"type":"LineString","properties":{"OBJECTID":73,"Shape_Leng":746.714332708},"arcs":[68]},{"type":"LineString","properties":{"OBJECTID":74,"Shape_Leng":746.714332708},"arcs":[69]},{"type":"LineString","properties":{"OBJECTID":75,"Shape_Leng":746.714332708},"arcs":[70]},{"type":"LineString","properties":{"OBJECTID":76,"Shape_Leng":746.714332708},"arcs":[71]},{"type":"LineString","properties":{"OBJECTID":77,"Shape_Leng":746.714332708},"arcs":[72]},{"type":"LineString","properties":{"OBJECTID":78,"Shape_Leng":746.714332708},"arcs":[73]},{"type":"LineString","properties":{"OBJECTID":79,"Shape_Leng":746.714332708},"arcs":[74]},{"type":"LineString","properties":{"OBJECTID":80,"Shape_Leng":746.714332708},"arcs":[75,76]},{"type":"LineString","properties":{"OBJECTID":81,"Shape_Leng":746.714332708},"arcs":[77]},{"type":"LineString","properties":{"OBJECTID":82,"Shape_Leng":746.714332708},"arcs":[78]},{"type":"LineString","properties":{"OBJECTID":83,"Shape_Leng":746.714332708},"arcs":[79]},{"type":"LineString","properties":{"OBJECTID":84,"Shape_Leng":746.714332708},"arcs":[80]},{"type":"LineString","properties":{"OBJECTID":85,"Shape_Leng":746.714332708},"arcs":[81]},{"type":"LineString","properties":{"OBJECTID":86,"Shape_Leng":746.714332708},"arcs":[82]},{"type":"LineString","properties":{"OBJECTID":87,"Shape_Leng":746.714332708},"arcs":[83]},{"type":"LineString","properties":{"OBJECTID":88,"Shape_Leng":746.714332708},"arcs":[84]},{"type":"LineString","properties":{"OBJECTID":89,"Shape_Leng":746.714332708},"arcs":[85]},{"type":"LineString","properties":{"OBJECTID":90,"Shape_Leng":746.714332708},"arcs":[86]},{"type":"LineString","properties":{"OBJECTID":91,"Shape_Leng":746.714332708},"arcs":[87]},{"type":"LineString","properties":{"OBJECTID":92,"Shape_Leng":746.714332708},"arcs":[88]},{"type":"LineString","properties":{"OBJECTID":93,"Shape_Leng":746.714332708},"arcs":[-85]},{"type":"LineString","properties":{"OBJECTID":94,"Shape_Leng":746.714332708},"arcs":[89]},{"type":"LineString","properties":{"OBJECTID":95,"Shape_Leng":746.714332708},"arcs":[90]},{"type":"LineString","properties":{"OBJECTID":96,"Shape_Leng":746.714332708},"arcs":[91]},{"type":"LineString","properties":{"OBJECTID":97,"Shape_Leng":746.714332708},"arcs":[92]},{"type":"LineString","properties":{"OBJECTID":98,"Shape_Leng":746.714332708},"arcs":[93]},{"type":"LineString","properties":{"OBJECTID":99,"Shape_Leng":746.714332708},"arcs":[94]},{"type":"LineString","properties":{"OBJECTID":100,"Shape_Leng":746.714332708},"arcs":[95]},{"type":"LineString","properties":{"OBJECTID":101,"Shape_Leng":746.714332708},"arcs":[96]},{"type":"LineString","properties":{"OBJECTID":102,"Shape_Leng":746.714332708},"arcs":[97]},{"type":"LineString","properties":{"OBJECTID":103,"Shape_Leng":746.714332708},"arcs":[98]},{"type":"LineString","properties":{"OBJECTID":104,"Shape_Leng":746.714332708},"arcs":[-97]},{"type":"LineString","properties":{"OBJECTID":105,"Shape_Leng":746.714332708},"arcs":[99]},{"type":"LineString","properties":{"OBJECTID":106,"Shape_Leng":746.714332708},"arcs":[100]},{"type":"LineString","properties":{"OBJECTID":107,"Shape_Leng":746.714332708},"arcs":[101]},{"type":"LineString","properties":{"OBJECTID":108,"Shape_Leng":746.714332708},"arcs":[102,103]},{"type":"LineString","properties":{"OBJECTID":109,"Shape_Leng":746.714332708},"arcs":[104]},{"type":"LineString","properties":{"OBJECTID":110,"Shape_Leng":746.714332708},"arcs":[105]},{"type":"LineString","properties":{"OBJECTID":111,"Shape_Leng":746.714332708},"arcs":[106]},{"type":"LineString","properties":{"OBJECTID":112,"Shape_Leng":746.714332708},"arcs":[107]},{"type":"LineString","properties":{"OBJECTID":113,"Shape_Leng":746.714332708},"arcs":[108]},{"type":"LineString","properties":{"OBJECTID":114,"Shape_Leng":746.714332708},"arcs":[109]},{"type":"LineString","properties":{"OBJECTID":115,"Shape_Leng":746.714332708},"arcs":[107]},{"type":"LineString","properties":{"OBJECTID":116,"Shape_Leng":746.714332708},"arcs":[110]},{"type":"LineString","properties":{"OBJECTID":117,"Shape_Leng":746.714332708},"arcs":[111]},{"type":"LineString","properties":{"OBJECTID":118,"Shape_Leng":746.714332708},"arcs":[112]},{"type":"LineString","properties":{"OBJECTID":119,"Shape_Leng":746.714332708},"arcs":[113]},{"type":"LineString","properties":{"OBJECTID":120,"Shape_Leng":746.714332708},"arcs":[114]},{"type":"LineString","properties":{"OBJECTID":121,"Shape_Leng":746.714332708},"arcs":[115]},{"type":"LineString","properties":{"OBJECTID":122,"Shape_Leng":746.714332708},"arcs":[116]},{"type":"LineString","properties":{"OBJECTID":123,"Shape_Leng":746.714332708},"arcs":[117]},{"type":"LineString","properties":{"OBJECTID":124,"Shape_Leng":746.714332708},"arcs":[118]},{"type":"LineString","properties":{"OBJECTID":125,"Shape_Leng":746.714332708},"arcs":[119]},{"type":"LineString","properties":{"OBJECTID":126,"Shape_Leng":746.714332708},"arcs":[120]},{"type":"LineString","properties":{"OBJECTID":127,"Shape_Leng":746.714332708},"arcs":[121]},{"type":"LineString","properties":{"OBJECTID":128,"Shape_Leng":746.714332708},"arcs":[122]},{"type":"LineString","properties":{"OBJECTID":129,"Shape_Leng":746.714332708},"arcs":[123]},{"type":"LineString","properties":{"OBJECTID":130,"Shape_Leng":746.714332708},"arcs":[124]},{"type":"LineString","properties":{"OBJECTID":131,"Shape_Leng":746.714332708},"arcs":[125]},{"type":"LineString","properties":{"OBJECTID":132,"Shape_Leng":746.714332708},"arcs":[122]},{"type":"LineString","properties":{"OBJECTID":133,"Shape_Leng":746.714332708},"arcs":[122]},{"type":"LineString","properties":{"OBJECTID":134,"Shape_Leng":746.714332708},"arcs":[126,127]},{"type":"LineString","properties":{"OBJECTID":135,"Shape_Leng":746.714332708},"arcs":[128]},{"type":"LineString","properties":{"OBJECTID":136,"Shape_Leng":746.714332708},"arcs":[129]},{"type":"LineString","properties":{"OBJECTID":137,"Shape_Leng":746.714332708},"arcs":[130]},{"type":"LineString","properties":{"OBJECTID":138,"Shape_Leng":746.714332708},"arcs":[131]},{"type":"LineString","properties":{"OBJECTID":139,"Shape_Leng":746.714332708},"arcs":[132]},{"type":"LineString","properties":{"OBJECTID":140,"Shape_Leng":746.714332708},"arcs":[133]},{"type":"LineString","properties":{"OBJECTID":141,"Shape_Leng":746.714332708},"arcs":[134]},{"type":"LineString","properties":{"OBJECTID":142,"Shape_Leng":746.714332708},"arcs":[135]},{"type":"LineString","properties":{"OBJECTID":143,"Shape_Leng":746.714332708},"arcs":[136]},{"type":"LineString","properties":{"OBJECTID":144,"Shape_Leng":746.714332708},"arcs":[137]},{"type":"LineString","properties":{"OBJECTID":145,"Shape_Leng":746.714332708},"arcs":[138]},{"type":"LineString","properties":{"OBJECTID":146,"Shape_Leng":746.714332708},"arcs":[139]},{"type":"LineString","properties":{"OBJECTID":147,"Shape_Leng":746.714332708},"arcs":[140]},{"type":"LineString","properties":{"OBJECTID":148,"Shape_Leng":746.714332708},"arcs":[141]},{"type":"LineString","properties":{"OBJECTID":149,"Shape_Leng":746.714332708},"arcs":[142]},{"type":"LineString","properties":{"OBJECTID":150,"Shape_Leng":746.714332708},"arcs":[143]},{"type":"LineString","properties":{"OBJECTID":151,"Shape_Leng":746.714332708},"arcs":[144]},{"type":"LineString","properties":{"OBJECTID":152,"Shape_Leng":746.714332708},"arcs":[145]},{"type":"LineString","properties":{"OBJECTID":153,"Shape_Leng":746.714332708},"arcs":[146]},{"type":"LineString","properties":{"OBJECTID":154,"Shape_Leng":746.714332708},"arcs":[147]},{"type":"LineString","properties":{"OBJECTID":155,"Shape_Leng":746.714332708},"arcs":[148]},{"type":"LineString","properties":{"OBJECTID":156,"Shape_Leng":746.714332708},"arcs":[149]},{"type":"LineString","properties":{"OBJECTID":157,"Shape_Leng":746.714332708},"arcs":[150]},{"type":"LineString","properties":{"OBJECTID":158,"Shape_Leng":746.714332708},"arcs":[151]},{"type":"LineString","properties":{"OBJECTID":159,"Shape_Leng":746.714332708},"arcs":[151]},{"type":"LineString","properties":{"OBJECTID":160,"Shape_Leng":746.714332708},"arcs":[152]},{"type":"LineString","properties":{"OBJECTID":161,"Shape_Leng":746.714332708},"arcs":[153]},{"type":"LineString","properties":{"OBJECTID":162,"Shape_Leng":746.714332708},"arcs":[154]},{"type":"LineString","properties":{"OBJECTID":163,"Shape_Leng":746.714332708},"arcs":[155]},{"type":"LineString","properties":{"OBJECTID":164,"Shape_Leng":746.714332708},"arcs":[156]},{"type":"LineString","properties":{"OBJECTID":165,"Shape_Leng":746.714332708},"arcs":[157]},{"type":"LineString","properties":{"OBJECTID":166,"Shape_Leng":746.714332708},"arcs":[158]},{"type":"LineString","properties":{"OBJECTID":167,"Shape_Leng":746.714332708},"arcs":[159]},{"type":"LineString","properties":{"OBJECTID":168,"Shape_Leng":746.714332708},"arcs":[160]},{"type":"LineString","properties":{"OBJECTID":169,"Shape_Leng":746.714332708},"arcs":[161]},{"type":"LineString","properties":{"OBJECTID":170,"Shape_Leng":746.714332708},"arcs":[162]},{"type":"LineString","properties":{"OBJECTID":171,"Shape_Leng":746.714332708},"arcs":[163]},{"type":"LineString","properties":{"OBJECTID":172,"Shape_Leng":746.714332708},"arcs":[164]},{"type":"LineString","properties":{"OBJECTID":173,"Shape_Leng":746.714332708},"arcs":[165]},{"type":"LineString","properties":{"OBJECTID":174,"Shape_Leng":746.714332708},"arcs":[166]},{"type":"LineString","properties":{"OBJECTID":175,"Shape_Leng":746.714332708},"arcs":[167]},{"type":"LineString","properties":{"OBJECTID":176,"Shape_Leng":746.714332708},"arcs":[168]},{"type":"LineString","properties":{"OBJECTID":177,"Shape_Leng":746.714332708},"arcs":[169]},{"type":"LineString","properties":{"OBJECTID":178,"Shape_Leng":746.714332708},"arcs":[170]},{"type":"LineString","properties":{"OBJECTID":179,"Shape_Leng":746.714332708},"arcs":[171]},{"type":"LineString","properties":{"OBJECTID":180,"Shape_Leng":746.714332708},"arcs":[172]},{"type":"LineString","properties":{"OBJECTID":181,"Shape_Leng":746.714332708},"arcs":[173]},{"type":"LineString","properties":{"OBJECTID":182,"Shape_Leng":746.714332708},"arcs":[174]},{"type":"LineString","properties":{"OBJECTID":183,"Shape_Leng":746.714332708},"arcs":[175]},{"type":"LineString","properties":{"OBJECTID":184,"Shape_Leng":746.714332708},"arcs":[176]},{"type":"LineString","properties":{"OBJECTID":185,"Shape_Leng":746.714332708},"arcs":[177]},{"type":"LineString","properties":{"OBJECTID":186,"Shape_Leng":746.714332708},"arcs":[178]},{"type":"LineString","properties":{"OBJECTID":187,"Shape_Leng":746.714332708},"arcs":[179]},{"type":"LineString","properties":{"OBJECTID":188,"Shape_Leng":746.714332708},"arcs":[180]},{"type":"LineString","properties":{"OBJECTID":189,"Shape_Leng":746.714332708},"arcs":[181]},{"type":"LineString","properties":{"OBJECTID":190,"Shape_Leng":746.714332708},"arcs":[182]},{"type":"LineString","properties":{"OBJECTID":191,"Shape_Leng":746.714332708},"arcs":[183]},{"type":"LineString","properties":{"OBJECTID":192,"Shape_Leng":746.714332708},"arcs":[184]},{"type":"LineString","properties":{"OBJECTID":193,"Shape_Leng":746.714332708},"arcs":[185]},{"type":"LineString","properties":{"OBJECTID":194,"Shape_Leng":746.714332708},"arcs":[186]},{"type":"LineString","properties":{"OBJECTID":195,"Shape_Leng":746.714332708},"arcs":[187]},{"type":"LineString","properties":{"OBJECTID":196,"Shape_Leng":746.714332708},"arcs":[188]},{"type":"LineString","properties":{"OBJECTID":197,"Shape_Leng":746.714332708},"arcs":[189]},{"type":"LineString","properties":{"OBJECTID":198,"Shape_Leng":746.714332708},"arcs":[190]},{"type":"LineString","properties":{"OBJECTID":199,"Shape_Leng":746.714332708},"arcs":[191]},{"type":"LineString","properties":{"OBJECTID":200,"Shape_Leng":746.714332708},"arcs":[192]},{"type":"LineString","properties":{"OBJECTID":201,"Shape_Leng":746.714332708},"arcs":[193]},{"type":"LineString","properties":{"OBJECTID":202,"Shape_Leng":746.714332708},"arcs":[194]},{"type":"LineString","properties":{"OBJECTID":203,"Shape_Leng":746.714332708},"arcs":[195]},{"type":"LineString","properties":{"OBJECTID":204,"Shape_Leng":746.714332708},"arcs":[196]},{"type":"LineString","properties":{"OBJECTID":205,"Shape_Leng":746.714332708},"arcs":[197]},{"type":"LineString","properties":{"OBJECTID":206,"Shape_Leng":746.714332708},"arcs":[198]},{"type":"LineString","properties":{"OBJECTID":207,"Shape_Leng":746.714332708},"arcs":[198]},{"type":"LineString","properties":{"OBJECTID":208,"Shape_Leng":746.714332708},"arcs":[199]},{"type":"LineString","properties":{"OBJECTID":209,"Shape_Leng":746.714332708},"arcs":[200]},{"type":"LineString","properties":{"OBJECTID":210,"Shape_Leng":746.714332708},"arcs":[201]},{"type":"LineString","properties":{"OBJECTID":211,"Shape_Leng":746.714332708},"arcs":[202]},{"type":"LineString","properties":{"OBJECTID":212,"Shape_Leng":746.714332708},"arcs":[203]},{"type":"LineString","properties":{"OBJECTID":213,"Shape_Leng":746.714332708},"arcs":[204]},{"type":"LineString","properties":{"OBJECTID":214,"Shape_Leng":746.714332708},"arcs":[205]},{"type":"LineString","properties":{"OBJECTID":215,"Shape_Leng":746.714332708},"arcs":[206]},{"type":"LineString","properties":{"OBJECTID":216,"Shape_Leng":746.714332708},"arcs":[207]},{"type":"LineString","properties":{"OBJECTID":217,"Shape_Leng":746.714332708},"arcs":[208]},{"type":"LineString","properties":{"OBJECTID":218,"Shape_Leng":746.714332708},"arcs":[209]},{"type":"LineString","properties":{"OBJECTID":219,"Shape_Leng":746.714332708},"arcs":[210]},{"type":"LineString","properties":{"OBJECTID":220,"Shape_Leng":746.714332708},"arcs":[211]},{"type":"LineString","properties":{"OBJECTID":221,"Shape_Leng":746.714332708},"arcs":[212]},{"type":"LineString","properties":{"OBJECTID":222,"Shape_Leng":746.714332708},"arcs":[213]},{"type":"LineString","properties":{"OBJECTID":223,"Shape_Leng":746.714332708},"arcs":[214]},{"type":"LineString","properties":{"OBJECTID":224,"Shape_Leng":746.714332708},"arcs":[215]},{"type":"LineString","properties":{"OBJECTID":225,"Shape_Leng":746.714332708},"arcs":[216]},{"type":"LineString","properties":{"OBJECTID":226,"Shape_Leng":746.714332708},"arcs":[217]},{"type":"LineString","properties":{"OBJECTID":227,"Shape_Leng":746.714332708},"arcs":[218]},{"type":"LineString","properties":{"OBJECTID":228,"Shape_Leng":746.714332708},"arcs":[219]},{"type":"LineString","properties":{"OBJECTID":229,"Shape_Leng":746.714332708},"arcs":[220]},{"type":"LineString","properties":{"OBJECTID":230,"Shape_Leng":746.714332708},"arcs":[221]},{"type":"LineString","properties":{"OBJECTID":231,"Shape_Leng":746.714332708},"arcs":[222]},{"type":"LineString","properties":{"OBJECTID":232,"Shape_Leng":746.714332708},"arcs":[223]},{"type":"LineString","properties":{"OBJECTID":233,"Shape_Leng":746.714332708},"arcs":[224]},{"type":"LineString","properties":{"OBJECTID":234,"Shape_Leng":746.714332708},"arcs":[225]},{"type":"LineString","properties":{"OBJECTID":235,"Shape_Leng":746.714332708},"arcs":[226]},{"type":"LineString","properties":{"OBJECTID":236,"Shape_Leng":746.714332708},"arcs":[227]},{"type":"LineString","properties":{"OBJECTID":237,"Shape_Leng":746.714332708},"arcs":[228]},{"type":"LineString","properties":{"OBJECTID":238,"Shape_Leng":746.714332708},"arcs":[229]},{"type":"LineString","properties":{"OBJECTID":239,"Shape_Leng":746.714332708},"arcs":[230]},{"type":"LineString","properties":{"OBJECTID":240,"Shape_Leng":746.714332708},"arcs":[230]},{"type":"LineString","properties":{"OBJECTID":241,"Shape_Leng":746.714332708},"arcs":[230]},{"type":"LineString","properties":{"OBJECTID":242,"Shape_Leng":746.714332708},"arcs":[231]},{"type":"LineString","properties":{"OBJECTID":243,"Shape_Leng":746.714332708},"arcs":[232]},{"type":"LineString","properties":{"OBJECTID":244,"Shape_Leng":746.714332708},"arcs":[233]},{"type":"LineString","properties":{"OBJECTID":245,"Shape_Leng":746.714332708},"arcs":[234]},{"type":"LineString","properties":{"OBJECTID":246,"Shape_Leng":746.714332708},"arcs":[235]},{"type":"LineString","properties":{"OBJECTID":247,"Shape_Leng":746.714332708},"arcs":[234]},{"type":"LineString","properties":{"OBJECTID":248,"Shape_Leng":746.714332708},"arcs":[236,237]},{"type":"LineString","properties":{"OBJECTID":249,"Shape_Leng":746.714332708},"arcs":[238]},{"type":"LineString","properties":{"OBJECTID":250,"Shape_Leng":746.714332708},"arcs":[239]},{"type":"LineString","properties":{"OBJECTID":251,"Shape_Leng":746.714332708},"arcs":[240]},{"type":"LineString","properties":{"OBJECTID":252,"Shape_Leng":746.714332708},"arcs":[241]},{"type":"LineString","properties":{"OBJECTID":253,"Shape_Leng":746.714332708},"arcs":[242]},{"type":"LineString","properties":{"OBJECTID":254,"Shape_Leng":746.714332708},"arcs":[243]},{"type":"LineString","properties":{"OBJECTID":255,"Shape_Leng":746.714332708},"arcs":[244]},{"type":"LineString","properties":{"OBJECTID":256,"Shape_Leng":746.714332708},"arcs":[245]},{"type":"LineString","properties":{"OBJECTID":257,"Shape_Leng":746.714332708},"arcs":[246]},{"type":"LineString","properties":{"OBJECTID":258,"Shape_Leng":746.714332708},"arcs":[247]},{"type":"LineString","properties":{"OBJECTID":259,"Shape_Leng":746.714332708},"arcs":[248,249]},{"type":"LineString","properties":{"OBJECTID":260,"Shape_Leng":746.714332708},"arcs":[250]},{"type":"LineString","properties":{"OBJECTID":261,"Shape_Leng":746.714332708},"arcs":[251]},{"type":"LineString","properties":{"OBJECTID":262,"Shape_Leng":746.714332708},"arcs":[252]},{"type":"LineString","properties":{"OBJECTID":263,"Shape_Leng":746.714332708},"arcs":[253]},{"type":"LineString","properties":{"OBJECTID":264,"Shape_Leng":746.714332708},"arcs":[254]},{"type":"LineString","properties":{"OBJECTID":265,"Shape_Leng":746.714332708},"arcs":[255]},{"type":"LineString","properties":{"OBJECTID":266,"Shape_Leng":746.714332708},"arcs":[256]},{"type":"LineString","properties":{"OBJECTID":267,"Shape_Leng":746.714332708},"arcs":[257]},{"type":"LineString","properties":{"OBJECTID":268,"Shape_Leng":746.714332708},"arcs":[257]},{"type":"LineString","properties":{"OBJECTID":269,"Shape_Leng":746.714332708},"arcs":[258]},{"type":"LineString","properties":{"OBJECTID":270,"Shape_Leng":746.714332708},"arcs":[259]},{"type":"LineString","properties":{"OBJECTID":271,"Shape_Leng":746.714332708},"arcs":[260]},{"type":"LineString","properties":{"OBJECTID":272,"Shape_Leng":746.714332708},"arcs":[261]},{"type":"LineString","properties":{"OBJECTID":273,"Shape_Leng":746.714332708},"arcs":[262]},{"type":"LineString","properties":{"OBJECTID":274,"Shape_Leng":746.714332708},"arcs":[263]},{"type":"LineString","properties":{"OBJECTID":275,"Shape_Leng":746.714332708},"arcs":[264]},{"type":"LineString","properties":{"OBJECTID":276,"Shape_Leng":746.714332708},"arcs":[262]},{"type":"LineString","properties":{"OBJECTID":277,"Shape_Leng":746.714332708},"arcs":[265]},{"type":"LineString","properties":{"OBJECTID":278,"Shape_Leng":746.714332708},"arcs":[266]},{"type":"LineString","properties":{"OBJECTID":279,"Shape_Leng":746.714332708},"arcs":[267]},{"type":"LineString","properties":{"OBJECTID":280,"Shape_Leng":746.714332708},"arcs":[268]},{"type":"LineString","properties":{"OBJECTID":281,"Shape_Leng":746.714332708},"arcs":[269]},{"type":"LineString","properties":{"OBJECTID":282,"Shape_Leng":746.714332708},"arcs":[270]},{"type":"LineString","properties":{"OBJECTID":283,"Shape_Leng":746.714332708},"arcs":[271]},{"type":"LineString","properties":{"OBJECTID":284,"Shape_Leng":746.714332708},"arcs":[272]},{"type":"LineString","properties":{"OBJECTID":285,"Shape_Leng":746.714332708},"arcs":[273]},{"type":"LineString","properties":{"OBJECTID":286,"Shape_Leng":746.714332708},"arcs":[274]},{"type":"LineString","properties":{"OBJECTID":287,"Shape_Leng":746.714332708},"arcs":[275]},{"type":"LineString","properties":{"OBJECTID":288,"Shape_Leng":746.714332708},"arcs":[276]},{"type":"LineString","properties":{"OBJECTID":289,"Shape_Leng":746.714332708},"arcs":[277]},{"type":"LineString","properties":{"OBJECTID":290,"Shape_Leng":746.714332708},"arcs":[278]},{"type":"LineString","properties":{"OBJECTID":291,"Shape_Leng":746.714332708},"arcs":[279]},{"type":"LineString","properties":{"OBJECTID":292,"Shape_Leng":746.714332708},"arcs":[280]},{"type":"LineString","properties":{"OBJECTID":293,"Shape_Leng":746.714332708},"arcs":[281]},{"type":"LineString","properties":{"OBJECTID":294,"Shape_Leng":746.714332708},"arcs":[282]},{"type":"LineString","properties":{"OBJECTID":295,"Shape_Leng":746.714332708},"arcs":[283]},{"type":"LineString","properties":{"OBJECTID":296,"Shape_Leng":746.714332708},"arcs":[284]},{"type":"LineString","properties":{"OBJECTID":297,"Shape_Leng":746.714332708},"arcs":[285]},{"type":"LineString","properties":{"OBJECTID":298,"Shape_Leng":746.714332708},"arcs":[286]},{"type":"LineString","properties":{"OBJECTID":299,"Shape_Leng":746.714332708},"arcs":[287]},{"type":"LineString","properties":{"OBJECTID":300,"Shape_Leng":746.714332708},"arcs":[288]},{"type":"LineString","properties":{"OBJECTID":301,"Shape_Leng":746.714332708},"arcs":[289]},{"type":"LineString","properties":{"OBJECTID":302,"Shape_Leng":746.714332708},"arcs":[290]},{"type":"LineString","properties":{"OBJECTID":303,"Shape_Leng":746.714332708},"arcs":[291,292]},{"type":"LineString","properties":{"OBJECTID":304,"Shape_Leng":746.714332708},"arcs":[293]},{"type":"LineString","properties":{"OBJECTID":305,"Shape_Leng":746.714332708},"arcs":[294]},{"type":"LineString","properties":{"OBJECTID":306,"Shape_Leng":746.714332708},"arcs":[295]},{"type":"LineString","properties":{"OBJECTID":307,"Shape_Leng":746.714332708},"arcs":[296]},{"type":"LineString","properties":{"OBJECTID":308,"Shape_Leng":746.714332708},"arcs":[297]},{"type":"LineString","properties":{"OBJECTID":309,"Shape_Leng":746.714332708},"arcs":[298]},{"type":"LineString","properties":{"OBJECTID":310,"Shape_Leng":746.714332708},"arcs":[299]},{"type":"LineString","properties":{"OBJECTID":311,"Shape_Leng":746.714332708},"arcs":[300]},{"type":"LineString","properties":{"OBJECTID":312,"Shape_Leng":746.714332708},"arcs":[301]},{"type":"LineString","properties":{"OBJECTID":313,"Shape_Leng":746.714332708},"arcs":[302]},{"type":"LineString","properties":{"OBJECTID":314,"Shape_Leng":746.714332708},"arcs":[303]},{"type":"LineString","properties":{"OBJECTID":315,"Shape_Leng":746.714332708},"arcs":[304]},{"type":"LineString","properties":{"OBJECTID":316,"Shape_Leng":746.714332708},"arcs":[305]},{"type":"LineString","properties":{"OBJECTID":317,"Shape_Leng":746.714332708},"arcs":[306]},{"type":"LineString","properties":{"OBJECTID":318,"Shape_Leng":746.714332708},"arcs":[307]},{"type":"LineString","properties":{"OBJECTID":319,"Shape_Leng":746.714332708},"arcs":[308]},{"type":"LineString","properties":{"OBJECTID":320,"Shape_Leng":746.714332708},"arcs":[309]},{"type":"LineString","properties":{"OBJECTID":321,"Shape_Leng":746.714332708},"arcs":[310]},{"type":"LineString","properties":{"OBJECTID":322,"Shape_Leng":746.714332708},"arcs":[311]},{"type":"LineString","properties":{"OBJECTID":323,"Shape_Leng":746.714332708},"arcs":[312]},{"type":"LineString","properties":{"OBJECTID":324,"Shape_Leng":746.714332708},"arcs":[313]},{"type":"LineString","properties":{"OBJECTID":325,"Shape_Leng":746.714332708},"arcs":[314]},{"type":"LineString","properties":{"OBJECTID":326,"Shape_Leng":746.714332708},"arcs":[315]},{"type":"LineString","properties":{"OBJECTID":327,"Shape_Leng":746.714332708},"arcs":[-316]},{"type":"LineString","properties":{"OBJECTID":328,"Shape_Leng":746.714332708},"arcs":[316]},{"type":"LineString","properties":{"OBJECTID":329,"Shape_Leng":746.714332708},"arcs":[317]},{"type":"LineString","properties":{"OBJECTID":330,"Shape_Leng":746.714332708},"arcs":[318]},{"type":"LineString","properties":{"OBJECTID":331,"Shape_Leng":746.714332708},"arcs":[319]},{"type":"LineString","properties":{"OBJECTID":332,"Shape_Leng":746.714332708},"arcs":[320]},{"type":"LineString","properties":{"OBJECTID":333,"Shape_Leng":746.714332708},"arcs":[321]},{"type":"LineString","properties":{"OBJECTID":334,"Shape_Leng":746.714332708},"arcs":[322]},{"type":"LineString","properties":{"OBJECTID":335,"Shape_Leng":746.714332708},"arcs":[323]},{"type":"LineString","properties":{"OBJECTID":336,"Shape_Leng":746.714332708},"arcs":[324]},{"type":"LineString","properties":{"OBJECTID":337,"Shape_Leng":746.714332708},"arcs":[325]},{"type":"LineString","properties":{"OBJECTID":338,"Shape_Leng":746.714332708},"arcs":[326]},{"type":"LineString","properties":{"OBJECTID":339,"Shape_Leng":746.714332708},"arcs":[327]},{"type":"LineString","properties":{"OBJECTID":340,"Shape_Leng":746.714332708},"arcs":[328]},{"type":"LineString","properties":{"OBJECTID":341,"Shape_Leng":746.714332708},"arcs":[329]},{"type":"LineString","properties":{"OBJECTID":342,"Shape_Leng":746.714332708},"arcs":[330]},{"type":"LineString","properties":{"OBJECTID":343,"Shape_Leng":746.714332708},"arcs":[331]},{"type":"LineString","properties":{"OBJECTID":344,"Shape_Leng":746.714332708},"arcs":[332]},{"type":"LineString","properties":{"OBJECTID":345,"Shape_Leng":746.714332708},"arcs":[333]},{"type":"LineString","properties":{"OBJECTID":346,"Shape_Leng":746.714332708},"arcs":[334]},{"type":"LineString","properties":{"OBJECTID":347,"Shape_Leng":746.714332708},"arcs":[335]},{"type":"LineString","properties":{"OBJECTID":348,"Shape_Leng":746.714332708},"arcs":[336]},{"type":"LineString","properties":{"OBJECTID":349,"Shape_Leng":746.714332708},"arcs":[337]},{"type":"LineString","properties":{"OBJECTID":350,"Shape_Leng":746.714332708},"arcs":[338]},{"type":"LineString","properties":{"OBJECTID":351,"Shape_Leng":746.714332708},"arcs":[339]},{"type":"LineString","properties":{"OBJECTID":352,"Shape_Leng":746.714332708},"arcs":[340]},{"type":"LineString","properties":{"OBJECTID":353,"Shape_Leng":746.714332708},"arcs":[341]},{"type":"LineString","properties":{"OBJECTID":354,"Shape_Leng":746.714332708},"arcs":[342]},{"type":"LineString","properties":{"OBJECTID":355,"Shape_Leng":746.714332708},"arcs":[343]},{"type":"LineString","properties":{"OBJECTID":356,"Shape_Leng":746.714332708},"arcs":[344]},{"type":"LineString","properties":{"OBJECTID":357,"Shape_Leng":746.714332708},"arcs":[345]},{"type":"LineString","properties":{"OBJECTID":358,"Shape_Leng":746.714332708},"arcs":[346]},{"type":"LineString","properties":{"OBJECTID":359,"Shape_Leng":746.714332708},"arcs":[347]},{"type":"LineString","properties":{"OBJECTID":360,"Shape_Leng":746.714332708},"arcs":[347]},{"type":"LineString","properties":{"OBJECTID":361,"Shape_Leng":746.714332708},"arcs":[348]},{"type":"LineString","properties":{"OBJECTID":362,"Shape_Leng":746.714332708},"arcs":[347]},{"type":"LineString","properties":{"OBJECTID":363,"Shape_Leng":746.714332708},"arcs":[349]},{"type":"LineString","properties":{"OBJECTID":364,"Shape_Leng":746.714332708},"arcs":[350]},{"type":"LineString","properties":{"OBJECTID":365,"Shape_Leng":746.714332708},"arcs":[351]},{"type":"LineString","properties":{"OBJECTID":366,"Shape_Leng":746.714332708},"arcs":[352]},{"type":"LineString","properties":{"OBJECTID":367,"Shape_Leng":746.714332708},"arcs":[353]},{"type":"LineString","properties":{"OBJECTID":368,"Shape_Leng":746.714332708},"arcs":[354]},{"type":"LineString","properties":{"OBJECTID":369,"Shape_Leng":746.714332708},"arcs":[354]},{"type":"LineString","properties":{"OBJECTID":370,"Shape_Leng":746.714332708},"arcs":[355]},{"type":"LineString","properties":{"OBJECTID":371,"Shape_Leng":746.714332708},"arcs":[356]},{"type":"LineString","properties":{"OBJECTID":372,"Shape_Leng":746.714332708},"arcs":[357]},{"type":"LineString","properties":{"OBJECTID":373,"Shape_Leng":746.714332708},"arcs":[358]},{"type":"LineString","properties":{"OBJECTID":374,"Shape_Leng":746.714332708},"arcs":[359]},{"type":"LineString","properties":{"OBJECTID":375,"Shape_Leng":746.714332708},"arcs":[360]},{"type":"LineString","properties":{"OBJECTID":376,"Shape_Leng":746.714332708},"arcs":[361]},{"type":"LineString","properties":{"OBJECTID":377,"Shape_Leng":746.714332708},"arcs":[362]},{"type":"LineString","properties":{"OBJECTID":378,"Shape_Leng":746.714332708},"arcs":[363]},{"type":"LineString","properties":{"OBJECTID":379,"Shape_Leng":746.714332708},"arcs":[364]},{"type":"LineString","properties":{"OBJECTID":380,"Shape_Leng":746.714332708},"arcs":[-361]},{"type":"LineString","properties":{"OBJECTID":381,"Shape_Leng":746.714332708},"arcs":[365]},{"type":"LineString","properties":{"OBJECTID":382,"Shape_Leng":746.714332708},"arcs":[366]},{"type":"LineString","properties":{"OBJECTID":383,"Shape_Leng":746.714332708},"arcs":[367]},{"type":"LineString","properties":{"OBJECTID":384,"Shape_Leng":746.714332708},"arcs":[368]},{"type":"LineString","properties":{"OBJECTID":385,"Shape_Leng":746.714332708},"arcs":[369]},{"type":"LineString","properties":{"OBJECTID":386,"Shape_Leng":746.714332708},"arcs":[370]},{"type":"LineString","properties":{"OBJECTID":387,"Shape_Leng":746.714332708},"arcs":[371]},{"type":"LineString","properties":{"OBJECTID":388,"Shape_Leng":746.714332708},"arcs":[372]},{"type":"LineString","properties":{"OBJECTID":389,"Shape_Leng":746.714332708},"arcs":[373]},{"type":"LineString","properties":{"OBJECTID":390,"Shape_Leng":746.714332708},"arcs":[374]},{"type":"LineString","properties":{"OBJECTID":391,"Shape_Leng":746.714332708},"arcs":[375]},{"type":"LineString","properties":{"OBJECTID":392,"Shape_Leng":746.714332708},"arcs":[376]},{"type":"LineString","properties":{"OBJECTID":393,"Shape_Leng":746.714332708},"arcs":[377]},{"type":"LineString","properties":{"OBJECTID":394,"Shape_Leng":746.714332708},"arcs":[378]},{"type":"LineString","properties":{"OBJECTID":395,"Shape_Leng":746.714332708},"arcs":[-379]},{"type":"LineString","properties":{"OBJECTID":396,"Shape_Leng":746.714332708},"arcs":[379]},{"type":"LineString","properties":{"OBJECTID":397,"Shape_Leng":746.714332708},"arcs":[380]},{"type":"LineString","properties":{"OBJECTID":398,"Shape_Leng":746.714332708},"arcs":[381]},{"type":"LineString","properties":{"OBJECTID":399,"Shape_Leng":746.714332708},"arcs":[382]},{"type":"LineString","properties":{"OBJECTID":400,"Shape_Leng":746.714332708},"arcs":[383]},{"type":"LineString","properties":{"OBJECTID":401,"Shape_Leng":746.714332708},"arcs":[384]},{"type":"LineString","properties":{"OBJECTID":402,"Shape_Leng":746.714332708},"arcs":[385]},{"type":"LineString","properties":{"OBJECTID":403,"Shape_Leng":746.714332708},"arcs":[386]},{"type":"LineString","properties":{"OBJECTID":404,"Shape_Leng":746.714332708},"arcs":[387]},{"type":"LineString","properties":{"OBJECTID":405,"Shape_Leng":746.714332708},"arcs":[388]},{"type":"LineString","properties":{"OBJECTID":406,"Shape_Leng":746.714332708},"arcs":[389]},{"type":"LineString","properties":{"OBJECTID":407,"Shape_Leng":746.714332708},"arcs":[390]},{"type":"LineString","properties":{"OBJECTID":408,"Shape_Leng":746.714332708},"arcs":[391]},{"type":"LineString","properties":{"OBJECTID":409,"Shape_Leng":746.714332708},"arcs":[392]},{"type":"LineString","properties":{"OBJECTID":410,"Shape_Leng":746.714332708},"arcs":[393]},{"type":"LineString","properties":{"OBJECTID":411,"Shape_Leng":746.714332708},"arcs":[394]},{"type":"LineString","properties":{"OBJECTID":412,"Shape_Leng":746.714332708},"arcs":[395]},{"type":"LineString","properties":{"OBJECTID":413,"Shape_Leng":746.714332708},"arcs":[396]},{"type":"LineString","properties":{"OBJECTID":414,"Shape_Leng":746.714332708},"arcs":[397]},{"type":"LineString","properties":{"OBJECTID":415,"Shape_Leng":746.714332708},"arcs":[398]},{"type":"LineString","properties":{"OBJECTID":416,"Shape_Leng":746.714332708},"arcs":[399,400]},{"type":"LineString","properties":{"OBJECTID":417,"Shape_Leng":746.714332708},"arcs":[401]},{"type":"LineString","properties":{"OBJECTID":418,"Shape_Leng":746.714332708},"arcs":[402]},{"type":"LineString","properties":{"OBJECTID":419,"Shape_Leng":746.714332708},"arcs":[403]},{"type":"LineString","properties":{"OBJECTID":420,"Shape_Leng":746.714332708},"arcs":[404]},{"type":"LineString","properties":{"OBJECTID":421,"Shape_Leng":746.714332708},"arcs":[405]},{"type":"LineString","properties":{"OBJECTID":422,"Shape_Leng":746.714332708},"arcs":[406,407]},{"type":"LineString","properties":{"OBJECTID":423,"Shape_Leng":746.714332708},"arcs":[408]},{"type":"LineString","properties":{"OBJECTID":424,"Shape_Leng":746.714332708},"arcs":[409]},{"type":"LineString","properties":{"OBJECTID":425,"Shape_Leng":746.714332708},"arcs":[410]},{"type":"LineString","properties":{"OBJECTID":426,"Shape_Leng":746.714332708},"arcs":[411]},{"type":"LineString","properties":{"OBJECTID":427,"Shape_Leng":746.714332708},"arcs":[412]},{"type":"LineString","properties":{"OBJECTID":428,"Shape_Leng":746.714332708},"arcs":[413]},{"type":"LineString","properties":{"OBJECTID":429,"Shape_Leng":746.714332708},"arcs":[414]},{"type":"LineString","properties":{"OBJECTID":430,"Shape_Leng":746.714332708},"arcs":[415]},{"type":"LineString","properties":{"OBJECTID":431,"Shape_Leng":746.714332708},"arcs":[416]},{"type":"LineString","properties":{"OBJECTID":432,"Shape_Leng":746.714332708},"arcs":[417,418]},{"type":"LineString","properties":{"OBJECTID":433,"Shape_Leng":746.714332708},"arcs":[419]},{"type":"LineString","properties":{"OBJECTID":434,"Shape_Leng":746.714332708},"arcs":[420]},{"type":"LineString","properties":{"OBJECTID":435,"Shape_Leng":746.714332708},"arcs":[421]},{"type":"LineString","properties":{"OBJECTID":436,"Shape_Leng":746.714332708},"arcs":[422]},{"type":"LineString","properties":{"OBJECTID":437,"Shape_Leng":746.714332708},"arcs":[423]},{"type":"LineString","properties":{"OBJECTID":438,"Shape_Leng":746.714332708},"arcs":[424]},{"type":"LineString","properties":{"OBJECTID":439,"Shape_Leng":746.714332708},"arcs":[425]},{"type":"LineString","properties":{"OBJECTID":440,"Shape_Leng":746.714332708},"arcs":[426]},{"type":"LineString","properties":{"OBJECTID":441,"Shape_Leng":746.714332708},"arcs":[427]},{"type":"LineString","properties":{"OBJECTID":442,"Shape_Leng":746.714332708},"arcs":[428]},{"type":"LineString","properties":{"OBJECTID":443,"Shape_Leng":746.714332708},"arcs":[429]},{"type":"LineString","properties":{"OBJECTID":444,"Shape_Leng":746.714332708},"arcs":[430]},{"type":"LineString","properties":{"OBJECTID":445,"Shape_Leng":746.714332708},"arcs":[430]},{"type":"LineString","properties":{"OBJECTID":446,"Shape_Leng":746.714332708},"arcs":[431]},{"type":"LineString","properties":{"OBJECTID":447,"Shape_Leng":746.714332708},"arcs":[-430]},{"type":"LineString","properties":{"OBJECTID":448,"Shape_Leng":746.714332708},"arcs":[432]},{"type":"LineString","properties":{"OBJECTID":449,"Shape_Leng":746.714332708},"arcs":[433]},{"type":"LineString","properties":{"OBJECTID":450,"Shape_Leng":746.714332708},"arcs":[434]},{"type":"LineString","properties":{"OBJECTID":451,"Shape_Leng":746.714332708},"arcs":[434]},{"type":"LineString","properties":{"OBJECTID":452,"Shape_Leng":746.714332708},"arcs":[435]},{"type":"LineString","properties":{"OBJECTID":453,"Shape_Leng":746.714332708},"arcs":[436]},{"type":"LineString","properties":{"OBJECTID":454,"Shape_Leng":746.714332708},"arcs":[437]},{"type":"LineString","properties":{"OBJECTID":455,"Shape_Leng":746.714332708},"arcs":[438]},{"type":"LineString","properties":{"OBJECTID":456,"Shape_Leng":746.714332708},"arcs":[439]},{"type":"LineString","properties":{"OBJECTID":457,"Shape_Leng":746.714332708},"arcs":[440]},{"type":"LineString","properties":{"OBJECTID":458,"Shape_Leng":746.714332708},"arcs":[441]},{"type":"LineString","properties":{"OBJECTID":459,"Shape_Leng":746.714332708},"arcs":[442]},{"type":"LineString","properties":{"OBJECTID":460,"Shape_Leng":746.714332708},"arcs":[443]},{"type":"LineString","properties":{"OBJECTID":461,"Shape_Leng":746.714332708},"arcs":[444]},{"type":"LineString","properties":{"OBJECTID":462,"Shape_Leng":746.714332708},"arcs":[445]},{"type":"LineString","properties":{"OBJECTID":463,"Shape_Leng":746.714332708},"arcs":[446]},{"type":"LineString","properties":{"OBJECTID":464,"Shape_Leng":746.714332708},"arcs":[447]},{"type":"LineString","properties":{"OBJECTID":465,"Shape_Leng":746.714332708},"arcs":[448]},{"type":"LineString","properties":{"OBJECTID":466,"Shape_Leng":746.714332708},"arcs":[449]},{"type":"LineString","properties":{"OBJECTID":467,"Shape_Leng":746.714332708},"arcs":[450]},{"type":"LineString","properties":{"OBJECTID":468,"Shape_Leng":746.714332708},"arcs":[451]},{"type":"LineString","properties":{"OBJECTID":469,"Shape_Leng":746.714332708},"arcs":[452]},{"type":"LineString","properties":{"OBJECTID":470,"Shape_Leng":746.714332708},"arcs":[453]},{"type":"LineString","properties":{"OBJECTID":471,"Shape_Leng":746.714332708},"arcs":[454]},{"type":"LineString","properties":{"OBJECTID":472,"Shape_Leng":746.714332708},"arcs":[455]},{"type":"LineString","properties":{"OBJECTID":473,"Shape_Leng":746.714332708},"arcs":[456]},{"type":"LineString","properties":{"OBJECTID":474,"Shape_Leng":746.714332708},"arcs":[455]},{"type":"LineString","properties":{"OBJECTID":475,"Shape_Leng":746.714332708},"arcs":[455]},{"type":"LineString","properties":{"OBJECTID":476,"Shape_Leng":746.714332708},"arcs":[457]},{"type":"LineString","properties":{"OBJECTID":477,"Shape_Leng":746.714332708},"arcs":[458]},{"type":"LineString","properties":{"OBJECTID":478,"Shape_Leng":746.714332708},"arcs":[459]},{"type":"LineString","properties":{"OBJECTID":479,"Shape_Leng":746.714332708},"arcs":[460]},{"type":"LineString","properties":{"OBJECTID":480,"Shape_Leng":746.714332708},"arcs":[461]},{"type":"LineString","properties":{"OBJECTID":481,"Shape_Leng":746.714332708},"arcs":[462]},{"type":"LineString","properties":{"OBJECTID":482,"Shape_Leng":746.714332708},"arcs":[463]},{"type":"LineString","properties":{"OBJECTID":483,"Shape_Leng":746.714332708},"arcs":[464]},{"type":"LineString","properties":{"OBJECTID":484,"Shape_Leng":746.714332708},"arcs":[465]},{"type":"LineString","properties":{"OBJECTID":485,"Shape_Leng":746.714332708},"arcs":[466]},{"type":"LineString","properties":{"OBJECTID":486,"Shape_Leng":746.714332708},"arcs":[467]},{"type":"LineString","properties":{"OBJECTID":487,"Shape_Leng":746.714332708},"arcs":[468]},{"type":"LineString","properties":{"OBJECTID":488,"Shape_Leng":746.714332708},"arcs":[469]},{"type":"LineString","properties":{"OBJECTID":489,"Shape_Leng":746.714332708},"arcs":[470]},{"type":"LineString","properties":{"OBJECTID":490,"Shape_Leng":746.714332708},"arcs":[471]},{"type":"LineString","properties":{"OBJECTID":491,"Shape_Leng":746.714332708},"arcs":[472]},{"type":"LineString","properties":{"OBJECTID":492,"Shape_Leng":746.714332708},"arcs":[473]},{"type":"LineString","properties":{"OBJECTID":493,"Shape_Leng":746.714332708},"arcs":[474]},{"type":"LineString","properties":{"OBJECTID":494,"Shape_Leng":746.714332708},"arcs":[475]},{"type":"LineString","properties":{"OBJECTID":495,"Shape_Leng":746.714332708},"arcs":[476]},{"type":"LineString","properties":{"OBJECTID":496,"Shape_Leng":746.714332708},"arcs":[477]},{"type":"LineString","properties":{"OBJECTID":497,"Shape_Leng":746.714332708},"arcs":[478]},{"type":"LineString","properties":{"OBJECTID":498,"Shape_Leng":746.714332708},"arcs":[479]},{"type":"LineString","properties":{"OBJECTID":499,"Shape_Leng":746.714332708},"arcs":[480]},{"type":"LineString","properties":{"OBJECTID":500,"Shape_Leng":746.714332708},"arcs":[481]},{"type":"LineString","properties":{"OBJECTID":501,"Shape_Leng":746.714332708},"arcs":[482]},{"type":"LineString","properties":{"OBJECTID":502,"Shape_Leng":746.714332708},"arcs":[483]},{"type":"LineString","properties":{"OBJECTID":503,"Shape_Leng":746.714332708},"arcs":[483]},{"type":"LineString","properties":{"OBJECTID":504,"Shape_Leng":746.714332708},"arcs":[483]},{"type":"LineString","properties":{"OBJECTID":505,"Shape_Leng":746.714332708},"arcs":[483]},{"type":"LineString","properties":{"OBJECTID":506,"Shape_Leng":746.714332708},"arcs":[484]},{"type":"LineString","properties":{"OBJECTID":507,"Shape_Leng":746.714332708},"arcs":[485]},{"type":"LineString","properties":{"OBJECTID":508,"Shape_Leng":746.714332708},"arcs":[486]},{"type":"LineString","properties":{"OBJECTID":509,"Shape_Leng":746.714332708},"arcs":[487]},{"type":"LineString","properties":{"OBJECTID":510,"Shape_Leng":746.714332708},"arcs":[488]},{"type":"LineString","properties":{"OBJECTID":511,"Shape_Leng":746.714332708},"arcs":[489]},{"type":"LineString","properties":{"OBJECTID":512,"Shape_Leng":746.714332708},"arcs":[490]},{"type":"LineString","properties":{"OBJECTID":513,"Shape_Leng":746.714332708},"arcs":[491]},{"type":"LineString","properties":{"OBJECTID":514,"Shape_Leng":746.714332708},"arcs":[492]},{"type":"LineString","properties":{"OBJECTID":515,"Shape_Leng":746.714332708},"arcs":[493]},{"type":"LineString","properties":{"OBJECTID":516,"Shape_Leng":746.714332708},"arcs":[494]},{"type":"LineString","properties":{"OBJECTID":517,"Shape_Leng":746.714332708},"arcs":[495]},{"type":"LineString","properties":{"OBJECTID":518,"Shape_Leng":746.714332708},"arcs":[496]},{"type":"LineString","properties":{"OBJECTID":519,"Shape_Leng":746.714332708},"arcs":[497]},{"type":"LineString","properties":{"OBJECTID":520,"Shape_Leng":746.714332708},"arcs":[498]},{"type":"LineString","properties":{"OBJECTID":521,"Shape_Leng":746.714332708},"arcs":[499]},{"type":"LineString","properties":{"OBJECTID":522,"Shape_Leng":746.714332708},"arcs":[500,501]},{"type":"LineString","properties":{"OBJECTID":523,"Shape_Leng":746.714332708},"arcs":[502]},{"type":"LineString","properties":{"OBJECTID":524,"Shape_Leng":746.714332708},"arcs":[503]},{"type":"LineString","properties":{"OBJECTID":525,"Shape_Leng":746.714332708},"arcs":[504]},{"type":"LineString","properties":{"OBJECTID":526,"Shape_Leng":746.714332708},"arcs":[505]},{"type":"LineString","properties":{"OBJECTID":527,"Shape_Leng":746.714332708},"arcs":[506]},{"type":"LineString","properties":{"OBJECTID":528,"Shape_Leng":746.714332708},"arcs":[507]},{"type":"LineString","properties":{"OBJECTID":529,"Shape_Leng":746.714332708},"arcs":[508]},{"type":"LineString","properties":{"OBJECTID":530,"Shape_Leng":746.714332708},"arcs":[509]},{"type":"LineString","properties":{"OBJECTID":531,"Shape_Leng":746.714332708},"arcs":[510]},{"type":"LineString","properties":{"OBJECTID":532,"Shape_Leng":746.714332708},"arcs":[511]},{"type":"LineString","properties":{"OBJECTID":533,"Shape_Leng":746.714332708},"arcs":[512]},{"type":"LineString","properties":{"OBJECTID":534,"Shape_Leng":746.714332708},"arcs":[513]},{"type":"LineString","properties":{"OBJECTID":535,"Shape_Leng":746.714332708},"arcs":[514]},{"type":"LineString","properties":{"OBJECTID":536,"Shape_Leng":746.714332708},"arcs":[-510]},{"type":"LineString","properties":{"OBJECTID":537,"Shape_Leng":746.714332708},"arcs":[515]},{"type":"LineString","properties":{"OBJECTID":538,"Shape_Leng":746.714332708},"arcs":[516]},{"type":"LineString","properties":{"OBJECTID":539,"Shape_Leng":746.714332708},"arcs":[517]},{"type":"LineString","properties":{"OBJECTID":540,"Shape_Leng":746.714332708},"arcs":[518]},{"type":"LineString","properties":{"OBJECTID":541,"Shape_Leng":746.714332708},"arcs":[519]},{"type":"LineString","properties":{"OBJECTID":542,"Shape_Leng":746.714332708},"arcs":[520]},{"type":"LineString","properties":{"OBJECTID":543,"Shape_Leng":746.714332708},"arcs":[521]},{"type":"LineString","properties":{"OBJECTID":544,"Shape_Leng":746.714332708},"arcs":[522]},{"type":"LineString","properties":{"OBJECTID":545,"Shape_Leng":746.714332708},"arcs":[523]},{"type":"LineString","properties":{"OBJECTID":546,"Shape_Leng":746.714332708},"arcs":[524]},{"type":"LineString","properties":{"OBJECTID":547,"Shape_Leng":746.714332708},"arcs":[525]},{"type":"LineString","properties":{"OBJECTID":548,"Shape_Leng":746.714332708},"arcs":[526]},{"type":"LineString","properties":{"OBJECTID":549,"Shape_Leng":746.714332708},"arcs":[527]},{"type":"LineString","properties":{"OBJECTID":550,"Shape_Leng":746.714332708},"arcs":[528]},{"type":"LineString","properties":{"OBJECTID":551,"Shape_Leng":746.714332708},"arcs":[529]},{"type":"LineString","properties":{"OBJECTID":552,"Shape_Leng":746.714332708},"arcs":[530]},{"type":"LineString","properties":{"OBJECTID":553,"Shape_Leng":746.714332708},"arcs":[531]},{"type":"LineString","properties":{"OBJECTID":554,"Shape_Leng":746.714332708},"arcs":[532]},{"type":"LineString","properties":{"OBJECTID":555,"Shape_Leng":746.714332708},"arcs":[533]},{"type":"LineString","properties":{"OBJECTID":556,"Shape_Leng":746.714332708},"arcs":[534]},{"type":"LineString","properties":{"OBJECTID":557,"Shape_Leng":746.714332708},"arcs":[535]},{"type":"LineString","properties":{"OBJECTID":558,"Shape_Leng":746.714332708},"arcs":[536]},{"type":"LineString","properties":{"OBJECTID":559,"Shape_Leng":746.714332708},"arcs":[537]},{"type":"LineString","properties":{"OBJECTID":560,"Shape_Leng":746.714332708},"arcs":[538]},{"type":"LineString","properties":{"OBJECTID":561,"Shape_Leng":746.714332708},"arcs":[539]},{"type":"LineString","properties":{"OBJECTID":562,"Shape_Leng":746.714332708},"arcs":[540]},{"type":"LineString","properties":{"OBJECTID":563,"Shape_Leng":746.714332708},"arcs":[536]},{"type":"LineString","properties":{"OBJECTID":564,"Shape_Leng":746.714332708},"arcs":[536]},{"type":"LineString","properties":{"OBJECTID":565,"Shape_Leng":746.714332708},"arcs":[538]},{"type":"LineString","properties":{"OBJECTID":566,"Shape_Leng":746.714332708},"arcs":[541]},{"type":"LineString","properties":{"OBJECTID":567,"Shape_Leng":746.714332708},"arcs":[542]},{"type":"LineString","properties":{"OBJECTID":568,"Shape_Leng":746.714332708},"arcs":[543]},{"type":"LineString","properties":{"OBJECTID":569,"Shape_Leng":746.714332708},"arcs":[544]},{"type":"LineString","properties":{"OBJECTID":570,"Shape_Leng":746.714332708},"arcs":[545]},{"type":"LineString","properties":{"OBJECTID":571,"Shape_Leng":746.714332708},"arcs":[546]},{"type":"LineString","properties":{"OBJECTID":572,"Shape_Leng":746.714332708},"arcs":[547]},{"type":"LineString","properties":{"OBJECTID":573,"Shape_Leng":746.714332708},"arcs":[548]},{"type":"LineString","properties":{"OBJECTID":574,"Shape_Leng":746.714332708},"arcs":[549]},{"type":"LineString","properties":{"OBJECTID":575,"Shape_Leng":746.714332708},"arcs":[550]},{"type":"LineString","properties":{"OBJECTID":576,"Shape_Leng":746.714332708},"arcs":[551]},{"type":"LineString","properties":{"OBJECTID":577,"Shape_Leng":746.714332708},"arcs":[552]},{"type":"LineString","properties":{"OBJECTID":578,"Shape_Leng":746.714332708},"arcs":[553]},{"type":"LineString","properties":{"OBJECTID":579,"Shape_Leng":746.714332708},"arcs":[554]},{"type":"LineString","properties":{"OBJECTID":580,"Shape_Leng":746.714332708},"arcs":[555,556]},{"type":"LineString","properties":{"OBJECTID":581,"Shape_Leng":746.714332708},"arcs":[557]},{"type":"LineString","properties":{"OBJECTID":582,"Shape_Leng":746.714332708},"arcs":[558]},{"type":"LineString","properties":{"OBJECTID":583,"Shape_Leng":746.714332708},"arcs":[559]},{"type":"LineString","properties":{"OBJECTID":584,"Shape_Leng":746.714332708},"arcs":[560]},{"type":"LineString","properties":{"OBJECTID":585,"Shape_Leng":746.714332708},"arcs":[561]},{"type":"LineString","properties":{"OBJECTID":586,"Shape_Leng":746.714332708},"arcs":[562]},{"type":"LineString","properties":{"OBJECTID":587,"Shape_Leng":746.714332708},"arcs":[563]},{"type":"LineString","properties":{"OBJECTID":588,"Shape_Leng":746.714332708},"arcs":[564]},{"type":"LineString","properties":{"OBJECTID":589,"Shape_Leng":746.714332708},"arcs":[565]},{"type":"LineString","properties":{"OBJECTID":590,"Shape_Leng":746.714332708},"arcs":[566]},{"type":"LineString","properties":{"OBJECTID":591,"Shape_Leng":746.714332708},"arcs":[567]},{"type":"LineString","properties":{"OBJECTID":592,"Shape_Leng":746.714332708},"arcs":[568]},{"type":"LineString","properties":{"OBJECTID":593,"Shape_Leng":746.714332708},"arcs":[569]},{"type":"LineString","properties":{"OBJECTID":594,"Shape_Leng":746.714332708},"arcs":[570]},{"type":"LineString","properties":{"OBJECTID":595,"Shape_Leng":746.714332708},"arcs":[571]},{"type":"LineString","properties":{"OBJECTID":596,"Shape_Leng":746.714332708},"arcs":[572]},{"type":"LineString","properties":{"OBJECTID":597,"Shape_Leng":746.714332708},"arcs":[573]},{"type":"LineString","properties":{"OBJECTID":598,"Shape_Leng":746.714332708},"arcs":[574]},{"type":"LineString","properties":{"OBJECTID":599,"Shape_Leng":746.714332708},"arcs":[575]},{"type":"LineString","properties":{"OBJECTID":600,"Shape_Leng":746.714332708},"arcs":[576]},{"type":"LineString","properties":{"OBJECTID":601,"Shape_Leng":746.714332708},"arcs":[577]},{"type":"LineString","properties":{"OBJECTID":602,"Shape_Leng":746.714332708},"arcs":[578]},{"type":"LineString","properties":{"OBJECTID":603,"Shape_Leng":746.714332708},"arcs":[579]},{"type":"LineString","properties":{"OBJECTID":604,"Shape_Leng":746.714332708},"arcs":[580]},{"type":"LineString","properties":{"OBJECTID":605,"Shape_Leng":746.714332708},"arcs":[581]},{"type":"LineString","properties":{"OBJECTID":606,"Shape_Leng":746.714332708},"arcs":[582]},{"type":"LineString","properties":{"OBJECTID":607,"Shape_Leng":746.714332708},"arcs":[583]},{"type":"LineString","properties":{"OBJECTID":608,"Shape_Leng":746.714332708},"arcs":[584]},{"type":"LineString","properties":{"OBJECTID":609,"Shape_Leng":746.714332708},"arcs":[585]},{"type":"LineString","properties":{"OBJECTID":610,"Shape_Leng":746.714332708},"arcs":[586]},{"type":"LineString","properties":{"OBJECTID":611,"Shape_Leng":746.714332708},"arcs":[587]},{"type":"LineString","properties":{"OBJECTID":612,"Shape_Leng":746.714332708},"arcs":[588]},{"type":"LineString","properties":{"OBJECTID":613,"Shape_Leng":746.714332708},"arcs":[589]},{"type":"LineString","properties":{"OBJECTID":614,"Shape_Leng":746.714332708},"arcs":[590]},{"type":"LineString","properties":{"OBJECTID":615,"Shape_Leng":746.714332708},"arcs":[591]},{"type":"LineString","properties":{"OBJECTID":616,"Shape_Leng":746.714332708},"arcs":[592]},{"type":"LineString","properties":{"OBJECTID":617,"Shape_Leng":746.714332708},"arcs":[593]},{"type":"LineString","properties":{"OBJECTID":618,"Shape_Leng":746.714332708},"arcs":[594]},{"type":"LineString","properties":{"OBJECTID":619,"Shape_Leng":746.714332708},"arcs":[595]},{"type":"LineString","properties":{"OBJECTID":620,"Shape_Leng":746.714332708},"arcs":[594]},{"type":"LineString","properties":{"OBJECTID":621,"Shape_Leng":746.714332708},"arcs":[596]},{"type":"LineString","properties":{"OBJECTID":622,"Shape_Leng":746.714332708},"arcs":[597]},{"type":"LineString","properties":{"OBJECTID":623,"Shape_Leng":746.714332708},"arcs":[598]},{"type":"LineString","properties":{"OBJECTID":624,"Shape_Leng":746.714332708},"arcs":[599]},{"type":"LineString","properties":{"OBJECTID":625,"Shape_Leng":746.714332708},"arcs":[600]},{"type":"LineString","properties":{"OBJECTID":626,"Shape_Leng":746.714332708},"arcs":[601]},{"type":"LineString","properties":{"OBJECTID":627,"Shape_Leng":746.714332708},"arcs":[602]},{"type":"LineString","properties":{"OBJECTID":628,"Shape_Leng":746.714332708},"arcs":[603]},{"type":"LineString","properties":{"OBJECTID":629,"Shape_Leng":746.714332708},"arcs":[604]},{"type":"LineString","properties":{"OBJECTID":630,"Shape_Leng":746.714332708},"arcs":[605]},{"type":"LineString","properties":{"OBJECTID":631,"Shape_Leng":746.714332708},"arcs":[606]},{"type":"LineString","properties":{"OBJECTID":632,"Shape_Leng":746.714332708},"arcs":[607]},{"type":"LineString","properties":{"OBJECTID":633,"Shape_Leng":746.714332708},"arcs":[608]},{"type":"LineString","properties":{"OBJECTID":634,"Shape_Leng":746.714332708},"arcs":[609]},{"type":"LineString","properties":{"OBJECTID":635,"Shape_Leng":746.714332708},"arcs":[610]},{"type":"LineString","properties":{"OBJECTID":636,"Shape_Leng":746.714332708},"arcs":[611]},{"type":"LineString","properties":{"OBJECTID":637,"Shape_Leng":746.714332708},"arcs":[612]},{"type":"LineString","properties":{"OBJECTID":638,"Shape_Leng":746.714332708},"arcs":[613,614]},{"type":"LineString","properties":{"OBJECTID":639,"Shape_Leng":746.714332708},"arcs":[615]},{"type":"LineString","properties":{"OBJECTID":640,"Shape_Leng":746.714332708},"arcs":[616]},{"type":"LineString","properties":{"OBJECTID":641,"Shape_Leng":746.714332708},"arcs":[617]},{"type":"LineString","properties":{"OBJECTID":642,"Shape_Leng":746.714332708},"arcs":[618]},{"type":"LineString","properties":{"OBJECTID":643,"Shape_Leng":746.714332708},"arcs":[619]},{"type":"LineString","properties":{"OBJECTID":644,"Shape_Leng":746.714332708},"arcs":[620]},{"type":"LineString","properties":{"OBJECTID":645,"Shape_Leng":746.714332708},"arcs":[621]},{"type":"LineString","properties":{"OBJECTID":646,"Shape_Leng":746.714332708},"arcs":[622]},{"type":"LineString","properties":{"OBJECTID":647,"Shape_Leng":746.714332708},"arcs":[623]},{"type":"LineString","properties":{"OBJECTID":648,"Shape_Leng":746.714332708},"arcs":[624]},{"type":"LineString","properties":{"OBJECTID":649,"Shape_Leng":746.714332708},"arcs":[625]},{"type":"LineString","properties":{"OBJECTID":650,"Shape_Leng":746.714332708},"arcs":[-624]},{"type":"LineString","properties":{"OBJECTID":651,"Shape_Leng":746.714332708},"arcs":[626]},{"type":"LineString","properties":{"OBJECTID":652,"Shape_Leng":746.714332708},"arcs":[627]},{"type":"LineString","properties":{"OBJECTID":653,"Shape_Leng":746.714332708},"arcs":[628]},{"type":"LineString","properties":{"OBJECTID":654,"Shape_Leng":746.714332708},"arcs":[629]},{"type":"LineString","properties":{"OBJECTID":655,"Shape_Leng":746.714332708},"arcs":[630]},{"type":"LineString","properties":{"OBJECTID":656,"Shape_Leng":746.714332708},"arcs":[631]},{"type":"LineString","properties":{"OBJECTID":657,"Shape_Leng":746.714332708},"arcs":[632]},{"type":"LineString","properties":{"OBJECTID":658,"Shape_Leng":746.714332708},"arcs":[633]},{"type":"LineString","properties":{"OBJECTID":659,"Shape_Leng":746.714332708},"arcs":[634]},{"type":"LineString","properties":{"OBJECTID":660,"Shape_Leng":746.714332708},"arcs":[635]},{"type":"LineString","properties":{"OBJECTID":661,"Shape_Leng":746.714332708},"arcs":[636]},{"type":"LineString","properties":{"OBJECTID":662,"Shape_Leng":746.714332708},"arcs":[637]},{"type":"LineString","properties":{"OBJECTID":663,"Shape_Leng":746.714332708},"arcs":[638]},{"type":"LineString","properties":{"OBJECTID":664,"Shape_Leng":746.714332708},"arcs":[639]},{"type":"LineString","properties":{"OBJECTID":665,"Shape_Leng":746.714332708},"arcs":[640]},{"type":"LineString","properties":{"OBJECTID":666,"Shape_Leng":746.714332708},"arcs":[641]},{"type":"LineString","properties":{"OBJECTID":667,"Shape_Leng":746.714332708},"arcs":[642]},{"type":"LineString","properties":{"OBJECTID":668,"Shape_Leng":746.714332708},"arcs":[643]},{"type":"LineString","properties":{"OBJECTID":669,"Shape_Leng":746.714332708},"arcs":[644]},{"type":"LineString","properties":{"OBJECTID":670,"Shape_Leng":746.714332708},"arcs":[645]},{"type":"LineString","properties":{"OBJECTID":671,"Shape_Leng":746.714332708},"arcs":[646]},{"type":"LineString","properties":{"OBJECTID":672,"Shape_Leng":746.714332708},"arcs":[647]},{"type":"LineString","properties":{"OBJECTID":673,"Shape_Leng":746.714332708},"arcs":[648]},{"type":"LineString","properties":{"OBJECTID":674,"Shape_Leng":746.714332708},"arcs":[649]},{"type":"LineString","properties":{"OBJECTID":675,"Shape_Leng":746.714332708},"arcs":[650]},{"type":"LineString","properties":{"OBJECTID":676,"Shape_Leng":746.714332708},"arcs":[651]},{"type":"LineString","properties":{"OBJECTID":677,"Shape_Leng":746.714332708},"arcs":[652]},{"type":"LineString","properties":{"OBJECTID":678,"Shape_Leng":746.714332708},"arcs":[653]},{"type":"LineString","properties":{"OBJECTID":679,"Shape_Leng":746.714332708},"arcs":[654]},{"type":"LineString","properties":{"OBJECTID":680,"Shape_Leng":746.714332708},"arcs":[655]},{"type":"LineString","properties":{"OBJECTID":681,"Shape_Leng":746.714332708},"arcs":[656]},{"type":"LineString","properties":{"OBJECTID":682,"Shape_Leng":746.714332708},"arcs":[657]},{"type":"LineString","properties":{"OBJECTID":683,"Shape_Leng":746.714332708},"arcs":[658]},{"type":"LineString","properties":{"OBJECTID":684,"Shape_Leng":746.714332708},"arcs":[-650]},{"type":"LineString","properties":{"OBJECTID":685,"Shape_Leng":746.714332708},"arcs":[659]},{"type":"LineString","properties":{"OBJECTID":686,"Shape_Leng":746.714332708},"arcs":[660]},{"type":"LineString","properties":{"OBJECTID":687,"Shape_Leng":746.714332708},"arcs":[661]},{"type":"LineString","properties":{"OBJECTID":688,"Shape_Leng":746.714332708},"arcs":[662]},{"type":"LineString","properties":{"OBJECTID":689,"Shape_Leng":746.714332708},"arcs":[663]},{"type":"LineString","properties":{"OBJECTID":690,"Shape_Leng":746.714332708},"arcs":[664]},{"type":"LineString","properties":{"OBJECTID":691,"Shape_Leng":746.714332708},"arcs":[665]},{"type":"LineString","properties":{"OBJECTID":692,"Shape_Leng":746.714332708},"arcs":[666]},{"type":"LineString","properties":{"OBJECTID":693,"Shape_Leng":746.714332708},"arcs":[667]},{"type":"LineString","properties":{"OBJECTID":694,"Shape_Leng":746.714332708},"arcs":[668]},{"type":"LineString","properties":{"OBJECTID":695,"Shape_Leng":746.714332708},"arcs":[669]},{"type":"LineString","properties":{"OBJECTID":696,"Shape_Leng":746.714332708},"arcs":[670]},{"type":"LineString","properties":{"OBJECTID":697,"Shape_Leng":746.714332708},"arcs":[671]},{"type":"LineString","properties":{"OBJECTID":698,"Shape_Leng":746.714332708},"arcs":[672]},{"type":"LineString","properties":{"OBJECTID":699,"Shape_Leng":746.714332708},"arcs":[673]},{"type":"LineString","properties":{"OBJECTID":700,"Shape_Leng":746.714332708},"arcs":[674]},{"type":"LineString","properties":{"OBJECTID":701,"Shape_Leng":746.714332708},"arcs":[675]},{"type":"LineString","properties":{"OBJECTID":702,"Shape_Leng":746.714332708},"arcs":[676]},{"type":"LineString","properties":{"OBJECTID":703,"Shape_Leng":746.714332708},"arcs":[677]},{"type":"LineString","properties":{"OBJECTID":704,"Shape_Leng":746.714332708},"arcs":[678]},{"type":"LineString","properties":{"OBJECTID":705,"Shape_Leng":746.714332708},"arcs":[679]},{"type":"LineString","properties":{"OBJECTID":706,"Shape_Leng":746.714332708},"arcs":[680]},{"type":"LineString","properties":{"OBJECTID":707,"Shape_Leng":746.714332708},"arcs":[681]},{"type":"LineString","properties":{"OBJECTID":708,"Shape_Leng":746.714332708},"arcs":[682]},{"type":"LineString","properties":{"OBJECTID":709,"Shape_Leng":746.714332708},"arcs":[683]},{"type":"LineString","properties":{"OBJECTID":710,"Shape_Leng":746.714332708},"arcs":[684]},{"type":"LineString","properties":{"OBJECTID":711,"Shape_Leng":746.714332708},"arcs":[685]},{"type":"LineString","properties":{"OBJECTID":712,"Shape_Leng":746.714332708},"arcs":[686]},{"type":"LineString","properties":{"OBJECTID":713,"Shape_Leng":746.714332708},"arcs":[687]},{"type":"LineString","properties":{"OBJECTID":714,"Shape_Leng":746.714332708},"arcs":[688]},{"type":"LineString","properties":{"OBJECTID":715,"Shape_Leng":746.714332708},"arcs":[689]},{"type":"LineString","properties":{"OBJECTID":716,"Shape_Leng":746.714332708},"arcs":[690]},{"type":"LineString","properties":{"OBJECTID":717,"Shape_Leng":746.714332708},"arcs":[691]},{"type":"LineString","properties":{"OBJECTID":718,"Shape_Leng":746.714332708},"arcs":[692]},{"type":"LineString","properties":{"OBJECTID":719,"Shape_Leng":746.714332708},"arcs":[693]},{"type":"LineString","properties":{"OBJECTID":720,"Shape_Leng":746.714332708},"arcs":[694]},{"type":"LineString","properties":{"OBJECTID":721,"Shape_Leng":746.714332708},"arcs":[695]},{"type":"LineString","properties":{"OBJECTID":722,"Shape_Leng":746.714332708},"arcs":[696]},{"type":"LineString","properties":{"OBJECTID":723,"Shape_Leng":746.714332708},"arcs":[697]},{"type":"LineString","properties":{"OBJECTID":724,"Shape_Leng":746.714332708},"arcs":[698]},{"type":"LineString","properties":{"OBJECTID":725,"Shape_Leng":746.714332708},"arcs":[699]},{"type":"LineString","properties":{"OBJECTID":726,"Shape_Leng":746.714332708},"arcs":[700]},{"type":"LineString","properties":{"OBJECTID":727,"Shape_Leng":746.714332708},"arcs":[701]},{"type":"LineString","properties":{"OBJECTID":728,"Shape_Leng":746.714332708},"arcs":[702]},{"type":"LineString","properties":{"OBJECTID":729,"Shape_Leng":746.714332708},"arcs":[703]},{"type":"LineString","properties":{"OBJECTID":730,"Shape_Leng":746.714332708},"arcs":[704]},{"type":"LineString","properties":{"OBJECTID":731,"Shape_Leng":746.714332708},"arcs":[705]},{"type":"LineString","properties":{"OBJECTID":732,"Shape_Leng":746.714332708},"arcs":[706]},{"type":"LineString","properties":{"OBJECTID":733,"Shape_Leng":746.714332708},"arcs":[707]},{"type":"LineString","properties":{"OBJECTID":734,"Shape_Leng":746.714332708},"arcs":[708]},{"type":"LineString","properties":{"OBJECTID":735,"Shape_Leng":746.714332708},"arcs":[709]},{"type":"LineString","properties":{"OBJECTID":736,"Shape_Leng":746.714332708},"arcs":[710]},{"type":"LineString","properties":{"OBJECTID":737,"Shape_Leng":746.714332708},"arcs":[711]},{"type":"LineString","properties":{"OBJECTID":738,"Shape_Leng":746.714332708},"arcs":[712]},{"type":"LineString","properties":{"OBJECTID":739,"Shape_Leng":746.714332708},"arcs":[713]},{"type":"LineString","properties":{"OBJECTID":740,"Shape_Leng":746.714332708},"arcs":[714]},{"type":"LineString","properties":{"OBJECTID":741,"Shape_Leng":746.714332708},"arcs":[714]},{"type":"LineString","properties":{"OBJECTID":742,"Shape_Leng":746.714332708},"arcs":[715]},{"type":"LineString","properties":{"OBJECTID":743,"Shape_Leng":746.714332708},"arcs":[716]},{"type":"LineString","properties":{"OBJECTID":744,"Shape_Leng":746.714332708},"arcs":[717]},{"type":"LineString","properties":{"OBJECTID":745,"Shape_Leng":746.714332708},"arcs":[718]},{"type":"LineString","properties":{"OBJECTID":746,"Shape_Leng":746.714332708},"arcs":[719]},{"type":"LineString","properties":{"OBJECTID":747,"Shape_Leng":746.714332708},"arcs":[720]},{"type":"LineString","properties":{"OBJECTID":748,"Shape_Leng":746.714332708},"arcs":[721]},{"type":"LineString","properties":{"OBJECTID":749,"Shape_Leng":746.714332708},"arcs":[722]},{"type":"LineString","properties":{"OBJECTID":750,"Shape_Leng":746.714332708},"arcs":[723]},{"type":"LineString","properties":{"OBJECTID":751,"Shape_Leng":746.714332708},"arcs":[724]},{"type":"LineString","properties":{"OBJECTID":752,"Shape_Leng":746.714332708},"arcs":[725]},{"type":"LineString","properties":{"OBJECTID":753,"Shape_Leng":746.714332708},"arcs":[726]},{"type":"LineString","properties":{"OBJECTID":754,"Shape_Leng":746.714332708},"arcs":[727]},{"type":"LineString","properties":{"OBJECTID":755,"Shape_Leng":746.714332708},"arcs":[728]},{"type":"LineString","properties":{"OBJECTID":756,"Shape_Leng":746.714332708},"arcs":[729]},{"type":"LineString","properties":{"OBJECTID":757,"Shape_Leng":746.714332708},"arcs":[730]},{"type":"LineString","properties":{"OBJECTID":758,"Shape_Leng":746.714332708},"arcs":[731]},{"type":"LineString","properties":{"OBJECTID":759,"Shape_Leng":746.714332708},"arcs":[-730]},{"type":"LineString","properties":{"OBJECTID":760,"Shape_Leng":746.714332708},"arcs":[732]},{"type":"LineString","properties":{"OBJECTID":761,"Shape_Leng":746.714332708},"arcs":[733]},{"type":"LineString","properties":{"OBJECTID":762,"Shape_Leng":746.714332708},"arcs":[734]},{"type":"LineString","properties":{"OBJECTID":763,"Shape_Leng":746.714332708},"arcs":[735]},{"type":"LineString","properties":{"OBJECTID":764,"Shape_Leng":746.714332708},"arcs":[736]},{"type":"LineString","properties":{"OBJECTID":765,"Shape_Leng":746.714332708},"arcs":[737]},{"type":"LineString","properties":{"OBJECTID":766,"Shape_Leng":746.714332708},"arcs":[738]},{"type":"LineString","properties":{"OBJECTID":767,"Shape_Leng":746.714332708},"arcs":[739]},{"type":"LineString","properties":{"OBJECTID":768,"Shape_Leng":746.714332708},"arcs":[740]},{"type":"LineString","properties":{"OBJECTID":769,"Shape_Leng":746.714332708},"arcs":[741]},{"type":"LineString","properties":{"OBJECTID":770,"Shape_Leng":746.714332708},"arcs":[742]},{"type":"LineString","properties":{"OBJECTID":771,"Shape_Leng":746.714332708},"arcs":[740]},{"type":"LineString","properties":{"OBJECTID":772,"Shape_Leng":746.714332708},"arcs":[740]},{"type":"LineString","properties":{"OBJECTID":773,"Shape_Leng":746.714332708},"arcs":[743]},{"type":"LineString","properties":{"OBJECTID":774,"Shape_Leng":746.714332708},"arcs":[744]},{"type":"LineString","properties":{"OBJECTID":775,"Shape_Leng":746.714332708},"arcs":[745]},{"type":"LineString","properties":{"OBJECTID":776,"Shape_Leng":746.714332708},"arcs":[746]},{"type":"LineString","properties":{"OBJECTID":777,"Shape_Leng":746.714332708},"arcs":[747]},{"type":"LineString","properties":{"OBJECTID":778,"Shape_Leng":746.714332708},"arcs":[748]},{"type":"LineString","properties":{"OBJECTID":779,"Shape_Leng":746.714332708},"arcs":[749]},{"type":"LineString","properties":{"OBJECTID":780,"Shape_Leng":746.714332708},"arcs":[750,751]},{"type":"LineString","properties":{"OBJECTID":781,"Shape_Leng":746.714332708},"arcs":[-749]},{"type":"LineString","properties":{"OBJECTID":782,"Shape_Leng":746.714332708},"arcs":[752,753]},{"type":"LineString","properties":{"OBJECTID":783,"Shape_Leng":746.714332708},"arcs":[754]},{"type":"LineString","properties":{"OBJECTID":784,"Shape_Leng":746.714332708},"arcs":[755]},{"type":"LineString","properties":{"OBJECTID":785,"Shape_Leng":746.714332708},"arcs":[756]},{"type":"LineString","properties":{"OBJECTID":786,"Shape_Leng":746.714332708},"arcs":[757]},{"type":"LineString","properties":{"OBJECTID":787,"Shape_Leng":746.714332708},"arcs":[758]},{"type":"LineString","properties":{"OBJECTID":788,"Shape_Leng":746.714332708},"arcs":[759]},{"type":"LineString","properties":{"OBJECTID":789,"Shape_Leng":746.714332708},"arcs":[760,761]},{"type":"LineString","properties":{"OBJECTID":790,"Shape_Leng":746.714332708},"arcs":[762]},{"type":"LineString","properties":{"OBJECTID":791,"Shape_Leng":746.714332708},"arcs":[763]},{"type":"LineString","properties":{"OBJECTID":792,"Shape_Leng":746.714332708},"arcs":[763]},{"type":"LineString","properties":{"OBJECTID":793,"Shape_Leng":746.714332708},"arcs":[764]},{"type":"LineString","properties":{"OBJECTID":794,"Shape_Leng":746.714332708},"arcs":[765]},{"type":"LineString","properties":{"OBJECTID":795,"Shape_Leng":746.714332708},"arcs":[766]},{"type":"LineString","properties":{"OBJECTID":796,"Shape_Leng":746.714332708},"arcs":[767]},{"type":"LineString","properties":{"OBJECTID":797,"Shape_Leng":746.714332708},"arcs":[768]},{"type":"LineString","properties":{"OBJECTID":798,"Shape_Leng":746.714332708},"arcs":[769]},{"type":"LineString","properties":{"OBJECTID":799,"Shape_Leng":746.714332708},"arcs":[770]},{"type":"LineString","properties":{"OBJECTID":800,"Shape_Leng":746.714332708},"arcs":[771]},{"type":"LineString","properties":{"OBJECTID":801,"Shape_Leng":746.714332708},"arcs":[772,773]},{"type":"LineString","properties":{"OBJECTID":802,"Shape_Leng":746.714332708},"arcs":[774]},{"type":"LineString","properties":{"OBJECTID":803,"Shape_Leng":746.714332708},"arcs":[775]},{"type":"LineString","properties":{"OBJECTID":804,"Shape_Leng":746.714332708},"arcs":[776]},{"type":"LineString","properties":{"OBJECTID":805,"Shape_Leng":746.714332708},"arcs":[777]},{"type":"LineString","properties":{"OBJECTID":806,"Shape_Leng":746.714332708},"arcs":[778]},{"type":"LineString","properties":{"OBJECTID":807,"Shape_Leng":746.714332708},"arcs":[778]},{"type":"LineString","properties":{"OBJECTID":808,"Shape_Leng":746.714332708},"arcs":[779]},{"type":"LineString","properties":{"OBJECTID":809,"Shape_Leng":746.714332708},"arcs":[778]},{"type":"LineString","properties":{"OBJECTID":810,"Shape_Leng":746.714332708},"arcs":[778]},{"type":"LineString","properties":{"OBJECTID":811,"Shape_Leng":746.714332708},"arcs":[780]},{"type":"LineString","properties":{"OBJECTID":812,"Shape_Leng":746.714332708},"arcs":[781]},{"type":"LineString","properties":{"OBJECTID":813,"Shape_Leng":746.714332708},"arcs":[782]},{"type":"LineString","properties":{"OBJECTID":814,"Shape_Leng":746.714332708},"arcs":[783]},{"type":"LineString","properties":{"OBJECTID":815,"Shape_Leng":746.714332708},"arcs":[784]},{"type":"LineString","properties":{"OBJECTID":816,"Shape_Leng":746.714332708},"arcs":[785]},{"type":"LineString","properties":{"OBJECTID":817,"Shape_Leng":746.714332708},"arcs":[786]},{"type":"LineString","properties":{"OBJECTID":818,"Shape_Leng":746.714332708},"arcs":[787]},{"type":"LineString","properties":{"OBJECTID":819,"Shape_Leng":746.714332708},"arcs":[788]},{"type":"LineString","properties":{"OBJECTID":820,"Shape_Leng":746.714332708},"arcs":[789]},{"type":"LineString","properties":{"OBJECTID":821,"Shape_Leng":746.714332708},"arcs":[787]},{"type":"LineString","properties":{"OBJECTID":822,"Shape_Leng":746.714332708},"arcs":[790]},{"type":"LineString","properties":{"OBJECTID":823,"Shape_Leng":746.714332708},"arcs":[791]},{"type":"LineString","properties":{"OBJECTID":824,"Shape_Leng":746.714332708},"arcs":[792]},{"type":"LineString","properties":{"OBJECTID":825,"Shape_Leng":746.714332708},"arcs":[793]},{"type":"LineString","properties":{"OBJECTID":826,"Shape_Leng":746.714332708},"arcs":[794]},{"type":"LineString","properties":{"OBJECTID":827,"Shape_Leng":746.714332708},"arcs":[795]},{"type":"LineString","properties":{"OBJECTID":828,"Shape_Leng":746.714332708},"arcs":[796]},{"type":"LineString","properties":{"OBJECTID":829,"Shape_Leng":746.714332708},"arcs":[797]},{"type":"LineString","properties":{"OBJECTID":830,"Shape_Leng":746.714332708},"arcs":[798]},{"type":"LineString","properties":{"OBJECTID":831,"Shape_Leng":746.714332708},"arcs":[799]},{"type":"LineString","properties":{"OBJECTID":832,"Shape_Leng":746.714332708},"arcs":[800]},{"type":"LineString","properties":{"OBJECTID":833,"Shape_Leng":746.714332708},"arcs":[801]},{"type":"LineString","properties":{"OBJECTID":834,"Shape_Leng":746.714332708},"arcs":[802]},{"type":"LineString","properties":{"OBJECTID":835,"Shape_Leng":746.714332708},"arcs":[803]},{"type":"LineString","properties":{"OBJECTID":836,"Shape_Leng":746.714332708},"arcs":[804,805]},{"type":"LineString","properties":{"OBJECTID":837,"Shape_Leng":746.714332708},"arcs":[806]},{"type":"LineString","properties":{"OBJECTID":838,"Shape_Leng":746.714332708},"arcs":[807]},{"type":"LineString","properties":{"OBJECTID":839,"Shape_Leng":746.714332708},"arcs":[808]},{"type":"LineString","properties":{"OBJECTID":840,"Shape_Leng":746.714332708},"arcs":[809]},{"type":"LineString","properties":{"OBJECTID":841,"Shape_Leng":746.714332708},"arcs":[810]},{"type":"LineString","properties":{"OBJECTID":842,"Shape_Leng":746.714332708},"arcs":[811]},{"type":"LineString","properties":{"OBJECTID":843,"Shape_Leng":746.714332708},"arcs":[812]},{"type":"LineString","properties":{"OBJECTID":844,"Shape_Leng":746.714332708},"arcs":[813]},{"type":"LineString","properties":{"OBJECTID":845,"Shape_Leng":746.714332708},"arcs":[814]},{"type":"LineString","properties":{"OBJECTID":846,"Shape_Leng":746.714332708},"arcs":[814]},{"type":"LineString","properties":{"OBJECTID":847,"Shape_Leng":746.714332708},"arcs":[815]},{"type":"LineString","properties":{"OBJECTID":848,"Shape_Leng":746.714332708},"arcs":[816]},{"type":"LineString","properties":{"OBJECTID":849,"Shape_Leng":746.714332708},"arcs":[817]},{"type":"LineString","properties":{"OBJECTID":850,"Shape_Leng":746.714332708},"arcs":[818]},{"type":"LineString","properties":{"OBJECTID":851,"Shape_Leng":746.714332708},"arcs":[819]},{"type":"LineString","properties":{"OBJECTID":852,"Shape_Leng":746.714332708},"arcs":[820]},{"type":"LineString","properties":{"OBJECTID":853,"Shape_Leng":746.714332708},"arcs":[821]},{"type":"LineString","properties":{"OBJECTID":854,"Shape_Leng":746.714332708},"arcs":[822]},{"type":"LineString","properties":{"OBJECTID":855,"Shape_Leng":746.714332708},"arcs":[823]},{"type":"LineString","properties":{"OBJECTID":856,"Shape_Leng":746.714332708},"arcs":[824]},{"type":"LineString","properties":{"OBJECTID":857,"Shape_Leng":746.714332708},"arcs":[825]},{"type":"LineString","properties":{"OBJECTID":858,"Shape_Leng":746.714332708},"arcs":[826]},{"type":"LineString","properties":{"OBJECTID":859,"Shape_Leng":746.714332708},"arcs":[827]},{"type":"LineString","properties":{"OBJECTID":860,"Shape_Leng":746.714332708},"arcs":[828]},{"type":"LineString","properties":{"OBJECTID":861,"Shape_Leng":746.714332708},"arcs":[829,830]},{"type":"LineString","properties":{"OBJECTID":862,"Shape_Leng":746.714332708},"arcs":[831]},{"type":"LineString","properties":{"OBJECTID":863,"Shape_Leng":746.714332708},"arcs":[832]},{"type":"LineString","properties":{"OBJECTID":864,"Shape_Leng":746.714332708},"arcs":[833]},{"type":"LineString","properties":{"OBJECTID":865,"Shape_Leng":746.714332708},"arcs":[834]},{"type":"LineString","properties":{"OBJECTID":866,"Shape_Leng":746.714332708},"arcs":[835]},{"type":"LineString","properties":{"OBJECTID":867,"Shape_Leng":746.714332708},"arcs":[836]},{"type":"LineString","properties":{"OBJECTID":868,"Shape_Leng":746.714332708},"arcs":[837]},{"type":"LineString","properties":{"OBJECTID":869,"Shape_Leng":746.714332708},"arcs":[838]},{"type":"LineString","properties":{"OBJECTID":870,"Shape_Leng":746.714332708},"arcs":[839]},{"type":"LineString","properties":{"OBJECTID":871,"Shape_Leng":746.714332708},"arcs":[840]},{"type":"LineString","properties":{"OBJECTID":872,"Shape_Leng":746.714332708},"arcs":[841]},{"type":"LineString","properties":{"OBJECTID":873,"Shape_Leng":746.714332708},"arcs":[840]},{"type":"LineString","properties":{"OBJECTID":874,"Shape_Leng":746.714332708},"arcs":[840]},{"type":"LineString","properties":{"OBJECTID":875,"Shape_Leng":746.714332708},"arcs":[842]},{"type":"LineString","properties":{"OBJECTID":876,"Shape_Leng":746.714332708},"arcs":[840]},{"type":"LineString","properties":{"OBJECTID":877,"Shape_Leng":746.714332708},"arcs":[840]},{"type":"LineString","properties":{"OBJECTID":878,"Shape_Leng":746.714332708},"arcs":[840]},{"type":"LineString","properties":{"OBJECTID":879,"Shape_Leng":746.714332708},"arcs":[843]},{"type":"LineString","properties":{"OBJECTID":880,"Shape_Leng":746.714332708},"arcs":[844]},{"type":"LineString","properties":{"OBJECTID":881,"Shape_Leng":746.714332708},"arcs":[845,846]},{"type":"LineString","properties":{"OBJECTID":882,"Shape_Leng":746.714332708},"arcs":[847,848]},{"type":"LineString","properties":{"OBJECTID":883,"Shape_Leng":746.714332708},"arcs":[849]},{"type":"LineString","properties":{"OBJECTID":884,"Shape_Leng":746.714332708},"arcs":[850]},{"type":"LineString","properties":{"OBJECTID":885,"Shape_Leng":746.714332708},"arcs":[851]},{"type":"LineString","properties":{"OBJECTID":886,"Shape_Leng":746.714332708},"arcs":[852]},{"type":"LineString","properties":{"OBJECTID":887,"Shape_Leng":746.714332708},"arcs":[853]},{"type":"LineString","properties":{"OBJECTID":888,"Shape_Leng":746.714332708},"arcs":[854,855]},{"type":"LineString","properties":{"OBJECTID":889,"Shape_Leng":746.714332708},"arcs":[856]},{"type":"LineString","properties":{"OBJECTID":890,"Shape_Leng":746.714332708},"arcs":[857]},{"type":"LineString","properties":{"OBJECTID":891,"Shape_Leng":746.714332708},"arcs":[858]},{"type":"LineString","properties":{"OBJECTID":892,"Shape_Leng":746.714332708},"arcs":[859]},{"type":"LineString","properties":{"OBJECTID":893,"Shape_Leng":746.714332708},"arcs":[860]},{"type":"LineString","properties":{"OBJECTID":894,"Shape_Leng":746.714332708},"arcs":[857]},{"type":"LineString","properties":{"OBJECTID":895,"Shape_Leng":746.714332708},"arcs":[861]},{"type":"LineString","properties":{"OBJECTID":896,"Shape_Leng":746.714332708},"arcs":[862]},{"type":"LineString","properties":{"OBJECTID":897,"Shape_Leng":746.714332708},"arcs":[863]},{"type":"LineString","properties":{"OBJECTID":898,"Shape_Leng":746.714332708},"arcs":[864]},{"type":"LineString","properties":{"OBJECTID":899,"Shape_Leng":746.714332708},"arcs":[865]},{"type":"LineString","properties":{"OBJECTID":900,"Shape_Leng":746.714332708},"arcs":[865]},{"type":"LineString","properties":{"OBJECTID":901,"Shape_Leng":746.714332708},"arcs":[866]},{"type":"LineString","properties":{"OBJECTID":902,"Shape_Leng":746.714332708},"arcs":[867]},{"type":"LineString","properties":{"OBJECTID":903,"Shape_Leng":746.714332708},"arcs":[868]},{"type":"LineString","properties":{"OBJECTID":904,"Shape_Leng":746.714332708},"arcs":[869]},{"type":"LineString","properties":{"OBJECTID":905,"Shape_Leng":746.714332708},"arcs":[870]},{"type":"LineString","properties":{"OBJECTID":906,"Shape_Leng":746.714332708},"arcs":[871]},{"type":"LineString","properties":{"OBJECTID":907,"Shape_Leng":746.714332708},"arcs":[872]},{"type":"LineString","properties":{"OBJECTID":908,"Shape_Leng":746.714332708},"arcs":[872]},{"type":"LineString","properties":{"OBJECTID":909,"Shape_Leng":746.714332708},"arcs":[873]},{"type":"LineString","properties":{"OBJECTID":910,"Shape_Leng":746.714332708},"arcs":[874]},{"type":"LineString","properties":{"OBJECTID":911,"Shape_Leng":746.714332708},"arcs":[875]},{"type":"LineString","properties":{"OBJECTID":912,"Shape_Leng":746.714332708},"arcs":[876]},{"type":"LineString","properties":{"OBJECTID":913,"Shape_Leng":746.714332708},"arcs":[877]},{"type":"LineString","properties":{"OBJECTID":914,"Shape_Leng":746.714332708},"arcs":[878]},{"type":"LineString","properties":{"OBJECTID":915,"Shape_Leng":746.714332708},"arcs":[879]},{"type":"LineString","properties":{"OBJECTID":916,"Shape_Leng":746.714332708},"arcs":[880]},{"type":"LineString","properties":{"OBJECTID":917,"Shape_Leng":746.714332708},"arcs":[881]},{"type":"LineString","properties":{"OBJECTID":918,"Shape_Leng":746.714332708},"arcs":[882]},{"type":"LineString","properties":{"OBJECTID":919,"Shape_Leng":746.714332708},"arcs":[883]},{"type":"LineString","properties":{"OBJECTID":920,"Shape_Leng":746.714332708},"arcs":[884]},{"type":"LineString","properties":{"OBJECTID":921,"Shape_Leng":746.714332708},"arcs":[885]},{"type":"LineString","properties":{"OBJECTID":922,"Shape_Leng":746.714332708},"arcs":[886]},{"type":"LineString","properties":{"OBJECTID":923,"Shape_Leng":746.714332708},"arcs":[887]},{"type":"LineString","properties":{"OBJECTID":924,"Shape_Leng":746.714332708},"arcs":[888]},{"type":"LineString","properties":{"OBJECTID":925,"Shape_Leng":746.714332708},"arcs":[889]},{"type":"LineString","properties":{"OBJECTID":926,"Shape_Leng":746.714332708},"arcs":[890]},{"type":"LineString","properties":{"OBJECTID":927,"Shape_Leng":746.714332708},"arcs":[891]},{"type":"LineString","properties":{"OBJECTID":928,"Shape_Leng":746.714332708},"arcs":[892]},{"type":"LineString","properties":{"OBJECTID":929,"Shape_Leng":746.714332708},"arcs":[893]},{"type":"LineString","properties":{"OBJECTID":930,"Shape_Leng":746.714332708},"arcs":[894]},{"type":"LineString","properties":{"OBJECTID":931,"Shape_Leng":746.714332708},"arcs":[895]},{"type":"LineString","properties":{"OBJECTID":932,"Shape_Leng":746.714332708},"arcs":[896]},{"type":"LineString","properties":{"OBJECTID":933,"Shape_Leng":746.714332708},"arcs":[897]},{"type":"LineString","properties":{"OBJECTID":934,"Shape_Leng":746.714332708},"arcs":[898]},{"type":"LineString","properties":{"OBJECTID":935,"Shape_Leng":746.714332708},"arcs":[899]},{"type":"LineString","properties":{"OBJECTID":936,"Shape_Leng":746.714332708},"arcs":[900]},{"type":"LineString","properties":{"OBJECTID":937,"Shape_Leng":746.714332708},"arcs":[901]},{"type":"LineString","properties":{"OBJECTID":938,"Shape_Leng":746.714332708},"arcs":[902]},{"type":"LineString","properties":{"OBJECTID":939,"Shape_Leng":746.714332708},"arcs":[903]},{"type":"LineString","properties":{"OBJECTID":940,"Shape_Leng":746.714332708},"arcs":[904]},{"type":"LineString","properties":{"OBJECTID":941,"Shape_Leng":746.714332708},"arcs":[905]},{"type":"LineString","properties":{"OBJECTID":942,"Shape_Leng":746.714332708},"arcs":[906]},{"type":"LineString","properties":{"OBJECTID":943,"Shape_Leng":746.714332708},"arcs":[907]},{"type":"LineString","properties":{"OBJECTID":944,"Shape_Leng":746.714332708},"arcs":[908]},{"type":"LineString","properties":{"OBJECTID":945,"Shape_Leng":746.714332708},"arcs":[909]},{"type":"LineString","properties":{"OBJECTID":946,"Shape_Leng":746.714332708},"arcs":[910]},{"type":"LineString","properties":{"OBJECTID":947,"Shape_Leng":746.714332708},"arcs":[911]},{"type":"LineString","properties":{"OBJECTID":948,"Shape_Leng":746.714332708},"arcs":[912]},{"type":"LineString","properties":{"OBJECTID":949,"Shape_Leng":746.714332708},"arcs":[913]},{"type":"LineString","properties":{"OBJECTID":950,"Shape_Leng":746.714332708},"arcs":[914]},{"type":"LineString","properties":{"OBJECTID":951,"Shape_Leng":746.714332708},"arcs":[915]},{"type":"LineString","properties":{"OBJECTID":952,"Shape_Leng":746.714332708},"arcs":[915]},{"type":"LineString","properties":{"OBJECTID":953,"Shape_Leng":746.714332708},"arcs":[915]},{"type":"LineString","properties":{"OBJECTID":954,"Shape_Leng":746.714332708},"arcs":[916]},{"type":"LineString","properties":{"OBJECTID":955,"Shape_Leng":746.714332708},"arcs":[915]},{"type":"LineString","properties":{"OBJECTID":956,"Shape_Leng":746.714332708},"arcs":[917]},{"type":"LineString","properties":{"OBJECTID":957,"Shape_Leng":746.714332708},"arcs":[915]},{"type":"LineString","properties":{"OBJECTID":958,"Shape_Leng":746.714332708},"arcs":[918]},{"type":"LineString","properties":{"OBJECTID":959,"Shape_Leng":746.714332708},"arcs":[915]},{"type":"LineString","properties":{"OBJECTID":960,"Shape_Leng":746.714332708},"arcs":[919]},{"type":"LineString","properties":{"OBJECTID":961,"Shape_Leng":746.714332708},"arcs":[920]},{"type":"LineString","properties":{"OBJECTID":962,"Shape_Leng":746.714332708},"arcs":[921]},{"type":"LineString","properties":{"OBJECTID":963,"Shape_Leng":746.714332708},"arcs":[922]},{"type":"LineString","properties":{"OBJECTID":964,"Shape_Leng":746.714332708},"arcs":[923]},{"type":"LineString","properties":{"OBJECTID":965,"Shape_Leng":746.714332708},"arcs":[924]},{"type":"LineString","properties":{"OBJECTID":966,"Shape_Leng":746.714332708},"arcs":[925]},{"type":"LineString","properties":{"OBJECTID":967,"Shape_Leng":746.714332708},"arcs":[926]},{"type":"LineString","properties":{"OBJECTID":968,"Shape_Leng":746.714332708},"arcs":[927]},{"type":"LineString","properties":{"OBJECTID":969,"Shape_Leng":746.714332708},"arcs":[928]},{"type":"LineString","properties":{"OBJECTID":970,"Shape_Leng":746.714332708},"arcs":[929]},{"type":"LineString","properties":{"OBJECTID":971,"Shape_Leng":746.714332708},"arcs":[930]},{"type":"LineString","properties":{"OBJECTID":972,"Shape_Leng":746.714332708},"arcs":[931]},{"type":"LineString","properties":{"OBJECTID":973,"Shape_Leng":746.714332708},"arcs":[932]},{"type":"LineString","properties":{"OBJECTID":974,"Shape_Leng":746.714332708},"arcs":[933]},{"type":"LineString","properties":{"OBJECTID":975,"Shape_Leng":746.714332708},"arcs":[934]},{"type":"LineString","properties":{"OBJECTID":976,"Shape_Leng":746.714332708},"arcs":[935]},{"type":"LineString","properties":{"OBJECTID":977,"Shape_Leng":746.714332708},"arcs":[936,937]},{"type":"LineString","properties":{"OBJECTID":978,"Shape_Leng":746.714332708},"arcs":[938]},{"type":"LineString","properties":{"OBJECTID":979,"Shape_Leng":746.714332708},"arcs":[939]},{"type":"LineString","properties":{"OBJECTID":980,"Shape_Leng":746.714332708},"arcs":[940]},{"type":"LineString","properties":{"OBJECTID":981,"Shape_Leng":746.714332708},"arcs":[941,942]},{"type":"LineString","properties":{"OBJECTID":982,"Shape_Leng":746.714332708},"arcs":[943]},{"type":"LineString","properties":{"OBJECTID":983,"Shape_Leng":746.714332708},"arcs":[944]},{"type":"LineString","properties":{"OBJECTID":984,"Shape_Leng":746.714332708},"arcs":[945]},{"type":"LineString","properties":{"OBJECTID":985,"Shape_Leng":746.714332708},"arcs":[946]},{"type":"LineString","properties":{"OBJECTID":986,"Shape_Leng":746.714332708},"arcs":[947]},{"type":"LineString","properties":{"OBJECTID":987,"Shape_Leng":746.714332708},"arcs":[948]},{"type":"LineString","properties":{"OBJECTID":988,"Shape_Leng":746.714332708},"arcs":[949]},{"type":"LineString","properties":{"OBJECTID":989,"Shape_Leng":746.714332708},"arcs":[950]},{"type":"LineString","properties":{"OBJECTID":990,"Shape_Leng":746.714332708},"arcs":[951]},{"type":"LineString","properties":{"OBJECTID":991,"Shape_Leng":746.714332708},"arcs":[952]},{"type":"LineString","properties":{"OBJECTID":992,"Shape_Leng":746.714332708},"arcs":[953,-942]},{"type":"LineString","properties":{"OBJECTID":993,"Shape_Leng":746.714332708},"arcs":[954]},{"type":"LineString","properties":{"OBJECTID":994,"Shape_Leng":746.714332708},"arcs":[955]},{"type":"LineString","properties":{"OBJECTID":995,"Shape_Leng":746.714332708},"arcs":[955]},{"type":"LineString","properties":{"OBJECTID":996,"Shape_Leng":746.714332708},"arcs":[956]},{"type":"LineString","properties":{"OBJECTID":997,"Shape_Leng":746.714332708},"arcs":[957]},{"type":"LineString","properties":{"OBJECTID":998,"Shape_Leng":746.714332708},"arcs":[958]},{"type":"LineString","properties":{"OBJECTID":999,"Shape_Leng":746.714332708},"arcs":[959]},{"type":"LineString","properties":{"OBJECTID":1000,"Shape_Leng":746.714332708},"arcs":[960]},{"type":"LineString","properties":{"OBJECTID":1001,"Shape_Leng":746.714332708},"arcs":[961]},{"type":"LineString","properties":{"OBJECTID":1002,"Shape_Leng":746.714332708},"arcs":[962]},{"type":"LineString","properties":{"OBJECTID":1003,"Shape_Leng":746.714332708},"arcs":[963]},{"type":"LineString","properties":{"OBJECTID":1004,"Shape_Leng":746.714332708},"arcs":[964]},{"type":"LineString","properties":{"OBJECTID":1005,"Shape_Leng":746.714332708},"arcs":[965]},{"type":"LineString","properties":{"OBJECTID":1006,"Shape_Leng":746.714332708},"arcs":[966]},{"type":"LineString","properties":{"OBJECTID":1007,"Shape_Leng":746.714332708},"arcs":[967]},{"type":"LineString","properties":{"OBJECTID":1008,"Shape_Leng":746.714332708},"arcs":[968]},{"type":"LineString","properties":{"OBJECTID":1009,"Shape_Leng":746.714332708},"arcs":[969]},{"type":"LineString","properties":{"OBJECTID":1010,"Shape_Leng":746.714332708},"arcs":[970]},{"type":"LineString","properties":{"OBJECTID":1011,"Shape_Leng":746.714332708},"arcs":[971]},{"type":"LineString","properties":{"OBJECTID":1012,"Shape_Leng":746.714332708},"arcs":[972]},{"type":"LineString","properties":{"OBJECTID":1013,"Shape_Leng":746.714332708},"arcs":[973]},{"type":"LineString","properties":{"OBJECTID":1014,"Shape_Leng":746.714332708},"arcs":[974]},{"type":"LineString","properties":{"OBJECTID":1015,"Shape_Leng":746.714332708},"arcs":[975]},{"type":"LineString","properties":{"OBJECTID":1016,"Shape_Leng":746.714332708},"arcs":[976]},{"type":"LineString","properties":{"OBJECTID":1017,"Shape_Leng":746.714332708},"arcs":[977]},{"type":"LineString","properties":{"OBJECTID":1018,"Shape_Leng":746.714332708},"arcs":[978]},{"type":"LineString","properties":{"OBJECTID":1019,"Shape_Leng":746.714332708},"arcs":[979]},{"type":"LineString","properties":{"OBJECTID":1020,"Shape_Leng":746.714332708},"arcs":[980]},{"type":"LineString","properties":{"OBJECTID":1021,"Shape_Leng":746.714332708},"arcs":[981]},{"type":"LineString","properties":{"OBJECTID":1022,"Shape_Leng":746.714332708},"arcs":[982]},{"type":"LineString","properties":{"OBJECTID":1023,"Shape_Leng":746.714332708},"arcs":[983]},{"type":"LineString","properties":{"OBJECTID":1024,"Shape_Leng":746.714332708},"arcs":[984]},{"type":"LineString","properties":{"OBJECTID":1025,"Shape_Leng":746.714332708},"arcs":[985]},{"type":"LineString","properties":{"OBJECTID":1026,"Shape_Leng":746.714332708},"arcs":[986]},{"type":"LineString","properties":{"OBJECTID":1027,"Shape_Leng":746.714332708},"arcs":[987]},{"type":"LineString","properties":{"OBJECTID":1028,"Shape_Leng":746.714332708},"arcs":[988]},{"type":"LineString","properties":{"OBJECTID":1029,"Shape_Leng":746.714332708},"arcs":[989]},{"type":"LineString","properties":{"OBJECTID":1030,"Shape_Leng":746.714332708},"arcs":[990]},{"type":"LineString","properties":{"OBJECTID":1031,"Shape_Leng":746.714332708},"arcs":[991]},{"type":"LineString","properties":{"OBJECTID":1032,"Shape_Leng":746.714332708},"arcs":[992]},{"type":"LineString","properties":{"OBJECTID":1033,"Shape_Leng":746.714332708},"arcs":[993]},{"type":"LineString","properties":{"OBJECTID":1034,"Shape_Leng":746.714332708},"arcs":[994]},{"type":"LineString","properties":{"OBJECTID":1035,"Shape_Leng":746.714332708},"arcs":[995]},{"type":"LineString","properties":{"OBJECTID":1036,"Shape_Leng":746.714332708},"arcs":[996]},{"type":"LineString","properties":{"OBJECTID":1037,"Shape_Leng":746.714332708},"arcs":[997]},{"type":"LineString","properties":{"OBJECTID":1038,"Shape_Leng":746.714332708},"arcs":[998]},{"type":"LineString","properties":{"OBJECTID":1039,"Shape_Leng":746.714332708},"arcs":[999]},{"type":"LineString","properties":{"OBJECTID":1040,"Shape_Leng":746.714332708},"arcs":[1000]},{"type":"LineString","properties":{"OBJECTID":1041,"Shape_Leng":746.714332708},"arcs":[1001]},{"type":"LineString","properties":{"OBJECTID":1042,"Shape_Leng":746.714332708},"arcs":[1002]},{"type":"LineString","properties":{"OBJECTID":1043,"Shape_Leng":746.714332708},"arcs":[1003]},{"type":"LineString","properties":{"OBJECTID":1044,"Shape_Leng":746.714332708},"arcs":[1004]},{"type":"LineString","properties":{"OBJECTID":1045,"Shape_Leng":746.714332708},"arcs":[1005]},{"type":"LineString","properties":{"OBJECTID":1046,"Shape_Leng":746.714332708},"arcs":[1006]},{"type":"LineString","properties":{"OBJECTID":1047,"Shape_Leng":746.714332708},"arcs":[1007]},{"type":"LineString","properties":{"OBJECTID":1048,"Shape_Leng":746.714332708},"arcs":[1008]},{"type":"LineString","properties":{"OBJECTID":1049,"Shape_Leng":746.714332708},"arcs":[1009]},{"type":"LineString","properties":{"OBJECTID":1050,"Shape_Leng":746.714332708},"arcs":[1010]},{"type":"LineString","properties":{"OBJECTID":1051,"Shape_Leng":746.714332708},"arcs":[1011]},{"type":"LineString","properties":{"OBJECTID":1052,"Shape_Leng":746.714332708},"arcs":[1012]},{"type":"LineString","properties":{"OBJECTID":1053,"Shape_Leng":746.714332708},"arcs":[1013]},{"type":"LineString","properties":{"OBJECTID":1054,"Shape_Leng":746.714332708},"arcs":[1014]},{"type":"LineString","properties":{"OBJECTID":1055,"Shape_Leng":746.714332708},"arcs":[1015]},{"type":"LineString","properties":{"OBJECTID":1056,"Shape_Leng":746.714332708},"arcs":[1016]},{"type":"LineString","properties":{"OBJECTID":1057,"Shape_Leng":746.714332708},"arcs":[1017]},{"type":"LineString","properties":{"OBJECTID":1058,"Shape_Leng":746.714332708},"arcs":[1018]},{"type":"LineString","properties":{"OBJECTID":1059,"Shape_Leng":746.714332708},"arcs":[1019]},{"type":"LineString","properties":{"OBJECTID":1060,"Shape_Leng":746.714332708},"arcs":[1020]},{"type":"LineString","properties":{"OBJECTID":1061,"Shape_Leng":746.714332708},"arcs":[1021]},{"type":"LineString","properties":{"OBJECTID":1062,"Shape_Leng":746.714332708},"arcs":[1022]},{"type":"LineString","properties":{"OBJECTID":1063,"Shape_Leng":746.714332708},"arcs":[1023]},{"type":"LineString","properties":{"OBJECTID":1064,"Shape_Leng":746.714332708},"arcs":[1024]},{"type":"LineString","properties":{"OBJECTID":1065,"Shape_Leng":746.714332708},"arcs":[1025]},{"type":"LineString","properties":{"OBJECTID":1066,"Shape_Leng":746.714332708},"arcs":[1026]},{"type":"LineString","properties":{"OBJECTID":1067,"Shape_Leng":746.714332708},"arcs":[1027]},{"type":"LineString","properties":{"OBJECTID":1068,"Shape_Leng":746.714332708},"arcs":[1028]},{"type":"LineString","properties":{"OBJECTID":1069,"Shape_Leng":746.714332708},"arcs":[1029]},{"type":"LineString","properties":{"OBJECTID":1070,"Shape_Leng":746.714332708},"arcs":[1030]},{"type":"LineString","properties":{"OBJECTID":1071,"Shape_Leng":746.714332708},"arcs":[1031]},{"type":"LineString","properties":{"OBJECTID":1072,"Shape_Leng":746.714332708},"arcs":[1032]},{"type":"LineString","properties":{"OBJECTID":1073,"Shape_Leng":746.714332708},"arcs":[1033]},{"type":"LineString","properties":{"OBJECTID":1074,"Shape_Leng":746.714332708},"arcs":[1034]},{"type":"LineString","properties":{"OBJECTID":1075,"Shape_Leng":746.714332708},"arcs":[1035]},{"type":"LineString","properties":{"OBJECTID":1076,"Shape_Leng":746.714332708},"arcs":[1036]},{"type":"LineString","properties":{"OBJECTID":1077,"Shape_Leng":746.714332708},"arcs":[1037]},{"type":"LineString","properties":{"OBJECTID":1078,"Shape_Leng":746.714332708},"arcs":[1038]},{"type":"LineString","properties":{"OBJECTID":1079,"Shape_Leng":746.714332708},"arcs":[1039]},{"type":"LineString","properties":{"OBJECTID":1080,"Shape_Leng":746.714332708},"arcs":[1040]},{"type":"LineString","properties":{"OBJECTID":1081,"Shape_Leng":746.714332708},"arcs":[1041]},{"type":"LineString","properties":{"OBJECTID":1082,"Shape_Leng":746.714332708},"arcs":[1042]},{"type":"LineString","properties":{"OBJECTID":1083,"Shape_Leng":746.714332708},"arcs":[1043]},{"type":"LineString","properties":{"OBJECTID":1084,"Shape_Leng":746.714332708},"arcs":[1044]},{"type":"LineString","properties":{"OBJECTID":1085,"Shape_Leng":746.714332708},"arcs":[1045]},{"type":"LineString","properties":{"OBJECTID":1086,"Shape_Leng":746.714332708},"arcs":[1046]},{"type":"LineString","properties":{"OBJECTID":1087,"Shape_Leng":746.714332708},"arcs":[1047]},{"type":"LineString","properties":{"OBJECTID":1088,"Shape_Leng":746.714332708},"arcs":[1048]},{"type":"LineString","properties":{"OBJECTID":1089,"Shape_Leng":746.714332708},"arcs":[1049]},{"type":"LineString","properties":{"OBJECTID":1090,"Shape_Leng":746.714332708},"arcs":[1050]},{"type":"LineString","properties":{"OBJECTID":1091,"Shape_Leng":746.714332708},"arcs":[1051]},{"type":"LineString","properties":{"OBJECTID":1092,"Shape_Leng":746.714332708},"arcs":[1052]},{"type":"LineString","properties":{"OBJECTID":1093,"Shape_Leng":746.714332708},"arcs":[1053]},{"type":"LineString","properties":{"OBJECTID":1094,"Shape_Leng":746.714332708},"arcs":[1054]},{"type":"LineString","properties":{"OBJECTID":1095,"Shape_Leng":746.714332708},"arcs":[1055]},{"type":"LineString","properties":{"OBJECTID":1096,"Shape_Leng":746.714332708},"arcs":[1056]},{"type":"LineString","properties":{"OBJECTID":1097,"Shape_Leng":746.714332708},"arcs":[1057]},{"type":"LineString","properties":{"OBJECTID":1098,"Shape_Leng":746.714332708},"arcs":[1058]},{"type":"LineString","properties":{"OBJECTID":1099,"Shape_Leng":746.714332708},"arcs":[1059]},{"type":"LineString","properties":{"OBJECTID":1100,"Shape_Leng":746.714332708},"arcs":[1060]},{"type":"LineString","properties":{"OBJECTID":1101,"Shape_Leng":746.714332708},"arcs":[1061]},{"type":"LineString","properties":{"OBJECTID":1102,"Shape_Leng":746.714332708},"arcs":[1062]},{"type":"LineString","properties":{"OBJECTID":1103,"Shape_Leng":746.714332708},"arcs":[1063]},{"type":"LineString","properties":{"OBJECTID":1104,"Shape_Leng":746.714332708},"arcs":[1064]},{"type":"LineString","properties":{"OBJECTID":1105,"Shape_Leng":746.714332708},"arcs":[1065]},{"type":"LineString","properties":{"OBJECTID":1106,"Shape_Leng":746.714332708},"arcs":[1066]},{"type":"LineString","properties":{"OBJECTID":1107,"Shape_Leng":746.714332708},"arcs":[1067]},{"type":"LineString","properties":{"OBJECTID":1108,"Shape_Leng":746.714332708},"arcs":[1068]},{"type":"LineString","properties":{"OBJECTID":1109,"Shape_Leng":746.714332708},"arcs":[1069]},{"type":"LineString","properties":{"OBJECTID":1110,"Shape_Leng":746.714332708},"arcs":[1068]},{"type":"LineString","properties":{"OBJECTID":1111,"Shape_Leng":746.714332708},"arcs":[1070]},{"type":"LineString","properties":{"OBJECTID":1112,"Shape_Leng":746.714332708},"arcs":[1071]},{"type":"LineString","properties":{"OBJECTID":1113,"Shape_Leng":746.714332708},"arcs":[1072]},{"type":"LineString","properties":{"OBJECTID":1114,"Shape_Leng":746.714332708},"arcs":[1073]},{"type":"LineString","properties":{"OBJECTID":1115,"Shape_Leng":746.714332708},"arcs":[1074]},{"type":"LineString","properties":{"OBJECTID":1116,"Shape_Leng":746.714332708},"arcs":[1075]},{"type":"LineString","properties":{"OBJECTID":1117,"Shape_Leng":746.714332708},"arcs":[1076]},{"type":"LineString","properties":{"OBJECTID":1118,"Shape_Leng":746.714332708},"arcs":[1077]},{"type":"LineString","properties":{"OBJECTID":1119,"Shape_Leng":746.714332708},"arcs":[1078]},{"type":"LineString","properties":{"OBJECTID":1120,"Shape_Leng":746.714332708},"arcs":[1079]},{"type":"LineString","properties":{"OBJECTID":1121,"Shape_Leng":746.714332708},"arcs":[1080]},{"type":"LineString","properties":{"OBJECTID":1122,"Shape_Leng":746.714332708},"arcs":[1081]},{"type":"LineString","properties":{"OBJECTID":1123,"Shape_Leng":746.714332708},"arcs":[1082]},{"type":"LineString","properties":{"OBJECTID":1124,"Shape_Leng":746.714332708},"arcs":[1083]},{"type":"LineString","properties":{"OBJECTID":1125,"Shape_Leng":746.714332708},"arcs":[1084]},{"type":"LineString","properties":{"OBJECTID":1126,"Shape_Leng":746.714332708},"arcs":[1085]},{"type":"LineString","properties":{"OBJECTID":1127,"Shape_Leng":746.714332708},"arcs":[1086]},{"type":"LineString","properties":{"OBJECTID":1128,"Shape_Leng":746.714332708},"arcs":[1087]},{"type":"LineString","properties":{"OBJECTID":1129,"Shape_Leng":746.714332708},"arcs":[1088]},{"type":"LineString","properties":{"OBJECTID":1130,"Shape_Leng":746.714332708},"arcs":[1089]},{"type":"LineString","properties":{"OBJECTID":1131,"Shape_Leng":746.714332708},"arcs":[1090,1091]},{"type":"LineString","properties":{"OBJECTID":1132,"Shape_Leng":746.714332708},"arcs":[1092]},{"type":"LineString","properties":{"OBJECTID":1133,"Shape_Leng":746.714332708},"arcs":[1093]},{"type":"LineString","properties":{"OBJECTID":1134,"Shape_Leng":746.714332708},"arcs":[1094]},{"type":"LineString","properties":{"OBJECTID":1135,"Shape_Leng":746.714332708},"arcs":[1095]},{"type":"LineString","properties":{"OBJECTID":1136,"Shape_Leng":746.714332708},"arcs":[1095]},{"type":"LineString","properties":{"OBJECTID":1137,"Shape_Leng":746.714332708},"arcs":[1096]},{"type":"LineString","properties":{"OBJECTID":1138,"Shape_Leng":746.714332708},"arcs":[1097]},{"type":"LineString","properties":{"OBJECTID":1139,"Shape_Leng":746.714332708},"arcs":[1098]},{"type":"LineString","properties":{"OBJECTID":1140,"Shape_Leng":746.714332708},"arcs":[1099]},{"type":"LineString","properties":{"OBJECTID":1141,"Shape_Leng":746.714332708},"arcs":[1100]},{"type":"LineString","properties":{"OBJECTID":1142,"Shape_Leng":746.714332708},"arcs":[1101]},{"type":"LineString","properties":{"OBJECTID":1143,"Shape_Leng":746.714332708},"arcs":[1102]},{"type":"LineString","properties":{"OBJECTID":1144,"Shape_Leng":746.714332708},"arcs":[1103]},{"type":"LineString","properties":{"OBJECTID":1145,"Shape_Leng":746.714332708},"arcs":[1104]},{"type":"LineString","properties":{"OBJECTID":1146,"Shape_Leng":746.714332708},"arcs":[1105]},{"type":"LineString","properties":{"OBJECTID":1147,"Shape_Leng":746.714332708},"arcs":[1106]},{"type":"LineString","properties":{"OBJECTID":1148,"Shape_Leng":746.714332708},"arcs":[1107]},{"type":"LineString","properties":{"OBJECTID":1149,"Shape_Leng":746.714332708},"arcs":[1108]},{"type":"LineString","properties":{"OBJECTID":1150,"Shape_Leng":746.714332708},"arcs":[1109]},{"type":"LineString","properties":{"OBJECTID":1151,"Shape_Leng":746.714332708},"arcs":[1110]},{"type":"LineString","properties":{"OBJECTID":1152,"Shape_Leng":746.714332708},"arcs":[1111]},{"type":"LineString","properties":{"OBJECTID":1153,"Shape_Leng":746.714332708},"arcs":[1112]},{"type":"LineString","properties":{"OBJECTID":1154,"Shape_Leng":746.714332708},"arcs":[1113]},{"type":"LineString","properties":{"OBJECTID":1155,"Shape_Leng":746.714332708},"arcs":[1114]},{"type":"LineString","properties":{"OBJECTID":1156,"Shape_Leng":746.714332708},"arcs":[1115]},{"type":"LineString","properties":{"OBJECTID":1157,"Shape_Leng":746.714332708},"arcs":[1116]},{"type":"LineString","properties":{"OBJECTID":1158,"Shape_Leng":746.714332708},"arcs":[1117]},{"type":"LineString","properties":{"OBJECTID":1159,"Shape_Leng":746.714332708},"arcs":[1118]},{"type":"LineString","properties":{"OBJECTID":1160,"Shape_Leng":746.714332708},"arcs":[1119]},{"type":"LineString","properties":{"OBJECTID":1161,"Shape_Leng":746.714332708},"arcs":[1120]},{"type":"LineString","properties":{"OBJECTID":1162,"Shape_Leng":746.714332708},"arcs":[1121]},{"type":"LineString","properties":{"OBJECTID":1163,"Shape_Leng":746.714332708},"arcs":[1122]},{"type":"LineString","properties":{"OBJECTID":1164,"Shape_Leng":746.714332708},"arcs":[1123]},{"type":"LineString","properties":{"OBJECTID":1165,"Shape_Leng":746.714332708},"arcs":[1124]},{"type":"LineString","properties":{"OBJECTID":1166,"Shape_Leng":746.714332708},"arcs":[1125]},{"type":"LineString","properties":{"OBJECTID":1167,"Shape_Leng":746.714332708},"arcs":[1126]},{"type":"LineString","properties":{"OBJECTID":1168,"Shape_Leng":746.714332708},"arcs":[1127]},{"type":"LineString","properties":{"OBJECTID":1169,"Shape_Leng":746.714332708},"arcs":[1128]},{"type":"LineString","properties":{"OBJECTID":1170,"Shape_Leng":746.714332708},"arcs":[1129]},{"type":"LineString","properties":{"OBJECTID":1171,"Shape_Leng":746.714332708},"arcs":[1130]},{"type":"LineString","properties":{"OBJECTID":1172,"Shape_Leng":746.714332708},"arcs":[1131]},{"type":"LineString","properties":{"OBJECTID":1173,"Shape_Leng":746.714332708},"arcs":[1132]},{"type":"LineString","properties":{"OBJECTID":1174,"Shape_Leng":746.714332708},"arcs":[1133]},{"type":"LineString","properties":{"OBJECTID":1175,"Shape_Leng":746.714332708},"arcs":[1134]},{"type":"LineString","properties":{"OBJECTID":1176,"Shape_Leng":746.714332708},"arcs":[1135]},{"type":"LineString","properties":{"OBJECTID":1177,"Shape_Leng":746.714332708},"arcs":[1136,1137]},{"type":"LineString","properties":{"OBJECTID":1178,"Shape_Leng":746.714332708},"arcs":[1138]},{"type":"LineString","properties":{"OBJECTID":1179,"Shape_Leng":746.714332708},"arcs":[1139]},{"type":"LineString","properties":{"OBJECTID":1180,"Shape_Leng":746.714332708},"arcs":[1140]},{"type":"LineString","properties":{"OBJECTID":1181,"Shape_Leng":746.714332708},"arcs":[1141]},{"type":"LineString","properties":{"OBJECTID":1182,"Shape_Leng":746.714332708},"arcs":[1142]},{"type":"LineString","properties":{"OBJECTID":1183,"Shape_Leng":746.714332708},"arcs":[1143]},{"type":"LineString","properties":{"OBJECTID":1184,"Shape_Leng":746.714332708},"arcs":[1144]},{"type":"LineString","properties":{"OBJECTID":1185,"Shape_Leng":746.714332708},"arcs":[1145]},{"type":"LineString","properties":{"OBJECTID":1186,"Shape_Leng":746.714332708},"arcs":[1146]},{"type":"LineString","properties":{"OBJECTID":1187,"Shape_Leng":746.714332708},"arcs":[1147]},{"type":"LineString","properties":{"OBJECTID":1188,"Shape_Leng":746.714332708},"arcs":[1148]},{"type":"LineString","properties":{"OBJECTID":1189,"Shape_Leng":746.714332708},"arcs":[1149]},{"type":"LineString","properties":{"OBJECTID":1190,"Shape_Leng":746.714332708},"arcs":[1150]},{"type":"LineString","properties":{"OBJECTID":1191,"Shape_Leng":746.714332708},"arcs":[1151]},{"type":"LineString","properties":{"OBJECTID":1192,"Shape_Leng":746.714332708},"arcs":[1152]},{"type":"LineString","properties":{"OBJECTID":1193,"Shape_Leng":746.714332708},"arcs":[1153]},{"type":"LineString","properties":{"OBJECTID":1194,"Shape_Leng":746.714332708},"arcs":[1154]},{"type":"LineString","properties":{"OBJECTID":1195,"Shape_Leng":746.714332708},"arcs":[1155]},{"type":"LineString","properties":{"OBJECTID":1196,"Shape_Leng":746.714332708},"arcs":[1156]},{"type":"LineString","properties":{"OBJECTID":1197,"Shape_Leng":746.714332708},"arcs":[1157]},{"type":"LineString","properties":{"OBJECTID":1198,"Shape_Leng":746.714332708},"arcs":[1158]},{"type":"LineString","properties":{"OBJECTID":1199,"Shape_Leng":746.714332708},"arcs":[1159]},{"type":"LineString","properties":{"OBJECTID":1200,"Shape_Leng":746.714332708},"arcs":[1160]},{"type":"LineString","properties":{"OBJECTID":1201,"Shape_Leng":746.714332708},"arcs":[1161]},{"type":"LineString","properties":{"OBJECTID":1202,"Shape_Leng":746.714332708},"arcs":[1162]},{"type":"LineString","properties":{"OBJECTID":1203,"Shape_Leng":746.714332708},"arcs":[1163]},{"type":"LineString","properties":{"OBJECTID":1204,"Shape_Leng":746.714332708},"arcs":[1164]},{"type":"LineString","properties":{"OBJECTID":1205,"Shape_Leng":746.714332708},"arcs":[1165]},{"type":"LineString","properties":{"OBJECTID":1206,"Shape_Leng":746.714332708},"arcs":[1166]},{"type":"LineString","properties":{"OBJECTID":1207,"Shape_Leng":746.714332708},"arcs":[1167]},{"type":"LineString","properties":{"OBJECTID":1208,"Shape_Leng":746.714332708},"arcs":[1168]},{"type":"LineString","properties":{"OBJECTID":1209,"Shape_Leng":746.714332708},"arcs":[1169]},{"type":"LineString","properties":{"OBJECTID":1210,"Shape_Leng":746.714332708},"arcs":[1170]},{"type":"LineString","properties":{"OBJECTID":1211,"Shape_Leng":746.714332708},"arcs":[1171]},{"type":"LineString","properties":{"OBJECTID":1212,"Shape_Leng":746.714332708},"arcs":[1172]},{"type":"LineString","properties":{"OBJECTID":1213,"Shape_Leng":746.714332708},"arcs":[1173]},{"type":"LineString","properties":{"OBJECTID":1214,"Shape_Leng":746.714332708},"arcs":[1174]},{"type":"LineString","properties":{"OBJECTID":1215,"Shape_Leng":746.714332708},"arcs":[1175]},{"type":"LineString","properties":{"OBJECTID":1216,"Shape_Leng":746.714332708},"arcs":[1176]},{"type":"LineString","properties":{"OBJECTID":1217,"Shape_Leng":746.714332708},"arcs":[1177]},{"type":"LineString","properties":{"OBJECTID":1218,"Shape_Leng":746.714332708},"arcs":[1178]},{"type":"LineString","properties":{"OBJECTID":1219,"Shape_Leng":746.714332708},"arcs":[1177]},{"type":"LineString","properties":{"OBJECTID":1220,"Shape_Leng":746.714332708},"arcs":[1177]},{"type":"LineString","properties":{"OBJECTID":1221,"Shape_Leng":746.714332708},"arcs":[1179]},{"type":"LineString","properties":{"OBJECTID":1222,"Shape_Leng":746.714332708},"arcs":[1180]},{"type":"LineString","properties":{"OBJECTID":1223,"Shape_Leng":746.714332708},"arcs":[1181]},{"type":"LineString","properties":{"OBJECTID":1224,"Shape_Leng":746.714332708},"arcs":[1182]},{"type":"LineString","properties":{"OBJECTID":1225,"Shape_Leng":746.714332708},"arcs":[1183]},{"type":"LineString","properties":{"OBJECTID":1226,"Shape_Leng":746.714332708},"arcs":[1184]},{"type":"LineString","properties":{"OBJECTID":1227,"Shape_Leng":746.714332708},"arcs":[1184]},{"type":"LineString","properties":{"OBJECTID":1228,"Shape_Leng":746.714332708},"arcs":[1185]},{"type":"LineString","properties":{"OBJECTID":1229,"Shape_Leng":746.714332708},"arcs":[1185]},{"type":"LineString","properties":{"OBJECTID":1230,"Shape_Leng":746.714332708},"arcs":[1186]},{"type":"LineString","properties":{"OBJECTID":1231,"Shape_Leng":746.714332708},"arcs":[1187]},{"type":"LineString","properties":{"OBJECTID":1232,"Shape_Leng":746.714332708},"arcs":[1188]},{"type":"LineString","properties":{"OBJECTID":1233,"Shape_Leng":746.714332708},"arcs":[1185]},{"type":"LineString","properties":{"OBJECTID":1234,"Shape_Leng":746.714332708},"arcs":[1189]},{"type":"LineString","properties":{"OBJECTID":1235,"Shape_Leng":746.714332708},"arcs":[1190]},{"type":"LineString","properties":{"OBJECTID":1236,"Shape_Leng":746.714332708},"arcs":[1191]},{"type":"LineString","properties":{"OBJECTID":1237,"Shape_Leng":746.714332708},"arcs":[1192]},{"type":"LineString","properties":{"OBJECTID":1238,"Shape_Leng":746.714332708},"arcs":[1193]},{"type":"LineString","properties":{"OBJECTID":1239,"Shape_Leng":746.714332708},"arcs":[1194]},{"type":"LineString","properties":{"OBJECTID":1240,"Shape_Leng":746.714332708},"arcs":[1195]},{"type":"LineString","properties":{"OBJECTID":1241,"Shape_Leng":746.714332708},"arcs":[1196]},{"type":"LineString","properties":{"OBJECTID":1242,"Shape_Leng":746.714332708},"arcs":[1197]},{"type":"LineString","properties":{"OBJECTID":1243,"Shape_Leng":746.714332708},"arcs":[1198]},{"type":"LineString","properties":{"OBJECTID":1244,"Shape_Leng":746.714332708},"arcs":[1199]},{"type":"LineString","properties":{"OBJECTID":1245,"Shape_Leng":746.714332708},"arcs":[1200]},{"type":"LineString","properties":{"OBJECTID":1246,"Shape_Leng":746.714332708},"arcs":[1201]},{"type":"LineString","properties":{"OBJECTID":1247,"Shape_Leng":746.714332708},"arcs":[1202]},{"type":"LineString","properties":{"OBJECTID":1248,"Shape_Leng":746.714332708},"arcs":[1203]},{"type":"LineString","properties":{"OBJECTID":1249,"Shape_Leng":746.714332708},"arcs":[1204]},{"type":"LineString","properties":{"OBJECTID":1250,"Shape_Leng":746.714332708},"arcs":[1205]},{"type":"LineString","properties":{"OBJECTID":1251,"Shape_Leng":746.714332708},"arcs":[1206]},{"type":"LineString","properties":{"OBJECTID":1252,"Shape_Leng":746.714332708},"arcs":[1207]},{"type":"LineString","properties":{"OBJECTID":1253,"Shape_Leng":746.714332708},"arcs":[1208]},{"type":"LineString","properties":{"OBJECTID":1254,"Shape_Leng":746.714332708},"arcs":[1209]},{"type":"LineString","properties":{"OBJECTID":1255,"Shape_Leng":746.714332708},"arcs":[1210]},{"type":"LineString","properties":{"OBJECTID":1256,"Shape_Leng":746.714332708},"arcs":[1211]},{"type":"LineString","properties":{"OBJECTID":1257,"Shape_Leng":746.714332708},"arcs":[1212]},{"type":"LineString","properties":{"OBJECTID":1258,"Shape_Leng":746.714332708},"arcs":[1213]},{"type":"LineString","properties":{"OBJECTID":1259,"Shape_Leng":746.714332708},"arcs":[1214]},{"type":"LineString","properties":{"OBJECTID":1260,"Shape_Leng":746.714332708},"arcs":[1215]},{"type":"LineString","properties":{"OBJECTID":1261,"Shape_Leng":746.714332708},"arcs":[1216]},{"type":"LineString","properties":{"OBJECTID":1262,"Shape_Leng":746.714332708},"arcs":[1217]},{"type":"LineString","properties":{"OBJECTID":1263,"Shape_Leng":746.714332708},"arcs":[1218]},{"type":"LineString","properties":{"OBJECTID":1264,"Shape_Leng":746.714332708},"arcs":[1219]},{"type":"LineString","properties":{"OBJECTID":1265,"Shape_Leng":746.714332708},"arcs":[1220]},{"type":"LineString","properties":{"OBJECTID":1266,"Shape_Leng":746.714332708},"arcs":[1221]},{"type":"LineString","properties":{"OBJECTID":1267,"Shape_Leng":746.714332708},"arcs":[1222]},{"type":"LineString","properties":{"OBJECTID":1268,"Shape_Leng":746.714332708},"arcs":[1223]},{"type":"LineString","properties":{"OBJECTID":1269,"Shape_Leng":746.714332708},"arcs":[1224]},{"type":"LineString","properties":{"OBJECTID":1270,"Shape_Leng":746.714332708},"arcs":[1225]},{"type":"LineString","properties":{"OBJECTID":1271,"Shape_Leng":746.714332708},"arcs":[1226]},{"type":"LineString","properties":{"OBJECTID":1272,"Shape_Leng":746.714332708},"arcs":[1227]},{"type":"LineString","properties":{"OBJECTID":1273,"Shape_Leng":746.714332708},"arcs":[1228]},{"type":"LineString","properties":{"OBJECTID":1274,"Shape_Leng":746.714332708},"arcs":[1229]},{"type":"LineString","properties":{"OBJECTID":1275,"Shape_Leng":746.714332708},"arcs":[1230]},{"type":"LineString","properties":{"OBJECTID":1276,"Shape_Leng":746.714332708},"arcs":[1231]},{"type":"LineString","properties":{"OBJECTID":1277,"Shape_Leng":746.714332708},"arcs":[1232]},{"type":"LineString","properties":{"OBJECTID":1278,"Shape_Leng":746.714332708},"arcs":[1233]},{"type":"LineString","properties":{"OBJECTID":1279,"Shape_Leng":746.714332708},"arcs":[1234]},{"type":"LineString","properties":{"OBJECTID":1280,"Shape_Leng":746.714332708},"arcs":[1235]},{"type":"LineString","properties":{"OBJECTID":1281,"Shape_Leng":746.714332708},"arcs":[1236]},{"type":"LineString","properties":{"OBJECTID":1282,"Shape_Leng":746.714332708},"arcs":[1237]},{"type":"LineString","properties":{"OBJECTID":1283,"Shape_Leng":746.714332708},"arcs":[1238]},{"type":"LineString","properties":{"OBJECTID":1284,"Shape_Leng":746.714332708},"arcs":[1239]},{"type":"LineString","properties":{"OBJECTID":1285,"Shape_Leng":746.714332708},"arcs":[1240]},{"type":"LineString","properties":{"OBJECTID":1286,"Shape_Leng":746.714332708},"arcs":[1241]},{"type":"LineString","properties":{"OBJECTID":1287,"Shape_Leng":746.714332708},"arcs":[1242]},{"type":"LineString","properties":{"OBJECTID":1288,"Shape_Leng":746.714332708},"arcs":[1243]},{"type":"LineString","properties":{"OBJECTID":1289,"Shape_Leng":746.714332708},"arcs":[1244]},{"type":"LineString","properties":{"OBJECTID":1290,"Shape_Leng":746.714332708},"arcs":[1245]},{"type":"LineString","properties":{"OBJECTID":1291,"Shape_Leng":746.714332708},"arcs":[1246]},{"type":"LineString","properties":{"OBJECTID":1292,"Shape_Leng":746.714332708},"arcs":[1247]},{"type":"LineString","properties":{"OBJECTID":1293,"Shape_Leng":746.714332708},"arcs":[1248]},{"type":"LineString","properties":{"OBJECTID":1294,"Shape_Leng":746.714332708},"arcs":[1249]},{"type":"LineString","properties":{"OBJECTID":1295,"Shape_Leng":746.714332708},"arcs":[1250]},{"type":"LineString","properties":{"OBJECTID":1296,"Shape_Leng":746.714332708},"arcs":[1251]},{"type":"LineString","properties":{"OBJECTID":1297,"Shape_Leng":746.714332708},"arcs":[1252]},{"type":"LineString","properties":{"OBJECTID":1298,"Shape_Leng":746.714332708},"arcs":[1253]},{"type":"LineString","properties":{"OBJECTID":1299,"Shape_Leng":746.714332708},"arcs":[1254]},{"type":"LineString","properties":{"OBJECTID":1300,"Shape_Leng":746.714332708},"arcs":[1255]},{"type":"LineString","properties":{"OBJECTID":1301,"Shape_Leng":746.714332708},"arcs":[1254]},{"type":"LineString","properties":{"OBJECTID":1302,"Shape_Leng":746.714332708},"arcs":[1256]},{"type":"LineString","properties":{"OBJECTID":1303,"Shape_Leng":746.714332708},"arcs":[1257]},{"type":"LineString","properties":{"OBJECTID":1304,"Shape_Leng":746.714332708},"arcs":[1258]},{"type":"LineString","properties":{"OBJECTID":1305,"Shape_Leng":746.714332708},"arcs":[1259]},{"type":"LineString","properties":{"OBJECTID":1306,"Shape_Leng":746.714332708},"arcs":[1260]},{"type":"LineString","properties":{"OBJECTID":1307,"Shape_Leng":746.714332708},"arcs":[-1261]},{"type":"LineString","properties":{"OBJECTID":1308,"Shape_Leng":746.714332708},"arcs":[-1261]},{"type":"LineString","properties":{"OBJECTID":1309,"Shape_Leng":746.714332708},"arcs":[1261]},{"type":"LineString","properties":{"OBJECTID":1310,"Shape_Leng":746.714332708},"arcs":[1261]},{"type":"LineString","properties":{"OBJECTID":1311,"Shape_Leng":746.714332708},"arcs":[1262]},{"type":"LineString","properties":{"OBJECTID":1312,"Shape_Leng":746.714332708},"arcs":[1263]},{"type":"LineString","properties":{"OBJECTID":1313,"Shape_Leng":746.714332708},"arcs":[1264]},{"type":"LineString","properties":{"OBJECTID":1314,"Shape_Leng":746.714332708},"arcs":[1265]},{"type":"LineString","properties":{"OBJECTID":1315,"Shape_Leng":746.714332708},"arcs":[1266]},{"type":"LineString","properties":{"OBJECTID":1316,"Shape_Leng":746.714332708},"arcs":[1267]}]}},"arcs":[[[252,0],[1,2],[1,3],[-1,5],[-1,2],[1,4],[-1,3],[0,5],[0,3],[-1,4],[0,3],[-1,6],[-1,5],[0,4],[-1,4],[0,7],[-1,5],[0,2],[1,2],[0,6],[0,6],[0,4]],[[252,3],[-1,2],[-1,5],[-1,2],[-2,1],[-5,3],[-4,2],[-2,2],[-2,4],[-1,2],[-3,3],[-3,2],[-4,2],[-2,3]],[[220,36],[2,1],[3,2],[3,2],[2,4],[1,4],[1,5],[3,6],[1,5],[1,4],[1,2],[4,3],[2,5],[2,3],[1,3],[1,0]],[[248,85],[0,3],[1,5],[0,4],[1,6],[0,2],[1,1],[0,4],[1,6],[1,4],[2,4],[1,2],[0,5],[1,1],[1,3],[0,3],[0,3]],[[260,118],[1,4],[1,4],[2,10],[2,9]],[[258,141],[2,1],[2,1],[2,1],[1,1],[1,0]],[[258,141],[1,2],[0,4],[1,6],[2,5],[1,1]],[[258,141],[-1,1],[-2,0],[-1,0],[-1,2],[-1,4],[-1,2],[0,2],[-3,1],[-3,2],[-2,3],[-3,3],[-2,4],[-2,4]],[[177,143],[3,2],[1,1],[1,1]],[[266,145],[1,0]],[[266,145],[0,1]],[[267,145],[1,-2],[1,-1],[2,-1],[3,-3],[1,-1],[0,-1],[2,-2],[1,-1]],[[266,146],[-1,5],[-1,3],[-1,5]],[[182,147],[-1,0],[-2,3],[0,1],[3,2],[4,1]],[[182,147],[1,1],[1,1],[1,2],[1,3]],[[182,147],[2,-2],[3,-5],[4,-7],[2,-3],[2,-5],[2,-3],[0,-2],[0,-4],[-1,-4],[-1,-6],[0,-4],[6,5],[1,1],[4,2],[4,4],[3,2],[1,1],[3,2],[2,1],[3,2],[0,1],[1,1],[4,3],[1,2],[0,4],[2,4],[1,2],[1,3],[1,2],[1,3],[1,3],[0,5],[1,3],[-1,6],[1,5]],[[186,154],[5,4],[3,3],[3,2],[1,1],[1,2],[1,4],[2,2]],[[657,154],[-2,4],[0,2],[0,2],[-1,3],[0,3],[-1,6],[-1,3],[-1,2],[0,4],[-1,4],[0,3],[0,2],[0,2],[0,2]],[[304,155],[1,-1],[2,1],[1,-1],[2,-1]],[[304,155],[-2,2],[0,4],[0,4],[0,6],[0,3],[-1,3],[0,2]],[[263,159],[1,4],[2,4],[1,3],[1,5],[1,4],[0,2]],[[263,159],[-1,3],[-1,1],[-1,0],[-1,0],[-1,0],[0,3],[0,4],[-1,4],[0,2],[-1,2],[-1,2],[-1,1]],[[290,168],[-2,-2],[-2,-2],[-2,-1],[0,-4],[-1,-4],[-2,-3],[-3,0],[-2,-1],[-10,-6]],[[290,168],[1,-2],[2,-7],[1,-7],[0,-6],[0,-4],[1,3],[2,3],[3,3],[2,2],[2,2]],[[236,169],[0,1],[0,4],[-1,3],[0,4],[-1,2],[0,2]],[[202,172],[2,4],[2,1],[4,-1],[2,1],[6,5],[2,0],[2,-3],[1,-1],[2,0],[1,1],[1,2],[2,1],[2,0],[2,2],[1,1]],[[628,174],[-1,3],[-2,5],[-1,3],[0,2],[-1,4]],[[301,179],[0,0]],[[301,179],[0,1],[-3,-5],[-1,-1],[-1,-3],[-2,-2],[-4,-1]],[[301,179],[1,2],[2,2],[1,1],[2,2],[0,2],[1,1]],[[269,181],[0,3],[1,2],[4,5]],[[283,181],[1,-1],[2,-3],[3,-5],[1,-4]],[[283,181],[-2,1],[-1,0]],[[254,181],[4,0],[4,0],[7,0]],[[254,181],[-2,7],[-1,5],[-1,6],[0,12],[-1,3]],[[280,182],[3,-1]],[[280,182],[-1,2],[-1,2],[-1,2],[-1,2],[-2,1]],[[234,185],[1,2],[1,2],[2,2],[1,3],[2,2]],[[234,185],[-1,5],[-1,7],[-2,6],[-3,9],[-3,8]],[[314,189],[-3,0],[-1,0],[-2,0]],[[308,189],[1,4],[2,4],[0,2],[2,3],[3,0],[4,1],[1,1],[2,1]],[[623,191],[0,0]],[[623,191],[7,1],[5,1],[2,1],[2,1],[3,2],[2,0],[1,-1],[2,0],[3,0]],[[623,191],[-2,3],[0,4],[-1,4],[-1,5],[-2,-1],[-1,0],[-2,1],[-1,2],[-1,2],[-1,3],[-2,3],[-3,3],[-2,0],[-1,1],[-2,1],[-1,1],[-3,0],[-1,0],[-2,-1],[-3,1],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,1],[-2,0],[-2,4],[-2,2],[-2,2],[-3,2]],[[623,191],[3,1],[4,3],[3,3],[3,1],[2,3]],[[274,191],[2,4],[2,4],[2,4],[1,2],[3,4],[3,4],[2,2]],[[150,193],[2,1],[4,0],[4,-4],[5,-5],[5,-3],[7,-4],[6,-2],[5,-1],[9,-1],[5,-2]],[[650,196],[-1,8],[-1,2],[0,2],[-1,3],[-2,3],[-3,3],[-1,3],[-1,3],[0,2],[-1,3],[-1,3],[0,4],[0,1],[1,1],[1,0],[2,-1]],[[241,196],[1,-1],[3,-6],[3,-3],[3,-4],[3,-1]],[[241,196],[2,5],[1,1],[1,2],[2,3],[2,7]],[[323,205],[-2,-5],[-2,-4],[-3,-5],[-1,-1]],[[323,205],[3,-1],[2,-2],[2,0],[3,0],[2,2],[1,0],[1,0],[1,-1],[1,0],[3,1],[1,0],[2,1],[2,0],[5,4],[3,2],[2,1],[3,1],[3,3],[4,2],[3,0],[3,2],[2,0],[3,4],[2,1],[6,0],[2,1]],[[260,208],[2,2],[2,1],[3,1],[2,3],[1,3],[2,2],[2,1],[2,4],[1,4],[2,2],[2,0],[1,-1],[1,1],[1,1]],[[289,215],[0,-2],[0,-2],[-1,-2],[0,-4],[0,-5],[1,-5],[1,-4],[0,-5],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1]],[[289,215],[2,0],[6,1],[1,0],[2,1],[2,0]],[[289,215],[-2,4],[-1,3],[-1,3],[-1,7]],[[302,217],[0,-5],[2,-4],[0,-4],[1,-4],[1,-3],[1,-5],[1,-3]],[[302,217],[-1,4],[1,5],[1,4],[0,6],[0,3],[1,4],[0,4],[1,7],[0,6],[0,3],[0,2]],[[224,220],[4,-6],[3,-5],[3,-3],[5,-8],[2,-2]],[[224,220],[3,-1],[1,-1],[2,-1],[3,1],[2,-1],[3,-2],[4,0],[1,-1],[3,0],[1,0],[2,-1],[0,1]],[[436,221],[1,3],[0,4],[0,3],[-2,6],[0,5],[-1,2],[-1,6],[-1,4],[-1,5]],[[388,226],[1,-5],[0,-3],[1,-3],[0,-4],[1,-1],[2,-1],[3,-4],[2,-4],[2,-4],[2,-5],[1,-2],[5,-4],[3,0],[1,2],[2,6],[0,3],[0,4],[1,3]],[[284,232],[-2,9],[-2,13],[0,9],[0,7],[1,7],[1,8],[2,12],[5,15]],[[284,232],[2,6],[1,5],[1,2],[2,1],[3,1],[3,1],[3,2],[1,2],[1,7],[1,2],[2,4],[1,0]],[[568,232],[-2,2],[-1,0],[-3,2],[-1,1],[-1,0],[-1,1],[-3,1],[-2,1],[-2,2],[-4,3],[-6,5],[-3,3],[-1,-1],[-2,-3],[-4,-1],[-4,0],[-6,0],[-1,-2],[-3,-4],[-2,-5],[-3,-3],[-3,-4],[-3,-1],[-1,-1],[0,-6],[-1,0],[-3,3],[-2,3],[-4,5],[-3,3],[-3,2]],[[568,232],[1,7],[1,3],[0,2],[1,2],[0,3],[1,4],[1,1],[3,8],[0,2],[0,2],[1,6],[1,6],[0,2],[0,4],[0,4],[-1,3],[0,5],[0,4],[-1,4],[5,6],[4,7],[2,2],[3,5]],[[407,235],[-2,4],[3,3],[2,1],[2,0],[1,1],[2,6],[2,5],[1,3]],[[486,235],[0,5],[1,5],[0,6],[1,3],[0,3]],[[642,235],[0,1]],[[642,236],[1,0]],[[642,236],[-1,4],[0,1],[-1,4],[-1,3],[-1,8],[0,4],[2,4],[1,2],[2,1],[1,1],[0,1],[2,5],[0,4],[1,3],[0,4],[-1,2],[1,5],[2,4],[2,3],[1,3],[2,1],[1,0],[1,3],[1,3],[1,5],[1,3],[0,4],[0,4],[0,1]],[[200,247],[3,0],[3,-3],[3,-2],[4,-6],[2,-7],[3,-5],[6,-4]],[[488,257],[0,4],[0,3],[0,5],[-1,6],[0,3]],[[418,258],[-5,-1],[-6,-1],[-2,-1],[0,6],[0,5],[-1,2],[1,4],[-1,6]],[[431,259],[-4,0],[-6,-1],[-3,0]],[[305,265],[-1,11],[0,8]],[[304,284],[4,2],[4,1],[3,1],[3,0]],[[349,271],[0,-1]],[[349,271],[1,0],[3,2],[4,4]],[[340,271],[1,1],[2,-1],[2,0],[4,0]],[[340,271],[-1,0],[-2,-1],[-3,0],[-2,2],[-2,3],[-2,1],[-1,1],[-2,0]],[[508,277],[-1,1],[-3,0],[-2,1],[-3,0]],[[508,277],[4,4],[5,4],[4,5]],[[508,277],[-1,-2],[-2,-5],[-3,-5],[-3,-4],[-4,-4],[-4,-3],[1,5],[0,2],[1,3],[1,3],[2,3],[2,3],[1,4],[0,2]],[[325,277],[-2,1]],[[404,277],[3,3],[3,0],[2,2],[1,1]],[[357,277],[2,4],[4,4],[1,1],[1,-1],[1,-3],[1,-2],[1,-1],[1,-1],[0,-4],[2,-3],[1,-2],[1,-3],[3,-1],[3,-1],[1,-7],[0,-2],[1,-4],[1,-3],[1,-4],[1,-3],[1,-3],[0,-3],[1,-4],[2,-4],[0,-1]],[[487,278],[2,1],[2,-1],[2,0],[3,1],[1,1],[2,-1]],[[487,278],[1,3],[-2,5],[0,1],[0,4],[1,5],[1,4],[1,3],[0,2],[1,3],[0,2],[1,4],[2,2],[0,3],[-1,5],[-1,2]],[[323,278],[-1,0],[-3,0],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-2,-4]],[[499,279],[1,3],[1,4],[0,5],[1,8],[1,2],[0,3],[-2,3],[2,2],[1,1],[1,2],[2,2],[2,1]],[[304,284],[-2,5],[-4,11],[-3,7],[-4,4],[-1,1],[-1,0]],[[318,288],[3,-5],[2,-5]],[[318,288],[1,3],[2,6],[3,7]],[[340,288],[0,-17]],[[340,288],[1,-1],[3,-2],[0,-2],[2,-4],[1,-5],[1,-2],[1,-1]],[[340,288],[-1,5]],[[260,288],[0,-10],[-1,-15],[-2,-15],[-3,-19],[-5,-15]],[[521,290],[3,10],[1,5],[1,5],[1,4],[1,3]],[[339,293],[-3,0],[-4,3],[-4,4],[-4,4]],[[426,293],[1,-7],[2,-7],[1,-6],[0,-5],[1,-9]],[[426,293],[2,7],[1,3],[2,3],[1,5],[1,3]],[[426,293],[-3,-2],[-4,-4],[-3,-1],[-3,-3]],[[413,283],[-1,4],[-1,6],[0,3],[1,4]],[[413,300],[1,3],[4,1],[3,2],[3,2],[3,3],[1,0],[-2,5]],[[324,304],[4,9],[2,5],[3,6],[1,1]],[[289,312],[2,8],[5,14]],[[433,314],[1,0]],[[434,314],[4,-1],[1,2],[2,2],[2,1],[3,2],[1,2],[3,1],[7,5],[2,2],[5,3]],[[434,314],[1,7],[1,5],[1,4]],[[509,315],[2,-4],[2,-4],[1,-3],[2,-5],[2,-3],[2,-5],[1,-1]],[[426,316],[1,0],[5,-1],[1,-1]],[[528,317],[-2,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-2,1],[-2,3]],[[528,317],[0,2],[3,5],[0,1]],[[417,317],[4,0],[5,-1]],[[511,320],[-1,0],[0,-1],[-1,-3],[0,-1]],[[511,320],[2,0],[1,0],[1,1],[1,-1],[4,0],[1,0],[2,0],[1,-1],[4,-1],[0,-1]],[[349,323],[0,-9],[2,-10],[1,-5],[2,-9],[2,-7],[1,-6]],[[349,323],[1,0]],[[590,324],[2,-3],[2,-2],[2,-3],[1,-1]],[[590,324],[1,3],[0,3],[0,1],[1,3],[0,1],[0,2],[1,4]],[[334,325],[1,-10],[1,-6],[3,-16]],[[334,325],[0,0]],[[531,325],[-3,3],[-4,2],[-5,5],[-3,4],[-1,1]],[[334,325],[3,-2],[3,-2],[4,0],[3,1],[2,1]],[[334,325],[1,9],[0,8]],[[491,326],[-2,1],[-4,2],[-2,1]],[[483,330],[2,3],[0,3],[0,2],[-1,4]],[[491,326],[2,2],[1,3],[2,2],[1,2]],[[659,326],[1,3],[3,7]],[[659,326],[-2,0],[-2,1],[-4,1],[-1,2],[-2,2],[0,4],[0,3],[0,3],[-1,3],[-2,4],[-1,3],[-1,3],[-2,2],[-2,5],[-2,5],[-3,6],[0,4],[0,3],[0,4],[0,2],[0,3]],[[609,328],[1,5],[0,2],[1,3],[1,4],[1,3],[0,1],[0,2]],[[547,329],[2,-1],[3,0],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,0],[1,3],[2,4],[3,5],[0,2]],[[34,329],[1,7],[-1,6],[-1,4],[1,7],[-1,2],[0,5],[0,5],[-1,2],[-2,2],[1,8],[1,5],[1,3],[-1,5],[0,6],[1,5],[-1,9],[1,5],[1,10],[-1,9],[1,3],[0,3]],[[437,330],[0,0]],[[437,330],[4,7],[3,9],[2,3],[2,3],[1,1],[2,1],[4,-1],[3,1],[2,1],[1,1],[3,3],[2,4],[3,2],[2,3],[3,2],[3,3]],[[483,330],[-4,-2],[-3,-1],[-5,0],[-2,2],[-4,2],[-1,2]],[[464,333],[5,4],[2,2],[6,1],[7,2]],[[296,334],[3,-2],[2,0],[3,-2],[3,-3],[2,-2],[6,-1],[13,0],[4,1],[2,0]],[[296,334],[4,9],[3,9],[0,2],[3,4],[4,4],[3,3],[3,3],[1,2]],[[497,335],[3,-2],[3,-1],[3,-3],[2,-3],[2,-3],[1,-3]],[[497,335],[0,8],[1,5],[0,4],[-1,6]],[[275,335],[-1,2],[-6,0],[-3,0]],[[275,335],[3,-2],[3,-5],[3,-7],[5,-9]],[[275,335],[2,2],[4,0],[4,0],[2,-1],[2,-1],[2,0],[3,-1],[2,0]],[[584,336],[-1,0],[-2,-1],[-3,-1],[-4,0],[-2,-1],[-3,0],[-2,5]],[[584,336],[2,1],[3,2],[4,2]],[[663,336],[3,1],[3,1],[15,-1]],[[663,336],[2,5],[1,5],[1,3],[0,2]],[[684,337],[-1,6],[-1,6],[-1,4],[0,6],[0,3],[0,4],[1,4],[0,3],[0,1],[0,1],[2,2],[0,1],[2,9],[0,4],[0,6],[-1,10],[0,7]],[[684,337],[2,6],[1,3],[2,3],[3,3],[2,3],[2,2],[2,4],[1,5],[0,2],[-1,4],[-2,5],[-1,3],[-1,3],[-1,7],[-1,4],[-1,4],[-1,2]],[[567,338],[0,0]],[[567,338],[2,1],[2,1],[1,2],[3,0],[2,1],[2,3],[1,1]],[[428,340],[3,0]],[[515,340],[-2,5],[-4,3],[-6,6],[-6,4]],[[431,340],[3,-6],[3,-4]],[[431,340],[2,5],[1,3],[2,5],[1,2],[2,7],[0,5],[1,6]],[[431,340],[0,0]],[[555,341],[3,5],[1,2],[2,1],[2,0],[2,1],[3,1],[2,3],[0,1],[2,0],[3,3],[1,2]],[[484,342],[4,1],[3,3]],[[335,342],[1,-1]],[[629,342],[1,3],[1,2],[2,4],[1,3]],[[600,344],[1,3],[0,2],[0,2],[0,3]],[[491,346],[3,-5],[1,-3],[2,-3]],[[491,346],[1,4],[2,3],[1,3],[2,2]],[[491,346],[-3,4],[-2,3],[-1,1],[-2,3],[-1,3],[-1,1]],[[634,353],[1,-12]],[[601,354],[0,0]],[[634,354],[4,-5],[2,-3],[1,-3],[1,-12],[0,-6]],[[601,354],[-3,6],[-2,2],[-1,1]],[[601,354],[3,5],[2,3],[2,2],[3,3],[4,1],[2,2]],[[497,358],[3,2],[3,0],[2,0],[3,2],[3,2],[3,5],[2,4]],[[481,361],[4,3],[5,0]],[[595,363],[0,-7],[-1,-8],[0,-5],[-1,-2]],[[596,363],[0,4],[0,6]],[[490,364],[4,-3],[3,-3]],[[490,364],[-6,4],[-4,4],[-2,1]],[[317,370],[5,-8],[4,-5],[4,-6],[4,-6],[1,-3]],[[317,370],[3,-1],[2,0],[4,-3],[2,-1],[4,0],[5,1],[4,0],[4,2],[2,3],[2,2],[3,10]],[[317,370],[-2,0],[-5,0],[-4,0],[-4,0],[-5,0],[-4,1],[-3,1]],[[290,372],[-3,-3],[-2,-5],[-4,-9],[-3,-8],[-2,-9],[-1,-3]],[[290,372],[-1,0],[-1,1],[-3,4],[-3,4],[-3,5],[-2,10],[0,7],[5,-5],[8,-4],[4,-2],[4,0],[6,0],[3,-1],[3,-1]],[[596,373],[1,5],[0,7],[0,4],[1,5]],[[516,373],[0,-12],[0,-8],[0,-5],[-1,-8]],[[516,373],[3,7],[5,8],[6,6],[5,5],[1,2],[1,3],[2,1],[2,4],[2,1]],[[440,373],[1,5],[1,5],[2,6],[0,5],[2,3]],[[478,373],[2,-9],[1,-3]],[[478,373],[-1,0]],[[477,373],[-7,1],[-2,-2],[-3,1],[-3,0],[-4,0],[-4,2],[-2,0],[-4,1],[-3,0],[-5,-3]],[[615,374],[13,-3],[4,1],[2,0],[-1,-12],[1,-3],[0,-3]],[[615,374],[0,6],[0,4],[0,3]],[[586,378],[2,-5],[3,-5],[2,-2],[1,-2],[1,-1]],[[352,383],[4,5],[2,2],[2,3],[1,2],[2,3],[1,2],[0,6],[2,4],[3,5],[0,2],[1,0]],[[578,384],[3,4],[2,3],[0,2],[2,4],[1,2],[1,3],[1,2],[1,3],[0,3],[1,2],[0,3]],[[615,387],[1,4],[2,3],[1,3],[1,2],[2,6],[1,2]],[[474,388],[0,6],[0,4],[1,5],[1,5],[2,3],[2,1],[6,4],[3,2],[5,4]],[[474,388],[0,-6],[1,-3],[3,-6]],[[474,388],[0,0]],[[474,389],[0,-1]],[[474,389],[0,0]],[[634,389],[1,0],[3,-1],[2,1],[3,1],[3,2],[1,0],[1,1],[2,1],[2,1],[4,1],[0,1]],[[310,390],[4,-9],[3,-11]],[[310,390],[1,1],[2,0],[1,-1],[3,0],[4,0],[4,-4],[3,0],[3,-1],[4,0],[6,-1],[9,-1],[2,0]],[[570,393],[0,3],[1,3],[1,5],[0,5],[3,3],[3,2],[2,2],[1,2],[0,5],[1,2]],[[668,394],[4,-1],[2,-2]],[[598,394],[1,7],[1,3],[1,2],[0,8],[1,5],[-4,8],[-2,4]],[[656,397],[-2,2],[-2,3]],[[656,397],[0,3],[0,5],[0,7],[0,3],[0,5],[-1,2],[0,2],[0,2],[-1,6],[0,2],[-1,2],[0,5],[-1,3]],[[656,397],[1,1],[2,1],[2,2],[1,1],[2,2],[1,2],[1,1],[1,1],[0,1]],[[446,397],[2,0],[2,-2],[4,-1],[3,-1],[3,-2],[2,0],[4,0],[3,0],[4,-2],[1,-1]],[[446,397],[0,4],[2,6],[1,5],[1,6],[1,3],[1,5],[0,4],[0,4],[1,4]],[[690,400],[3,2],[2,1],[2,3]],[[652,402],[-3,4],[-2,1],[-3,2],[-1,2],[-3,4],[-4,5],[-2,3]],[[623,407],[3,-5],[2,-3],[2,-3],[2,-3],[2,-3],[0,-1]],[[623,407],[3,5],[2,2],[3,4],[3,5]],[[623,407],[0,1],[-1,1],[-1,2],[0,3],[-1,1],[-1,3],[-1,2],[-2,4],[-3,5],[1,3],[1,1],[1,3],[1,2]],[[667,409],[2,3],[2,3],[2,3],[1,2],[1,2],[1,2],[1,1],[1,1],[2,2],[2,3],[2,2]],[[543,410],[0,-6],[-1,-4],[0,-3],[0,-3],[-1,-5],[-4,-9],[-1,-1],[-3,-9],[-2,-9],[-1,-10],[0,-8],[1,-13],[0,-5]],[[543,410],[6,0],[1,1],[3,-1],[2,-1],[4,0],[2,0]],[[685,414],[1,-5],[1,-2],[2,-3],[1,-4]],[[685,414],[-1,4],[0,6],[0,5],[0,2],[0,2]],[[590,415],[2,-4],[3,-7],[2,-5],[1,-5]],[[590,415],[2,2],[2,4],[1,2],[0,4],[1,2],[0,2]],[[529,416],[1,-1],[2,0],[3,-1],[3,-1],[2,-3],[3,0]],[[370,417],[-1,2],[0,2],[-2,1],[-2,1]],[[370,417],[2,3],[4,6],[3,4],[2,2],[2,2],[1,3]],[[494,422],[0,-8],[0,-8],[0,-15],[1,-6],[0,-5],[0,-10],[2,-8],[0,-4]],[[634,423],[3,3],[1,0],[2,3],[2,1],[2,2]],[[582,425],[1,-2],[3,-3],[4,-5]],[[582,425],[2,3],[3,0],[2,1],[2,1],[3,1],[2,0]],[[596,431],[0,0]],[[596,431],[2,8],[0,2],[1,10],[0,7],[2,3],[3,4],[1,2],[1,2],[1,1],[2,2],[2,0],[2,2],[1,0],[3,2],[2,0],[1,0]],[[644,432],[2,-8],[2,-6],[1,-6],[0,-4],[2,-3],[0,-1],[1,-2]],[[684,433],[-2,4],[0,3],[-1,5],[-2,4],[0,4],[-2,8],[-1,3],[-1,7],[-5,6]],[[684,433],[0,0]],[[684,433],[2,-1],[2,-3],[2,-3]],[[765,433],[0,3],[-2,2],[-2,3],[-2,3],[-2,2],[-2,6]],[[755,452],[-3,2],[-3,2],[-3,2],[-4,-1],[-2,2],[-3,1],[-5,4],[-1,0],[-2,1],[-1,1],[-2,2],[-2,2],[0,1],[-1,1],[0,4],[-2,3],[-3,2],[-3,2]],[[644,433],[1,1],[1,3],[1,2],[2,1],[3,4]],[[521,433],[0,-6],[1,-1]],[[521,433],[-2,0],[-3,3],[-3,2],[-2,1],[-2,1],[-3,2],[-3,1],[-3,-1],[-3,-2],[-2,-1]],[[521,433],[4,8],[1,5],[3,5],[3,6],[0,1],[2,6],[0,4]],[[521,433],[0,7],[0,3],[0,3],[0,5],[0,3],[1,4],[1,13],[1,8],[2,8]],[[521,433],[-2,5],[-2,4],[-2,4],[-1,5],[-2,7],[0,11],[0,12]],[[495,435],[0,-8],[-1,-5]],[[495,435],[0,4]],[[384,437],[2,-1],[3,-1],[3,-1],[1,-1],[2,0],[2,0],[3,-1],[3,-2],[3,-2]],[[384,437],[1,3],[1,4],[2,5],[2,7],[2,6],[1,5],[1,5],[1,3],[1,3],[2,7],[1,3],[3,8],[2,5],[2,3],[2,2],[3,4],[1,1],[2,0],[3,5],[3,7],[1,5],[2,7],[3,10],[2,5],[0,2],[1,6],[1,6],[3,10],[-1,3],[-1,4],[-3,4],[-1,0],[-6,0],[1,6],[0,6],[2,8],[1,2],[1,2],[3,1]],[[384,437],[3,2],[3,1],[9,5],[4,2],[3,2],[2,1],[5,3],[4,1],[2,1],[4,2],[4,1],[2,0],[2,-1],[1,1],[2,0],[2,-1],[2,-1]],[[438,456],[4,2],[4,1],[2,-1],[2,1],[3,1],[2,-1],[8,1]],[[384,437],[-1,0],[-2,8],[-3,7],[-2,3],[-1,1],[-1,-1],[-2,1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,2],[-2,3],[-3,3],[-2,4],[-2,1],[-3,0],[-4,0],[-3,0],[-2,0],[-4,-2],[-5,-3],[0,3],[-1,5],[0,2],[2,7],[1,5],[1,5],[2,4],[0,2],[-1,6],[0,10],[0,1],[4,7],[1,3],[1,1],[2,3],[3,7],[4,8],[2,3],[1,2],[2,2],[1,3],[2,2],[0,8],[0,7],[-1,7],[0,8],[-1,10],[0,9],[2,4],[2,2],[3,2],[1,2],[3,1]],[[617,438],[-2,0],[-2,1],[-2,0],[-2,-3],[-2,-3],[-2,-1],[-5,-1],[-4,0]],[[617,438],[2,1],[3,0],[1,0]],[[453,438],[4,-12],[3,-8],[4,-8],[4,-9],[6,-12]],[[453,438],[2,-1],[3,-1],[3,0],[3,-1],[5,1],[4,-1],[1,0],[4,1],[2,1],[4,0],[5,-1],[4,-2],[2,1]],[[453,438],[1,4],[1,4],[2,4],[4,6],[2,4]],[[623,439],[3,-4],[1,-3],[3,-3],[4,-6]],[[623,439],[0,0]],[[623,439],[3,0],[3,1],[2,1],[2,1],[2,0]],[[623,439],[0,2],[0,3],[0,3],[0,2],[-1,3],[0,5],[0,3],[-1,6],[-1,8],[0,2]],[[495,439],[4,10],[5,11],[2,8],[2,7]],[[34,441],[0,7],[0,3],[1,3],[1,3],[2,3],[0,6],[1,10],[2,8],[1,4],[1,2],[3,7],[3,3],[3,4],[2,2],[3,2],[2,1],[1,4],[3,-5],[0,-7],[0,-1],[1,-4],[1,0],[2,2],[1,2],[1,0],[2,-3],[1,-2],[1,-3],[3,-1]],[[635,442],[0,0]],[[635,442],[4,-4],[2,-3],[1,-1],[1,-1],[1,-1]],[[635,442],[2,5],[2,2],[2,3],[1,2],[1,3],[2,5],[0,2]],[[635,442],[0,5],[0,6],[1,5],[-1,5],[-1,4]],[[652,444],[3,3],[3,2],[1,2],[1,2],[1,3],[2,2]],[[732,446],[-5,1],[-1,0]],[[725,447],[-2,0],[-2,-1],[-3,0],[-2,1],[-3,1]],[[713,448],[-4,-3],[-3,-2],[-4,1],[-1,0],[-2,-1],[-5,-3],[-2,-3],[-5,-3],[-3,-1]],[[713,448],[-1,4],[1,3],[3,5],[1,2],[-1,7],[0,6],[-1,3],[0,4],[0,1]],[[553,452],[3,3],[2,1],[4,1]],[[553,452],[0,-6],[2,-2],[1,-2],[1,-2],[2,-2],[1,10],[0,2],[1,3],[1,4]],[[755,452],[0,4],[0,4],[0,5],[0,2],[1,3]],[[543,453],[4,2],[3,-1],[2,-1],[1,-1]],[[543,453],[-3,5],[-3,5],[-1,3],[-2,2]],[[543,453],[4,5],[2,1],[2,4],[3,3],[3,5]],[[438,456],[1,-3],[4,-1],[3,-2],[3,-2],[1,-4],[3,-6]],[[562,457],[3,6],[3,7]],[[663,458],[0,-1],[1,-5],[1,-5],[0,-3],[-1,-10],[0,-2],[1,-6],[2,-10],[0,-7]],[[663,458],[1,4],[2,2],[3,3],[1,5],[-1,6]],[[663,458],[-1,2],[-2,1],[-2,2],[-2,3],[-3,5]],[[476,459],[6,0],[2,-5],[3,-3],[4,-4],[0,-3],[2,-3],[2,-2]],[[482,460],[8,2],[3,3],[9,7],[3,2],[3,1]],[[463,460],[4,-1],[2,0],[3,0],[4,0]],[[463,460],[3,12],[1,3],[0,4]],[[645,464],[2,1],[2,0],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1]],[[634,467],[3,-3],[2,0],[2,-1],[3,0],[1,1]],[[634,467],[2,5],[2,3],[0,3],[1,2],[1,5]],[[534,468],[-2,5],[-1,5],[-3,5],[-2,4]],[[568,470],[3,6],[1,3],[1,2],[3,5],[1,2]],[[756,470],[-2,3],[-1,3],[-1,0],[-2,0],[-1,0],[-3,2],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-1,2],[-1,0],[-1,0]],[[737,492],[-1,3],[-2,1],[-3,2],[-5,1],[-2,1],[-3,1],[-4,2]],[[756,470],[1,4],[2,6],[2,4],[1,2],[0,1],[1,0],[0,2]],[[653,471],[5,1],[2,0],[3,2],[2,0],[2,2],[1,1],[1,1]],[[557,471],[2,4],[2,3],[2,5],[2,5],[1,2]],[[558,471],[1,-2],[2,0],[7,1]],[[508,475],[3,4],[1,2]],[[620,476],[0,0]],[[620,476],[3,-1],[3,-2],[2,-2],[1,0],[2,-1],[1,-1],[1,-2],[1,0]],[[620,476],[1,1],[3,1],[2,0],[2,1],[1,0],[3,1],[1,0],[4,3],[1,2],[2,0]],[[670,477],[0,0]],[[670,477],[0,1]],[[670,477],[1,1],[2,0],[3,2],[3,0],[4,2]],[[669,478],[1,0]],[[669,478],[0,1]],[[670,478],[-1,1]],[[669,479],[-1,2],[-2,1],[-2,2],[-2,1]],[[669,479],[3,6],[2,3]],[[467,479],[4,6],[3,4],[4,7]],[[512,481],[3,12],[2,11]],[[539,481],[0,0]],[[539,481],[-2,-4],[0,-3],[-2,-5],[-1,-1]],[[539,481],[3,4],[2,2],[2,3],[1,1]],[[683,482],[6,0],[6,0],[4,0],[3,0],[2,1],[3,0],[3,0],[0,1]],[[715,483],[0,1]],[[710,484],[1,0],[1,0],[3,0]],[[715,484],[2,1],[3,2],[2,2],[3,1],[2,0],[3,2],[2,0],[4,0],[1,0]],[[662,485],[6,9],[2,3],[3,4]],[[640,485],[3,-1],[2,-1],[2,0],[4,1],[2,1],[4,-1],[4,1],[1,0]],[[526,487],[3,-1],[2,-2],[4,-1],[3,-1],[1,-1]],[[674,488],[5,8],[1,2],[2,4]],[[608,488],[1,-1],[1,0],[2,0],[2,-2],[2,-1],[2,-4],[1,-3],[1,-1]],[[608,488],[0,3],[1,4],[2,3],[1,1]],[[577,488],[2,1],[1,0],[2,1],[2,3],[2,1]],[[566,490],[2,1],[3,-1],[3,0],[3,-2]],[[566,490],[-3,1],[-3,1],[-3,0],[-5,0],[-3,-1],[-2,0]],[[547,491],[2,-2],[1,-2],[1,-3],[0,-2],[2,-4],[1,-3],[2,-2],[1,-2]],[[547,491],[1,0],[0,1]],[[547,491],[1,1]],[[76,491],[3,-1],[1,0],[2,2],[1,2],[1,3],[1,2],[1,1],[1,2],[2,1],[2,4],[2,1],[1,4],[3,2],[2,8],[1,3],[2,1],[2,5],[2,3],[4,2],[3,4],[2,2],[2,0],[2,0],[4,3],[2,0],[2,4],[4,3],[6,1],[4,-1],[2,1],[3,2],[3,2],[3,2],[4,1],[2,1],[4,0],[4,4],[3,2],[4,3],[3,7],[2,2],[5,2],[2,3],[2,1],[3,0],[1,2],[2,1],[4,7],[7,-6],[5,-2],[3,-4],[3,0],[1,7],[2,4],[3,6],[5,4],[1,2],[0,5],[4,4],[1,0],[2,1],[4,-2],[1,0],[2,-1],[4,1],[3,-1],[2,-1],[3,1],[2,0],[3,-2],[2,0],[2,5],[3,2],[2,0],[4,5],[2,1],[2,0],[3,1],[1,2],[2,0],[3,0],[3,3],[5,0],[5,0],[3,2],[5,0],[3,1],[5,-1]],[[548,492],[-3,4],[-3,6],[-2,3],[-3,5],[-2,-1]],[[548,492],[1,5],[1,5],[1,7],[1,4],[1,4],[1,9],[0,2],[2,3],[3,2],[3,3]],[[586,494],[3,2],[2,2],[2,1],[1,1],[2,0],[1,1],[1,0],[2,1],[2,1]],[[586,494],[2,0],[3,-1],[2,0],[2,1],[2,0],[2,0],[3,0],[1,0],[1,0],[2,-3],[1,-2],[1,-1]],[[586,494],[1,3],[3,4],[4,3],[1,1],[3,1],[2,0],[0,1]],[[478,495],[0,1]],[[463,496],[3,-8],[0,-5],[1,-4]],[[463,496],[-1,7],[-2,4],[-1,5],[-2,5],[0,4],[0,3],[1,2]],[[478,496],[0,-5],[-1,-5],[0,-5],[0,-4],[0,-5],[-1,-9],[0,-4]],[[478,496],[-8,1],[-1,-1],[-6,0]],[[478,496],[4,4],[10,3],[6,2],[2,2],[3,0],[2,-1],[5,-1],[4,0],[3,-1]],[[765,498],[1,2],[2,2],[1,1]],[[612,499],[1,2],[1,1],[4,4],[1,1]],[[673,501],[0,-2],[0,-3],[1,-3],[0,-3],[0,-2]],[[673,501],[3,0],[4,1],[2,0]],[[672,502],[-1,5],[-2,5],[-3,7],[-1,4],[-2,5],[-2,5]],[[682,502],[0,0]],[[681,502],[1,0]],[[682,502],[2,8],[1,3],[4,5],[2,2],[3,2],[0,5],[0,7],[2,7],[0,4],[2,8],[2,6],[0,4]],[[682,502],[7,0],[3,1],[5,0],[3,0],[2,-6],[1,-3],[2,-3],[1,-3],[2,-1],[1,-1],[1,-2]],[[682,502],[5,4],[3,3],[4,3],[1,1],[1,5],[1,2]],[[769,503],[3,1],[1,0],[2,1],[1,1],[-2,4],[-1,4],[-1,2],[-1,5],[0,3],[0,6],[0,4]],[[602,503],[2,-1],[3,-2],[3,0],[1,-1],[1,0]],[[602,503],[0,0]],[[517,504],[-1,11],[-1,4],[0,9],[-1,8]],[[529,504],[3,-2],[1,-1],[1,-2],[2,-1],[2,-1],[5,-3],[4,-3]],[[529,504],[2,2],[2,1],[2,2]],[[517,505],[0,-1]],[[517,505],[1,1],[3,1],[2,-1],[2,0],[2,0],[2,-2]],[[517,505],[0,5]],[[600,507],[1,-1],[1,-2],[0,-1]],[[600,507],[3,2],[2,2],[1,0],[1,0],[2,1],[1,2],[1,2],[1,0],[1,2],[1,1],[2,0],[1,0],[2,-1],[2,1]],[[619,507],[2,2],[2,1],[2,1],[1,0],[3,2],[2,2],[2,1],[4,0],[2,0],[1,0],[4,1],[2,-1],[2,-1],[2,-3],[3,-6],[1,-3],[3,-2],[2,-1],[3,1],[2,0],[2,-1],[1,0],[6,1]],[[535,509],[-2,4],[-3,1],[-3,0],[-3,0]],[[517,510],[2,1],[4,2],[1,1]],[[480,511],[-1,-4],[0,-3],[-1,-4],[0,-4]],[[480,511],[2,2],[2,0],[2,1],[2,2],[3,2],[2,1],[0,-2],[1,0],[1,0],[1,1],[0,1],[1,0],[2,2],[1,2],[1,0],[1,-2]],[[480,511],[-4,5],[-4,4],[-3,5],[-2,3],[-4,5],[-2,2],[5,1],[5,-1],[2,-1],[3,-1],[1,-1],[6,0],[3,0],[3,3],[2,4],[1,0],[6,0]],[[715,511],[3,-1],[1,-1]],[[524,514],[4,9],[1,4],[1,3],[3,5],[2,4],[1,2],[2,5],[3,6],[2,4]],[[595,516],[3,-5],[1,-2],[1,-2]],[[716,517],[3,-2],[3,-1]],[[716,517],[-1,3],[-1,2],[0,4],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,3],[-2,0]],[[716,517],[1,2],[2,3],[0,3],[1,3],[-1,3],[3,1],[3,1],[1,1],[4,-1],[3,0],[2,0],[2,-1],[2,-3],[2,-2],[2,2],[3,0],[7,0],[2,-1],[0,-3]],[[621,519],[-1,-2],[0,-3],[0,-3],[-1,-2],[0,-2]],[[621,519],[2,3],[3,2],[4,4],[1,1],[3,2],[1,1],[2,0],[3,2],[1,1],[2,1],[2,2],[4,1],[3,3]],[[697,520],[2,-3],[1,0],[2,0],[1,-2],[4,-2],[2,0],[3,-1],[1,0],[2,-1]],[[697,520],[0,1]],[[697,521],[3,3],[1,3],[2,3],[1,1]],[[502,521],[4,-2],[5,-4],[3,-1],[2,-3],[0,-2],[1,-5]],[[502,521],[4,6],[4,6],[4,3]],[[593,522],[-1,3],[0,4],[-2,3],[-4,5],[-1,5],[-2,4],[-1,3],[-1,2]],[[694,523],[2,-1],[0,-1],[1,0]],[[458,526],[5,-8],[1,-2],[2,-2],[2,-3],[1,-2],[5,1],[2,1],[1,0],[3,0]],[[458,526],[0,0]],[[457,526],[1,0]],[[449,527],[0,6],[0,6],[-1,8],[1,9],[0,4],[-4,3],[-1,7],[-1,7],[-2,6],[0,4],[-2,4],[-2,4],[-2,2],[-1,1],[-1,2],[-2,3],[-2,3],[0,4]],[[766,529],[-1,3],[0,6],[0,4],[-7,7],[-2,1],[-1,1],[-2,1],[-2,1],[-4,0],[-2,0],[-1,1],[-2,-2],[-5,0],[-4,0],[-3,-1],[-2,-1],[-2,3],[-1,4],[-2,1],[-3,1]],[[704,531],[0,1],[3,3],[1,1],[2,3],[1,1],[1,3],[2,4],[3,4],[2,4],[1,2],[0,2]],[[661,533],[-5,7],[-4,2]],[[514,536],[3,2],[4,4],[4,3]],[[562,536],[2,5],[3,4],[1,3],[0,1],[1,5],[0,5],[0,4],[-1,3],[0,7]],[[498,539],[2,-7],[1,-5],[1,-3],[0,-3]],[[498,539],[5,0],[3,-1],[4,-1],[4,-1]],[[498,539],[0,6],[1,4],[0,11],[0,7],[-1,2],[0,3],[0,6],[-1,5]],[[652,542],[2,2],[4,2],[3,2],[1,1],[2,1],[3,0],[2,2],[4,4],[1,2],[3,2]],[[525,545],[-1,-5],[-3,-10],[-1,-2],[-1,-4],[0,-3],[0,-2],[0,-5],[-2,-4]],[[525,545],[4,1],[4,2],[1,0],[3,6],[2,6],[1,4],[-1,7],[0,6],[0,4],[0,3],[0,4],[0,5]],[[662,550],[0,3],[0,3],[-1,3],[0,4],[-1,2],[0,5],[2,1],[2,1],[2,0]],[[666,572],[0,1],[1,4],[3,3],[1,2]],[[474,550],[3,2],[1,2],[3,-2],[2,1],[2,-1],[2,-2],[4,-1],[3,-4],[1,-1],[2,-2],[1,-3]],[[581,551],[-1,4],[-1,4],[-2,5]],[[543,556],[0,3],[0,3],[1,4],[1,3],[0,5],[1,4],[1,5],[1,4]],[[720,559],[1,4],[1,2],[2,4]],[[677,560],[-1,0],[3,4],[2,4]],[[677,560],[2,-1],[2,1],[2,1],[2,1]],[[685,562],[2,0],[4,-1],[1,-1],[2,0],[5,1],[1,2]],[[780,561],[2,5],[1,4],[1,4],[1,6]],[[700,563],[3,-1],[3,-1],[4,0],[3,-1],[2,-1],[3,0],[2,0]],[[700,563],[-1,1],[-2,2],[0,1],[-1,4],[-1,2],[-3,2],[-1,0]],[[700,563],[1,6],[1,4],[1,3],[2,2],[1,1],[2,4],[1,2],[3,2],[3,2],[1,3],[2,3]],[[576,566],[-2,2],[-3,2],[-3,3]],[[681,568],[2,-4],[2,-2]],[[681,568],[3,2],[4,3],[3,2]],[[724,569],[4,1],[3,0],[4,1],[3,0],[2,0],[2,1],[2,1],[2,-1],[2,-1],[1,-1],[4,-1],[1,0],[2,-1],[1,-1],[1,-3],[1,-2],[1,-2],[0,-1],[2,-3],[2,-2],[2,-1],[2,-1],[1,-2],[1,-2],[2,-2]],[[724,569],[2,5],[1,3],[3,3],[1,4],[1,1],[1,3],[1,3]],[[666,572],[2,3],[3,0],[1,1],[2,0]],[[674,576],[3,-1],[1,-1],[1,-3],[1,0],[0,-2],[1,-1]],[[568,573],[-2,2],[-1,3]],[[691,575],[1,1],[1,4],[0,2]],[[691,575],[-1,1],[-2,0],[-2,3],[-2,3],[-1,2]],[[485,577],[2,-1],[2,0],[1,0],[3,3],[1,1],[2,2],[1,1]],[[485,577],[0,2],[1,3],[0,3],[0,7],[0,4],[1,2],[1,5],[1,3],[2,4],[1,2],[1,4],[2,3],[1,4],[1,1]],[[565,578],[0,3],[-1,3],[-1,3]],[[565,578],[1,3],[1,4],[1,2],[2,3],[1,5],[1,2],[0,3]],[[785,578],[4,14],[2,7],[5,8],[1,3],[0,2],[1,4],[0,3],[0,3],[-2,1],[-2,4],[1,5],[-1,5]],[[553,581],[0,-5],[-7,-14],[-3,-6]],[[553,581],[2,1],[3,1],[1,1],[3,2],[1,1]],[[693,582],[1,0]],[[694,582],[0,0]],[[694,582],[2,3],[3,5],[1,5],[2,4],[0,2]],[[694,582],[-2,4],[0,3],[-1,3],[-1,2],[-3,2],[-1,2],[-2,1],[-1,2]],[[671,582],[3,-6]],[[671,582],[0,0]],[[497,583],[0,1]],[[683,584],[-1,0],[-1,-1],[-2,0],[-2,1]],[[683,584],[2,0],[3,-2],[2,0],[3,0]],[[497,584],[3,0],[3,1],[3,-3],[3,-1],[3,0],[2,5],[2,2],[2,1],[2,-3],[0,-2],[3,-2],[1,0],[3,0],[3,0],[1,1],[2,3],[1,1],[0,2],[2,1],[1,1],[2,2]],[[677,584],[-1,0],[-4,-2],[-1,0]],[[677,584],[2,4],[0,2],[1,3],[1,3],[2,5]],[[548,587],[2,-3],[2,-2],[1,-1]],[[548,587],[-1,8],[0,2],[-1,2],[-2,3],[-2,4]],[[563,587],[0,3],[0,2],[0,4],[0,2],[-2,3],[2,4]],[[491,590],[0,4],[-1,3],[0,2],[2,2],[3,3],[3,5]],[[498,593],[1,5],[-1,5],[1,5],[-1,1]],[[539,593],[0,1],[0,5],[1,5],[1,2]],[[771,594],[-2,5],[-3,4],[-3,3],[-3,4],[-1,3],[-2,3],[-2,1]],[[718,595],[1,-3],[0,-3],[0,-4],[0,-3],[1,-2],[0,-1],[0,-2],[1,-1],[1,-3],[1,-1],[0,-3],[1,0]],[[718,595],[1,1],[1,3],[2,2],[4,3],[3,2],[3,1],[3,2],[1,1],[3,0]],[[580,597],[-8,3]],[[572,600],[2,-4],[1,-2],[1,-4],[1,-2],[0,-4],[1,-5],[1,-1],[0,-2],[0,-5],[0,-2],[1,-3],[1,-5],[0,-1],[0,-3],[0,-3],[0,-3]],[[572,600],[4,3],[3,2],[2,5],[2,3],[3,5],[2,3],[2,4],[1,3],[2,6],[0,3]],[[572,600],[0,8]],[[586,600],[-5,-3],[-1,0]],[[702,601],[0,0]],[[702,601],[-3,-3],[-1,-3],[-1,-2],[-1,-3],[0,-2],[-2,-6]],[[702,601],[4,7],[3,6],[1,4],[2,3],[2,7],[2,7],[1,2],[1,3],[4,4],[1,3],[2,3]],[[683,601],[2,-1],[3,1],[1,2],[1,0],[1,0],[3,1],[2,3],[2,2]],[[527,602],[-1,7],[0,4],[0,4],[0,3],[-2,1],[-3,0],[-1,1],[-4,2],[-3,0],[-2,-2],[-2,1],[-1,0],[-2,-1],[-2,1],[-2,0],[-2,0],[-1,0]],[[563,605],[2,-4],[2,-2],[2,0],[3,1]],[[563,605],[4,3],[3,0],[2,0]],[[541,606],[1,0]],[[541,606],[1,1]],[[542,606],[5,1],[4,-1],[2,-2],[4,0],[2,-2],[1,-1]],[[726,606],[1,3],[1,5]],[[572,608],[0,6],[0,1],[0,3],[0,3],[0,7],[0,7],[0,3],[0,3],[-1,4],[1,3]],[[698,609],[3,-3],[0,-2],[1,-3]],[[453,609],[-4,4],[-2,2],[-5,2],[-2,2]],[[453,609],[0,0]],[[453,609],[2,-1],[2,-1],[2,-1],[4,-3],[1,-1],[3,-2],[3,-4],[1,-2],[7,-10],[3,-4],[4,-3]],[[453,610],[0,-1]],[[429,610],[1,5],[1,1],[0,2],[3,7]],[[739,610],[-1,1],[-2,2],[-3,0],[-5,1]],[[728,614],[0,3],[2,3],[2,3],[2,3]],[[755,617],[0,-2]],[[755,617],[0,5],[0,7],[0,3],[-1,4],[0,2],[-1,3],[-1,3],[-2,2],[-2,5],[-2,10],[-1,3]],[[369,617],[1,1],[2,0],[3,1],[3,1],[2,2],[2,0],[3,1]],[[369,617],[0,2],[0,4],[0,4],[1,5],[0,5],[0,2]],[[440,619],[4,2],[3,1],[2,1],[5,1]],[[777,620],[1,4],[-1,4],[0,3],[0,2],[0,5],[0,4],[1,2]],[[385,623],[4,-1],[3,-2],[3,-1],[3,-1],[1,0],[8,-1],[1,-1],[6,1],[7,4],[4,3],[9,1]],[[385,623],[2,5],[2,6],[2,3]],[[385,623],[0,0]],[[499,623],[0,-7],[-1,-7]],[[499,623],[1,5],[1,1],[0,2],[1,2],[0,1],[-2,2],[0,6],[0,3],[0,3],[1,10],[1,5]],[[435,624],[0,-7],[0,-7],[0,-4],[2,-4],[4,-7],[2,-3],[5,10],[0,1],[2,4],[3,2]],[[435,624],[5,-5]],[[464,624],[-1,-3],[-4,-5],[-4,-4],[-2,-3]],[[464,624],[6,1],[5,0],[5,1],[4,0],[2,1],[4,-1],[3,-1],[2,-1],[2,0]],[[497,624],[2,-1]],[[454,624],[4,0],[5,0],[1,0]],[[434,625],[1,-1]],[[434,625],[2,0],[5,1],[4,4],[1,1]],[[434,625],[-3,3],[-4,4],[-1,1]],[[734,626],[1,-3],[3,-6],[0,-2],[2,-2],[2,-2],[2,-2],[-4,0],[-1,1]],[[734,626],[0,4],[3,2],[2,0],[4,1],[2,0],[2,1]],[[801,630],[-2,1],[-2,2],[-3,4]],[[446,631],[1,-1],[3,-1],[4,-5]],[[446,631],[3,3],[3,1],[3,2],[4,2],[2,1]],[[551,632],[2,1],[2,-1],[3,-1],[2,7],[1,2],[1,3],[0,4],[2,4]],[[564,651],[-1,1],[-2,1],[-2,1],[-2,-1],[-1,0],[-2,0],[-2,0]],[[551,632],[0,8],[1,5],[0,4],[0,4]],[[551,632],[-2,0],[-4,-2],[-1,-3],[0,-1],[0,-8],[-1,-5],[-1,-3],[-1,0],[-1,0],[-1,-2],[-2,2],[-2,1],[-2,2],[-2,3],[-2,1],[-4,3],[0,5],[0,8],[-1,4],[-1,14]],[[313,632],[4,2],[3,1],[2,3],[4,4],[2,1],[2,0]],[[426,633],[-1,1],[-1,1],[-3,4],[-3,1],[-4,4],[-3,11],[-2,7]],[[747,634],[2,-1],[2,0],[3,-1]],[[747,634],[-4,5],[-2,3],[-2,1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,1]],[[794,637],[-1,4],[0,3],[-1,4],[-1,2],[0,1],[0,3],[-1,3],[-1,5],[-1,7],[0,3],[1,3]],[[391,637],[0,1]],[[593,637],[2,-1],[2,-1]],[[593,637],[0,4],[1,3],[0,3],[1,6]],[[436,638],[3,-4],[4,-1],[2,-1],[1,-1]],[[391,638],[1,2],[1,0]],[[391,638],[2,2]],[[391,638],[-1,0],[-2,0],[-2,2],[-3,2],[-1,0],[-2,0],[-4,0],[0,1]],[[676,638],[1,-1],[4,-3],[1,-2],[1,-6],[1,-4],[2,-4],[2,-1],[2,0],[3,-3],[2,-2],[3,-2],[0,-1]],[[370,639],[0,0]],[[370,639],[0,1]],[[370,639],[-2,2],[-2,1],[-1,1],[-3,2],[-2,1],[-3,3],[-2,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,-2],[-1,0],[-2,-1],[-1,-1],[-3,0],[-2,-1],[-2,1],[-1,0],[-1,0],[-3,-2]],[[370,640],[2,-1],[2,-2],[1,-1],[2,-1],[2,-3],[1,-3],[1,-2],[4,-4]],[[461,640],[1,-3],[2,-13]],[[461,640],[3,2],[3,1],[3,2],[7,3],[2,2],[4,3],[8,5],[3,1]],[[393,640],[2,1],[3,1],[2,0],[4,-2],[3,-2],[2,0],[2,-1],[6,-2],[5,-2],[4,0]],[[393,640],[1,2],[4,6],[4,4],[3,4],[3,5],[1,1]],[[370,642],[0,-2]],[[370,642],[1,4],[1,2]],[[376,643],[-3,-1],[-2,0],[-1,0]],[[376,643],[-4,4],[0,1]],[[610,643],[0,-2],[0,-5],[0,-5]],[[670,644],[1,4],[2,5],[0,3]],[[778,644],[1,6],[-1,5],[2,1],[2,4],[0,4],[0,2],[0,5],[0,1],[3,1],[3,1],[1,1]],[[730,644],[0,-5],[1,-4],[1,-1],[0,-3],[1,-3],[0,-2],[1,0]],[[706,648],[4,6],[1,5]],[[579,648],[1,0],[5,-6],[2,-2],[1,-1],[5,-2]],[[372,648],[-3,4],[0,1]],[[572,649],[0,0]],[[572,649],[4,0],[3,-1]],[[572,649],[1,2]],[[572,649],[3,3],[4,5],[4,3],[7,4],[3,3],[2,1],[3,2],[4,2],[1,0],[4,1],[2,-1],[1,1]],[[572,649],[-1,1],[-2,1],[0,1],[-2,3],[-1,2],[-2,2],[-1,2],[-2,3],[-3,4],[-2,2],[-1,0],[-3,2],[-4,3]],[[572,649],[-1,4],[-2,4],[-2,6],[0,5],[-1,2],[-2,0],[-1,2],[-2,1]],[[725,650],[0,-1],[3,-3],[2,-2]],[[725,650],[5,0],[4,-1],[3,0],[4,0],[2,-3],[3,-3],[3,-3],[2,-1],[2,-1]],[[523,651],[1,7],[1,4],[1,2]],[[573,651],[2,4],[3,4],[2,5],[0,5],[0,3],[0,5],[0,4]],[[573,651],[1,2],[1,7],[1,6],[1,3]],[[564,651],[1,0],[1,1],[1,0],[1,-1],[2,-1],[1,-1],[1,0]],[[329,652],[1,-9]],[[329,652],[2,0],[2,1],[2,0],[2,0],[2,0],[1,1],[3,1],[1,1],[2,0],[2,2],[5,1],[6,0],[2,1],[3,0],[3,-4],[2,-3]],[[595,653],[-5,-1],[-1,-1],[-5,-1],[-2,-1],[-3,-1]],[[595,653],[5,-1],[3,1],[3,2],[2,2],[2,1]],[[552,653],[-1,2],[-2,3],[-2,3],[-3,5],[-3,5],[-3,2],[-2,3],[-3,3],[-2,2]],[[369,653],[1,1],[3,3],[1,1],[1,1],[2,2],[2,1],[2,3],[3,2]],[[653,654],[5,1],[4,0],[6,1],[5,0]],[[653,654],[-4,1],[-4,1],[-1,2],[1,-3],[3,-4],[2,-2],[1,-1],[2,-2],[2,-2],[3,-1],[4,0],[4,1],[4,0]],[[670,644],[2,-2],[2,-3],[2,-1]],[[806,655],[2,-5],[0,-1],[-2,-7]],[[806,655],[-1,7],[-2,8],[0,3],[-1,6],[-1,4]],[[682,656],[5,2],[3,0],[3,0],[2,-1],[5,0],[3,0],[3,1],[5,1]],[[682,656],[4,6],[3,5],[3,5],[3,4],[1,3],[1,1]],[[673,656],[6,0],[3,0]],[[610,658],[0,-2],[-1,-3],[1,-7],[0,-3]],[[610,658],[3,-4],[3,-6],[1,-3],[1,-2],[2,-2],[1,-1],[3,-2],[1,-2],[3,-2],[2,-2],[1,0],[2,-1],[2,-2],[0,-2],[0,-3],[0,-2],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[2,-3],[1,-1],[0,-1],[3,-3],[1,-3],[2,-2],[1,0],[2,1],[1,-1],[1,-3],[2,-2],[3,-6],[4,-6],[3,-2],[3,1],[3,-3]],[[610,658],[5,2],[2,-1],[3,1],[4,0],[3,0],[3,1]],[[610,658],[2,5],[1,3],[1,3],[1,3],[3,5]],[[711,659],[4,0],[3,-1],[3,-2],[2,-2],[2,-4]],[[711,659],[0,1],[0,3],[2,1],[2,1],[1,2],[0,2],[0,1],[-1,1],[-1,1],[0,3],[-1,1],[-1,-1]],[[494,659],[2,-6],[0,-1],[0,-4],[0,-2],[0,-3],[1,-4],[0,-4],[1,-2],[0,-4],[0,-3],[1,-3]],[[494,659],[0,6],[0,7]],[[630,661],[3,-1],[2,-1],[2,-1],[2,0],[1,0],[2,2],[2,2],[1,3],[1,1],[2,-2],[3,-2],[1,-2],[0,-3],[1,-3]],[[409,662],[3,6],[3,1],[3,1],[2,1],[3,0],[2,2],[2,1],[3,3],[3,4]],[[814,662],[-3,4],[-3,5],[-3,5],[-2,6],[-1,6]],[[318,662],[3,-3],[4,-3],[3,-3],[1,-1]],[[502,663],[3,-2],[6,-2],[6,-4],[6,-4]],[[800,663],[3,-4],[2,-4],[1,0]],[[745,664],[1,4],[0,4],[1,4],[2,7],[0,3]],[[526,664],[2,3],[2,3],[1,3],[0,5],[0,3]],[[570,665],[1,-3],[0,-3],[1,-1],[0,-1],[0,-4],[0,-4]],[[501,666],[1,-3]],[[501,666],[0,-1],[-2,3],[-3,2],[-2,2]],[[561,666],[0,-1]],[[561,666],[0,3],[0,3],[0,1]],[[571,666],[-1,-1]],[[571,666],[1,1],[1,0],[1,2],[1,1],[2,-1]],[[384,667],[2,-8],[2,-5],[1,-3],[2,-13]],[[384,667],[4,5],[3,3],[3,4],[3,3],[3,2],[1,1]],[[577,669],[1,4],[1,4],[1,4]],[[756,670],[2,-4],[3,-3],[1,-3],[3,-3]],[[567,670],[2,-3],[1,-2]],[[494,672],[0,-1],[-2,-1],[-3,0],[-4,-2],[-2,-2],[-4,-1],[-3,-2],[-4,-1],[-5,0],[-2,4],[-3,3],[-3,4],[-4,2],[-3,3],[-3,3],[-2,1]],[[610,673],[0,-4],[0,-5],[0,-5],[0,-1]],[[776,673],[-1,3],[-1,5],[-2,11],[0,2],[0,2]],[[561,673],[0,4],[0,2],[1,2],[0,4]],[[681,674],[0,0]],[[681,674],[-5,-9],[-2,-5],[-1,-4]],[[555,675],[1,-2],[2,-2],[1,-3],[2,-2]],[[555,675],[3,-1],[2,-1],[1,0]],[[548,675],[6,0],[1,0]],[[789,675],[0,0]],[[712,675],[1,5],[2,6],[0,2],[2,4],[1,1],[0,2]],[[727,676],[1,1],[2,-2],[1,-1],[2,0],[4,0],[2,-2],[2,-3],[2,-2],[2,-2],[0,-1]],[[618,677],[-5,-3],[-2,-1],[-1,0]],[[618,677],[4,-3],[1,-2],[2,-3],[2,-3],[3,-5]],[[618,677],[4,4],[9,7],[1,2]],[[618,677],[3,11],[1,2]],[[587,678],[5,3],[3,2],[8,6],[1,0]],[[697,680],[1,-1],[2,-2],[1,0],[3,-1],[4,0],[3,0],[1,-1]],[[697,680],[-3,1],[-2,2],[-2,3],[-2,3]],[[790,680],[-1,-5]],[[531,681],[5,-1],[4,-1],[5,-2],[3,-2]],[[531,681],[-2,3],[-2,3],[-3,3],[-2,2],[-3,2],[-4,3]],[[531,681],[-1,4],[-2,9],[-1,4],[0,6],[0,7],[0,6],[1,10],[0,2],[2,7],[1,4],[0,3],[-2,8],[-1,4],[1,1],[0,4],[1,4],[0,6],[1,2],[-1,6]],[[433,681],[-2,-4],[-1,-5],[-2,-5],[0,-6],[1,-7],[1,-4],[1,-4],[1,-4],[4,-4]],[[436,638],[1,2],[1,1],[2,3],[1,2],[1,2],[0,2],[0,5],[0,2],[1,4],[1,5],[1,2],[0,3],[0,3],[2,9]],[[433,681],[8,1],[6,1]],[[580,681],[-4,0],[-5,0],[-2,0]],[[569,681],[1,-9],[1,-4],[0,-2]],[[532,681],[5,1],[3,1],[7,0],[6,1],[2,1]],[[740,681],[4,3],[5,2]],[[782,682],[2,-3],[1,-2]],[[782,682],[1,3],[3,1],[6,2],[4,0],[3,2]],[[447,682],[1,-9],[1,-6],[3,-7],[2,-4],[2,-7],[2,-2],[2,-4],[1,-3]],[[447,682],[0,1]],[[447,683],[0,0]],[[447,683],[0,1]],[[801,683],[-2,-1],[-2,-1],[-1,-3],[0,-3],[-3,-3],[3,-2],[3,-4],[1,-3]],[[801,683],[-1,-5],[-1,-2],[0,-4],[1,-4],[0,-3],[0,-2]],[[801,683],[0,0]],[[801,683],[0,5],[1,0]],[[447,683],[1,4],[-1,8],[1,5],[0,7],[0,4],[2,4],[1,2],[-1,2]],[[447,684],[0,1],[-1,3],[-2,3],[0,4],[-4,7],[-3,6],[-2,2],[-1,3]],[[555,685],[0,-6],[0,-4]],[[401,685],[2,-3],[2,-2],[1,-5],[2,-9],[1,-4]],[[562,685],[2,-1],[2,-2],[2,-1],[1,0]],[[562,685],[-5,0],[-1,-1],[-1,1]],[[749,686],[5,-7],[1,-4],[1,-4]],[[749,686],[-2,1],[-4,0],[-3,2],[-2,0],[-3,-1],[-3,0],[-2,1],[-3,2],[-6,2],[-3,2]],[[749,686],[2,1],[3,1],[3,1],[4,3]],[[749,686],[2,4],[3,8]],[[589,687],[-2,-2],[-2,0],[-2,-1],[-2,-1],[-1,-1],[0,-1]],[[802,688],[0,0]],[[802,688],[2,1]],[[802,688],[3,-3],[3,-3],[2,-2],[3,-2],[4,-5],[2,-1],[-1,4],[-1,2],[-2,2],[-1,3],[-2,2],[-3,3],[-1,1],[-4,0]],[[688,689],[-1,-3],[-2,-4],[-3,-5],[-1,-3]],[[604,689],[-7,0],[-5,-1],[-3,-1]],[[604,689],[1,0],[4,1]],[[804,689],[1,1],[4,3]],[[609,690],[1,-7],[0,-10]],[[609,690],[0,1]],[[632,690],[5,4],[2,1],[3,2]],[[799,690],[1,0]],[[799,690],[1,4]],[[799,690],[6,5],[2,3]],[[622,690],[3,0],[4,0],[3,0]],[[622,690],[-1,0],[-1,0],[-2,1],[-2,-1],[-2,0],[-5,1]],[[622,690],[0,4],[0,3],[0,5],[-1,5],[-1,4]],[[404,691],[3,-2],[5,-3],[2,-2],[4,-2],[2,-1],[3,0]],[[404,691],[2,1],[2,1],[3,0],[3,1],[6,0]],[[609,691],[3,-6],[5,-6],[1,-2]],[[609,691],[2,7],[0,2],[1,4],[1,2],[5,3],[1,1],[1,1]],[[761,692],[10,5]],[[761,692],[0,4],[-1,3],[-1,1],[-1,1],[-1,2],[0,3]],[[809,693],[4,-3],[3,-3],[4,-4],[1,-1],[2,-1]],[[809,693],[5,3],[3,4],[4,5],[0,2]],[[420,694],[1,-2],[2,-3],[2,-3],[5,-3],[3,-2]],[[420,694],[1,4],[1,0],[2,1],[1,2]],[[800,694],[1,4],[1,2]],[[800,694],[0,4],[-1,4],[-1,2],[-1,8],[-2,7],[-1,5]],[[718,695],[1,5],[1,7],[0,4],[0,3]],[[772,696],[6,-9],[2,-3],[2,-2]],[[772,696],[1,4],[1,3],[1,1],[4,3],[2,2],[0,1]],[[536,696],[1,2],[2,3],[3,1],[3,0],[2,1],[3,1],[1,-1],[2,-1],[4,1],[2,1],[2,-3],[2,0],[4,-2],[1,0],[1,0],[3,0],[2,-2],[1,0],[2,-1],[2,-1],[3,-2],[2,-1],[1,-1],[2,-2],[1,-1],[1,-1]],[[642,697],[7,6],[4,2],[3,2],[1,1]],[[515,697],[1,-9],[0,-3],[0,-9],[0,-4],[3,-11],[1,-2],[2,-4],[1,-4]],[[515,697],[0,0]],[[515,697],[-2,4],[-2,1],[-2,2],[-4,2]],[[515,697],[1,4],[-1,7],[1,5]],[[482,698],[-4,-2],[-3,-3],[-6,-5],[-5,-3],[-5,-2],[-3,-2],[-4,1],[-2,1],[-3,0]],[[665,698],[-20,0],[-3,-1]],[[665,698],[3,0],[2,0],[1,2],[2,0],[1,0],[1,-1]],[[754,698],[2,-2],[3,-2],[2,-2]],[[754,698],[3,8]],[[495,698],[1,-10],[0,-5],[-1,-7],[-1,-4]],[[495,698],[6,1]],[[501,699],[0,-3],[-1,-6],[1,-5],[1,-4],[0,-5],[-1,-4],[0,-3],[0,-3]],[[501,699],[1,0],[4,-1],[2,0],[4,0],[3,-1]],[[675,699],[2,0],[4,-3],[1,-1],[2,-1],[3,-3],[1,-2]],[[675,699],[-1,3],[-2,1],[-5,3],[-1,-1],[-1,1],[-3,1],[-3,0],[-2,1]],[[802,700],[1,5]],[[802,700],[0,4],[-1,4],[0,4],[0,5],[-2,5],[0,4],[-1,3],[0,5]],[[425,701],[1,3],[1,2],[2,1],[2,2],[1,2],[2,2]],[[425,701],[2,-4],[1,-2],[4,-3],[6,-4],[5,-2],[4,-2]],[[424,702],[-4,4],[-4,6],[-2,2],[-3,2],[-3,5],[-2,2],[0,-3],[0,-4],[0,-2],[-1,-2],[0,-2],[0,-3],[-1,-4],[1,-4],[-1,-4],[0,-4]],[[750,703],[2,-2],[1,-1],[1,-2]],[[803,705],[1,-2],[3,-4],[3,5]],[[803,705],[0,2],[3,5],[1,6],[1,2],[2,1],[3,2]],[[757,706],[4,2],[1,0],[4,1],[3,0],[2,1],[2,1],[1,-1],[2,0],[2,0],[2,0],[1,0]],[[758,707],[2,2],[1,1],[1,2],[2,2],[1,1],[1,0],[1,3],[1,2]],[[821,707],[2,0],[4,0],[-1,2],[-1,1],[-1,2],[0,1],[-1,0]],[[801,707],[2,-2]],[[657,708],[1,-2],[3,-2],[1,-3],[1,-2],[2,-1]],[[657,708],[2,1],[2,2],[3,0],[2,0],[1,0]],[[657,708],[-3,3],[-3,2],[-2,2],[-2,0],[-2,2]],[[781,710],[0,3],[0,3],[3,2],[4,1],[3,2],[3,3]],[[620,711],[0,8],[-1,5],[0,4],[0,3]],[[620,711],[2,4],[3,4],[2,2],[2,3],[3,5],[2,3]],[[667,711],[1,1],[2,1],[1,0],[5,1],[3,0],[2,-1]],[[667,711],[-1,4],[1,2],[-1,2],[0,3],[1,1],[1,2],[2,2],[2,1],[2,0]],[[823,713],[0,-3],[-2,-3]],[[681,713],[-1,-3],[-1,-4],[-3,-4],[-1,-3]],[[684,713],[2,-4],[1,-3],[1,-3],[2,-2],[3,-2],[5,-2],[1,-2],[2,0],[2,-1],[1,-2],[1,-2],[1,-2],[2,-4],[2,-5],[2,-4]],[[684,713],[2,-1],[5,-4],[3,-2],[3,-1],[4,-2],[2,-1],[4,-3],[5,-3],[4,-2],[2,1]],[[434,713],[0,1],[2,6],[0,4],[1,2],[5,0],[3,0],[3,1]],[[684,714],[0,-1]],[[682,714],[2,0]],[[682,714],[0,1]],[[682,714],[-1,-1]],[[682,714],[-1,3],[-1,0],[-1,2],[0,1],[-1,0],[0,2],[0,1],[0,2],[-1,2],[-1,1],[-1,0],[-1,0]],[[682,714],[-1,10],[-2,9],[-1,5],[-1,5],[0,1],[0,4],[-1,5]],[[720,714],[-3,2],[-2,2],[-2,1]],[[720,714],[2,2],[1,2],[3,3],[1,1],[1,0]],[[682,715],[2,-1]],[[682,715],[5,-2],[7,-1],[2,0],[2,1],[2,2],[3,1],[5,1],[3,1],[2,1]],[[682,715],[0,2],[1,2],[2,2],[2,4],[2,2],[2,3],[2,2],[0,1]],[[735,716],[2,1]],[[735,716],[1,0],[1,1]],[[816,716],[3,0],[1,-1],[3,-2]],[[754,717],[0,5],[0,3],[1,2],[1,3],[1,4],[1,4]],[[645,717],[0,1]],[[737,717],[2,0],[4,2],[3,-1],[1,-1],[2,1],[4,-4],[3,-4],[1,-4]],[[737,717],[0,1],[3,2],[1,1]],[[645,718],[0,0]],[[645,718],[0,3],[0,1],[-1,2],[0,3],[0,4],[0,1]],[[796,718],[0,4],[0,6]],[[713,719],[0,1]],[[713,720],[-3,0],[-6,4],[-2,2],[-4,3],[-4,4]],[[768,720],[2,2],[3,2],[1,2],[0,1]],[[768,720],[1,4],[4,3],[1,0]],[[450,720],[-2,6]],[[741,721],[0,0]],[[730,721],[2,-2],[1,-3],[1,-1],[1,1]],[[730,721],[2,-1],[2,-2],[1,-2]],[[741,721],[3,4],[1,1],[2,1],[1,2],[2,2],[3,2],[2,2],[2,3],[1,0]],[[728,722],[2,-1]],[[728,722],[2,0],[0,-1]],[[728,722],[0,3]],[[813,723],[2,-1],[4,4],[2,0],[4,-2]],[[605,723],[0,1]],[[605,723],[0,-9],[0,-3],[1,-2],[-1,-3],[1,-3],[1,-5],[1,-4],[1,-3]],[[605,723],[1,3],[2,8]],[[608,734],[7,-2],[2,-1],[2,0]],[[605,724],[-1,9],[0,6],[0,7],[0,4],[0,11]],[[604,761],[-5,4],[-5,4],[-2,1],[3,4]],[[667,724],[-2,3],[-1,1],[-1,3]],[[794,724],[1,2],[1,2]],[[794,724],[-2,3],[-2,3],[-1,1],[0,2],[-2,2],[-3,1]],[[728,725],[1,2],[2,1],[3,3],[2,1],[1,0],[1,0],[1,1]],[[728,725],[0,2],[0,2],[2,2],[2,3],[3,4],[2,1]],[[448,726],[0,0]],[[448,726],[5,-3],[3,-2],[4,-4],[3,-3],[4,-3],[5,-3],[6,-5],[2,-3],[2,-2]],[[482,698],[12,0],[1,0]],[[448,726],[1,7],[1,4],[2,2],[2,5],[1,4],[1,4],[0,2],[1,2],[1,0],[2,2]],[[448,727],[0,-1]],[[774,727],[0,2],[0,1],[-1,1],[-2,1],[-1,1],[-2,1]],[[774,727],[1,3],[3,2],[4,3],[2,1]],[[219,727],[10,1],[8,-3],[8,4],[2,3],[4,6],[1,8],[1,8],[8,0],[8,0],[7,-1],[8,1],[5,5],[3,1]],[[796,728],[1,3],[0,2],[1,1]],[[674,728],[-1,5],[-2,4],[-1,3],[-2,3],[0,1]],[[800,729],[3,-3],[2,-2],[3,1],[3,-1],[2,-1]],[[800,729],[4,2],[4,2],[6,0],[3,0],[0,-1],[2,0],[3,0],[1,-2],[1,0],[1,1]],[[800,729],[1,5],[3,6],[3,4],[3,2]],[[799,729],[0,5],[1,3],[-1,5],[3,4],[2,3],[1,4],[1,2],[2,3]],[[808,758],[-2,2],[-2,1],[-2,1],[-1,2],[-2,1],[-2,5]],[[389,730],[1,2],[1,0],[2,-1],[2,-2],[3,-6],[1,-2],[1,-1],[2,-3],[1,-2],[1,3],[0,3],[-1,2],[1,2],[1,2],[1,1],[3,1],[1,0],[1,2],[0,5]],[[663,731],[0,5],[0,3],[-1,3],[0,1]],[[619,731],[0,1],[5,0],[3,1],[6,-1],[1,0]],[[634,732],[0,-17],[1,-7],[0,-2],[2,0],[2,0],[1,-1],[2,3],[0,3],[1,1],[1,3],[0,2],[1,1]],[[634,732],[0,0]],[[634,732],[2,-3],[1,-1],[2,-2],[2,-4],[1,-2],[2,-2],[1,0]],[[634,732],[1,6],[1,6],[1,6],[3,11],[1,4]],[[634,732],[4,0],[4,1],[2,0]],[[378,732],[3,-1],[4,-3],[1,-2],[6,-6],[4,-4],[2,-4],[1,-3],[1,-3],[1,-3],[0,-10],[0,-8]],[[378,732],[3,2],[3,4],[2,4],[3,2]],[[644,732],[0,1]],[[739,733],[0,-1],[1,-3],[1,-5],[0,-3]],[[739,733],[1,1],[2,0],[6,3],[2,0],[3,2],[4,4]],[[644,733],[1,0]],[[645,733],[-1,-1]],[[645,733],[3,0]],[[644,733],[-1,3],[0,3],[0,3],[1,3]],[[648,733],[3,-5],[2,-2],[1,-3],[1,-2],[1,-1],[1,0],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[2,-2]],[[684,733],[-1,-9],[0,-3],[-1,-3],[0,-4]],[[684,733],[9,0]],[[684,733],[-3,6],[-1,7],[-2,3],[-2,4]],[[693,733],[2,4],[2,5],[0,7],[0,3]],[[648,733],[4,-1],[5,-1],[6,0]],[[648,733],[1,4],[1,3],[0,4],[1,3],[0,3]],[[780,733],[0,6]],[[798,734],[-1,7],[0,3],[-1,2],[0,5],[0,4],[0,3],[-1,3],[-1,5],[-1,6]],[[608,734],[1,4],[0,3],[1,4],[1,6],[1,4]],[[411,736],[-2,5],[-4,8],[-1,4],[-1,3],[0,6],[-1,7],[-1,3],[0,2]],[[784,736],[-2,1],[-2,2]],[[759,736],[4,-1],[4,0],[1,-1]],[[758,738],[1,1]],[[759,739],[-1,4],[-1,0]],[[737,739],[2,-6]],[[737,739],[2,4],[4,6],[2,3],[3,3],[5,1],[1,0],[1,1],[4,0]],[[759,739],[1,2],[2,0],[1,1]],[[780,739],[-3,3],[-3,3],[-1,0]],[[780,739],[0,6],[1,5],[1,3]],[[422,741],[3,0],[1,-1],[2,0],[2,-1],[2,1],[6,-4],[5,-3],[2,-3],[3,-3]],[[422,741],[1,7],[0,2],[0,4],[1,4],[0,5],[0,4],[1,1],[2,1],[2,1],[2,1],[2,1],[3,2],[2,2],[1,2],[1,1],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[-2,4],[-3,4],[-1,2],[-3,3],[-1,3]],[[422,741],[0,-7],[0,-6],[-1,-7],[0,-4],[2,-8],[2,-8]],[[422,741],[0,0]],[[763,742],[2,-3],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[763,742],[4,0],[2,3],[3,0],[1,0]],[[415,742],[3,0],[1,0],[1,-1],[2,0]],[[757,743],[1,5],[0,2],[1,1],[0,2],[0,4]],[[662,743],[5,0],[1,1]],[[662,743],[0,3],[0,3],[-1,4]],[[668,744],[-4,5],[-1,2],[-2,2]],[[833,744],[2,4],[2,5],[2,5],[2,2],[1,2],[-7,7],[-6,8],[4,-2],[9,-4],[2,2],[1,3],[2,3],[1,1]],[[389,744],[2,-1],[4,-1],[6,1],[4,-2],[3,-2],[3,-3]],[[389,744],[2,6],[2,7],[4,10],[4,7]],[[773,745],[2,4],[1,3],[3,2],[3,-1]],[[644,745],[-4,-4],[-2,-4],[-4,-5]],[[644,745],[1,2],[1,1],[2,2]],[[810,746],[4,-6]],[[648,750],[-1,4],[-2,4],[-1,3],[-3,4]],[[641,765],[5,-1],[2,-1],[3,-3],[1,0]],[[651,750],[-2,0],[-1,-1],[0,1]],[[651,750],[4,-3],[1,-2],[2,-2],[1,0],[3,0]],[[363,751],[4,-6],[5,-6],[5,-5],[1,-2]],[[363,751],[2,1],[3,-2],[4,-1]],[[697,752],[1,0],[2,-1],[1,-1],[3,0],[4,-2],[2,-1],[1,0],[2,-2],[2,-1],[2,-2],[1,0],[2,-3],[2,-1],[2,-1],[1,0],[5,1],[2,1],[3,2],[1,-1],[1,-1]],[[697,752],[-2,2],[-2,3],[-3,2],[-2,2],[-3,2]],[[782,753],[2,-1],[2,-1],[1,-2],[3,-3],[1,-3],[3,-2],[1,-1],[3,-6]],[[782,753],[-1,0],[0,2],[0,5],[0,2],[0,1],[0,2],[0,3]],[[676,753],[0,1]],[[661,753],[0,0]],[[661,753],[-1,0],[-2,-1],[-1,-1],[-3,0],[-1,0],[-2,-1]],[[661,753],[-1,4],[-2,2],[-2,4],[-2,4],[-2,2]],[[676,754],[0,0]],[[676,754],[2,3],[3,2],[3,2],[1,2]],[[676,754],[1,10],[1,4],[1,4]],[[679,772],[1,-1],[4,-6],[1,-2]],[[612,755],[3,-1],[3,1],[8,2],[5,2],[2,2],[8,4]],[[641,765],[4,5],[6,6]],[[612,755],[2,5],[2,3]],[[759,757],[2,-7],[1,-2],[1,-3],[0,-3]],[[759,757],[3,5],[1,4],[3,4],[1,3],[1,6]],[[868,757],[4,0],[3,0],[-2,3],[-1,4],[-1,4]],[[868,757],[-3,4],[-2,4],[-1,3]],[[460,758],[3,0],[4,0]],[[467,758],[1,3],[2,2],[1,3],[3,4],[2,1],[2,3],[1,2]],[[460,758],[-1,5],[-1,1],[-1,5],[-2,4],[-2,4],[-1,6]],[[808,758],[0,0]],[[808,758],[1,-4],[1,-8]],[[808,758],[3,5],[1,2]],[[467,758],[2,0],[2,-1],[1,2],[1,1],[2,1],[3,0],[1,0],[2,3],[3,2],[1,-2],[2,4],[1,2],[2,2],[2,5],[3,6]],[[879,759],[5,2],[2,3],[3,4],[1,7],[1,7]],[[821,760],[6,8]],[[652,760],[0,-1],[-1,-7],[0,-2]],[[652,760],[5,-3],[2,-2],[1,-1],[1,-1]],[[652,760],[0,0]],[[856,760],[2,-2],[3,-1],[4,-1],[3,1]],[[856,760],[0,1],[2,2],[2,2],[2,3]],[[856,760],[-2,-4],[-1,4],[0,5],[-1,3],[0,1],[-1,4],[-1,3],[-1,4]],[[295,761],[7,0],[18,3],[23,5],[5,1],[2,1]],[[604,761],[7,-5],[1,-1]],[[820,761],[1,5],[1,4]],[[685,763],[0,0]],[[685,763],[2,1],[2,1],[2,1],[1,2],[2,3],[0,2],[1,3],[1,4],[3,3],[2,1]],[[413,764],[-2,-3],[-1,-3],[-1,-3],[-1,-4],[1,-7],[2,-5],[0,-3]],[[413,764],[2,2],[2,0],[3,1],[2,1],[1,2],[1,1],[0,6],[0,5],[-1,1],[0,3],[0,3],[0,4],[-1,4],[0,3],[0,5],[0,4],[-1,4],[1,3]],[[812,765],[1,3],[0,2]],[[862,768],[0,1],[-1,1],[0,1],[0,1],[0,3],[-1,4],[0,1]],[[871,768],[3,1]],[[871,768],[-3,3],[-3,1],[-1,1],[-2,3],[-1,3],[-1,1]],[[781,768],[2,0],[0,-2],[0,-1],[1,-1],[0,-3],[4,7],[2,3],[1,2]],[[781,768],[0,2],[0,3],[1,4],[1,6]],[[781,768],[-2,3],[-2,2],[-1,0],[-1,2],[-1,2],[-1,1],[-1,3],[-2,2]],[[827,768],[1,3],[0,4],[0,4],[0,2],[0,1],[-1,4]],[[652,769],[0,-9]],[[815,770],[0,-8]],[[815,770],[3,-1],[4,1]],[[813,770],[2,0]],[[813,770],[1,0]],[[822,770],[3,0],[2,-2]],[[822,770],[1,1],[0,5],[2,4],[1,4],[1,2]],[[874,770],[3,4],[1,2],[1,0],[3,1],[2,2],[2,2],[3,1],[2,0]],[[797,770],[3,2],[3,-1],[4,-2],[3,-1],[2,-3]],[[814,770],[2,7],[4,3],[3,3],[2,2],[3,1]],[[350,771],[3,-6],[6,-8],[4,-6]],[[350,771],[6,3],[6,3],[4,2],[3,1],[5,0],[2,0],[4,2],[2,-1],[6,-2],[6,-2],[7,-3]],[[793,772],[4,-2]],[[793,772],[0,2],[0,3],[0,2]],[[679,772],[1,7],[1,5],[0,5],[-1,3],[-1,6]],[[791,773],[2,-1]],[[516,774],[1,-3],[2,-2],[4,2],[5,5],[2,2]],[[595,774],[1,5],[2,4],[1,3]],[[401,774],[2,-2],[3,-2],[3,-2],[2,-2],[2,-2]],[[401,774],[-1,5],[-2,7],[0,4],[1,4],[0,5],[2,3],[3,4],[3,2],[6,4],[3,1],[4,2],[2,1]],[[754,775],[0,-5],[1,-3],[2,4],[1,5],[0,3]],[[651,776],[1,-7]],[[651,776],[11,8]],[[479,776],[5,2],[8,4],[3,1]],[[479,776],[1,2],[1,3],[0,3],[0,5],[-1,4]],[[878,778],[-1,6],[1,4]],[[857,778],[0,-2]],[[857,778],[2,2],[1,0]],[[530,778],[3,-2],[3,-1],[4,3],[3,0]],[[530,778],[0,4],[-1,2],[-2,0],[-1,1],[0,1],[-2,6],[3,2],[2,0],[2,1],[2,1],[3,2]],[[543,778],[-3,-3],[-3,-2],[4,-7],[6,-8],[9,-10],[1,-1],[1,-4],[1,-2],[2,-2],[1,-1],[0,-3],[1,-3],[0,-2],[4,-3],[2,-1],[2,-1],[3,-3],[1,0]],[[543,778],[0,0]],[[543,778],[4,0],[3,0],[4,1],[2,4],[3,2],[3,3]],[[543,778],[0,4],[1,4],[1,5],[0,4],[1,1],[0,6],[0,3],[-4,5],[-2,1],[-3,3]],[[543,778],[1,3],[2,3],[1,1]],[[758,779],[-6,0],[-2,0],[-2,0],[-5,0],[-5,2],[-5,0],[-4,0],[-2,0],[-3,1],[-5,1]],[[758,779],[0,10],[1,5],[1,3]],[[768,779],[-5,1],[-5,-1]],[[768,779],[2,4]],[[860,780],[0,0]],[[860,780],[5,3],[2,0],[1,1]],[[849,780],[2,-2],[1,-1],[2,0],[3,1]],[[849,780],[-1,0]],[[922,780],[-2,-1],[-2,1],[-2,2],[-4,5],[-2,6],[-1,3],[0,3],[-1,3],[-1,2],[-1,0]],[[848,780],[-1,7],[-2,6],[-1,1]],[[770,783],[1,0],[3,2],[2,0],[2,-1],[2,-1],[2,0]],[[782,783],[1,0]],[[782,783],[-4,4],[-4,4],[-2,2],[0,2],[1,5],[2,2],[-1,5]],[[782,783],[1,-1],[0,1]],[[783,783],[0,0]],[[783,783],[-1,3],[0,1],[0,2],[0,7]],[[783,783],[4,-3],[1,-1],[2,-2],[1,-2],[0,-2]],[[783,783],[1,3],[1,4],[3,-4],[2,-3],[3,-4]],[[793,779],[2,0],[4,-2],[3,0],[1,-1],[6,-1],[1,-1],[4,-4]],[[452,783],[5,-3],[6,-1],[5,0],[8,-3],[3,0]],[[452,783],[-1,3],[0,2],[1,-1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,3],[1,2],[1,1],[2,1],[1,1],[1,1],[1,7],[0,8]],[[452,783],[0,0]],[[868,784],[1,0]],[[869,784],[-2,1],[-1,2],[-1,4],[-2,3]],[[662,784],[0,-6],[0,-3],[0,-3],[0,-3],[-1,-3],[1,-3],[0,-3],[-1,-7]],[[662,784],[7,4],[6,4],[4,6]],[[701,784],[0,0]],[[701,784],[4,1],[4,-1],[5,-1],[5,0]],[[701,784],[0,4],[1,2],[-1,3],[-2,5]],[[855,785],[2,-7]],[[855,785],[3,-3],[2,-2]],[[871,785],[0,0]],[[547,785],[4,1],[3,0],[4,1],[4,1]],[[547,785],[1,3],[3,3],[2,5],[1,1],[3,3],[2,3],[2,4],[2,-5],[2,-4],[2,-3],[0,-2]],[[871,785],[-2,-1]],[[827,786],[1,0]],[[828,786],[0,0]],[[599,786],[1,0]],[[599,786],[3,3],[1,3],[1,4],[1,4],[0,2],[3,5]],[[828,786],[0,3],[1,5],[1,3],[1,2]],[[878,788],[0,1],[4,1],[4,-3],[3,-3],[2,-2]],[[878,788],[0,6]],[[562,788],[1,2],[4,3]],[[767,791],[0,-4],[1,-5],[0,-3]],[[567,793],[2,-3],[1,-1]],[[878,794],[-3,-3],[-2,-4],[-2,-2]],[[878,794],[0,1],[1,5],[-1,1],[-4,0],[-4,-1],[-2,-2],[-3,-1],[-2,-3]],[[863,794],[-1,11]],[[844,794],[4,-4],[2,-3],[2,-1],[3,-1]],[[434,796],[4,2],[2,2]],[[782,796],[4,1],[2,-1],[2,0],[2,0],[3,1],[3,1],[4,4],[1,1],[2,3],[0,1],[4,3],[3,0]],[[782,796],[0,6],[2,4],[1,1]],[[679,798],[5,-2],[5,-2],[3,1],[4,1],[2,0],[1,2]],[[699,798],[-2,-1],[-2,1],[-2,2],[-1,3],[0,2],[1,0],[1,0],[1,-2],[0,-1],[1,-1],[1,-2],[2,-1]],[[699,798],[1,1],[4,1],[3,2],[6,3]],[[699,798],[-1,7],[0,3],[-1,2],[0,2]],[[679,798],[3,2],[3,1],[1,2],[2,1]],[[831,799],[1,3],[0,1],[0,6],[0,4],[0,4],[1,4],[1,2]],[[440,800],[4,3],[3,4]],[[474,800],[0,2],[2,2],[3,3]],[[833,800],[2,-3],[4,0],[2,0],[2,-2],[1,-1]],[[880,802],[-3,4],[-2,2],[-2,2],[-2,3],[-3,2],[-2,1],[-4,3],[0,1]],[[687,804],[3,3],[4,2],[2,3],[1,0]],[[609,805],[1,1],[0,-1],[2,1],[2,0],[3,-1],[2,0],[1,-1],[2,2],[2,0],[2,0],[4,3],[5,4],[3,4],[3,2],[5,5],[2,3],[2,3],[1,5],[1,3]],[[862,805],[0,0]],[[862,805],[9,0],[4,-2],[3,-1],[2,0]],[[862,805],[-1,3],[1,3],[0,5],[0,4]],[[713,805],[2,2],[2,1],[2,0]],[[590,806],[3,-6],[2,-4],[2,-3],[2,-4],[0,-3]],[[785,807],[3,-1],[3,1]],[[785,807],[2,3],[1,2],[0,2],[1,2]],[[791,807],[4,0],[3,4],[3,3]],[[791,807],[2,5],[1,3]],[[730,807],[-2,-2],[-1,-2],[-1,-1],[-3,0],[-2,-1],[-2,-2],[-1,-2],[-1,-1],[0,-1],[1,-6],[1,-4],[0,-2]],[[730,807],[0,0]],[[608,807],[-5,3],[-7,5],[-3,2],[-6,4],[-1,1],[-3,1],[-4,2],[-6,2],[-2,0],[1,-6],[1,-5],[1,-7],[1,-3]],[[608,807],[2,8],[1,3],[2,4],[2,4],[2,2],[3,1],[3,4]],[[774,807],[2,-1],[3,0],[3,1],[2,0],[1,0]],[[774,807],[1,14]],[[479,807],[-4,4],[-3,3],[-5,4],[-1,1]],[[730,807],[4,2],[3,-1],[2,-2],[1,0],[1,1],[2,1],[1,1],[1,0],[1,0]],[[719,808],[1,0],[3,-1],[5,0],[2,0]],[[719,808],[5,8],[1,3]],[[746,809],[5,3]],[[759,810],[-2,-4],[-2,-7],[-3,4],[-2,3],[-4,3]],[[759,810],[2,2],[2,2],[2,-1]],[[759,810],[2,4],[0,4],[-1,4]],[[812,810],[3,-1],[2,-1],[2,-1],[2,-2],[3,0],[3,1],[4,-7]],[[850,811],[6,-11],[3,-4],[4,-2]],[[850,811],[1,-1],[2,0],[3,-3],[2,-1],[3,-1],[1,0]],[[850,811],[-2,0],[-2,2],[-2,1],[-1,0],[-1,-1],[-2,0],[-2,1],[-1,2],[-3,7]],[[751,812],[3,0],[4,-1],[1,-1]],[[751,812],[2,4],[1,3],[0,4]],[[697,812],[3,3],[2,2],[2,5],[2,1],[2,3],[2,2],[1,4]],[[767,813],[3,-2],[4,-4]],[[767,813],[3,1],[2,2],[2,3],[1,2]],[[767,813],[0,4],[-1,3],[-1,2],[0,4],[0,5],[1,5]],[[765,813],[2,0]],[[429,813],[3,-4],[3,-3],[2,-1],[3,-5]],[[801,814],[4,0],[2,-1],[1,0],[2,-2],[2,-1]],[[801,814],[-4,0],[-2,0],[-1,1]],[[794,815],[1,6],[1,5]],[[422,816],[-2,-3],[-2,-8],[-1,-5],[-2,-13],[-1,-13],[-1,-5],[0,-5]],[[422,816],[2,0],[2,0],[1,-2],[2,-1]],[[742,816],[1,0],[1,-2],[1,-1],[1,-2],[0,-2]],[[742,816],[2,3],[2,3],[1,2],[2,4],[0,2],[1,3]],[[789,816],[3,-1],[2,0]],[[789,816],[0,4],[0,2],[1,3]],[[462,817],[4,2]],[[462,817],[-1,2],[1,3]],[[466,819],[3,0],[4,1],[2,0]],[[466,819],[-4,3]],[[725,819],[1,8]],[[725,819],[5,7],[1,3],[2,2]],[[489,819],[0,-2],[0,-3],[1,-6],[0,-2],[-1,-3],[-1,-1],[1,-2],[1,-3],[3,-7],[2,-7]],[[489,819],[-2,1],[-2,-1],[-3,1],[-3,0],[-2,1],[-2,-1]],[[489,820],[0,-1]],[[863,820],[2,0],[2,5],[2,9],[1,2]],[[862,820],[2,4],[-1,3],[0,6]],[[475,820],[4,-10],[1,-3],[-1,0]],[[475,820],[-3,7]],[[775,821],[2,-3],[3,-1],[2,-1],[3,0],[4,1],[0,-1]],[[775,821],[0,3]],[[760,822],[3,-6],[2,-3]],[[462,822],[0,2],[3,0],[6,2],[1,1]],[[462,822],[-1,3],[1,3],[2,3],[1,4]],[[834,823],[2,-1],[2,-2],[3,-3],[3,0],[3,2],[2,0],[3,-1],[3,0],[3,-1],[2,1],[2,2]],[[834,823],[-4,-1],[-5,1],[-4,1],[-1,0]],[[754,823],[-1,4],[-2,3],[-1,3]],[[775,824],[2,0],[2,2],[2,1],[1,-1]],[[775,824],[2,5],[0,2],[0,5],[-1,6]],[[850,824],[-3,2],[0,2],[0,2],[0,2],[0,2]],[[820,824],[-4,0],[-4,-3],[-2,-2],[-2,0],[-1,-1],[-3,-1],[-2,-2],[-1,-1]],[[820,824],[0,1]],[[790,825],[5,1],[1,0]],[[427,825],[1,-7],[1,-5]],[[427,825],[2,3],[2,1],[1,2],[2,3],[4,3],[3,2],[0,1],[6,4],[5,-1]],[[804,826],[-1,-2],[-1,-3],[0,-3],[-1,-3],[0,-1]],[[804,826],[2,4],[1,1],[1,1]],[[491,826],[-1,-2],[-1,-5]],[[796,826],[0,7],[1,1]],[[796,826],[2,0],[2,2],[1,0],[3,-2]],[[900,826],[2,-4],[1,-3],[1,-2],[4,1],[3,2],[1,0]],[[782,826],[3,1],[3,-1],[2,-1]],[[472,827],[-2,2],[-2,2],[-1,3],[-2,1]],[[472,827],[4,2],[6,8],[4,4]],[[726,827],[2,2],[3,1],[2,1]],[[726,827],[0,7],[0,6]],[[836,827],[0,1]],[[836,828],[0,0]],[[836,828],[3,1],[2,2],[2,2],[3,1],[1,1]],[[836,828],[2,10],[1,8],[2,9],[1,5],[0,3]],[[886,829],[3,-1],[1,0]],[[886,829],[-3,0],[-2,2],[-2,2],[-2,1]],[[733,831],[2,0]],[[810,831],[-2,-3],[-2,0],[-1,-2],[-1,0]],[[810,831],[2,0],[5,-2],[2,0],[3,0],[4,-2],[3,-1],[5,-3]],[[735,831],[-5,-24]],[[735,831],[2,-6],[0,-6],[4,-2],[1,-1]],[[735,831],[0,0]],[[735,831],[2,5]],[[735,831],[-3,2],[-1,1],[-3,3],[-2,3]],[[711,832],[1,-4],[0,-3],[0,-4],[0,-5],[0,-5],[1,-6]],[[711,832],[4,-3],[3,-1],[3,0],[4,-1],[1,0]],[[808,832],[2,-1]],[[808,832],[1,3],[3,4]],[[863,833],[4,1],[3,2]],[[750,833],[-1,1],[0,1]],[[723,833],[3,-6]],[[625,834],[5,4],[4,0],[6,1],[2,0]],[[877,834],[0,0]],[[877,834],[-1,0],[-2,0],[-2,2],[-2,0]],[[870,836],[1,2],[2,1],[2,2]],[[797,834],[3,1],[1,0],[4,-1],[3,-2]],[[709,834],[2,-2]],[[847,834],[4,-1],[4,1],[6,-1],[2,0]],[[847,834],[0,1]],[[847,835],[0,2],[1,7]],[[749,835],[-2,-2],[-3,-1],[-4,1],[-3,-2],[-1,0],[-1,0]],[[755,835],[0,-3],[0,-5],[-1,-4]],[[755,835],[3,-3],[1,-2],[1,-3],[0,-5]],[[755,835],[0,9]],[[465,835],[-1,9]],[[737,836],[1,-1],[8,-1],[3,1]],[[737,836],[0,1],[1,5],[1,4],[-1,2]],[[791,836],[0,-3],[0,-3],[0,-3],[-1,-2]],[[791,836],[2,-1],[2,0],[2,-1]],[[870,836],[0,-6],[0,-4],[1,-5],[4,-6],[1,-3],[1,-1],[0,-1],[1,-2],[1,-3],[0,-1],[1,-2]],[[814,836],[-4,-5]],[[543,836],[3,-9],[3,-6],[2,-5],[3,-5],[1,-4]],[[885,837],[-2,3],[-1,3],[0,2],[-2,3]],[[783,837],[0,-6],[-1,-3],[0,-2]],[[783,837],[5,0],[3,-1]],[[652,838],[1,1],[-7,0],[-4,0]],[[652,838],[4,-1],[4,2],[7,6],[7,3]],[[642,839],[0,7],[0,3],[1,9],[0,6],[0,3],[0,3],[5,-5],[3,-4],[3,-3],[3,-3],[2,0],[5,3],[7,3],[5,3],[2,1]],[[726,840],[4,-1],[2,0],[4,-3],[1,0]],[[486,841],[-1,4],[-3,3],[-3,3],[-2,7],[-1,2],[0,5],[-1,6],[0,4]],[[875,841],[2,-1],[0,-1],[2,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[2,-3]],[[875,841],[0,1],[4,4],[1,2]],[[486,841],[2,-7],[2,-4],[0,-1],[1,-3]],[[776,842],[2,-1],[2,-1],[2,-2],[1,-1]],[[776,842],[0,4],[-1,3],[0,7],[1,3]],[[842,843],[0,-1],[-1,-2],[0,-2],[0,-2],[-2,-2],[-1,-1],[-1,-1],[0,-2],[-1,-2]],[[842,843],[1,0],[2,1],[2,0],[1,0]],[[409,843],[1,-3],[4,-4],[4,-2],[4,-1],[4,-5],[1,-3]],[[409,843],[3,6],[3,6],[0,7],[0,7],[0,3],[0,17],[0,13],[-2,8],[-1,4],[-1,2],[-4,9],[-3,6],[-3,3],[-2,5],[-3,3],[-8,3],[-4,2],[-7,0],[-6,0],[-3,1]],[[452,843],[1,-6],[1,-6],[2,-5],[4,-4],[2,0]],[[452,843],[1,1]],[[453,844],[1,3],[0,4],[0,4],[0,4],[0,2],[0,3],[-2,3],[-1,1]],[[453,844],[2,6],[1,4],[3,7],[4,6],[9,8],[3,2]],[[464,844],[6,0],[2,-1],[2,0],[3,0],[3,-1],[2,0],[4,-1]],[[464,844],[-6,0],[-3,1],[-2,-1]],[[848,844],[2,-2],[4,0],[2,0],[1,1],[3,2],[4,3],[1,-1]],[[848,844],[2,4],[0,1],[0,1]],[[839,845],[2,-2],[1,0]],[[738,848],[0,1],[-5,3],[-4,1],[-5,1],[-6,-1],[-4,-2],[-1,-3],[2,0],[4,-2],[3,-3],[3,-3],[0,4],[0,2],[-1,5]],[[738,848],[5,2],[5,2],[4,0],[2,-1],[3,-1],[2,1],[2,1],[3,3],[4,5],[-1,-6],[0,-3],[-1,-10],[0,-5]],[[766,836],[2,-1],[2,-5],[1,-6],[0,-3],[-4,-8]],[[865,848],[0,6],[0,2]],[[674,848],[1,0],[8,5]],[[674,848],[2,9],[2,8]],[[880,848],[2,1],[2,-1],[1,1],[3,2]],[[880,848],[-3,3],[-4,3],[-3,5]],[[866,850],[2,-2],[2,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[850,850],[1,4],[2,10],[0,2],[0,5]],[[760,851],[-2,-7],[-1,-3],[-1,-2],[0,-2],[-1,-2]],[[904,851],[2,4],[1,3],[0,3],[1,5],[0,4]],[[683,853],[0,-1],[2,-1]],[[837,853],[-1,0],[-2,5],[-2,5],[-1,4],[0,4],[-1,3],[0,3],[1,4],[2,3],[1,6],[1,3],[2,4]],[[865,856],[-4,-1],[-4,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1]],[[901,856],[-1,5],[-1,4],[-2,3],[0,5],[-1,8]],[[776,859],[2,0],[3,0]],[[776,859],[1,4],[1,3]],[[870,859],[-2,3],[-1,1]],[[870,859],[0,4],[-1,3],[0,4],[1,1]],[[781,859],[3,-3],[2,-3],[1,-2],[2,-1],[1,0],[2,0],[-1,4],[0,3],[1,4],[0,6],[-1,3]],[[768,859],[4,0],[4,0]],[[586,860],[3,-5],[2,-5],[1,-8],[1,-3],[6,-12],[3,-6]],[[866,862],[-1,-5],[0,-1]],[[842,863],[0,-4],[1,-5],[0,-3],[0,-2],[-1,-6]],[[867,863],[-1,0]],[[678,865],[3,2],[5,1],[6,2],[2,0]],[[778,866],[2,-4],[1,-3]],[[778,866],[0,1]],[[778,866],[-1,0],[3,12],[0,1]],[[845,869],[2,2],[0,4],[0,3],[0,3],[0,4],[-1,2],[0,2],[1,2],[1,1],[2,-3],[2,-3],[1,-2],[2,-1],[1,-3]],[[908,870],[2,-4],[2,-2],[3,-1]],[[908,870],[-3,4],[-5,7],[-3,2]],[[694,870],[-1,-2],[-2,-4],[-1,-4],[-2,-2],[-3,-4],[-2,-1]],[[791,870],[2,-4],[3,-4],[1,-5],[1,-4],[0,-3],[0,-4],[-1,-5],[0,-5],[0,-2]],[[791,870],[0,4],[0,3],[-1,2],[-1,2],[-1,3]],[[853,871],[2,-1],[2,0],[3,1],[2,1],[1,0]],[[853,871],[1,2],[1,2],[0,1],[0,3],[1,1]],[[870,871],[2,5],[1,5],[0,3],[1,4],[-1,2],[1,2],[1,2],[1,2],[2,3],[2,3],[0,1]],[[863,872],[4,-9]],[[863,872],[6,0],[1,-1]],[[698,873],[-3,-1],[-1,-2]],[[919,873],[0,0]],[[919,873],[-1,3],[-1,4],[-1,3],[0,5],[0,4],[-1,2]],[[919,873],[-4,6],[-2,5],[-2,2],[-1,1],[-2,1],[-2,3],[0,1],[1,3],[0,1]],[[0,874],[8,-10],[8,-4],[5,-1],[3,2],[4,1],[3,2],[4,0],[2,2],[2,0],[4,-2],[3,-3],[2,-1],[3,-2],[4,-1],[2,-1],[3,-2],[3,-1],[2,0],[4,1],[4,4],[3,1],[3,2],[4,5],[3,2],[4,-4],[2,-2],[4,-1],[2,0],[2,-3],[2,-5],[3,-6],[2,0],[3,-7],[1,-6],[2,-3],[2,-1],[1,-4],[4,-2],[3,0],[3,1],[3,-5],[0,-3],[4,-3],[0,-6],[3,-5],[1,-4],[2,-5],[2,-3],[1,-4],[6,-8],[4,-2],[4,-5],[8,-8],[6,-9],[5,-3],[5,-5],[2,-3],[7,-3],[3,2],[6,-2],[8,-6],[6,-7],[3,1],[7,-4],[10,-2],[7,-6],[4,-5],[2,-6],[5,-4],[6,-2],[10,-5],[5,-10],[9,-18],[5,-10],[4,-7],[6,-3],[3,-4],[6,-4],[9,-7]],[[475,875],[-4,-8],[-2,-8],[-3,-10],[-2,-5]],[[475,875],[0,2]],[[883,877],[2,5],[0,4],[-1,4],[-1,7],[-2,3],[-1,3]],[[475,877],[1,1]],[[476,878],[0,0]],[[476,878],[-1,-3]],[[476,878],[3,-10],[5,-6],[4,-3]],[[476,878],[5,-1],[7,0],[3,0]],[[476,878],[1,2],[1,4],[1,2],[0,6],[0,3],[1,6],[1,3],[2,3],[1,3],[2,6]],[[780,879],[1,3],[1,3]],[[780,879],[-1,4],[-2,4]],[[856,880],[1,1],[1,1],[2,1],[2,0]],[[896,881],[-2,-2],[-2,0],[-1,-2],[-2,-2],[-1,-3],[0,-1]],[[897,883],[-1,-2]],[[897,883],[2,4]],[[862,883],[0,-3],[0,-2],[1,-1],[0,-2],[0,-3]],[[782,885],[2,3]],[[930,886],[3,4],[0,1],[2,1],[2,0],[3,2],[1,1],[3,0],[2,1],[2,1]],[[902,887],[1,-3],[5,-5],[4,-3],[4,-2],[3,-1]],[[902,887],[0,4],[3,3],[2,2]],[[899,887],[3,0]],[[784,888],[3,-2],[1,-2]],[[784,888],[0,3],[2,3],[2,4]],[[864,890],[0,-3],[-1,-2],[-1,-2]],[[864,890],[3,3],[1,0],[2,2]],[[864,890],[1,4],[-1,4]],[[920,891],[-1,5],[0,3],[0,2]],[[695,894],[0,-4],[0,-5],[1,-7],[2,-4]],[[873,894],[-3,1]],[[777,894],[2,-1],[1,-2],[1,-1],[1,-4],[0,-1]],[[870,895],[-3,2],[-3,1]],[[907,896],[0,1],[2,2],[4,1],[2,1],[2,0],[2,0]],[[948,897],[1,0]],[[948,897],[-1,2],[0,2],[0,1],[2,3],[0,4],[0,2],[0,2]],[[838,897],[0,10]],[[788,898],[1,-5],[-1,-4],[0,-4],[0,-1]],[[788,898],[-1,9],[0,3],[1,3],[2,5],[2,4]],[[864,898],[-2,4]],[[919,901],[2,1],[3,0],[2,1]],[[919,901],[1,8],[3,9],[2,2],[3,1],[2,0]],[[862,902],[2,7],[0,4],[1,4],[2,1],[1,1]],[[880,903],[3,-1],[7,0],[1,-2],[0,-2],[0,-2],[1,-2],[0,-1],[1,-1],[2,1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1]],[[880,903],[0,2],[0,1],[1,1],[2,1],[3,4]],[[926,903],[0,0]],[[926,903],[5,2]],[[931,905],[3,-3],[2,-1],[1,-1],[2,0],[2,0],[1,-1],[0,-1],[1,-1],[2,-1],[1,1],[1,0],[1,0]],[[931,905],[1,4],[1,2],[1,5],[1,4],[-1,2],[-1,2],[0,2]],[[931,905],[2,1],[1,4],[2,2],[3,3],[3,2],[4,6],[1,2],[3,1],[3,2],[2,1]],[[838,907],[2,-5],[2,-1],[-1,-4],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-4],[0,-2],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2]],[[838,907],[1,2],[-1,3],[-1,1],[0,2],[1,2],[1,3],[0,3]],[[872,910],[-3,-1],[-3,-2],[-2,-3],[-2,-2]],[[794,912],[-1,-3],[-1,-1],[0,-3],[-1,-4],[-2,-3],[-1,0]],[[794,912],[3,3],[1,1]],[[848,913],[1,2],[2,3],[1,1],[1,1],[2,-1],[1,0],[1,0],[1,0],[2,2],[1,2],[1,0],[1,1],[1,1],[2,2],[1,1],[2,1],[1,0]],[[949,913],[-3,-2],[-3,-1],[-1,0],[-3,-2],[-3,-2],[-4,-1],[-1,0]],[[949,913],[1,3],[1,2],[2,2],[1,4],[1,3],[0,2]],[[954,913],[1,4],[2,5],[0,3],[-1,4]],[[885,915],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-1,0],[-2,1],[0,-1],[-2,0],[-1,0],[-2,2]],[[798,916],[4,3],[1,1],[1,0],[2,-2],[1,0],[1,-1],[3,4],[3,4],[2,1],[3,4]],[[922,917],[3,-4],[3,-5],[2,-3]],[[445,918],[5,-6],[4,-6],[4,-7],[8,-8],[6,-6],[2,-5],[2,-2]],[[868,919],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,-3]],[[930,921],[3,5]],[[792,922],[2,-5],[0,-4],[0,-1]],[[792,922],[2,-1],[2,-3],[1,-1],[1,-1]],[[792,922],[2,1],[2,3],[2,2],[1,1],[1,0],[1,-2],[1,-1],[3,2],[2,3],[0,2],[1,1],[1,2],[2,-1],[2,0],[2,1],[2,-1],[1,-1],[1,-1],[4,0],[1,0],[1,-1]],[[839,923],[0,3],[1,3],[1,2],[1,3],[1,3],[0,1],[-6,-2],[-4,-3],[-4,0],[-4,-1]],[[933,926],[6,2],[5,2],[4,1],[5,0],[2,-1]],[[985,929],[-3,-1],[-2,-1],[-2,-1],[0,-1],[-4,0],[-1,0],[-2,-1],[-3,1],[-2,-1],[-3,-1],[-2,1],[-2,0],[0,2],[-2,1],[0,1],[-1,1]],[[929,929],[1,-8]],[[870,929],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-3],[0,-1]],[[870,929],[1,2],[1,2],[2,2]],[[956,929],[-1,0]],[[956,929],[-1,1]],[[956,929],[0,0]],[[955,930],[0,-1]],[[955,930],[1,4],[2,4]],[[825,932],[3,-1],[4,-1],[3,-2],[2,-2],[1,-2],[1,-1]],[[957,932],[0,-2],[-1,-1]],[[957,932],[0,1]],[[957,933],[0,0]],[[992,934],[-2,-2],[-2,-2],[-3,-1]],[[363,935],[2,-1],[1,-3],[3,-2],[3,-5],[5,-4],[4,-3],[3,-3],[4,-2],[4,-2],[2,-6],[0,-7],[3,-6],[3,-3],[3,-4],[3,-4],[1,-7],[1,-13],[0,-5],[0,-6],[1,-6]],[[363,936],[-1,1],[-1,3]],[[361,940],[-1,6],[-1,4],[-1,2],[-2,3],[-3,2],[-1,2],[-3,2],[-4,0],[-3,0],[-1,1],[-1,3],[0,4],[0,5],[-1,4],[-1,3],[1,5],[1,4],[0,3],[0,6]],[[995,955],[2,-1],[2,-2],[0,-5],[-1,-3],[-1,-2],[-1,0],[-1,-3],[-2,-3],[-1,-2]],[[978,993],[-2,-2],[-2,-5],[0,-6],[-2,-4],[-2,-4],[-3,-5],[-1,-3],[0,-2],[-1,-2],[-2,-2],[-2,-1],[0,-2],[-1,-2],[1,-2],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-2],[-1,-1],[-1,-1]]],"transform":{"scale":[0.04105852534238236,0.020325876741422062],"translate":[-107.99105269882295,25.92291148058041]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment