Trivariate choropleth map from the Pop vs Soda Page
CC-BY Alan McConchie (@mappingmashups)
The original code is here (and it's really really old)
Built with blockbuilder.org
license: mit |
Trivariate choropleth map from the Pop vs Soda Page
CC-BY Alan McConchie (@mappingmashups)
The original code is here (and it's really really old)
Built with blockbuilder.org
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script> | |
<script src="//d3js.org/queue.v1.min.js"></script> | |
<script src="//d3js.org/topojson.v0.min.js"></script> | |
<style type="text/css"> | |
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
.landshadow { | |
fill: none; | |
stroke: #ccc; | |
stroke-width: 4px; | |
stroke-linejoin: round; | |
} | |
.states { | |
fill: none; | |
stroke: #fff; | |
stroke-linejoin: round; | |
} | |
.counties { | |
fill: #fff; | |
} | |
#map-container { | |
height: 500px; | |
width: 1500px; | |
text-align: center; | |
position: relative; | |
} | |
#d3map { | |
display: block; | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="map-container"> | |
<!-- the D3 map will be rendered here --> | |
<svg id="d3map"></svg> | |
</div> | |
<div id="tabs"> | |
<ul> | |
<li> | |
<a href="#tabs-1">Cyan/Magenta/Yellow</a> | |
</li> | |
<li> | |
<a href="#tabs-2">Red/Green/Blue</a> | |
</li> | |
<li> | |
<a href="#tabs-3">Black and White</a> | |
</li> | |
</ul> | |
<div id="tabs-1"> | |
<ul> | |
<li id="cmykbutton"> show all </li> | |
<li id="cmykpopbutton"> pop </li> | |
<li id="cmyksodabutton"> soda </li> | |
<li id="cmykcokebutton"> coke </li> | |
<li id="cmykotherbutton"> other </li> | |
</ul> | |
</div> | |
<div id="tabs-2"> | |
<ul> | |
<li id="rgbbutton"> show all </li> | |
<li id="rgbpopbutton"> pop </li> | |
<li id="rgbsodabutton"> soda </li> | |
<li id="rgbcokebutton"> coke </li> | |
<li id="rgbotherbutton"> other </li> | |
</ul> | |
</div> | |
<div id="tabs-3"> | |
<ul> | |
<li class="not_avail"> show all </li> | |
<li id="bwpopbutton"> pop </li> | |
<li id="bwsodabutton"> soda </li> | |
<li id="bwcokebutton"> coke </li> | |
<li id="bwotherbutton"> other </li> | |
</ul> | |
</div> | |
</div> | |
<script type="application/javascript"> | |
// Create some scales for univariate modes | |
var bwscale = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "black"]); | |
var cmykpop = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "yellow"]); | |
var cmyksoda = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "cyan"]); | |
var cmykcoke = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "magenta"]); | |
var rgbpop = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "lime"]); // Note, #OOFFOO is not "green" | |
var rgbsoda = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "blue"]); | |
var rgbcoke = d3.scale.linear() | |
.domain([0, 1]) | |
.range(["white", "red"]); | |
// Ideally, I would rewrite these as a d3.scale.trivariate() plugin. | |
// Although, this is a misnomer for two reasons: | |
// First, the three different variables are not independent. | |
// Second, the PVS encodes other (a 4th possible value) | |
// as black, in both the "rgb" and "cmyk" modes. | |
function cmyk(d) { | |
if (d.PCTPOP == 0 && d.PCTSODA == 0 && d.PCTCOKE == 0 && d.PCTOTHER == 0) { | |
return "white"; | |
} else { | |
return "rgb(" | |
+ Math.round((d.PCTPOP + d.PCTCOKE) * 100) + "%," | |
+ Math.round((d.PCTSODA + d.PCTPOP) * 100) + "%," | |
+ Math.round((d.PCTCOKE + d.PCTSODA) * 100) + "%)"; | |
} | |
} | |
function rgb(d) { | |
if (d.PCTPOP == 0 && d.PCTSODA == 0 && d.PCTCOKE == 0 && d.PCTOTHER == 0) { | |
return "white"; | |
} else { | |
return "rgb(" | |
+ Math.round(d.PCTCOKE * 100) + "%," | |
+ Math.round(d.PCTPOP * 100) + "%," | |
+ Math.round(d.PCTSODA * 100) + "%)"; | |
} | |
} | |
var path = d3.geo.path() | |
.projection(d3.geo.albersUsa().translate([400,250]).scale(800)); | |
var svg = d3.select("#d3map"); | |
// The d3_hexbinAngles and hexagon function are (obviously) | |
// borrowed from https://github.com/d3/d3-plugins/tree/master/hexbin | |
var d3_hexbinAngles = d3.range(0, 2 * Math.PI, Math.PI / 3); | |
function hexagon(radius) { | |
if (arguments.length < 1) { | |
// This is where I should calculate the correct radius | |
// based on the number of divisions in the overall triangle... but then | |
// the hexagon would have to be linked to the legend | |
// somehow. | |
radius = 8; | |
} | |
var x0 = 0, y0 = 0; // create shape centered at 0,0 | |
var points = d3_hexbinAngles.map(function(angle) { | |
var x1 = Math.sin(angle) * radius, | |
y1 = -Math.cos(angle) * radius, | |
dx = x1 - x0, | |
dy = y1 - y0; | |
// I'm not sure why this line is in the hexbin code, | |
// but it was breaking my hexagons, and they work fine | |
// without it: | |
//x0 = x1, y0 = y1; | |
return [dx, dy]; | |
}); | |
return "M" + points.join("L") + "z"; | |
} | |
function rectangle(height, width) { | |
if (arguments.length < 2) { | |
// This is where I should calculate the correct size | |
// based on the number of division in the overall triangle... but then | |
// the rectangle would have to be linked to the legend | |
// somehow. | |
width = 8; | |
height = 8; | |
} | |
halfwidth = width / 2; | |
halfheight = height / 2; | |
var x0 = 0, y0 = 0; // create shape centered at 0,0 | |
var points = [ | |
[x0 - halfwidth, y0 - halfheight], | |
[x0 + halfwidth, y0 - halfheight], | |
[x0 + halfwidth, y0 + halfheight], | |
[x0 - halfwidth, y0 + halfheight] | |
]; | |
return "M" + points.join("L") + "z"; | |
} | |
function triangle(x, y, height) { | |
// Create the svg text representation of an equilateral triangle. | |
// Unlike the shapes above, do not create this centered on 0,0. | |
// The x and y are the coordinates of the top of the triangle. | |
x = x; | |
y = y; | |
dy = height + 1; // 1 pixel padding so shapes overlap a little | |
dx = dy / Math.sqrt(3); | |
var points = [ | |
[x, y], | |
[x + dx, y + dy], | |
[x - dx, y + dy] | |
]; | |
return "M" + points.join("L") + "z"; | |
} | |
function upsidedown_triangle(x, y, height) { | |
// Create the svg text representation of an equilateral triangle. | |
// Unlike the shapes above, do not create this centered on 0,0. | |
// The x and y are the coordinates of the center of the top of the triangle. | |
x = x; | |
y = y; | |
dy = height; | |
dx = dy / Math.sqrt(3); | |
var points = [ | |
[x - dx, y], | |
[x + dx, y], | |
[x, y + dy] | |
]; | |
return "M" + points.join("L") + "z"; | |
} | |
function trivariate_legend(startx, starty, width, count) { | |
// Create a one-dimensional array storing the elements | |
// of a trivariate legend (represented as an equilateral triangle). | |
// Returns the array, suitable for joining with a svg. | |
// Note: count is # of divisions. # of swatches will be count + 1. | |
// startx and starty are the upper left corner of the triangle's | |
// bounding box. Width is the width of the triangle's bounding box. | |
// (Technically, the bounding box of the swatch centers.) | |
// The x and y coordinates of the center of each swatch is stored | |
// in each array element. The caller of this function is responsible | |
// for creating svg symbols at those points (circles, hexagons, etc) | |
make_triangle = true; | |
array = new Array(); | |
id = 0; | |
xstep = width / count; | |
ystep = Math.sqrt(3) * xstep / 2; | |
// Create the rows | |
for (var i = 0; i <= count; i++) { | |
// Create the columns | |
// (1st column has 1 row, 2nd column has 2 rows, etc) | |
for (var j = 0; j <= i; j++ ) { | |
x = startx + j * xstep + width / 2 - i * xstep / 2; | |
y = starty + i * ystep; | |
shape = triangle(x, y, ystep); | |
array.push( | |
{ | |
x: x, | |
y: y, | |
i: i, | |
j: j, | |
PCTSODA: (count - i) / count, | |
PCTPOP: (i - j) / count, | |
PCTCOKE: (j) / count, | |
PCTOTHER: 0, | |
id: id++, | |
shp: shape | |
} | |
); | |
if (j > 0) { | |
x = startx + j * xstep + width / 2 - i * xstep / 2 - xstep / 2; | |
y = starty + i * ystep; | |
shape = upsidedown_triangle(x, y, ystep); | |
array.push( | |
{ | |
x: x, | |
y: y, | |
i: i, | |
j: j, | |
PCTSODA: (count - i) / count, | |
PCTPOP: (i - j + 0.5) / count, | |
PCTCOKE: (j - 0.5) / count, | |
PCTOTHER: 0, | |
id: id++, | |
shp: shape | |
} | |
); | |
} | |
} | |
} | |
return array; | |
} | |
function univariate_legend(startx, starty, height, width, count) { | |
// Create a one-dimensional array storing the elements | |
// of a univariate legend (represented as a series of adjoining squares). | |
// Returns the array, suitable for joining with a svg. | |
// Note: count is # of divisions. # of swatches will be count + 1. | |
// startx and starty are the upper left corner of the legend's | |
// bounding box. Width is the width of the legend's bounding box. | |
// The x and y coordinates of the center of each swatch is stored | |
// in each array element. The caller of this function is responsible | |
// for creating svg symbols at those points (squares, etc) | |
// | |
// The more appropriate d3/svg method for a univariate legend | |
// (I think) would be to create a line with the appropriate | |
// thickness to give the impression of a row of squares. But | |
// here I want the squares to be consistent with the color | |
// swatches in the trivariate legend. | |
array = new Array(); | |
id = 0; | |
xstep = width / count; | |
// Create the rows | |
for (var i = 0; i <= count; i++) { | |
array.push( | |
{ | |
x: startx + i * xstep, | |
y: starty, | |
i: i, | |
PCTSODA: 0, | |
PCTPOP: 0, | |
PCTCOKE: 0, | |
PCTOTHER: i / count, | |
id: id++ | |
} | |
); | |
} | |
return array; | |
} | |
// Parameters for the trivariate legend | |
var x = 660, | |
y = 400, | |
width = 60, | |
count = 10; | |
tri_legend_g = svg.append("g") | |
.attr("class", "legend"); | |
// Add a drop shadow for the trivariate legend | |
tri_legend_g.append("path") | |
// These calculations are a complete mess because I am calculating all my triangles | |
// in different ways. Need to make these more coherent. | |
.attr("d", triangle(x + width / 2, y, 1 + Math.sqrt(3) * (width + count / 2) / 2)) | |
.attr("class", "landshadow"); | |
tri_legend_data = trivariate_legend(x, y, width, count); | |
// Select (and create) swatch class. | |
// Do this instead of selectAll("path") to avoid binding data to the shadow path | |
tri_legend_svg = tri_legend_g.selectAll(".swatch") | |
.data(tri_legend_data) | |
.enter().append("path") | |
.attr("d", function(d) { return d.shp }) | |
.style("fill", function(d) { | |
return cmyk(d); | |
}) | |
var spacing = 10; | |
corner_labels = [ | |
{ | |
label: "pop", | |
x: x-spacing, | |
y: y+width+spacing | |
}, | |
{ | |
label: "soda", | |
x: x+width/2, | |
y: y-spacing | |
}, | |
{ | |
label: "coke", | |
x: x+width+spacing, | |
y: y+width+spacing | |
} | |
]; | |
tri_legend_g.selectAll("text") | |
.data(corner_labels) | |
.enter().append("text") | |
.attr("text-anchor", "middle") | |
.attr("x", function(d) { return d.x }) | |
.attr("y", function(d) { return d.y }) | |
.attr("font-size", "10px") | |
.attr("transform", function(d) { return "translate(" + -56 + "," + -50 + ")" }) // why are they shifted? | |
.text(function(d) { return d.label }); | |
// Parameters for the univariate legend | |
var x = 550, | |
y = 452, | |
width = 60, | |
height = 10, | |
count = 20; | |
uni_legend_g = svg.append("g") | |
.attr("class", "legend"); | |
// Add a drop shadow for the univariate legend | |
uni_legend_g.append("path") | |
.attr("transform", "translate(" + ( x + width / 2 ) + "," + y + ")") | |
.attr("d", rectangle( 1 + height, 2 + width )) | |
.attr("class", "landshadow"); | |
uni_legend_data = univariate_legend(x, y, height, width, count); | |
// Select (and create) swatch class. | |
// Do this instead of selectAll("path") to avoid binding data to the shadow path | |
uni_legend_svg = uni_legend_g.selectAll(".swatch") | |
.data(uni_legend_data) | |
.enter().append("path") | |
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")" }) | |
// Add 1 just to pad the hexagons a bit so they blend | |
.attr("d", rectangle( 1 + height, 1 + width/count )) | |
.style("fill", function(d) { | |
return bwscale(d.PCTOTHER); | |
}); | |
uni_labels = [ | |
{ | |
label: "other", | |
x: x+width/2, | |
y: y+spacing+10 | |
} | |
]; | |
uni_legend_label = uni_legend_g.selectAll("text") | |
.data(uni_labels) | |
.enter().append("text") | |
.attr("text-anchor", "middle") | |
.attr("x", function(d) { return d.x }) | |
.attr("y", function(d) { return d.y }) | |
.attr("font-size", "10px") | |
.text(function(d) { return d.label }); | |
// Parameters for the no data swatch | |
var x = 490, | |
y = 452, | |
width = 20, | |
height = 9; | |
nodata_legend_g = svg.append("g") | |
.attr("class", "legend") | |
// Add a drop shadow for the no data swatch | |
nodata_legend_g.append("path") | |
.attr("transform", "translate(" + ( x + width / 2 ) + "," + y + ")") | |
.attr("d", rectangle( 1 + height, 2 + width )) | |
.attr("class", "landshadow"); | |
nodata_legend_data = new Array( | |
{ | |
PCTSODA: 0, | |
PCTPOP: 0, | |
PCTCOKE: 0, | |
PCTOTHER: 0 | |
} | |
); | |
// Select (and create) swatch class. | |
// Do this instead of selectAll("path") to avoid binding data to the shadow path | |
nodata_legend_svg = nodata_legend_g.selectAll(".swatch") | |
.data(nodata_legend_data) | |
.enter().append("path") | |
.attr("transform", "translate(" + ( x + width / 2 ) + "," + y + ")") | |
.attr("d", rectangle( 1 + height, 2 + width )) | |
.style("fill", function(d) { | |
return cmyk(d); | |
}); | |
nodata_labels = [ | |
{ | |
label: "no data", | |
x: x+width/2, | |
y: y+spacing+10 | |
} | |
]; | |
nodata_legend_g.selectAll("text") | |
.data(nodata_labels) | |
.enter().append("text") | |
.attr("text-anchor", "middle") | |
.attr("x", function(d) { return d.x }) | |
.attr("y", function(d) { return d.y }) | |
.attr("font-size", "10px") | |
.text(function(d) { return d.label }); | |
// Done creating legend | |
// Load the TopoJSON of states and the tsv of popvssoda data in parallel | |
queue() | |
.defer(d3.json, "us.json") | |
.defer(d3.tsv, "pvscounty_fips.tsv") | |
.await(ready); | |
function ready(error, us, pvscounty_fips) { | |
pvscounty_fips.forEach(function(d) { | |
d.PCTPOP = +d.PCTPOP; | |
d.PCTSODA = +d.PCTSODA; | |
d.PCTCOKE = +d.PCTCOKE; | |
d.PCTOTHER = +d.PCTOTHER; | |
}); | |
// Extract just the land from the us TopoJSON (resulting in a GeoJSON) | |
// and load that as the datum into a new SVG path. This will be the | |
// background shadow. | |
svg.append("path").datum(topojson.object(us, us.objects.land)) | |
.attr("class", "landshadow") | |
.attr("d", path); | |
var counties = svg.append("g") | |
.attr("class", "counties") | |
.selectAll("path") | |
.data(topojson.object(us, us.objects.counties).geometries) | |
.enter().append("path") | |
.attr("d", path) | |
.attr("class", "addhover"); | |
// Step through all the TopoJSON objects and add the pvs attributes | |
// to the correct one. | |
// I'm not sure if the "each" function is the ideal approach, but it works. | |
counties.each(function(d, i) { | |
var d = this.__data__; | |
for (var j = 0; j < pvscounty_fips.length; j++) { | |
var p = pvscounty_fips[j]; | |
if (d.id == p.id) { | |
// Copy the data values into the TopoJSON | |
// Must be a more efficient way of doing this. | |
d.PCTPOP = p.PCTPOP; | |
d.PCTSODA = p.PCTSODA; | |
d.PCTCOKE = p.PCTCOKE; | |
d.PCTOTHER = p.PCTOTHER; | |
d.County_Name = p.County_Name; | |
d.ENGTYPE = p.ENGTYPE; | |
d.State = p.State; | |
d.SUMPOP = p.SUMPOP; | |
d.SUMSODA = p.SUMSODA; | |
d.SUMCOKE = p.SUMCOKE; | |
d.SUMOTHER = p.SUMOTHER; | |
if (p.PCTPOP == 0 && p.PCTSODA == 0 && p.PCTCOKE == 0 && p.PCTOTHER == 0) { | |
d.NODATA = true | |
} else { | |
d.NODATA = false | |
} | |
} | |
} | |
}); | |
// Start out by filling the counties with the cmyk scheme | |
counties | |
.style("fill", function(d) { | |
return cmyk(d); | |
}).on("mouseover", function(d, i) { | |
d3.select(this).attr("stroke", "gray"); | |
}).on("mouseout", function(d, i) { | |
d3.select(this).attr("stroke", "none"); | |
}); | |
// Add the shapes of states on top, just to have outlines. | |
svg.append("path").datum(topojson.mesh(us, us.objects.states, function(a, b) { | |
return a.id !== b.id; | |
})).attr("class", "states").attr("d", path); | |
dursecs = 500; | |
// Add functions to each button | |
d3.select("#cmykbutton").on("mouseover", function() { | |
tri_legend_svg.style("fill", function(d) { return cmyk(d); }); | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 1); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("other"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 1); | |
counties.style("fill", function(d) { return cmyk(d); }); | |
}); | |
d3.select("#cmykpopbutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return cmykpop(d.PCTOTHER); }); | |
uni_legend_label.text("pop"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return cmykpop(d.PCTPOP); }); | |
}); | |
d3.select("#cmyksodabutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return cmyksoda(d.PCTOTHER); }); | |
uni_legend_label.text("soda"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return cmyksoda(d.PCTSODA); }); | |
}); | |
d3.select("#cmykcokebutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return cmykcoke(d.PCTOTHER); }); | |
uni_legend_label.text("coke"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return cmykcoke(d.PCTCOKE); }); | |
}); | |
d3.select("#cmykotherbutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("other"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return bwscale(d.PCTOTHER) }); | |
}); | |
d3.select("#rgbbutton").on("mouseover", function() { | |
tri_legend_svg.style("fill", function(d) { return rgb(d); }); | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 1); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("other"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 1); | |
counties.style("fill", function(d) { return rgb(d) }); | |
}); | |
d3.select("#rgbpopbutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return rgbpop(d.PCTOTHER); }); | |
uni_legend_label.text("pop"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return rgbpop(d.PCTPOP); }); | |
}); | |
d3.select("#rgbsodabutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return rgbsoda(d.PCTOTHER); }); | |
uni_legend_label.text("soda"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return rgbsoda(d.PCTSODA); }); | |
}); | |
d3.select("#rgbcokebutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return rgbcoke(d.PCTOTHER); }); | |
uni_legend_label.text("coke"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return rgbcoke(d.PCTCOKE); }); | |
}); | |
d3.select("#rgbotherbutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("other"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return bwscale(d.PCTOTHER) }); | |
}); | |
d3.select("#bwpopbutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("pop"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return bwscale(d.PCTPOP) }); | |
}); | |
d3.select("#bwsodabutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("soda"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return bwscale(d.PCTSODA) }); | |
}); | |
d3.select("#bwcokebutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("coke"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return bwscale(d.PCTCOKE) }); | |
}); | |
d3.select("#bwotherbutton").on("mouseover", function() { | |
tri_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
uni_legend_svg.style("fill", function(d) { return bwscale(d.PCTOTHER); }); | |
uni_legend_label.text("other"); | |
nodata_legend_g.transition().duration(dursecs).attr("opacity", 0); | |
counties.style("fill", function(d) { return bwscale(d.PCTOTHER) }); | |
}); | |
} | |
</script> | |
</body> | |
</html> |
TF | State | County_Name | FIPS_State | FIPS_County | FIPS_combo | id | ID1_GADM | NAME_ST | ID2_GADM | NAME_COU | NL_NAME | VARNAME | TYPE | ENGTYPE | SUMCOUNT | SUMPOP | SUMSODA | SUMCOKE | SUMOTHER | COUNT | PCTPOP | PCTSODA | PCTCOKE | PCTOTHER | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
TRUE | Alabama | Autauga | 01 | 001 | 01001 | 1001 | 1 | Alabama | 1 | Autauga | County | County | 19 | 0 | 5 | 13 | 1 | 4 | 0 | 0.26316 | 0.68421 | 0.05263 | |||
TRUE | Alabama | Baldwin | 01 | 003 | 01003 | 1003 | 1 | Alabama | 2 | Baldwin | County | County | 78 | 1 | 5 | 70 | 2 | 12 | 0.01282 | 0.0641 | 0.89744 | 0.02564 | |||
TRUE | Alabama | Barbour | 01 | 005 | 01005 | 1005 | 1 | Alabama | 3 | Barbour | County | County | 18 | 0 | 3 | 14 | 1 | 3 | 0 | 0.16667 | 0.77778 | 0.05556 | |||
TRUE | Alabama | Bibb | 01 | 007 | 01007 | 1007 | 1 | Alabama | 4 | Bibb | County | County | 9 | 0 | 1 | 8 | 0 | 4 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Alabama | Blount | 01 | 009 | 01009 | 1009 | 1 | Alabama | 5 | Blount | County | County | 16 | 0 | 2 | 13 | 1 | 3 | 0 | 0.125 | 0.8125 | 0.0625 | |||
TRUE | Alabama | Bullock | 01 | 011 | 01011 | 1011 | 1 | Alabama | 6 | Bullock | County | County | 10 | 0 | 9 | 1 | 0 | 1 | 0 | 0.9 | 0.1 | 0 | |||
TRUE | Alabama | Butler | 01 | 013 | 01013 | 1013 | 1 | Alabama | 7 | Butler | County | County | 9 | 0 | 2 | 7 | 0 | 1 | 0 | 0.22222 | 0.77778 | 0 | |||
TRUE | Alabama | Calhoun | 01 | 015 | 01015 | 1015 | 1 | Alabama | 8 | Calhoun | County | County | 85 | 1 | 18 | 62 | 4 | 12 | 0.01176 | 0.21176 | 0.72941 | 0.04706 | |||
TRUE | Alabama | Chambers | 01 | 017 | 01017 | 1017 | 1 | Alabama | 9 | Chambers | County | County | 11 | 0 | 2 | 9 | 0 | 4 | 0 | 0.18182 | 0.81818 | 0 | |||
TRUE | Alabama | Cherokee | 01 | 019 | 01019 | 1019 | 1 | Alabama | 10 | Cherokee | County | County | 9 | 0 | 0 | 9 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Alabama | Chilton | 01 | 021 | 01021 | 1021 | 1 | Alabama | 11 | Chilton | County | County | 16 | 0 | 2 | 12 | 2 | 6 | 0 | 0.125 | 0.75 | 0.125 | |||
TRUE | Alabama | Choctaw | 01 | 023 | 01023 | 1023 | 1 | Alabama | 12 | Choctaw | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Alabama | Clarke | 01 | 025 | 01025 | 1025 | 1 | Alabama | 13 | Clarke | County | County | 11 | 0 | 1 | 9 | 1 | 3 | 0 | 0.09091 | 0.81818 | 0.09091 | |||
TRUE | Alabama | Clay | 01 | 027 | 01027 | 1027 | 1 | Alabama | 14 | Clay | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Alabama | Cleburne | 01 | 029 | 01029 | 1029 | 1 | Alabama | 15 | Cleburne | County | County | 3 | 0 | 2 | 1 | 0 | 2 | 0 | 0.66667 | 0.33333 | 0 | |||
TRUE | Alabama | Coffee | 01 | 031 | 01031 | 1031 | 1 | Alabama | 16 | Coffee | County | County | 31 | 1 | 7 | 23 | 0 | 3 | 0.03226 | 0.22581 | 0.74194 | 0 | |||
TRUE | Alabama | Colbert | 01 | 033 | 01033 | 1033 | 1 | Alabama | 17 | Colbert | County | County | 34 | 0 | 1 | 33 | 0 | 5 | 0 | 0.02941 | 0.97059 | 0 | |||
TRUE | Alabama | Conecuh | 01 | 035 | 01035 | 1035 | 1 | Alabama | 18 | Conecuh | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Alabama | Coosa | 01 | 037 | 01037 | 1037 | 1 | Alabama | 19 | Coosa | County | County | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | Alabama | Covington | 01 | 039 | 01039 | 1039 | 1 | Alabama | 20 | Covington | County | County | 19 | 0 | 1 | 14 | 4 | 4 | 0 | 0.05263 | 0.73684 | 0.21053 | |||
TRUE | Alabama | Crenshaw | 01 | 041 | 01041 | 1041 | 1 | Alabama | 21 | Crenshaw | County | County | 3 | 0 | 0 | 2 | 1 | 2 | 0 | 0 | 0.66667 | 0.33333 | |||
TRUE | Alabama | Cullman | 01 | 043 | 01043 | 1043 | 1 | Alabama | 22 | Cullman | County | County | 44 | 1 | 3 | 39 | 1 | 9 | 0.02273 | 0.06818 | 0.88636 | 0.02273 | |||
TRUE | Alabama | Dale | 01 | 045 | 01045 | 1045 | 1 | Alabama | 23 | Dale | County | County | 26 | 1 | 5 | 19 | 1 | 6 | 0.03846 | 0.19231 | 0.73077 | 0.03846 | |||
TRUE | Alabama | Dallas | 01 | 047 | 01047 | 1047 | 1 | Alabama | 24 | Dallas | County | County | 21 | 1 | 1 | 17 | 2 | 2 | 0.04762 | 0.04762 | 0.80952 | 0.09524 | |||
TRUE | Alabama | De Kalb | 01 | 049 | 01049 | 1049 | 1 | Alabama | 25 | De Kalb | County | County | 33 | 0 | 3 | 30 | 0 | 8 | 0 | 0.09091 | 0.90909 | 0 | |||
TRUE | Alabama | Elmore | 01 | 051 | 01051 | 1051 | 1 | Alabama | 26 | Elmore | County | County | 37 | 0 | 2 | 34 | 1 | 7 | 0 | 0.05405 | 0.91892 | 0.02703 | |||
TRUE | Alabama | Escambia | 01 | 053 | 01053 | 1053 | 1 | Alabama | 27 | Escambia | County | County | 16 | 0 | 1 | 14 | 1 | 4 | 0 | 0.0625 | 0.875 | 0.0625 | |||
TRUE | Alabama | Etowah | 01 | 055 | 01055 | 1055 | 1 | Alabama | 28 | Etowah | County | County | 55 | 0 | 8 | 43 | 4 | 9 | 0 | 0.14545 | 0.78182 | 0.07273 | |||
TRUE | Alabama | Fayette | 01 | 057 | 01057 | 1057 | 1 | Alabama | 29 | Fayette | County | County | 3 | 0 | 2 | 0 | 1 | 1 | 0 | 0.66667 | 0 | 0.33333 | |||
TRUE | Alabama | Franklin | 01 | 059 | 01059 | 1059 | 1 | Alabama | 30 | Franklin | County | County | 24 | 0 | 2 | 22 | 0 | 6 | 0 | 0.08333 | 0.91667 | 0 | |||
TRUE | Alabama | Geneva | 01 | 061 | 01061 | 1061 | 1 | Alabama | 31 | Geneva | County | County | 7 | 0 | 1 | 5 | 1 | 5 | 0 | 0.14286 | 0.71429 | 0.14286 | |||
TRUE | Alabama | Greene | 01 | 063 | 01063 | 1063 | 1 | Alabama | 32 | Greene | County | County | 5 | 0 | 0 | 4 | 1 | 2 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Alabama | Hale | 01 | 065 | 01065 | 1065 | 1 | Alabama | 33 | Hale | County | County | 3 | 1 | 0 | 2 | 0 | 2 | 0.33333 | 0 | 0.66667 | 0 | |||
TRUE | Alabama | Henry | 01 | 067 | 01067 | 1067 | 1 | Alabama | 34 | Henry | County | County | 8 | 0 | 1 | 7 | 0 | 4 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Alabama | Houston | 01 | 069 | 01069 | 1069 | 1 | Alabama | 35 | Houston | County | County | 54 | 0 | 6 | 48 | 0 | 6 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Alabama | Jackson | 01 | 071 | 01071 | 1071 | 1 | Alabama | 36 | Jackson | County | County | 29 | 1 | 3 | 24 | 1 | 9 | 0.03448 | 0.10345 | 0.82759 | 0.03448 | |||
TRUE | Alabama | Jefferson | 01 | 073 | 01073 | 1073 | 1 | Alabama | 37 | Jefferson | County | County | 553 | 13 | 60 | 445 | 35 | 42 | 0.02351 | 0.1085 | 0.8047 | 0.06329 | |||
TRUE | Alabama | Lamar | 01 | 075 | 01075 | 1075 | 1 | Alabama | 38 | Lamar | County | County | 7 | 0 | 0 | 6 | 1 | 5 | 0 | 0 | 0.85714 | 0.14286 | |||
TRUE | Alabama | Lauderdale | 01 | 077 | 01077 | 1077 | 1 | Alabama | 39 | Lauderdale | County | County | 98 | 0 | 7 | 91 | 0 | 7 | 0 | 0.07143 | 0.92857 | 0 | |||
TRUE | Alabama | Lawrence | 01 | 079 | 01079 | 1079 | 1 | Alabama | 40 | Lawrence | County | County | 15 | 0 | 2 | 13 | 0 | 4 | 0 | 0.13333 | 0.86667 | 0 | |||
TRUE | Alabama | Lee | 01 | 081 | 01081 | 1081 | 1 | Alabama | 41 | Lee | County | County | 112 | 2 | 12 | 91 | 7 | 9 | 0.01786 | 0.10714 | 0.8125 | 0.0625 | |||
TRUE | Alabama | Limestone | 01 | 083 | 01083 | 1083 | 1 | Alabama | 42 | Limestone | County | County | 42 | 0 | 1 | 40 | 1 | 6 | 0 | 0.02381 | 0.95238 | 0.02381 | |||
TRUE | Alabama | Lowndes | 01 | 085 | 01085 | 1085 | 1 | Alabama | 43 | Lowndes | County | County | 3 | 0 | 0 | 2 | 1 | 2 | 0 | 0 | 0.66667 | 0.33333 | |||
TRUE | Alabama | Macon | 01 | 087 | 01087 | 1087 | 1 | Alabama | 44 | Macon | County | County | 4 | 0 | 0 | 4 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Alabama | Madison | 01 | 089 | 01089 | 1089 | 1 | Alabama | 45 | Madison | County | County | 424 | 0 | 69 | 340 | 15 | 22 | 0 | 0.16274 | 0.80189 | 0.03538 | |||
TRUE | Alabama | Marengo | 01 | 091 | 01091 | 1091 | 1 | Alabama | 46 | Marengo | County | County | 6 | 0 | 0 | 5 | 1 | 4 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Alabama | Marion | 01 | 093 | 01093 | 1093 | 1 | Alabama | 47 | Marion | County | County | 20 | 0 | 2 | 18 | 0 | 6 | 0 | 0.1 | 0.9 | 0 | |||
TRUE | Alabama | Marshall | 01 | 095 | 01095 | 1095 | 1 | Alabama | 48 | Marshall | County | County | 56 | 1 | 1 | 54 | 0 | 9 | 0.01786 | 0.01786 | 0.96429 | 0 | |||
TRUE | Alabama | Mobile | 01 | 097 | 01097 | 1097 | 1 | Alabama | 49 | Mobile | County | County | 267 | 1 | 19 | 225 | 22 | 32 | 0.00375 | 0.07116 | 0.8427 | 0.0824 | |||
TRUE | Alabama | Monroe | 01 | 099 | 01099 | 1099 | 1 | Alabama | 50 | Monroe | County | County | 8 | 0 | 0 | 7 | 1 | 2 | 0 | 0 | 0.875 | 0.125 | |||
TRUE | Alabama | Montgomery | 01 | 101 | 01101 | 1101 | 1 | Alabama | 51 | Montgomery | County | County | 157 | 4 | 11 | 130 | 12 | 17 | 0.02548 | 0.07006 | 0.82803 | 0.07643 | |||
TRUE | Alabama | Morgan | 01 | 103 | 01103 | 1103 | 1 | Alabama | 52 | Morgan | County | County | 80 | 3 | 1 | 72 | 4 | 9 | 0.0375 | 0.0125 | 0.9 | 0.05 | |||
TRUE | Alabama | Perry | 01 | 105 | 01105 | 1105 | 1 | Alabama | 53 | Perry | County | County | 7 | 0 | 0 | 7 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Alabama | Pickens | 01 | 107 | 01107 | 1107 | 1 | Alabama | 54 | Pickens | County | County | 5 | 0 | 1 | 3 | 1 | 4 | 0 | 0.2 | 0.6 | 0.2 | |||
TRUE | Alabama | Pike | 01 | 109 | 01109 | 1109 | 1 | Alabama | 55 | Pike | County | County | 10 | 0 | 2 | 8 | 0 | 4 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Alabama | Randolph | 01 | 111 | 01111 | 1111 | 1 | Alabama | 56 | Randolph | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Alabama | Russell | 01 | 113 | 01113 | 1113 | 1 | Alabama | 57 | Russell | County | County | 16 | 0 | 4 | 10 | 2 | 4 | 0 | 0.25 | 0.625 | 0.125 | |||
FALSE | Alabama | St Clair | 01 | 115 | 01115 | 1115 | 1 | Alabama | 58 | Saint Clair | County | County | 23 | 0 | 4 | 19 | 0 | 6 | 0 | 0.17391 | 0.82609 | 0 | |||
TRUE | Alabama | Shelby | 01 | 117 | 01117 | 1117 | 1 | Alabama | 59 | Shelby | County | County | 175 | 1 | 11 | 155 | 8 | 14 | 0.00571 | 0.06286 | 0.88571 | 0.04571 | |||
TRUE | Alabama | Sumter | 01 | 119 | 01119 | 1119 | 1 | Alabama | 60 | Sumter | County | County | 4 | 0 | 0 | 3 | 1 | 3 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Alabama | Talladega | 01 | 121 | 01121 | 1121 | 1 | Alabama | 61 | Talladega | County | County | 35 | 1 | 4 | 26 | 4 | 7 | 0.02857 | 0.11429 | 0.74286 | 0.11429 | |||
TRUE | Alabama | Tallapoosa | 01 | 123 | 01123 | 1123 | 1 | Alabama | 62 | Tallapoosa | County | County | 13 | 0 | 2 | 9 | 2 | 4 | 0 | 0.15385 | 0.69231 | 0.15385 | |||
TRUE | Alabama | Tuscaloosa | 01 | 125 | 01125 | 1125 | 1 | Alabama | 63 | Tuscaloosa | County | County | 108 | 1 | 13 | 89 | 5 | 16 | 0.00926 | 0.12037 | 0.82407 | 0.0463 | |||
TRUE | Alabama | Walker | 01 | 127 | 01127 | 1127 | 1 | Alabama | 64 | Walker | County | County | 24 | 0 | 2 | 22 | 0 | 7 | 0 | 0.08333 | 0.91667 | 0 | |||
TRUE | Alabama | Washington | 01 | 129 | 01129 | 1129 | 1 | Alabama | 65 | Washington | County | County | 9 | 0 | 0 | 8 | 1 | 8 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Alabama | Wilcox | 01 | 131 | 01131 | 1131 | 1 | Alabama | 66 | Wilcox | County | County | 6 | 0 | 0 | 6 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Alabama | Winston | 01 | 133 | 01133 | 1133 | 1 | Alabama | 67 | Winston | County | County | 7 | 0 | 0 | 7 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Alaska | Aleutians East | 02 | 013 | 02013 | 2013 | 2 | Alaska | 68 | Aleutians East | Borough | Borough | 3 | 1 | 0 | 0 | 2 | 2 | 0.33333 | 0 | 0 | 0.66667 | |||
TRUE | Alaska | Aleutians West | 02 | 016 | 02016 | 2016 | 2 | Alaska | 69 | Aleutians West | Census Area | Census Area | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Alaska | Anchorage | 02 | 020 | 02020 | 2020 | 2 | Alaska | 70 | Anchorage | Municipality | Municipality | 328 | 82 | 207 | 23 | 16 | 21 | 0.25 | 0.6311 | 0.07012 | 0.04878 | |||
TRUE | Alaska | Bethel | 02 | 050 | 02050 | 2050 | 2 | Alaska | 71 | Bethel | Census Area | Census Area | 10 | 9 | 0 | 1 | 0 | 3 | 0.9 | 0 | 0.1 | 0 | |||
TRUE | Alaska | Bristol Bay | 02 | 060 | 02060 | 2060 | 2 | Alaska | 72 | Bristol Bay | Borough | Borough | 9 | 7 | 2 | 0 | 0 | 1 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Alaska | Denali | 02 | 068 | 02068 | 2068 | 2 | Alaska | 73 | Denali | Borough | Borough | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Alaska | Dillingham | 02 | 070 | 02070 | 2070 | 2 | Alaska | 74 | Dillingham | Census Area | Census Area | 2 | 1 | 1 | 0 | 0 | 1 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Alaska | Fairbanks North Star | 02 | 090 | 02090 | 2090 | 2 | Alaska | 75 | Fairbanks North Star | Borough | Borough | 174 | 33 | 128 | 3 | 10 | 13 | 0.18966 | 0.73563 | 0.01724 | 0.05747 | |||
TRUE | Alaska | Haines | 02 | 100 | 02100 | 2100 | 2 | Alaska | 76 | Haines | Borough | Borough | 7 | 3 | 4 | 0 | 0 | 1 | 0.42857 | 0.57143 | 0 | 0 | |||
TRUE | Alaska | Juneau | 02 | 110 | 02110 | 2110 | 2 | Alaska | 77 | Juneau | City And Borough | City and Borough | 69 | 23 | 40 | 4 | 2 | 5 | 0.33333 | 0.57971 | 0.05797 | 0.02899 | |||
TRUE | Alaska | Kenai Peninsula | 02 | 122 | 02122 | 2122 | 2 | Alaska | 78 | Kenai Peninsula | Borough | Borough | 61 | 38 | 17 | 3 | 3 | 9 | 0.62295 | 0.27869 | 0.04918 | 0.04918 | |||
TRUE | Alaska | Ketchikan Gateway | 02 | 130 | 02130 | 2130 | 2 | Alaska | 79 | Ketchikan Gateway | Borough | Borough | 16 | 11 | 4 | 1 | 0 | 2 | 0.6875 | 0.25 | 0.0625 | 0 | |||
TRUE | Alaska | Kodiak Island | 02 | 150 | 02150 | 2150 | 2 | Alaska | 80 | Kodiak Island | Borough | Borough | 10 | 1 | 8 | 0 | 1 | 1 | 0.1 | 0.8 | 0 | 0.1 | |||
TRUE | Alaska | Lake and Peninsula | 02 | 164 | 02164 | 2164 | 2 | Alaska | 81 | Lake and Peninsula | Borough | Borough | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Alaska | Matanuska-Susitna | 02 | 170 | 02170 | 2170 | 2 | Alaska | 82 | Matanuska-Susitna | Borough | Borough | 60 | 17 | 33 | 3 | 7 | 5 | 0.28333 | 0.55 | 0.05 | 0.11667 | |||
TRUE | Alaska | Nome | 02 | 180 | 02180 | 2180 | 2 | Alaska | 83 | Nome | Census Area | Census Area | 10 | 6 | 2 | 0 | 2 | 2 | 0.6 | 0.2 | 0 | 0.2 | |||
TRUE | Alaska | North Slope | 02 | 185 | 02185 | 2185 | 2 | Alaska | 84 | North Slope | Borough | Borough | 9 | 1 | 4 | 1 | 3 | 3 | 0.11111 | 0.44444 | 0.11111 | 0.33333 | |||
TRUE | Alaska | Northwest Arctic | 02 | 188 | 02188 | 2188 | 2 | Alaska | 85 | Northwest Arctic | Borough | Borough | 6 | 6 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Alaska | Prince of Wales-Outer Ketchikan | 02 | 201 | 02201 | 2201 | 2 | Alaska | 86 | Prince of Wales-Outer Ketchikan | Census Area | Census Area | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Alaska | Sitka | 02 | 220 | 02220 | 2220 | 2 | Alaska | 87 | Sitka | City And Borough | City and Borough | 8 | 6 | 2 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
FALSE | Alaska | Skagway Hoonah Angoon | 02 | 232 | 02232 | 2232 | 2 | Alaska | 88 | Skagway-Yakutat-Angoon | Census Area | Census Area | 4 | 1 | 3 | 0 | 0 | 2 | 0.25 | 0.75 | 0 | 0 | |||
TRUE | Alaska | Southeast Fairbanks | 02 | 240 | 02240 | 2240 | 2 | Alaska | 89 | Southeast Fairbanks | Census Area | Census Area | 6 | 2 | 4 | 0 | 0 | 3 | 0.33333 | 0.66667 | 0 | 0 | |||
TRUE | Alaska | Valdez-Cordova | 02 | 261 | 02261 | 2261 | 2 | Alaska | 90 | Valdez-Cordova | Census Area | Census Area | 15 | 9 | 4 | 0 | 2 | 4 | 0.6 | 0.26667 | 0 | 0.13333 | |||
TRUE | Alaska | Wade Hampton | 02 | 270 | 02270 | 2270 | 2 | Alaska | 91 | Wade Hampton | Census Area | Census Area | 2 | 1 | 1 | 0 | 0 | 2 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Alaska | Wrangell-Petersburg | 02 | 280 | 02280 | 2280 | 2 | Alaska | 92 | Wrangell-Petersburg | Census Area | Census Area | 13 | 11 | 1 | 0 | 1 | 3 | 0.84615 | 0.07692 | 0 | 0.07692 | |||
FALSE | Alaska | Yakutat | 02 | 282 | 02282 | 2282 | |||||||||||||||||||
TRUE | Alaska | Yukon-Koyukuk | 02 | 290 | 02290 | 2290 | 2 | Alaska | 93 | Yukon-Koyukuk | Census Area | Census Area | 6 | 4 | 2 | 0 | 0 | 5 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Arizona | Apache | 04 | 001 | 04001 | 4001 | 3 | Arizona | 94 | Apache | County | County | 29 | 11 | 14 | 3 | 1 | 15 | 0.37931 | 0.48276 | 0.10345 | 0.03448 | |||
TRUE | Arizona | Cochise | 04 | 003 | 04003 | 4003 | 3 | Arizona | 95 | Cochise | County | County | 58 | 2 | 49 | 7 | 0 | 11 | 0.03448 | 0.84483 | 0.12069 | 0 | |||
TRUE | Arizona | Coconino | 04 | 005 | 04005 | 4005 | 3 | Arizona | 96 | Coconino | County | County | 70 | 16 | 46 | 5 | 3 | 8 | 0.22857 | 0.65714 | 0.07143 | 0.04286 | |||
TRUE | Arizona | Gila | 04 | 007 | 04007 | 4007 | 3 | Arizona | 97 | Gila | County | County | 14 | 2 | 8 | 4 | 0 | 5 | 0.14286 | 0.57143 | 0.28571 | 0 | |||
TRUE | Arizona | Graham | 04 | 009 | 04009 | 4009 | 3 | Arizona | 98 | Graham | County | County | 21 | 0 | 20 | 1 | 0 | 2 | 0 | 0.95238 | 0.04762 | 0 | |||
TRUE | Arizona | Greenlee | 04 | 011 | 04011 | 4011 | 3 | Arizona | 99 | Greenlee | County | County | 10 | 0 | 7 | 3 | 0 | 3 | 0 | 0.7 | 0.3 | 0 | |||
TRUE | Arizona | La Paz | 04 | 012 | 04012 | 4012 | 3 | Arizona | 100 | La Paz | County | County | 14 | 1 | 9 | 3 | 1 | 4 | 0.07143 | 0.64286 | 0.21429 | 0.07143 | |||
TRUE | Arizona | Maricopa | 04 | 013 | 04013 | 4013 | 3 | Arizona | 101 | Maricopa | County | County | 1990 | 398 | 1302 | 210 | 80 | 125 | 0.2 | 0.65427 | 0.10553 | 0.0402 | |||
TRUE | Arizona | Mohave | 04 | 015 | 04015 | 4015 | 3 | Arizona | 102 | Mohave | County | County | 52 | 5 | 42 | 4 | 1 | 12 | 0.09615 | 0.80769 | 0.07692 | 0.01923 | |||
TRUE | Arizona | Navajo | 04 | 017 | 04017 | 4017 | 3 | Arizona | 103 | Navajo | County | County | 37 | 11 | 18 | 7 | 1 | 16 | 0.2973 | 0.48649 | 0.18919 | 0.02703 | |||
TRUE | Arizona | Pima | 04 | 019 | 04019 | 4019 | 3 | Arizona | 104 | Pima | County | County | 605 | 36 | 449 | 96 | 24 | 37 | 0.0595 | 0.74215 | 0.15868 | 0.03967 | |||
TRUE | Arizona | Pinal | 04 | 021 | 04021 | 4021 | 3 | Arizona | 105 | Pinal | County | County | 56 | 11 | 36 | 8 | 1 | 17 | 0.19643 | 0.64286 | 0.14286 | 0.01786 | |||
TRUE | Arizona | Santa Cruz | 04 | 023 | 04023 | 4023 | 3 | Arizona | 106 | Santa Cruz | County | County | 10 | 0 | 8 | 2 | 0 | 4 | 0 | 0.8 | 0.2 | 0 | |||
TRUE | Arizona | Yavapai | 04 | 025 | 04025 | 4025 | 3 | Arizona | 107 | Yavapai | County | County | 70 | 14 | 44 | 9 | 3 | 17 | 0.2 | 0.62857 | 0.12857 | 0.04286 | |||
TRUE | Arizona | Yuma | 04 | 027 | 04027 | 4027 | 3 | Arizona | 108 | Yuma | County | County | 55 | 2 | 47 | 4 | 2 | 6 | 0.03636 | 0.85455 | 0.07273 | 0.03636 | |||
TRUE | Arkansas | Arkansas | 05 | 001 | 05001 | 5001 | 4 | Arkansas | 109 | Arkansas | County | County | 16 | 1 | 2 | 12 | 1 | 3 | 0.0625 | 0.125 | 0.75 | 0.0625 | |||
TRUE | Arkansas | Ashley | 05 | 003 | 05003 | 5003 | 4 | Arkansas | 110 | Ashley | County | County | 8 | 0 | 0 | 8 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Baxter | 05 | 005 | 05005 | 5005 | 4 | Arkansas | 111 | Baxter | County | County | 30 | 6 | 14 | 4 | 6 | 4 | 0.2 | 0.46667 | 0.13333 | 0.2 | |||
TRUE | Arkansas | Benton | 05 | 007 | 05007 | 5007 | 4 | Arkansas | 112 | Benton | County | County | 82 | 12 | 19 | 48 | 3 | 12 | 0.14634 | 0.23171 | 0.58537 | 0.03659 | |||
TRUE | Arkansas | Boone | 05 | 009 | 05009 | 5009 | 4 | Arkansas | 113 | Boone | County | County | 17 | 11 | 1 | 4 | 1 | 3 | 0.64706 | 0.05882 | 0.23529 | 0.05882 | |||
TRUE | Arkansas | Bradley | 05 | 011 | 05011 | 5011 | 4 | Arkansas | 114 | Bradley | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Calhoun | 05 | 013 | 05013 | 5013 | 4 | Arkansas | 115 | Calhoun | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Carroll | 05 | 015 | 05015 | 5015 | 4 | Arkansas | 116 | Carroll | County | County | 24 | 7 | 11 | 6 | 0 | 4 | 0.29167 | 0.45833 | 0.25 | 0 | |||
TRUE | Arkansas | Chicot | 05 | 017 | 05017 | 5017 | 4 | Arkansas | 117 | Chicot | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Arkansas | Clark | 05 | 019 | 05019 | 5019 | 4 | Arkansas | 118 | Clark | County | County | 24 | 1 | 3 | 19 | 1 | 5 | 0.04167 | 0.125 | 0.79167 | 0.04167 | |||
TRUE | Arkansas | Clay | 05 | 021 | 05021 | 5021 | 4 | Arkansas | 119 | Clay | County | County | 8 | 0 | 6 | 2 | 0 | 3 | 0 | 0.75 | 0.25 | 0 | |||
TRUE | Arkansas | Cleburne | 05 | 023 | 05023 | 5023 | 4 | Arkansas | 120 | Cleburne | County | County | 14 | 0 | 0 | 13 | 1 | 3 | 0 | 0 | 0.92857 | 0.07143 | |||
TRUE | Arkansas | Cleveland | 05 | 025 | 05025 | 5025 | 4 | Arkansas | 121 | Cleveland | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Columbia | 05 | 027 | 05027 | 5027 | 4 | Arkansas | 122 | Columbia | County | County | 14 | 0 | 1 | 13 | 0 | 3 | 0 | 0.07143 | 0.92857 | 0 | |||
TRUE | Arkansas | Conway | 05 | 029 | 05029 | 5029 | 4 | Arkansas | 123 | Conway | County | County | 6 | 0 | 1 | 4 | 1 | 2 | 0 | 0.16667 | 0.66667 | 0.16667 | |||
TRUE | Arkansas | Craighead | 05 | 031 | 05031 | 5031 | 4 | Arkansas | 124 | Craighead | County | County | 68 | 4 | 16 | 45 | 3 | 9 | 0.05882 | 0.23529 | 0.66176 | 0.04412 | |||
TRUE | Arkansas | Crawford | 05 | 033 | 05033 | 5033 | 4 | Arkansas | 125 | Crawford | County | County | 30 | 3 | 4 | 20 | 3 | 3 | 0.1 | 0.13333 | 0.66667 | 0.1 | |||
TRUE | Arkansas | Crittenden | 05 | 035 | 05035 | 5035 | 4 | Arkansas | 126 | Crittenden | County | County | 37 | 1 | 4 | 32 | 0 | 5 | 0.02703 | 0.10811 | 0.86486 | 0 | |||
TRUE | Arkansas | Cross | 05 | 037 | 05037 | 5037 | 4 | Arkansas | 127 | Cross | County | County | 8 | 0 | 1 | 7 | 0 | 3 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Arkansas | Dallas | 05 | 039 | 05039 | 5039 | 4 | Arkansas | 128 | Dallas | County | County | 7 | 1 | 0 | 6 | 0 | 2 | 0.14286 | 0 | 0.85714 | 0 | |||
TRUE | Arkansas | Desha | 05 | 041 | 05041 | 5041 | 4 | Arkansas | 129 | Desha | County | County | 7 | 0 | 0 | 7 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Drew | 05 | 043 | 05043 | 5043 | 4 | Arkansas | 130 | Drew | County | County | 11 | 0 | 2 | 9 | 0 | 2 | 0 | 0.18182 | 0.81818 | 0 | |||
TRUE | Arkansas | Faulkner | 05 | 045 | 05045 | 5045 | 4 | Arkansas | 131 | Faulkner | County | County | 46 | 0 | 5 | 37 | 4 | 6 | 0 | 0.1087 | 0.80435 | 0.08696 | |||
TRUE | Arkansas | Franklin | 05 | 047 | 05047 | 5047 | 4 | Arkansas | 132 | Franklin | County | County | 5 | 1 | 0 | 4 | 0 | 2 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | Arkansas | Fulton | 05 | 049 | 05049 | 5049 | 4 | Arkansas | 133 | Fulton | County | County | 6 | 1 | 4 | 1 | 0 | 3 | 0.16667 | 0.66667 | 0.16667 | 0 | |||
TRUE | Arkansas | Garland | 05 | 051 | 05051 | 5051 | 4 | Arkansas | 134 | Garland | County | County | 51 | 4 | 2 | 44 | 1 | 5 | 0.07843 | 0.03922 | 0.86275 | 0.01961 | |||
TRUE | Arkansas | Grant | 05 | 053 | 05053 | 5053 | 4 | Arkansas | 135 | Grant | County | County | 9 | 0 | 1 | 8 | 0 | 1 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Arkansas | Greene | 05 | 055 | 05055 | 5055 | 4 | Arkansas | 136 | Greene | County | County | 12 | 0 | 9 | 2 | 1 | 1 | 0 | 0.75 | 0.16667 | 0.08333 | |||
TRUE | Arkansas | Hempstead | 05 | 057 | 05057 | 5057 | 4 | Arkansas | 137 | Hempstead | County | County | 10 | 0 | 0 | 10 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Hot Spring | 05 | 059 | 05059 | 5059 | 4 | Arkansas | 138 | Hot Spring | County | County | 16 | 0 | 2 | 14 | 0 | 3 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Arkansas | Howard | 05 | 061 | 05061 | 5061 | 4 | Arkansas | 139 | Howard | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Independence | 05 | 063 | 05063 | 5063 | 4 | Arkansas | 140 | Independence | County | County | 17 | 1 | 3 | 12 | 1 | 5 | 0.05882 | 0.17647 | 0.70588 | 0.05882 | |||
TRUE | Arkansas | Izard | 05 | 065 | 05065 | 5065 | 4 | Arkansas | 141 | Izard | County | County | 5 | 1 | 0 | 3 | 1 | 3 | 0.2 | 0 | 0.6 | 0.2 | |||
TRUE | Arkansas | Jackson | 05 | 067 | 05067 | 5067 | 4 | Arkansas | 142 | Jackson | County | County | 9 | 0 | 1 | 8 | 0 | 3 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Arkansas | Jefferson | 05 | 069 | 05069 | 5069 | 4 | Arkansas | 143 | Jefferson | County | County | 58 | 13 | 2 | 42 | 1 | 5 | 0.22414 | 0.03448 | 0.72414 | 0.01724 | |||
TRUE | Arkansas | Johnson | 05 | 071 | 05071 | 5071 | 4 | Arkansas | 144 | Johnson | County | County | 9 | 0 | 1 | 7 | 1 | 3 | 0 | 0.11111 | 0.77778 | 0.11111 | |||
TRUE | Arkansas | Lafayette | 05 | 073 | 05073 | 5073 | 4 | Arkansas | 145 | Lafayette | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Lawrence | 05 | 075 | 05075 | 5075 | 4 | Arkansas | 146 | Lawrence | County | County | 15 | 0 | 7 | 7 | 1 | 3 | 0 | 0.46667 | 0.46667 | 0.06667 | |||
TRUE | Arkansas | Lee | 05 | 077 | 05077 | 5077 | 4 | Arkansas | 147 | Lee | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Lincoln | 05 | 079 | 05079 | 5079 | 4 | Arkansas | 148 | Lincoln | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Little River | 05 | 081 | 05081 | 5081 | 4 | Arkansas | 149 | Little River | County | County | 5 | 0 | 0 | 5 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Logan | 05 | 083 | 05083 | 5083 | 4 | Arkansas | 150 | Logan | County | County | 14 | 0 | 1 | 12 | 1 | 4 | 0 | 0.07143 | 0.85714 | 0.07143 | |||
TRUE | Arkansas | Lonoke | 05 | 085 | 05085 | 5085 | 4 | Arkansas | 151 | Lonoke | County | County | 42 | 0 | 6 | 34 | 2 | 5 | 0 | 0.14286 | 0.80952 | 0.04762 | |||
TRUE | Arkansas | Madison | 05 | 087 | 05087 | 5087 | 4 | Arkansas | 152 | Madison | County | County | 6 | 3 | 0 | 2 | 1 | 3 | 0.5 | 0 | 0.33333 | 0.16667 | |||
TRUE | Arkansas | Marion | 05 | 089 | 05089 | 5089 | 4 | Arkansas | 153 | Marion | County | County | 6 | 4 | 1 | 0 | 1 | 4 | 0.66667 | 0.16667 | 0 | 0.16667 | |||
TRUE | Arkansas | Miller | 05 | 091 | 05091 | 5091 | 4 | Arkansas | 154 | Miller | County | County | 20 | 0 | 1 | 18 | 1 | 2 | 0 | 0.05 | 0.9 | 0.05 | |||
TRUE | Arkansas | Mississippi | 05 | 093 | 05093 | 5093 | 4 | Arkansas | 155 | Mississippi | County | County | 35 | 4 | 4 | 24 | 3 | 8 | 0.11429 | 0.11429 | 0.68571 | 0.08571 | |||
TRUE | Arkansas | Monroe | 05 | 095 | 05095 | 5095 | 4 | Arkansas | 156 | Monroe | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Montgomery | 05 | 097 | 05097 | 5097 | 4 | Arkansas | 157 | Montgomery | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Nevada | 05 | 099 | 05099 | 5099 | 4 | Arkansas | 158 | Nevada | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Newton | 05 | 101 | 05101 | 5101 | 4 | Arkansas | 159 | Newton | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Arkansas | Ouachita | 05 | 103 | 05103 | 5103 | 4 | Arkansas | 160 | Ouachita | County | County | 12 | 0 | 2 | 10 | 0 | 3 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Arkansas | Perry | 05 | 105 | 05105 | 5105 | 4 | Arkansas | 161 | Perry | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Phillips | 05 | 107 | 05107 | 5107 | 4 | Arkansas | 162 | Phillips | County | County | 9 | 1 | 0 | 8 | 0 | 6 | 0.11111 | 0 | 0.88889 | 0 | |||
TRUE | Arkansas | Pike | 05 | 109 | 05109 | 5109 | 4 | Arkansas | 163 | Pike | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Poinsett | 05 | 111 | 05111 | 5111 | 4 | Arkansas | 164 | Poinsett | County | County | 13 | 0 | 1 | 12 | 0 | 6 | 0 | 0.07692 | 0.92308 | 0 | |||
TRUE | Arkansas | Polk | 05 | 113 | 05113 | 5113 | 4 | Arkansas | 165 | Polk | County | County | 10 | 1 | 1 | 8 | 0 | 2 | 0.1 | 0.1 | 0.8 | 0 | |||
TRUE | Arkansas | Pope | 05 | 115 | 05115 | 5115 | 4 | Arkansas | 166 | Pope | County | County | 76 | 8 | 8 | 58 | 2 | 5 | 0.10526 | 0.10526 | 0.76316 | 0.02632 | |||
TRUE | Arkansas | Prairie | 05 | 117 | 05117 | 5117 | 4 | Arkansas | 167 | Prairie | County | County | 2 | 0 | 1 | 1 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Arkansas | Pulaski | 05 | 119 | 05119 | 5119 | 4 | Arkansas | 168 | Pulaski | County | County | 385 | 41 | 51 | 283 | 10 | 24 | 0.10649 | 0.13247 | 0.73506 | 0.02597 | |||
TRUE | Arkansas | Randolph | 05 | 121 | 05121 | 5121 | 4 | Arkansas | 169 | Randolph | County | County | 12 | 0 | 9 | 3 | 0 | 3 | 0 | 0.75 | 0.25 | 0 | |||
FALSE | Arkansas | St Francis | 05 | 123 | 05123 | 5123 | 4 | Arkansas | 170 | Saint Francis | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Saline | 05 | 125 | 05125 | 5125 | 4 | Arkansas | 171 | Saline | County | County | 34 | 0 | 4 | 30 | 0 | 5 | 0 | 0.11765 | 0.88235 | 0 | |||
TRUE | Arkansas | Scott | 05 | 127 | 05127 | 5127 | 4 | Arkansas | 172 | Scott | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Searcy | 05 | 129 | 05129 | 5129 | 4 | Arkansas | 173 | Searcy | County | County | 6 | 2 | 1 | 2 | 1 | 3 | 0.33333 | 0.16667 | 0.33333 | 0.16667 | |||
TRUE | Arkansas | Sebastian | 05 | 131 | 05131 | 5131 | 4 | Arkansas | 174 | Sebastian | County | County | 88 | 4 | 10 | 72 | 2 | 9 | 0.04545 | 0.11364 | 0.81818 | 0.02273 | |||
TRUE | Arkansas | Sevier | 05 | 133 | 05133 | 5133 | 4 | Arkansas | 175 | Sevier | County | County | 7 | 1 | 0 | 6 | 0 | 3 | 0.14286 | 0 | 0.85714 | 0 | |||
TRUE | Arkansas | Sharp | 05 | 135 | 05135 | 5135 | 4 | Arkansas | 176 | Sharp | County | County | 5 | 1 | 1 | 3 | 0 | 3 | 0.2 | 0.2 | 0.6 | 0 | |||
TRUE | Arkansas | Stone | 05 | 137 | 05137 | 5137 | 4 | Arkansas | 177 | Stone | County | County | 5 | 1 | 0 | 4 | 0 | 2 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | Arkansas | Union | 05 | 139 | 05139 | 5139 | 4 | Arkansas | 178 | Union | County | County | 30 | 1 | 0 | 26 | 3 | 4 | 0.03333 | 0 | 0.86667 | 0.1 | |||
TRUE | Arkansas | Van Buren | 05 | 141 | 05141 | 5141 | 4 | Arkansas | 179 | Van Buren | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Arkansas | Washington | 05 | 143 | 05143 | 5143 | 4 | Arkansas | 180 | Washington | County | County | 146 | 8 | 24 | 107 | 7 | 7 | 0.05479 | 0.16438 | 0.73288 | 0.04795 | |||
TRUE | Arkansas | White | 05 | 145 | 05145 | 5145 | 4 | Arkansas | 181 | White | County | County | 39 | 1 | 3 | 33 | 2 | 7 | 0.02564 | 0.07692 | 0.84615 | 0.05128 | |||
TRUE | Arkansas | Woodruff | 05 | 147 | 05147 | 5147 | 4 | Arkansas | 182 | Woodruff | County | County | 6 | 0 | 0 | 5 | 1 | 3 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Arkansas | Yell | 05 | 149 | 05149 | 5149 | 4 | Arkansas | 183 | Yell | County | County | 12 | 1 | 0 | 10 | 1 | 5 | 0.08333 | 0 | 0.83333 | 0.08333 | |||
TRUE | California | Alameda | 06 | 001 | 06001 | 6001 | 5 | California | 184 | Alameda | County | County | 1262 | 37 | 1077 | 95 | 53 | 50 | 0.02932 | 0.85341 | 0.07528 | 0.042 | |||
TRUE | California | Alpine | 06 | 003 | 06003 | 6003 | 5 | California | 185 | Alpine | County | County | 2 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | California | Amador | 06 | 005 | 06005 | 6005 | 5 | California | 186 | Amador | County | County | 14 | 1 | 11 | 2 | 0 | 8 | 0.07143 | 0.78571 | 0.14286 | 0 | |||
TRUE | California | Butte | 06 | 007 | 06007 | 6007 | 5 | California | 187 | Butte | County | County | 139 | 11 | 103 | 15 | 10 | 14 | 0.07914 | 0.74101 | 0.10791 | 0.07194 | |||
TRUE | California | Calaveras | 06 | 009 | 06009 | 6009 | 5 | California | 188 | Calaveras | County | County | 14 | 2 | 8 | 4 | 0 | 8 | 0.14286 | 0.57143 | 0.28571 | 0 | |||
TRUE | California | Colusa | 06 | 011 | 06011 | 6011 | 5 | California | 189 | Colusa | County | County | 4 | 0 | 4 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | California | Contra Costa | 06 | 013 | 06013 | 6013 | 5 | California | 190 | Contra Costa | County | County | 800 | 23 | 670 | 85 | 22 | 40 | 0.02875 | 0.8375 | 0.10625 | 0.0275 | |||
TRUE | California | Del Norte | 06 | 015 | 06015 | 6015 | 5 | California | 191 | Del Norte | County | County | 16 | 2 | 13 | 0 | 1 | 3 | 0.125 | 0.8125 | 0 | 0.0625 | |||
TRUE | California | El Dorado | 06 | 017 | 06017 | 6017 | 5 | California | 192 | El Dorado | County | County | 125 | 6 | 105 | 12 | 2 | 18 | 0.048 | 0.84 | 0.096 | 0.016 | |||
TRUE | California | Fresno | 06 | 019 | 06019 | 6019 | 5 | California | 193 | Fresno | County | County | 345 | 7 | 287 | 33 | 18 | 35 | 0.02029 | 0.83188 | 0.09565 | 0.05217 | |||
TRUE | California | Glenn | 06 | 021 | 06021 | 6021 | 5 | California | 194 | Glenn | County | County | 8 | 0 | 7 | 1 | 0 | 3 | 0 | 0.875 | 0.125 | 0 | |||
TRUE | California | Humboldt | 06 | 023 | 06023 | 6023 | 5 | California | 195 | Humboldt | County | County | 118 | 6 | 93 | 16 | 3 | 17 | 0.05085 | 0.78814 | 0.13559 | 0.02542 | |||
TRUE | California | Imperial | 06 | 025 | 06025 | 6025 | 5 | California | 196 | Imperial | County | County | 113 | 0 | 91 | 15 | 7 | 8 | 0 | 0.80531 | 0.13274 | 0.06195 | |||
TRUE | California | Inyo | 06 | 027 | 06027 | 6027 | 5 | California | 197 | Inyo | County | County | 14 | 0 | 8 | 2 | 4 | 2 | 0 | 0.57143 | 0.14286 | 0.28571 | |||
TRUE | California | Kern | 06 | 029 | 06029 | 6029 | 5 | California | 198 | Kern | County | County | 285 | 11 | 176 | 67 | 31 | 33 | 0.0386 | 0.61754 | 0.23509 | 0.10877 | |||
TRUE | California | Kings | 06 | 031 | 06031 | 6031 | 5 | California | 199 | Kings | County | County | 39 | 1 | 31 | 5 | 2 | 5 | 0.02564 | 0.79487 | 0.12821 | 0.05128 | |||
TRUE | California | Lake | 06 | 033 | 06033 | 6033 | 5 | California | 200 | Lake | County | County | 29 | 2 | 22 | 5 | 0 | 9 | 0.06897 | 0.75862 | 0.17241 | 0 | |||
TRUE | California | Lassen | 06 | 035 | 06035 | 6035 | 5 | California | 201 | Lassen | County | County | 10 | 0 | 7 | 2 | 1 | 4 | 0 | 0.7 | 0.2 | 0.1 | |||
TRUE | California | Los Angeles | 06 | 037 | 06037 | 6037 | 5 | California | 202 | Los Angeles | County | County | 4777 | 231 | 3545 | 694 | 307 | 316 | 0.04836 | 0.7421 | 0.14528 | 0.06427 | |||
TRUE | California | Madera | 06 | 039 | 06039 | 6039 | 5 | California | 203 | Madera | County | County | 27 | 1 | 22 | 4 | 0 | 7 | 0.03704 | 0.81481 | 0.14815 | 0 | |||
TRUE | California | Marin | 06 | 041 | 06041 | 6041 | 5 | California | 204 | Marin | County | County | 304 | 10 | 270 | 15 | 9 | 24 | 0.03289 | 0.88816 | 0.04934 | 0.02961 | |||
TRUE | California | Mariposa | 06 | 043 | 06043 | 6043 | 5 | California | 205 | Mariposa | County | County | 13 | 0 | 11 | 2 | 0 | 3 | 0 | 0.84615 | 0.15385 | 0 | |||
TRUE | California | Mendocino | 06 | 045 | 06045 | 6045 | 5 | California | 206 | Mendocino | County | County | 67 | 3 | 63 | 1 | 0 | 12 | 0.04478 | 0.9403 | 0.01493 | 0 | |||
TRUE | California | Merced | 06 | 047 | 06047 | 6047 | 5 | California | 207 | Merced | County | County | 61 | 2 | 51 | 6 | 2 | 13 | 0.03279 | 0.83607 | 0.09836 | 0.03279 | |||
TRUE | California | Modoc | 06 | 049 | 06049 | 6049 | 5 | California | 208 | Modoc | County | County | 12 | 3 | 7 | 0 | 2 | 5 | 0.25 | 0.58333 | 0 | 0.16667 | |||
TRUE | California | Mono | 06 | 051 | 06051 | 6051 | 5 | California | 209 | Mono | County | County | 14 | 0 | 5 | 0 | 9 | 5 | 0 | 0.35714 | 0 | 0.64286 | |||
TRUE | California | Monterey | 06 | 053 | 06053 | 6053 | 5 | California | 210 | Monterey | County | County | 164 | 4 | 133 | 22 | 5 | 25 | 0.02439 | 0.81098 | 0.13415 | 0.03049 | |||
TRUE | California | Napa | 06 | 055 | 06055 | 6055 | 5 | California | 211 | Napa | County | County | 82 | 5 | 64 | 11 | 2 | 7 | 0.06098 | 0.78049 | 0.13415 | 0.02439 | |||
TRUE | California | Nevada | 06 | 057 | 06057 | 6057 | 5 | California | 212 | Nevada | County | County | 75 | 5 | 68 | 2 | 0 | 6 | 0.06667 | 0.90667 | 0.02667 | 0 | |||
TRUE | California | Orange | 06 | 059 | 06059 | 6059 | 5 | California | 213 | Orange | County | County | 1684 | 51 | 1245 | 287 | 101 | 103 | 0.03029 | 0.73931 | 0.17043 | 0.05998 | |||
TRUE | California | Placer | 06 | 061 | 06061 | 6061 | 5 | California | 214 | Placer | County | County | 180 | 15 | 138 | 23 | 4 | 20 | 0.08333 | 0.76667 | 0.12778 | 0.02222 | |||
TRUE | California | Plumas | 06 | 063 | 06063 | 6063 | 5 | California | 215 | Plumas | County | County | 14 | 1 | 12 | 1 | 0 | 5 | 0.07143 | 0.85714 | 0.07143 | 0 | |||
TRUE | California | Riverside | 06 | 065 | 06065 | 6065 | 5 | California | 216 | Riverside | County | County | 568 | 31 | 406 | 110 | 21 | 63 | 0.05458 | 0.71479 | 0.19366 | 0.03697 | |||
TRUE | California | Sacramento | 06 | 067 | 06067 | 6067 | 5 | California | 217 | Sacramento | County | County | 866 | 55 | 703 | 88 | 20 | 56 | 0.06351 | 0.81178 | 0.10162 | 0.02309 | |||
TRUE | California | San Benito | 06 | 069 | 06069 | 6069 | 5 | California | 218 | San Benito | County | County | 17 | 0 | 14 | 2 | 1 | 3 | 0 | 0.82353 | 0.11765 | 0.05882 | |||
TRUE | California | San Bernardino | 06 | 071 | 06071 | 6071 | 5 | California | 219 | San Bernardino | County | County | 704 | 23 | 512 | 120 | 49 | 68 | 0.03267 | 0.72727 | 0.17045 | 0.0696 | |||
TRUE | California | San Diego | 06 | 073 | 06073 | 6073 | 5 | California | 220 | San Diego | County | County | 2312 | 60 | 1584 | 230 | 438 | 100 | 0.02595 | 0.68512 | 0.09948 | 0.18945 | |||
TRUE | California | San Francisco | 06 | 075 | 06075 | 6075 | 5 | California | 221 | San Francisco | County | County | 628 | 28 | 499 | 45 | 56 | 27 | 0.04459 | 0.79459 | 0.07166 | 0.08917 | |||
TRUE | California | San Joaquin | 06 | 077 | 06077 | 6077 | 5 | California | 222 | San Joaquin | County | County | 248 | 9 | 213 | 16 | 10 | 27 | 0.03629 | 0.85887 | 0.06452 | 0.04032 | |||
TRUE | California | San Luis Obispo | 06 | 079 | 06079 | 6079 | 5 | California | 223 | San Luis Obispo | County | County | 173 | 10 | 135 | 23 | 5 | 17 | 0.0578 | 0.78035 | 0.13295 | 0.0289 | |||
TRUE | California | San Mateo | 06 | 081 | 06081 | 6081 | 5 | California | 224 | San Mateo | County | County | 596 | 15 | 499 | 54 | 28 | 33 | 0.02517 | 0.83725 | 0.0906 | 0.04698 | |||
TRUE | California | Santa Barbara | 06 | 083 | 06083 | 6083 | 5 | California | 225 | Santa Barbara | County | County | 303 | 14 | 248 | 32 | 9 | 22 | 0.0462 | 0.81848 | 0.10561 | 0.0297 | |||
TRUE | California | Santa Clara | 06 | 085 | 06085 | 6085 | 5 | California | 226 | Santa Clara | County | County | 1718 | 47 | 1388 | 219 | 64 | 67 | 0.02736 | 0.80792 | 0.12747 | 0.03725 | |||
TRUE | California | Santa Cruz | 06 | 087 | 06087 | 6087 | 5 | California | 227 | Santa Cruz | County | County | 213 | 7 | 175 | 25 | 6 | 13 | 0.03286 | 0.8216 | 0.11737 | 0.02817 | |||
TRUE | California | Shasta | 06 | 089 | 06089 | 6089 | 5 | California | 228 | Shasta | County | County | 107 | 5 | 79 | 18 | 5 | 12 | 0.04673 | 0.73832 | 0.16822 | 0.04673 | |||
TRUE | California | Sierra | 06 | 091 | 06091 | 6091 | 5 | California | 229 | Sierra | County | County | 10 | 0 | 8 | 1 | 1 | 5 | 0 | 0.8 | 0.1 | 0.1 | |||
TRUE | California | Siskiyou | 06 | 093 | 06093 | 6093 | 5 | California | 230 | Siskiyou | County | County | 35 | 3 | 27 | 5 | 0 | 9 | 0.08571 | 0.77143 | 0.14286 | 0 | |||
TRUE | California | Solano | 06 | 095 | 06095 | 6095 | 5 | California | 231 | Solano | County | County | 204 | 8 | 169 | 19 | 8 | 12 | 0.03922 | 0.82843 | 0.09314 | 0.03922 | |||
TRUE | California | Sonoma | 06 | 097 | 06097 | 6097 | 5 | California | 232 | Sonoma | County | County | 342 | 12 | 286 | 34 | 10 | 26 | 0.03509 | 0.83626 | 0.09942 | 0.02924 | |||
TRUE | California | Stanislaus | 06 | 099 | 06099 | 6099 | 5 | California | 233 | Stanislaus | County | County | 201 | 2 | 172 | 18 | 9 | 21 | 0.00995 | 0.85572 | 0.08955 | 0.04478 | |||
TRUE | California | Sutter | 06 | 101 | 06101 | 6101 | 5 | California | 234 | Sutter | County | County | 51 | 4 | 41 | 6 | 0 | 6 | 0.07843 | 0.80392 | 0.11765 | 0 | |||
TRUE | California | Tehama | 06 | 103 | 06103 | 6103 | 5 | California | 235 | Tehama | County | County | 26 | 2 | 21 | 3 | 0 | 4 | 0.07692 | 0.80769 | 0.11538 | 0 | |||
TRUE | California | Trinity | 06 | 105 | 06105 | 6105 | 5 | California | 236 | Trinity | County | County | 6 | 1 | 3 | 2 | 0 | 4 | 0.16667 | 0.5 | 0.33333 | 0 | |||
TRUE | California | Tulare | 06 | 107 | 06107 | 6107 | 5 | California | 237 | Tulare | County | County | 147 | 6 | 93 | 22 | 26 | 18 | 0.04082 | 0.63265 | 0.14966 | 0.17687 | |||
TRUE | California | Tuolumne | 06 | 109 | 06109 | 6109 | 5 | California | 238 | Tuolumne | County | County | 22 | 0 | 20 | 1 | 1 | 6 | 0 | 0.90909 | 0.04545 | 0.04545 | |||
TRUE | California | Ventura | 06 | 111 | 06111 | 6111 | 5 | California | 239 | Ventura | County | County | 561 | 21 | 443 | 86 | 11 | 24 | 0.03743 | 0.78966 | 0.1533 | 0.01961 | |||
TRUE | California | Yolo | 06 | 113 | 06113 | 6113 | 5 | California | 240 | Yolo | County | County | 179 | 16 | 149 | 6 | 8 | 11 | 0.08939 | 0.8324 | 0.03352 | 0.04469 | |||
TRUE | California | Yuba | 06 | 115 | 06115 | 6115 | 5 | California | 241 | Yuba | County | County | 30 | 3 | 24 | 3 | 0 | 5 | 0.1 | 0.8 | 0.1 | 0 | |||
TRUE | Colorado | Adams | 08 | 001 | 08001 | 8001 | 6 | Colorado | 242 | Adams | County | County | 252 | 161 | 72 | 11 | 8 | 22 | 0.63889 | 0.28571 | 0.04365 | 0.03175 | |||
TRUE | Colorado | Alamosa | 08 | 003 | 08003 | 8003 | 6 | Colorado | 243 | Alamosa | County | County | 35 | 22 | 8 | 1 | 4 | 2 | 0.62857 | 0.22857 | 0.02857 | 0.11429 | |||
TRUE | Colorado | Arapahoe | 08 | 005 | 08005 | 8005 | 6 | Colorado | 244 | Arapahoe | County | County | 563 | 304 | 163 | 84 | 12 | 19 | 0.53996 | 0.28952 | 0.1492 | 0.02131 | |||
TRUE | Colorado | Archuleta | 08 | 007 | 08007 | 8007 | 6 | Colorado | 245 | Archuleta | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Baca | 08 | 009 | 08009 | 8009 | 6 | Colorado | 246 | Baca | County | County | 8 | 8 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Bent | 08 | 011 | 08011 | 8011 | 6 | Colorado | 247 | Bent | County | County | 6 | 5 | 0 | 1 | 0 | 4 | 0.83333 | 0 | 0.16667 | 0 | |||
TRUE | Colorado | Boulder | 08 | 013 | 08013 | 8013 | 6 | Colorado | 248 | Boulder | County | County | 380 | 160 | 186 | 19 | 15 | 16 | 0.42105 | 0.48947 | 0.05 | 0.03947 | |||
TRUE | Colorado | Broomfield | 08 | 014 | 08014 | 8014 | 6 | Colorado | 249 | Broomfield | City And County | City and County | 72 | 42 | 23 | 2 | 5 | 1 | 0.58333 | 0.31944 | 0.02778 | 0.06944 | |||
TRUE | Colorado | Chaffee | 08 | 015 | 08015 | 8015 | 6 | Colorado | 250 | Chaffee | County | County | 5 | 5 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Cheyenne | 08 | 017 | 08017 | 8017 | 6 | Colorado | 251 | Cheyenne | County | County | 6 | 6 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Clear Creek | 08 | 019 | 08019 | 8019 | 6 | Colorado | 252 | Clear Creek | County | County | 8 | 6 | 0 | 1 | 1 | 2 | 0.75 | 0 | 0.125 | 0.125 | |||
TRUE | Colorado | Conejos | 08 | 021 | 08021 | 8021 | 6 | Colorado | 253 | Conejos | County | County | 6 | 5 | 1 | 0 | 0 | 4 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Colorado | Costilla | 08 | 023 | 08023 | 8023 | 6 | Colorado | 254 | Costilla | County | County | 4 | 3 | 0 | 0 | 1 | 2 | 0.75 | 0 | 0 | 0.25 | |||
TRUE | Colorado | Crowley | 08 | 025 | 08025 | 8025 | 6 | Colorado | 255 | Crowley | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Custer | 08 | 027 | 08027 | 8027 | 6 | Colorado | 256 | Custer | County | County | 4 | 2 | 1 | 1 | 0 | 1 | 0.5 | 0.25 | 0.25 | 0 | |||
TRUE | Colorado | Delta | 08 | 029 | 08029 | 8029 | 6 | Colorado | 257 | Delta | County | County | 39 | 35 | 3 | 1 | 0 | 4 | 0.89744 | 0.07692 | 0.02564 | 0 | |||
TRUE | Colorado | Denver | 08 | 031 | 08031 | 8031 | 6 | Colorado | 258 | Denver | County | County | 576 | 356 | 163 | 41 | 16 | 25 | 0.61806 | 0.28299 | 0.07118 | 0.02778 | |||
TRUE | Colorado | Dolores | 08 | 033 | 08033 | 8033 | 6 | Colorado | 259 | Dolores | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Colorado | Douglas | 08 | 035 | 08035 | 8035 | 6 | Colorado | 260 | Douglas | County | County | 151 | 86 | 55 | 8 | 2 | 13 | 0.56954 | 0.36424 | 0.05298 | 0.01325 | |||
TRUE | Colorado | Eagle | 08 | 037 | 08037 | 8037 | 6 | Colorado | 261 | Eagle | County | County | 18 | 5 | 11 | 1 | 1 | 8 | 0.27778 | 0.61111 | 0.05556 | 0.05556 | |||
TRUE | Colorado | Elbert | 08 | 039 | 08039 | 8039 | 6 | Colorado | 263 | Elbert | County | County | 14 | 7 | 5 | 2 | 0 | 4 | 0.5 | 0.35714 | 0.14286 | 0 | |||
TRUE | Colorado | El Paso | 08 | 041 | 08041 | 8041 | 6 | Colorado | 262 | El Paso | County | County | 464 | 139 | 257 | 54 | 14 | 34 | 0.29957 | 0.55388 | 0.11638 | 0.03017 | |||
TRUE | Colorado | Fremont | 08 | 043 | 08043 | 8043 | 6 | Colorado | 264 | Fremont | County | County | 22 | 14 | 6 | 1 | 1 | 2 | 0.63636 | 0.27273 | 0.04545 | 0.04545 | |||
TRUE | Colorado | Garfield | 08 | 045 | 08045 | 8045 | 6 | Colorado | 265 | Garfield | County | County | 18 | 9 | 5 | 2 | 2 | 5 | 0.5 | 0.27778 | 0.11111 | 0.11111 | |||
TRUE | Colorado | Gilpin | 08 | 047 | 08047 | 8047 | 6 | Colorado | 266 | Gilpin | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Colorado | Grand | 08 | 049 | 08049 | 8049 | 6 | Colorado | 267 | Grand | County | County | 5 | 4 | 1 | 0 | 0 | 4 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Colorado | Gunnison | 08 | 051 | 08051 | 8051 | 6 | Colorado | 268 | Gunnison | County | County | 15 | 7 | 5 | 3 | 0 | 4 | 0.46667 | 0.33333 | 0.2 | 0 | |||
TRUE | Colorado | Hinsdale | 08 | 053 | 08053 | 8053 | 6 | Colorado | 269 | Hinsdale | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Colorado | Huerfano | 08 | 055 | 08055 | 8055 | 6 | Colorado | 270 | Huerfano | County | County | 5 | 3 | 1 | 0 | 1 | 3 | 0.6 | 0.2 | 0 | 0.2 | |||
TRUE | Colorado | Jackson | 08 | 057 | 08057 | 8057 | 6 | Colorado | 271 | Jackson | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Jefferson | 08 | 059 | 08059 | 8059 | 6 | Colorado | 272 | Jefferson | County | County | 566 | 366 | 159 | 28 | 13 | 28 | 0.64664 | 0.28092 | 0.04947 | 0.02297 | |||
TRUE | Colorado | Kiowa | 08 | 061 | 08061 | 8061 | 6 | Colorado | 273 | Kiowa | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Kit Carson | 08 | 063 | 08063 | 8063 | 6 | Colorado | 274 | Kit Carson | County | County | 9 | 9 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Lake | 08 | 065 | 08065 | 8065 | 6 | Colorado | 276 | Lake | County | County | 8 | 6 | 1 | 1 | 0 | 1 | 0.75 | 0.125 | 0.125 | 0 | |||
TRUE | Colorado | La Plata | 08 | 067 | 08067 | 8067 | 6 | Colorado | 275 | La Plata | County | County | 18 | 5 | 6 | 7 | 0 | 5 | 0.27778 | 0.33333 | 0.38889 | 0 | |||
TRUE | Colorado | Larimer | 08 | 069 | 08069 | 8069 | 6 | Colorado | 277 | Larimer | County | County | 316 | 210 | 92 | 6 | 8 | 14 | 0.66456 | 0.29114 | 0.01899 | 0.02532 | |||
TRUE | Colorado | Las Animas | 08 | 071 | 08071 | 8071 | 6 | Colorado | 278 | Las Animas | County | County | 13 | 10 | 2 | 0 | 1 | 3 | 0.76923 | 0.15385 | 0 | 0.07692 | |||
TRUE | Colorado | Lincoln | 08 | 073 | 08073 | 8073 | 6 | Colorado | 279 | Lincoln | County | County | 7 | 7 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Logan | 08 | 075 | 08075 | 8075 | 6 | Colorado | 280 | Logan | County | County | 22 | 16 | 6 | 0 | 0 | 3 | 0.72727 | 0.27273 | 0 | 0 | |||
TRUE | Colorado | Mesa | 08 | 077 | 08077 | 8077 | 6 | Colorado | 281 | Mesa | County | County | 159 | 122 | 23 | 10 | 4 | 13 | 0.7673 | 0.14465 | 0.06289 | 0.02516 | |||
TRUE | Colorado | Mineral | 08 | 079 | 08079 | 8079 | 6 | Colorado | 282 | Mineral | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Moffat | 08 | 081 | 08081 | 8081 | 6 | Colorado | 283 | Moffat | County | County | 14 | 9 | 5 | 0 | 0 | 2 | 0.64286 | 0.35714 | 0 | 0 | |||
TRUE | Colorado | Montezuma | 08 | 083 | 08083 | 8083 | 6 | Colorado | 284 | Montezuma | County | County | 15 | 9 | 3 | 3 | 0 | 3 | 0.6 | 0.2 | 0.2 | 0 | |||
TRUE | Colorado | Montrose | 08 | 085 | 08085 | 8085 | 6 | Colorado | 285 | Montrose | County | County | 46 | 41 | 2 | 3 | 0 | 4 | 0.8913 | 0.04348 | 0.06522 | 0 | |||
TRUE | Colorado | Morgan | 08 | 087 | 08087 | 8087 | 6 | Colorado | 286 | Morgan | County | County | 17 | 16 | 1 | 0 | 0 | 2 | 0.94118 | 0.05882 | 0 | 0 | |||
TRUE | Colorado | Otero | 08 | 089 | 08089 | 8089 | 6 | Colorado | 287 | Otero | County | County | 14 | 9 | 5 | 0 | 0 | 4 | 0.64286 | 0.35714 | 0 | 0 | |||
TRUE | Colorado | Ouray | 08 | 091 | 08091 | 8091 | 6 | Colorado | 288 | Ouray | County | County | 3 | 1 | 2 | 0 | 0 | 2 | 0.33333 | 0.66667 | 0 | 0 | |||
TRUE | Colorado | Park | 08 | 093 | 08093 | 8093 | 6 | Colorado | 289 | Park | County | County | 8 | 5 | 3 | 0 | 0 | 3 | 0.625 | 0.375 | 0 | 0 | |||
TRUE | Colorado | Phillips | 08 | 095 | 08095 | 8095 | 6 | Colorado | 290 | Phillips | County | County | 7 | 4 | 3 | 0 | 0 | 2 | 0.57143 | 0.42857 | 0 | 0 | |||
TRUE | Colorado | Pitkin | 08 | 097 | 08097 | 8097 | 6 | Colorado | 291 | Pitkin | County | County | 15 | 4 | 10 | 1 | 0 | 3 | 0.26667 | 0.66667 | 0.06667 | 0 | |||
TRUE | Colorado | Prowers | 08 | 099 | 08099 | 8099 | 6 | Colorado | 292 | Prowers | County | County | 15 | 11 | 3 | 0 | 1 | 2 | 0.73333 | 0.2 | 0 | 0.06667 | |||
TRUE | Colorado | Pueblo | 08 | 101 | 08101 | 8101 | 6 | Colorado | 293 | Pueblo | County | County | 103 | 85 | 16 | 2 | 0 | 10 | 0.82524 | 0.15534 | 0.01942 | 0 | |||
TRUE | Colorado | Rio Blanco | 08 | 103 | 08103 | 8103 | 6 | Colorado | 294 | Rio Blanco | County | County | 11 | 6 | 5 | 0 | 0 | 2 | 0.54545 | 0.45455 | 0 | 0 | |||
TRUE | Colorado | Rio Grande | 08 | 105 | 08105 | 8105 | 6 | Colorado | 295 | Rio Grande | County | County | 8 | 5 | 2 | 0 | 1 | 2 | 0.625 | 0.25 | 0 | 0.125 | |||
TRUE | Colorado | Routt | 08 | 107 | 08107 | 8107 | 6 | Colorado | 296 | Routt | County | County | 12 | 9 | 3 | 0 | 0 | 4 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Colorado | Saguache | 08 | 109 | 08109 | 8109 | 6 | Colorado | 297 | Saguache | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | San Juan | 08 | 111 | 08111 | 8111 | 6 | Colorado | 298 | San Juan | County | County | 2 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Colorado | San Miguel | 08 | 113 | 08113 | 8113 | 6 | Colorado | 299 | San Miguel | County | County | 4 | 1 | 0 | 2 | 1 | 1 | 0.25 | 0 | 0.5 | 0.25 | |||
TRUE | Colorado | Sedgwick | 08 | 115 | 08115 | 8115 | 6 | Colorado | 300 | Sedgwick | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Colorado | Summit | 08 | 117 | 08117 | 8117 | 6 | Colorado | 301 | Summit | County | County | 16 | 6 | 8 | 2 | 0 | 4 | 0.375 | 0.5 | 0.125 | 0 | |||
TRUE | Colorado | Teller | 08 | 119 | 08119 | 8119 | 6 | Colorado | 302 | Teller | County | County | 14 | 6 | 8 | 0 | 0 | 4 | 0.42857 | 0.57143 | 0 | 0 | |||
TRUE | Colorado | Washington | 08 | 121 | 08121 | 8121 | 6 | Colorado | 303 | Washington | County | County | 6 | 5 | 1 | 0 | 0 | 2 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Colorado | Weld | 08 | 123 | 08123 | 8123 | 6 | Colorado | 304 | Weld | County | County | 167 | 115 | 45 | 6 | 1 | 22 | 0.68862 | 0.26946 | 0.03593 | 0.00599 | |||
TRUE | Colorado | Yuma | 08 | 125 | 08125 | 8125 | 6 | Colorado | 305 | Yuma | County | County | 17 | 12 | 3 | 2 | 0 | 3 | 0.70588 | 0.17647 | 0.11765 | 0 | |||
TRUE | Connecticut | Fairfield | 09 | 001 | 09001 | 9001 | 7 | Connecticut | 306 | Fairfield | County | County | 1216 | 16 | 1150 | 40 | 10 | 53 | 0.01316 | 0.94572 | 0.03289 | 0.00822 | |||
TRUE | Connecticut | Hartford | 09 | 003 | 09003 | 9003 | 7 | Connecticut | 307 | Hartford | County | County | 810 | 9 | 775 | 21 | 5 | 59 | 0.01111 | 0.95679 | 0.02593 | 0.00617 | |||
TRUE | Connecticut | Litchfield | 09 | 005 | 09005 | 9005 | 7 | Connecticut | 308 | Litchfield | County | County | 206 | 3 | 203 | 0 | 0 | 34 | 0.01456 | 0.98544 | 0 | 0 | |||
TRUE | Connecticut | Middlesex | 09 | 007 | 09007 | 9007 | 7 | Connecticut | 309 | Middlesex | County | County | 187 | 7 | 174 | 4 | 2 | 21 | 0.03743 | 0.93048 | 0.02139 | 0.0107 | |||
TRUE | Connecticut | New Haven | 09 | 009 | 09009 | 9009 | 7 | Connecticut | 310 | New Haven | County | County | 745 | 9 | 718 | 15 | 3 | 45 | 0.01208 | 0.96376 | 0.02013 | 0.00403 | |||
TRUE | Connecticut | New London | 09 | 011 | 09011 | 9011 | 7 | Connecticut | 311 | New London | County | County | 340 | 8 | 279 | 5 | 48 | 27 | 0.02353 | 0.82059 | 0.01471 | 0.14118 | |||
TRUE | Connecticut | Tolland | 09 | 013 | 09013 | 9013 | 7 | Connecticut | 312 | Tolland | County | County | 185 | 5 | 173 | 6 | 1 | 16 | 0.02703 | 0.93514 | 0.03243 | 0.00541 | |||
TRUE | Connecticut | Windham | 09 | 015 | 09015 | 9015 | 7 | Connecticut | 313 | Windham | County | County | 98 | 1 | 89 | 3 | 5 | 20 | 0.0102 | 0.90816 | 0.03061 | 0.05102 | |||
TRUE | Delaware | Kent | 10 | 001 | 10001 | 10001 | 8 | Delaware | 314 | Kent | County | County | 81 | 6 | 66 | 7 | 2 | 11 | 0.07407 | 0.81481 | 0.08642 | 0.02469 | |||
TRUE | Delaware | New Castle | 10 | 003 | 10003 | 10003 | 8 | Delaware | 315 | New Castle | County | County | 513 | 15 | 473 | 20 | 5 | 25 | 0.02924 | 0.92203 | 0.03899 | 0.00975 | |||
TRUE | Delaware | Sussex | 10 | 005 | 10005 | 10005 | 8 | Delaware | 316 | Sussex | County | County | 63 | 0 | 53 | 9 | 1 | 14 | 0 | 0.84127 | 0.14286 | 0.01587 | |||
TRUE | District of Columbia | District of Columbia | 11 | 001 | 11001 | 11001 | 9 | District of Columbia | 317 | District of Columbia | District | District | 460 | 32 | 361 | 46 | 21 | 43 | 0.06957 | 0.78478 | 0.1 | 0.04565 | |||
TRUE | Florida | Alachua | 12 | 001 | 12001 | 12001 | 10 | Florida | 318 | Alachua | County | County | 191 | 4 | 73 | 103 | 11 | 20 | 0.02094 | 0.3822 | 0.53927 | 0.05759 | |||
TRUE | Florida | Baker | 12 | 003 | 12003 | 12003 | 10 | Florida | 319 | Baker | County | County | 14 | 6 | 1 | 5 | 2 | 3 | 0.42857 | 0.07143 | 0.35714 | 0.14286 | |||
TRUE | Florida | Bay | 12 | 005 | 12005 | 12005 | 10 | Florida | 320 | Bay | County | County | 93 | 1 | 30 | 60 | 2 | 12 | 0.01075 | 0.32258 | 0.64516 | 0.02151 | |||
TRUE | Florida | Bradford | 12 | 007 | 12007 | 12007 | 10 | Florida | 321 | Bradford | County | County | 6 | 0 | 0 | 5 | 1 | 2 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Florida | Brevard | 12 | 009 | 12009 | 12009 | 10 | Florida | 322 | Brevard | County | County | 319 | 10 | 170 | 126 | 13 | 23 | 0.03135 | 0.53292 | 0.39498 | 0.04075 | |||
TRUE | Florida | Broward | 12 | 011 | 12011 | 12011 | 10 | Florida | 323 | Broward | County | County | 683 | 21 | 471 | 177 | 14 | 57 | 0.03075 | 0.6896 | 0.25915 | 0.0205 | |||
TRUE | Florida | Calhoun | 12 | 013 | 12013 | 12013 | 10 | Florida | 324 | Calhoun | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Florida | Charlotte | 12 | 015 | 12015 | 12015 | 10 | Florida | 325 | Charlotte | County | County | 54 | 2 | 37 | 13 | 2 | 12 | 0.03704 | 0.68519 | 0.24074 | 0.03704 | |||
TRUE | Florida | Citrus | 12 | 017 | 12017 | 12017 | 10 | Florida | 326 | Citrus | County | County | 34 | 2 | 16 | 15 | 1 | 14 | 0.05882 | 0.47059 | 0.44118 | 0.02941 | |||
TRUE | Florida | Clay | 12 | 019 | 12019 | 12019 | 10 | Florida | 327 | Clay | County | County | 94 | 4 | 29 | 57 | 4 | 6 | 0.04255 | 0.30851 | 0.60638 | 0.04255 | |||
TRUE | Florida | Collier | 12 | 021 | 12021 | 12021 | 10 | Florida | 328 | Collier | County | County | 94 | 4 | 61 | 25 | 4 | 19 | 0.04255 | 0.64894 | 0.26596 | 0.04255 | |||
TRUE | Florida | Columbia | 12 | 023 | 12023 | 12023 | 10 | Florida | 329 | Columbia | County | County | 15 | 0 | 9 | 5 | 1 | 4 | 0 | 0.6 | 0.33333 | 0.06667 | |||
FALSE | Florida | De Soto | 12 | 027 | 12027 | 12027 | 10 | Florida | 330 | Desoto | County | County | 8 | 0 | 1 | 6 | 1 | 2 | 0 | 0.125 | 0.75 | 0.125 | |||
TRUE | Florida | Dixie | 12 | 029 | 12029 | 12029 | 10 | Florida | 331 | Dixie | County | County | 5 | 0 | 1 | 4 | 0 | 2 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Florida | Duval | 12 | 031 | 12031 | 12031 | 10 | Florida | 332 | Duval | County | County | 534 | 16 | 169 | 325 | 24 | 38 | 0.02996 | 0.31648 | 0.60861 | 0.04494 | |||
TRUE | Florida | Escambia | 12 | 033 | 12033 | 12033 | 10 | Florida | 333 | Escambia | County | County | 185 | 1 | 49 | 126 | 9 | 14 | 0.00541 | 0.26486 | 0.68108 | 0.04865 | |||
TRUE | Florida | Flagler | 12 | 035 | 12035 | 12035 | 10 | Florida | 334 | Flagler | County | County | 19 | 0 | 15 | 4 | 0 | 3 | 0 | 0.78947 | 0.21053 | 0 | |||
TRUE | Florida | Franklin | 12 | 037 | 12037 | 12037 | 10 | Florida | 335 | Franklin | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Florida | Gadsden | 12 | 039 | 12039 | 12039 | 10 | Florida | 336 | Gadsden | County | County | 5 | 0 | 2 | 3 | 0 | 3 | 0 | 0.4 | 0.6 | 0 | |||
TRUE | Florida | Gilchrist | 12 | 041 | 12041 | 12041 | 10 | Florida | 337 | Gilchrist | County | County | 6 | 1 | 1 | 4 | 0 | 2 | 0.16667 | 0.16667 | 0.66667 | 0 | |||
TRUE | Florida | Glades | 12 | 043 | 12043 | 12043 | 10 | Florida | 338 | Glades | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Florida | Gulf | 12 | 045 | 12045 | 12045 | 10 | Florida | 339 | Gulf | County | County | 8 | 0 | 1 | 7 | 0 | 3 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Florida | Hamilton | 12 | 047 | 12047 | 12047 | 10 | Florida | 340 | Hamilton | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Florida | Hardee | 12 | 049 | 12049 | 12049 | 10 | Florida | 341 | Hardee | County | County | 7 | 0 | 0 | 6 | 1 | 2 | 0 | 0 | 0.85714 | 0.14286 | |||
TRUE | Florida | Hendry | 12 | 051 | 12051 | 12051 | 10 | Florida | 342 | Hendry | County | County | 14 | 2 | 2 | 9 | 1 | 2 | 0.14286 | 0.14286 | 0.64286 | 0.07143 | |||
TRUE | Florida | Hernando | 12 | 053 | 12053 | 12053 | 10 | Florida | 343 | Hernando | County | County | 44 | 3 | 24 | 14 | 3 | 10 | 0.06818 | 0.54545 | 0.31818 | 0.06818 | |||
TRUE | Florida | Highlands | 12 | 055 | 12055 | 12055 | 10 | Florida | 344 | Highlands | County | County | 27 | 1 | 11 | 15 | 0 | 6 | 0.03704 | 0.40741 | 0.55556 | 0 | |||
TRUE | Florida | Hillsborough | 12 | 057 | 12057 | 12057 | 10 | Florida | 345 | Hillsborough | County | County | 513 | 16 | 216 | 253 | 28 | 50 | 0.03119 | 0.42105 | 0.49318 | 0.05458 | |||
TRUE | Florida | Holmes | 12 | 059 | 12059 | 12059 | 10 | Florida | 346 | Holmes | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Florida | Indian River | 12 | 061 | 12061 | 12061 | 10 | Florida | 347 | Indian River | County | County | 45 | 2 | 22 | 21 | 0 | 9 | 0.04444 | 0.48889 | 0.46667 | 0 | |||
TRUE | Florida | Jackson | 12 | 063 | 12063 | 12063 | 10 | Florida | 348 | Jackson | County | County | 12 | 0 | 2 | 8 | 2 | 6 | 0 | 0.16667 | 0.66667 | 0.16667 | |||
TRUE | Florida | Jefferson | 12 | 065 | 12065 | 12065 | 10 | Florida | 349 | Jefferson | County | County | 11 | 0 | 3 | 8 | 0 | 4 | 0 | 0.27273 | 0.72727 | 0 | |||
TRUE | Florida | Lafayette | 12 | 067 | 12067 | 12067 | 10 | Florida | 350 | Lafayette | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Florida | Lake | 12 | 069 | 12069 | 12069 | 10 | Florida | 351 | Lake | County | County | 102 | 3 | 55 | 40 | 4 | 20 | 0.02941 | 0.53922 | 0.39216 | 0.03922 | |||
TRUE | Florida | Lee | 12 | 071 | 12071 | 12071 | 10 | Florida | 352 | Lee | County | County | 166 | 14 | 98 | 51 | 3 | 30 | 0.08434 | 0.59036 | 0.30723 | 0.01807 | |||
TRUE | Florida | Leon | 12 | 073 | 12073 | 12073 | 10 | Florida | 353 | Leon | County | County | 223 | 4 | 63 | 149 | 7 | 12 | 0.01794 | 0.28251 | 0.66816 | 0.03139 | |||
TRUE | Florida | Levy | 12 | 075 | 12075 | 12075 | 10 | Florida | 354 | Levy | County | County | 11 | 1 | 4 | 6 | 0 | 5 | 0.09091 | 0.36364 | 0.54545 | 0 | |||
TRUE | Florida | Liberty | 12 | 077 | 12077 | 12077 | 10 | Florida | 355 | Liberty | County | County | 4 | 1 | 1 | 1 | 1 | 2 | 0.25 | 0.25 | 0.25 | 0.25 | |||
TRUE | Florida | Madison | 12 | 079 | 12079 | 12079 | 10 | Florida | 356 | Madison | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Florida | Manatee | 12 | 081 | 12081 | 12081 | 10 | Florida | 357 | Manatee | County | County | 119 | 6 | 59 | 49 | 5 | 17 | 0.05042 | 0.4958 | 0.41176 | 0.04202 | |||
TRUE | Florida | Marion | 12 | 083 | 12083 | 12083 | 10 | Florida | 358 | Marion | County | County | 94 | 4 | 41 | 46 | 3 | 22 | 0.04255 | 0.43617 | 0.48936 | 0.03191 | |||
TRUE | Florida | Martin | 12 | 085 | 12085 | 12085 | 10 | Florida | 359 | Martin | County | County | 46 | 2 | 30 | 14 | 0 | 6 | 0.04348 | 0.65217 | 0.30435 | 0 | |||
TRUE | Florida | Miami-Dade | 12 | 086 | 12086 | 12086 | 10 | Florida | 360 | Miami-Dade | County | County | 822 | 12 | 517 | 265 | 28 | 78 | 0.0146 | 0.62895 | 0.32238 | 0.03406 | |||
TRUE | Florida | Monroe | 12 | 087 | 12087 | 12087 | 10 | Florida | 361 | Monroe | County | County | 37 | 0 | 20 | 16 | 1 | 8 | 0 | 0.54054 | 0.43243 | 0.02703 | |||
TRUE | Florida | Nassau | 12 | 089 | 12089 | 12089 | 10 | Florida | 362 | Nassau | County | County | 32 | 1 | 6 | 21 | 4 | 4 | 0.03125 | 0.1875 | 0.65625 | 0.125 | |||
TRUE | Florida | Okaloosa | 12 | 091 | 12091 | 12091 | 10 | Florida | 363 | Okaloosa | County | County | 121 | 5 | 45 | 66 | 5 | 12 | 0.04132 | 0.3719 | 0.54545 | 0.04132 | |||
TRUE | Florida | Okeechobee | 12 | 093 | 12093 | 12093 | 10 | Florida | 364 | Okeechobee | County | County | 13 | 0 | 3 | 9 | 1 | 2 | 0 | 0.23077 | 0.69231 | 0.07692 | |||
TRUE | Florida | Orange | 12 | 095 | 12095 | 12095 | 10 | Florida | 365 | Orange | County | County | 575 | 13 | 302 | 235 | 25 | 44 | 0.02261 | 0.52522 | 0.4087 | 0.04348 | |||
TRUE | Florida | Osceola | 12 | 097 | 12097 | 12097 | 10 | Florida | 366 | Osceola | County | County | 58 | 4 | 33 | 20 | 1 | 9 | 0.06897 | 0.56897 | 0.34483 | 0.01724 | |||
TRUE | Florida | Palm Beach | 12 | 099 | 12099 | 12099 | 10 | Florida | 367 | Palm Beach | County | County | 444 | 18 | 303 | 106 | 17 | 48 | 0.04054 | 0.68243 | 0.23874 | 0.03829 | |||
TRUE | Florida | Pasco | 12 | 101 | 12101 | 12101 | 10 | Florida | 368 | Pasco | County | County | 119 | 4 | 81 | 29 | 5 | 18 | 0.03361 | 0.68067 | 0.2437 | 0.04202 | |||
TRUE | Florida | Pinellas | 12 | 103 | 12103 | 12103 | 10 | Florida | 369 | Pinellas | County | County | 409 | 22 | 231 | 147 | 9 | 46 | 0.05379 | 0.56479 | 0.35941 | 0.022 | |||
TRUE | Florida | Polk | 12 | 105 | 12105 | 12105 | 10 | Florida | 370 | Polk | County | County | 250 | 31 | 59 | 154 | 6 | 32 | 0.124 | 0.236 | 0.616 | 0.024 | |||
TRUE | Florida | Putnam | 12 | 107 | 12107 | 12107 | 10 | Florida | 371 | Putnam | County | County | 26 | 1 | 6 | 19 | 0 | 7 | 0.03846 | 0.23077 | 0.73077 | 0 | |||
FALSE | Florida | St Johns | 12 | 109 | 12109 | 12109 | 10 | Florida | 372 | Saint Johns | County | County | 72 | 3 | 30 | 35 | 4 | 7 | 0.04167 | 0.41667 | 0.48611 | 0.05556 | |||
FALSE | Florida | St Lucie | 12 | 111 | 12111 | 12111 | 10 | Florida | 373 | Saint Lucie | County | County | 51 | 3 | 19 | 26 | 3 | 12 | 0.05882 | 0.37255 | 0.5098 | 0.05882 | |||
TRUE | Florida | Santa Rosa | 12 | 113 | 12113 | 12113 | 10 | Florida | 374 | Santa Rosa | County | County | 67 | 1 | 22 | 42 | 2 | 7 | 0.01493 | 0.32836 | 0.62687 | 0.02985 | |||
TRUE | Florida | Sarasota | 12 | 115 | 12115 | 12115 | 10 | Florida | 375 | Sarasota | County | County | 145 | 8 | 85 | 48 | 4 | 21 | 0.05517 | 0.58621 | 0.33103 | 0.02759 | |||
TRUE | Florida | Seminole | 12 | 117 | 12117 | 12117 | 10 | Florida | 376 | Seminole | County | County | 252 | 9 | 136 | 99 | 8 | 13 | 0.03571 | 0.53968 | 0.39286 | 0.03175 | |||
TRUE | Florida | Sumter | 12 | 119 | 12119 | 12119 | 10 | Florida | 377 | Sumter | County | County | 9 | 0 | 5 | 3 | 1 | 6 | 0 | 0.55556 | 0.33333 | 0.11111 | |||
TRUE | Florida | Suwannee | 12 | 121 | 12121 | 12121 | 10 | Florida | 378 | Suwannee | County | County | 7 | 0 | 1 | 6 | 0 | 2 | 0 | 0.14286 | 0.85714 | 0 | |||
TRUE | Florida | Taylor | 12 | 123 | 12123 | 12123 | 10 | Florida | 379 | Taylor | County | County | 12 | 0 | 4 | 6 | 2 | 4 | 0 | 0.33333 | 0.5 | 0.16667 | |||
TRUE | Florida | Union | 12 | 125 | 12125 | 12125 | 10 | Florida | 380 | Union | County | County | 4 | 0 | 1 | 2 | 1 | 2 | 0 | 0.25 | 0.5 | 0.25 | |||
TRUE | Florida | Volusia | 12 | 127 | 12127 | 12127 | 10 | Florida | 381 | Volusia | County | County | 211 | 23 | 121 | 64 | 3 | 28 | 0.109 | 0.57346 | 0.30332 | 0.01422 | |||
TRUE | Florida | Wakulla | 12 | 129 | 12129 | 12129 | 10 | Florida | 382 | Wakulla | County | County | 13 | 0 | 7 | 6 | 0 | 3 | 0 | 0.53846 | 0.46154 | 0 | |||
TRUE | Florida | Walton | 12 | 131 | 12131 | 12131 | 10 | Florida | 383 | Walton | County | County | 8 | 0 | 2 | 6 | 0 | 5 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Florida | Washington | 12 | 133 | 12133 | 12133 | 10 | Florida | 384 | Washington | County | County | 5 | 0 | 0 | 4 | 1 | 2 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Georgia | Appling | 13 | 001 | 13001 | 13001 | 11 | Georgia | 385 | Appling | County | County | 10 | 0 | 2 | 7 | 1 | 1 | 0 | 0.2 | 0.7 | 0.1 | |||
TRUE | Georgia | Atkinson | 13 | 003 | 13003 | 13003 | 11 | Georgia | 386 | Atkinson | County | County | 5 | 0 | 2 | 3 | 0 | 2 | 0 | 0.4 | 0.6 | 0 | |||
TRUE | Georgia | Bacon | 13 | 005 | 13005 | 13005 | 11 | Georgia | 387 | Bacon | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Baker | 13 | 007 | 13007 | 13007 | 11 | Georgia | 388 | Baker | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | Georgia | Baldwin | 13 | 009 | 13009 | 13009 | 11 | Georgia | 389 | Baldwin | County | County | 14 | 0 | 1 | 12 | 1 | 1 | 0 | 0.07143 | 0.85714 | 0.07143 | |||
TRUE | Georgia | Banks | 13 | 011 | 13011 | 13011 | 11 | Georgia | 390 | Banks | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Barrow | 13 | 013 | 13013 | 13013 | 11 | Georgia | 391 | Barrow | County | County | 30 | 0 | 2 | 27 | 1 | 4 | 0 | 0.06667 | 0.9 | 0.03333 | |||
TRUE | Georgia | Bartow | 13 | 015 | 13015 | 13015 | 11 | Georgia | 392 | Bartow | County | County | 40 | 2 | 5 | 29 | 4 | 6 | 0.05 | 0.125 | 0.725 | 0.1 | |||
TRUE | Georgia | Ben Hill | 13 | 017 | 13017 | 13017 | 11 | Georgia | 393 | Ben Hill | County | County | 3 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 0.66667 | 0.33333 | |||
TRUE | Georgia | Berrien | 13 | 019 | 13019 | 13019 | 11 | Georgia | 394 | Berrien | County | County | 12 | 0 | 0 | 10 | 2 | 2 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Georgia | Bibb | 13 | 021 | 13021 | 13021 | 11 | Georgia | 395 | Bibb | County | County | 99 | 1 | 9 | 83 | 6 | 11 | 0.0101 | 0.09091 | 0.83838 | 0.06061 | |||
TRUE | Georgia | Bleckley | 13 | 023 | 13023 | 13023 | 11 | Georgia | 396 | Bleckley | County | County | 8 | 0 | 0 | 5 | 3 | 1 | 0 | 0 | 0.625 | 0.375 | |||
TRUE | Georgia | Brantley | 13 | 025 | 13025 | 13025 | 11 | Georgia | 397 | Brantley | County | County | 4 | 0 | 0 | 4 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Brooks | 13 | 027 | 13027 | 13027 | 11 | Georgia | 398 | Brooks | County | County | 5 | 0 | 0 | 5 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Bryan | 13 | 029 | 13029 | 13029 | 11 | Georgia | 399 | Bryan | County | County | 10 | 0 | 1 | 9 | 0 | 2 | 0 | 0.1 | 0.9 | 0 | |||
TRUE | Georgia | Bulloch | 13 | 031 | 13031 | 13031 | 11 | Georgia | 400 | Bulloch | County | County | 32 | 0 | 3 | 28 | 1 | 5 | 0 | 0.09375 | 0.875 | 0.03125 | |||
TRUE | Georgia | Burke | 13 | 033 | 13033 | 13033 | 11 | Georgia | 401 | Burke | County | County | 4 | 0 | 1 | 3 | 0 | 1 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Georgia | Butts | 13 | 035 | 13035 | 13035 | 11 | Georgia | 402 | Butts | County | County | 13 | 0 | 2 | 9 | 2 | 4 | 0 | 0.15385 | 0.69231 | 0.15385 | |||
TRUE | Georgia | Calhoun | 13 | 037 | 13037 | 13037 | 11 | Georgia | 403 | Calhoun | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Camden | 13 | 039 | 13039 | 13039 | 11 | Georgia | 404 | Camden | County | County | 17 | 1 | 7 | 7 | 2 | 5 | 0.05882 | 0.41176 | 0.41176 | 0.11765 | |||
TRUE | Georgia | Candler | 13 | 043 | 13043 | 13043 | 11 | Georgia | 405 | Candler | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Carroll | 13 | 045 | 13045 | 13045 | 11 | Georgia | 406 | Carroll | County | County | 53 | 1 | 5 | 46 | 1 | 10 | 0.01887 | 0.09434 | 0.86792 | 0.01887 | |||
TRUE | Georgia | Catoosa | 13 | 047 | 13047 | 13047 | 11 | Georgia | 407 | Catoosa | County | County | 28 | 0 | 1 | 27 | 0 | 2 | 0 | 0.03571 | 0.96429 | 0 | |||
TRUE | Georgia | Charlton | 13 | 049 | 13049 | 13049 | 11 | Georgia | 408 | Charlton | County | County | 4 | 0 | 2 | 2 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Georgia | Chatham | 13 | 051 | 13051 | 13051 | 11 | Georgia | 409 | Chatham | County | County | 134 | 2 | 28 | 103 | 1 | 14 | 0.01493 | 0.20896 | 0.76866 | 0.00746 | |||
TRUE | Georgia | Chattahoochee | 13 | 053 | 13053 | 13053 | 11 | Georgia | 410 | Chattahoochee | County | County | 8 | 1 | 4 | 3 | 0 | 2 | 0.125 | 0.5 | 0.375 | 0 | |||
TRUE | Georgia | Chattooga | 13 | 055 | 13055 | 13055 | 11 | Georgia | 411 | Chattooga | County | County | 18 | 0 | 1 | 17 | 0 | 4 | 0 | 0.05556 | 0.94444 | 0 | |||
TRUE | Georgia | Cherokee | 13 | 057 | 13057 | 13057 | 11 | Georgia | 412 | Cherokee | County | County | 127 | 5 | 14 | 105 | 3 | 7 | 0.03937 | 0.11024 | 0.82677 | 0.02362 | |||
TRUE | Georgia | Clarke | 13 | 059 | 13059 | 13059 | 11 | Georgia | 413 | Clarke | County | County | 105 | 2 | 11 | 86 | 6 | 8 | 0.01905 | 0.10476 | 0.81905 | 0.05714 | |||
TRUE | Georgia | Clay | 13 | 061 | 13061 | 13061 | 11 | Georgia | 414 | Clay | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Clayton | 13 | 063 | 13063 | 13063 | 11 | Georgia | 415 | Clayton | County | County | 93 | 2 | 23 | 65 | 3 | 10 | 0.02151 | 0.24731 | 0.69892 | 0.03226 | |||
TRUE | Georgia | Clinch | 13 | 065 | 13065 | 13065 | 11 | Georgia | 416 | Clinch | County | County | 5 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Cobb | 13 | 067 | 13067 | 13067 | 11 | Georgia | 417 | Cobb | County | County | 596 | 14 | 95 | 462 | 25 | 29 | 0.02349 | 0.1594 | 0.77517 | 0.04195 | |||
TRUE | Georgia | Coffee | 13 | 069 | 13069 | 13069 | 11 | Georgia | 418 | Coffee | County | County | 7 | 0 | 0 | 7 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Colquitt | 13 | 071 | 13071 | 13071 | 11 | Georgia | 419 | Colquitt | County | County | 29 | 0 | 3 | 23 | 3 | 5 | 0 | 0.10345 | 0.7931 | 0.10345 | |||
TRUE | Georgia | Columbia | 13 | 073 | 13073 | 13073 | 11 | Georgia | 420 | Columbia | County | County | 76 | 2 | 16 | 57 | 1 | 5 | 0.02632 | 0.21053 | 0.75 | 0.01316 | |||
TRUE | Georgia | Cook | 13 | 075 | 13075 | 13075 | 11 | Georgia | 421 | Cook | County | County | 7 | 0 | 1 | 6 | 0 | 3 | 0 | 0.14286 | 0.85714 | 0 | |||
TRUE | Georgia | Coweta | 13 | 077 | 13077 | 13077 | 11 | Georgia | 422 | Coweta | County | County | 44 | 0 | 5 | 37 | 2 | 6 | 0 | 0.11364 | 0.84091 | 0.04545 | |||
TRUE | Georgia | Crawford | 13 | 079 | 13079 | 13079 | 11 | Georgia | 423 | Crawford | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Crisp | 13 | 081 | 13081 | 13081 | 11 | Georgia | 424 | Crisp | County | County | 4 | 0 | 1 | 3 | 0 | 1 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Georgia | Dade | 13 | 083 | 13083 | 13083 | 11 | Georgia | 425 | Dade | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Dawson | 13 | 085 | 13085 | 13085 | 11 | Georgia | 426 | Dawson | County | County | 6 | 0 | 2 | 4 | 0 | 1 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Georgia | Decatur | 13 | 087 | 13087 | 13087 | 11 | Georgia | 427 | Decatur | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
FALSE | Georgia | De Kalb | 13 | 089 | 13089 | 13089 | 11 | Georgia | 428 | DeKalb | County | County | 531 | 13 | 94 | 371 | 53 | 27 | 0.02448 | 0.17702 | 0.69868 | 0.09981 | |||
TRUE | Georgia | Dodge | 13 | 091 | 13091 | 13091 | 11 | Georgia | 429 | Dodge | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Dooly | 13 | 093 | 13093 | 13093 | 11 | Georgia | 430 | Dooly | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Georgia | Dougherty | 13 | 095 | 13095 | 13095 | 11 | Georgia | 431 | Dougherty | County | County | 49 | 1 | 10 | 33 | 5 | 4 | 0.02041 | 0.20408 | 0.67347 | 0.10204 | |||
TRUE | Georgia | Douglas | 13 | 097 | 13097 | 13097 | 11 | Georgia | 432 | Douglas | County | County | 58 | 2 | 6 | 46 | 4 | 5 | 0.03448 | 0.10345 | 0.7931 | 0.06897 | |||
TRUE | Georgia | Early | 13 | 099 | 13099 | 13099 | 11 | Georgia | 433 | Early | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Echols | 13 | 101 | 13101 | 13101 | 11 | Georgia | 434 | Echols | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Effingham | 13 | 103 | 13103 | 13103 | 11 | Georgia | 435 | Effingham | County | County | 18 | 2 | 2 | 12 | 2 | 4 | 0.11111 | 0.11111 | 0.66667 | 0.11111 | |||
TRUE | Georgia | Elbert | 13 | 105 | 13105 | 13105 | 11 | Georgia | 436 | Elbert | County | County | 8 | 0 | 1 | 5 | 2 | 3 | 0 | 0.125 | 0.625 | 0.25 | |||
TRUE | Georgia | Emanuel | 13 | 107 | 13107 | 13107 | 11 | Georgia | 437 | Emanuel | County | County | 5 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Evans | 13 | 109 | 13109 | 13109 | 11 | Georgia | 438 | Evans | County | County | 6 | 0 | 1 | 5 | 0 | 2 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Georgia | Fannin | 13 | 111 | 13111 | 13111 | 11 | Georgia | 439 | Fannin | County | County | 10 | 0 | 3 | 7 | 0 | 4 | 0 | 0.3 | 0.7 | 0 | |||
TRUE | Georgia | Fayette | 13 | 113 | 13113 | 13113 | 11 | Georgia | 440 | Fayette | County | County | 75 | 4 | 14 | 56 | 1 | 5 | 0.05333 | 0.18667 | 0.74667 | 0.01333 | |||
TRUE | Georgia | Floyd | 13 | 115 | 13115 | 13115 | 11 | Georgia | 441 | Floyd | County | County | 76 | 0 | 8 | 63 | 5 | 9 | 0 | 0.10526 | 0.82895 | 0.06579 | |||
TRUE | Georgia | Forsyth | 13 | 117 | 13117 | 13117 | 11 | Georgia | 442 | Forsyth | County | County | 200 | 10 | 43 | 119 | 28 | 3 | 0.05 | 0.215 | 0.595 | 0.14 | |||
TRUE | Georgia | Franklin | 13 | 119 | 13119 | 13119 | 11 | Georgia | 443 | Franklin | County | County | 3 | 0 | 1 | 2 | 0 | 3 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Georgia | Fulton | 13 | 121 | 13121 | 13121 | 11 | Georgia | 444 | Fulton | County | County | 758 | 14 | 132 | 575 | 37 | 35 | 0.01847 | 0.17414 | 0.75858 | 0.04881 | |||
TRUE | Georgia | Gilmer | 13 | 123 | 13123 | 13123 | 11 | Georgia | 445 | Gilmer | County | County | 8 | 0 | 1 | 7 | 0 | 1 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Georgia | Glascock | 13 | 125 | 13125 | 13125 | 11 | Georgia | 446 | Glascock | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | Georgia | Glynn | 13 | 127 | 13127 | 13127 | 11 | Georgia | 447 | Glynn | County | County | 48 | 1 | 7 | 39 | 1 | 5 | 0.02083 | 0.14583 | 0.8125 | 0.02083 | |||
TRUE | Georgia | Gordon | 13 | 129 | 13129 | 13129 | 11 | Georgia | 448 | Gordon | County | County | 25 | 0 | 4 | 20 | 1 | 4 | 0 | 0.16 | 0.8 | 0.04 | |||
TRUE | Georgia | Grady | 13 | 131 | 13131 | 13131 | 11 | Georgia | 449 | Grady | County | County | 7 | 0 | 1 | 6 | 0 | 2 | 0 | 0.14286 | 0.85714 | 0 | |||
TRUE | Georgia | Greene | 13 | 133 | 13133 | 13133 | 11 | Georgia | 450 | Greene | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Gwinnett | 13 | 135 | 13135 | 13135 | 11 | Georgia | 451 | Gwinnett | County | County | 537 | 9 | 105 | 405 | 18 | 20 | 0.01676 | 0.19553 | 0.75419 | 0.03352 | |||
TRUE | Georgia | Habersham | 13 | 137 | 13137 | 13137 | 11 | Georgia | 452 | Habersham | County | County | 12 | 0 | 1 | 10 | 1 | 4 | 0 | 0.08333 | 0.83333 | 0.08333 | |||
TRUE | Georgia | Hall | 13 | 139 | 13139 | 13139 | 11 | Georgia | 453 | Hall | County | County | 71 | 0 | 5 | 56 | 10 | 8 | 0 | 0.07042 | 0.78873 | 0.14085 | |||
TRUE | Georgia | Hancock | 13 | 141 | 13141 | 13141 | 11 | Georgia | 454 | Hancock | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Haralson | 13 | 143 | 13143 | 13143 | 11 | Georgia | 455 | Haralson | County | County | 14 | 0 | 1 | 13 | 0 | 3 | 0 | 0.07143 | 0.92857 | 0 | |||
TRUE | Georgia | Harris | 13 | 145 | 13145 | 13145 | 11 | Georgia | 456 | Harris | County | County | 6 | 0 | 1 | 5 | 0 | 3 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Georgia | Hart | 13 | 147 | 13147 | 13147 | 11 | Georgia | 457 | Hart | County | County | 5 | 0 | 1 | 4 | 0 | 1 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Georgia | Heard | 13 | 149 | 13149 | 13149 | 11 | Georgia | 458 | Heard | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Henry | 13 | 151 | 13151 | 13151 | 11 | Georgia | 459 | Henry | County | County | 87 | 2 | 15 | 63 | 7 | 6 | 0.02299 | 0.17241 | 0.72414 | 0.08046 | |||
TRUE | Georgia | Houston | 13 | 153 | 13153 | 13153 | 11 | Georgia | 460 | Houston | County | County | 85 | 2 | 18 | 61 | 4 | 6 | 0.02353 | 0.21176 | 0.71765 | 0.04706 | |||
TRUE | Georgia | Irwin | 13 | 155 | 13155 | 13155 | 11 | Georgia | 461 | Irwin | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Jackson | 13 | 157 | 13157 | 13157 | 11 | Georgia | 462 | Jackson | County | County | 19 | 0 | 3 | 14 | 2 | 7 | 0 | 0.15789 | 0.73684 | 0.10526 | |||
TRUE | Georgia | Jasper | 13 | 159 | 13159 | 13159 | 11 | Georgia | 463 | Jasper | County | County | 7 | 0 | 0 | 6 | 1 | 2 | 0 | 0 | 0.85714 | 0.14286 | |||
TRUE | Georgia | Jeff Davis | 13 | 161 | 13161 | 13161 | 11 | Georgia | 464 | Jeff Davis | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Jefferson | 13 | 163 | 13163 | 13163 | 11 | Georgia | 465 | Jefferson | County | County | 6 | 0 | 3 | 3 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Georgia | Jenkins | 13 | 165 | 13165 | 13165 | 11 | Georgia | 466 | Jenkins | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Georgia | Johnson | 13 | 167 | 13167 | 13167 | 11 | Georgia | 467 | Johnson | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Jones | 13 | 169 | 13169 | 13169 | 11 | Georgia | 468 | Jones | County | County | 10 | 0 | 0 | 10 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Lamar | 13 | 171 | 13171 | 13171 | 11 | Georgia | 469 | Lamar | County | County | 9 | 1 | 2 | 5 | 1 | 3 | 0.11111 | 0.22222 | 0.55556 | 0.11111 | |||
TRUE | Georgia | Lanier | 13 | 173 | 13173 | 13173 | 11 | Georgia | 470 | Lanier | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Georgia | Laurens | 13 | 175 | 13175 | 13175 | 11 | Georgia | 471 | Laurens | County | County | 15 | 0 | 2 | 13 | 0 | 5 | 0 | 0.13333 | 0.86667 | 0 | |||
TRUE | Georgia | Lee | 13 | 177 | 13177 | 13177 | 11 | Georgia | 472 | Lee | County | County | 29 | 0 | 3 | 23 | 3 | 2 | 0 | 0.10345 | 0.7931 | 0.10345 | |||
TRUE | Georgia | Liberty | 13 | 179 | 13179 | 13179 | 11 | Georgia | 473 | Liberty | County | County | 29 | 2 | 13 | 14 | 0 | 3 | 0.06897 | 0.44828 | 0.48276 | 0 | |||
TRUE | Georgia | Lincoln | 13 | 181 | 13181 | 13181 | 11 | Georgia | 474 | Lincoln | County | County | 3 | 0 | 1 | 2 | 0 | 1 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Georgia | Long | 13 | 183 | 13183 | 13183 | 11 | Georgia | 475 | Long | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Georgia | Lowndes | 13 | 185 | 13185 | 13185 | 11 | Georgia | 476 | Lowndes | County | County | 110 | 9 | 25 | 74 | 2 | 10 | 0.08182 | 0.22727 | 0.67273 | 0.01818 | |||
TRUE | Georgia | Lumpkin | 13 | 187 | 13187 | 13187 | 11 | Georgia | 477 | Lumpkin | County | County | 5 | 1 | 0 | 4 | 0 | 1 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | Georgia | McDuffie | 13 | 189 | 13189 | 13189 | 11 | Georgia | 481 | McDuffie | County | County | 7 | 0 | 1 | 6 | 0 | 2 | 0 | 0.14286 | 0.85714 | 0 | |||
TRUE | Georgia | McIntosh | 13 | 191 | 13191 | 13191 | 11 | Georgia | 482 | McIntosh | County | County | 9 | 6 | 0 | 2 | 1 | 2 | 0.66667 | 0 | 0.22222 | 0.11111 | |||
TRUE | Georgia | Macon | 13 | 193 | 13193 | 13193 | 11 | Georgia | 478 | Macon | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Georgia | Madison | 13 | 195 | 13195 | 13195 | 11 | Georgia | 479 | Madison | County | County | 6 | 0 | 0 | 6 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Marion | 13 | 197 | 13197 | 13197 | 11 | Georgia | 480 | Marion | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Meriwether | 13 | 199 | 13199 | 13199 | 11 | Georgia | 483 | Meriwether | County | County | 7 | 0 | 0 | 7 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Miller | 13 | 201 | 13201 | 13201 | 11 | Georgia | 484 | Miller | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Georgia | Mitchell | 13 | 205 | 13205 | 13205 | 11 | Georgia | 485 | Mitchell | County | County | 5 | 0 | 3 | 2 | 0 | 3 | 0 | 0.6 | 0.4 | 0 | |||
TRUE | Georgia | Monroe | 13 | 207 | 13207 | 13207 | 11 | Georgia | 486 | Monroe | County | County | 9 | 0 | 1 | 7 | 1 | 2 | 0 | 0.11111 | 0.77778 | 0.11111 | |||
TRUE | Georgia | Montgomery | 13 | 209 | 13209 | 13209 | 11 | Georgia | 487 | Montgomery | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Morgan | 13 | 211 | 13211 | 13211 | 11 | Georgia | 488 | Morgan | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Murray | 13 | 213 | 13213 | 13213 | 11 | Georgia | 489 | Murray | County | County | 16 | 1 | 4 | 10 | 1 | 2 | 0.0625 | 0.25 | 0.625 | 0.0625 | |||
TRUE | Georgia | Muscogee | 13 | 215 | 13215 | 13215 | 11 | Georgia | 490 | Muscogee | County | County | 129 | 2 | 14 | 105 | 8 | 10 | 0.0155 | 0.10853 | 0.81395 | 0.06202 | |||
TRUE | Georgia | Newton | 13 | 217 | 13217 | 13217 | 11 | Georgia | 491 | Newton | County | County | 50 | 0 | 7 | 37 | 6 | 5 | 0 | 0.14 | 0.74 | 0.12 | |||
TRUE | Georgia | Oconee | 13 | 219 | 13219 | 13219 | 11 | Georgia | 492 | Oconee | County | County | 18 | 0 | 3 | 14 | 1 | 2 | 0 | 0.16667 | 0.77778 | 0.05556 | |||
TRUE | Georgia | Oglethorpe | 13 | 221 | 13221 | 13221 | 11 | Georgia | 493 | Oglethorpe | County | County | 5 | 0 | 2 | 3 | 0 | 4 | 0 | 0.4 | 0.6 | 0 | |||
TRUE | Georgia | Paulding | 13 | 223 | 13223 | 13223 | 11 | Georgia | 494 | Paulding | County | County | 28 | 0 | 3 | 24 | 1 | 3 | 0 | 0.10714 | 0.85714 | 0.03571 | |||
TRUE | Georgia | Peach | 13 | 225 | 13225 | 13225 | 11 | Georgia | 495 | Peach | County | County | 13 | 0 | 3 | 10 | 0 | 2 | 0 | 0.23077 | 0.76923 | 0 | |||
TRUE | Georgia | Pickens | 13 | 227 | 13227 | 13227 | 11 | Georgia | 496 | Pickens | County | County | 9 | 0 | 1 | 8 | 0 | 2 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Georgia | Pierce | 13 | 229 | 13229 | 13229 | 11 | Georgia | 497 | Pierce | County | County | 4 | 1 | 0 | 3 | 0 | 2 | 0.25 | 0 | 0.75 | 0 | |||
TRUE | Georgia | Pike | 13 | 231 | 13231 | 13231 | 11 | Georgia | 498 | Pike | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Polk | 13 | 233 | 13233 | 13233 | 11 | Georgia | 499 | Polk | County | County | 18 | 0 | 1 | 17 | 0 | 2 | 0 | 0.05556 | 0.94444 | 0 | |||
TRUE | Georgia | Pulaski | 13 | 235 | 13235 | 13235 | 11 | Georgia | 500 | Pulaski | County | County | 7 | 0 | 2 | 4 | 1 | 1 | 0 | 0.28571 | 0.57143 | 0.14286 | |||
TRUE | Georgia | Putnam | 13 | 237 | 13237 | 13237 | 11 | Georgia | 501 | Putnam | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Quitman | 13 | 239 | 13239 | 13239 | 11 | Georgia | 502 | Quitman | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Rabun | 13 | 241 | 13241 | 13241 | 11 | Georgia | 503 | Rabun | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Randolph | 13 | 243 | 13243 | 13243 | 11 | Georgia | 504 | Randolph | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Georgia | Richmond | 13 | 245 | 13245 | 13245 | 11 | Georgia | 505 | Richmond | County | County | 96 | 0 | 22 | 69 | 5 | 6 | 0 | 0.22917 | 0.71875 | 0.05208 | |||
TRUE | Georgia | Rockdale | 13 | 247 | 13247 | 13247 | 11 | Georgia | 506 | Rockdale | County | County | 43 | 0 | 3 | 36 | 4 | 3 | 0 | 0.06977 | 0.83721 | 0.09302 | |||
TRUE | Georgia | Schley | 13 | 249 | 13249 | 13249 | 11 | Georgia | 507 | Schley | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Screven | 13 | 251 | 13251 | 13251 | 11 | Georgia | 508 | Screven | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Georgia | Seminole | 13 | 253 | 13253 | 13253 | 11 | Georgia | 509 | Seminole | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Spalding | 13 | 255 | 13255 | 13255 | 11 | Georgia | 510 | Spalding | County | County | 33 | 0 | 0 | 30 | 3 | 3 | 0 | 0 | 0.90909 | 0.09091 | |||
TRUE | Georgia | Stephens | 13 | 257 | 13257 | 13257 | 11 | Georgia | 511 | Stephens | County | County | 19 | 1 | 4 | 13 | 1 | 1 | 0.05263 | 0.21053 | 0.68421 | 0.05263 | |||
TRUE | Georgia | Stewart | 13 | 259 | 13259 | 13259 | 11 | Georgia | 512 | Stewart | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Sumter | 13 | 261 | 13261 | 13261 | 11 | Georgia | 513 | Sumter | County | County | 15 | 0 | 4 | 9 | 2 | 3 | 0 | 0.26667 | 0.6 | 0.13333 | |||
TRUE | Georgia | Talbot | 13 | 263 | 13263 | 13263 | 11 | Georgia | 514 | Talbot | County | County | 2 | 0 | 1 | 1 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Georgia | Taliaferro | 13 | 265 | 13265 | 13265 | 11 | Georgia | 515 | Taliaferro | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Tattnall | 13 | 267 | 13267 | 13267 | 11 | Georgia | 516 | Tattnall | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Taylor | 13 | 269 | 13269 | 13269 | 11 | Georgia | 517 | Taylor | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Telfair | 13 | 271 | 13271 | 13271 | 11 | Georgia | 518 | Telfair | County | County | 3 | 0 | 0 | 3 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Terrell | 13 | 273 | 13273 | 13273 | 11 | Georgia | 519 | Terrell | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Thomas | 13 | 275 | 13275 | 13275 | 11 | Georgia | 520 | Thomas | County | County | 21 | 1 | 0 | 20 | 0 | 5 | 0.04762 | 0 | 0.95238 | 0 | |||
TRUE | Georgia | Tift | 13 | 277 | 13277 | 13277 | 11 | Georgia | 521 | Tift | County | County | 19 | 0 | 2 | 17 | 0 | 3 | 0 | 0.10526 | 0.89474 | 0 | |||
TRUE | Georgia | Toombs | 13 | 279 | 13279 | 13279 | 11 | Georgia | 522 | Toombs | County | County | 17 | 0 | 3 | 14 | 0 | 2 | 0 | 0.17647 | 0.82353 | 0 | |||
TRUE | Georgia | Towns | 13 | 281 | 13281 | 13281 | 11 | Georgia | 523 | Towns | County | County | 7 | 0 | 2 | 5 | 0 | 2 | 0 | 0.28571 | 0.71429 | 0 | |||
TRUE | Georgia | Treutlen | 13 | 283 | 13283 | 13283 | 11 | Georgia | 524 | Treutlen | County | County | 2 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Georgia | Troup | 13 | 285 | 13285 | 13285 | 11 | Georgia | 525 | Troup | County | County | 40 | 1 | 2 | 33 | 4 | 3 | 0.025 | 0.05 | 0.825 | 0.1 | |||
TRUE | Georgia | Turner | 13 | 287 | 13287 | 13287 | 11 | Georgia | 526 | Turner | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Georgia | Twiggs | 13 | 289 | 13289 | 13289 | 11 | Georgia | 527 | Twiggs | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Union | 13 | 291 | 13291 | 13291 | 11 | Georgia | 528 | Union | County | County | 6 | 0 | 1 | 5 | 0 | 3 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Georgia | Upson | 13 | 293 | 13293 | 13293 | 11 | Georgia | 529 | Upson | County | County | 17 | 0 | 3 | 11 | 3 | 1 | 0 | 0.17647 | 0.64706 | 0.17647 | |||
TRUE | Georgia | Walker | 13 | 295 | 13295 | 13295 | 11 | Georgia | 530 | Walker | County | County | 34 | 1 | 2 | 30 | 1 | 6 | 0.02941 | 0.05882 | 0.88235 | 0.02941 | |||
TRUE | Georgia | Walton | 13 | 297 | 13297 | 13297 | 11 | Georgia | 531 | Walton | County | County | 44 | 1 | 2 | 40 | 1 | 6 | 0.02273 | 0.04545 | 0.90909 | 0.02273 | |||
TRUE | Georgia | Ware | 13 | 299 | 13299 | 13299 | 11 | Georgia | 532 | Ware | County | County | 19 | 0 | 2 | 15 | 2 | 4 | 0 | 0.10526 | 0.78947 | 0.10526 | |||
TRUE | Georgia | Warren | 13 | 301 | 13301 | 13301 | 11 | Georgia | 533 | Warren | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Washington | 13 | 303 | 13303 | 13303 | 11 | Georgia | 534 | Washington | County | County | 3 | 0 | 1 | 2 | 0 | 1 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Georgia | Wayne | 13 | 305 | 13305 | 13305 | 11 | Georgia | 535 | Wayne | County | County | 13 | 0 | 2 | 8 | 3 | 5 | 0 | 0.15385 | 0.61538 | 0.23077 | |||
TRUE | Georgia | Webster | 13 | 307 | 13307 | 13307 | 11 | Georgia | 536 | Webster | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | Wheeler | 13 | 309 | 13309 | 13309 | 11 | Georgia | 537 | Wheeler | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Georgia | White | 13 | 311 | 13311 | 13311 | 11 | Georgia | 538 | White | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Whitfield | 13 | 313 | 13313 | 13313 | 11 | Georgia | 539 | Whitfield | County | County | 45 | 0 | 3 | 40 | 2 | 5 | 0 | 0.06667 | 0.88889 | 0.04444 | |||
TRUE | Georgia | Wilcox | 13 | 315 | 13315 | 13315 | 11 | Georgia | 540 | Wilcox | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Georgia | Wilkes | 13 | 317 | 13317 | 13317 | 11 | Georgia | 541 | Wilkes | County | County | 7 | 0 | 1 | 6 | 0 | 3 | 0 | 0.14286 | 0.85714 | 0 | |||
TRUE | Georgia | Wilkinson | 13 | 319 | 13319 | 13319 | 11 | Georgia | 542 | Wilkinson | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Georgia | Worth | 13 | 321 | 13321 | 13321 | 11 | Georgia | 543 | Worth | County | County | 8 | 0 | 1 | 7 | 0 | 3 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Hawaii | Hawaii | 15 | 001 | 15001 | 15001 | 12 | Hawaii | 544 | Hawaii | County | County | 79 | 6 | 69 | 3 | 1 | 18 | 0.07595 | 0.87342 | 0.03797 | 0.01266 | |||
TRUE | Hawaii | Honolulu | 15 | 003 | 15003 | 15003 | 12 | Hawaii | 545 | Honolulu | County | County | 485 | 12 | 445 | 17 | 11 | 27 | 0.02474 | 0.91753 | 0.03505 | 0.02268 | |||
TRUE | Hawaii | Kalawao | 15 | 005 | 15005 | 15005 | 12 | Hawaii | 546 | Kalawao | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Hawaii | Kauai | 15 | 007 | 15007 | 15007 | 12 | Hawaii | 547 | Kauai | County | County | 26 | 2 | 23 | 0 | 1 | 9 | 0.07692 | 0.88462 | 0 | 0.03846 | |||
TRUE | Hawaii | Maui | 15 | 009 | 15009 | 15009 | 12 | Hawaii | 548 | Maui | County | County | 48 | 1 | 44 | 1 | 2 | 10 | 0.02083 | 0.91667 | 0.02083 | 0.04167 | |||
TRUE | Idaho | Ada | 16 | 001 | 16001 | 16001 | 13 | Idaho | 549 | Ada | County | County | 311 | 176 | 107 | 18 | 10 | 16 | 0.56592 | 0.34405 | 0.05788 | 0.03215 | |||
TRUE | Idaho | Adams | 16 | 003 | 16003 | 16003 | 13 | Idaho | 550 | Adams | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Idaho | Bannock | 16 | 005 | 16005 | 16005 | 13 | Idaho | 551 | Bannock | County | County | 71 | 51 | 16 | 2 | 2 | 5 | 0.71831 | 0.22535 | 0.02817 | 0.02817 | |||
TRUE | Idaho | Bear Lake | 16 | 007 | 16007 | 16007 | 13 | Idaho | 552 | Bear Lake | County | County | 5 | 4 | 1 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Idaho | Benewah | 16 | 009 | 16009 | 16009 | 13 | Idaho | 553 | Benewah | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Idaho | Bingham | 16 | 011 | 16011 | 16011 | 13 | Idaho | 554 | Bingham | County | County | 48 | 40 | 5 | 3 | 0 | 6 | 0.83333 | 0.10417 | 0.0625 | 0 | |||
TRUE | Idaho | Blaine | 16 | 013 | 16013 | 16013 | 13 | Idaho | 555 | Blaine | County | County | 21 | 7 | 11 | 3 | 0 | 5 | 0.33333 | 0.52381 | 0.14286 | 0 | |||
TRUE | Idaho | Boise | 16 | 015 | 16015 | 16015 | 13 | Idaho | 556 | Boise | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Idaho | Bonner | 16 | 017 | 16017 | 16017 | 13 | Idaho | 557 | Bonner | County | County | 20 | 12 | 7 | 0 | 1 | 5 | 0.6 | 0.35 | 0 | 0.05 | |||
TRUE | Idaho | Bonneville | 16 | 019 | 16019 | 16019 | 13 | Idaho | 558 | Bonneville | County | County | 106 | 70 | 29 | 3 | 4 | 6 | 0.66038 | 0.27358 | 0.0283 | 0.03774 | |||
TRUE | Idaho | Boundary | 16 | 021 | 16021 | 16021 | 13 | Idaho | 559 | Boundary | County | County | 12 | 7 | 5 | 0 | 0 | 2 | 0.58333 | 0.41667 | 0 | 0 | |||
TRUE | Idaho | Butte | 16 | 023 | 16023 | 16023 | 13 | Idaho | 560 | Butte | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Idaho | Camas | 16 | 025 | 16025 | 16025 | 13 | Idaho | 561 | Camas | County | County | 2 | 1 | 1 | 0 | 0 | 1 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Idaho | Canyon | 16 | 027 | 16027 | 16027 | 13 | Idaho | 562 | Canyon | County | County | 90 | 58 | 24 | 7 | 1 | 9 | 0.64444 | 0.26667 | 0.07778 | 0.01111 | |||
TRUE | Idaho | Caribou | 16 | 029 | 16029 | 16029 | 13 | Idaho | 563 | Caribou | County | County | 10 | 8 | 2 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Idaho | Cassia | 16 | 031 | 16031 | 16031 | 13 | Idaho | 564 | Cassia | County | County | 15 | 10 | 4 | 0 | 1 | 3 | 0.66667 | 0.26667 | 0 | 0.06667 | |||
TRUE | Idaho | Clark | 16 | 033 | 16033 | 16033 | 13 | Idaho | 565 | Clark | County | County | 2 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Idaho | Clearwater | 16 | 035 | 16035 | 16035 | 13 | Idaho | 566 | Clearwater | County | County | 11 | 8 | 2 | 0 | 1 | 2 | 0.72727 | 0.18182 | 0 | 0.09091 | |||
TRUE | Idaho | Custer | 16 | 037 | 16037 | 16037 | 13 | Idaho | 567 | Custer | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Idaho | Elmore | 16 | 039 | 16039 | 16039 | 13 | Idaho | 568 | Elmore | County | County | 11 | 6 | 4 | 1 | 0 | 4 | 0.54545 | 0.36364 | 0.09091 | 0 | |||
TRUE | Idaho | Franklin | 16 | 041 | 16041 | 16041 | 13 | Idaho | 569 | Franklin | County | County | 6 | 3 | 2 | 1 | 0 | 2 | 0.5 | 0.33333 | 0.16667 | 0 | |||
TRUE | Idaho | Fremont | 16 | 043 | 16043 | 16043 | 13 | Idaho | 570 | Fremont | County | County | 6 | 4 | 1 | 1 | 0 | 3 | 0.66667 | 0.16667 | 0.16667 | 0 | |||
TRUE | Idaho | Gem | 16 | 045 | 16045 | 16045 | 13 | Idaho | 571 | Gem | County | County | 9 | 6 | 2 | 1 | 0 | 2 | 0.66667 | 0.22222 | 0.11111 | 0 | |||
TRUE | Idaho | Gooding | 16 | 047 | 16047 | 16047 | 13 | Idaho | 572 | Gooding | County | County | 11 | 9 | 0 | 2 | 0 | 3 | 0.81818 | 0 | 0.18182 | 0 | |||
TRUE | Idaho | Idaho | 16 | 049 | 16049 | 16049 | 13 | Idaho | 573 | Idaho | County | County | 16 | 11 | 2 | 1 | 2 | 6 | 0.6875 | 0.125 | 0.0625 | 0.125 | |||
TRUE | Idaho | Jefferson | 16 | 051 | 16051 | 16051 | 13 | Idaho | 574 | Jefferson | County | County | 15 | 11 | 2 | 0 | 2 | 3 | 0.73333 | 0.13333 | 0 | 0.13333 | |||
TRUE | Idaho | Jerome | 16 | 053 | 16053 | 16053 | 13 | Idaho | 575 | Jerome | County | County | 15 | 14 | 1 | 0 | 0 | 1 | 0.93333 | 0.06667 | 0 | 0 | |||
TRUE | Idaho | Kootenai | 16 | 055 | 16055 | 16055 | 13 | Idaho | 576 | Kootenai | County | County | 87 | 53 | 27 | 3 | 4 | 9 | 0.6092 | 0.31034 | 0.03448 | 0.04598 | |||
TRUE | Idaho | Latah | 16 | 057 | 16057 | 16057 | 13 | Idaho | 577 | Latah | County | County | 68 | 42 | 21 | 2 | 3 | 11 | 0.61765 | 0.30882 | 0.02941 | 0.04412 | |||
TRUE | Idaho | Lemhi | 16 | 059 | 16059 | 16059 | 13 | Idaho | 578 | Lemhi | County | County | 11 | 8 | 3 | 0 | 0 | 1 | 0.72727 | 0.27273 | 0 | 0 | |||
TRUE | Idaho | Lewis | 16 | 061 | 16061 | 16061 | 13 | Idaho | 579 | Lewis | County | County | 5 | 5 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Idaho | Lincoln | 16 | 063 | 16063 | 16063 | 13 | Idaho | 580 | Lincoln | County | County | 4 | 3 | 1 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Idaho | Madison | 16 | 065 | 16065 | 16065 | 13 | Idaho | 581 | Madison | County | County | 33 | 24 | 6 | 3 | 0 | 3 | 0.72727 | 0.18182 | 0.09091 | 0 | |||
TRUE | Idaho | Minidoka | 16 | 067 | 16067 | 16067 | 13 | Idaho | 582 | Minidoka | County | County | 20 | 13 | 7 | 0 | 0 | 3 | 0.65 | 0.35 | 0 | 0 | |||
TRUE | Idaho | Nez Perce | 16 | 069 | 16069 | 16069 | 13 | Idaho | 583 | Nez Perce | County | County | 39 | 34 | 3 | 1 | 1 | 4 | 0.87179 | 0.07692 | 0.02564 | 0.02564 | |||
TRUE | Idaho | Oneida | 16 | 071 | 16071 | 16071 | 13 | Idaho | 584 | Oneida | County | County | 3 | 2 | 1 | 0 | 0 | 1 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Idaho | Owyhee | 16 | 073 | 16073 | 16073 | 13 | Idaho | 585 | Owyhee | County | County | 6 | 5 | 1 | 0 | 0 | 3 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Idaho | Payette | 16 | 075 | 16075 | 16075 | 13 | Idaho | 586 | Payette | County | County | 7 | 5 | 2 | 0 | 0 | 3 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | Idaho | Power | 16 | 077 | 16077 | 16077 | 13 | Idaho | 587 | Power | County | County | 7 | 6 | 1 | 0 | 0 | 2 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Idaho | Shoshone | 16 | 079 | 16079 | 16079 | 13 | Idaho | 588 | Shoshone | County | County | 8 | 6 | 2 | 0 | 0 | 4 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Idaho | Teton | 16 | 081 | 16081 | 16081 | 13 | Idaho | 589 | Teton | County | County | 8 | 4 | 1 | 0 | 3 | 2 | 0.5 | 0.125 | 0 | 0.375 | |||
TRUE | Idaho | Twin Falls | 16 | 083 | 16083 | 16083 | 13 | Idaho | 590 | Twin Falls | County | County | 59 | 42 | 14 | 1 | 2 | 5 | 0.71186 | 0.23729 | 0.01695 | 0.0339 | |||
TRUE | Idaho | Valley | 16 | 085 | 16085 | 16085 | 13 | Idaho | 591 | Valley | County | County | 7 | 4 | 3 | 0 | 0 | 3 | 0.57143 | 0.42857 | 0 | 0 | |||
TRUE | Idaho | Washington | 16 | 087 | 16087 | 16087 | 13 | Idaho | 592 | Washington | County | County | 8 | 4 | 2 | 1 | 1 | 3 | 0.5 | 0.25 | 0.125 | 0.125 | |||
TRUE | Illinois | Adams | 17 | 001 | 17001 | 17001 | 14 | Illinois | 593 | Adams | County | County | 123 | 8 | 104 | 4 | 7 | 10 | 0.06504 | 0.84553 | 0.03252 | 0.05691 | |||
TRUE | Illinois | Alexander | 17 | 003 | 17003 | 17003 | 14 | Illinois | 594 | Alexander | County | County | 5 | 0 | 1 | 3 | 1 | 2 | 0 | 0.2 | 0.6 | 0.2 | |||
TRUE | Illinois | Bond | 17 | 005 | 17005 | 17005 | 14 | Illinois | 595 | Bond | County | County | 18 | 3 | 12 | 1 | 2 | 5 | 0.16667 | 0.66667 | 0.05556 | 0.11111 | |||
TRUE | Illinois | Boone | 17 | 007 | 17007 | 17007 | 14 | Illinois | 596 | Boone | County | County | 58 | 52 | 5 | 0 | 1 | 5 | 0.89655 | 0.08621 | 0 | 0.01724 | |||
TRUE | Illinois | Brown | 17 | 009 | 17009 | 17009 | 14 | Illinois | 597 | Brown | County | County | 2 | 1 | 1 | 0 | 0 | 2 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Illinois | Bureau | 17 | 011 | 17011 | 17011 | 14 | Illinois | 598 | Bureau | County | County | 68 | 37 | 31 | 0 | 0 | 15 | 0.54412 | 0.45588 | 0 | 0 | |||
TRUE | Illinois | Calhoun | 17 | 013 | 17013 | 17013 | 14 | Illinois | 599 | Calhoun | County | County | 5 | 0 | 5 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | Illinois | Carroll | 17 | 015 | 17015 | 17015 | 14 | Illinois | 600 | Carroll | County | County | 44 | 41 | 3 | 0 | 0 | 7 | 0.93182 | 0.06818 | 0 | 0 | |||
TRUE | Illinois | Cass | 17 | 017 | 17017 | 17017 | 14 | Illinois | 601 | Cass | County | County | 25 | 5 | 13 | 4 | 3 | 5 | 0.2 | 0.52 | 0.16 | 0.12 | |||
TRUE | Illinois | Champaign | 17 | 019 | 17019 | 17019 | 14 | Illinois | 602 | Champaign | County | County | 407 | 245 | 126 | 24 | 12 | 23 | 0.60197 | 0.30958 | 0.05897 | 0.02948 | |||
TRUE | Illinois | Christian | 17 | 021 | 17021 | 17021 | 14 | Illinois | 603 | Christian | County | County | 45 | 11 | 29 | 4 | 1 | 9 | 0.24444 | 0.64444 | 0.08889 | 0.02222 | |||
TRUE | Illinois | Clark | 17 | 023 | 17023 | 17023 | 14 | Illinois | 604 | Clark | County | County | 25 | 15 | 4 | 4 | 2 | 6 | 0.6 | 0.16 | 0.16 | 0.08 | |||
TRUE | Illinois | Clay | 17 | 025 | 17025 | 17025 | 14 | Illinois | 605 | Clay | County | County | 18 | 2 | 12 | 4 | 0 | 3 | 0.11111 | 0.66667 | 0.22222 | 0 | |||
TRUE | Illinois | Clinton | 17 | 027 | 17027 | 17027 | 14 | Illinois | 606 | Clinton | County | County | 52 | 1 | 51 | 0 | 0 | 8 | 0.01923 | 0.98077 | 0 | 0 | |||
TRUE | Illinois | Coles | 17 | 029 | 17029 | 17029 | 14 | Illinois | 607 | Coles | County | County | 57 | 28 | 13 | 13 | 3 | 4 | 0.49123 | 0.22807 | 0.22807 | 0.05263 | |||
TRUE | Illinois | Cook | 17 | 031 | 17031 | 17031 | 14 | Illinois | 608 | Cook | County | County | 8175 | 6301 | 1467 | 287 | 120 | 172 | 0.77076 | 0.17945 | 0.03511 | 0.01468 | |||
TRUE | Illinois | Crawford | 17 | 033 | 17033 | 17033 | 14 | Illinois | 609 | Crawford | County | County | 24 | 20 | 2 | 2 | 0 | 4 | 0.83333 | 0.08333 | 0.08333 | 0 | |||
TRUE | Illinois | Cumberland | 17 | 035 | 17035 | 17035 | 14 | Illinois | 610 | Cumberland | County | County | 10 | 3 | 6 | 1 | 0 | 5 | 0.3 | 0.6 | 0.1 | 0 | |||
TRUE | Illinois | De Kalb | 17 | 037 | 17037 | 17037 | 14 | Illinois | 611 | De Kalb | County | County | 197 | 158 | 33 | 4 | 2 | 13 | 0.80203 | 0.16751 | 0.0203 | 0.01015 | |||
FALSE | Illinois | Dewitt | 17 | 039 | 17039 | 17039 | 14 | Illinois | 612 | De Witt | County | County | 25 | 18 | 6 | 1 | 0 | 5 | 0.72 | 0.24 | 0.04 | 0 | |||
TRUE | Illinois | Douglas | 17 | 041 | 17041 | 17041 | 14 | Illinois | 613 | Douglas | County | County | 28 | 23 | 3 | 2 | 0 | 7 | 0.82143 | 0.10714 | 0.07143 | 0 | |||
FALSE | Illinois | Du Page | 17 | 043 | 17043 | 17043 | 14 | Illinois | 614 | Dupage | County | County | 2023 | 1553 | 358 | 81 | 31 | 37 | 0.76767 | 0.17696 | 0.04004 | 0.01532 | |||
TRUE | Illinois | Edgar | 17 | 045 | 17045 | 17045 | 14 | Illinois | 615 | Edgar | County | County | 16 | 11 | 4 | 0 | 1 | 4 | 0.6875 | 0.25 | 0 | 0.0625 | |||
TRUE | Illinois | Edwards | 17 | 047 | 17047 | 17047 | 14 | Illinois | 616 | Edwards | County | County | 3 | 0 | 2 | 1 | 0 | 1 | 0 | 0.66667 | 0.33333 | 0 | |||
TRUE | Illinois | Effingham | 17 | 049 | 17049 | 17049 | 14 | Illinois | 617 | Effingham | County | County | 39 | 4 | 28 | 5 | 2 | 6 | 0.10256 | 0.71795 | 0.12821 | 0.05128 | |||
TRUE | Illinois | Fayette | 17 | 051 | 17051 | 17051 | 14 | Illinois | 618 | Fayette | County | County | 21 | 2 | 18 | 1 | 0 | 4 | 0.09524 | 0.85714 | 0.04762 | 0 | |||
TRUE | Illinois | Ford | 17 | 053 | 17053 | 17053 | 14 | Illinois | 619 | Ford | County | County | 28 | 19 | 7 | 2 | 0 | 6 | 0.67857 | 0.25 | 0.07143 | 0 | |||
TRUE | Illinois | Franklin | 17 | 055 | 17055 | 17055 | 14 | Illinois | 620 | Franklin | County | County | 35 | 2 | 25 | 6 | 2 | 9 | 0.05714 | 0.71429 | 0.17143 | 0.05714 | |||
TRUE | Illinois | Fulton | 17 | 057 | 17057 | 17057 | 14 | Illinois | 621 | Fulton | County | County | 33 | 22 | 8 | 0 | 3 | 11 | 0.66667 | 0.24242 | 0 | 0.09091 | |||
TRUE | Illinois | Gallatin | 17 | 059 | 17059 | 17059 | 14 | Illinois | 622 | Gallatin | County | County | 6 | 1 | 2 | 3 | 0 | 3 | 0.16667 | 0.33333 | 0.5 | 0 | |||
TRUE | Illinois | Greene | 17 | 061 | 17061 | 17061 | 14 | Illinois | 623 | Greene | County | County | 18 | 0 | 15 | 0 | 3 | 6 | 0 | 0.83333 | 0 | 0.16667 | |||
TRUE | Illinois | Grundy | 17 | 063 | 17063 | 17063 | 14 | Illinois | 624 | Grundy | County | County | 55 | 41 | 11 | 2 | 1 | 6 | 0.74545 | 0.2 | 0.03636 | 0.01818 | |||
TRUE | Illinois | Hamilton | 17 | 065 | 17065 | 17065 | 14 | Illinois | 625 | Hamilton | County | County | 6 | 0 | 3 | 2 | 1 | 3 | 0 | 0.5 | 0.33333 | 0.16667 | |||
TRUE | Illinois | Hancock | 17 | 067 | 17067 | 17067 | 14 | Illinois | 626 | Hancock | County | County | 34 | 23 | 11 | 0 | 0 | 8 | 0.67647 | 0.32353 | 0 | 0 | |||
TRUE | Illinois | Hardin | 17 | 069 | 17069 | 17069 | 14 | Illinois | 627 | Hardin | County | County | 13 | 0 | 10 | 3 | 0 | 3 | 0 | 0.76923 | 0.23077 | 0 | |||
TRUE | Illinois | Henderson | 17 | 071 | 17071 | 17071 | 14 | Illinois | 628 | Henderson | County | County | 10 | 9 | 1 | 0 | 0 | 5 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Illinois | Henry | 17 | 073 | 17073 | 17073 | 14 | Illinois | 629 | Henry | County | County | 136 | 121 | 11 | 1 | 3 | 14 | 0.88971 | 0.08088 | 0.00735 | 0.02206 | |||
TRUE | Illinois | Iroquois | 17 | 075 | 17075 | 17075 | 14 | Illinois | 630 | Iroquois | County | County | 31 | 29 | 1 | 0 | 1 | 13 | 0.93548 | 0.03226 | 0 | 0.03226 | |||
TRUE | Illinois | Jackson | 17 | 077 | 17077 | 17077 | 14 | Illinois | 631 | Jackson | County | County | 88 | 5 | 68 | 12 | 3 | 9 | 0.05682 | 0.77273 | 0.13636 | 0.03409 | |||
TRUE | Illinois | Jasper | 17 | 079 | 17079 | 17079 | 14 | Illinois | 632 | Jasper | County | County | 17 | 7 | 8 | 2 | 0 | 2 | 0.41176 | 0.47059 | 0.11765 | 0 | |||
TRUE | Illinois | Jefferson | 17 | 081 | 17081 | 17081 | 14 | Illinois | 633 | Jefferson | County | County | 42 | 1 | 35 | 2 | 4 | 5 | 0.02381 | 0.83333 | 0.04762 | 0.09524 | |||
TRUE | Illinois | Jersey | 17 | 083 | 17083 | 17083 | 14 | Illinois | 634 | Jersey | County | County | 22 | 2 | 20 | 0 | 0 | 4 | 0.09091 | 0.90909 | 0 | 0 | |||
TRUE | Illinois | Jo Daviess | 17 | 085 | 17085 | 17085 | 14 | Illinois | 635 | Jo Daviess | County | County | 27 | 21 | 5 | 0 | 1 | 6 | 0.77778 | 0.18519 | 0 | 0.03704 | |||
TRUE | Illinois | Johnson | 17 | 087 | 17087 | 17087 | 14 | Illinois | 636 | Johnson | County | County | 10 | 1 | 7 | 1 | 1 | 4 | 0.1 | 0.7 | 0.1 | 0.1 | |||
TRUE | Illinois | Kane | 17 | 089 | 17089 | 17089 | 14 | Illinois | 637 | Kane | County | County | 605 | 481 | 99 | 13 | 12 | 22 | 0.79504 | 0.16364 | 0.02149 | 0.01983 | |||
TRUE | Illinois | Kankakee | 17 | 091 | 17091 | 17091 | 14 | Illinois | 638 | Kankakee | County | County | 162 | 144 | 14 | 3 | 1 | 13 | 0.88889 | 0.08642 | 0.01852 | 0.00617 | |||
TRUE | Illinois | Kendall | 17 | 093 | 17093 | 17093 | 14 | Illinois | 639 | Kendall | County | County | 120 | 101 | 14 | 2 | 3 | 8 | 0.84167 | 0.11667 | 0.01667 | 0.025 | |||
TRUE | Illinois | Knox | 17 | 095 | 17095 | 17095 | 14 | Illinois | 640 | Knox | County | County | 85 | 63 | 18 | 2 | 2 | 11 | 0.74118 | 0.21176 | 0.02353 | 0.02353 | |||
TRUE | Illinois | Lake | 17 | 097 | 17097 | 17097 | 14 | Illinois | 643 | Lake | County | County | 1279 | 913 | 286 | 58 | 22 | 29 | 0.71384 | 0.22361 | 0.04535 | 0.0172 | |||
TRUE | Illinois | La Salle | 17 | 099 | 17099 | 17099 | 14 | Illinois | 641 | La Salle | County | County | 183 | 100 | 73 | 7 | 3 | 17 | 0.54645 | 0.39891 | 0.03825 | 0.01639 | |||
TRUE | Illinois | Lawrence | 17 | 101 | 17101 | 17101 | 14 | Illinois | 644 | Lawrence | County | County | 16 | 11 | 2 | 3 | 0 | 4 | 0.6875 | 0.125 | 0.1875 | 0 | |||
TRUE | Illinois | Lee | 17 | 103 | 17103 | 17103 | 14 | Illinois | 645 | Lee | County | County | 65 | 52 | 10 | 0 | 3 | 10 | 0.8 | 0.15385 | 0 | 0.04615 | |||
TRUE | Illinois | Livingston | 17 | 105 | 17105 | 17105 | 14 | Illinois | 646 | Livingston | County | County | 70 | 58 | 10 | 2 | 0 | 14 | 0.82857 | 0.14286 | 0.02857 | 0 | |||
TRUE | Illinois | Logan | 17 | 107 | 17107 | 17107 | 14 | Illinois | 647 | Logan | County | County | 44 | 15 | 20 | 3 | 6 | 7 | 0.34091 | 0.45455 | 0.06818 | 0.13636 | |||
TRUE | Illinois | McDonough | 17 | 109 | 17109 | 17109 | 14 | Illinois | 655 | McDonough | County | County | 64 | 43 | 18 | 2 | 1 | 8 | 0.67188 | 0.28125 | 0.03125 | 0.01562 | |||
TRUE | Illinois | McHenry | 17 | 111 | 17111 | 17111 | 14 | Illinois | 656 | McHenry | County | County | 446 | 374 | 54 | 9 | 9 | 20 | 0.83857 | 0.12108 | 0.02018 | 0.02018 | |||
TRUE | Illinois | McLean | 17 | 113 | 17113 | 17113 | 14 | Illinois | 657 | McLean | County | County | 404 | 279 | 100 | 14 | 11 | 22 | 0.69059 | 0.24752 | 0.03465 | 0.02723 | |||
TRUE | Illinois | Macon | 17 | 115 | 17115 | 17115 | 14 | Illinois | 648 | Macon | County | County | 176 | 110 | 42 | 17 | 7 | 16 | 0.625 | 0.23864 | 0.09659 | 0.03977 | |||
TRUE | Illinois | Macoupin | 17 | 117 | 17117 | 17117 | 14 | Illinois | 649 | Macoupin | County | County | 75 | 1 | 71 | 0 | 3 | 12 | 0.01333 | 0.94667 | 0 | 0.04 | |||
TRUE | Illinois | Madison | 17 | 119 | 17119 | 17119 | 14 | Illinois | 650 | Madison | County | County | 466 | 20 | 427 | 6 | 13 | 23 | 0.04292 | 0.91631 | 0.01288 | 0.0279 | |||
TRUE | Illinois | Marion | 17 | 121 | 17121 | 17121 | 14 | Illinois | 651 | Marion | County | County | 50 | 2 | 42 | 4 | 2 | 3 | 0.04 | 0.84 | 0.08 | 0.04 | |||
TRUE | Illinois | Marshall | 17 | 123 | 17123 | 17123 | 14 | Illinois | 652 | Marshall | County | County | 5 | 2 | 2 | 0 | 1 | 2 | 0.4 | 0.4 | 0 | 0.2 | |||
TRUE | Illinois | Mason | 17 | 125 | 17125 | 17125 | 14 | Illinois | 653 | Mason | County | County | 21 | 6 | 13 | 1 | 1 | 6 | 0.28571 | 0.61905 | 0.04762 | 0.04762 | |||
TRUE | Illinois | Massac | 17 | 127 | 17127 | 17127 | 14 | Illinois | 654 | Massac | County | County | 13 | 1 | 4 | 6 | 2 | 3 | 0.07692 | 0.30769 | 0.46154 | 0.15385 | |||
TRUE | Illinois | Menard | 17 | 129 | 17129 | 17129 | 14 | Illinois | 658 | Menard | County | County | 20 | 3 | 15 | 1 | 1 | 5 | 0.15 | 0.75 | 0.05 | 0.05 | |||
TRUE | Illinois | Mercer | 17 | 131 | 17131 | 17131 | 14 | Illinois | 659 | Mercer | County | County | 39 | 31 | 7 | 0 | 1 | 9 | 0.79487 | 0.17949 | 0 | 0.02564 | |||
TRUE | Illinois | Monroe | 17 | 133 | 17133 | 17133 | 14 | Illinois | 660 | Monroe | County | County | 52 | 1 | 50 | 1 | 0 | 5 | 0.01923 | 0.96154 | 0.01923 | 0 | |||
TRUE | Illinois | Montgomery | 17 | 135 | 17135 | 17135 | 14 | Illinois | 661 | Montgomery | County | County | 47 | 4 | 39 | 3 | 1 | 11 | 0.08511 | 0.82979 | 0.06383 | 0.02128 | |||
TRUE | Illinois | Morgan | 17 | 137 | 17137 | 17137 | 14 | Illinois | 662 | Morgan | County | County | 58 | 10 | 44 | 3 | 1 | 7 | 0.17241 | 0.75862 | 0.05172 | 0.01724 | |||
TRUE | Illinois | Moultrie | 17 | 139 | 17139 | 17139 | 14 | Illinois | 663 | Moultrie | County | County | 19 | 11 | 5 | 2 | 1 | 4 | 0.57895 | 0.26316 | 0.10526 | 0.05263 | |||
TRUE | Illinois | Ogle | 17 | 141 | 17141 | 17141 | 14 | Illinois | 664 | Ogle | County | County | 72 | 58 | 14 | 0 | 0 | 13 | 0.80556 | 0.19444 | 0 | 0 | |||
TRUE | Illinois | Peoria | 17 | 143 | 17143 | 17143 | 14 | Illinois | 665 | Peoria | County | County | 398 | 50 | 309 | 18 | 21 | 25 | 0.12563 | 0.77638 | 0.04523 | 0.05276 | |||
TRUE | Illinois | Perry | 17 | 145 | 17145 | 17145 | 14 | Illinois | 666 | Perry | County | County | 34 | 0 | 29 | 4 | 1 | 3 | 0 | 0.85294 | 0.11765 | 0.02941 | |||
TRUE | Illinois | Piatt | 17 | 147 | 17147 | 17147 | 14 | Illinois | 667 | Piatt | County | County | 22 | 18 | 3 | 0 | 1 | 8 | 0.81818 | 0.13636 | 0 | 0.04545 | |||
TRUE | Illinois | Pike | 17 | 149 | 17149 | 17149 | 14 | Illinois | 668 | Pike | County | County | 19 | 1 | 17 | 0 | 1 | 7 | 0.05263 | 0.89474 | 0 | 0.05263 | |||
TRUE | Illinois | Pope | 17 | 151 | 17151 | 17151 | 14 | Illinois | 669 | Pope | County | County | 4 | 0 | 3 | 1 | 0 | 2 | 0 | 0.75 | 0.25 | 0 | |||
TRUE | Illinois | Pulaski | 17 | 153 | 17153 | 17153 | 14 | Illinois | 670 | Pulaski | County | County | 9 | 1 | 3 | 5 | 0 | 6 | 0.11111 | 0.33333 | 0.55556 | 0 | |||
TRUE | Illinois | Putnam | 17 | 155 | 17155 | 17155 | 14 | Illinois | 671 | Putnam | County | County | 13 | 3 | 10 | 0 | 0 | 4 | 0.23077 | 0.76923 | 0 | 0 | |||
TRUE | Illinois | Randolph | 17 | 157 | 17157 | 17157 | 14 | Illinois | 672 | Randolph | County | County | 37 | 0 | 37 | 0 | 0 | 9 | 0 | 1 | 0 | 0 | |||
TRUE | Illinois | Richland | 17 | 159 | 17159 | 17159 | 14 | Illinois | 673 | Richland | County | County | 17 | 9 | 3 | 4 | 1 | 1 | 0.52941 | 0.17647 | 0.23529 | 0.05882 | |||
TRUE | Illinois | Rock Island | 17 | 161 | 17161 | 17161 | 14 | Illinois | 674 | Rock Island | County | County | 400 | 359 | 34 | 3 | 4 | 12 | 0.8975 | 0.085 | 0.0075 | 0.01 | |||
FALSE | Illinois | St Clair | 17 | 163 | 17163 | 17163 | 14 | Illinois | 675 | Saint Clair | County | County | 332 | 8 | 306 | 10 | 8 | 27 | 0.0241 | 0.92169 | 0.03012 | 0.0241 | |||
TRUE | Illinois | Saline | 17 | 165 | 17165 | 17165 | 14 | Illinois | 676 | Saline | County | County | 18 | 1 | 6 | 10 | 1 | 3 | 0.05556 | 0.33333 | 0.55556 | 0.05556 | |||
TRUE | Illinois | Sangamon | 17 | 167 | 17167 | 17167 | 14 | Illinois | 677 | Sangamon | County | County | 324 | 33 | 255 | 19 | 17 | 20 | 0.10185 | 0.78704 | 0.05864 | 0.05247 | |||
TRUE | Illinois | Schuyler | 17 | 169 | 17169 | 17169 | 14 | Illinois | 678 | Schuyler | County | County | 9 | 6 | 1 | 1 | 1 | 3 | 0.66667 | 0.11111 | 0.11111 | 0.11111 | |||
TRUE | Illinois | Scott | 17 | 171 | 17171 | 17171 | 14 | Illinois | 679 | Scott | County | County | 9 | 0 | 9 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | Illinois | Shelby | 17 | 173 | 17173 | 17173 | 14 | Illinois | 680 | Shelby | County | County | 15 | 8 | 5 | 1 | 1 | 7 | 0.53333 | 0.33333 | 0.06667 | 0.06667 | |||
TRUE | Illinois | Stark | 17 | 175 | 17175 | 17175 | 14 | Illinois | 681 | Stark | County | County | 9 | 4 | 5 | 0 | 0 | 4 | 0.44444 | 0.55556 | 0 | 0 | |||
TRUE | Illinois | Stephenson | 17 | 177 | 17177 | 17177 | 14 | Illinois | 682 | Stephenson | County | County | 101 | 86 | 11 | 0 | 4 | 10 | 0.85149 | 0.10891 | 0 | 0.0396 | |||
TRUE | Illinois | Tazewell | 17 | 179 | 17179 | 17179 | 14 | Illinois | 683 | Tazewell | County | County | 222 | 30 | 171 | 4 | 17 | 14 | 0.13514 | 0.77027 | 0.01802 | 0.07658 | |||
TRUE | Illinois | Union | 17 | 181 | 17181 | 17181 | 14 | Illinois | 684 | Union | County | County | 14 | 0 | 12 | 2 | 0 | 6 | 0 | 0.85714 | 0.14286 | 0 | |||
TRUE | Illinois | Vermilion | 17 | 183 | 17183 | 17183 | 14 | Illinois | 685 | Vermilion | County | County | 115 | 97 | 10 | 6 | 2 | 17 | 0.84348 | 0.08696 | 0.05217 | 0.01739 | |||
TRUE | Illinois | Wabash | 17 | 185 | 17185 | 17185 | 14 | Illinois | 686 | Wabash | County | County | 18 | 2 | 10 | 5 | 1 | 1 | 0.11111 | 0.55556 | 0.27778 | 0.05556 | |||
TRUE | Illinois | Warren | 17 | 187 | 17187 | 17187 | 14 | Illinois | 687 | Warren | County | County | 30 | 24 | 6 | 0 | 0 | 6 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Illinois | Washington | 17 | 189 | 17189 | 17189 | 14 | Illinois | 688 | Washington | County | County | 23 | 2 | 21 | 0 | 0 | 7 | 0.08696 | 0.91304 | 0 | 0 | |||
TRUE | Illinois | Wayne | 17 | 191 | 17191 | 17191 | 14 | Illinois | 689 | Wayne | County | County | 9 | 0 | 7 | 2 | 0 | 4 | 0 | 0.77778 | 0.22222 | 0 | |||
TRUE | Illinois | White | 17 | 193 | 17193 | 17193 | 14 | Illinois | 690 | White | County | County | 14 | 2 | 5 | 6 | 1 | 6 | 0.14286 | 0.35714 | 0.42857 | 0.07143 | |||
TRUE | Illinois | Whiteside | 17 | 195 | 17195 | 17195 | 14 | Illinois | 691 | Whiteside | County | County | 120 | 106 | 11 | 2 | 1 | 9 | 0.88333 | 0.09167 | 0.01667 | 0.00833 | |||
TRUE | Illinois | Will | 17 | 197 | 17197 | 17197 | 14 | Illinois | 692 | Will | County | County | 726 | 604 | 87 | 24 | 11 | 25 | 0.83196 | 0.11983 | 0.03306 | 0.01515 | |||
TRUE | Illinois | Williamson | 17 | 199 | 17199 | 17199 | 14 | Illinois | 693 | Williamson | County | County | 82 | 5 | 65 | 10 | 2 | 5 | 0.06098 | 0.79268 | 0.12195 | 0.02439 | |||
TRUE | Illinois | Winnebago | 17 | 201 | 17201 | 17201 | 14 | Illinois | 694 | Winnebago | County | County | 503 | 422 | 62 | 14 | 5 | 22 | 0.83897 | 0.12326 | 0.02783 | 0.00994 | |||
TRUE | Illinois | Woodford | 17 | 203 | 17203 | 17203 | 14 | Illinois | 695 | Woodford | County | County | 49 | 19 | 29 | 1 | 0 | 11 | 0.38776 | 0.59184 | 0.02041 | 0 | |||
TRUE | Indiana | Adams | 18 | 001 | 18001 | 18001 | 15 | Indiana | 696 | Adams | County | County | 39 | 35 | 4 | 0 | 0 | 4 | 0.89744 | 0.10256 | 0 | 0 | |||
TRUE | Indiana | Allen | 18 | 003 | 18003 | 18003 | 15 | Indiana | 697 | Allen | County | County | 548 | 468 | 68 | 7 | 5 | 29 | 0.85401 | 0.12409 | 0.01277 | 0.00912 | |||
TRUE | Indiana | Bartholomew | 18 | 005 | 18005 | 18005 | 15 | Indiana | 698 | Bartholomew | County | County | 92 | 40 | 13 | 36 | 3 | 4 | 0.43478 | 0.1413 | 0.3913 | 0.03261 | |||
TRUE | Indiana | Benton | 18 | 007 | 18007 | 18007 | 15 | Indiana | 699 | Benton | County | County | 11 | 9 | 1 | 1 | 0 | 5 | 0.81818 | 0.09091 | 0.09091 | 0 | |||
TRUE | Indiana | Blackford | 18 | 009 | 18009 | 18009 | 15 | Indiana | 700 | Blackford | County | County | 21 | 15 | 4 | 2 | 0 | 3 | 0.71429 | 0.19048 | 0.09524 | 0 | |||
TRUE | Indiana | Boone | 18 | 011 | 18011 | 18011 | 15 | Indiana | 701 | Boone | County | County | 47 | 14 | 13 | 19 | 1 | 5 | 0.29787 | 0.2766 | 0.40426 | 0.02128 | |||
TRUE | Indiana | Brown | 18 | 013 | 18013 | 18013 | 15 | Indiana | 702 | Brown | County | County | 8 | 4 | 1 | 3 | 0 | 2 | 0.5 | 0.125 | 0.375 | 0 | |||
TRUE | Indiana | Carroll | 18 | 015 | 18015 | 18015 | 15 | Indiana | 703 | Carroll | County | County | 18 | 11 | 2 | 3 | 2 | 6 | 0.61111 | 0.11111 | 0.16667 | 0.11111 | |||
TRUE | Indiana | Cass | 18 | 017 | 18017 | 18017 | 15 | Indiana | 704 | Cass | County | County | 44 | 28 | 4 | 10 | 2 | 6 | 0.63636 | 0.09091 | 0.22727 | 0.04545 | |||
TRUE | Indiana | Clark | 18 | 019 | 18019 | 18019 | 15 | Indiana | 705 | Clark | County | County | 81 | 5 | 8 | 59 | 9 | 9 | 0.06173 | 0.09877 | 0.7284 | 0.11111 | |||
TRUE | Indiana | Clay | 18 | 021 | 18021 | 18021 | 15 | Indiana | 706 | Clay | County | County | 21 | 14 | 2 | 3 | 2 | 5 | 0.66667 | 0.09524 | 0.14286 | 0.09524 | |||
TRUE | Indiana | Clinton | 18 | 023 | 18023 | 18023 | 15 | Indiana | 707 | Clinton | County | County | 29 | 11 | 5 | 9 | 4 | 6 | 0.37931 | 0.17241 | 0.31034 | 0.13793 | |||
TRUE | Indiana | Crawford | 18 | 025 | 18025 | 18025 | 15 | Indiana | 708 | Crawford | County | County | 8 | 0 | 1 | 7 | 0 | 5 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Indiana | Daviess | 18 | 027 | 18027 | 18027 | 15 | Indiana | 709 | Daviess | County | County | 17 | 7 | 3 | 7 | 0 | 4 | 0.41176 | 0.17647 | 0.41176 | 0 | |||
TRUE | Indiana | Dearborn | 18 | 029 | 18029 | 18029 | 15 | Indiana | 711 | Dearborn | County | County | 42 | 29 | 6 | 4 | 3 | 6 | 0.69048 | 0.14286 | 0.09524 | 0.07143 | |||
TRUE | Indiana | Decatur | 18 | 031 | 18031 | 18031 | 15 | Indiana | 712 | Decatur | County | County | 19 | 9 | 2 | 6 | 2 | 4 | 0.47368 | 0.10526 | 0.31579 | 0.10526 | |||
TRUE | Indiana | De Kalb | 18 | 033 | 18033 | 18033 | 15 | Indiana | 710 | De Kalb | County | County | 31 | 22 | 7 | 2 | 0 | 6 | 0.70968 | 0.22581 | 0.06452 | 0 | |||
TRUE | Indiana | Delaware | 18 | 035 | 18035 | 18035 | 15 | Indiana | 713 | Delaware | County | County | 120 | 77 | 24 | 17 | 2 | 11 | 0.64167 | 0.2 | 0.14167 | 0.01667 | |||
TRUE | Indiana | Dubois | 18 | 037 | 18037 | 18037 | 15 | Indiana | 714 | Dubois | County | County | 50 | 2 | 4 | 21 | 23 | 8 | 0.04 | 0.08 | 0.42 | 0.46 | |||
TRUE | Indiana | Elkhart | 18 | 039 | 18039 | 18039 | 15 | Indiana | 715 | Elkhart | County | County | 207 | 176 | 21 | 7 | 3 | 11 | 0.85024 | 0.10145 | 0.03382 | 0.01449 | |||
TRUE | Indiana | Fayette | 18 | 041 | 18041 | 18041 | 15 | Indiana | 716 | Fayette | County | County | 25 | 17 | 3 | 4 | 1 | 1 | 0.68 | 0.12 | 0.16 | 0.04 | |||
TRUE | Indiana | Floyd | 18 | 043 | 18043 | 18043 | 15 | Indiana | 717 | Floyd | County | County | 91 | 6 | 3 | 70 | 12 | 5 | 0.06593 | 0.03297 | 0.76923 | 0.13187 | |||
TRUE | Indiana | Fountain | 18 | 045 | 18045 | 18045 | 15 | Indiana | 718 | Fountain | County | County | 27 | 26 | 1 | 0 | 0 | 6 | 0.96296 | 0.03704 | 0 | 0 | |||
TRUE | Indiana | Franklin | 18 | 047 | 18047 | 18047 | 15 | Indiana | 719 | Franklin | County | County | 14 | 11 | 3 | 0 | 0 | 4 | 0.78571 | 0.21429 | 0 | 0 | |||
TRUE | Indiana | Fulton | 18 | 049 | 18049 | 18049 | 15 | Indiana | 720 | Fulton | County | County | 21 | 17 | 2 | 2 | 0 | 5 | 0.80952 | 0.09524 | 0.09524 | 0 | |||
TRUE | Indiana | Gibson | 18 | 051 | 18051 | 18051 | 15 | Indiana | 721 | Gibson | County | County | 24 | 5 | 3 | 14 | 2 | 6 | 0.20833 | 0.125 | 0.58333 | 0.08333 | |||
TRUE | Indiana | Grant | 18 | 053 | 18053 | 18053 | 15 | Indiana | 722 | Grant | County | County | 84 | 67 | 13 | 4 | 0 | 10 | 0.79762 | 0.15476 | 0.04762 | 0 | |||
TRUE | Indiana | Greene | 18 | 055 | 18055 | 18055 | 15 | Indiana | 723 | Greene | County | County | 41 | 29 | 4 | 6 | 2 | 9 | 0.70732 | 0.09756 | 0.14634 | 0.04878 | |||
TRUE | Indiana | Hamilton | 18 | 057 | 18057 | 18057 | 15 | Indiana | 724 | Hamilton | County | County | 233 | 77 | 55 | 89 | 12 | 9 | 0.33047 | 0.23605 | 0.38197 | 0.0515 | |||
TRUE | Indiana | Hancock | 18 | 059 | 18059 | 18059 | 15 | Indiana | 725 | Hancock | County | County | 53 | 18 | 10 | 24 | 1 | 6 | 0.33962 | 0.18868 | 0.45283 | 0.01887 | |||
TRUE | Indiana | Harrison | 18 | 061 | 18061 | 18061 | 15 | Indiana | 726 | Harrison | County | County | 31 | 0 | 5 | 23 | 3 | 7 | 0 | 0.16129 | 0.74194 | 0.09677 | |||
TRUE | Indiana | Hendricks | 18 | 063 | 18063 | 18063 | 15 | Indiana | 727 | Hendricks | County | County | 126 | 27 | 22 | 69 | 8 | 12 | 0.21429 | 0.1746 | 0.54762 | 0.06349 | |||
TRUE | Indiana | Henry | 18 | 065 | 18065 | 18065 | 15 | Indiana | 728 | Henry | County | County | 43 | 12 | 6 | 24 | 1 | 7 | 0.27907 | 0.13953 | 0.55814 | 0.02326 | |||
TRUE | Indiana | Howard | 18 | 067 | 18067 | 18067 | 15 | Indiana | 729 | Howard | County | County | 103 | 37 | 16 | 47 | 3 | 4 | 0.35922 | 0.15534 | 0.45631 | 0.02913 | |||
TRUE | Indiana | Huntington | 18 | 069 | 18069 | 18069 | 15 | Indiana | 730 | Huntington | County | County | 51 | 42 | 8 | 1 | 0 | 4 | 0.82353 | 0.15686 | 0.01961 | 0 | |||
TRUE | Indiana | Jackson | 18 | 071 | 18071 | 18071 | 15 | Indiana | 731 | Jackson | County | County | 42 | 35 | 2 | 4 | 1 | 5 | 0.83333 | 0.04762 | 0.09524 | 0.02381 | |||
TRUE | Indiana | Jasper | 18 | 073 | 18073 | 18073 | 15 | Indiana | 732 | Jasper | County | County | 46 | 45 | 1 | 0 | 0 | 4 | 0.97826 | 0.02174 | 0 | 0 | |||
TRUE | Indiana | Jay | 18 | 075 | 18075 | 18075 | 15 | Indiana | 733 | Jay | County | County | 20 | 19 | 0 | 1 | 0 | 3 | 0.95 | 0 | 0.05 | 0 | |||
TRUE | Indiana | Jefferson | 18 | 077 | 18077 | 18077 | 15 | Indiana | 734 | Jefferson | County | County | 23 | 6 | 5 | 11 | 1 | 3 | 0.26087 | 0.21739 | 0.47826 | 0.04348 | |||
TRUE | Indiana | Jennings | 18 | 079 | 18079 | 18079 | 15 | Indiana | 735 | Jennings | County | County | 21 | 12 | 4 | 4 | 1 | 4 | 0.57143 | 0.19048 | 0.19048 | 0.04762 | |||
TRUE | Indiana | Johnson | 18 | 081 | 18081 | 18081 | 15 | Indiana | 736 | Johnson | County | County | 103 | 23 | 16 | 57 | 7 | 6 | 0.2233 | 0.15534 | 0.5534 | 0.06796 | |||
TRUE | Indiana | Knox | 18 | 083 | 18083 | 18083 | 15 | Indiana | 737 | Knox | County | County | 35 | 27 | 4 | 2 | 2 | 7 | 0.77143 | 0.11429 | 0.05714 | 0.05714 | |||
TRUE | Indiana | Kosciusko | 18 | 085 | 18085 | 18085 | 15 | Indiana | 738 | Kosciusko | County | County | 81 | 62 | 14 | 5 | 0 | 12 | 0.76543 | 0.17284 | 0.06173 | 0 | |||
FALSE | Indiana | Lagrange | 18 | 087 | 18087 | 18087 | 15 | Indiana | 739 | LaGrange | County | County | 19 | 17 | 1 | 1 | 0 | 5 | 0.89474 | 0.05263 | 0.05263 | 0 | |||
TRUE | Indiana | Lake | 18 | 089 | 18089 | 18089 | 15 | Indiana | 741 | Lake | County | County | 861 | 784 | 49 | 14 | 14 | 28 | 0.91057 | 0.05691 | 0.01626 | 0.01626 | |||
FALSE | Indiana | La Porte | 18 | 091 | 18091 | 18091 | 15 | Indiana | 742 | LaPorte | La Porte | County | County | 157 | 139 | 10 | 5 | 3 | 11 | 0.88535 | 0.06369 | 0.03185 | 0.01911 | ||
TRUE | Indiana | Lawrence | 18 | 093 | 18093 | 18093 | 15 | Indiana | 743 | Lawrence | County | County | 51 | 27 | 6 | 15 | 3 | 5 | 0.52941 | 0.11765 | 0.29412 | 0.05882 | |||
TRUE | Indiana | Madison | 18 | 095 | 18095 | 18095 | 15 | Indiana | 744 | Madison | County | County | 141 | 77 | 16 | 45 | 3 | 15 | 0.5461 | 0.11348 | 0.31915 | 0.02128 | |||
TRUE | Indiana | Marion | 18 | 097 | 18097 | 18097 | 15 | Indiana | 745 | Marion | County | County | 880 | 323 | 186 | 317 | 54 | 40 | 0.36705 | 0.21136 | 0.36023 | 0.06136 | |||
TRUE | Indiana | Marshall | 18 | 099 | 18099 | 18099 | 15 | Indiana | 746 | Marshall | County | County | 56 | 45 | 9 | 1 | 1 | 5 | 0.80357 | 0.16071 | 0.01786 | 0.01786 | |||
TRUE | Indiana | Martin | 18 | 101 | 18101 | 18101 | 15 | Indiana | 747 | Martin | County | County | 16 | 7 | 4 | 4 | 1 | 3 | 0.4375 | 0.25 | 0.25 | 0.0625 | |||
TRUE | Indiana | Miami | 18 | 103 | 18103 | 18103 | 15 | Indiana | 748 | Miami | County | County | 41 | 26 | 3 | 11 | 1 | 7 | 0.63415 | 0.07317 | 0.26829 | 0.02439 | |||
TRUE | Indiana | Monroe | 18 | 105 | 18105 | 18105 | 15 | Indiana | 749 | Monroe | County | County | 178 | 82 | 58 | 33 | 5 | 9 | 0.46067 | 0.32584 | 0.18539 | 0.02809 | |||
TRUE | Indiana | Montgomery | 18 | 107 | 18107 | 18107 | 15 | Indiana | 750 | Montgomery | County | County | 46 | 24 | 8 | 11 | 3 | 7 | 0.52174 | 0.17391 | 0.23913 | 0.06522 | |||
TRUE | Indiana | Morgan | 18 | 109 | 18109 | 18109 | 15 | Indiana | 751 | Morgan | County | County | 36 | 9 | 6 | 20 | 1 | 5 | 0.25 | 0.16667 | 0.55556 | 0.02778 | |||
TRUE | Indiana | Newton | 18 | 111 | 18111 | 18111 | 15 | Indiana | 752 | Newton | County | County | 29 | 23 | 0 | 5 | 1 | 7 | 0.7931 | 0 | 0.17241 | 0.03448 | |||
TRUE | Indiana | Noble | 18 | 113 | 18113 | 18113 | 15 | Indiana | 753 | Noble | County | County | 39 | 33 | 3 | 0 | 3 | 5 | 0.84615 | 0.07692 | 0 | 0.07692 | |||
TRUE | Indiana | Ohio | 18 | 115 | 18115 | 18115 | 15 | Indiana | 754 | Ohio | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Indiana | Orange | 18 | 117 | 18117 | 18117 | 15 | Indiana | 755 | Orange | County | County | 16 | 8 | 0 | 7 | 1 | 4 | 0.5 | 0 | 0.4375 | 0.0625 | |||
TRUE | Indiana | Owen | 18 | 119 | 18119 | 18119 | 15 | Indiana | 756 | Owen | County | County | 11 | 5 | 1 | 5 | 0 | 4 | 0.45455 | 0.09091 | 0.45455 | 0 | |||
TRUE | Indiana | Parke | 18 | 121 | 18121 | 18121 | 15 | Indiana | 757 | Parke | County | County | 3 | 1 | 0 | 0 | 2 | 1 | 0.33333 | 0 | 0 | 0.66667 | |||
TRUE | Indiana | Perry | 18 | 123 | 18123 | 18123 | 15 | Indiana | 758 | Perry | County | County | 22 | 1 | 12 | 8 | 1 | 4 | 0.04545 | 0.54545 | 0.36364 | 0.04545 | |||
TRUE | Indiana | Pike | 18 | 125 | 18125 | 18125 | 15 | Indiana | 759 | Pike | County | County | 8 | 3 | 2 | 2 | 1 | 3 | 0.375 | 0.25 | 0.25 | 0.125 | |||
TRUE | Indiana | Porter | 18 | 127 | 18127 | 18127 | 15 | Indiana | 760 | Porter | County | County | 301 | 264 | 27 | 8 | 2 | 7 | 0.87708 | 0.0897 | 0.02658 | 0.00664 | |||
TRUE | Indiana | Posey | 18 | 129 | 18129 | 18129 | 15 | Indiana | 761 | Posey | County | County | 25 | 2 | 0 | 21 | 2 | 5 | 0.08 | 0 | 0.84 | 0.08 | |||
TRUE | Indiana | Pulaski | 18 | 131 | 18131 | 18131 | 15 | Indiana | 762 | Pulaski | County | County | 18 | 13 | 3 | 2 | 0 | 5 | 0.72222 | 0.16667 | 0.11111 | 0 | |||
TRUE | Indiana | Putnam | 18 | 133 | 18133 | 18133 | 15 | Indiana | 763 | Putnam | County | County | 17 | 6 | 3 | 7 | 1 | 7 | 0.35294 | 0.17647 | 0.41176 | 0.05882 | |||
TRUE | Indiana | Randolph | 18 | 135 | 18135 | 18135 | 15 | Indiana | 764 | Randolph | County | County | 25 | 19 | 4 | 2 | 0 | 8 | 0.76 | 0.16 | 0.08 | 0 | |||
TRUE | Indiana | Ripley | 18 | 137 | 18137 | 18137 | 15 | Indiana | 765 | Ripley | County | County | 27 | 20 | 5 | 2 | 0 | 7 | 0.74074 | 0.18519 | 0.07407 | 0 | |||
TRUE | Indiana | Rush | 18 | 139 | 18139 | 18139 | 15 | Indiana | 766 | Rush | County | County | 14 | 9 | 1 | 4 | 0 | 5 | 0.64286 | 0.07143 | 0.28571 | 0 | |||
FALSE | Indiana | St Joseph | 18 | 141 | 18141 | 18141 | 15 | Indiana | 767 | Saint Joseph | County | County | 454 | 355 | 71 | 20 | 8 | 21 | 0.78194 | 0.15639 | 0.04405 | 0.01762 | |||
TRUE | Indiana | Scott | 18 | 143 | 18143 | 18143 | 15 | Indiana | 768 | Scott | County | County | 11 | 6 | 0 | 4 | 1 | 3 | 0.54545 | 0 | 0.36364 | 0.09091 | |||
TRUE | Indiana | Shelby | 18 | 145 | 18145 | 18145 | 15 | Indiana | 769 | Shelby | County | County | 38 | 6 | 3 | 28 | 1 | 8 | 0.15789 | 0.07895 | 0.73684 | 0.02632 | |||
TRUE | Indiana | Spencer | 18 | 147 | 18147 | 18147 | 15 | Indiana | 770 | Spencer | County | County | 20 | 0 | 4 | 13 | 3 | 8 | 0 | 0.2 | 0.65 | 0.15 | |||
TRUE | Indiana | Starke | 18 | 149 | 18149 | 18149 | 15 | Indiana | 771 | Starke | County | County | 26 | 25 | 1 | 0 | 0 | 5 | 0.96154 | 0.03846 | 0 | 0 | |||
TRUE | Indiana | Steuben | 18 | 151 | 18151 | 18151 | 15 | Indiana | 772 | Steuben | County | County | 36 | 31 | 4 | 1 | 0 | 5 | 0.86111 | 0.11111 | 0.02778 | 0 | |||
TRUE | Indiana | Sullivan | 18 | 153 | 18153 | 18153 | 15 | Indiana | 773 | Sullivan | County | County | 13 | 6 | 3 | 4 | 0 | 6 | 0.46154 | 0.23077 | 0.30769 | 0 | |||
TRUE | Indiana | Switzerland | 18 | 155 | 18155 | 18155 | 15 | Indiana | 774 | Switzerland | County | County | 5 | 2 | 1 | 0 | 2 | 1 | 0.4 | 0.2 | 0 | 0.4 | |||
TRUE | Indiana | Tippecanoe | 18 | 157 | 18157 | 18157 | 15 | Indiana | 775 | Tippecanoe | County | County | 407 | 255 | 52 | 87 | 13 | 10 | 0.62654 | 0.12776 | 0.21376 | 0.03194 | |||
TRUE | Indiana | Tipton | 18 | 159 | 18159 | 18159 | 15 | Indiana | 776 | Tipton | County | County | 24 | 8 | 3 | 12 | 1 | 4 | 0.33333 | 0.125 | 0.5 | 0.04167 | |||
TRUE | Indiana | Union | 18 | 161 | 18161 | 18161 | 15 | Indiana | 777 | Union | County | County | 10 | 8 | 1 | 1 | 0 | 3 | 0.8 | 0.1 | 0.1 | 0 | |||
TRUE | Indiana | Vanderburgh | 18 | 163 | 18163 | 18163 | 15 | Indiana | 778 | Vanderburgh | County | County | 270 | 15 | 28 | 194 | 33 | 9 | 0.05556 | 0.1037 | 0.71852 | 0.12222 | |||
TRUE | Indiana | Vermillion | 18 | 165 | 18165 | 18165 | 15 | Indiana | 779 | Vermillion | County | County | 13 | 10 | 1 | 2 | 0 | 6 | 0.76923 | 0.07692 | 0.15385 | 0 | |||
TRUE | Indiana | Vigo | 18 | 167 | 18167 | 18167 | 15 | Indiana | 780 | Vigo | County | County | 116 | 44 | 16 | 53 | 3 | 9 | 0.37931 | 0.13793 | 0.4569 | 0.02586 | |||
TRUE | Indiana | Wabash | 18 | 169 | 18169 | 18169 | 15 | Indiana | 781 | Wabash | County | County | 28 | 23 | 3 | 2 | 0 | 5 | 0.82143 | 0.10714 | 0.07143 | 0 | |||
TRUE | Indiana | Warren | 18 | 171 | 18171 | 18171 | 15 | Indiana | 782 | Warren | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Indiana | Warrick | 18 | 173 | 18173 | 18173 | 15 | Indiana | 783 | Warrick | County | County | 62 | 3 | 9 | 45 | 5 | 5 | 0.04839 | 0.14516 | 0.72581 | 0.08065 | |||
TRUE | Indiana | Washington | 18 | 175 | 18175 | 18175 | 15 | Indiana | 784 | Washington | County | County | 14 | 2 | 0 | 11 | 1 | 3 | 0.14286 | 0 | 0.78571 | 0.07143 | |||
TRUE | Indiana | Wayne | 18 | 177 | 18177 | 18177 | 15 | Indiana | 785 | Wayne | County | County | 95 | 55 | 12 | 26 | 2 | 9 | 0.57895 | 0.12632 | 0.27368 | 0.02105 | |||
TRUE | Indiana | Wells | 18 | 179 | 18179 | 18179 | 15 | Indiana | 786 | Wells | County | County | 29 | 22 | 6 | 0 | 1 | 5 | 0.75862 | 0.2069 | 0 | 0.03448 | |||
TRUE | Indiana | White | 18 | 181 | 18181 | 18181 | 15 | Indiana | 787 | White | County | County | 45 | 33 | 6 | 4 | 2 | 7 | 0.73333 | 0.13333 | 0.08889 | 0.04444 | |||
TRUE | Indiana | Whitley | 18 | 183 | 18183 | 18183 | 15 | Indiana | 788 | Whitley | County | County | 39 | 34 | 5 | 0 | 0 | 4 | 0.87179 | 0.12821 | 0 | 0 | |||
TRUE | Iowa | Adair | 19 | 001 | 19001 | 19001 | 16 | Iowa | 789 | Adair | County | County | 19 | 14 | 5 | 0 | 0 | 4 | 0.73684 | 0.26316 | 0 | 0 | |||
TRUE | Iowa | Adams | 19 | 003 | 19003 | 19003 | 16 | Iowa | 790 | Adams | County | County | 12 | 11 | 1 | 0 | 0 | 3 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | Iowa | Allamakee | 19 | 005 | 19005 | 19005 | 16 | Iowa | 791 | Allamakee | County | County | 21 | 16 | 4 | 0 | 1 | 6 | 0.7619 | 0.19048 | 0 | 0.04762 | |||
TRUE | Iowa | Appanoose | 19 | 007 | 19007 | 19007 | 16 | Iowa | 792 | Appanoose | County | County | 24 | 19 | 4 | 1 | 0 | 6 | 0.79167 | 0.16667 | 0.04167 | 0 | |||
TRUE | Iowa | Audubon | 19 | 009 | 19009 | 19009 | 16 | Iowa | 793 | Audubon | County | County | 10 | 9 | 1 | 0 | 0 | 4 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Iowa | Benton | 19 | 011 | 19011 | 19011 | 16 | Iowa | 794 | Benton | County | County | 47 | 42 | 5 | 0 | 0 | 11 | 0.89362 | 0.10638 | 0 | 0 | |||
TRUE | Iowa | Black Hawk | 19 | 013 | 19013 | 19013 | 16 | Iowa | 795 | Black Hawk | County | County | 262 | 219 | 37 | 0 | 6 | 11 | 0.83588 | 0.14122 | 0 | 0.0229 | |||
TRUE | Iowa | Boone | 19 | 015 | 19015 | 19015 | 16 | Iowa | 796 | Boone | County | County | 50 | 39 | 8 | 2 | 1 | 6 | 0.78 | 0.16 | 0.04 | 0.02 | |||
TRUE | Iowa | Bremer | 19 | 017 | 19017 | 19017 | 16 | Iowa | 797 | Bremer | County | County | 44 | 40 | 4 | 0 | 0 | 7 | 0.90909 | 0.09091 | 0 | 0 | |||
TRUE | Iowa | Buchanan | 19 | 019 | 19019 | 19019 | 16 | Iowa | 798 | Buchanan | County | County | 31 | 25 | 6 | 0 | 0 | 6 | 0.80645 | 0.19355 | 0 | 0 | |||
TRUE | Iowa | Buena Vista | 19 | 021 | 19021 | 19021 | 16 | Iowa | 799 | Buena Vista | County | County | 40 | 31 | 8 | 0 | 1 | 7 | 0.775 | 0.2 | 0 | 0.025 | |||
TRUE | Iowa | Butler | 19 | 023 | 19023 | 19023 | 16 | Iowa | 800 | Butler | County | County | 32 | 23 | 7 | 1 | 1 | 8 | 0.71875 | 0.21875 | 0.03125 | 0.03125 | |||
TRUE | Iowa | Calhoun | 19 | 025 | 19025 | 19025 | 16 | Iowa | 801 | Calhoun | County | County | 26 | 21 | 4 | 1 | 0 | 8 | 0.80769 | 0.15385 | 0.03846 | 0 | |||
TRUE | Iowa | Carroll | 19 | 027 | 19027 | 19027 | 16 | Iowa | 802 | Carroll | County | County | 34 | 25 | 8 | 1 | 0 | 6 | 0.73529 | 0.23529 | 0.02941 | 0 | |||
TRUE | Iowa | Cass | 19 | 029 | 19029 | 19029 | 16 | Iowa | 803 | Cass | County | County | 30 | 28 | 1 | 0 | 1 | 7 | 0.93333 | 0.03333 | 0 | 0.03333 | |||
TRUE | Iowa | Cedar | 19 | 031 | 19031 | 19031 | 16 | Iowa | 804 | Cedar | County | County | 50 | 42 | 5 | 1 | 2 | 9 | 0.84 | 0.1 | 0.02 | 0.04 | |||
TRUE | Iowa | Cerro Gordo | 19 | 033 | 19033 | 19033 | 16 | Iowa | 805 | Cerro Gordo | County | County | 117 | 100 | 12 | 1 | 4 | 7 | 0.8547 | 0.10256 | 0.00855 | 0.03419 | |||
TRUE | Iowa | Cherokee | 19 | 035 | 19035 | 19035 | 16 | Iowa | 806 | Cherokee | County | County | 20 | 16 | 4 | 0 | 0 | 5 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Iowa | Chickasaw | 19 | 037 | 19037 | 19037 | 16 | Iowa | 807 | Chickasaw | County | County | 26 | 21 | 5 | 0 | 0 | 5 | 0.80769 | 0.19231 | 0 | 0 | |||
TRUE | Iowa | Clarke | 19 | 039 | 19039 | 19039 | 16 | Iowa | 808 | Clarke | County | County | 8 | 6 | 2 | 0 | 0 | 3 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Iowa | Clay | 19 | 041 | 19041 | 19041 | 16 | Iowa | 809 | Clay | County | County | 39 | 33 | 5 | 0 | 1 | 5 | 0.84615 | 0.12821 | 0 | 0.02564 | |||
TRUE | Iowa | Clayton | 19 | 043 | 19043 | 19043 | 16 | Iowa | 810 | Clayton | County | County | 30 | 26 | 3 | 1 | 0 | 9 | 0.86667 | 0.1 | 0.03333 | 0 | |||
TRUE | Iowa | Clinton | 19 | 045 | 19045 | 19045 | 16 | Iowa | 811 | Clinton | County | County | 115 | 97 | 16 | 0 | 2 | 10 | 0.84348 | 0.13913 | 0 | 0.01739 | |||
TRUE | Iowa | Crawford | 19 | 047 | 19047 | 19047 | 16 | Iowa | 812 | Crawford | County | County | 28 | 25 | 2 | 0 | 1 | 7 | 0.89286 | 0.07143 | 0 | 0.03571 | |||
TRUE | Iowa | Dallas | 19 | 049 | 19049 | 19049 | 16 | Iowa | 813 | Dallas | County | County | 83 | 68 | 12 | 1 | 2 | 9 | 0.81928 | 0.14458 | 0.01205 | 0.0241 | |||
TRUE | Iowa | Davis | 19 | 051 | 19051 | 19051 | 16 | Iowa | 814 | Davis | County | County | 7 | 7 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Iowa | Decatur | 19 | 053 | 19053 | 19053 | 16 | Iowa | 815 | Decatur | County | County | 12 | 11 | 1 | 0 | 0 | 5 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | Iowa | Delaware | 19 | 055 | 19055 | 19055 | 16 | Iowa | 816 | Delaware | County | County | 16 | 10 | 6 | 0 | 0 | 3 | 0.625 | 0.375 | 0 | 0 | |||
TRUE | Iowa | Des Moines | 19 | 057 | 19057 | 19057 | 16 | Iowa | 817 | Des Moines | County | County | 106 | 87 | 13 | 4 | 2 | 6 | 0.82075 | 0.12264 | 0.03774 | 0.01887 | |||
TRUE | Iowa | Dickinson | 19 | 059 | 19059 | 19059 | 16 | Iowa | 818 | Dickinson | County | County | 33 | 22 | 5 | 2 | 4 | 3 | 0.66667 | 0.15152 | 0.06061 | 0.12121 | |||
TRUE | Iowa | Dubuque | 19 | 061 | 19061 | 19061 | 16 | Iowa | 819 | Dubuque | County | County | 189 | 157 | 28 | 0 | 4 | 13 | 0.83069 | 0.14815 | 0 | 0.02116 | |||
TRUE | Iowa | Emmet | 19 | 063 | 19063 | 19063 | 16 | Iowa | 820 | Emmet | County | County | 11 | 9 | 2 | 0 | 0 | 3 | 0.81818 | 0.18182 | 0 | 0 | |||
TRUE | Iowa | Fayette | 19 | 065 | 19065 | 19065 | 16 | Iowa | 821 | Fayette | County | County | 31 | 29 | 1 | 0 | 1 | 11 | 0.93548 | 0.03226 | 0 | 0.03226 | |||
TRUE | Iowa | Floyd | 19 | 067 | 19067 | 19067 | 16 | Iowa | 822 | Floyd | County | County | 32 | 27 | 5 | 0 | 0 | 6 | 0.84375 | 0.15625 | 0 | 0 | |||
TRUE | Iowa | Franklin | 19 | 069 | 19069 | 19069 | 16 | Iowa | 823 | Franklin | County | County | 25 | 19 | 5 | 1 | 0 | 6 | 0.76 | 0.2 | 0.04 | 0 | |||
TRUE | Iowa | Fremont | 19 | 071 | 19071 | 19071 | 16 | Iowa | 824 | Fremont | County | County | 12 | 11 | 1 | 0 | 0 | 7 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | Iowa | Greene | 19 | 073 | 19073 | 19073 | 16 | Iowa | 825 | Greene | County | County | 17 | 15 | 0 | 0 | 2 | 5 | 0.88235 | 0 | 0 | 0.11765 | |||
TRUE | Iowa | Grundy | 19 | 075 | 19075 | 19075 | 16 | Iowa | 826 | Grundy | County | County | 35 | 30 | 5 | 0 | 0 | 7 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Iowa | Guthrie | 19 | 077 | 19077 | 19077 | 16 | Iowa | 827 | Guthrie | County | County | 15 | 13 | 2 | 0 | 0 | 6 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Iowa | Hamilton | 19 | 079 | 19079 | 19079 | 16 | Iowa | 828 | Hamilton | County | County | 32 | 27 | 5 | 0 | 0 | 6 | 0.84375 | 0.15625 | 0 | 0 | |||
TRUE | Iowa | Hancock | 19 | 081 | 19081 | 19081 | 16 | Iowa | 829 | Hancock | County | County | 18 | 18 | 0 | 0 | 0 | 5 | 1 | 0 | 0 | 0 | |||
TRUE | Iowa | Hardin | 19 | 083 | 19083 | 19083 | 16 | Iowa | 830 | Hardin | County | County | 29 | 25 | 3 | 1 | 0 | 7 | 0.86207 | 0.10345 | 0.03448 | 0 | |||
TRUE | Iowa | Harrison | 19 | 085 | 19085 | 19085 | 16 | Iowa | 831 | Harrison | County | County | 30 | 26 | 4 | 0 | 0 | 7 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Iowa | Henry | 19 | 087 | 19087 | 19087 | 16 | Iowa | 832 | Henry | County | County | 42 | 36 | 6 | 0 | 0 | 7 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Iowa | Howard | 19 | 089 | 19089 | 19089 | 16 | Iowa | 833 | Howard | County | County | 10 | 9 | 1 | 0 | 0 | 3 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Iowa | Humboldt | 19 | 091 | 19091 | 19091 | 16 | Iowa | 834 | Humboldt | County | County | 22 | 20 | 1 | 0 | 1 | 3 | 0.90909 | 0.04545 | 0 | 0.04545 | |||
TRUE | Iowa | Ida | 19 | 093 | 19093 | 19093 | 16 | Iowa | 835 | Ida | County | County | 13 | 11 | 2 | 0 | 0 | 4 | 0.84615 | 0.15385 | 0 | 0 | |||
TRUE | Iowa | Iowa | 19 | 095 | 19095 | 19095 | 16 | Iowa | 836 | Iowa | County | County | 29 | 26 | 3 | 0 | 0 | 9 | 0.89655 | 0.10345 | 0 | 0 | |||
TRUE | Iowa | Jackson | 19 | 097 | 19097 | 19097 | 16 | Iowa | 837 | Jackson | County | County | 42 | 34 | 6 | 1 | 1 | 11 | 0.80952 | 0.14286 | 0.02381 | 0.02381 | |||
TRUE | Iowa | Jasper | 19 | 099 | 19099 | 19099 | 16 | Iowa | 838 | Jasper | County | County | 73 | 64 | 9 | 0 | 0 | 9 | 0.87671 | 0.12329 | 0 | 0 | |||
TRUE | Iowa | Jefferson | 19 | 101 | 19101 | 19101 | 16 | Iowa | 839 | Jefferson | County | County | 48 | 30 | 17 | 1 | 0 | 6 | 0.625 | 0.35417 | 0.02083 | 0 | |||
TRUE | Iowa | Johnson | 19 | 103 | 19103 | 19103 | 16 | Iowa | 840 | Johnson | County | County | 317 | 244 | 61 | 3 | 9 | 11 | 0.76972 | 0.19243 | 0.00946 | 0.02839 | |||
TRUE | Iowa | Jones | 19 | 105 | 19105 | 19105 | 16 | Iowa | 841 | Jones | County | County | 30 | 26 | 4 | 0 | 0 | 6 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Iowa | Keokuk | 19 | 107 | 19107 | 19107 | 16 | Iowa | 842 | Keokuk | County | County | 14 | 12 | 2 | 0 | 0 | 7 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Iowa | Kossuth | 19 | 109 | 19109 | 19109 | 16 | Iowa | 843 | Kossuth | County | County | 44 | 41 | 2 | 0 | 1 | 10 | 0.93182 | 0.04545 | 0 | 0.02273 | |||
TRUE | Iowa | Lee | 19 | 111 | 19111 | 19111 | 16 | Iowa | 844 | Lee | County | County | 59 | 48 | 11 | 0 | 0 | 6 | 0.81356 | 0.18644 | 0 | 0 | |||
TRUE | Iowa | Linn | 19 | 113 | 19113 | 19113 | 16 | Iowa | 845 | Linn | County | County | 441 | 348 | 72 | 7 | 14 | 22 | 0.78912 | 0.16327 | 0.01587 | 0.03175 | |||
TRUE | Iowa | Louisa | 19 | 115 | 19115 | 19115 | 16 | Iowa | 846 | Louisa | County | County | 22 | 12 | 7 | 0 | 3 | 3 | 0.54545 | 0.31818 | 0 | 0.13636 | |||
TRUE | Iowa | Lucas | 19 | 117 | 19117 | 19117 | 16 | Iowa | 847 | Lucas | County | County | 21 | 16 | 4 | 1 | 0 | 2 | 0.7619 | 0.19048 | 0.04762 | 0 | |||
TRUE | Iowa | Lyon | 19 | 119 | 19119 | 19119 | 16 | Iowa | 848 | Lyon | County | County | 34 | 29 | 3 | 1 | 1 | 7 | 0.85294 | 0.08824 | 0.02941 | 0.02941 | |||
TRUE | Iowa | Madison | 19 | 121 | 19121 | 19121 | 16 | Iowa | 849 | Madison | County | County | 33 | 23 | 10 | 0 | 0 | 7 | 0.69697 | 0.30303 | 0 | 0 | |||
TRUE | Iowa | Mahaska | 19 | 123 | 19123 | 19123 | 16 | Iowa | 850 | Mahaska | County | County | 29 | 23 | 4 | 1 | 1 | 3 | 0.7931 | 0.13793 | 0.03448 | 0.03448 | |||
TRUE | Iowa | Marion | 19 | 125 | 19125 | 19125 | 16 | Iowa | 851 | Marion | County | County | 54 | 42 | 12 | 0 | 0 | 8 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Iowa | Marshall | 19 | 127 | 19127 | 19127 | 16 | Iowa | 852 | Marshall | County | County | 94 | 80 | 13 | 0 | 1 | 10 | 0.85106 | 0.1383 | 0 | 0.01064 | |||
TRUE | Iowa | Mills | 19 | 129 | 19129 | 19129 | 16 | Iowa | 853 | Mills | County | County | 24 | 19 | 4 | 1 | 0 | 4 | 0.79167 | 0.16667 | 0.04167 | 0 | |||
TRUE | Iowa | Mitchell | 19 | 131 | 19131 | 19131 | 16 | Iowa | 854 | Mitchell | County | County | 16 | 13 | 3 | 0 | 0 | 4 | 0.8125 | 0.1875 | 0 | 0 | |||
TRUE | Iowa | Monona | 19 | 133 | 19133 | 19133 | 16 | Iowa | 855 | Monona | County | County | 11 | 10 | 1 | 0 | 0 | 5 | 0.90909 | 0.09091 | 0 | 0 | |||
TRUE | Iowa | Monroe | 19 | 135 | 19135 | 19135 | 16 | Iowa | 856 | Monroe | County | County | 19 | 16 | 2 | 0 | 1 | 3 | 0.84211 | 0.10526 | 0 | 0.05263 | |||
TRUE | Iowa | Montgomery | 19 | 137 | 19137 | 19137 | 16 | Iowa | 857 | Montgomery | County | County | 19 | 15 | 4 | 0 | 0 | 4 | 0.78947 | 0.21053 | 0 | 0 | |||
TRUE | Iowa | Muscatine | 19 | 139 | 19139 | 19139 | 16 | Iowa | 858 | Muscatine | County | County | 13 | 13 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
FALSE | Iowa | Obrien | 19 | 141 | 19141 | 19141 | 16 | Iowa | 859 | O'Brien | County | County | 30 | 26 | 3 | 0 | 1 | 6 | 0.86667 | 0.1 | 0 | 0.03333 | |||
TRUE | Iowa | Osceola | 19 | 143 | 19143 | 19143 | 16 | Iowa | 860 | Osceola | County | County | 10 | 10 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Iowa | Page | 19 | 145 | 19145 | 19145 | 16 | Iowa | 861 | Page | County | County | 31 | 26 | 5 | 0 | 0 | 5 | 0.83871 | 0.16129 | 0 | 0 | |||
TRUE | Iowa | Palo Alto | 19 | 147 | 19147 | 19147 | 16 | Iowa | 862 | Palo Alto | County | County | 23 | 23 | 0 | 0 | 0 | 7 | 1 | 0 | 0 | 0 | |||
TRUE | Iowa | Plymouth | 19 | 149 | 19149 | 19149 | 16 | Iowa | 863 | Plymouth | County | County | 34 | 31 | 2 | 0 | 1 | 6 | 0.91176 | 0.05882 | 0 | 0.02941 | |||
TRUE | Iowa | Pocahontas | 19 | 151 | 19151 | 19151 | 16 | Iowa | 864 | Pocahontas | County | County | 15 | 12 | 3 | 0 | 0 | 5 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Iowa | Polk | 19 | 153 | 19153 | 19153 | 16 | Iowa | 865 | Polk | County | County | 884 | 731 | 123 | 18 | 12 | 34 | 0.82692 | 0.13914 | 0.02036 | 0.01357 | |||
TRUE | Iowa | Pottawattamie | 19 | 155 | 19155 | 19155 | 16 | Iowa | 866 | Pottawattamie | County | County | 159 | 128 | 25 | 3 | 3 | 14 | 0.80503 | 0.15723 | 0.01887 | 0.01887 | |||
TRUE | Iowa | Poweshiek | 19 | 157 | 19157 | 19157 | 16 | Iowa | 867 | Poweshiek | County | County | 32 | 24 | 8 | 0 | 0 | 6 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Iowa | Ringgold | 19 | 159 | 19159 | 19159 | 16 | Iowa | 868 | Ringgold | County | County | 6 | 5 | 0 | 0 | 1 | 3 | 0.83333 | 0 | 0 | 0.16667 | |||
TRUE | Iowa | Sac | 19 | 161 | 19161 | 19161 | 16 | Iowa | 869 | Sac | County | County | 28 | 25 | 3 | 0 | 0 | 8 | 0.89286 | 0.10714 | 0 | 0 | |||
TRUE | Iowa | Scott | 19 | 163 | 19163 | 19163 | 16 | Iowa | 870 | Scott | County | County | 412 | 349 | 53 | 1 | 9 | 19 | 0.84709 | 0.12864 | 0.00243 | 0.02184 | |||
TRUE | Iowa | Shelby | 19 | 165 | 19165 | 19165 | 16 | Iowa | 871 | Shelby | County | County | 27 | 23 | 2 | 1 | 1 | 7 | 0.85185 | 0.07407 | 0.03704 | 0.03704 | |||
TRUE | Iowa | Sioux | 19 | 167 | 19167 | 19167 | 16 | Iowa | 872 | Sioux | County | County | 106 | 93 | 11 | 0 | 2 | 8 | 0.87736 | 0.10377 | 0 | 0.01887 | |||
TRUE | Iowa | Story | 19 | 169 | 19169 | 19169 | 16 | Iowa | 873 | Story | County | County | 264 | 198 | 43 | 3 | 20 | 16 | 0.75 | 0.16288 | 0.01136 | 0.07576 | |||
TRUE | Iowa | Tama | 19 | 171 | 19171 | 19171 | 16 | Iowa | 874 | Tama | County | County | 24 | 22 | 2 | 0 | 0 | 8 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | Iowa | Taylor | 19 | 173 | 19173 | 19173 | 16 | Iowa | 875 | Taylor | County | County | 5 | 3 | 2 | 0 | 0 | 2 | 0.6 | 0.4 | 0 | 0 | |||
TRUE | Iowa | Union | 19 | 175 | 19175 | 19175 | 16 | Iowa | 876 | Union | County | County | 18 | 12 | 6 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Iowa | Van Buren | 19 | 177 | 19177 | 19177 | 16 | Iowa | 877 | Van Buren | County | County | 9 | 9 | 0 | 0 | 0 | 6 | 1 | 0 | 0 | 0 | |||
TRUE | Iowa | Wapello | 19 | 179 | 19179 | 19179 | 16 | Iowa | 878 | Wapello | County | County | 61 | 56 | 5 | 0 | 0 | 5 | 0.91803 | 0.08197 | 0 | 0 | |||
TRUE | Iowa | Warren | 19 | 181 | 19181 | 19181 | 16 | Iowa | 879 | Warren | County | County | 71 | 55 | 14 | 2 | 0 | 7 | 0.77465 | 0.19718 | 0.02817 | 0 | |||
TRUE | Iowa | Washington | 19 | 183 | 19183 | 19183 | 16 | Iowa | 880 | Washington | County | County | 40 | 37 | 3 | 0 | 0 | 8 | 0.925 | 0.075 | 0 | 0 | |||
TRUE | Iowa | Wayne | 19 | 185 | 19185 | 19185 | 16 | Iowa | 881 | Wayne | County | County | 17 | 13 | 4 | 0 | 0 | 5 | 0.76471 | 0.23529 | 0 | 0 | |||
TRUE | Iowa | Webster | 19 | 187 | 19187 | 19187 | 16 | Iowa | 882 | Webster | County | County | 75 | 68 | 6 | 1 | 0 | 8 | 0.90667 | 0.08 | 0.01333 | 0 | |||
TRUE | Iowa | Winnebago | 19 | 189 | 19189 | 19189 | 16 | Iowa | 883 | Winnebago | County | County | 31 | 29 | 2 | 0 | 0 | 4 | 0.93548 | 0.06452 | 0 | 0 | |||
TRUE | Iowa | Winneshiek | 19 | 191 | 19191 | 19191 | 16 | Iowa | 884 | Winneshiek | County | County | 42 | 37 | 5 | 0 | 0 | 6 | 0.88095 | 0.11905 | 0 | 0 | |||
TRUE | Iowa | Woodbury | 19 | 193 | 19193 | 19193 | 16 | Iowa | 885 | Woodbury | County | County | 220 | 188 | 23 | 1 | 8 | 16 | 0.85455 | 0.10455 | 0.00455 | 0.03636 | |||
TRUE | Iowa | Worth | 19 | 195 | 19195 | 19195 | 16 | Iowa | 886 | Worth | County | County | 13 | 9 | 3 | 0 | 1 | 5 | 0.69231 | 0.23077 | 0 | 0.07692 | |||
TRUE | Iowa | Wright | 19 | 197 | 19197 | 19197 | 16 | Iowa | 887 | Wright | County | County | 32 | 25 | 6 | 1 | 0 | 5 | 0.78125 | 0.1875 | 0.03125 | 0 | |||
TRUE | Kansas | Allen | 20 | 001 | 20001 | 20001 | 17 | Kansas | 888 | Allen | County | County | 17 | 11 | 4 | 1 | 1 | 2 | 0.64706 | 0.23529 | 0.05882 | 0.05882 | |||
TRUE | Kansas | Anderson | 20 | 003 | 20003 | 20003 | 17 | Kansas | 889 | Anderson | County | County | 5 | 5 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Atchison | 20 | 005 | 20005 | 20005 | 17 | Kansas | 890 | Atchison | County | County | 18 | 14 | 2 | 1 | 1 | 3 | 0.77778 | 0.11111 | 0.05556 | 0.05556 | |||
TRUE | Kansas | Barber | 20 | 007 | 20007 | 20007 | 17 | Kansas | 891 | Barber | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Barton | 20 | 009 | 20009 | 20009 | 17 | Kansas | 892 | Barton | County | County | 35 | 31 | 2 | 2 | 0 | 4 | 0.88571 | 0.05714 | 0.05714 | 0 | |||
TRUE | Kansas | Bourbon | 20 | 011 | 20011 | 20011 | 17 | Kansas | 893 | Bourbon | County | County | 14 | 11 | 2 | 1 | 0 | 3 | 0.78571 | 0.14286 | 0.07143 | 0 | |||
TRUE | Kansas | Brown | 20 | 013 | 20013 | 20013 | 17 | Kansas | 894 | Brown | County | County | 12 | 11 | 1 | 0 | 0 | 4 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | Kansas | Butler | 20 | 015 | 20015 | 20015 | 17 | Kansas | 895 | Butler | County | County | 77 | 59 | 11 | 5 | 2 | 12 | 0.76623 | 0.14286 | 0.06494 | 0.02597 | |||
TRUE | Kansas | Chase | 20 | 017 | 20017 | 20017 | 17 | Kansas | 896 | Chase | County | County | 4 | 2 | 1 | 1 | 0 | 2 | 0.5 | 0.25 | 0.25 | 0 | |||
TRUE | Kansas | Chautauqua | 20 | 019 | 20019 | 20019 | 17 | Kansas | 897 | Chautauqua | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Cherokee | 20 | 021 | 20021 | 20021 | 17 | Kansas | 898 | Cherokee | County | County | 11 | 9 | 1 | 0 | 1 | 4 | 0.81818 | 0.09091 | 0 | 0.09091 | |||
TRUE | Kansas | Cheyenne | 20 | 023 | 20023 | 20023 | 17 | Kansas | 899 | Cheyenne | County | County | 2 | 1 | 0 | 0 | 1 | 1 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Kansas | Clark | 20 | 025 | 20025 | 20025 | 17 | Kansas | 900 | Clark | County | County | 7 | 5 | 2 | 0 | 0 | 3 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | Kansas | Clay | 20 | 027 | 20027 | 20027 | 17 | Kansas | 901 | Clay | County | County | 12 | 10 | 2 | 0 | 0 | 2 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Kansas | Cloud | 20 | 029 | 20029 | 20029 | 17 | Kansas | 902 | Cloud | County | County | 15 | 14 | 0 | 0 | 1 | 5 | 0.93333 | 0 | 0 | 0.06667 | |||
TRUE | Kansas | Coffey | 20 | 031 | 20031 | 20031 | 17 | Kansas | 903 | Coffey | County | County | 9 | 7 | 2 | 0 | 0 | 2 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Kansas | Comanche | 20 | 033 | 20033 | 20033 | 17 | Kansas | 904 | Comanche | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Kansas | Cowley | 20 | 035 | 20035 | 20035 | 17 | Kansas | 905 | Cowley | County | County | 38 | 28 | 2 | 7 | 1 | 7 | 0.73684 | 0.05263 | 0.18421 | 0.02632 | |||
TRUE | Kansas | Crawford | 20 | 037 | 20037 | 20037 | 17 | Kansas | 906 | Crawford | County | County | 52 | 38 | 9 | 4 | 1 | 9 | 0.73077 | 0.17308 | 0.07692 | 0.01923 | |||
TRUE | Kansas | Decatur | 20 | 039 | 20039 | 20039 | 17 | Kansas | 907 | Decatur | County | County | 9 | 8 | 1 | 0 | 0 | 3 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Kansas | Dickinson | 20 | 041 | 20041 | 20041 | 17 | Kansas | 908 | Dickinson | County | County | 19 | 14 | 4 | 0 | 1 | 5 | 0.73684 | 0.21053 | 0 | 0.05263 | |||
TRUE | Kansas | Doniphan | 20 | 043 | 20043 | 20043 | 17 | Kansas | 909 | Doniphan | County | County | 12 | 9 | 2 | 1 | 0 | 5 | 0.75 | 0.16667 | 0.08333 | 0 | |||
TRUE | Kansas | Douglas | 20 | 045 | 20045 | 20045 | 17 | Kansas | 910 | Douglas | County | County | 177 | 97 | 55 | 17 | 8 | 8 | 0.54802 | 0.31073 | 0.09605 | 0.0452 | |||
TRUE | Kansas | Edwards | 20 | 047 | 20047 | 20047 | 17 | Kansas | 911 | Edwards | County | County | 7 | 5 | 1 | 0 | 1 | 3 | 0.71429 | 0.14286 | 0 | 0.14286 | |||
TRUE | Kansas | Elk | 20 | 049 | 20049 | 20049 | 17 | Kansas | 912 | Elk | County | County | 3 | 3 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Ellis | 20 | 051 | 20051 | 20051 | 17 | Kansas | 913 | Ellis | County | County | 81 | 41 | 37 | 0 | 3 | 2 | 0.50617 | 0.45679 | 0 | 0.03704 | |||
TRUE | Kansas | Ellsworth | 20 | 053 | 20053 | 20053 | 17 | Kansas | 914 | Ellsworth | County | County | 16 | 12 | 1 | 3 | 0 | 6 | 0.75 | 0.0625 | 0.1875 | 0 | |||
TRUE | Kansas | Finney | 20 | 055 | 20055 | 20055 | 17 | Kansas | 915 | Finney | County | County | 32 | 26 | 5 | 1 | 0 | 2 | 0.8125 | 0.15625 | 0.03125 | 0 | |||
TRUE | Kansas | Ford | 20 | 057 | 20057 | 20057 | 17 | Kansas | 916 | Ford | County | County | 34 | 27 | 6 | 1 | 0 | 2 | 0.79412 | 0.17647 | 0.02941 | 0 | |||
TRUE | Kansas | Franklin | 20 | 059 | 20059 | 20059 | 17 | Kansas | 917 | Franklin | County | County | 24 | 21 | 2 | 1 | 0 | 6 | 0.875 | 0.08333 | 0.04167 | 0 | |||
TRUE | Kansas | Geary | 20 | 061 | 20061 | 20061 | 17 | Kansas | 918 | Geary | County | County | 19 | 9 | 8 | 1 | 1 | 2 | 0.47368 | 0.42105 | 0.05263 | 0.05263 | |||
TRUE | Kansas | Gove | 20 | 063 | 20063 | 20063 | 17 | Kansas | 919 | Gove | County | County | 4 | 4 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Graham | 20 | 065 | 20065 | 20065 | 17 | Kansas | 920 | Graham | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Grant | 20 | 067 | 20067 | 20067 | 17 | Kansas | 921 | Grant | County | County | 8 | 7 | 0 | 1 | 0 | 1 | 0.875 | 0 | 0.125 | 0 | |||
TRUE | Kansas | Gray | 20 | 069 | 20069 | 20069 | 17 | Kansas | 922 | Gray | County | County | 6 | 6 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Greeley | 20 | 071 | 20071 | 20071 | 17 | Kansas | 923 | Greeley | County | County | 4 | 4 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Greenwood | 20 | 073 | 20073 | 20073 | 17 | Kansas | 924 | Greenwood | County | County | 6 | 5 | 1 | 0 | 0 | 2 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Kansas | Hamilton | 20 | 075 | 20075 | 20075 | 17 | Kansas | 925 | Hamilton | County | County | 3 | 2 | 0 | 1 | 0 | 2 | 0.66667 | 0 | 0.33333 | 0 | |||
TRUE | Kansas | Harper | 20 | 077 | 20077 | 20077 | 17 | Kansas | 926 | Harper | County | County | 10 | 10 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Harvey | 20 | 079 | 20079 | 20079 | 17 | Kansas | 927 | Harvey | County | County | 50 | 40 | 4 | 4 | 2 | 5 | 0.8 | 0.08 | 0.08 | 0.04 | |||
TRUE | Kansas | Haskell | 20 | 081 | 20081 | 20081 | 17 | Kansas | 928 | Haskell | County | County | 5 | 4 | 0 | 1 | 0 | 3 | 0.8 | 0 | 0.2 | 0 | |||
TRUE | Kansas | Hodgeman | 20 | 083 | 20083 | 20083 | 17 | Kansas | 929 | Hodgeman | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Kansas | Jackson | 20 | 085 | 20085 | 20085 | 17 | Kansas | 930 | Jackson | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Jefferson | 20 | 087 | 20087 | 20087 | 17 | Kansas | 931 | Jefferson | County | County | 13 | 10 | 2 | 1 | 0 | 7 | 0.76923 | 0.15385 | 0.07692 | 0 | |||
TRUE | Kansas | Jewell | 20 | 089 | 20089 | 20089 | 17 | Kansas | 932 | Jewell | County | County | 6 | 6 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Johnson | 20 | 091 | 20091 | 20091 | 17 | Kansas | 933 | Johnson | County | County | 728 | 384 | 184 | 133 | 27 | 32 | 0.52747 | 0.25275 | 0.18269 | 0.03709 | |||
TRUE | Kansas | Kearny | 20 | 093 | 20093 | 20093 | 17 | Kansas | 934 | Kearny | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Kingman | 20 | 095 | 20095 | 20095 | 17 | Kansas | 935 | Kingman | County | County | 12 | 10 | 0 | 1 | 1 | 2 | 0.83333 | 0 | 0.08333 | 0.08333 | |||
TRUE | Kansas | Kiowa | 20 | 097 | 20097 | 20097 | 17 | Kansas | 936 | Kiowa | County | County | 6 | 4 | 1 | 1 | 0 | 2 | 0.66667 | 0.16667 | 0.16667 | 0 | |||
TRUE | Kansas | Labette | 20 | 099 | 20099 | 20099 | 17 | Kansas | 937 | Labette | County | County | 25 | 21 | 3 | 0 | 1 | 6 | 0.84 | 0.12 | 0 | 0.04 | |||
TRUE | Kansas | Lane | 20 | 101 | 20101 | 20101 | 17 | Kansas | 938 | Lane | County | County | 5 | 3 | 1 | 0 | 1 | 2 | 0.6 | 0.2 | 0 | 0.2 | |||
TRUE | Kansas | Leavenworth | 20 | 103 | 20103 | 20103 | 17 | Kansas | 939 | Leavenworth | County | County | 64 | 31 | 21 | 9 | 3 | 6 | 0.48438 | 0.32812 | 0.14062 | 0.04688 | |||
TRUE | Kansas | Lincoln | 20 | 105 | 20105 | 20105 | 17 | Kansas | 940 | Lincoln | County | County | 7 | 6 | 1 | 0 | 0 | 2 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Kansas | Linn | 20 | 107 | 20107 | 20107 | 17 | Kansas | 941 | Linn | County | County | 7 | 3 | 1 | 3 | 0 | 3 | 0.42857 | 0.14286 | 0.42857 | 0 | |||
TRUE | Kansas | Logan | 20 | 109 | 20109 | 20109 | 17 | Kansas | 942 | Logan | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Lyon | 20 | 111 | 20111 | 20111 | 17 | Kansas | 943 | Lyon | County | County | 41 | 33 | 6 | 2 | 0 | 3 | 0.80488 | 0.14634 | 0.04878 | 0 | |||
TRUE | Kansas | McPherson | 20 | 113 | 20113 | 20113 | 17 | Kansas | 946 | McPherson | County | County | 52 | 33 | 14 | 1 | 4 | 4 | 0.63462 | 0.26923 | 0.01923 | 0.07692 | |||
TRUE | Kansas | Marion | 20 | 115 | 20115 | 20115 | 17 | Kansas | 944 | Marion | County | County | 10 | 8 | 2 | 0 | 0 | 4 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Kansas | Marshall | 20 | 117 | 20117 | 20117 | 17 | Kansas | 945 | Marshall | County | County | 10 | 7 | 1 | 1 | 1 | 3 | 0.7 | 0.1 | 0.1 | 0.1 | |||
TRUE | Kansas | Meade | 20 | 119 | 20119 | 20119 | 17 | Kansas | 947 | Meade | County | County | 7 | 6 | 1 | 0 | 0 | 3 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Kansas | Miami | 20 | 121 | 20121 | 20121 | 17 | Kansas | 948 | Miami | County | County | 32 | 19 | 10 | 3 | 0 | 6 | 0.59375 | 0.3125 | 0.09375 | 0 | |||
TRUE | Kansas | Mitchell | 20 | 123 | 20123 | 20123 | 17 | Kansas | 949 | Mitchell | County | County | 7 | 7 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Montgomery | 20 | 125 | 20125 | 20125 | 17 | Kansas | 950 | Montgomery | County | County | 47 | 37 | 3 | 1 | 6 | 7 | 0.78723 | 0.06383 | 0.02128 | 0.12766 | |||
TRUE | Kansas | Morris | 20 | 127 | 20127 | 20127 | 17 | Kansas | 951 | Morris | County | County | 7 | 7 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Morton | 20 | 129 | 20129 | 20129 | 17 | Kansas | 952 | Morton | County | County | 5 | 3 | 1 | 1 | 0 | 2 | 0.6 | 0.2 | 0.2 | 0 | |||
TRUE | Kansas | Nemaha | 20 | 131 | 20131 | 20131 | 17 | Kansas | 953 | Nemaha | County | County | 22 | 19 | 2 | 0 | 1 | 4 | 0.86364 | 0.09091 | 0 | 0.04545 | |||
TRUE | Kansas | Neosho | 20 | 133 | 20133 | 20133 | 17 | Kansas | 954 | Neosho | County | County | 18 | 16 | 1 | 0 | 1 | 4 | 0.88889 | 0.05556 | 0 | 0.05556 | |||
TRUE | Kansas | Ness | 20 | 135 | 20135 | 20135 | 17 | Kansas | 955 | Ness | County | County | 6 | 6 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Norton | 20 | 137 | 20137 | 20137 | 17 | Kansas | 956 | Norton | County | County | 7 | 6 | 0 | 1 | 0 | 3 | 0.85714 | 0 | 0.14286 | 0 | |||
TRUE | Kansas | Osage | 20 | 139 | 20139 | 20139 | 17 | Kansas | 957 | Osage | County | County | 32 | 23 | 6 | 1 | 2 | 8 | 0.71875 | 0.1875 | 0.03125 | 0.0625 | |||
TRUE | Kansas | Osborne | 20 | 141 | 20141 | 20141 | 17 | Kansas | 958 | Osborne | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Ottawa | 20 | 143 | 20143 | 20143 | 17 | Kansas | 959 | Ottawa | County | County | 7 | 7 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Pawnee | 20 | 145 | 20145 | 20145 | 17 | Kansas | 960 | Pawnee | County | County | 16 | 13 | 2 | 1 | 0 | 4 | 0.8125 | 0.125 | 0.0625 | 0 | |||
TRUE | Kansas | Phillips | 20 | 147 | 20147 | 20147 | 17 | Kansas | 961 | Phillips | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Pottawatomie | 20 | 149 | 20149 | 20149 | 17 | Kansas | 962 | Pottawatomie | County | County | 18 | 12 | 5 | 1 | 0 | 6 | 0.66667 | 0.27778 | 0.05556 | 0 | |||
TRUE | Kansas | Pratt | 20 | 151 | 20151 | 20151 | 17 | Kansas | 963 | Pratt | County | County | 22 | 19 | 1 | 2 | 0 | 3 | 0.86364 | 0.04545 | 0.09091 | 0 | |||
TRUE | Kansas | Rawlins | 20 | 153 | 20153 | 20153 | 17 | Kansas | 964 | Rawlins | County | County | 4 | 4 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Reno | 20 | 155 | 20155 | 20155 | 17 | Kansas | 965 | Reno | County | County | 88 | 63 | 18 | 3 | 4 | 8 | 0.71591 | 0.20455 | 0.03409 | 0.04545 | |||
TRUE | Kansas | Republic | 20 | 157 | 20157 | 20157 | 17 | Kansas | 966 | Republic | County | County | 7 | 3 | 2 | 2 | 0 | 4 | 0.42857 | 0.28571 | 0.28571 | 0 | |||
TRUE | Kansas | Rice | 20 | 159 | 20159 | 20159 | 17 | Kansas | 967 | Rice | County | County | 15 | 10 | 4 | 0 | 1 | 3 | 0.66667 | 0.26667 | 0 | 0.06667 | |||
TRUE | Kansas | Riley | 20 | 161 | 20161 | 20161 | 17 | Kansas | 968 | Riley | County | County | 104 | 55 | 28 | 6 | 15 | 5 | 0.52885 | 0.26923 | 0.05769 | 0.14423 | |||
TRUE | Kansas | Rooks | 20 | 163 | 20163 | 20163 | 17 | Kansas | 969 | Rooks | County | County | 9 | 9 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Rush | 20 | 165 | 20165 | 20165 | 17 | Kansas | 970 | Rush | County | County | 7 | 5 | 0 | 0 | 2 | 2 | 0.71429 | 0 | 0 | 0.28571 | |||
TRUE | Kansas | Russell | 20 | 167 | 20167 | 20167 | 17 | Kansas | 971 | Russell | County | County | 8 | 6 | 1 | 1 | 0 | 1 | 0.75 | 0.125 | 0.125 | 0 | |||
TRUE | Kansas | Saline | 20 | 169 | 20169 | 20169 | 17 | Kansas | 972 | Saline | County | County | 83 | 66 | 10 | 2 | 5 | 3 | 0.79518 | 0.12048 | 0.0241 | 0.06024 | |||
TRUE | Kansas | Scott | 20 | 171 | 20171 | 20171 | 17 | Kansas | 973 | Scott | County | County | 10 | 9 | 0 | 1 | 0 | 1 | 0.9 | 0 | 0.1 | 0 | |||
TRUE | Kansas | Sedgwick | 20 | 173 | 20173 | 20173 | 17 | Kansas | 974 | Sedgwick | County | County | 607 | 444 | 108 | 41 | 14 | 36 | 0.73147 | 0.17792 | 0.06755 | 0.02306 | |||
TRUE | Kansas | Seward | 20 | 175 | 20175 | 20175 | 17 | Kansas | 975 | Seward | County | County | 17 | 11 | 3 | 3 | 0 | 1 | 0.64706 | 0.17647 | 0.17647 | 0 | |||
TRUE | Kansas | Shawnee | 20 | 177 | 20177 | 20177 | 17 | Kansas | 976 | Shawnee | County | County | 287 | 211 | 47 | 15 | 14 | 24 | 0.73519 | 0.16376 | 0.05226 | 0.04878 | |||
TRUE | Kansas | Sheridan | 20 | 179 | 20179 | 20179 | 17 | Kansas | 977 | Sheridan | County | County | 5 | 3 | 2 | 0 | 0 | 2 | 0.6 | 0.4 | 0 | 0 | |||
TRUE | Kansas | Sherman | 20 | 181 | 20181 | 20181 | 17 | Kansas | 978 | Sherman | County | County | 6 | 5 | 0 | 0 | 1 | 2 | 0.83333 | 0 | 0 | 0.16667 | |||
TRUE | Kansas | Smith | 20 | 183 | 20183 | 20183 | 17 | Kansas | 979 | Smith | County | County | 7 | 7 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Stafford | 20 | 185 | 20185 | 20185 | 17 | Kansas | 980 | Stafford | County | County | 4 | 2 | 2 | 0 | 0 | 3 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Kansas | Stanton | 20 | 187 | 20187 | 20187 | 17 | Kansas | 981 | Stanton | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Stevens | 20 | 189 | 20189 | 20189 | 17 | Kansas | 982 | Stevens | County | County | 5 | 3 | 2 | 0 | 0 | 2 | 0.6 | 0.4 | 0 | 0 | |||
TRUE | Kansas | Sumner | 20 | 191 | 20191 | 20191 | 17 | Kansas | 983 | Sumner | County | County | 45 | 32 | 8 | 4 | 1 | 9 | 0.71111 | 0.17778 | 0.08889 | 0.02222 | |||
TRUE | Kansas | Thomas | 20 | 193 | 20193 | 20193 | 17 | Kansas | 984 | Thomas | County | County | 10 | 9 | 1 | 0 | 0 | 2 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Kansas | Trego | 20 | 195 | 20195 | 20195 | 17 | Kansas | 985 | Trego | County | County | 9 | 7 | 1 | 1 | 0 | 3 | 0.77778 | 0.11111 | 0.11111 | 0 | |||
TRUE | Kansas | Wabaunsee | 20 | 197 | 20197 | 20197 | 17 | Kansas | 986 | Wabaunsee | County | County | 8 | 6 | 2 | 0 | 0 | 5 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Kansas | Wallace | 20 | 199 | 20199 | 20199 | 17 | Kansas | 987 | Wallace | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Washington | 20 | 201 | 20201 | 20201 | 17 | Kansas | 988 | Washington | County | County | 5 | 5 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kansas | Wichita | 20 | 203 | 20203 | 20203 | 17 | Kansas | 989 | Wichita | County | County | 2 | 1 | 0 | 0 | 1 | 1 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Kansas | Wilson | 20 | 205 | 20205 | 20205 | 17 | Kansas | 990 | Wilson | County | County | 9 | 7 | 2 | 0 | 0 | 3 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Kansas | Woodson | 20 | 207 | 20207 | 20207 | 17 | Kansas | 991 | Woodson | County | County | 6 | 5 | 1 | 0 | 0 | 2 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Kansas | Wyandotte | 20 | 209 | 20209 | 20209 | 17 | Kansas | 992 | Wyandotte | County | County | 143 | 100 | 18 | 11 | 14 | 10 | 0.6993 | 0.12587 | 0.07692 | 0.0979 | |||
TRUE | Kentucky | Adair | 21 | 001 | 21001 | 21001 | 18 | Kentucky | 993 | Adair | County | County | 9 | 1 | 0 | 8 | 0 | 2 | 0.11111 | 0 | 0.88889 | 0 | |||
TRUE | Kentucky | Allen | 21 | 003 | 21003 | 21003 | 18 | Kentucky | 994 | Allen | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Anderson | 21 | 005 | 21005 | 21005 | 18 | Kentucky | 995 | Anderson | County | County | 10 | 2 | 0 | 6 | 2 | 1 | 0.2 | 0 | 0.6 | 0.2 | |||
TRUE | Kentucky | Ballard | 21 | 007 | 21007 | 21007 | 18 | Kentucky | 996 | Ballard | County | County | 6 | 1 | 0 | 5 | 0 | 3 | 0.16667 | 0 | 0.83333 | 0 | |||
TRUE | Kentucky | Barren | 21 | 009 | 21009 | 21009 | 18 | Kentucky | 997 | Barren | County | County | 23 | 0 | 3 | 20 | 0 | 2 | 0 | 0.13043 | 0.86957 | 0 | |||
TRUE | Kentucky | Bath | 21 | 011 | 21011 | 21011 | 18 | Kentucky | 998 | Bath | County | County | 9 | 8 | 0 | 0 | 1 | 3 | 0.88889 | 0 | 0 | 0.11111 | |||
TRUE | Kentucky | Bell | 21 | 013 | 21013 | 21013 | 18 | Kentucky | 999 | Bell | County | County | 20 | 13 | 0 | 6 | 1 | 3 | 0.65 | 0 | 0.3 | 0.05 | |||
TRUE | Kentucky | Boone | 21 | 015 | 21015 | 21015 | 18 | Kentucky | 1000 | Boone | County | County | 62 | 18 | 9 | 27 | 8 | 7 | 0.29032 | 0.14516 | 0.43548 | 0.12903 | |||
TRUE | Kentucky | Bourbon | 21 | 017 | 21017 | 21017 | 18 | Kentucky | 1001 | Bourbon | County | County | 10 | 6 | 1 | 3 | 0 | 1 | 0.6 | 0.1 | 0.3 | 0 | |||
TRUE | Kentucky | Boyd | 21 | 019 | 21019 | 21019 | 18 | Kentucky | 1002 | Boyd | County | County | 71 | 49 | 5 | 17 | 0 | 4 | 0.69014 | 0.07042 | 0.23944 | 0 | |||
TRUE | Kentucky | Boyle | 21 | 021 | 21021 | 21021 | 18 | Kentucky | 1003 | Boyle | County | County | 23 | 11 | 3 | 7 | 2 | 3 | 0.47826 | 0.13043 | 0.30435 | 0.08696 | |||
TRUE | Kentucky | Bracken | 21 | 023 | 21023 | 21023 | 18 | Kentucky | 1004 | Bracken | County | County | 7 | 5 | 0 | 1 | 1 | 3 | 0.71429 | 0 | 0.14286 | 0.14286 | |||
TRUE | Kentucky | Breathitt | 21 | 025 | 21025 | 21025 | 18 | Kentucky | 1005 | Breathitt | County | County | 7 | 6 | 0 | 1 | 0 | 3 | 0.85714 | 0 | 0.14286 | 0 | |||
TRUE | Kentucky | Breckinridge | 21 | 027 | 21027 | 21027 | 18 | Kentucky | 1006 | Breckinridge | County | County | 13 | 1 | 1 | 11 | 0 | 4 | 0.07692 | 0.07692 | 0.84615 | 0 | |||
TRUE | Kentucky | Bullitt | 21 | 029 | 21029 | 21029 | 18 | Kentucky | 1007 | Bullitt | County | County | 22 | 1 | 3 | 17 | 1 | 2 | 0.04545 | 0.13636 | 0.77273 | 0.04545 | |||
TRUE | Kentucky | Butler | 21 | 031 | 21031 | 21031 | 18 | Kentucky | 1008 | Butler | County | County | 5 | 2 | 0 | 3 | 0 | 1 | 0.4 | 0 | 0.6 | 0 | |||
TRUE | Kentucky | Caldwell | 21 | 033 | 21033 | 21033 | 18 | Kentucky | 1009 | Caldwell | County | County | 17 | 0 | 0 | 17 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Calloway | 21 | 035 | 21035 | 21035 | 18 | Kentucky | 1010 | Calloway | County | County | 38 | 1 | 4 | 32 | 1 | 2 | 0.02632 | 0.10526 | 0.84211 | 0.02632 | |||
TRUE | Kentucky | Campbell | 21 | 037 | 21037 | 21037 | 18 | Kentucky | 1011 | Campbell | County | County | 95 | 25 | 6 | 41 | 23 | 9 | 0.26316 | 0.06316 | 0.43158 | 0.24211 | |||
TRUE | Kentucky | Carlisle | 21 | 039 | 21039 | 21039 | 18 | Kentucky | 1012 | Carlisle | County | County | 2 | 1 | 0 | 0 | 1 | 2 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Kentucky | Carroll | 21 | 041 | 21041 | 21041 | 18 | Kentucky | 1013 | Carroll | County | County | 4 | 1 | 0 | 3 | 0 | 1 | 0.25 | 0 | 0.75 | 0 | |||
TRUE | Kentucky | Carter | 21 | 043 | 21043 | 21043 | 18 | Kentucky | 1014 | Carter | County | County | 15 | 13 | 0 | 1 | 1 | 2 | 0.86667 | 0 | 0.06667 | 0.06667 | |||
TRUE | Kentucky | Casey | 21 | 045 | 21045 | 21045 | 18 | Kentucky | 1015 | Casey | County | County | 5 | 3 | 0 | 1 | 1 | 3 | 0.6 | 0 | 0.2 | 0.2 | |||
TRUE | Kentucky | Christian | 21 | 047 | 21047 | 21047 | 18 | Kentucky | 1016 | Christian | County | County | 36 | 3 | 8 | 22 | 3 | 4 | 0.08333 | 0.22222 | 0.61111 | 0.08333 | |||
TRUE | Kentucky | Clark | 21 | 049 | 21049 | 21049 | 18 | Kentucky | 1017 | Clark | County | County | 24 | 11 | 2 | 8 | 3 | 2 | 0.45833 | 0.08333 | 0.33333 | 0.125 | |||
TRUE | Kentucky | Clay | 21 | 051 | 21051 | 21051 | 18 | Kentucky | 1018 | Clay | County | County | 16 | 15 | 1 | 0 | 0 | 2 | 0.9375 | 0.0625 | 0 | 0 | |||
TRUE | Kentucky | Clinton | 21 | 053 | 21053 | 21053 | 18 | Kentucky | 1019 | Clinton | County | County | 6 | 0 | 1 | 5 | 0 | 1 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Kentucky | Crittenden | 21 | 055 | 21055 | 21055 | 18 | Kentucky | 1020 | Crittenden | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Cumberland | 21 | 057 | 21057 | 21057 | 18 | Kentucky | 1021 | Cumberland | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Daviess | 21 | 059 | 21059 | 21059 | 18 | Kentucky | 1022 | Daviess | County | County | 141 | 9 | 11 | 114 | 7 | 7 | 0.06383 | 0.07801 | 0.80851 | 0.04965 | |||
TRUE | Kentucky | Edmonson | 21 | 061 | 21061 | 21061 | 18 | Kentucky | 1023 | Edmonson | County | County | 6 | 0 | 0 | 6 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Elliott | 21 | 063 | 21063 | 21063 | 18 | Kentucky | 1024 | Elliott | County | County | 4 | 4 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Estill | 21 | 065 | 21065 | 21065 | 18 | Kentucky | 1025 | Estill | County | County | 8 | 3 | 3 | 2 | 0 | 2 | 0.375 | 0.375 | 0.25 | 0 | |||
TRUE | Kentucky | Fayette | 21 | 067 | 21067 | 21067 | 18 | Kentucky | 1026 | Fayette | County | County | 316 | 67 | 76 | 159 | 14 | 17 | 0.21203 | 0.24051 | 0.50316 | 0.0443 | |||
TRUE | Kentucky | Fleming | 21 | 069 | 21069 | 21069 | 18 | Kentucky | 1027 | Fleming | County | County | 7 | 6 | 0 | 1 | 0 | 3 | 0.85714 | 0 | 0.14286 | 0 | |||
TRUE | Kentucky | Floyd | 21 | 071 | 21071 | 21071 | 18 | Kentucky | 1028 | Floyd | County | County | 25 | 22 | 2 | 0 | 1 | 10 | 0.88 | 0.08 | 0 | 0.04 | |||
TRUE | Kentucky | Franklin | 21 | 073 | 21073 | 21073 | 18 | Kentucky | 1029 | Franklin | County | County | 50 | 13 | 9 | 23 | 5 | 5 | 0.26 | 0.18 | 0.46 | 0.1 | |||
TRUE | Kentucky | Fulton | 21 | 075 | 21075 | 21075 | 18 | Kentucky | 1030 | Fulton | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Gallatin | 21 | 077 | 21077 | 21077 | 18 | Kentucky | 1031 | Gallatin | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Garrard | 21 | 079 | 21079 | 21079 | 18 | Kentucky | 1032 | Garrard | County | County | 10 | 5 | 1 | 3 | 1 | 2 | 0.5 | 0.1 | 0.3 | 0.1 | |||
TRUE | Kentucky | Grant | 21 | 081 | 21081 | 21081 | 18 | Kentucky | 1033 | Grant | County | County | 14 | 4 | 1 | 4 | 5 | 4 | 0.28571 | 0.07143 | 0.28571 | 0.35714 | |||
TRUE | Kentucky | Graves | 21 | 083 | 21083 | 21083 | 18 | Kentucky | 1034 | Graves | County | County | 47 | 6 | 4 | 29 | 8 | 7 | 0.12766 | 0.08511 | 0.61702 | 0.17021 | |||
TRUE | Kentucky | Grayson | 21 | 085 | 21085 | 21085 | 18 | Kentucky | 1035 | Grayson | County | County | 9 | 0 | 0 | 8 | 1 | 2 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Kentucky | Green | 21 | 087 | 21087 | 21087 | 18 | Kentucky | 1036 | Green | County | County | 7 | 2 | 0 | 3 | 2 | 2 | 0.28571 | 0 | 0.42857 | 0.28571 | |||
TRUE | Kentucky | Greenup | 21 | 089 | 21089 | 21089 | 18 | Kentucky | 1037 | Greenup | County | County | 49 | 42 | 1 | 4 | 2 | 5 | 0.85714 | 0.02041 | 0.08163 | 0.04082 | |||
TRUE | Kentucky | Hancock | 21 | 091 | 21091 | 21091 | 18 | Kentucky | 1038 | Hancock | County | County | 6 | 0 | 0 | 5 | 1 | 2 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Kentucky | Hardin | 21 | 093 | 21093 | 21093 | 18 | Kentucky | 1039 | Hardin | County | County | 68 | 5 | 21 | 39 | 3 | 9 | 0.07353 | 0.30882 | 0.57353 | 0.04412 | |||
TRUE | Kentucky | Harlan | 21 | 095 | 21095 | 21095 | 18 | Kentucky | 1040 | Harlan | County | County | 19 | 10 | 2 | 5 | 2 | 9 | 0.52632 | 0.10526 | 0.26316 | 0.10526 | |||
TRUE | Kentucky | Harrison | 21 | 097 | 21097 | 21097 | 18 | Kentucky | 1041 | Harrison | County | County | 13 | 11 | 0 | 2 | 0 | 1 | 0.84615 | 0 | 0.15385 | 0 | |||
TRUE | Kentucky | Hart | 21 | 099 | 21099 | 21099 | 18 | Kentucky | 1042 | Hart | County | County | 8 | 0 | 0 | 7 | 1 | 4 | 0 | 0 | 0.875 | 0.125 | |||
TRUE | Kentucky | Henderson | 21 | 101 | 21101 | 21101 | 18 | Kentucky | 1043 | Henderson | County | County | 42 | 6 | 2 | 33 | 1 | 3 | 0.14286 | 0.04762 | 0.78571 | 0.02381 | |||
TRUE | Kentucky | Henry | 21 | 103 | 21103 | 21103 | 18 | Kentucky | 1044 | Henry | County | County | 11 | 0 | 0 | 11 | 0 | 6 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Hickman | 21 | 105 | 21105 | 21105 | 18 | Kentucky | 1045 | Hickman | County | County | 5 | 1 | 0 | 3 | 1 | 3 | 0.2 | 0 | 0.6 | 0.2 | |||
TRUE | Kentucky | Hopkins | 21 | 107 | 21107 | 21107 | 18 | Kentucky | 1046 | Hopkins | County | County | 54 | 10 | 11 | 30 | 3 | 7 | 0.18519 | 0.2037 | 0.55556 | 0.05556 | |||
TRUE | Kentucky | Jackson | 21 | 109 | 21109 | 21109 | 18 | Kentucky | 1047 | Jackson | County | County | 10 | 10 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Jefferson | 21 | 111 | 21111 | 21111 | 18 | Kentucky | 1048 | Jefferson | County | County | 888 | 66 | 119 | 612 | 91 | 39 | 0.07432 | 0.13401 | 0.68919 | 0.10248 | |||
TRUE | Kentucky | Jessamine | 21 | 113 | 21113 | 21113 | 18 | Kentucky | 1049 | Jessamine | County | County | 30 | 10 | 9 | 10 | 1 | 2 | 0.33333 | 0.3 | 0.33333 | 0.03333 | |||
TRUE | Kentucky | Johnson | 21 | 115 | 21115 | 21115 | 18 | Kentucky | 1050 | Johnson | County | County | 18 | 14 | 1 | 2 | 1 | 7 | 0.77778 | 0.05556 | 0.11111 | 0.05556 | |||
TRUE | Kentucky | Kenton | 21 | 117 | 21117 | 21117 | 18 | Kentucky | 1051 | Kenton | County | County | 152 | 48 | 21 | 62 | 21 | 8 | 0.31579 | 0.13816 | 0.40789 | 0.13816 | |||
TRUE | Kentucky | Knott | 21 | 119 | 21119 | 21119 | 18 | Kentucky | 1052 | Knott | County | County | 8 | 6 | 2 | 0 | 0 | 5 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Kentucky | Knox | 21 | 121 | 21121 | 21121 | 18 | Kentucky | 1053 | Knox | County | County | 6 | 5 | 0 | 1 | 0 | 4 | 0.83333 | 0 | 0.16667 | 0 | |||
TRUE | Kentucky | Larue | 21 | 123 | 21123 | 21123 | 18 | Kentucky | 1054 | Larue | County | County | 9 | 0 | 1 | 8 | 0 | 2 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Kentucky | Laurel | 21 | 125 | 21125 | 21125 | 18 | Kentucky | 1055 | Laurel | County | County | 49 | 44 | 4 | 1 | 0 | 9 | 0.89796 | 0.08163 | 0.02041 | 0 | |||
TRUE | Kentucky | Lawrence | 21 | 127 | 21127 | 21127 | 18 | Kentucky | 1056 | Lawrence | County | County | 10 | 7 | 3 | 0 | 0 | 4 | 0.7 | 0.3 | 0 | 0 | |||
TRUE | Kentucky | Lee | 21 | 129 | 21129 | 21129 | 18 | Kentucky | 1057 | Lee | County | County | 3 | 2 | 1 | 0 | 0 | 1 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Kentucky | Leslie | 21 | 131 | 21131 | 21131 | 18 | Kentucky | 1058 | Leslie | County | County | 4 | 4 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Letcher | 21 | 133 | 21133 | 21133 | 18 | Kentucky | 1059 | Letcher | County | County | 14 | 14 | 0 | 0 | 0 | 9 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Lewis | 21 | 135 | 21135 | 21135 | 18 | Kentucky | 1060 | Lewis | County | County | 7 | 5 | 1 | 1 | 0 | 3 | 0.71429 | 0.14286 | 0.14286 | 0 | |||
TRUE | Kentucky | Lincoln | 21 | 137 | 21137 | 21137 | 18 | Kentucky | 1061 | Lincoln | County | County | 9 | 5 | 0 | 4 | 0 | 4 | 0.55556 | 0 | 0.44444 | 0 | |||
TRUE | Kentucky | Livingston | 21 | 139 | 21139 | 21139 | 18 | Kentucky | 1062 | Livingston | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Logan | 21 | 141 | 21141 | 21141 | 18 | Kentucky | 1063 | Logan | County | County | 9 | 1 | 1 | 7 | 0 | 2 | 0.11111 | 0.11111 | 0.77778 | 0 | |||
TRUE | Kentucky | Lyon | 21 | 143 | 21143 | 21143 | 18 | Kentucky | 1064 | Lyon | County | County | 5 | 0 | 0 | 4 | 1 | 2 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Kentucky | McCracken | 21 | 145 | 21145 | 21145 | 18 | Kentucky | 1071 | McCracken | County | County | 67 | 3 | 13 | 47 | 4 | 4 | 0.04478 | 0.19403 | 0.70149 | 0.0597 | |||
TRUE | Kentucky | McCreary | 21 | 147 | 21147 | 21147 | 18 | Kentucky | 1072 | McCreary | County | County | 5 | 4 | 0 | 1 | 0 | 3 | 0.8 | 0 | 0.2 | 0 | |||
TRUE | Kentucky | McLean | 21 | 149 | 21149 | 21149 | 18 | Kentucky | 1073 | McLean | County | County | 8 | 0 | 0 | 7 | 1 | 4 | 0 | 0 | 0.875 | 0.125 | |||
TRUE | Kentucky | Madison | 21 | 151 | 21151 | 21151 | 18 | Kentucky | 1065 | Madison | County | County | 55 | 33 | 10 | 12 | 0 | 4 | 0.6 | 0.18182 | 0.21818 | 0 | |||
TRUE | Kentucky | Magoffin | 21 | 153 | 21153 | 21153 | 18 | Kentucky | 1066 | Magoffin | County | County | 7 | 6 | 1 | 0 | 0 | 3 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Kentucky | Marion | 21 | 155 | 21155 | 21155 | 18 | Kentucky | 1067 | Marion | County | County | 8 | 0 | 0 | 7 | 1 | 2 | 0 | 0 | 0.875 | 0.125 | |||
TRUE | Kentucky | Marshall | 21 | 157 | 21157 | 21157 | 18 | Kentucky | 1068 | Marshall | County | County | 21 | 0 | 3 | 17 | 1 | 3 | 0 | 0.14286 | 0.80952 | 0.04762 | |||
TRUE | Kentucky | Martin | 21 | 159 | 21159 | 21159 | 18 | Kentucky | 1069 | Martin | County | County | 11 | 11 | 0 | 0 | 0 | 6 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Mason | 21 | 161 | 21161 | 21161 | 18 | Kentucky | 1070 | Mason | County | County | 16 | 11 | 1 | 3 | 1 | 1 | 0.6875 | 0.0625 | 0.1875 | 0.0625 | |||
TRUE | Kentucky | Meade | 21 | 163 | 21163 | 21163 | 18 | Kentucky | 1074 | Meade | County | County | 10 | 0 | 2 | 8 | 0 | 3 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Kentucky | Menifee | 21 | 165 | 21165 | 21165 | 18 | Kentucky | 1075 | Menifee | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Mercer | 21 | 167 | 21167 | 21167 | 18 | Kentucky | 1076 | Mercer | County | County | 11 | 4 | 2 | 5 | 0 | 1 | 0.36364 | 0.18182 | 0.45455 | 0 | |||
TRUE | Kentucky | Metcalfe | 21 | 169 | 21169 | 21169 | 18 | Kentucky | 1077 | Metcalfe | County | County | 3 | 1 | 0 | 2 | 0 | 2 | 0.33333 | 0 | 0.66667 | 0 | |||
TRUE | Kentucky | Monroe | 21 | 171 | 21171 | 21171 | 18 | Kentucky | 1078 | Monroe | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Montgomery | 21 | 173 | 21173 | 21173 | 18 | Kentucky | 1079 | Montgomery | County | County | 22 | 14 | 4 | 4 | 0 | 2 | 0.63636 | 0.18182 | 0.18182 | 0 | |||
TRUE | Kentucky | Morgan | 21 | 175 | 21175 | 21175 | 18 | Kentucky | 1080 | Morgan | County | County | 7 | 7 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Muhlenberg | 21 | 177 | 21177 | 21177 | 18 | Kentucky | 1081 | Muhlenberg | County | County | 23 | 11 | 2 | 10 | 0 | 6 | 0.47826 | 0.08696 | 0.43478 | 0 | |||
TRUE | Kentucky | Nelson | 21 | 179 | 21179 | 21179 | 18 | Kentucky | 1082 | Nelson | County | County | 28 | 1 | 4 | 20 | 3 | 5 | 0.03571 | 0.14286 | 0.71429 | 0.10714 | |||
TRUE | Kentucky | Nicholas | 21 | 181 | 21181 | 21181 | 18 | Kentucky | 1083 | Nicholas | County | County | 4 | 3 | 1 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Kentucky | Ohio | 21 | 183 | 21183 | 21183 | 18 | Kentucky | 1084 | Ohio | County | County | 18 | 3 | 1 | 13 | 1 | 6 | 0.16667 | 0.05556 | 0.72222 | 0.05556 | |||
TRUE | Kentucky | Oldham | 21 | 185 | 21185 | 21185 | 18 | Kentucky | 1085 | Oldham | County | County | 42 | 1 | 8 | 32 | 1 | 4 | 0.02381 | 0.19048 | 0.7619 | 0.02381 | |||
TRUE | Kentucky | Owen | 21 | 187 | 21187 | 21187 | 18 | Kentucky | 1086 | Owen | County | County | 6 | 0 | 0 | 5 | 1 | 1 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Kentucky | Owsley | 21 | 189 | 21189 | 21189 | 18 | Kentucky | 1087 | Owsley | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Pendleton | 21 | 191 | 21191 | 21191 | 18 | Kentucky | 1088 | Pendleton | County | County | 5 | 3 | 0 | 1 | 1 | 2 | 0.6 | 0 | 0.2 | 0.2 | |||
TRUE | Kentucky | Perry | 21 | 193 | 21193 | 21193 | 18 | Kentucky | 1089 | Perry | County | County | 18 | 15 | 1 | 2 | 0 | 3 | 0.83333 | 0.05556 | 0.11111 | 0 | |||
TRUE | Kentucky | Pike | 21 | 195 | 21195 | 21195 | 18 | Kentucky | 1090 | Pike | County | County | 65 | 58 | 3 | 4 | 0 | 20 | 0.89231 | 0.04615 | 0.06154 | 0 | |||
TRUE | Kentucky | Powell | 21 | 197 | 21197 | 21197 | 18 | Kentucky | 1091 | Powell | County | County | 5 | 5 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Pulaski | 21 | 199 | 21199 | 21199 | 18 | Kentucky | 1092 | Pulaski | County | County | 40 | 15 | 6 | 18 | 1 | 6 | 0.375 | 0.15 | 0.45 | 0.025 | |||
TRUE | Kentucky | Robertson | 21 | 201 | 21201 | 21201 | 18 | Kentucky | 1093 | Robertson | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Rockcastle | 21 | 203 | 21203 | 21203 | 18 | Kentucky | 1094 | Rockcastle | County | County | 6 | 5 | 1 | 0 | 0 | 2 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Kentucky | Rowan | 21 | 205 | 21205 | 21205 | 18 | Kentucky | 1095 | Rowan | County | County | 14 | 6 | 1 | 6 | 1 | 1 | 0.42857 | 0.07143 | 0.42857 | 0.07143 | |||
TRUE | Kentucky | Russell | 21 | 207 | 21207 | 21207 | 18 | Kentucky | 1096 | Russell | County | County | 6 | 2 | 1 | 3 | 0 | 2 | 0.33333 | 0.16667 | 0.5 | 0 | |||
TRUE | Kentucky | Scott | 21 | 209 | 21209 | 21209 | 18 | Kentucky | 1097 | Scott | County | County | 19 | 6 | 4 | 8 | 1 | 1 | 0.31579 | 0.21053 | 0.42105 | 0.05263 | |||
TRUE | Kentucky | Shelby | 21 | 211 | 21211 | 21211 | 18 | Kentucky | 1098 | Shelby | County | County | 20 | 3 | 1 | 14 | 2 | 5 | 0.15 | 0.05 | 0.7 | 0.1 | |||
TRUE | Kentucky | Simpson | 21 | 213 | 21213 | 21213 | 18 | Kentucky | 1099 | Simpson | County | County | 11 | 0 | 1 | 10 | 0 | 1 | 0 | 0.09091 | 0.90909 | 0 | |||
TRUE | Kentucky | Spencer | 21 | 215 | 21215 | 21215 | 18 | Kentucky | 1100 | Spencer | County | County | 6 | 0 | 2 | 4 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Kentucky | Taylor | 21 | 217 | 21217 | 21217 | 18 | Kentucky | 1101 | Taylor | County | County | 9 | 2 | 0 | 7 | 0 | 1 | 0.22222 | 0 | 0.77778 | 0 | |||
TRUE | Kentucky | Todd | 21 | 219 | 21219 | 21219 | 18 | Kentucky | 1102 | Todd | County | County | 8 | 0 | 1 | 6 | 1 | 5 | 0 | 0.125 | 0.75 | 0.125 | |||
TRUE | Kentucky | Trigg | 21 | 221 | 21221 | 21221 | 18 | Kentucky | 1103 | Trigg | County | County | 4 | 1 | 0 | 3 | 0 | 1 | 0.25 | 0 | 0.75 | 0 | |||
TRUE | Kentucky | Trimble | 21 | 223 | 21223 | 21223 | 18 | Kentucky | 1104 | Trimble | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Kentucky | Union | 21 | 225 | 21225 | 21225 | 18 | Kentucky | 1105 | Union | County | County | 8 | 0 | 2 | 6 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Kentucky | Warren | 21 | 227 | 21227 | 21227 | 18 | Kentucky | 1106 | Warren | County | County | 100 | 8 | 9 | 80 | 3 | 8 | 0.08 | 0.09 | 0.8 | 0.03 | |||
TRUE | Kentucky | Washington | 21 | 229 | 21229 | 21229 | 18 | Kentucky | 1107 | Washington | County | County | 6 | 0 | 1 | 4 | 1 | 2 | 0 | 0.16667 | 0.66667 | 0.16667 | |||
TRUE | Kentucky | Wayne | 21 | 231 | 21231 | 21231 | 18 | Kentucky | 1108 | Wayne | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Kentucky | Webster | 21 | 233 | 21233 | 21233 | 18 | Kentucky | 1109 | Webster | County | County | 7 | 1 | 1 | 5 | 0 | 5 | 0.14286 | 0.14286 | 0.71429 | 0 | |||
TRUE | Kentucky | Whitley | 21 | 235 | 21235 | 21235 | 18 | Kentucky | 1110 | Whitley | County | County | 54 | 48 | 3 | 2 | 1 | 2 | 0.88889 | 0.05556 | 0.03704 | 0.01852 | |||
TRUE | Kentucky | Wolfe | 21 | 237 | 21237 | 21237 | 18 | Kentucky | 1111 | Wolfe | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Kentucky | Woodford | 21 | 239 | 21239 | 21239 | 18 | Kentucky | 1112 | Woodford | County | County | 20 | 5 | 3 | 9 | 3 | 2 | 0.25 | 0.15 | 0.45 | 0.15 | |||
TRUE | Louisiana | Acadia | 22 | 001 | 22001 | 22001 | 19 | Louisiana | 1113 | Acadia | Parish | Parish | 27 | 5 | 5 | 17 | 0 | 7 | 0.18519 | 0.18519 | 0.62963 | 0 | |||
TRUE | Louisiana | Allen | 22 | 003 | 22003 | 22003 | 19 | Louisiana | 1114 | Allen | Parish | Parish | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Ascension | 22 | 005 | 22005 | 22005 | 19 | Louisiana | 1115 | Ascension | Parish | Parish | 49 | 0 | 1 | 44 | 4 | 8 | 0 | 0.02041 | 0.89796 | 0.08163 | |||
TRUE | Louisiana | Assumption | 22 | 007 | 22007 | 22007 | 19 | Louisiana | 1116 | Assumption | Parish | Parish | 4 | 0 | 0 | 3 | 1 | 1 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Louisiana | Avoyelles | 22 | 009 | 22009 | 22009 | 19 | Louisiana | 1117 | Avoyelles | Parish | Parish | 19 | 0 | 1 | 17 | 1 | 8 | 0 | 0.05263 | 0.89474 | 0.05263 | |||
TRUE | Louisiana | Beauregard | 22 | 011 | 22011 | 22011 | 19 | Louisiana | 1118 | Beauregard | Parish | Parish | 16 | 0 | 3 | 13 | 0 | 2 | 0 | 0.1875 | 0.8125 | 0 | |||
TRUE | Louisiana | Bienville | 22 | 013 | 22013 | 22013 | 19 | Louisiana | 1119 | Bienville | Parish | Parish | 8 | 0 | 0 | 8 | 0 | 5 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Bossier | 22 | 015 | 22015 | 22015 | 19 | Louisiana | 1120 | Bossier | Parish | Parish | 78 | 2 | 6 | 68 | 2 | 9 | 0.02564 | 0.07692 | 0.87179 | 0.02564 | |||
TRUE | Louisiana | Caddo | 22 | 017 | 22017 | 22017 | 19 | Louisiana | 1121 | Caddo | Parish | Parish | 190 | 8 | 12 | 169 | 1 | 18 | 0.04211 | 0.06316 | 0.88947 | 0.00526 | |||
TRUE | Louisiana | Calcasieu | 22 | 019 | 22019 | 22019 | 19 | Louisiana | 1122 | Calcasieu | Parish | Parish | 135 | 4 | 6 | 118 | 7 | 10 | 0.02963 | 0.04444 | 0.87407 | 0.05185 | |||
TRUE | Louisiana | Caldwell | 22 | 021 | 22021 | 22021 | 19 | Louisiana | 1123 | Caldwell | Parish | Parish | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Cameron | 22 | 023 | 22023 | 22023 | 19 | Louisiana | 1124 | Cameron | Parish | Parish | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Louisiana | Catahoula | 22 | 025 | 22025 | 22025 | 19 | Louisiana | 1125 | Catahoula | Parish | Parish | 9 | 1 | 0 | 8 | 0 | 3 | 0.11111 | 0 | 0.88889 | 0 | |||
TRUE | Louisiana | Claiborne | 22 | 027 | 22027 | 22027 | 19 | Louisiana | 1126 | Claiborne | Parish | Parish | 11 | 0 | 0 | 11 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Concordia | 22 | 029 | 22029 | 22029 | 19 | Louisiana | 1127 | Concordia | Parish | Parish | 12 | 0 | 0 | 12 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | De Soto | 22 | 031 | 22031 | 22031 | 19 | Louisiana | 1128 | De Soto | Parish | Parish | 5 | 0 | 0 | 5 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | East Baton Rouge | 22 | 033 | 22033 | 22033 | 19 | Louisiana | 1129 | East Baton Rouge | Parish | Parish | 491 | 6 | 41 | 408 | 36 | 25 | 0.01222 | 0.0835 | 0.83096 | 0.07332 | |||
TRUE | Louisiana | East Carroll | 22 | 035 | 22035 | 22035 | 19 | Louisiana | 1130 | East Carroll | Parish | Parish | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | East Feliciana | 22 | 037 | 22037 | 22037 | 19 | Louisiana | 1131 | East Feliciana | Parish | Parish | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Evangeline | 22 | 039 | 22039 | 22039 | 19 | Louisiana | 1132 | Evangeline | Parish | Parish | 9 | 0 | 0 | 8 | 1 | 2 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Louisiana | Franklin | 22 | 041 | 22041 | 22041 | 19 | Louisiana | 1133 | Franklin | Parish | Parish | 5 | 0 | 0 | 5 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Grant | 22 | 043 | 22043 | 22043 | 19 | Louisiana | 1134 | Grant | Parish | Parish | 8 | 0 | 0 | 7 | 1 | 3 | 0 | 0 | 0.875 | 0.125 | |||
TRUE | Louisiana | Iberia | 22 | 045 | 22045 | 22045 | 19 | Louisiana | 1135 | Iberia | Parish | Parish | 28 | 1 | 1 | 23 | 3 | 4 | 0.03571 | 0.03571 | 0.82143 | 0.10714 | |||
TRUE | Louisiana | Iberville | 22 | 047 | 22047 | 22047 | 19 | Louisiana | 1136 | Iberville | Parish | Parish | 15 | 0 | 1 | 12 | 2 | 4 | 0 | 0.06667 | 0.8 | 0.13333 | |||
TRUE | Louisiana | Jackson | 22 | 049 | 22049 | 22049 | 19 | Louisiana | 1137 | Jackson | Parish | Parish | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Jefferson | 22 | 051 | 22051 | 22051 | 19 | Louisiana | 1139 | Jefferson | Parish | Parish | 395 | 4 | 35 | 246 | 110 | 18 | 0.01013 | 0.08861 | 0.62278 | 0.27848 | |||
TRUE | Louisiana | Jefferson Davis | 22 | 053 | 22053 | 22053 | 19 | Louisiana | 1138 | Jefferson Davis | Parish | Parish | 11 | 1 | 0 | 10 | 0 | 4 | 0.09091 | 0 | 0.90909 | 0 | |||
TRUE | Louisiana | Lafayette | 22 | 055 | 22055 | 22055 | 19 | Louisiana | 1141 | Lafayette | Parish | Parish | 170 | 2 | 26 | 137 | 5 | 11 | 0.01176 | 0.15294 | 0.80588 | 0.02941 | |||
TRUE | Louisiana | Lafourche | 22 | 057 | 22057 | 22057 | 19 | Louisiana | 1142 | Lafourche | Parish | Parish | 44 | 8 | 1 | 27 | 8 | 7 | 0.18182 | 0.02273 | 0.61364 | 0.18182 | |||
TRUE | Louisiana | La Salle | 22 | 059 | 22059 | 22059 | 19 | Louisiana | 1140 | La Salle | Parish | Parish | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Lincoln | 22 | 061 | 22061 | 22061 | 19 | Louisiana | 1143 | Lincoln | Parish | Parish | 38 | 0 | 1 | 36 | 1 | 4 | 0 | 0.02632 | 0.94737 | 0.02632 | |||
TRUE | Louisiana | Livingston | 22 | 063 | 22063 | 22063 | 19 | Louisiana | 1144 | Livingston | Parish | Parish | 75 | 2 | 5 | 64 | 4 | 11 | 0.02667 | 0.06667 | 0.85333 | 0.05333 | |||
TRUE | Louisiana | Madison | 22 | 065 | 22065 | 22065 | 19 | Louisiana | 1145 | Madison | Parish | Parish | 5 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Morehouse | 22 | 067 | 22067 | 22067 | 19 | Louisiana | 1146 | Morehouse | Parish | Parish | 12 | 0 | 2 | 10 | 0 | 3 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Louisiana | Natchitoches | 22 | 069 | 22069 | 22069 | 19 | Louisiana | 1147 | Natchitoches | Parish | Parish | 13 | 0 | 1 | 11 | 1 | 1 | 0 | 0.07692 | 0.84615 | 0.07692 | |||
TRUE | Louisiana | Orleans | 22 | 071 | 22071 | 22071 | 19 | Louisiana | 1148 | Orleans | Parish | Parish | 482 | 9 | 41 | 235 | 197 | 22 | 0.01867 | 0.08506 | 0.48755 | 0.40871 | |||
TRUE | Louisiana | Ouachita | 22 | 073 | 22073 | 22073 | 19 | Louisiana | 1149 | Ouachita | Parish | Parish | 116 | 3 | 2 | 99 | 12 | 7 | 0.02586 | 0.01724 | 0.85345 | 0.10345 | |||
TRUE | Louisiana | Plaquemines | 22 | 075 | 22075 | 22075 | 19 | Louisiana | 1150 | Plaquemines | Parish | Parish | 13 | 0 | 1 | 10 | 2 | 3 | 0 | 0.07692 | 0.76923 | 0.15385 | |||
TRUE | Louisiana | Pointe Coupee | 22 | 077 | 22077 | 22077 | 19 | Louisiana | 1151 | Pointe Coupee | Parish | Parish | 6 | 0 | 0 | 5 | 1 | 4 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Louisiana | Rapides | 22 | 079 | 22079 | 22079 | 19 | Louisiana | 1152 | Rapides | Parish | Parish | 70 | 0 | 3 | 63 | 4 | 11 | 0 | 0.04286 | 0.9 | 0.05714 | |||
TRUE | Louisiana | Red River | 22 | 081 | 22081 | 22081 | 19 | Louisiana | 1153 | Red River | Parish | Parish | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Louisiana | Richland | 22 | 083 | 22083 | 22083 | 19 | Louisiana | 1154 | Richland | Parish | Parish | 9 | 0 | 0 | 8 | 1 | 3 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Louisiana | Sabine | 22 | 085 | 22085 | 22085 | 19 | Louisiana | 1155 | Sabine | Parish | Parish | 10 | 0 | 1 | 9 | 0 | 4 | 0 | 0.1 | 0.9 | 0 | |||
FALSE | Louisiana | St Bernard | 22 | 087 | 22087 | 22087 | 19 | Louisiana | 1156 | Saint Bernard | Parish | Parish | 44 | 0 | 5 | 31 | 8 | 4 | 0 | 0.11364 | 0.70455 | 0.18182 | |||
FALSE | Louisiana | St Charles | 22 | 089 | 22089 | 22089 | 19 | Louisiana | 1157 | Saint Charles | Parish | Parish | 29 | 0 | 2 | 23 | 4 | 6 | 0 | 0.06897 | 0.7931 | 0.13793 | |||
FALSE | Louisiana | St Helena | 22 | 091 | 22091 | 22091 | 19 | Louisiana | 1158 | Saint Helena | Parish | Parish | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
FALSE | Louisiana | St James | 22 | 093 | 22093 | 22093 | 19 | Louisiana | 1159 | Saint James | Parish | Parish | 13 | 0 | 0 | 11 | 2 | 6 | 0 | 0 | 0.84615 | 0.15385 | |||
FALSE | Louisiana | St John The Baptist | 22 | 095 | 22095 | 22095 | 19 | Louisiana | 1160 | Saint John the Baptist | Parish | Parish | 20 | 0 | 1 | 17 | 2 | 2 | 0 | 0.05 | 0.85 | 0.1 | |||
FALSE | Louisiana | St Landry | 22 | 097 | 22097 | 22097 | 19 | Louisiana | 1161 | Saint Landry | Parish | Parish | 29 | 1 | 4 | 23 | 1 | 4 | 0.03448 | 0.13793 | 0.7931 | 0.03448 | |||
FALSE | Louisiana | St Martin | 22 | 099 | 22099 | 22099 | 19 | Louisiana | 1162 | Saint Martin | Parish | Parish | 13 | 0 | 2 | 10 | 1 | 3 | 0 | 0.15385 | 0.76923 | 0.07692 | |||
FALSE | Louisiana | St Mary | 22 | 101 | 22101 | 22101 | 19 | Louisiana | 1163 | Saint Mary | Parish | Parish | 27 | 1 | 3 | 19 | 4 | 6 | 0.03704 | 0.11111 | 0.7037 | 0.14815 | |||
FALSE | Louisiana | St Tammany | 22 | 103 | 22103 | 22103 | 19 | Louisiana | 1164 | Saint Tammany | Parish | Parish | 190 | 2 | 16 | 153 | 19 | 13 | 0.01053 | 0.08421 | 0.80526 | 0.1 | |||
TRUE | Louisiana | Tangipahoa | 22 | 105 | 22105 | 22105 | 19 | Louisiana | 1165 | Tangipahoa | Parish | Parish | 54 | 0 | 5 | 44 | 5 | 8 | 0 | 0.09259 | 0.81481 | 0.09259 | |||
TRUE | Louisiana | Tensas | 22 | 107 | 22107 | 22107 | 19 | Louisiana | 1166 | Tensas | Parish | Parish | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Louisiana | Terrebonne | 22 | 109 | 22109 | 22109 | 19 | Louisiana | 1167 | Terrebonne | Parish | Parish | 45 | 1 | 2 | 36 | 6 | 7 | 0.02222 | 0.04444 | 0.8 | 0.13333 | |||
TRUE | Louisiana | Union | 22 | 111 | 22111 | 22111 | 19 | Louisiana | 1168 | Union | Parish | Parish | 5 | 0 | 0 | 4 | 1 | 3 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Louisiana | Vermilion | 22 | 113 | 22113 | 22113 | 19 | Louisiana | 1169 | Vermilion | Parish | Parish | 19 | 5 | 4 | 10 | 0 | 3 | 0.26316 | 0.21053 | 0.52632 | 0 | |||
TRUE | Louisiana | Vernon | 22 | 115 | 22115 | 22115 | 19 | Louisiana | 1170 | Vernon | Parish | Parish | 12 | 0 | 4 | 8 | 0 | 4 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Louisiana | Washington | 22 | 117 | 22117 | 22117 | 19 | Louisiana | 1171 | Washington | Parish | Parish | 18 | 0 | 2 | 14 | 2 | 3 | 0 | 0.11111 | 0.77778 | 0.11111 | |||
TRUE | Louisiana | Webster | 22 | 119 | 22119 | 22119 | 19 | Louisiana | 1172 | Webster | Parish | Parish | 18 | 1 | 0 | 17 | 0 | 5 | 0.05556 | 0 | 0.94444 | 0 | |||
TRUE | Louisiana | West Baton Rouge | 22 | 121 | 22121 | 22121 | 19 | Louisiana | 1173 | West Baton Rouge | Parish | Parish | 10 | 0 | 2 | 7 | 1 | 2 | 0 | 0.2 | 0.7 | 0.1 | |||
TRUE | Louisiana | West Carroll | 22 | 123 | 22123 | 22123 | 19 | Louisiana | 1174 | West Carroll | Parish | Parish | 5 | 0 | 0 | 4 | 1 | 3 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Louisiana | West Feliciana | 22 | 125 | 22125 | 22125 | 19 | Louisiana | 1175 | West Feliciana | Parish | Parish | 6 | 0 | 1 | 5 | 0 | 1 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Louisiana | Winn | 22 | 127 | 22127 | 22127 | 19 | Louisiana | 1176 | Winn | Parish | Parish | 12 | 0 | 0 | 11 | 1 | 3 | 0 | 0 | 0.91667 | 0.08333 | |||
TRUE | Maine | Androscoggin | 23 | 001 | 23001 | 23001 | 20 | Maine | 1177 | Androscoggin | County | County | 95 | 3 | 89 | 2 | 1 | 13 | 0.03158 | 0.93684 | 0.02105 | 0.01053 | |||
TRUE | Maine | Aroostook | 23 | 003 | 23003 | 23003 | 20 | Maine | 1178 | Aroostook | County | County | 76 | 3 | 72 | 0 | 1 | 20 | 0.03947 | 0.94737 | 0 | 0.01316 | |||
TRUE | Maine | Cumberland | 23 | 005 | 23005 | 23005 | 20 | Maine | 1179 | Cumberland | County | County | 361 | 5 | 341 | 3 | 12 | 31 | 0.01385 | 0.9446 | 0.00831 | 0.03324 | |||
TRUE | Maine | Franklin | 23 | 007 | 23007 | 23007 | 20 | Maine | 1180 | Franklin | County | County | 23 | 0 | 23 | 0 | 0 | 13 | 0 | 1 | 0 | 0 | |||
TRUE | Maine | Hancock | 23 | 009 | 23009 | 23009 | 20 | Maine | 1181 | Hancock | County | County | 63 | 2 | 58 | 1 | 2 | 20 | 0.03175 | 0.92063 | 0.01587 | 0.03175 | |||
TRUE | Maine | Kennebec | 23 | 011 | 23011 | 23011 | 20 | Maine | 1182 | Kennebec | County | County | 122 | 1 | 117 | 0 | 4 | 22 | 0.0082 | 0.95902 | 0 | 0.03279 | |||
TRUE | Maine | Knox | 23 | 013 | 23013 | 23013 | 20 | Maine | 1183 | Knox | County | County | 33 | 2 | 23 | 2 | 6 | 11 | 0.06061 | 0.69697 | 0.06061 | 0.18182 | |||
TRUE | Maine | Lincoln | 23 | 015 | 23015 | 23015 | 20 | Maine | 1184 | Lincoln | County | County | 31 | 0 | 31 | 0 | 0 | 15 | 0 | 1 | 0 | 0 | |||
TRUE | Maine | Oxford | 23 | 017 | 23017 | 23017 | 20 | Maine | 1185 | Oxford | County | County | 51 | 1 | 47 | 2 | 1 | 21 | 0.01961 | 0.92157 | 0.03922 | 0.01961 | |||
TRUE | Maine | Penobscot | 23 | 019 | 23019 | 23019 | 20 | Maine | 1186 | Penobscot | County | County | 155 | 3 | 144 | 2 | 6 | 31 | 0.01935 | 0.92903 | 0.0129 | 0.03871 | |||
TRUE | Maine | Piscataquis | 23 | 021 | 23021 | 23021 | 20 | Maine | 1187 | Piscataquis | County | County | 9 | 0 | 8 | 1 | 0 | 6 | 0 | 0.88889 | 0.11111 | 0 | |||
TRUE | Maine | Sagadahoc | 23 | 023 | 23023 | 23023 | 20 | Maine | 1188 | Sagadahoc | County | County | 43 | 1 | 40 | 1 | 1 | 6 | 0.02326 | 0.93023 | 0.02326 | 0.02326 | |||
TRUE | Maine | Somerset | 23 | 025 | 23025 | 23025 | 20 | Maine | 1189 | Somerset | County | County | 33 | 0 | 32 | 0 | 1 | 13 | 0 | 0.9697 | 0 | 0.0303 | |||
TRUE | Maine | Waldo | 23 | 027 | 23027 | 23027 | 20 | Maine | 1190 | Waldo | County | County | 26 | 0 | 23 | 0 | 3 | 11 | 0 | 0.88462 | 0 | 0.11538 | |||
TRUE | Maine | Washington | 23 | 029 | 23029 | 23029 | 20 | Maine | 1191 | Washington | County | County | 24 | 0 | 23 | 1 | 0 | 14 | 0 | 0.95833 | 0.04167 | 0 | |||
TRUE | Maine | York | 23 | 031 | 23031 | 23031 | 20 | Maine | 1192 | York | County | County | 176 | 6 | 154 | 2 | 14 | 29 | 0.03409 | 0.875 | 0.01136 | 0.07955 | |||
TRUE | Maryland | Allegany | 24 | 001 | 24001 | 24001 | 21 | Maryland | 1193 | Allegany | County | County | 68 | 6 | 30 | 10 | 22 | 12 | 0.08824 | 0.44118 | 0.14706 | 0.32353 | |||
TRUE | Maryland | Anne Arundel | 24 | 003 | 24003 | 24003 | 21 | Maryland | 1194 | Anne Arundel | County | County | 538 | 9 | 450 | 66 | 13 | 30 | 0.01673 | 0.83643 | 0.12268 | 0.02416 | |||
TRUE | Maryland | Baltimore | 24 | 005 | 24005 | 24005 | 21 | Maryland | 1195 | Baltimore | County | County | 1039 | 23 | 862 | 133 | 21 | 60 | 0.02214 | 0.82964 | 0.12801 | 0.02021 | |||
TRUE | Maryland | Calvert | 24 | 009 | 24009 | 24009 | 21 | Maryland | 1196 | Calvert | County | County | 67 | 0 | 57 | 5 | 5 | 11 | 0 | 0.85075 | 0.07463 | 0.07463 | |||
TRUE | Maryland | Caroline | 24 | 011 | 24011 | 24011 | 21 | Maryland | 1197 | Caroline | County | County | 15 | 0 | 12 | 2 | 1 | 5 | 0 | 0.8 | 0.13333 | 0.06667 | |||
TRUE | Maryland | Carroll | 24 | 013 | 24013 | 24013 | 21 | Maryland | 1198 | Carroll | County | County | 123 | 3 | 107 | 12 | 1 | 10 | 0.02439 | 0.86992 | 0.09756 | 0.00813 | |||
TRUE | Maryland | Cecil | 24 | 015 | 24015 | 24015 | 21 | Maryland | 1199 | Cecil | County | County | 56 | 0 | 50 | 6 | 0 | 11 | 0 | 0.89286 | 0.10714 | 0 | |||
TRUE | Maryland | Charles | 24 | 017 | 24017 | 24017 | 21 | Maryland | 1200 | Charles | County | County | 84 | 3 | 60 | 16 | 5 | 15 | 0.03571 | 0.71429 | 0.19048 | 0.05952 | |||
TRUE | Maryland | Dorchester | 24 | 019 | 24019 | 24019 | 21 | Maryland | 1201 | Dorchester | County | County | 12 | 0 | 8 | 4 | 0 | 3 | 0 | 0.66667 | 0.33333 | 0 | |||
TRUE | Maryland | Frederick | 24 | 021 | 24021 | 24021 | 21 | Maryland | 1202 | Frederick | County | County | 239 | 8 | 188 | 38 | 5 | 25 | 0.03347 | 0.78661 | 0.159 | 0.02092 | |||
TRUE | Maryland | Garrett | 24 | 023 | 24023 | 24023 | 21 | Maryland | 1203 | Garrett | County | County | 17 | 7 | 8 | 2 | 0 | 4 | 0.41176 | 0.47059 | 0.11765 | 0 | |||
TRUE | Maryland | Harford | 24 | 025 | 24025 | 24025 | 21 | Maryland | 1204 | Harford | County | County | 231 | 7 | 198 | 23 | 3 | 15 | 0.0303 | 0.85714 | 0.09957 | 0.01299 | |||
TRUE | Maryland | Howard | 24 | 027 | 24027 | 24027 | 21 | Maryland | 1205 | Howard | County | County | 421 | 52 | 321 | 35 | 13 | 19 | 0.12352 | 0.76247 | 0.08314 | 0.03088 | |||
TRUE | Maryland | Kent | 24 | 029 | 24029 | 24029 | 21 | Maryland | 1206 | Kent | County | County | 9 | 0 | 7 | 2 | 0 | 3 | 0 | 0.77778 | 0.22222 | 0 | |||
TRUE | Maryland | Montgomery | 24 | 031 | 24031 | 24031 | 21 | Maryland | 1207 | Montgomery | County | County | 1361 | 22 | 1166 | 150 | 23 | 43 | 0.01616 | 0.85672 | 0.11021 | 0.0169 | |||
FALSE | Maryland | Prince Georges | 24 | 033 | 24033 | 24033 | 21 | Maryland | 1208 | Prince George's | County | County | 558 | 15 | 455 | 72 | 16 | 34 | 0.02688 | 0.81541 | 0.12903 | 0.02867 | |||
FALSE | Maryland | Queen Annes | 24 | 035 | 24035 | 24035 | 21 | Maryland | 1209 | Queen Anne's | County | County | 19 | 0 | 14 | 4 | 1 | 7 | 0 | 0.73684 | 0.21053 | 0.05263 | |||
FALSE | Maryland | St Marys | 24 | 037 | 24037 | 24037 | 21 | Maryland | 1210 | Saint Mary's | County | County | 63 | 2 | 52 | 8 | 1 | 16 | 0.03175 | 0.8254 | 0.12698 | 0.01587 | |||
TRUE | Maryland | Somerset | 24 | 039 | 24039 | 24039 | 21 | Maryland | 1211 | Somerset | County | County | 7 | 0 | 4 | 3 | 0 | 3 | 0 | 0.57143 | 0.42857 | 0 | |||
TRUE | Maryland | Talbot | 24 | 041 | 24041 | 24041 | 21 | Maryland | 1212 | Talbot | County | County | 26 | 1 | 15 | 10 | 0 | 5 | 0.03846 | 0.57692 | 0.38462 | 0 | |||
TRUE | Maryland | Washington | 24 | 043 | 24043 | 24043 | 21 | Maryland | 1213 | Washington | County | County | 87 | 21 | 48 | 14 | 4 | 12 | 0.24138 | 0.55172 | 0.16092 | 0.04598 | |||
TRUE | Maryland | Wicomico | 24 | 045 | 24045 | 24045 | 21 | Maryland | 1214 | Wicomico | County | County | 45 | 1 | 34 | 9 | 1 | 7 | 0.02222 | 0.75556 | 0.2 | 0.02222 | |||
TRUE | Maryland | Worcester | 24 | 047 | 24047 | 24047 | 21 | Maryland | 1215 | Worcester | County | County | 35 | 0 | 28 | 6 | 1 | 5 | 0 | 0.8 | 0.17143 | 0.02857 | |||
TRUE | Massachusetts | Barnstable | 25 | 001 | 25001 | 25001 | 22 | Massachusetts | 1216 | Barnstable | County | County | 185 | 1 | 167 | 6 | 11 | 41 | 0.00541 | 0.9027 | 0.03243 | 0.05946 | |||
TRUE | Massachusetts | Berkshire | 25 | 003 | 25003 | 25003 | 22 | Massachusetts | 1217 | Berkshire | County | County | 144 | 2 | 137 | 1 | 4 | 22 | 0.01389 | 0.95139 | 0.00694 | 0.02778 | |||
TRUE | Massachusetts | Bristol | 25 | 005 | 25005 | 25005 | 22 | Massachusetts | 1218 | Bristol | County | County | 347 | 5 | 315 | 6 | 21 | 33 | 0.01441 | 0.90778 | 0.01729 | 0.06052 | |||
TRUE | Massachusetts | Dukes | 25 | 007 | 25007 | 25007 | 22 | Massachusetts | 1219 | Dukes | County | County | 15 | 0 | 15 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | |||
TRUE | Massachusetts | Essex | 25 | 009 | 25009 | 25009 | 22 | Massachusetts | 1220 | Essex | County | County | 846 | 8 | 459 | 29 | 350 | 45 | 0.00946 | 0.54255 | 0.03428 | 0.41371 | |||
TRUE | Massachusetts | Franklin | 25 | 011 | 25011 | 25011 | 22 | Massachusetts | 1221 | Franklin | County | County | 93 | 3 | 84 | 3 | 3 | 19 | 0.03226 | 0.90323 | 0.03226 | 0.03226 | |||
TRUE | Massachusetts | Hampden | 25 | 013 | 25013 | 25013 | 22 | Massachusetts | 1222 | Hampden | County | County | 410 | 3 | 390 | 12 | 5 | 34 | 0.00732 | 0.95122 | 0.02927 | 0.0122 | |||
TRUE | Massachusetts | Hampshire | 25 | 015 | 25015 | 25015 | 22 | Massachusetts | 1223 | Hampshire | County | County | 201 | 2 | 192 | 3 | 4 | 20 | 0.00995 | 0.95522 | 0.01493 | 0.0199 | |||
TRUE | Massachusetts | Middlesex | 25 | 017 | 25017 | 25017 | 22 | Massachusetts | 1224 | Middlesex | County | County | 1989 | 22 | 1372 | 71 | 524 | 104 | 0.01106 | 0.68979 | 0.0357 | 0.26345 | |||
TRUE | Massachusetts | Nantucket | 25 | 019 | 25019 | 25019 | 22 | Massachusetts | 1225 | Nantucket | County | County | 5 | 1 | 4 | 0 | 0 | 1 | 0.2 | 0.8 | 0 | 0 | |||
TRUE | Massachusetts | Norfolk | 25 | 021 | 25021 | 25021 | 22 | Massachusetts | 1226 | Norfolk | County | County | 851 | 16 | 572 | 25 | 238 | 42 | 0.0188 | 0.67215 | 0.02938 | 0.27967 | |||
TRUE | Massachusetts | Plymouth | 25 | 023 | 25023 | 25023 | 22 | Massachusetts | 1227 | Plymouth | County | County | 459 | 2 | 314 | 16 | 127 | 42 | 0.00436 | 0.6841 | 0.03486 | 0.27669 | |||
TRUE | Massachusetts | Suffolk | 25 | 025 | 25025 | 25025 | 22 | Massachusetts | 1228 | Suffolk | County | County | 658 | 12 | 319 | 25 | 302 | 35 | 0.01824 | 0.4848 | 0.03799 | 0.45897 | |||
TRUE | Massachusetts | Worcester | 25 | 027 | 25027 | 25027 | 22 | Massachusetts | 1229 | Worcester | County | County | 724 | 24 | 607 | 16 | 77 | 84 | 0.03315 | 0.8384 | 0.0221 | 0.10635 | |||
TRUE | Michigan | Alcona | 26 | 001 | 26001 | 26001 | 23 | Michigan | 1230 | Alcona | County | County | 16 | 13 | 3 | 0 | 0 | 9 | 0.8125 | 0.1875 | 0 | 0 | |||
TRUE | Michigan | Alger | 26 | 003 | 26003 | 26003 | 23 | Michigan | 1231 | Alger | County | County | 15 | 15 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Michigan | Allegan | 26 | 005 | 26005 | 26005 | 23 | Michigan | 1232 | Allegan | County | County | 196 | 169 | 18 | 2 | 7 | 14 | 0.86224 | 0.09184 | 0.0102 | 0.03571 | |||
TRUE | Michigan | Alpena | 26 | 007 | 26007 | 26007 | 23 | Michigan | 1233 | Alpena | County | County | 43 | 41 | 1 | 0 | 1 | 3 | 0.95349 | 0.02326 | 0 | 0.02326 | |||
TRUE | Michigan | Antrim | 26 | 009 | 26009 | 26009 | 23 | Michigan | 1234 | Antrim | County | County | 35 | 30 | 3 | 1 | 1 | 8 | 0.85714 | 0.08571 | 0.02857 | 0.02857 | |||
TRUE | Michigan | Arenac | 26 | 011 | 26011 | 26011 | 23 | Michigan | 1235 | Arenac | County | County | 18 | 17 | 1 | 0 | 0 | 6 | 0.94444 | 0.05556 | 0 | 0 | |||
TRUE | Michigan | Baraga | 26 | 013 | 26013 | 26013 | 23 | Michigan | 1236 | Baraga | County | County | 14 | 11 | 2 | 1 | 0 | 4 | 0.78571 | 0.14286 | 0.07143 | 0 | |||
TRUE | Michigan | Barry | 26 | 015 | 26015 | 26015 | 23 | Michigan | 1237 | Barry | County | County | 63 | 56 | 7 | 0 | 0 | 6 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Michigan | Bay | 26 | 017 | 26017 | 26017 | 23 | Michigan | 1238 | Bay | County | County | 232 | 210 | 17 | 2 | 3 | 8 | 0.90517 | 0.07328 | 0.00862 | 0.01293 | |||
TRUE | Michigan | Benzie | 26 | 019 | 26019 | 26019 | 23 | Michigan | 1239 | Benzie | County | County | 15 | 14 | 1 | 0 | 0 | 5 | 0.93333 | 0.06667 | 0 | 0 | |||
TRUE | Michigan | Berrien | 26 | 021 | 26021 | 26021 | 23 | Michigan | 1240 | Berrien | County | County | 302 | 253 | 40 | 3 | 6 | 21 | 0.83775 | 0.13245 | 0.00993 | 0.01987 | |||
TRUE | Michigan | Branch | 26 | 023 | 26023 | 26023 | 23 | Michigan | 1241 | Branch | County | County | 54 | 44 | 7 | 0 | 3 | 6 | 0.81481 | 0.12963 | 0 | 0.05556 | |||
TRUE | Michigan | Calhoun | 26 | 025 | 26025 | 26025 | 23 | Michigan | 1242 | Calhoun | County | County | 216 | 194 | 17 | 3 | 2 | 11 | 0.89815 | 0.0787 | 0.01389 | 0.00926 | |||
TRUE | Michigan | Cass | 26 | 027 | 26027 | 26027 | 23 | Michigan | 1243 | Cass | County | County | 42 | 38 | 2 | 0 | 2 | 5 | 0.90476 | 0.04762 | 0 | 0.04762 | |||
TRUE | Michigan | Charlevoix | 26 | 029 | 26029 | 26029 | 23 | Michigan | 1244 | Charlevoix | County | County | 41 | 37 | 3 | 1 | 0 | 4 | 0.90244 | 0.07317 | 0.02439 | 0 | |||
TRUE | Michigan | Cheboygan | 26 | 031 | 26031 | 26031 | 23 | Michigan | 1245 | Cheboygan | County | County | 30 | 23 | 7 | 0 | 0 | 7 | 0.76667 | 0.23333 | 0 | 0 | |||
TRUE | Michigan | Chippewa | 26 | 033 | 26033 | 26033 | 23 | Michigan | 1246 | Chippewa | County | County | 50 | 48 | 2 | 0 | 0 | 7 | 0.96 | 0.04 | 0 | 0 | |||
TRUE | Michigan | Clare | 26 | 035 | 26035 | 26035 | 23 | Michigan | 1247 | Clare | County | County | 13 | 11 | 2 | 0 | 0 | 4 | 0.84615 | 0.15385 | 0 | 0 | |||
TRUE | Michigan | Clinton | 26 | 037 | 26037 | 26037 | 23 | Michigan | 1248 | Clinton | County | County | 86 | 83 | 3 | 0 | 0 | 9 | 0.96512 | 0.03488 | 0 | 0 | |||
TRUE | Michigan | Crawford | 26 | 039 | 26039 | 26039 | 23 | Michigan | 1249 | Crawford | County | County | 18 | 17 | 1 | 0 | 0 | 2 | 0.94444 | 0.05556 | 0 | 0 | |||
TRUE | Michigan | Delta | 26 | 041 | 26041 | 26041 | 23 | Michigan | 1250 | Delta | County | County | 83 | 68 | 13 | 1 | 1 | 7 | 0.81928 | 0.15663 | 0.01205 | 0.01205 | |||
TRUE | Michigan | Dickinson | 26 | 043 | 26043 | 26043 | 23 | Michigan | 1251 | Dickinson | County | County | 55 | 47 | 8 | 0 | 0 | 5 | 0.85455 | 0.14545 | 0 | 0 | |||
TRUE | Michigan | Eaton | 26 | 045 | 26045 | 26045 | 23 | Michigan | 1252 | Eaton | County | County | 201 | 183 | 16 | 1 | 1 | 12 | 0.91045 | 0.0796 | 0.00498 | 0.00498 | |||
TRUE | Michigan | Emmet | 26 | 047 | 26047 | 26047 | 23 | Michigan | 1253 | Emmet | County | County | 67 | 62 | 4 | 0 | 1 | 6 | 0.92537 | 0.0597 | 0 | 0.01493 | |||
TRUE | Michigan | Genesee | 26 | 049 | 26049 | 26049 | 23 | Michigan | 1254 | Genesee | County | County | 747 | 677 | 55 | 8 | 7 | 24 | 0.90629 | 0.07363 | 0.01071 | 0.00937 | |||
TRUE | Michigan | Gladwin | 26 | 051 | 26051 | 26051 | 23 | Michigan | 1255 | Gladwin | County | County | 30 | 26 | 2 | 1 | 1 | 3 | 0.86667 | 0.06667 | 0.03333 | 0.03333 | |||
TRUE | Michigan | Gogebic | 26 | 053 | 26053 | 26053 | 23 | Michigan | 1256 | Gogebic | County | County | 32 | 28 | 3 | 0 | 1 | 5 | 0.875 | 0.09375 | 0 | 0.03125 | |||
TRUE | Michigan | Grand Traverse | 26 | 055 | 26055 | 26055 | 23 | Michigan | 1257 | Grand Traverse | County | County | 151 | 130 | 20 | 0 | 1 | 9 | 0.86093 | 0.13245 | 0 | 0.00662 | |||
TRUE | Michigan | Gratiot | 26 | 057 | 26057 | 26057 | 23 | Michigan | 1258 | Gratiot | County | County | 48 | 47 | 1 | 0 | 0 | 9 | 0.97917 | 0.02083 | 0 | 0 | |||
TRUE | Michigan | Hillsdale | 26 | 059 | 26059 | 26059 | 23 | Michigan | 1259 | Hillsdale | County | County | 54 | 44 | 10 | 0 | 0 | 9 | 0.81481 | 0.18519 | 0 | 0 | |||
TRUE | Michigan | Houghton | 26 | 061 | 26061 | 26061 | 23 | Michigan | 1260 | Houghton | County | County | 85 | 77 | 6 | 2 | 0 | 10 | 0.90588 | 0.07059 | 0.02353 | 0 | |||
TRUE | Michigan | Huron | 26 | 063 | 26063 | 26063 | 23 | Michigan | 1261 | Huron | County | County | 37 | 36 | 1 | 0 | 0 | 10 | 0.97297 | 0.02703 | 0 | 0 | |||
TRUE | Michigan | Ingham | 26 | 065 | 26065 | 26065 | 23 | Michigan | 1262 | Ingham | County | County | 672 | 565 | 87 | 10 | 10 | 22 | 0.84077 | 0.12946 | 0.01488 | 0.01488 | |||
TRUE | Michigan | Ionia | 26 | 067 | 26067 | 26067 | 23 | Michigan | 1263 | Ionia | County | County | 86 | 75 | 9 | 1 | 1 | 10 | 0.87209 | 0.10465 | 0.01163 | 0.01163 | |||
TRUE | Michigan | Iosco | 26 | 069 | 26069 | 26069 | 23 | Michigan | 1264 | Iosco | County | County | 54 | 47 | 2 | 3 | 2 | 6 | 0.87037 | 0.03704 | 0.05556 | 0.03704 | |||
TRUE | Michigan | Iron | 26 | 071 | 26071 | 26071 | 23 | Michigan | 1265 | Iron | County | County | 16 | 15 | 1 | 0 | 0 | 4 | 0.9375 | 0.0625 | 0 | 0 | |||
TRUE | Michigan | Isabella | 26 | 073 | 26073 | 26073 | 23 | Michigan | 1266 | Isabella | County | County | 99 | 88 | 10 | 0 | 1 | 7 | 0.88889 | 0.10101 | 0 | 0.0101 | |||
TRUE | Michigan | Jackson | 26 | 075 | 26075 | 26075 | 23 | Michigan | 1267 | Jackson | County | County | 253 | 227 | 19 | 5 | 2 | 14 | 0.89723 | 0.0751 | 0.01976 | 0.00791 | |||
TRUE | Michigan | Kalamazoo | 26 | 077 | 26077 | 26077 | 23 | Michigan | 1268 | Kalamazoo | County | County | 534 | 473 | 50 | 4 | 7 | 23 | 0.88577 | 0.09363 | 0.00749 | 0.01311 | |||
TRUE | Michigan | Kalkaska | 26 | 079 | 26079 | 26079 | 23 | Michigan | 1269 | Kalkaska | County | County | 17 | 14 | 1 | 0 | 2 | 4 | 0.82353 | 0.05882 | 0 | 0.11765 | |||
TRUE | Michigan | Kent | 26 | 081 | 26081 | 26081 | 23 | Michigan | 1270 | Kent | County | County | 1140 | 995 | 123 | 6 | 16 | 29 | 0.87281 | 0.10789 | 0.00526 | 0.01404 | |||
TRUE | Michigan | Keweenaw | 26 | 083 | 26083 | 26083 | 23 | Michigan | 1271 | Keweenaw | County | County | 9 | 3 | 2 | 4 | 0 | 2 | 0.33333 | 0.22222 | 0.44444 | 0 | |||
TRUE | Michigan | Lake | 26 | 085 | 26085 | 26085 | 23 | Michigan | 1276 | Lake | County | County | 7 | 6 | 1 | 0 | 0 | 2 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Michigan | Lapeer | 26 | 087 | 26087 | 26087 | 23 | Michigan | 1277 | Lapeer | County | County | 120 | 109 | 9 | 0 | 2 | 10 | 0.90833 | 0.075 | 0 | 0.01667 | |||
TRUE | Michigan | Leelanau | 26 | 089 | 26089 | 26089 | 23 | Michigan | 1278 | Leelanau | County | County | 27 | 23 | 4 | 0 | 0 | 7 | 0.85185 | 0.14815 | 0 | 0 | |||
TRUE | Michigan | Lenawee | 26 | 091 | 26091 | 26091 | 23 | Michigan | 1279 | Lenawee | County | County | 149 | 132 | 15 | 1 | 1 | 16 | 0.88591 | 0.10067 | 0.00671 | 0.00671 | |||
TRUE | Michigan | Livingston | 26 | 093 | 26093 | 26093 | 23 | Michigan | 1280 | Livingston | County | County | 260 | 230 | 28 | 1 | 1 | 10 | 0.88462 | 0.10769 | 0.00385 | 0.00385 | |||
TRUE | Michigan | Luce | 26 | 095 | 26095 | 26095 | 23 | Michigan | 1281 | Luce | County | County | 11 | 10 | 0 | 1 | 0 | 1 | 0.90909 | 0 | 0.09091 | 0 | |||
TRUE | Michigan | Mackinac | 26 | 097 | 26097 | 26097 | 23 | Michigan | 1282 | Mackinac | County | County | 13 | 10 | 3 | 0 | 0 | 5 | 0.76923 | 0.23077 | 0 | 0 | |||
TRUE | Michigan | Macomb | 26 | 099 | 26099 | 26099 | 23 | Michigan | 1283 | Macomb | County | County | 1420 | 1305 | 93 | 9 | 13 | 37 | 0.91901 | 0.06549 | 0.00634 | 0.00915 | |||
TRUE | Michigan | Manistee | 26 | 101 | 26101 | 26101 | 23 | Michigan | 1284 | Manistee | County | County | 36 | 33 | 3 | 0 | 0 | 6 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | Michigan | Marquette | 26 | 103 | 26103 | 26103 | 23 | Michigan | 1285 | Marquette | County | County | 235 | 186 | 32 | 14 | 3 | 8 | 0.79149 | 0.13617 | 0.05957 | 0.01277 | |||
TRUE | Michigan | Mason | 26 | 105 | 26105 | 26105 | 23 | Michigan | 1286 | Mason | County | County | 47 | 45 | 1 | 0 | 1 | 4 | 0.95745 | 0.02128 | 0 | 0.02128 | |||
TRUE | Michigan | Mecosta | 26 | 107 | 26107 | 26107 | 23 | Michigan | 1287 | Mecosta | County | County | 45 | 37 | 8 | 0 | 0 | 6 | 0.82222 | 0.17778 | 0 | 0 | |||
TRUE | Michigan | Menominee | 26 | 109 | 26109 | 26109 | 23 | Michigan | 1288 | Menominee | County | County | 48 | 39 | 7 | 0 | 2 | 12 | 0.8125 | 0.14583 | 0 | 0.04167 | |||
TRUE | Michigan | Midland | 26 | 111 | 26111 | 26111 | 23 | Michigan | 1289 | Midland | County | County | 218 | 183 | 27 | 4 | 4 | 4 | 0.83945 | 0.12385 | 0.01835 | 0.01835 | |||
TRUE | Michigan | Missaukee | 26 | 113 | 26113 | 26113 | 23 | Michigan | 1290 | Missaukee | County | County | 9 | 7 | 1 | 0 | 1 | 3 | 0.77778 | 0.11111 | 0 | 0.11111 | |||
TRUE | Michigan | Monroe | 26 | 115 | 26115 | 26115 | 23 | Michigan | 1291 | Monroe | County | County | 278 | 249 | 23 | 1 | 5 | 18 | 0.89568 | 0.08273 | 0.0036 | 0.01799 | |||
TRUE | Michigan | Montcalm | 26 | 117 | 26117 | 26117 | 23 | Michigan | 1292 | Montcalm | County | County | 70 | 56 | 13 | 1 | 0 | 14 | 0.8 | 0.18571 | 0.01429 | 0 | |||
TRUE | Michigan | Montmorency | 26 | 119 | 26119 | 26119 | 23 | Michigan | 1293 | Montmorency | County | County | 5 | 4 | 1 | 0 | 0 | 1 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Michigan | Muskegon | 26 | 121 | 26121 | 26121 | 23 | Michigan | 1294 | Muskegon | County | County | 292 | 260 | 26 | 6 | 0 | 12 | 0.89041 | 0.08904 | 0.02055 | 0 | |||
TRUE | Michigan | Newaygo | 26 | 123 | 26123 | 26123 | 23 | Michigan | 1295 | Newaygo | County | County | 46 | 42 | 4 | 0 | 0 | 7 | 0.91304 | 0.08696 | 0 | 0 | |||
TRUE | Michigan | Oakland | 26 | 125 | 26125 | 26125 | 23 | Michigan | 1296 | Oakland | County | County | 2912 | 2614 | 227 | 31 | 40 | 82 | 0.89766 | 0.07795 | 0.01065 | 0.01374 | |||
TRUE | Michigan | Oceana | 26 | 127 | 26127 | 26127 | 23 | Michigan | 1297 | Oceana | County | County | 28 | 26 | 2 | 0 | 0 | 6 | 0.92857 | 0.07143 | 0 | 0 | |||
TRUE | Michigan | Ogemaw | 26 | 129 | 26129 | 26129 | 23 | Michigan | 1298 | Ogemaw | County | County | 23 | 20 | 3 | 0 | 0 | 4 | 0.86957 | 0.13043 | 0 | 0 | |||
TRUE | Michigan | Ontonagon | 26 | 131 | 26131 | 26131 | 23 | Michigan | 1299 | Ontonagon | County | County | 14 | 12 | 0 | 0 | 2 | 5 | 0.85714 | 0 | 0 | 0.14286 | |||
TRUE | Michigan | Osceola | 26 | 133 | 26133 | 26133 | 23 | Michigan | 1300 | Osceola | County | County | 20 | 16 | 3 | 0 | 1 | 6 | 0.8 | 0.15 | 0 | 0.05 | |||
TRUE | Michigan | Oscoda | 26 | 135 | 26135 | 26135 | 23 | Michigan | 1301 | Oscoda | County | County | 5 | 4 | 1 | 0 | 0 | 4 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Michigan | Otsego | 26 | 137 | 26137 | 26137 | 23 | Michigan | 1302 | Otsego | County | County | 20 | 16 | 4 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Michigan | Ottawa | 26 | 139 | 26139 | 26139 | 23 | Michigan | 1303 | Ottawa | County | County | 359 | 308 | 41 | 5 | 5 | 13 | 0.85794 | 0.11421 | 0.01393 | 0.01393 | |||
TRUE | Michigan | Presque Isle | 26 | 141 | 26141 | 26141 | 23 | Michigan | 1304 | Presque Isle | County | County | 21 | 18 | 2 | 0 | 1 | 5 | 0.85714 | 0.09524 | 0 | 0.04762 | |||
TRUE | Michigan | Roscommon | 26 | 143 | 26143 | 26143 | 23 | Michigan | 1305 | Roscommon | County | County | 20 | 19 | 1 | 0 | 0 | 4 | 0.95 | 0.05 | 0 | 0 | |||
TRUE | Michigan | Saginaw | 26 | 145 | 26145 | 26145 | 23 | Michigan | 1306 | Saginaw | County | County | 403 | 369 | 29 | 3 | 2 | 19 | 0.91563 | 0.07196 | 0.00744 | 0.00496 | |||
FALSE | Michigan | St Clair | 26 | 147 | 26147 | 26147 | 23 | Michigan | 1307 | Saint Clair | County | County | 207 | 187 | 16 | 2 | 2 | 21 | 0.90338 | 0.07729 | 0.00966 | 0.00966 | |||
FALSE | Michigan | St Joseph | 26 | 149 | 26149 | 26149 | 23 | Michigan | 1308 | Saint Joseph | County | County | 86 | 75 | 8 | 2 | 1 | 8 | 0.87209 | 0.09302 | 0.02326 | 0.01163 | |||
TRUE | Michigan | Sanilac | 26 | 151 | 26151 | 26151 | 23 | Michigan | 1309 | Sanilac | County | County | 47 | 43 | 4 | 0 | 0 | 13 | 0.91489 | 0.08511 | 0 | 0 | |||
TRUE | Michigan | Schoolcraft | 26 | 153 | 26153 | 26153 | 23 | Michigan | 1310 | Schoolcraft | County | County | 12 | 12 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Michigan | Shiawassee | 26 | 155 | 26155 | 26155 | 23 | Michigan | 1311 | Shiawassee | County | County | 116 | 102 | 12 | 1 | 1 | 12 | 0.87931 | 0.10345 | 0.00862 | 0.00862 | |||
TRUE | Michigan | Tuscola | 26 | 157 | 26157 | 26157 | 23 | Michigan | 1312 | Tuscola | County | County | 69 | 64 | 5 | 0 | 0 | 12 | 0.92754 | 0.07246 | 0 | 0 | |||
TRUE | Michigan | Van Buren | 26 | 159 | 26159 | 26159 | 23 | Michigan | 1313 | Van Buren | County | County | 124 | 104 | 13 | 3 | 4 | 11 | 0.83871 | 0.10484 | 0.02419 | 0.03226 | |||
TRUE | Michigan | Washtenaw | 26 | 161 | 26161 | 26161 | 23 | Michigan | 1314 | Washtenaw | County | County | 1070 | 894 | 145 | 16 | 15 | 17 | 0.83551 | 0.13551 | 0.01495 | 0.01402 | |||
TRUE | Michigan | Wayne | 26 | 163 | 26163 | 26163 | 23 | Michigan | 1315 | Wayne | County | County | 3495 | 3205 | 221 | 33 | 36 | 72 | 0.91702 | 0.06323 | 0.00944 | 0.0103 | |||
TRUE | Michigan | Wexford | 26 | 165 | 26165 | 26165 | 23 | Michigan | 1316 | Wexford | County | County | 110 | 87 | 11 | 1 | 11 | 4 | 0.79091 | 0.1 | 0.00909 | 0.1 | |||
TRUE | Minnesota | Aitkin | 27 | 001 | 27001 | 27001 | 24 | Minnesota | 1317 | Aitkin | County | County | 35 | 33 | 1 | 1 | 0 | 7 | 0.94286 | 0.02857 | 0.02857 | 0 | |||
TRUE | Minnesota | Anoka | 27 | 003 | 27003 | 27003 | 24 | Minnesota | 1318 | Anoka | County | County | 615 | 539 | 63 | 4 | 9 | 14 | 0.87642 | 0.10244 | 0.0065 | 0.01463 | |||
TRUE | Minnesota | Becker | 27 | 005 | 27005 | 27005 | 24 | Minnesota | 1319 | Becker | County | County | 40 | 35 | 4 | 1 | 0 | 6 | 0.875 | 0.1 | 0.025 | 0 | |||
TRUE | Minnesota | Beltrami | 27 | 007 | 27007 | 27007 | 24 | Minnesota | 1320 | Beltrami | County | County | 67 | 57 | 9 | 0 | 1 | 6 | 0.85075 | 0.13433 | 0 | 0.01493 | |||
TRUE | Minnesota | Benton | 27 | 009 | 27009 | 27009 | 24 | Minnesota | 1321 | Benton | County | County | 27 | 25 | 2 | 0 | 0 | 4 | 0.92593 | 0.07407 | 0 | 0 | |||
TRUE | Minnesota | Big Stone | 27 | 011 | 27011 | 27011 | 24 | Minnesota | 1322 | Big Stone | County | County | 15 | 13 | 2 | 0 | 0 | 4 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Minnesota | Blue Earth | 27 | 013 | 27013 | 27013 | 24 | Minnesota | 1323 | Blue Earth | County | County | 186 | 130 | 51 | 3 | 2 | 8 | 0.69892 | 0.27419 | 0.01613 | 0.01075 | |||
TRUE | Minnesota | Brown | 27 | 015 | 27015 | 27015 | 24 | Minnesota | 1324 | Brown | County | County | 53 | 44 | 8 | 0 | 1 | 5 | 0.83019 | 0.15094 | 0 | 0.01887 | |||
TRUE | Minnesota | Carlton | 27 | 017 | 27017 | 27017 | 24 | Minnesota | 1325 | Carlton | County | County | 65 | 54 | 9 | 2 | 0 | 7 | 0.83077 | 0.13846 | 0.03077 | 0 | |||
TRUE | Minnesota | Carver | 27 | 019 | 27019 | 27019 | 24 | Minnesota | 1326 | Carver | County | County | 164 | 139 | 17 | 2 | 6 | 12 | 0.84756 | 0.10366 | 0.0122 | 0.03659 | |||
TRUE | Minnesota | Cass | 27 | 021 | 27021 | 27021 | 24 | Minnesota | 1327 | Cass | County | County | 22 | 21 | 0 | 1 | 0 | 8 | 0.95455 | 0 | 0.04545 | 0 | |||
TRUE | Minnesota | Chippewa | 27 | 023 | 27023 | 27023 | 24 | Minnesota | 1328 | Chippewa | County | County | 26 | 24 | 2 | 0 | 0 | 3 | 0.92308 | 0.07692 | 0 | 0 | |||
TRUE | Minnesota | Chisago | 27 | 025 | 27025 | 27025 | 24 | Minnesota | 1329 | Chisago | County | County | 59 | 53 | 6 | 0 | 0 | 8 | 0.89831 | 0.10169 | 0 | 0 | |||
TRUE | Minnesota | Clay | 27 | 027 | 27027 | 27027 | 24 | Minnesota | 1330 | Clay | County | County | 124 | 104 | 16 | 1 | 3 | 8 | 0.83871 | 0.12903 | 0.00806 | 0.02419 | |||
TRUE | Minnesota | Clearwater | 27 | 029 | 27029 | 27029 | 24 | Minnesota | 1331 | Clearwater | County | County | 10 | 9 | 0 | 0 | 1 | 4 | 0.9 | 0 | 0 | 0.1 | |||
TRUE | Minnesota | Cook | 27 | 031 | 27031 | 27031 | 24 | Minnesota | 1332 | Cook | County | County | 12 | 9 | 3 | 0 | 0 | 3 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Minnesota | Cottonwood | 27 | 033 | 27033 | 27033 | 24 | Minnesota | 1333 | Cottonwood | County | County | 25 | 24 | 1 | 0 | 0 | 3 | 0.96 | 0.04 | 0 | 0 | |||
TRUE | Minnesota | Crow Wing | 27 | 035 | 27035 | 27035 | 24 | Minnesota | 1334 | Crow Wing | County | County | 80 | 70 | 8 | 0 | 2 | 10 | 0.875 | 0.1 | 0 | 0.025 | |||
TRUE | Minnesota | Dakota | 27 | 037 | 27037 | 27037 | 24 | Minnesota | 1335 | Dakota | County | County | 859 | 733 | 102 | 13 | 11 | 17 | 0.85332 | 0.11874 | 0.01513 | 0.01281 | |||
TRUE | Minnesota | Dodge | 27 | 039 | 27039 | 27039 | 24 | Minnesota | 1336 | Dodge | County | County | 24 | 21 | 3 | 0 | 0 | 5 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Minnesota | Douglas | 27 | 041 | 27041 | 27041 | 24 | Minnesota | 1337 | Douglas | County | County | 44 | 40 | 2 | 1 | 1 | 8 | 0.90909 | 0.04545 | 0.02273 | 0.02273 | |||
TRUE | Minnesota | Faribault | 27 | 043 | 27043 | 27043 | 24 | Minnesota | 1338 | Faribault | County | County | 26 | 24 | 2 | 0 | 0 | 6 | 0.92308 | 0.07692 | 0 | 0 | |||
TRUE | Minnesota | Fillmore | 27 | 045 | 27045 | 27045 | 24 | Minnesota | 1339 | Fillmore | County | County | 32 | 28 | 4 | 0 | 0 | 10 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Minnesota | Freeborn | 27 | 047 | 27047 | 27047 | 24 | Minnesota | 1340 | Freeborn | County | County | 57 | 50 | 6 | 0 | 1 | 9 | 0.87719 | 0.10526 | 0 | 0.01754 | |||
TRUE | Minnesota | Goodhue | 27 | 049 | 27049 | 27049 | 24 | Minnesota | 1341 | Goodhue | County | County | 98 | 83 | 13 | 0 | 2 | 8 | 0.84694 | 0.13265 | 0 | 0.02041 | |||
TRUE | Minnesota | Grant | 27 | 051 | 27051 | 27051 | 24 | Minnesota | 1342 | Grant | County | County | 12 | 10 | 2 | 0 | 0 | 5 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Minnesota | Hennepin | 27 | 053 | 27053 | 27053 | 24 | Minnesota | 1343 | Hennepin | County | County | 3028 | 2478 | 477 | 20 | 53 | 73 | 0.81836 | 0.15753 | 0.00661 | 0.0175 | |||
TRUE | Minnesota | Houston | 27 | 055 | 27055 | 27055 | 24 | Minnesota | 1344 | Houston | County | County | 34 | 28 | 5 | 0 | 1 | 5 | 0.82353 | 0.14706 | 0 | 0.02941 | |||
TRUE | Minnesota | Hubbard | 27 | 057 | 27057 | 27057 | 24 | Minnesota | 1345 | Hubbard | County | County | 21 | 19 | 1 | 0 | 1 | 4 | 0.90476 | 0.04762 | 0 | 0.04762 | |||
TRUE | Minnesota | Isanti | 27 | 059 | 27059 | 27059 | 24 | Minnesota | 1346 | Isanti | County | County | 42 | 39 | 2 | 0 | 1 | 4 | 0.92857 | 0.04762 | 0 | 0.02381 | |||
TRUE | Minnesota | Itasca | 27 | 061 | 27061 | 27061 | 24 | Minnesota | 1347 | Itasca | County | County | 85 | 71 | 13 | 1 | 0 | 12 | 0.83529 | 0.15294 | 0.01176 | 0 | |||
TRUE | Minnesota | Jackson | 27 | 063 | 27063 | 27063 | 24 | Minnesota | 1348 | Jackson | County | County | 24 | 20 | 2 | 0 | 2 | 6 | 0.83333 | 0.08333 | 0 | 0.08333 | |||
TRUE | Minnesota | Kanabec | 27 | 065 | 27065 | 27065 | 24 | Minnesota | 1349 | Kanabec | County | County | 8 | 8 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Minnesota | Kandiyohi | 27 | 067 | 27067 | 27067 | 24 | Minnesota | 1350 | Kandiyohi | County | County | 71 | 64 | 6 | 1 | 0 | 8 | 0.90141 | 0.08451 | 0.01408 | 0 | |||
TRUE | Minnesota | Kittson | 27 | 069 | 27069 | 27069 | 24 | Minnesota | 1351 | Kittson | County | County | 8 | 7 | 0 | 0 | 1 | 6 | 0.875 | 0 | 0 | 0.125 | |||
TRUE | Minnesota | Koochiching | 27 | 071 | 27071 | 27071 | 24 | Minnesota | 1352 | Koochiching | County | County | 27 | 25 | 2 | 0 | 0 | 4 | 0.92593 | 0.07407 | 0 | 0 | |||
FALSE | Minnesota | Lac Qui Parle | 27 | 073 | 27073 | 27073 | 24 | Minnesota | 1353 | Lac qui Parle | County | County | 19 | 19 | 0 | 0 | 0 | 6 | 1 | 0 | 0 | 0 | |||
TRUE | Minnesota | Lake | 27 | 075 | 27075 | 27075 | 24 | Minnesota | 1356 | Lake | County | County | 18 | 17 | 0 | 1 | 0 | 4 | 0.94444 | 0 | 0.05556 | 0 | |||
FALSE | Minnesota | Lake of The Woods | 27 | 077 | 27077 | 27077 | 24 | Minnesota | 1354 | Lake of the Woods | County | County | 16 | 14 | 0 | 0 | 2 | 3 | 0.875 | 0 | 0 | 0.125 | |||
TRUE | Minnesota | Le Sueur | 27 | 079 | 27079 | 27079 | 24 | Minnesota | 1357 | Le Sueur | County | County | 33 | 29 | 4 | 0 | 0 | 7 | 0.87879 | 0.12121 | 0 | 0 | |||
TRUE | Minnesota | Lincoln | 27 | 081 | 27081 | 27081 | 24 | Minnesota | 1358 | Lincoln | County | County | 16 | 15 | 1 | 0 | 0 | 4 | 0.9375 | 0.0625 | 0 | 0 | |||
TRUE | Minnesota | Lyon | 27 | 083 | 27083 | 27083 | 24 | Minnesota | 1359 | Lyon | County | County | 55 | 47 | 4 | 1 | 3 | 9 | 0.85455 | 0.07273 | 0.01818 | 0.05455 | |||
TRUE | Minnesota | McLeod | 27 | 085 | 27085 | 27085 | 24 | Minnesota | 1363 | McLeod | County | County | 69 | 66 | 2 | 0 | 1 | 7 | 0.95652 | 0.02899 | 0 | 0.01449 | |||
TRUE | Minnesota | Mahnomen | 27 | 087 | 27087 | 27087 | 24 | Minnesota | 1360 | Mahnomen | County | County | 8 | 7 | 1 | 0 | 0 | 3 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Minnesota | Marshall | 27 | 089 | 27089 | 27089 | 24 | Minnesota | 1361 | Marshall | County | County | 14 | 13 | 1 | 0 | 0 | 6 | 0.92857 | 0.07143 | 0 | 0 | |||
TRUE | Minnesota | Martin | 27 | 091 | 27091 | 27091 | 24 | Minnesota | 1362 | Martin | County | County | 53 | 45 | 8 | 0 | 0 | 8 | 0.84906 | 0.15094 | 0 | 0 | |||
TRUE | Minnesota | Meeker | 27 | 093 | 27093 | 27093 | 24 | Minnesota | 1364 | Meeker | County | County | 39 | 37 | 1 | 0 | 1 | 5 | 0.94872 | 0.02564 | 0 | 0.02564 | |||
TRUE | Minnesota | Mille Lacs | 27 | 095 | 27095 | 27095 | 24 | Minnesota | 1365 | Mille Lacs | County | County | 42 | 38 | 4 | 0 | 0 | 6 | 0.90476 | 0.09524 | 0 | 0 | |||
TRUE | Minnesota | Morrison | 27 | 097 | 27097 | 27097 | 24 | Minnesota | 1366 | Morrison | County | County | 34 | 33 | 1 | 0 | 0 | 8 | 0.97059 | 0.02941 | 0 | 0 | |||
TRUE | Minnesota | Mower | 27 | 099 | 27099 | 27099 | 24 | Minnesota | 1367 | Mower | County | County | 73 | 58 | 15 | 0 | 0 | 9 | 0.79452 | 0.20548 | 0 | 0 | |||
TRUE | Minnesota | Murray | 27 | 101 | 27101 | 27101 | 24 | Minnesota | 1368 | Murray | County | County | 26 | 24 | 2 | 0 | 0 | 7 | 0.92308 | 0.07692 | 0 | 0 | |||
TRUE | Minnesota | Nicollet | 27 | 103 | 27103 | 27103 | 24 | Minnesota | 1369 | Nicollet | County | County | 65 | 55 | 6 | 1 | 3 | 5 | 0.84615 | 0.09231 | 0.01538 | 0.04615 | |||
TRUE | Minnesota | Nobles | 27 | 105 | 27105 | 27105 | 24 | Minnesota | 1370 | Nobles | County | County | 31 | 27 | 3 | 1 | 0 | 6 | 0.87097 | 0.09677 | 0.03226 | 0 | |||
TRUE | Minnesota | Norman | 27 | 107 | 27107 | 27107 | 24 | Minnesota | 1371 | Norman | County | County | 15 | 13 | 2 | 0 | 0 | 3 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Minnesota | Olmsted | 27 | 109 | 27109 | 27109 | 24 | Minnesota | 1372 | Olmsted | County | County | 346 | 277 | 53 | 3 | 13 | 12 | 0.80058 | 0.15318 | 0.00867 | 0.03757 | |||
TRUE | Minnesota | Otter Tail | 27 | 111 | 27111 | 27111 | 24 | Minnesota | 1373 | Otter Tail | County | County | 81 | 73 | 7 | 0 | 1 | 12 | 0.90123 | 0.08642 | 0 | 0.01235 | |||
TRUE | Minnesota | Pennington | 27 | 113 | 27113 | 27113 | 24 | Minnesota | 1374 | Pennington | County | County | 25 | 20 | 5 | 0 | 0 | 1 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Minnesota | Pine | 27 | 115 | 27115 | 27115 | 24 | Minnesota | 1375 | Pine | County | County | 24 | 22 | 1 | 1 | 0 | 6 | 0.91667 | 0.04167 | 0.04167 | 0 | |||
TRUE | Minnesota | Pipestone | 27 | 117 | 27117 | 27117 | 24 | Minnesota | 1376 | Pipestone | County | County | 14 | 9 | 4 | 0 | 1 | 6 | 0.64286 | 0.28571 | 0 | 0.07143 | |||
TRUE | Minnesota | Polk | 27 | 119 | 27119 | 27119 | 24 | Minnesota | 1377 | Polk | County | County | 53 | 48 | 3 | 1 | 1 | 10 | 0.90566 | 0.0566 | 0.01887 | 0.01887 | |||
TRUE | Minnesota | Pope | 27 | 121 | 27121 | 27121 | 24 | Minnesota | 1378 | Pope | County | County | 16 | 14 | 2 | 0 | 0 | 4 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Minnesota | Ramsey | 27 | 123 | 27123 | 27123 | 24 | Minnesota | 1379 | Ramsey | County | County | 1368 | 1130 | 202 | 10 | 26 | 20 | 0.82602 | 0.14766 | 0.00731 | 0.01901 | |||
TRUE | Minnesota | Red Lake | 27 | 125 | 27125 | 27125 | 24 | Minnesota | 1380 | Red Lake | County | County | 11 | 9 | 1 | 0 | 1 | 4 | 0.81818 | 0.09091 | 0 | 0.09091 | |||
TRUE | Minnesota | Redwood | 27 | 127 | 27127 | 27127 | 24 | Minnesota | 1381 | Redwood | County | County | 21 | 21 | 0 | 0 | 0 | 7 | 1 | 0 | 0 | 0 | |||
TRUE | Minnesota | Renville | 27 | 129 | 27129 | 27129 | 24 | Minnesota | 1382 | Renville | County | County | 29 | 27 | 2 | 0 | 0 | 8 | 0.93103 | 0.06897 | 0 | 0 | |||
TRUE | Minnesota | Rice | 27 | 131 | 27131 | 27131 | 24 | Minnesota | 1383 | Rice | County | County | 120 | 95 | 23 | 0 | 2 | 7 | 0.79167 | 0.19167 | 0 | 0.01667 | |||
TRUE | Minnesota | Rock | 27 | 133 | 27133 | 27133 | 24 | Minnesota | 1384 | Rock | County | County | 19 | 18 | 1 | 0 | 0 | 1 | 0.94737 | 0.05263 | 0 | 0 | |||
TRUE | Minnesota | Roseau | 27 | 135 | 27135 | 27135 | 24 | Minnesota | 1385 | Roseau | County | County | 18 | 17 | 1 | 0 | 0 | 4 | 0.94444 | 0.05556 | 0 | 0 | |||
FALSE | Minnesota | St Louis | 27 | 137 | 27137 | 27137 | 24 | Minnesota | 1386 | Saint Louis | County | County | 518 | 446 | 59 | 3 | 10 | 38 | 0.861 | 0.1139 | 0.00579 | 0.01931 | |||
TRUE | Minnesota | Scott | 27 | 139 | 27139 | 27139 | 24 | Minnesota | 1387 | Scott | County | County | 220 | 197 | 21 | 0 | 2 | 8 | 0.89545 | 0.09545 | 0 | 0.00909 | |||
TRUE | Minnesota | Sherburne | 27 | 141 | 27141 | 27141 | 24 | Minnesota | 1388 | Sherburne | County | County | 122 | 104 | 14 | 0 | 4 | 7 | 0.85246 | 0.11475 | 0 | 0.03279 | |||
TRUE | Minnesota | Sibley | 27 | 143 | 27143 | 27143 | 24 | Minnesota | 1389 | Sibley | County | County | 27 | 26 | 0 | 0 | 1 | 6 | 0.96296 | 0 | 0 | 0.03704 | |||
TRUE | Minnesota | Stearns | 27 | 145 | 27145 | 27145 | 24 | Minnesota | 1390 | Stearns | County | County | 231 | 189 | 38 | 0 | 4 | 21 | 0.81818 | 0.1645 | 0 | 0.01732 | |||
TRUE | Minnesota | Steele | 27 | 147 | 27147 | 27147 | 24 | Minnesota | 1391 | Steele | County | County | 74 | 73 | 1 | 0 | 0 | 4 | 0.98649 | 0.01351 | 0 | 0 | |||
TRUE | Minnesota | Stevens | 27 | 149 | 27149 | 27149 | 24 | Minnesota | 1392 | Stevens | County | County | 31 | 11 | 1 | 19 | 0 | 1 | 0.35484 | 0.03226 | 0.6129 | 0 | |||
TRUE | Minnesota | Swift | 27 | 151 | 27151 | 27151 | 24 | Minnesota | 1393 | Swift | County | County | 22 | 21 | 1 | 0 | 0 | 5 | 0.95455 | 0.04545 | 0 | 0 | |||
TRUE | Minnesota | Todd | 27 | 153 | 27153 | 27153 | 24 | Minnesota | 1394 | Todd | County | County | 22 | 19 | 3 | 0 | 0 | 8 | 0.86364 | 0.13636 | 0 | 0 | |||
TRUE | Minnesota | Traverse | 27 | 155 | 27155 | 27155 | 24 | Minnesota | 1395 | Traverse | County | County | 5 | 5 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Minnesota | Wabasha | 27 | 157 | 27157 | 27157 | 24 | Minnesota | 1396 | Wabasha | County | County | 32 | 31 | 1 | 0 | 0 | 7 | 0.96875 | 0.03125 | 0 | 0 | |||
TRUE | Minnesota | Wadena | 27 | 159 | 27159 | 27159 | 24 | Minnesota | 1397 | Wadena | County | County | 32 | 29 | 2 | 0 | 1 | 6 | 0.90625 | 0.0625 | 0 | 0.03125 | |||
TRUE | Minnesota | Waseca | 27 | 161 | 27161 | 27161 | 24 | Minnesota | 1398 | Waseca | County | County | 55 | 52 | 2 | 0 | 1 | 4 | 0.94545 | 0.03636 | 0 | 0.01818 | |||
TRUE | Minnesota | Washington | 27 | 163 | 27163 | 27163 | 24 | Minnesota | 1399 | Washington | County | County | 582 | 461 | 80 | 5 | 36 | 17 | 0.7921 | 0.13746 | 0.00859 | 0.06186 | |||
TRUE | Minnesota | Watonwan | 27 | 165 | 27165 | 27165 | 24 | Minnesota | 1400 | Watonwan | County | County | 30 | 27 | 2 | 0 | 1 | 5 | 0.9 | 0.06667 | 0 | 0.03333 | |||
TRUE | Minnesota | Wilkin | 27 | 167 | 27167 | 27167 | 24 | Minnesota | 1401 | Wilkin | County | County | 13 | 11 | 2 | 0 | 0 | 4 | 0.84615 | 0.15385 | 0 | 0 | |||
TRUE | Minnesota | Winona | 27 | 169 | 27169 | 27169 | 24 | Minnesota | 1402 | Winona | County | County | 95 | 81 | 10 | 1 | 3 | 8 | 0.85263 | 0.10526 | 0.01053 | 0.03158 | |||
TRUE | Minnesota | Wright | 27 | 171 | 27171 | 27171 | 24 | Minnesota | 1403 | Wright | County | County | 148 | 136 | 11 | 1 | 0 | 13 | 0.91892 | 0.07432 | 0.00676 | 0 | |||
TRUE | Minnesota | Yellow Medicine | 27 | 173 | 27173 | 27173 | 24 | Minnesota | 1404 | Yellow Medicine | County | County | 21 | 19 | 2 | 0 | 0 | 7 | 0.90476 | 0.09524 | 0 | 0 | |||
TRUE | Mississippi | Adams | 28 | 001 | 28001 | 28001 | 25 | Mississippi | 1405 | Adams | County | County | 22 | 1 | 4 | 17 | 0 | 2 | 0.04545 | 0.18182 | 0.77273 | 0 | |||
TRUE | Mississippi | Alcorn | 28 | 003 | 28003 | 28003 | 25 | Mississippi | 1406 | Alcorn | County | County | 17 | 0 | 0 | 16 | 1 | 2 | 0 | 0 | 0.94118 | 0.05882 | |||
TRUE | Mississippi | Amite | 28 | 005 | 28005 | 28005 | 25 | Mississippi | 1407 | Amite | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Attala | 28 | 007 | 28007 | 28007 | 25 | Mississippi | 1408 | Attala | County | County | 12 | 0 | 1 | 10 | 1 | 4 | 0 | 0.08333 | 0.83333 | 0.08333 | |||
TRUE | Mississippi | Benton | 28 | 009 | 28009 | 28009 | 25 | Mississippi | 1409 | Benton | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Bolivar | 28 | 011 | 28011 | 28011 | 25 | Mississippi | 1410 | Bolivar | County | County | 8 | 0 | 0 | 8 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Calhoun | 28 | 013 | 28013 | 28013 | 25 | Mississippi | 1411 | Calhoun | County | County | 5 | 0 | 0 | 4 | 1 | 3 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Mississippi | Carroll | 28 | 015 | 28015 | 28015 | 25 | Mississippi | 1412 | Carroll | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Mississippi | Chickasaw | 28 | 017 | 28017 | 28017 | 25 | Mississippi | 1413 | Chickasaw | County | County | 5 | 0 | 0 | 5 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Choctaw | 28 | 019 | 28019 | 28019 | 25 | Mississippi | 1414 | Choctaw | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Claiborne | 28 | 021 | 28021 | 28021 | 25 | Mississippi | 1415 | Claiborne | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Clarke | 28 | 023 | 28023 | 28023 | 25 | Mississippi | 1416 | Clarke | County | County | 7 | 0 | 0 | 7 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Clay | 28 | 025 | 28025 | 28025 | 25 | Mississippi | 1417 | Clay | County | County | 9 | 2 | 0 | 7 | 0 | 1 | 0.22222 | 0 | 0.77778 | 0 | |||
TRUE | Mississippi | Coahoma | 28 | 027 | 28027 | 28027 | 25 | Mississippi | 1418 | Coahoma | County | County | 11 | 3 | 1 | 7 | 0 | 2 | 0.27273 | 0.09091 | 0.63636 | 0 | |||
TRUE | Mississippi | Copiah | 28 | 029 | 28029 | 28029 | 25 | Mississippi | 1419 | Copiah | County | County | 10 | 0 | 0 | 9 | 1 | 3 | 0 | 0 | 0.9 | 0.1 | |||
TRUE | Mississippi | Covington | 28 | 031 | 28031 | 28031 | 25 | Mississippi | 1420 | Covington | County | County | 5 | 0 | 0 | 4 | 1 | 2 | 0 | 0 | 0.8 | 0.2 | |||
FALSE | Mississippi | De Soto | 28 | 033 | 28033 | 28033 | 25 | Mississippi | 1421 | Desoto | County | County | 58 | 0 | 6 | 51 | 1 | 6 | 0 | 0.10345 | 0.87931 | 0.01724 | |||
TRUE | Mississippi | Forrest | 28 | 035 | 28035 | 28035 | 25 | Mississippi | 1422 | Forrest | County | County | 49 | 0 | 6 | 40 | 3 | 4 | 0 | 0.12245 | 0.81633 | 0.06122 | |||
TRUE | Mississippi | Franklin | 28 | 037 | 28037 | 28037 | 25 | Mississippi | 1423 | Franklin | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | George | 28 | 039 | 28039 | 28039 | 25 | Mississippi | 1424 | George | County | County | 9 | 0 | 1 | 8 | 0 | 1 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Mississippi | Greene | 28 | 041 | 28041 | 28041 | 25 | Mississippi | 1425 | Greene | County | County | 2 | 0 | 1 | 1 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Mississippi | Grenada | 28 | 043 | 28043 | 28043 | 25 | Mississippi | 1426 | Grenada | County | County | 11 | 1 | 1 | 8 | 1 | 2 | 0.09091 | 0.09091 | 0.72727 | 0.09091 | |||
TRUE | Mississippi | Hancock | 28 | 045 | 28045 | 28045 | 25 | Mississippi | 1427 | Hancock | County | County | 17 | 0 | 3 | 11 | 3 | 5 | 0 | 0.17647 | 0.64706 | 0.17647 | |||
TRUE | Mississippi | Harrison | 28 | 047 | 28047 | 28047 | 25 | Mississippi | 1428 | Harrison | County | County | 158 | 5 | 24 | 119 | 10 | 12 | 0.03165 | 0.1519 | 0.75316 | 0.06329 | |||
TRUE | Mississippi | Hinds | 28 | 049 | 28049 | 28049 | 25 | Mississippi | 1429 | Hinds | County | County | 182 | 4 | 11 | 160 | 7 | 19 | 0.02198 | 0.06044 | 0.87912 | 0.03846 | |||
TRUE | Mississippi | Holmes | 28 | 051 | 28051 | 28051 | 25 | Mississippi | 1430 | Holmes | County | County | 2 | 1 | 0 | 1 | 0 | 1 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Mississippi | Humphreys | 28 | 053 | 28053 | 28053 | 25 | Mississippi | 1431 | Humphreys | County | County | 2 | 1 | 0 | 1 | 0 | 1 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Mississippi | Issaquena | 28 | 055 | 28055 | 28055 | 25 | Mississippi | 1432 | Issaquena | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Mississippi | Itawamba | 28 | 057 | 28057 | 28057 | 25 | Mississippi | 1433 | Itawamba | County | County | 8 | 0 | 3 | 5 | 0 | 3 | 0 | 0.375 | 0.625 | 0 | |||
TRUE | Mississippi | Jackson | 28 | 059 | 28059 | 28059 | 25 | Mississippi | 1434 | Jackson | County | County | 95 | 3 | 12 | 77 | 3 | 8 | 0.03158 | 0.12632 | 0.81053 | 0.03158 | |||
TRUE | Mississippi | Jasper | 28 | 061 | 28061 | 28061 | 25 | Mississippi | 1435 | Jasper | County | County | 4 | 0 | 0 | 4 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Jefferson | 28 | 063 | 28063 | 28063 | 25 | Mississippi | 1437 | Jefferson | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Jefferson Davis | 28 | 065 | 28065 | 28065 | 25 | Mississippi | 1436 | Jefferson Davis | County | County | 3 | 0 | 0 | 2 | 1 | 3 | 0 | 0 | 0.66667 | 0.33333 | |||
TRUE | Mississippi | Jones | 28 | 067 | 28067 | 28067 | 25 | Mississippi | 1438 | Jones | County | County | 27 | 0 | 0 | 23 | 4 | 6 | 0 | 0 | 0.85185 | 0.14815 | |||
TRUE | Mississippi | Kemper | 28 | 069 | 28069 | 28069 | 25 | Mississippi | 1439 | Kemper | County | County | 5 | 0 | 0 | 4 | 1 | 2 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Mississippi | Lafayette | 28 | 071 | 28071 | 28071 | 25 | Mississippi | 1440 | Lafayette | County | County | 31 | 0 | 3 | 27 | 1 | 3 | 0 | 0.09677 | 0.87097 | 0.03226 | |||
TRUE | Mississippi | Lamar | 28 | 073 | 28073 | 28073 | 25 | Mississippi | 1441 | Lamar | County | County | 31 | 1 | 2 | 27 | 1 | 4 | 0.03226 | 0.06452 | 0.87097 | 0.03226 | |||
TRUE | Mississippi | Lauderdale | 28 | 075 | 28075 | 28075 | 25 | Mississippi | 1442 | Lauderdale | County | County | 50 | 2 | 2 | 43 | 3 | 8 | 0.04 | 0.04 | 0.86 | 0.06 | |||
TRUE | Mississippi | Lawrence | 28 | 077 | 28077 | 28077 | 25 | Mississippi | 1443 | Lawrence | County | County | 10 | 0 | 0 | 9 | 1 | 3 | 0 | 0 | 0.9 | 0.1 | |||
TRUE | Mississippi | Leake | 28 | 079 | 28079 | 28079 | 25 | Mississippi | 1444 | Leake | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Mississippi | Lee | 28 | 081 | 28081 | 28081 | 25 | Mississippi | 1445 | Lee | County | County | 65 | 4 | 4 | 55 | 2 | 8 | 0.06154 | 0.06154 | 0.84615 | 0.03077 | |||
TRUE | Mississippi | Leflore | 28 | 083 | 28083 | 28083 | 25 | Mississippi | 1446 | Leflore | County | County | 13 | 1 | 1 | 11 | 0 | 2 | 0.07692 | 0.07692 | 0.84615 | 0 | |||
TRUE | Mississippi | Lincoln | 28 | 085 | 28085 | 28085 | 25 | Mississippi | 1447 | Lincoln | County | County | 15 | 0 | 0 | 15 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Lowndes | 28 | 087 | 28087 | 28087 | 25 | Mississippi | 1448 | Lowndes | County | County | 55 | 0 | 3 | 51 | 1 | 3 | 0 | 0.05455 | 0.92727 | 0.01818 | |||
TRUE | Mississippi | Madison | 28 | 089 | 28089 | 28089 | 25 | Mississippi | 1449 | Madison | County | County | 44 | 1 | 3 | 39 | 1 | 4 | 0.02273 | 0.06818 | 0.88636 | 0.02273 | |||
TRUE | Mississippi | Marion | 28 | 091 | 28091 | 28091 | 25 | Mississippi | 1450 | Marion | County | County | 5 | 0 | 2 | 3 | 0 | 1 | 0 | 0.4 | 0.6 | 0 | |||
TRUE | Mississippi | Marshall | 28 | 093 | 28093 | 28093 | 25 | Mississippi | 1451 | Marshall | County | County | 13 | 2 | 0 | 11 | 0 | 3 | 0.15385 | 0 | 0.84615 | 0 | |||
TRUE | Mississippi | Monroe | 28 | 095 | 28095 | 28095 | 25 | Mississippi | 1452 | Monroe | County | County | 24 | 0 | 2 | 22 | 0 | 6 | 0 | 0.08333 | 0.91667 | 0 | |||
TRUE | Mississippi | Montgomery | 28 | 097 | 28097 | 28097 | 25 | Mississippi | 1453 | Montgomery | County | County | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | Mississippi | Neshoba | 28 | 099 | 28099 | 28099 | 25 | Mississippi | 1454 | Neshoba | County | County | 11 | 0 | 2 | 8 | 1 | 2 | 0 | 0.18182 | 0.72727 | 0.09091 | |||
TRUE | Mississippi | Newton | 28 | 101 | 28101 | 28101 | 25 | Mississippi | 1455 | Newton | County | County | 9 | 1 | 2 | 5 | 1 | 4 | 0.11111 | 0.22222 | 0.55556 | 0.11111 | |||
TRUE | Mississippi | Noxubee | 28 | 103 | 28103 | 28103 | 25 | Mississippi | 1456 | Noxubee | County | County | 5 | 0 | 1 | 4 | 0 | 2 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Mississippi | Oktibbeha | 28 | 105 | 28105 | 28105 | 25 | Mississippi | 1457 | Oktibbeha | County | County | 38 | 2 | 3 | 33 | 0 | 1 | 0.05263 | 0.07895 | 0.86842 | 0 | |||
TRUE | Mississippi | Panola | 28 | 107 | 28107 | 28107 | 25 | Mississippi | 1458 | Panola | County | County | 9 | 0 | 1 | 8 | 0 | 3 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Mississippi | Pearl River | 28 | 109 | 28109 | 28109 | 25 | Mississippi | 1459 | Pearl River | County | County | 18 | 0 | 1 | 12 | 5 | 3 | 0 | 0.05556 | 0.66667 | 0.27778 | |||
TRUE | Mississippi | Perry | 28 | 111 | 28111 | 28111 | 25 | Mississippi | 1460 | Perry | County | County | 4 | 0 | 0 | 4 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Pike | 28 | 113 | 28113 | 28113 | 25 | Mississippi | 1461 | Pike | County | County | 17 | 0 | 1 | 14 | 2 | 3 | 0 | 0.05882 | 0.82353 | 0.11765 | |||
TRUE | Mississippi | Pontotoc | 28 | 115 | 28115 | 28115 | 25 | Mississippi | 1462 | Pontotoc | County | County | 73 | 9 | 2 | 59 | 3 | 4 | 0.12329 | 0.0274 | 0.80822 | 0.0411 | |||
TRUE | Mississippi | Prentiss | 28 | 117 | 28117 | 28117 | 25 | Mississippi | 1463 | Prentiss | County | County | 11 | 0 | 0 | 11 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Quitman | 28 | 119 | 28119 | 28119 | 25 | Mississippi | 1464 | Quitman | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Mississippi | Rankin | 28 | 121 | 28121 | 28121 | 25 | Mississippi | 1465 | Rankin | County | County | 72 | 0 | 4 | 67 | 1 | 8 | 0 | 0.05556 | 0.93056 | 0.01389 | |||
TRUE | Mississippi | Scott | 28 | 123 | 28123 | 28123 | 25 | Mississippi | 1466 | Scott | County | County | 5 | 0 | 0 | 4 | 1 | 3 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Mississippi | Sharkey | 28 | 125 | 28125 | 28125 | 25 | Mississippi | 1467 | Sharkey | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Mississippi | Simpson | 28 | 127 | 28127 | 28127 | 25 | Mississippi | 1468 | Simpson | County | County | 6 | 0 | 0 | 5 | 1 | 3 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Mississippi | Smith | 28 | 129 | 28129 | 28129 | 25 | Mississippi | 1469 | Smith | County | County | 5 | 0 | 1 | 4 | 0 | 3 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Mississippi | Stone | 28 | 131 | 28131 | 28131 | 25 | Mississippi | 1470 | Stone | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Mississippi | Sunflower | 28 | 133 | 28133 | 28133 | 25 | Mississippi | 1471 | Sunflower | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Mississippi | Tallahatchie | 28 | 135 | 28135 | 28135 | 25 | Mississippi | 1472 | Tallahatchie | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Mississippi | Tate | 28 | 137 | 28137 | 28137 | 25 | Mississippi | 1473 | Tate | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Tippah | 28 | 139 | 28139 | 28139 | 25 | Mississippi | 1474 | Tippah | County | County | 3 | 0 | 1 | 1 | 1 | 2 | 0 | 0.33333 | 0.33333 | 0.33333 | |||
TRUE | Mississippi | Tishomingo | 28 | 141 | 28141 | 28141 | 25 | Mississippi | 1475 | Tishomingo | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Tunica | 28 | 143 | 28143 | 28143 | 25 | Mississippi | 1476 | Tunica | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Union | 28 | 145 | 28145 | 28145 | 25 | Mississippi | 1477 | Union | County | County | 16 | 1 | 0 | 15 | 0 | 3 | 0.0625 | 0 | 0.9375 | 0 | |||
TRUE | Mississippi | Walthall | 28 | 147 | 28147 | 28147 | 25 | Mississippi | 1478 | Walthall | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Warren | 28 | 149 | 28149 | 28149 | 25 | Mississippi | 1479 | Warren | County | County | 41 | 1 | 3 | 33 | 4 | 3 | 0.02439 | 0.07317 | 0.80488 | 0.09756 | |||
TRUE | Mississippi | Washington | 28 | 151 | 28151 | 28151 | 25 | Mississippi | 1480 | Washington | County | County | 18 | 2 | 2 | 11 | 3 | 5 | 0.11111 | 0.11111 | 0.61111 | 0.16667 | |||
TRUE | Mississippi | Wayne | 28 | 153 | 28153 | 28153 | 25 | Mississippi | 1481 | Wayne | County | County | 4 | 0 | 0 | 3 | 1 | 1 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Mississippi | Webster | 28 | 155 | 28155 | 28155 | 25 | Mississippi | 1482 | Webster | County | County | 9 | 0 | 0 | 9 | 0 | 5 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Wilkinson | 28 | 157 | 28157 | 28157 | 25 | Mississippi | 1483 | Wilkinson | County | County | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | Mississippi | Winston | 28 | 159 | 28159 | 28159 | 25 | Mississippi | 1484 | Winston | County | County | 3 | 0 | 1 | 2 | 0 | 1 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Mississippi | Yalobusha | 28 | 161 | 28161 | 28161 | 25 | Mississippi | 1485 | Yalobusha | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Mississippi | Yazoo | 28 | 163 | 28163 | 28163 | 25 | Mississippi | 1486 | Yazoo | County | County | 9 | 1 | 1 | 6 | 1 | 1 | 0.11111 | 0.11111 | 0.66667 | 0.11111 | |||
TRUE | Missouri | Adair | 29 | 001 | 29001 | 29001 | 26 | Missouri | 1487 | Adair | County | County | 42 | 17 | 21 | 2 | 2 | 3 | 0.40476 | 0.5 | 0.04762 | 0.04762 | |||
TRUE | Missouri | Andrew | 29 | 003 | 29003 | 29003 | 26 | Missouri | 1488 | Andrew | County | County | 9 | 8 | 1 | 0 | 0 | 2 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Missouri | Atchison | 29 | 005 | 29005 | 29005 | 26 | Missouri | 1489 | Atchison | County | County | 9 | 8 | 1 | 0 | 0 | 3 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Missouri | Audrain | 29 | 007 | 29007 | 29007 | 26 | Missouri | 1490 | Audrain | County | County | 45 | 3 | 40 | 1 | 1 | 8 | 0.06667 | 0.88889 | 0.02222 | 0.02222 | |||
TRUE | Missouri | Barry | 29 | 009 | 29009 | 29009 | 26 | Missouri | 1491 | Barry | County | County | 33 | 12 | 7 | 11 | 3 | 7 | 0.36364 | 0.21212 | 0.33333 | 0.09091 | |||
TRUE | Missouri | Barton | 29 | 011 | 29011 | 29011 | 26 | Missouri | 1492 | Barton | County | County | 10 | 9 | 0 | 1 | 0 | 3 | 0.9 | 0 | 0.1 | 0 | |||
TRUE | Missouri | Bates | 29 | 013 | 29013 | 29013 | 26 | Missouri | 1493 | Bates | County | County | 15 | 13 | 2 | 0 | 0 | 5 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Missouri | Benton | 29 | 015 | 29015 | 29015 | 26 | Missouri | 1494 | Benton | County | County | 12 | 8 | 3 | 1 | 0 | 3 | 0.66667 | 0.25 | 0.08333 | 0 | |||
TRUE | Missouri | Bollinger | 29 | 017 | 29017 | 29017 | 26 | Missouri | 1495 | Bollinger | County | County | 5 | 0 | 5 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Boone | 29 | 019 | 29019 | 29019 | 26 | Missouri | 1496 | Boone | County | County | 303 | 26 | 261 | 12 | 4 | 12 | 0.08581 | 0.86139 | 0.0396 | 0.0132 | |||
TRUE | Missouri | Buchanan | 29 | 021 | 29021 | 29021 | 26 | Missouri | 1497 | Buchanan | County | County | 118 | 87 | 27 | 0 | 4 | 10 | 0.73729 | 0.22881 | 0 | 0.0339 | |||
TRUE | Missouri | Butler | 29 | 023 | 29023 | 29023 | 26 | Missouri | 1498 | Butler | County | County | 32 | 2 | 27 | 1 | 2 | 4 | 0.0625 | 0.84375 | 0.03125 | 0.0625 | |||
TRUE | Missouri | Caldwell | 29 | 025 | 29025 | 29025 | 26 | Missouri | 1499 | Caldwell | County | County | 7 | 6 | 1 | 0 | 0 | 4 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Missouri | Callaway | 29 | 027 | 29027 | 29027 | 26 | Missouri | 1500 | Callaway | County | County | 57 | 4 | 51 | 1 | 1 | 8 | 0.07018 | 0.89474 | 0.01754 | 0.01754 | |||
TRUE | Missouri | Camden | 29 | 029 | 29029 | 29029 | 26 | Missouri | 1501 | Camden | County | County | 29 | 2 | 26 | 0 | 1 | 7 | 0.06897 | 0.89655 | 0 | 0.03448 | |||
TRUE | Missouri | Cape Girardeau | 29 | 031 | 29031 | 29031 | 26 | Missouri | 1502 | Cape Girardeau | County | County | 108 | 1 | 98 | 9 | 0 | 8 | 0.00926 | 0.90741 | 0.08333 | 0 | |||
TRUE | Missouri | Carroll | 29 | 033 | 29033 | 29033 | 26 | Missouri | 1503 | Carroll | County | County | 11 | 7 | 3 | 1 | 0 | 3 | 0.63636 | 0.27273 | 0.09091 | 0 | |||
TRUE | Missouri | Carter | 29 | 035 | 29035 | 29035 | 26 | Missouri | 1504 | Carter | County | County | 6 | 2 | 3 | 1 | 0 | 2 | 0.33333 | 0.5 | 0.16667 | 0 | |||
TRUE | Missouri | Cass | 29 | 037 | 29037 | 29037 | 26 | Missouri | 1505 | Cass | County | County | 88 | 49 | 28 | 9 | 2 | 10 | 0.55682 | 0.31818 | 0.10227 | 0.02273 | |||
TRUE | Missouri | Cedar | 29 | 039 | 29039 | 29039 | 26 | Missouri | 1506 | Cedar | County | County | 6 | 1 | 1 | 4 | 0 | 2 | 0.16667 | 0.16667 | 0.66667 | 0 | |||
TRUE | Missouri | Chariton | 29 | 041 | 29041 | 29041 | 26 | Missouri | 1507 | Chariton | County | County | 16 | 11 | 4 | 1 | 0 | 5 | 0.6875 | 0.25 | 0.0625 | 0 | |||
TRUE | Missouri | Christian | 29 | 043 | 29043 | 29043 | 26 | Missouri | 1508 | Christian | County | County | 41 | 15 | 23 | 2 | 1 | 6 | 0.36585 | 0.56098 | 0.04878 | 0.02439 | |||
TRUE | Missouri | Clark | 29 | 045 | 29045 | 29045 | 26 | Missouri | 1509 | Clark | County | County | 4 | 2 | 2 | 0 | 0 | 3 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Missouri | Clay | 29 | 047 | 29047 | 29047 | 26 | Missouri | 1510 | Clay | County | County | 282 | 178 | 68 | 36 | 0 | 16 | 0.63121 | 0.24113 | 0.12766 | 0 | |||
TRUE | Missouri | Clinton | 29 | 049 | 29049 | 29049 | 26 | Missouri | 1511 | Clinton | County | County | 7 | 7 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Missouri | Cole | 29 | 051 | 29051 | 29051 | 26 | Missouri | 1512 | Cole | County | County | 156 | 4 | 139 | 7 | 6 | 7 | 0.02564 | 0.89103 | 0.04487 | 0.03846 | |||
TRUE | Missouri | Cooper | 29 | 053 | 29053 | 29053 | 26 | Missouri | 1513 | Cooper | County | County | 18 | 7 | 10 | 1 | 0 | 5 | 0.38889 | 0.55556 | 0.05556 | 0 | |||
TRUE | Missouri | Crawford | 29 | 055 | 29055 | 29055 | 26 | Missouri | 1514 | Crawford | County | County | 27 | 1 | 24 | 1 | 1 | 6 | 0.03704 | 0.88889 | 0.03704 | 0.03704 | |||
TRUE | Missouri | Dade | 29 | 057 | 29057 | 29057 | 26 | Missouri | 1515 | Dade | County | County | 4 | 2 | 1 | 0 | 1 | 2 | 0.5 | 0.25 | 0 | 0.25 | |||
TRUE | Missouri | Dallas | 29 | 059 | 29059 | 29059 | 26 | Missouri | 1516 | Dallas | County | County | 5 | 2 | 3 | 0 | 0 | 2 | 0.4 | 0.6 | 0 | 0 | |||
TRUE | Missouri | Daviess | 29 | 061 | 29061 | 29061 | 26 | Missouri | 1517 | Daviess | County | County | 4 | 3 | 1 | 0 | 0 | 3 | 0.75 | 0.25 | 0 | 0 | |||
FALSE | Missouri | Dekalb | 29 | 063 | 29063 | 29063 | 26 | Missouri | 1518 | De Kalb | County | County | 15 | 12 | 3 | 0 | 0 | 3 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Missouri | Dent | 29 | 065 | 29065 | 29065 | 26 | Missouri | 1519 | Dent | County | County | 22 | 0 | 21 | 0 | 1 | 2 | 0 | 0.95455 | 0 | 0.04545 | |||
TRUE | Missouri | Douglas | 29 | 067 | 29067 | 29067 | 26 | Missouri | 1520 | Douglas | County | County | 3 | 1 | 1 | 0 | 1 | 1 | 0.33333 | 0.33333 | 0 | 0.33333 | |||
TRUE | Missouri | Dunklin | 29 | 069 | 29069 | 29069 | 26 | Missouri | 1521 | Dunklin | County | County | 40 | 0 | 21 | 16 | 3 | 7 | 0 | 0.525 | 0.4 | 0.075 | |||
TRUE | Missouri | Franklin | 29 | 071 | 29071 | 29071 | 26 | Missouri | 1522 | Franklin | County | County | 142 | 3 | 134 | 2 | 3 | 16 | 0.02113 | 0.94366 | 0.01408 | 0.02113 | |||
TRUE | Missouri | Gasconade | 29 | 073 | 29073 | 29073 | 26 | Missouri | 1523 | Gasconade | County | County | 15 | 1 | 14 | 0 | 0 | 3 | 0.06667 | 0.93333 | 0 | 0 | |||
TRUE | Missouri | Gentry | 29 | 075 | 29075 | 29075 | 26 | Missouri | 1524 | Gentry | County | County | 13 | 8 | 5 | 0 | 0 | 3 | 0.61538 | 0.38462 | 0 | 0 | |||
TRUE | Missouri | Greene | 29 | 077 | 29077 | 29077 | 26 | Missouri | 1525 | Greene | County | County | 296 | 98 | 152 | 40 | 6 | 15 | 0.33108 | 0.51351 | 0.13514 | 0.02027 | |||
TRUE | Missouri | Grundy | 29 | 079 | 29079 | 29079 | 26 | Missouri | 1526 | Grundy | County | County | 14 | 9 | 5 | 0 | 0 | 2 | 0.64286 | 0.35714 | 0 | 0 | |||
TRUE | Missouri | Harrison | 29 | 081 | 29081 | 29081 | 26 | Missouri | 1527 | Harrison | County | County | 8 | 6 | 1 | 1 | 0 | 3 | 0.75 | 0.125 | 0.125 | 0 | |||
TRUE | Missouri | Henry | 29 | 083 | 29083 | 29083 | 26 | Missouri | 1528 | Henry | County | County | 17 | 9 | 6 | 2 | 0 | 3 | 0.52941 | 0.35294 | 0.11765 | 0 | |||
TRUE | Missouri | Hickory | 29 | 085 | 29085 | 29085 | 26 | Missouri | 1529 | Hickory | County | County | 4 | 2 | 0 | 2 | 0 | 2 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Missouri | Holt | 29 | 087 | 29087 | 29087 | 26 | Missouri | 1530 | Holt | County | County | 9 | 9 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Missouri | Howard | 29 | 089 | 29089 | 29089 | 26 | Missouri | 1531 | Howard | County | County | 7 | 2 | 5 | 0 | 0 | 5 | 0.28571 | 0.71429 | 0 | 0 | |||
TRUE | Missouri | Howell | 29 | 091 | 29091 | 29091 | 26 | Missouri | 1532 | Howell | County | County | 24 | 4 | 18 | 1 | 1 | 4 | 0.16667 | 0.75 | 0.04167 | 0.04167 | |||
TRUE | Missouri | Iron | 29 | 093 | 29093 | 29093 | 26 | Missouri | 1533 | Iron | County | County | 5 | 0 | 5 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Jackson | 29 | 095 | 29095 | 29095 | 26 | Missouri | 1534 | Jackson | County | County | 892 | 506 | 213 | 145 | 28 | 57 | 0.56726 | 0.23879 | 0.16256 | 0.03139 | |||
TRUE | Missouri | Jasper | 29 | 097 | 29097 | 29097 | 26 | Missouri | 1535 | Jasper | County | County | 77 | 40 | 29 | 7 | 1 | 6 | 0.51948 | 0.37662 | 0.09091 | 0.01299 | |||
TRUE | Missouri | Jefferson | 29 | 099 | 29099 | 29099 | 26 | Missouri | 1536 | Jefferson | County | County | 252 | 4 | 233 | 9 | 6 | 15 | 0.01587 | 0.9246 | 0.03571 | 0.02381 | |||
TRUE | Missouri | Johnson | 29 | 101 | 29101 | 29101 | 26 | Missouri | 1537 | Johnson | County | County | 44 | 15 | 26 | 3 | 0 | 5 | 0.34091 | 0.59091 | 0.06818 | 0 | |||
TRUE | Missouri | Knox | 29 | 103 | 29103 | 29103 | 26 | Missouri | 1538 | Knox | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Laclede | 29 | 105 | 29105 | 29105 | 26 | Missouri | 1539 | Laclede | County | County | 20 | 4 | 9 | 5 | 2 | 2 | 0.2 | 0.45 | 0.25 | 0.1 | |||
TRUE | Missouri | Lafayette | 29 | 107 | 29107 | 29107 | 26 | Missouri | 1540 | Lafayette | County | County | 34 | 21 | 8 | 4 | 1 | 6 | 0.61765 | 0.23529 | 0.11765 | 0.02941 | |||
TRUE | Missouri | Lawrence | 29 | 109 | 29109 | 29109 | 26 | Missouri | 1541 | Lawrence | County | County | 13 | 7 | 3 | 1 | 2 | 6 | 0.53846 | 0.23077 | 0.07692 | 0.15385 | |||
TRUE | Missouri | Lewis | 29 | 111 | 29111 | 29111 | 26 | Missouri | 1542 | Lewis | County | County | 14 | 1 | 13 | 0 | 0 | 3 | 0.07143 | 0.92857 | 0 | 0 | |||
TRUE | Missouri | Lincoln | 29 | 113 | 29113 | 29113 | 26 | Missouri | 1543 | Lincoln | County | County | 47 | 2 | 42 | 2 | 1 | 9 | 0.04255 | 0.89362 | 0.04255 | 0.02128 | |||
TRUE | Missouri | Linn | 29 | 115 | 29115 | 29115 | 26 | Missouri | 1544 | Linn | County | County | 8 | 6 | 1 | 1 | 0 | 3 | 0.75 | 0.125 | 0.125 | 0 | |||
TRUE | Missouri | Livingston | 29 | 117 | 29117 | 29117 | 26 | Missouri | 1545 | Livingston | County | County | 22 | 18 | 3 | 0 | 1 | 5 | 0.81818 | 0.13636 | 0 | 0.04545 | |||
TRUE | Missouri | McDonald | 29 | 119 | 29119 | 29119 | 26 | Missouri | 1550 | McDonald | County | County | 5 | 0 | 1 | 3 | 1 | 2 | 0 | 0.2 | 0.6 | 0.2 | |||
TRUE | Missouri | Macon | 29 | 121 | 29121 | 29121 | 26 | Missouri | 1546 | Macon | County | County | 18 | 10 | 7 | 0 | 1 | 4 | 0.55556 | 0.38889 | 0 | 0.05556 | |||
TRUE | Missouri | Madison | 29 | 123 | 29123 | 29123 | 26 | Missouri | 1547 | Madison | County | County | 7 | 1 | 5 | 0 | 1 | 1 | 0.14286 | 0.71429 | 0 | 0.14286 | |||
TRUE | Missouri | Maries | 29 | 125 | 29125 | 29125 | 26 | Missouri | 1548 | Maries | County | County | 5 | 0 | 5 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Marion | 29 | 127 | 29127 | 29127 | 26 | Missouri | 1549 | Marion | County | County | 46 | 1 | 38 | 4 | 3 | 5 | 0.02174 | 0.82609 | 0.08696 | 0.06522 | |||
TRUE | Missouri | Mercer | 29 | 129 | 29129 | 29129 | 26 | Missouri | 1551 | Mercer | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Missouri | Miller | 29 | 131 | 29131 | 29131 | 26 | Missouri | 1552 | Miller | County | County | 7 | 1 | 6 | 0 | 0 | 5 | 0.14286 | 0.85714 | 0 | 0 | |||
TRUE | Missouri | Mississippi | 29 | 133 | 29133 | 29133 | 26 | Missouri | 1553 | Mississippi | County | County | 14 | 0 | 10 | 3 | 1 | 3 | 0 | 0.71429 | 0.21429 | 0.07143 | |||
TRUE | Missouri | Moniteau | 29 | 135 | 29135 | 29135 | 26 | Missouri | 1554 | Moniteau | County | County | 14 | 0 | 14 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Monroe | 29 | 137 | 29137 | 29137 | 26 | Missouri | 1555 | Monroe | County | County | 6 | 1 | 5 | 0 | 0 | 3 | 0.16667 | 0.83333 | 0 | 0 | |||
TRUE | Missouri | Montgomery | 29 | 139 | 29139 | 29139 | 26 | Missouri | 1556 | Montgomery | County | County | 10 | 0 | 9 | 0 | 1 | 5 | 0 | 0.9 | 0 | 0.1 | |||
TRUE | Missouri | Morgan | 29 | 141 | 29141 | 29141 | 26 | Missouri | 1557 | Morgan | County | County | 7 | 2 | 4 | 0 | 1 | 3 | 0.28571 | 0.57143 | 0 | 0.14286 | |||
TRUE | Missouri | New Madrid | 29 | 143 | 29143 | 29143 | 26 | Missouri | 1558 | New Madrid | County | County | 8 | 0 | 6 | 1 | 1 | 4 | 0 | 0.75 | 0.125 | 0.125 | |||
TRUE | Missouri | Newton | 29 | 145 | 29145 | 29145 | 26 | Missouri | 1559 | Newton | County | County | 50 | 29 | 9 | 9 | 3 | 6 | 0.58 | 0.18 | 0.18 | 0.06 | |||
TRUE | Missouri | Nodaway | 29 | 147 | 29147 | 29147 | 26 | Missouri | 1560 | Nodaway | County | County | 15 | 12 | 2 | 0 | 1 | 4 | 0.8 | 0.13333 | 0 | 0.06667 | |||
TRUE | Missouri | Oregon | 29 | 149 | 29149 | 29149 | 26 | Missouri | 1561 | Oregon | County | County | 6 | 2 | 3 | 0 | 1 | 4 | 0.33333 | 0.5 | 0 | 0.16667 | |||
TRUE | Missouri | Osage | 29 | 151 | 29151 | 29151 | 26 | Missouri | 1562 | Osage | County | County | 12 | 1 | 11 | 0 | 0 | 3 | 0.08333 | 0.91667 | 0 | 0 | |||
TRUE | Missouri | Ozark | 29 | 153 | 29153 | 29153 | 26 | Missouri | 1563 | Ozark | County | County | 3 | 1 | 1 | 1 | 0 | 3 | 0.33333 | 0.33333 | 0.33333 | 0 | |||
TRUE | Missouri | Pemiscot | 29 | 155 | 29155 | 29155 | 26 | Missouri | 1564 | Pemiscot | County | County | 11 | 0 | 5 | 6 | 0 | 5 | 0 | 0.45455 | 0.54545 | 0 | |||
TRUE | Missouri | Perry | 29 | 157 | 29157 | 29157 | 26 | Missouri | 1565 | Perry | County | County | 21 | 0 | 21 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Pettis | 29 | 159 | 29159 | 29159 | 26 | Missouri | 1566 | Pettis | County | County | 35 | 17 | 13 | 2 | 3 | 3 | 0.48571 | 0.37143 | 0.05714 | 0.08571 | |||
TRUE | Missouri | Phelps | 29 | 161 | 29161 | 29161 | 26 | Missouri | 1567 | Phelps | County | County | 82 | 9 | 66 | 6 | 1 | 4 | 0.10976 | 0.80488 | 0.07317 | 0.0122 | |||
TRUE | Missouri | Pike | 29 | 163 | 29163 | 29163 | 26 | Missouri | 1568 | Pike | County | County | 24 | 1 | 22 | 1 | 0 | 8 | 0.04167 | 0.91667 | 0.04167 | 0 | |||
TRUE | Missouri | Platte | 29 | 165 | 29165 | 29165 | 26 | Missouri | 1569 | Platte | County | County | 111 | 77 | 20 | 13 | 1 | 9 | 0.69369 | 0.18018 | 0.11712 | 0.00901 | |||
TRUE | Missouri | Polk | 29 | 167 | 29167 | 29167 | 26 | Missouri | 1570 | Polk | County | County | 21 | 6 | 11 | 3 | 1 | 4 | 0.28571 | 0.52381 | 0.14286 | 0.04762 | |||
TRUE | Missouri | Pulaski | 29 | 169 | 29169 | 29169 | 26 | Missouri | 1571 | Pulaski | County | County | 24 | 6 | 13 | 2 | 3 | 7 | 0.25 | 0.54167 | 0.08333 | 0.125 | |||
TRUE | Missouri | Putnam | 29 | 171 | 29171 | 29171 | 26 | Missouri | 1572 | Putnam | County | County | 11 | 7 | 3 | 0 | 1 | 2 | 0.63636 | 0.27273 | 0 | 0.09091 | |||
TRUE | Missouri | Ralls | 29 | 173 | 29173 | 29173 | 26 | Missouri | 1573 | Ralls | County | County | 11 | 0 | 11 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Randolph | 29 | 175 | 29175 | 29175 | 26 | Missouri | 1574 | Randolph | County | County | 10 | 3 | 5 | 2 | 0 | 3 | 0.3 | 0.5 | 0.2 | 0 | |||
TRUE | Missouri | Ray | 29 | 177 | 29177 | 29177 | 26 | Missouri | 1575 | Ray | County | County | 14 | 9 | 2 | 3 | 0 | 4 | 0.64286 | 0.14286 | 0.21429 | 0 | |||
TRUE | Missouri | Reynolds | 29 | 179 | 29179 | 29179 | 26 | Missouri | 1576 | Reynolds | County | County | 2 | 1 | 0 | 0 | 1 | 2 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Missouri | Ripley | 29 | 181 | 29181 | 29181 | 26 | Missouri | 1577 | Ripley | County | County | 9 | 0 | 8 | 1 | 0 | 2 | 0 | 0.88889 | 0.11111 | 0 | |||
FALSE | Missouri | St Charles | 29 | 183 | 29183 | 29183 | 26 | Missouri | 1578 | Saint Charles | County | County | 490 | 12 | 460 | 7 | 11 | 11 | 0.02449 | 0.93878 | 0.01429 | 0.02245 | |||
FALSE | Missouri | St Clair | 29 | 185 | 29185 | 29185 | 26 | Missouri | 1579 | Saint Clair | County | County | 6 | 4 | 2 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
FALSE | Missouri | Ste Genevieve | 29 | 186 | 29186 | 29186 | 26 | Missouri | 1582 | Sainte Genevieve | County | County | 14 | 0 | 14 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
FALSE | Missouri | St Francois | 29 | 187 | 29187 | 29187 | 26 | Missouri | 1580 | Saint Francois | County | County | 34 | 0 | 32 | 1 | 1 | 4 | 0 | 0.94118 | 0.02941 | 0.02941 | |||
FALSE | Missouri | St Louis | 29 | 189 | 29189 | 29189 | 26 | Missouri | 1581 | Saint Louis | County | County | 2973 | 90 | 2773 | 62 | 48 | 65 | 0.03027 | 0.93273 | 0.02085 | 0.01615 | |||
TRUE | Missouri | Saline | 29 | 195 | 29195 | 29195 | 26 | Missouri | 1583 | Saline | County | County | 21 | 15 | 5 | 1 | 0 | 5 | 0.71429 | 0.2381 | 0.04762 | 0 | |||
TRUE | Missouri | Schuyler | 29 | 197 | 29197 | 29197 | 26 | Missouri | 1584 | Schuyler | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Missouri | Scotland | 29 | 199 | 29199 | 29199 | 26 | Missouri | 1585 | Scotland | County | County | 5 | 4 | 1 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Missouri | Scott | 29 | 201 | 29201 | 29201 | 26 | Missouri | 1586 | Scott | County | County | 44 | 0 | 35 | 5 | 4 | 7 | 0 | 0.79545 | 0.11364 | 0.09091 | |||
TRUE | Missouri | Shannon | 29 | 203 | 29203 | 29203 | 26 | Missouri | 1587 | Shannon | County | County | 8 | 0 | 7 | 0 | 1 | 5 | 0 | 0.875 | 0 | 0.125 | |||
TRUE | Missouri | Shelby | 29 | 205 | 29205 | 29205 | 26 | Missouri | 1588 | Shelby | County | County | 11 | 5 | 6 | 0 | 0 | 3 | 0.45455 | 0.54545 | 0 | 0 | |||
TRUE | Missouri | Stoddard | 29 | 207 | 29207 | 29207 | 26 | Missouri | 1589 | Stoddard | County | County | 14 | 0 | 13 | 1 | 0 | 3 | 0 | 0.92857 | 0.07143 | 0 | |||
TRUE | Missouri | Stone | 29 | 209 | 29209 | 29209 | 26 | Missouri | 1590 | Stone | County | County | 13 | 4 | 8 | 0 | 1 | 6 | 0.30769 | 0.61538 | 0 | 0.07692 | |||
TRUE | Missouri | Sullivan | 29 | 211 | 29211 | 29211 | 26 | Missouri | 1591 | Sullivan | County | County | 7 | 5 | 2 | 0 | 0 | 3 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | Missouri | Taney | 29 | 213 | 29213 | 29213 | 26 | Missouri | 1592 | Taney | County | County | 23 | 4 | 12 | 6 | 1 | 7 | 0.17391 | 0.52174 | 0.26087 | 0.04348 | |||
TRUE | Missouri | Texas | 29 | 215 | 29215 | 29215 | 26 | Missouri | 1593 | Texas | County | County | 12 | 0 | 12 | 0 | 0 | 7 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Vernon | 29 | 217 | 29217 | 29217 | 26 | Missouri | 1594 | Vernon | County | County | 27 | 18 | 4 | 4 | 1 | 4 | 0.66667 | 0.14815 | 0.14815 | 0.03704 | |||
TRUE | Missouri | Warren | 29 | 219 | 29219 | 29219 | 26 | Missouri | 1595 | Warren | County | County | 22 | 1 | 21 | 0 | 0 | 3 | 0.04545 | 0.95455 | 0 | 0 | |||
TRUE | Missouri | Washington | 29 | 221 | 29221 | 29221 | 26 | Missouri | 1596 | Washington | County | County | 14 | 0 | 14 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | |||
TRUE | Missouri | Wayne | 29 | 223 | 29223 | 29223 | 26 | Missouri | 1597 | Wayne | County | County | 7 | 1 | 6 | 0 | 0 | 2 | 0.14286 | 0.85714 | 0 | 0 | |||
TRUE | Missouri | Webster | 29 | 225 | 29225 | 29225 | 26 | Missouri | 1598 | Webster | County | County | 13 | 8 | 4 | 1 | 0 | 3 | 0.61538 | 0.30769 | 0.07692 | 0 | |||
TRUE | Missouri | Worth | 29 | 227 | 29227 | 29227 | 26 | Missouri | 1599 | Worth | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Missouri | Wright | 29 | 229 | 29229 | 29229 | 26 | Missouri | 1600 | Wright | County | County | 5 | 4 | 1 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Montana | Beaverhead | 30 | 001 | 30001 | 30001 | 27 | Montana | 1601 | Beaverhead | County | County | 8 | 6 | 2 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Montana | Big Horn | 30 | 003 | 30003 | 30003 | 27 | Montana | 1602 | Big Horn | County | County | 8 | 7 | 1 | 0 | 0 | 3 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Montana | Blaine | 30 | 005 | 30005 | 30005 | 27 | Montana | 1603 | Blaine | County | County | 9 | 7 | 1 | 0 | 1 | 3 | 0.77778 | 0.11111 | 0 | 0.11111 | |||
TRUE | Montana | Broadwater | 30 | 007 | 30007 | 30007 | 27 | Montana | 1604 | Broadwater | County | County | 4 | 3 | 0 | 0 | 1 | 2 | 0.75 | 0 | 0 | 0.25 | |||
TRUE | Montana | Carbon | 30 | 009 | 30009 | 30009 | 27 | Montana | 1605 | Carbon | County | County | 9 | 7 | 1 | 1 | 0 | 4 | 0.77778 | 0.11111 | 0.11111 | 0 | |||
TRUE | Montana | Carter | 30 | 011 | 30011 | 30011 | 27 | Montana | 1606 | Carter | County | County | 3 | 1 | 2 | 0 | 0 | 2 | 0.33333 | 0.66667 | 0 | 0 | |||
TRUE | Montana | Cascade | 30 | 013 | 30013 | 30013 | 27 | Montana | 1607 | Cascade | County | County | 122 | 88 | 27 | 5 | 2 | 13 | 0.72131 | 0.22131 | 0.04098 | 0.01639 | |||
TRUE | Montana | Chouteau | 30 | 015 | 30015 | 30015 | 27 | Montana | 1608 | Chouteau | County | County | 8 | 7 | 1 | 0 | 0 | 3 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Montana | Custer | 30 | 017 | 30017 | 30017 | 27 | Montana | 1609 | Custer | County | County | 18 | 14 | 2 | 2 | 0 | 2 | 0.77778 | 0.11111 | 0.11111 | 0 | |||
TRUE | Montana | Daniels | 30 | 019 | 30019 | 30019 | 27 | Montana | 1610 | Daniels | County | County | 6 | 6 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Dawson | 30 | 021 | 30021 | 30021 | 27 | Montana | 1611 | Dawson | County | County | 18 | 15 | 2 | 0 | 1 | 2 | 0.83333 | 0.11111 | 0 | 0.05556 | |||
TRUE | Montana | Deer Lodge | 30 | 023 | 30023 | 30023 | 27 | Montana | 1612 | Deer Lodge | County | County | 14 | 11 | 0 | 1 | 2 | 1 | 0.78571 | 0 | 0.07143 | 0.14286 | |||
TRUE | Montana | Fallon | 30 | 025 | 30025 | 30025 | 27 | Montana | 1613 | Fallon | County | County | 4 | 4 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Fergus | 30 | 027 | 30027 | 30027 | 27 | Montana | 1614 | Fergus | County | County | 11 | 9 | 1 | 1 | 0 | 3 | 0.81818 | 0.09091 | 0.09091 | 0 | |||
TRUE | Montana | Flathead | 30 | 029 | 30029 | 30029 | 27 | Montana | 1615 | Flathead | County | County | 61 | 46 | 8 | 5 | 2 | 8 | 0.7541 | 0.13115 | 0.08197 | 0.03279 | |||
TRUE | Montana | Gallatin | 30 | 031 | 30031 | 30031 | 27 | Montana | 1616 | Gallatin | County | County | 90 | 67 | 21 | 1 | 1 | 8 | 0.74444 | 0.23333 | 0.01111 | 0.01111 | |||
TRUE | Montana | Garfield | 30 | 033 | 30033 | 30033 | 27 | Montana | 1617 | Garfield | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Glacier | 30 | 035 | 30035 | 30035 | 27 | Montana | 1618 | Glacier | County | County | 6 | 4 | 1 | 1 | 0 | 4 | 0.66667 | 0.16667 | 0.16667 | 0 | |||
TRUE | Montana | Golden Valley | 30 | 037 | 30037 | 30037 | 27 | Montana | 1619 | Golden Valley | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | Montana | Granite | 30 | 039 | 30039 | 30039 | 27 | Montana | 1620 | Granite | County | County | 3 | 2 | 1 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Montana | Hill | 30 | 041 | 30041 | 30041 | 27 | Montana | 1621 | Hill | County | County | 31 | 23 | 8 | 0 | 0 | 4 | 0.74194 | 0.25806 | 0 | 0 | |||
TRUE | Montana | Jefferson | 30 | 043 | 30043 | 30043 | 27 | Montana | 1622 | Jefferson | County | County | 16 | 12 | 3 | 1 | 0 | 4 | 0.75 | 0.1875 | 0.0625 | 0 | |||
TRUE | Montana | Judith Basin | 30 | 045 | 30045 | 30045 | 27 | Montana | 1623 | Judith Basin | County | County | 7 | 7 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Lake | 30 | 047 | 30047 | 30047 | 27 | Montana | 1624 | Lake | County | County | 29 | 24 | 5 | 0 | 0 | 5 | 0.82759 | 0.17241 | 0 | 0 | |||
TRUE | Montana | Lewis and Clark | 30 | 049 | 30049 | 30049 | 27 | Montana | 1625 | Lewis and Clark | County | County | 90 | 65 | 22 | 1 | 2 | 4 | 0.72222 | 0.24444 | 0.01111 | 0.02222 | |||
TRUE | Montana | Liberty | 30 | 051 | 30051 | 30051 | 27 | Montana | 1626 | Liberty | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Lincoln | 30 | 053 | 30053 | 30053 | 27 | Montana | 1627 | Lincoln | County | County | 16 | 13 | 3 | 0 | 0 | 3 | 0.8125 | 0.1875 | 0 | 0 | |||
TRUE | Montana | McCone | 30 | 055 | 30055 | 30055 | 27 | Montana | 1629 | McCone | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Montana | Madison | 30 | 057 | 30057 | 30057 | 27 | Montana | 1628 | Madison | County | County | 8 | 6 | 2 | 0 | 0 | 4 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Montana | Meagher | 30 | 059 | 30059 | 30059 | 27 | Montana | 1630 | Meagher | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Montana | Mineral | 30 | 061 | 30061 | 30061 | 27 | Montana | 1631 | Mineral | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Montana | Missoula | 30 | 063 | 30063 | 30063 | 27 | Montana | 1632 | Missoula | County | County | 157 | 104 | 41 | 3 | 9 | 12 | 0.66242 | 0.26115 | 0.01911 | 0.05732 | |||
TRUE | Montana | Musselshell | 30 | 065 | 30065 | 30065 | 27 | Montana | 1633 | Musselshell | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Park | 30 | 067 | 30067 | 30067 | 27 | Montana | 1634 | Park | County | County | 18 | 9 | 6 | 1 | 2 | 4 | 0.5 | 0.33333 | 0.05556 | 0.11111 | |||
TRUE | Montana | Petroleum | 30 | 069 | 30069 | 30069 | 27 | Montana | 1635 | Petroleum | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Phillips | 30 | 071 | 30071 | 30071 | 27 | Montana | 1636 | Phillips | County | County | 11 | 10 | 1 | 0 | 0 | 3 | 0.90909 | 0.09091 | 0 | 0 | |||
TRUE | Montana | Pondera | 30 | 073 | 30073 | 30073 | 27 | Montana | 1637 | Pondera | County | County | 14 | 12 | 1 | 1 | 0 | 3 | 0.85714 | 0.07143 | 0.07143 | 0 | |||
TRUE | Montana | Powder River | 30 | 075 | 30075 | 30075 | 27 | Montana | 1638 | Powder River | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Powell | 30 | 077 | 30077 | 30077 | 27 | Montana | 1639 | Powell | County | County | 5 | 5 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Prairie | 30 | 079 | 30079 | 30079 | 27 | Montana | 1640 | Prairie | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Montana | Ravalli | 30 | 081 | 30081 | 30081 | 27 | Montana | 1641 | Ravalli | County | County | 28 | 22 | 3 | 1 | 2 | 7 | 0.78571 | 0.10714 | 0.03571 | 0.07143 | |||
TRUE | Montana | Richland | 30 | 083 | 30083 | 30083 | 27 | Montana | 1642 | Richland | County | County | 18 | 16 | 1 | 0 | 1 | 4 | 0.88889 | 0.05556 | 0 | 0.05556 | |||
TRUE | Montana | Roosevelt | 30 | 085 | 30085 | 30085 | 27 | Montana | 1643 | Roosevelt | County | County | 11 | 11 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Rosebud | 30 | 087 | 30087 | 30087 | 27 | Montana | 1644 | Rosebud | County | County | 9 | 7 | 2 | 0 | 0 | 3 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Montana | Sanders | 30 | 089 | 30089 | 30089 | 27 | Montana | 1645 | Sanders | County | County | 4 | 1 | 3 | 0 | 0 | 3 | 0.25 | 0.75 | 0 | 0 | |||
TRUE | Montana | Sheridan | 30 | 091 | 30091 | 30091 | 27 | Montana | 1646 | Sheridan | County | County | 10 | 9 | 1 | 0 | 0 | 5 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Montana | Silver Bow | 30 | 093 | 30093 | 30093 | 27 | Montana | 1647 | Silver Bow | County | County | 44 | 37 | 7 | 0 | 0 | 1 | 0.84091 | 0.15909 | 0 | 0 | |||
TRUE | Montana | Stillwater | 30 | 095 | 30095 | 30095 | 27 | Montana | 1648 | Stillwater | County | County | 10 | 9 | 1 | 0 | 0 | 3 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Montana | Sweet Grass | 30 | 097 | 30097 | 30097 | 27 | Montana | 1649 | Sweet Grass | County | County | 4 | 4 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Teton | 30 | 099 | 30099 | 30099 | 27 | Montana | 1650 | Teton | County | County | 4 | 3 | 1 | 0 | 0 | 3 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Montana | Toole | 30 | 101 | 30101 | 30101 | 27 | Montana | 1651 | Toole | County | County | 5 | 4 | 1 | 0 | 0 | 3 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Montana | Treasure | 30 | 103 | 30103 | 30103 | 27 | Montana | 1652 | Treasure | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Valley | 30 | 105 | 30105 | 30105 | 27 | Montana | 1653 | Valley | County | County | 18 | 11 | 3 | 4 | 0 | 5 | 0.61111 | 0.16667 | 0.22222 | 0 | |||
TRUE | Montana | Wheatland | 30 | 107 | 30107 | 30107 | 27 | Montana | 1654 | Wheatland | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Montana | Wibaux | 30 | 109 | 30109 | 30109 | 27 | Montana | 1655 | Wibaux | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Montana | Yellowstone | 30 | 111 | 30111 | 30111 | 27 | Montana | 1656 | Yellowstone | County | County | 183 | 152 | 25 | 3 | 3 | 12 | 0.8306 | 0.13661 | 0.01639 | 0.01639 | |||
TRUE | Nebraska | Adams | 31 | 001 | 31001 | 31001 | 28 | Nebraska | 1657 | Adams | County | County | 65 | 55 | 7 | 0 | 3 | 6 | 0.84615 | 0.10769 | 0 | 0.04615 | |||
TRUE | Nebraska | Antelope | 31 | 003 | 31003 | 31003 | 28 | Nebraska | 1658 | Antelope | County | County | 7 | 6 | 1 | 0 | 0 | 7 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Nebraska | Arthur | 31 | 005 | 31005 | 31005 | 28 | Nebraska | 1659 | Arthur | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Banner | 31 | 007 | 31007 | 31007 | 28 | Nebraska | 1660 | Banner | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Blaine | 31 | 009 | 31009 | 31009 | 28 | Nebraska | 1661 | Blaine | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Nebraska | Boone | 31 | 011 | 31011 | 31011 | 28 | Nebraska | 1662 | Boone | County | County | 10 | 10 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Box Butte | 31 | 013 | 31013 | 31013 | 28 | Nebraska | 1663 | Box Butte | County | County | 20 | 18 | 2 | 0 | 0 | 2 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | Nebraska | Boyd | 31 | 015 | 31015 | 31015 | 28 | Nebraska | 1664 | Boyd | County | County | 6 | 4 | 1 | 1 | 0 | 3 | 0.66667 | 0.16667 | 0.16667 | 0 | |||
TRUE | Nebraska | Brown | 31 | 017 | 31017 | 31017 | 28 | Nebraska | 1665 | Brown | County | County | 5 | 5 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Buffalo | 31 | 019 | 31019 | 31019 | 28 | Nebraska | 1666 | Buffalo | County | County | 66 | 51 | 14 | 1 | 0 | 8 | 0.77273 | 0.21212 | 0.01515 | 0 | |||
TRUE | Nebraska | Burt | 31 | 021 | 31021 | 31021 | 28 | Nebraska | 1667 | Burt | County | County | 20 | 17 | 3 | 0 | 0 | 5 | 0.85 | 0.15 | 0 | 0 | |||
TRUE | Nebraska | Butler | 31 | 023 | 31023 | 31023 | 28 | Nebraska | 1668 | Butler | County | County | 9 | 7 | 2 | 0 | 0 | 7 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Nebraska | Cass | 31 | 025 | 31025 | 31025 | 28 | Nebraska | 1669 | Cass | County | County | 24 | 19 | 4 | 1 | 0 | 8 | 0.79167 | 0.16667 | 0.04167 | 0 | |||
TRUE | Nebraska | Cedar | 31 | 027 | 31027 | 31027 | 28 | Nebraska | 1670 | Cedar | County | County | 21 | 16 | 5 | 0 | 0 | 6 | 0.7619 | 0.2381 | 0 | 0 | |||
TRUE | Nebraska | Chase | 31 | 029 | 31029 | 31029 | 28 | Nebraska | 1671 | Chase | County | County | 5 | 4 | 1 | 0 | 0 | 1 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Nebraska | Cherry | 31 | 031 | 31031 | 31031 | 28 | Nebraska | 1672 | Cherry | County | County | 25 | 20 | 4 | 1 | 0 | 4 | 0.8 | 0.16 | 0.04 | 0 | |||
TRUE | Nebraska | Cheyenne | 31 | 033 | 31033 | 31033 | 28 | Nebraska | 1673 | Cheyenne | County | County | 16 | 15 | 1 | 0 | 0 | 4 | 0.9375 | 0.0625 | 0 | 0 | |||
TRUE | Nebraska | Clay | 31 | 035 | 31035 | 31035 | 28 | Nebraska | 1674 | Clay | County | County | 12 | 9 | 3 | 0 | 0 | 5 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Nebraska | Colfax | 31 | 037 | 31037 | 31037 | 28 | Nebraska | 1675 | Colfax | County | County | 10 | 9 | 0 | 0 | 1 | 3 | 0.9 | 0 | 0 | 0.1 | |||
TRUE | Nebraska | Cuming | 31 | 039 | 31039 | 31039 | 28 | Nebraska | 1676 | Cuming | County | County | 19 | 15 | 4 | 0 | 0 | 4 | 0.78947 | 0.21053 | 0 | 0 | |||
TRUE | Nebraska | Custer | 31 | 041 | 31041 | 31041 | 28 | Nebraska | 1677 | Custer | County | County | 26 | 24 | 2 | 0 | 0 | 7 | 0.92308 | 0.07692 | 0 | 0 | |||
TRUE | Nebraska | Dakota | 31 | 043 | 31043 | 31043 | 28 | Nebraska | 1678 | Dakota | County | County | 25 | 22 | 3 | 0 | 0 | 5 | 0.88 | 0.12 | 0 | 0 | |||
TRUE | Nebraska | Dawes | 31 | 045 | 31045 | 31045 | 28 | Nebraska | 1679 | Dawes | County | County | 9 | 9 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Dawson | 31 | 047 | 31047 | 31047 | 28 | Nebraska | 1680 | Dawson | County | County | 41 | 33 | 8 | 0 | 0 | 4 | 0.80488 | 0.19512 | 0 | 0 | |||
TRUE | Nebraska | Deuel | 31 | 049 | 31049 | 31049 | 28 | Nebraska | 1681 | Deuel | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Dixon | 31 | 051 | 31051 | 31051 | 28 | Nebraska | 1682 | Dixon | County | County | 17 | 17 | 0 | 0 | 0 | 6 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Dodge | 31 | 053 | 31053 | 31053 | 28 | Nebraska | 1683 | Dodge | County | County | 65 | 53 | 9 | 2 | 1 | 7 | 0.81538 | 0.13846 | 0.03077 | 0.01538 | |||
TRUE | Nebraska | Douglas | 31 | 055 | 31055 | 31055 | 28 | Nebraska | 1684 | Douglas | County | County | 1072 | 839 | 205 | 13 | 15 | 34 | 0.78265 | 0.19123 | 0.01213 | 0.01399 | |||
TRUE | Nebraska | Dundy | 31 | 057 | 31057 | 31057 | 28 | Nebraska | 1685 | Dundy | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Fillmore | 31 | 059 | 31059 | 31059 | 28 | Nebraska | 1686 | Fillmore | County | County | 8 | 7 | 1 | 0 | 0 | 4 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Nebraska | Franklin | 31 | 061 | 31061 | 31061 | 28 | Nebraska | 1687 | Franklin | County | County | 6 | 5 | 1 | 0 | 0 | 3 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Nebraska | Frontier | 31 | 063 | 31063 | 31063 | 28 | Nebraska | 1688 | Frontier | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Furnas | 31 | 065 | 31065 | 31065 | 28 | Nebraska | 1689 | Furnas | County | County | 9 | 9 | 0 | 0 | 0 | 5 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Gage | 31 | 067 | 31067 | 31067 | 28 | Nebraska | 1690 | Gage | County | County | 31 | 28 | 3 | 0 | 0 | 6 | 0.90323 | 0.09677 | 0 | 0 | |||
TRUE | Nebraska | Garden | 31 | 069 | 31069 | 31069 | 28 | Nebraska | 1691 | Garden | County | County | 2 | 1 | 0 | 1 | 0 | 1 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Nebraska | Garfield | 31 | 071 | 31071 | 31071 | 28 | Nebraska | 1692 | Garfield | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Gosper | 31 | 073 | 31073 | 31073 | 28 | Nebraska | 1693 | Gosper | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Grant | 31 | 075 | 31075 | 31075 | 28 | Nebraska | 1694 | Grant | County | County | 2 | 1 | 0 | 0 | 1 | 2 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Nebraska | Greeley | 31 | 077 | 31077 | 31077 | 28 | Nebraska | 1695 | Greeley | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Hall | 31 | 079 | 31079 | 31079 | 28 | Nebraska | 1696 | Hall | County | County | 73 | 65 | 7 | 0 | 1 | 6 | 0.89041 | 0.09589 | 0 | 0.0137 | |||
TRUE | Nebraska | Hamilton | 31 | 081 | 31081 | 31081 | 28 | Nebraska | 1697 | Hamilton | County | County | 16 | 12 | 4 | 0 | 0 | 4 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Nebraska | Harlan | 31 | 083 | 31083 | 31083 | 28 | Nebraska | 1698 | Harlan | County | County | 5 | 4 | 1 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Nebraska | Hayes | 31 | 085 | 31085 | 31085 | 28 | Nebraska | 1699 | Hayes | County | County | 5 | 5 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Hitchcock | 31 | 087 | 31087 | 31087 | 28 | Nebraska | 1700 | Hitchcock | County | County | 11 | 11 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Holt | 31 | 089 | 31089 | 31089 | 28 | Nebraska | 1701 | Holt | County | County | 28 | 27 | 1 | 0 | 0 | 8 | 0.96429 | 0.03571 | 0 | 0 | |||
TRUE | Nebraska | Hooker | 31 | 091 | 31091 | 31091 | 28 | Nebraska | 1702 | Hooker | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Howard | 31 | 093 | 31093 | 31093 | 28 | Nebraska | 1703 | Howard | County | County | 8 | 8 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Jefferson | 31 | 095 | 31095 | 31095 | 28 | Nebraska | 1704 | Jefferson | County | County | 6 | 5 | 1 | 0 | 0 | 3 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Nebraska | Johnson | 31 | 097 | 31097 | 31097 | 28 | Nebraska | 1705 | Johnson | County | County | 6 | 6 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Kearney | 31 | 099 | 31099 | 31099 | 28 | Nebraska | 1706 | Kearney | County | County | 7 | 5 | 1 | 1 | 0 | 1 | 0.71429 | 0.14286 | 0.14286 | 0 | |||
TRUE | Nebraska | Keith | 31 | 101 | 31101 | 31101 | 28 | Nebraska | 1707 | Keith | County | County | 12 | 12 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Keya Paha | 31 | 103 | 31103 | 31103 | 28 | Nebraska | 1708 | Keya Paha | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Kimball | 31 | 105 | 31105 | 31105 | 28 | Nebraska | 1709 | Kimball | County | County | 9 | 8 | 1 | 0 | 0 | 2 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Nebraska | Knox | 31 | 107 | 31107 | 31107 | 28 | Nebraska | 1710 | Knox | County | County | 14 | 12 | 0 | 0 | 2 | 5 | 0.85714 | 0 | 0 | 0.14286 | |||
TRUE | Nebraska | Lancaster | 31 | 109 | 31109 | 31109 | 28 | Nebraska | 1711 | Lancaster | County | County | 501 | 389 | 97 | 3 | 12 | 28 | 0.77645 | 0.19361 | 0.00599 | 0.02395 | |||
TRUE | Nebraska | Lincoln | 31 | 111 | 31111 | 31111 | 28 | Nebraska | 1712 | Lincoln | County | County | 35 | 31 | 3 | 0 | 1 | 5 | 0.88571 | 0.08571 | 0 | 0.02857 | |||
TRUE | Nebraska | Logan | 31 | 113 | 31113 | 31113 | 28 | Nebraska | 1713 | Logan | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Loup | 31 | 115 | 31115 | 31115 | 28 | Nebraska | 1714 | Loup | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | McPherson | 31 | 117 | 31117 | 31117 | 28 | Nebraska | 1716 | McPherson | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Nebraska | Madison | 31 | 119 | 31119 | 31119 | 28 | Nebraska | 1715 | Madison | County | County | 50 | 42 | 7 | 1 | 0 | 4 | 0.84 | 0.14 | 0.02 | 0 | |||
TRUE | Nebraska | Merrick | 31 | 121 | 31121 | 31121 | 28 | Nebraska | 1717 | Merrick | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Morrill | 31 | 123 | 31123 | 31123 | 28 | Nebraska | 1718 | Morrill | County | County | 13 | 7 | 3 | 1 | 2 | 3 | 0.53846 | 0.23077 | 0.07692 | 0.15385 | |||
TRUE | Nebraska | Nance | 31 | 125 | 31125 | 31125 | 28 | Nebraska | 1719 | Nance | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Nemaha | 31 | 127 | 31127 | 31127 | 28 | Nebraska | 1720 | Nemaha | County | County | 10 | 9 | 0 | 0 | 1 | 5 | 0.9 | 0 | 0 | 0.1 | |||
TRUE | Nebraska | Nuckolls | 31 | 129 | 31129 | 31129 | 28 | Nebraska | 1721 | Nuckolls | County | County | 12 | 12 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Otoe | 31 | 131 | 31131 | 31131 | 28 | Nebraska | 1722 | Otoe | County | County | 20 | 17 | 1 | 1 | 1 | 5 | 0.85 | 0.05 | 0.05 | 0.05 | |||
TRUE | Nebraska | Pawnee | 31 | 133 | 31133 | 31133 | 28 | Nebraska | 1723 | Pawnee | County | County | 7 | 6 | 1 | 0 | 0 | 4 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Nebraska | Perkins | 31 | 135 | 31135 | 31135 | 28 | Nebraska | 1724 | Perkins | County | County | 7 | 5 | 2 | 0 | 0 | 4 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | Nebraska | Phelps | 31 | 137 | 31137 | 31137 | 28 | Nebraska | 1725 | Phelps | County | County | 12 | 12 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Pierce | 31 | 139 | 31139 | 31139 | 28 | Nebraska | 1726 | Pierce | County | County | 9 | 8 | 1 | 0 | 0 | 4 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Nebraska | Platte | 31 | 141 | 31141 | 31141 | 28 | Nebraska | 1727 | Platte | County | County | 63 | 53 | 6 | 1 | 3 | 4 | 0.84127 | 0.09524 | 0.01587 | 0.04762 | |||
TRUE | Nebraska | Polk | 31 | 143 | 31143 | 31143 | 28 | Nebraska | 1728 | Polk | County | County | 4 | 3 | 1 | 0 | 0 | 2 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Nebraska | Red Willow | 31 | 145 | 31145 | 31145 | 28 | Nebraska | 1729 | Red Willow | County | County | 14 | 12 | 2 | 0 | 0 | 2 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Nebraska | Richardson | 31 | 147 | 31147 | 31147 | 28 | Nebraska | 1730 | Richardson | County | County | 14 | 12 | 2 | 0 | 0 | 4 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Nebraska | Rock | 31 | 149 | 31149 | 31149 | 28 | Nebraska | 1731 | Rock | County | County | 4 | 2 | 2 | 0 | 0 | 2 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Nebraska | Saline | 31 | 151 | 31151 | 31151 | 28 | Nebraska | 1732 | Saline | County | County | 15 | 14 | 1 | 0 | 0 | 4 | 0.93333 | 0.06667 | 0 | 0 | |||
TRUE | Nebraska | Sarpy | 31 | 153 | 31153 | 31153 | 28 | Nebraska | 1733 | Sarpy | County | County | 318 | 207 | 69 | 12 | 30 | 12 | 0.65094 | 0.21698 | 0.03774 | 0.09434 | |||
TRUE | Nebraska | Saunders | 31 | 155 | 31155 | 31155 | 28 | Nebraska | 1734 | Saunders | County | County | 31 | 30 | 0 | 0 | 1 | 11 | 0.96774 | 0 | 0 | 0.03226 | |||
TRUE | Nebraska | Scotts Bluff | 31 | 157 | 31157 | 31157 | 28 | Nebraska | 1735 | Scotts Bluff | County | County | 49 | 38 | 5 | 4 | 2 | 5 | 0.77551 | 0.10204 | 0.08163 | 0.04082 | |||
TRUE | Nebraska | Seward | 31 | 159 | 31159 | 31159 | 28 | Nebraska | 1736 | Seward | County | County | 24 | 19 | 5 | 0 | 0 | 7 | 0.79167 | 0.20833 | 0 | 0 | |||
TRUE | Nebraska | Sheridan | 31 | 161 | 31161 | 31161 | 28 | Nebraska | 1737 | Sheridan | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Sherman | 31 | 163 | 31163 | 31163 | 28 | Nebraska | 1738 | Sherman | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Sioux | 31 | 165 | 31165 | 31165 | 28 | Nebraska | 1739 | Sioux | County | County | 2 | 1 | 1 | 0 | 0 | 1 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Nebraska | Stanton | 31 | 167 | 31167 | 31167 | 28 | Nebraska | 1740 | Stanton | County | County | 3 | 2 | 1 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Nebraska | Thayer | 31 | 169 | 31169 | 31169 | 28 | Nebraska | 1741 | Thayer | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Thomas | 31 | 171 | 31171 | 31171 | 28 | Nebraska | 1742 | Thomas | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Nebraska | Thurston | 31 | 173 | 31173 | 31173 | 28 | Nebraska | 1743 | Thurston | County | County | 9 | 8 | 1 | 0 | 0 | 3 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | Nebraska | Valley | 31 | 175 | 31175 | 31175 | 28 | Nebraska | 1744 | Valley | County | County | 3 | 3 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | Washington | 31 | 177 | 31177 | 31177 | 28 | Nebraska | 1745 | Washington | County | County | 40 | 35 | 4 | 0 | 1 | 5 | 0.875 | 0.1 | 0 | 0.025 | |||
TRUE | Nebraska | Wayne | 31 | 179 | 31179 | 31179 | 28 | Nebraska | 1746 | Wayne | County | County | 27 | 24 | 2 | 1 | 0 | 3 | 0.88889 | 0.07407 | 0.03704 | 0 | |||
TRUE | Nebraska | Webster | 31 | 181 | 31181 | 31181 | 28 | Nebraska | 1747 | Webster | County | County | 2 | 1 | 1 | 0 | 0 | 2 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Nebraska | Wheeler | 31 | 183 | 31183 | 31183 | 28 | Nebraska | 1748 | Wheeler | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Nebraska | York | 31 | 185 | 31185 | 31185 | 28 | Nebraska | 1749 | York | County | County | 31 | 22 | 6 | 2 | 1 | 6 | 0.70968 | 0.19355 | 0.06452 | 0.03226 | |||
TRUE | Nevada | Churchill | 32 | 001 | 32001 | 32001 | 29 | Nevada | 1751 | Churchill | County | County | 7 | 0 | 3 | 2 | 2 | 2 | 0 | 0.42857 | 0.28571 | 0.28571 | |||
TRUE | Nevada | Clark | 32 | 003 | 32003 | 32003 | 29 | Nevada | 1752 | Clark | County | County | 525 | 57 | 393 | 57 | 18 | 54 | 0.10857 | 0.74857 | 0.10857 | 0.03429 | |||
TRUE | Nevada | Douglas | 32 | 005 | 32005 | 32005 | 29 | Nevada | 1753 | Douglas | County | County | 25 | 3 | 18 | 4 | 0 | 6 | 0.12 | 0.72 | 0.16 | 0 | |||
TRUE | Nevada | Elko | 32 | 007 | 32007 | 32007 | 29 | Nevada | 1754 | Elko | County | County | 25 | 13 | 3 | 3 | 6 | 7 | 0.52 | 0.12 | 0.12 | 0.24 | |||
TRUE | Nevada | Esmeralda | 32 | 009 | 32009 | 32009 | 29 | Nevada | 1755 | Esmeralda | County | County | 3 | 1 | 1 | 1 | 0 | 2 | 0.33333 | 0.33333 | 0.33333 | 0 | |||
TRUE | Nevada | Eureka | 32 | 011 | 32011 | 32011 | 29 | Nevada | 1756 | Eureka | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Nevada | Humboldt | 32 | 013 | 32013 | 32013 | 29 | Nevada | 1757 | Humboldt | County | County | 6 | 3 | 2 | 0 | 1 | 2 | 0.5 | 0.33333 | 0 | 0.16667 | |||
TRUE | Nevada | Lander | 32 | 015 | 32015 | 32015 | 29 | Nevada | 1758 | Lander | County | County | 5 | 3 | 2 | 0 | 0 | 2 | 0.6 | 0.4 | 0 | 0 | |||
TRUE | Nevada | Lincoln | 32 | 017 | 32017 | 32017 | 29 | Nevada | 1759 | Lincoln | County | County | 7 | 1 | 5 | 1 | 0 | 5 | 0.14286 | 0.71429 | 0.14286 | 0 | |||
TRUE | Nevada | Lyon | 32 | 019 | 32019 | 32019 | 29 | Nevada | 1760 | Lyon | County | County | 15 | 3 | 10 | 1 | 1 | 4 | 0.2 | 0.66667 | 0.06667 | 0.06667 | |||
TRUE | Nevada | Mineral | 32 | 021 | 32021 | 32021 | 29 | Nevada | 1761 | Mineral | County | County | 4 | 1 | 1 | 1 | 1 | 2 | 0.25 | 0.25 | 0.25 | 0.25 | |||
TRUE | Nevada | Nye | 32 | 023 | 32023 | 32023 | 29 | Nevada | 1762 | Nye | County | County | 17 | 6 | 8 | 1 | 2 | 9 | 0.35294 | 0.47059 | 0.05882 | 0.11765 | |||
TRUE | Nevada | Pershing | 32 | 027 | 32027 | 32027 | 29 | Nevada | 1763 | Pershing | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Nevada | Storey | 32 | 029 | 32029 | 32029 | 29 | Nevada | 1764 | Storey | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Nevada | Washoe | 32 | 031 | 32031 | 32031 | 29 | Nevada | 1765 | Washoe | County | County | 210 | 12 | 159 | 32 | 7 | 20 | 0.05714 | 0.75714 | 0.15238 | 0.03333 | |||
TRUE | Nevada | White Pine | 32 | 033 | 32033 | 32033 | 29 | Nevada | 1766 | White Pine | County | County | 8 | 0 | 3 | 2 | 3 | 4 | 0 | 0.375 | 0.25 | 0.375 | |||
TRUE | Nevada | Carson City | 32 | 510 | 32510 | 32510 | 29 | Nevada | 1750 | Carson City | Independent City | Independent City | 22 | 1 | 14 | 7 | 0 | 4 | 0.04545 | 0.63636 | 0.31818 | 0 | |||
TRUE | New Hampshire | Belknap | 33 | 001 | 33001 | 33001 | 30 | New Hampshire | 1767 | Belknap | County | County | 70 | 1 | 49 | 1 | 19 | 12 | 0.01429 | 0.7 | 0.01429 | 0.27143 | |||
TRUE | New Hampshire | Carroll | 33 | 003 | 33003 | 33003 | 30 | New Hampshire | 1768 | Carroll | County | County | 45 | 0 | 42 | 0 | 3 | 20 | 0 | 0.93333 | 0 | 0.06667 | |||
TRUE | New Hampshire | Cheshire | 33 | 005 | 33005 | 33005 | 30 | New Hampshire | 1769 | Cheshire | County | County | 93 | 0 | 78 | 0 | 15 | 15 | 0 | 0.83871 | 0 | 0.16129 | |||
TRUE | New Hampshire | Coos | 33 | 007 | 33007 | 33007 | 30 | New Hampshire | 1770 | Coos | County | County | 31 | 0 | 30 | 0 | 1 | 10 | 0 | 0.96774 | 0 | 0.03226 | |||
TRUE | New Hampshire | Grafton | 33 | 009 | 33009 | 33009 | 30 | New Hampshire | 1771 | Grafton | County | County | 88 | 2 | 77 | 1 | 8 | 21 | 0.02273 | 0.875 | 0.01136 | 0.09091 | |||
TRUE | New Hampshire | Hillsborough | 33 | 011 | 33011 | 33011 | 30 | New Hampshire | 1772 | Hillsborough | County | County | 468 | 5 | 384 | 14 | 65 | 34 | 0.01068 | 0.82051 | 0.02991 | 0.13889 | |||
TRUE | New Hampshire | Merrimack | 33 | 013 | 33013 | 33013 | 30 | New Hampshire | 1773 | Merrimack | County | County | 188 | 2 | 161 | 3 | 22 | 23 | 0.01064 | 0.85638 | 0.01596 | 0.11702 | |||
TRUE | New Hampshire | Rockingham | 33 | 015 | 33015 | 33015 | 30 | New Hampshire | 1774 | Rockingham | County | County | 326 | 1 | 251 | 10 | 64 | 35 | 0.00307 | 0.76994 | 0.03067 | 0.19632 | |||
TRUE | New Hampshire | Strafford | 33 | 017 | 33017 | 33017 | 30 | New Hampshire | 1775 | Strafford | County | County | 126 | 2 | 102 | 1 | 21 | 11 | 0.01587 | 0.80952 | 0.00794 | 0.16667 | |||
TRUE | New Hampshire | Sullivan | 33 | 019 | 33019 | 33019 | 30 | New Hampshire | 1776 | Sullivan | County | County | 28 | 0 | 26 | 1 | 1 | 8 | 0 | 0.92857 | 0.03571 | 0.03571 | |||
TRUE | New Jersey | Atlantic | 34 | 001 | 34001 | 34001 | 31 | New Jersey | 1777 | Atlantic | County | County | 141 | 2 | 134 | 4 | 1 | 19 | 0.01418 | 0.95035 | 0.02837 | 0.00709 | |||
TRUE | New Jersey | Bergen | 34 | 003 | 34003 | 34003 | 31 | New Jersey | 1778 | Bergen | County | County | 987 | 11 | 928 | 29 | 19 | 65 | 0.01114 | 0.94022 | 0.02938 | 0.01925 | |||
TRUE | New Jersey | Burlington | 34 | 005 | 34005 | 34005 | 31 | New Jersey | 1779 | Burlington | County | County | 398 | 13 | 368 | 15 | 2 | 26 | 0.03266 | 0.92462 | 0.03769 | 0.00503 | |||
TRUE | New Jersey | Camden | 34 | 007 | 34007 | 34007 | 31 | New Jersey | 1780 | Camden | County | County | 465 | 6 | 437 | 14 | 8 | 32 | 0.0129 | 0.93978 | 0.03011 | 0.0172 | |||
TRUE | New Jersey | Cape May | 34 | 009 | 34009 | 34009 | 31 | New Jersey | 1781 | Cape May | County | County | 62 | 1 | 60 | 1 | 0 | 12 | 0.01613 | 0.96774 | 0.01613 | 0 | |||
TRUE | New Jersey | Cumberland | 34 | 011 | 34011 | 34011 | 31 | New Jersey | 1782 | Cumberland | County | County | 85 | 0 | 82 | 1 | 2 | 8 | 0 | 0.96471 | 0.01176 | 0.02353 | |||
TRUE | New Jersey | Essex | 34 | 013 | 34013 | 34013 | 31 | New Jersey | 1783 | Essex | County | County | 611 | 16 | 571 | 18 | 6 | 32 | 0.02619 | 0.93453 | 0.02946 | 0.00982 | |||
TRUE | New Jersey | Gloucester | 34 | 015 | 34015 | 34015 | 31 | New Jersey | 1784 | Gloucester | County | County | 192 | 9 | 179 | 4 | 0 | 22 | 0.04688 | 0.93229 | 0.02083 | 0 | |||
TRUE | New Jersey | Hudson | 34 | 017 | 34017 | 34017 | 31 | New Jersey | 1785 | Hudson | County | County | 281 | 5 | 258 | 15 | 3 | 17 | 0.01779 | 0.91815 | 0.05338 | 0.01068 | |||
TRUE | New Jersey | Hunterdon | 34 | 019 | 34019 | 34019 | 31 | New Jersey | 1786 | Hunterdon | County | County | 164 | 1 | 157 | 5 | 1 | 23 | 0.0061 | 0.95732 | 0.03049 | 0.0061 | |||
TRUE | New Jersey | Mercer | 34 | 021 | 34021 | 34021 | 31 | New Jersey | 1787 | Mercer | County | County | 375 | 4 | 358 | 9 | 4 | 22 | 0.01067 | 0.95467 | 0.024 | 0.01067 | |||
TRUE | New Jersey | Middlesex | 34 | 023 | 34023 | 34023 | 31 | New Jersey | 1788 | Middlesex | County | County | 661 | 8 | 613 | 31 | 9 | 36 | 0.0121 | 0.92738 | 0.0469 | 0.01362 | |||
TRUE | New Jersey | Monmouth | 34 | 025 | 34025 | 34025 | 31 | New Jersey | 1789 | Monmouth | County | County | 716 | 4 | 668 | 30 | 14 | 48 | 0.00559 | 0.93296 | 0.0419 | 0.01955 | |||
TRUE | New Jersey | Morris | 34 | 027 | 34027 | 34027 | 31 | New Jersey | 1790 | Morris | County | County | 650 | 8 | 616 | 20 | 6 | 45 | 0.01231 | 0.94769 | 0.03077 | 0.00923 | |||
TRUE | New Jersey | Ocean | 34 | 029 | 34029 | 34029 | 31 | New Jersey | 1791 | Ocean | County | County | 322 | 1 | 307 | 9 | 5 | 23 | 0.00311 | 0.95342 | 0.02795 | 0.01553 | |||
TRUE | New Jersey | Passaic | 34 | 031 | 34031 | 34031 | 31 | New Jersey | 1792 | Passaic | County | County | 348 | 6 | 327 | 12 | 3 | 29 | 0.01724 | 0.93966 | 0.03448 | 0.00862 | |||
TRUE | New Jersey | Salem | 34 | 033 | 34033 | 34033 | 31 | New Jersey | 1793 | Salem | County | County | 42 | 0 | 41 | 1 | 0 | 8 | 0 | 0.97619 | 0.02381 | 0 | |||
TRUE | New Jersey | Somerset | 34 | 035 | 34035 | 34035 | 31 | New Jersey | 1794 | Somerset | County | County | 300 | 3 | 280 | 12 | 5 | 25 | 0.01 | 0.93333 | 0.04 | 0.01667 | |||
TRUE | New Jersey | Sussex | 34 | 037 | 34037 | 34037 | 31 | New Jersey | 1795 | Sussex | County | County | 142 | 1 | 136 | 4 | 1 | 17 | 0.00704 | 0.95775 | 0.02817 | 0.00704 | |||
TRUE | New Jersey | Union | 34 | 039 | 34039 | 34039 | 31 | New Jersey | 1796 | Union | County | County | 469 | 2 | 450 | 14 | 3 | 26 | 0.00426 | 0.95949 | 0.02985 | 0.0064 | |||
TRUE | New Jersey | Warren | 34 | 041 | 34041 | 34041 | 31 | New Jersey | 1797 | Warren | County | County | 106 | 4 | 100 | 2 | 0 | 12 | 0.03774 | 0.9434 | 0.01887 | 0 | |||
TRUE | New Mexico | Bernalillo | 35 | 001 | 35001 | 35001 | 32 | New Mexico | 1798 | Bernalillo | County | County | 479 | 26 | 183 | 256 | 14 | 23 | 0.05428 | 0.38205 | 0.53445 | 0.02923 | |||
TRUE | New Mexico | Catron | 35 | 003 | 35003 | 35003 | 32 | New Mexico | 1799 | Catron | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | New Mexico | Chaves | 35 | 005 | 35005 | 35005 | 32 | New Mexico | 1800 | Chaves | County | County | 55 | 2 | 12 | 40 | 1 | 5 | 0.03636 | 0.21818 | 0.72727 | 0.01818 | |||
TRUE | New Mexico | Cibola | 35 | 006 | 35006 | 35006 | 32 | New Mexico | 1801 | Cibola | County | County | 8 | 3 | 1 | 4 | 0 | 5 | 0.375 | 0.125 | 0.5 | 0 | |||
TRUE | New Mexico | Colfax | 35 | 007 | 35007 | 35007 | 32 | New Mexico | 1802 | Colfax | County | County | 5 | 1 | 0 | 4 | 0 | 2 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | New Mexico | Curry | 35 | 009 | 35009 | 35009 | 32 | New Mexico | 1803 | Curry | County | County | 43 | 2 | 10 | 28 | 3 | 3 | 0.04651 | 0.23256 | 0.65116 | 0.06977 | |||
FALSE | New Mexico | De Baca | 35 | 011 | 35011 | 35011 | 32 | New Mexico | 1804 | Debaca | De Baca | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | ||
TRUE | New Mexico | Dona Ana | 35 | 013 | 35013 | 35013 | 32 | New Mexico | 1805 | Dona Ana | County | County | 95 | 2 | 38 | 54 | 1 | 18 | 0.02105 | 0.4 | 0.56842 | 0.01053 | |||
TRUE | New Mexico | Eddy | 35 | 015 | 35015 | 35015 | 32 | New Mexico | 1806 | Eddy | County | County | 29 | 0 | 7 | 21 | 1 | 3 | 0 | 0.24138 | 0.72414 | 0.03448 | |||
TRUE | New Mexico | Grant | 35 | 017 | 35017 | 35017 | 32 | New Mexico | 1807 | Grant | County | County | 17 | 1 | 7 | 5 | 4 | 4 | 0.05882 | 0.41176 | 0.29412 | 0.23529 | |||
TRUE | New Mexico | Guadalupe | 35 | 019 | 35019 | 35019 | 32 | New Mexico | 1808 | Guadalupe | Leonard Wood | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | ||
TRUE | New Mexico | Harding | 35 | 021 | 35021 | 35021 | 32 | New Mexico | 1809 | Harding | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | New Mexico | Hidalgo | 35 | 023 | 35023 | 35023 | 32 | New Mexico | 1810 | Hidalgo | County | County | 4 | 2 | 1 | 1 | 0 | 3 | 0.5 | 0.25 | 0.25 | 0 | |||
TRUE | New Mexico | Lea | 35 | 025 | 35025 | 35025 | 32 | New Mexico | 1811 | Lea | County | County | 41 | 1 | 6 | 33 | 1 | 6 | 0.02439 | 0.14634 | 0.80488 | 0.02439 | |||
TRUE | New Mexico | Lincoln | 35 | 027 | 35027 | 35027 | 32 | New Mexico | 1812 | Lincoln | County | County | 8 | 1 | 2 | 5 | 0 | 3 | 0.125 | 0.25 | 0.625 | 0 | |||
TRUE | New Mexico | Los Alamos | 35 | 028 | 35028 | 35028 | 32 | New Mexico | 1813 | Los Alamos | County | County | 57 | 5 | 30 | 18 | 4 | 1 | 0.08772 | 0.52632 | 0.31579 | 0.07018 | |||
TRUE | New Mexico | Luna | 35 | 029 | 35029 | 35029 | 32 | New Mexico | 1814 | Luna | County | County | 4 | 0 | 2 | 2 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
FALSE | New Mexico | Mckinley | 35 | 031 | 35031 | 35031 | 32 | New Mexico | 1815 | McKinley | County | County | 29 | 7 | 8 | 14 | 0 | 10 | 0.24138 | 0.27586 | 0.48276 | 0 | |||
TRUE | New Mexico | Mora | 35 | 033 | 35033 | 35033 | 32 | New Mexico | 1816 | Mora | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | New Mexico | Otero | 35 | 035 | 35035 | 35035 | 32 | New Mexico | 1817 | Otero | County | County | 39 | 4 | 18 | 15 | 2 | 5 | 0.10256 | 0.46154 | 0.38462 | 0.05128 | |||
TRUE | New Mexico | Quay | 35 | 037 | 35037 | 35037 | 32 | New Mexico | 1818 | Quay | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | New Mexico | Rio Arriba | 35 | 039 | 35039 | 35039 | 32 | New Mexico | 1819 | Rio Arriba | County | County | 11 | 2 | 2 | 6 | 1 | 5 | 0.18182 | 0.18182 | 0.54545 | 0.09091 | |||
TRUE | New Mexico | Roosevelt | 35 | 041 | 35041 | 35041 | 32 | New Mexico | 1820 | Roosevelt | County | County | 17 | 0 | 3 | 14 | 0 | 1 | 0 | 0.17647 | 0.82353 | 0 | |||
TRUE | New Mexico | Sandoval | 35 | 043 | 35043 | 35043 | 32 | New Mexico | 1823 | Sandoval | County | County | 42 | 5 | 18 | 17 | 2 | 6 | 0.11905 | 0.42857 | 0.40476 | 0.04762 | |||
TRUE | New Mexico | San Juan | 35 | 045 | 35045 | 35045 | 32 | New Mexico | 1821 | San Juan | County | County | 33 | 6 | 5 | 21 | 1 | 6 | 0.18182 | 0.15152 | 0.63636 | 0.0303 | |||
TRUE | New Mexico | San Miguel | 35 | 047 | 35047 | 35047 | 32 | New Mexico | 1822 | San Miguel | County | County | 8 | 2 | 1 | 5 | 0 | 4 | 0.25 | 0.125 | 0.625 | 0 | |||
TRUE | New Mexico | Santa Fe | 35 | 049 | 35049 | 35049 | 32 | New Mexico | 1824 | Santa Fe | County | County | 73 | 3 | 25 | 43 | 2 | 10 | 0.0411 | 0.34247 | 0.58904 | 0.0274 | |||
TRUE | New Mexico | Sierra | 35 | 051 | 35051 | 35051 | 32 | New Mexico | 1825 | Sierra | County | County | 5 | 0 | 2 | 3 | 0 | 1 | 0 | 0.4 | 0.6 | 0 | |||
TRUE | New Mexico | Socorro | 35 | 053 | 35053 | 35053 | 32 | New Mexico | 1826 | Socorro | County | County | 13 | 0 | 5 | 4 | 4 | 2 | 0 | 0.38462 | 0.30769 | 0.30769 | |||
TRUE | New Mexico | Taos | 35 | 055 | 35055 | 35055 | 32 | New Mexico | 1827 | Taos | County | County | 10 | 0 | 4 | 5 | 1 | 4 | 0 | 0.4 | 0.5 | 0.1 | |||
TRUE | New Mexico | Torrance | 35 | 057 | 35057 | 35057 | 32 | New Mexico | 1828 | Torrance | County | County | 7 | 0 | 0 | 6 | 1 | 2 | 0 | 0 | 0.85714 | 0.14286 | |||
TRUE | New Mexico | Union | 35 | 059 | 35059 | 35059 | 32 | New Mexico | 1829 | Union | County | County | 3 | 1 | 1 | 1 | 0 | 2 | 0.33333 | 0.33333 | 0.33333 | 0 | |||
TRUE | New Mexico | Valencia | 35 | 061 | 35061 | 35061 | 32 | New Mexico | 1830 | Valencia | County | County | 27 | 4 | 8 | 15 | 0 | 5 | 0.14815 | 0.2963 | 0.55556 | 0 | |||
TRUE | New York | Albany | 36 | 001 | 36001 | 36001 | 33 | New York | 1831 | Albany | County | County | 378 | 6 | 356 | 11 | 5 | 33 | 0.01587 | 0.9418 | 0.0291 | 0.01323 | |||
TRUE | New York | Allegany | 36 | 003 | 36003 | 36003 | 33 | New York | 1832 | Allegany | County | County | 101 | 76 | 22 | 1 | 2 | 21 | 0.75248 | 0.21782 | 0.0099 | 0.0198 | |||
TRUE | New York | Bronx | 36 | 005 | 36005 | 36005 | 33 | New York | 1833 | Bronx | County | County | 453 | 6 | 431 | 11 | 5 | 24 | 0.01325 | 0.95143 | 0.02428 | 0.01104 | |||
TRUE | New York | Broome | 36 | 007 | 36007 | 36007 | 33 | New York | 1834 | Broome | County | County | 351 | 9 | 318 | 5 | 19 | 21 | 0.02564 | 0.90598 | 0.01425 | 0.05413 | |||
TRUE | New York | Cattaraugus | 36 | 009 | 36009 | 36009 | 33 | New York | 1835 | Cattaraugus | County | County | 192 | 162 | 29 | 0 | 1 | 22 | 0.84375 | 0.15104 | 0 | 0.00521 | |||
TRUE | New York | Cayuga | 36 | 011 | 36011 | 36011 | 33 | New York | 1836 | Cayuga | County | County | 114 | 17 | 93 | 3 | 1 | 15 | 0.14912 | 0.81579 | 0.02632 | 0.00877 | |||
TRUE | New York | Chautauqua | 36 | 013 | 36013 | 36013 | 33 | New York | 1837 | Chautauqua | County | County | 322 | 282 | 35 | 0 | 5 | 27 | 0.87578 | 0.1087 | 0 | 0.01553 | |||
TRUE | New York | Chemung | 36 | 015 | 36015 | 36015 | 33 | New York | 1838 | Chemung | County | County | 164 | 58 | 103 | 3 | 0 | 14 | 0.35366 | 0.62805 | 0.01829 | 0 | |||
TRUE | New York | Chenango | 36 | 017 | 36017 | 36017 | 33 | New York | 1839 | Chenango | County | County | 54 | 3 | 49 | 1 | 1 | 10 | 0.05556 | 0.90741 | 0.01852 | 0.01852 | |||
TRUE | New York | Clinton | 36 | 019 | 36019 | 36019 | 33 | New York | 1840 | Clinton | County | County | 87 | 1 | 84 | 1 | 1 | 16 | 0.01149 | 0.96552 | 0.01149 | 0.01149 | |||
TRUE | New York | Columbia | 36 | 021 | 36021 | 36021 | 33 | New York | 1841 | Columbia | County | County | 64 | 0 | 61 | 3 | 0 | 17 | 0 | 0.95312 | 0.04688 | 0 | |||
TRUE | New York | Cortland | 36 | 023 | 36023 | 36023 | 33 | New York | 1842 | Cortland | County | County | 66 | 3 | 56 | 5 | 2 | 9 | 0.04545 | 0.84848 | 0.07576 | 0.0303 | |||
TRUE | New York | Delaware | 36 | 025 | 36025 | 36025 | 33 | New York | 1843 | Delaware | County | County | 31 | 0 | 30 | 0 | 1 | 13 | 0 | 0.96774 | 0 | 0.03226 | |||
TRUE | New York | Dutchess | 36 | 027 | 36027 | 36027 | 33 | New York | 1844 | Dutchess | County | County | 371 | 7 | 347 | 10 | 7 | 30 | 0.01887 | 0.93531 | 0.02695 | 0.01887 | |||
TRUE | New York | Erie | 36 | 029 | 36029 | 36029 | 33 | New York | 1845 | Erie | County | County | 3137 | 2842 | 254 | 12 | 29 | 60 | 0.90596 | 0.08097 | 0.00383 | 0.00924 | |||
TRUE | New York | Essex | 36 | 031 | 36031 | 36031 | 33 | New York | 1846 | Essex | County | County | 26 | 0 | 26 | 0 | 0 | 13 | 0 | 1 | 0 | 0 | |||
TRUE | New York | Franklin | 36 | 033 | 36033 | 36033 | 33 | New York | 1847 | Franklin | County | County | 49 | 1 | 43 | 0 | 5 | 10 | 0.02041 | 0.87755 | 0 | 0.10204 | |||
TRUE | New York | Fulton | 36 | 035 | 36035 | 36035 | 33 | New York | 1848 | Fulton | County | County | 39 | 0 | 35 | 4 | 0 | 6 | 0 | 0.89744 | 0.10256 | 0 | |||
TRUE | New York | Genesee | 36 | 037 | 36037 | 36037 | 33 | New York | 1849 | Genesee | County | County | 185 | 157 | 20 | 0 | 8 | 15 | 0.84865 | 0.10811 | 0 | 0.04324 | |||
TRUE | New York | Greene | 36 | 039 | 36039 | 36039 | 33 | New York | 1850 | Greene | County | County | 42 | 0 | 39 | 2 | 1 | 14 | 0 | 0.92857 | 0.04762 | 0.02381 | |||
TRUE | New York | Hamilton | 36 | 041 | 36041 | 36041 | 33 | New York | 1851 | Hamilton | County | County | 4 | 0 | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | |||
TRUE | New York | Herkimer | 36 | 043 | 36043 | 36043 | 33 | New York | 1852 | Herkimer | County | County | 83 | 3 | 79 | 0 | 1 | 13 | 0.03614 | 0.95181 | 0 | 0.01205 | |||
TRUE | New York | Jefferson | 36 | 045 | 36045 | 36045 | 33 | New York | 1853 | Jefferson | County | County | 118 | 5 | 94 | 7 | 12 | 26 | 0.04237 | 0.79661 | 0.05932 | 0.10169 | |||
TRUE | New York | Kings | 36 | 047 | 36047 | 36047 | 33 | New York | 1854 | Kings | County | County | 1087 | 18 | 1025 | 28 | 16 | 44 | 0.01656 | 0.94296 | 0.02576 | 0.01472 | |||
TRUE | New York | Lewis | 36 | 049 | 36049 | 36049 | 33 | New York | 1856 | Lewis | County | County | 37 | 1 | 34 | 1 | 1 | 8 | 0.02703 | 0.91892 | 0.02703 | 0.02703 | |||
TRUE | New York | Livingston | 36 | 051 | 36051 | 36051 | 33 | New York | 1857 | Livingston | County | County | 124 | 96 | 24 | 1 | 3 | 18 | 0.77419 | 0.19355 | 0.00806 | 0.02419 | |||
TRUE | New York | Madison | 36 | 053 | 36053 | 36053 | 33 | New York | 1858 | Madison | County | County | 114 | 2 | 109 | 2 | 1 | 14 | 0.01754 | 0.95614 | 0.01754 | 0.00877 | |||
TRUE | New York | Monroe | 36 | 055 | 36055 | 36055 | 33 | New York | 1859 | Monroe | County | County | 2124 | 1397 | 651 | 30 | 46 | 47 | 0.65772 | 0.3065 | 0.01412 | 0.02166 | |||
TRUE | New York | Montgomery | 36 | 057 | 36057 | 36057 | 33 | New York | 1860 | Montgomery | County | County | 50 | 0 | 47 | 2 | 1 | 11 | 0 | 0.94 | 0.04 | 0.02 | |||
TRUE | New York | Nassau | 36 | 059 | 36059 | 36059 | 33 | New York | 1861 | Nassau | County | County | 1509 | 30 | 1405 | 51 | 23 | 68 | 0.01988 | 0.93108 | 0.0338 | 0.01524 | |||
TRUE | New York | New York | 36 | 061 | 36061 | 36061 | 33 | New York | 1862 | New York | County | County | 1106 | 32 | 988 | 56 | 30 | 61 | 0.02893 | 0.89331 | 0.05063 | 0.02712 | |||
TRUE | New York | Niagara | 36 | 063 | 36063 | 36063 | 33 | New York | 1863 | Niagara | County | County | 614 | 564 | 42 | 2 | 6 | 18 | 0.91857 | 0.0684 | 0.00326 | 0.00977 | |||
TRUE | New York | Oneida | 36 | 065 | 36065 | 36065 | 33 | New York | 1864 | Oneida | County | County | 334 | 11 | 308 | 10 | 5 | 36 | 0.03293 | 0.92216 | 0.02994 | 0.01497 | |||
TRUE | New York | Onondaga | 36 | 067 | 36067 | 36067 | 33 | New York | 1865 | Onondaga | County | County | 860 | 16 | 821 | 13 | 10 | 43 | 0.0186 | 0.95465 | 0.01512 | 0.01163 | |||
TRUE | New York | Ontario | 36 | 069 | 36069 | 36069 | 33 | New York | 1866 | Ontario | County | County | 178 | 106 | 62 | 2 | 8 | 16 | 0.59551 | 0.34831 | 0.01124 | 0.04494 | |||
TRUE | New York | Orange | 36 | 071 | 36071 | 36071 | 33 | New York | 1867 | Orange | County | County | 351 | 9 | 330 | 7 | 5 | 38 | 0.02564 | 0.94017 | 0.01994 | 0.01425 | |||
TRUE | New York | Orleans | 36 | 073 | 36073 | 36073 | 33 | New York | 1868 | Orleans | County | County | 111 | 99 | 11 | 0 | 1 | 7 | 0.89189 | 0.0991 | 0 | 0.00901 | |||
TRUE | New York | Oswego | 36 | 075 | 36075 | 36075 | 33 | New York | 1869 | Oswego | County | County | 269 | 54 | 209 | 1 | 5 | 18 | 0.20074 | 0.77695 | 0.00372 | 0.01859 | |||
TRUE | New York | Otsego | 36 | 077 | 36077 | 36077 | 33 | New York | 1870 | Otsego | County | County | 88 | 1 | 83 | 2 | 2 | 19 | 0.01136 | 0.94318 | 0.02273 | 0.02273 | |||
TRUE | New York | Putnam | 36 | 079 | 36079 | 36079 | 33 | New York | 1871 | Putnam | County | County | 92 | 0 | 84 | 7 | 1 | 7 | 0 | 0.91304 | 0.07609 | 0.01087 | |||
TRUE | New York | Queens | 36 | 081 | 36081 | 36081 | 33 | New York | 1872 | Queens | County | County | 1060 | 15 | 1002 | 35 | 8 | 62 | 0.01415 | 0.94528 | 0.03302 | 0.00755 | |||
TRUE | New York | Rensselaer | 36 | 083 | 36083 | 36083 | 33 | New York | 1873 | Rensselaer | County | County | 183 | 7 | 169 | 5 | 2 | 24 | 0.03825 | 0.9235 | 0.02732 | 0.01093 | |||
TRUE | New York | Richmond | 36 | 085 | 36085 | 36085 | 33 | New York | 1874 | Richmond | County | County | 265 | 2 | 252 | 10 | 1 | 12 | 0.00755 | 0.95094 | 0.03774 | 0.00377 | |||
TRUE | New York | Rockland | 36 | 087 | 36087 | 36087 | 33 | New York | 1875 | Rockland | County | County | 308 | 2 | 296 | 6 | 4 | 22 | 0.00649 | 0.96104 | 0.01948 | 0.01299 | |||
FALSE | New York | St Lawrence | 36 | 089 | 36089 | 36089 | 33 | New York | 1876 | Saint Lawrence | County | County | 164 | 12 | 140 | 2 | 10 | 23 | 0.07317 | 0.85366 | 0.0122 | 0.06098 | |||
TRUE | New York | Saratoga | 36 | 091 | 36091 | 36091 | 33 | New York | 1877 | Saratoga | County | County | 289 | 7 | 276 | 1 | 5 | 19 | 0.02422 | 0.95502 | 0.00346 | 0.0173 | |||
TRUE | New York | Schenectady | 36 | 093 | 36093 | 36093 | 33 | New York | 1878 | Schenectady | County | County | 283 | 12 | 254 | 4 | 13 | 14 | 0.0424 | 0.89753 | 0.01413 | 0.04594 | |||
TRUE | New York | Schoharie | 36 | 095 | 36095 | 36095 | 33 | New York | 1879 | Schoharie | County | County | 32 | 1 | 27 | 0 | 4 | 11 | 0.03125 | 0.84375 | 0 | 0.125 | |||
TRUE | New York | Schuyler | 36 | 097 | 36097 | 36097 | 33 | New York | 1880 | Schuyler | County | County | 21 | 10 | 9 | 0 | 2 | 6 | 0.47619 | 0.42857 | 0 | 0.09524 | |||
TRUE | New York | Seneca | 36 | 099 | 36099 | 36099 | 33 | New York | 1881 | Seneca | County | County | 35 | 13 | 21 | 1 | 0 | 7 | 0.37143 | 0.6 | 0.02857 | 0 | |||
TRUE | New York | Steuben | 36 | 101 | 36101 | 36101 | 33 | New York | 1882 | Steuben | County | County | 131 | 58 | 66 | 3 | 4 | 18 | 0.44275 | 0.50382 | 0.0229 | 0.03053 | |||
TRUE | New York | Suffolk | 36 | 103 | 36103 | 36103 | 33 | New York | 1883 | Suffolk | County | County | 1338 | 16 | 1264 | 41 | 17 | 98 | 0.01196 | 0.94469 | 0.03064 | 0.01271 | |||
TRUE | New York | Sullivan | 36 | 105 | 36105 | 36105 | 33 | New York | 1884 | Sullivan | County | County | 53 | 1 | 51 | 1 | 0 | 22 | 0.01887 | 0.96226 | 0.01887 | 0 | |||
TRUE | New York | Tioga | 36 | 107 | 36107 | 36107 | 33 | New York | 1885 | Tioga | County | County | 82 | 11 | 69 | 2 | 0 | 10 | 0.13415 | 0.84146 | 0.02439 | 0 | |||
TRUE | New York | Tompkins | 36 | 109 | 36109 | 36109 | 33 | New York | 1886 | Tompkins | County | County | 214 | 22 | 186 | 3 | 3 | 10 | 0.1028 | 0.86916 | 0.01402 | 0.01402 | |||
TRUE | New York | Ulster | 36 | 111 | 36111 | 36111 | 33 | New York | 1887 | Ulster | County | County | 176 | 3 | 167 | 3 | 3 | 31 | 0.01705 | 0.94886 | 0.01705 | 0.01705 | |||
TRUE | New York | Warren | 36 | 113 | 36113 | 36113 | 33 | New York | 1888 | Warren | County | County | 83 | 3 | 79 | 1 | 0 | 10 | 0.03614 | 0.95181 | 0.01205 | 0 | |||
TRUE | New York | Washington | 36 | 115 | 36115 | 36115 | 33 | New York | 1889 | Washington | County | County | 50 | 2 | 44 | 3 | 1 | 11 | 0.04 | 0.88 | 0.06 | 0.02 | |||
TRUE | New York | Wayne | 36 | 117 | 36117 | 36117 | 33 | New York | 1890 | Wayne | County | County | 184 | 126 | 54 | 1 | 3 | 16 | 0.68478 | 0.29348 | 0.00543 | 0.0163 | |||
TRUE | New York | Westchester | 36 | 119 | 36119 | 36119 | 33 | New York | 1891 | Westchester | County | County | 1050 | 10 | 993 | 24 | 23 | 75 | 0.00952 | 0.94571 | 0.02286 | 0.0219 | |||
TRUE | New York | Wyoming | 36 | 121 | 36121 | 36121 | 33 | New York | 1892 | Wyoming | County | County | 86 | 74 | 9 | 0 | 3 | 16 | 0.86047 | 0.10465 | 0 | 0.03488 | |||
TRUE | New York | Yates | 36 | 123 | 36123 | 36123 | 33 | New York | 1893 | Yates | County | County | 42 | 24 | 17 | 1 | 0 | 8 | 0.57143 | 0.40476 | 0.02381 | 0 | |||
TRUE | North Carolina | Alamance | 37 | 001 | 37001 | 37001 | 34 | North Carolina | 1894 | Alamance | County | County | 70 | 3 | 28 | 27 | 12 | 6 | 0.04286 | 0.4 | 0.38571 | 0.17143 | |||
TRUE | North Carolina | Alexander | 37 | 003 | 37003 | 37003 | 34 | North Carolina | 1895 | Alexander | County | County | 7 | 0 | 2 | 4 | 1 | 3 | 0 | 0.28571 | 0.57143 | 0.14286 | |||
TRUE | North Carolina | Alleghany | 37 | 005 | 37005 | 37005 | 34 | North Carolina | 1896 | Alleghany | County | County | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | North Carolina | Anson | 37 | 007 | 37007 | 37007 | 34 | North Carolina | 1897 | Anson | County | County | 10 | 1 | 3 | 4 | 2 | 3 | 0.1 | 0.3 | 0.4 | 0.2 | |||
TRUE | North Carolina | Ashe | 37 | 009 | 37009 | 37009 | 34 | North Carolina | 1898 | Ashe | County | County | 8 | 2 | 3 | 2 | 1 | 5 | 0.25 | 0.375 | 0.25 | 0.125 | |||
TRUE | North Carolina | Avery | 37 | 011 | 37011 | 37011 | 34 | North Carolina | 1899 | Avery | County | County | 6 | 0 | 3 | 2 | 1 | 3 | 0 | 0.5 | 0.33333 | 0.16667 | |||
TRUE | North Carolina | Beaufort | 37 | 013 | 37013 | 37013 | 34 | North Carolina | 1900 | Beaufort | County | County | 19 | 0 | 6 | 7 | 6 | 5 | 0 | 0.31579 | 0.36842 | 0.31579 | |||
TRUE | North Carolina | Bertie | 37 | 015 | 37015 | 37015 | 34 | North Carolina | 1901 | Bertie | County | County | 2 | 0 | 1 | 1 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | North Carolina | Bladen | 37 | 017 | 37017 | 37017 | 34 | North Carolina | 1902 | Bladen | County | County | 15 | 0 | 3 | 2 | 10 | 5 | 0 | 0.2 | 0.13333 | 0.66667 | |||
TRUE | North Carolina | Brunswick | 37 | 019 | 37019 | 37019 | 34 | North Carolina | 1903 | Brunswick | County | County | 23 | 0 | 9 | 7 | 7 | 8 | 0 | 0.3913 | 0.30435 | 0.30435 | |||
TRUE | North Carolina | Buncombe | 37 | 021 | 37021 | 37021 | 34 | North Carolina | 1904 | Buncombe | County | County | 100 | 1 | 37 | 48 | 14 | 17 | 0.01 | 0.37 | 0.48 | 0.14 | |||
TRUE | North Carolina | Burke | 37 | 023 | 37023 | 37023 | 34 | North Carolina | 1905 | Burke | County | County | 28 | 0 | 12 | 7 | 9 | 6 | 0 | 0.42857 | 0.25 | 0.32143 | |||
TRUE | North Carolina | Cabarrus | 37 | 025 | 37025 | 37025 | 34 | North Carolina | 1906 | Cabarrus | County | County | 91 | 4 | 40 | 28 | 19 | 7 | 0.04396 | 0.43956 | 0.30769 | 0.20879 | |||
TRUE | North Carolina | Caldwell | 37 | 027 | 37027 | 37027 | 34 | North Carolina | 1907 | Caldwell | County | County | 32 | 0 | 13 | 12 | 7 | 4 | 0 | 0.40625 | 0.375 | 0.21875 | |||
TRUE | North Carolina | Camden | 37 | 029 | 37029 | 37029 | 34 | North Carolina | 1908 | Camden | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | North Carolina | Carteret | 37 | 031 | 37031 | 37031 | 34 | North Carolina | 1909 | Carteret | County | County | 22 | 1 | 9 | 7 | 5 | 6 | 0.04545 | 0.40909 | 0.31818 | 0.22727 | |||
TRUE | North Carolina | Caswell | 37 | 033 | 37033 | 37033 | 34 | North Carolina | 1910 | Caswell | County | County | 4 | 1 | 3 | 0 | 0 | 2 | 0.25 | 0.75 | 0 | 0 | |||
TRUE | North Carolina | Catawba | 37 | 035 | 37035 | 37035 | 34 | North Carolina | 1911 | Catawba | County | County | 85 | 3 | 35 | 28 | 19 | 8 | 0.03529 | 0.41176 | 0.32941 | 0.22353 | |||
TRUE | North Carolina | Chatham | 37 | 037 | 37037 | 37037 | 34 | North Carolina | 1912 | Chatham | County | County | 21 | 1 | 8 | 4 | 8 | 7 | 0.04762 | 0.38095 | 0.19048 | 0.38095 | |||
TRUE | North Carolina | Cherokee | 37 | 039 | 37039 | 37039 | 34 | North Carolina | 1913 | Cherokee | County | County | 13 | 0 | 5 | 7 | 1 | 2 | 0 | 0.38462 | 0.53846 | 0.07692 | |||
TRUE | North Carolina | Chowan | 37 | 041 | 37041 | 37041 | 34 | North Carolina | 1914 | Chowan | County | County | 6 | 0 | 2 | 2 | 2 | 2 | 0 | 0.33333 | 0.33333 | 0.33333 | |||
TRUE | North Carolina | Clay | 37 | 043 | 37043 | 37043 | 34 | North Carolina | 1915 | Clay | County | County | 3 | 0 | 1 | 2 | 0 | 1 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | North Carolina | Cleveland | 37 | 045 | 37045 | 37045 | 34 | North Carolina | 1916 | Cleveland | County | County | 48 | 0 | 9 | 29 | 10 | 9 | 0 | 0.1875 | 0.60417 | 0.20833 | |||
TRUE | North Carolina | Columbus | 37 | 047 | 37047 | 37047 | 34 | North Carolina | 1917 | Columbus | County | County | 27 | 0 | 5 | 4 | 18 | 5 | 0 | 0.18519 | 0.14815 | 0.66667 | |||
TRUE | North Carolina | Craven | 37 | 049 | 37049 | 37049 | 34 | North Carolina | 1918 | Craven | County | County | 56 | 4 | 25 | 15 | 12 | 6 | 0.07143 | 0.44643 | 0.26786 | 0.21429 | |||
TRUE | North Carolina | Cumberland | 37 | 051 | 37051 | 37051 | 34 | North Carolina | 1919 | Cumberland | County | County | 168 | 3 | 88 | 65 | 12 | 13 | 0.01786 | 0.52381 | 0.3869 | 0.07143 | |||
TRUE | North Carolina | Currituck | 37 | 053 | 37053 | 37053 | 34 | North Carolina | 1920 | Currituck | County | County | 3 | 0 | 2 | 1 | 0 | 3 | 0 | 0.66667 | 0.33333 | 0 | |||
TRUE | North Carolina | Dare | 37 | 055 | 37055 | 37055 | 34 | North Carolina | 1921 | Dare | County | County | 17 | 0 | 10 | 7 | 0 | 7 | 0 | 0.58824 | 0.41176 | 0 | |||
TRUE | North Carolina | Davidson | 37 | 057 | 37057 | 37057 | 34 | North Carolina | 1922 | Davidson | County | County | 49 | 1 | 10 | 19 | 19 | 5 | 0.02041 | 0.20408 | 0.38776 | 0.38776 | |||
TRUE | North Carolina | Davie | 37 | 059 | 37059 | 37059 | 34 | North Carolina | 1923 | Davie | County | County | 17 | 2 | 5 | 6 | 4 | 2 | 0.11765 | 0.29412 | 0.35294 | 0.23529 | |||
TRUE | North Carolina | Duplin | 37 | 061 | 37061 | 37061 | 34 | North Carolina | 1924 | Duplin | County | County | 12 | 1 | 2 | 2 | 7 | 8 | 0.08333 | 0.16667 | 0.16667 | 0.58333 | |||
TRUE | North Carolina | Durham | 37 | 063 | 37063 | 37063 | 34 | North Carolina | 1925 | Durham | County | County | 199 | 19 | 88 | 71 | 21 | 10 | 0.09548 | 0.44221 | 0.35678 | 0.10553 | |||
TRUE | North Carolina | Edgecombe | 37 | 065 | 37065 | 37065 | 34 | North Carolina | 1926 | Edgecombe | County | County | 18 | 0 | 4 | 3 | 11 | 5 | 0 | 0.22222 | 0.16667 | 0.61111 | |||
TRUE | North Carolina | Forsyth | 37 | 067 | 37067 | 37067 | 34 | North Carolina | 1927 | Forsyth | County | County | 230 | 8 | 90 | 90 | 42 | 19 | 0.03478 | 0.3913 | 0.3913 | 0.18261 | |||
TRUE | North Carolina | Franklin | 37 | 069 | 37069 | 37069 | 34 | North Carolina | 1928 | Franklin | County | County | 20 | 0 | 9 | 5 | 6 | 4 | 0 | 0.45 | 0.25 | 0.3 | |||
TRUE | North Carolina | Gaston | 37 | 071 | 37071 | 37071 | 34 | North Carolina | 1929 | Gaston | County | County | 102 | 2 | 22 | 50 | 28 | 12 | 0.01961 | 0.21569 | 0.4902 | 0.27451 | |||
TRUE | North Carolina | Gates | 37 | 073 | 37073 | 37073 | 34 | North Carolina | 1930 | Gates | County | County | 4 | 0 | 2 | 1 | 1 | 3 | 0 | 0.5 | 0.25 | 0.25 | |||
TRUE | North Carolina | Graham | 37 | 075 | 37075 | 37075 | 34 | North Carolina | 1931 | Graham | County | County | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | North Carolina | Granville | 37 | 077 | 37077 | 37077 | 34 | North Carolina | 1932 | Granville | County | County | 13 | 0 | 5 | 4 | 4 | 4 | 0 | 0.38462 | 0.30769 | 0.30769 | |||
TRUE | North Carolina | Greene | 37 | 079 | 37079 | 37079 | 34 | North Carolina | 1933 | Greene | County | County | 3 | 0 | 1 | 0 | 2 | 2 | 0 | 0.33333 | 0 | 0.66667 | |||
TRUE | North Carolina | Guilford | 37 | 081 | 37081 | 37081 | 34 | North Carolina | 1934 | Guilford | County | County | 290 | 8 | 127 | 121 | 34 | 24 | 0.02759 | 0.43793 | 0.41724 | 0.11724 | |||
TRUE | North Carolina | Halifax | 37 | 083 | 37083 | 37083 | 34 | North Carolina | 1935 | Halifax | County | County | 24 | 0 | 12 | 4 | 8 | 5 | 0 | 0.5 | 0.16667 | 0.33333 | |||
TRUE | North Carolina | Harnett | 37 | 085 | 37085 | 37085 | 34 | North Carolina | 1936 | Harnett | County | County | 47 | 1 | 16 | 19 | 11 | 9 | 0.02128 | 0.34043 | 0.40426 | 0.23404 | |||
TRUE | North Carolina | Haywood | 37 | 087 | 37087 | 37087 | 34 | North Carolina | 1937 | Haywood | County | County | 19 | 0 | 5 | 9 | 5 | 5 | 0 | 0.26316 | 0.47368 | 0.26316 | |||
TRUE | North Carolina | Henderson | 37 | 089 | 37089 | 37089 | 34 | North Carolina | 1938 | Henderson | County | County | 43 | 2 | 7 | 31 | 3 | 11 | 0.04651 | 0.16279 | 0.72093 | 0.06977 | |||
TRUE | North Carolina | Hertford | 37 | 091 | 37091 | 37091 | 34 | North Carolina | 1939 | Hertford | County | County | 7 | 0 | 2 | 3 | 2 | 3 | 0 | 0.28571 | 0.42857 | 0.28571 | |||
TRUE | North Carolina | Hoke | 37 | 093 | 37093 | 37093 | 34 | North Carolina | 1940 | Hoke | County | County | 6 | 0 | 2 | 1 | 3 | 1 | 0 | 0.33333 | 0.16667 | 0.5 | |||
TRUE | North Carolina | Hyde | 37 | 095 | 37095 | 37095 | 34 | North Carolina | 1941 | Hyde | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | North Carolina | Iredell | 37 | 097 | 37097 | 37097 | 34 | North Carolina | 1942 | Iredell | County | County | 60 | 5 | 20 | 25 | 10 | 8 | 0.08333 | 0.33333 | 0.41667 | 0.16667 | |||
TRUE | North Carolina | Jackson | 37 | 099 | 37099 | 37099 | 34 | North Carolina | 1943 | Jackson | County | County | 19 | 0 | 4 | 14 | 1 | 5 | 0 | 0.21053 | 0.73684 | 0.05263 | |||
TRUE | North Carolina | Johnston | 37 | 101 | 37101 | 37101 | 34 | North Carolina | 1944 | Johnston | County | County | 40 | 0 | 12 | 15 | 13 | 6 | 0 | 0.3 | 0.375 | 0.325 | |||
TRUE | North Carolina | Jones | 37 | 103 | 37103 | 37103 | 34 | North Carolina | 1945 | Jones | County | County | 2 | 0 | 1 | 0 | 1 | 2 | 0 | 0.5 | 0 | 0.5 | |||
TRUE | North Carolina | Lee | 37 | 105 | 37105 | 37105 | 34 | North Carolina | 1946 | Lee | County | County | 18 | 0 | 4 | 10 | 4 | 2 | 0 | 0.22222 | 0.55556 | 0.22222 | |||
TRUE | North Carolina | Lenoir | 37 | 107 | 37107 | 37107 | 34 | North Carolina | 1947 | Lenoir | County | County | 15 | 1 | 7 | 3 | 4 | 3 | 0.06667 | 0.46667 | 0.2 | 0.26667 | |||
TRUE | North Carolina | Lincoln | 37 | 109 | 37109 | 37109 | 34 | North Carolina | 1948 | Lincoln | County | County | 32 | 3 | 5 | 13 | 11 | 3 | 0.09375 | 0.15625 | 0.40625 | 0.34375 | |||
TRUE | North Carolina | McDowell | 37 | 111 | 37111 | 37111 | 34 | North Carolina | 1952 | McDowell | County | County | 14 | 0 | 2 | 6 | 6 | 3 | 0 | 0.14286 | 0.42857 | 0.42857 | |||
TRUE | North Carolina | Macon | 37 | 113 | 37113 | 37113 | 34 | North Carolina | 1949 | Macon | County | County | 8 | 0 | 2 | 6 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | North Carolina | Madison | 37 | 115 | 37115 | 37115 | 34 | North Carolina | 1950 | Madison | County | County | 5 | 0 | 0 | 4 | 1 | 2 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | North Carolina | Martin | 37 | 117 | 37117 | 37117 | 34 | North Carolina | 1951 | Martin | County | County | 10 | 0 | 3 | 2 | 5 | 4 | 0 | 0.3 | 0.2 | 0.5 | |||
TRUE | North Carolina | Mecklenburg | 37 | 119 | 37119 | 37119 | 34 | North Carolina | 1953 | Mecklenburg | County | County | 545 | 18 | 203 | 290 | 34 | 36 | 0.03303 | 0.37248 | 0.53211 | 0.06239 | |||
TRUE | North Carolina | Mitchell | 37 | 121 | 37121 | 37121 | 34 | North Carolina | 1954 | Mitchell | County | County | 15 | 0 | 5 | 2 | 8 | 3 | 0 | 0.33333 | 0.13333 | 0.53333 | |||
TRUE | North Carolina | Montgomery | 37 | 123 | 37123 | 37123 | 34 | North Carolina | 1955 | Montgomery | County | County | 3 | 0 | 1 | 1 | 1 | 2 | 0 | 0.33333 | 0.33333 | 0.33333 | |||
TRUE | North Carolina | Moore | 37 | 125 | 37125 | 37125 | 34 | North Carolina | 1956 | Moore | County | County | 24 | 1 | 13 | 10 | 0 | 6 | 0.04167 | 0.54167 | 0.41667 | 0 | |||
TRUE | North Carolina | Nash | 37 | 127 | 37127 | 37127 | 34 | North Carolina | 1957 | Nash | County | County | 39 | 0 | 20 | 11 | 8 | 8 | 0 | 0.51282 | 0.28205 | 0.20513 | |||
TRUE | North Carolina | New Hanover | 37 | 129 | 37129 | 37129 | 34 | North Carolina | 1958 | New Hanover | County | County | 103 | 3 | 51 | 29 | 20 | 8 | 0.02913 | 0.49515 | 0.28155 | 0.19417 | |||
TRUE | North Carolina | Northampton | 37 | 131 | 37131 | 37131 | 34 | North Carolina | 1959 | Northampton | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | North Carolina | Onslow | 37 | 133 | 37133 | 37133 | 34 | North Carolina | 1960 | Onslow | County | County | 47 | 2 | 27 | 10 | 8 | 7 | 0.04255 | 0.57447 | 0.21277 | 0.17021 | |||
TRUE | North Carolina | Orange | 37 | 135 | 37135 | 37135 | 34 | North Carolina | 1961 | Orange | County | County | 157 | 2 | 95 | 46 | 14 | 6 | 0.01274 | 0.6051 | 0.29299 | 0.08917 | |||
TRUE | North Carolina | Pamlico | 37 | 137 | 37137 | 37137 | 34 | North Carolina | 1962 | Pamlico | County | County | 2 | 0 | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | North Carolina | Pasquotank | 37 | 139 | 37139 | 37139 | 34 | North Carolina | 1963 | Pasquotank | County | County | 9 | 0 | 6 | 3 | 0 | 1 | 0 | 0.66667 | 0.33333 | 0 | |||
TRUE | North Carolina | Pender | 37 | 141 | 37141 | 37141 | 34 | North Carolina | 1964 | Pender | County | County | 12 | 0 | 7 | 1 | 4 | 3 | 0 | 0.58333 | 0.08333 | 0.33333 | |||
TRUE | North Carolina | Perquimans | 37 | 143 | 37143 | 37143 | 34 | North Carolina | 1965 | Perquimans | County | County | 6 | 1 | 3 | 1 | 1 | 2 | 0.16667 | 0.5 | 0.16667 | 0.16667 | |||
TRUE | North Carolina | Person | 37 | 145 | 37145 | 37145 | 34 | North Carolina | 1966 | Person | County | County | 17 | 0 | 3 | 8 | 6 | 5 | 0 | 0.17647 | 0.47059 | 0.35294 | |||
TRUE | North Carolina | Pitt | 37 | 147 | 37147 | 37147 | 34 | North Carolina | 1967 | Pitt | County | County | 58 | 1 | 27 | 15 | 15 | 10 | 0.01724 | 0.46552 | 0.25862 | 0.25862 | |||
TRUE | North Carolina | Polk | 37 | 149 | 37149 | 37149 | 34 | North Carolina | 1968 | Polk | County | County | 4 | 0 | 1 | 2 | 1 | 3 | 0 | 0.25 | 0.5 | 0.25 | |||
TRUE | North Carolina | Randolph | 37 | 151 | 37151 | 37151 | 34 | North Carolina | 1969 | Randolph | County | County | 51 | 1 | 19 | 15 | 16 | 11 | 0.01961 | 0.37255 | 0.29412 | 0.31373 | |||
TRUE | North Carolina | Richmond | 37 | 153 | 37153 | 37153 | 34 | North Carolina | 1970 | Richmond | County | County | 22 | 1 | 6 | 6 | 9 | 4 | 0.04545 | 0.27273 | 0.27273 | 0.40909 | |||
TRUE | North Carolina | Robeson | 37 | 155 | 37155 | 37155 | 34 | North Carolina | 1971 | Robeson | County | County | 20 | 0 | 5 | 2 | 13 | 7 | 0 | 0.25 | 0.1 | 0.65 | |||
TRUE | North Carolina | Rockingham | 37 | 157 | 37157 | 37157 | 34 | North Carolina | 1972 | Rockingham | County | County | 28 | 2 | 13 | 9 | 4 | 4 | 0.07143 | 0.46429 | 0.32143 | 0.14286 | |||
TRUE | North Carolina | Rowan | 37 | 159 | 37159 | 37159 | 34 | North Carolina | 1973 | Rowan | County | County | 63 | 6 | 22 | 15 | 20 | 11 | 0.09524 | 0.34921 | 0.2381 | 0.31746 | |||
TRUE | North Carolina | Rutherford | 37 | 161 | 37161 | 37161 | 34 | North Carolina | 1974 | Rutherford | County | County | 30 | 1 | 6 | 17 | 6 | 9 | 0.03333 | 0.2 | 0.56667 | 0.2 | |||
TRUE | North Carolina | Sampson | 37 | 163 | 37163 | 37163 | 34 | North Carolina | 1975 | Sampson | County | County | 14 | 0 | 3 | 7 | 4 | 5 | 0 | 0.21429 | 0.5 | 0.28571 | |||
TRUE | North Carolina | Scotland | 37 | 165 | 37165 | 37165 | 34 | North Carolina | 1976 | Scotland | County | County | 10 | 0 | 1 | 4 | 5 | 1 | 0 | 0.1 | 0.4 | 0.5 | |||
TRUE | North Carolina | Stanly | 37 | 167 | 37167 | 37167 | 34 | North Carolina | 1977 | Stanly | County | County | 29 | 0 | 11 | 11 | 7 | 7 | 0 | 0.37931 | 0.37931 | 0.24138 | |||
TRUE | North Carolina | Stokes | 37 | 169 | 37169 | 37169 | 34 | North Carolina | 1978 | Stokes | County | County | 10 | 3 | 3 | 3 | 1 | 4 | 0.3 | 0.3 | 0.3 | 0.1 | |||
TRUE | North Carolina | Surry | 37 | 171 | 37171 | 37171 | 34 | North Carolina | 1979 | Surry | County | County | 49 | 31 | 5 | 11 | 2 | 7 | 0.63265 | 0.10204 | 0.22449 | 0.04082 | |||
TRUE | North Carolina | Swain | 37 | 173 | 37173 | 37173 | 34 | North Carolina | 1980 | Swain | County | County | 6 | 0 | 1 | 2 | 3 | 2 | 0 | 0.16667 | 0.33333 | 0.5 | |||
TRUE | North Carolina | Transylvania | 37 | 175 | 37175 | 37175 | 34 | North Carolina | 1981 | Transylvania | County | County | 18 | 1 | 4 | 13 | 0 | 4 | 0.05556 | 0.22222 | 0.72222 | 0 | |||
TRUE | North Carolina | Tyrrell | 37 | 177 | 37177 | 37177 | 34 | North Carolina | 1982 | Tyrrell | County | County | 3 | 0 | 2 | 1 | 0 | 1 | 0 | 0.66667 | 0.33333 | 0 | |||
TRUE | North Carolina | Union | 37 | 179 | 37179 | 37179 | 34 | North Carolina | 1983 | Union | County | County | 65 | 5 | 25 | 27 | 8 | 7 | 0.07692 | 0.38462 | 0.41538 | 0.12308 | |||
TRUE | North Carolina | Vance | 37 | 181 | 37181 | 37181 | 34 | North Carolina | 1984 | Vance | County | County | 7 | 0 | 4 | 1 | 2 | 3 | 0 | 0.57143 | 0.14286 | 0.28571 | |||
TRUE | North Carolina | Wake | 37 | 183 | 37183 | 37183 | 34 | North Carolina | 1985 | Wake | County | County | 691 | 31 | 338 | 216 | 106 | 37 | 0.04486 | 0.48915 | 0.31259 | 0.1534 | |||
TRUE | North Carolina | Warren | 37 | 185 | 37185 | 37185 | 34 | North Carolina | 1986 | Warren | County | County | 5 | 0 | 4 | 1 | 0 | 3 | 0 | 0.8 | 0.2 | 0 | |||
TRUE | North Carolina | Washington | 37 | 187 | 37187 | 37187 | 34 | North Carolina | 1987 | Washington | County | County | 5 | 0 | 1 | 2 | 2 | 3 | 0 | 0.2 | 0.4 | 0.4 | |||
TRUE | North Carolina | Watauga | 37 | 189 | 37189 | 37189 | 34 | North Carolina | 1988 | Watauga | County | County | 25 | 0 | 13 | 8 | 4 | 3 | 0 | 0.52 | 0.32 | 0.16 | |||
TRUE | North Carolina | Wayne | 37 | 191 | 37191 | 37191 | 34 | North Carolina | 1989 | Wayne | County | County | 54 | 4 | 21 | 9 | 20 | 7 | 0.07407 | 0.38889 | 0.16667 | 0.37037 | |||
TRUE | North Carolina | Wilkes | 37 | 193 | 37193 | 37193 | 34 | North Carolina | 1990 | Wilkes | County | County | 21 | 1 | 10 | 6 | 4 | 7 | 0.04762 | 0.47619 | 0.28571 | 0.19048 | |||
TRUE | North Carolina | Wilson | 37 | 195 | 37195 | 37195 | 34 | North Carolina | 1991 | Wilson | County | County | 28 | 0 | 14 | 7 | 7 | 5 | 0 | 0.5 | 0.25 | 0.25 | |||
TRUE | North Carolina | Yadkin | 37 | 197 | 37197 | 37197 | 34 | North Carolina | 1992 | Yadkin | County | County | 12 | 2 | 2 | 5 | 3 | 4 | 0.16667 | 0.16667 | 0.41667 | 0.25 | |||
TRUE | North Carolina | Yancey | 37 | 199 | 37199 | 37199 | 34 | North Carolina | 1993 | Yancey | County | County | 4 | 0 | 0 | 2 | 2 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | North Dakota | Adams | 38 | 001 | 38001 | 38001 | 35 | North Dakota | 1994 | Adams | County | County | 10 | 10 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Barnes | 38 | 003 | 38003 | 38003 | 35 | North Dakota | 1995 | Barnes | County | County | 25 | 24 | 1 | 0 | 0 | 7 | 0.96 | 0.04 | 0 | 0 | |||
TRUE | North Dakota | Benson | 38 | 005 | 38005 | 38005 | 35 | North Dakota | 1996 | Benson | County | County | 5 | 5 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Billings | 38 | 007 | 38007 | 38007 | 35 | North Dakota | 1997 | Billings | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Bottineau | 38 | 009 | 38009 | 38009 | 35 | North Dakota | 1998 | Bottineau | County | County | 22 | 18 | 4 | 0 | 0 | 7 | 0.81818 | 0.18182 | 0 | 0 | |||
TRUE | North Dakota | Bowman | 38 | 011 | 38011 | 38011 | 35 | North Dakota | 1999 | Bowman | County | County | 9 | 9 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Burke | 38 | 013 | 38013 | 38013 | 35 | North Dakota | 2000 | Burke | County | County | 7 | 6 | 1 | 0 | 0 | 5 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | North Dakota | Burleigh | 38 | 015 | 38015 | 38015 | 35 | North Dakota | 2001 | Burleigh | County | County | 127 | 102 | 22 | 2 | 1 | 5 | 0.80315 | 0.17323 | 0.01575 | 0.00787 | |||
TRUE | North Dakota | Cass | 38 | 017 | 38017 | 38017 | 35 | North Dakota | 2002 | Cass | County | County | 274 | 213 | 54 | 2 | 5 | 16 | 0.77737 | 0.19708 | 0.0073 | 0.01825 | |||
TRUE | North Dakota | Cavalier | 38 | 019 | 38019 | 38019 | 35 | North Dakota | 2003 | Cavalier | County | County | 8 | 8 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Dickey | 38 | 021 | 38021 | 38021 | 35 | North Dakota | 2004 | Dickey | County | County | 13 | 11 | 2 | 0 | 0 | 4 | 0.84615 | 0.15385 | 0 | 0 | |||
TRUE | North Dakota | Divide | 38 | 023 | 38023 | 38023 | 35 | North Dakota | 2005 | Divide | County | County | 5 | 5 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Dunn | 38 | 025 | 38025 | 38025 | 35 | North Dakota | 2006 | Dunn | County | County | 9 | 8 | 1 | 0 | 0 | 4 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | North Dakota | Eddy | 38 | 027 | 38027 | 38027 | 35 | North Dakota | 2007 | Eddy | County | County | 8 | 8 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Emmons | 38 | 029 | 38029 | 38029 | 35 | North Dakota | 2008 | Emmons | County | County | 4 | 3 | 1 | 0 | 0 | 3 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | North Dakota | Foster | 38 | 031 | 38031 | 38031 | 35 | North Dakota | 2009 | Foster | County | County | 6 | 5 | 0 | 1 | 0 | 2 | 0.83333 | 0 | 0.16667 | 0 | |||
TRUE | North Dakota | Golden Valley | 38 | 033 | 38033 | 38033 | 35 | North Dakota | 2010 | Golden Valley | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Grand Forks | 38 | 035 | 38035 | 38035 | 35 | North Dakota | 2011 | Grand Forks | County | County | 130 | 100 | 26 | 2 | 2 | 12 | 0.76923 | 0.2 | 0.01538 | 0.01538 | |||
TRUE | North Dakota | Grant | 38 | 037 | 38037 | 38037 | 35 | North Dakota | 2012 | Grant | County | County | 2 | 1 | 1 | 0 | 0 | 2 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | North Dakota | Griggs | 38 | 039 | 38039 | 38039 | 35 | North Dakota | 2013 | Griggs | County | County | 8 | 8 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Hettinger | 38 | 041 | 38041 | 38041 | 35 | North Dakota | 2014 | Hettinger | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Kidder | 38 | 043 | 38043 | 38043 | 35 | North Dakota | 2015 | Kidder | County | County | 5 | 5 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Lamoure | 38 | 045 | 38045 | 38045 | 35 | North Dakota | 2016 | Lamoure | County | County | 8 | 5 | 3 | 0 | 0 | 5 | 0.625 | 0.375 | 0 | 0 | |||
TRUE | North Dakota | Logan | 38 | 047 | 38047 | 38047 | 35 | North Dakota | 2017 | Logan | County | County | 4 | 4 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | McHenry | 38 | 049 | 38049 | 38049 | 35 | North Dakota | 2018 | McHenry | County | County | 9 | 9 | 0 | 0 | 0 | 6 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | McIntosh | 38 | 051 | 38051 | 38051 | 35 | North Dakota | 2019 | McIntosh | County | County | 9 | 8 | 1 | 0 | 0 | 3 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | North Dakota | McKenzie | 38 | 053 | 38053 | 38053 | 35 | North Dakota | 2020 | McKenzie | County | County | 6 | 6 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | McLean | 38 | 055 | 38055 | 38055 | 35 | North Dakota | 2021 | McLean | County | County | 29 | 20 | 9 | 0 | 0 | 7 | 0.68966 | 0.31034 | 0 | 0 | |||
TRUE | North Dakota | Mercer | 38 | 057 | 38057 | 38057 | 35 | North Dakota | 2022 | Mercer | County | County | 9 | 9 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Morton | 38 | 059 | 38059 | 38059 | 35 | North Dakota | 2023 | Morton | County | County | 45 | 37 | 8 | 0 | 0 | 4 | 0.82222 | 0.17778 | 0 | 0 | |||
TRUE | North Dakota | Mountrail | 38 | 061 | 38061 | 38061 | 35 | North Dakota | 2024 | Mountrail | County | County | 7 | 6 | 1 | 0 | 0 | 3 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | North Dakota | Nelson | 38 | 063 | 38063 | 38063 | 35 | North Dakota | 2025 | Nelson | County | County | 6 | 4 | 2 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | North Dakota | Oliver | 38 | 065 | 38065 | 38065 | 35 | North Dakota | 2026 | Oliver | County | County | 7 | 5 | 1 | 0 | 1 | 2 | 0.71429 | 0.14286 | 0 | 0.14286 | |||
TRUE | North Dakota | Pembina | 38 | 067 | 38067 | 38067 | 35 | North Dakota | 2027 | Pembina | County | County | 8 | 7 | 1 | 0 | 0 | 6 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | North Dakota | Pierce | 38 | 069 | 38069 | 38069 | 35 | North Dakota | 2028 | Pierce | County | County | 8 | 6 | 1 | 0 | 1 | 2 | 0.75 | 0.125 | 0 | 0.125 | |||
TRUE | North Dakota | Ramsey | 38 | 071 | 38071 | 38071 | 35 | North Dakota | 2029 | Ramsey | County | County | 11 | 10 | 1 | 0 | 0 | 3 | 0.90909 | 0.09091 | 0 | 0 | |||
TRUE | North Dakota | Ransom | 38 | 073 | 38073 | 38073 | 35 | North Dakota | 2030 | Ransom | County | County | 7 | 5 | 2 | 0 | 0 | 1 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | North Dakota | Renville | 38 | 075 | 38075 | 38075 | 35 | North Dakota | 2031 | Renville | County | County | 3 | 2 | 1 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | North Dakota | Richland | 38 | 077 | 38077 | 38077 | 35 | North Dakota | 2032 | Richland | County | County | 37 | 32 | 5 | 0 | 0 | 8 | 0.86486 | 0.13514 | 0 | 0 | |||
TRUE | North Dakota | Rolette | 38 | 079 | 38079 | 38079 | 35 | North Dakota | 2033 | Rolette | County | County | 7 | 6 | 1 | 0 | 0 | 5 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | North Dakota | Sargent | 38 | 081 | 38081 | 38081 | 35 | North Dakota | 2034 | Sargent | County | County | 8 | 7 | 0 | 0 | 1 | 3 | 0.875 | 0 | 0 | 0.125 | |||
TRUE | North Dakota | Sheridan | 38 | 083 | 38083 | 38083 | 35 | North Dakota | 2035 | Sheridan | County | County | 5 | 4 | 1 | 0 | 0 | 3 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | North Dakota | Sioux | 38 | 085 | 38085 | 38085 | 35 | North Dakota | 2036 | Sioux | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Slope | 38 | 087 | 38087 | 38087 | 35 | North Dakota | 2037 | Slope | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | North Dakota | Stark | 38 | 089 | 38089 | 38089 | 35 | North Dakota | 2038 | Stark | County | County | 47 | 40 | 6 | 0 | 1 | 5 | 0.85106 | 0.12766 | 0 | 0.02128 | |||
TRUE | North Dakota | Steele | 38 | 091 | 38091 | 38091 | 35 | North Dakota | 2039 | Steele | County | County | 5 | 5 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Stutsman | 38 | 093 | 38093 | 38093 | 35 | North Dakota | 2040 | Stutsman | County | County | 38 | 33 | 4 | 0 | 1 | 5 | 0.86842 | 0.10526 | 0 | 0.02632 | |||
TRUE | North Dakota | Towner | 38 | 095 | 38095 | 38095 | 35 | North Dakota | 2041 | Towner | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Traill | 38 | 097 | 38097 | 38097 | 35 | North Dakota | 2042 | Traill | County | County | 11 | 11 | 0 | 0 | 0 | 5 | 1 | 0 | 0 | 0 | |||
TRUE | North Dakota | Walsh | 38 | 099 | 38099 | 38099 | 35 | North Dakota | 2043 | Walsh | County | County | 20 | 17 | 3 | 0 | 0 | 7 | 0.85 | 0.15 | 0 | 0 | |||
TRUE | North Dakota | Ward | 38 | 101 | 38101 | 38101 | 35 | North Dakota | 2044 | Ward | County | County | 119 | 82 | 30 | 4 | 3 | 11 | 0.68908 | 0.2521 | 0.03361 | 0.02521 | |||
TRUE | North Dakota | Wells | 38 | 103 | 38103 | 38103 | 35 | North Dakota | 2045 | Wells | County | County | 11 | 8 | 3 | 0 | 0 | 3 | 0.72727 | 0.27273 | 0 | 0 | |||
TRUE | North Dakota | Williams | 38 | 105 | 38105 | 38105 | 35 | North Dakota | 2046 | Williams | County | County | 34 | 26 | 8 | 0 | 0 | 6 | 0.76471 | 0.23529 | 0 | 0 | |||
TRUE | Ohio | Adams | 39 | 001 | 39001 | 39001 | 36 | Ohio | 2047 | Adams | County | County | 21 | 18 | 2 | 1 | 0 | 8 | 0.85714 | 0.09524 | 0.04762 | 0 | |||
TRUE | Ohio | Allen | 39 | 003 | 39003 | 39003 | 36 | Ohio | 2048 | Allen | County | County | 143 | 130 | 7 | 2 | 4 | 12 | 0.90909 | 0.04895 | 0.01399 | 0.02797 | |||
TRUE | Ohio | Ashland | 39 | 005 | 39005 | 39005 | 36 | Ohio | 2049 | Ashland | County | County | 61 | 53 | 6 | 0 | 2 | 7 | 0.86885 | 0.09836 | 0 | 0.03279 | |||
TRUE | Ohio | Ashtabula | 39 | 007 | 39007 | 39007 | 36 | Ohio | 2050 | Ashtabula | County | County | 156 | 138 | 14 | 0 | 4 | 14 | 0.88462 | 0.08974 | 0 | 0.02564 | |||
TRUE | Ohio | Athens | 39 | 009 | 39009 | 39009 | 36 | Ohio | 2051 | Athens | County | County | 115 | 86 | 21 | 3 | 5 | 10 | 0.74783 | 0.18261 | 0.02609 | 0.04348 | |||
TRUE | Ohio | Auglaize | 39 | 011 | 39011 | 39011 | 36 | Ohio | 2052 | Auglaize | County | County | 72 | 65 | 6 | 1 | 0 | 6 | 0.90278 | 0.08333 | 0.01389 | 0 | |||
TRUE | Ohio | Belmont | 39 | 013 | 39013 | 39013 | 36 | Ohio | 2053 | Belmont | County | County | 77 | 68 | 5 | 2 | 2 | 14 | 0.88312 | 0.06494 | 0.02597 | 0.02597 | |||
TRUE | Ohio | Brown | 39 | 015 | 39015 | 39015 | 36 | Ohio | 2054 | Brown | County | County | 29 | 28 | 1 | 0 | 0 | 7 | 0.96552 | 0.03448 | 0 | 0 | |||
TRUE | Ohio | Butler | 39 | 017 | 39017 | 39017 | 36 | Ohio | 2055 | Butler | County | County | 491 | 391 | 72 | 17 | 11 | 16 | 0.79633 | 0.14664 | 0.03462 | 0.0224 | |||
TRUE | Ohio | Carroll | 39 | 019 | 39019 | 39019 | 36 | Ohio | 2056 | Carroll | County | County | 39 | 36 | 3 | 0 | 0 | 8 | 0.92308 | 0.07692 | 0 | 0 | |||
TRUE | Ohio | Champaign | 39 | 021 | 39021 | 39021 | 36 | Ohio | 2057 | Champaign | County | County | 32 | 28 | 2 | 2 | 0 | 5 | 0.875 | 0.0625 | 0.0625 | 0 | |||
TRUE | Ohio | Clark | 39 | 023 | 39023 | 39023 | 36 | Ohio | 2058 | Clark | County | County | 168 | 140 | 23 | 4 | 1 | 12 | 0.83333 | 0.1369 | 0.02381 | 0.00595 | |||
TRUE | Ohio | Clermont | 39 | 025 | 39025 | 39025 | 36 | Ohio | 2059 | Clermont | County | County | 232 | 184 | 38 | 6 | 4 | 14 | 0.7931 | 0.16379 | 0.02586 | 0.01724 | |||
TRUE | Ohio | Clinton | 39 | 027 | 39027 | 39027 | 36 | Ohio | 2060 | Clinton | County | County | 42 | 34 | 8 | 0 | 0 | 7 | 0.80952 | 0.19048 | 0 | 0 | |||
TRUE | Ohio | Columbiana | 39 | 029 | 39029 | 39029 | 36 | Ohio | 2061 | Columbiana | County | County | 168 | 149 | 17 | 2 | 0 | 15 | 0.8869 | 0.10119 | 0.0119 | 0 | |||
TRUE | Ohio | Coshocton | 39 | 031 | 39031 | 39031 | 36 | Ohio | 2062 | Coshocton | County | County | 37 | 28 | 6 | 2 | 1 | 4 | 0.75676 | 0.16216 | 0.05405 | 0.02703 | |||
TRUE | Ohio | Crawford | 39 | 033 | 39033 | 39033 | 36 | Ohio | 2063 | Crawford | County | County | 53 | 49 | 4 | 0 | 0 | 7 | 0.92453 | 0.07547 | 0 | 0 | |||
TRUE | Ohio | Cuyahoga | 39 | 035 | 39035 | 39035 | 36 | Ohio | 2064 | Cuyahoga | County | County | 3047 | 2659 | 310 | 35 | 43 | 52 | 0.87266 | 0.10174 | 0.01149 | 0.01411 | |||
TRUE | Ohio | Darke | 39 | 037 | 39037 | 39037 | 36 | Ohio | 2065 | Darke | County | County | 71 | 64 | 4 | 2 | 1 | 13 | 0.90141 | 0.05634 | 0.02817 | 0.01408 | |||
TRUE | Ohio | Defiance | 39 | 039 | 39039 | 39039 | 36 | Ohio | 2066 | Defiance | County | County | 63 | 59 | 4 | 0 | 0 | 6 | 0.93651 | 0.06349 | 0 | 0 | |||
TRUE | Ohio | Delaware | 39 | 041 | 39041 | 39041 | 36 | Ohio | 2067 | Delaware | County | County | 211 | 171 | 38 | 1 | 1 | 9 | 0.81043 | 0.18009 | 0.00474 | 0.00474 | |||
TRUE | Ohio | Erie | 39 | 043 | 39043 | 39043 | 36 | Ohio | 2068 | Erie | County | County | 148 | 135 | 9 | 1 | 3 | 6 | 0.91216 | 0.06081 | 0.00676 | 0.02027 | |||
TRUE | Ohio | Fairfield | 39 | 045 | 39045 | 39045 | 36 | Ohio | 2069 | Fairfield | County | County | 150 | 124 | 16 | 8 | 2 | 11 | 0.82667 | 0.10667 | 0.05333 | 0.01333 | |||
TRUE | Ohio | Fayette | 39 | 047 | 39047 | 39047 | 36 | Ohio | 2070 | Fayette | County | County | 9 | 6 | 2 | 1 | 0 | 2 | 0.66667 | 0.22222 | 0.11111 | 0 | |||
TRUE | Ohio | Franklin | 39 | 049 | 39049 | 39049 | 36 | Ohio | 2071 | Franklin | County | County | 1847 | 1395 | 369 | 44 | 39 | 46 | 0.75528 | 0.19978 | 0.02382 | 0.02112 | |||
TRUE | Ohio | Fulton | 39 | 051 | 39051 | 39051 | 36 | Ohio | 2072 | Fulton | County | County | 59 | 52 | 4 | 0 | 3 | 7 | 0.88136 | 0.0678 | 0 | 0.05085 | |||
TRUE | Ohio | Gallia | 39 | 053 | 39053 | 39053 | 36 | Ohio | 2073 | Gallia | County | County | 28 | 24 | 3 | 1 | 0 | 5 | 0.85714 | 0.10714 | 0.03571 | 0 | |||
TRUE | Ohio | Geauga | 39 | 055 | 39055 | 39055 | 36 | Ohio | 2074 | Geauga | County | County | 196 | 182 | 13 | 0 | 1 | 9 | 0.92857 | 0.06633 | 0 | 0.0051 | |||
TRUE | Ohio | Greene | 39 | 057 | 39057 | 39057 | 36 | Ohio | 2075 | Greene | County | County | 245 | 166 | 63 | 10 | 6 | 12 | 0.67755 | 0.25714 | 0.04082 | 0.02449 | |||
TRUE | Ohio | Guernsey | 39 | 059 | 39059 | 39059 | 36 | Ohio | 2076 | Guernsey | County | County | 40 | 35 | 3 | 0 | 2 | 5 | 0.875 | 0.075 | 0 | 0.05 | |||
TRUE | Ohio | Hamilton | 39 | 061 | 39061 | 39061 | 36 | Ohio | 2077 | Hamilton | County | County | 1592 | 1152 | 260 | 110 | 70 | 54 | 0.72362 | 0.16332 | 0.0691 | 0.04397 | |||
TRUE | Ohio | Hancock | 39 | 063 | 39063 | 39063 | 36 | Ohio | 2078 | Hancock | County | County | 124 | 104 | 14 | 3 | 3 | 10 | 0.83871 | 0.1129 | 0.02419 | 0.02419 | |||
TRUE | Ohio | Hardin | 39 | 065 | 39065 | 39065 | 36 | Ohio | 2079 | Hardin | County | County | 42 | 38 | 3 | 0 | 1 | 8 | 0.90476 | 0.07143 | 0 | 0.02381 | |||
TRUE | Ohio | Harrison | 39 | 067 | 39067 | 39067 | 36 | Ohio | 2080 | Harrison | County | County | 10 | 9 | 0 | 1 | 0 | 5 | 0.9 | 0 | 0.1 | 0 | |||
TRUE | Ohio | Henry | 39 | 069 | 39069 | 39069 | 36 | Ohio | 2081 | Henry | County | County | 45 | 37 | 7 | 0 | 1 | 7 | 0.82222 | 0.15556 | 0 | 0.02222 | |||
TRUE | Ohio | Highland | 39 | 071 | 39071 | 39071 | 36 | Ohio | 2082 | Highland | County | County | 26 | 26 | 0 | 0 | 0 | 5 | 1 | 0 | 0 | 0 | |||
TRUE | Ohio | Hocking | 39 | 073 | 39073 | 39073 | 36 | Ohio | 2083 | Hocking | County | County | 21 | 18 | 3 | 0 | 0 | 4 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Ohio | Holmes | 39 | 075 | 39075 | 39075 | 36 | Ohio | 2084 | Holmes | County | County | 24 | 21 | 2 | 1 | 0 | 7 | 0.875 | 0.08333 | 0.04167 | 0 | |||
TRUE | Ohio | Huron | 39 | 077 | 39077 | 39077 | 36 | Ohio | 2085 | Huron | County | County | 82 | 75 | 6 | 0 | 1 | 8 | 0.91463 | 0.07317 | 0 | 0.0122 | |||
TRUE | Ohio | Jackson | 39 | 079 | 39079 | 39079 | 36 | Ohio | 2086 | Jackson | County | County | 31 | 29 | 2 | 0 | 0 | 4 | 0.93548 | 0.06452 | 0 | 0 | |||
TRUE | Ohio | Jefferson | 39 | 081 | 39081 | 39081 | 36 | Ohio | 2087 | Jefferson | County | County | 117 | 100 | 10 | 3 | 4 | 16 | 0.8547 | 0.08547 | 0.02564 | 0.03419 | |||
TRUE | Ohio | Knox | 39 | 083 | 39083 | 39083 | 36 | Ohio | 2088 | Knox | County | County | 70 | 52 | 17 | 1 | 0 | 6 | 0.74286 | 0.24286 | 0.01429 | 0 | |||
TRUE | Ohio | Lake | 39 | 085 | 39085 | 39085 | 36 | Ohio | 2090 | Lake | County | County | 603 | 540 | 50 | 5 | 8 | 8 | 0.89552 | 0.08292 | 0.00829 | 0.01327 | |||
TRUE | Ohio | Lawrence | 39 | 087 | 39087 | 39087 | 36 | Ohio | 2091 | Lawrence | County | County | 71 | 65 | 3 | 1 | 1 | 7 | 0.91549 | 0.04225 | 0.01408 | 0.01408 | |||
TRUE | Ohio | Licking | 39 | 089 | 39089 | 39089 | 36 | Ohio | 2092 | Licking | County | County | 170 | 137 | 21 | 9 | 3 | 14 | 0.80588 | 0.12353 | 0.05294 | 0.01765 | |||
TRUE | Ohio | Logan | 39 | 091 | 39091 | 39091 | 36 | Ohio | 2093 | Logan | County | County | 50 | 44 | 6 | 0 | 0 | 9 | 0.88 | 0.12 | 0 | 0 | |||
TRUE | Ohio | Lorain | 39 | 093 | 39093 | 39093 | 36 | Ohio | 2094 | Lorain | County | County | 507 | 453 | 47 | 3 | 4 | 16 | 0.89349 | 0.0927 | 0.00592 | 0.00789 | |||
TRUE | Ohio | Lucas | 39 | 095 | 39095 | 39095 | 36 | Ohio | 2095 | Lucas | County | County | 830 | 747 | 71 | 2 | 10 | 32 | 0.9 | 0.08554 | 0.00241 | 0.01205 | |||
TRUE | Ohio | Madison | 39 | 097 | 39097 | 39097 | 36 | Ohio | 2096 | Madison | County | County | 54 | 47 | 6 | 0 | 1 | 4 | 0.87037 | 0.11111 | 0 | 0.01852 | |||
TRUE | Ohio | Mahoning | 39 | 099 | 39099 | 39099 | 36 | Ohio | 2097 | Mahoning | County | County | 428 | 376 | 41 | 5 | 6 | 26 | 0.8785 | 0.09579 | 0.01168 | 0.01402 | |||
TRUE | Ohio | Marion | 39 | 101 | 39101 | 39101 | 36 | Ohio | 2098 | Marion | County | County | 71 | 62 | 6 | 2 | 1 | 4 | 0.87324 | 0.08451 | 0.02817 | 0.01408 | |||
TRUE | Ohio | Medina | 39 | 103 | 39103 | 39103 | 36 | Ohio | 2099 | Medina | County | County | 323 | 300 | 18 | 4 | 1 | 12 | 0.92879 | 0.05573 | 0.01238 | 0.0031 | |||
TRUE | Ohio | Meigs | 39 | 105 | 39105 | 39105 | 36 | Ohio | 2100 | Meigs | County | County | 11 | 10 | 1 | 0 | 0 | 4 | 0.90909 | 0.09091 | 0 | 0 | |||
TRUE | Ohio | Mercer | 39 | 107 | 39107 | 39107 | 36 | Ohio | 2101 | Mercer | County | County | 67 | 61 | 3 | 0 | 3 | 7 | 0.91045 | 0.04478 | 0 | 0.04478 | |||
TRUE | Ohio | Miami | 39 | 109 | 39109 | 39109 | 36 | Ohio | 2102 | Miami | County | County | 148 | 122 | 21 | 2 | 3 | 9 | 0.82432 | 0.14189 | 0.01351 | 0.02027 | |||
TRUE | Ohio | Monroe | 39 | 111 | 39111 | 39111 | 36 | Ohio | 2103 | Monroe | County | County | 7 | 7 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Ohio | Montgomery | 39 | 113 | 39113 | 39113 | 36 | Ohio | 2104 | Montgomery | County | County | 954 | 721 | 156 | 36 | 41 | 38 | 0.75577 | 0.16352 | 0.03774 | 0.04298 | |||
TRUE | Ohio | Morgan | 39 | 115 | 39115 | 39115 | 36 | Ohio | 2105 | Morgan | County | County | 13 | 11 | 2 | 0 | 0 | 5 | 0.84615 | 0.15385 | 0 | 0 | |||
TRUE | Ohio | Morrow | 39 | 117 | 39117 | 39117 | 36 | Ohio | 2106 | Morrow | County | County | 28 | 24 | 4 | 0 | 0 | 6 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Ohio | Muskingum | 39 | 119 | 39119 | 39119 | 36 | Ohio | 2107 | Muskingum | County | County | 106 | 92 | 13 | 0 | 1 | 11 | 0.86792 | 0.12264 | 0 | 0.00943 | |||
TRUE | Ohio | Noble | 39 | 121 | 39121 | 39121 | 36 | Ohio | 2108 | Noble | County | County | 17 | 16 | 0 | 1 | 0 | 5 | 0.94118 | 0 | 0.05882 | 0 | |||
TRUE | Ohio | Ottawa | 39 | 123 | 39123 | 39123 | 36 | Ohio | 2109 | Ottawa | County | County | 66 | 56 | 8 | 0 | 2 | 6 | 0.84848 | 0.12121 | 0 | 0.0303 | |||
TRUE | Ohio | Paulding | 39 | 125 | 39125 | 39125 | 36 | Ohio | 2110 | Paulding | County | County | 23 | 17 | 5 | 1 | 0 | 7 | 0.73913 | 0.21739 | 0.04348 | 0 | |||
TRUE | Ohio | Perry | 39 | 127 | 39127 | 39127 | 36 | Ohio | 2111 | Perry | County | County | 23 | 20 | 3 | 0 | 0 | 8 | 0.86957 | 0.13043 | 0 | 0 | |||
TRUE | Ohio | Pickaway | 39 | 129 | 39129 | 39129 | 36 | Ohio | 2112 | Pickaway | County | County | 38 | 32 | 4 | 1 | 1 | 4 | 0.84211 | 0.10526 | 0.02632 | 0.02632 | |||
TRUE | Ohio | Pike | 39 | 131 | 39131 | 39131 | 36 | Ohio | 2113 | Pike | County | County | 19 | 17 | 2 | 0 | 0 | 3 | 0.89474 | 0.10526 | 0 | 0 | |||
TRUE | Ohio | Portage | 39 | 133 | 39133 | 39133 | 36 | Ohio | 2114 | Portage | County | County | 273 | 233 | 32 | 4 | 4 | 16 | 0.85348 | 0.11722 | 0.01465 | 0.01465 | |||
TRUE | Ohio | Preble | 39 | 135 | 39135 | 39135 | 36 | Ohio | 2115 | Preble | County | County | 31 | 23 | 5 | 0 | 3 | 8 | 0.74194 | 0.16129 | 0 | 0.09677 | |||
TRUE | Ohio | Putnam | 39 | 137 | 39137 | 39137 | 36 | Ohio | 2116 | Putnam | County | County | 48 | 46 | 2 | 0 | 0 | 9 | 0.95833 | 0.04167 | 0 | 0 | |||
TRUE | Ohio | Richland | 39 | 139 | 39139 | 39139 | 36 | Ohio | 2117 | Richland | County | County | 195 | 169 | 18 | 4 | 4 | 13 | 0.86667 | 0.09231 | 0.02051 | 0.02051 | |||
TRUE | Ohio | Ross | 39 | 141 | 39141 | 39141 | 36 | Ohio | 2118 | Ross | County | County | 86 | 76 | 8 | 0 | 2 | 6 | 0.88372 | 0.09302 | 0 | 0.02326 | |||
TRUE | Ohio | Sandusky | 39 | 143 | 39143 | 39143 | 36 | Ohio | 2119 | Sandusky | County | County | 108 | 102 | 2 | 1 | 3 | 9 | 0.94444 | 0.01852 | 0.00926 | 0.02778 | |||
TRUE | Ohio | Scioto | 39 | 145 | 39145 | 39145 | 36 | Ohio | 2120 | Scioto | County | County | 101 | 94 | 5 | 0 | 2 | 8 | 0.93069 | 0.0495 | 0 | 0.0198 | |||
TRUE | Ohio | Seneca | 39 | 147 | 39147 | 39147 | 36 | Ohio | 2121 | Seneca | County | County | 95 | 85 | 10 | 0 | 0 | 8 | 0.89474 | 0.10526 | 0 | 0 | |||
TRUE | Ohio | Shelby | 39 | 149 | 39149 | 39149 | 36 | Ohio | 2122 | Shelby | County | County | 51 | 46 | 5 | 0 | 0 | 7 | 0.90196 | 0.09804 | 0 | 0 | |||
TRUE | Ohio | Stark | 39 | 151 | 39151 | 39151 | 36 | Ohio | 2123 | Stark | County | County | 583 | 512 | 55 | 8 | 8 | 32 | 0.87822 | 0.09434 | 0.01372 | 0.01372 | |||
TRUE | Ohio | Summit | 39 | 153 | 39153 | 39153 | 36 | Ohio | 2124 | Summit | County | County | 1088 | 938 | 119 | 18 | 13 | 35 | 0.86213 | 0.10938 | 0.01654 | 0.01195 | |||
TRUE | Ohio | Trumbull | 39 | 155 | 39155 | 39155 | 36 | Ohio | 2125 | Trumbull | County | County | 368 | 337 | 18 | 9 | 4 | 24 | 0.91576 | 0.04891 | 0.02446 | 0.01087 | |||
TRUE | Ohio | Tuscarawas | 39 | 157 | 39157 | 39157 | 36 | Ohio | 2126 | Tuscarawas | County | County | 124 | 106 | 9 | 1 | 8 | 15 | 0.85484 | 0.07258 | 0.00806 | 0.06452 | |||
TRUE | Ohio | Union | 39 | 159 | 39159 | 39159 | 36 | Ohio | 2127 | Union | County | County | 49 | 43 | 5 | 1 | 0 | 4 | 0.87755 | 0.10204 | 0.02041 | 0 | |||
TRUE | Ohio | Van Wert | 39 | 161 | 39161 | 39161 | 36 | Ohio | 2128 | Van Wert | County | County | 38 | 36 | 2 | 0 | 0 | 8 | 0.94737 | 0.05263 | 0 | 0 | |||
TRUE | Ohio | Vinton | 39 | 163 | 39163 | 39163 | 36 | Ohio | 2129 | Vinton | County | County | 9 | 6 | 3 | 0 | 0 | 4 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Ohio | Warren | 39 | 165 | 39165 | 39165 | 36 | Ohio | 2130 | Warren | County | County | 207 | 171 | 23 | 8 | 5 | 10 | 0.82609 | 0.11111 | 0.03865 | 0.02415 | |||
TRUE | Ohio | Washington | 39 | 167 | 39167 | 39167 | 36 | Ohio | 2131 | Washington | County | County | 91 | 71 | 13 | 5 | 2 | 10 | 0.78022 | 0.14286 | 0.05495 | 0.02198 | |||
TRUE | Ohio | Wayne | 39 | 169 | 39169 | 39169 | 36 | Ohio | 2132 | Wayne | County | County | 171 | 149 | 15 | 3 | 4 | 14 | 0.87135 | 0.08772 | 0.01754 | 0.02339 | |||
TRUE | Ohio | Williams | 39 | 171 | 39171 | 39171 | 36 | Ohio | 2133 | Williams | County | County | 52 | 47 | 4 | 1 | 0 | 7 | 0.90385 | 0.07692 | 0.01923 | 0 | |||
TRUE | Ohio | Wood | 39 | 173 | 39173 | 39173 | 36 | Ohio | 2134 | Wood | County | County | 240 | 208 | 24 | 3 | 5 | 19 | 0.86667 | 0.1 | 0.0125 | 0.02083 | |||
TRUE | Ohio | Wyandot | 39 | 175 | 39175 | 39175 | 36 | Ohio | 2135 | Wyandot | County | County | 29 | 28 | 1 | 0 | 0 | 4 | 0.96552 | 0.03448 | 0 | 0 | |||
TRUE | Oklahoma | Adair | 40 | 001 | 40001 | 40001 | 37 | Oklahoma | 2136 | Adair | County | County | 6 | 3 | 1 | 2 | 0 | 2 | 0.5 | 0.16667 | 0.33333 | 0 | |||
TRUE | Oklahoma | Alfalfa | 40 | 003 | 40003 | 40003 | 37 | Oklahoma | 2137 | Alfalfa | County | County | 8 | 6 | 1 | 1 | 0 | 4 | 0.75 | 0.125 | 0.125 | 0 | |||
TRUE | Oklahoma | Atoka | 40 | 005 | 40005 | 40005 | 37 | Oklahoma | 2138 | Atoka | County | County | 2 | 1 | 0 | 1 | 0 | 1 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Oklahoma | Beaver | 40 | 007 | 40007 | 40007 | 37 | Oklahoma | 2139 | Beaver | County | County | 8 | 5 | 0 | 3 | 0 | 3 | 0.625 | 0 | 0.375 | 0 | |||
TRUE | Oklahoma | Beckham | 40 | 009 | 40009 | 40009 | 37 | Oklahoma | 2140 | Beckham | County | County | 21 | 12 | 1 | 6 | 2 | 4 | 0.57143 | 0.04762 | 0.28571 | 0.09524 | |||
TRUE | Oklahoma | Blaine | 40 | 011 | 40011 | 40011 | 37 | Oklahoma | 2141 | Blaine | County | County | 5 | 0 | 1 | 4 | 0 | 3 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Oklahoma | Bryan | 40 | 013 | 40013 | 40013 | 37 | Oklahoma | 2142 | Bryan | County | County | 26 | 6 | 2 | 17 | 1 | 6 | 0.23077 | 0.07692 | 0.65385 | 0.03846 | |||
TRUE | Oklahoma | Caddo | 40 | 015 | 40015 | 40015 | 37 | Oklahoma | 2143 | Caddo | County | County | 19 | 4 | 4 | 10 | 1 | 9 | 0.21053 | 0.21053 | 0.52632 | 0.05263 | |||
TRUE | Oklahoma | Canadian | 40 | 017 | 40017 | 40017 | 37 | Oklahoma | 2144 | Canadian | County | County | 78 | 20 | 6 | 51 | 1 | 7 | 0.25641 | 0.07692 | 0.65385 | 0.01282 | |||
TRUE | Oklahoma | Carter | 40 | 019 | 40019 | 40019 | 37 | Oklahoma | 2145 | Carter | County | County | 38 | 10 | 3 | 22 | 3 | 6 | 0.26316 | 0.07895 | 0.57895 | 0.07895 | |||
TRUE | Oklahoma | Cherokee | 40 | 021 | 40021 | 40021 | 37 | Oklahoma | 2146 | Cherokee | County | County | 33 | 22 | 5 | 5 | 1 | 6 | 0.66667 | 0.15152 | 0.15152 | 0.0303 | |||
TRUE | Oklahoma | Choctaw | 40 | 023 | 40023 | 40023 | 37 | Oklahoma | 2147 | Choctaw | County | County | 6 | 0 | 1 | 3 | 2 | 2 | 0 | 0.16667 | 0.5 | 0.33333 | |||
TRUE | Oklahoma | Cimarron | 40 | 025 | 40025 | 40025 | 37 | Oklahoma | 2148 | Cimarron | County | County | 5 | 1 | 1 | 3 | 0 | 3 | 0.2 | 0.2 | 0.6 | 0 | |||
TRUE | Oklahoma | Cleveland | 40 | 027 | 40027 | 40027 | 37 | Oklahoma | 2149 | Cleveland | County | County | 276 | 72 | 29 | 167 | 8 | 12 | 0.26087 | 0.10507 | 0.60507 | 0.02899 | |||
TRUE | Oklahoma | Coal | 40 | 029 | 40029 | 40029 | 37 | Oklahoma | 2150 | Coal | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Oklahoma | Comanche | 40 | 031 | 40031 | 40031 | 37 | Oklahoma | 2151 | Comanche | County | County | 77 | 11 | 26 | 37 | 3 | 8 | 0.14286 | 0.33766 | 0.48052 | 0.03896 | |||
TRUE | Oklahoma | Cotton | 40 | 033 | 40033 | 40033 | 37 | Oklahoma | 2152 | Cotton | County | County | 6 | 0 | 0 | 5 | 1 | 2 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Oklahoma | Craig | 40 | 035 | 40035 | 40035 | 37 | Oklahoma | 2153 | Craig | County | County | 19 | 14 | 3 | 1 | 1 | 5 | 0.73684 | 0.15789 | 0.05263 | 0.05263 | |||
TRUE | Oklahoma | Creek | 40 | 037 | 40037 | 40037 | 37 | Oklahoma | 2154 | Creek | County | County | 52 | 36 | 11 | 4 | 1 | 8 | 0.69231 | 0.21154 | 0.07692 | 0.01923 | |||
TRUE | Oklahoma | Custer | 40 | 039 | 40039 | 40039 | 37 | Oklahoma | 2155 | Custer | County | County | 17 | 3 | 2 | 12 | 0 | 3 | 0.17647 | 0.11765 | 0.70588 | 0 | |||
TRUE | Oklahoma | Delaware | 40 | 041 | 40041 | 40041 | 37 | Oklahoma | 2156 | Delaware | County | County | 13 | 6 | 5 | 2 | 0 | 7 | 0.46154 | 0.38462 | 0.15385 | 0 | |||
TRUE | Oklahoma | Dewey | 40 | 043 | 40043 | 40043 | 37 | Oklahoma | 2157 | Dewey | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Oklahoma | Ellis | 40 | 045 | 40045 | 40045 | 37 | Oklahoma | 2158 | Ellis | County | County | 3 | 2 | 0 | 1 | 0 | 2 | 0.66667 | 0 | 0.33333 | 0 | |||
TRUE | Oklahoma | Garfield | 40 | 047 | 40047 | 40047 | 37 | Oklahoma | 2159 | Garfield | County | County | 45 | 17 | 4 | 21 | 3 | 5 | 0.37778 | 0.08889 | 0.46667 | 0.06667 | |||
TRUE | Oklahoma | Garvin | 40 | 049 | 40049 | 40049 | 37 | Oklahoma | 2160 | Garvin | County | County | 16 | 2 | 1 | 10 | 3 | 4 | 0.125 | 0.0625 | 0.625 | 0.1875 | |||
TRUE | Oklahoma | Grady | 40 | 051 | 40051 | 40051 | 37 | Oklahoma | 2161 | Grady | County | County | 15 | 2 | 4 | 9 | 0 | 6 | 0.13333 | 0.26667 | 0.6 | 0 | |||
TRUE | Oklahoma | Grant | 40 | 053 | 40053 | 40053 | 37 | Oklahoma | 2162 | Grant | County | County | 4 | 4 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Oklahoma | Greer | 40 | 055 | 40055 | 40055 | 37 | Oklahoma | 2163 | Greer | County | County | 2 | 1 | 0 | 1 | 0 | 2 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Oklahoma | Harmon | 40 | 057 | 40057 | 40057 | 37 | Oklahoma | 2164 | Harmon | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Oklahoma | Harper | 40 | 059 | 40059 | 40059 | 37 | Oklahoma | 2165 | Harper | County | County | 7 | 1 | 1 | 5 | 0 | 2 | 0.14286 | 0.14286 | 0.71429 | 0 | |||
TRUE | Oklahoma | Haskell | 40 | 061 | 40061 | 40061 | 37 | Oklahoma | 2166 | Haskell | County | County | 7 | 4 | 0 | 2 | 1 | 2 | 0.57143 | 0 | 0.28571 | 0.14286 | |||
TRUE | Oklahoma | Hughes | 40 | 063 | 40063 | 40063 | 37 | Oklahoma | 2167 | Hughes | County | County | 7 | 4 | 0 | 2 | 1 | 3 | 0.57143 | 0 | 0.28571 | 0.14286 | |||
TRUE | Oklahoma | Jackson | 40 | 065 | 40065 | 40065 | 37 | Oklahoma | 2168 | Jackson | County | County | 18 | 7 | 7 | 3 | 1 | 4 | 0.38889 | 0.38889 | 0.16667 | 0.05556 | |||
TRUE | Oklahoma | Jefferson | 40 | 067 | 40067 | 40067 | 37 | Oklahoma | 2169 | Jefferson | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Oklahoma | Johnston | 40 | 069 | 40069 | 40069 | 37 | Oklahoma | 2170 | Johnston | County | County | 6 | 1 | 0 | 4 | 1 | 2 | 0.16667 | 0 | 0.66667 | 0.16667 | |||
TRUE | Oklahoma | Kay | 40 | 071 | 40071 | 40071 | 37 | Oklahoma | 2171 | Kay | County | County | 59 | 27 | 8 | 24 | 0 | 4 | 0.45763 | 0.13559 | 0.40678 | 0 | |||
TRUE | Oklahoma | Kingfisher | 40 | 073 | 40073 | 40073 | 37 | Oklahoma | 2172 | Kingfisher | County | County | 12 | 4 | 1 | 7 | 0 | 4 | 0.33333 | 0.08333 | 0.58333 | 0 | |||
TRUE | Oklahoma | Kiowa | 40 | 075 | 40075 | 40075 | 37 | Oklahoma | 2173 | Kiowa | County | County | 5 | 1 | 2 | 2 | 0 | 4 | 0.2 | 0.4 | 0.4 | 0 | |||
TRUE | Oklahoma | Latimer | 40 | 077 | 40077 | 40077 | 37 | Oklahoma | 2174 | Latimer | County | County | 9 | 6 | 3 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Oklahoma | Le Flore | 40 | 079 | 40079 | 40079 | 37 | Oklahoma | 2175 | Le Flore | County | County | 19 | 6 | 6 | 5 | 2 | 9 | 0.31579 | 0.31579 | 0.26316 | 0.10526 | |||
TRUE | Oklahoma | Lincoln | 40 | 081 | 40081 | 40081 | 37 | Oklahoma | 2176 | Lincoln | County | County | 24 | 9 | 4 | 9 | 2 | 5 | 0.375 | 0.16667 | 0.375 | 0.08333 | |||
TRUE | Oklahoma | Logan | 40 | 083 | 40083 | 40083 | 37 | Oklahoma | 2177 | Logan | County | County | 20 | 7 | 4 | 9 | 0 | 4 | 0.35 | 0.2 | 0.45 | 0 | |||
TRUE | Oklahoma | Love | 40 | 085 | 40085 | 40085 | 37 | Oklahoma | 2178 | Love | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | Oklahoma | McClain | 40 | 087 | 40087 | 40087 | 37 | Oklahoma | 2182 | McClain | County | County | 24 | 10 | 1 | 11 | 2 | 3 | 0.41667 | 0.04167 | 0.45833 | 0.08333 | |||
TRUE | Oklahoma | McCurtain | 40 | 089 | 40089 | 40089 | 37 | Oklahoma | 2183 | McCurtain | County | County | 14 | 4 | 0 | 9 | 1 | 5 | 0.28571 | 0 | 0.64286 | 0.07143 | |||
TRUE | Oklahoma | McIntosh | 40 | 091 | 40091 | 40091 | 37 | Oklahoma | 2184 | McIntosh | County | County | 10 | 9 | 0 | 1 | 0 | 2 | 0.9 | 0 | 0.1 | 0 | |||
TRUE | Oklahoma | Major | 40 | 093 | 40093 | 40093 | 37 | Oklahoma | 2179 | Major | County | County | 9 | 7 | 1 | 1 | 0 | 3 | 0.77778 | 0.11111 | 0.11111 | 0 | |||
TRUE | Oklahoma | Marshall | 40 | 095 | 40095 | 40095 | 37 | Oklahoma | 2180 | Marshall | County | County | 5 | 1 | 1 | 3 | 0 | 1 | 0.2 | 0.2 | 0.6 | 0 | |||
TRUE | Oklahoma | Mayes | 40 | 097 | 40097 | 40097 | 37 | Oklahoma | 2181 | Mayes | County | County | 20 | 17 | 1 | 2 | 0 | 6 | 0.85 | 0.05 | 0.1 | 0 | |||
TRUE | Oklahoma | Murray | 40 | 099 | 40099 | 40099 | 37 | Oklahoma | 2185 | Murray | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Oklahoma | Muskogee | 40 | 101 | 40101 | 40101 | 37 | Oklahoma | 2186 | Muskogee | County | County | 59 | 34 | 15 | 10 | 0 | 8 | 0.57627 | 0.25424 | 0.16949 | 0 | |||
TRUE | Oklahoma | Noble | 40 | 103 | 40103 | 40103 | 37 | Oklahoma | 2187 | Noble | County | County | 9 | 8 | 0 | 1 | 0 | 1 | 0.88889 | 0 | 0.11111 | 0 | |||
TRUE | Oklahoma | Nowata | 40 | 105 | 40105 | 40105 | 37 | Oklahoma | 2188 | Nowata | County | County | 7 | 3 | 0 | 3 | 1 | 2 | 0.42857 | 0 | 0.42857 | 0.14286 | |||
TRUE | Oklahoma | Okfuskee | 40 | 107 | 40107 | 40107 | 37 | Oklahoma | 2189 | Okfuskee | County | County | 7 | 5 | 1 | 1 | 0 | 3 | 0.71429 | 0.14286 | 0.14286 | 0 | |||
TRUE | Oklahoma | Oklahoma | 40 | 109 | 40109 | 40109 | 37 | Oklahoma | 2190 | Oklahoma | County | County | 621 | 121 | 100 | 378 | 22 | 51 | 0.19485 | 0.16103 | 0.6087 | 0.03543 | |||
TRUE | Oklahoma | Okmulgee | 40 | 111 | 40111 | 40111 | 37 | Oklahoma | 2191 | Okmulgee | County | County | 31 | 23 | 3 | 5 | 0 | 6 | 0.74194 | 0.09677 | 0.16129 | 0 | |||
TRUE | Oklahoma | Osage | 40 | 113 | 40113 | 40113 | 37 | Oklahoma | 2192 | Osage | County | County | 129 | 50 | 7 | 68 | 4 | 9 | 0.3876 | 0.05426 | 0.52713 | 0.03101 | |||
TRUE | Oklahoma | Ottawa | 40 | 115 | 40115 | 40115 | 37 | Oklahoma | 2193 | Ottawa | County | County | 28 | 14 | 2 | 10 | 2 | 4 | 0.5 | 0.07143 | 0.35714 | 0.07143 | |||
TRUE | Oklahoma | Pawnee | 40 | 117 | 40117 | 40117 | 37 | Oklahoma | 2194 | Pawnee | County | County | 11 | 11 | 0 | 0 | 0 | 5 | 1 | 0 | 0 | 0 | |||
TRUE | Oklahoma | Payne | 40 | 119 | 40119 | 40119 | 37 | Oklahoma | 2195 | Payne | County | County | 105 | 30 | 38 | 34 | 3 | 7 | 0.28571 | 0.3619 | 0.32381 | 0.02857 | |||
TRUE | Oklahoma | Pittsburg | 40 | 121 | 40121 | 40121 | 37 | Oklahoma | 2196 | Pittsburg | County | County | 27 | 11 | 6 | 9 | 1 | 7 | 0.40741 | 0.22222 | 0.33333 | 0.03704 | |||
TRUE | Oklahoma | Pontotoc | 40 | 123 | 40123 | 40123 | 37 | Oklahoma | 2197 | Pontotoc | County | County | 41 | 16 | 5 | 19 | 1 | 3 | 0.39024 | 0.12195 | 0.46341 | 0.02439 | |||
TRUE | Oklahoma | Pottawatomie | 40 | 125 | 40125 | 40125 | 37 | Oklahoma | 2198 | Pottawatomie | County | County | 53 | 14 | 9 | 27 | 3 | 6 | 0.26415 | 0.16981 | 0.50943 | 0.0566 | |||
TRUE | Oklahoma | Pushmataha | 40 | 127 | 40127 | 40127 | 37 | Oklahoma | 2199 | Pushmataha | County | County | 3 | 2 | 0 | 1 | 0 | 2 | 0.66667 | 0 | 0.33333 | 0 | |||
TRUE | Oklahoma | Roger Mills | 40 | 129 | 40129 | 40129 | 37 | Oklahoma | 2200 | Roger Mills | County | County | 4 | 4 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Oklahoma | Rogers | 40 | 131 | 40131 | 40131 | 37 | Oklahoma | 2201 | Rogers | County | County | 50 | 32 | 11 | 6 | 1 | 7 | 0.64 | 0.22 | 0.12 | 0.02 | |||
TRUE | Oklahoma | Seminole | 40 | 133 | 40133 | 40133 | 37 | Oklahoma | 2202 | Seminole | County | County | 13 | 2 | 5 | 6 | 0 | 3 | 0.15385 | 0.38462 | 0.46154 | 0 | |||
TRUE | Oklahoma | Sequoyah | 40 | 135 | 40135 | 40135 | 37 | Oklahoma | 2203 | Sequoyah | County | County | 16 | 10 | 2 | 4 | 0 | 4 | 0.625 | 0.125 | 0.25 | 0 | |||
TRUE | Oklahoma | Stephens | 40 | 137 | 40137 | 40137 | 37 | Oklahoma | 2204 | Stephens | County | County | 39 | 7 | 8 | 23 | 1 | 5 | 0.17949 | 0.20513 | 0.58974 | 0.02564 | |||
TRUE | Oklahoma | Texas | 40 | 139 | 40139 | 40139 | 37 | Oklahoma | 2205 | Texas | County | County | 17 | 1 | 1 | 14 | 1 | 2 | 0.05882 | 0.05882 | 0.82353 | 0.05882 | |||
TRUE | Oklahoma | Tillman | 40 | 141 | 40141 | 40141 | 37 | Oklahoma | 2206 | Tillman | County | County | 9 | 0 | 1 | 8 | 0 | 4 | 0 | 0.11111 | 0.88889 | 0 | |||
TRUE | Oklahoma | Tulsa | 40 | 143 | 40143 | 40143 | 37 | Oklahoma | 2207 | Tulsa | County | County | 816 | 525 | 145 | 126 | 20 | 42 | 0.64338 | 0.1777 | 0.15441 | 0.02451 | |||
TRUE | Oklahoma | Wagoner | 40 | 145 | 40145 | 40145 | 37 | Oklahoma | 2208 | Wagoner | County | County | 41 | 29 | 7 | 4 | 1 | 4 | 0.70732 | 0.17073 | 0.09756 | 0.02439 | |||
TRUE | Oklahoma | Washington | 40 | 147 | 40147 | 40147 | 37 | Oklahoma | 2209 | Washington | County | County | 66 | 41 | 11 | 13 | 1 | 4 | 0.62121 | 0.16667 | 0.19697 | 0.01515 | |||
TRUE | Oklahoma | Washita | 40 | 149 | 40149 | 40149 | 37 | Oklahoma | 2210 | Washita | County | County | 7 | 4 | 0 | 3 | 0 | 3 | 0.57143 | 0 | 0.42857 | 0 | |||
TRUE | Oklahoma | Woods | 40 | 151 | 40151 | 40151 | 37 | Oklahoma | 2211 | Woods | County | County | 14 | 9 | 0 | 3 | 2 | 1 | 0.64286 | 0 | 0.21429 | 0.14286 | |||
TRUE | Oklahoma | Woodward | 40 | 153 | 40153 | 40153 | 37 | Oklahoma | 2212 | Woodward | County | County | 22 | 7 | 2 | 11 | 2 | 2 | 0.31818 | 0.09091 | 0.5 | 0.09091 | |||
TRUE | Oregon | Baker | 41 | 001 | 41001 | 41001 | 38 | Oregon | 2213 | Baker | County | County | 10 | 7 | 1 | 1 | 1 | 3 | 0.7 | 0.1 | 0.1 | 0.1 | |||
TRUE | Oregon | Benton | 41 | 003 | 41003 | 41003 | 38 | Oregon | 2214 | Benton | County | County | 188 | 117 | 59 | 6 | 6 | 6 | 0.62234 | 0.31383 | 0.03191 | 0.03191 | |||
TRUE | Oregon | Clackamas | 41 | 005 | 41005 | 41005 | 38 | Oregon | 2215 | Clackamas | County | County | 482 | 340 | 119 | 16 | 7 | 24 | 0.70539 | 0.24689 | 0.0332 | 0.01452 | |||
TRUE | Oregon | Clatsop | 41 | 007 | 41007 | 41007 | 38 | Oregon | 2216 | Clatsop | County | County | 31 | 17 | 12 | 2 | 0 | 4 | 0.54839 | 0.3871 | 0.06452 | 0 | |||
TRUE | Oregon | Columbia | 41 | 009 | 41009 | 41009 | 38 | Oregon | 2217 | Columbia | County | County | 44 | 32 | 10 | 1 | 1 | 6 | 0.72727 | 0.22727 | 0.02273 | 0.02273 | |||
TRUE | Oregon | Coos | 41 | 011 | 41011 | 41011 | 38 | Oregon | 2218 | Coos | County | County | 60 | 38 | 19 | 3 | 0 | 7 | 0.63333 | 0.31667 | 0.05 | 0 | |||
TRUE | Oregon | Crook | 41 | 013 | 41013 | 41013 | 38 | Oregon | 2219 | Crook | County | County | 16 | 12 | 4 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Oregon | Curry | 41 | 015 | 41015 | 41015 | 38 | Oregon | 2220 | Curry | County | County | 17 | 10 | 6 | 0 | 1 | 3 | 0.58824 | 0.35294 | 0 | 0.05882 | |||
TRUE | Oregon | Deschutes | 41 | 017 | 41017 | 41017 | 38 | Oregon | 2221 | Deschutes | County | County | 86 | 48 | 30 | 6 | 2 | 6 | 0.55814 | 0.34884 | 0.06977 | 0.02326 | |||
TRUE | Oregon | Douglas | 41 | 019 | 41019 | 41019 | 38 | Oregon | 2222 | Douglas | County | County | 95 | 53 | 31 | 8 | 3 | 13 | 0.55789 | 0.32632 | 0.08421 | 0.03158 | |||
TRUE | Oregon | Gilliam | 41 | 021 | 41021 | 41021 | 38 | Oregon | 2223 | Gilliam | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Oregon | Grant | 41 | 023 | 41023 | 41023 | 38 | Oregon | 2224 | Grant | County | County | 6 | 4 | 1 | 1 | 0 | 3 | 0.66667 | 0.16667 | 0.16667 | 0 | |||
TRUE | Oregon | Harney | 41 | 025 | 41025 | 41025 | 38 | Oregon | 2225 | Harney | County | County | 13 | 8 | 4 | 1 | 0 | 2 | 0.61538 | 0.30769 | 0.07692 | 0 | |||
TRUE | Oregon | Hood River | 41 | 027 | 41027 | 41027 | 38 | Oregon | 2226 | Hood River | County | County | 26 | 17 | 9 | 0 | 0 | 2 | 0.65385 | 0.34615 | 0 | 0 | |||
TRUE | Oregon | Jackson | 41 | 029 | 41029 | 41029 | 38 | Oregon | 2227 | Jackson | County | County | 128 | 37 | 78 | 4 | 9 | 13 | 0.28906 | 0.60938 | 0.03125 | 0.07031 | |||
TRUE | Oregon | Jefferson | 41 | 031 | 41031 | 41031 | 38 | Oregon | 2228 | Jefferson | County | County | 6 | 3 | 2 | 1 | 0 | 4 | 0.5 | 0.33333 | 0.16667 | 0 | |||
TRUE | Oregon | Josephine | 41 | 033 | 41033 | 41033 | 38 | Oregon | 2229 | Josephine | County | County | 62 | 16 | 43 | 3 | 0 | 4 | 0.25806 | 0.69355 | 0.04839 | 0 | |||
TRUE | Oregon | Klamath | 41 | 035 | 41035 | 41035 | 38 | Oregon | 2230 | Klamath | County | County | 53 | 33 | 16 | 1 | 3 | 7 | 0.62264 | 0.30189 | 0.01887 | 0.0566 | |||
TRUE | Oregon | Lake | 41 | 037 | 41037 | 41037 | 38 | Oregon | 2231 | Lake | County | County | 9 | 6 | 2 | 1 | 0 | 3 | 0.66667 | 0.22222 | 0.11111 | 0 | |||
TRUE | Oregon | Lane | 41 | 039 | 41039 | 41039 | 38 | Oregon | 2232 | Lane | County | County | 389 | 210 | 153 | 13 | 13 | 23 | 0.53985 | 0.39332 | 0.03342 | 0.03342 | |||
TRUE | Oregon | Lincoln | 41 | 041 | 41041 | 41041 | 38 | Oregon | 2233 | Lincoln | County | County | 44 | 30 | 11 | 0 | 3 | 13 | 0.68182 | 0.25 | 0 | 0.06818 | |||
TRUE | Oregon | Linn | 41 | 043 | 41043 | 41043 | 38 | Oregon | 2234 | Linn | County | County | 149 | 108 | 38 | 1 | 2 | 11 | 0.72483 | 0.25503 | 0.00671 | 0.01342 | |||
TRUE | Oregon | Malheur | 41 | 045 | 41045 | 41045 | 38 | Oregon | 2235 | Malheur | County | County | 19 | 12 | 6 | 1 | 0 | 4 | 0.63158 | 0.31579 | 0.05263 | 0 | |||
TRUE | Oregon | Marion | 41 | 047 | 41047 | 41047 | 38 | Oregon | 2236 | Marion | County | County | 312 | 209 | 81 | 12 | 10 | 20 | 0.66987 | 0.25962 | 0.03846 | 0.03205 | |||
TRUE | Oregon | Morrow | 41 | 049 | 41049 | 41049 | 38 | Oregon | 2237 | Morrow | County | County | 8 | 4 | 4 | 0 | 0 | 3 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Oregon | Multnomah | 41 | 051 | 41051 | 41051 | 38 | Oregon | 2238 | Multnomah | County | County | 979 | 625 | 279 | 36 | 39 | 37 | 0.63841 | 0.28498 | 0.03677 | 0.03984 | |||
TRUE | Oregon | Polk | 41 | 053 | 41053 | 41053 | 38 | Oregon | 2239 | Polk | County | County | 83 | 45 | 29 | 1 | 8 | 7 | 0.54217 | 0.3494 | 0.01205 | 0.09639 | |||
TRUE | Oregon | Sherman | 41 | 055 | 41055 | 41055 | 38 | Oregon | 2240 | Sherman | County | County | 6 | 6 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Oregon | Tillamook | 41 | 057 | 41057 | 41057 | 38 | Oregon | 2241 | Tillamook | County | County | 22 | 16 | 3 | 1 | 2 | 6 | 0.72727 | 0.13636 | 0.04545 | 0.09091 | |||
TRUE | Oregon | Umatilla | 41 | 059 | 41059 | 41059 | 38 | Oregon | 2242 | Umatilla | County | County | 131 | 99 | 23 | 6 | 3 | 8 | 0.75573 | 0.17557 | 0.0458 | 0.0229 | |||
TRUE | Oregon | Union | 41 | 061 | 41061 | 41061 | 38 | Oregon | 2243 | Union | County | County | 23 | 15 | 4 | 2 | 2 | 4 | 0.65217 | 0.17391 | 0.08696 | 0.08696 | |||
TRUE | Oregon | Wallowa | 41 | 063 | 41063 | 41063 | 38 | Oregon | 2244 | Wallowa | County | County | 3 | 3 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Oregon | Wasco | 41 | 065 | 41065 | 41065 | 38 | Oregon | 2245 | Wasco | County | County | 30 | 24 | 6 | 0 | 0 | 6 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Oregon | Washington | 41 | 067 | 41067 | 41067 | 38 | Oregon | 2246 | Washington | County | County | 738 | 415 | 277 | 29 | 17 | 19 | 0.56233 | 0.37534 | 0.0393 | 0.02304 | |||
TRUE | Oregon | Wheeler | 41 | 069 | 41069 | 41069 | 38 | Oregon | 2247 | Wheeler | County | County | 2 | 1 | 0 | 0 | 1 | 1 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Oregon | Yamhill | 41 | 071 | 41071 | 41071 | 38 | Oregon | 2248 | Yamhill | County | County | 114 | 68 | 38 | 6 | 2 | 10 | 0.59649 | 0.33333 | 0.05263 | 0.01754 | |||
TRUE | Pennsylvania | Adams | 42 | 001 | 42001 | 42001 | 39 | Pennsylvania | 2249 | Adams | County | County | 67 | 6 | 57 | 3 | 1 | 9 | 0.08955 | 0.85075 | 0.04478 | 0.01493 | |||
TRUE | Pennsylvania | Allegheny | 42 | 003 | 42003 | 42003 | 39 | Pennsylvania | 2250 | Allegheny | County | County | 3847 | 3339 | 408 | 40 | 60 | 107 | 0.86795 | 0.10606 | 0.0104 | 0.0156 | |||
TRUE | Pennsylvania | Armstrong | 42 | 005 | 42005 | 42005 | 39 | Pennsylvania | 2251 | Armstrong | County | County | 119 | 111 | 7 | 1 | 0 | 17 | 0.93277 | 0.05882 | 0.0084 | 0 | |||
TRUE | Pennsylvania | Beaver | 42 | 007 | 42007 | 42007 | 39 | Pennsylvania | 2252 | Beaver | County | County | 451 | 407 | 29 | 5 | 10 | 19 | 0.90244 | 0.0643 | 0.01109 | 0.02217 | |||
TRUE | Pennsylvania | Bedford | 42 | 009 | 42009 | 42009 | 39 | Pennsylvania | 2253 | Bedford | County | County | 54 | 22 | 25 | 3 | 4 | 15 | 0.40741 | 0.46296 | 0.05556 | 0.07407 | |||
TRUE | Pennsylvania | Berks | 42 | 011 | 42011 | 42011 | 39 | Pennsylvania | 2254 | Berks | County | County | 405 | 11 | 377 | 13 | 4 | 38 | 0.02716 | 0.93086 | 0.0321 | 0.00988 | |||
TRUE | Pennsylvania | Blair | 42 | 013 | 42013 | 42013 | 39 | Pennsylvania | 2255 | Blair | County | County | 193 | 122 | 61 | 1 | 9 | 14 | 0.63212 | 0.31606 | 0.00518 | 0.04663 | |||
TRUE | Pennsylvania | Bradford | 42 | 015 | 42015 | 42015 | 39 | Pennsylvania | 2256 | Bradford | County | County | 69 | 10 | 56 | 2 | 1 | 16 | 0.14493 | 0.81159 | 0.02899 | 0.01449 | |||
TRUE | Pennsylvania | Bucks | 42 | 017 | 42017 | 42017 | 39 | Pennsylvania | 2257 | Bucks | County | County | 758 | 7 | 727 | 15 | 9 | 45 | 0.00923 | 0.9591 | 0.01979 | 0.01187 | |||
TRUE | Pennsylvania | Butler | 42 | 019 | 42019 | 42019 | 39 | Pennsylvania | 2258 | Butler | County | County | 451 | 403 | 40 | 4 | 4 | 28 | 0.89357 | 0.08869 | 0.00887 | 0.00887 | |||
TRUE | Pennsylvania | Cambria | 42 | 021 | 42021 | 42021 | 39 | Pennsylvania | 2259 | Cambria | County | County | 223 | 91 | 124 | 4 | 4 | 34 | 0.40807 | 0.55605 | 0.01794 | 0.01794 | |||
TRUE | Pennsylvania | Cameron | 42 | 023 | 42023 | 42023 | 39 | Pennsylvania | 2260 | Cameron | County | County | 17 | 16 | 1 | 0 | 0 | 1 | 0.94118 | 0.05882 | 0 | 0 | |||
TRUE | Pennsylvania | Carbon | 42 | 025 | 42025 | 42025 | 39 | Pennsylvania | 2261 | Carbon | County | County | 41 | 0 | 40 | 1 | 0 | 11 | 0 | 0.97561 | 0.02439 | 0 | |||
TRUE | Pennsylvania | Centre | 42 | 027 | 42027 | 42027 | 39 | Pennsylvania | 2262 | Centre | County | County | 317 | 60 | 242 | 7 | 8 | 22 | 0.18927 | 0.76341 | 0.02208 | 0.02524 | |||
TRUE | Pennsylvania | Chester | 42 | 029 | 42029 | 42029 | 39 | Pennsylvania | 2263 | Chester | County | County | 631 | 8 | 611 | 11 | 1 | 40 | 0.01268 | 0.9683 | 0.01743 | 0.00158 | |||
TRUE | Pennsylvania | Clarion | 42 | 031 | 42031 | 42031 | 39 | Pennsylvania | 2264 | Clarion | County | County | 95 | 81 | 12 | 0 | 2 | 16 | 0.85263 | 0.12632 | 0 | 0.02105 | |||
TRUE | Pennsylvania | Clearfield | 42 | 033 | 42033 | 42033 | 39 | Pennsylvania | 2265 | Clearfield | County | County | 127 | 106 | 20 | 1 | 0 | 20 | 0.83465 | 0.15748 | 0.00787 | 0 | |||
TRUE | Pennsylvania | Clinton | 42 | 035 | 42035 | 42035 | 39 | Pennsylvania | 2266 | Clinton | County | County | 31 | 4 | 26 | 0 | 1 | 5 | 0.12903 | 0.83871 | 0 | 0.03226 | |||
TRUE | Pennsylvania | Columbia | 42 | 037 | 42037 | 42037 | 39 | Pennsylvania | 2267 | Columbia | County | County | 67 | 1 | 63 | 2 | 1 | 8 | 0.01493 | 0.9403 | 0.02985 | 0.01493 | |||
TRUE | Pennsylvania | Crawford | 42 | 039 | 42039 | 42039 | 39 | Pennsylvania | 2268 | Crawford | County | County | 251 | 168 | 80 | 2 | 1 | 19 | 0.66932 | 0.31873 | 0.00797 | 0.00398 | |||
TRUE | Pennsylvania | Cumberland | 42 | 041 | 42041 | 42041 | 39 | Pennsylvania | 2269 | Cumberland | County | County | 321 | 19 | 284 | 11 | 7 | 14 | 0.05919 | 0.88474 | 0.03427 | 0.02181 | |||
TRUE | Pennsylvania | Dauphin | 42 | 043 | 42043 | 42043 | 39 | Pennsylvania | 2270 | Dauphin | County | County | 328 | 15 | 293 | 14 | 6 | 22 | 0.04573 | 0.89329 | 0.04268 | 0.01829 | |||
TRUE | Pennsylvania | Delaware | 42 | 045 | 42045 | 42045 | 39 | Pennsylvania | 2271 | Delaware | County | County | 689 | 9 | 662 | 12 | 6 | 37 | 0.01306 | 0.96081 | 0.01742 | 0.00871 | |||
TRUE | Pennsylvania | Elk | 42 | 047 | 42047 | 42047 | 39 | Pennsylvania | 2272 | Elk | County | County | 98 | 88 | 8 | 0 | 2 | 9 | 0.89796 | 0.08163 | 0 | 0.02041 | |||
TRUE | Pennsylvania | Erie | 42 | 049 | 42049 | 42049 | 39 | Pennsylvania | 2273 | Erie | County | County | 944 | 837 | 92 | 6 | 9 | 27 | 0.88665 | 0.09746 | 0.00636 | 0.00953 | |||
TRUE | Pennsylvania | Fayette | 42 | 051 | 42051 | 42051 | 39 | Pennsylvania | 2274 | Fayette | County | County | 188 | 169 | 14 | 2 | 3 | 31 | 0.89894 | 0.07447 | 0.01064 | 0.01596 | |||
TRUE | Pennsylvania | Forest | 42 | 053 | 42053 | 42053 | 39 | Pennsylvania | 2275 | Forest | County | County | 9 | 9 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Pennsylvania | Franklin | 42 | 055 | 42055 | 42055 | 39 | Pennsylvania | 2276 | Franklin | County | County | 99 | 17 | 75 | 3 | 4 | 11 | 0.17172 | 0.75758 | 0.0303 | 0.0404 | |||
TRUE | Pennsylvania | Fulton | 42 | 057 | 42057 | 42057 | 39 | Pennsylvania | 2277 | Fulton | County | County | 7 | 3 | 4 | 0 | 0 | 2 | 0.42857 | 0.57143 | 0 | 0 | |||
TRUE | Pennsylvania | Greene | 42 | 059 | 42059 | 42059 | 39 | Pennsylvania | 2278 | Greene | County | County | 59 | 54 | 5 | 0 | 0 | 13 | 0.91525 | 0.08475 | 0 | 0 | |||
TRUE | Pennsylvania | Huntingdon | 42 | 061 | 42061 | 42061 | 39 | Pennsylvania | 2279 | Huntingdon | County | County | 35 | 10 | 23 | 1 | 1 | 15 | 0.28571 | 0.65714 | 0.02857 | 0.02857 | |||
TRUE | Pennsylvania | Indiana | 42 | 063 | 42063 | 42063 | 39 | Pennsylvania | 2280 | Indiana | County | County | 227 | 188 | 36 | 0 | 3 | 24 | 0.82819 | 0.15859 | 0 | 0.01322 | |||
TRUE | Pennsylvania | Jefferson | 42 | 065 | 42065 | 42065 | 39 | Pennsylvania | 2281 | Jefferson | County | County | 101 | 87 | 12 | 1 | 1 | 11 | 0.86139 | 0.11881 | 0.0099 | 0.0099 | |||
TRUE | Pennsylvania | Juniata | 42 | 067 | 42067 | 42067 | 39 | Pennsylvania | 2282 | Juniata | County | County | 21 | 2 | 18 | 0 | 1 | 6 | 0.09524 | 0.85714 | 0 | 0.04762 | |||
TRUE | Pennsylvania | Lackawanna | 42 | 069 | 42069 | 42069 | 39 | Pennsylvania | 2283 | Lackawanna | County | County | 240 | 2 | 229 | 5 | 4 | 23 | 0.00833 | 0.95417 | 0.02083 | 0.01667 | |||
TRUE | Pennsylvania | Lancaster | 42 | 071 | 42071 | 42071 | 39 | Pennsylvania | 2284 | Lancaster | County | County | 486 | 9 | 447 | 16 | 14 | 44 | 0.01852 | 0.91975 | 0.03292 | 0.02881 | |||
TRUE | Pennsylvania | Lawrence | 42 | 073 | 42073 | 42073 | 39 | Pennsylvania | 2285 | Lawrence | County | County | 192 | 184 | 8 | 0 | 0 | 10 | 0.95833 | 0.04167 | 0 | 0 | |||
TRUE | Pennsylvania | Lebanon | 42 | 075 | 42075 | 42075 | 39 | Pennsylvania | 2286 | Lebanon | County | County | 123 | 2 | 115 | 3 | 3 | 12 | 0.01626 | 0.93496 | 0.02439 | 0.02439 | |||
TRUE | Pennsylvania | Lehigh | 42 | 077 | 42077 | 42077 | 39 | Pennsylvania | 2287 | Lehigh | County | County | 321 | 6 | 302 | 5 | 8 | 21 | 0.01869 | 0.94081 | 0.01558 | 0.02492 | |||
TRUE | Pennsylvania | Luzerne | 42 | 079 | 42079 | 42079 | 39 | Pennsylvania | 2288 | Luzerne | County | County | 332 | 24 | 293 | 12 | 3 | 33 | 0.07229 | 0.88253 | 0.03614 | 0.00904 | |||
TRUE | Pennsylvania | Lycoming | 42 | 081 | 42081 | 42081 | 39 | Pennsylvania | 2289 | Lycoming | County | County | 146 | 13 | 119 | 3 | 11 | 15 | 0.08904 | 0.81507 | 0.02055 | 0.07534 | |||
FALSE | Pennsylvania | McKean | 42 | 083 | 42083 | 42083 | 39 | Pennsylvania | 2290 | Mc Kean | McKean | County | County | 109 | 96 | 10 | 2 | 1 | 10 | 0.88073 | 0.09174 | 0.01835 | 0.00917 | ||
TRUE | Pennsylvania | Mercer | 42 | 085 | 42085 | 42085 | 39 | Pennsylvania | 2291 | Mercer | County | County | 276 | 255 | 18 | 1 | 2 | 17 | 0.92391 | 0.06522 | 0.00362 | 0.00725 | |||
TRUE | Pennsylvania | Mifflin | 42 | 087 | 42087 | 42087 | 39 | Pennsylvania | 2292 | Mifflin | County | County | 28 | 6 | 20 | 1 | 1 | 8 | 0.21429 | 0.71429 | 0.03571 | 0.03571 | |||
TRUE | Pennsylvania | Monroe | 42 | 089 | 42089 | 42089 | 39 | Pennsylvania | 2293 | Monroe | County | County | 105 | 6 | 90 | 5 | 4 | 23 | 0.05714 | 0.85714 | 0.04762 | 0.0381 | |||
TRUE | Pennsylvania | Montgomery | 42 | 091 | 42091 | 42091 | 39 | Pennsylvania | 2294 | Montgomery | County | County | 1136 | 14 | 1084 | 25 | 13 | 62 | 0.01232 | 0.95423 | 0.02201 | 0.01144 | |||
TRUE | Pennsylvania | Montour | 42 | 093 | 42093 | 42093 | 39 | Pennsylvania | 2295 | Montour | County | County | 26 | 4 | 21 | 0 | 1 | 1 | 0.15385 | 0.80769 | 0 | 0.03846 | |||
TRUE | Pennsylvania | Northampton | 42 | 095 | 42095 | 42095 | 39 | Pennsylvania | 2296 | Northampton | County | County | 364 | 4 | 349 | 6 | 5 | 23 | 0.01099 | 0.95879 | 0.01648 | 0.01374 | |||
TRUE | Pennsylvania | Northumberland | 42 | 097 | 42097 | 42097 | 39 | Pennsylvania | 2297 | Northumberland | County | County | 90 | 0 | 88 | 1 | 1 | 18 | 0 | 0.97778 | 0.01111 | 0.01111 | |||
TRUE | Pennsylvania | Perry | 42 | 099 | 42099 | 42099 | 39 | Pennsylvania | 2298 | Perry | County | County | 46 | 2 | 43 | 0 | 1 | 11 | 0.04348 | 0.93478 | 0 | 0.02174 | |||
TRUE | Pennsylvania | Philadelphia | 42 | 101 | 42101 | 42101 | 39 | Pennsylvania | 2299 | Philadelphia | County | County | 1052 | 19 | 987 | 24 | 22 | 53 | 0.01806 | 0.93821 | 0.02281 | 0.02091 | |||
TRUE | Pennsylvania | Pike | 42 | 103 | 42103 | 42103 | 39 | Pennsylvania | 2300 | Pike | County | County | 39 | 1 | 37 | 1 | 0 | 10 | 0.02564 | 0.94872 | 0.02564 | 0 | |||
TRUE | Pennsylvania | Potter | 42 | 105 | 42105 | 42105 | 39 | Pennsylvania | 2301 | Potter | County | County | 39 | 25 | 12 | 1 | 1 | 8 | 0.64103 | 0.30769 | 0.02564 | 0.02564 | |||
TRUE | Pennsylvania | Schuylkill | 42 | 107 | 42107 | 42107 | 39 | Pennsylvania | 2302 | Schuylkill | County | County | 135 | 2 | 131 | 2 | 0 | 32 | 0.01481 | 0.97037 | 0.01481 | 0 | |||
TRUE | Pennsylvania | Snyder | 42 | 109 | 42109 | 42109 | 39 | Pennsylvania | 2303 | Snyder | County | County | 44 | 0 | 44 | 0 | 0 | 10 | 0 | 1 | 0 | 0 | |||
TRUE | Pennsylvania | Somerset | 42 | 111 | 42111 | 42111 | 39 | Pennsylvania | 2304 | Somerset | County | County | 117 | 36 | 76 | 1 | 4 | 20 | 0.30769 | 0.64957 | 0.00855 | 0.03419 | |||
TRUE | Pennsylvania | Sullivan | 42 | 113 | 42113 | 42113 | 39 | Pennsylvania | 2305 | Sullivan | County | County | 9 | 4 | 5 | 0 | 0 | 4 | 0.44444 | 0.55556 | 0 | 0 | |||
TRUE | Pennsylvania | Susquehanna | 42 | 115 | 42115 | 42115 | 39 | Pennsylvania | 2306 | Susquehanna | County | County | 53 | 0 | 48 | 0 | 5 | 15 | 0 | 0.90566 | 0 | 0.09434 | |||
TRUE | Pennsylvania | Tioga | 42 | 117 | 42117 | 42117 | 39 | Pennsylvania | 2307 | Tioga | County | County | 37 | 7 | 29 | 0 | 1 | 12 | 0.18919 | 0.78378 | 0 | 0.02703 | |||
TRUE | Pennsylvania | Union | 42 | 119 | 42119 | 42119 | 39 | Pennsylvania | 2308 | Union | County | County | 40 | 0 | 40 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | |||
TRUE | Pennsylvania | Venango | 42 | 121 | 42121 | 42121 | 39 | Pennsylvania | 2309 | Venango | County | County | 98 | 89 | 6 | 1 | 2 | 10 | 0.90816 | 0.06122 | 0.0102 | 0.02041 | |||
TRUE | Pennsylvania | Warren | 42 | 123 | 42123 | 42123 | 39 | Pennsylvania | 2310 | Warren | County | County | 91 | 82 | 9 | 0 | 0 | 11 | 0.9011 | 0.0989 | 0 | 0 | |||
TRUE | Pennsylvania | Washington | 42 | 125 | 42125 | 42125 | 39 | Pennsylvania | 2311 | Washington | County | County | 458 | 422 | 26 | 7 | 3 | 40 | 0.9214 | 0.05677 | 0.01528 | 0.00655 | |||
TRUE | Pennsylvania | Wayne | 42 | 127 | 42127 | 42127 | 39 | Pennsylvania | 2312 | Wayne | County | County | 35 | 0 | 33 | 1 | 1 | 8 | 0 | 0.94286 | 0.02857 | 0.02857 | |||
TRUE | Pennsylvania | Westmoreland | 42 | 129 | 42129 | 42129 | 39 | Pennsylvania | 2313 | Westmoreland | County | County | 1008 | 935 | 63 | 3 | 7 | 60 | 0.92758 | 0.0625 | 0.00298 | 0.00694 | |||
TRUE | Pennsylvania | Wyoming | 42 | 131 | 42131 | 42131 | 39 | Pennsylvania | 2314 | Wyoming | County | County | 24 | 1 | 21 | 1 | 1 | 6 | 0.04167 | 0.875 | 0.04167 | 0.04167 | |||
TRUE | Pennsylvania | York | 42 | 133 | 42133 | 42133 | 39 | Pennsylvania | 2315 | York | County | County | 384 | 19 | 345 | 14 | 6 | 37 | 0.04948 | 0.89844 | 0.03646 | 0.01562 | |||
TRUE | Rhode Island | Bristol | 44 | 001 | 44001 | 44001 | 40 | Rhode Island | 2316 | Bristol | County | County | 67 | 0 | 66 | 0 | 1 | 3 | 0 | 0.98507 | 0 | 0.01493 | |||
TRUE | Rhode Island | Kent | 44 | 003 | 44003 | 44003 | 40 | Rhode Island | 2317 | Kent | County | County | 154 | 1 | 150 | 2 | 1 | 6 | 0.00649 | 0.97403 | 0.01299 | 0.00649 | |||
TRUE | Rhode Island | Newport | 44 | 005 | 44005 | 44005 | 40 | Rhode Island | 2318 | Newport | County | County | 120 | 1 | 119 | 0 | 0 | 8 | 0.00833 | 0.99167 | 0 | 0 | |||
TRUE | Rhode Island | Providence | 44 | 007 | 44007 | 44007 | 40 | Rhode Island | 2319 | Providence | County | County | 411 | 9 | 381 | 12 | 9 | 37 | 0.0219 | 0.92701 | 0.0292 | 0.0219 | |||
TRUE | Rhode Island | Washington | 44 | 009 | 44009 | 44009 | 40 | Rhode Island | 2320 | Washington | County | County | 95 | 2 | 91 | 0 | 2 | 17 | 0.02105 | 0.95789 | 0 | 0.02105 | |||
TRUE | South Carolina | Abbeville | 45 | 001 | 45001 | 45001 | 41 | South Carolina | 2321 | Abbeville | County | County | 11 | 0 | 3 | 5 | 3 | 4 | 0 | 0.27273 | 0.45455 | 0.27273 | |||
TRUE | South Carolina | Aiken | 45 | 003 | 45003 | 45003 | 41 | South Carolina | 2322 | Aiken | County | County | 76 | 1 | 14 | 52 | 9 | 9 | 0.01316 | 0.18421 | 0.68421 | 0.11842 | |||
TRUE | South Carolina | Allendale | 45 | 005 | 45005 | 45005 | 41 | South Carolina | 2323 | Allendale | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | South Carolina | Anderson | 45 | 007 | 45007 | 45007 | 41 | South Carolina | 2324 | Anderson | County | County | 61 | 1 | 14 | 41 | 5 | 11 | 0.01639 | 0.22951 | 0.67213 | 0.08197 | |||
TRUE | South Carolina | Bamberg | 45 | 009 | 45009 | 45009 | 41 | South Carolina | 2325 | Bamberg | County | County | 8 | 0 | 1 | 4 | 3 | 2 | 0 | 0.125 | 0.5 | 0.375 | |||
TRUE | South Carolina | Barnwell | 45 | 011 | 45011 | 45011 | 41 | South Carolina | 2326 | Barnwell | County | County | 6 | 0 | 1 | 5 | 0 | 2 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | South Carolina | Beaufort | 45 | 013 | 45013 | 45013 | 41 | South Carolina | 2327 | Beaufort | County | County | 50 | 1 | 22 | 24 | 3 | 10 | 0.02 | 0.44 | 0.48 | 0.06 | |||
TRUE | South Carolina | Berkeley | 45 | 015 | 45015 | 45015 | 41 | South Carolina | 2328 | Berkeley | County | County | 37 | 4 | 18 | 14 | 1 | 9 | 0.10811 | 0.48649 | 0.37838 | 0.02703 | |||
TRUE | South Carolina | Calhoun | 45 | 017 | 45017 | 45017 | 41 | South Carolina | 2329 | Calhoun | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | South Carolina | Charleston | 45 | 019 | 45019 | 45019 | 41 | South Carolina | 2330 | Charleston | County | County | 228 | 9 | 82 | 120 | 17 | 22 | 0.03947 | 0.35965 | 0.52632 | 0.07456 | |||
TRUE | South Carolina | Cherokee | 45 | 021 | 45021 | 45021 | 41 | South Carolina | 2331 | Cherokee | County | County | 21 | 0 | 3 | 15 | 3 | 3 | 0 | 0.14286 | 0.71429 | 0.14286 | |||
TRUE | South Carolina | Chester | 45 | 023 | 45023 | 45023 | 41 | South Carolina | 2332 | Chester | County | County | 9 | 0 | 3 | 4 | 2 | 4 | 0 | 0.33333 | 0.44444 | 0.22222 | |||
TRUE | South Carolina | Chesterfield | 45 | 025 | 45025 | 45025 | 41 | South Carolina | 2333 | Chesterfield | County | County | 11 | 0 | 3 | 5 | 3 | 5 | 0 | 0.27273 | 0.45455 | 0.27273 | |||
TRUE | South Carolina | Clarendon | 45 | 027 | 45027 | 45027 | 41 | South Carolina | 2334 | Clarendon | County | County | 4 | 0 | 2 | 2 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | South Carolina | Colleton | 45 | 029 | 45029 | 45029 | 41 | South Carolina | 2335 | Colleton | County | County | 6 | 0 | 1 | 3 | 2 | 3 | 0 | 0.16667 | 0.5 | 0.33333 | |||
TRUE | South Carolina | Darlington | 45 | 031 | 45031 | 45031 | 41 | South Carolina | 2336 | Darlington | County | County | 28 | 1 | 7 | 16 | 4 | 4 | 0.03571 | 0.25 | 0.57143 | 0.14286 | |||
TRUE | South Carolina | Dillon | 45 | 033 | 45033 | 45033 | 41 | South Carolina | 2337 | Dillon | County | County | 12 | 0 | 4 | 7 | 1 | 3 | 0 | 0.33333 | 0.58333 | 0.08333 | |||
TRUE | South Carolina | Dorchester | 45 | 035 | 45035 | 45035 | 41 | South Carolina | 2338 | Dorchester | County | County | 58 | 4 | 24 | 29 | 1 | 8 | 0.06897 | 0.41379 | 0.5 | 0.01724 | |||
TRUE | South Carolina | Edgefield | 45 | 037 | 45037 | 45037 | 41 | South Carolina | 2339 | Edgefield | County | County | 4 | 0 | 0 | 3 | 1 | 2 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | South Carolina | Fairfield | 45 | 039 | 45039 | 45039 | 41 | South Carolina | 2340 | Fairfield | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | South Carolina | Florence | 45 | 041 | 45041 | 45041 | 41 | South Carolina | 2341 | Florence | County | County | 62 | 2 | 18 | 33 | 9 | 12 | 0.03226 | 0.29032 | 0.53226 | 0.14516 | |||
TRUE | South Carolina | Georgetown | 45 | 043 | 45043 | 45043 | 41 | South Carolina | 2342 | Georgetown | County | County | 19 | 0 | 9 | 9 | 1 | 4 | 0 | 0.47368 | 0.47368 | 0.05263 | |||
TRUE | South Carolina | Greenville | 45 | 045 | 45045 | 45045 | 41 | South Carolina | 2343 | Greenville | County | County | 290 | 8 | 60 | 193 | 29 | 23 | 0.02759 | 0.2069 | 0.66552 | 0.1 | |||
TRUE | South Carolina | Greenwood | 45 | 047 | 45047 | 45047 | 41 | South Carolina | 2344 | Greenwood | County | County | 25 | 1 | 6 | 15 | 3 | 4 | 0.04 | 0.24 | 0.6 | 0.12 | |||
TRUE | South Carolina | Hampton | 45 | 049 | 45049 | 45049 | 41 | South Carolina | 2345 | Hampton | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | South Carolina | Horry | 45 | 051 | 45051 | 45051 | 41 | South Carolina | 2346 | Horry | County | County | 78 | 1 | 24 | 41 | 12 | 15 | 0.01282 | 0.30769 | 0.52564 | 0.15385 | |||
TRUE | South Carolina | Jasper | 45 | 053 | 45053 | 45053 | 41 | South Carolina | 2347 | Jasper | County | County | 3 | 0 | 2 | 0 | 1 | 2 | 0 | 0.66667 | 0 | 0.33333 | |||
TRUE | South Carolina | Kershaw | 45 | 055 | 45055 | 45055 | 41 | South Carolina | 2348 | Kershaw | County | County | 18 | 0 | 10 | 6 | 2 | 4 | 0 | 0.55556 | 0.33333 | 0.11111 | |||
TRUE | South Carolina | Lancaster | 45 | 057 | 45057 | 45057 | 41 | South Carolina | 2349 | Lancaster | County | County | 18 | 1 | 7 | 6 | 4 | 3 | 0.05556 | 0.38889 | 0.33333 | 0.22222 | |||
TRUE | South Carolina | Laurens | 45 | 059 | 45059 | 45059 | 41 | South Carolina | 2350 | Laurens | County | County | 13 | 0 | 3 | 6 | 4 | 5 | 0 | 0.23077 | 0.46154 | 0.30769 | |||
TRUE | South Carolina | Lee | 45 | 061 | 45061 | 45061 | 41 | South Carolina | 2351 | Lee | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | South Carolina | Lexington | 45 | 063 | 45063 | 45063 | 41 | South Carolina | 2352 | Lexington | County | County | 132 | 3 | 42 | 75 | 12 | 12 | 0.02273 | 0.31818 | 0.56818 | 0.09091 | |||
TRUE | South Carolina | McCormick | 45 | 065 | 45065 | 45065 | 41 | South Carolina | 2355 | McCormick | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | South Carolina | Marion | 45 | 067 | 45067 | 45067 | 41 | South Carolina | 2353 | Marion | County | County | 8 | 0 | 4 | 2 | 2 | 3 | 0 | 0.5 | 0.25 | 0.25 | |||
TRUE | South Carolina | Marlboro | 45 | 069 | 45069 | 45069 | 41 | South Carolina | 2354 | Marlboro | County | County | 9 | 0 | 3 | 3 | 3 | 3 | 0 | 0.33333 | 0.33333 | 0.33333 | |||
TRUE | South Carolina | Newberry | 45 | 071 | 45071 | 45071 | 41 | South Carolina | 2356 | Newberry | County | County | 13 | 1 | 2 | 10 | 0 | 2 | 0.07692 | 0.15385 | 0.76923 | 0 | |||
TRUE | South Carolina | Oconee | 45 | 073 | 45073 | 45073 | 41 | South Carolina | 2357 | Oconee | County | County | 33 | 0 | 2 | 29 | 2 | 7 | 0 | 0.06061 | 0.87879 | 0.06061 | |||
TRUE | South Carolina | Orangeburg | 45 | 075 | 45075 | 45075 | 41 | South Carolina | 2358 | Orangeburg | County | County | 20 | 0 | 4 | 14 | 2 | 6 | 0 | 0.2 | 0.7 | 0.1 | |||
TRUE | South Carolina | Pickens | 45 | 077 | 45077 | 45077 | 41 | South Carolina | 2359 | Pickens | County | County | 75 | 4 | 18 | 44 | 9 | 11 | 0.05333 | 0.24 | 0.58667 | 0.12 | |||
TRUE | South Carolina | Richland | 45 | 079 | 45079 | 45079 | 41 | South Carolina | 2360 | Richland | County | County | 200 | 6 | 45 | 133 | 16 | 14 | 0.03 | 0.225 | 0.665 | 0.08 | |||
TRUE | South Carolina | Saluda | 45 | 081 | 45081 | 45081 | 41 | South Carolina | 2361 | Saluda | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | South Carolina | Spartanburg | 45 | 083 | 45083 | 45083 | 41 | South Carolina | 2362 | Spartanburg | County | County | 124 | 4 | 28 | 74 | 18 | 20 | 0.03226 | 0.22581 | 0.59677 | 0.14516 | |||
TRUE | South Carolina | Sumter | 45 | 085 | 45085 | 45085 | 41 | South Carolina | 2363 | Sumter | County | County | 36 | 1 | 13 | 18 | 4 | 6 | 0.02778 | 0.36111 | 0.5 | 0.11111 | |||
TRUE | South Carolina | Union | 45 | 087 | 45087 | 45087 | 41 | South Carolina | 2364 | Union | County | County | 9 | 0 | 2 | 5 | 2 | 3 | 0 | 0.22222 | 0.55556 | 0.22222 | |||
TRUE | South Carolina | Williamsburg | 45 | 089 | 45089 | 45089 | 41 | South Carolina | 2365 | Williamsburg | County | County | 8 | 0 | 5 | 2 | 1 | 5 | 0 | 0.625 | 0.25 | 0.125 | |||
TRUE | South Carolina | York | 45 | 091 | 45091 | 45091 | 41 | South Carolina | 2366 | York | County | County | 95 | 0 | 34 | 51 | 10 | 9 | 0 | 0.35789 | 0.53684 | 0.10526 | |||
TRUE | South Dakota | Aurora | 46 | 003 | 46003 | 46003 | 42 | South Dakota | 2367 | Aurora | County | County | 2 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | South Dakota | Beadle | 46 | 005 | 46005 | 46005 | 42 | South Dakota | 2368 | Beadle | County | County | 29 | 24 | 5 | 0 | 0 | 3 | 0.82759 | 0.17241 | 0 | 0 | |||
TRUE | South Dakota | Bennett | 46 | 007 | 46007 | 46007 | 42 | South Dakota | 2369 | Bennett | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Bon Homme | 46 | 009 | 46009 | 46009 | 42 | South Dakota | 2370 | Bon Homme | County | County | 6 | 4 | 2 | 0 | 0 | 4 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | South Dakota | Brookings | 46 | 011 | 46011 | 46011 | 42 | South Dakota | 2371 | Brookings | County | County | 83 | 66 | 13 | 2 | 2 | 6 | 0.79518 | 0.15663 | 0.0241 | 0.0241 | |||
TRUE | South Dakota | Brown | 46 | 013 | 46013 | 46013 | 42 | South Dakota | 2372 | Brown | County | County | 48 | 38 | 7 | 0 | 3 | 3 | 0.79167 | 0.14583 | 0 | 0.0625 | |||
TRUE | South Dakota | Brule | 46 | 015 | 46015 | 46015 | 42 | South Dakota | 2373 | Brule | County | County | 7 | 5 | 1 | 0 | 1 | 2 | 0.71429 | 0.14286 | 0 | 0.14286 | |||
TRUE | South Dakota | Buffalo | 46 | 017 | 46017 | 46017 | 42 | South Dakota | 2374 | Buffalo | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Butte | 46 | 019 | 46019 | 46019 | 42 | South Dakota | 2375 | Butte | County | County | 8 | 7 | 1 | 0 | 0 | 2 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | South Dakota | Campbell | 46 | 021 | 46021 | 46021 | 42 | South Dakota | 2376 | Campbell | County | County | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | South Dakota | Charles Mix | 46 | 023 | 46023 | 46023 | 42 | South Dakota | 2377 | Charles Mix | County | County | 7 | 7 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Clark | 46 | 025 | 46025 | 46025 | 42 | South Dakota | 2378 | Clark | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Clay | 46 | 027 | 46027 | 46027 | 42 | South Dakota | 2379 | Clay | County | County | 28 | 18 | 10 | 0 | 0 | 2 | 0.64286 | 0.35714 | 0 | 0 | |||
TRUE | South Dakota | Codington | 46 | 029 | 46029 | 46029 | 42 | South Dakota | 2380 | Codington | County | County | 60 | 32 | 27 | 1 | 0 | 2 | 0.53333 | 0.45 | 0.01667 | 0 | |||
TRUE | South Dakota | Corson | 46 | 031 | 46031 | 46031 | 42 | South Dakota | 2381 | Corson | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Custer | 46 | 033 | 46033 | 46033 | 42 | South Dakota | 2382 | Custer | County | County | 7 | 4 | 2 | 0 | 1 | 3 | 0.57143 | 0.28571 | 0 | 0.14286 | |||
TRUE | South Dakota | Davison | 46 | 035 | 46035 | 46035 | 42 | South Dakota | 2383 | Davison | County | County | 29 | 26 | 2 | 1 | 0 | 2 | 0.89655 | 0.06897 | 0.03448 | 0 | |||
TRUE | South Dakota | Day | 46 | 037 | 46037 | 46037 | 42 | South Dakota | 2384 | Day | County | County | 10 | 10 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Deuel | 46 | 039 | 46039 | 46039 | 42 | South Dakota | 2385 | Deuel | County | County | 3 | 1 | 2 | 0 | 0 | 2 | 0.33333 | 0.66667 | 0 | 0 | |||
TRUE | South Dakota | Dewey | 46 | 041 | 46041 | 46041 | 42 | South Dakota | 2386 | Dewey | County | County | 12 | 11 | 1 | 0 | 0 | 3 | 0.91667 | 0.08333 | 0 | 0 | |||
TRUE | South Dakota | Douglas | 46 | 043 | 46043 | 46043 | 42 | South Dakota | 2387 | Douglas | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Edmunds | 46 | 045 | 46045 | 46045 | 42 | South Dakota | 2388 | Edmunds | County | County | 7 | 5 | 2 | 0 | 0 | 4 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | South Dakota | Fall River | 46 | 047 | 46047 | 46047 | 42 | South Dakota | 2389 | Fall River | County | County | 10 | 8 | 2 | 0 | 0 | 1 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | South Dakota | Faulk | 46 | 049 | 46049 | 46049 | 42 | South Dakota | 2390 | Faulk | County | County | 6 | 6 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Grant | 46 | 051 | 46051 | 46051 | 42 | South Dakota | 2391 | Grant | County | County | 15 | 13 | 2 | 0 | 0 | 2 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | South Dakota | Gregory | 46 | 053 | 46053 | 46053 | 42 | South Dakota | 2392 | Gregory | County | County | 10 | 9 | 1 | 0 | 0 | 4 | 0.9 | 0.1 | 0 | 0 | |||
TRUE | South Dakota | Haakon | 46 | 055 | 46055 | 46055 | 42 | South Dakota | 2393 | Haakon | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Hamlin | 46 | 057 | 46057 | 46057 | 42 | South Dakota | 2394 | Hamlin | County | County | 16 | 14 | 2 | 0 | 0 | 5 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | South Dakota | Hand | 46 | 059 | 46059 | 46059 | 42 | South Dakota | 2395 | Hand | County | County | 6 | 5 | 1 | 0 | 0 | 3 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | South Dakota | Hanson | 46 | 061 | 46061 | 46061 | 42 | South Dakota | 2396 | Hanson | County | County | 3 | 2 | 1 | 0 | 0 | 1 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | South Dakota | Harding | 46 | 063 | 46063 | 46063 | 42 | South Dakota | 2397 | Harding | County | County | 2 | 1 | 1 | 0 | 0 | 2 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | South Dakota | Hughes | 46 | 065 | 46065 | 46065 | 42 | South Dakota | 2398 | Hughes | County | County | 31 | 27 | 2 | 1 | 1 | 2 | 0.87097 | 0.06452 | 0.03226 | 0.03226 | |||
TRUE | South Dakota | Hutchinson | 46 | 067 | 46067 | 46067 | 42 | South Dakota | 2399 | Hutchinson | County | County | 8 | 8 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Hyde | 46 | 069 | 46069 | 46069 | 42 | South Dakota | 2400 | Hyde | County | County | 4 | 3 | 1 | 0 | 0 | 2 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | South Dakota | Jackson | 46 | 071 | 46071 | 46071 | 42 | South Dakota | 2401 | Jackson | County | County | 6 | 5 | 1 | 0 | 0 | 2 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | South Dakota | Jerauld | 46 | 073 | 46073 | 46073 | 42 | South Dakota | 2402 | Jerauld | County | County | 4 | 3 | 1 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | South Dakota | Jones | 46 | 075 | 46075 | 46075 | 42 | South Dakota | 2403 | Jones | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Kingsbury | 46 | 077 | 46077 | 46077 | 42 | South Dakota | 2404 | Kingsbury | County | County | 17 | 14 | 3 | 0 | 0 | 6 | 0.82353 | 0.17647 | 0 | 0 | |||
TRUE | South Dakota | Lake | 46 | 079 | 46079 | 46079 | 42 | South Dakota | 2405 | Lake | County | County | 28 | 23 | 5 | 0 | 0 | 5 | 0.82143 | 0.17857 | 0 | 0 | |||
TRUE | South Dakota | Lawrence | 46 | 081 | 46081 | 46081 | 42 | South Dakota | 2406 | Lawrence | County | County | 42 | 38 | 4 | 0 | 0 | 4 | 0.90476 | 0.09524 | 0 | 0 | |||
TRUE | South Dakota | Lincoln | 46 | 083 | 46083 | 46083 | 42 | South Dakota | 2407 | Lincoln | County | County | 39 | 30 | 8 | 0 | 1 | 6 | 0.76923 | 0.20513 | 0 | 0.02564 | |||
TRUE | South Dakota | Lyman | 46 | 085 | 46085 | 46085 | 42 | South Dakota | 2408 | Lyman | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | McCook | 46 | 087 | 46087 | 46087 | 42 | South Dakota | 2410 | McCook | County | County | 14 | 13 | 0 | 1 | 0 | 5 | 0.92857 | 0 | 0.07143 | 0 | |||
TRUE | South Dakota | McPherson | 46 | 089 | 46089 | 46089 | 42 | South Dakota | 2411 | McPherson | County | County | 10 | 9 | 0 | 1 | 0 | 2 | 0.9 | 0 | 0.1 | 0 | |||
TRUE | South Dakota | Marshall | 46 | 091 | 46091 | 46091 | 42 | South Dakota | 2409 | Marshall | County | County | 6 | 6 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Meade | 46 | 093 | 46093 | 46093 | 42 | South Dakota | 2412 | Meade | County | County | 21 | 17 | 4 | 0 | 0 | 6 | 0.80952 | 0.19048 | 0 | 0 | |||
TRUE | South Dakota | Mellette | 46 | 095 | 46095 | 46095 | 42 | South Dakota | 2413 | Mellette | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Miner | 46 | 097 | 46097 | 46097 | 42 | South Dakota | 2414 | Miner | County | County | 6 | 4 | 2 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | South Dakota | Minnehaha | 46 | 099 | 46099 | 46099 | 42 | South Dakota | 2415 | Minnehaha | County | County | 329 | 256 | 65 | 6 | 2 | 19 | 0.77812 | 0.19757 | 0.01824 | 0.00608 | |||
TRUE | South Dakota | Moody | 46 | 101 | 46101 | 46101 | 42 | South Dakota | 2416 | Moody | County | County | 15 | 13 | 1 | 0 | 1 | 3 | 0.86667 | 0.06667 | 0 | 0.06667 | |||
TRUE | South Dakota | Pennington | 46 | 103 | 46103 | 46103 | 42 | South Dakota | 2417 | Pennington | County | County | 143 | 96 | 34 | 6 | 7 | 7 | 0.67133 | 0.23776 | 0.04196 | 0.04895 | |||
TRUE | South Dakota | Perkins | 46 | 105 | 46105 | 46105 | 42 | South Dakota | 2418 | Perkins | County | County | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Potter | 46 | 107 | 46107 | 46107 | 42 | South Dakota | 2419 | Potter | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Roberts | 46 | 109 | 46109 | 46109 | 42 | South Dakota | 2420 | Roberts | County | County | 12 | 11 | 0 | 0 | 1 | 4 | 0.91667 | 0 | 0 | 0.08333 | |||
TRUE | South Dakota | Sanborn | 46 | 111 | 46111 | 46111 | 42 | South Dakota | 2421 | Sanborn | County | County | 5 | 4 | 1 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | South Dakota | Shannon | 46 | 113 | 46113 | 46113 | 42 | South Dakota | 2422 | Shannon | County | County | 3 | 2 | 1 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | South Dakota | Spink | 46 | 115 | 46115 | 46115 | 42 | South Dakota | 2423 | Spink | County | County | 9 | 9 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Stanley | 46 | 117 | 46117 | 46117 | 42 | South Dakota | 2424 | Stanley | County | County | 9 | 8 | 1 | 0 | 0 | 2 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | South Dakota | Sully | 46 | 119 | 46119 | 46119 | 42 | South Dakota | 2425 | Sully | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Todd | 46 | 121 | 46121 | 46121 | 42 | South Dakota | 2426 | Todd | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | South Dakota | Tripp | 46 | 123 | 46123 | 46123 | 42 | South Dakota | 2427 | Tripp | County | County | 25 | 22 | 2 | 0 | 1 | 4 | 0.88 | 0.08 | 0 | 0.04 | |||
TRUE | South Dakota | Turner | 46 | 125 | 46125 | 46125 | 42 | South Dakota | 2428 | Turner | County | County | 9 | 8 | 1 | 0 | 0 | 6 | 0.88889 | 0.11111 | 0 | 0 | |||
TRUE | South Dakota | Union | 46 | 127 | 46127 | 46127 | 42 | South Dakota | 2429 | Union | County | County | 18 | 14 | 4 | 0 | 0 | 5 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | South Dakota | Walworth | 46 | 129 | 46129 | 46129 | 42 | South Dakota | 2430 | Walworth | County | County | 7 | 6 | 1 | 0 | 0 | 3 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | South Dakota | Yankton | 46 | 135 | 46135 | 46135 | 42 | South Dakota | 2431 | Yankton | County | County | 33 | 28 | 3 | 0 | 2 | 2 | 0.84848 | 0.09091 | 0 | 0.06061 | |||
TRUE | South Dakota | Ziebach | 46 | 137 | 46137 | 46137 | 42 | South Dakota | 2432 | Ziebach | County | County | 4 | 4 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Tennessee | Anderson | 47 | 001 | 47001 | 47001 | 43 | Tennessee | 2433 | Anderson | County | County | 77 | 6 | 15 | 54 | 2 | 6 | 0.07792 | 0.19481 | 0.7013 | 0.02597 | |||
TRUE | Tennessee | Bedford | 47 | 003 | 47003 | 47003 | 43 | Tennessee | 2434 | Bedford | County | County | 13 | 0 | 0 | 13 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Benton | 47 | 005 | 47005 | 47005 | 43 | Tennessee | 2435 | Benton | County | County | 15 | 2 | 2 | 11 | 0 | 2 | 0.13333 | 0.13333 | 0.73333 | 0 | |||
TRUE | Tennessee | Bledsoe | 47 | 007 | 47007 | 47007 | 43 | Tennessee | 2436 | Bledsoe | County | County | 5 | 1 | 0 | 4 | 0 | 2 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | Tennessee | Blount | 47 | 009 | 47009 | 47009 | 43 | Tennessee | 2437 | Blount | County | County | 90 | 2 | 10 | 70 | 8 | 8 | 0.02222 | 0.11111 | 0.77778 | 0.08889 | |||
TRUE | Tennessee | Bradley | 47 | 011 | 47011 | 47011 | 43 | Tennessee | 2438 | Bradley | County | County | 60 | 2 | 7 | 48 | 3 | 3 | 0.03333 | 0.11667 | 0.8 | 0.05 | |||
TRUE | Tennessee | Campbell | 47 | 013 | 47013 | 47013 | 43 | Tennessee | 2439 | Campbell | County | County | 19 | 8 | 1 | 7 | 3 | 3 | 0.42105 | 0.05263 | 0.36842 | 0.15789 | |||
TRUE | Tennessee | Cannon | 47 | 015 | 47015 | 47015 | 43 | Tennessee | 2440 | Cannon | County | County | 4 | 0 | 0 | 3 | 1 | 3 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Tennessee | Carroll | 47 | 017 | 47017 | 47017 | 43 | Tennessee | 2441 | Carroll | County | County | 11 | 0 | 0 | 10 | 1 | 6 | 0 | 0 | 0.90909 | 0.09091 | |||
TRUE | Tennessee | Carter | 47 | 019 | 47019 | 47019 | 43 | Tennessee | 2442 | Carter | County | County | 17 | 10 | 3 | 3 | 1 | 4 | 0.58824 | 0.17647 | 0.17647 | 0.05882 | |||
TRUE | Tennessee | Cheatham | 47 | 021 | 47021 | 47021 | 43 | Tennessee | 2443 | Cheatham | County | County | 24 | 2 | 7 | 13 | 2 | 5 | 0.08333 | 0.29167 | 0.54167 | 0.08333 | |||
TRUE | Tennessee | Chester | 47 | 023 | 47023 | 47023 | 43 | Tennessee | 2444 | Chester | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Claiborne | 47 | 025 | 47025 | 47025 | 43 | Tennessee | 2445 | Claiborne | County | County | 7 | 4 | 2 | 1 | 0 | 4 | 0.57143 | 0.28571 | 0.14286 | 0 | |||
TRUE | Tennessee | Clay | 47 | 027 | 47027 | 47027 | 43 | Tennessee | 2446 | Clay | County | County | 2 | 0 | 1 | 1 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Tennessee | Cocke | 47 | 029 | 47029 | 47029 | 43 | Tennessee | 2447 | Cocke | County | County | 9 | 1 | 0 | 6 | 2 | 3 | 0.11111 | 0 | 0.66667 | 0.22222 | |||
TRUE | Tennessee | Coffee | 47 | 031 | 47031 | 47031 | 43 | Tennessee | 2448 | Coffee | County | County | 50 | 0 | 2 | 47 | 1 | 3 | 0 | 0.04 | 0.94 | 0.02 | |||
TRUE | Tennessee | Crockett | 47 | 033 | 47033 | 47033 | 43 | Tennessee | 2449 | Crockett | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Cumberland | 47 | 035 | 47035 | 47035 | 43 | Tennessee | 2450 | Cumberland | County | County | 21 | 2 | 1 | 18 | 0 | 5 | 0.09524 | 0.04762 | 0.85714 | 0 | |||
TRUE | Tennessee | Davidson | 47 | 037 | 47037 | 47037 | 43 | Tennessee | 2451 | Davidson | County | County | 532 | 17 | 76 | 389 | 50 | 30 | 0.03195 | 0.14286 | 0.7312 | 0.09398 | |||
TRUE | Tennessee | Decatur | 47 | 039 | 47039 | 47039 | 43 | Tennessee | 2452 | Decatur | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
FALSE | Tennessee | Dekalb | 47 | 041 | 47041 | 47041 | 43 | Tennessee | 2453 | DeKalb | County | County | 9 | 0 | 0 | 7 | 2 | 3 | 0 | 0 | 0.77778 | 0.22222 | |||
TRUE | Tennessee | Dickson | 47 | 043 | 47043 | 47043 | 43 | Tennessee | 2454 | Dickson | County | County | 17 | 2 | 1 | 13 | 1 | 4 | 0.11765 | 0.05882 | 0.76471 | 0.05882 | |||
TRUE | Tennessee | Dyer | 47 | 045 | 47045 | 47045 | 43 | Tennessee | 2455 | Dyer | County | County | 20 | 0 | 3 | 16 | 1 | 4 | 0 | 0.15 | 0.8 | 0.05 | |||
TRUE | Tennessee | Fayette | 47 | 047 | 47047 | 47047 | 43 | Tennessee | 2456 | Fayette | County | County | 13 | 0 | 5 | 8 | 0 | 5 | 0 | 0.38462 | 0.61538 | 0 | |||
TRUE | Tennessee | Fentress | 47 | 049 | 47049 | 47049 | 43 | Tennessee | 2457 | Fentress | County | County | 9 | 2 | 1 | 6 | 0 | 4 | 0.22222 | 0.11111 | 0.66667 | 0 | |||
TRUE | Tennessee | Franklin | 47 | 051 | 47051 | 47051 | 43 | Tennessee | 2458 | Franklin | County | County | 23 | 0 | 2 | 21 | 0 | 6 | 0 | 0.08696 | 0.91304 | 0 | |||
TRUE | Tennessee | Gibson | 47 | 053 | 47053 | 47053 | 43 | Tennessee | 2459 | Gibson | County | County | 17 | 0 | 3 | 12 | 2 | 5 | 0 | 0.17647 | 0.70588 | 0.11765 | |||
TRUE | Tennessee | Giles | 47 | 055 | 47055 | 47055 | 43 | Tennessee | 2460 | Giles | County | County | 17 | 0 | 2 | 13 | 2 | 4 | 0 | 0.11765 | 0.76471 | 0.11765 | |||
TRUE | Tennessee | Grainger | 47 | 057 | 47057 | 47057 | 43 | Tennessee | 2461 | Grainger | County | County | 3 | 0 | 0 | 2 | 1 | 2 | 0 | 0 | 0.66667 | 0.33333 | |||
TRUE | Tennessee | Greene | 47 | 059 | 47059 | 47059 | 43 | Tennessee | 2462 | Greene | County | County | 19 | 0 | 5 | 12 | 2 | 6 | 0 | 0.26316 | 0.63158 | 0.10526 | |||
TRUE | Tennessee | Grundy | 47 | 061 | 47061 | 47061 | 43 | Tennessee | 2463 | Grundy | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | Tennessee | Hamblen | 47 | 063 | 47063 | 47063 | 43 | Tennessee | 2464 | Hamblen | County | County | 20 | 1 | 0 | 19 | 0 | 5 | 0.05 | 0 | 0.95 | 0 | |||
TRUE | Tennessee | Hamilton | 47 | 065 | 47065 | 47065 | 43 | Tennessee | 2465 | Hamilton | County | County | 326 | 4 | 21 | 281 | 20 | 23 | 0.01227 | 0.06442 | 0.86196 | 0.06135 | |||
TRUE | Tennessee | Hancock | 47 | 067 | 47067 | 47067 | 43 | Tennessee | 2466 | Hancock | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Hardeman | 47 | 069 | 47069 | 47069 | 43 | Tennessee | 2467 | Hardeman | County | County | 11 | 0 | 2 | 8 | 1 | 6 | 0 | 0.18182 | 0.72727 | 0.09091 | |||
TRUE | Tennessee | Hardin | 47 | 071 | 47071 | 47071 | 43 | Tennessee | 2468 | Hardin | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Hawkins | 47 | 073 | 47073 | 47073 | 43 | Tennessee | 2469 | Hawkins | County | County | 10 | 0 | 0 | 9 | 1 | 5 | 0 | 0 | 0.9 | 0.1 | |||
TRUE | Tennessee | Haywood | 47 | 075 | 47075 | 47075 | 43 | Tennessee | 2470 | Haywood | County | County | 5 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Henderson | 47 | 077 | 47077 | 47077 | 43 | Tennessee | 2471 | Henderson | County | County | 13 | 1 | 1 | 11 | 0 | 1 | 0.07692 | 0.07692 | 0.84615 | 0 | |||
TRUE | Tennessee | Henry | 47 | 079 | 47079 | 47079 | 43 | Tennessee | 2472 | Henry | County | County | 10 | 0 | 1 | 8 | 1 | 3 | 0 | 0.1 | 0.8 | 0.1 | |||
TRUE | Tennessee | Hickman | 47 | 081 | 47081 | 47081 | 43 | Tennessee | 2473 | Hickman | County | County | 7 | 0 | 1 | 6 | 0 | 3 | 0 | 0.14286 | 0.85714 | 0 | |||
TRUE | Tennessee | Houston | 47 | 083 | 47083 | 47083 | 43 | Tennessee | 2474 | Houston | County | County | 6 | 0 | 1 | 5 | 0 | 3 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Tennessee | Humphreys | 47 | 085 | 47085 | 47085 | 43 | Tennessee | 2475 | Humphreys | County | County | 9 | 0 | 0 | 9 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Jackson | 47 | 087 | 47087 | 47087 | 43 | Tennessee | 2476 | Jackson | County | County | 6 | 2 | 0 | 3 | 1 | 1 | 0.33333 | 0 | 0.5 | 0.16667 | |||
TRUE | Tennessee | Jefferson | 47 | 089 | 47089 | 47089 | 43 | Tennessee | 2477 | Jefferson | County | County | 20 | 2 | 1 | 14 | 3 | 4 | 0.1 | 0.05 | 0.7 | 0.15 | |||
TRUE | Tennessee | Johnson | 47 | 091 | 47091 | 47091 | 43 | Tennessee | 2478 | Johnson | County | County | 3 | 2 | 0 | 0 | 1 | 2 | 0.66667 | 0 | 0 | 0.33333 | |||
TRUE | Tennessee | Knox | 47 | 093 | 47093 | 47093 | 43 | Tennessee | 2479 | Knox | County | County | 448 | 13 | 64 | 346 | 25 | 22 | 0.02902 | 0.14286 | 0.77232 | 0.0558 | |||
TRUE | Tennessee | Lake | 47 | 095 | 47095 | 47095 | 43 | Tennessee | 2480 | Lake | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Tennessee | Lauderdale | 47 | 097 | 47097 | 47097 | 43 | Tennessee | 2481 | Lauderdale | County | County | 4 | 0 | 0 | 3 | 1 | 1 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Tennessee | Lawrence | 47 | 099 | 47099 | 47099 | 43 | Tennessee | 2482 | Lawrence | County | County | 16 | 0 | 1 | 14 | 1 | 3 | 0 | 0.0625 | 0.875 | 0.0625 | |||
TRUE | Tennessee | Lewis | 47 | 101 | 47101 | 47101 | 43 | Tennessee | 2483 | Lewis | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Lincoln | 47 | 103 | 47103 | 47103 | 43 | Tennessee | 2484 | Lincoln | County | County | 26 | 0 | 0 | 24 | 2 | 5 | 0 | 0 | 0.92308 | 0.07692 | |||
TRUE | Tennessee | Loudon | 47 | 105 | 47105 | 47105 | 43 | Tennessee | 2485 | Loudon | County | County | 24 | 0 | 1 | 20 | 3 | 4 | 0 | 0.04167 | 0.83333 | 0.125 | |||
TRUE | Tennessee | McMinn | 47 | 107 | 47107 | 47107 | 43 | Tennessee | 2491 | McMinn | County | County | 19 | 1 | 0 | 18 | 0 | 5 | 0.05263 | 0 | 0.94737 | 0 | |||
TRUE | Tennessee | McNairy | 47 | 109 | 47109 | 47109 | 43 | Tennessee | 2492 | McNairy | County | County | 12 | 3 | 0 | 9 | 0 | 5 | 0.25 | 0 | 0.75 | 0 | |||
TRUE | Tennessee | Macon | 47 | 111 | 47111 | 47111 | 43 | Tennessee | 2486 | Macon | County | County | 6 | 2 | 1 | 3 | 0 | 2 | 0.33333 | 0.16667 | 0.5 | 0 | |||
TRUE | Tennessee | Madison | 47 | 113 | 47113 | 47113 | 43 | Tennessee | 2487 | Madison | County | County | 49 | 3 | 5 | 40 | 1 | 4 | 0.06122 | 0.10204 | 0.81633 | 0.02041 | |||
TRUE | Tennessee | Marion | 47 | 115 | 47115 | 47115 | 43 | Tennessee | 2488 | Marion | County | County | 14 | 0 | 0 | 14 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Marshall | 47 | 117 | 47117 | 47117 | 43 | Tennessee | 2489 | Marshall | County | County | 15 | 0 | 0 | 14 | 1 | 2 | 0 | 0 | 0.93333 | 0.06667 | |||
TRUE | Tennessee | Maury | 47 | 119 | 47119 | 47119 | 43 | Tennessee | 2490 | Maury | County | County | 48 | 4 | 1 | 40 | 3 | 3 | 0.08333 | 0.02083 | 0.83333 | 0.0625 | |||
TRUE | Tennessee | Meigs | 47 | 121 | 47121 | 47121 | 43 | Tennessee | 2493 | Meigs | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Tennessee | Monroe | 47 | 123 | 47123 | 47123 | 43 | Tennessee | 2494 | Monroe | County | County | 15 | 0 | 2 | 12 | 1 | 4 | 0 | 0.13333 | 0.8 | 0.06667 | |||
TRUE | Tennessee | Montgomery | 47 | 125 | 47125 | 47125 | 43 | Tennessee | 2495 | Montgomery | County | County | 64 | 2 | 13 | 48 | 1 | 5 | 0.03125 | 0.20312 | 0.75 | 0.01562 | |||
TRUE | Tennessee | Moore | 47 | 127 | 47127 | 47127 | 43 | Tennessee | 2496 | Moore | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Morgan | 47 | 129 | 47129 | 47129 | 43 | Tennessee | 2497 | Morgan | County | County | 10 | 1 | 2 | 6 | 1 | 3 | 0.1 | 0.2 | 0.6 | 0.1 | |||
TRUE | Tennessee | Obion | 47 | 131 | 47131 | 47131 | 43 | Tennessee | 2498 | Obion | County | County | 20 | 0 | 2 | 17 | 1 | 4 | 0 | 0.1 | 0.85 | 0.05 | |||
TRUE | Tennessee | Overton | 47 | 133 | 47133 | 47133 | 43 | Tennessee | 2499 | Overton | County | County | 5 | 1 | 0 | 4 | 0 | 2 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | Tennessee | Perry | 47 | 135 | 47135 | 47135 | 43 | Tennessee | 2500 | Perry | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Tennessee | Pickett | 47 | 137 | 47137 | 47137 | 43 | Tennessee | 2501 | Pickett | County | County | 2 | 1 | 0 | 1 | 0 | 1 | 0.5 | 0 | 0.5 | 0 | |||
TRUE | Tennessee | Polk | 47 | 139 | 47139 | 47139 | 43 | Tennessee | 2502 | Polk | County | County | 6 | 0 | 0 | 6 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Putnam | 47 | 141 | 47141 | 47141 | 43 | Tennessee | 2503 | Putnam | County | County | 30 | 0 | 4 | 25 | 1 | 6 | 0 | 0.13333 | 0.83333 | 0.03333 | |||
TRUE | Tennessee | Rhea | 47 | 143 | 47143 | 47143 | 43 | Tennessee | 2504 | Rhea | County | County | 19 | 1 | 1 | 16 | 1 | 2 | 0.05263 | 0.05263 | 0.84211 | 0.05263 | |||
TRUE | Tennessee | Roane | 47 | 145 | 47145 | 47145 | 43 | Tennessee | 2505 | Roane | County | County | 33 | 0 | 2 | 31 | 0 | 3 | 0 | 0.06061 | 0.93939 | 0 | |||
TRUE | Tennessee | Robertson | 47 | 147 | 47147 | 47147 | 43 | Tennessee | 2506 | Robertson | County | County | 35 | 2 | 2 | 27 | 4 | 5 | 0.05714 | 0.05714 | 0.77143 | 0.11429 | |||
TRUE | Tennessee | Rutherford | 47 | 149 | 47149 | 47149 | 43 | Tennessee | 2507 | Rutherford | County | County | 150 | 2 | 32 | 109 | 7 | 11 | 0.01333 | 0.21333 | 0.72667 | 0.04667 | |||
TRUE | Tennessee | Scott | 47 | 151 | 47151 | 47151 | 43 | Tennessee | 2508 | Scott | County | County | 7 | 7 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Tennessee | Sequatchie | 47 | 153 | 47153 | 47153 | 43 | Tennessee | 2509 | Sequatchie | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Sevier | 47 | 155 | 47155 | 47155 | 43 | Tennessee | 2510 | Sevier | County | County | 39 | 2 | 3 | 32 | 2 | 7 | 0.05128 | 0.07692 | 0.82051 | 0.05128 | |||
TRUE | Tennessee | Shelby | 47 | 157 | 47157 | 47157 | 43 | Tennessee | 2511 | Shelby | County | County | 787 | 14 | 77 | 647 | 49 | 37 | 0.01779 | 0.09784 | 0.82211 | 0.06226 | |||
TRUE | Tennessee | Smith | 47 | 159 | 47159 | 47159 | 43 | Tennessee | 2512 | Smith | County | County | 8 | 0 | 0 | 7 | 1 | 3 | 0 | 0 | 0.875 | 0.125 | |||
TRUE | Tennessee | Stewart | 47 | 161 | 47161 | 47161 | 43 | Tennessee | 2513 | Stewart | County | County | 8 | 0 | 0 | 8 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Sullivan | 47 | 163 | 47163 | 47163 | 43 | Tennessee | 2514 | Sullivan | County | County | 128 | 9 | 17 | 85 | 17 | 7 | 0.07031 | 0.13281 | 0.66406 | 0.13281 | |||
TRUE | Tennessee | Sumner | 47 | 165 | 47165 | 47165 | 43 | Tennessee | 2515 | Sumner | County | County | 115 | 6 | 9 | 94 | 6 | 6 | 0.05217 | 0.07826 | 0.81739 | 0.05217 | |||
TRUE | Tennessee | Tipton | 47 | 167 | 47167 | 47167 | 43 | Tennessee | 2516 | Tipton | County | County | 24 | 1 | 3 | 20 | 0 | 6 | 0.04167 | 0.125 | 0.83333 | 0 | |||
TRUE | Tennessee | Trousdale | 47 | 169 | 47169 | 47169 | 43 | Tennessee | 2517 | Trousdale | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Unicoi | 47 | 171 | 47171 | 47171 | 43 | Tennessee | 2518 | Unicoi | County | County | 5 | 0 | 2 | 2 | 1 | 2 | 0 | 0.4 | 0.4 | 0.2 | |||
TRUE | Tennessee | Union | 47 | 173 | 47173 | 47173 | 43 | Tennessee | 2519 | Union | County | County | 6 | 0 | 1 | 5 | 0 | 2 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Tennessee | Van Buren | 47 | 175 | 47175 | 47175 | 43 | Tennessee | 2520 | Van Buren | County | County | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | Tennessee | Warren | 47 | 177 | 47177 | 47177 | 43 | Tennessee | 2521 | Warren | County | County | 11 | 0 | 3 | 8 | 0 | 1 | 0 | 0.27273 | 0.72727 | 0 | |||
TRUE | Tennessee | Washington | 47 | 179 | 47179 | 47179 | 43 | Tennessee | 2522 | Washington | County | County | 63 | 5 | 15 | 37 | 6 | 7 | 0.07937 | 0.2381 | 0.5873 | 0.09524 | |||
TRUE | Tennessee | Wayne | 47 | 181 | 47181 | 47181 | 43 | Tennessee | 2523 | Wayne | County | County | 4 | 0 | 0 | 4 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Tennessee | Weakley | 47 | 183 | 47183 | 47183 | 43 | Tennessee | 2524 | Weakley | County | County | 19 | 1 | 1 | 16 | 1 | 6 | 0.05263 | 0.05263 | 0.84211 | 0.05263 | |||
TRUE | Tennessee | White | 47 | 185 | 47185 | 47185 | 43 | Tennessee | 2525 | White | County | County | 9 | 0 | 0 | 6 | 3 | 1 | 0 | 0 | 0.66667 | 0.33333 | |||
TRUE | Tennessee | Williamson | 47 | 187 | 47187 | 47187 | 43 | Tennessee | 2526 | Williamson | County | County | 169 | 7 | 29 | 132 | 1 | 9 | 0.04142 | 0.1716 | 0.78107 | 0.00592 | |||
TRUE | Tennessee | Wilson | 47 | 189 | 47189 | 47189 | 43 | Tennessee | 2527 | Wilson | County | County | 53 | 0 | 5 | 46 | 2 | 4 | 0 | 0.09434 | 0.86792 | 0.03774 | |||
TRUE | Texas | Anderson | 48 | 001 | 48001 | 48001 | 44 | Texas | 2528 | Anderson | County | County | 19 | 0 | 2 | 15 | 2 | 3 | 0 | 0.10526 | 0.78947 | 0.10526 | |||
TRUE | Texas | Andrews | 48 | 003 | 48003 | 48003 | 44 | Texas | 2529 | Andrews | County | County | 9 | 1 | 2 | 6 | 0 | 1 | 0.11111 | 0.22222 | 0.66667 | 0 | |||
TRUE | Texas | Angelina | 48 | 005 | 48005 | 48005 | 44 | Texas | 2530 | Angelina | County | County | 41 | 0 | 7 | 33 | 1 | 5 | 0 | 0.17073 | 0.80488 | 0.02439 | |||
TRUE | Texas | Aransas | 48 | 007 | 48007 | 48007 | 44 | Texas | 2531 | Aransas | County | County | 13 | 0 | 2 | 11 | 0 | 2 | 0 | 0.15385 | 0.84615 | 0 | |||
TRUE | Texas | Archer | 48 | 009 | 48009 | 48009 | 44 | Texas | 2532 | Archer | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Armstrong | 48 | 011 | 48011 | 48011 | 44 | Texas | 2533 | Armstrong | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Atascosa | 48 | 013 | 48013 | 48013 | 44 | Texas | 2534 | Atascosa | County | County | 23 | 0 | 10 | 10 | 3 | 7 | 0 | 0.43478 | 0.43478 | 0.13043 | |||
TRUE | Texas | Austin | 48 | 015 | 48015 | 48015 | 44 | Texas | 2535 | Austin | County | County | 19 | 0 | 3 | 15 | 1 | 4 | 0 | 0.15789 | 0.78947 | 0.05263 | |||
TRUE | Texas | Bailey | 48 | 017 | 48017 | 48017 | 44 | Texas | 2536 | Bailey | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Bandera | 48 | 019 | 48019 | 48019 | 44 | Texas | 2537 | Bandera | County | County | 9 | 0 | 4 | 5 | 0 | 4 | 0 | 0.44444 | 0.55556 | 0 | |||
TRUE | Texas | Bastrop | 48 | 021 | 48021 | 48021 | 44 | Texas | 2538 | Bastrop | County | County | 27 | 1 | 7 | 17 | 2 | 5 | 0.03704 | 0.25926 | 0.62963 | 0.07407 | |||
TRUE | Texas | Baylor | 48 | 023 | 48023 | 48023 | 44 | Texas | 2539 | Baylor | County | County | 7 | 0 | 0 | 6 | 1 | 1 | 0 | 0 | 0.85714 | 0.14286 | |||
TRUE | Texas | Bee | 48 | 025 | 48025 | 48025 | 44 | Texas | 2540 | Bee | County | County | 13 | 0 | 5 | 7 | 1 | 3 | 0 | 0.38462 | 0.53846 | 0.07692 | |||
TRUE | Texas | Bell | 48 | 027 | 48027 | 48027 | 44 | Texas | 2541 | Bell | County | County | 164 | 6 | 58 | 85 | 15 | 19 | 0.03659 | 0.35366 | 0.51829 | 0.09146 | |||
TRUE | Texas | Bexar | 48 | 029 | 48029 | 48029 | 44 | Texas | 2542 | Bexar | County | County | 925 | 14 | 392 | 455 | 64 | 67 | 0.01514 | 0.42378 | 0.49189 | 0.06919 | |||
TRUE | Texas | Blanco | 48 | 031 | 48031 | 48031 | 44 | Texas | 2543 | Blanco | County | County | 5 | 0 | 0 | 1 | 4 | 2 | 0 | 0 | 0.2 | 0.8 | |||
TRUE | Texas | Borden | 48 | 033 | 48033 | 48033 | 44 | Texas | 2544 | Borden | County | County | 3 | 0 | 0 | 1 | 2 | 2 | 0 | 0 | 0.33333 | 0.66667 | |||
TRUE | Texas | Bosque | 48 | 035 | 48035 | 48035 | 44 | Texas | 2545 | Bosque | County | County | 7 | 0 | 0 | 7 | 0 | 5 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Bowie | 48 | 037 | 48037 | 48037 | 44 | Texas | 2546 | Bowie | County | County | 54 | 1 | 7 | 44 | 2 | 8 | 0.01852 | 0.12963 | 0.81481 | 0.03704 | |||
TRUE | Texas | Brazoria | 48 | 039 | 48039 | 48039 | 44 | Texas | 2547 | Brazoria | County | County | 243 | 3 | 26 | 207 | 7 | 14 | 0.01235 | 0.107 | 0.85185 | 0.02881 | |||
TRUE | Texas | Brazos | 48 | 041 | 48041 | 48041 | 44 | Texas | 2548 | Brazos | County | County | 183 | 1 | 39 | 136 | 7 | 11 | 0.00546 | 0.21311 | 0.74317 | 0.03825 | |||
TRUE | Texas | Brewster | 48 | 043 | 48043 | 48043 | 44 | Texas | 2549 | Brewster | County | County | 10 | 0 | 2 | 7 | 1 | 2 | 0 | 0.2 | 0.7 | 0.1 | |||
TRUE | Texas | Briscoe | 48 | 045 | 48045 | 48045 | 44 | Texas | 2550 | Briscoe | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Brooks | 48 | 047 | 48047 | 48047 | 44 | Texas | 2551 | Brooks | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Brown | 48 | 049 | 48049 | 48049 | 44 | Texas | 2552 | Brown | County | County | 21 | 0 | 0 | 21 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Burleson | 48 | 051 | 48051 | 48051 | 44 | Texas | 2553 | Burleson | County | County | 8 | 0 | 1 | 6 | 1 | 2 | 0 | 0.125 | 0.75 | 0.125 | |||
TRUE | Texas | Burnet | 48 | 053 | 48053 | 48053 | 44 | Texas | 2554 | Burnet | County | County | 8 | 0 | 1 | 7 | 0 | 3 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Texas | Caldwell | 48 | 055 | 48055 | 48055 | 44 | Texas | 2555 | Caldwell | County | County | 10 | 1 | 2 | 7 | 0 | 3 | 0.1 | 0.2 | 0.7 | 0 | |||
TRUE | Texas | Calhoun | 48 | 057 | 48057 | 48057 | 44 | Texas | 2556 | Calhoun | County | County | 8 | 1 | 1 | 6 | 0 | 2 | 0.125 | 0.125 | 0.75 | 0 | |||
TRUE | Texas | Callahan | 48 | 059 | 48059 | 48059 | 44 | Texas | 2557 | Callahan | County | County | 8 | 0 | 1 | 7 | 0 | 3 | 0 | 0.125 | 0.875 | 0 | |||
TRUE | Texas | Cameron | 48 | 061 | 48061 | 48061 | 44 | Texas | 2558 | Cameron | County | County | 94 | 1 | 10 | 80 | 3 | 10 | 0.01064 | 0.10638 | 0.85106 | 0.03191 | |||
TRUE | Texas | Camp | 48 | 063 | 48063 | 48063 | 44 | Texas | 2559 | Camp | County | County | 9 | 1 | 0 | 8 | 0 | 1 | 0.11111 | 0 | 0.88889 | 0 | |||
TRUE | Texas | Carson | 48 | 065 | 48065 | 48065 | 44 | Texas | 2560 | Carson | County | County | 11 | 0 | 1 | 10 | 0 | 3 | 0 | 0.09091 | 0.90909 | 0 | |||
TRUE | Texas | Cass | 48 | 067 | 48067 | 48067 | 44 | Texas | 2561 | Cass | County | County | 25 | 1 | 2 | 22 | 0 | 6 | 0.04 | 0.08 | 0.88 | 0 | |||
TRUE | Texas | Castro | 48 | 069 | 48069 | 48069 | 44 | Texas | 2562 | Castro | County | County | 5 | 0 | 0 | 5 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Chambers | 48 | 071 | 48071 | 48071 | 44 | Texas | 2563 | Chambers | County | County | 16 | 0 | 1 | 15 | 0 | 4 | 0 | 0.0625 | 0.9375 | 0 | |||
TRUE | Texas | Cherokee | 48 | 073 | 48073 | 48073 | 44 | Texas | 2564 | Cherokee | County | County | 21 | 1 | 0 | 17 | 3 | 5 | 0.04762 | 0 | 0.80952 | 0.14286 | |||
TRUE | Texas | Childress | 48 | 075 | 48075 | 48075 | 44 | Texas | 2565 | Childress | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Clay | 48 | 077 | 48077 | 48077 | 44 | Texas | 2566 | Clay | County | County | 5 | 0 | 0 | 5 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Cochran | 48 | 079 | 48079 | 48079 | 44 | Texas | 2567 | Cochran | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Coke | 48 | 081 | 48081 | 48081 | 44 | Texas | 2568 | Coke | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Coleman | 48 | 083 | 48083 | 48083 | 44 | Texas | 2569 | Coleman | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Collin | 48 | 085 | 48085 | 48085 | 44 | Texas | 2570 | Collin | County | County | 628 | 38 | 124 | 447 | 19 | 27 | 0.06051 | 0.19745 | 0.71178 | 0.03025 | |||
TRUE | Texas | Collingsworth | 48 | 087 | 48087 | 48087 | 44 | Texas | 2571 | Collingsworth | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Colorado | 48 | 089 | 48089 | 48089 | 44 | Texas | 2572 | Colorado | County | County | 8 | 0 | 3 | 4 | 1 | 3 | 0 | 0.375 | 0.5 | 0.125 | |||
TRUE | Texas | Comal | 48 | 091 | 48091 | 48091 | 44 | Texas | 2573 | Comal | County | County | 45 | 2 | 16 | 25 | 2 | 7 | 0.04444 | 0.35556 | 0.55556 | 0.04444 | |||
TRUE | Texas | Comanche | 48 | 093 | 48093 | 48093 | 44 | Texas | 2574 | Comanche | County | County | 9 | 0 | 0 | 8 | 1 | 3 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Texas | Concho | 48 | 095 | 48095 | 48095 | 44 | Texas | 2575 | Concho | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Cooke | 48 | 097 | 48097 | 48097 | 44 | Texas | 2576 | Cooke | County | County | 15 | 0 | 1 | 14 | 0 | 6 | 0 | 0.06667 | 0.93333 | 0 | |||
TRUE | Texas | Coryell | 48 | 099 | 48099 | 48099 | 44 | Texas | 2577 | Coryell | County | County | 24 | 1 | 10 | 13 | 0 | 5 | 0.04167 | 0.41667 | 0.54167 | 0 | |||
TRUE | Texas | Cottle | 48 | 101 | 48101 | 48101 | 44 | Texas | 2578 | Cottle | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Crane | 48 | 103 | 48103 | 48103 | 44 | Texas | 2579 | Crane | County | County | 5 | 0 | 0 | 5 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Crockett | 48 | 105 | 48105 | 48105 | 44 | Texas | 2580 | Crockett | County | County | 4 | 0 | 0 | 3 | 1 | 1 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Texas | Crosby | 48 | 107 | 48107 | 48107 | 44 | Texas | 2581 | Crosby | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Texas | Culberson | 48 | 109 | 48109 | 48109 | 44 | Texas | 2582 | Culberson | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Dallam | 48 | 111 | 48111 | 48111 | 44 | Texas | 2583 | Dallam | County | County | 15 | 1 | 0 | 14 | 0 | 2 | 0.06667 | 0 | 0.93333 | 0 | |||
TRUE | Texas | Dallas | 48 | 113 | 48113 | 48113 | 44 | Texas | 2584 | Dallas | County | County | 1869 | 38 | 273 | 1452 | 106 | 90 | 0.02033 | 0.14607 | 0.77689 | 0.05671 | |||
TRUE | Texas | Dawson | 48 | 115 | 48115 | 48115 | 44 | Texas | 2585 | Dawson | County | County | 6 | 0 | 1 | 5 | 0 | 3 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Texas | Deaf Smith | 48 | 117 | 48117 | 48117 | 44 | Texas | 2586 | Deaf Smith | County | County | 15 | 0 | 1 | 14 | 0 | 2 | 0 | 0.06667 | 0.93333 | 0 | |||
TRUE | Texas | Delta | 48 | 119 | 48119 | 48119 | 44 | Texas | 2587 | Delta | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Denton | 48 | 121 | 48121 | 48121 | 44 | Texas | 2588 | Denton | County | County | 420 | 9 | 70 | 327 | 14 | 27 | 0.02143 | 0.16667 | 0.77857 | 0.03333 | |||
FALSE | Texas | De Witt | 48 | 123 | 48123 | 48123 | 44 | Texas | 2589 | Dewitt | County | County | 11 | 0 | 2 | 5 | 4 | 4 | 0 | 0.18182 | 0.45455 | 0.36364 | |||
TRUE | Texas | Dickens | 48 | 125 | 48125 | 48125 | 44 | Texas | 2590 | Dickens | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Dimmit | 48 | 127 | 48127 | 48127 | 44 | Texas | 2591 | Dimmit | County | County | 5 | 0 | 2 | 3 | 0 | 4 | 0 | 0.4 | 0.6 | 0 | |||
TRUE | Texas | Donley | 48 | 129 | 48129 | 48129 | 44 | Texas | 2592 | Donley | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Duval | 48 | 131 | 48131 | 48131 | 44 | Texas | 2593 | Duval | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Eastland | 48 | 133 | 48133 | 48133 | 44 | Texas | 2594 | Eastland | County | County | 13 | 0 | 2 | 10 | 1 | 5 | 0 | 0.15385 | 0.76923 | 0.07692 | |||
TRUE | Texas | Ector | 48 | 135 | 48135 | 48135 | 44 | Texas | 2595 | Ector | County | County | 104 | 2 | 6 | 93 | 3 | 7 | 0.01923 | 0.05769 | 0.89423 | 0.02885 | |||
TRUE | Texas | Edwards | 48 | 137 | 48137 | 48137 | 44 | Texas | 2596 | Edwards | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Ellis | 48 | 139 | 48139 | 48139 | 44 | Texas | 2598 | Ellis | County | County | 90 | 1 | 9 | 77 | 3 | 9 | 0.01111 | 0.1 | 0.85556 | 0.03333 | |||
TRUE | Texas | El Paso | 48 | 141 | 48141 | 48141 | 44 | Texas | 2597 | El Paso | County | County | 281 | 6 | 82 | 191 | 2 | 24 | 0.02135 | 0.29181 | 0.67972 | 0.00712 | |||
TRUE | Texas | Erath | 48 | 143 | 48143 | 48143 | 44 | Texas | 2599 | Erath | County | County | 17 | 0 | 3 | 14 | 0 | 2 | 0 | 0.17647 | 0.82353 | 0 | |||
TRUE | Texas | Falls | 48 | 145 | 48145 | 48145 | 44 | Texas | 2600 | Falls | County | County | 7 | 0 | 1 | 5 | 1 | 3 | 0 | 0.14286 | 0.71429 | 0.14286 | |||
TRUE | Texas | Fannin | 48 | 147 | 48147 | 48147 | 44 | Texas | 2601 | Fannin | County | County | 19 | 0 | 0 | 17 | 2 | 4 | 0 | 0 | 0.89474 | 0.10526 | |||
TRUE | Texas | Fayette | 48 | 149 | 48149 | 48149 | 44 | Texas | 2602 | Fayette | County | County | 18 | 0 | 8 | 9 | 1 | 6 | 0 | 0.44444 | 0.5 | 0.05556 | |||
TRUE | Texas | Fisher | 48 | 151 | 48151 | 48151 | 44 | Texas | 2603 | Fisher | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Floyd | 48 | 153 | 48153 | 48153 | 44 | Texas | 2604 | Floyd | County | County | 18 | 0 | 0 | 18 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Foard | 48 | 155 | 48155 | 48155 | 44 | Texas | 2605 | Foard | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Fort Bend | 48 | 157 | 48157 | 48157 | 44 | Texas | 2606 | Fort Bend | County | County | 296 | 4 | 48 | 231 | 13 | 16 | 0.01351 | 0.16216 | 0.78041 | 0.04392 | |||
TRUE | Texas | Franklin | 48 | 159 | 48159 | 48159 | 44 | Texas | 2607 | Franklin | County | County | 5 | 0 | 1 | 4 | 0 | 2 | 0 | 0.2 | 0.8 | 0 | |||
TRUE | Texas | Freestone | 48 | 161 | 48161 | 48161 | 44 | Texas | 2608 | Freestone | County | County | 15 | 0 | 3 | 10 | 2 | 3 | 0 | 0.2 | 0.66667 | 0.13333 | |||
TRUE | Texas | Frio | 48 | 163 | 48163 | 48163 | 44 | Texas | 2609 | Frio | County | County | 4 | 0 | 2 | 2 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Texas | Gaines | 48 | 165 | 48165 | 48165 | 44 | Texas | 2610 | Gaines | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Texas | Galveston | 48 | 167 | 48167 | 48167 | 44 | Texas | 2611 | Galveston | County | County | 244 | 0 | 37 | 195 | 12 | 16 | 0 | 0.15164 | 0.79918 | 0.04918 | |||
TRUE | Texas | Garza | 48 | 169 | 48169 | 48169 | 44 | Texas | 2612 | Garza | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Gillespie | 48 | 171 | 48171 | 48171 | 44 | Texas | 2613 | Gillespie | County | County | 14 | 0 | 3 | 11 | 0 | 1 | 0 | 0.21429 | 0.78571 | 0 | |||
TRUE | Texas | Glasscock | 48 | 173 | 48173 | 48173 | 44 | Texas | 2614 | Glasscock | County | County | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | |||
TRUE | Texas | Goliad | 48 | 175 | 48175 | 48175 | 44 | Texas | 2615 | Goliad | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Gonzales | 48 | 177 | 48177 | 48177 | 44 | Texas | 2616 | Gonzales | County | County | 12 | 0 | 2 | 8 | 2 | 4 | 0 | 0.16667 | 0.66667 | 0.16667 | |||
TRUE | Texas | Gray | 48 | 179 | 48179 | 48179 | 44 | Texas | 2617 | Gray | County | County | 18 | 1 | 3 | 14 | 0 | 2 | 0.05556 | 0.16667 | 0.77778 | 0 | |||
TRUE | Texas | Grayson | 48 | 181 | 48181 | 48181 | 44 | Texas | 2618 | Grayson | County | County | 83 | 1 | 8 | 71 | 3 | 12 | 0.01205 | 0.09639 | 0.85542 | 0.03614 | |||
TRUE | Texas | Gregg | 48 | 183 | 48183 | 48183 | 44 | Texas | 2619 | Gregg | County | County | 118 | 6 | 11 | 98 | 3 | 10 | 0.05085 | 0.09322 | 0.83051 | 0.02542 | |||
TRUE | Texas | Grimes | 48 | 185 | 48185 | 48185 | 44 | Texas | 2620 | Grimes | County | County | 11 | 0 | 1 | 8 | 2 | 3 | 0 | 0.09091 | 0.72727 | 0.18182 | |||
TRUE | Texas | Guadalupe | 48 | 187 | 48187 | 48187 | 44 | Texas | 2621 | Guadalupe | County | County | 36 | 0 | 18 | 16 | 2 | 4 | 0 | 0.5 | 0.44444 | 0.05556 | |||
TRUE | Texas | Hale | 48 | 189 | 48189 | 48189 | 44 | Texas | 2622 | Hale | County | County | 20 | 0 | 1 | 18 | 1 | 3 | 0 | 0.05 | 0.9 | 0.05 | |||
TRUE | Texas | Hall | 48 | 191 | 48191 | 48191 | 44 | Texas | 2623 | Hall | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Hamilton | 48 | 193 | 48193 | 48193 | 44 | Texas | 2624 | Hamilton | County | County | 7 | 0 | 0 | 7 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Hansford | 48 | 195 | 48195 | 48195 | 44 | Texas | 2625 | Hansford | County | County | 7 | 0 | 0 | 7 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Hardeman | 48 | 197 | 48197 | 48197 | 44 | Texas | 2626 | Hardeman | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Hardin | 48 | 199 | 48199 | 48199 | 44 | Texas | 2627 | Hardin | County | County | 20 | 0 | 1 | 19 | 0 | 5 | 0 | 0.05 | 0.95 | 0 | |||
TRUE | Texas | Harris | 48 | 201 | 48201 | 48201 | 44 | Texas | 2628 | Harris | County | County | 3632 | 37 | 909 | 2553 | 133 | 141 | 0.01019 | 0.25028 | 0.70292 | 0.03662 | |||
TRUE | Texas | Harrison | 48 | 203 | 48203 | 48203 | 44 | Texas | 2629 | Harrison | County | County | 40 | 0 | 7 | 30 | 3 | 6 | 0 | 0.175 | 0.75 | 0.075 | |||
TRUE | Texas | Hartley | 48 | 205 | 48205 | 48205 | 44 | Texas | 2630 | Hartley | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Haskell | 48 | 207 | 48207 | 48207 | 44 | Texas | 2631 | Haskell | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Hays | 48 | 209 | 48209 | 48209 | 44 | Texas | 2632 | Hays | County | County | 68 | 2 | 7 | 59 | 0 | 7 | 0.02941 | 0.10294 | 0.86765 | 0 | |||
TRUE | Texas | Hemphill | 48 | 211 | 48211 | 48211 | 44 | Texas | 2633 | Hemphill | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Henderson | 48 | 213 | 48213 | 48213 | 44 | Texas | 2634 | Henderson | County | County | 37 | 2 | 3 | 30 | 2 | 10 | 0.05405 | 0.08108 | 0.81081 | 0.05405 | |||
TRUE | Texas | Hidalgo | 48 | 215 | 48215 | 48215 | 44 | Texas | 2635 | Hidalgo | County | County | 164 | 2 | 19 | 137 | 6 | 19 | 0.0122 | 0.11585 | 0.83537 | 0.03659 | |||
TRUE | Texas | Hill | 48 | 217 | 48217 | 48217 | 44 | Texas | 2636 | Hill | County | County | 10 | 0 | 3 | 6 | 1 | 5 | 0 | 0.3 | 0.6 | 0.1 | |||
TRUE | Texas | Hockley | 48 | 219 | 48219 | 48219 | 44 | Texas | 2637 | Hockley | County | County | 13 | 0 | 1 | 12 | 0 | 4 | 0 | 0.07692 | 0.92308 | 0 | |||
TRUE | Texas | Hood | 48 | 221 | 48221 | 48221 | 44 | Texas | 2638 | Hood | County | County | 21 | 0 | 4 | 15 | 2 | 2 | 0 | 0.19048 | 0.71429 | 0.09524 | |||
TRUE | Texas | Hopkins | 48 | 223 | 48223 | 48223 | 44 | Texas | 2639 | Hopkins | County | County | 17 | 0 | 0 | 17 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Houston | 48 | 225 | 48225 | 48225 | 44 | Texas | 2640 | Houston | County | County | 12 | 0 | 1 | 9 | 2 | 4 | 0 | 0.08333 | 0.75 | 0.16667 | |||
TRUE | Texas | Howard | 48 | 227 | 48227 | 48227 | 44 | Texas | 2641 | Howard | County | County | 34 | 0 | 3 | 29 | 2 | 3 | 0 | 0.08824 | 0.85294 | 0.05882 | |||
TRUE | Texas | Hudspeth | 48 | 229 | 48229 | 48229 | 44 | Texas | 2642 | Hudspeth | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Hunt | 48 | 231 | 48231 | 48231 | 44 | Texas | 2643 | Hunt | County | County | 70 | 3 | 3 | 60 | 4 | 8 | 0.04286 | 0.04286 | 0.85714 | 0.05714 | |||
TRUE | Texas | Hutchinson | 48 | 233 | 48233 | 48233 | 44 | Texas | 2644 | Hutchinson | County | County | 33 | 1 | 2 | 29 | 1 | 4 | 0.0303 | 0.06061 | 0.87879 | 0.0303 | |||
TRUE | Texas | Irion | 48 | 235 | 48235 | 48235 | 44 | Texas | 2645 | Irion | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Jack | 48 | 237 | 48237 | 48237 | 44 | Texas | 2646 | Jack | County | County | 7 | 0 | 0 | 7 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Jackson | 48 | 239 | 48239 | 48239 | 44 | Texas | 2647 | Jackson | County | County | 6 | 0 | 0 | 6 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Jasper | 48 | 241 | 48241 | 48241 | 44 | Texas | 2648 | Jasper | County | County | 11 | 0 | 6 | 4 | 1 | 3 | 0 | 0.54545 | 0.36364 | 0.09091 | |||
TRUE | Texas | Jeff Davis | 48 | 243 | 48243 | 48243 | 44 | Texas | 2649 | Jeff Davis | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Jefferson | 48 | 245 | 48245 | 48245 | 44 | Texas | 2650 | Jefferson | County | County | 205 | 4 | 22 | 167 | 12 | 18 | 0.01951 | 0.10732 | 0.81463 | 0.05854 | |||
TRUE | Texas | Jim Hogg | 48 | 247 | 48247 | 48247 | 44 | Texas | 2651 | Jim Hogg | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Jim Wells | 48 | 249 | 48249 | 48249 | 44 | Texas | 2652 | Jim Wells | County | County | 12 | 0 | 2 | 10 | 0 | 5 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Texas | Johnson | 48 | 251 | 48251 | 48251 | 44 | Texas | 2653 | Johnson | County | County | 91 | 3 | 15 | 71 | 2 | 8 | 0.03297 | 0.16484 | 0.78022 | 0.02198 | |||
TRUE | Texas | Jones | 48 | 253 | 48253 | 48253 | 44 | Texas | 2654 | Jones | County | County | 10 | 0 | 0 | 10 | 0 | 5 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Karnes | 48 | 255 | 48255 | 48255 | 44 | Texas | 2655 | Karnes | County | County | 4 | 0 | 1 | 3 | 0 | 3 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Texas | Kaufman | 48 | 257 | 48257 | 48257 | 44 | Texas | 2656 | Kaufman | County | County | 34 | 0 | 5 | 27 | 2 | 5 | 0 | 0.14706 | 0.79412 | 0.05882 | |||
TRUE | Texas | Kendall | 48 | 259 | 48259 | 48259 | 44 | Texas | 2657 | Kendall | County | County | 26 | 3 | 4 | 18 | 1 | 3 | 0.11538 | 0.15385 | 0.69231 | 0.03846 | |||
TRUE | Texas | Kenedy | 48 | 261 | 48261 | 48261 | 44 | Texas | 2658 | Kenedy | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Kent | 48 | 263 | 48263 | 48263 | 44 | Texas | 2659 | Kent | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Kerr | 48 | 265 | 48265 | 48265 | 44 | Texas | 2660 | Kerr | County | County | 20 | 0 | 2 | 17 | 1 | 3 | 0 | 0.1 | 0.85 | 0.05 | |||
TRUE | Texas | Kimble | 48 | 267 | 48267 | 48267 | 44 | Texas | 2661 | Kimble | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | King | 48 | 269 | 48269 | 48269 | 44 | Texas | 2662 | King | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Kinney | 48 | 271 | 48271 | 48271 | 44 | Texas | 2663 | Kinney | County | County | 2 | 0 | 1 | 1 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Texas | Kleberg | 48 | 273 | 48273 | 48273 | 44 | Texas | 2664 | Kleberg | County | County | 11 | 1 | 0 | 10 | 0 | 1 | 0.09091 | 0 | 0.90909 | 0 | |||
TRUE | Texas | Knox | 48 | 275 | 48275 | 48275 | 44 | Texas | 2665 | Knox | County | County | 4 | 0 | 0 | 3 | 1 | 2 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Texas | Lamar | 48 | 277 | 48277 | 48277 | 44 | Texas | 2667 | Lamar | County | County | 29 | 1 | 2 | 24 | 2 | 8 | 0.03448 | 0.06897 | 0.82759 | 0.06897 | |||
TRUE | Texas | Lamb | 48 | 279 | 48279 | 48279 | 44 | Texas | 2668 | Lamb | County | County | 10 | 0 | 0 | 10 | 0 | 5 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Lampasas | 48 | 281 | 48281 | 48281 | 44 | Texas | 2669 | Lampasas | County | County | 7 | 0 | 1 | 5 | 1 | 1 | 0 | 0.14286 | 0.71429 | 0.14286 | |||
TRUE | Texas | La Salle | 48 | 283 | 48283 | 48283 | 44 | Texas | 2666 | La Salle | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Lavaca | 48 | 285 | 48285 | 48285 | 44 | Texas | 2670 | Lavaca | County | County | 6 | 0 | 5 | 1 | 0 | 4 | 0 | 0.83333 | 0.16667 | 0 | |||
TRUE | Texas | Lee | 48 | 287 | 48287 | 48287 | 44 | Texas | 2671 | Lee | County | County | 8 | 0 | 1 | 6 | 1 | 3 | 0 | 0.125 | 0.75 | 0.125 | |||
TRUE | Texas | Leon | 48 | 289 | 48289 | 48289 | 44 | Texas | 2672 | Leon | County | County | 7 | 0 | 0 | 7 | 0 | 5 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Liberty | 48 | 291 | 48291 | 48291 | 44 | Texas | 2673 | Liberty | County | County | 39 | 2 | 3 | 30 | 4 | 6 | 0.05128 | 0.07692 | 0.76923 | 0.10256 | |||
TRUE | Texas | Limestone | 48 | 293 | 48293 | 48293 | 44 | Texas | 2674 | Limestone | County | County | 6 | 0 | 1 | 5 | 0 | 2 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Texas | Lipscomb | 48 | 295 | 48295 | 48295 | 44 | Texas | 2675 | Lipscomb | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Live Oak | 48 | 297 | 48297 | 48297 | 44 | Texas | 2676 | Live Oak | County | County | 2 | 0 | 1 | 1 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Texas | Llano | 48 | 299 | 48299 | 48299 | 44 | Texas | 2677 | Llano | County | County | 5 | 0 | 0 | 4 | 1 | 4 | 0 | 0 | 0.8 | 0.2 | |||
TRUE | Texas | Loving | 48 | 301 | 48301 | 48301 | 44 | Texas | 2678 | Loving | County | County | 2 | 0 | 1 | 1 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Texas | Lubbock | 48 | 303 | 48303 | 48303 | 44 | Texas | 2679 | Lubbock | County | County | 240 | 6 | 20 | 207 | 7 | 24 | 0.025 | 0.08333 | 0.8625 | 0.02917 | |||
TRUE | Texas | Lynn | 48 | 305 | 48305 | 48305 | 44 | Texas | 2680 | Lynn | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | McCulloch | 48 | 307 | 48307 | 48307 | 44 | Texas | 2687 | McCulloch | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Texas | McLennan | 48 | 309 | 48309 | 48309 | 44 | Texas | 2688 | McLennan | County | County | 161 | 4 | 39 | 101 | 17 | 22 | 0.02484 | 0.24224 | 0.62733 | 0.10559 | |||
TRUE | Texas | McMullen | 48 | 311 | 48311 | 48311 | 44 | Texas | 2689 | McMullen | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Madison | 48 | 313 | 48313 | 48313 | 44 | Texas | 2681 | Madison | County | County | 2 | 0 | 1 | 0 | 1 | 1 | 0 | 0.5 | 0 | 0.5 | |||
TRUE | Texas | Marion | 48 | 315 | 48315 | 48315 | 44 | Texas | 2682 | Marion | County | County | 6 | 0 | 1 | 5 | 0 | 2 | 0 | 0.16667 | 0.83333 | 0 | |||
TRUE | Texas | Martin | 48 | 317 | 48317 | 48317 | 44 | Texas | 2683 | Martin | County | County | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Mason | 48 | 319 | 48319 | 48319 | 44 | Texas | 2684 | Mason | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Matagorda | 48 | 321 | 48321 | 48321 | 44 | Texas | 2685 | Matagorda | County | County | 15 | 0 | 1 | 13 | 1 | 2 | 0 | 0.06667 | 0.86667 | 0.06667 | |||
TRUE | Texas | Maverick | 48 | 323 | 48323 | 48323 | 44 | Texas | 2686 | Maverick | County | County | 9 | 1 | 1 | 6 | 1 | 1 | 0.11111 | 0.11111 | 0.66667 | 0.11111 | |||
TRUE | Texas | Medina | 48 | 325 | 48325 | 48325 | 44 | Texas | 2690 | Medina | County | County | 21 | 1 | 8 | 9 | 3 | 6 | 0.04762 | 0.38095 | 0.42857 | 0.14286 | |||
TRUE | Texas | Menard | 48 | 327 | 48327 | 48327 | 44 | Texas | 2691 | Menard | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Midland | 48 | 329 | 48329 | 48329 | 44 | Texas | 2692 | Midland | County | County | 126 | 3 | 15 | 104 | 4 | 8 | 0.02381 | 0.11905 | 0.8254 | 0.03175 | |||
TRUE | Texas | Milam | 48 | 331 | 48331 | 48331 | 44 | Texas | 2693 | Milam | County | County | 11 | 0 | 4 | 7 | 0 | 3 | 0 | 0.36364 | 0.63636 | 0 | |||
TRUE | Texas | Mills | 48 | 333 | 48333 | 48333 | 44 | Texas | 2694 | Mills | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Texas | Mitchell | 48 | 335 | 48335 | 48335 | 44 | Texas | 2695 | Mitchell | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Montague | 48 | 337 | 48337 | 48337 | 44 | Texas | 2696 | Montague | County | County | 18 | 0 | 0 | 17 | 1 | 5 | 0 | 0 | 0.94444 | 0.05556 | |||
TRUE | Texas | Montgomery | 48 | 339 | 48339 | 48339 | 44 | Texas | 2697 | Montgomery | County | County | 284 | 6 | 46 | 224 | 8 | 23 | 0.02113 | 0.16197 | 0.78873 | 0.02817 | |||
TRUE | Texas | Moore | 48 | 341 | 48341 | 48341 | 44 | Texas | 2698 | Moore | County | County | 17 | 0 | 1 | 15 | 1 | 1 | 0 | 0.05882 | 0.88235 | 0.05882 | |||
TRUE | Texas | Morris | 48 | 343 | 48343 | 48343 | 44 | Texas | 2699 | Morris | County | County | 5 | 0 | 0 | 5 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Motley | 48 | 345 | 48345 | 48345 | 44 | Texas | 2700 | Motley | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Nacogdoches | 48 | 347 | 48347 | 48347 | 44 | Texas | 2701 | Nacogdoches | County | County | 29 | 2 | 3 | 24 | 0 | 5 | 0.06897 | 0.10345 | 0.82759 | 0 | |||
TRUE | Texas | Navarro | 48 | 349 | 48349 | 48349 | 44 | Texas | 2702 | Navarro | County | County | 28 | 1 | 2 | 24 | 1 | 6 | 0.03571 | 0.07143 | 0.85714 | 0.03571 | |||
TRUE | Texas | Newton | 48 | 351 | 48351 | 48351 | 44 | Texas | 2703 | Newton | County | County | 2 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Nolan | 48 | 353 | 48353 | 48353 | 44 | Texas | 2704 | Nolan | County | County | 12 | 0 | 0 | 12 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Nueces | 48 | 355 | 48355 | 48355 | 44 | Texas | 2705 | Nueces | County | County | 228 | 2 | 55 | 165 | 6 | 19 | 0.00877 | 0.24123 | 0.72368 | 0.02632 | |||
TRUE | Texas | Ochiltree | 48 | 357 | 48357 | 48357 | 44 | Texas | 2706 | Ochiltree | County | County | 6 | 0 | 0 | 6 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Oldham | 48 | 359 | 48359 | 48359 | 44 | Texas | 2707 | Oldham | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Orange | 48 | 361 | 48361 | 48361 | 44 | Texas | 2708 | Orange | County | County | 61 | 1 | 4 | 51 | 5 | 7 | 0.01639 | 0.06557 | 0.83607 | 0.08197 | |||
TRUE | Texas | Palo Pinto | 48 | 363 | 48363 | 48363 | 44 | Texas | 2709 | Palo Pinto | County | County | 23 | 0 | 2 | 21 | 0 | 2 | 0 | 0.08696 | 0.91304 | 0 | |||
TRUE | Texas | Panola | 48 | 365 | 48365 | 48365 | 44 | Texas | 2710 | Panola | County | County | 10 | 0 | 2 | 7 | 1 | 2 | 0 | 0.2 | 0.7 | 0.1 | |||
TRUE | Texas | Parker | 48 | 367 | 48367 | 48367 | 44 | Texas | 2711 | Parker | County | County | 70 | 2 | 8 | 57 | 3 | 8 | 0.02857 | 0.11429 | 0.81429 | 0.04286 | |||
TRUE | Texas | Parmer | 48 | 369 | 48369 | 48369 | 44 | Texas | 2712 | Parmer | County | County | 8 | 0 | 0 | 8 | 0 | 3 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Pecos | 48 | 371 | 48371 | 48371 | 44 | Texas | 2713 | Pecos | County | County | 9 | 0 | 0 | 8 | 1 | 2 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Texas | Polk | 48 | 373 | 48373 | 48373 | 44 | Texas | 2714 | Polk | County | County | 15 | 0 | 4 | 10 | 1 | 5 | 0 | 0.26667 | 0.66667 | 0.06667 | |||
TRUE | Texas | Potter | 48 | 375 | 48375 | 48375 | 44 | Texas | 2715 | Potter | County | County | 68 | 1 | 5 | 59 | 3 | 10 | 0.01471 | 0.07353 | 0.86765 | 0.04412 | |||
TRUE | Texas | Presidio | 48 | 377 | 48377 | 48377 | 44 | Texas | 2716 | Presidio | County | County | 2 | 0 | 1 | 1 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Texas | Rains | 48 | 379 | 48379 | 48379 | 44 | Texas | 2717 | Rains | County | County | 5 | 0 | 1 | 3 | 1 | 2 | 0 | 0.2 | 0.6 | 0.2 | |||
TRUE | Texas | Randall | 48 | 381 | 48381 | 48381 | 44 | Texas | 2718 | Randall | County | County | 106 | 0 | 2 | 102 | 2 | 8 | 0 | 0.01887 | 0.96226 | 0.01887 | |||
TRUE | Texas | Reagan | 48 | 383 | 48383 | 48383 | 44 | Texas | 2719 | Reagan | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Real | 48 | 385 | 48385 | 48385 | 44 | Texas | 2720 | Real | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Red River | 48 | 387 | 48387 | 48387 | 44 | Texas | 2721 | Red River | County | County | 7 | 1 | 0 | 6 | 0 | 3 | 0.14286 | 0 | 0.85714 | 0 | |||
TRUE | Texas | Reeves | 48 | 389 | 48389 | 48389 | 44 | Texas | 2722 | Reeves | County | County | 6 | 0 | 0 | 5 | 1 | 2 | 0 | 0 | 0.83333 | 0.16667 | |||
TRUE | Texas | Refugio | 48 | 391 | 48391 | 48391 | 44 | Texas | 2723 | Refugio | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Roberts | 48 | 393 | 48393 | 48393 | 44 | Texas | 2724 | Roberts | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Robertson | 48 | 395 | 48395 | 48395 | 44 | Texas | 2725 | Robertson | County | County | 8 | 0 | 2 | 4 | 2 | 3 | 0 | 0.25 | 0.5 | 0.25 | |||
TRUE | Texas | Rockwall | 48 | 397 | 48397 | 48397 | 44 | Texas | 2726 | Rockwall | County | County | 47 | 1 | 9 | 37 | 0 | 4 | 0.02128 | 0.19149 | 0.78723 | 0 | |||
TRUE | Texas | Runnels | 48 | 399 | 48399 | 48399 | 44 | Texas | 2727 | Runnels | County | County | 8 | 0 | 0 | 8 | 0 | 4 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Rusk | 48 | 401 | 48401 | 48401 | 44 | Texas | 2728 | Rusk | County | County | 16 | 0 | 0 | 16 | 0 | 6 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Sabine | 48 | 403 | 48403 | 48403 | 44 | Texas | 2729 | Sabine | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | San Augustine | 48 | 405 | 48405 | 48405 | 44 | Texas | 2730 | San Augustine | County | County | 4 | 0 | 1 | 3 | 0 | 2 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Texas | San Jacinto | 48 | 407 | 48407 | 48407 | 44 | Texas | 2731 | San Jacinto | County | County | 7 | 0 | 3 | 4 | 0 | 3 | 0 | 0.42857 | 0.57143 | 0 | |||
TRUE | Texas | San Patricio | 48 | 409 | 48409 | 48409 | 44 | Texas | 2732 | San Patricio | County | County | 44 | 3 | 4 | 36 | 1 | 8 | 0.06818 | 0.09091 | 0.81818 | 0.02273 | |||
TRUE | Texas | San Saba | 48 | 411 | 48411 | 48411 | 44 | Texas | 2733 | San Saba | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Schleicher | 48 | 413 | 48413 | 48413 | 44 | Texas | 2734 | Schleicher | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Scurry | 48 | 415 | 48415 | 48415 | 44 | Texas | 2735 | Scurry | County | County | 15 | 0 | 1 | 13 | 1 | 4 | 0 | 0.06667 | 0.86667 | 0.06667 | |||
TRUE | Texas | Shackelford | 48 | 417 | 48417 | 48417 | 44 | Texas | 2736 | Shackelford | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Shelby | 48 | 419 | 48419 | 48419 | 44 | Texas | 2737 | Shelby | County | County | 12 | 0 | 2 | 9 | 1 | 4 | 0 | 0.16667 | 0.75 | 0.08333 | |||
TRUE | Texas | Sherman | 48 | 421 | 48421 | 48421 | 44 | Texas | 2738 | Sherman | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Smith | 48 | 423 | 48423 | 48423 | 44 | Texas | 2739 | Smith | County | County | 119 | 2 | 13 | 99 | 5 | 16 | 0.01681 | 0.10924 | 0.83193 | 0.04202 | |||
TRUE | Texas | Somervell | 48 | 425 | 48425 | 48425 | 44 | Texas | 2740 | Somervell | County | County | 5 | 0 | 1 | 3 | 1 | 2 | 0 | 0.2 | 0.6 | 0.2 | |||
TRUE | Texas | Starr | 48 | 427 | 48427 | 48427 | 44 | Texas | 2741 | Starr | County | County | 9 | 0 | 2 | 7 | 0 | 2 | 0 | 0.22222 | 0.77778 | 0 | |||
TRUE | Texas | Stephens | 48 | 429 | 48429 | 48429 | 44 | Texas | 2742 | Stephens | County | County | 9 | 0 | 0 | 9 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Sterling | 48 | 431 | 48431 | 48431 | 44 | Texas | 2743 | Sterling | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Stonewall | 48 | 433 | 48433 | 48433 | 44 | Texas | 2744 | Stonewall | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Sutton | 48 | 435 | 48435 | 48435 | 44 | Texas | 2745 | Sutton | County | County | 2 | 0 | 1 | 1 | 0 | 1 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Texas | Swisher | 48 | 437 | 48437 | 48437 | 44 | Texas | 2746 | Swisher | County | County | 3 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Tarrant | 48 | 439 | 48439 | 48439 | 44 | Texas | 2747 | Tarrant | County | County | 1349 | 32 | 250 | 1020 | 47 | 67 | 0.02372 | 0.18532 | 0.75612 | 0.03484 | |||
TRUE | Texas | Taylor | 48 | 441 | 48441 | 48441 | 44 | Texas | 2748 | Taylor | County | County | 102 | 2 | 14 | 78 | 8 | 11 | 0.01961 | 0.13725 | 0.76471 | 0.07843 | |||
TRUE | Texas | Terrell | 48 | 443 | 48443 | 48443 | 44 | Texas | 2749 | Terrell | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Terry | 48 | 445 | 48445 | 48445 | 44 | Texas | 2750 | Terry | County | County | 8 | 0 | 0 | 8 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Throckmorton | 48 | 447 | 48447 | 48447 | 44 | Texas | 2751 | Throckmorton | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Texas | Titus | 48 | 449 | 48449 | 48449 | 44 | Texas | 2752 | Titus | County | County | 11 | 0 | 2 | 9 | 0 | 1 | 0 | 0.18182 | 0.81818 | 0 | |||
TRUE | Texas | Tom Green | 48 | 451 | 48451 | 48451 | 44 | Texas | 2753 | Tom Green | County | County | 86 | 5 | 11 | 68 | 2 | 7 | 0.05814 | 0.12791 | 0.7907 | 0.02326 | |||
TRUE | Texas | Travis | 48 | 453 | 48453 | 48453 | 44 | Texas | 2754 | Travis | County | County | 1150 | 23 | 263 | 820 | 44 | 54 | 0.02 | 0.2287 | 0.71304 | 0.03826 | |||
TRUE | Texas | Trinity | 48 | 455 | 48455 | 48455 | 44 | Texas | 2755 | Trinity | County | County | 4 | 0 | 0 | 4 | 0 | 2 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Tyler | 48 | 457 | 48457 | 48457 | 44 | Texas | 2756 | Tyler | County | County | 9 | 0 | 2 | 6 | 1 | 3 | 0 | 0.22222 | 0.66667 | 0.11111 | |||
TRUE | Texas | Upshur | 48 | 459 | 48459 | 48459 | 44 | Texas | 2757 | Upshur | County | County | 13 | 0 | 1 | 12 | 0 | 4 | 0 | 0.07692 | 0.92308 | 0 | |||
TRUE | Texas | Upton | 48 | 461 | 48461 | 48461 | 44 | Texas | 2758 | Upton | County | County | 2 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Uvalde | 48 | 463 | 48463 | 48463 | 44 | Texas | 2759 | Uvalde | County | County | 14 | 0 | 0 | 14 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Val Verde | 48 | 465 | 48465 | 48465 | 44 | Texas | 2760 | Val Verde | County | County | 13 | 1 | 2 | 10 | 0 | 2 | 0.07692 | 0.15385 | 0.76923 | 0 | |||
TRUE | Texas | Van Zandt | 48 | 467 | 48467 | 48467 | 44 | Texas | 2761 | Van Zandt | County | County | 22 | 1 | 3 | 18 | 0 | 6 | 0.04545 | 0.13636 | 0.81818 | 0 | |||
TRUE | Texas | Victoria | 48 | 469 | 48469 | 48469 | 44 | Texas | 2762 | Victoria | County | County | 54 | 0 | 9 | 44 | 1 | 5 | 0 | 0.16667 | 0.81481 | 0.01852 | |||
TRUE | Texas | Walker | 48 | 471 | 48471 | 48471 | 44 | Texas | 2763 | Walker | County | County | 24 | 0 | 8 | 14 | 2 | 4 | 0 | 0.33333 | 0.58333 | 0.08333 | |||
TRUE | Texas | Waller | 48 | 473 | 48473 | 48473 | 44 | Texas | 2764 | Waller | County | County | 5 | 0 | 1 | 3 | 1 | 3 | 0 | 0.2 | 0.6 | 0.2 | |||
TRUE | Texas | Ward | 48 | 475 | 48475 | 48475 | 44 | Texas | 2765 | Ward | County | County | 15 | 2 | 0 | 13 | 0 | 3 | 0.13333 | 0 | 0.86667 | 0 | |||
TRUE | Texas | Washington | 48 | 477 | 48477 | 48477 | 44 | Texas | 2766 | Washington | County | County | 20 | 0 | 4 | 14 | 2 | 2 | 0 | 0.2 | 0.7 | 0.1 | |||
TRUE | Texas | Webb | 48 | 479 | 48479 | 48479 | 44 | Texas | 2767 | Webb | County | County | 32 | 1 | 1 | 29 | 1 | 7 | 0.03125 | 0.03125 | 0.90625 | 0.03125 | |||
TRUE | Texas | Wharton | 48 | 481 | 48481 | 48481 | 44 | Texas | 2768 | Wharton | County | County | 25 | 0 | 3 | 22 | 0 | 5 | 0 | 0.12 | 0.88 | 0 | |||
TRUE | Texas | Wheeler | 48 | 483 | 48483 | 48483 | 44 | Texas | 2769 | Wheeler | County | County | 5 | 1 | 0 | 4 | 0 | 2 | 0.2 | 0 | 0.8 | 0 | |||
TRUE | Texas | Wichita | 48 | 485 | 48485 | 48485 | 44 | Texas | 2770 | Wichita | County | County | 161 | 3 | 13 | 142 | 3 | 12 | 0.01863 | 0.08075 | 0.88199 | 0.01863 | |||
TRUE | Texas | Wilbarger | 48 | 487 | 48487 | 48487 | 44 | Texas | 2771 | Wilbarger | County | County | 17 | 0 | 0 | 16 | 1 | 3 | 0 | 0 | 0.94118 | 0.05882 | |||
TRUE | Texas | Willacy | 48 | 489 | 48489 | 48489 | 44 | Texas | 2772 | Willacy | County | County | 6 | 1 | 1 | 4 | 0 | 4 | 0.16667 | 0.16667 | 0.66667 | 0 | |||
TRUE | Texas | Williamson | 48 | 491 | 48491 | 48491 | 44 | Texas | 2773 | Williamson | County | County | 263 | 8 | 69 | 177 | 9 | 18 | 0.03042 | 0.26236 | 0.673 | 0.03422 | |||
TRUE | Texas | Wilson | 48 | 493 | 48493 | 48493 | 44 | Texas | 2774 | Wilson | County | County | 16 | 1 | 9 | 4 | 2 | 7 | 0.0625 | 0.5625 | 0.25 | 0.125 | |||
TRUE | Texas | Winkler | 48 | 495 | 48495 | 48495 | 44 | Texas | 2775 | Winkler | County | County | 3 | 1 | 0 | 2 | 0 | 2 | 0.33333 | 0 | 0.66667 | 0 | |||
TRUE | Texas | Wise | 48 | 497 | 48497 | 48497 | 44 | Texas | 2776 | Wise | County | County | 22 | 0 | 2 | 19 | 1 | 9 | 0 | 0.09091 | 0.86364 | 0.04545 | |||
TRUE | Texas | Wood | 48 | 499 | 48499 | 48499 | 44 | Texas | 2777 | Wood | County | County | 18 | 0 | 0 | 16 | 2 | 7 | 0 | 0 | 0.88889 | 0.11111 | |||
TRUE | Texas | Yoakum | 48 | 501 | 48501 | 48501 | 44 | Texas | 2778 | Yoakum | County | County | 4 | 0 | 0 | 4 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Texas | Young | 48 | 503 | 48503 | 48503 | 44 | Texas | 2779 | Young | County | County | 17 | 1 | 0 | 15 | 1 | 4 | 0.05882 | 0 | 0.88235 | 0.05882 | |||
TRUE | Texas | Zapata | 48 | 505 | 48505 | 48505 | 44 | Texas | 2780 | Zapata | County | County | 2 | 0 | 0 | 1 | 1 | 2 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | Texas | Zavala | 48 | 507 | 48507 | 48507 | 44 | Texas | 2781 | Zavala | County | County | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | |||
TRUE | Utah | Beaver | 49 | 001 | 49001 | 49001 | 45 | Utah | 2782 | Beaver | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Utah | Box Elder | 49 | 003 | 49003 | 49003 | 45 | Utah | 2783 | Box Elder | County | County | 29 | 23 | 6 | 0 | 0 | 6 | 0.7931 | 0.2069 | 0 | 0 | |||
TRUE | Utah | Cache | 49 | 005 | 49005 | 49005 | 45 | Utah | 2784 | Cache | County | County | 70 | 47 | 18 | 2 | 3 | 10 | 0.67143 | 0.25714 | 0.02857 | 0.04286 | |||
TRUE | Utah | Carbon | 49 | 007 | 49007 | 49007 | 45 | Utah | 2785 | Carbon | County | County | 9 | 4 | 4 | 1 | 0 | 2 | 0.44444 | 0.44444 | 0.11111 | 0 | |||
TRUE | Utah | Daggett | 49 | 009 | 49009 | 49009 | 45 | Utah | 2786 | Daggett | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Utah | Davis | 49 | 011 | 49011 | 49011 | 45 | Utah | 2787 | Davis | County | County | 200 | 116 | 67 | 10 | 7 | 11 | 0.58 | 0.335 | 0.05 | 0.035 | |||
TRUE | Utah | Duchesne | 49 | 013 | 49013 | 49013 | 45 | Utah | 2788 | Duchesne | County | County | 15 | 10 | 4 | 1 | 0 | 4 | 0.66667 | 0.26667 | 0.06667 | 0 | |||
TRUE | Utah | Emery | 49 | 015 | 49015 | 49015 | 45 | Utah | 2789 | Emery | County | County | 6 | 4 | 2 | 0 | 0 | 3 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Utah | Garfield | 49 | 017 | 49017 | 49017 | 45 | Utah | 2790 | Garfield | County | County | 2 | 1 | 0 | 0 | 1 | 2 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Utah | Grand | 49 | 019 | 49019 | 49019 | 45 | Utah | 2791 | Grand | County | County | 7 | 3 | 3 | 1 | 0 | 1 | 0.42857 | 0.42857 | 0.14286 | 0 | |||
TRUE | Utah | Iron | 49 | 021 | 49021 | 49021 | 45 | Utah | 2792 | Iron | County | County | 19 | 8 | 4 | 7 | 0 | 2 | 0.42105 | 0.21053 | 0.36842 | 0 | |||
TRUE | Utah | Juab | 49 | 023 | 49023 | 49023 | 45 | Utah | 2793 | Juab | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Utah | Kane | 49 | 025 | 49025 | 49025 | 45 | Utah | 2794 | Kane | County | County | 5 | 2 | 1 | 1 | 1 | 3 | 0.4 | 0.2 | 0.2 | 0.2 | |||
TRUE | Utah | Millard | 49 | 027 | 49027 | 49027 | 45 | Utah | 2795 | Millard | County | County | 8 | 4 | 2 | 1 | 1 | 4 | 0.5 | 0.25 | 0.125 | 0.125 | |||
TRUE | Utah | Morgan | 49 | 029 | 49029 | 49029 | 45 | Utah | 2796 | Morgan | County | County | 4 | 3 | 1 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Utah | Piute | 49 | 031 | 49031 | 49031 | 45 | Utah | 2797 | Piute | County | County | 3 | 3 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | |||
TRUE | Utah | Rich | 49 | 033 | 49033 | 49033 | 45 | Utah | 2798 | Rich | County | County | 5 | 2 | 3 | 0 | 0 | 3 | 0.4 | 0.6 | 0 | 0 | |||
TRUE | Utah | Salt Lake | 49 | 035 | 49035 | 49035 | 45 | Utah | 2799 | Salt Lake | County | County | 672 | 215 | 342 | 64 | 51 | 32 | 0.31994 | 0.50893 | 0.09524 | 0.07589 | |||
TRUE | Utah | San Juan | 49 | 037 | 49037 | 49037 | 45 | Utah | 2800 | San Juan | County | County | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Utah | Sanpete | 49 | 039 | 49039 | 49039 | 45 | Utah | 2801 | Sanpete | County | County | 11 | 5 | 3 | 2 | 1 | 6 | 0.45455 | 0.27273 | 0.18182 | 0.09091 | |||
TRUE | Utah | Sevier | 49 | 041 | 49041 | 49041 | 45 | Utah | 2802 | Sevier | County | County | 7 | 3 | 1 | 2 | 1 | 3 | 0.42857 | 0.14286 | 0.28571 | 0.14286 | |||
TRUE | Utah | Summit | 49 | 043 | 49043 | 49043 | 45 | Utah | 2803 | Summit | County | County | 14 | 5 | 7 | 1 | 1 | 5 | 0.35714 | 0.5 | 0.07143 | 0.07143 | |||
TRUE | Utah | Tooele | 49 | 045 | 49045 | 49045 | 45 | Utah | 2804 | Tooele | County | County | 25 | 14 | 10 | 1 | 0 | 5 | 0.56 | 0.4 | 0.04 | 0 | |||
TRUE | Utah | Uintah | 49 | 047 | 49047 | 49047 | 45 | Utah | 2805 | Uintah | County | County | 18 | 12 | 6 | 0 | 0 | 2 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Utah | Utah | 49 | 049 | 49049 | 49049 | 45 | Utah | 2806 | Utah | County | County | 343 | 156 | 155 | 11 | 21 | 19 | 0.45481 | 0.4519 | 0.03207 | 0.06122 | |||
TRUE | Utah | Wasatch | 49 | 051 | 49051 | 49051 | 45 | Utah | 2807 | Wasatch | County | County | 4 | 0 | 4 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | Utah | Washington | 49 | 053 | 49053 | 49053 | 45 | Utah | 2808 | Washington | County | County | 42 | 17 | 23 | 1 | 1 | 9 | 0.40476 | 0.54762 | 0.02381 | 0.02381 | |||
TRUE | Utah | Wayne | 49 | 055 | 49055 | 49055 | 45 | Utah | 2809 | Wayne | County | County | 3 | 1 | 1 | 0 | 1 | 3 | 0.33333 | 0.33333 | 0 | 0.33333 | |||
TRUE | Utah | Weber | 49 | 057 | 49057 | 49057 | 45 | Utah | 2810 | Weber | County | County | 124 | 76 | 30 | 13 | 5 | 9 | 0.6129 | 0.24194 | 0.10484 | 0.04032 | |||
TRUE | Vermont | Addison | 50 | 001 | 50001 | 50001 | 46 | Vermont | 2811 | Addison | County | County | 32 | 2 | 30 | 0 | 0 | 10 | 0.0625 | 0.9375 | 0 | 0 | |||
TRUE | Vermont | Bennington | 50 | 003 | 50003 | 50003 | 46 | Vermont | 2812 | Bennington | County | County | 37 | 1 | 36 | 0 | 0 | 10 | 0.02703 | 0.97297 | 0 | 0 | |||
TRUE | Vermont | Caledonia | 50 | 005 | 50005 | 50005 | 46 | Vermont | 2813 | Caledonia | County | County | 24 | 1 | 23 | 0 | 0 | 7 | 0.04167 | 0.95833 | 0 | 0 | |||
TRUE | Vermont | Chittenden | 50 | 007 | 50007 | 50007 | 46 | Vermont | 2814 | Chittenden | County | County | 216 | 4 | 202 | 7 | 3 | 17 | 0.01852 | 0.93519 | 0.03241 | 0.01389 | |||
TRUE | Vermont | Essex | 50 | 009 | 50009 | 50009 | 46 | Vermont | 2815 | Essex | County | County | 3 | 0 | 3 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | |||
TRUE | Vermont | Franklin | 50 | 011 | 50011 | 50011 | 46 | Vermont | 2816 | Franklin | County | County | 24 | 0 | 24 | 0 | 0 | 9 | 0 | 1 | 0 | 0 | |||
TRUE | Vermont | Grand Isle | 50 | 013 | 50013 | 50013 | 46 | Vermont | 2817 | Grand Isle | County | County | 5 | 0 | 5 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | |||
TRUE | Vermont | Lamoille | 50 | 015 | 50015 | 50015 | 46 | Vermont | 2818 | Lamoille | County | County | 10 | 0 | 9 | 0 | 1 | 5 | 0 | 0.9 | 0 | 0.1 | |||
TRUE | Vermont | Orange | 50 | 017 | 50017 | 50017 | 46 | Vermont | 2819 | Orange | County | County | 20 | 0 | 20 | 0 | 0 | 13 | 0 | 1 | 0 | 0 | |||
TRUE | Vermont | Orleans | 50 | 019 | 50019 | 50019 | 46 | Vermont | 2820 | Orleans | County | County | 14 | 0 | 13 | 0 | 1 | 7 | 0 | 0.92857 | 0 | 0.07143 | |||
TRUE | Vermont | Rutland | 50 | 021 | 50021 | 50021 | 46 | Vermont | 2821 | Rutland | County | County | 54 | 3 | 46 | 1 | 4 | 16 | 0.05556 | 0.85185 | 0.01852 | 0.07407 | |||
TRUE | Vermont | Washington | 50 | 023 | 50023 | 50023 | 46 | Vermont | 2822 | Washington | County | County | 59 | 3 | 55 | 0 | 1 | 15 | 0.05085 | 0.9322 | 0 | 0.01695 | |||
TRUE | Vermont | Windham | 50 | 025 | 50025 | 50025 | 46 | Vermont | 2823 | Windham | County | County | 37 | 0 | 37 | 0 | 0 | 14 | 0 | 1 | 0 | 0 | |||
TRUE | Vermont | Windsor | 50 | 027 | 50027 | 50027 | 46 | Vermont | 2824 | Windsor | County | County | 63 | 1 | 61 | 0 | 1 | 18 | 0.01587 | 0.96825 | 0 | 0.01587 | |||
TRUE | Virginia | Accomack | 51 | 001 | 51001 | 51001 | 47 | Virginia | 2825 | Accomack | County | County | 10 | 0 | 5 | 3 | 2 | 6 | 0 | 0.5 | 0.3 | 0.2 | |||
TRUE | Virginia | Albemarle | 51 | 003 | 51003 | 51003 | 47 | Virginia | 2826 | Albemarle | County | County | 153 | 4 | 125 | 20 | 4 | 14 | 0.02614 | 0.81699 | 0.13072 | 0.02614 | |||
TRUE | Virginia | Alleghany | 51 | 005 | 51005 | 51005 | 47 | Virginia | 2828 | Alleghany | County | County | 23 | 12 | 7 | 4 | 0 | 3 | 0.52174 | 0.30435 | 0.17391 | 0 | |||
TRUE | Virginia | Amelia | 51 | 007 | 51007 | 51007 | 47 | Virginia | 2829 | Amelia | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Virginia | Amherst | 51 | 009 | 51009 | 51009 | 47 | Virginia | 2830 | Amherst | County | County | 8 | 0 | 4 | 2 | 2 | 3 | 0 | 0.5 | 0.25 | 0.25 | |||
TRUE | Virginia | Appomattox | 51 | 011 | 51011 | 51011 | 47 | Virginia | 2831 | Appomattox | County | County | 10 | 1 | 2 | 2 | 5 | 2 | 0.1 | 0.2 | 0.2 | 0.5 | |||
TRUE | Virginia | Arlington | 51 | 013 | 51013 | 51013 | 47 | Virginia | 2832 | Arlington | County | County | 254 | 9 | 186 | 50 | 9 | 12 | 0.03543 | 0.73228 | 0.19685 | 0.03543 | |||
TRUE | Virginia | Augusta | 51 | 015 | 51015 | 51015 | 47 | Virginia | 2833 | Augusta | County | County | 20 | 2 | 13 | 3 | 2 | 10 | 0.1 | 0.65 | 0.15 | 0.1 | |||
TRUE | Virginia | Bath | 51 | 017 | 51017 | 51017 | 47 | Virginia | 2834 | Bath | County | County | 4 | 1 | 3 | 0 | 0 | 2 | 0.25 | 0.75 | 0 | 0 | |||
TRUE | Virginia | Bedford | 51 | 019 | 51019 | 51019 | 47 | Virginia | 2835 | Bedford | County | County | 31 | 0 | 17 | 7 | 7 | 5 | 0 | 0.54839 | 0.22581 | 0.22581 | |||
TRUE | Virginia | Bland | 51 | 021 | 51021 | 51021 | 47 | Virginia | 2836 | Bland | County | County | 10 | 7 | 2 | 0 | 1 | 3 | 0.7 | 0.2 | 0 | 0.1 | |||
TRUE | Virginia | Botetourt | 51 | 023 | 51023 | 51023 | 47 | Virginia | 2837 | Botetourt | County | County | 19 | 1 | 12 | 3 | 3 | 5 | 0.05263 | 0.63158 | 0.15789 | 0.15789 | |||
TRUE | Virginia | Brunswick | 51 | 025 | 51025 | 51025 | 47 | Virginia | 2839 | Brunswick | County | County | 6 | 0 | 5 | 1 | 0 | 3 | 0 | 0.83333 | 0.16667 | 0 | |||
TRUE | Virginia | Buchanan | 51 | 027 | 51027 | 51027 | 47 | Virginia | 2840 | Buchanan | County | County | 21 | 18 | 2 | 1 | 0 | 8 | 0.85714 | 0.09524 | 0.04762 | 0 | |||
TRUE | Virginia | Buckingham | 51 | 029 | 51029 | 51029 | 47 | Virginia | 2841 | Buckingham | County | County | 4 | 0 | 3 | 1 | 0 | 3 | 0 | 0.75 | 0.25 | 0 | |||
TRUE | Virginia | Campbell | 51 | 031 | 51031 | 51031 | 47 | Virginia | 2843 | Campbell | County | County | 11 | 1 | 4 | 2 | 4 | 5 | 0.09091 | 0.36364 | 0.18182 | 0.36364 | |||
TRUE | Virginia | Caroline | 51 | 033 | 51033 | 51033 | 47 | Virginia | 2844 | Caroline | County | County | 5 | 0 | 2 | 2 | 1 | 3 | 0 | 0.4 | 0.4 | 0.2 | |||
TRUE | Virginia | Carroll | 51 | 035 | 51035 | 51035 | 47 | Virginia | 2845 | Carroll | County | County | 11 | 9 | 0 | 2 | 0 | 4 | 0.81818 | 0 | 0.18182 | 0 | |||
TRUE | Virginia | Charles City | 51 | 036 | 51036 | 51036 | 47 | Virginia | 2846 | Charles City | County | County | 2 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | |||
TRUE | Virginia | Charlotte | 51 | 037 | 51037 | 51037 | 47 | Virginia | 2847 | Charlotte | County | County | 6 | 0 | 1 | 1 | 4 | 3 | 0 | 0.16667 | 0.16667 | 0.66667 | |||
TRUE | Virginia | Chesterfield | 51 | 041 | 51041 | 51041 | 47 | Virginia | 2850 | Chesterfield | County | County | 219 | 8 | 111 | 79 | 21 | 11 | 0.03653 | 0.50685 | 0.36073 | 0.09589 | |||
TRUE | Virginia | Clarke | 51 | 043 | 51043 | 51043 | 47 | Virginia | 2851 | Clarke | County | County | 8 | 0 | 7 | 1 | 0 | 2 | 0 | 0.875 | 0.125 | 0 | |||
TRUE | Virginia | Craig | 51 | 045 | 51045 | 51045 | 47 | Virginia | 2855 | Craig | County | County | 3 | 2 | 1 | 0 | 0 | 1 | 0.66667 | 0.33333 | 0 | 0 | |||
TRUE | Virginia | Culpeper | 51 | 047 | 51047 | 51047 | 47 | Virginia | 2856 | Culpeper | County | County | 30 | 7 | 17 | 3 | 3 | 3 | 0.23333 | 0.56667 | 0.1 | 0.1 | |||
TRUE | Virginia | Cumberland | 51 | 049 | 51049 | 51049 | 47 | Virginia | 2857 | Cumberland | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Virginia | Dickenson | 51 | 051 | 51051 | 51051 | 47 | Virginia | 2859 | Dickenson | County | County | 17 | 17 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Virginia | Dinwiddie | 51 | 053 | 51053 | 51053 | 47 | Virginia | 2860 | Dinwiddie | County | County | 4 | 0 | 1 | 1 | 2 | 3 | 0 | 0.25 | 0.25 | 0.5 | |||
TRUE | Virginia | Essex | 51 | 057 | 51057 | 51057 | 47 | Virginia | 2862 | Essex | County | County | 2 | 0 | 0 | 1 | 1 | 2 | 0 | 0 | 0.5 | 0.5 | |||
TRUE | Virginia | Fairfax | 51 | 059 | 51059 | 51059 | 47 | Virginia | 2863 | Fairfax | County | County | 1546 | 53 | 1203 | 246 | 44 | 51 | 0.03428 | 0.77814 | 0.15912 | 0.02846 | |||
TRUE | Virginia | Fauquier | 51 | 061 | 51061 | 51061 | 47 | Virginia | 2865 | Fauquier | County | County | 36 | 1 | 29 | 6 | 0 | 14 | 0.02778 | 0.80556 | 0.16667 | 0 | |||
TRUE | Virginia | Floyd | 51 | 063 | 51063 | 51063 | 47 | Virginia | 2866 | Floyd | County | County | 11 | 1 | 9 | 1 | 0 | 4 | 0.09091 | 0.81818 | 0.09091 | 0 | |||
TRUE | Virginia | Fluvanna | 51 | 065 | 51065 | 51065 | 47 | Virginia | 2867 | Fluvanna | County | County | 9 | 0 | 7 | 2 | 0 | 4 | 0 | 0.77778 | 0.22222 | 0 | |||
TRUE | Virginia | Franklin | 51 | 067 | 51067 | 51067 | 47 | Virginia | 2868 | Franklin | County | County | 19 | 1 | 9 | 7 | 2 | 7 | 0.05263 | 0.47368 | 0.36842 | 0.10526 | |||
TRUE | Virginia | Frederick | 51 | 069 | 51069 | 51069 | 47 | Virginia | 2869 | Frederick | County | County | 26 | 3 | 22 | 0 | 1 | 4 | 0.11538 | 0.84615 | 0 | 0.03846 | |||
TRUE | Virginia | Giles | 51 | 071 | 51071 | 51071 | 47 | Virginia | 2872 | Giles | County | County | 10 | 8 | 0 | 0 | 2 | 5 | 0.8 | 0 | 0 | 0.2 | |||
TRUE | Virginia | Gloucester | 51 | 073 | 51073 | 51073 | 47 | Virginia | 2873 | Gloucester | County | County | 18 | 1 | 9 | 6 | 2 | 6 | 0.05556 | 0.5 | 0.33333 | 0.11111 | |||
TRUE | Virginia | Goochland | 51 | 075 | 51075 | 51075 | 47 | Virginia | 2874 | Goochland | County | County | 25 | 0 | 17 | 7 | 1 | 7 | 0 | 0.68 | 0.28 | 0.04 | |||
TRUE | Virginia | Grayson | 51 | 077 | 51077 | 51077 | 47 | Virginia | 2875 | Grayson | County | County | 2 | 1 | 0 | 0 | 1 | 2 | 0.5 | 0 | 0 | 0.5 | |||
TRUE | Virginia | Greene | 51 | 079 | 51079 | 51079 | 47 | Virginia | 2876 | Greene | County | County | 6 | 0 | 4 | 1 | 1 | 3 | 0 | 0.66667 | 0.16667 | 0.16667 | |||
TRUE | Virginia | Greensville | 51 | 081 | 51081 | 51081 | 47 | Virginia | 2877 | Greensville | County | County | 4 | 0 | 1 | 3 | 0 | 1 | 0 | 0.25 | 0.75 | 0 | |||
TRUE | Virginia | Halifax | 51 | 083 | 51083 | 51083 | 47 | Virginia | 2878 | Halifax | County | County | 18 | 0 | 10 | 1 | 7 | 7 | 0 | 0.55556 | 0.05556 | 0.38889 | |||
TRUE | Virginia | Hanover | 51 | 085 | 51085 | 51085 | 47 | Virginia | 2880 | Hanover | County | County | 64 | 0 | 34 | 27 | 3 | 7 | 0 | 0.53125 | 0.42188 | 0.04688 | |||
TRUE | Virginia | Henrico | 51 | 087 | 51087 | 51087 | 47 | Virginia | 2882 | Henrico | County | County | 224 | 3 | 133 | 69 | 19 | 11 | 0.01339 | 0.59375 | 0.30804 | 0.08482 | |||
TRUE | Virginia | Henry | 51 | 089 | 51089 | 51089 | 47 | Virginia | 2883 | Henry | County | County | 6 | 2 | 3 | 0 | 1 | 4 | 0.33333 | 0.5 | 0 | 0.16667 | |||
TRUE | Virginia | Highland | 51 | 091 | 51091 | 51091 | 47 | Virginia | 2884 | Highland | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Virginia | Isle of Wight | 51 | 093 | 51093 | 51093 | 47 | Virginia | 2886 | Isle of Wight | County | County | 15 | 2 | 6 | 4 | 3 | 4 | 0.13333 | 0.4 | 0.26667 | 0.2 | |||
TRUE | Virginia | James City | 51 | 095 | 51095 | 51095 | 47 | Virginia | 2887 | James City | County | County | 36 | 2 | 27 | 5 | 2 | 3 | 0.05556 | 0.75 | 0.13889 | 0.05556 | |||
TRUE | Virginia | King and Queen | 51 | 097 | 51097 | 51097 | 47 | Virginia | 2888 | King and Queen | County | County | 3 | 0 | 1 | 2 | 0 | 2 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Virginia | King George | 51 | 099 | 51099 | 51099 | 47 | Virginia | 2889 | King George | County | County | 11 | 1 | 8 | 2 | 0 | 2 | 0.09091 | 0.72727 | 0.18182 | 0 | |||
TRUE | Virginia | King William | 51 | 101 | 51101 | 51101 | 47 | Virginia | 2890 | King William | County | County | 6 | 0 | 4 | 1 | 1 | 4 | 0 | 0.66667 | 0.16667 | 0.16667 | |||
TRUE | Virginia | Lancaster | 51 | 103 | 51103 | 51103 | 47 | Virginia | 2891 | Lancaster | County | County | 5 | 0 | 3 | 2 | 0 | 2 | 0 | 0.6 | 0.4 | 0 | |||
TRUE | Virginia | Lee | 51 | 105 | 51105 | 51105 | 47 | Virginia | 2892 | Lee | County | County | 9 | 3 | 0 | 6 | 0 | 5 | 0.33333 | 0 | 0.66667 | 0 | |||
TRUE | Virginia | Loudoun | 51 | 107 | 51107 | 51107 | 47 | Virginia | 2894 | Loudoun | County | County | 194 | 7 | 154 | 28 | 5 | 20 | 0.03608 | 0.79381 | 0.14433 | 0.02577 | |||
TRUE | Virginia | Louisa | 51 | 109 | 51109 | 51109 | 47 | Virginia | 2895 | Louisa | County | County | 14 | 1 | 9 | 4 | 0 | 4 | 0.07143 | 0.64286 | 0.28571 | 0 | |||
TRUE | Virginia | Lunenburg | 51 | 111 | 51111 | 51111 | 47 | Virginia | 2896 | Lunenburg | County | County | 2 | 0 | 1 | 1 | 0 | 2 | 0 | 0.5 | 0.5 | 0 | |||
TRUE | Virginia | Madison | 51 | 113 | 51113 | 51113 | 47 | Virginia | 2898 | Madison | County | County | 8 | 0 | 7 | 1 | 0 | 4 | 0 | 0.875 | 0.125 | 0 | |||
TRUE | Virginia | Mathews | 51 | 115 | 51115 | 51115 | 47 | Virginia | 2902 | Mathews | County | County | 11 | 0 | 6 | 4 | 1 | 6 | 0 | 0.54545 | 0.36364 | 0.09091 | |||
TRUE | Virginia | Mecklenburg | 51 | 117 | 51117 | 51117 | 47 | Virginia | 2903 | Mecklenburg | County | County | 14 | 1 | 5 | 7 | 1 | 6 | 0.07143 | 0.35714 | 0.5 | 0.07143 | |||
TRUE | Virginia | Middlesex | 51 | 119 | 51119 | 51119 | 47 | Virginia | 2904 | Middlesex | County | County | 4 | 1 | 1 | 2 | 0 | 4 | 0.25 | 0.25 | 0.5 | 0 | |||
TRUE | Virginia | Montgomery | 51 | 121 | 51121 | 51121 | 47 | Virginia | 2905 | Montgomery | County | County | 112 | 12 | 45 | 32 | 23 | 5 | 0.10714 | 0.40179 | 0.28571 | 0.20536 | |||
TRUE | Virginia | Nelson | 51 | 125 | 51125 | 51125 | 47 | Virginia | 2906 | Nelson | County | County | 6 | 0 | 5 | 1 | 0 | 5 | 0 | 0.83333 | 0.16667 | 0 | |||
TRUE | Virginia | New Kent | 51 | 127 | 51127 | 51127 | 47 | Virginia | 2907 | New Kent | County | County | 4 | 0 | 1 | 2 | 1 | 3 | 0 | 0.25 | 0.5 | 0.25 | |||
TRUE | Virginia | Northampton | 51 | 131 | 51131 | 51131 | 47 | Virginia | 2910 | Northampton | County | County | 7 | 1 | 4 | 1 | 1 | 5 | 0.14286 | 0.57143 | 0.14286 | 0.14286 | |||
TRUE | Virginia | Northumberland | 51 | 133 | 51133 | 51133 | 47 | Virginia | 2911 | Northumberland | County | County | 4 | 0 | 0 | 3 | 1 | 3 | 0 | 0 | 0.75 | 0.25 | |||
TRUE | Virginia | Nottoway | 51 | 135 | 51135 | 51135 | 47 | Virginia | 2913 | Nottoway | County | County | 6 | 0 | 3 | 1 | 2 | 3 | 0 | 0.5 | 0.16667 | 0.33333 | |||
TRUE | Virginia | Orange | 51 | 137 | 51137 | 51137 | 47 | Virginia | 2914 | Orange | County | County | 8 | 0 | 4 | 3 | 1 | 3 | 0 | 0.5 | 0.375 | 0.125 | |||
TRUE | Virginia | Page | 51 | 139 | 51139 | 51139 | 47 | Virginia | 2915 | Page | County | County | 9 | 7 | 1 | 1 | 0 | 4 | 0.77778 | 0.11111 | 0.11111 | 0 | |||
TRUE | Virginia | Patrick | 51 | 141 | 51141 | 51141 | 47 | Virginia | 2916 | Patrick | County | County | 4 | 1 | 1 | 2 | 0 | 2 | 0.25 | 0.25 | 0.5 | 0 | |||
TRUE | Virginia | Pittsylvania | 51 | 143 | 51143 | 51143 | 47 | Virginia | 2918 | Pittsylvania | County | County | 13 | 0 | 4 | 4 | 5 | 6 | 0 | 0.30769 | 0.30769 | 0.38462 | |||
TRUE | Virginia | Powhatan | 51 | 145 | 51145 | 51145 | 47 | Virginia | 2921 | Powhatan | County | County | 12 | 3 | 7 | 2 | 0 | 1 | 0.25 | 0.58333 | 0.16667 | 0 | |||
TRUE | Virginia | Prince Edward | 51 | 147 | 51147 | 51147 | 47 | Virginia | 2922 | Prince Edward | County | County | 9 | 0 | 7 | 1 | 1 | 1 | 0 | 0.77778 | 0.11111 | 0.11111 | |||
TRUE | Virginia | Prince George | 51 | 149 | 51149 | 51149 | 47 | Virginia | 2923 | Prince George | County | County | 7 | 0 | 4 | 3 | 0 | 4 | 0 | 0.57143 | 0.42857 | 0 | |||
TRUE | Virginia | Prince William | 51 | 153 | 51153 | 51153 | 47 | Virginia | 2924 | Prince William | County | County | 280 | 10 | 223 | 43 | 4 | 12 | 0.03571 | 0.79643 | 0.15357 | 0.01429 | |||
TRUE | Virginia | Pulaski | 51 | 155 | 51155 | 51155 | 47 | Virginia | 2925 | Pulaski | County | County | 17 | 4 | 8 | 5 | 0 | 2 | 0.23529 | 0.47059 | 0.29412 | 0 | |||
TRUE | Virginia | Rappahannock | 51 | 157 | 51157 | 51157 | 47 | Virginia | 2927 | Rappahannock | County | County | 10 | 0 | 8 | 2 | 0 | 6 | 0 | 0.8 | 0.2 | 0 | |||
FALSE | Virginia | Richmond | 51 | 159 | 51159 | 51159 | |||||||||||||||||||
TRUE | Virginia | Roanoke | 51 | 161 | 51161 | 51161 | 47 | Virginia | 2929 | Roanoke | County | County | 138 | 8 | 74 | 41 | 15 | 11 | 0.05797 | 0.53623 | 0.2971 | 0.1087 | |||
TRUE | Virginia | Rockbridge | 51 | 163 | 51163 | 51163 | 47 | Virginia | 2930 | Rockbridge | County | County | 34 | 1 | 16 | 8 | 9 | 8 | 0.02941 | 0.47059 | 0.23529 | 0.26471 | |||
TRUE | Virginia | Rockingham | 51 | 165 | 51165 | 51165 | 47 | Virginia | 2931 | Rockingham | County | County | 33 | 8 | 19 | 6 | 0 | 11 | 0.24242 | 0.57576 | 0.18182 | 0 | |||
TRUE | Virginia | Russell | 51 | 167 | 51167 | 51167 | 47 | Virginia | 2932 | Russell | County | County | 12 | 10 | 2 | 0 | 0 | 5 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Virginia | Scott | 51 | 169 | 51169 | 51169 | 47 | Virginia | 2934 | Scott | County | County | 8 | 0 | 1 | 6 | 1 | 3 | 0 | 0.125 | 0.75 | 0.125 | |||
TRUE | Virginia | Shenandoah | 51 | 171 | 51171 | 51171 | 47 | Virginia | 2935 | Shenandoah | County | County | 18 | 4 | 10 | 1 | 3 | 8 | 0.22222 | 0.55556 | 0.05556 | 0.16667 | |||
TRUE | Virginia | Smyth | 51 | 173 | 51173 | 51173 | 47 | Virginia | 2936 | Smyth | County | County | 16 | 9 | 2 | 3 | 2 | 3 | 0.5625 | 0.125 | 0.1875 | 0.125 | |||
TRUE | Virginia | Southampton | 51 | 175 | 51175 | 51175 | 47 | Virginia | 2937 | Southampton | County | County | 5 | 0 | 3 | 2 | 0 | 3 | 0 | 0.6 | 0.4 | 0 | |||
TRUE | Virginia | Spotsylvania | 51 | 177 | 51177 | 51177 | 47 | Virginia | 2938 | Spotsylvania | County | County | 69 | 5 | 50 | 11 | 3 | 3 | 0.07246 | 0.72464 | 0.15942 | 0.04348 | |||
TRUE | Virginia | Stafford | 51 | 179 | 51179 | 51179 | 47 | Virginia | 2939 | Stafford | County | County | 61 | 5 | 40 | 15 | 1 | 4 | 0.08197 | 0.65574 | 0.2459 | 0.01639 | |||
TRUE | Virginia | Surry | 51 | 181 | 51181 | 51181 | 47 | Virginia | 2942 | Surry | County | County | 5 | 0 | 3 | 2 | 0 | 3 | 0 | 0.6 | 0.4 | 0 | |||
TRUE | Virginia | Sussex | 51 | 183 | 51183 | 51183 | 47 | Virginia | 2943 | Sussex | County | County | 3 | 0 | 1 | 2 | 0 | 3 | 0 | 0.33333 | 0.66667 | 0 | |||
TRUE | Virginia | Tazewell | 51 | 185 | 51185 | 51185 | 47 | Virginia | 2944 | Tazewell | County | County | 32 | 21 | 3 | 5 | 3 | 9 | 0.65625 | 0.09375 | 0.15625 | 0.09375 | |||
TRUE | Virginia | Warren | 51 | 187 | 51187 | 51187 | 47 | Virginia | 2946 | Warren | County | County | 18 | 2 | 8 | 6 | 2 | 1 | 0.11111 | 0.44444 | 0.33333 | 0.11111 | |||
TRUE | Virginia | Washington | 51 | 191 | 51191 | 51191 | 47 | Virginia | 2947 | Washington | County | County | 28 | 8 | 6 | 8 | 6 | 5 | 0.28571 | 0.21429 | 0.28571 | 0.21429 | |||
TRUE | Virginia | Westmoreland | 51 | 193 | 51193 | 51193 | 47 | Virginia | 2949 | Westmoreland | County | County | 9 | 0 | 6 | 2 | 1 | 3 | 0 | 0.66667 | 0.22222 | 0.11111 | |||
TRUE | Virginia | Wise | 51 | 195 | 51195 | 51195 | 47 | Virginia | 2952 | Wise | County | County | 35 | 17 | 7 | 9 | 2 | 5 | 0.48571 | 0.2 | 0.25714 | 0.05714 | |||
TRUE | Virginia | Wythe | 51 | 197 | 51197 | 51197 | 47 | Virginia | 2953 | Wythe | County | County | 19 | 9 | 4 | 3 | 3 | 6 | 0.47368 | 0.21053 | 0.15789 | 0.15789 | |||
TRUE | Virginia | York | 51 | 199 | 51199 | 51199 | 47 | Virginia | 2954 | York | County | County | 67 | 0 | 53 | 11 | 3 | 5 | 0 | 0.79104 | 0.16418 | 0.04478 | |||
FALSE | Virginia | Alexandria City | 51 | 510 | 51510 | 51510 | 47 | Virginia | 2827 | Alexandria | Independent City | Independent City | 106 | 4 | 81 | 19 | 2 | 6 | 0.03774 | 0.76415 | 0.17925 | 0.01887 | |||
FALSE | Virginia | Bedford City | 51 | 515 | 51515 | 51515 | |||||||||||||||||||
FALSE | Virginia | Bristol City | 51 | 520 | 51520 | 51520 | 47 | Virginia | 2838 | Bristol | Independent City | Independent City | 7 | 1 | 2 | 4 | 0 | 1 | 0.14286 | 0.28571 | 0.57143 | 0 | |||
FALSE | Virginia | Buena Vista City | 51 | 530 | 51530 | 51530 | 47 | Virginia | 2842 | Buena Vista | Independent City | Independent City | 3 | 0 | 2 | 0 | 1 | 1 | 0 | 0.66667 | 0 | 0.33333 | |||
FALSE | Virginia | Charlottesville City | 51 | 540 | 51540 | 51540 | 47 | Virginia | 2848 | Charlottesville | Independent City | Independent City | 3 | 0 | 1 | 2 | 0 | 3 | 0 | 0.33333 | 0.66667 | 0 | |||
FALSE | Virginia | Chesapeake City | 51 | 550 | 51550 | 51550 | 47 | Virginia | 2849 | Chesapeake | Independent City | Independent City | 128 | 3 | 85 | 31 | 9 | 6 | 0.02344 | 0.66406 | 0.24219 | 0.07031 | |||
TRUE | Virginia | Clifton Forge City | 51 | 560 | 51560 | 51560 | 47 | Virginia | 2852 | Clifton Forge City | Independent City | Independent City | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
FALSE | Virginia | Colonial Heights City | 51 | 570 | 51570 | 51570 | 47 | Virginia | 2853 | Colonial Heights | Independent City | Independent City | 18 | 0 | 10 | 7 | 1 | 1 | 0 | 0.55556 | 0.38889 | 0.05556 | |||
FALSE | Virginia | Covington City | 51 | 580 | 51580 | 51580 | 47 | Virginia | 2854 | Covington | Independent City | Independent City | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
FALSE | Virginia | Danville City | 51 | 590 | 51590 | 51590 | 47 | Virginia | 2858 | Danville | Independent City | Independent City | 32 | 0 | 13 | 8 | 11 | 2 | 0 | 0.40625 | 0.25 | 0.34375 | |||
FALSE | Virginia | Emporia City | 51 | 595 | 51595 | 51595 | 47 | Virginia | 2861 | Emporia | Independent City | Independent City | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
FALSE | Virginia | Fairfax City | 51 | 600 | 51600 | 51600 | |||||||||||||||||||
FALSE | Virginia | Falls Church City | 51 | 610 | 51610 | 51610 | 47 | Virginia | 2864 | Falls Church | Independent City | Independent City | 43 | 0 | 27 | 14 | 2 | 2 | 0 | 0.62791 | 0.32558 | 0.04651 | |||
FALSE | Virginia | Franklin City | 51 | 620 | 51620 | 51620 | |||||||||||||||||||
FALSE | Virginia | Fredericksburg City | 51 | 630 | 51630 | 51630 | 47 | Virginia | 2870 | Fredericksburg | Independent City | Independent City | 22 | 1 | 16 | 5 | 0 | 1 | 0.04545 | 0.72727 | 0.22727 | 0 | |||
FALSE | Virginia | Galax City | 51 | 640 | 51640 | 51640 | 47 | Virginia | 2871 | Galax | Independent City | Independent City | 10 | 5 | 3 | 0 | 2 | 1 | 0.5 | 0.3 | 0 | 0.2 | |||
FALSE | Virginia | Hampton City | 51 | 650 | 51650 | 51650 | 47 | Virginia | 2879 | Hampton | Independent City | Independent City | 108 | 3 | 73 | 25 | 7 | 7 | 0.02778 | 0.67593 | 0.23148 | 0.06481 | |||
FALSE | Virginia | Harrisonburg City | 51 | 660 | 51660 | 51660 | 47 | Virginia | 2881 | Harrisonburg | Independent City | Independent City | 40 | 5 | 23 | 11 | 1 | 2 | 0.125 | 0.575 | 0.275 | 0.025 | |||
FALSE | Virginia | Hopewell City | 51 | 670 | 51670 | 51670 | 47 | Virginia | 2885 | Hopewell | Independent City | Independent City | 16 | 2 | 11 | 3 | 0 | 1 | 0.125 | 0.6875 | 0.1875 | 0 | |||
FALSE | Virginia | Lexington City | 51 | 678 | 51678 | 51678 | 47 | Virginia | 2893 | Lexington | Independent City | Independent City | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
FALSE | Virginia | Lynchburg City | 51 | 680 | 51680 | 51680 | 47 | Virginia | 2897 | Lynchburg | Independent City | Independent City | 71 | 0 | 48 | 13 | 10 | 5 | 0 | 0.67606 | 0.1831 | 0.14085 | |||
FALSE | Virginia | Manassas City | 51 | 683 | 51683 | 51683 | 47 | Virginia | 2900 | Manassas | Independent City | Independent City | 49 | 0 | 41 | 4 | 4 | 1 | 0 | 0.83673 | 0.08163 | 0.08163 | |||
FALSE | Virginia | Manassas Park City | 51 | 685 | 51685 | 51685 | 47 | Virginia | 2899 | Manassas Park | Independent City | Independent City | 20 | 3 | 14 | 3 | 0 | 1 | 0.15 | 0.7 | 0.15 | 0 | |||
FALSE | Virginia | Martinsville City | 51 | 690 | 51690 | 51690 | 47 | Virginia | 2901 | Martinsville | Independent City | Independent City | 14 | 0 | 2 | 7 | 5 | 1 | 0 | 0.14286 | 0.5 | 0.35714 | |||
FALSE | Virginia | Newport News City | 51 | 700 | 51700 | 51700 | 47 | Virginia | 2908 | Newport News | Independent City | Independent City | 130 | 4 | 88 | 27 | 11 | 8 | 0.03077 | 0.67692 | 0.20769 | 0.08462 | |||
FALSE | Virginia | Norfolk City | 51 | 710 | 51710 | 51710 | 47 | Virginia | 2909 | Norfolk | Independent City | Independent City | 128 | 4 | 79 | 33 | 12 | 15 | 0.03125 | 0.61719 | 0.25781 | 0.09375 | |||
FALSE | Virginia | Norton City | 51 | 720 | 51720 | 51720 | 47 | Virginia | 2912 | Norton | Independent City | Independent City | 3 | 1 | 1 | 1 | 0 | 1 | 0.33333 | 0.33333 | 0.33333 | 0 | |||
FALSE | Virginia | Petersburg City | 51 | 730 | 51730 | 51730 | 47 | Virginia | 2917 | Petersburg | Independent City | Independent City | 11 | 0 | 6 | 5 | 0 | 2 | 0 | 0.54545 | 0.45455 | 0 | |||
FALSE | Virginia | Poquoson City | 51 | 735 | 51735 | 51735 | 47 | Virginia | 2919 | Poquoson | Independent City | Independent City | 71 | 0 | 47 | 16 | 8 | 1 | 0 | 0.66197 | 0.22535 | 0.11268 | |||
FALSE | Virginia | Portsmouth City | 51 | 740 | 51740 | 51740 | 47 | Virginia | 2920 | Portsmouth | Independent City | Independent City | 60 | 0 | 35 | 20 | 5 | 6 | 0 | 0.58333 | 0.33333 | 0.08333 | |||
TRUE | Virginia | Radford | 51 | 750 | 51750 | 51750 | 47 | Virginia | 2926 | Radford | Independent City | Independent City | 20 | 6 | 6 | 6 | 2 | 2 | 0.3 | 0.3 | 0.3 | 0.1 | |||
FALSE | Virginia | Richmond City | 51 | 760 | 51760 | 51760 | 47 | Virginia | 2928 | Richmond | Independent City | Independent City | 110 | 2 | 58 | 36 | 14 | 11 | 0.01818 | 0.52727 | 0.32727 | 0.12727 | |||
FALSE | Virginia | Roanoke City | 51 | 770 | 51770 | 51770 | |||||||||||||||||||
FALSE | Virginia | Salem City | 51 | 775 | 51775 | 51775 | 47 | Virginia | 2933 | Salem | Independent City | Independent City | 24 | 3 | 16 | 3 | 2 | 1 | 0.125 | 0.66667 | 0.125 | 0.08333 | |||
FALSE | Virginia | South Boston City | 51 | 780 | 51780 | 51780 | |||||||||||||||||||
FALSE | Virginia | Staunton City | 51 | 790 | 51790 | 51790 | 47 | Virginia | 2940 | Staunton | Independent City | Independent City | 19 | 1 | 11 | 6 | 1 | 1 | 0.05263 | 0.57895 | 0.31579 | 0.05263 | |||
FALSE | Virginia | Suffolk City | 51 | 800 | 51800 | 51800 | 47 | Virginia | 2941 | Suffolk | Independent City | Independent City | 37 | 1 | 23 | 9 | 4 | 5 | 0.02703 | 0.62162 | 0.24324 | 0.10811 | |||
FALSE | Virginia | Virginia Beach City | 51 | 810 | 51810 | 51810 | 47 | Virginia | 2945 | Virginia Beach | Independent City | Independent City | 358 | 21 | 244 | 86 | 7 | 10 | 0.05866 | 0.68156 | 0.24022 | 0.01955 | |||
FALSE | Virginia | Waynesboro City | 51 | 820 | 51820 | 51820 | 47 | Virginia | 2948 | Waynesboro | Independent City | Independent City | 9 | 0 | 6 | 2 | 1 | 1 | 0 | 0.66667 | 0.22222 | 0.11111 | |||
FALSE | Virginia | Williamsburg City | 51 | 830 | 51830 | 51830 | 47 | Virginia | 2950 | Williamsburg | Independent City | Independent City | 40 | 1 | 27 | 11 | 1 | 1 | 0.025 | 0.675 | 0.275 | 0.025 | |||
FALSE | Virginia | Winchester City | 51 | 840 | 51840 | 51840 | 47 | Virginia | 2951 | Winchester | Independent City | Independent City | 24 | 2 | 17 | 5 | 0 | 1 | 0.08333 | 0.70833 | 0.20833 | 0 | |||
TRUE | Washington | Adams | 53 | 001 | 53001 | 53001 | 48 | Washington | 2955 | Adams | County | County | 18 | 14 | 4 | 0 | 0 | 3 | 0.77778 | 0.22222 | 0 | 0 | |||
TRUE | Washington | Asotin | 53 | 003 | 53003 | 53003 | 48 | Washington | 2956 | Asotin | County | County | 17 | 13 | 2 | 1 | 1 | 2 | 0.76471 | 0.11765 | 0.05882 | 0.05882 | |||
TRUE | Washington | Benton | 53 | 005 | 53005 | 53005 | 48 | Washington | 2957 | Benton | County | County | 225 | 165 | 50 | 7 | 3 | 7 | 0.73333 | 0.22222 | 0.03111 | 0.01333 | |||
TRUE | Washington | Chelan | 53 | 007 | 53007 | 53007 | 48 | Washington | 2958 | Chelan | County | County | 120 | 99 | 18 | 1 | 2 | 8 | 0.825 | 0.15 | 0.00833 | 0.01667 | |||
TRUE | Washington | Clallam | 53 | 009 | 53009 | 53009 | 48 | Washington | 2959 | Clallam | County | County | 67 | 49 | 16 | 0 | 2 | 4 | 0.73134 | 0.23881 | 0 | 0.02985 | |||
TRUE | Washington | Clark | 53 | 011 | 53011 | 53011 | 48 | Washington | 2960 | Clark | County | County | 490 | 349 | 124 | 7 | 10 | 22 | 0.71224 | 0.25306 | 0.01429 | 0.02041 | |||
TRUE | Washington | Columbia | 53 | 013 | 53013 | 53013 | 48 | Washington | 2961 | Columbia | County | County | 4 | 3 | 1 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Washington | Cowlitz | 53 | 015 | 53015 | 53015 | 48 | Washington | 2962 | Cowlitz | County | County | 87 | 68 | 17 | 1 | 1 | 4 | 0.78161 | 0.1954 | 0.01149 | 0.01149 | |||
TRUE | Washington | Douglas | 53 | 017 | 53017 | 53017 | 48 | Washington | 2963 | Douglas | County | County | 31 | 28 | 2 | 0 | 1 | 5 | 0.90323 | 0.06452 | 0 | 0.03226 | |||
TRUE | Washington | Ferry | 53 | 019 | 53019 | 53019 | 48 | Washington | 2964 | Ferry | County | County | 7 | 5 | 2 | 0 | 0 | 3 | 0.71429 | 0.28571 | 0 | 0 | |||
TRUE | Washington | Franklin | 53 | 021 | 53021 | 53021 | 48 | Washington | 2965 | Franklin | County | County | 46 | 34 | 12 | 0 | 0 | 4 | 0.73913 | 0.26087 | 0 | 0 | |||
TRUE | Washington | Garfield | 53 | 023 | 53023 | 53023 | 48 | Washington | 2966 | Garfield | County | County | 4 | 3 | 1 | 0 | 0 | 1 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | Washington | Grant | 53 | 025 | 53025 | 53025 | 48 | Washington | 2967 | Grant | County | County | 75 | 56 | 13 | 2 | 4 | 10 | 0.74667 | 0.17333 | 0.02667 | 0.05333 | |||
TRUE | Washington | Grays Harbor | 53 | 027 | 53027 | 53027 | 48 | Washington | 2968 | Grays Harbor | County | County | 70 | 50 | 18 | 0 | 2 | 7 | 0.71429 | 0.25714 | 0 | 0.02857 | |||
TRUE | Washington | Island | 53 | 029 | 53029 | 53029 | 48 | Washington | 2969 | Island | County | County | 57 | 28 | 27 | 2 | 0 | 7 | 0.49123 | 0.47368 | 0.03509 | 0 | |||
TRUE | Washington | Jefferson | 53 | 031 | 53031 | 53031 | 48 | Washington | 2970 | Jefferson | County | County | 24 | 16 | 7 | 0 | 1 | 6 | 0.66667 | 0.29167 | 0 | 0.04167 | |||
TRUE | Washington | King | 53 | 033 | 53033 | 53033 | 48 | Washington | 2971 | King | County | County | 3312 | 2304 | 818 | 90 | 100 | 93 | 0.69565 | 0.24698 | 0.02717 | 0.03019 | |||
TRUE | Washington | Kitsap | 53 | 035 | 53035 | 53035 | 48 | Washington | 2972 | Kitsap | County | County | 315 | 142 | 155 | 12 | 6 | 18 | 0.45079 | 0.49206 | 0.0381 | 0.01905 | |||
TRUE | Washington | Kittitas | 53 | 037 | 53037 | 53037 | 48 | Washington | 2973 | Kittitas | County | County | 36 | 27 | 7 | 0 | 2 | 4 | 0.75 | 0.19444 | 0 | 0.05556 | |||
TRUE | Washington | Klickitat | 53 | 039 | 53039 | 53039 | 48 | Washington | 2974 | Klickitat | County | County | 21 | 18 | 2 | 0 | 1 | 8 | 0.85714 | 0.09524 | 0 | 0.04762 | |||
TRUE | Washington | Lewis | 53 | 041 | 53041 | 53041 | 48 | Washington | 2975 | Lewis | County | County | 55 | 39 | 10 | 0 | 6 | 15 | 0.70909 | 0.18182 | 0 | 0.10909 | |||
TRUE | Washington | Lincoln | 53 | 043 | 53043 | 53043 | 48 | Washington | 2976 | Lincoln | County | County | 21 | 21 | 0 | 0 | 0 | 8 | 1 | 0 | 0 | 0 | |||
TRUE | Washington | Mason | 53 | 045 | 53045 | 53045 | 48 | Washington | 2977 | Mason | County | County | 25 | 17 | 7 | 0 | 1 | 3 | 0.68 | 0.28 | 0 | 0.04 | |||
TRUE | Washington | Okanogan | 53 | 047 | 53047 | 53047 | 48 | Washington | 2978 | Okanogan | County | County | 48 | 41 | 6 | 0 | 1 | 10 | 0.85417 | 0.125 | 0 | 0.02083 | |||
TRUE | Washington | Pacific | 53 | 049 | 53049 | 53049 | 48 | Washington | 2979 | Pacific | County | County | 15 | 13 | 2 | 0 | 0 | 6 | 0.86667 | 0.13333 | 0 | 0 | |||
TRUE | Washington | Pend Oreille | 53 | 051 | 53051 | 53051 | 48 | Washington | 2980 | Pend Oreille | County | County | 9 | 5 | 4 | 0 | 0 | 4 | 0.55556 | 0.44444 | 0 | 0 | |||
TRUE | Washington | Pierce | 53 | 053 | 53053 | 53053 | 48 | Washington | 2981 | Pierce | County | County | 725 | 469 | 218 | 17 | 21 | 49 | 0.6469 | 0.30069 | 0.02345 | 0.02897 | |||
TRUE | Washington | San Juan | 53 | 055 | 53055 | 53055 | 48 | Washington | 2982 | San Juan | County | County | 6 | 3 | 3 | 0 | 0 | 3 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Washington | Skagit | 53 | 057 | 53057 | 53057 | 48 | Washington | 2983 | Skagit | County | County | 109 | 76 | 25 | 3 | 5 | 8 | 0.69725 | 0.22936 | 0.02752 | 0.04587 | |||
TRUE | Washington | Skamania | 53 | 059 | 53059 | 53059 | 48 | Washington | 2984 | Skamania | County | County | 19 | 5 | 14 | 0 | 0 | 4 | 0.26316 | 0.73684 | 0 | 0 | |||
TRUE | Washington | Snohomish | 53 | 061 | 53061 | 53061 | 48 | Washington | 2985 | Snohomish | County | County | 786 | 573 | 168 | 23 | 22 | 24 | 0.72901 | 0.21374 | 0.02926 | 0.02799 | |||
TRUE | Washington | Spokane | 53 | 063 | 53063 | 53063 | 48 | Washington | 2986 | Spokane | County | County | 611 | 426 | 164 | 14 | 7 | 35 | 0.69722 | 0.26841 | 0.02291 | 0.01146 | |||
TRUE | Washington | Stevens | 53 | 065 | 53065 | 53065 | 48 | Washington | 2987 | Stevens | County | County | 38 | 30 | 7 | 0 | 1 | 10 | 0.78947 | 0.18421 | 0 | 0.02632 | |||
TRUE | Washington | Thurston | 53 | 067 | 53067 | 53067 | 48 | Washington | 2988 | Thurston | County | County | 250 | 177 | 61 | 6 | 6 | 14 | 0.708 | 0.244 | 0.024 | 0.024 | |||
TRUE | Washington | Wahkiakum | 53 | 069 | 53069 | 53069 | 48 | Washington | 2989 | Wahkiakum | County | County | 6 | 5 | 1 | 0 | 0 | 4 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Washington | Walla Walla | 53 | 071 | 53071 | 53071 | 48 | Washington | 2990 | Walla Walla | County | County | 8 | 7 | 1 | 0 | 0 | 4 | 0.875 | 0.125 | 0 | 0 | |||
TRUE | Washington | Whatcom | 53 | 073 | 53073 | 53073 | 48 | Washington | 2991 | Whatcom | County | County | 223 | 165 | 51 | 3 | 4 | 13 | 0.73991 | 0.2287 | 0.01345 | 0.01794 | |||
TRUE | Washington | Whitman | 53 | 075 | 53075 | 53075 | 48 | Washington | 2992 | Whitman | County | County | 106 | 56 | 47 | 2 | 1 | 10 | 0.5283 | 0.4434 | 0.01887 | 0.00943 | |||
TRUE | Washington | Yakima | 53 | 077 | 53077 | 53077 | 48 | Washington | 2993 | Yakima | County | County | 221 | 176 | 38 | 2 | 5 | 17 | 0.79638 | 0.17195 | 0.00905 | 0.02262 | |||
TRUE | West Virginia | Barbour | 54 | 001 | 54001 | 54001 | 49 | West Virginia | 2994 | Barbour | County | County | 12 | 10 | 1 | 0 | 1 | 4 | 0.83333 | 0.08333 | 0 | 0.08333 | |||
TRUE | West Virginia | Berkeley | 54 | 003 | 54003 | 54003 | 49 | West Virginia | 2995 | Berkeley | County | County | 42 | 10 | 29 | 2 | 1 | 8 | 0.2381 | 0.69048 | 0.04762 | 0.02381 | |||
TRUE | West Virginia | Boone | 54 | 005 | 54005 | 54005 | 49 | West Virginia | 2996 | Boone | County | County | 25 | 23 | 1 | 1 | 0 | 15 | 0.92 | 0.04 | 0.04 | 0 | |||
TRUE | West Virginia | Braxton | 54 | 007 | 54007 | 54007 | 49 | West Virginia | 2997 | Braxton | County | County | 15 | 13 | 1 | 1 | 0 | 5 | 0.86667 | 0.06667 | 0.06667 | 0 | |||
TRUE | West Virginia | Brooke | 54 | 009 | 54009 | 54009 | 49 | West Virginia | 2998 | Brooke | County | County | 34 | 33 | 1 | 0 | 0 | 5 | 0.97059 | 0.02941 | 0 | 0 | |||
TRUE | West Virginia | Cabell | 54 | 011 | 54011 | 54011 | 49 | West Virginia | 2999 | Cabell | County | County | 133 | 79 | 40 | 10 | 4 | 12 | 0.59398 | 0.30075 | 0.07519 | 0.03008 | |||
TRUE | West Virginia | Calhoun | 54 | 013 | 54013 | 54013 | 49 | West Virginia | 3000 | Calhoun | County | County | 7 | 6 | 1 | 0 | 0 | 3 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | West Virginia | Clay | 54 | 015 | 54015 | 54015 | 49 | West Virginia | 3001 | Clay | County | County | 4 | 4 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | West Virginia | Doddridge | 54 | 017 | 54017 | 54017 | 49 | West Virginia | 3002 | Doddridge | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | West Virginia | Fayette | 54 | 019 | 54019 | 54019 | 49 | West Virginia | 3003 | Fayette | County | County | 43 | 28 | 13 | 2 | 0 | 16 | 0.65116 | 0.30233 | 0.04651 | 0 | |||
TRUE | West Virginia | Gilmer | 54 | 021 | 54021 | 54021 | 49 | West Virginia | 3004 | Gilmer | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | West Virginia | Grant | 54 | 023 | 54023 | 54023 | 49 | West Virginia | 3005 | Grant | County | County | 9 | 5 | 4 | 0 | 0 | 3 | 0.55556 | 0.44444 | 0 | 0 | |||
TRUE | West Virginia | Greenbrier | 54 | 025 | 54025 | 54025 | 49 | West Virginia | 3006 | Greenbrier | County | County | 26 | 18 | 4 | 2 | 2 | 9 | 0.69231 | 0.15385 | 0.07692 | 0.07692 | |||
TRUE | West Virginia | Hampshire | 54 | 027 | 54027 | 54027 | 49 | West Virginia | 3007 | Hampshire | County | County | 5 | 1 | 3 | 0 | 1 | 5 | 0.2 | 0.6 | 0 | 0.2 | |||
TRUE | West Virginia | Hancock | 54 | 029 | 54029 | 54029 | 49 | West Virginia | 3008 | Hancock | County | County | 47 | 38 | 6 | 1 | 2 | 4 | 0.80851 | 0.12766 | 0.02128 | 0.04255 | |||
TRUE | West Virginia | Hardy | 54 | 031 | 54031 | 54031 | 49 | West Virginia | 3009 | Hardy | County | County | 10 | 5 | 4 | 0 | 1 | 3 | 0.5 | 0.4 | 0 | 0.1 | |||
TRUE | West Virginia | Harrison | 54 | 033 | 54033 | 54033 | 49 | West Virginia | 3010 | Harrison | County | County | 98 | 59 | 15 | 16 | 8 | 11 | 0.60204 | 0.15306 | 0.16327 | 0.08163 | |||
TRUE | West Virginia | Jackson | 54 | 035 | 54035 | 54035 | 49 | West Virginia | 3011 | Jackson | County | County | 27 | 23 | 3 | 0 | 1 | 5 | 0.85185 | 0.11111 | 0 | 0.03704 | |||
TRUE | West Virginia | Jefferson | 54 | 037 | 54037 | 54037 | 49 | West Virginia | 3012 | Jefferson | County | County | 25 | 1 | 22 | 2 | 0 | 5 | 0.04 | 0.88 | 0.08 | 0 | |||
TRUE | West Virginia | Kanawha | 54 | 039 | 54039 | 54039 | 49 | West Virginia | 3013 | Kanawha | County | County | 284 | 120 | 54 | 92 | 18 | 31 | 0.42254 | 0.19014 | 0.32394 | 0.06338 | |||
TRUE | West Virginia | Lewis | 54 | 041 | 54041 | 54041 | 49 | West Virginia | 3014 | Lewis | County | County | 11 | 8 | 1 | 2 | 0 | 3 | 0.72727 | 0.09091 | 0.18182 | 0 | |||
TRUE | West Virginia | Lincoln | 54 | 043 | 54043 | 54043 | 49 | West Virginia | 3015 | Lincoln | County | County | 13 | 11 | 1 | 1 | 0 | 8 | 0.84615 | 0.07692 | 0.07692 | 0 | |||
TRUE | West Virginia | Logan | 54 | 045 | 54045 | 54045 | 49 | West Virginia | 3016 | Logan | County | County | 34 | 32 | 2 | 0 | 0 | 14 | 0.94118 | 0.05882 | 0 | 0 | |||
TRUE | West Virginia | McDowell | 54 | 047 | 54047 | 54047 | 49 | West Virginia | 3020 | McDowell | County | County | 28 | 19 | 8 | 1 | 0 | 16 | 0.67857 | 0.28571 | 0.03571 | 0 | |||
TRUE | West Virginia | Marion | 54 | 049 | 54049 | 54049 | 49 | West Virginia | 3017 | Marion | County | County | 62 | 51 | 10 | 1 | 0 | 6 | 0.82258 | 0.16129 | 0.01613 | 0 | |||
TRUE | West Virginia | Marshall | 54 | 051 | 54051 | 54051 | 49 | West Virginia | 3018 | Marshall | County | County | 40 | 35 | 3 | 1 | 1 | 7 | 0.875 | 0.075 | 0.025 | 0.025 | |||
TRUE | West Virginia | Mason | 54 | 053 | 54053 | 54053 | 49 | West Virginia | 3019 | Mason | County | County | 16 | 12 | 4 | 0 | 0 | 5 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | West Virginia | Mercer | 54 | 055 | 54055 | 54055 | 49 | West Virginia | 3021 | Mercer | County | County | 61 | 37 | 16 | 4 | 4 | 9 | 0.60656 | 0.2623 | 0.06557 | 0.06557 | |||
TRUE | West Virginia | Mineral | 54 | 057 | 54057 | 54057 | 49 | West Virginia | 3022 | Mineral | County | County | 19 | 4 | 10 | 2 | 3 | 5 | 0.21053 | 0.52632 | 0.10526 | 0.15789 | |||
TRUE | West Virginia | Mingo | 54 | 059 | 54059 | 54059 | 49 | West Virginia | 3023 | Mingo | County | County | 17 | 13 | 1 | 3 | 0 | 6 | 0.76471 | 0.05882 | 0.17647 | 0 | |||
TRUE | West Virginia | Monongalia | 54 | 061 | 54061 | 54061 | 49 | West Virginia | 3024 | Monongalia | County | County | 151 | 95 | 38 | 10 | 8 | 9 | 0.62914 | 0.25166 | 0.06623 | 0.05298 | |||
TRUE | West Virginia | Monroe | 54 | 063 | 54063 | 54063 | 49 | West Virginia | 3025 | Monroe | County | County | 11 | 7 | 2 | 2 | 0 | 4 | 0.63636 | 0.18182 | 0.18182 | 0 | |||
TRUE | West Virginia | Morgan | 54 | 065 | 54065 | 54065 | 49 | West Virginia | 3026 | Morgan | County | County | 3 | 0 | 3 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | |||
TRUE | West Virginia | Nicholas | 54 | 067 | 54067 | 54067 | 49 | West Virginia | 3027 | Nicholas | County | County | 21 | 18 | 2 | 1 | 0 | 7 | 0.85714 | 0.09524 | 0.04762 | 0 | |||
TRUE | West Virginia | Ohio | 54 | 069 | 54069 | 54069 | 49 | West Virginia | 3028 | Ohio | County | County | 122 | 110 | 8 | 3 | 1 | 2 | 0.90164 | 0.06557 | 0.02459 | 0.0082 | |||
TRUE | West Virginia | Pendleton | 54 | 071 | 54071 | 54071 | 49 | West Virginia | 3029 | Pendleton | County | County | 8 | 4 | 3 | 0 | 1 | 3 | 0.5 | 0.375 | 0 | 0.125 | |||
TRUE | West Virginia | Pleasants | 54 | 073 | 54073 | 54073 | 49 | West Virginia | 3030 | Pleasants | County | County | 5 | 4 | 1 | 0 | 0 | 1 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | West Virginia | Pocahontas | 54 | 075 | 54075 | 54075 | 49 | West Virginia | 3031 | Pocahontas | County | County | 6 | 2 | 2 | 2 | 0 | 5 | 0.33333 | 0.33333 | 0.33333 | 0 | |||
TRUE | West Virginia | Preston | 54 | 077 | 54077 | 54077 | 49 | West Virginia | 3032 | Preston | County | County | 20 | 18 | 1 | 1 | 0 | 9 | 0.9 | 0.05 | 0.05 | 0 | |||
TRUE | West Virginia | Putnam | 54 | 079 | 54079 | 54079 | 49 | West Virginia | 3033 | Putnam | County | County | 48 | 28 | 8 | 11 | 1 | 6 | 0.58333 | 0.16667 | 0.22917 | 0.02083 | |||
TRUE | West Virginia | Raleigh | 54 | 081 | 54081 | 54081 | 49 | West Virginia | 3034 | Raleigh | County | County | 62 | 40 | 14 | 6 | 2 | 16 | 0.64516 | 0.22581 | 0.09677 | 0.03226 | |||
TRUE | West Virginia | Randolph | 54 | 083 | 54083 | 54083 | 49 | West Virginia | 3035 | Randolph | County | County | 25 | 20 | 4 | 1 | 0 | 5 | 0.8 | 0.16 | 0.04 | 0 | |||
TRUE | West Virginia | Ritchie | 54 | 085 | 54085 | 54085 | 49 | West Virginia | 3036 | Ritchie | County | County | 6 | 5 | 1 | 0 | 0 | 5 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | West Virginia | Roane | 54 | 087 | 54087 | 54087 | 49 | West Virginia | 3037 | Roane | County | County | 4 | 3 | 0 | 1 | 0 | 1 | 0.75 | 0 | 0.25 | 0 | |||
TRUE | West Virginia | Summers | 54 | 089 | 54089 | 54089 | 49 | West Virginia | 3038 | Summers | County | County | 13 | 9 | 2 | 1 | 1 | 5 | 0.69231 | 0.15385 | 0.07692 | 0.07692 | |||
TRUE | West Virginia | Taylor | 54 | 091 | 54091 | 54091 | 49 | West Virginia | 3039 | Taylor | County | County | 10 | 7 | 2 | 1 | 0 | 2 | 0.7 | 0.2 | 0.1 | 0 | |||
TRUE | West Virginia | Tucker | 54 | 093 | 54093 | 54093 | 49 | West Virginia | 3040 | Tucker | County | County | 4 | 3 | 1 | 0 | 0 | 3 | 0.75 | 0.25 | 0 | 0 | |||
TRUE | West Virginia | Tyler | 54 | 095 | 54095 | 54095 | 49 | West Virginia | 3041 | Tyler | County | County | 6 | 4 | 1 | 1 | 0 | 2 | 0.66667 | 0.16667 | 0.16667 | 0 | |||
TRUE | West Virginia | Upshur | 54 | 097 | 54097 | 54097 | 49 | West Virginia | 3042 | Upshur | County | County | 21 | 16 | 3 | 2 | 0 | 1 | 0.7619 | 0.14286 | 0.09524 | 0 | |||
TRUE | West Virginia | Wayne | 54 | 099 | 54099 | 54099 | 49 | West Virginia | 3043 | Wayne | County | County | 45 | 37 | 2 | 5 | 1 | 8 | 0.82222 | 0.04444 | 0.11111 | 0.02222 | |||
TRUE | West Virginia | Webster | 54 | 101 | 54101 | 54101 | 49 | West Virginia | 3044 | Webster | County | County | 6 | 5 | 1 | 0 | 0 | 3 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | West Virginia | Wetzel | 54 | 103 | 54103 | 54103 | 49 | West Virginia | 3045 | Wetzel | County | County | 36 | 28 | 6 | 2 | 0 | 6 | 0.77778 | 0.16667 | 0.05556 | 0 | |||
TRUE | West Virginia | Wirt | 54 | 105 | 54105 | 54105 | 49 | West Virginia | 3046 | Wirt | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | West Virginia | Wood | 54 | 107 | 54107 | 54107 | 49 | West Virginia | 3047 | Wood | County | County | 142 | 86 | 40 | 13 | 3 | 8 | 0.60563 | 0.28169 | 0.09155 | 0.02113 | |||
TRUE | West Virginia | Wyoming | 54 | 109 | 54109 | 54109 | 49 | West Virginia | 3048 | Wyoming | County | County | 18 | 17 | 1 | 0 | 0 | 8 | 0.94444 | 0.05556 | 0 | 0 | |||
TRUE | Wisconsin | Adams | 55 | 001 | 55001 | 55001 | 50 | Wisconsin | 3049 | Adams | County | County | 24 | 15 | 7 | 1 | 1 | 5 | 0.625 | 0.29167 | 0.04167 | 0.04167 | |||
TRUE | Wisconsin | Ashland | 55 | 003 | 55003 | 55003 | 50 | Wisconsin | 3050 | Ashland | County | County | 37 | 24 | 13 | 0 | 0 | 7 | 0.64865 | 0.35135 | 0 | 0 | |||
TRUE | Wisconsin | Barron | 55 | 005 | 55005 | 55005 | 50 | Wisconsin | 3051 | Barron | County | County | 53 | 46 | 7 | 0 | 0 | 9 | 0.86792 | 0.13208 | 0 | 0 | |||
TRUE | Wisconsin | Bayfield | 55 | 007 | 55007 | 55007 | 50 | Wisconsin | 3052 | Bayfield | County | County | 15 | 11 | 3 | 0 | 1 | 7 | 0.73333 | 0.2 | 0 | 0.06667 | |||
TRUE | Wisconsin | Brown | 55 | 009 | 55009 | 55009 | 50 | Wisconsin | 3053 | Brown | County | County | 418 | 111 | 294 | 3 | 10 | 14 | 0.26555 | 0.70335 | 0.00718 | 0.02392 | |||
TRUE | Wisconsin | Buffalo | 55 | 011 | 55011 | 55011 | 50 | Wisconsin | 3054 | Buffalo | County | County | 14 | 7 | 7 | 0 | 0 | 4 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Wisconsin | Burnett | 55 | 013 | 55013 | 55013 | 50 | Wisconsin | 3055 | Burnett | County | County | 11 | 10 | 1 | 0 | 0 | 3 | 0.90909 | 0.09091 | 0 | 0 | |||
TRUE | Wisconsin | Calumet | 55 | 015 | 55015 | 55015 | 50 | Wisconsin | 3056 | Calumet | County | County | 45 | 4 | 41 | 0 | 0 | 7 | 0.08889 | 0.91111 | 0 | 0 | |||
TRUE | Wisconsin | Chippewa | 55 | 017 | 55017 | 55017 | 50 | Wisconsin | 3057 | Chippewa | County | County | 78 | 59 | 18 | 1 | 0 | 8 | 0.75641 | 0.23077 | 0.01282 | 0 | |||
TRUE | Wisconsin | Clark | 55 | 019 | 55019 | 55019 | 50 | Wisconsin | 3058 | Clark | County | County | 31 | 19 | 12 | 0 | 0 | 11 | 0.6129 | 0.3871 | 0 | 0 | |||
TRUE | Wisconsin | Columbia | 55 | 021 | 55021 | 55021 | 50 | Wisconsin | 3059 | Columbia | County | County | 83 | 49 | 34 | 0 | 0 | 11 | 0.59036 | 0.40964 | 0 | 0 | |||
TRUE | Wisconsin | Crawford | 55 | 023 | 55023 | 55023 | 50 | Wisconsin | 3060 | Crawford | County | County | 24 | 20 | 4 | 0 | 0 | 5 | 0.83333 | 0.16667 | 0 | 0 | |||
TRUE | Wisconsin | Dane | 55 | 025 | 55025 | 55025 | 50 | Wisconsin | 3061 | Dane | County | County | 1013 | 420 | 563 | 10 | 20 | 37 | 0.41461 | 0.55577 | 0.00987 | 0.01974 | |||
TRUE | Wisconsin | Dodge | 55 | 027 | 55027 | 55027 | 50 | Wisconsin | 3062 | Dodge | County | County | 101 | 13 | 87 | 0 | 1 | 14 | 0.12871 | 0.86139 | 0 | 0.0099 | |||
TRUE | Wisconsin | Door | 55 | 029 | 55029 | 55029 | 50 | Wisconsin | 3063 | Door | County | County | 38 | 6 | 31 | 1 | 0 | 8 | 0.15789 | 0.81579 | 0.02632 | 0 | |||
TRUE | Wisconsin | Douglas | 55 | 031 | 55031 | 55031 | 50 | Wisconsin | 3064 | Douglas | County | County | 81 | 66 | 14 | 0 | 1 | 8 | 0.81481 | 0.17284 | 0 | 0.01235 | |||
TRUE | Wisconsin | Dunn | 55 | 033 | 55033 | 55033 | 50 | Wisconsin | 3065 | Dunn | County | County | 59 | 38 | 20 | 0 | 1 | 6 | 0.64407 | 0.33898 | 0 | 0.01695 | |||
TRUE | Wisconsin | Eau Claire | 55 | 035 | 55035 | 55035 | 50 | Wisconsin | 3066 | Eau Claire | County | County | 186 | 130 | 52 | 1 | 3 | 7 | 0.69892 | 0.27957 | 0.00538 | 0.01613 | |||
TRUE | Wisconsin | Florence | 55 | 037 | 55037 | 55037 | 50 | Wisconsin | 3067 | Florence | County | County | 2 | 1 | 1 | 0 | 0 | 1 | 0.5 | 0.5 | 0 | 0 | |||
FALSE | Wisconsin | Fond Du Lac | 55 | 039 | 55039 | 55039 | 50 | Wisconsin | 3068 | Fond du Lac | County | County | 182 | 29 | 149 | 2 | 2 | 13 | 0.15934 | 0.81868 | 0.01099 | 0.01099 | |||
TRUE | Wisconsin | Forest | 55 | 041 | 55041 | 55041 | 50 | Wisconsin | 3069 | Forest | County | County | 10 | 5 | 5 | 0 | 0 | 4 | 0.5 | 0.5 | 0 | 0 | |||
TRUE | Wisconsin | Grant | 55 | 043 | 55043 | 55043 | 50 | Wisconsin | 3070 | Grant | County | County | 96 | 64 | 27 | 3 | 2 | 18 | 0.66667 | 0.28125 | 0.03125 | 0.02083 | |||
FALSE | Wisconsin | Green | 55 | 045 | 55045 | 55045 | 50 | Wisconsin | 3071 | Green Lake | County | County | 21 | 13 | 6 | 0 | 2 | 6 | 0.61905 | 0.28571 | 0 | 0.09524 | |||
FALSE | Wisconsin | Green Lake | 55 | 047 | 55047 | 55047 | 50 | Wisconsin | 3072 | Green | County | County | 51 | 42 | 7 | 0 | 2 | 7 | 0.82353 | 0.13725 | 0 | 0.03922 | |||
TRUE | Wisconsin | Iowa | 55 | 049 | 55049 | 55049 | 50 | Wisconsin | 3073 | Iowa | County | County | 30 | 22 | 8 | 0 | 0 | 12 | 0.73333 | 0.26667 | 0 | 0 | |||
TRUE | Wisconsin | Iron | 55 | 051 | 55051 | 55051 | 50 | Wisconsin | 3074 | Iron | County | County | 8 | 8 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | |||
TRUE | Wisconsin | Jackson | 55 | 053 | 55053 | 55053 | 50 | Wisconsin | 3075 | Jackson | County | County | 14 | 12 | 2 | 0 | 0 | 4 | 0.85714 | 0.14286 | 0 | 0 | |||
TRUE | Wisconsin | Jefferson | 55 | 055 | 55055 | 55055 | 50 | Wisconsin | 3076 | Jefferson | County | County | 129 | 28 | 96 | 1 | 4 | 10 | 0.21705 | 0.74419 | 0.00775 | 0.03101 | |||
TRUE | Wisconsin | Juneau | 55 | 057 | 55057 | 55057 | 50 | Wisconsin | 3077 | Juneau | County | County | 25 | 17 | 6 | 0 | 2 | 8 | 0.68 | 0.24 | 0 | 0.08 | |||
TRUE | Wisconsin | Kenosha | 55 | 059 | 55059 | 55059 | 50 | Wisconsin | 3078 | Kenosha | County | County | 199 | 72 | 115 | 3 | 9 | 11 | 0.36181 | 0.57789 | 0.01508 | 0.04523 | |||
TRUE | Wisconsin | Kewaunee | 55 | 061 | 55061 | 55061 | 50 | Wisconsin | 3079 | Kewaunee | County | County | 28 | 3 | 24 | 0 | 1 | 4 | 0.10714 | 0.85714 | 0 | 0.03571 | |||
TRUE | Wisconsin | La Crosse | 55 | 063 | 55063 | 55063 | 50 | Wisconsin | 3080 | La Crosse | County | County | 192 | 139 | 50 | 0 | 3 | 7 | 0.72396 | 0.26042 | 0 | 0.01562 | |||
TRUE | Wisconsin | Lafayette | 55 | 065 | 55065 | 55065 | 50 | Wisconsin | 3081 | Lafayette | County | County | 32 | 21 | 11 | 0 | 0 | 9 | 0.65625 | 0.34375 | 0 | 0 | |||
TRUE | Wisconsin | Langlade | 55 | 067 | 55067 | 55067 | 50 | Wisconsin | 3084 | Langlade | County | County | 12 | 2 | 10 | 0 | 0 | 4 | 0.16667 | 0.83333 | 0 | 0 | |||
TRUE | Wisconsin | Lincoln | 55 | 069 | 55069 | 55069 | 50 | Wisconsin | 3085 | Lincoln | County | County | 47 | 28 | 18 | 0 | 1 | 2 | 0.59574 | 0.38298 | 0 | 0.02128 | |||
TRUE | Wisconsin | Manitowoc | 55 | 071 | 55071 | 55071 | 50 | Wisconsin | 3086 | Manitowoc | County | County | 169 | 3 | 163 | 1 | 2 | 13 | 0.01775 | 0.9645 | 0.00592 | 0.01183 | |||
TRUE | Wisconsin | Marathon | 55 | 073 | 55073 | 55073 | 50 | Wisconsin | 3087 | Marathon | County | County | 181 | 106 | 74 | 0 | 1 | 15 | 0.58564 | 0.40884 | 0 | 0.00552 | |||
TRUE | Wisconsin | Marinette | 55 | 075 | 55075 | 55075 | 50 | Wisconsin | 3088 | Marinette | County | County | 55 | 22 | 32 | 0 | 1 | 10 | 0.4 | 0.58182 | 0 | 0.01818 | |||
TRUE | Wisconsin | Marquette | 55 | 077 | 55077 | 55077 | 50 | Wisconsin | 3089 | Marquette | County | County | 15 | 8 | 7 | 0 | 0 | 4 | 0.53333 | 0.46667 | 0 | 0 | |||
TRUE | Wisconsin | Menominee | 55 | 078 | 55078 | 55078 | 50 | Wisconsin | 3090 | Menominee | County | County | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |||
TRUE | Wisconsin | Milwaukee | 55 | 079 | 55079 | 55079 | 50 | Wisconsin | 3091 | Milwaukee | County | County | 2170 | 75 | 2055 | 13 | 27 | 36 | 0.03456 | 0.947 | 0.00599 | 0.01244 | |||
TRUE | Wisconsin | Monroe | 55 | 081 | 55081 | 55081 | 50 | Wisconsin | 3092 | Monroe | County | County | 42 | 30 | 11 | 0 | 1 | 7 | 0.71429 | 0.2619 | 0 | 0.02381 | |||
TRUE | Wisconsin | Oconto | 55 | 083 | 55083 | 55083 | 50 | Wisconsin | 3093 | Oconto | County | County | 24 | 6 | 17 | 0 | 1 | 7 | 0.25 | 0.70833 | 0 | 0.04167 | |||
TRUE | Wisconsin | Oneida | 55 | 085 | 55085 | 55085 | 50 | Wisconsin | 3094 | Oneida | County | County | 48 | 17 | 28 | 0 | 3 | 4 | 0.35417 | 0.58333 | 0 | 0.0625 | |||
TRUE | Wisconsin | Outagamie | 55 | 087 | 55087 | 55087 | 50 | Wisconsin | 3095 | Outagamie | County | County | 310 | 106 | 191 | 3 | 10 | 14 | 0.34194 | 0.61613 | 0.00968 | 0.03226 | |||
TRUE | Wisconsin | Ozaukee | 55 | 089 | 55089 | 55089 | 50 | Wisconsin | 3096 | Ozaukee | County | County | 280 | 10 | 263 | 3 | 4 | 8 | 0.03571 | 0.93929 | 0.01071 | 0.01429 | |||
TRUE | Wisconsin | Pepin | 55 | 091 | 55091 | 55091 | 50 | Wisconsin | 3097 | Pepin | County | County | 15 | 15 | 0 | 0 | 0 | 4 | 1 | 0 | 0 | 0 | |||
TRUE | Wisconsin | Pierce | 55 | 093 | 55093 | 55093 | 50 | Wisconsin | 3098 | Pierce | County | County | 75 | 63 | 12 | 0 | 0 | 9 | 0.84 | 0.16 | 0 | 0 | |||
TRUE | Wisconsin | Polk | 55 | 095 | 55095 | 55095 | 50 | Wisconsin | 3099 | Polk | County | County | 60 | 51 | 9 | 0 | 0 | 12 | 0.85 | 0.15 | 0 | 0 | |||
TRUE | Wisconsin | Portage | 55 | 097 | 55097 | 55097 | 50 | Wisconsin | 3100 | Portage | County | County | 109 | 31 | 78 | 0 | 0 | 9 | 0.2844 | 0.7156 | 0 | 0 | |||
TRUE | Wisconsin | Price | 55 | 099 | 55099 | 55099 | 50 | Wisconsin | 3101 | Price | County | County | 27 | 14 | 13 | 0 | 0 | 7 | 0.51852 | 0.48148 | 0 | 0 | |||
TRUE | Wisconsin | Racine | 55 | 101 | 55101 | 55101 | 50 | Wisconsin | 3102 | Racine | County | County | 451 | 19 | 422 | 3 | 7 | 13 | 0.04213 | 0.9357 | 0.00665 | 0.01552 | |||
TRUE | Wisconsin | Richland | 55 | 103 | 55103 | 55103 | 50 | Wisconsin | 3103 | Richland | County | County | 21 | 12 | 8 | 0 | 1 | 4 | 0.57143 | 0.38095 | 0 | 0.04762 | |||
TRUE | Wisconsin | Rock | 55 | 105 | 55105 | 55105 | 50 | Wisconsin | 3104 | Rock | County | County | 315 | 196 | 102 | 6 | 11 | 10 | 0.62222 | 0.32381 | 0.01905 | 0.03492 | |||
TRUE | Wisconsin | Rusk | 55 | 107 | 55107 | 55107 | 50 | Wisconsin | 3105 | Rusk | County | County | 19 | 12 | 5 | 1 | 1 | 7 | 0.63158 | 0.26316 | 0.05263 | 0.05263 | |||
FALSE | Wisconsin | St Croix | 55 | 109 | 55109 | 55109 | 50 | Wisconsin | 3106 | Saint Croix | County | County | 124 | 103 | 19 | 0 | 2 | 10 | 0.83065 | 0.15323 | 0 | 0.01613 | |||
TRUE | Wisconsin | Sauk | 55 | 111 | 55111 | 55111 | 50 | Wisconsin | 3107 | Sauk | County | County | 90 | 57 | 29 | 1 | 3 | 10 | 0.63333 | 0.32222 | 0.01111 | 0.03333 | |||
TRUE | Wisconsin | Sawyer | 55 | 113 | 55113 | 55113 | 50 | Wisconsin | 3108 | Sawyer | County | County | 18 | 12 | 4 | 1 | 1 | 3 | 0.66667 | 0.22222 | 0.05556 | 0.05556 | |||
TRUE | Wisconsin | Shawano | 55 | 115 | 55115 | 55115 | 50 | Wisconsin | 3109 | Shawano | County | County | 48 | 9 | 33 | 4 | 2 | 8 | 0.1875 | 0.6875 | 0.08333 | 0.04167 | |||
TRUE | Wisconsin | Sheboygan | 55 | 117 | 55117 | 55117 | 50 | Wisconsin | 3110 | Sheboygan | County | County | 274 | 12 | 258 | 2 | 2 | 14 | 0.0438 | 0.94161 | 0.0073 | 0.0073 | |||
TRUE | Wisconsin | Taylor | 55 | 119 | 55119 | 55119 | 50 | Wisconsin | 3111 | Taylor | County | County | 21 | 12 | 8 | 0 | 1 | 4 | 0.57143 | 0.38095 | 0 | 0.04762 | |||
TRUE | Wisconsin | Trempealeau | 55 | 121 | 55121 | 55121 | 50 | Wisconsin | 3112 | Trempealeau | County | County | 40 | 31 | 8 | 0 | 1 | 10 | 0.775 | 0.2 | 0 | 0.025 | |||
TRUE | Wisconsin | Vernon | 55 | 123 | 55123 | 55123 | 50 | Wisconsin | 3113 | Vernon | County | County | 39 | 29 | 9 | 0 | 1 | 8 | 0.74359 | 0.23077 | 0 | 0.02564 | |||
TRUE | Wisconsin | Vilas | 55 | 125 | 55125 | 55125 | 50 | Wisconsin | 3114 | Vilas | County | County | 24 | 5 | 17 | 0 | 2 | 7 | 0.20833 | 0.70833 | 0 | 0.08333 | |||
TRUE | Wisconsin | Walworth | 55 | 127 | 55127 | 55127 | 50 | Wisconsin | 3115 | Walworth | County | County | 115 | 37 | 75 | 0 | 3 | 12 | 0.32174 | 0.65217 | 0 | 0.02609 | |||
TRUE | Wisconsin | Washburn | 55 | 129 | 55129 | 55129 | 50 | Wisconsin | 3116 | Washburn | County | County | 31 | 25 | 4 | 0 | 2 | 7 | 0.80645 | 0.12903 | 0 | 0.06452 | |||
TRUE | Wisconsin | Washington | 55 | 131 | 55131 | 55131 | 50 | Wisconsin | 3117 | Washington | County | County | 302 | 10 | 286 | 2 | 4 | 12 | 0.03311 | 0.94702 | 0.00662 | 0.01325 | |||
TRUE | Wisconsin | Waukesha | 55 | 133 | 55133 | 55133 | 50 | Wisconsin | 3118 | Waukesha | County | County | 1053 | 21 | 1009 | 6 | 17 | 30 | 0.01994 | 0.95821 | 0.0057 | 0.01614 | |||
TRUE | Wisconsin | Waupaca | 55 | 135 | 55135 | 55135 | 50 | Wisconsin | 3119 | Waupaca | County | County | 67 | 22 | 44 | 1 | 0 | 11 | 0.32836 | 0.65672 | 0.01493 | 0 | |||
TRUE | Wisconsin | Waushara | 55 | 137 | 55137 | 55137 | 50 | Wisconsin | 3120 | Waushara | County | County | 16 | 3 | 13 | 0 | 0 | 7 | 0.1875 | 0.8125 | 0 | 0 | |||
TRUE | Wisconsin | Winnebago | 55 | 139 | 55139 | 55139 | 50 | Wisconsin | 3121 | Winnebago | County | County | 247 | 105 | 134 | 2 | 6 | 10 | 0.4251 | 0.54251 | 0.0081 | 0.02429 | |||
TRUE | Wisconsin | Wood | 55 | 141 | 55141 | 55141 | 50 | Wisconsin | 3122 | Wood | County | County | 110 | 55 | 51 | 3 | 1 | 11 | 0.5 | 0.46364 | 0.02727 | 0.00909 | |||
TRUE | Wyoming | Albany | 56 | 001 | 56001 | 56001 | 51 | Wyoming | 3123 | Albany | County | County | 44 | 28 | 11 | 5 | 0 | 3 | 0.63636 | 0.25 | 0.11364 | 0 | |||
TRUE | Wyoming | Big Horn | 56 | 003 | 56003 | 56003 | 51 | Wyoming | 3124 | Big Horn | County | County | 13 | 6 | 1 | 0 | 6 | 5 | 0.46154 | 0.07692 | 0 | 0.46154 | |||
TRUE | Wyoming | Campbell | 56 | 005 | 56005 | 56005 | 51 | Wyoming | 3125 | Campbell | County | County | 54 | 35 | 6 | 2 | 11 | 5 | 0.64815 | 0.11111 | 0.03704 | 0.2037 | |||
TRUE | Wyoming | Carbon | 56 | 007 | 56007 | 56007 | 51 | Wyoming | 3126 | Carbon | County | County | 15 | 14 | 1 | 0 | 0 | 5 | 0.93333 | 0.06667 | 0 | 0 | |||
TRUE | Wyoming | Converse | 56 | 009 | 56009 | 56009 | 51 | Wyoming | 3127 | Converse | County | County | 10 | 8 | 2 | 0 | 0 | 2 | 0.8 | 0.2 | 0 | 0 | |||
TRUE | Wyoming | Crook | 56 | 011 | 56011 | 56011 | 51 | Wyoming | 3128 | Crook | County | County | 7 | 3 | 3 | 1 | 0 | 3 | 0.42857 | 0.42857 | 0.14286 | 0 | |||
TRUE | Wyoming | Fremont | 56 | 013 | 56013 | 56013 | 51 | Wyoming | 3129 | Fremont | County | County | 39 | 32 | 6 | 0 | 1 | 6 | 0.82051 | 0.15385 | 0 | 0.02564 | |||
TRUE | Wyoming | Goshen | 56 | 015 | 56015 | 56015 | 51 | Wyoming | 3130 | Goshen | County | County | 12 | 9 | 1 | 0 | 2 | 2 | 0.75 | 0.08333 | 0 | 0.16667 | |||
TRUE | Wyoming | Hot Springs | 56 | 017 | 56017 | 56017 | 51 | Wyoming | 3131 | Hot Springs | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Wyoming | Johnson | 56 | 019 | 56019 | 56019 | 51 | Wyoming | 3132 | Johnson | County | County | 13 | 11 | 1 | 1 | 0 | 1 | 0.84615 | 0.07692 | 0.07692 | 0 | |||
TRUE | Wyoming | Laramie | 56 | 021 | 56021 | 56021 | 51 | Wyoming | 3133 | Laramie | County | County | 90 | 63 | 21 | 3 | 3 | 4 | 0.7 | 0.23333 | 0.03333 | 0.03333 | |||
TRUE | Wyoming | Lincoln | 56 | 023 | 56023 | 56023 | 51 | Wyoming | 3134 | Lincoln | County | County | 10 | 8 | 1 | 1 | 0 | 7 | 0.8 | 0.1 | 0.1 | 0 | |||
TRUE | Wyoming | Natrona | 56 | 025 | 56025 | 56025 | 51 | Wyoming | 3135 | Natrona | County | County | 75 | 57 | 15 | 2 | 1 | 6 | 0.76 | 0.2 | 0.02667 | 0.01333 | |||
TRUE | Wyoming | Niobrara | 56 | 027 | 56027 | 56027 | 51 | Wyoming | 3136 | Niobrara | County | County | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Wyoming | Park | 56 | 029 | 56029 | 56029 | 51 | Wyoming | 3137 | Park | County | County | 34 | 22 | 9 | 1 | 2 | 2 | 0.64706 | 0.26471 | 0.02941 | 0.05882 | |||
TRUE | Wyoming | Platte | 56 | 031 | 56031 | 56031 | 51 | Wyoming | 3138 | Platte | County | County | 11 | 8 | 3 | 0 | 0 | 2 | 0.72727 | 0.27273 | 0 | 0 | |||
TRUE | Wyoming | Sheridan | 56 | 033 | 56033 | 56033 | 51 | Wyoming | 3139 | Sheridan | County | County | 32 | 21 | 10 | 1 | 0 | 4 | 0.65625 | 0.3125 | 0.03125 | 0 | |||
TRUE | Wyoming | Sublette | 56 | 035 | 56035 | 56035 | 51 | Wyoming | 3140 | Sublette | County | County | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | |||
TRUE | Wyoming | Sweetwater | 56 | 037 | 56037 | 56037 | 51 | Wyoming | 3141 | Sweetwater | County | County | 32 | 27 | 2 | 1 | 2 | 2 | 0.84375 | 0.0625 | 0.03125 | 0.0625 | |||
TRUE | Wyoming | Teton | 56 | 039 | 56039 | 56039 | 51 | Wyoming | 3142 | Teton | County | County | 14 | 8 | 3 | 3 | 0 | 3 | 0.57143 | 0.21429 | 0.21429 | 0 | |||
TRUE | Wyoming | Uinta | 56 | 041 | 56041 | 56041 | 51 | Wyoming | 3143 | Uinta | County | County | 21 | 16 | 4 | 1 | 0 | 4 | 0.7619 | 0.19048 | 0.04762 | 0 | |||
TRUE | Wyoming | Washakie | 56 | 043 | 56043 | 56043 | 51 | Wyoming | 3144 | Washakie | County | County | 67 | 15 | 4 | 0 | 48 | 2 | 0.22388 | 0.0597 | 0 | 0.71642 | |||
TRUE | Wyoming | Weston | 56 | 045 | 56045 | 56045 | 51 | Wyoming | 3145 | Weston | County | County | 11 | 10 | 1 | 0 | 0 | 2 | 0.90909 | 0.09091 | 0 | 0 |
{"type":"Topology","transform":{"scale":[0.011125945294529453,0.005248969796979699],"translate":[-178.217598,18.921786]},"objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":27077,"arcs":[[0,1,2,3]]},{"type":"Polygon","id":53019,"arcs":[[4,5,6,7]]},{"type":"Polygon","id":53065,"arcs":[[8,9,10,11,-6]]},{"type":"Polygon","id":53047,"arcs":[[12,13,-8,14,15,16,17,18]]},{"type":"Polygon","id":53051,"arcs":[[19,20,21,22,-10]]},{"type":"Polygon","id":16021,"arcs":[[-21,23,24,25]]},{"type":"Polygon","id":30053,"arcs":[[26,27,-25,28,29]]},{"type":"Polygon","id":30029,"arcs":[[30,31,32,33,34,35,36,37,38,-30]]},{"type":"Polygon","id":30035,"arcs":[[-32,39,40,41]]},{"type":"Polygon","id":30101,"arcs":[[-41,42,43,44]]},{"type":"Polygon","id":30051,"arcs":[[45,46,47,48,-44]]},{"type":"Polygon","id":30041,"arcs":[[-47,49,50,51]]},{"type":"Polygon","id":30091,"arcs":[[52,53,54,55,56]]},{"type":"Polygon","id":38023,"arcs":[[-55,57,58,59]]},{"type":"Polygon","id":38013,"arcs":[[60,61,62,63,64,-59]]},{"type":"Polygon","id":38075,"arcs":[[-62,65,66,67,68]]},{"type":"Polygon","id":38009,"arcs":[[69,70,71,72,-67]]},{"type":"Polygon","id":38079,"arcs":[[73,74,75,-71]]},{"type":"Polygon","id":38095,"arcs":[[76,77,78,79,80,-75]]},{"type":"Polygon","id":38019,"arcs":[[81,82,83,84,-78]]},{"type":"Polygon","id":38067,"arcs":[[85,86,87,-83]]},{"type":"Polygon","id":27069,"arcs":[[88,-87,89,90,91]]},{"type":"Polygon","id":27135,"arcs":[[92,-1,93,94,-91]]},{"type":"Polygon","id":30005,"arcs":[[95,96,97,98,-51]]},{"type":"Polygon","id":30071,"arcs":[[99,100,101,102,103,-97]]},{"type":"Polygon","id":30105,"arcs":[[104,-101,105,106,107,108]]},{"type":"Polygon","id":30019,"arcs":[[109,-53,110,-107]]},{"type":"Polygon","id":53073,"arcs":[[111,112,-13]]},{"type":"Polygon","id":16017,"arcs":[[113,-22,-26,-28,114,115,116]]},{"type":"Polygon","id":38101,"arcs":[[117,118,119,-63,-69]]},{"type":"Polygon","id":27071,"arcs":[[120,-3,121,122,123]]},{"type":"Polygon","id":53057,"arcs":[[124,125,126,-112,-19]]},{"type":"Polygon","id":38105,"arcs":[[127,-56,-60,-65,128,129]]},{"type":"Polygon","id":38049,"arcs":[[130,131,-118,-68,-73,132]]},{"type":"Polygon","id":27137,"arcs":[[133,134,135,136,-123,137,138]]},{"type":"Polygon","id":53055,"arcs":[[139]]},{"type":"Polygon","id":30085,"arcs":[[140,141,-108,-111,-57,-128]]},{"type":"Polygon","id":38061,"arcs":[[142,143,144,-129,-64,-120]]},{"type":"Polygon","id":27089,"arcs":[[145,146,-92,-95,147,148,149]]},{"type":"Polygon","id":38071,"arcs":[[150,151,-79,-85,152]]},{"type":"Polygon","id":38099,"arcs":[[-84,-88,-89,-147,153,154,-153]]},{"type":"Polygon","id":27007,"arcs":[[155,-148,-94,-4,-121,156,157,158,159]]},{"type":"Polygon","id":38069,"arcs":[[-72,-76,-81,160,161,162,-133]]},{"type":"Polygon","id":53007,"arcs":[[-18,163,164,165,166,-125]]},{"type":"Polygon","id":30073,"arcs":[[-49,167,168,-33,-42,-45]]},{"type":"Polygon","id":53009,"arcs":[[169,170]]},{"type":"Polygon","id":38005,"arcs":[[-80,-152,171,172,173,-161]]},{"type":"Polygon","id":30015,"arcs":[[-99,174,175,176,177,-168,-48,-52]]},{"type":"Polygon","id":53061,"arcs":[[178,179,180,181,-126,-167]]},{"type":"MultiPolygon","id":53029,"arcs":[[[182]],[[-181,183]]]},{"type":"Polygon","id":30089,"arcs":[[-39,184,185,186,187,-115,-27]]},{"type":"Polygon","id":27075,"arcs":[[-139,188,189,190]]},{"type":"Polygon","id":38063,"arcs":[[191,192,193,-172,-151,-155,194]]},{"type":"Polygon","id":38035,"arcs":[[-154,-146,195,196,197,-195]]},{"type":"Polygon","id":27119,"arcs":[[198,199,200,201,202,203,-196,-150,204]]},{"type":"Polygon","id":27113,"arcs":[[-149,-156,205,-200,206,-205]]},{"type":"Polygon","id":53017,"arcs":[[207,208,-164,-17]]},{"type":"Polygon","id":38053,"arcs":[[209,210,211,212,213,-130,-145]]},{"type":"Polygon","id":53031,"arcs":[[214,-171,215,216,217]]},{"type":"Polygon","id":30083,"arcs":[[-214,218,219,220,-141]]},{"type":"Polygon","id":30099,"arcs":[[-178,221,222,-34,-169]]},{"type":"Polygon","id":30055,"arcs":[[-142,-221,223,224,225,-109]]},{"type":"Polygon","id":16079,"arcs":[[226,227,228,229,-116,-188,230]]},{"type":"Polygon","id":53063,"arcs":[[-114,231,232,233,234,-11,-23]]},{"type":"Polygon","id":30047,"arcs":[[-185,-38,235]]},{"type":"Polygon","id":27029,"arcs":[[236,237,-201,-206,-160,238]]},{"type":"Polygon","id":16055,"arcs":[[-230,239,-232,-117]]},{"type":"Polygon","id":30033,"arcs":[[-105,-226,240,241,242,243,-102]]},{"type":"Polygon","id":27125,"arcs":[[-199,-207]]},{"type":"Polygon","id":53025,"arcs":[[-208,-16,244,245,246,247,248,249]]},{"type":"Polygon","id":53043,"arcs":[[-235,250,251,-245,-15,-7,-12]]},{"type":"Polygon","id":30049,"arcs":[[-223,252,253,254,255,256,-35]]},{"type":"Polygon","id":53035,"arcs":[[257,258,259,260]]},{"type":"Polygon","id":27061,"arcs":[[-137,261,262,-157,-124]]},{"type":"Polygon","id":38083,"arcs":[[-131,-163,263,264,265,266]]},{"type":"Polygon","id":38103,"arcs":[[-162,-174,267,268,269,270,-264]]},{"type":"Polygon","id":38055,"arcs":[[-119,-132,-267,271,272,273,274,-143]]},{"type":"Polygon","id":38027,"arcs":[[-173,-194,275,276,-268]]},{"type":"Polygon","id":38025,"arcs":[[-144,-275,277,278,279,-210]]},{"type":"Polygon","id":30027,"arcs":[[-98,-104,280,281,282,283,284,-175]]},{"type":"Polygon","id":30021,"arcs":[[285,286,-224,-220]]},{"type":"Polygon","id":53033,"arcs":[[287,288,289,-179,-166]]},{"type":"Polygon","id":30013,"arcs":[[-177,290,291,-253,-222]]},{"type":"Polygon","id":38039,"arcs":[[292,-276,-193,293,294,295]]},{"type":"Polygon","id":38091,"arcs":[[-192,-198,296,297,298,-294]]},{"type":"Polygon","id":38097,"arcs":[[299,-297,-197,-204,300]]},{"type":"Polygon","id":53045,"arcs":[[301,-259,302,303,304,305,-217]]},{"type":"Polygon","id":30063,"arcs":[[-186,-236,-37,306,307,308,309,310,311]]},{"type":"Polygon","id":30069,"arcs":[[312,313,-281,-103,-244]]},{"type":"Polygon","id":30077,"arcs":[[314,315,316,-307,-36,-257]]},{"type":"Polygon","id":53037,"arcs":[[-250,317,318,-288,-165,-209]]},{"type":"Polygon","id":38031,"arcs":[[319,-269,-277,-293]]},{"type":"Polygon","id":38057,"arcs":[[320,321,322,-278,-274]]},{"type":"Polygon","id":53027,"arcs":[[323,324,325,326,-218,-306]]},{"type":"Polygon","id":27107,"arcs":[[327,-301,-203,328,329,330]]},{"type":"Polygon","id":27087,"arcs":[[-238,331,-329,-202]]},{"type":"Polygon","id":30061,"arcs":[[-312,332,-231,-187]]},{"type":"Polygon","id":27021,"arcs":[[-263,333,334,335,336,337,338,-158]]},{"type":"Polygon","id":23003,"arcs":[[339,340,341,342,343]]},{"type":"Polygon","id":30045,"arcs":[[-176,-285,344,345,-291]]},{"type":"Polygon","id":27057,"arcs":[[-159,-339,346,347,-239]]},{"type":"Polygon","id":16009,"arcs":[[348,-233,-240,-229,349]]},{"type":"Polygon","id":30109,"arcs":[[-213,350,351,352,-286,-219]]},{"type":"Polygon","id":38033,"arcs":[[353,354,-351,-212,355]]},{"type":"Polygon","id":38007,"arcs":[[356,-356,-211,-280,357]]},{"type":"Polygon","id":38093,"arcs":[[358,359,360,-270,-320,-296,361]]},{"type":"Polygon","id":38043,"arcs":[[-265,-271,-361,362,363,364]]},{"type":"Polygon","id":38015,"arcs":[[-266,-365,365,366,367,-272]]},{"type":"MultiPolygon","id":53053,"arcs":[[[368,-303,-258]],[[-261,369]],[[370,371,372,-289,-319,373]]]},{"type":"Polygon","id":38065,"arcs":[[374,-321,-273,-368]]},{"type":"Polygon","id":53001,"arcs":[[-252,375,376,-246]]},{"type":"Polygon","id":53075,"arcs":[[377,-376,-251,-234,-349,378,379,380,381,382]]},{"type":"Polygon","id":38003,"arcs":[[-295,-299,383,384,385,-362]]},{"type":"Polygon","id":38017,"arcs":[[386,387,-384,-298,-300,-328,388]]},{"type":"Polygon","id":30079,"arcs":[[-287,-353,389,390,-241,-225]]},{"type":"Polygon","id":27005,"arcs":[[-330,-332,-237,-348,391,392,393]]},{"type":"Polygon","id":27027,"arcs":[[394,395,-389,-331,-394,396]]},{"type":"Polygon","id":53067,"arcs":[[397,-372,398,-324,-305]]},{"type":"Polygon","id":16057,"arcs":[[-379,-350,-228,399,400]]},{"type":"Polygon","id":30059,"arcs":[[-346,401,402,403,404,405,-254,-292]]},{"type":"Polygon","id":53077,"arcs":[[-249,406,407,408,409,-374,-318]]},{"type":"Polygon","id":27001,"arcs":[[410,-334,-262,-136,411,412,413,414]]},{"type":"Polygon","id":38089,"arcs":[[415,416,417,418,-358,-279,-323]]},{"type":"Polygon","id":38059,"arcs":[[419,420,421,-416,-322,-375,-367]]},{"type":"Polygon","id":55007,"arcs":[[422,423,424,425]]},{"type":"Polygon","id":16035,"arcs":[[426,427,428,-400,-227,-333,-311]]},{"type":"Polygon","id":30017,"arcs":[[429,430,431,-242,-391,432]]},{"type":"Polygon","id":30087,"arcs":[[433,434,-313,-243,-432,435,436,437]]},{"type":"Polygon","id":30039,"arcs":[[438,439,440,-308,-317]]},{"type":"Polygon","id":27159,"arcs":[[441,442,-392,-347,-338]]},{"type":"Polygon","id":27035,"arcs":[[443,444,-335,-411]]},{"type":"Polygon","id":53049,"arcs":[[445,-326,446,447]]},{"type":"Polygon","id":53041,"arcs":[[448,449,450,-447,-325,-399,-371,-410]]},{"type":"Polygon","id":30007,"arcs":[[451,452,-255,-406]]},{"type":"Polygon","id":27017,"arcs":[[453,454,455,-412,-135]]},{"type":"Polygon","id":30037,"arcs":[[-283,456,457,458,459,460]]},{"type":"Polygon","id":55031,"arcs":[[461,-455,462,-423,463,464]]},{"type":"Polygon","id":30065,"arcs":[[-457,-282,-314,-435,465]]},{"type":"Polygon","id":30107,"arcs":[[-284,-461,466,-402,-345]]},{"type":"Polygon","id":53021,"arcs":[[-377,-378,467,468,469,-247]]},{"type":"Polygon","id":53005,"arcs":[[-248,-470,470,471,472,473,-407]]},{"type":"Polygon","id":38037,"arcs":[[474,475,-417,-422,476]]},{"type":"Polygon","id":27111,"arcs":[[-393,-443,477,478,479,480,-397]]},{"type":"Polygon","id":53023,"arcs":[[481,482,-382,483]]},{"type":"Polygon","id":30025,"arcs":[[-352,-355,484,485,486,487,-433,-390]]},{"type":"Polygon","id":16049,"arcs":[[488,489,-427,-310,490,491,492,493,494]]},{"type":"Polygon","id":30081,"arcs":[[495,-491,-309,-441,496]]},{"type":"Polygon","id":55003,"arcs":[[-425,497,498,499,500]]},{"type":"Polygon","id":38047,"arcs":[[-363,-360,501,502,503]]},{"type":"Polygon","id":38029,"arcs":[[-366,-364,-504,504,505,506,-420]]},{"type":"Polygon","id":38045,"arcs":[[507,-502,-359,-386,508,509]]},{"type":"Polygon","id":38087,"arcs":[[-485,-354,-357,-419,510,511,512]]},{"type":"Polygon","id":38041,"arcs":[[-511,-418,-476,513]]},{"type":"Polygon","id":38073,"arcs":[[514,515,-509,-385,-388,516]]},{"type":"Polygon","id":38077,"arcs":[[517,518,-517,-387,-396,519,520]]},{"type":"Polygon","id":27167,"arcs":[[-520,-395,-481,521,522]]},{"type":"Polygon","id":16069,"arcs":[[523,-380,-401,-429,524,-489,525]]},{"type":"Polygon","id":53013,"arcs":[[526,527,528,-468,-383,-483]]},{"type":"Polygon","id":53071,"arcs":[[529,-471,-469,-529]]},{"type":"Polygon","id":55051,"arcs":[[530,531,532,533,-499]]},{"type":"Polygon","id":23025,"arcs":[[534,535,536,537,538,-341,539]]},{"type":"Polygon","id":23021,"arcs":[[-340,540,-540]]},{"type":"Polygon","id":30043,"arcs":[[-315,-256,-453,541,542,543,544]]},{"type":"Polygon","id":30111,"arcs":[[545,546,547,548,-458,-466,-434]]},{"type":"Polygon","id":30103,"arcs":[[-546,-438,549]]},{"type":"Polygon","id":16061,"arcs":[[-525,-428,-490]]},{"type":"Polygon","id":53003,"arcs":[[550,-484,-381,-524]]},{"type":"Polygon","id":38085,"arcs":[[551,552,-477,-421,-507]]},{"type":"Polygon","id":27115,"arcs":[[-413,-456,-462,553,554,555]]},{"type":"Polygon","id":23019,"arcs":[[556,557,-535,-541,-344,558]]},{"type":"Polygon","id":53059,"arcs":[[559,560,561,-449,-409,562,563]]},{"type":"Polygon","id":53015,"arcs":[[564,565,-450,-562,566]]},{"type":"Polygon","id":53069,"arcs":[[567,568,-448,-451,-566]]},{"type":"Polygon","id":27153,"arcs":[[-478,-442,-337,569,570,571]]},{"type":"Polygon","id":27097,"arcs":[[572,573,-570,-336,-445,574]]},{"type":"Polygon","id":38051,"arcs":[[575,576,-505,-503,-508,577]]},{"type":"Polygon","id":38021,"arcs":[[578,579,-578,-510,-516,580]]},{"type":"Polygon","id":38081,"arcs":[[581,582,-581,-515,-519]]},{"type":"Polygon","id":38011,"arcs":[[-486,-513,583,584]]},{"type":"Polygon","id":38001,"arcs":[[-475,-553,585,586,-584,-512,-514]]},{"type":"Polygon","id":30023,"arcs":[[587,588,-439,-316,-545]]},{"type":"Polygon","id":27095,"arcs":[[589,590,591,-575,-444,-415,592]]},{"type":"Polygon","id":41007,"arcs":[[593,594,595]]},{"type":"Polygon","id":30097,"arcs":[[596,-403,-467,-460,597]]},{"type":"Polygon","id":30031,"arcs":[[-405,598,599,600,601,602,-542,-452]]},{"type":"Polygon","id":30067,"arcs":[[603,604,605,-599,-404,-597]]},{"type":"Polygon","id":41009,"arcs":[[606,607,608,-595,609,-568,-565]]},{"type":"Polygon","id":30093,"arcs":[[610,611,-588,-544]]},{"type":"Polygon","id":55129,"arcs":[[612,613,-464,614]]},{"type":"Polygon","id":55113,"arcs":[[615,616,-615,-426,-501]]},{"type":"Polygon","id":55013,"arcs":[[-465,-614,617,618,619,-554]]},{"type":"Polygon","id":27065,"arcs":[[-414,-556,620,-593]]},{"type":"Polygon","id":30011,"arcs":[[621,622,-430,-488,623,624]]},{"type":"Polygon","id":30095,"arcs":[[625,-604,-598,-459,-549]]},{"type":"Polygon","id":27051,"arcs":[[-522,-480,626,627,628]]},{"type":"Polygon","id":27041,"arcs":[[-627,-479,-572,629,630]]},{"type":"Polygon","id":53011,"arcs":[[-561,631,-607,-567]]},{"type":"Polygon","id":53039,"arcs":[[632,-563,-408,-474,633,634,635,636]]},{"type":"Polygon","id":30003,"arcs":[[-437,637,638,639,640,-547,-550]]},{"type":"Polygon","id":27155,"arcs":[[641,642,643,-521,-523,-629]]},{"type":"Polygon","id":41059,"arcs":[[-472,-530,-528,644,645,646,647]]},{"type":"Polygon","id":41063,"arcs":[[648,649,650,-645,-527,-482,-551,-526,-495]]},{"type":"Polygon","id":55099,"arcs":[[651,652,653,654,-616,-500,-534,655]]},{"type":"Polygon","id":46021,"arcs":[[-506,-577,656,657,658]]},{"type":"Polygon","id":46063,"arcs":[[-585,-587,659,660,-624,-487]]},{"type":"Polygon","id":46089,"arcs":[[-576,-580,661,662,663,-657]]},{"type":"Polygon","id":46105,"arcs":[[-586,664,665,666,667,-660]]},{"type":"Polygon","id":46031,"arcs":[[668,669,-665,-552,-659,670]]},{"type":"Polygon","id":46013,"arcs":[[-579,-583,671,672,673,674,-662]]},{"type":"Polygon","id":30001,"arcs":[[-497,-440,-589,-612,675,676,677,678]]},{"type":"Polygon","id":46091,"arcs":[[-672,-582,679,680]]},{"type":"Polygon","id":46109,"arcs":[[-518,-644,681,682,683,-680]]},{"type":"Polygon","id":41049,"arcs":[[-634,-473,-648,684,685,686]]},{"type":"Polygon","id":41061,"arcs":[[-651,687,688,-646]]},{"type":"Polygon","id":30057,"arcs":[[-543,-603,689,-676,-611]]},{"type":"Polygon","id":27009,"arcs":[[-573,-592,690,691]]},{"type":"Polygon","id":41021,"arcs":[[692,693,694,-635,-687]]},{"type":"Polygon","id":30075,"arcs":[[695,696,697,-638,-436,-431,-623]]},{"type":"Polygon","id":27145,"arcs":[[698,699,700,-630,-571,-574,-692,701,702]]},{"type":"Polygon","id":41057,"arcs":[[703,704,705,706,-596,707]]},{"type":"Polygon","id":41067,"arcs":[[-609,708,709,710,-708]]},{"type":"Polygon","id":27121,"arcs":[[-631,-701,711,712,713]]},{"type":"Polygon","id":27149,"arcs":[[714,715,-642,-628,-714]]},{"type":"Polygon","id":27059,"arcs":[[716,717,718,-590,-621]]},{"type":"Polygon","id":27025,"arcs":[[719,720,-717,-555,-620,721]]},{"type":"Polygon","id":41055,"arcs":[[722,-636,-695]]},{"type":"Polygon","id":55095,"arcs":[[723,724,-722,-619,725]]},{"type":"Polygon","id":41051,"arcs":[[-632,-560,726,727,-709,-608]]},{"type":"Polygon","id":41027,"arcs":[[-633,728,729,-727,-564]]},{"type":"Polygon","id":41065,"arcs":[[-723,-694,730,731,732,733,-729,-637]]},{"type":"Polygon","id":16059,"arcs":[[-496,-679,734,735,736,737,-492]]},{"type":"Polygon","id":23029,"arcs":[[-343,738,739,-559]]},{"type":"Polygon","id":23007,"arcs":[[740,741,742,-538,743]]},{"type":"Polygon","id":55005,"arcs":[[-726,-618,-613,744,745,746]]},{"type":"Polygon","id":55107,"arcs":[[747,-745,-617,-655,748]]},{"type":"Polygon","id":30009,"arcs":[[749,750,-605,-626,-548,-641]]},{"type":"Polygon","id":46129,"arcs":[[-671,-658,-664,751,752,753]]},{"type":"Polygon","id":46045,"arcs":[[754,755,-752,-663,-675]]},{"type":"Polygon","id":46037,"arcs":[[-684,756,757,758,759,-673,-681]]},{"type":"Polygon","id":27011,"arcs":[[760,761,-682,-643,-716,762]]},{"type":"Polygon","id":27141,"arcs":[[-691,-591,-719,763,764,-702]]},{"type":"Polygon","id":46137,"arcs":[[765,-666,-670,766,767]]},{"type":"Polygon","id":46041,"arcs":[[768,769,770,-767,-669,-754]]},{"type":"Polygon","id":41005,"arcs":[[-734,771,772,-710,-728,-730]]},{"type":"Polygon","id":27171,"arcs":[[773,774,775,-703,-765,776]]},{"type":"Polygon","id":41071,"arcs":[[777,-704,-711,-773,778]]},{"type":"Polygon","id":27003,"arcs":[[779,-764,-718,-721,780,781]]},{"type":"Polygon","id":27067,"arcs":[[-712,-700,782,783,784,785]]},{"type":"Polygon","id":27151,"arcs":[[786,787,-763,-715,-713,-786]]},{"type":"Polygon","id":55119,"arcs":[[-654,788,789,790,791,-749]]},{"type":"Polygon","id":23017,"arcs":[[792,793,794,795,796,-742,797]]},{"type":"Polygon","id":46051,"arcs":[[798,799,800,-757,-683,-762]]},{"type":"Polygon","id":27093,"arcs":[[-776,801,802,-783,-699]]},{"type":"Polygon","id":33007,"arcs":[[803,-796,804,805,806]]},{"type":"Polygon","id":27163,"arcs":[[807,-781,-720,-725,808,809,810]]},{"type":"Polygon","id":55017,"arcs":[[-746,-748,-792,811,812,813]]},{"type":"Polygon","id":41047,"arcs":[[-733,814,815,816,-779,-772]]},{"type":"Polygon","id":27073,"arcs":[[-788,817,818,819,-799,-761]]},{"type":"Polygon","id":16003,"arcs":[[-649,-494,820,821,822,823]]},{"type":"Polygon","id":46107,"arcs":[[-753,-756,824,825,826,-769]]},{"type":"Polygon","id":46049,"arcs":[[827,828,829,-825,-755]]},{"type":"Polygon","id":27053,"arcs":[[830,831,832,-777,-780,833]]},{"type":"Polygon","id":46115,"arcs":[[-828,-674,-760,834,835,836]]},{"type":"Polygon","id":55109,"arcs":[[837,-809,-724,838]]},{"type":"Polygon","id":55033,"arcs":[[-747,-814,839,840,841,-839]]},{"type":"Polygon","id":46019,"arcs":[[842,-625,-661,-668,843,844]]},{"type":"Polygon","id":16085,"arcs":[[-493,-738,845,846,847,-821]]},{"type":"Polygon","id":46025,"arcs":[[-835,-759,848,849,850,851]]},{"type":"Polygon","id":46029,"arcs":[[852,853,-849,-758,-801]]},{"type":"Polygon","id":27023,"arcs":[[854,-818,-787,-785,855]]},{"type":"Polygon","id":27123,"arcs":[[-808,856,-834,-782]]},{"type":"Polygon","id":41001,"arcs":[[-650,-824,857,858,859,-688]]},{"type":"Polygon","id":41053,"arcs":[[-705,-778,-817,860,861,862]]},{"type":"Polygon","id":41069,"arcs":[[863,864,865,-731,-693,-686]]},{"type":"Polygon","id":46093,"arcs":[[-667,-766,866,867,-844]]},{"type":"Polygon","id":41041,"arcs":[[868,869,870,-706,-863]]},{"type":"Polygon","id":55019,"arcs":[[871,-812,-791,872,873,874]]},{"type":"Polygon","id":50009,"arcs":[[875,876,-807,877,878]]},{"type":"Polygon","id":50013,"arcs":[[879,880,881,882]]},{"type":"Polygon","id":50011,"arcs":[[-881,883,884,885,886]]},{"type":"Polygon","id":50019,"arcs":[[887,-885,888,-876,889]]},{"type":"Polygon","id":36019,"arcs":[[890,-883,891,892,893]]},{"type":"Polygon","id":56029,"arcs":[[894,895,-600,-606,-751,896,897,898]]},{"type":"Polygon","id":56011,"arcs":[[-843,899,900,901,-696,-622]]},{"type":"Polygon","id":56003,"arcs":[[902,-897,-750,-640,903,904]]},{"type":"Polygon","id":56005,"arcs":[[905,906,907,908,-697,-902]]},{"type":"Polygon","id":56033,"arcs":[[909,-904,-639,-698,-909]]},{"type":"Polygon","id":36033,"arcs":[[910,-894,911,912,913]]},{"type":"Polygon","id":41023,"arcs":[[-860,914,915,916,-864,-685,-647,-689]]},{"type":"Polygon","id":27085,"arcs":[[-775,917,918,919,-802]]},{"type":"Polygon","id":27019,"arcs":[[920,-918,-774,-833,921]]},{"type":"Polygon","id":46039,"arcs":[[-820,922,923,924,925,-853,-800]]},{"type":"Polygon","id":27037,"arcs":[[926,927,928,929,-831,-857,-811]]},{"type":"Polygon","id":27173,"arcs":[[930,931,932,-923,-819,-855,933]]},{"type":"Polygon","id":46119,"arcs":[[-770,-827,934,935,936]]},{"type":"Polygon","id":46069,"arcs":[[937,938,939,-935,-826,-830,940]]},{"type":"Polygon","id":46059,"arcs":[[-829,-837,941,942,943,-941]]},{"type":"Polygon","id":27129,"arcs":[[-934,-856,-784,-803,-920,944,945,946,947]]},{"type":"Polygon","id":55093,"arcs":[[-838,-842,948,949,-927,-810]]},{"type":"Polygon","id":16037,"arcs":[[-846,-737,950,951,952]]},{"type":"Polygon","id":55035,"arcs":[[953,954,-840,-813,-872,955,956]]},{"type":"Polygon","id":16087,"arcs":[[957,958,959,-858,-823]]},{"type":"Polygon","id":41031,"arcs":[[960,961,962,-815,-732,-866]]},{"type":"Polygon","id":27139,"arcs":[[-930,963,964,965,-922,-832]]},{"type":"Polygon","id":46057,"arcs":[[966,-850,-854,-926,967]]},{"type":"Polygon","id":50015,"arcs":[[968,969,970,-886,-888]]},{"type":"Polygon","id":41043,"arcs":[[971,972,973,-861,-816,-963]]},{"type":"Polygon","id":46117,"arcs":[[974,975,976,977,-771,-937]]},{"type":"Polygon","id":50005,"arcs":[[978,979,980,-969,-890,-879]]},{"type":"Polygon","id":23027,"arcs":[[981,982,983,984,985,-536,-558]]},{"type":"Polygon","id":46055,"arcs":[[986,987,988,-768,-978]]},{"type":"Polygon","id":16043,"arcs":[[-690,-602,989,990,991,992,993,-677]]},{"type":"Polygon","id":27143,"arcs":[[-966,994,995,-945,-919,-921]]},{"type":"Polygon","id":50007,"arcs":[[-971,996,997,998,-892,-882,-887]]},{"type":"Polygon","id":23011,"arcs":[[999,1000,1001,-744,-537,-986]]},{"type":"Polygon","id":27049,"arcs":[[-950,1002,1003,1004,1005,1006,-928]]},{"type":"Polygon","id":41003,"arcs":[[-869,-862,-974,1007]]},{"type":"Polygon","id":27127,"arcs":[[1008,1009,1010,-931,-948,1011]]},{"type":"Polygon","id":55141,"arcs":[[1012,1013,1014,-874,1015,1016]]},{"type":"Polygon","id":55091,"arcs":[[-1003,-949,-841,-955,1017,1018]]},{"type":"Polygon","id":56039,"arcs":[[1019,1020,-990,-601,-896,1021,1022,1023]]},{"type":"Polygon","id":46005,"arcs":[[1024,1025,1026,-942,-836,-852]]},{"type":"Polygon","id":27083,"arcs":[[-932,-1011,1027,1028,1029]]},{"type":"Polygon","id":27081,"arcs":[[1030,1031,-924,-933,-1030]]},{"type":"Polygon","id":46081,"arcs":[[1032,-900,-845,-868,1033]]},{"type":"Polygon","id":55011,"arcs":[[-1018,-954,1034,1035,1036]]},{"type":"Polygon","id":55121,"arcs":[[1037,1038,-1035,-957,1039]]},{"type":"Polygon","id":55053,"arcs":[[1040,-1040,-956,-875,-1015,1041,1042]]},{"type":"Polygon","id":16033,"arcs":[[-678,-994,1043,1044,-735]]},{"type":"Polygon","id":41013,"arcs":[[-865,-917,1045,1046,-961]]},{"type":"Polygon","id":56019,"arcs":[[-905,-910,-908,1047,1048,1049]]},{"type":"Polygon","id":46065,"arcs":[[-975,-936,-940,1050]]},{"type":"Polygon","id":36031,"arcs":[[-999,1051,1052,1053,1054,-912,-893]]},{"type":"Polygon","id":27079,"arcs":[[1055,-995,-965,1056,1057,1058]]},{"type":"Polygon","id":27131,"arcs":[[-1007,1059,1060,-1057,-964,-929]]},{"type":"Polygon","id":46077,"arcs":[[-1025,-851,-967,1061,1062,1063]]},{"type":"Polygon","id":46011,"arcs":[[-1032,1064,1065,-1062,-968,-925]]},{"type":"Polygon","id":46103,"arcs":[[-989,1066,1067,1068,1069,-1034,-867]]},{"type":"Polygon","id":16045,"arcs":[[-848,1070,1071,1072,1073,-958,-822]]},{"type":"Polygon","id":27015,"arcs":[[1074,1075,1076,1077,-1012,-947]]},{"type":"Polygon","id":50023,"arcs":[[-981,1078,1079,-997,-970]]},{"type":"Polygon","id":23001,"arcs":[[-741,-1002,1080,1081,-798]]},{"type":"Polygon","id":27103,"arcs":[[1082,-1075,-946,-996,-1056]]},{"type":"Polygon","id":27157,"arcs":[[-1019,-1037,1083,1084,-1004]]},{"type":"Polygon","id":41045,"arcs":[[1085,1086,1087,1088,-915,-859,-960,1089]]},{"type":"MultiPolygon","id":23009,"arcs":[[[-740,1090,-982,-557]],[[1091]]]},{"type":"Polygon","id":33009,"arcs":[[1092,-979,-878,-806,1093,1094,1095,1096,1097]]},{"type":"Polygon","id":41017,"arcs":[[1098,1099,1100,1101,-972,-962,-1047]]},{"type":"Polygon","id":23013,"arcs":[[-984,1102,1103]]},{"type":"Polygon","id":16015,"arcs":[[1104,1105,-1071,-847,-953]]},{"type":"Polygon","id":23015,"arcs":[[-985,-1104,1106,1107,1108,1109,-1000]]},{"type":"Polygon","id":50001,"arcs":[[1110,1111,1112,1113,-1052,-998,-1080]]},{"type":"Polygon","id":33003,"arcs":[[-795,1114,1115,1116,-1094,-805]]},{"type":"Polygon","id":41039,"arcs":[[-1102,1117,1118,1119,-870,-1008,-973]]},{"type":"Polygon","id":27013,"arcs":[[-1059,1120,1121,1122,1123,-1076,-1083]]},{"type":"Polygon","id":55057,"arcs":[[1124,1125,1126,-1042,-1014,1127]]},{"type":"Polygon","id":16023,"arcs":[[-951,-736,-1045,1128,1129,1130]]},{"type":"Polygon","id":46085,"arcs":[[-976,-1051,-939,1131,1132,1133,1134,1135,1136]]},{"type":"Polygon","id":50017,"arcs":[[-980,-1093,1137,-1111,-1079]]},{"type":"Polygon","id":27161,"arcs":[[-1121,-1058,-1061,1138,1139,1140]]},{"type":"Polygon","id":46017,"arcs":[[-938,-944,1141,1142,-1132]]},{"type":"Polygon","id":46073,"arcs":[[1143,1144,-1142,-943,-1027,1145]]},{"type":"Polygon","id":46101,"arcs":[[1146,1147,1148,-1065]]},{"type":"Polygon","id":27117,"arcs":[[-1147,-1031,-1029,1149,1150]]},{"type":"Polygon","id":27039,"arcs":[[1151,1152,-1006,1153]]},{"type":"Polygon","id":46111,"arcs":[[1154,1155,1156,1157,-1146,-1026]]},{"type":"Polygon","id":27101,"arcs":[[-1150,-1028,-1010,1158,1159]]},{"type":"Polygon","id":27033,"arcs":[[1160,1161,1162,-1159,-1009,-1078]]},{"type":"Polygon","id":27147,"arcs":[[-1153,1163,-1139,-1060]]},{"type":"Polygon","id":27109,"arcs":[[-1005,-1085,1164,1165,1166,-1154]]},{"type":"Polygon","id":46097,"arcs":[[-1064,1167,1168,1169,-1155]]},{"type":"Polygon","id":46079,"arcs":[[-1168,-1063,-1066,-1149,1170,1171]]},{"type":"Polygon","id":27169,"arcs":[[1172,1173,1174,-1165,-1084,-1036,-1039]]},{"type":"Polygon","id":56045,"arcs":[[-1033,-1070,1175,1176,1177,-906,-901]]},{"type":"Polygon","id":46075,"arcs":[[1178,1179,-987,-977,-1137]]},{"type":"Polygon","id":23005,"arcs":[[1180,1181,-793,-1082,1182]]},{"type":"Polygon","id":56043,"arcs":[[-898,-903,-1050,1183,1184,1185]]},{"type":"Polygon","id":55081,"arcs":[[1186,-1043,-1127,1187]]},{"type":"Polygon","id":16075,"arcs":[[-959,-1074,1188,-1090]]},{"type":"Polygon","id":36041,"arcs":[[1189,1190,1191,1192,1193,-913,-1055]]},{"type":"Polygon","id":27165,"arcs":[[1194,-1161,-1077,-1124,1195]]},{"type":"Polygon","id":36043,"arcs":[[1196,1197,1198,1199,-1193,1200,1201]]},{"type":"Polygon","id":55063,"arcs":[[-1041,-1187,1202,1203,-1173,-1038]]},{"type":"Polygon","id":16039,"arcs":[[1204,1205,1206,1207,1208,1209,-1105]]},{"type":"Polygon","id":56017,"arcs":[[1210,-899,-1186]]},{"type":"Polygon","id":16051,"arcs":[[1211,1212,-1129,-1044,-993,1213]]},{"type":"Polygon","id":41025,"arcs":[[-1089,1214,1215,1216,-1099,-1046,-916]]},{"type":"MultiPolygon","id":23023,"arcs":[[[-1110,1217,-1183,-1081,-1001]],[[1218,-1108]]]},{"type":"Polygon","id":56013,"arcs":[[1219,1220,1221,-1022,-895,-1211,-1185,1222]]},{"type":"Polygon","id":46071,"arcs":[[1223,1224,-1067,-988,-1180,1225]]},{"type":"Polygon","id":16013,"arcs":[[-1131,1226,1227,1228,1229,1230,1231,-1205,-952]]},{"type":"Polygon","id":16081,"arcs":[[1232,-991,-1021,1233]]},{"type":"Polygon","id":50027,"arcs":[[-1138,-1098,1234,1235,1236,1237,-1112]]},{"type":"Polygon","id":41019,"arcs":[[1238,-1119,1239,1240,1241,1242,1243]]},{"type":"Polygon","id":46003,"arcs":[[-1144,-1158,1244,1245,1246,1247]]},{"type":"Polygon","id":46015,"arcs":[[1248,-1133,-1143,-1145,-1248]]},{"type":"Polygon","id":16065,"arcs":[[-992,-1233,1249,-1214]]},{"type":"Polygon","id":16027,"arcs":[[-1073,1250,1251,-1086,-1189]]},{"type":"Polygon","id":46095,"arcs":[[-1136,1252,1253,-1226,-1179]]},{"type":"Polygon","id":16025,"arcs":[[-1232,1254,1255,-1206]]},{"type":"Polygon","id":46033,"arcs":[[1256,-1176,-1069,1257,1258]]},{"type":"Polygon","id":50021,"arcs":[[-1238,1259,1260,-1113]]},{"type":"Polygon","id":27043,"arcs":[[1261,1262,1263,-1122,-1141,1264]]},{"type":"Polygon","id":46099,"arcs":[[1265,1266,1267,1268,1269,-1171,-1148]]},{"type":"Polygon","id":27133,"arcs":[[1270,-1266,-1151,1271]]},{"type":"Polygon","id":27047,"arcs":[[1272,1273,-1265,-1140,-1164,1274]]},{"type":"Polygon","id":27105,"arcs":[[1275,1276,-1272,-1160,-1163,1277]]},{"type":"Polygon","id":27063,"arcs":[[1278,1279,1280,-1278,-1162,-1195,1281]]},{"type":"Polygon","id":27091,"arcs":[[1282,1283,-1282,-1196,-1123,-1264]]},{"type":"Polygon","id":27055,"arcs":[[-1204,1284,1285,1286,1287,-1174]]},{"type":"Polygon","id":27099,"arcs":[[1288,1289,1290,-1275,-1152,-1167,1291]]},{"type":"Polygon","id":27045,"arcs":[[1292,1293,-1292,-1166,-1175,-1288]]},{"type":"Polygon","id":46035,"arcs":[[1294,1295,-1245,-1157,1296]]},{"type":"Polygon","id":46061,"arcs":[[1297,-1297,-1156,-1170,1298]]},{"type":"Polygon","id":46087,"arcs":[[1299,-1299,-1169,-1172,-1270,1300]]},{"type":"Polygon","id":23031,"arcs":[[1301,1302,-1115,-794,-1182]]},{"type":"Polygon","id":36115,"arcs":[[-1053,-1114,-1261,1303,1304,1305,1306]]},{"type":"Polygon","id":16001,"arcs":[[-1072,-1106,-1210,1307,-1251]]},{"type":"Polygon","id":36113,"arcs":[[1308,-1190,-1054,-1307]]},{"type":"Polygon","id":46123,"arcs":[[-1135,1309,1310,1311,-1253]]},{"type":"Polygon","id":33001,"arcs":[[-1117,1312,1313,-1095]]},{"type":"Polygon","id":55123,"arcs":[[-1126,1314,1315,1316,1317,-1285,-1203,-1188]]},{"type":"Polygon","id":46113,"arcs":[[1318,1319,1320,1321,-1258,-1068,-1225]]},{"type":"Polygon","id":16073,"arcs":[[1322,1323,1324,-1087,-1252,-1308,-1209]]},{"type":"Polygon","id":16019,"arcs":[[-1020,1325,1326,1327,-1212,-1250,-1234]]},{"type":"Polygon","id":16011,"arcs":[[-1213,-1328,1328,1329,1330,-1227,-1130]]},{"type":"Polygon","id":41035,"arcs":[[-1101,1331,1332,1333,1334,-1240,-1118]]},{"type":"Polygon","id":41037,"arcs":[[1335,-1332,-1100,-1217,1336]]},{"type":"Polygon","id":41011,"arcs":[[1337,-1244,1338]]},{"type":"Polygon","id":33013,"arcs":[[1339,1340,1341,1342,-1096,-1314]]},{"type":"Polygon","id":33019,"arcs":[[1343,1344,1345,-1235,-1097,-1343]]},{"type":"Polygon","id":33017,"arcs":[[-1116,-1303,1346,1347,-1340,-1313]]},{"type":"Polygon","id":55103,"arcs":[[1348,1349,1350,-1316,1351]]},{"type":"Polygon","id":56025,"arcs":[[1352,-1223,-1184,-1049,1353]]},{"type":"Polygon","id":46053,"arcs":[[1354,1355,1356,-1310,-1134]]},{"type":"Polygon","id":56027,"arcs":[[-1257,1357,1358,1359,1360,1361,-1177]]},{"type":"Polygon","id":46023,"arcs":[[1362,1363,1364,-1355,-1249,-1247,1365,1366]]},{"type":"Polygon","id":46125,"arcs":[[1367,-1301,-1269,1368,1369,1370]]},{"type":"Polygon","id":46083,"arcs":[[1371,1372,1373,1374,-1369,-1268]]},{"type":"Polygon","id":19195,"arcs":[[-1273,-1291,1375,1376,1377]]},{"type":"Polygon","id":19131,"arcs":[[-1290,1378,1379,1380,-1376]]},{"type":"Polygon","id":19005,"arcs":[[1381,1382,-1286,-1318,1383]]},{"type":"Polygon","id":19189,"arcs":[[-1262,-1274,-1378,1384,1385]]},{"type":"Polygon","id":19191,"arcs":[[-1293,-1287,-1383,1386,1387,1388]]},{"type":"Polygon","id":56009,"arcs":[[1389,-1354,-1048,-907,-1178,-1362,1390]]},{"type":"Polygon","id":19143,"arcs":[[-1276,-1281,1391,1392,1393]]},{"type":"Polygon","id":19059,"arcs":[[-1280,1394,1395,-1392]]},{"type":"Polygon","id":19109,"arcs":[[-1283,-1263,-1386,1396,1397,1398,1399]]},{"type":"Polygon","id":19089,"arcs":[[-1289,-1294,-1389,1400,-1379]]},{"type":"Polygon","id":19063,"arcs":[[-1279,-1284,-1400,1401,-1395]]},{"type":"Polygon","id":19119,"arcs":[[-1372,-1267,-1271,-1277,-1394,1402]]},{"type":"Polygon","id":46043,"arcs":[[-1246,-1296,1403,-1366]]},{"type":"Polygon","id":46067,"arcs":[[-1404,-1295,-1298,-1300,-1368,1404,1405,-1367]]},{"type":"Polygon","id":46047,"arcs":[[-1358,-1259,-1322,1406,1407]]},{"type":"Polygon","id":56035,"arcs":[[-1222,1408,1409,-1023]]},{"type":"Polygon","id":55023,"arcs":[[-1384,-1317,-1351,1410,1411]]},{"type":"Polygon","id":36091,"arcs":[[1412,1413,1414,1415,1416,-1191,-1309,-1306]]},{"type":"Polygon","id":46007,"arcs":[[1417,1418,-1319,-1224]]},{"type":"Polygon","id":46121,"arcs":[[1419,-1418,-1254,-1312]]},{"type":"Polygon","id":50003,"arcs":[[1420,1421,1422,1423,-1304,-1260,-1237]]},{"type":"Polygon","id":56023,"arcs":[[1424,1425,1426,-1326,-1024,-1410,1427,1428]]},{"type":"Polygon","id":36035,"arcs":[[-1417,1429,-1201,-1192]]},{"type":"Polygon","id":33015,"arcs":[[-1348,1430,1431,1432,-1341]]},{"type":"Polygon","id":19167,"arcs":[[1433,-1373,-1403,1434,1435]]},{"type":"Polygon","id":50025,"arcs":[[1436,-1421,-1236,-1346,1437]]},{"type":"Polygon","id":19141,"arcs":[[1438,-1435,-1393,1439]]},{"type":"Polygon","id":19033,"arcs":[[1440,1441,-1377,-1381,1442]]},{"type":"Polygon","id":19041,"arcs":[[1443,-1440,-1396,1444]]},{"type":"Polygon","id":19081,"arcs":[[-1442,1445,-1397,-1385]]},{"type":"Polygon","id":19147,"arcs":[[1446,-1445,-1402,-1399]]},{"type":"Polygon","id":19067,"arcs":[[1447,1448,-1443,-1380]]},{"type":"Polygon","id":19037,"arcs":[[-1448,-1401,-1388,1449,1450]]},{"type":"Polygon","id":55049,"arcs":[[1451,1452,1453,1454,-1349,1455]]},{"type":"Polygon","id":55043,"arcs":[[-1455,1456,1457,1458,1459,-1411,-1350]]},{"type":"Polygon","id":33011,"arcs":[[1460,1461,1462,1463,-1344,-1342,-1433]]},{"type":"Polygon","id":16063,"arcs":[[1464,-1255,-1231,1465,1466]]},{"type":"Polygon","id":16047,"arcs":[[1467,-1207,-1256,-1465,1468]]},{"type":"Polygon","id":16067,"arcs":[[1469,-1466,-1230,1470]]},{"type":"Polygon","id":33005,"arcs":[[-1464,1471,1472,-1438,-1345]]},{"type":"Polygon","id":46135,"arcs":[[1473,1474,1475,-1405,-1371,1476]]},{"type":"Polygon","id":46009,"arcs":[[-1406,-1476,1477,-1363]]},{"type":"Polygon","id":16077,"arcs":[[1478,1479,1480,-1228,-1331]]},{"type":"Polygon","id":46127,"arcs":[[1481,1482,1483,1484,-1374,-1434,1485]]},{"type":"Polygon","id":46027,"arcs":[[-1477,-1370,-1375,-1485,1486,1487]]},{"type":"Polygon","id":19065,"arcs":[[1488,1489,1490,-1450,-1387]]},{"type":"Polygon","id":19043,"arcs":[[1491,1492,-1489,-1382,-1412,-1460]]},{"type":"Polygon","id":36057,"arcs":[[1493,1494,-1202,-1430,-1416,1495]]},{"type":"Polygon","id":16029,"arcs":[[-1427,1496,1497,1498,-1329,-1327]]},{"type":"Polygon","id":16005,"arcs":[[1499,1500,-1479,-1330,-1499]]},{"type":"Polygon","id":31165,"arcs":[[1501,-1359,-1408,1502,1503,1504]]},{"type":"Polygon","id":31045,"arcs":[[-1407,-1321,1505,1506,-1503]]},{"type":"Polygon","id":31161,"arcs":[[1507,1508,1509,1510,-1506,-1320,1511]]},{"type":"Polygon","id":41029,"arcs":[[1512,1513,-1241,-1335]]},{"type":"Polygon","id":31103,"arcs":[[-1311,-1357,1514,1515,1516,1517]]},{"type":"Polygon","id":31015,"arcs":[[1518,-1515,-1356,-1365,1519]]},{"type":"Polygon","id":31031,"arcs":[[-1518,1520,1521,1522,1523,1524,-1512,-1419,-1420]]},{"type":"Polygon","id":41015,"arcs":[[1525,1526,1527,-1339,-1243]]},{"type":"Polygon","id":36083,"arcs":[[-1305,-1424,1528,1529,1530,-1413]]},{"type":"Polygon","id":36093,"arcs":[[1531,1532,-1496,-1415]]},{"type":"Polygon","id":19149,"arcs":[[-1486,-1436,1533,1534]]},{"type":"Polygon","id":19035,"arcs":[[-1439,1535,1536,1537,-1534]]},{"type":"Polygon","id":19017,"arcs":[[-1451,-1491,1538,1539]]},{"type":"Polygon","id":19023,"arcs":[[1540,-1449,-1540,1541,1542]]},{"type":"Polygon","id":19021,"arcs":[[1543,-1536,-1444,1544]]},{"type":"Polygon","id":16083,"arcs":[[1545,-1323,-1208,-1468,1546,1547]]},{"type":"Polygon","id":19151,"arcs":[[-1545,-1447,1548,1549,1550]]},{"type":"Polygon","id":19091,"arcs":[[-1398,1551,1552,-1549]]},{"type":"Polygon","id":19197,"arcs":[[-1446,1553,1554,1555,-1552]]},{"type":"Polygon","id":19069,"arcs":[[-1541,1556,-1554,-1441]]},{"type":"Polygon","id":36077,"arcs":[[1557,1558,1559,-1197,-1495,1560,1561]]},{"type":"Polygon","id":31089,"arcs":[[-1519,1562,1563,1564,1565,1566,1567]]},{"type":"Polygon","id":25009,"arcs":[[1568,-1461,-1432,1569,1570]]},{"type":"Polygon","id":31107,"arcs":[[1571,1572,1573,-1563,-1520,-1364,-1478,-1475]]},{"type":"Polygon","id":31027,"arcs":[[1574,1575,1576,-1572,-1474,-1488]]},{"type":"Polygon","id":16053,"arcs":[[-1470,1577,-1547,-1469,-1467]]},{"type":"Polygon","id":36095,"arcs":[[-1561,-1494,-1533,1578,1579,1580]]},{"type":"Polygon","id":31017,"arcs":[[1581,1582,-1521,-1517,1583]]},{"type":"Polygon","id":55065,"arcs":[[1584,1585,-1457,-1454,1586]]},{"type":"Polygon","id":36001,"arcs":[[1587,-1579,-1532,-1414,-1531]]},{"type":"Polygon","id":31149,"arcs":[[1588,-1584,-1516,-1568]]},{"type":"Polygon","id":41033,"arcs":[[1589,1590,-1526,-1242,-1514]]},{"type":"Polygon","id":31051,"arcs":[[-1487,-1484,1591,1592,1593,-1575]]},{"type":"Polygon","id":25003,"arcs":[[1594,1595,1596,-1529,-1423,1597,1598]]},{"type":"Polygon","id":25011,"arcs":[[-1422,-1437,-1473,1599,1600,-1598]]},{"type":"Polygon","id":25017,"arcs":[[-1569,1601,1602,1603,1604,1605,1606,-1462]]},{"type":"Polygon","id":25027,"arcs":[[-1472,-1463,-1607,1607,1608,1609,1610,1611,1612,-1600]]},{"type":"Polygon","id":19061,"arcs":[[1613,1614,1615,-1492,-1459,1616]]},{"type":"Polygon","id":16031,"arcs":[[-1481,1617,1618,1619,-1548,-1578,-1471,-1229]]},{"type":"Polygon","id":19187,"arcs":[[-1550,-1553,-1556,1620,1621,1622,1623]]},{"type":"Polygon","id":19055,"arcs":[[-1493,-1616,1624,1625,1626]]},{"type":"Polygon","id":19019,"arcs":[[-1490,-1627,1627,1628,1629]]},{"type":"Polygon","id":19013,"arcs":[[1630,1631,1632,-1542,-1539,-1630]]},{"type":"Polygon","id":56015,"arcs":[[-1502,1633,1634,1635,1636,-1360]]},{"type":"Polygon","id":56031,"arcs":[[-1391,-1361,-1637,1637,1638]]},{"type":"Polygon","id":16007,"arcs":[[-1426,1639,1640,-1497]]},{"type":"Polygon","id":19193,"arcs":[[1641,1642,1643,-1482,-1535,-1538,1644]]},{"type":"Polygon","id":19093,"arcs":[[1645,1646,-1645,-1537]]},{"type":"Polygon","id":19161,"arcs":[[-1544,1647,1648,1649,-1646]]},{"type":"Polygon","id":19025,"arcs":[[-1551,-1624,1650,1651,-1648]]},{"type":"Polygon","id":19079,"arcs":[[1652,1653,-1621,-1555,1654]]},{"type":"Polygon","id":25015,"arcs":[[-1613,1655,-1599,-1601]]},{"type":"Polygon","id":19083,"arcs":[[-1557,1656,1657,1658,-1655]]},{"type":"Polygon","id":19075,"arcs":[[1659,-1657,-1543,-1633,1660]]},{"type":"Polygon","id":31043,"arcs":[[1661,-1592,-1483,-1644]]},{"type":"Polygon","id":36025,"arcs":[[-1581,1662,1663,1664,1665,1666,1667,-1562]]},{"type":"Polygon","id":17085,"arcs":[[1668,-1617,-1458,-1586,1669,1670]]},{"type":"Polygon","id":36021,"arcs":[[-1597,1671,1672,1673,-1530]]},{"type":"Polygon","id":16071,"arcs":[[1674,1675,-1618,-1480,-1501,1676]]},{"type":"Polygon","id":36039,"arcs":[[-1580,-1588,-1674,1677,-1663]]},{"type":"Polygon","id":25025,"arcs":[[-1571,1678,1679,-1605,1680,1681,-1603,-1602]]},{"type":"Polygon","id":56007,"arcs":[[1682,1683,1684,1685,-1220,-1353,1686]]},{"type":"Polygon","id":31139,"arcs":[[1687,1688,1689,-1573,-1577]]},{"type":"Polygon","id":31013,"arcs":[[-1507,-1511,1690,1691,-1504]]},{"type":"Polygon","id":31003,"arcs":[[1692,1693,-1564,-1574,-1690,1694]]},{"type":"Polygon","id":56001,"arcs":[[1695,1696,1697,-1687,-1390,-1639]]},{"type":"Polygon","id":16041,"arcs":[[-1641,1698,-1677,-1500,-1498]]},{"type":"Polygon","id":19097,"arcs":[[1699,1700,-1614,-1669,1701]]},{"type":"Polygon","id":31179,"arcs":[[-1688,-1576,-1594,1702,1703,1704]]},{"type":"Polygon","id":25013,"arcs":[[-1656,-1612,1705,1706,1707,-1595]]},{"type":"Polygon","id":19105,"arcs":[[1708,1709,-1625,-1615,-1701,1710]]},{"type":"Polygon","id":19011,"arcs":[[1711,1712,-1631,-1629,1713]]},{"type":"Polygon","id":19113,"arcs":[[-1714,-1628,-1626,-1710,1714,1715]]},{"type":"Polygon","id":19171,"arcs":[[-1632,-1713,1716,1717,-1661]]},{"type":"Polygon","id":31173,"arcs":[[-1662,-1643,1718,1719,1720,-1703,-1593]]},{"type":"Polygon","id":56037,"arcs":[[1721,1722,1723,1724,-1428,-1409,-1221,-1686]]},{"type":"Polygon","id":25023,"arcs":[[1725,1726,1727,1728,1729,1730,1731]]},{"type":"MultiPolygon","id":25021,"arcs":[[[-1604,-1682,-1681]],[[-1606,-1680,1732,-1730,1733,1734,-1608]],[[-1732]]]},{"type":"Polygon","id":19133,"arcs":[[1735,-1719,-1642,1736,1737]]},{"type":"Polygon","id":19047,"arcs":[[-1647,-1650,1738,1739,1740,-1737]]},{"type":"Polygon","id":19027,"arcs":[[-1739,-1649,-1652,1741,1742,1743]]},{"type":"Polygon","id":19073,"arcs":[[1744,-1742,-1651,-1623,1745,1746]]},{"type":"Polygon","id":19015,"arcs":[[1747,1748,-1746,-1622,-1654,1749]]},{"type":"Polygon","id":19127,"arcs":[[1750,1751,-1658,-1660,-1718]]},{"type":"Polygon","id":19169,"arcs":[[1752,-1750,-1653,-1659,-1752,1753]]},{"type":"Polygon","id":36111,"arcs":[[-1673,1754,1755,1756,-1664,-1678]]},{"type":"Polygon","id":31039,"arcs":[[1757,1758,1759,1760,-1704,-1721]]},{"type":"Polygon","id":25005,"arcs":[[-1729,1761,1762,1763,1764,1765,-1734]]},{"type":"Polygon","id":31167,"arcs":[[-1705,-1761,1766,1767,1768]]},{"type":"Polygon","id":31119,"arcs":[[-1769,1769,1770,-1695,-1689]]},{"type":"Polygon","id":31075,"arcs":[[-1508,-1525,1771,1772,1773]]},{"type":"Polygon","id":31115,"arcs":[[1774,1775,-1582,-1589,-1567,1776]]},{"type":"Polygon","id":31091,"arcs":[[1777,-1772,-1524,1778,1779]]},{"type":"Polygon","id":31071,"arcs":[[1780,-1777,-1566,1781]]},{"type":"Polygon","id":31171,"arcs":[[1782,1783,-1779,-1523,1784]]},{"type":"Polygon","id":31183,"arcs":[[-1782,-1565,-1694,1785,1786]]},{"type":"Polygon","id":31009,"arcs":[[-1785,-1522,-1583,-1776,1787]]},{"type":"Polygon","id":36027,"arcs":[[-1672,1788,1789,1790,1791,-1755]]},{"type":"Polygon","id":25001,"arcs":[[1792,-1727]]},{"type":"Polygon","id":31021,"arcs":[[1793,1794,-1758,-1720,-1736,1795]]},{"type":"Polygon","id":9005,"arcs":[[-1789,-1596,-1708,1796,1797,1798]]},{"type":"Polygon","id":9003,"arcs":[[-1797,-1707,1799,1800,1801,1802]]},{"type":"Polygon","id":19045,"arcs":[[1803,1804,-1711,-1700,1805,1806,1807]]},{"type":"Polygon","id":9013,"arcs":[[-1800,-1706,-1611,1808,1809]]},{"type":"Polygon","id":9015,"arcs":[[1810,1811,1812,-1809,-1610]]},{"type":"Polygon","id":36105,"arcs":[[-1665,-1757,1813,1814,1815]]},{"type":"Polygon","id":44007,"arcs":[[-1811,-1609,-1735,-1766,1816,1817,1818]]},{"type":"Polygon","id":49005,"arcs":[[1819,1820,1821,-1675,-1699]]},{"type":"Polygon","id":6093,"arcs":[[-1590,-1513,-1334,1822,1823,1824,1825,1826]]},{"type":"Polygon","id":31069,"arcs":[[1827,1828,1829,1830,1831,-1509,-1774]]},{"type":"Polygon","id":49003,"arcs":[[1832,1833,-1619,-1676,-1822,1834]]},{"type":"Polygon","id":49033,"arcs":[[-1820,-1640,-1425,1835,1836,1837,1838]]},{"type":"Polygon","id":31157,"arcs":[[-1634,-1505,-1692,1839,1840]]},{"type":"Polygon","id":31123,"arcs":[[1841,1842,-1840,-1691,-1510,-1832]]},{"type":"Polygon","id":42127,"arcs":[[1843,1844,1845,1846,1847,-1666,-1816]]},{"type":"Polygon","id":6015,"arcs":[[1848,1849,-1527,-1591,-1827]]},{"type":"Polygon","id":32013,"arcs":[[1850,-1215,-1088,-1325,1851,1852,1853]]},{"type":"Polygon","id":32007,"arcs":[[-1834,1854,1855,1856,1857,-1852,-1324,-1546,-1620]]},{"type":"Polygon","id":6049,"arcs":[[1858,1859,1860,-1823,-1333,-1336]]},{"type":"Polygon","id":32031,"arcs":[[1861,1862,1863,1864,1865,1866,1867,-1859,-1337,-1216,-1851,1868,1869]]},{"type":"Polygon","id":19031,"arcs":[[1870,-1715,-1709,-1805,1871,1872]]},{"type":"Polygon","id":31011,"arcs":[[1873,-1786,-1693,-1771,1874,1875]]},{"type":"Polygon","id":19099,"arcs":[[1876,1877,1878,-1754,-1751,1879]]},{"type":"Polygon","id":19153,"arcs":[[1880,1881,1882,-1748,-1753,-1879]]},{"type":"Polygon","id":19157,"arcs":[[-1717,1883,1884,1885,-1880]]},{"type":"Polygon","id":19085,"arcs":[[1886,1887,-1796,-1738,-1741,1888]]},{"type":"Polygon","id":19077,"arcs":[[-1743,-1745,1889,1890,1891]]},{"type":"Polygon","id":19165,"arcs":[[1892,1893,-1889,-1740,1894]]},{"type":"Polygon","id":19009,"arcs":[[-1744,-1892,1895,-1895]]},{"type":"Polygon","id":19095,"arcs":[[-1712,1896,1897,1898,-1884]]},{"type":"Polygon","id":19049,"arcs":[[-1890,-1747,-1749,-1883,1899]]},{"type":"Polygon","id":19103,"arcs":[[-1897,-1716,-1871,1900,1901,1902]]},{"type":"Polygon","id":17161,"arcs":[[-1808,1903,1904,1905,1906,1907]]},{"type":"Polygon","id":19163,"arcs":[[1908,-1872,-1804,-1908]]},{"type":"Polygon","id":44001,"arcs":[[-1765,1909,-1817]]},{"type":"Polygon","id":44003,"arcs":[[1910,1911,1912,-1812,-1819]]},{"type":"Polygon","id":31037,"arcs":[[1913,1914,-1767,-1760,1915]]},{"type":"Polygon","id":31053,"arcs":[[1916,1917,-1916,-1759,-1795,1918]]},{"type":"Polygon","id":31141,"arcs":[[-1875,-1770,-1768,-1915,1919,1920,1921,1922]]},{"type":"Polygon","id":31005,"arcs":[[-1828,-1773,-1778,1923,1924]]},{"type":"Polygon","id":31077,"arcs":[[1925,1926,-1787,-1874,1927]]},{"type":"Polygon","id":31117,"arcs":[[-1924,-1780,-1784,1928,1929,1930]]},{"type":"Polygon","id":31113,"arcs":[[1931,1932,-1929,-1783]]},{"type":"Polygon","id":31041,"arcs":[[1933,1934,1935,1936,1937,-1932,-1788,-1775]]},{"type":"Polygon","id":31175,"arcs":[[-1781,-1927,1938,-1934]]},{"type":"Polygon","id":17197,"arcs":[[1939,1940,1941,1942,1943,1944]]},{"type":"Polygon","id":39095,"arcs":[[1945,1946,1947,1948,1949,1950,1951]]},{"type":"Polygon","id":17093,"arcs":[[-1943,1952,1953,1954,1955]]},{"type":"Polygon","id":18089,"arcs":[[1956,-1940,1957,1958,1959,1960,1961]]},{"type":"Polygon","id":18127,"arcs":[[1962,1963,1964,-1960]]},{"type":"Polygon","id":39051,"arcs":[[1965,1966,-1952,1967,1968]]},{"type":"Polygon","id":39055,"arcs":[[1969,1970,1971,1972,1973]]},{"type":"Polygon","id":9011,"arcs":[[-1813,-1913,1974,1975,1976,-1801,-1810]]},{"type":"Polygon","id":39171,"arcs":[[1977,1978,1979,-1969,1980,1981]]},{"type":"Polygon","id":31007,"arcs":[[1982,-1635,-1841,-1843,1983,1984]]},{"type":"Polygon","id":31177,"arcs":[[1985,-1919,-1794,-1888,1986]]},{"type":"MultiPolygon","id":44005,"arcs":[[[1987,-1763]],[[1988]]]},{"type":"Polygon","id":9001,"arcs":[[1989,1990,1991,-1790,-1799,1992]]},{"type":"Polygon","id":56021,"arcs":[[1993,1994,-1696,-1638,-1636,-1983,1995]]},{"type":"Polygon","id":42131,"arcs":[[1996,1997,1998,1999,2000]]},{"type":"Polygon","id":44009,"arcs":[[-1912,2001,-1975]]},{"type":"Polygon","id":9007,"arcs":[[-1802,-1977,2002,2003]]},{"type":"Polygon","id":9009,"arcs":[[-2004,2004,-1993,-1798,-1803]]},{"type":"Polygon","id":42069,"arcs":[[2005,2006,-2000,2007,-1846]]},{"type":"Polygon","id":17099,"arcs":[[2008,2009,2010,2011,-1954,2012,2013,2014,2015]]},{"type":"Polygon","id":36071,"arcs":[[-1792,2016,2017,2018,2019,2020,-1814,-1756]]},{"type":"Polygon","id":42047,"arcs":[[2021,2022,2023,2024,2025]]},{"type":"Polygon","id":39035,"arcs":[[-1973,2026,2027,2028,2029,2030]]},{"type":"Polygon","id":42121,"arcs":[[2031,2032,2033,2034,2035,2036]]},{"type":"Polygon","id":42053,"arcs":[[2037,-2025,2038,2039,-2036]]},{"type":"Polygon","id":39123,"arcs":[[2040,2041,2042,-1949]]},{"type":"Polygon","id":42023,"arcs":[[2043,-2022,2044,2045,2046]]},{"type":"Polygon","id":39173,"arcs":[[2047,-1950,-2043,2048,2049,2050]]},{"type":"Polygon","id":42103,"arcs":[[-1815,-2021,2051,2052,-1844]]},{"type":"Polygon","id":42081,"arcs":[[2053,2054,2055,2056,2057,2058,2059,2060,2061]]},{"type":"Polygon","id":19139,"arcs":[[2062,-1901,-1873,-1909,-1907]]},{"type":"Polygon","id":42113,"arcs":[[2063,-1997,2064,2065,-2060]]},{"type":"Polygon","id":17011,"arcs":[[2066,2067,2068,2069,2070,-2010,2071]]},{"type":"Polygon","id":17073,"arcs":[[2072,-2069,2073,2074,2075,-1905]]},{"type":"Polygon","id":56041,"arcs":[[2076,-1836,-1429,-1725]]},{"type":"Polygon","id":18113,"arcs":[[2077,2078,2079,2080,2081,2082]]},{"type":"Polygon","id":18033,"arcs":[[-1978,2083,2084,-2078,2085]]},{"type":"Polygon","id":36079,"arcs":[[-1992,2086,-2017,-1791]]},{"type":"Polygon","id":31125,"arcs":[[2087,-1928,-1876,-1923]]},{"type":"Polygon","id":39093,"arcs":[[2088,2089,2090,2091,-2029,2092]]},{"type":"Polygon","id":19123,"arcs":[[2093,2094,-1877,-1886,2095,2096]]},{"type":"Polygon","id":19155,"arcs":[[-1887,-1894,2097,2098,2099,2100,2101,-1987]]},{"type":"Polygon","id":19183,"arcs":[[2102,2103,2104,2105,-1898,-1903]]},{"type":"Polygon","id":19125,"arcs":[[2106,2107,-1881,-1878,-2095,2108]]},{"type":"Polygon","id":19121,"arcs":[[-1900,2109,2110,2111,2112]]},{"type":"Polygon","id":19181,"arcs":[[-1882,-2108,2113,2114,-2110]]},{"type":"Polygon","id":19107,"arcs":[[2115,2116,-2096,-1885,-1899,-2106]]},{"type":"Polygon","id":19029,"arcs":[[2117,2118,2119,-2098,-1893,-1896]]},{"type":"Polygon","id":19001,"arcs":[[-1891,-2113,2120,2121,-2118]]},{"type":"Polygon","id":39143,"arcs":[[2122,2123,2124,2125,-2049,-2042]]},{"type":"Polygon","id":39155,"arcs":[[2126,2127,2128,2129,-1971,2130]]},{"type":"Polygon","id":42085,"arcs":[[-2128,2131,-2033,2132,2133]]},{"type":"Polygon","id":18099,"arcs":[[2134,2135,2136,2137,2138]]},{"type":"Polygon","id":39069,"arcs":[[-1981,-1968,-1951,-2048,2139,2140]]},{"type":"Polygon","id":42035,"arcs":[[2141,2142,2143,-2047,2144,-2056]]},{"type":"Polygon","id":25007,"arcs":[[2145]]},{"type":"Polygon","id":17063,"arcs":[[2146,-2013,-1953,-1942,2147]]},{"type":"Polygon","id":6023,"arcs":[[2148,2149,2150,-1849,-1826]]},{"type":"Polygon","id":31023,"arcs":[[-1914,2151,2152,2153,-1920]]},{"type":"Polygon","id":31155,"arcs":[[2154,2155,2156,2157,-2152,-1918]]},{"type":"Polygon","id":39043,"arcs":[[2158,-2091,2159,-2124]]},{"type":"Polygon","id":18085,"arcs":[[-2081,2160,2161,2162,-2136,2163]]},{"type":"Polygon","id":18149,"arcs":[[2164,-2138,2165,2166,2167]]},{"type":"Polygon","id":42031,"arcs":[[2168,2169,-2037,-2040]]},{"type":"Polygon","id":31033,"arcs":[[2170,2171,2172,2173,-1984,-1842,-1831]]},{"type":"Polygon","id":39039,"arcs":[[2174,2175,2176,-2084,-1982,-2141]]},{"type":"Polygon","id":49057,"arcs":[[2177,2178,2179,-1835,-1821,-1839]]},{"type":"Polygon","id":19115,"arcs":[[2180,2181,-2103,-1902,-2063,2182]]},{"type":"Polygon","id":42079,"arcs":[[2183,2184,2185,2186,-2065,-2001,-2007]]},{"type":"Polygon","id":31143,"arcs":[[2187,2188,2189,-1921,-2154]]},{"type":"Polygon","id":31055,"arcs":[[-1917,-1986,-2102,2190,-2155]]},{"type":"Polygon","id":31163,"arcs":[[2191,2192,-1935,-1939]]},{"type":"Polygon","id":31093,"arcs":[[-1926,2193,2194,2195,-2192]]},{"type":"Polygon","id":31111,"arcs":[[-1930,-1933,-1938,2196,2197,2198,2199,2200]]},{"type":"Polygon","id":31121,"arcs":[[-2190,2201,2202,-2194,-2088,-1922]]},{"type":"Polygon","id":25019,"arcs":[[2203]]},{"type":"Polygon","id":31101,"arcs":[[-1925,-1931,-2201,2204,2205,-1829]]},{"type":"Polygon","id":31105,"arcs":[[-1996,-1985,-2174,2206,2207]]},{"type":"Polygon","id":42065,"arcs":[[2208,2209,-2169,-2039,-2024,2210]]},{"type":"Polygon","id":49029,"arcs":[[-1838,2211,2212,2213,-2178]]},{"type":"Polygon","id":6105,"arcs":[[2214,2215,2216,-2149,-1825]]},{"type":"Polygon","id":36119,"arcs":[[2217,-2087,-1991,2218,2219,2220]]},{"type":"Polygon","id":34037,"arcs":[[-2020,2221,2222,2223,2224,-2052]]},{"type":"Polygon","id":39153,"arcs":[[2225,2226,-2027,2227,2228]]},{"type":"Polygon","id":39133,"arcs":[[-1972,-2130,2229,2230,-2228]]},{"type":"Polygon","id":17131,"arcs":[[-1906,-2076,2231,2232,2233,-2183]]},{"type":"Polygon","id":36087,"arcs":[[2234,2235,-2018,-2218]]},{"type":"Polygon","id":17155,"arcs":[[-2009,2236,-2072]]},{"type":"Polygon","id":42037,"arcs":[[-2187,2237,2238,2239,-2061,-2066]]},{"type":"Polygon","id":17091,"arcs":[[-1941,-1957,2240,2241,2242,2243,-2148]]},{"type":"Polygon","id":18183,"arcs":[[2244,2245,2246,-2161,-2080]]},{"type":"Polygon","id":18073,"arcs":[[-2167,2247,2248,2249,2250,-1961,-1965]]},{"type":"Polygon","id":39077,"arcs":[[2251,2252,2253,-2125,-2160,-2090,2254]]},{"type":"Polygon","id":18003,"arcs":[[-2177,2255,2256,2257,2258,2259,-2245,-2079,-2085]]},{"type":"Polygon","id":39103,"arcs":[[-2093,-2028,-2227,2260,2261]]},{"type":"Polygon","id":49043,"arcs":[[-2212,-1837,-2077,-1724,2262,2263,2264,2265]]},{"type":"Polygon","id":42027,"arcs":[[2266,2267,2268,2269,-2143,2270]]},{"type":"Polygon","id":42033,"arcs":[[2271,2272,2273,-2211,-2023,-2044,-2144,-2270]]},{"type":"Polygon","id":42089,"arcs":[[-2006,-1845,-2053,-2225,2274,2275,2276,-2184]]},{"type":"Polygon","id":39147,"arcs":[[2277,2278,-2050,-2126,-2254,2279]]},{"type":"Polygon","id":39125,"arcs":[[-2256,-2176,2280,2281]]},{"type":"Polygon","id":17175,"arcs":[[-2068,2282,2283,2284,-2074]]},{"type":"Polygon","id":18111,"arcs":[[2285,-2241,-1962,-2251,2286]]},{"type":"Polygon","id":31049,"arcs":[[2287,-2171,-1830,-2206]]},{"type":"Polygon","id":34031,"arcs":[[-2222,-2019,-2236,2288,2289,2290]]},{"type":"Polygon","id":31153,"arcs":[[2291,-2156,-2191,-2101,2292]]},{"type":"Polygon","id":6089,"arcs":[[2293,2294,-2215,-1824,-1861,2295]]},{"type":"Polygon","id":6035,"arcs":[[-1868,2296,2297,-2296,-1860]]},{"type":"Polygon","id":42097,"arcs":[[2298,-2239,2299,2300,2301,2302,2303,-2054]]},{"type":"Polygon","id":18049,"arcs":[[2304,2305,-2137,-2163,2306,2307]]},{"type":"Polygon","id":42019,"arcs":[[-2133,-2032,2308,2309,2310,2311]]},{"type":"Polygon","id":42005,"arcs":[[2312,-2309,-2170,-2210,2313]]},{"type":"Polygon","id":18131,"arcs":[[-2306,2314,2315,-2248,-2166]]},{"type":"Polygon","id":42093,"arcs":[[-2299,-2062,-2240]]},{"type":"Polygon","id":39063,"arcs":[[-2051,-2279,2316,2317,2318,2319]]},{"type":"Polygon","id":19129,"arcs":[[2320,2321,-2293,-2100,2322]]},{"type":"Polygon","id":39137,"arcs":[[-2175,-2140,-2320,2323,2324,-2281]]},{"type":"Polygon","id":19137,"arcs":[[2325,-2323,-2099,-2120,2326]]},{"type":"Polygon","id":19003,"arcs":[[2327,-2327,-2119,-2122,2328]]},{"type":"Polygon","id":19039,"arcs":[[2329,2330,-2111,-2115,2331]]},{"type":"Polygon","id":19179,"arcs":[[2332,2333,-2097,-2117,2334]]},{"type":"Polygon","id":19101,"arcs":[[-2335,-2116,-2105,2335,2336]]},{"type":"Polygon","id":19175,"arcs":[[2337,-2329,-2121,-2112,-2331]]},{"type":"Polygon","id":19087,"arcs":[[2338,2339,2340,-2336,-2104,-2182]]},{"type":"Polygon","id":31081,"arcs":[[-2189,2341,2342,2343,-2202]]},{"type":"Polygon","id":19117,"arcs":[[2344,-2332,-2114,-2107,2345]]},{"type":"Polygon","id":19135,"arcs":[[2346,-2346,-2109,-2094,-2334]]},{"type":"Polygon","id":49011,"arcs":[[2347,-2179,-2214,2348]]},{"type":"Polygon","id":17095,"arcs":[[2349,2350,-2232,-2075,-2285,2351]]},{"type":"Polygon","id":17123,"arcs":[[-2016,2352,2353,-2283,-2067,-2237]]},{"type":"Polygon","id":42119,"arcs":[[2354,2355,-2271,-2142,-2055,-2304]]},{"type":"Polygon","id":42025,"arcs":[[2356,2357,2358,-2185,-2277]]},{"type":"Polygon","id":39099,"arcs":[[2359,2360,2361,-2230,-2129]]},{"type":"Polygon","id":42073,"arcs":[[2362,2363,-2360,-2134,-2312]]},{"type":"Polygon","id":34003,"arcs":[[2364,2365,2366,2367,-2289,-2235,-2221]]},{"type":"Polygon","id":17105,"arcs":[[2368,-2014,-2147,-2244,2369,2370]]},{"type":"Polygon","id":34041,"arcs":[[2371,2372,2373,-2275,-2224,2374]]},{"type":"Polygon","id":49045,"arcs":[[2375,2376,2377,-1855,-1833,-2180,-2348,2378]]},{"type":"Polygon","id":34027,"arcs":[[-2291,2379,2380,2381,2382,-2375,-2223]]},{"type":"Polygon","id":19057,"arcs":[[2383,2384,-2339,-2181]]},{"type":"Polygon","id":17071,"arcs":[[2385,-2384,-2234,2386,2387,2388]]},{"type":"Polygon","id":17187,"arcs":[[2389,-2387,-2233,-2351,2390]]},{"type":"Polygon","id":31025,"arcs":[[2391,2392,2393,-2157,-2292,-2322]]},{"type":"Polygon","id":39005,"arcs":[[2394,2395,2396,2397,-2255,-2089,-2262]]},{"type":"Polygon","id":18169,"arcs":[[-2307,-2162,-2247,2398,2399,2400]]},{"type":"Polygon","id":31159,"arcs":[[2401,-2153,2402,2403]]},{"type":"Polygon","id":31109,"arcs":[[2404,2405,-2403,-2158,-2394,2406]]},{"type":"Polygon","id":31019,"arcs":[[2407,-1936,-2193,-2196,2408,2409,2410,2411]]},{"type":"Polygon","id":31047,"arcs":[[2412,2413,2414,-2197,-1937,-2408]]},{"type":"Polygon","id":31185,"arcs":[[-2402,2415,-2342,-2188]]},{"type":"Polygon","id":31079,"arcs":[[-2344,2416,-2409,-2195,-2203]]},{"type":"Polygon","id":18069,"arcs":[[2417,-2399,-2246,-2260,2418]]},{"type":"Polygon","id":17075,"arcs":[[-2286,2419,2420,2421,-2242]]},{"type":"Polygon","id":18103,"arcs":[[-2401,2422,2423,2424,-2308]]},{"type":"Polygon","id":17053,"arcs":[[-2243,-2422,2425,2426,2427,-2370]]},{"type":"Polygon","id":8081,"arcs":[[2428,2429,-1722,-1685,2430,2431]]},{"type":"Polygon","id":8123,"arcs":[[-2208,2432,2433,2434,2435,2436,2437,-1994]]},{"type":"Polygon","id":8057,"arcs":[[2438,-1683,-1698,2439,2440]]},{"type":"Polygon","id":31135,"arcs":[[2441,2442,-2205,-2200,2443,2444]]},{"type":"Polygon","id":8075,"arcs":[[2445,2446,2447,-2433,-2207,-2173,2448,2449]]},{"type":"Polygon","id":8115,"arcs":[[-2172,-2288,-2443,2450,-2449]]},{"type":"Polygon","id":8107,"arcs":[[2451,2452,2453,2454,-2431,-1684,-2439]]},{"type":"Polygon","id":8069,"arcs":[[-1697,-1995,-2438,2455,2456,-2440]]},{"type":"Polygon","id":49009,"arcs":[[-1723,-2430,2457,2458,-2263]]},{"type":"Polygon","id":39033,"arcs":[[-2253,2459,2460,2461,2462,-2280]]},{"type":"Polygon","id":32015,"arcs":[[-1858,2463,2464,2465,2466,-1853]]},{"type":"Polygon","id":32011,"arcs":[[2467,2468,-2464,-1857]]},{"type":"Polygon","id":39139,"arcs":[[2469,-2460,-2252,-2398,2470]]},{"type":"Polygon","id":39169,"arcs":[[2471,2472,-2395,-2261,-2226]]},{"type":"Polygon","id":39161,"arcs":[[2473,2474,2475,2476,-2257,-2282,-2325]]},{"type":"Polygon","id":39175,"arcs":[[-2278,-2463,2477,2478,-2317]]},{"type":"Polygon","id":39151,"arcs":[[2479,2480,-2472,-2229,-2231,-2362,2481,2482]]},{"type":"Polygon","id":17143,"arcs":[[2483,-2352,-2284,-2354,2484,2485]]},{"type":"Polygon","id":42095,"arcs":[[2486,2487,-2357,-2276,-2374]]},{"type":"Polygon","id":32027,"arcs":[[-2467,2488,-1869,-1854]]},{"type":"Polygon","id":42107,"arcs":[[-2186,-2359,2489,2490,2491,2492,-2300,-2238]]},{"type":"Polygon","id":18001,"arcs":[[-2477,2493,2494,2495,-2258]]},{"type":"Polygon","id":18179,"arcs":[[-2259,-2496,2496,2497,2498,-2419]]},{"type":"Polygon","id":17203,"arcs":[[-2485,-2353,-2015,-2369,2499,2500]]},{"type":"Polygon","id":39029,"arcs":[[2501,2502,2503,-2482,-2361,-2364,2504]]},{"type":"Polygon","id":36005,"arcs":[[-2365,-2220,2505,2506]]},{"type":"Polygon","id":18017,"arcs":[[2507,-2315,-2305,-2425,2508,2509]]},{"type":"Polygon","id":18181,"arcs":[[-2316,-2508,2510,2511,2512,-2249]]},{"type":"Polygon","id":49035,"arcs":[[-2213,-2266,2513,2514,-2379,-2349]]},{"type":"Polygon","id":39003,"arcs":[[-2319,2515,2516,-2474,-2324]]},{"type":"Polygon","id":42063,"arcs":[[2517,-2314,-2209,-2274,2518]]},{"type":"Polygon","id":19071,"arcs":[[-2321,2519,2520,2521,-2392]]},{"type":"Polygon","id":19145,"arcs":[[-2326,2522,2523,2524,-2520]]},{"type":"Polygon","id":19173,"arcs":[[2525,2526,-2523,-2328,2527]]},{"type":"Polygon","id":19159,"arcs":[[2528,2529,-2528,-2338,2530]]},{"type":"Polygon","id":36059,"arcs":[[2531,2532,2533,2534,2535,2536]]},{"type":"Polygon","id":19051,"arcs":[[2537,2538,2539,-2333,2540]]},{"type":"Polygon","id":19177,"arcs":[[2541,2542,-2541,-2337,-2341,2543]]},{"type":"Polygon","id":19053,"arcs":[[2544,2545,-2531,-2330,2546]]},{"type":"Polygon","id":19185,"arcs":[[2547,2548,-2547,-2345,2549]]},{"type":"Polygon","id":34013,"arcs":[[2550,2551,-2380,-2290,-2368,2552]]},{"type":"Polygon","id":19007,"arcs":[[2553,2554,-2550,-2347,-2540]]},{"type":"Polygon","id":42109,"arcs":[[-2303,2555,2556,-2355]]},{"type":"Polygon","id":36061,"arcs":[[2557,2558,-2366,-2507]]},{"type":"Polygon","id":49047,"arcs":[[-2429,2559,2560,2561,2562,2563,-2458]]},{"type":"Polygon","id":42007,"arcs":[[2564,-2505,-2363,-2311,2565,2566]]},{"type":"Polygon","id":42087,"arcs":[[2567,-2267,-2356,-2557,2568]]},{"type":"Polygon","id":49013,"arcs":[[2569,2570,-2264,-2459,-2564,2571]]},{"type":"Polygon","id":34017,"arcs":[[-2559,2572,-2553,-2367]]},{"type":"Polygon","id":19111,"arcs":[[2573,-2544,-2340,-2385,-2386,2574]]},{"type":"Polygon","id":39065,"arcs":[[2575,2576,2577,-2516,-2318,-2479,2578]]},{"type":"MultiPolygon","id":36081,"arcs":[[[2579,2580,2581,-2535]],[[2582,-2533]]]},{"type":"Polygon","id":31131,"arcs":[[-2407,-2393,-2522,2583,2584,2585]]},{"type":"Polygon","id":42077,"arcs":[[2586,2587,-2490,-2358,-2488,2588]]},{"type":"Polygon","id":34019,"arcs":[[-2383,2589,2590,2591,-2372]]},{"type":"MultiPolygon","id":36103,"arcs":[[[2592,-2537]],[[2593]]]},{"type":"Polygon","id":17113,"arcs":[[-2428,2594,2595,2596,2597,2598,-2500,-2371]]},{"type":"Polygon","id":34035,"arcs":[[2599,2600,2601,-2590,-2382]]},{"type":"Polygon","id":18015,"arcs":[[2602,2603,2604,-2511,-2510]]},{"type":"Polygon","id":17179,"arcs":[[-2501,-2599,2605,2606,2607,-2486]]},{"type":"Polygon","id":42013,"arcs":[[2608,2609,2610,-2272,-2269]]},{"type":"Polygon","id":18007,"arcs":[[2611,-2420,-2287,-2250,-2513,2612,2613]]},{"type":"Polygon","id":8095,"arcs":[[-2442,2614,2615,-2450,-2451]]},{"type":"Polygon","id":42061,"arcs":[[2616,2617,2618,2619,-2609,-2268,-2568]]},{"type":"Polygon","id":36047,"arcs":[[2620,-2581]]},{"type":"Polygon","id":42021,"arcs":[[-2611,2621,2622,2623,-2519,-2273]]},{"type":"Polygon","id":34039,"arcs":[[-2552,2624,2625,-2600,-2381]]},{"type":"Polygon","id":39107,"arcs":[[2626,2627,-2494,-2476,2628]]},{"type":"Polygon","id":39019,"arcs":[[2629,2630,2631,-2483,-2504]]},{"type":"Polygon","id":17057,"arcs":[[2632,2633,-2391,-2350,-2484,-2608,2634]]},{"type":"Polygon","id":39117,"arcs":[[-2470,2635,2636,2637,-2461]]},{"type":"Polygon","id":39101,"arcs":[[-2462,-2638,2638,2639,-2579,-2478]]},{"type":"Polygon","id":31151,"arcs":[[2640,-2404,-2406,2641,2642]]},{"type":"Polygon","id":31001,"arcs":[[2643,2644,2645,-2410,-2417]]},{"type":"Polygon","id":31035,"arcs":[[-2644,-2343,2646,2647]]},{"type":"Polygon","id":31059,"arcs":[[-2647,-2416,-2641,2648]]},{"type":"Polygon","id":42067,"arcs":[[2649,-2617,-2569,-2556,2650]]},{"type":"Polygon","id":31085,"arcs":[[2651,-2444,-2199,2652,2653,2654]]},{"type":"Polygon","id":31029,"arcs":[[2655,-2615,-2445,-2652,2656]]},{"type":"Polygon","id":31063,"arcs":[[2657,2658,2659,-2653,-2198,-2415,2660]]},{"type":"Polygon","id":31073,"arcs":[[2661,-2661,-2414,2662]]},{"type":"Polygon","id":39011,"arcs":[[-2475,-2517,-2578,2663,2664,-2629]]},{"type":"Polygon","id":31099,"arcs":[[-2646,2665,2666,-2411]]},{"type":"Polygon","id":49051,"arcs":[[-2571,2667,-2514,-2265]]},{"type":"Polygon","id":31137,"arcs":[[-2667,2668,-2663,-2413,-2412]]},{"type":"Polygon","id":42011,"arcs":[[-2588,2669,2670,2671,2672,-2491]]},{"type":"Polygon","id":42129,"arcs":[[-2518,-2624,2673,2674,2675,2676,-2313]]},{"type":"Polygon","id":42003,"arcs":[[-2677,2677,-2566,-2310]]},{"type":"Polygon","id":18053,"arcs":[[2678,2679,2680,-2423,-2400,-2418,-2499,2681,2682]]},{"type":"Polygon","id":39075,"arcs":[[2683,2684,-2396,-2473,-2481,2685]]},{"type":"Polygon","id":42043,"arcs":[[2686,-2301,-2493,2687,2688,2689,2690]]},{"type":"Polygon","id":39157,"arcs":[[-2632,2691,2692,2693,-2686,-2480]]},{"type":"Polygon","id":36085,"arcs":[[2694]]},{"type":"Polygon","id":17067,"arcs":[[2695,2696,-2575,-2389,2697,2698,2699]]},{"type":"Polygon","id":17109,"arcs":[[2700,-2698,-2388,-2390,-2634]]},{"type":"Polygon","id":42099,"arcs":[[2701,2702,-2651,-2302,-2687]]},{"type":"Polygon","id":54029,"arcs":[[-2502,-2565,2703,2704,2705]]},{"type":"Polygon","id":42017,"arcs":[[2706,2707,2708,-2589,-2487,-2373,-2592,2709]]},{"type":"Polygon","id":29045,"arcs":[[2710,2711,2712,-2542,-2574,-2697]]},{"type":"Polygon","id":29199,"arcs":[[-2538,-2543,-2713,2713,2714,2715]]},{"type":"Polygon","id":29197,"arcs":[[-2554,-2539,-2716,2716,2717]]},{"type":"Polygon","id":34023,"arcs":[[2718,2719,2720,-2601,-2626]]},{"type":"Polygon","id":39081,"arcs":[[-2706,2721,2722,2723,2724,-2630,-2503]]},{"type":"Polygon","id":18009,"arcs":[[2725,-2682,-2498,2726]]},{"type":"Polygon","id":29171,"arcs":[[2727,-2548,-2555,-2718,2728,2729]]},{"type":"Polygon","id":29005,"arcs":[[-2521,-2525,2730,2731,2732,-2584]]},{"type":"Polygon","id":18075,"arcs":[[-2628,2733,2734,2735,-2727,-2497,-2495]]},{"type":"Polygon","id":49049,"arcs":[[-2515,-2668,-2570,2736,2737,2738,-2376]]},{"type":"Polygon","id":29147,"arcs":[[2739,2740,2741,-2731,-2524,-2527,2742]]},{"type":"Polygon","id":29129,"arcs":[[-2545,-2549,-2728,2743,2744,2745]]},{"type":"Polygon","id":18067,"arcs":[[2746,-2603,-2509,-2424,-2681,2747]]},{"type":"Polygon","id":29081,"arcs":[[-2529,-2546,-2746,2748,2749,2750,2751]]},{"type":"Polygon","id":18157,"arcs":[[2752,2753,2754,2755,-2613,-2512,-2605]]},{"type":"Polygon","id":29227,"arcs":[[2756,-2743,-2526,-2530,-2752]]},{"type":"Polygon","id":39083,"arcs":[[2757,2758,2759,-2636,-2471,-2397,-2685]]},{"type":"Polygon","id":31127,"arcs":[[-2733,2760,2761,2762,-2585]]},{"type":"Polygon","id":42075,"arcs":[[-2688,-2492,-2673,2763]]},{"type":"Polygon","id":39091,"arcs":[[2764,2765,2766,-2664,-2577]]},{"type":"Polygon","id":31067,"arcs":[[2767,2768,2769,-2642,-2405,2770,2771]]},{"type":"Polygon","id":31097,"arcs":[[-2586,-2763,2772,-2771]]},{"type":"Polygon","id":8087,"arcs":[[2773,-2434,-2448,2774]]},{"type":"Polygon","id":39159,"arcs":[[2775,2776,2777,-2765,-2576,-2640,2778]]},{"type":"Polygon","id":17183,"arcs":[[-2612,2779,2780,2781,2782,-2426,-2421]]},{"type":"Polygon","id":18171,"arcs":[[-2780,-2614,-2756,2783,2784]]},{"type":"Polygon","id":39149,"arcs":[[-2767,2785,2786,2787,-2665]]},{"type":"Polygon","id":42125,"arcs":[[2788,2789,2790,2791,2792,-2704,-2567,-2678,-2676]]},{"type":"Polygon","id":8049,"arcs":[[-2441,-2457,2793,2794,2795,2796,2797,-2452]]},{"type":"Polygon","id":39031,"arcs":[[2798,2799,-2758,-2684,-2694,2800]]},{"type":"Polygon","id":6103,"arcs":[[2801,2802,2803,2804,-2216,-2295]]},{"type":"Polygon","id":34025,"arcs":[[2805,2806,-2720,2807,2808]]},{"type":"Polygon","id":6063,"arcs":[[2809,2810,2811,-2802,-2294,-2298]]},{"type":"Polygon","id":39041,"arcs":[[-2639,-2637,-2760,2812,2813,-2779]]},{"type":"Polygon","id":42091,"arcs":[[2814,-2670,-2587,-2709,2815,2816]]},{"type":"Polygon","id":17125,"arcs":[[2817,2818,2819,2820,-2635,-2607]]},{"type":"Polygon","id":18023,"arcs":[[2821,2822,2823,2824,-2753,-2604,-2747]]},{"type":"Polygon","id":8125,"arcs":[[-2656,2825,2826,2827,2828,-2446,-2616]]},{"type":"Polygon","id":8121,"arcs":[[-2447,-2829,2829,2830,2831,2832,-2775]]},{"type":"Polygon","id":39067,"arcs":[[-2631,-2725,2833,2834,-2692]]},{"type":"Polygon","id":34021,"arcs":[[-2721,-2807,2835,-2710,-2591,-2602]]},{"type":"Polygon","id":18159,"arcs":[[-2680,2836,2837,-2822,-2748]]},{"type":"Polygon","id":17019,"arcs":[[2838,2839,-2595,-2427,-2783]]},{"type":"Polygon","id":54009,"arcs":[[-2722,-2705,-2793,2840]]},{"type":"Polygon","id":18095,"arcs":[[2841,-2837,-2679,2842,2843,2844]]},{"type":"Polygon","id":18035,"arcs":[[2845,2846,-2843,-2683,-2726,-2736]]},{"type":"Polygon","id":29075,"arcs":[[2847,-2740,-2757,-2751,2848,2849]]},{"type":"Polygon","id":29211,"arcs":[[2850,2851,2852,-2744,-2730]]},{"type":"Polygon","id":18045,"arcs":[[-2755,2853,2854,2855,-2784]]},{"type":"Polygon","id":39037,"arcs":[[2856,2857,-2734,-2627,-2788,2858,2859,2860]]},{"type":"Polygon","id":31169,"arcs":[[2861,2862,-2649,2863]]},{"type":"Polygon","id":31095,"arcs":[[2864,-2864,-2643,-2770]]},{"type":"Polygon","id":29001,"arcs":[[-2851,-2729,-2717,-2715,2865,2866]]},{"type":"Polygon","id":31057,"arcs":[[-2826,-2657,-2655,2867,2868,2869]]},{"type":"Polygon","id":31061,"arcs":[[2870,2871,2872,-2666,2873]]},{"type":"Polygon","id":31181,"arcs":[[2874,2875,-2874,-2645,2876]]},{"type":"Polygon","id":31129,"arcs":[[2877,2878,-2877,-2648,-2863]]},{"type":"Polygon","id":31087,"arcs":[[2879,-2868,-2654,-2660,2880]]},{"type":"Polygon","id":31083,"arcs":[[2881,2882,-2669,-2873]]},{"type":"Polygon","id":31065,"arcs":[[2883,2884,-2658,-2662,-2883]]},{"type":"Polygon","id":31145,"arcs":[[2885,2886,-2881,-2659,-2885]]},{"type":"Polygon","id":17107,"arcs":[[2887,2888,-2818,-2606,-2598,2889,2890]]},{"type":"Polygon","id":42009,"arcs":[[-2620,2891,2892,2893,-2622,-2610]]},{"type":"Polygon","id":42041,"arcs":[[2894,2895,2896,-2702,-2691]]},{"type":"Polygon","id":18135,"arcs":[[-2858,2897,2898,-2846,-2735]]},{"type":"Polygon","id":42071,"arcs":[[-2764,-2672,2899,2900,2901,-2689]]},{"type":"Polygon","id":29103,"arcs":[[-2866,-2714,-2712,2902,2903,2904]]},{"type":"Polygon","id":42055,"arcs":[[-2897,2905,2906,2907,2908,-2618,-2650,-2703]]},{"type":"Polygon","id":17147,"arcs":[[-2596,-2840,2909,2910,2911,2912]]},{"type":"Polygon","id":17039,"arcs":[[2913,-2890,-2597,-2913]]},{"type":"Polygon","id":42111,"arcs":[[-2894,2914,2915,2916,-2674,-2623]]},{"type":"Polygon","id":17169,"arcs":[[2917,2918,-2699,-2701,-2633,-2821,2919]]},{"type":"Polygon","id":39089,"arcs":[[2920,2921,2922,2923,-2813,-2759,-2800]]},{"type":"Polygon","id":39021,"arcs":[[-2778,2924,2925,2926,-2786,-2766]]},{"type":"Polygon","id":29087,"arcs":[[-2732,-2742,2927,2928,2929]]},{"type":"Polygon","id":31147,"arcs":[[-2930,2930,2931,2932,2933,-2761]]},{"type":"Polygon","id":31133,"arcs":[[2934,2935,-2772,-2773,-2762,-2934]]},{"type":"Polygon","id":29079,"arcs":[[2936,2937,2938,-2749,-2745,-2853]]},{"type":"Polygon","id":8013,"arcs":[[-2437,2939,2940,2941,-2794,-2456]]},{"type":"Polygon","id":29111,"arcs":[[-2696,2942,2943,2944,-2903,-2711]]},{"type":"Polygon","id":42029,"arcs":[[2945,2946,2947,-2900,-2671,-2815]]},{"type":"Polygon","id":18057,"arcs":[[2948,2949,-2823,-2838,-2842,2950]]},{"type":"Polygon","id":42133,"arcs":[[-2902,2951,2952,2953,2954,-2895,-2690]]},{"type":"Polygon","id":18107,"arcs":[[-2854,-2754,-2825,2955,2956,2957,2958]]},{"type":"Polygon","id":8103,"arcs":[[2959,-2560,-2432,-2455]]},{"type":"Polygon","id":39059,"arcs":[[-2693,-2835,2960,2961,2962,-2801]]},{"type":"Polygon","id":17001,"arcs":[[-2700,-2919,2963,2964,2965,-2943]]},{"type":"Polygon","id":39109,"arcs":[[-2859,-2787,-2927,2966,2967]]},{"type":"Polygon","id":54069,"arcs":[[-2841,-2792,2968,2969,-2723]]},{"type":"Polygon","id":18011,"arcs":[[2970,-2956,-2824,-2950,2971]]},{"type":"Polygon","id":34005,"arcs":[[-2836,-2806,2972,2973,2974,2975,-2707]]},{"type":"Polygon","id":18165,"arcs":[[2976,2977,-2781,-2785,-2856,2978]]},{"type":"Polygon","id":17129,"arcs":[[2979,-2819,-2889,2980]]},{"type":"Polygon","id":39013,"arcs":[[-2724,-2970,2981,2982,2983,-2961,-2834]]},{"type":"Polygon","id":34029,"arcs":[[2984,2985,-2973,-2809]]},{"type":"Polygon","id":42057,"arcs":[[2986,2987,-2892,-2619,-2909]]},{"type":"Polygon","id":39119,"arcs":[[2988,2989,2990,-2921,-2799,-2963]]},{"type":"Polygon","id":6007,"arcs":[[2991,2992,2993,2994,-2803,-2812]]},{"type":"Polygon","id":29061,"arcs":[[-2849,-2750,-2939,2995,2996,2997]]},{"type":"Polygon","id":39049,"arcs":[[2998,2999,3000,-2776,-2814,-2924]]},{"type":"Polygon","id":42051,"arcs":[[-2917,3001,3002,3003,3004,-2789,-2675]]},{"type":"Polygon","id":42101,"arcs":[[-2708,-2976,3005,3006,3007,-2816]]},{"type":"Polygon","id":29003,"arcs":[[3008,-2928,-2741,-2848,3009,3010]]},{"type":"Polygon","id":17017,"arcs":[[-2980,3011,3012,3013,-2920,-2820]]},{"type":"Polygon","id":32033,"arcs":[[-2378,3014,3015,3016,3017,-2468,-1856]]},{"type":"Polygon","id":39097,"arcs":[[-2925,-2777,-3001,3018,3019,3020,3021]]},{"type":"Polygon","id":17009,"arcs":[[3022,3023,-2964,-2918,-3014]]},{"type":"Polygon","id":8045,"arcs":[[3024,-2561,-2960,-2454,3025,3026,3027]]},{"type":"Polygon","id":18065,"arcs":[[3028,3029,3030,3031,-2844,-2847,-2899]]},{"type":"Polygon","id":42001,"arcs":[[3032,3033,-2906,-2896,-2955]]},{"type":"Polygon","id":42045,"arcs":[[-3008,3034,3035,-2946,-2817]]},{"type":"Polygon","id":17115,"arcs":[[3036,3037,3038,-2891,-2914,-2912,3039]]},{"type":"Polygon","id":29063,"arcs":[[3040,3041,3042,-3010,-2850,-2998]]},{"type":"Polygon","id":29121,"arcs":[[3043,3044,3045,-2867,-2905,3046]]},{"type":"Polygon","id":39023,"arcs":[[3047,-2967,-2926,-3022,3048]]},{"type":"Polygon","id":29115,"arcs":[[-2937,-2852,-3046,3049,3050]]},{"type":"Polygon","id":54051,"arcs":[[-2982,-2969,-2791,3051,3052,3053]]},{"type":"Polygon","id":42059,"arcs":[[-3005,3054,3055,-3052,-2790]]},{"type":"Polygon","id":18177,"arcs":[[-2898,-2857,3056,3057,3058,-3029]]},{"type":"Polygon","id":49023,"arcs":[[3059,3060,-3015,-2377,-2739]]},{"type":"Polygon","id":32001,"arcs":[[-2466,3061,3062,3063,-1870,-2489]]},{"type":"Polygon","id":20137,"arcs":[[-2884,3064,3065,3066,3067]]},{"type":"Polygon","id":20147,"arcs":[[-2882,-2872,3068,3069,3070,-3065]]},{"type":"Polygon","id":20153,"arcs":[[-2869,-2880,-2887,3071,3072,3073,3074]]},{"type":"Polygon","id":20023,"arcs":[[-2870,-3075,3075,3076,-2827]]},{"type":"Polygon","id":20039,"arcs":[[-2886,-3068,3077,3078,-3072]]},{"type":"Polygon","id":20157,"arcs":[[-2878,-2862,3079,3080,3081]]},{"type":"Polygon","id":20043,"arcs":[[3082,3083,-2931,-2929,-3009,3084]]},{"type":"Polygon","id":6045,"arcs":[[-2805,3085,3086,3087,3088,-2150,-2217]]},{"type":"Polygon","id":20183,"arcs":[[-2871,-2876,3089,3090,3091,-3069]]},{"type":"Polygon","id":20089,"arcs":[[-2875,-2879,-3082,3092,3093,3094,-3090]]},{"type":"Polygon","id":20201,"arcs":[[-2865,-2769,3095,3096,3097,3098,-3080]]},{"type":"Polygon","id":8001,"arcs":[[3099,3100,-2435,-2774,-2833,3101,3102]]},{"type":"Polygon","id":20131,"arcs":[[-2935,-2933,3103,3104,3105,3106]]},{"type":"Polygon","id":20117,"arcs":[[-2768,-2936,-3107,3107,3108,-3096]]},{"type":"Polygon","id":20013,"arcs":[[-2932,-3084,3109,3110,-3104]]},{"type":"Polygon","id":34007,"arcs":[[3111,3112,-3006,-2975]]},{"type":"Polygon","id":17167,"arcs":[[-3039,3113,3114,3115,3116,-3012,-2981,-2888]]},{"type":"Polygon","id":29117,"arcs":[[3117,3118,3119,-2996,-2938,-3051]]},{"type":"Polygon","id":18121,"arcs":[[3120,3121,3122,-2979,-2855,-2959]]},{"type":"Polygon","id":29205,"arcs":[[-3047,-2904,-2945,3123,3124]]},{"type":"Polygon","id":18059,"arcs":[[3125,3126,3127,-2951,-2845,-3032]]},{"type":"Polygon","id":29127,"arcs":[[3128,-3124,-2944,-2966,3129,3130]]},{"type":"Polygon","id":39121,"arcs":[[-2984,3131,3132,3133,-2989,-2962]]},{"type":"Polygon","id":18097,"arcs":[[3134,3135,3136,3137,-2972,-2949,-3128]]},{"type":"Polygon","id":39045,"arcs":[[3138,3139,-2999,-2923,3140]]},{"type":"Polygon","id":18063,"arcs":[[-2957,-2971,-3138,3141,3142]]},{"type":"Polygon","id":8047,"arcs":[[3143,3144,-2795,-2942]]},{"type":"Polygon","id":39127,"arcs":[[-2991,3145,3146,3147,-3141,-2922]]},{"type":"Polygon","id":39113,"arcs":[[3148,3149,-2860,-2968,-3048,3150,3151]]},{"type":"Polygon","id":39135,"arcs":[[3152,-3057,-2861,-3150,3153]]},{"type":"Polygon","id":8117,"arcs":[[3154,3155,3156,-2797,3157]]},{"type":"Polygon","id":8037,"arcs":[[3158,-3026,-2453,-2798,-3157,3159]]},{"type":"Polygon","id":8059,"arcs":[[3160,3161,-3144,-2941,3162,-3100,3163,3164,3165]]},{"type":"Polygon","id":17045,"arcs":[[3166,3167,-2782,-2978,3168,3169]]},{"type":"Polygon","id":17041,"arcs":[[3170,3171,-2910,-2839,-3168]]},{"type":"Polygon","id":34015,"arcs":[[-3007,-3113,3172,3173,3174,3175,-3035]]},{"type":"Polygon","id":17137,"arcs":[[3176,3177,3178,3179,-3023,-3013,-3117]]},{"type":"Polygon","id":18133,"arcs":[[-3121,-2958,-3143,3180,3181,3182]]},{"type":"Polygon","id":39111,"arcs":[[3183,3184,-3132,-2983,-3054,3185]]},{"type":"Polygon","id":39057,"arcs":[[-3049,-3021,3186,3187,3188,-3151]]},{"type":"Polygon","id":17149,"arcs":[[-3180,3189,3190,3191,3192,3193,-3130,-2965,-3024]]},{"type":"Polygon","id":8019,"arcs":[[-3162,3194,-3158,-2796,-3145]]},{"type":"Polygon","id":10003,"arcs":[[3195,3196,3197,3198,3199,-2947,-3036,-3176]]},{"type":"Polygon","id":17021,"arcs":[[3200,-3114,-3038,3201]]},{"type":"Polygon","id":29021,"arcs":[[3202,-3085,-3011,-3043,3203,3204]]},{"type":"Polygon","id":49007,"arcs":[[3205,3206,-2737,-2572,-2563]]},{"type":"Polygon","id":49039,"arcs":[[3207,3208,-3060,-2738,-3207,3209]]},{"type":"Polygon","id":39129,"arcs":[[3210,3211,3212,-3019,-3000,-3140]]},{"type":"Polygon","id":8031,"arcs":[[-3164,-3103,3213]]},{"type":"Polygon","id":6021,"arcs":[[-2804,-2995,3214,3215,-3086]]},{"type":"Polygon","id":17139,"arcs":[[-3040,-2911,-3172,3216,3217]]},{"type":"Polygon","id":17171,"arcs":[[-3179,3218,-3190]]},{"type":"Polygon","id":18139,"arcs":[[-3031,3219,3220,3221,3222,-3126]]},{"type":"Polygon","id":18041,"arcs":[[3223,3224,-3220,-3030,-3059]]},{"type":"Polygon","id":29025,"arcs":[[3225,3226,-3041,-2997,-3120,3227]]},{"type":"Polygon","id":34033,"arcs":[[3228,3229,-3196,-3175]]},{"type":"Polygon","id":6091,"arcs":[[-1867,3230,3231,-2810,-2297]]},{"type":"Polygon","id":39115,"arcs":[[3232,3233,-3146,-2990,-3134]]},{"type":"Polygon","id":29049,"arcs":[[3234,3235,-3204,-3042,-3227,3236]]},{"type":"Polygon","id":32019,"arcs":[[-1862,-3064,3237,3238,3239,3240,3241]]},{"type":"Polygon","id":18161,"arcs":[[-3224,-3058,-3153,3242,3243]]},{"type":"Polygon","id":8005,"arcs":[[-3102,-2832,3244,3245,3246,-3165,-3214]]},{"type":"Polygon","id":34001,"arcs":[[3247,3248,3249,-3173,-3112,-2974,-2986]]},{"type":"Polygon","id":24043,"arcs":[[3250,-2987,-2908,3251,3252,3253,3254,3255]]},{"type":"Polygon","id":24001,"arcs":[[3256,3257,3258,3259,-2915,-2893,-2988,-3251]]},{"type":"Polygon","id":24015,"arcs":[[-3200,3260,3261,3262,-2901,-2948]]},{"type":"Polygon","id":24023,"arcs":[[3263,3264,-3002,-2916,-3260,3265]]},{"type":"Polygon","id":24025,"arcs":[[3266,3267,-2952,-3263]]},{"type":"Polygon","id":54061,"arcs":[[3268,3269,3270,-3055,-3004,3271]]},{"type":"Polygon","id":54077,"arcs":[[-3265,3272,3273,3274,-3272,-3003]]},{"type":"Polygon","id":24013,"arcs":[[3275,3276,-3033,-2954,3277]]},{"type":"Polygon","id":24005,"arcs":[[3278,3279,3280,3281,-3278,-2953,-3268]]},{"type":"Polygon","id":54103,"arcs":[[3282,3283,3284,3285,-3186,-3053,-3056,-3271]]},{"type":"Polygon","id":24021,"arcs":[[3286,-3252,-2907,-3034,-3277,3287]]},{"type":"Polygon","id":39047,"arcs":[[-3187,-3020,-3213,3288,3289,3290]]},{"type":"Polygon","id":29041,"arcs":[[-3118,-3050,-3045,3291,3292,3293,3294]]},{"type":"Polygon","id":18145,"arcs":[[3295,3296,-3135,-3127,-3223,3297]]},{"type":"Polygon","id":49015,"arcs":[[3298,3299,3300,-3210,-3206]]},{"type":"Polygon","id":54065,"arcs":[[-3256,3301,3302,3303,-3257]]},{"type":"Polygon","id":17029,"arcs":[[-3167,3304,3305,3306,-3217,-3171]]},{"type":"Polygon","id":29173,"arcs":[[-3194,3307,3308,3309,-3131]]},{"type":"Polygon","id":29137,"arcs":[[-3129,-3310,3310,3311,-3125]]},{"type":"Polygon","id":17173,"arcs":[[-3037,-3218,-3307,3312,3313,3314,3315,-3202]]},{"type":"Polygon","id":39073,"arcs":[[3316,3317,3318,-3211,-3139,-3148]]},{"type":"Polygon","id":20029,"arcs":[[3319,3320,-3093,-3081,-3099,3321]]},{"type":"Polygon","id":20005,"arcs":[[3322,3323,3324,-3110,-3083,-3203,3325]]},{"type":"Polygon","id":20085,"arcs":[[-3111,-3325,3326,3327,3328,-3105]]},{"type":"Polygon","id":54057,"arcs":[[3329,3330,-3266,-3259]]},{"type":"Polygon","id":39167,"arcs":[[-3133,-3185,3331,3332,3333,3334,-3233]]},{"type":"Polygon","id":54049,"arcs":[[3335,3336,-3283,-3270]]},{"type":"Polygon","id":18081,"arcs":[[3337,-3136,-3297,3338,3339]]},{"type":"Polygon","id":18109,"arcs":[[-3137,-3338,3340,3341,3342,-3181,-3142]]},{"type":"Polygon","id":6115,"arcs":[[-2811,-3232,3343,3344,3345,-2992]]},{"type":"Polygon","id":32029,"arcs":[[-3242,-1863]]},{"type":"Polygon","id":54003,"arcs":[[3346,-3302,-3255,3347]]},{"type":"Polygon","id":29033,"arcs":[[3348,3349,-3228,-3119,-3295,3350]]},{"type":"Polygon","id":18167,"arcs":[[3351,3352,-3169,-2977,-3123,3353]]},{"type":"Polygon","id":29175,"arcs":[[-3312,3354,3355,3356,-3292,-3044]]},{"type":"Polygon","id":18021,"arcs":[[3357,3358,-3354,-3122,-3183,3359]]},{"type":"Polygon","id":54095,"arcs":[[-3286,3360,3361,3362,-3332,-3184]]},{"type":"Polygon","id":29163,"arcs":[[3363,3364,3365,-3308,-3193,3366]]},{"type":"Polygon","id":39165,"arcs":[[-3189,3367,3368,3369,3370,-3152]]},{"type":"Polygon","id":39017,"arcs":[[3371,3372,-3243,-3154,-3149,-3371,3373]]},{"type":"Polygon","id":6033,"arcs":[[3374,3375,3376,-3087,-3216,3377]]},{"type":"Polygon","id":39027,"arcs":[[3378,3379,3380,-3368,-3188,-3291]]},{"type":"Polygon","id":8063,"arcs":[[-3077,3381,3382,3383,3384,-2830,-2828]]},{"type":"Polygon","id":20181,"arcs":[[-3382,-3076,-3074,3385,3386,3387]]},{"type":"Polygon","id":20193,"arcs":[[3388,3389,-3386,-3073,-3079,3390]]},{"type":"Polygon","id":20179,"arcs":[[3391,-3391,-3078,-3067,3392]]},{"type":"Polygon","id":20027,"arcs":[[3393,-3322,-3098,3394,3395,3396]]},{"type":"Polygon","id":34011,"arcs":[[3397,3398,-3229,-3174,-3250]]},{"type":"Polygon","id":8073,"arcs":[[3399,3400,3401,3402,-3245,-2831,-3385,3403]]},{"type":"Polygon","id":8039,"arcs":[[3404,-3246,-3403,3405]]},{"type":"Polygon","id":20161,"arcs":[[-3395,-3097,-3109,3406,3407,3408]]},{"type":"Polygon","id":8093,"arcs":[[-3195,-3161,3409,3410,3411,3412,-3155]]},{"type":"Polygon","id":20163,"arcs":[[3413,3414,3415,-3070,-3092,3416]]},{"type":"Polygon","id":8035,"arcs":[[-3166,-3247,-3405,3417,3418]]},{"type":"Polygon","id":20141,"arcs":[[-3417,-3091,-3095,3419,3420,3421]]},{"type":"Polygon","id":20149,"arcs":[[-3407,-3108,-3106,-3329,3422,3423]]},{"type":"Polygon","id":20065,"arcs":[[-3393,-3066,-3071,-3416,3424,3425]]},{"type":"Polygon","id":20123,"arcs":[[-3420,-3094,-3321,3426,3427]]},{"type":"Polygon","id":39009,"arcs":[[-3335,3428,3429,3430,-3317,-3147,-3234]]},{"type":"Polygon","id":49027,"arcs":[[3431,3432,-3016,-3061,-3209,3433]]},{"type":"Polygon","id":54027,"arcs":[[-3258,-3304,3434,3435,-3330]]},{"type":"Polygon","id":29165,"arcs":[[3436,3437,-3326,-3205,-3236,3438]]},{"type":"Polygon","id":17135,"arcs":[[3439,3440,3441,-3115,-3201,-3316,3442]]},{"type":"Polygon","id":17117,"arcs":[[3443,3444,3445,-3177,-3116,-3442]]},{"type":"Polygon","id":29177,"arcs":[[3446,3447,-3237,-3226,-3350,3448]]},{"type":"Polygon","id":17061,"arcs":[[-3219,-3178,-3446,3449,3450,-3191]]},{"type":"Polygon","id":49019,"arcs":[[-3025,3451,3452,-3299,-2562]]},{"type":"Polygon","id":18047,"arcs":[[3453,-3221,-3225,-3244,-3373,3454,3455]]},{"type":"Polygon","id":6057,"arcs":[[-3344,-3231,-1866,3456]]},{"type":"Polygon","id":39141,"arcs":[[3457,3458,-3289,-3212,-3319,3459,3460]]},{"type":"Polygon","id":54037,"arcs":[[3461,3462,-3348,-3254]]},{"type":"Polygon","id":17023,"arcs":[[3463,3464,3465,3466,-3305,-3170,-3353]]},{"type":"Polygon","id":54073,"arcs":[[-3363,3467,3468,-3333]]},{"type":"Polygon","id":54033,"arcs":[[-3284,-3337,3469,3470,3471,3472,3473]]},{"type":"Polygon","id":18119,"arcs":[[3474,-3360,-3182,-3343,3475]]},{"type":"Polygon","id":51069,"arcs":[[-3303,-3347,3476,3477,3478,3479,-3435],[3480]]},{"type":"Polygon","id":29047,"arcs":[[3481,-3439,-3235,-3448,3482]]},{"type":"Polygon","id":54017,"arcs":[[-3474,3483,3484,3485,-3361,-3285]]},{"type":"Polygon","id":54091,"arcs":[[-3470,-3336,-3269,-3275,3486]]},{"type":"Polygon","id":18031,"arcs":[[3487,-3298,-3222,-3454,3488,3489]]},{"type":"Polygon","id":6011,"arcs":[[3490,-3378,-3215,-2994,3491]]},{"type":"Polygon","id":20087,"arcs":[[3492,-3327,-3324,3493,3494]]},{"type":"Polygon","id":20103,"arcs":[[-3438,3495,3496,3497,-3494,-3323]]},{"type":"Polygon","id":54107,"arcs":[[3498,3499,3500,-3429,-3334,-3469,3501]]},{"type":"Polygon","id":29195,"arcs":[[3502,3503,3504,-3351,-3294,3505]]},{"type":"Polygon","id":17013,"arcs":[[-3367,-3192,-3451,3506,3507,3508]]},{"type":"Polygon","id":54085,"arcs":[[-3362,-3486,3509,3510,3511,-3502,-3468]]},{"type":"Polygon","id":39163,"arcs":[[3512,3513,3514,-3460,-3318,-3431]]},{"type":"Polygon","id":24029,"arcs":[[3515,-3261,-3199,3516,3517]]},{"type":"Polygon","id":17035,"arcs":[[-3313,-3306,-3467,3518,3519]]},{"type":"Polygon","id":8065,"arcs":[[3520,3521,-3160,-3156,-3413]]},{"type":"Polygon","id":39071,"arcs":[[-3290,-3459,3522,3523,3524,-3379]]},{"type":"Polygon","id":24510,"arcs":[[3525,3526,-3280]]},{"type":"Polygon","id":10001,"arcs":[[3527,3528,3529,3530,-3517,-3198]]},{"type":"Polygon","id":24027,"arcs":[[-3282,3531,3532,3533,-3276]]},{"type":"Polygon","id":8077,"arcs":[[3534,3535,-3452,-3028,3536,3537]]},{"type":"Polygon","id":8097,"arcs":[[-3027,-3159,-3522,3538,3539,-3537]]},{"type":"Polygon","id":24031,"arcs":[[-3288,-3534,3540,3541,3542,3543]]},{"type":"Polygon","id":29007,"arcs":[[-3355,-3311,-3309,-3366,3544,3545,3546]]},{"type":"Polygon","id":29089,"arcs":[[-3293,-3357,3547,3548,-3506]]},{"type":"Polygon","id":18005,"arcs":[[3549,-3339,-3296,-3488,3550,3551]]},{"type":"Polygon","id":18013,"arcs":[[-3341,-3340,-3550,3552,3553]]},{"type":"Polygon","id":18105,"arcs":[[-3342,-3554,3554,3555,3556,-3476]]},{"type":"Polygon","id":54023,"arcs":[[3557,3558,3559,3560,-3264,-3331]]},{"type":"Polygon","id":34009,"arcs":[[-3249,3561,-3398]]},{"type":"Polygon","id":51107,"arcs":[[-3544,3562,3563,3564,3565,-3462,-3253,-3287]]},{"type":"Polygon","id":18029,"arcs":[[-3372,3566,3567,3568,3569,-3455]]},{"type":"Polygon","id":6061,"arcs":[[-1865,3570,3571,3572,3573,3574,-3345,-3457]]},{"type":"Polygon","id":39061,"arcs":[[-3370,3575,3576,3577,3578,-3567,-3374]]},{"type":"Polygon","id":20143,"arcs":[[3579,-3427,-3320,-3394,3580,3581]]},{"type":"Polygon","id":18137,"arcs":[[-3570,3582,3583,3584,3585,-3489,-3456]]},{"type":"Polygon","id":6101,"arcs":[[-3575,3586,3587,-3492,-2993,-3346]]},{"type":"Polygon","id":54001,"arcs":[[3588,3589,3590,-3471,-3487,-3274]]},{"type":"Polygon","id":29107,"arcs":[[-3505,3591,3592,3593,-3449,-3349]]},{"type":"MultiPolygon","id":24035,"arcs":[[[3594,3595,-3518,-3531,3596]],[[3597]]]},{"type":"Polygon","id":54093,"arcs":[[-3561,3598,-3589,-3273]]},{"type":"Polygon","id":51043,"arcs":[[3599,3600,-3477,-3463,-3566]]},{"type":"Polygon","id":39025,"arcs":[[3601,3602,3603,-3576,-3369,-3381,3604]]},{"type":"Polygon","id":32510,"arcs":[[3605,-3571,-1864,-3241]]},{"type":"Polygon","id":18153,"arcs":[[-3352,-3359,3606,3607,3608,-3464]]},{"type":"Polygon","id":17083,"arcs":[[-3450,-3445,3609,3610,-3507]]},{"type":"Polygon","id":8051,"arcs":[[-3540,3611,3612,3613,3614,3615,3616,-3538]]},{"type":"Polygon","id":29019,"arcs":[[3617,3618,3619,3620,-3548,-3356,-3547]]},{"type":"Polygon","id":39015,"arcs":[[3621,3622,-3605,-3380,-3525,3623]]},{"type":"Polygon","id":54031,"arcs":[[-3436,-3480,3624,3625,3626,-3558]]},{"type":"Polygon","id":29095,"arcs":[[3627,3628,-3483,-3447,-3594,3629,3630]]},{"type":"Polygon","id":24003,"arcs":[[3631,3632,3633,-3532,-3281,-3527]]},{"type":"Polygon","id":29113,"arcs":[[3634,3635,3636,-3364,-3509]]},{"type":"Polygon","id":17051,"arcs":[[3637,3638,-3443,-3315,3639,3640,3641]]},{"type":"Polygon","id":20061,"arcs":[[-3396,-3409,3642,3643,3644]]},{"type":"Polygon","id":20177,"arcs":[[-3423,-3328,-3493,3645,3646,3647]]},{"type":"Polygon","id":17049,"arcs":[[-3314,-3520,3648,3649,-3640]]},{"type":"Polygon","id":20105,"arcs":[[-3421,-3428,-3580,3650,3651,3652]]},{"type":"Polygon","id":8029,"arcs":[[-3617,3653,-3535]]},{"type":"Polygon","id":20197,"arcs":[[-3648,3654,3655,3656,-3643,-3408,-3424]]},{"type":"Polygon","id":51840,"arcs":[[-3481]]},{"type":"Polygon","id":39079,"arcs":[[3657,3658,3659,3660,-3461,-3515]]},{"type":"Polygon","id":39105,"arcs":[[-3501,3661,3662,3663,-3513,-3430]]},{"type":"Polygon","id":20209,"arcs":[[-3629,3664,-3496,-3437,-3482]]},{"type":"Polygon","id":18079,"arcs":[[-3586,3665,3666,3667,-3551,-3490]]},{"type":"Polygon","id":39131,"arcs":[[3668,-3523,-3458,-3661,3669]]},{"type":"Polygon","id":17033,"arcs":[[3670,3671,3672,-3465,-3609,3673]]},{"type":"Polygon","id":17079,"arcs":[[-3649,-3519,-3466,-3673,3674,3675]]},{"type":"Polygon","id":54105,"arcs":[[-3512,3676,3677,3678,-3499]]},{"type":"Polygon","id":18055,"arcs":[[-3607,-3358,-3475,-3557,3679,3680,3681,3682]]},{"type":"Polygon","id":54041,"arcs":[[-3473,3683,3684,3685,3686,-3484]]},{"type":"Polygon","id":32023,"arcs":[[-2469,-3018,3687,3688,3689,3690,3691,-3062,-2465]]},{"type":"Polygon","id":29139,"arcs":[[3692,3693,-3545,-3365,-3637,3694]]},{"type":"Polygon","id":21015,"arcs":[[3695,-3568,-3579,3696,3697,3698,3699]]},{"type":"Polygon","id":24011,"arcs":[[-3530,3700,3701,3702,-3597]]},{"type":"Polygon","id":20109,"arcs":[[3703,3704,-3387,-3390,3705,3706]]},{"type":"Polygon","id":20195,"arcs":[[3707,3708,-3425,-3415,3709]]},{"type":"Polygon","id":20051,"arcs":[[3710,3711,3712,-3710,-3414]]},{"type":"Polygon","id":20063,"arcs":[[3713,3714,3715,-3706,-3389,-3392,-3426,-3709]]},{"type":"Polygon","id":24033,"arcs":[[3716,3717,3718,3719,-3541,-3533,-3634]]},{"type":"Polygon","id":20199,"arcs":[[3720,-3383,-3388,-3705,3721,3722]]},{"type":"Polygon","id":20167,"arcs":[[3723,3724,-3711,-3422,-3653]]},{"type":"Polygon","id":20041,"arcs":[[3725,-3581,-3397,-3645,3726,3727]]},{"type":"Polygon","id":8041,"arcs":[[3728,3729,3730,-3418,-3406,-3402]]},{"type":"Polygon","id":8119,"arcs":[[3731,-3410,-3419,-3731]]},{"type":"Polygon","id":54083,"arcs":[[-3590,-3599,-3560,3732,3733,3734,3735]]},{"type":"Polygon","id":21037,"arcs":[[3736,3737,-3577,-3604]]},{"type":"Polygon","id":54097,"arcs":[[-3591,-3736,3738,-3684,-3472]]},{"type":"Polygon","id":54021,"arcs":[[3739,3740,-3510,-3485,-3687]]},{"type":"Polygon","id":32005,"arcs":[[3741,3742,3743,-3572,-3606,-3240]]},{"type":"Polygon","id":51171,"arcs":[[3744,3745,-3625,-3479,3746]]},{"type":"Polygon","id":54035,"arcs":[[-3500,-3679,3747,3748,3749,3750,-3662]]},{"type":"Polygon","id":21117,"arcs":[[-3738,3751,3752,-3697,-3578]]},{"type":"Polygon","id":32021,"arcs":[[3753,-3238,-3063,-3692,3754]]},{"type":"Polygon","id":18071,"arcs":[[3755,3756,-3555,-3553,-3552,-3668,3757]]},{"type":"Polygon","id":29027,"arcs":[[3758,-3618,-3546,-3694,3759]]},{"type":"Polygon","id":20045,"arcs":[[3760,3761,-3646,-3495,-3498,3762]]},{"type":"Polygon","id":6017,"arcs":[[3763,3764,3765,-3573,-3744]]},{"type":"Polygon","id":51059,"arcs":[[3766,-3563,-3543,3767,3768,3769,3770,-3719,3771,3772,3773],[3774]]},{"type":"Polygon","id":29053,"arcs":[[3775,3776,-3503,-3549,-3621,3777]]},{"type":"Polygon","id":8015,"arcs":[[-3521,-3412,3778,3779,-3612,-3539]]},{"type":"Polygon","id":39001,"arcs":[[3780,3781,3782,-3624,-3524,-3669]]},{"type":"Polygon","id":54013,"arcs":[[-3741,3783,3784,3785,-3677,-3511]]},{"type":"Polygon","id":20091,"arcs":[[-3628,3786,3787,-3763,-3497,-3665]]},{"type":"Polygon","id":49041,"arcs":[[3788,3789,-3434,-3208,-3301,3790]]},{"type":"Polygon","id":51187,"arcs":[[3791,3792,3793,-3747,-3478,-3601]]},{"type":"Polygon","id":8017,"arcs":[[-3721,3794,3795,-3404,-3384]]},{"type":"Polygon","id":39053,"arcs":[[-3658,-3514,-3664,3796,3797,3798]]},{"type":"Polygon","id":18115,"arcs":[[3799,-3583,-3569,-3696]]},{"type":"Polygon","id":17005,"arcs":[[3800,3801,-3440,-3639]]},{"type":"Polygon","id":54053,"arcs":[[3802,3803,-3797,-3663,-3751]]},{"type":"Polygon","id":39145,"arcs":[[3804,3805,-3781,-3670,-3660,3806]]},{"type":"Polygon","id":51061,"arcs":[[-3792,-3600,-3565,3807,3808,3809,3810]]},{"type":"Polygon","id":17119,"arcs":[[3811,3812,3813,3814,-3610,-3444,-3441,-3802]]},{"type":"Polygon","id":29219,"arcs":[[3815,3816,3817,-3695,-3636]]},{"type":"Polygon","id":18093,"arcs":[[3818,3819,-3680,-3556,-3757,3820]]},{"type":"Polygon","id":11001,"arcs":[[-3542,-3720,3821,3822]]},{"type":"Polygon","id":29183,"arcs":[[-3611,-3815,3823,3824,-3816,-3635,-3508]]},{"type":"Polygon","id":20169,"arcs":[[3825,3826,-3651,-3582,-3726]]},{"type":"Polygon","id":10005,"arcs":[[3827,3828,3829,3830,3831,3832,-3701,-3529]]},{"type":"Polygon","id":54071,"arcs":[[-3733,-3559,-3627,3833,3834,3835,3836]]},{"type":"Polygon","id":24041,"arcs":[[3837,3838,-3595,-3703]]},{"type":"Polygon","id":54087,"arcs":[[-3786,3839,3840,-3748,-3678]]},{"type":"Polygon","id":29159,"arcs":[[3841,3842,-3592,-3504,-3777,3843,3844]]},{"type":"Polygon","id":51153,"arcs":[[-3774,3845,3846,-3808,-3564,-3767],[3847,3848,3849]]},{"type":"Polygon","id":29101,"arcs":[[-3630,-3593,-3843,3850,3851]]},{"type":"Polygon","id":51013,"arcs":[[-3823,3852,-3770,3853,-3768]]},{"type":"Polygon","id":18155,"arcs":[[-3700,3854,3855,3856,-3584,-3800]]},{"type":"Polygon","id":6113,"arcs":[[3857,3858,3859,-3375,-3491,-3588]]},{"type":"Polygon","id":6003,"arcs":[[3860,3861,3862,-3764,-3743,3863]]},{"type":"Polygon","id":18077,"arcs":[[3864,3865,3866,3867,-3666,-3585,-3857]]},{"type":"Polygon","id":29135,"arcs":[[3868,3869,3870,-3778,-3620]]},{"type":"Polygon","id":17025,"arcs":[[3871,3872,3873,-3641,-3650,-3676]]},{"type":"Polygon","id":18083,"arcs":[[3874,-3674,-3608,-3683,3875,3876,3877,3878]]},{"type":"Polygon","id":18101,"arcs":[[-3681,-3820,3879,3880,3881]]},{"type":"Polygon","id":18027,"arcs":[[-3682,-3882,3882,3883,-3876]]},{"type":"Polygon","id":54007,"arcs":[[-3686,3884,3885,3886,-3784,-3740]]},{"type":"Polygon","id":51610,"arcs":[[-3854,-3769]]},{"type":"Polygon","id":29189,"arcs":[[3887,3888,-3824,3889,3890,3891]]},{"type":"Polygon","id":21191,"arcs":[[3892,-3752,-3737,-3603,3893,3894]]},{"type":"Polygon","id":51600,"arcs":[[-3775]]},{"type":"Polygon","id":21077,"arcs":[[3895,3896,3897,-3855,-3699]]},{"type":"Polygon","id":20127,"arcs":[[3898,3899,3900,-3727,-3644,-3657]]},{"type":"Polygon","id":20139,"arcs":[[-3655,-3647,-3762,3901,3902,3903]]},{"type":"Polygon","id":20053,"arcs":[[-3724,-3652,-3827,3904,3905,3906]]},{"type":"Polygon","id":51157,"arcs":[[3907,3908,3909,-3793,-3811]]},{"type":"Polygon","id":17101,"arcs":[[-3875,3910,3911,-3671]]},{"type":"Polygon","id":17159,"arcs":[[-3872,-3675,-3672,-3912,3912,3913,3914]]},{"type":"Polygon","id":6055,"arcs":[[-3376,-3860,3915,3916,3917,3918]]},{"type":"Polygon","id":6097,"arcs":[[-3919,3919,3920,3921,-3088,-3377]]},{"type":"Polygon","id":51510,"arcs":[[-3771,-3853,-3822]]},{"type":"Polygon","id":51165,"arcs":[[-3626,-3746,3922,3923,3924,3925,-3834],[3926]]},{"type":"Polygon","id":39087,"arcs":[[-3659,-3799,3927,3928,3929,3930,-3807]]},{"type":"Polygon","id":29037,"arcs":[[3931,3932,3933,-3787,-3631,-3852]]},{"type":"Polygon","id":17121,"arcs":[[-3874,3934,3935,3936,3937,-3642]]},{"type":"Polygon","id":18143,"arcs":[[-3868,3938,3939,-3758,-3667]]},{"type":"Polygon","id":51139,"arcs":[[-3910,3940,3941,-3923,-3745,-3794]]},{"type":"Polygon","id":21023,"arcs":[[3942,3943,3944,-3894,-3602,-3623]]},{"type":"Polygon","id":21081,"arcs":[[-3753,-3893,3945,3946,3947,-3896,-3698]]},{"type":"Polygon","id":29510,"arcs":[[-3890,-3814,3948]]},{"type":"Polygon","id":51685,"arcs":[[-3849,3949,-3850]]},{"type":"Polygon","id":18175,"arcs":[[3950,3951,3952,3953,3954,-3821,-3756,-3940]]},{"type":"Polygon","id":51683,"arcs":[[-3950,-3848]]},{"type":"Polygon","id":24009,"arcs":[[3955,3956,3957,-3717,-3633]]},{"type":"Polygon","id":21041,"arcs":[[-3898,3958,3959,3960,-3865,-3856]]},{"type":"Polygon","id":21161,"arcs":[[-3622,-3783,3961,3962,3963,-3943]]},{"type":"Polygon","id":21089,"arcs":[[-3931,3964,3965,3966,-3805]]},{"type":"Polygon","id":17027,"arcs":[[3967,-3812,-3801,-3638,-3938,3968]]},{"type":"Polygon","id":54101,"arcs":[[-3739,-3735,3969,3970,3971,-3885,-3685]]},{"type":"Polygon","id":21223,"arcs":[[-3961,3972,3973,3974,-3866]]},{"type":"Polygon","id":6067,"arcs":[[3975,3976,3977,3978,-3858,-3587,-3574,-3766]]},{"type":"Polygon","id":20121,"arcs":[[-3934,3979,3980,3981,-3788]]},{"type":"Polygon","id":29051,"arcs":[[-3759,3982,3983,-3869,-3619]]},{"type":"Polygon","id":54075,"arcs":[[3984,3985,3986,-3970,-3734,-3837]]},{"type":"Polygon","id":20111,"arcs":[[3987,3988,3989,-3899,-3656,-3904]]},{"type":"Polygon","id":20059,"arcs":[[-3761,-3982,3990,3991,-3902]]},{"type":"Polygon","id":21187,"arcs":[[-3948,3992,3993,3994,-3959,-3897]]},{"type":"Polygon","id":21135,"arcs":[[-3806,-3967,3995,3996,3997,-3962,-3782]]},{"type":"Polygon","id":29073,"arcs":[[-3818,3998,3999,4000,4001,4002,-3693]]},{"type":"Polygon","id":29151,"arcs":[[-3760,-4003,4003,4004,-3983]]},{"type":"Polygon","id":24017,"arcs":[[-3958,4005,4006,-3772,-3718]]},{"type":"Polygon","id":6051,"arcs":[[-3864,-3742,-3239,-3754,4007,4008,4009,4010,4011]]},{"type":"Polygon","id":29071,"arcs":[[-3825,-3889,4012,4013,4014,-3999,-3817]]},{"type":"Polygon","id":24019,"arcs":[[-3833,4015,4016,-3838,-3702]]},{"type":"Polygon","id":51047,"arcs":[[-3810,4017,4018,4019,4020,-3908]]},{"type":"Polygon","id":6005,"arcs":[[-3863,4021,4022,-3976,-3765]]},{"type":"Polygon","id":20171,"arcs":[[4023,4024,4025,-3707,-3716,4026]]},{"type":"Polygon","id":29141,"arcs":[[4027,-3844,-3776,-3871,4028,4029]]},{"type":"Polygon","id":20203,"arcs":[[4030,4031,4032,-3722,-3704,-4026]]},{"type":"Polygon","id":20101,"arcs":[[4033,-4027,-3715,4034]]},{"type":"Polygon","id":20135,"arcs":[[-4035,-3714,-3708,-3713,4035,4036,4037,4038]]},{"type":"Polygon","id":20071,"arcs":[[4039,-3795,-3723,-4033,4040]]},{"type":"Polygon","id":8043,"arcs":[[-3730,4041,4042,4043,-3779,-3411,-3732]]},{"type":"Polygon","id":20165,"arcs":[[4044,4045,-4036,-3712]]},{"type":"Polygon","id":20009,"arcs":[[-4045,-3725,-3907,4046,4047,4048]]},{"type":"Polygon","id":18117,"arcs":[[4049,-3880,-3819,-3955,4050]]},{"type":"Polygon","id":54079,"arcs":[[4051,4052,4053,-3803,-3750]]},{"type":"Polygon","id":32017,"arcs":[[-3433,4054,4055,4056,4057,4058,-3688,-3017]]},{"type":"Polygon","id":8085,"arcs":[[4059,4060,4061,-3536,-3654,-3616]]},{"type":"Polygon","id":54015,"arcs":[[-3785,-3887,4062,4063,-3840]]},{"type":"Polygon","id":17163,"arcs":[[-3891,-3949,-3813,-3968,4064,4065,4066]]},{"type":"Polygon","id":54039,"arcs":[[-4052,-3749,-3841,-4064,4067,4068,4069,4070,4071]]},{"type":"Polygon","id":51113,"arcs":[[4072,4073,-3941,-3909,-4021]]},{"type":"Polygon","id":8061,"arcs":[[-3796,-4040,4074,4075,4076,4077,-3400]]},{"type":"Polygon","id":17191,"arcs":[[4078,4079,4080,4081,-3935,-3873,-3915]]},{"type":"Polygon","id":18019,"arcs":[[-3939,-3867,-3975,4082,4083,4084,-3951]]},{"type":"Polygon","id":20113,"arcs":[[4085,4086,4087,4088,-3905,-3826]]},{"type":"Polygon","id":21201,"arcs":[[-3964,4089,4090,4091,-3944]]},{"type":"Polygon","id":21103,"arcs":[[-3960,-3995,4092,4093,4094,-3973]]},{"type":"Polygon","id":20115,"arcs":[[4095,4096,4097,-4086,-3728,-3901]]},{"type":"Polygon","id":51179,"arcs":[[-4018,-3809,-3847,4098,4099,4100,4101,4102,4103]]},{"type":"Polygon","id":54011,"arcs":[[-3798,-3804,-4054,4104,4105,-3928]]},{"type":"Polygon","id":51091,"arcs":[[4106,4107,-3985,-3836]]},{"type":"Polygon","id":21097,"arcs":[[-3895,-3945,-4092,4108,4109,4110,-3946]]},{"type":"Polygon","id":49001,"arcs":[[-4055,-3432,-3790,4111,4112,4113]]},{"type":"Polygon","id":17047,"arcs":[[4114,-4079,-3914,4115]]},{"type":"Polygon","id":17185,"arcs":[[4116,-4116,-3913,-3911,-3879,4117]]},{"type":"Polygon","id":29083,"arcs":[[-3932,-3851,-3842,4118,4119,4120]]},{"type":"Polygon","id":54067,"arcs":[[-3972,4121,4122,-4063,-3886]]},{"type":"Polygon","id":24045,"arcs":[[4123,4124,4125,-4016,-3832]]},{"type":"Polygon","id":18125,"arcs":[[-3884,4126,4127,4128,-3877]]},{"type":"Polygon","id":29015,"arcs":[[4129,4130,-4119,-3845,-4028,4131]]},{"type":"Polygon","id":21185,"arcs":[[4132,4133,-4083,-3974,-4095]]},{"type":"Polygon","id":21069,"arcs":[[-3998,4134,4135,4136,-4090,-3963]]},{"type":"Polygon","id":18051,"arcs":[[-4129,4137,4138,4139,4140,-4118,-3878]]},{"type":"Polygon","id":18037,"arcs":[[4141,4142,-4127,-3883,-3881,-4050,4143,4144]]},{"type":"Polygon","id":17133,"arcs":[[-4067,4145,4146,4147,-3892]]},{"type":"Polygon","id":8101,"arcs":[[4148,4149,4150,4151,-4042,-3729,4152]]},{"type":"Polygon","id":20017,"arcs":[[-3900,-3990,4153,4154,-4096]]},{"type":"Polygon","id":20159,"arcs":[[-4047,-3906,-4089,4155,4156]]},{"type":"Polygon","id":8025,"arcs":[[-3401,-4078,4157,-4153]]},{"type":"Polygon","id":24037,"arcs":[[-3957,4158,-4006]]},{"type":"Polygon","id":17189,"arcs":[[-3937,4159,4160,4161,-4065,-3969]]},{"type":"Polygon","id":21043,"arcs":[[4162,4163,4164,-3996,-3966,4165]]},{"type":"Polygon","id":49055,"arcs":[[-3300,4166,4167,4168,-3791]]},{"type":"Polygon","id":49031,"arcs":[[4169,-4112,-3789,-4169]]},{"type":"Polygon","id":6009,"arcs":[[4170,4171,-4022,-3862,4172]]},{"type":"Polygon","id":21019,"arcs":[[4173,4174,-4166,-3965,-3930]]},{"type":"Polygon","id":29099,"arcs":[[-4148,4175,4176,4177,-4013,-3888]]},{"type":"Polygon","id":49037,"arcs":[[-3453,-4062,4178,4179,4180,4181,4182,4183,4184,4185,-4167]]},{"type":"Polygon","id":21209,"arcs":[[4186,4187,4188,4189,-3993,-3947,-4111]]},{"type":"Polygon","id":51015,"arcs":[[-4107,-3835,-3926,4190,4191,4192,4193],[4194],[4195]]},{"type":"Polygon","id":17081,"arcs":[[-4160,-3936,-4082,4196,4197,4198]]},{"type":"Polygon","id":51079,"arcs":[[-3942,-4074,4199,4200,-3924]]},{"type":"Polygon","id":29013,"arcs":[[4201,-3980,-3933,-4121,4202,4203]]},{"type":"Polygon","id":51660,"arcs":[[-3927]]},{"type":"Polygon","id":8109,"arcs":[[-3780,-4044,4204,4205,4206,4207,4208,4209,-3613]]},{"type":"Polygon","id":21181,"arcs":[[4210,4211,-4109,-4091,-4137]]},{"type":"Polygon","id":32009,"arcs":[[-3691,4212,-4008,-3755]]},{"type":"MultiPolygon","id":24047,"arcs":[[[4213,4214,-4124,-3831,4215]],[[-3829,4216]],[[4217,4218]]]},{"type":"Polygon","id":6109,"arcs":[[-3861,-4012,4219,4220,4221,-4173]]},{"type":"Polygon","id":20031,"arcs":[[4222,4223,-3988,-3903,-3992,4224]]},{"type":"Polygon","id":29131,"arcs":[[-4005,4225,4226,4227,-4029,-3870,-3984]]},{"type":"Polygon","id":18025,"arcs":[[-3954,4228,4229,4230,-4144,-4051]]},{"type":"Polygon","id":18061,"arcs":[[4231,4232,4233,-4229,-3953,4234]]},{"type":"Polygon","id":54099,"arcs":[[-4106,4235,4236,4237,4238,-4174,-3929]]},{"type":"Polygon","id":18043,"arcs":[[-4235,-3952,-4085,4239]]},{"type":"Polygon","id":51137,"arcs":[[4240,4241,-4200,-4073,-4020,4242]]},{"type":"Polygon","id":21205,"arcs":[[-4165,4243,4244,4245,4246,-4135,-3997]]},{"type":"Polygon","id":20107,"arcs":[[-4202,4247,4248,4249,-3981]]},{"type":"Polygon","id":20003,"arcs":[[4250,-4225,-3991,-4250]]},{"type":"Polygon","id":21111,"arcs":[[-4134,4251,4252,4253,4254,-4232,-4240,-4084]]},{"type":"Polygon","id":51177,"arcs":[[-4104,4255,-4102,4256,4257,4258,-4243,-4019]]},{"type":"Polygon","id":51099,"arcs":[[4259,4260,-4100,4261,4262]]},{"type":"Polygon","id":54043,"arcs":[[-4072,4070,4263,4264,4265,-4236,-4105,-4053]]},{"type":"Polygon","id":21073,"arcs":[[-4190,4266,4267,4268,-4093,-3994]]},{"type":"Polygon","id":21017,"arcs":[[-4212,4269,4270,4271,-4187,-4110]]},{"type":"Polygon","id":21211,"arcs":[[-4133,-4094,-4269,4272,4273,-4252]]},{"type":"Polygon","id":20145,"arcs":[[4274,4275,-4037,-4046,-4049,4276]]},{"type":"Polygon","id":8091,"arcs":[[4277,4278,4279,-4060,-3615]]},{"type":"Polygon","id":6041,"arcs":[[4280,-3921]]},{"type":"Polygon","id":51630,"arcs":[[-4103,-4256]]},{"type":"Polygon","id":21011,"arcs":[[4281,4282,-4211,-4136,-4247]]},{"type":"Polygon","id":6077,"arcs":[[-4023,-4172,4283,4284,4285,4286,-3977]]},{"type":"Polygon","id":24039,"arcs":[[4287,4288,-4125,-4215]]},{"type":"Polygon","id":29125,"arcs":[[-4004,-4002,4289,4290,-4226]]},{"type":"Polygon","id":51193,"arcs":[[4291,4292,4293,4294,-4263]]},{"type":"Polygon","id":51003,"arcs":[[-3925,-4201,-4242,4295,4296,4297,4298,-4191],[4299]]},{"type":"Polygon","id":21127,"arcs":[[4300,-4163,-4175,-4239,4301,4302,4303]]},{"type":"Polygon","id":21063,"arcs":[[-4301,4304,-4244,-4164]]},{"type":"Polygon","id":51017,"arcs":[[-4194,4305,4306,4307,-3986,-4108]]},{"type":"Polygon","id":54025,"arcs":[[-4308,4308,4309,4310,4311,-4122,-3971,-3987]]},{"type":"Polygon","id":29029,"arcs":[[4312,4313,4314,4315,-4132,-4030,-4228]]},{"type":"Polygon","id":54019,"arcs":[[-4312,4316,4317,-4068,-4123]]},{"type":"Polygon","id":8099,"arcs":[[-4075,4318,4319,4320,4321]]},{"type":"Polygon","id":18123,"arcs":[[4322,4323,4324,4325,-4145,-4231]]},{"type":"Polygon","id":8011,"arcs":[[4326,4327,4328,-4076,-4322]]},{"type":"Polygon","id":17193,"arcs":[[-4141,4329,4330,4331,-4080,-4115,-4117]]},{"type":"Polygon","id":17065,"arcs":[[4332,4333,-4197,-4081,-4332]]},{"type":"Polygon","id":20075,"arcs":[[4334,-4319,-4041,-4032,4335]]},{"type":"Polygon","id":20093,"arcs":[[-4031,-4025,4336,4337,-4336]]},{"type":"Polygon","id":8089,"arcs":[[-4149,-4158,-4077,-4329,4338]]},{"type":"Polygon","id":8027,"arcs":[[-4043,-4152,4339,-4205]]},{"type":"Polygon","id":20055,"arcs":[[4340,-4337,-4024,-4034,-4039,4341,4342]]},{"type":"Polygon","id":20185,"arcs":[[4343,4344,4345,-4277,-4048,-4157]]},{"type":"Polygon","id":20083,"arcs":[[4346,4347,4348,-4342,-4038,-4276]]},{"type":"Polygon","id":51033,"arcs":[[-4261,4349,4350,4351,4352,-4257,-4101]]},{"type":"Polygon","id":18173,"arcs":[[-4143,4353,4354,4355,4356,-4138,-4128]]},{"type":"Polygon","id":18129,"arcs":[[-4140,4357,4358,4359,4360,-4330]]},{"type":"Polygon","id":54005,"arcs":[[4361,4362,-4264,-4070,4363]]},{"type":"Polygon","id":17157,"arcs":[[4364,-4146,-4066,-4162,4365,4366,4367]]},{"type":"Polygon","id":29185,"arcs":[[4368,4369,4370,-4203,-4120,-4131,4371]]},{"type":"Polygon","id":17145,"arcs":[[4372,-4366,-4161,-4199,4373]]},{"type":"Polygon","id":29055,"arcs":[[-4000,-4015,4374,4375,4376,4377]]},{"type":"Polygon","id":21067,"arcs":[[-4272,4378,4379,4380,4381,-4188]]},{"type":"Polygon","id":29221,"arcs":[[4382,4383,-4375,-4014,-4178]]},{"type":"Polygon","id":18147,"arcs":[[4384,-4354,-4142,-4326,4385]]},{"type":"Polygon","id":21163,"arcs":[[-4234,4386,4387,-4323,-4230]]},{"type":"Polygon","id":21173,"arcs":[[4388,4389,4390,-4270,-4283]]},{"type":"Polygon","id":21239,"arcs":[[-4382,4391,4392,4393,-4267,-4189]]},{"type":"Polygon","id":51790,"arcs":[[-4196]]},{"type":"Polygon","id":18163,"arcs":[[-4358,-4139,-4357,4394]]},{"type":"Polygon","id":20079,"arcs":[[4395,4396,4397,-4087,-4098]]},{"type":"Polygon","id":20155,"arcs":[[4398,4399,-4344,-4156,-4088,-4398,4400]]},{"type":"Polygon","id":20073,"arcs":[[-3989,-4224,4401,4402,4403,4404,-4154]]},{"type":"Polygon","id":51057,"arcs":[[-4295,4405,4406,4407,4408,-4350,-4260]]},{"type":"MultiPolygon","id":6095,"arcs":[[[4409,-3916,-3859,-3979]],[[-3918,4410]]]},{"type":"Polygon","id":29161,"arcs":[[4411,4412,-4290,-4001,-4378,4413]]},{"type":"Polygon","id":21215,"arcs":[[-4253,-4274,4414,4415,4416]]},{"type":"Polygon","id":8113,"arcs":[[4417,-4179,-4061,-4280,4418]]},{"type":"Polygon","id":51109,"arcs":[[4419,4420,4421,-4296,-4241,-4259]]},{"type":"Polygon","id":49017,"arcs":[[-4186,4422,4423,-4113,-4170,-4168]]},{"type":"Polygon","id":8053,"arcs":[[4424,4425,4426,-4278,-3614,-4210,4427]]},{"type":"Polygon","id":49021,"arcs":[[4428,-4056,-4114,-4424,4429]]},{"type":"Polygon","id":17055,"arcs":[[-4374,-4198,-4334,4430,4431,4432]]},{"type":"Polygon","id":21005,"arcs":[[-4394,4433,4434,4435,-4415,-4273,-4268]]},{"type":"Polygon","id":29186,"arcs":[[4436,4437,-4176,-4147,-4365]]},{"type":"Polygon","id":21175,"arcs":[[4438,-4245,-4305,-4304,4439,4440,4441]]},{"type":"Polygon","id":21029,"arcs":[[4442,4443,-4254,-4417]]},{"type":"Polygon","id":21049,"arcs":[[-4271,-4391,4444,4445,4446,-4379]]},{"type":"Polygon","id":51159,"arcs":[[4447,4448,4449,-4406,-4294]]},{"type":"Polygon","id":6013,"arcs":[[4450,-4286,4451]]},{"type":"Polygon","id":51820,"arcs":[[-4195]]},{"type":"Polygon","id":20015,"arcs":[[4452,-4396,-4097,-4155,-4405,4453,4454]]},{"type":"Polygon","id":51163,"arcs":[[-4306,-4193,4455,4456,4457,4458,4459],[4460],[4461]]},{"type":"Polygon","id":29187,"arcs":[[4462,4463,4464,-4383,-4177,-4438]]},{"type":"Polygon","id":6099,"arcs":[[-4284,-4171,-4222,4465,4466,4467]]},{"type":"Polygon","id":20047,"arcs":[[-4346,4468,4469,4470,-4347,-4275]]},{"type":"Polygon","id":29085,"arcs":[[4471,-4372,-4130,-4316,4472]]},{"type":"Polygon","id":51540,"arcs":[[-4300]]},{"type":"Polygon","id":21165,"arcs":[[-4282,-4246,-4439,4473,4474,-4389]]},{"type":"Polygon","id":29217,"arcs":[[4475,4476,-4248,-4204,-4371,4477,4478]]},{"type":"Polygon","id":21027,"arcs":[[-4324,-4388,4479,4480,4481,4482]]},{"type":"Polygon","id":51125,"arcs":[[-4192,-4299,4483,4484,4485,-4456]]},{"type":"Polygon","id":20207,"arcs":[[4486,4487,-4402,-4223]]},{"type":"Polygon","id":20001,"arcs":[[-4487,-4251,4488,4489]]},{"type":"Polygon","id":20011,"arcs":[[-4477,4490,4491,-4489,-4249]]},{"type":"MultiPolygon","id":51001,"arcs":[[[-4218,4492]],[[4493,-4288,-4214,4494,4495]]]},{"type":"Polygon","id":51133,"arcs":[[4496,4497,-4448,-4293]]},{"type":"Polygon","id":54045,"arcs":[[-4363,4498,4499,-4265]]},{"type":"Polygon","id":29169,"arcs":[[-4313,-4227,-4291,-4413,4500,4501]]},{"type":"Polygon","id":21093,"arcs":[[4502,4503,4504,4505,-4480,-4387,-4233,-4255,-4444]]},{"type":"Polygon","id":51085,"arcs":[[-4420,-4258,-4353,4506,4507,4508,4509]]},{"type":"Polygon","id":51065,"arcs":[[4510,4511,-4297,-4422,4512]]},{"type":"Polygon","id":8055,"arcs":[[-4151,4513,4514,4515,-4206,-4340]]},{"type":"Polygon","id":21115,"arcs":[[4516,4517,4518,-4440,-4303]]},{"type":"Polygon","id":21113,"arcs":[[4519,4520,4521,-4392,-4381]]},{"type":"Polygon","id":20069,"arcs":[[-4349,4522,4523,4524,-4343]]},{"type":"Polygon","id":21091,"arcs":[[-4483,4525,4526,-4386,-4325]]},{"type":"Polygon","id":21179,"arcs":[[-4443,-4416,-4436,4527,4528,4529,-4503]]},{"type":"Polygon","id":54081,"arcs":[[-4364,-4069,-4318,4530,4531,4532]]},{"type":"Polygon","id":54059,"arcs":[[-4266,-4500,4533,4534,4535,4536,4537,-4237]]},{"type":"Polygon","id":51097,"arcs":[[4538,4539,4540,4541,4542,-4351,-4409]]},{"type":"Polygon","id":21101,"arcs":[[-4356,4543,4544,4545,4546,-4359,-4395]]},{"type":"Polygon","id":8111,"arcs":[[-4279,-4427,4547,4548,-4419]]},{"type":"Polygon","id":21167,"arcs":[[-4393,-4522,4549,4550,4551,-4434]]},{"type":"Polygon","id":8079,"arcs":[[4552,4553,-4428,-4209]]},{"type":"Polygon","id":21159,"arcs":[[-4538,4554,4555,-4517,-4302,-4238]]},{"type":"Polygon","id":51005,"arcs":[[-4307,-4460,4556,4557,4558,-4309],[4559]]},{"type":"Polygon","id":17077,"arcs":[[-4373,-4433,4560,4561,4562,-4367]]},{"type":"Polygon","id":21197,"arcs":[[4563,4564,4565,-4445,-4390,-4475]]},{"type":"Polygon","id":21059,"arcs":[[4566,4567,-4544,-4355,-4385,-4527]]},{"type":"Polygon","id":17059,"arcs":[[-4361,4568,4569,4570,-4331]]},{"type":"Polygon","id":21151,"arcs":[[-4447,4571,4572,4573,4574,-4520,-4380]]},{"type":"Polygon","id":17165,"arcs":[[4575,-4431,-4333,-4571,4576,4577]]},{"type":"Polygon","id":51101,"arcs":[[-4543,4578,-4507,-4352]]},{"type":"Polygon","id":20057,"arcs":[[-4348,-4471,4579,4580,4581,-4523]]},{"type":"Polygon","id":20173,"arcs":[[-4397,-4453,4582,4583,-4401]]},{"type":"Polygon","id":21229,"arcs":[[-4552,4584,4585,-4528,-4435]]},{"type":"Polygon","id":51075,"arcs":[[-4510,4586,4587,4588,-4513,-4421]]},{"type":"Polygon","id":29157,"arcs":[[4589,4590,4591,-4463,-4437,-4368,-4563]]},{"type":"Polygon","id":21225,"arcs":[[4592,4593,4594,-4569,-4360,-4547]]},{"type":"Polygon","id":8033,"arcs":[[-4180,-4418,-4549,4595]]},{"type":"Polygon","id":29059,"arcs":[[4596,4597,-4473,-4315,4598,4599]]},{"type":"Polygon","id":6001,"arcs":[[4600,4601,-4452,-4285]]},{"type":"Polygon","id":6043,"arcs":[[4602,-4466,-4221,4603]]},{"type":"Polygon","id":29039,"arcs":[[4604,4605,4606,-4478,-4370]]},{"type":"Polygon","id":21153,"arcs":[[-4519,4607,4608,4609,4610,-4441]]},{"type":"Polygon","id":29105,"arcs":[[4611,4612,4613,-4599,-4314,-4502]]},{"type":"Polygon","id":17199,"arcs":[[4614,4615,-4561,-4432,-4576]]},{"type":"Polygon","id":54089,"arcs":[[-4317,-4311,4616,4617,-4531]]},{"type":"Polygon","id":21237,"arcs":[[-4442,-4611,4618,4619,-4564,-4474]]},{"type":"Polygon","id":21065,"arcs":[[-4566,4620,4621,-4572,-4446]]},{"type":"Polygon","id":51103,"arcs":[[-4498,4622,-4449]]},{"type":"Polygon","id":8105,"arcs":[[-4208,4623,4624,4625,-4553]]},{"type":"Polygon","id":21079,"arcs":[[-4550,-4521,-4575,4626,4627,4628]]},{"type":"Polygon","id":29167,"arcs":[[4629,4630,-4605,-4369,-4472,-4598]]},{"type":"Polygon","id":20151,"arcs":[[4631,4632,4633,-4469,-4345,-4400]]},{"type":"Polygon","id":51009,"arcs":[[-4457,-4486,4634,4635,4636,4637]]},{"type":"Polygon","id":6075,"arcs":[[4638,4639]]},{"type":"Polygon","id":51580,"arcs":[[-4560]]},{"type":"Polygon","id":8071,"arcs":[[4640,4641,4642,-4514,-4150,-4339,-4328,4643]]},{"type":"Polygon","id":51678,"arcs":[[-4462]]},{"type":"Polygon","id":54109,"arcs":[[-4499,-4362,-4533,4644,4645,-4534]]},{"type":"Polygon","id":51023,"arcs":[[-4459,4646,4647,4648,-4557]]},{"type":"Polygon","id":51029,"arcs":[[-4512,4649,4650,4651,-4484,-4298]]},{"type":"Polygon","id":29065,"arcs":[[4652,4653,4654,4655,-4414,-4377]]},{"type":"Polygon","id":51119,"arcs":[[4656,4657,-4539,-4408]]},{"type":"Polygon","id":6039,"arcs":[[-4011,4658,4659,-4604,-4220]]},{"type":"Polygon","id":21071,"arcs":[[-4556,4660,4661,-4608,-4518]]},{"type":"Polygon","id":21195,"arcs":[[-4555,-4537,4662,4663,4664,4665,4666,-4661]]},{"type":"Polygon","id":51049,"arcs":[[-4589,4667,4668,4669,-4650,-4511]]},{"type":"Polygon","id":51530,"arcs":[[-4461]]},{"type":"Polygon","id":29093,"arcs":[[-4653,-4376,-4384,-4465,4670,4671,4672]]},{"type":"Polygon","id":8003,"arcs":[[4673,-4624,-4207,-4516,4674]]},{"type":"Polygon","id":21183,"arcs":[[-4567,-4526,-4482,4675,4676,4677,4678]]},{"type":"Polygon","id":20187,"arcs":[[4679,-4320,-4335,4680,4681,4682]]},{"type":"Polygon","id":20081,"arcs":[[-4341,-4525,4683,4684,4685,4686]]},{"type":"Polygon","id":20067,"arcs":[[-4338,-4687,4687,-4681]]},{"type":"Polygon","id":21123,"arcs":[[4688,4689,-4504,-4530,4690,4691]]},{"type":"Polygon","id":20097,"arcs":[[-4580,-4470,-4634,4692,4693,4694]]},{"type":"Polygon","id":20205,"arcs":[[4695,4696,4697,-4403,-4488]]},{"type":"Polygon","id":20133,"arcs":[[-4696,-4490,-4492,4698,4699]]},{"type":"Polygon","id":21155,"arcs":[[4700,4701,4702,-4691,-4529,-4586]]},{"type":"Polygon","id":20095,"arcs":[[-4632,-4399,-4584,4703,4704,4705]]},{"type":"Polygon","id":54063,"arcs":[[4706,4707,4708,-4617,-4310,-4559]]},{"type":"Polygon","id":21129,"arcs":[[4709,-4621,-4565,-4620,4710,4711]]},{"type":"Polygon","id":21021,"arcs":[[4712,4713,-4701,-4585,-4551,-4629]]},{"type":"Polygon","id":51087,"arcs":[[-4509,4714,4715,4716,4717,4718,-4587]]},{"type":"Polygon","id":6081,"arcs":[[4719,-4639,4720,4721,4722]]},{"type":"Polygon","id":21025,"arcs":[[-4711,-4619,-4610,4723,4724,4725]]},{"type":"Polygon","id":51145,"arcs":[[4726,-4668,-4588,4727]]},{"type":"Polygon","id":21149,"arcs":[[-4545,-4568,-4679,4728,4729,4730]]},{"type":"Polygon","id":20037,"arcs":[[-4476,4731,4732,4733,4734,-4699,-4491]]},{"type":"Polygon","id":51045,"arcs":[[-4649,4735,4736,4737,-4707,-4558]]},{"type":"Polygon","id":21233,"arcs":[[4738,4739,-4593,-4546,-4731,4740]]},{"type":"Polygon","id":29011,"arcs":[[-4732,-4479,-4607,4741,4742]]},{"type":"Polygon","id":29123,"arcs":[[-4464,-4592,4743,4744,-4671]]},{"type":"Polygon","id":8009,"arcs":[[-4327,-4321,-4680,4745,4746,4747,-4644]]},{"type":"Polygon","id":8023,"arcs":[[-4643,4748,4749,4750,-4675,-4515]]},{"type":"Polygon","id":21137,"arcs":[[-4628,4751,4752,4753,-4713]]},{"type":"Polygon","id":8083,"arcs":[[-4181,-4596,4754,4755]]},{"type":"Polygon","id":8067,"arcs":[[4756,-4755,-4548,-4426,4757]]},{"type":"Polygon","id":51127,"arcs":[[-4508,-4579,-4542,4758,4759,-4715]]},{"type":"Polygon","id":6047,"arcs":[[-4660,4760,4761,4762,-4467,-4603]]},{"type":"Polygon","id":21085,"arcs":[[-4506,4763,4764,4765,-4676,-4481]]},{"type":"Polygon","id":51019,"arcs":[[-4458,-4638,4766,4767,4768,4769,4770,-4647],[4771]]},{"type":"Polygon","id":49053,"arcs":[[4772,-4057,-4429,4773]]},{"type":"Polygon","id":17069,"arcs":[[-4595,4774,4775,4776,-4577,-4570]]},{"type":"Polygon","id":51760,"arcs":[[-4718,4777]]},{"type":"Polygon","id":17151,"arcs":[[4778,4779,4780,-4578,-4777]]},{"type":"Polygon","id":29215,"arcs":[[-4612,-4501,-4412,-4656,4781,4782,4783,4784]]},{"type":"Polygon","id":17181,"arcs":[[4785,-4562,-4616,4786,4787,4788]]},{"type":"Polygon","id":17087,"arcs":[[4789,-4787,-4615,-4781,4790]]},{"type":"Polygon","id":29179,"arcs":[[-4654,-4673,4791,4792,4793]]},{"type":"Polygon","id":20049,"arcs":[[4794,-4454,-4404,-4698,4795,4796]]},{"type":"Polygon","id":29017,"arcs":[[-4591,4797,4798,4799,-4744]]},{"type":"Polygon","id":29031,"arcs":[[4800,4801,-4798,-4590,-4786,4802]]},{"type":"Polygon","id":51073,"arcs":[[4803,4804,4805,4806,-4540,-4658]]},{"type":"Polygon","id":54055,"arcs":[[4807,-4645,-4532,-4618,-4709,4808,4809,4810]]},{"type":"Polygon","id":29057,"arcs":[[-4742,-4606,-4631,4811,4812,4813]]},{"type":"Polygon","id":21109,"arcs":[[-4710,4814,4815,4816,4817,-4573,-4622]]},{"type":"Polygon","id":6019,"arcs":[[4818,4819,4820,4821,4822,-4761,-4659,-4010]]},{"type":"Polygon","id":21107,"arcs":[[4823,4824,4825,-4741,-4730]]},{"type":"Polygon","id":51041,"arcs":[[-4728,-4719,-4778,-4717,4826,4827,4828,4829,4830,4831,4832]]},{"type":"Polygon","id":51011,"arcs":[[-4485,-4652,4833,4834,4835,-4635]]},{"type":"Polygon","id":51131,"arcs":[[4836,-4496]]},{"type":"Polygon","id":21045,"arcs":[[-4714,-4754,4837,4838,4839,4840,-4702]]},{"type":"Polygon","id":54047,"arcs":[[-4808,4841,4842,-4535,-4646]]},{"type":"Polygon","id":21055,"arcs":[[-4594,-4740,4843,4844,4845,-4775]]},{"type":"Polygon","id":49025,"arcs":[[4846,4847,-4774,-4430,-4423,-4185]]},{"type":"Polygon","id":21189,"arcs":[[-4726,4848,4849,-4815,-4712]]},{"type":"Polygon","id":21203,"arcs":[[-4818,4850,4851,-4752,-4627,-4574]]},{"type":"Polygon","id":21119,"arcs":[[-4609,-4662,-4667,4852,4853,-4724]]},{"type":"Polygon","id":51027,"arcs":[[-4536,-4843,4854,4855,4856,-4663]]},{"type":"Polygon","id":51115,"arcs":[[4857,-4805]]},{"type":"Polygon","id":51007,"arcs":[[-4833,4858,4859,4860,-4669,-4727]]},{"type":"Polygon","id":51036,"arcs":[[-4760,4861,4862,4863,4864,-4827,-4716]]},{"type":"Polygon","id":29225,"arcs":[[-4614,4865,4866,4867,4868,-4600]]},{"type":"Polygon","id":29229,"arcs":[[4869,-4866,-4613,-4785]]},{"type":"Polygon","id":6085,"arcs":[[4870,-4601,-4468,-4763,4871,4872,-4722]]},{"type":"Polygon","id":21217,"arcs":[[-4841,4873,4874,-4692,-4703]]},{"type":"Polygon","id":51071,"arcs":[[-4708,-4738,4875,4876,4877,-4809]]},{"type":"Polygon","id":20191,"arcs":[[4878,4879,4880,-4704,-4583,4881]]},{"type":"Polygon","id":20035,"arcs":[[4882,4883,-4882,-4455,-4795,4884]]},{"type":"Polygon","id":51680,"arcs":[[4885,-4767,-4637]]},{"type":"Polygon","id":20119,"arcs":[[-4684,-4524,-4582,4886,4887,4888]]},{"type":"Polygon","id":20025,"arcs":[[4889,4890,-4887,-4581,-4695,4891]]},{"type":"Polygon","id":21087,"arcs":[[-4875,4892,4893,4894,-4689]]},{"type":"Polygon","id":20007,"arcs":[[4895,4896,4897,-4693,-4633,-4706,4898]]},{"type":"Polygon","id":51095,"arcs":[[-4541,-4807,4899,4900,4901,4902,4903,4904,-4862,-4759]]},{"type":"Polygon","id":6027,"arcs":[[-4213,-3690,4905,4906,4907,4908,-4819,-4009]]},{"type":"Polygon","id":21099,"arcs":[[-4505,-4690,-4895,4909,4910,4911,-4764]]},{"type":"Polygon","id":21193,"arcs":[[-4854,4912,4913,4914,4915,-4849,-4725]]},{"type":"Polygon","id":51031,"arcs":[[-4836,4916,4917,4918,-4768,-4886,-4636]]},{"type":"Polygon","id":8007,"arcs":[[4919,-4758,-4425,-4554,-4626,4920,4921]]},{"type":"Polygon","id":29077,"arcs":[[4922,4923,-4812,-4630,-4597,-4869]]},{"type":"Polygon","id":29203,"arcs":[[4924,4925,4926,-4782,-4655,-4794]]},{"type":"Polygon","id":21139,"arcs":[[-4776,-4846,4927,4928,4929,4930,-4779]]},{"type":"Polygon","id":21177,"arcs":[[-4729,-4678,4931,4932,4933,4934,-4824]]},{"type":"Polygon","id":51161,"arcs":[[-4648,-4771,4935,4936,4937,-4736],[4938],[4939]]},{"type":"Polygon","id":51147,"arcs":[[-4651,-4670,-4861,4940,4941,4942,-4834]]},{"type":"Polygon","id":21031,"arcs":[[4943,4944,4945,-4932,-4677,-4766]]},{"type":"Polygon","id":8021,"arcs":[[4946,4947,-4921,-4625,-4674,-4751]]},{"type":"Polygon","id":20189,"arcs":[[4948,4949,-4682,-4688,-4686,4950]]},{"type":"Polygon","id":20129,"arcs":[[4951,-4746,-4683,-4950]]},{"type":"Polygon","id":20175,"arcs":[[4952,4953,-4951,-4685,-4889]]},{"type":"Polygon","id":20077,"arcs":[[4954,4955,-4899,-4705,-4881]]},{"type":"Polygon","id":20125,"arcs":[[4956,4957,4958,4959,-4796,-4697]]},{"type":"Polygon","id":20099,"arcs":[[4960,4961,-4957,-4700,-4735,4962]]},{"type":"Polygon","id":20033,"arcs":[[4963,4964,-4892,-4694,-4898]]},{"type":"Polygon","id":21033,"arcs":[[-4739,-4826,4965,4966,4967,-4844]]},{"type":"Polygon","id":51199,"arcs":[[4968,-4901,4969,4970,4971,4972,-4903]]},{"type":"Polygon","id":51121,"arcs":[[-4938,4973,4974,4975,4976,-4876,-4737]]},{"type":"Polygon","id":29097,"arcs":[[4977,-4733,-4743,-4814,4978,4979]]},{"type":"Polygon","id":21199,"arcs":[[-4838,-4753,-4852,4980,4981,4982,4983]]},{"type":"Polygon","id":21051,"arcs":[[-4850,-4916,4984,4985,4986,4987,-4816]]},{"type":"Polygon","id":51515,"arcs":[[-4772]]},{"type":"Polygon","id":17127,"arcs":[[4988,-4791,-4780,-4931,4989]]},{"type":"Polygon","id":17003,"arcs":[[4990,4991,-4803,-4789,4992,4993]]},{"type":"Polygon","id":51185,"arcs":[[-4855,-4842,-4811,4994,4995,4996]]},{"type":"Polygon","id":17153,"arcs":[[4997,-4993,-4788,-4790,-4989]]},{"type":"Polygon","id":20021,"arcs":[[-4978,4998,4999,5000,-4963,-4734]]},{"type":"Polygon","id":21061,"arcs":[[5001,5002,-4944,-4765,-4912]]},{"type":"Polygon","id":21125,"arcs":[[-4988,5003,5004,5005,-4981,-4851,-4817]]},{"type":"Polygon","id":51149,"arcs":[[5006,-4865,5007,5008,5009,5010,-4829]]},{"type":"Polygon","id":51770,"arcs":[[-4939]]},{"type":"Polygon","id":51670,"arcs":[[-4828,-5007]]},{"type":"Polygon","id":21131,"arcs":[[5011,5012,-4985,-4915]]},{"type":"Polygon","id":51775,"arcs":[[-4940]]},{"type":"Polygon","id":21001,"arcs":[[-4840,5013,5014,5015,-4893,-4874]]},{"type":"Polygon","id":29223,"arcs":[[-4745,-4800,5016,5017,5018,-4792,-4672]]},{"type":"Polygon","id":51021,"arcs":[[5019,5020,-4995,-4810,-4878,5021]]},{"type":"Polygon","id":51051,"arcs":[[-4857,5022,5023,-4664]]},{"type":"Polygon","id":20019,"arcs":[[5024,5025,-4885,-4797,-4960]]},{"type":"Polygon","id":51135,"arcs":[[5026,5027,-4941,-4860,5028]]},{"type":"Polygon","id":51570,"arcs":[[5029,-4830]]},{"type":"Polygon","id":51830,"arcs":[[-4969,-4902]]},{"type":"Polygon","id":29109,"arcs":[[5030,5031,5032,5033,-4979,-4813,-4924]]},{"type":"Polygon","id":6087,"arcs":[[5034,5035,5036,-4723,-4873]]},{"type":"Polygon","id":51053,"arcs":[[-4832,5037,-5010,5038,5039,5040,-5029,-4859]]},{"type":"Polygon","id":21133,"arcs":[[-4666,5041,5042,-4913,-4853]]},{"type":"Polygon","id":29201,"arcs":[[5043,5044,5045,-4801,-4992]]},{"type":"Polygon","id":51037,"arcs":[[5046,5047,5048,-4917,-4835,-4943]]},{"type":"Polygon","id":51181,"arcs":[[5049,5050,5051,5052,-5008,-4864]]},{"type":"Polygon","id":51730,"arcs":[[-5011,-5038,-4831,-5030]]},{"type":"Polygon","id":51155,"arcs":[[-4877,-4977,5053,-4975,5054,5055,5056,-5022]]},{"type":"Polygon","id":51700,"arcs":[[5057,5058,-4904,-4973]]},{"type":"Polygon","id":51067,"arcs":[[-4936,-4770,5059,5060,5061,5062]]},{"type":"Polygon","id":21007,"arcs":[[5063,5064,5065,-4994,-4998]]},{"type":"Polygon","id":21145,"arcs":[[5066,5067,5068,-5064,-4990,-4930]]},{"type":"Polygon","id":51195,"arcs":[[5069,-5042,-4665,-5024,5070,5071,5072],[5073]]},{"type":"Polygon","id":21227,"arcs":[[5074,5075,-4945,-5003,5076,5077]]},{"type":"Polygon","id":21207,"arcs":[[-4839,-4984,5078,5079,5080,-5014]]},{"type":"Polygon","id":21143,"arcs":[[-4968,5081,5082,-4928,-4845]]},{"type":"Polygon","id":21169,"arcs":[[5083,5084,5085,-4910,-4894,-5016]]},{"type":"Polygon","id":51735,"arcs":[[5086,-4971]]},{"type":"Polygon","id":21009,"arcs":[[-4911,-5086,5087,5088,-5077,-5002]]},{"type":"Polygon","id":21047,"arcs":[[-4935,5089,5090,5091,5092,-4966,-4825]]},{"type":"Polygon","id":51750,"arcs":[[-4976,-5054]]},{"type":"Polygon","id":51093,"arcs":[[5093,5094,5095,-5051,5096,5097]]},{"type":"Polygon","id":51167,"arcs":[[5098,5099,5100,-5071,-5023,-4856,-4997]]},{"type":"Polygon","id":29207,"arcs":[[5101,5102,5103,-5017,-4799,-4802,-5046]]},{"type":"Polygon","id":51063,"arcs":[[-5063,5104,5105,-5055,-4974,-4937]]},{"type":"Polygon","id":51111,"arcs":[[5106,5107,-5047,-4942,-5028]]},{"type":"Polygon","id":51183,"arcs":[[5108,5109,-5039,-5009,-5053]]},{"type":"Polygon","id":51650,"arcs":[[-5058,-4972,5110]]},{"type":"Polygon","id":29035,"arcs":[[5111,5112,5113,-4925,-4793,-5019]]},{"type":"Polygon","id":29043,"arcs":[[5114,5115,5116,-5031,-4923,-4868]]},{"type":"Polygon","id":29133,"arcs":[[-5044,-4991,-5066,5117,5118,5119,5120]]},{"type":"Polygon","id":21219,"arcs":[[5121,5122,-5090,-4934,5123]]},{"type":"Polygon","id":21141,"arcs":[[-5076,5124,5125,-5124,-4933,-4946]]},{"type":"Polygon","id":51197,"arcs":[[5126,5127,5128,-5020,-5057]]},{"type":"Polygon","id":29067,"arcs":[[5129,5130,-5115,-4867,-4870,-4784,5131]]},{"type":"Polygon","id":21157,"arcs":[[-5083,5132,5133,5134,-5067,-4929]]},{"type":"Polygon","id":29145,"arcs":[[-4999,-4980,-5034,5135,5136,5137]]},{"type":"Polygon","id":29091,"arcs":[[5138,-5132,-4783,-4927,5139,5140]]},{"type":"Polygon","id":21121,"arcs":[[5141,5142,-5004,-4987]]},{"type":"Polygon","id":51083,"arcs":[[5143,5144,5145,5146,-4918,-5049,5147]]},{"type":"Polygon","id":51025,"arcs":[[5148,5149,5150,-5107,-5027,-5041,5151]]},{"type":"Polygon","id":21095,"arcs":[[-5070,5152,5153,-5012,-4914,-5043]]},{"type":"Polygon","id":51173,"arcs":[[-4996,-5021,-5129,5154,5155,-5099]]},{"type":"Polygon","id":21221,"arcs":[[5156,5157,-5133,-5082,-4967,-5093]]},{"type":"Polygon","id":4017,"arcs":[[-4183,5158,5159,5160,5161]]},{"type":"Polygon","id":4005,"arcs":[[5162,5163,-4847,-4184,-5162,5164]]},{"type":"Polygon","id":40035,"arcs":[[5165,-4961,-5001,5166,5167,5168,5169]]},{"type":"Polygon","id":40105,"arcs":[[-4958,-4962,-5166,5170,5171]]},{"type":"Polygon","id":40115,"arcs":[[-5138,5172,5173,-5167,-5000]]},{"type":"Polygon","id":40113,"arcs":[[5174,-4883,-5026,5175,5176,5177,5178]]},{"type":"Polygon","id":40071,"arcs":[[-4879,-4884,-5175,5179,5180]]},{"type":"Polygon","id":40147,"arcs":[[-5025,-4959,-5172,5181,5182,-5176]]},{"type":"Polygon","id":35059,"arcs":[[5183,-4641,-4748,5184,5185,5186,5187,5188]]},{"type":"Polygon","id":35045,"arcs":[[5189,-4756,-4757,-4920,5190,5191,5192]]},{"type":"Polygon","id":35039,"arcs":[[-4922,-4948,5193,5194,5195,5196,5197,-5191]]},{"type":"Polygon","id":40003,"arcs":[[-4896,-4956,5198,5199,5200,5201]]},{"type":"Polygon","id":40053,"arcs":[[-4955,-4880,-5181,5202,-5199]]},{"type":"Polygon","id":40025,"arcs":[[5203,5204,-5185,-4747,5205]]},{"type":"Polygon","id":40151,"arcs":[[5206,-4964,-4897,-5202,5207,5208]]},{"type":"Polygon","id":4015,"arcs":[[-4773,-4848,-5164,5209,5210,5211,5212,-4058]]},{"type":"Polygon","id":21231,"arcs":[[5213,5214,5215,-5079,-4983]]},{"type":"Polygon","id":40007,"arcs":[[5216,5217,5218,-4953,-4888,-4891,5219,5220]]},{"type":"Polygon","id":40139,"arcs":[[-4952,-4949,-4954,-5219,5221,5222,5223,-5206]]},{"type":"Polygon","id":51175,"arcs":[[-5094,5224,5225,5226,5227,-5109,-5052,-5096,5228]]},{"type":"Polygon","id":4001,"arcs":[[-5190,5229,5230,5231,5232,5233,-5159,-4182]]},{"type":"Polygon","id":40059,"arcs":[[-4890,-4965,-5207,5234,5235,-5220]]},{"type":"Polygon","id":35055,"arcs":[[-5194,-4947,-4750,5236,5237]]},{"type":"Polygon","id":35007,"arcs":[[-5237,-4749,-4642,-5184,5238,5239]]},{"type":"Polygon","id":29209,"arcs":[[5240,5241,-5032,-5117,5242]]},{"type":"Polygon","id":6069,"arcs":[[-4762,-4823,5243,-5035,-4872]]},{"type":"Polygon","id":21235,"arcs":[[5244,5245,5246,5247,-5005,-5143]]},{"type":"Polygon","id":21039,"arcs":[[-5069,5248,5249,-5118,-5065]]},{"type":"Polygon","id":51710,"arcs":[[5250,5251,5252]]},{"type":"Polygon","id":21147,"arcs":[[-5248,5253,5254,-5214,-4982,-5006]]},{"type":"Polygon","id":21013,"arcs":[[-4986,-5013,-5154,5255,5256,-5245,-5142]]},{"type":"Polygon","id":51720,"arcs":[[-5074]]},{"type":"Polygon","id":21083,"arcs":[[5257,5258,5259,-5249,-5068,-5135,5260]]},{"type":"Polygon","id":21057,"arcs":[[5261,5262,5263,-5084,-5015,-5081]]},{"type":"Polygon","id":21003,"arcs":[[5264,5265,5266,5267,-5078,-5089]]},{"type":"Polygon","id":51810,"arcs":[[5268,5269,5270,5271,5272,5273,5274,-5251]]},{"type":"Polygon","id":51035,"arcs":[[-5106,5275,5276,5277,5278,5279,-5127,-5056]]},{"type":"Polygon","id":29009,"arcs":[[5280,5281,5282,-5136,-5033,-5242]]},{"type":"Polygon","id":51191,"arcs":[[5283,5284,5285,5286,5287,-5100,-5156,5288]]},{"type":"Polygon","id":29023,"arcs":[[-5018,-5104,5289,5290,5291,-5112]]},{"type":"Polygon","id":51800,"arcs":[[5292,5293,5294,5295,5296,-5225,-5098]]},{"type":"Polygon","id":6053,"arcs":[[-4822,5297,5298,5299,-5036,-5244]]},{"type":"Polygon","id":51081,"arcs":[[-5228,5300,-5152,-5040,-5110],[5301]]},{"type":"Polygon","id":51117,"arcs":[[5302,5303,5304,-5148,-5048,-5108,-5151]]},{"type":"Polygon","id":51105,"arcs":[[5305,5306,5307,-5256,-5153,-5073]]},{"type":"Polygon","id":21213,"arcs":[[5308,5309,-5125,-5075,-5268]]},{"type":"Polygon","id":51169,"arcs":[[-5101,-5288,5310,5311,5312,-5306,-5072]]},{"type":"Polygon","id":21053,"arcs":[[5313,5314,-5262,-5080,-5216]]},{"type":"Polygon","id":29149,"arcs":[[5315,5316,5317,-5140,-4926,-5114,5318]]},{"type":"Polygon","id":51141,"arcs":[[5319,5320,5321,-5276,-5105,-5062]]},{"type":"Polygon","id":29143,"arcs":[[5322,5323,5324,5325,5326,5327,-5102,-5045,-5121]]},{"type":"Polygon","id":51550,"arcs":[[-5275,5328,5329,-5295,5330,5331,5332,-5252]]},{"type":"Polygon","id":32003,"arcs":[[-5213,5333,-4906,-3689,-4059]]},{"type":"Polygon","id":51089,"arcs":[[5334,5335,-5320,-5061,5336],[5337]]},{"type":"Polygon","id":21171,"arcs":[[-5264,5338,5339,-5265,-5088,-5085]]},{"type":"MultiPolygon","id":51740,"arcs":[[[-5294,5340,-5331]],[[5341,-5333]]]},{"type":"Polygon","id":29181,"arcs":[[5342,5343,-5319,-5113,-5292]]},{"type":"Polygon","id":29213,"arcs":[[5344,5345,5346,-5243,-5116,-5131,5347]]},{"type":"Polygon","id":40153,"arcs":[[5348,5349,5350,-5235,-5209]]},{"type":"Polygon","id":51077,"arcs":[[-5280,5351,-5278,5352,5353,5354,5355,-5289,-5155,-5128]]},{"type":"Polygon","id":29153,"arcs":[[5356,5357,-5348,-5130,-5139]]},{"type":"Polygon","id":21105,"arcs":[[-5260,5358,5359,-5119,-5250]]},{"type":"Polygon","id":29119,"arcs":[[5360,5361,-5173,-5137,-5283]]},{"type":"Polygon","id":21035,"arcs":[[5362,5363,-5261,-5134,-5158]]},{"type":"Polygon","id":6107,"arcs":[[5364,5365,-4820,-4909]]},{"type":"Polygon","id":51595,"arcs":[[-5302]]},{"type":"Polygon","id":51690,"arcs":[[-5338]]},{"type":"Polygon","id":51640,"arcs":[[-5279,-5352]]},{"type":"Polygon","id":51620,"arcs":[[-5095,-5229]]},{"type":"Polygon","id":47161,"arcs":[[5366,5367,-5363,-5157,-5092,5368,5369]]},{"type":"Polygon","id":40041,"arcs":[[-5362,5370,5371,5372,5373,-5168,-5174]]},{"type":"Polygon","id":47147,"arcs":[[-5122,-5126,-5310,5374,5375,5376,5377]]},{"type":"Polygon","id":47165,"arcs":[[-5309,-5267,5378,5379,5380,5381,-5375]]},{"type":"Polygon","id":47125,"arcs":[[5382,5383,-5369,-5091,-5123,-5378,5384]]},{"type":"Polygon","id":47111,"arcs":[[-5379,-5266,-5340,5385,5386,5387,5388]]},{"type":"Polygon","id":29069,"arcs":[[-5103,-5328,5389,5390,5391,5392,5393,-5290]]},{"type":"Polygon","id":47027,"arcs":[[-5339,-5263,-5315,5394,5395,5396,-5386]]},{"type":"Polygon","id":47137,"arcs":[[-5314,-5215,-5255,5397,5398,5399,-5395]]},{"type":"Polygon","id":51520,"arcs":[[5400,-5286]]},{"type":"Polygon","id":47163,"arcs":[[5401,5402,5403,-5311,-5287,-5401,-5285,5404]]},{"type":"Polygon","id":47091,"arcs":[[-5284,-5356,5405,5406,5407,5408,-5405]]},{"type":"Polygon","id":40103,"arcs":[[5409,5410,-5180,-5179,5411,5412]]},{"type":"Polygon","id":47151,"arcs":[[-5398,-5254,5413,5414,5415,5416]]},{"type":"Polygon","id":40131,"arcs":[[5417,-5182,-5171,-5170,5418,5419]]},{"type":"Polygon","id":47067,"arcs":[[-5313,5420,5421,5422,-5307]]},{"type":"Polygon","id":47025,"arcs":[[5423,-5246,-5257,-5308,-5423,5424,5425]]},{"type":"Polygon","id":47013,"arcs":[[5426,-5414,-5247,-5424,5427]]},{"type":"Polygon","id":40045,"arcs":[[5428,5429,5430,5431,-5221,-5236,-5351]]},{"type":"Polygon","id":40047,"arcs":[[-5411,5432,5433,5434,-5200,-5203]]},{"type":"Polygon","id":47073,"arcs":[[5435,5436,-5421,-5312,-5404,5437,5438]]},{"type":"Polygon","id":37009,"arcs":[[5439,5440,-5406,-5355,5441]]},{"type":"Polygon","id":47049,"arcs":[[5442,5443,5444,-5399,-5417,5445]]},{"type":"Polygon","id":37005,"arcs":[[-5442,-5354,5446,5447]]},{"type":"Polygon","id":37171,"arcs":[[-5353,-5277,-5322,5448,5449,5450,5451,-5447]]},{"type":"MultiPolygon","id":21075,"arcs":[[[5452,5453,-5323,-5120,-5360]],[[5454,-5325]]]},{"type":"Polygon","id":40117,"arcs":[[5455,5456,5457,-5412,-5178]]},{"type":"MultiPolygon","id":37053,"arcs":[[[-5329,-5274,5458,5459]],[[-5272,5460]],[[-5270,5461,5462,5463]]]},{"type":"Polygon","id":37131,"arcs":[[-5149,-5301,-5227,5464,5465,5466,5467]]},{"type":"Polygon","id":37091,"arcs":[[5468,5469,5470,-5465,-5226]]},{"type":"Polygon","id":37029,"arcs":[[-5296,-5330,-5460,5471,5472,5473]]},{"type":"Polygon","id":37073,"arcs":[[5474,5475,5476,-5469,-5297,-5474,5477]]},{"type":"Polygon","id":37185,"arcs":[[5478,-5303,-5150,-5468,5479,5480]]},{"type":"Polygon","id":37169,"arcs":[[-5321,-5336,5481,5482,-5449]]},{"type":"Polygon","id":37033,"arcs":[[5483,5484,5485,-5146,5486,5487,5488,5489]]},{"type":"Polygon","id":37157,"arcs":[[-5335,5490,-5490,5491,5492,-5482]]},{"type":"Polygon","id":37077,"arcs":[[5493,5494,5495,-5144,-5305,5496,5497]]},{"type":"Polygon","id":37145,"arcs":[[-5145,-5496,5498,5499,-5487]]},{"type":"Polygon","id":37181,"arcs":[[-5497,-5304,-5479,5500]]},{"type":"Polygon","id":47133,"arcs":[[-5400,-5445,5501,5502,-5396]]},{"type":"Polygon","id":47087,"arcs":[[5503,-5387,-5397,-5503,5504]]},{"type":"Polygon","id":40097,"arcs":[[-5169,-5374,5505,5506,-5419]]},{"type":"Polygon","id":37083,"arcs":[[-5467,5507,5508,5509,5510,-5480]]},{"type":"Polygon","id":40093,"arcs":[[-5201,-5435,5511,5512,5513,-5349,-5208]]},{"type":"Polygon","id":37139,"arcs":[[5514,5515,-5478,-5473]]},{"type":"Polygon","id":47019,"arcs":[[-5409,5516,5517,5518,5519,-5402]]},{"type":"Polygon","id":47095,"arcs":[[-5455,-5324,-5454,5520,5521,5522,-5326]]},{"type":"Polygon","id":47131,"arcs":[[5523,5524,-5521,-5453,5525]]},{"type":"Polygon","id":47183,"arcs":[[-5359,-5259,5526,5527,5528,-5526]]},{"type":"Polygon","id":47079,"arcs":[[-5527,-5258,-5364,-5368,5529,5530]]},{"type":"Polygon","id":47169,"arcs":[[5531,5532,-5380,-5389]]},{"type":"Polygon","id":48295,"arcs":[[-5217,-5432,5533,5534]]},{"type":"Polygon","id":48421,"arcs":[[-5204,-5224,5535,5536,5537]]},{"type":"Polygon","id":5021,"arcs":[[-5343,-5291,-5394,5538,5539]]},{"type":"Polygon","id":48111,"arcs":[[-5186,-5205,-5538,5540]]},{"type":"Polygon","id":48195,"arcs":[[-5223,5541,5542,-5536]]},{"type":"Polygon","id":5005,"arcs":[[5543,5544,5545,-5357,5546,5547]]},{"type":"Polygon","id":5049,"arcs":[[5548,-5547,-5141,-5318,5549]]},{"type":"Polygon","id":5135,"arcs":[[5550,5551,-5550,-5317,5552,5553]]},{"type":"Polygon","id":5121,"arcs":[[-5553,-5316,-5344,-5540,5554,5555]]},{"type":"Polygon","id":5007,"arcs":[[5556,-5371,-5361,-5282,5557,5558,5559]]},{"type":"Polygon","id":5089,"arcs":[[5560,5561,-5345,-5358,-5546]]},{"type":"Polygon","id":5015,"arcs":[[-5281,-5241,-5347,5562,5563,5564,-5558]]},{"type":"Polygon","id":5009,"arcs":[[-5346,-5562,5565,5566,-5563]]},{"type":"Polygon","id":48357,"arcs":[[-5222,-5218,-5535,5567,-5542]]},{"type":"Polygon","id":6031,"arcs":[[5568,5569,-5298,-4821,-5366]]},{"type":"Polygon","id":47021,"arcs":[[5570,5571,5572,-5385,-5377]]},{"type":"Polygon","id":47179,"arcs":[[5573,5574,-5438,-5403,-5520]]},{"type":"Polygon","id":47173,"arcs":[[5575,5576,5577,-5428,-5426]]},{"type":"Polygon","id":40143,"arcs":[[-5183,-5418,5578,5579,5580,-5456,-5177]]},{"type":"Polygon","id":37193,"arcs":[[-5440,-5448,-5452,5581,5582,5583,5584,5585]]},{"type":"Polygon","id":29155,"arcs":[[5586,-5390,-5327,-5523,5587]]},{"type":"Polygon","id":47159,"arcs":[[-5388,-5504,5588,5589,5590,-5532]]},{"type":"Polygon","id":47057,"arcs":[[-5437,5591,5592,5593,-5576,-5425,-5422]]},{"type":"Polygon","id":47059,"arcs":[[-5439,-5575,5594,5595,5596,5597]]},{"type":"Polygon","id":47037,"arcs":[[5598,5599,5600,-5571,-5376,-5382]]},{"type":"Polygon","id":37189,"arcs":[[-5586,5601,5602,-5407,-5441]]},{"type":"Polygon","id":37143,"arcs":[[-5475,-5516,5603,5604]]},{"type":"Polygon","id":47083,"arcs":[[5605,5606,5607,-5370,-5384]]},{"type":"Polygon","id":47129,"arcs":[[5608,5609,5610,-5446,-5416]]},{"type":"Polygon","id":47005,"arcs":[[-5367,-5608,5611,5612,5613,5614,-5530]]},{"type":"Polygon","id":47189,"arcs":[[-5381,-5533,-5591,5615,5616,5617,-5599]]},{"type":"Polygon","id":47063,"arcs":[[-5436,-5598,5618,5619,-5592]]},{"type":"Polygon","id":37041,"arcs":[[-5605,5620,-5476]]},{"type":"Polygon","id":47043,"arcs":[[5621,5622,5623,-5606,-5383,-5573]]},{"type":"Polygon","id":47141,"arcs":[[-5444,5624,5625,5626,-5589,-5505,-5502]]},{"type":"Polygon","id":5087,"arcs":[[5627,5628,5629,5630,-5559,-5565,5631]]},{"type":"Polygon","id":47001,"arcs":[[-5578,5632,5633,-5609,-5415,-5427]]},{"type":"Polygon","id":37011,"arcs":[[-5408,-5603,5634,5635,5636,5637,-5517]]},{"type":"Polygon","id":37197,"arcs":[[5638,5639,5640,-5582,-5451]]},{"type":"Polygon","id":5055,"arcs":[[5641,-5555,-5539,-5393,5642]]},{"type":"Polygon","id":35033,"arcs":[[5643,5644,5645,-5195,-5238,-5240]]},{"type":"Polygon","id":5075,"arcs":[[5646,5647,5648,-5554,-5556,-5642]]},{"type":"Polygon","id":37069,"arcs":[[-5481,5649,5650,-5498,-5501]]},{"type":"Polygon","id":5065,"arcs":[[-5549,-5552,5651,5652,-5548]]},{"type":"Polygon","id":47171,"arcs":[[5653,5654,5655,-5595,-5574,-5519]]},{"type":"Polygon","id":37067,"arcs":[[-5450,-5483,5656,5657,5658,-5639]]},{"type":"Polygon","id":40119,"arcs":[[5659,5660,5661,-5413,-5458]]},{"type":"Polygon","id":47085,"arcs":[[5662,5663,-5612,-5607,-5624]]},{"type":"Polygon","id":37081,"arcs":[[-5493,5664,5665,5666,-5657]]},{"type":"Polygon","id":37001,"arcs":[[5667,-5665,-5492,-5489,5668,5669]]},{"type":"Polygon","id":37015,"arcs":[[-5471,5670,5671,5672,-5508,-5466]]},{"type":"Polygon","id":5143,"arcs":[[5673,-5560,-5631,5674]]},{"type":"Polygon","id":37135,"arcs":[[-5669,-5488,-5500,5675,5676]]},{"type":"Polygon","id":37063,"arcs":[[5677,5678,-5676,-5499,-5495]]},{"type":"Polygon","id":47053,"arcs":[[-5529,5679,5680,5681,5682,-5524]]},{"type":"Polygon","id":35021,"arcs":[[5683,-5644,-5239,-5189,5684]]},{"type":"Polygon","id":35043,"arcs":[[5685,5686,5687,5688,5689,-5192,-5198]]},{"type":"Polygon","id":47045,"arcs":[[-5525,-5683,5690,5691,5692,-5588,-5522]]},{"type":"Polygon","id":37127,"arcs":[[5693,5694,5695,-5650,-5511]]},{"type":"Polygon","id":47093,"arcs":[[-5577,-5594,5696,5697,5698,5699,-5633]]},{"type":"Polygon","id":47089,"arcs":[[5700,5701,-5697,-5593,-5620]]},{"type":"Polygon","id":47029,"arcs":[[-5701,-5619,-5597,5702,5703,5704]]},{"type":"Polygon","id":40021,"arcs":[[-5506,-5373,5705,5706,5707,5708]]},{"type":"Polygon","id":40037,"arcs":[[5709,5710,-5660,-5457,-5581,5711]]},{"type":"Polygon","id":47035,"arcs":[[5712,-5625,-5443,-5611,5713,5714,5715,5716]]},{"type":"Polygon","id":40001,"arcs":[[-5557,-5674,5717,5718,-5706,-5372]]},{"type":"Polygon","id":40073,"arcs":[[-5512,-5434,5719,5720,5721]]},{"type":"Polygon","id":40083,"arcs":[[-5720,-5433,-5410,-5662,5722,5723]]},{"type":"Polygon","id":40145,"arcs":[[5724,-5579,-5420,-5507,-5709,5725]]},{"type":"Polygon","id":40011,"arcs":[[5726,5727,5728,5729,-5513,-5722]]},{"type":"Polygon","id":40043,"arcs":[[-5429,-5350,-5514,-5730,5730,5731]]},{"type":"Polygon","id":47017,"arcs":[[5732,5733,5734,-5680,-5528,-5531,-5615]]},{"type":"Polygon","id":37121,"arcs":[[-5638,5735,5736,-5654,-5518]]},{"type":"Polygon","id":37065,"arcs":[[5737,5738,-5694,-5510,5739]]},{"type":"Polygon","id":47041,"arcs":[[5740,5741,5742,-5616,-5590,-5627]]},{"type":"Polygon","id":5101,"arcs":[[-5632,-5564,-5567,5743,5744,5745]]},{"type":"Polygon","id":5129,"arcs":[[5746,-5744,-5566,-5561,-5545,5747,5748]]},{"type":"Polygon","id":37027,"arcs":[[-5585,5749,5750,5751,-5635,-5602]]},{"type":"Polygon","id":5137,"arcs":[[5752,5753,-5748,-5544,-5653,5754]]},{"type":"Polygon","id":47149,"arcs":[[5755,5756,5757,5758,5759,-5600,-5618]]},{"type":"Polygon","id":47185,"arcs":[[5760,5761,-5741,-5626,-5713]]},{"type":"Polygon","id":37199,"arcs":[[-5737,5762,5763,5764,-5655]]},{"type":"Polygon","id":37117,"arcs":[[5765,5766,5767,-5740,-5509,-5673]]},{"type":"Polygon","id":37183,"arcs":[[-5651,5768,5769,5770,-5678,-5494]]},{"type":"Polygon","id":48393,"arcs":[[-5568,5771,5772,5773]]},{"type":"Polygon","id":48211,"arcs":[[-5431,5774,5775,-5772,-5534]]},{"type":"Polygon","id":47145,"arcs":[[-5634,5776,5777,5778,5779,-5714,-5610]]},{"type":"Polygon","id":48233,"arcs":[[5780,-5543,-5774,5781]]},{"type":"Polygon","id":48205,"arcs":[[5782,-5187,-5541,5783,5784]]},{"type":"Polygon","id":47187,"arcs":[[-5622,-5572,-5601,-5760,5785,5786,5787]]},{"type":"Polygon","id":48341,"arcs":[[-5784,-5537,-5781,5788]]},{"type":"Polygon","id":37115,"arcs":[[5789,5790,-5703,-5596,-5656,-5765]]},{"type":"Polygon","id":37097,"arcs":[[-5583,-5641,5791,5792,5793,5794,5795,5796,5797]]},{"type":"Polygon","id":37059,"arcs":[[5798,-5792,-5640,-5659,5799]]},{"type":"Polygon","id":47155,"arcs":[[-5702,-5705,5800,5801,5802,-5698]]},{"type":"Polygon","id":37003,"arcs":[[-5798,5803,-5750,-5584]]},{"type":"Polygon","id":37057,"arcs":[[-5658,-5667,5804,5805,5806,-5800]]},{"type":"Polygon","id":40129,"arcs":[[-5732,5807,5808,5809,-5775,-5430]]},{"type":"Polygon","id":35049,"arcs":[[5810,5811,-5687,5812,-5196,-5646,5813]]},{"type":"Polygon","id":35031,"arcs":[[5814,-5230,-5193,-5690]]},{"type":"Polygon","id":47081,"arcs":[[-5623,-5788,5815,5816,5817,-5663]]},{"type":"Polygon","id":5093,"arcs":[[5818,5819,5820,5821,-5391,-5587,-5693,5822,5823]]},{"type":"Polygon","id":47033,"arcs":[[-5682,5824,5825,5826,-5691]]},{"type":"Polygon","id":37023,"arcs":[[5827,5828,5829,5830,-5636,-5752]]},{"type":"Polygon","id":5031,"arcs":[[-5643,-5392,-5822,5831,5832,-5647]]},{"type":"Polygon","id":35028,"arcs":[[-5197,-5813,-5686]]},{"type":"Polygon","id":47015,"arcs":[[-5743,5833,5834,-5756,-5617]]},{"type":"Polygon","id":37187,"arcs":[[5835,5836,-5766,-5672,5837,5838]]},{"type":"Polygon","id":37177,"arcs":[[-5839,5839,5840]]},{"type":"Polygon","id":37111,"arcs":[[-5736,-5637,-5831,5841,5842,-5763]]},{"type":"Polygon","id":47097,"arcs":[[5843,5844,-5823,-5692,-5827]]},{"type":"Polygon","id":40081,"arcs":[[5845,-5723,-5661,-5711,5846,5847]]},{"type":"Polygon","id":5063,"arcs":[[-5551,-5649,5848,5849,5850,-5755,-5652]]},{"type":"Polygon","id":37151,"arcs":[[5851,-5805,-5666,-5668,5852,5853]]},{"type":"Polygon","id":47105,"arcs":[[-5700,5854,5855,5856,-5777]]},{"type":"Polygon","id":5067,"arcs":[[5857,-5849,-5648,-5833,5858,5859,5860]]},{"type":"Polygon","id":35047,"arcs":[[5861,5862,5863,-5814,-5645,-5684]]},{"type":"Polygon","id":47009,"arcs":[[-5699,-5803,5864,5865,-5855]]},{"type":"Polygon","id":37037,"arcs":[[5866,5867,5868,-5853,-5670,-5677,-5679,-5771]]},{"type":"Polygon","id":40101,"arcs":[[5869,-5726,-5708,5870,5871,5872]]},{"type":"Polygon","id":40111,"arcs":[[-5712,-5580,-5725,-5870,5873,5874]]},{"type":"Polygon","id":47177,"arcs":[[-5742,-5762,5875,5876,5877,5878,-5834]]},{"type":"Polygon","id":47039,"arcs":[[5879,5880,-5733,-5614,5881,5882]]},{"type":"Polygon","id":47119,"arcs":[[5883,5884,5885,5886,-5816,-5787]]},{"type":"Polygon","id":37195,"arcs":[[5887,5888,5889,5890,-5695,-5739]]},{"type":"Polygon","id":37159,"arcs":[[5891,5892,-5793,-5799,-5807]]},{"type":"Polygon","id":47135,"arcs":[[-5613,-5664,-5818,5893,5894,-5882]]},{"type":"Polygon","id":47143,"arcs":[[5895,5896,5897,-5715,-5780]]},{"type":"Polygon","id":47175,"arcs":[[-5717,5898,5899,-5876,-5761]]},{"type":"Polygon","id":37147,"arcs":[[5900,5901,5902,5903,5904,-5888,-5738,-5768]]},{"type":"Polygon","id":47077,"arcs":[[-5881,5905,5906,5907,-5734]]},{"type":"Polygon","id":37035,"arcs":[[-5797,5908,-5828,-5751,-5804]]},{"type":"Polygon","id":47075,"arcs":[[5909,5910,-5844,-5826,5911,5912]]},{"type":"Polygon","id":37021,"arcs":[[-5764,-5843,5913,5914,5915,-5790]]},{"type":"Polygon","id":37101,"arcs":[[-5891,5916,5917,5918,-5769,-5696]]},{"type":"Polygon","id":40039,"arcs":[[-5731,-5729,5919,5920,5921,-5808]]},{"type":"Polygon","id":6029,"arcs":[[5922,5923,5924,5925,-5569,-5365,-4908]]},{"type":"Polygon","id":6071,"arcs":[[-5334,-5212,5926,5927,5928,5929,-5923,-4907]]},{"type":"Polygon","id":6079,"arcs":[[5930,5931,-5299,-5570,-5926]]},{"type":"Polygon","id":47113,"arcs":[[5932,5933,-5912,-5825,-5681,-5735,-5908]]},{"type":"Polygon","id":5141,"arcs":[[-5754,5934,5935,5936,5937,-5749]]},{"type":"Polygon","id":37087,"arcs":[[-5801,-5704,-5791,-5916,5938,5939,5940]]},{"type":"Polygon","id":47007,"arcs":[[-5716,-5898,5941,5942,-5899]]},{"type":"Polygon","id":5047,"arcs":[[-5629,5943,5944,5945,5946]]},{"type":"Polygon","id":5071,"arcs":[[5947,-5944,-5628,-5746,5948]]},{"type":"MultiPolygon","id":37055,"arcs":[[[-5463,5949]],[[5950,5951]],[[5952]]]},{"type":"Polygon","id":5033,"arcs":[[-5630,-5947,5953,5954,-5718,-5675]]},{"type":"Polygon","id":47121,"arcs":[[5955,5956,5957,-5896,-5779]]},{"type":"Polygon","id":35037,"arcs":[[-5783,5958,5959,5960,5961,5962,5963,-5862,-5685,-5188]]},{"type":"MultiPolygon","id":37013,"arcs":[[[5964,5965,5966,-5902]],[[-5767,-5837,5967,5968,-5901]]]},{"type":"Polygon","id":5115,"arcs":[[5969,5970,-5949,-5745,-5747,-5938,5971]]},{"type":"Polygon","id":40017,"arcs":[[5972,5973,-5727,-5721,5974,5975]]},{"type":"Polygon","id":40109,"arcs":[[-5724,-5846,5976,5977,-5975]]},{"type":"Polygon","id":47117,"arcs":[[-5786,-5759,5978,5979,5980,-5884]]},{"type":"Polygon","id":5023,"arcs":[[5981,5982,-5935,-5753,-5851]]},{"type":"Polygon","id":47031,"arcs":[[-5879,5983,5984,5985,5986,-5757,-5835]]},{"type":"Polygon","id":5111,"arcs":[[-5859,-5832,-5821,5987,5988]]},{"type":"Polygon","id":47003,"arcs":[[-5987,5989,5990,-5979,-5758]]},{"type":"Polygon","id":37173,"arcs":[[-5802,-5941,5991,5992,5993,-5865]]},{"type":"Polygon","id":47123,"arcs":[[5994,5995,5996,-5856,-5866,5997]]},{"type":"Polygon","id":47101,"arcs":[[5998,5999,-5894,-5817,-5887]]},{"type":"Polygon","id":37079,"arcs":[[6000,-5889,-5905,6001]]},{"type":"Polygon","id":47107,"arcs":[[-5956,-5778,-5857,-5997,6002,6003]]},{"type":"Polygon","id":40107,"arcs":[[6004,6005,6006,6007,-5847,-5710,-5875]]},{"type":"Polygon","id":40135,"arcs":[[-5707,-5719,-5955,6008,6009,-5871]]},{"type":"Polygon","id":47167,"arcs":[[-5845,-5911,6010,6011,-5824]]},{"type":"Polygon","id":48375,"arcs":[[-5789,6012,6013,6014]]},{"type":"Polygon","id":48065,"arcs":[[6015,-6013,-5782,6016]]},{"type":"Polygon","id":48179,"arcs":[[6017,6018,-6017,-5773]]},{"type":"Polygon","id":48483,"arcs":[[-5810,6019,6020,-6018,-5776]]},{"type":"Polygon","id":48359,"arcs":[[-5959,-5785,-6015,6021]]},{"type":"Polygon","id":37105,"arcs":[[-5868,6022,6023]]},{"type":"Polygon","id":37161,"arcs":[[-5842,-5830,6024,6025,6026,6027,6028,-5914]]},{"type":"Polygon","id":47023,"arcs":[[6029,6030,6031,-5933,-5907]]},{"type":"Polygon","id":37191,"arcs":[[-6001,6032,6033,6034,-5917,-5890]]},{"type":"Polygon","id":37085,"arcs":[[6035,6036,6037,-6023,-5867,-5770,-5919]]},{"type":"Polygon","id":47153,"arcs":[[6038,6039,6040,-5877,-5900,-5943]]},{"type":"Polygon","id":37045,"arcs":[[6041,6042,6043,-6025,-5829,6044]]},{"type":"Polygon","id":40091,"arcs":[[6045,6046,-6005,-5874,-5873,6047]]},{"type":"Polygon","id":37109,"arcs":[[6048,-6045,-5909,-5796,6049]]},{"type":"Polygon","id":40015,"arcs":[[6050,6051,6052,6053,-5920,-5728,-5974]]},{"type":"Polygon","id":47061,"arcs":[[-6041,6054,6055,-5984,-5878]]},{"type":"Polygon","id":4025,"arcs":[[6056,6057,-5210,-5163,6058]]},{"type":"Polygon","id":5145,"arcs":[[6059,6060,6061,-5982,-5850,-5858,6062]]},{"type":"Polygon","id":37099,"arcs":[[6063,6064,6065,-5992,-5940]]},{"type":"Polygon","id":37125,"arcs":[[6066,6067,6068,6069,-5854,-5869,-6024,-6038]]},{"type":"Polygon","id":37119,"arcs":[[6070,6071,6072,6073,-6050,-5795,6074]]},{"type":"Polygon","id":37025,"arcs":[[-5794,-5893,6075,6076,-6075]]},{"type":"Polygon","id":40009,"arcs":[[6077,-6020,-5809,-5922,6078,6079,6080,6081]]},{"type":"Polygon","id":37123,"arcs":[[6082,6083,-5806,-5852,-6070,6084]]},{"type":"Polygon","id":37167,"arcs":[[-5892,-6084,6085,6086,-6076]]},{"type":"Polygon","id":47181,"arcs":[[6087,6088,6089,-5883,-5895,-6000]]},{"type":"Polygon","id":37089,"arcs":[[6090,6091,6092,-5915,-6029]]},{"type":"Polygon","id":47157,"arcs":[[-6012,6093,6094,6095,6096,-5819]]},{"type":"Polygon","id":40149,"arcs":[[-6079,-5921,-6054,6097]]},{"type":"Polygon","id":40125,"arcs":[[6098,-5977,-5848,-6008,6099,6100,6101]]},{"type":"Polygon","id":40061,"arcs":[[-6010,6102,6103,6104,-6048,-5872]]},{"type":"Polygon","id":47065,"arcs":[[-5897,-5958,6105,6106,6107,6108,6109,-6039,-5942]]},{"type":"Polygon","id":5029,"arcs":[[6110,6111,6112,-5972,-5937]]},{"type":"Polygon","id":47099,"arcs":[[-5886,6113,6114,-6088,-5999]]},{"type":"Polygon","id":47055,"arcs":[[6115,-6114,-5885,-5981,6116]]},{"type":"Polygon","id":37075,"arcs":[[6117,6118,-5998,-5994]]},{"type":"Polygon","id":40133,"arcs":[[-6100,-6007,6119,6120]]},{"type":"Polygon","id":5131,"arcs":[[-5946,6121,6122,6123,-5954]]},{"type":"Polygon","id":5037,"arcs":[[6124,6125,6126,-5860,-5989]]},{"type":"Polygon","id":5147,"arcs":[[-5861,-6127,6127,6128,6129,-6063]]},{"type":"Polygon","id":5035,"arcs":[[-6097,6130,6131,6132,6133,-6125,-5988,-5820]]},{"type":"Polygon","id":47069,"arcs":[[6134,6135,6136,6137,-5913,-5934,-6032,6138]]},{"type":"Polygon","id":47071,"arcs":[[6139,6140,6141,6142,-6030,-5906,-5880,-6090]]},{"type":"Polygon","id":5083,"arcs":[[6143,-6122,-5945,-5948,-5971,6144]]},{"type":"Polygon","id":37107,"arcs":[[6145,6146,6147,-6033,-6002,-5904]]},{"type":"Polygon","id":47127,"arcs":[[-5986,6148,6149,-5990]]},{"type":"Polygon","id":37175,"arcs":[[6150,6151,6152,-6064,-5939,-6093]]},{"type":"Polygon","id":37071,"arcs":[[-6049,-6074,6153,-6042]]},{"type":"Polygon","id":47047,"arcs":[[-5910,-6138,6154,6155,-6094,-6011]]},{"type":"Polygon","id":40079,"arcs":[[-6124,6156,6157,6158,6159,6160,-6103,-6009]]},{"type":"Polygon","id":37149,"arcs":[[6161,6162,-6091,-6028]]},{"type":"Polygon","id":47109,"arcs":[[6163,-6139,-6031,-6143]]},{"type":"Polygon","id":40027,"arcs":[[-5976,-5978,-6099,6164]]},{"type":"Polygon","id":47103,"arcs":[[6165,6166,6167,-6117,-5980,-5991,-6150]]},{"type":"Polygon","id":40051,"arcs":[[6168,6169,6170,6171,-6051,-5973]]},{"type":"Polygon","id":5045,"arcs":[[-5936,-5983,-6062,6172,6173,6174,-6111]]},{"type":"Polygon","id":47051,"arcs":[[6175,6176,6177,-6166,-6149,-5985,-6056]]},{"type":"Polygon","id":47011,"arcs":[[6178,6179,6180,-6106,-5957,-6004,6181]]},{"type":"Polygon","id":35006,"arcs":[[6182,6183,6184,6185,-5231,-5815,-5689]]},{"type":"Polygon","id":40087,"arcs":[[6186,6187,-6169,-6165,-6102]]},{"type":"Polygon","id":47115,"arcs":[[6188,6189,-6176,-6055,-6040,-6110]]},{"type":"Polygon","id":37113,"arcs":[[-6066,6190,6191,6192,-6118,-5993]]},{"type":"Polygon","id":37163,"arcs":[[-6036,-5918,-6035,6193,6194,6195,6196]]},{"type":"Polygon","id":40121,"arcs":[[-6046,-6105,6197,6198,6199,6200,6201]]},{"type":"Polygon","id":37137,"arcs":[[-5966,6202,6203]]},{"type":"Polygon","id":5149,"arcs":[[6204,6205,6206,6207,-6145,-5970,-6113]]},{"type":"Polygon","id":40063,"arcs":[[-6120,-6006,-6047,-6202,6208,6209]]},{"type":"Polygon","id":37039,"arcs":[[6210,6211,6212,6213,-5995,-6119,-6193]]},{"type":"Polygon","id":47139,"arcs":[[-6214,6214,6215,-6182,-6003,-5996]]},{"type":"Polygon","id":37051,"arcs":[[-6067,-6037,-6197,6216,6217,6218]]},{"type":"Polygon","id":37103,"arcs":[[6219,6220,6221,6222,6223,-6147]]},{"type":"Polygon","id":35001,"arcs":[[-6183,-5688,-5812,6224,6225]]},{"type":"Polygon","id":35019,"arcs":[[6226,6227,-5863,-5964,6228]]},{"type":"Polygon","id":45045,"arcs":[[-6151,-6092,-6163,6229,6230,6231,6232]]},{"type":"Polygon","id":37179,"arcs":[[6233,6234,-6071,-6077,-6087,6235]]},{"type":"Polygon","id":37007,"arcs":[[-6083,6236,6237,-6236,-6086]]},{"type":"Polygon","id":37093,"arcs":[[6238,6239,-6068,-6219]]},{"type":"Polygon","id":45083,"arcs":[[6240,-6230,-6162,-6027,6241,6242]]},{"type":"MultiPolygon","id":37095,"arcs":[[[6243,-5968,-5836,-5841,6244,-5952]],[[6245]]]},{"type":"Polygon","id":37061,"arcs":[[-6148,-6224,6246,6247,-6194,-6034]]},{"type":"Polygon","id":45021,"arcs":[[6248,-6242,-6026,-6044,6249]]},{"type":"Polygon","id":48381,"arcs":[[-6014,6250,6251,6252,6253]]},{"type":"Polygon","id":48011,"arcs":[[-6016,6254,6255,6256,-6251]]},{"type":"Polygon","id":48087,"arcs":[[-6078,6257,6258,6259,6260,-6021]]},{"type":"Polygon","id":48129,"arcs":[[-6019,-6261,6261,6262,-6255]]},{"type":"Polygon","id":48117,"arcs":[[6263,-5960,-6022,-6254,6264,6265]]},{"type":"Polygon","id":37153,"arcs":[[-6069,6266,6267,-6237,-6085]]},{"type":"Polygon","id":45091,"arcs":[[6268,6269,-6250,-6043,-6154,-6073,6270]]},{"type":"Polygon","id":37043,"arcs":[[-6192,6271,6272,6273,-6211]]},{"type":"Polygon","id":5123,"arcs":[[-6126,-6134,6274,6275,-6128]]},{"type":"Polygon","id":40075,"arcs":[[6276,6277,6278,-6080,-6098,-6053,6279]]},{"type":"Polygon","id":40055,"arcs":[[6280,6281,-6081,-6279]]},{"type":"Polygon","id":5105,"arcs":[[6282,6283,6284,-6205,-6112,-6175]]},{"type":"Polygon","id":5127,"arcs":[[6285,-6157,-6123,-6144,-6208,6286]]},{"type":"Polygon","id":5117,"arcs":[[6287,6288,-6060,-6130,6289]]},{"type":"Polygon","id":45077,"arcs":[[6290,-6152,-6233,6291]]},{"type":"Polygon","id":5085,"arcs":[[-6173,-6061,-6289,6292,6293,6294]]},{"type":"Polygon","id":40077,"arcs":[[-6104,-6161,6295,-6198]]},{"type":"MultiPolygon","id":37049,"arcs":[[[6296,6297,-6221]],[[-6146,-5903,-5967,-6204,6298,-6220]]]},{"type":"Polygon","id":45057,"arcs":[[6299,6300,6301,6302,-6271,-6072,-6235]]},{"type":"Polygon","id":45073,"arcs":[[-6065,-6153,-6291,6303,6304,6305,6306,6307,6308]]},{"type":"Polygon","id":35057,"arcs":[[-6225,-5811,-5864,-6228,6309,6310,6311]]},{"type":"Polygon","id":37165,"arcs":[[6312,6313,-6267,-6240]]},{"type":"Polygon","id":40057,"arcs":[[6314,-6258,-6082,-6282,6315,6316]]},{"type":"Polygon","id":5119,"arcs":[[-6295,6317,6318,6319,-6283,-6174]]},{"type":"Polygon","id":1077,"arcs":[[-6140,-6089,-6115,6320,6321,6322,6323]]},{"type":"Polygon","id":1083,"arcs":[[-6321,-6116,-6168,6324,6325,6326]]},{"type":"Polygon","id":5095,"arcs":[[6327,6328,6329,-6290,-6129,-6276]]},{"type":"Polygon","id":28003,"arcs":[[-6135,-6164,-6142,6330,6331,6332]]},{"type":"Polygon","id":28141,"arcs":[[-6331,-6141,-6324,6333,6334,6335,6336]]},{"type":"Polygon","id":28139,"arcs":[[6337,6338,-6136,-6333,6339]]},{"type":"Polygon","id":28009,"arcs":[[6340,-6155,-6137,-6339,6341]]},{"type":"Polygon","id":28033,"arcs":[[6342,-6131,-6096,6343,6344]]},{"type":"Polygon","id":28093,"arcs":[[6345,-6344,-6095,-6156,-6341,6346,6347]]},{"type":"Polygon","id":13241,"arcs":[[-6309,6348,6349,-6272,-6191]]},{"type":"Polygon","id":1089,"arcs":[[-6325,-6167,-6178,6350,6351,6352]]},{"type":"Polygon","id":1071,"arcs":[[-6177,-6190,6353,6354,6355,-6351]]},{"type":"Polygon","id":13313,"arcs":[[6356,6357,6358,-6180,6359]]},{"type":"Polygon","id":13213,"arcs":[[-6360,-6179,-6216,6360,6361,6362]]},{"type":"Polygon","id":13047,"arcs":[[6363,-6107,-6181,-6359]]},{"type":"Polygon","id":13083,"arcs":[[-6189,-6109,6364,6365,-6354]]},{"type":"Polygon","id":13295,"arcs":[[6366,6367,6368,6369,-6365,-6108,-6364,-6358]]},{"type":"Polygon","id":13281,"arcs":[[6370,-6273,-6350,6371,6372]]},{"type":"Polygon","id":13291,"arcs":[[6373,6374,6375,-6212,-6274,-6371]]},{"type":"Polygon","id":13111,"arcs":[[-6215,-6213,-6376,6376,6377,6378,-6361]]},{"type":"Polygon","id":37133,"arcs":[[6379,6380,6381,-6247,-6223]]},{"type":"Polygon","id":40123,"arcs":[[-6210,6382,6383,6384,6385,-6187,-6101,-6121]]},{"type":"Polygon","id":35009,"arcs":[[6386,-5961,-6264,6387]]},{"type":"Polygon","id":35061,"arcs":[[-6312,6388,-6184,-6226]]},{"type":"Polygon","id":37155,"arcs":[[-6218,6389,6390,6391,6392,-6313,-6239]]},{"type":"Polygon","id":5077,"arcs":[[6393,6394,-6328,-6275,-6133]]},{"type":"Polygon","id":45087,"arcs":[[-6270,6395,6396,6397,6398,-6243,-6249]]},{"type":"Polygon","id":1033,"arcs":[[6399,-6334,-6323,6400]]},{"type":"Polygon","id":6111,"arcs":[[6401,6402,6403,-5925]]},{"type":"Polygon","id":28143,"arcs":[[-6132,-6343,6404,6405,6406,6407,6408,-6394]]},{"type":"MultiPolygon","id":37031,"arcs":[[[6409,-6380,-6222,-6298]],[[6410]]]},{"type":"Polygon","id":40049,"arcs":[[6411,6412,-6170,-6188,-6386,6413]]},{"type":"Polygon","id":5125,"arcs":[[-6284,-6320,6414,6415,6416]]},{"type":"Polygon","id":1049,"arcs":[[-6366,-6370,6417,6418,6419,6420,-6355]]},{"type":"Polygon","id":40031,"arcs":[[-6280,-6052,-6172,6421,6422,6423]]},{"type":"Polygon","id":40065,"arcs":[[6424,6425,6426,-6316,-6281,-6278]]},{"type":"Polygon","id":37017,"arcs":[[-6196,6427,6428,-6390,-6217]]},{"type":"Polygon","id":13123,"arcs":[[6429,6430,-6362,-6379,6431]]},{"type":"Polygon","id":45023,"arcs":[[-6269,-6303,6432,-6396]]},{"type":"Polygon","id":13137,"arcs":[[-6308,6433,6434,6435,6436,-6372,-6349]]},{"type":"Polygon","id":45007,"arcs":[[-6232,6437,6438,6439,-6304,-6292]]},{"type":"Polygon","id":45025,"arcs":[[-6234,-6238,6440,6441,6442,-6300]]},{"type":"Polygon","id":1079,"arcs":[[6443,6444,6445,6446,-6401,-6322,-6327]]},{"type":"Polygon","id":45069,"arcs":[[-6393,6447,6448,6449,-6441,-6268,-6314]]},{"type":"Polygon","id":13311,"arcs":[[-6437,6450,6451,-6374,-6373]]},{"type":"Polygon","id":28137,"arcs":[[6452,6453,-6405,-6345,-6346]]},{"type":"Polygon","id":45059,"arcs":[[-6399,6454,6455,6456,-6231,-6241]]},{"type":"Polygon","id":5051,"arcs":[[6457,-6206,-6285,-6417,6458]]},{"type":"Polygon","id":35011,"arcs":[[6459,6460,6461,-6229,-5963]]},{"type":"Polygon","id":40029,"arcs":[[6462,-6383,-6209,-6201,6463]]},{"type":"Polygon","id":28117,"arcs":[[6464,6465,6466,-6340,-6332,-6337]]},{"type":"Polygon","id":5097,"arcs":[[6467,-6287,-6207,-6458,6468,6469,6470]]},{"type":"Polygon","id":48369,"arcs":[[-6388,-6266,6471,6472,6473]]},{"type":"Polygon","id":48069,"arcs":[[-6472,-6265,-6253,6474,6475,6476]]},{"type":"Polygon","id":48437,"arcs":[[6477,6478,-6475,-6252,-6257,6479]]},{"type":"Polygon","id":48045,"arcs":[[6480,-6480,-6256,-6263,6481,6482]]},{"type":"Polygon","id":48075,"arcs":[[-6315,6483,6484,6485,-6259]]},{"type":"Polygon","id":48191,"arcs":[[6486,6487,-6482,-6262,-6260,-6486]]},{"type":"Polygon","id":5113,"arcs":[[6488,6489,6490,-6158,-6286,-6468]]},{"type":"Polygon","id":37141,"arcs":[[-6195,-6248,-6382,6491,6492,6493,6494,-6428]]},{"type":"Polygon","id":13187,"arcs":[[-6452,6495,6496,-6377,-6375]]},{"type":"Polygon","id":40127,"arcs":[[6497,6498,-6199,-6296,-6160,6499]]},{"type":"Polygon","id":40005,"arcs":[[6500,6501,6502,-6464,-6200,-6499]]},{"type":"Polygon","id":40137,"arcs":[[-6171,-6413,6503,6504,6505,-6422]]},{"type":"Polygon","id":1103,"arcs":[[6506,6507,-6444,-6326,-6353]]},{"type":"Polygon","id":13257,"arcs":[[6508,6509,-6434,-6307]]},{"type":"Polygon","id":5107,"arcs":[[-6409,6510,6511,6512,-6329,-6395]]},{"type":"Polygon","id":40099,"arcs":[[-6385,6513,6514,-6414]]},{"type":"Polygon","id":40141,"arcs":[[6515,6516,6517,-6425,-6277,-6424]]},{"type":"Polygon","id":13129,"arcs":[[-6367,-6357,-6363,-6431,6518,6519,6520]]},{"type":"Polygon","id":45033,"arcs":[[-6392,6521,6522,6523,-6448]]},{"type":"Polygon","id":13085,"arcs":[[6524,6525,6526,6527,-6432,-6378,-6497]]},{"type":"Polygon","id":45055,"arcs":[[6528,-6301,-6443,6529,6530,6531]]},{"type":"Polygon","id":28145,"arcs":[[6532,-6347,-6342,-6338,-6467,6533,6534]]},{"type":"Polygon","id":1095,"arcs":[[-6507,-6352,-6356,-6421,6535,6536,6537]]},{"type":"Polygon","id":35041,"arcs":[[-6460,-5962,-6387,6538,6539,6540,6541]]},{"type":"Polygon","id":35003,"arcs":[[6542,6543,-5232,-6186,6544,6545]]},{"type":"Polygon","id":13115,"arcs":[[6546,6547,6548,6549,-6368,-6521]]},{"type":"Polygon","id":13055,"arcs":[[6550,-6418,-6369,-6550]]},{"type":"Polygon","id":35053,"arcs":[[6551,6552,-6545,-6185,-6389,-6311]]},{"type":"Polygon","id":1059,"arcs":[[6553,-6335,-6400,-6447,6554,6555]]},{"type":"Polygon","id":48197,"arcs":[[6556,-6484,-6317,-6427,6557,6558]]},{"type":"Polygon","id":5001,"arcs":[[-6513,6559,6560,6561,-6293,-6288,-6330]]},{"type":"Polygon","id":28071,"arcs":[[6562,-6453,-6348,-6533,6563,6564,6565]]},{"type":"Polygon","id":28107,"arcs":[[-6406,-6454,-6563,6566,6567,6568]]},{"type":"Polygon","id":45039,"arcs":[[-6529,6569,6570,-6397,-6433,-6302]]},{"type":"Polygon","id":13227,"arcs":[[-6528,6571,-6519,-6430]]},{"type":"Polygon","id":13119,"arcs":[[6572,6573,6574,-6509,-6306]]},{"type":"Polygon","id":28027,"arcs":[[6575,6576,6577,-6511,-6408,6578]]},{"type":"Polygon","id":45031,"arcs":[[6579,6580,-6442,-6450]]},{"type":"Polygon","id":45071,"arcs":[[-6571,6581,6582,6583,6584,-6455,-6398]]},{"type":"Polygon","id":1019,"arcs":[[-6419,-6551,-6549,6585,6586,6587,6588]]},{"type":"Polygon","id":28081,"arcs":[[6589,6590,6591,6592,-6534,-6466]]},{"type":"Polygon","id":4007,"arcs":[[6593,6594,6595,-6059,-5165,-5161]]},{"type":"Polygon","id":28119,"arcs":[[6596,-6579,-6407,-6569]]},{"type":"Polygon","id":40069,"arcs":[[-6384,-6463,-6503,6597,6598,6599,-6514]]},{"type":"Polygon","id":40019,"arcs":[[-6600,6600,6601,6602,-6504,-6412,-6515]]},{"type":"Polygon","id":5059,"arcs":[[6603,6604,6605,-6469,-6459,-6416]]},{"type":"Polygon","id":40089,"arcs":[[6606,-6500,-6159,-6491,6607,6608,6609,6610]]},{"type":"Polygon","id":40033,"arcs":[[-6423,-6506,6611,6612,6613,-6516]]},{"type":"Polygon","id":13139,"arcs":[[-6496,-6451,-6436,6614,6615,6616,6617,6618,-6525]]},{"type":"Polygon","id":5053,"arcs":[[-6319,6619,6620,6621,-6604,-6415]]},{"type":"Polygon","id":5069,"arcs":[[-6562,6622,6623,-6620,-6318,-6294]]},{"type":"Polygon","id":13147,"arcs":[[6624,6625,-6573,-6305,-6440]]},{"type":"Polygon","id":13011,"arcs":[[-6435,-6510,-6575,6626,6627,-6615]]},{"type":"Polygon","id":45001,"arcs":[[6628,6629,6630,-6438,-6457]]},{"type":"Polygon","id":37047,"arcs":[[-6495,6631,6632,-6391,-6429]]},{"type":"Polygon","id":28057,"arcs":[[-6554,6633,6634,-6590,-6465,-6336]]},{"type":"Polygon","id":48487,"arcs":[[-6426,-6518,6635,6636,6637,-6558]]},{"type":"Polygon","id":13015,"arcs":[[-6520,6638,6639,6640,6641,-6547]]},{"type":"Polygon","id":13057,"arcs":[[-6639,-6572,-6527,6642,6643,6644]]},{"type":"Polygon","id":45047,"arcs":[[-6585,6645,6646,6647,-6629,-6456]]},{"type":"Polygon","id":37129,"arcs":[[-6493,6648,6649]]},{"type":"Polygon","id":28115,"arcs":[[-6564,-6535,-6593,6650,6651]]},{"type":"Polygon","id":45061,"arcs":[[6652,6653,-6530,-6581]]},{"type":"Polygon","id":37019,"arcs":[[6654,6655,-6632,-6494,-6650]]},{"type":"Polygon","id":5061,"arcs":[[6656,6657,-6489,6658]]},{"type":"Polygon","id":5109,"arcs":[[6659,6660,-6659,-6471,6661]]},{"type":"Polygon","id":35027,"arcs":[[-6227,-6462,6662,6663,6664,-6552,-6310]]},{"type":"Polygon","id":5019,"arcs":[[-6470,-6606,6665,6666,6667,-6662]]},{"type":"Polygon","id":4012,"arcs":[[-5927,-5211,-6058,6668,6669,6670,6671]]},{"type":"Polygon","id":13117,"arcs":[[6672,-6643,-6526,-6619,6673]]},{"type":"Polygon","id":1093,"arcs":[[6674,-6634,-6556,6675,6676,6677,6678]]},{"type":"Polygon","id":48345,"arcs":[[6679,6680,-6483,-6488,6681]]},{"type":"Polygon","id":1043,"arcs":[[6682,-6445,-6508,-6538,6683,6684]]},{"type":"Polygon","id":48101,"arcs":[[6685,-6682,-6487,-6485,-6557,6686]]},{"type":"Polygon","id":1133,"arcs":[[-6676,-6555,-6446,-6683,6687]]},{"type":"Polygon","id":48153,"arcs":[[6688,6689,-6478,-6481,-6681]]},{"type":"Polygon","id":48189,"arcs":[[6690,6691,-6476,-6479,-6690]]},{"type":"Polygon","id":48279,"arcs":[[6692,6693,-6473,-6477,-6692]]},{"type":"Polygon","id":48017,"arcs":[[-6539,-6474,-6694,6694]]},{"type":"Polygon","id":45041,"arcs":[[-6449,-6524,6695,6696,6697,6698,-6653,-6580]]},{"type":"Polygon","id":45051,"arcs":[[6699,6700,-6522,-6633,-6656,6701]]},{"type":"Polygon","id":13157,"arcs":[[6702,6703,-6616,-6628,6704]]},{"type":"Polygon","id":45067,"arcs":[[-6701,6705,6706,-6696,-6523]]},{"type":"Polygon","id":40067,"arcs":[[-6612,-6505,-6603,6707,6708,6709]]},{"type":"Polygon","id":13105,"arcs":[[-6439,-6631,6710,6711,6712,6713,6714,-6625]]},{"type":"Polygon","id":13195,"arcs":[[-6627,-6574,-6626,-6715,6715,6716,-6705]]},{"type":"Polygon","id":1009,"arcs":[[6717,6718,-6684,-6537,6719,6720]]},{"type":"Polygon","id":45079,"arcs":[[6721,6722,6723,-6582,-6570,-6532]]},{"type":"Polygon","id":48155,"arcs":[[-6559,-6638,6724,6725,6726,-6687]]},{"type":"Polygon","id":1055,"arcs":[[6727,-6720,-6536,-6420,-6589,6728]]},{"type":"Polygon","id":5133,"arcs":[[-6608,-6490,-6658,6729]]},{"type":"Polygon","id":45063,"arcs":[[-6724,6730,6731,6732,6733,-6583]]},{"type":"Polygon","id":28161,"arcs":[[6734,6735,6736,-6567,-6566]]},{"type":"Polygon","id":48485,"arcs":[[-6636,-6517,-6614,6737,6738]]},{"type":"Polygon","id":13121,"arcs":[[6739,6740,-6644,-6673,6741,6742,6743,6744,6745,6746]]},{"type":"Polygon","id":40095,"arcs":[[-6601,-6599,6747,6748,6749]]},{"type":"Polygon","id":5079,"arcs":[[6750,6751,6752,-6623,-6561]]},{"type":"Polygon","id":45081,"arcs":[[-6734,6753,6754,-6646,-6584]]},{"type":"Polygon","id":13135,"arcs":[[-6618,6755,6756,6757,6758,-6742,-6674]]},{"type":"Polygon","id":28135,"arcs":[[6759,6760,-6576,-6597,-6568,-6737,6761]]},{"type":"Polygon","id":28013,"arcs":[[6762,6763,-6735,-6565,-6652,6764]]},{"type":"Polygon","id":40013,"arcs":[[-6598,-6502,6765,6766,6767,6768,-6748]]},{"type":"Polygon","id":40023,"arcs":[[6769,6770,-6766,-6501,-6498,-6607]]},{"type":"Polygon","id":45085,"arcs":[[-6699,6771,6772,-6722,-6531,-6654]]},{"type":"Polygon","id":5039,"arcs":[[6773,6774,-6666,-6605,-6622,6775]]},{"type":"Polygon","id":48077,"arcs":[[-6613,-6710,6776,6777,6778,-6738]]},{"type":"Polygon","id":13013,"arcs":[[6779,6780,-6756,-6617,-6704]]},{"type":"Polygon","id":5041,"arcs":[[-6512,6781,6782,6783,-6751,-6560]]},{"type":"Polygon","id":28011,"arcs":[[6784,6785,6786,-6782,-6578]]},{"type":"Polygon","id":13067,"arcs":[[-6741,6787,6788,-6640,-6645]]},{"type":"Polygon","id":13233,"arcs":[[6789,6790,-6586,-6548,-6642,6791]]},{"type":"Polygon","id":35005,"arcs":[[-6461,-6542,6792,6793,6794,-6663]]},{"type":"Polygon","id":28095,"arcs":[[-6635,-6675,6795,6796,6797,6798,6799,-6591]]},{"type":"Polygon","id":13223,"arcs":[[6800,-6792,-6641,-6789,6801,6802]]},{"type":"Polygon","id":28017,"arcs":[[-6651,-6592,-6800,6803,6804,-6765]]},{"type":"Polygon","id":6065,"arcs":[[-6672,6805,6806,6807,-5928]]},{"type":"Polygon","id":45065,"arcs":[[-6648,6808,6809,6810,-6711,-6630]]},{"type":"Polygon","id":40085,"arcs":[[6811,-6708,-6602,-6750,6812,6813]]},{"type":"Polygon","id":5025,"arcs":[[6814,6815,6816,-6776,-6621,-6624,-6753]]},{"type":"Polygon","id":1075,"arcs":[[6817,-6796,-6679,6818,6819]]},{"type":"Polygon","id":13059,"arcs":[[6820,6821,-6703,-6717]]},{"type":"Polygon","id":13221,"arcs":[[-6716,-6714,6822,6823,6824,6825,-6821]]},{"type":"Polygon","id":4013,"arcs":[[-6596,6826,6827,6828,-6669,-6057]]},{"type":"MultiPolygon","id":6083,"arcs":[[[6829,-5931,-6404]],[[6830]],[[6831]]]},{"type":"Polygon","id":5057,"arcs":[[6832,6833,6834,6835,-6657,-6661]]},{"type":"Polygon","id":1127,"arcs":[[-6719,6836,6837,6838,-6677,-6688,-6685]]},{"type":"Polygon","id":28133,"arcs":[[-6577,-6761,6839,6840,6841,-6785]]},{"type":"Polygon","id":48337,"arcs":[[-6777,-6709,-6812,6842,6843,6844]]},{"type":"Polygon","id":13317,"arcs":[[6845,6846,6847,6848,-6823,-6713]]},{"type":"Polygon","id":1115,"arcs":[[6849,6850,6851,6852,-6721,-6728]]},{"type":"Polygon","id":13181,"arcs":[[6853,6854,-6846,-6712,-6811]]},{"type":"Polygon","id":45037,"arcs":[[6855,6856,6857,-6809,-6647,-6755]]},{"type":"Polygon","id":1015,"arcs":[[-6588,6858,6859,-6850,-6729]]},{"type":"Polygon","id":13219,"arcs":[[-6780,-6822,-6826,6860,6861,6862]]},{"type":"Polygon","id":13089,"arcs":[[6863,6864,-6743,-6759,6865]]},{"type":"Polygon","id":48387,"arcs":[[6866,6867,6868,-6770,-6611,6869,6870]]},{"type":"Polygon","id":5099,"arcs":[[-6660,-6668,6871,6872,6873,-6833]]},{"type":"Polygon","id":48181,"arcs":[[6874,6875,6876,6877,-6813,-6749,-6769]]},{"type":"Polygon","id":1029,"arcs":[[-6859,-6587,-6791,6878,6879,6880,6881,6882]]},{"type":"Polygon","id":6059,"arcs":[[6883,6884,-5929,-6808,6885]]},{"type":"Polygon","id":48097,"arcs":[[-6814,-6878,6886,6887,-6843]]},{"type":"Polygon","id":5081,"arcs":[[6888,6889,-6609,-6730,-6836]]},{"type":"Polygon","id":45027,"arcs":[[-6772,-6698,6890,6891,6892,6893]]},{"type":"Polygon","id":48277,"arcs":[[-6869,6894,6895,-6767,-6771]]},{"type":"Polygon","id":13297,"arcs":[[6896,6897,-6757,-6781,-6863,6898]]},{"type":"Polygon","id":1057,"arcs":[[6899,6900,-6819,-6678,-6839]]},{"type":"Polygon","id":13143,"arcs":[[-6879,-6790,-6801,6901]]},{"type":"Polygon","id":28043,"arcs":[[-6764,6902,6903,6904,6905,-6762,-6736]]},{"type":"Polygon","id":48147,"arcs":[[-6768,-6896,6906,6907,6908,-6875]]},{"type":"Polygon","id":45089,"arcs":[[-6707,6909,6910,-6891,-6697]]},{"type":"Polygon","id":45017,"arcs":[[-6773,-6894,6911,-6731,-6723]]},{"type":"Polygon","id":45003,"arcs":[[6912,6913,-6856,-6754,-6733,6914,6915]]},{"type":"Polygon","id":1073,"arcs":[[-6853,6916,6917,6918,-6837,-6718]]},{"type":"Polygon","id":48269,"arcs":[[6919,6920,6921,-6686,-6727]]},{"type":"Polygon","id":48125,"arcs":[[6922,-6680,-6922,6923]]},{"type":"Polygon","id":48107,"arcs":[[6924,-6689,-6923,6925]]},{"type":"Polygon","id":48303,"arcs":[[6926,-6691,-6925,6927]]},{"type":"Polygon","id":48009,"arcs":[[6928,-6739,-6779,6929,6930]]},{"type":"Polygon","id":48219,"arcs":[[6931,6932,-6693,-6927]]},{"type":"Polygon","id":48275,"arcs":[[6933,6934,-6920,-6726]]},{"type":"Polygon","id":48023,"arcs":[[-6929,6935,-6934,-6725,-6637]]},{"type":"Polygon","id":48079,"arcs":[[6936,-6540,-6695,-6933,6937]]},{"type":"Polygon","id":5103,"arcs":[[6938,6939,-6872,-6667,-6775,6940]]},{"type":"Polygon","id":13045,"arcs":[[-6747,6941,6942,6943,-6880,-6902,-6803,6944]]},{"type":"Polygon","id":28083,"arcs":[[6945,6946,-6840,-6760,-6906,6947]]},{"type":"Polygon","id":28025,"arcs":[[-6799,6948,6949,6950,6951,-6804]]},{"type":"Polygon","id":13211,"arcs":[[6952,6953,6954,6955,-6899,-6862]]},{"type":"Polygon","id":5013,"arcs":[[6956,6957,-6941,-6774,-6817]]},{"type":"Polygon","id":13097,"arcs":[[-6788,-6740,-6945,-6802]]},{"type":"Polygon","id":5043,"arcs":[[-6815,-6752,-6784,6958,6959,6960]]},{"type":"Polygon","id":13247,"arcs":[[6961,-6866,-6758,-6898,6962]]},{"type":"Polygon","id":4011,"arcs":[[-5233,-6544,6963,6964,6965,6966]]},{"type":"Polygon","id":45043,"arcs":[[-6700,6967,6968,6969,-6910,-6706]]},{"type":"Polygon","id":13133,"arcs":[[-6825,6970,6971,6972,-6953,-6861]]},{"type":"Polygon","id":28087,"arcs":[[-6949,-6797,-6818,6973,6974,6975,-6950]]},{"type":"Polygon","id":13217,"arcs":[[-6956,6976,6977,6978,-6963,-6897]]},{"type":"Polygon","id":28155,"arcs":[[-6903,-6763,-6805,-6952,6979,6980,6981]]},{"type":"Polygon","id":13265,"arcs":[[6982,6983,-6971,-6824,-6849]]},{"type":"Polygon","id":5011,"arcs":[[6984,6985,-6957,-6816,-6961]]},{"type":"Polygon","id":45075,"arcs":[[-6915,-6732,-6912,-6893,6986,6987,6988,6989]]},{"type":"Polygon","id":48037,"arcs":[[6990,-6870,-6610,-6890,6991,6992]]},{"type":"Polygon","id":13073,"arcs":[[-6858,6993,6994,-6854,-6810]]},{"type":"Polygon","id":1121,"arcs":[[-6883,6995,6996,6997,-6851,-6860]]},{"type":"Polygon","id":28015,"arcs":[[6998,6999,-6948,-6905,7000]]},{"type":"Polygon","id":28097,"arcs":[[7001,7002,-7001,-6904,-6982]]},{"type":"Polygon","id":13189,"arcs":[[7003,7004,7005,-6847,-6855,-6995]]},{"type":"Polygon","id":4009,"arcs":[[-6967,7006,7007,7008,-6594,-5160,-5234]]},{"type":"Polygon","id":13063,"arcs":[[7009,7010,-6744,-6865,7011]]},{"type":"Polygon","id":13151,"arcs":[[-6979,7012,7013,-7012,-6864,-6962]]},{"type":"Polygon","id":1125,"arcs":[[7014,7015,7016,7017,-6900,-6838,-6919]]},{"type":"Polygon","id":13301,"arcs":[[-6848,-7006,7018,7019,7020,-6983]]},{"type":"Polygon","id":5091,"arcs":[[7021,7022,-6992,-6889,-6835,7023]]},{"type":"Polygon","id":28105,"arcs":[[-6951,-6976,7024,7025,7026,-6980]]},{"type":"Polygon","id":35025,"arcs":[[-6937,7027,7028,7029,7030,7031,7032,-6793,-6541]]},{"type":"Polygon","id":5017,"arcs":[[7033,7034,7035,7036,7037,-6959,-6783,-6787,7038]]},{"type":"Polygon","id":13113,"arcs":[[7039,7040,-6745,-7011]]},{"type":"Polygon","id":1117,"arcs":[[7041,7042,7043,-6917,-6852,-6998]]},{"type":"Polygon","id":13245,"arcs":[[-6857,-6914,7044,7045,-7004,-6994]]},{"type":"Polygon","id":1107,"arcs":[[7046,-6974,-6820,-6901,-7018,7047,7048]]},{"type":"Polygon","id":28151,"arcs":[[7049,7050,-7039,-6786,-6842,7051]]},{"type":"Polygon","id":28019,"arcs":[[-6981,-7027,7052,7053,-7002]]},{"type":"Polygon","id":13159,"arcs":[[-6955,7054,7055,7056,7057,-6977]]},{"type":"Polygon","id":45015,"arcs":[[-6987,-6892,-6911,-6970,7058,7059,7060,7061]]},{"type":"Polygon","id":13077,"arcs":[[-7041,7062,7063,7064,7065,-6942,-6746]]},{"type":"Polygon","id":6073,"arcs":[[7066,7067,-6886,-6807]]},{"type":"Polygon","id":1111,"arcs":[[-6944,7068,7069,7070,7071,7072,-6881]]},{"type":"Polygon","id":1027,"arcs":[[-7073,7073,7074,-6996,-6882]]},{"type":"Polygon","id":4027,"arcs":[[-6829,7075,7076,7077,-6670]]},{"type":"Polygon","id":48119,"arcs":[[7078,7079,-6907,-6895]]},{"type":"Polygon","id":45011,"arcs":[[-6990,7080,7081,7082,-6916]]},{"type":"Polygon","id":5073,"arcs":[[-6834,-6874,7083,7084,7085,-7024]]},{"type":"Polygon","id":35051,"arcs":[[7086,7087,7088,7089,-6546,-6553,-6665]]},{"type":"MultiPolygon","id":6037,"arcs":[[[-6885,7090,-6402,-5924,-5930]],[[7091]],[[7092]]]},{"type":"Polygon","id":13237,"arcs":[[7093,-7055,-6954,-6973,7094,7095]]},{"type":"Polygon","id":4021,"arcs":[[-6595,-7009,7096,-6827]]},{"type":"Polygon","id":48237,"arcs":[[7097,7098,7099,7100,-6930,-6778,-6845]]},{"type":"Polygon","id":13141,"arcs":[[7101,7102,7103,-7095,-6972,-6984,-7021]]},{"type":"Polygon","id":5027,"arcs":[[7104,7105,7106,-7084,-6873,-6940]]},{"type":"Polygon","id":13035,"arcs":[[7107,7108,7109,-7013,-6978,-7058]]},{"type":"Polygon","id":6025,"arcs":[[-7078,7110,-7067,-6806,-6671]]},{"type":"Polygon","id":48497,"arcs":[[-7098,-6844,-6888,7111,7112,7113]]},{"type":"Polygon","id":48121,"arcs":[[7114,-7112,-6887,-6877,7115,7116]]},{"type":"Polygon","id":45009,"arcs":[[7117,-7081,-6989,7118]]},{"type":"Polygon","id":13149,"arcs":[[-7069,-6943,-7066,7119]]},{"type":"Polygon","id":48231,"arcs":[[7120,7121,7122,7123,-6908,-7080,7124,7125]]},{"type":"Polygon","id":48085,"arcs":[[-7124,7126,7127,-7116,-6876,-6909]]},{"type":"Polygon","id":5003,"arcs":[[7128,7129,-6985,-6960,-7038]]},{"type":"Polygon","id":48449,"arcs":[[7130,-6867,7131,7132]]},{"type":"Polygon","id":48207,"arcs":[[-6935,7133,7134,7135,7136]]},{"type":"Polygon","id":48447,"arcs":[[-6936,7137,7138,7139,-7134]]},{"type":"Polygon","id":48503,"arcs":[[-6931,-7101,7140,7141,-7138]]},{"type":"Polygon","id":48263,"arcs":[[-6924,7142,7143,7144,7145]]},{"type":"Polygon","id":48433,"arcs":[[-6921,-7137,7146,7147,-7143]]},{"type":"Polygon","id":48159,"arcs":[[-7131,7148,7149,7150,-6868]]},{"type":"Polygon","id":35035,"arcs":[[7151,7152,7153,7154,7155,-7087,-6664,-6795]]},{"type":"Polygon","id":5139,"arcs":[[-7130,7156,7157,-7105,-6939,-6958,-6986]]},{"type":"Polygon","id":48169,"arcs":[[-6926,-7146,7158,7159,7160]]},{"type":"Polygon","id":48305,"arcs":[[-6928,-7161,7161,7162,7163]]},{"type":"Polygon","id":48445,"arcs":[[-6932,-7164,7164,7165,7166]]},{"type":"Polygon","id":28051,"arcs":[[-6946,-7000,7167,7168,7169]]},{"type":"Polygon","id":48501,"arcs":[[-7028,-6938,-7167,7170]]},{"type":"Polygon","id":48223,"arcs":[[-7125,-7079,-7151,7171,7172]]},{"type":"Polygon","id":48343,"arcs":[[7173,7174,7175,7176,-7132,-6871,-6991]]},{"type":"Polygon","id":13255,"arcs":[[-7110,7177,7178,7179,-7063,-7040,-7010,-7014]]},{"type":"Polygon","id":28053,"arcs":[[-6841,-6947,-7170,7180,7181,-7052]]},{"type":"Polygon","id":45035,"arcs":[[7182,7183,-6988,-7062]]},{"type":"Polygon","id":13125,"arcs":[[7184,7185,-7102,-7020]]},{"type":"Polygon","id":13163,"arcs":[[7186,7187,7188,-7185,-7019,-7005,-7046,7189]]},{"type":"Polygon","id":48067,"arcs":[[7190,7191,-7174,-6993,-7023]]},{"type":"Polygon","id":13033,"arcs":[[-7083,7192,7193,7194,7195,-7190,-7045,-6913]]},{"type":"Polygon","id":28007,"arcs":[[-6999,-7003,-7054,7196,7197,7198,-7168]]},{"type":"Polygon","id":28103,"arcs":[[-7047,7199,7200,7201,-7025,-6975]]},{"type":"Polygon","id":28159,"arcs":[[-7197,-7053,-7026,-7202,7202,7203]]},{"type":"Polygon","id":1007,"arcs":[[7204,7205,-7015,-6918,-7044,7206]]},{"type":"Polygon","id":13303,"arcs":[[-7103,-7186,-7189,7207,7208,7209]]},{"type":"Polygon","id":13199,"arcs":[[7210,7211,7212,-7064,-7180,7213,7214]]},{"type":"Polygon","id":13285,"arcs":[[7215,-7070,-7120,-7065,-7213,7216]]},{"type":"Polygon","id":35017,"arcs":[[7217,-6964,-6543,-7090,7218]]},{"type":"Polygon","id":13171,"arcs":[[7219,7220,-7178,-7109,7221]]},{"type":"Polygon","id":13207,"arcs":[[7222,7223,7224,7225,-7222,-7108,-7057]]},{"type":"Polygon","id":13231,"arcs":[[7226,-7214,-7179,-7221]]},{"type":"Polygon","id":13009,"arcs":[[-7210,7227,7228,-7096,-7104]]},{"type":"Polygon","id":13169,"arcs":[[-7223,-7056,-7094,-7229,7229,7230,7231]]},{"type":"Polygon","id":45029,"arcs":[[-7119,-7184,7232,7233,7234,7235]]},{"type":"Polygon","id":1063,"arcs":[[-7048,-7017,7236,7237,7238]]},{"type":"Polygon","id":45005,"arcs":[[-7118,7239,7240,-7193,-7082]]},{"type":"Polygon","id":1017,"arcs":[[-7216,7241,7242,7243,-7071]]},{"type":"Polygon","id":1123,"arcs":[[7244,-7074,-7072,-7244,7245,7246,7247]]},{"type":"Polygon","id":1037,"arcs":[[7248,-7042,-6997,-7075,-7245,7249]]},{"type":"Polygon","id":28125,"arcs":[[7250,7251,-7050,-7182]]},{"type":"Polygon","id":48063,"arcs":[[-7177,7252,7253,-7149,-7133]]},{"type":"Polygon","id":1021,"arcs":[[7254,7255,7256,7257,-7207,-7043,-7249]]},{"type":"Polygon","id":35013,"arcs":[[7258,7259,7260,-7088,-7156]]},{"type":"Polygon","id":13251,"arcs":[[-7194,-7241,7261,7262,7263,7264]]},{"type":"Polygon","id":28163,"arcs":[[-7251,-7181,-7169,7265,7266,7267,7268]]},{"type":"Polygon","id":45049,"arcs":[[7269,7270,7271,-7262,-7240,-7236]]},{"type":"Polygon","id":22017,"arcs":[[7272,7273,7274,7275,7276,-7191,-7022,7277]]},{"type":"MultiPolygon","id":45019,"arcs":[[[-6969,7278,-7059]],[[7279,-7233,-7183,-7061]]]},{"type":"Polygon","id":22015,"arcs":[[7280,-7278,-7086,7281,7282]]},{"type":"Polygon","id":28055,"arcs":[[-7269,7283,7284,-7034,-7051,-7252]]},{"type":"Polygon","id":22119,"arcs":[[-7282,-7085,-7107,7285,7286]]},{"type":"Polygon","id":22027,"arcs":[[-7106,-7158,7287,7288,7289,-7286]]},{"type":"Polygon","id":22111,"arcs":[[7290,7291,-7288,-7157,7292]]},{"type":"Polygon","id":1065,"arcs":[[-7016,-7206,7293,7294,-7237]]},{"type":"Polygon","id":48499,"arcs":[[7295,7296,-7172,-7150,-7254,7297,7298]]},{"type":"Polygon","id":22067,"arcs":[[-7129,-7037,7299,7300,7301,-7293]]},{"type":"Polygon","id":22123,"arcs":[[7302,-7300,-7036,7303]]},{"type":"Polygon","id":22035,"arcs":[[-7035,-7285,7304,7305,7306,-7304]]},{"type":"Polygon","id":13319,"arcs":[[7307,7308,7309,-7230,-7228,-7209]]},{"type":"Polygon","id":48363,"arcs":[[-7100,7310,7311,7312,7313,7314,-7141]]},{"type":"Polygon","id":13293,"arcs":[[-7220,-7226,7315,7316,7317,-7215,-7227]]},{"type":"Polygon","id":48367,"arcs":[[-7311,-7099,-7114,7318,7319,7320]]},{"type":"Polygon","id":48439,"arcs":[[7321,7322,-7319,-7113,-7115,7323]]},{"type":"Polygon","id":48113,"arcs":[[-7128,7324,7325,7326,-7324,-7117]]},{"type":"Polygon","id":48397,"arcs":[[-7325,-7127,-7123,7327]]},{"type":"Polygon","id":1119,"arcs":[[7328,7329,-7200,-7049,-7239,7330,7331]]},{"type":"Polygon","id":48379,"arcs":[[-7297,7332,-7126,-7173]]},{"type":"Polygon","id":35015,"arcs":[[7333,7334,7335,-7152,-6794,-7033]]},{"type":"Polygon","id":48417,"arcs":[[7336,7337,7338,-7135,-7140,7339]]},{"type":"Polygon","id":48253,"arcs":[[7340,-7147,-7136,-7339,7341,7342]]},{"type":"Polygon","id":48151,"arcs":[[7343,7344,-7144,-7148,-7341]]},{"type":"Polygon","id":48415,"arcs":[[7345,7346,-7159,-7145,-7345]]},{"type":"Polygon","id":48033,"arcs":[[7347,7348,-7162,-7160,-7347]]},{"type":"Polygon","id":48115,"arcs":[[7349,7350,-7165,-7163,-7349]]},{"type":"Polygon","id":48429,"arcs":[[7351,-7340,-7139,-7142,-7315]]},{"type":"Polygon","id":48165,"arcs":[[-7029,-7171,-7166,-7351,7352]]},{"type":"Polygon","id":13021,"arcs":[[7353,7354,7355,-7224,-7232,7356]]},{"type":"Polygon","id":13165,"arcs":[[7357,7358,-7195,-7265]]},{"type":"Polygon","id":28099,"arcs":[[7359,7360,-7204,7361]]},{"type":"Polygon","id":28079,"arcs":[[7362,-7198,-7361,7363]]},{"type":"Polygon","id":28069,"arcs":[[-7330,7364,-7362,-7203,-7201]]},{"type":"Polygon","id":48459,"arcs":[[-7298,-7253,-7176,7365,7366,7367,7368]]},{"type":"Polygon","id":13289,"arcs":[[7369,7370,-7357,-7231,-7310]]},{"type":"Polygon","id":28089,"arcs":[[7371,-7266,-7199,-7363,7372,7373]]},{"type":"Polygon","id":48315,"arcs":[[-7277,7374,-7366,-7175,-7192]]},{"type":"Polygon","id":13263,"arcs":[[-7211,-7318,7375,7376,7377,7378,7379]]},{"type":"Polygon","id":1105,"arcs":[[-7258,7380,7381,-7294,-7205]]},{"type":"Polygon","id":13145,"arcs":[[7382,7383,-7242,-7217,-7212,-7380]]},{"type":"Polygon","id":13079,"arcs":[[-7356,7384,7385,-7316,-7225]]},{"type":"Polygon","id":48257,"arcs":[[-7122,7386,7387,7388,-7326,-7328]]},{"type":"Polygon","id":48467,"arcs":[[7389,-7387,-7121,-7333,-7296,7390]]},{"type":"Polygon","id":13107,"arcs":[[-7196,-7359,7391,7392,7393,7394,7395,-7187]]},{"type":"Polygon","id":13167,"arcs":[[-7188,-7396,7396,-7308,-7208]]},{"type":"Polygon","id":48203,"arcs":[[-7367,-7375,-7276,7397,7398,7399]]},{"type":"Polygon","id":35023,"arcs":[[7400,7401,-6965,-7218,7402]]},{"type":"Polygon","id":1051,"arcs":[[-7250,-7248,7403,7404,7405,-7255]]},{"type":"Polygon","id":22061,"arcs":[[7406,7407,7408,-7289,-7292]]},{"type":"Polygon","id":45053,"arcs":[[7409,7410,7411,7412,7413,7414,-7271]]},{"type":"Polygon","id":1081,"arcs":[[-7246,-7243,-7384,7415,7416,7417]]},{"type":"Polygon","id":13269,"arcs":[[-7386,7418,7419,7420,7421,-7376,-7317]]},{"type":"Polygon","id":22073,"arcs":[[-7302,7422,7423,7424,-7407,-7291]]},{"type":"Polygon","id":13175,"arcs":[[-7309,-7397,7425,7426,7427,7428]]},{"type":"Polygon","id":1001,"arcs":[[7429,7430,-7256,-7406,7431]]},{"type":"Polygon","id":1047,"arcs":[[7432,7433,7434,-7381,-7257,-7431]]},{"type":"Polygon","id":48423,"arcs":[[-7369,7435,7436,7437,7438,-7391,-7299]]},{"type":"Polygon","id":13225,"arcs":[[7439,-7419,-7385,-7355,7440]]},{"type":"Polygon","id":13153,"arcs":[[7441,7442,7443,7444,-7441,-7354,-7371]]},{"type":"Polygon","id":22083,"arcs":[[-7307,7445,7446,7447,-7423,-7301,-7303]]},{"type":"Polygon","id":48183,"arcs":[[-7436,-7368,-7400,7448]]},{"type":"Polygon","id":13031,"arcs":[[-7358,-7264,7449,7450,7451,7452,-7392]]},{"type":"Polygon","id":28123,"arcs":[[7453,7454,7455,-7373,-7364]]},{"type":"Polygon","id":28149,"arcs":[[-7268,7456,7457,7458,7459,-7305,-7284]]},{"type":"Polygon","id":35029,"arcs":[[7460,-7403,-7219,-7089,-7261]]},{"type":"Polygon","id":13215,"arcs":[[7461,7462,-7416,-7383,-7379]]},{"type":"Polygon","id":1087,"arcs":[[-7418,7463,7464,7465,-7404,-7247]]},{"type":"Polygon","id":28121,"arcs":[[7466,7467,7468,-7374,-7456]]},{"type":"Polygon","id":13103,"arcs":[[-7263,-7272,-7415,7469,7470,-7450]]},{"type":"Polygon","id":22013,"arcs":[[-7290,-7409,7471,7472,7473,7474,-7283,-7287]]},{"type":"Polygon","id":28075,"arcs":[[-7329,7475,7476,7477,-7365]]},{"type":"Polygon","id":28101,"arcs":[[-7454,-7360,-7478,7478]]},{"type":"Polygon","id":13023,"arcs":[[7479,-7442,-7370,-7429,7480]]},{"type":"Polygon","id":28049,"arcs":[[-7469,7481,7482,-7457,-7267,-7372]]},{"type":"Polygon","id":22065,"arcs":[[-7306,-7460,7483,7484,-7446]]},{"type":"Polygon","id":48251,"arcs":[[7485,7486,7487,-7320,-7323,7488,7489]]},{"type":"Polygon","id":13197,"arcs":[[-7422,7490,7491,7492,7493,-7377]]},{"type":"Polygon","id":48221,"arcs":[[7494,-7312,-7321,-7488,7495]]},{"type":"Polygon","id":48139,"arcs":[[-7489,-7322,-7327,-7389,7496,7497,7498]]},{"type":"Polygon","id":13043,"arcs":[[7499,7500,-7393,-7453]]},{"type":"Polygon","id":1091,"arcs":[[-7295,-7382,-7435,7501,7502,7503,-7331,-7238]]},{"type":"Polygon","id":13053,"arcs":[[7504,7505,-7462,-7378,-7494]]},{"type":"Polygon","id":4019,"arcs":[[-7008,7506,7507,7508,-7076,-6828,-7097]]},{"type":"Polygon","id":48441,"arcs":[[-7343,7509,7510,7511,7512]]},{"type":"Polygon","id":48227,"arcs":[[-7348,7513,7514,7515,7516]]},{"type":"Polygon","id":48335,"arcs":[[-7346,7517,7518,7519,-7514]]},{"type":"Polygon","id":48133,"arcs":[[7520,7521,7522,-7337,-7352,-7314,7523]]},{"type":"Polygon","id":48059,"arcs":[[7524,-7510,-7342,-7338,-7523,7525]]},{"type":"Polygon","id":48317,"arcs":[[-7350,-7517,7526,7527,7528]]},{"type":"Polygon","id":48003,"arcs":[[-7030,-7353,-7529,7529,7530,7531]]},{"type":"Polygon","id":48353,"arcs":[[-7344,-7513,7532,7533,-7518]]},{"type":"Polygon","id":48143,"arcs":[[7534,7535,7536,-7524,-7313,-7495,7537]]},{"type":"Polygon","id":1113,"arcs":[[7538,7539,7540,-7464,-7417,-7463,-7506]]},{"type":"Polygon","id":13193,"arcs":[[-7445,7541,7542,7543,-7420,-7440]]},{"type":"Polygon","id":13283,"arcs":[[7544,7545,-7426,-7395]]},{"type":"Polygon","id":1101,"arcs":[[-7432,-7405,-7466,7546,7547,7548,7549]]},{"type":"Polygon","id":22049,"arcs":[[7550,7551,-7472,-7408,-7425]]},{"type":"Polygon","id":4003,"arcs":[[-6966,-7402,7552,7553,-7507,-7007]]},{"type":"Polygon","id":13091,"arcs":[[7554,7555,7556,7557,-7481,-7428]]},{"type":"Polygon","id":13249,"arcs":[[7558,-7491,-7421,-7544]]},{"type":"Polygon","id":1085,"arcs":[[-7550,7559,7560,7561,-7433,-7430]]},{"type":"Polygon","id":22041,"arcs":[[-7485,7562,7563,7564,-7447]]},{"type":"Polygon","id":48401,"arcs":[[7565,7566,7567,7568,-7437,-7449,-7399]]},{"type":"Polygon","id":13235,"arcs":[[-7480,-7558,7569,7570,-7443]]},{"type":"Polygon","id":48365,"arcs":[[7571,-7566,-7398,-7275,7572]]},{"type":"Polygon","id":48213,"arcs":[[-7388,-7390,-7439,7573,7574,7575,-7497]]},{"type":"Polygon","id":13209,"arcs":[[7576,7577,-7545,7578]]},{"type":"Polygon","id":13279,"arcs":[[-7394,7579,7580,7581,-7579]]},{"type":"Polygon","id":22031,"arcs":[[7582,7583,7584,-7573,-7274,7585]]},{"type":"Polygon","id":48349,"arcs":[[7586,7587,7588,-7498,-7576]]},{"type":"Polygon","id":48425,"arcs":[[-7538,-7496,-7487,7589]]},{"type":"Polygon","id":1023,"arcs":[[7590,7591,-7476,-7332,-7504,7592,7593]]},{"type":"Polygon","id":1011,"arcs":[[-7465,-7541,7594,7595,-7547]]},{"type":"Polygon","id":13267,"arcs":[[7596,7597,-7580,-7501,7598,7599,7600]]},{"type":"Polygon","id":13309,"arcs":[[-7427,-7546,-7578,7601,7602,-7555]]},{"type":"Polygon","id":13093,"arcs":[[7603,7604,7605,-7542,-7444,-7571]]},{"type":"Polygon","id":22021,"arcs":[[-7565,7606,7607,7608,-7551,-7424,-7448]]},{"type":"Polygon","id":48217,"arcs":[[-7589,7609,7610,7611,-7490,-7499]]},{"type":"Polygon","id":1131,"arcs":[[-7434,-7562,7612,7613,7614,-7502]]},{"type":"Polygon","id":13109,"arcs":[[7615,-7599,-7500,-7452,7616]]},{"type":"MultiPolygon","id":45013,"arcs":[[[-7270,-7235,7617,-7410]],[[7618,-7412]],[[7619]]]},{"type":"Polygon","id":48093,"arcs":[[7620,7621,7622,-7521,-7537]]},{"type":"Polygon","id":22107,"arcs":[[-7484,-7459,7623,7624,7625,7626,7627,-7563]]},{"type":"Polygon","id":22081,"arcs":[[-7586,-7273,-7281,-7475,7628]]},{"type":"Polygon","id":13029,"arcs":[[7629,7630,7631,7632,7633,7634,-7617,-7451,-7471]]},{"type":"Polygon","id":28061,"arcs":[[-7479,7635,7636,7637,7638]]},{"type":"Polygon","id":28023,"arcs":[[-7592,7639,-7636,-7477]]},{"type":"Polygon","id":28129,"arcs":[[-7467,-7455,-7639,7640,7641,7642]]},{"type":"Polygon","id":28021,"arcs":[[-7483,7643,7644,-7624,-7458]]},{"type":"Polygon","id":13259,"arcs":[[7645,7646,7647,-7539,-7505,7648]]},{"type":"Polygon","id":13307,"arcs":[[7649,7650,-7649,-7493,7651]]},{"type":"Polygon","id":13261,"arcs":[[-7543,-7606,7652,7653,7654,-7652,-7492,-7559]]},{"type":"Polygon","id":48035,"arcs":[[7655,7656,7657,-7535,-7590,-7486,-7612]]},{"type":"Polygon","id":1005,"arcs":[[-7648,7658,7659,7660,7661,-7595,-7540]]},{"type":"Polygon","id":22127,"arcs":[[7662,7663,-7473,-7552,-7609,7664]]},{"type":"Polygon","id":22069,"arcs":[[-7474,-7664,7665,7666,7667,7668,-7583,-7629]]},{"type":"Polygon","id":48073,"arcs":[[-7438,-7569,7669,7670,7671,7672,-7574]]},{"type":"Polygon","id":13271,"arcs":[[-7556,-7603,7673,7674,7675,7676]]},{"type":"Polygon","id":13315,"arcs":[[-7677,7677,7678,7679,-7604,-7570,-7557]]},{"type":"Polygon","id":48431,"arcs":[[7680,7681,-7515,-7520,7682,7683]]},{"type":"Polygon","id":13179,"arcs":[[7684,-7600,-7616,-7635,7685,7686]]},{"type":"Polygon","id":48173,"arcs":[[7687,-7527,-7516,-7682,7688]]},{"type":"Polygon","id":48329,"arcs":[[7689,7690,-7530,-7528,-7688]]},{"type":"Polygon","id":48081,"arcs":[[7691,-7683,-7519,-7534,7692]]},{"type":"Polygon","id":48495,"arcs":[[-7031,-7532,7693,7694,7695]]},{"type":"Polygon","id":48135,"arcs":[[-7694,-7531,-7691,7696,7697,7698]]},{"type":"Polygon","id":48399,"arcs":[[-7693,-7533,-7512,7699,7700,7701]]},{"type":"Polygon","id":48083,"arcs":[[7702,-7700,-7511,-7525,7703,7704]]},{"type":"Polygon","id":48049,"arcs":[[-7704,-7526,-7522,-7623,7705,7706,7707]]},{"type":"Polygon","id":48001,"arcs":[[7708,7709,7710,-7575,-7673]]},{"type":"Polygon","id":1109,"arcs":[[7711,7712,7713,-7548,-7596,-7662]]},{"type":"Polygon","id":28127,"arcs":[[-7468,-7643,7714,7715,7716,7717]]},{"type":"Polygon","id":1041,"arcs":[[7718,7719,7720,-7560,-7549,-7714]]},{"type":"Polygon","id":28029,"arcs":[[-7718,7721,7722,7723,-7644,-7482]]},{"type":"Polygon","id":13081,"arcs":[[-7605,-7680,7724,7725,7726,-7653]]},{"type":"Polygon","id":48193,"arcs":[[-7536,-7658,7727,7728,7729,-7621]]},{"type":"Polygon","id":48161,"arcs":[[-7711,7730,7731,-7587]]},{"type":"Polygon","id":13183,"arcs":[[7732,7733,-7601,-7685]]},{"type":"Polygon","id":48109,"arcs":[[-7153,-7336,7734,7735,7736]]},{"type":"Polygon","id":48389,"arcs":[[-7335,7737,7738,7739,7740,-7735]]},{"type":"Polygon","id":48301,"arcs":[[-7334,-7032,-7696,7741,-7738]]},{"type":"Polygon","id":48229,"arcs":[[7742,7743,7744,-7154,-7737]]},{"type":"Polygon","id":48141,"arcs":[[7745,-7259,-7155,-7745]]},{"type":"Polygon","id":1025,"arcs":[[-7503,-7615,7746,7747,7748,-7593]]},{"type":"Polygon","id":13239,"arcs":[[7749,7750,7751,-7659,-7647]]},{"type":"Polygon","id":48419,"arcs":[[-7567,-7572,-7585,7752,7753,7754,7755]]},{"type":"Polygon","id":22025,"arcs":[[-7628,7756,7757,7758,-7607,-7564]]},{"type":"Polygon","id":1013,"arcs":[[-7561,-7721,7759,7760,7761,-7613]]},{"type":"Polygon","id":13161,"arcs":[[-7602,-7577,-7582,7762,7763,7764,-7674]]},{"type":"Polygon","id":13001,"arcs":[[-7598,7765,7766,7767,-7763,-7581]]},{"type":"Polygon","id":13273,"arcs":[[7768,7769,7770,-7650,-7655,7771]]},{"type":"Polygon","id":22059,"arcs":[[-7608,-7759,7772,7773,7774,-7665]]},{"type":"Polygon","id":13243,"arcs":[[-7651,-7771,7775,7776,-7750,-7646]]},{"type":"Polygon","id":13177,"arcs":[[7777,-7772,-7654,-7727,7778]]},{"type":"Polygon","id":28153,"arcs":[[-7591,7779,7780,7781,7782,-7637,-7640]]},{"type":"Polygon","id":28063,"arcs":[[-7724,7783,7784,7785,-7625,-7645]]},{"type":"Polygon","id":48309,"arcs":[[7786,7787,7788,7789,-7656,-7611]]},{"type":"MultiPolygon","id":13051,"arcs":[[[7790,7791,-7630,-7470,-7414]],[[7792,-7633]]]},{"type":"Polygon","id":13321,"arcs":[[7793,7794,7795,7796,7797,-7779,-7726]]},{"type":"Polygon","id":48347,"arcs":[[7798,7799,-7670,-7568,-7756]]},{"type":"Polygon","id":13287,"arcs":[[-7679,7800,7801,7802,-7794,-7725]]},{"type":"Polygon","id":22085,"arcs":[[-7753,-7584,-7669,7803,7804,7805]]},{"type":"Polygon","id":13017,"arcs":[[-7676,7806,7807,-7801,-7678]]},{"type":"Polygon","id":1099,"arcs":[[-7614,-7762,7808,7809,7810,-7747]]},{"type":"Polygon","id":28067,"arcs":[[7811,7812,-7641,-7638,-7783,7813]]},{"type":"Polygon","id":13305,"arcs":[[-7734,7814,7815,7816,7817,-7766,-7597]]},{"type":"Polygon","id":48293,"arcs":[[7818,7819,-7787,-7610,-7588,-7732,7820]]},{"type":"Polygon","id":13069,"arcs":[[7821,7822,7823,7824,7825,-7807,-7675,-7765]]},{"type":"Polygon","id":22043,"arcs":[[-7775,7826,-7666,-7663]]},{"type":"Polygon","id":28031,"arcs":[[-7715,-7642,-7813,7827,7828,7829]]},{"type":"Polygon","id":1067,"arcs":[[7830,7831,-7660,-7752,7832,7833]]},{"type":"Polygon","id":13061,"arcs":[[-7777,7834,7835,-7833,-7751]]},{"type":"Polygon","id":28065,"arcs":[[-7716,-7830,7836,7837,7838]]},{"type":"Polygon","id":13155,"arcs":[[-7826,7839,7840,-7802,-7808]]},{"type":"Polygon","id":22029,"arcs":[[-7757,-7627,7841,7842,7843,7844,7845]]},{"type":"Polygon","id":28077,"arcs":[[7846,7847,-7722,-7717,-7839,7848]]},{"type":"Polygon","id":28001,"arcs":[[-7842,-7626,-7786,7849,7850]]},{"type":"Polygon","id":1035,"arcs":[[7851,7852,-7809,-7761]]},{"type":"Polygon","id":4023,"arcs":[[7853,-7508,-7554]]},{"type":"Polygon","id":48333,"arcs":[[-7730,7854,7855,-7706,-7622]]},{"type":"Polygon","id":28085,"arcs":[[-7784,-7723,-7848,7856,7857,7858,7859]]},{"type":"Polygon","id":48099,"arcs":[[-7790,7860,7861,-7728,-7657]]},{"type":"Polygon","id":13005,"arcs":[[-7768,7862,7863,-7822,-7764]]},{"type":"Polygon","id":48451,"arcs":[[7864,7865,7866,7867,-7684,-7692,-7702]]},{"type":"Polygon","id":1129,"arcs":[[7868,7869,-7780,-7594,-7749,7870]]},{"type":"Polygon","id":13191,"arcs":[[7871,7872,-7815,-7733,-7687]]},{"type":"Polygon","id":13095,"arcs":[[-7798,7873,7874,7875,-7769,-7778]]},{"type":"Polygon","id":48475,"arcs":[[-7742,-7695,-7699,7876,7877,-7739]]},{"type":"Polygon","id":48405,"arcs":[[-7755,7878,7879,7880,-7799]]},{"type":"Polygon","id":48103,"arcs":[[-7877,-7698,7881,7882,7883]]},{"type":"Polygon","id":48461,"arcs":[[7884,7885,-7882,-7697,-7690]]},{"type":"Polygon","id":48383,"arcs":[[-7689,-7681,-7868,7886,7887,-7885]]},{"type":"Polygon","id":48289,"arcs":[[-7731,-7710,7888,7889,7890,-7821]]},{"type":"Polygon","id":13037,"arcs":[[-7776,-7770,-7876,7891,7892,-7835]]},{"type":"Polygon","id":1031,"arcs":[[-7713,7893,7894,7895,-7719]]},{"type":"Polygon","id":1045,"arcs":[[7896,-7894,-7712,-7661,-7832,7897]]},{"type":"Polygon","id":28037,"arcs":[[7898,7899,-7850,-7785,-7860]]},{"type":"Polygon","id":48403,"arcs":[[7900,7901,-7879,-7754,-7806]]},{"type":"Polygon","id":48225,"arcs":[[-7672,7902,7903,7904,7905,-7889,-7709]]},{"type":"Polygon","id":13277,"arcs":[[7906,7907,7908,-7795,-7803,-7841]]},{"type":"Polygon","id":48095,"arcs":[[-7865,-7701,-7703,7909,7910]]},{"type":"Polygon","id":1039,"arcs":[[7911,7912,7913,-7852,-7760,-7720,-7896,7914]]},{"type":"Polygon","id":48235,"arcs":[[7915,7916,-7887,-7867]]},{"type":"Polygon","id":13229,"arcs":[[-7818,7917,7918,-7863,-7767]]},{"type":"Polygon","id":48005,"arcs":[[-7671,-7800,-7881,7919,7920,7921,7922,-7903]]},{"type":"Polygon","id":48145,"arcs":[[7923,-7788,-7820,7924,7925]]},{"type":"Polygon","id":13099,"arcs":[[7926,7927,7928,7929,-7834,-7836,-7893]]},{"type":"Polygon","id":22079,"arcs":[[-7827,-7774,7930,7931,7932,7933,-7667]]},{"type":"Polygon","id":48307,"arcs":[[7934,7935,7936,-7910,-7705,-7708]]},{"type":"Polygon","id":48411,"arcs":[[7937,7938,7939,7940,-7935,-7707,-7856]]},{"type":"Polygon","id":13019,"arcs":[[7941,7942,7943,-7907,-7840,-7825,7944]]},{"type":"Polygon","id":13299,"arcs":[[-7864,-7919,7945,7946,7947,7948,7949,-7823]]},{"type":"Polygon","id":48281,"arcs":[[-7855,-7729,-7862,7950,7951,-7938]]},{"type":"Polygon","id":13127,"arcs":[[-7873,7952,7953,7954,-7816]]},{"type":"Polygon","id":13007,"arcs":[[-7875,7955,7956,7957,-7927,-7892]]},{"type":"Polygon","id":13205,"arcs":[[-7874,-7797,7958,7959,7960,7961,-7956]]},{"type":"Polygon","id":28091,"arcs":[[7962,7963,7964,7965,-7849,-7838]]},{"type":"Polygon","id":28073,"arcs":[[7966,-7963,-7837,-7829,7967]]},{"type":"Polygon","id":28035,"arcs":[[7968,7969,-7968,-7828,-7812,7970]]},{"type":"Polygon","id":28111,"arcs":[[-7814,-7782,7971,7972,7973,-7971]]},{"type":"Polygon","id":28041,"arcs":[[-7870,7974,7975,-7972,-7781]]},{"type":"Polygon","id":13003,"arcs":[[7976,7977,-7945,-7824,-7950]]},{"type":"Polygon","id":48455,"arcs":[[7978,7979,7980,-7904,-7923]]},{"type":"Polygon","id":48371,"arcs":[[7981,7982,7983,7984,-7740,-7878,-7884]]},{"type":"Polygon","id":28157,"arcs":[[7985,7986,7987,-7843,-7851,-7900]]},{"type":"Polygon","id":22115,"arcs":[[-7668,-7934,7988,7989,7990,-7804]]},{"type":"Polygon","id":13025,"arcs":[[-7817,-7955,7991,7992,-7946,-7918]]},{"type":"Polygon","id":48395,"arcs":[[7993,7994,-7925,-7819,-7891,7995]]},{"type":"Polygon","id":28005,"arcs":[[7996,7997,7998,-7986,-7899,-7859,7999]]},{"type":"Polygon","id":28113,"arcs":[[8000,8001,-8000,-7858,8002]]},{"type":"Polygon","id":28147,"arcs":[[-7966,8003,-8003,-7857,-7847]]},{"type":"Polygon","id":13075,"arcs":[[-7944,8004,8005,8006,-7908]]},{"type":"Polygon","id":22009,"arcs":[[-7846,8007,8008,8009,8010,-7931,-7773,-7758]]},{"type":"Polygon","id":13071,"arcs":[[-7909,-8007,8011,8012,-7959,-7796]]},{"type":"Polygon","id":1069,"arcs":[[-7831,-7930,8013,8014,8015,-7898]]},{"type":"Polygon","id":48027,"arcs":[[8016,-7951,-7861,-7789,-7924,8017,8018]]},{"type":"Polygon","id":1003,"arcs":[[8019,8020,8021,8022,-7871,-7748,-7811]]},{"type":"Polygon","id":1053,"arcs":[[-7914,8023,8024,8025,-8020,-7810,-7853]]},{"type":"Polygon","id":13201,"arcs":[[8026,-7928,-7958,8027]]},{"type":"Polygon","id":1061,"arcs":[[8028,8029,-7915,-7895,-7897,-8016]]},{"type":"Polygon","id":13173,"arcs":[[-7942,-7978,8030,8031,8032]]},{"type":"Polygon","id":48351,"arcs":[[8033,8034,8035,8036,-7901,-7805,-7991]]},{"type":"Polygon","id":13065,"arcs":[[-8031,-7977,-7949,8037,8038,8039]]},{"type":"Polygon","id":1097,"arcs":[[-8023,8040,8041,8042,-7975,-7869]]},{"type":"MultiPolygon","id":13039,"arcs":[[[-7954,8043,8044,8045,-7992]],[[8046]]]},{"type":"Polygon","id":48241,"arcs":[[-7902,-8037,8047,8048,8049,-7920,-7880]]},{"type":"Polygon","id":48373,"arcs":[[8050,8051,8052,-7979,-7922,8053]]},{"type":"Polygon","id":48331,"arcs":[[-7995,8054,8055,8056,-8018,-7926]]},{"type":"Polygon","id":48243,"arcs":[[-7743,-7736,-7741,-7985,8057,8058]]},{"type":"Polygon","id":48313,"arcs":[[-7906,8059,8060,8061,-7890]]},{"type":"Polygon","id":48413,"arcs":[[8062,8063,8064,8065,-7916,-7866]]},{"type":"Polygon","id":48327,"arcs":[[-7911,-7937,8066,8067,-8063]]},{"type":"Polygon","id":48105,"arcs":[[-7982,-7883,-7886,-7888,-7917,-8066,8068,8069,8070]]},{"type":"Polygon","id":13087,"arcs":[[8071,8072,-8028,-7957,-7962,8073]]},{"type":"Polygon","id":13253,"arcs":[[-8014,-7929,-8027,-8073,8074]]},{"type":"Polygon","id":13131,"arcs":[[8075,8076,-8074,-7961,8077]]},{"type":"Polygon","id":13275,"arcs":[[8078,8079,-8078,-7960,-8013,8080]]},{"type":"Polygon","id":13027,"arcs":[[8081,8082,-8081,-8012,-8006,8083]]},{"type":"Polygon","id":13049,"arcs":[[-7993,-8046,8084,8085,-7947]]},{"type":"Polygon","id":48457,"arcs":[[8086,-8054,-7921,-8050]]},{"type":"Polygon","id":48471,"arcs":[[8087,-8060,-7905,-7981,8088,8089]]},{"type":"Polygon","id":48053,"arcs":[[8090,8091,8092,-7939,-7952,-8017,8093]]},{"type":"Polygon","id":13185,"arcs":[[8094,8095,-8084,-8005,-7943,-8033,8096]]},{"type":"Polygon","id":22077,"arcs":[[8097,8098,8099,8100,8101,-8009,8102]]},{"type":"Polygon","id":28109,"arcs":[[-7964,-7967,-7970,8103,8104,8105,8106]]},{"type":"Polygon","id":22117,"arcs":[[8107,-8001,-8004,-7965,-8107,8108]]},{"type":"Polygon","id":22105,"arcs":[[-7997,-8002,-8108,8109,8110,8111,8112,8113]]},{"type":"Polygon","id":22091,"arcs":[[8114,-7998,-8114,8115,8116]]},{"type":"Polygon","id":22037,"arcs":[[8117,8118,-7987,-7999,-8115,8119]]},{"type":"Polygon","id":28039,"arcs":[[-8043,8120,8121,-7973,-7976]]},{"type":"MultiPolygon","id":22125,"arcs":[[[-7988,-8119,-8098,-7844]],[[-8008,-7845,-8103]]]},{"type":"Polygon","id":12063,"arcs":[[8122,8123,8124,8125,-8015,-8075,8126]]},{"type":"Polygon","id":12059,"arcs":[[-8126,8127,8128,-8029]]},{"type":"Polygon","id":22039,"arcs":[[-7932,-8011,8129,8130,8131]]},{"type":"Polygon","id":12131,"arcs":[[8132,8133,8134,8135,8136,8137,-7912,-8030,-8129]]},{"type":"Polygon","id":48041,"arcs":[[-8062,8138,8139,8140,-7996]]},{"type":"Polygon","id":48319,"arcs":[[-8067,-7936,-7941,8141,8142,8143]]},{"type":"Polygon","id":48299,"arcs":[[8144,-8142,-7940,-8093,8145]]},{"type":"Polygon","id":28131,"arcs":[[-8104,-7969,-7974,-8122,8146,8147]]},{"type":"Polygon","id":48491,"arcs":[[-8057,8148,8149,8150,-8094,-8019]]},{"type":"Polygon","id":48407,"arcs":[[8151,8152,-8089,-7980,-8053]]},{"type":"Polygon","id":22003,"arcs":[[-7933,-8132,8153,8154,-7989]]},{"type":"Polygon","id":22011,"arcs":[[-8155,8155,8156,-8034,-7990]]},{"type":"Polygon","id":48185,"arcs":[[-8088,8157,8158,8159,-8139,-8061]]},{"type":"Polygon","id":13101,"arcs":[[-8032,-8040,8160,8161,-8097]]},{"type":"Polygon","id":22097,"arcs":[[-8010,-8102,8162,8163,8164,-8130]]},{"type":"Polygon","id":12133,"arcs":[[-8133,-8128,-8125,8165]]},{"type":"Polygon","id":12089,"arcs":[[8166,-8085,-8045,8167,8168]]},{"type":"Polygon","id":28059,"arcs":[[-8042,8169,8170,-8147,-8121]]},{"type":"Polygon","id":48051,"arcs":[[-8141,8171,8172,-8055,-7994]]},{"type":"Polygon","id":22033,"arcs":[[-8117,8173,8174,8175,8176,-8120]]},{"type":"Polygon","id":48267,"arcs":[[8177,8178,8179,8180,-8064,-8068,-8144]]},{"type":"Polygon","id":12039,"arcs":[[-8072,-8077,8181,8182,-8127]]},{"type":"Polygon","id":22103,"arcs":[[-8106,8183,8184,-8110,-8109]]},{"type":"Polygon","id":48435,"arcs":[[8185,-8069,-8065,-8181,8186]]},{"type":"Polygon","id":12073,"arcs":[[8187,-8182,-8076,-8080,8188,8189]]},{"type":"Polygon","id":28047,"arcs":[[-8171,8190,8191,-8148]]},{"type":"Polygon","id":12065,"arcs":[[8192,8193,-8189,-8079,-8083,8194,8195]]},{"type":"Polygon","id":48043,"arcs":[[8196,8197,-8058,-7984,8198]]},{"type":"Polygon","id":48443,"arcs":[[-8071,8199,8200,-8199,-7983]]},{"type":"Polygon","id":22121,"arcs":[[8201,-8099,-8118,-8177]]},{"type":"Polygon","id":22063,"arcs":[[-8116,-8113,8202,8203,-8174]]},{"type":"Polygon","id":28045,"arcs":[[-8184,-8105,-8192,8204]]},{"type":"Polygon","id":12079,"arcs":[[8205,8206,8207,-8195,-8082,-8096,8208]]},{"type":"Polygon","id":48377,"arcs":[[-8198,8209,-8059]]},{"type":"Polygon","id":48453,"arcs":[[8210,8211,8212,-8091,-8151,8213]]},{"type":"Polygon","id":48339,"arcs":[[-8153,8214,8215,8216,-8158,-8090]]},{"type":"Polygon","id":12047,"arcs":[[-8209,-8095,-8162,8217,8218]]},{"type":"Polygon","id":12013,"arcs":[[8219,8220,-8123,8221]]},{"type":"Polygon","id":12077,"arcs":[[-8222,-8183,-8188,8222,8223,8224]]},{"type":"Polygon","id":12023,"arcs":[[8225,8226,-8218,-8161,-8039,8227,8228,8229]]},{"type":"Polygon","id":12003,"arcs":[[-8228,-8038,-7948,-8086,-8167,8230,8231,8232,8233]]},{"type":"Polygon","id":12031,"arcs":[[8234,-8231,-8169,8235,8236]]},{"type":"MultiPolygon","id":12005,"arcs":[[[-8124,-8221,8237,8238,-8134,-8166]],[[8239,8240]]]},{"type":"Polygon","id":48287,"arcs":[[-8056,-8173,8241,8242,8243,-8149]]},{"type":"Polygon","id":48199,"arcs":[[-8087,-8049,8244,8245,8246,-8051]]},{"type":"Polygon","id":48171,"arcs":[[-8178,-8143,-8145,8247,8248,8249]]},{"type":"Polygon","id":48031,"arcs":[[-8092,-8213,8250,8251,8252,-8248,-8146]]},{"type":"MultiPolygon","id":22099,"arcs":[[[-8101,8253,8254,8255,-8163]],[[8256,8257,8258]]]},{"type":"Polygon","id":22047,"arcs":[[-8176,8259,8260,8261,-8254,-8100,-8202]]},{"type":"Polygon","id":22019,"arcs":[[-8157,8262,8263,8264,-8035]]},{"type":"Polygon","id":22053,"arcs":[[8265,8266,-8263,-8156,-8154,8267]]},{"type":"Polygon","id":48291,"arcs":[[-8215,-8152,-8052,-8247,8268,8269,8270]]},{"type":"Polygon","id":22001,"arcs":[[8271,-8268,-8131,-8165,8272]]},{"type":"Polygon","id":12121,"arcs":[[-8227,8273,8274,-8206,-8219]]},{"type":"Polygon","id":48021,"arcs":[[8275,-8214,-8150,-8244,8276]]},{"type":"MultiPolygon","id":12091,"arcs":[[[8277,-8024,-7913,-8138,8278]],[[8279,8280]],[[-8136,8281]]]},{"type":"MultiPolygon","id":12113,"arcs":[[[8282,-8025,-8278,8283]],[[8284,8285,-8280,8286]]]},{"type":"Polygon","id":48477,"arcs":[[-8172,-8140,-8160,8287,8288,8289,-8242]]},{"type":"MultiPolygon","id":12033,"arcs":[[[8290,-8021,-8026,-8283]],[[-8285,8291]]]},{"type":"Polygon","id":22055,"arcs":[[-8256,8292,8293,-8273,-8164]]},{"type":"Polygon","id":22005,"arcs":[[-8175,-8204,8294,8295,8296,-8260]]},{"type":"Polygon","id":48209,"arcs":[[8297,8298,-8251,-8212,8299]]},{"type":"Polygon","id":12123,"arcs":[[8300,8301,8302,-8196,-8208]]},{"type":"Polygon","id":22095,"arcs":[[8303,8304,8305,8306,-8295,-8203,-8112]]},{"type":"Polygon","id":12129,"arcs":[[8307,8308,-8223,-8190,-8194]]},{"type":"Polygon","id":48137,"arcs":[[8309,8310,8311,-8187,-8180,8312,8313]]},{"type":"Polygon","id":48465,"arcs":[[8314,-8200,-8070,-8186,-8312,8315]]},{"type":"Polygon","id":48265,"arcs":[[8316,-8313,-8179,-8250,8317,8318]]},{"type":"Polygon","id":12067,"arcs":[[-8207,-8275,8319,8320,-8301]]},{"type":"Polygon","id":48473,"arcs":[[-8159,-8217,8321,8322,8323,-8288]]},{"type":"Polygon","id":12109,"arcs":[[8324,8325,8326,8327,-8237]]},{"type":"Polygon","id":48361,"arcs":[[-8048,-8036,-8265,8328,8329,8330,-8245]]},{"type":"Polygon","id":12045,"arcs":[[8331,8332,-8240,8333,-8238,-8220,-8225]]},{"type":"Polygon","id":12019,"arcs":[[8334,-8232,-8235,-8328,8335]]},{"type":"Polygon","id":48245,"arcs":[[8336,8337,-8269,-8246,-8331]]},{"type":"Polygon","id":48149,"arcs":[[-8290,8338,8339,8340,8341,-8277,-8243]]},{"type":"Polygon","id":48201,"arcs":[[-8216,-8271,8342,8343,8344,8345,8346,-8322]]},{"type":"Polygon","id":22093,"arcs":[[-8307,8347,8348,-8296]]},{"type":"Polygon","id":22071,"arcs":[[8349,8350,8351,8352]]},{"type":"Polygon","id":22113,"arcs":[[-8272,-8294,8353,8354,8355,-8266]]},{"type":"Polygon","id":12125,"arcs":[[8356,8357,-8229,-8234]]},{"type":"Polygon","id":12007,"arcs":[[-8233,-8335,8358,-8357]]},{"type":"Polygon","id":48259,"arcs":[[8359,-8318,-8249,-8253,8360,8361]]},{"type":"Polygon","id":48015,"arcs":[[8362,8363,8364,-8339,-8289,-8324]]},{"type":"Polygon","id":22089,"arcs":[[-8305,8365,8366,8367]]},{"type":"Polygon","id":48385,"arcs":[[-8317,8368,8369,-8314]]},{"type":"Polygon","id":22007,"arcs":[[-8349,8370,8371,8372,-8258,8373,-8261,-8297]]},{"type":"Polygon","id":48055,"arcs":[[8374,8375,-8300,-8211,-8276]]},{"type":"Polygon","id":22023,"arcs":[[-8267,-8356,8376,-8329,-8264]]},{"type":"Polygon","id":22087,"arcs":[[-8353,8377,8378]]},{"type":"Polygon","id":48091,"arcs":[[8379,-8361,-8252,-8299,8380]]},{"type":"Polygon","id":12037,"arcs":[[-8224,-8309,8381,-8332]]},{"type":"Polygon","id":48089,"arcs":[[8382,8383,8384,-8340,-8365]]},{"type":"Polygon","id":22101,"arcs":[[-8373,8385,8386,8387,-8259]]},{"type":"Polygon","id":12001,"arcs":[[-8359,8388,8389,8390,8391,-8230,-8358]]},{"type":"Polygon","id":12041,"arcs":[[-8392,8392,8393,-8320,-8274,-8226]]},{"type":"Polygon","id":22057,"arcs":[[-8348,-8306,-8368,8394,8395,8396,8397,8398,-8371]]},{"type":"Polygon","id":48019,"arcs":[[-8360,8399,8400,8401,-8369,-8319]]},{"type":"Polygon","id":22075,"arcs":[[-8350,-8379,8402,8403]]},{"type":"Polygon","id":48071,"arcs":[[8404,8405,8406,-8343,-8270,-8338]]},{"type":"Polygon","id":48187,"arcs":[[-8376,8407,8408,8409,-8381,-8298]]},{"type":"Polygon","id":12107,"arcs":[[-8336,-8327,8410,8411,8412,-8389]]},{"type":"Polygon","id":12029,"arcs":[[-8394,8413,8414,-8302,-8321]]},{"type":"Polygon","id":48157,"arcs":[[-8347,8415,8416,-8363,-8323]]},{"type":"Polygon","id":48177,"arcs":[[8417,8418,8419,8420,-8408,-8375,-8342]]},{"type":"Polygon","id":48029,"arcs":[[8421,8422,8423,-8400,-8362,-8380,-8410]]},{"type":"Polygon","id":48325,"arcs":[[8424,-8401,-8424,8425,8426]]},{"type":"Polygon","id":12035,"arcs":[[8427,8428,-8411,-8326]]},{"type":"MultiPolygon","id":22045,"arcs":[[[-8257,-8388,8429,-8354,-8293,-8255,-8262,-8374]],[[8430]]]},{"type":"Polygon","id":48285,"arcs":[[-8341,-8385,8431,8432,8433,-8418]]},{"type":"Polygon","id":48481,"arcs":[[-8417,8434,8435,8436,-8383,-8364]]},{"type":"Polygon","id":48463,"arcs":[[8437,8438,-8310,-8370,-8402,-8425]]},{"type":"Polygon","id":48271,"arcs":[[8439,8440,-8316,-8311,-8439]]},{"type":"Polygon","id":48039,"arcs":[[-8416,-8346,8441,8442,8443,-8435]]},{"type":"Polygon","id":12075,"arcs":[[-8393,-8391,8444,8445,8446,-8414]]},{"type":"MultiPolygon","id":48167,"arcs":[[[8447,-8406]],[[-8345,8448,-8442]],[[8449]]]},{"type":"Polygon","id":12083,"arcs":[[8450,8451,8452,8453,-8445,-8390,-8413]]},{"type":"Polygon","id":48493,"arcs":[[8454,8455,-8422,-8409,-8421]]},{"type":"MultiPolygon","id":12127,"arcs":[[[-8412,-8429,8456,8457,8458,8459,8460,8461,-8451]],[[8462]]]},{"type":"Polygon","id":48123,"arcs":[[-8434,8463,8464,8465,-8419]]},{"type":"MultiPolygon","id":22109,"arcs":[[[8466,-8386,-8372,-8399]],[[8467]],[[8468]]]},{"type":"Polygon","id":12069,"arcs":[[-8462,8469,8470,8471,8472,-8452]]},{"type":"Polygon","id":48239,"arcs":[[-8432,-8384,-8437,8473,8474,8475,8476,8477,8478,8479]]},{"type":"Polygon","id":48013,"arcs":[[8480,8481,8482,8483,-8426,-8423,-8456]]},{"type":"Polygon","id":48321,"arcs":[[8484,8485,-8474,-8436,-8444]]},{"type":"Polygon","id":48255,"arcs":[[8486,8487,8488,-8481,-8455,-8420,-8466]]},{"type":"MultiPolygon","id":22051,"arcs":[[[8489,-8351,-8404,8490,-8395,-8367]],[[8491,-8397]]]},{"type":"Polygon","id":48469,"arcs":[[8492,8493,-8464,-8433,-8480,8494]]},{"type":"Polygon","id":48507,"arcs":[[-8438,8495,8496,8497]]},{"type":"Polygon","id":48163,"arcs":[[8498,-8496,-8427,-8484]]},{"type":"Polygon","id":48323,"arcs":[[8499,-8440,-8498,8500,8501]]},{"type":"Polygon","id":12017,"arcs":[[8502,8503,8504,-8446,-8454]]},{"type":"Polygon","id":12119,"arcs":[[-8453,-8473,8505,8506,8507,-8503]]},{"type":"Polygon","id":48175,"arcs":[[8508,8509,-8487,-8465,-8494]]},{"type":"Polygon","id":12117,"arcs":[[-8470,-8461,8510]]},{"type":"Polygon","id":48297,"arcs":[[8511,8512,8513,8514,-8482,-8489,8515]]},{"type":"Polygon","id":12095,"arcs":[[-8511,8516,8517,-8471]]},{"type":"Polygon","id":48025,"arcs":[[-8510,8518,8519,-8516,-8488]]},{"type":"Polygon","id":12053,"arcs":[[8520,-8504,-8508,8521]]},{"type":"Polygon","id":48283,"arcs":[[8522,-8499,8523,8524]]},{"type":"Polygon","id":48311,"arcs":[[-8524,-8483,-8515,8525]]},{"type":"Polygon","id":48127,"arcs":[[-8523,8526,-8501,-8497]]},{"type":"MultiPolygon","id":12009,"arcs":[[[-8458,8527]],[[8528,8529,8530,-8517,-8460]],[[8531]],[[8532]]]},{"type":"Polygon","id":48391,"arcs":[[8533,8534,8535,8536,-8519,-8509,-8493,8537]]},{"type":"Polygon","id":12101,"arcs":[[8538,-8522,-8507,8539,8540,8541]]},{"type":"Polygon","id":12105,"arcs":[[-8506,-8472,8542,8543,8544,8545,-8540]]},{"type":"Polygon","id":12097,"arcs":[[8546,-8543,-8518,-8531,8547]]},{"type":"MultiPolygon","id":48057,"arcs":[[[-8495,-8479,8548,-8538]],[[8549,-8477]],[[8550,-8475,-8486]],[[8551]],[[8552,8553]]]},{"type":"Polygon","id":48479,"arcs":[[8554,8555,8556,8557,-8502,-8527,-8525]]},{"type":"Polygon","id":12103,"arcs":[[8558,-8542,8559]]},{"type":"Polygon","id":12057,"arcs":[[8560,8561,-8560,-8541,-8546]]},{"type":"Polygon","id":48409,"arcs":[[-8520,-8537,8562,8563,8564,8565,8566,-8512]]},{"type":"MultiPolygon","id":48007,"arcs":[[[8567,-8553,8568,-8535]],[[8569]],[[8570,-8564]]]},{"type":"Polygon","id":48131,"arcs":[[-8555,-8526,-8514,8571,8572,8573]]},{"type":"Polygon","id":48249,"arcs":[[8574,-8572,-8513,-8567,8575,8576]]},{"type":"Polygon","id":12061,"arcs":[[8577,8578,8579,-8548,-8530]]},{"type":"MultiPolygon","id":48355,"arcs":[[[8580,8581,-8576,-8566]],[[8582,8583]]]},{"type":"Polygon","id":12049,"arcs":[[-8545,8584,8585,8586]]},{"type":"Polygon","id":12055,"arcs":[[8587,8588,-8585,-8544,8589]]},{"type":"Polygon","id":12081,"arcs":[[8590,-8561,-8587,8591,8592]]},{"type":"Polygon","id":12093,"arcs":[[-8547,-8580,8593,8594,8595,-8590]]},{"type":"MultiPolygon","id":48273,"arcs":[[[-8582,8596,8597,8598,-8577]],[[-8583,8599]]]},{"type":"Polygon","id":12111,"arcs":[[-8594,-8579,8600,8601,8602,8603]]},{"type":"Polygon","id":12115,"arcs":[[-8593,8604,8605,8606,8607,8608]]},{"type":"Polygon","id":48247,"arcs":[[8609,8610,-8556,-8574,8611]]},{"type":"Polygon","id":12027,"arcs":[[8612,8613,8614,-8605,-8592,-8586,-8589]]},{"type":"Polygon","id":48505,"arcs":[[8615,-8557,-8611,8616]]},{"type":"Polygon","id":48047,"arcs":[[-8573,-8575,-8599,8617,8618,8619,-8612]]},{"type":"MultiPolygon","id":12085,"arcs":[[[8620,-8602]],[[-8604,8621,8622,-8595]]]},{"type":"Polygon","id":12043,"arcs":[[8623,8624,-8588,-8596]]},{"type":"MultiPolygon","id":48261,"arcs":[[[8625,-8618,-8598,8626,8627]],[[8628,8629]]]},{"type":"MultiPolygon","id":12015,"arcs":[[[8630,-8606,-8615]],[[-8613,-8625,8631,8632]],[[-8608,8633]]]},{"type":"Polygon","id":12099,"arcs":[[8634,-8623,8635,8636]]},{"type":"Polygon","id":12051,"arcs":[[-8635,8637,8638,8639,-8624]]},{"type":"Polygon","id":48427,"arcs":[[8640,-8617,-8610,-8620,8641]]},{"type":"Polygon","id":48215,"arcs":[[8642,8643,-8642,-8619,-8626,8644]]},{"type":"MultiPolygon","id":12071,"arcs":[[[8645,-8632,-8640,8646]],[[8647]]]},{"type":"MultiPolygon","id":48489,"arcs":[[[-8645,-8628,8648,8649]],[[8650,-8629,8651]]]},{"type":"Polygon","id":12021,"arcs":[[8652,8653,8654,8655,-8647,-8639]]},{"type":"MultiPolygon","id":48061,"arcs":[[[8656]],[[8657,-8643,-8650]]]},{"type":"Polygon","id":12011,"arcs":[[8658,8659,-8653,-8638,-8637]]},{"type":"Polygon","id":12086,"arcs":[[8660,8661,-8654,-8660]]},{"type":"MultiPolygon","id":12087,"arcs":[[[8662,-8655,-8662]],[[8663]]]},{"type":"Polygon","id":27031,"arcs":[[-190,8664]]},{"type":"MultiPolygon","id":26083,"arcs":[[[8665]],[[8666,8667]]]},{"type":"MultiPolygon","id":26061,"arcs":[[[8668,-8668]],[[8669,8670,8671,8672]]]},{"type":"Polygon","id":26131,"arcs":[[8673,-8673,8674,8675]]},{"type":"Polygon","id":26013,"arcs":[[8676,8677,8678,-8671]]},{"type":"Polygon","id":26103,"arcs":[[8679,8680,8681,-8678,8682,8683,8684]]},{"type":"Polygon","id":26053,"arcs":[[8685,8686,-532,8687,-8676]]},{"type":"Polygon","id":26095,"arcs":[[8688,8689,8690,8691,8692]]},{"type":"Polygon","id":26003,"arcs":[[8693,-8684,8694,-8693,8695]]},{"type":"Polygon","id":26153,"arcs":[[8696,8697,-8696,-8692,8698]]},{"type":"Polygon","id":26071,"arcs":[[8699,8700,8701,-8686,-8675,-8672,-8679,-8682,8702]]},{"type":"Polygon","id":55125,"arcs":[[8703,-656,-533,-8687,-8702,8704]]},{"type":"Polygon","id":26043,"arcs":[[8705,8706,8707,-8703,-8681]]},{"type":"Polygon","id":26097,"arcs":[[8708,-8699,-8691,8709]]},{"type":"Polygon","id":26041,"arcs":[[-8694,-8698,8710,8711,-8685]]},{"type":"MultiPolygon","id":26033,"arcs":[[[8712,-8710,-8690]],[[8713]]]},{"type":"Polygon","id":55041,"arcs":[[8714,8715,8716,8717,-8705,-8701,8718]]},{"type":"Polygon","id":55037,"arcs":[[-8719,-8700,-8708,8719]]},{"type":"Polygon","id":26109,"arcs":[[-8706,-8680,-8712,8720,8721]]},{"type":"Polygon","id":55085,"arcs":[[-652,-8704,-8718,8722,8723]]},{"type":"Polygon","id":55075,"arcs":[[-8707,-8722,8724,8725,-8715,-8720]]},{"type":"Polygon","id":26047,"arcs":[[8726,8727,8728]]},{"type":"Polygon","id":26031,"arcs":[[8729,8730,8731,8732,8733,-8728]]},{"type":"Polygon","id":26141,"arcs":[[8734,8735,8736,-8731]]},{"type":"Polygon","id":55069,"arcs":[[8737,8738,-789,-653,-8724]]},{"type":"Polygon","id":55067,"arcs":[[8739,8740,8741,-8738,-8723,-8717,8742]]},{"type":"Polygon","id":55083,"arcs":[[8743,-8743,-8716,-8726,8744,8745,8746]]},{"type":"Polygon","id":26029,"arcs":[[8747,8748,-8729,-8734,8749]]},{"type":"MultiPolygon","id":55029,"arcs":[[[8750]],[[8751,8752,8753]]]},{"type":"Polygon","id":26007,"arcs":[[8754,8755,8756,-8736]]},{"type":"Polygon","id":26009,"arcs":[[8757,8758,8759,-8748,8760]]},{"type":"Polygon","id":26137,"arcs":[[8761,-8761,-8750,-8733,8762]]},{"type":"Polygon","id":26119,"arcs":[[8763,-8763,-8732,-8737,-8757]]},{"type":"Polygon","id":26089,"arcs":[[8764,8765,8766]]},{"type":"Polygon","id":55073,"arcs":[[8767,-1016,-873,-790,-8739,-8742,8768]]},{"type":"Polygon","id":55078,"arcs":[[8769,-8740,-8744]]},{"type":"Polygon","id":55115,"arcs":[[-8769,-8741,-8770,-8747,8770,8771,8772]]},{"type":"Polygon","id":36089,"arcs":[[8773,8774,8775,-914,-1194,-1200]]},{"type":"Polygon","id":26079,"arcs":[[8776,8777,8778,-8758]]},{"type":"Polygon","id":26039,"arcs":[[8779,-8777,-8762,8780]]},{"type":"Polygon","id":26001,"arcs":[[8781,8782,-8756,8783]]},{"type":"Polygon","id":26055,"arcs":[[8784,8785,-8766,8786,-8759,-8779]]},{"type":"Polygon","id":26135,"arcs":[[8787,-8781,-8764,-8783]]},{"type":"Polygon","id":26019,"arcs":[[8788,8789,-8767,-8786]]},{"type":"Polygon","id":55061,"arcs":[[8790,-8754,8791,8792,8793]]},{"type":"Polygon","id":55097,"arcs":[[-8768,8794,8795,8796,-1017]]},{"type":"Polygon","id":55135,"arcs":[[8797,8798,-8795,-8773,8799]]},{"type":"Polygon","id":55009,"arcs":[[8800,8801,-8771,-8746,8802,-8794,8803]]},{"type":"Polygon","id":55087,"arcs":[[-8772,-8802,8804,8805,-8800]]},{"type":"Polygon","id":26101,"arcs":[[8806,-8789,8807,8808,8809]]},{"type":"Polygon","id":26069,"arcs":[[-8782,8810,8811,8812]]},{"type":"Polygon","id":26165,"arcs":[[-8785,8813,8814,8815,-8808]]},{"type":"Polygon","id":26113,"arcs":[[-8778,8816,8817,8818,-8814]]},{"type":"Polygon","id":26143,"arcs":[[-8780,8819,8820,8821,-8817]]},{"type":"Polygon","id":26129,"arcs":[[-8788,-8813,8822,8823,-8820]]},{"type":"Polygon","id":36045,"arcs":[[8824,8825,-8775,8826]]},{"type":"Polygon","id":55071,"arcs":[[-8793,8827,8828,8829,-8804]]},{"type":"Polygon","id":55001,"arcs":[[-1128,-1013,-8797,8830,8831,8832]]},{"type":"Polygon","id":55137,"arcs":[[8833,-8831,-8796,-8799,8834,8835]]},{"type":"Polygon","id":55139,"arcs":[[8836,-8835,-8798,-8806,8837,8838]]},{"type":"Polygon","id":55015,"arcs":[[-8838,-8805,-8801,-8830,8839,8840]]},{"type":"Polygon","id":36049,"arcs":[[-8774,-1199,8841,8842,-8827]]},{"type":"Polygon","id":26105,"arcs":[[8843,8844,-8810,8845]]},{"type":"Polygon","id":26085,"arcs":[[8846,-8846,-8809,-8816,8847]]},{"type":"Polygon","id":26133,"arcs":[[8848,-8848,-8815,-8819,8849]]},{"type":"Polygon","id":26011,"arcs":[[8850,8851,8852,-8823,-8812]]},{"type":"Polygon","id":26035,"arcs":[[8853,-8850,-8818,-8822,8854]]},{"type":"Polygon","id":26051,"arcs":[[-8855,-8821,-8824,-8853,8855,8856]]},{"type":"Polygon","id":26063,"arcs":[[8857,8858,8859]]},{"type":"Polygon","id":26017,"arcs":[[8860,-8856,-8852,8861,8862,8863]]},{"type":"Polygon","id":55077,"arcs":[[8864,-8832,-8834,8865]]},{"type":"Polygon","id":55047,"arcs":[[-8866,-8836,-8837,8866,8867,8868]]},{"type":"Polygon","id":55039,"arcs":[[-8867,-8839,-8841,8869,8870,8871]]},{"type":"Polygon","id":55117,"arcs":[[8872,8873,8874,-8870,-8840,-8829]]},{"type":"Polygon","id":26111,"arcs":[[8875,8876,-8857,-8861,8877]]},{"type":"Polygon","id":26127,"arcs":[[8878,-8844,8879,8880]]},{"type":"Polygon","id":26073,"arcs":[[-8854,-8877,8881,8882,8883]]},{"type":"Polygon","id":26123,"arcs":[[-8880,-8847,8884,8885,8886,8887]]},{"type":"Polygon","id":26107,"arcs":[[-8849,-8884,8888,-8885]]},{"type":"Polygon","id":26157,"arcs":[[8889,8890,8891,-8863,8892,-8860,8893]]},{"type":"Polygon","id":36075,"arcs":[[-8843,8894,8895,8896,8897,8898,-8825]]},{"type":"Polygon","id":26151,"arcs":[[8899,8900,8901,-8894,-8859]]},{"type":"Polygon","id":55021,"arcs":[[8902,-8833,-8865,-8869,8903,8904]]},{"type":"Polygon","id":55111,"arcs":[[-8903,8905,-1456,-1352,-1315,-1125]]},{"type":"Polygon","id":55027,"arcs":[[8906,8907,8908,8909,-8904,-8868,-8872]]},{"type":"Polygon","id":36065,"arcs":[[-8842,-1198,-1560,8910,-8895]]},{"type":"Polygon","id":26145,"arcs":[[8911,8912,-8878,-8864,-8892,8913]]},{"type":"Polygon","id":55131,"arcs":[[-8871,-8875,8914,8915,-8907]]},{"type":"Polygon","id":55089,"arcs":[[-8874,8916,8917,-8915]]},{"type":"Polygon","id":26121,"arcs":[[8918,-8881,-8888,8919,8920]]},{"type":"Polygon","id":26117,"arcs":[[-8886,-8889,-8883,8921,8922,8923]]},{"type":"Polygon","id":26057,"arcs":[[-8882,-8876,-8913,8924,-8922]]},{"type":"Polygon","id":36011,"arcs":[[8925,8926,8927,8928,-8898,8929,8930]]},{"type":"Polygon","id":36063,"arcs":[[8931,8932,8933,8934]]},{"type":"Polygon","id":36073,"arcs":[[8935,8936,8937,-8933]]},{"type":"Polygon","id":36055,"arcs":[[8938,8939,-8937,8940,8941,8942]]},{"type":"Polygon","id":36117,"arcs":[[8943,8944,-8942,8945,-8928]]},{"type":"Polygon","id":26087,"arcs":[[-8902,8946,8947,8948,8949,-8890]]},{"type":"Polygon","id":26081,"arcs":[[8950,8951,8952,8953,-8920,-8887,-8924]]},{"type":"Polygon","id":55025,"arcs":[[-8910,8954,8955,8956,-1452,-8906,-8905]]},{"type":"Polygon","id":36067,"arcs":[[8957,-8930,-8897,8958]]},{"type":"Polygon","id":26049,"arcs":[[-8891,-8950,8959,8960,8961,-8914]]},{"type":"Polygon","id":26139,"arcs":[[8962,-8921,-8954,8963]]},{"type":"Polygon","id":55055,"arcs":[[8964,-8955,-8909,8965,8966]]},{"type":"Polygon","id":55133,"arcs":[[8967,8968,8969,-8966,-8908,-8916]]},{"type":"Polygon","id":55079,"arcs":[[-8918,8970,8971,-8968]]},{"type":"Polygon","id":36053,"arcs":[[-8911,-1559,8972,8973,-8959,-8896]]},{"type":"Polygon","id":26147,"arcs":[[-8947,-8901,8974,8975]]},{"type":"Polygon","id":26155,"arcs":[[-8912,-8962,8976,8977,8978]]},{"type":"Polygon","id":36037,"arcs":[[8979,8980,-8934,-8938,-8940,8981]]},{"type":"Polygon","id":26067,"arcs":[[8982,8983,8984,-8951,-8923]]},{"type":"Polygon","id":26037,"arcs":[[-8925,-8979,8985,8986,-8983]]},{"type":"Polygon","id":36029,"arcs":[[8987,8988,8989,-8935,-8981,8990]]},{"type":"Polygon","id":36069,"arcs":[[8991,8992,8993,-8943,-8945,8994]]},{"type":"Polygon","id":36099,"arcs":[[8995,8996,8997,-8995,-8944,-8927]]},{"type":"Polygon","id":36051,"arcs":[[8998,8999,9000,-8982,-8939,-8994]]},{"type":"Polygon","id":26099,"arcs":[[9001,9002,9003,-8948,-8976]]},{"type":"Polygon","id":26125,"arcs":[[-8949,-9004,9004,9005,9006,-8960]]},{"type":"Polygon","id":36121,"arcs":[[-9001,9007,9008,-8991,-8980]]},{"type":"Polygon","id":55045,"arcs":[[9009,9010,-1587,-1453,-8957,9011]]},{"type":"Polygon","id":55105,"arcs":[[9012,9013,-9012,-8956,-8965,9014]]},{"type":"Polygon","id":55127,"arcs":[[9015,9016,-9015,-8967,-8970,9017,9018]]},{"type":"Polygon","id":55101,"arcs":[[9019,9020,-9018,-8969,-8972]]},{"type":"Polygon","id":36023,"arcs":[[-8958,-8974,9021,9022,9023,9024,-8931]]},{"type":"Polygon","id":26093,"arcs":[[9025,-8977,-8961,-9007,9026]]},{"type":"Polygon","id":26065,"arcs":[[9027,9028,-8986,-8978,-9026]]},{"type":"Polygon","id":26005,"arcs":[[9029,-8964,-8953,9030,9031,9032]]},{"type":"Polygon","id":26045,"arcs":[[9033,-8984,-8987,-9029,9034,9035]]},{"type":"Polygon","id":26015,"arcs":[[-9031,-8952,-8985,-9034,9036,9037]]},{"type":"Polygon","id":36123,"arcs":[[9038,-8992,-8998,9039]]},{"type":"Polygon","id":36017,"arcs":[[-1668,9040,-9022,-8973,-1558]]},{"type":"Polygon","id":55059,"arcs":[[9041,9042,9043,-9019,-9021]]},{"type":"Polygon","id":36109,"arcs":[[9044,9045,-8996,-8926,-9025,9046]]},{"type":"Polygon","id":36101,"arcs":[[9047,9048,9049,9050,-8999,-8993,-9039,9051]]},{"type":"Polygon","id":36013,"arcs":[[9052,9053,9054,-8989,9055]]},{"type":"Polygon","id":36097,"arcs":[[-9052,-9040,-8997,-9046,9056]]},{"type":"Polygon","id":36009,"arcs":[[9057,9058,-9056,-8988,-9009,9059]]},{"type":"Polygon","id":36003,"arcs":[[9060,9061,-9060,-9008,-9000,-9051]]},{"type":"Polygon","id":17177,"arcs":[[-1585,-9011,9062,9063,9064,-1670]]},{"type":"Polygon","id":17201,"arcs":[[-9063,-9010,-9014,9065,9066]]},{"type":"Polygon","id":17111,"arcs":[[-9016,-9044,9067,9068,9069,9070,9071]]},{"type":"Polygon","id":17007,"arcs":[[-9013,-9017,-9072,9072,-9066]]},{"type":"Polygon","id":17097,"arcs":[[-9043,9073,9074,-9068]]},{"type":"Polygon","id":26163,"arcs":[[9075,-9005,-9003,9076,9077]]},{"type":"Polygon","id":26161,"arcs":[[-9027,-9006,-9076,9078,9079,9080]]},{"type":"Polygon","id":26075,"arcs":[[-9081,9081,9082,9083,-9035,-9028]]},{"type":"Polygon","id":26077,"arcs":[[9084,9085,-9032,-9038,9086]]},{"type":"Polygon","id":26025,"arcs":[[-9087,-9037,-9036,-9084,9087,9088]]},{"type":"Polygon","id":26159,"arcs":[[9089,-9033,-9086,9090,9091]]},{"type":"Polygon","id":36007,"arcs":[[-1848,9092,9093,-9023,-9041,-1667]]},{"type":"Polygon","id":36107,"arcs":[[9094,9095,9096,-9047,-9024,-9094]]},{"type":"Polygon","id":36015,"arcs":[[-9045,-9097,9097,9098,-9048,-9057]]},{"type":"Polygon","id":42049,"arcs":[[9099,9100,-9054,9101,9102]]},{"type":"Polygon","id":26021,"arcs":[[9103,9104,9105,-9092,9106]]},{"type":"Polygon","id":17141,"arcs":[[9107,-9064,-9067,9108,9109,9110]]},{"type":"Polygon","id":17015,"arcs":[[-1806,-1702,-1671,-9065,-9108,9111]]},{"type":"Polygon","id":17031,"arcs":[[9112,9113,-9069,-9075,9114,-1958,-1945]]},{"type":"Polygon","id":17089,"arcs":[[-1956,9115,-9070,-9114,9116]]},{"type":"Polygon","id":17037,"arcs":[[-2012,9117,-9109,-9073,-9071,-9116,-1955]]},{"type":"Polygon","id":26115,"arcs":[[9118,-1947,9119,-9079,-9078]]},{"type":"Polygon","id":26091,"arcs":[[-1946,-1967,9120,-9082,-9080,-9120]]},{"type":"Polygon","id":26059,"arcs":[[-1966,-1980,9121,9122,-9088,-9083,-9121]]},{"type":"Polygon","id":26023,"arcs":[[9123,9124,9125,-9089,-9123]]},{"type":"Polygon","id":26149,"arcs":[[9126,9127,9128,-9085,-9126]]},{"type":"Polygon","id":26027,"arcs":[[-9129,9129,9130,-9107,-9091]]},{"type":"Polygon","id":42015,"arcs":[[-9098,-9096,9131,-1998,-2064,-2059,9132]]},{"type":"Polygon","id":42117,"arcs":[[-9049,-9099,-9133,-2058,9133]]},{"type":"Polygon","id":42123,"arcs":[[-9053,-9059,9134,-2038,-2035,9135,-9102]]},{"type":"Polygon","id":42115,"arcs":[[-9095,-9093,-1847,-2008,-1999,-9132]]},{"type":"Polygon","id":42083,"arcs":[[-9058,-9062,9136,-2045,-2026,-9135]]},{"type":"Polygon","id":42105,"arcs":[[-9061,-9050,-9134,-2057,-2145,-2046,-9137]]},{"type":"Polygon","id":17043,"arcs":[[-1944,-9117,-9113]]},{"type":"Polygon","id":39007,"arcs":[[9137,-9100,9138,-2131,-1970,9139]]},{"type":"Polygon","id":17195,"arcs":[[9140,-2070,-2073,-1904,-1807,-9112,-9111]]},{"type":"Polygon","id":17103,"arcs":[[-9118,-2011,-2071,-9141,-9110]]},{"type":"Polygon","id":42039,"arcs":[[-2132,-2127,-9139,-9103,-9136,-2034]]},{"type":"Polygon","id":39085,"arcs":[[-2031,9141,-9140,-1974]]},{"type":"Polygon","id":18091,"arcs":[[-1964,9142,-9105,9143,-2168]]},{"type":"Polygon","id":18141,"arcs":[[-9104,-9131,9144,-2139,-2165,-9144]]},{"type":"Polygon","id":18039,"arcs":[[-9130,-9128,9145,-2082,-2164,-2135,-9145]]},{"type":"Polygon","id":18087,"arcs":[[-9127,-9125,9146,-2083,-9146]]},{"type":"Polygon","id":18151,"arcs":[[-9124,-9122,-1979,-2086,-9147]]},{"type":"Polygon","id":2185,"arcs":[[9147,9148,9149]]},{"type":"Polygon","id":2188,"arcs":[[9150,9151,-9148,9152]]},{"type":"Polygon","id":2090,"arcs":[[9153,9154,9155]]},{"type":"Polygon","id":2060,"arcs":[[9156,9157]]},{"type":"MultiPolygon","id":2180,"arcs":[[[9158,-9151,9159,9160]],[[9161]]]},{"type":"Polygon","id":2170,"arcs":[[9162,9163,9164,9165,9166,9167,9168,9169]]},{"type":"Polygon","id":2270,"arcs":[[9170,9171,-9161,9172]]},{"type":"MultiPolygon","id":2050,"arcs":[[[9173]],[[9174]],[[-9165,9175,9176,9177,9178,-9171,9179]]]},{"type":"Polygon","id":2020,"arcs":[[9180,9181,9182,-9170]]},{"type":"MultiPolygon","id":2122,"arcs":[[[9183,9184,9185,-9176,-9164]],[[9186,9187,9188,9189,9190,9191,-9182]]]},{"type":"Polygon","id":2070,"arcs":[[9192,9193,-9178]]},{"type":"Polygon","id":2164,"arcs":[[-9177,-9186,9194,9195,9196,9197,-9158,9198,-9193]]},{"type":"MultiPolygon","id":2100,"arcs":[[[9199,9200,9201,9202]],[[9203,9204,9205,9206]]]},{"type":"MultiPolygon","id":2110,"arcs":[[[-9207,9207,9208,9209]],[[9210]]]},{"type":"MultiPolygon","id":2150,"arcs":[[[9211,-9195,-9185]],[[9212]],[[9213]]]},{"type":"MultiPolygon","id":2220,"arcs":[[[9214,9215,9216,9217]],[[9218]],[[9219]]]},{"type":"MultiPolygon","id":2280,"arcs":[[[9220,9221,9222,9223]],[[9224]],[[9225]],[[9226]],[[9227]],[[9228]],[[9229]]]},{"type":"MultiPolygon","id":2130,"arcs":[[[9230]],[[9231]]]},{"type":"MultiPolygon","id":2201,"arcs":[[[9232,-9224]],[[9233]],[[9234]],[[9235]],[[9236]]]},{"type":"MultiPolygon","id":2013,"arcs":[[[9237,-9197]],[[9238]]]},{"type":"MultiPolygon","id":2016,"arcs":[[[9239]],[[9240]],[[9241]],[[9242]],[[9243]],[[9244]]]},{"type":"Polygon","id":15005,"arcs":[[9245,9246]]},{"type":"MultiPolygon","id":15007,"arcs":[[[9247]],[[9248]]]},{"type":"Polygon","id":15003,"arcs":[[9249]]},{"type":"MultiPolygon","id":15009,"arcs":[[[9250]],[[9251]],[[9252,-9247]]]},{"type":"Polygon","id":15001,"arcs":[[9253]]},{"type":"Polygon","id":51143,"arcs":[[-5486,9254,-5484,-5491,-5337,-5060,-4769,-4919,-5147]]},{"type":"Polygon","id":51590,"arcs":[[-5485,-9255]]},{"type":"MultiPolygon","id":2261,"arcs":[[[9255,9256,9257,-9187,-9181,-9169,9258]],[[9259,-9191]],[[-9189,9260]],[[9261]],[[9262]]]},{"type":"Polygon","id":2282,"arcs":[[9263,9264,9265,-9257]]},{"type":"MultiPolygon","id":2232,"arcs":[[[-9203,9266,-9265,9267]],[[9268]],[[9269,-9209,9270,-9222]],[[-9215,9271]],[[-9205,9272,-9201,9273]],[[9274,-9217]]]},{"type":"Polygon","id":2290,"arcs":[[-9150,9275,9276,-9155,9277,-9166,-9180,-9173,-9160,-9153]]},{"type":"Polygon","id":2240,"arcs":[[9278,-9156,-9277,9279,-9259,-9168]]},{"type":"Polygon","id":2068,"arcs":[[-9278,-9154,-9279,-9167]]},{"type":"Polygon","id":8014,"arcs":[[-2940,-2436,-3101,-3163]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":1,"arcs":[[-6140,-6089,-6115,-6116,-6168,-6167,-6178,-6177,-6190,6353,-6366,-6370,6417,-6551,-6549,6585,-6791,6878,6879,-6944,7068,7069,-7216,7241,-7384,7415,-7463,-7506,7538,-7648,7658,-7752,7832,7833,-7930,8013,8014,8028,8029,7911,7912,8023,8024,8025,8020,8021,8040,8041,8042,-7975,7869,-7780,7590,7591,-7476,7328,7329,-7200,7046,-6974,6817,-6796,6674,-6634,6553,-6335,-6334,6323]]},{"type":"MultiPolygon","id":2,"arcs":[[[9161]],[[9173]],[[9174]],[[9210]],[[9212]],[[9213]],[[9218]],[[9219]],[[9224]],[[9225]],[[9226]],[[9227]],[[9228]],[[9229]],[[9230]],[[9231]],[[9233]],[[9234]],[[9235]],[[9236]],[[9238]],[[9239]],[[9240]],[[9241]],[[9242]],[[9243]],[[9244]],[[9261]],[[9262]],[[9268]],[[9271,9215,9274,9217]],[[9267,9199,9273,9205,9207,9270,9222,9232,9220,9269,9209,9203,9272,9201,9266,9265,9257,9187,9260,9189,9259,9191,9182,9162,9183,9211,9195,9237,9197,9156,9198,9193,9178,9171,9158,9151,9148,9275,9279,9255,9263]]]},{"type":"Polygon","id":4,"arcs":[[7077,6670,6671,-5927,5211,5212,-4058,-4773,-4848,-4847,-4184,-4183,-4182,-5190,5229,5230,5231,-6544,6963,6964,-7402,7552,7853,7508,7076]]},{"type":"Polygon","id":5,"arcs":[[7021,7022,-6992,6889,-6609,-6608,6490,-6158,-6157,6123,5954,-5718,5673,5556,-5371,-5361,-5282,-5281,-5241,-5347,-5346,-5345,-5358,-5357,-5141,-5318,-5317,-5316,-5344,-5343,-5291,-5394,-5393,-5392,-5391,-5587,-5693,5822,5823,5818,-6097,6130,6131,6393,-6409,6510,6781,-6787,7038,7033,7034,7035,7036,7128,7156,7157,7105,7106,7084,7085]]},{"type":"MultiPolygon","id":6,"arcs":[[[6830]],[[6831]],[[7091]],[[7092]],[[6883,7090,6402,6829,5931,5299,5036,4719,4639,4720,4870,4601,4450,4286,3977,4409,3916,4410,3919,4280,3921,3088,2150,1849,-1527,-1591,-1590,-1513,-1334,-1333,-1336,1858,-1868,-1867,-1866,-1865,3570,3571,-3744,-3743,-3742,-3239,-3754,4007,-4213,-3690,4905,-5334,-5212,5926,-6672,-6671,-7078,7110,7067]]]},{"type":"Polygon","id":8,"arcs":[[4919,4756,4755,-4181,-4180,-4179,4061,-3452,3024,-2561,-2560,2428,2429,-1722,-1685,-1684,-1683,-1698,-1697,-1995,-1994,-2208,-2207,-2173,-2172,-2288,-2443,-2442,2614,-2656,2825,2826,-3077,3381,3382,-3721,3794,-4040,4318,4319,-4680,4745,4746,4747,4640,4641,4748,4749,4946,4947,4921]]},{"type":"Polygon","id":9,"arcs":[[1990,1991,-1790,-1789,-1596,-1708,-1707,-1706,-1611,-1610,1810,1811,-1913,1974,1975,2002,2004,1989]]},{"type":"Polygon","id":10,"arcs":[[-2947,-3036,-3176,3195,3196,3527,3827,3828,3829,3830,3831,3832,-3701,3529,3530,-3517,3198,3199]]},{"type":"Polygon","id":11,"arcs":[[-3542,-3720,3821,3822]]},{"type":"MultiPolygon","id":12,"arcs":[[[8286,8291,8285,8280]],[[8462]],[[8531]],[[8532]],[[8647]],[[8645,8632,8613,8630,8606,8633,8608,8590,8561,8558,8538,8520,8504,8446,8414,8302,8192,8307,8381,8332,8240,8333,8238,8134,8281,8136,8278,8283,8290,-8021,-8026,-8025,-8024,-7913,-7912,-8030,-8029,-8015,-8075,-8072,-8077,-8076,-8080,-8079,-8083,-8082,-8096,-8095,-8162,-8161,-8039,-8038,-7948,-8086,-8085,-8045,8167,8235,8324,8427,8456,8527,8458,8528,8577,8600,8620,8602,8621,8635,8658,8660,8662,8655]],[[8663]]]},{"type":"MultiPolygon","id":13,"arcs":[[[8046]],[[8074,-8014,7929,-7834,-7833,7751,-7659,7647,-7539,7505,7462,-7416,7383,-7242,7215,-7070,-7069,6943,-6880,-6879,6790,-6586,6548,6550,-6418,6369,6365,-6354,-6189,-6109,-6108,-6107,-6181,-6180,-6179,-6216,-6215,-6213,-6212,-6274,-6273,-6272,-6191,-6309,-6308,-6307,-6306,-6305,-6440,-6439,-6631,6710,-6811,-6810,-6858,-6857,-6914,-6913,-7083,7192,-7241,7261,-7272,-7415,-7414,7790,7791,7630,7631,7792,7633,7685,7871,7952,8043,8044,8084,8085,7947,8037,8038,8160,8161,8094,8095,8081,8082,8078,8079,8075,8076,8071]]]},{"type":"MultiPolygon","id":15,"arcs":[[[9247]],[[9248]],[[9249]],[[9250]],[[9251]],[[9252,9245]],[[9253]]]},{"type":"Polygon","id":16,"arcs":[[1619,1545,1323,1324,-1087,-1086,-1090,959,-858,823,-649,494,525,523,-380,-379,348,-233,-232,113,-22,-21,23,24,-28,114,-188,230,-333,-311,-310,490,-496,-679,-678,-677,-690,-602,989,-1021,-1020,1325,-1427,-1426,1639,1698,1674,1675,1618]]},{"type":"Polygon","id":17,"arcs":[[3463,-3609,3673,-3875,-3879,4117,-4141,4329,-4361,4568,-4595,4774,4775,4778,-4931,4989,4997,4993,4990,4991,-4803,4785,4562,4367,4364,4146,4147,-3892,-3891,-3949,3813,3814,3610,3507,3508,-3367,3192,3193,-3130,2965,-2943,2695,2696,-2575,2385,-2384,-2183,1906,1907,-1808,-1807,-1806,-1702,1668,-1617,-1458,-1586,-1585,-9011,-9010,-9014,-9013,-9017,-9016,-9044,-9043,9073,9114,-1958,1939,-1957,2240,-2286,2419,-2612,2779,2780,-2978,3168,-3353]]},{"type":"Polygon","id":18,"arcs":[[-1979,-1978,2083,-2177,2255,2256,-2477,2493,-2628,2733,-2858,-2857,3056,-3153,3242,-3373,-3372,3566,3567,-3696,-3700,3854,3855,3864,3865,-3975,4082,4083,4239,4231,4232,4233,4229,4322,4323,4324,4385,4384,4354,4355,4394,4358,4359,4360,-4330,4140,-4118,3878,3874,-3674,3608,-3464,3352,-3169,2977,-2781,-2780,2611,-2420,2285,-2241,1956,-1940,1957,1958,1962,9142,-9105,-9104,-9131,-9130,-9128,-9127,-9125,-9124,-9122]]},{"type":"Polygon","id":19,"arcs":[[2542,2537,2538,2553,2554,2547,2548,2544,2545,2528,2529,2525,2526,2523,2524,2520,2521,-2392,2321,-2293,2100,2101,-1987,1887,-1796,1735,-1719,1642,1643,-1482,-1486,1433,-1373,-1372,-1267,-1271,-1277,-1276,-1281,-1280,-1279,-1284,-1283,-1263,-1262,-1274,-1273,-1291,-1290,-1289,-1294,-1293,-1287,-1286,-1318,1383,-1412,-1460,-1459,1616,-1669,1701,1805,1806,1807,-1908,-1907,2182,2383,-2386,2574,2573,2541]]},{"type":"Polygon","id":20,"arcs":[[-4746,4679,-4320,-4319,4039,-3795,3720,-3383,-3382,3076,-2827,-2870,-2869,-2880,-2887,-2886,-2884,-2882,-2872,-2871,-2876,-2875,-2879,-2878,-2862,-2865,-2769,-2768,-2936,-2935,-2933,-2932,-2931,-2929,-3009,3084,-3203,3325,-3438,-3437,-3482,-3629,-3628,3786,-3934,3979,-4202,4247,-4477,-4476,4731,4732,-4978,4998,4999,5000,4960,4961,4957,4958,5024,5025,4882,4883,4878,4879,4954,4955,4895,4896,4963,4964,4889,4890,4887,4952,4953,4948,4951]]},{"type":"MultiPolygon","id":21,"arcs":[[[-5120,-5119,-5118,5065,-4994,-4998,-4990,4930,-4779,-4776,-4775,4594,-4569,-4360,-4359,-4395,-4356,-4355,-4385,-4386,-4325,-4324,-4323,-4230,-4234,-4233,-4232,-4240,-4084,-4083,3974,-3866,-3865,-3856,-3855,3699,3695,-3568,-3579,-3578,-3577,-3604,-3603,-3602,-3623,-3622,-3783,-3782,-3806,-3805,-3931,-3930,4173,-4239,-4238,-4538,-4537,4662,4663,4664,5041,-5070,5152,5255,5256,5245,5246,5253,5254,5214,5313,5314,5262,5338,5339,5265,5266,5308,5309,5125,5121,5122,5090,5091,5156,5362,5363,5257,5258,5358,5452,5453,-5323]],[[5454,-5325]]]},{"type":"MultiPolygon","id":22,"arcs":[[[8430]],[[8468,8467]],[[8466,8386,8429,8354,8376,-8329,8264,-8035,-8034,7990,7804,7805,-7753,7584,-7573,7274,7275,7276,-7191,-7022,-7086,-7085,-7107,-7106,-7158,-7157,-7129,-7037,-7036,-7035,-7285,7304,-7460,-7459,7623,7624,7625,7841,7842,-7988,-7987,-7999,-7998,-7997,-8002,-8001,-8004,-7965,-8107,-8106,8183,8184,8110,8303,8365,8489,8351,8377,8402,8490,8395,8491,8397]]]},{"type":"MultiPolygon","id":23,"arcs":[[[1091]],[[794,795,796,742,538,341,738,1090,982,1102,1106,1218,1108,1217,1180,1301,1302,-1115]]]},{"type":"MultiPolygon","id":24,"arcs":[[[3597]],[[-3829,4216]],[[4217,4218]],[[4016,3838,3595,3515,3261,3266,3278,3525,3631,3955,4158,4006,-3772,3718,3719,3541,3542,3543,3286,3252,3253,3254,3255,3256,3257,3258,3265,3263,3264,-3002,-2916,-2915,-2893,-2988,-2987,-2908,-2907,-3034,-3033,-2954,-2953,-2952,-2901,-2948,-3200,-3199,3516,-3531,-3530,3700,-3833,-3832,-3831,4215,4213,4287,4288,4125]]]},{"type":"MultiPolygon","id":25,"arcs":[[[1762,1763,1764,1765,1734,1608,1609,1610,1705,1706,1707,1595,1596,-1529,-1423,-1422,-1437,-1473,-1472,-1463,-1462,-1461,-1432,1569,1678,1732,1730,1725,1792,1727,1761]],[[2145]],[[2203]]]},{"type":"MultiPolygon","id":26,"arcs":[[[8665]],[[8668,8666]],[[8713]],[[8706,8707,8699,8700,8701,8686,-532,8687,8673,8669,8676,8682,8694,8688,8712,8708,8696,8710,8720,8721]],[[9089,9029,8962,8918,8878,8844,8806,8789,8764,8786,8759,8748,8726,8729,8734,8754,8783,8810,8850,8861,8892,8857,8899,8974,9001,9076,9118,-1947,-1946,-1967,-1966,-1980,9121,9123,9124,9126,9127,9129,9130,9103,9104,9105]]]},{"type":"Polygon","id":27,"arcs":[[133,453,454,-462,553,-620,721,-725,808,809,926,-950,1002,-1019,-1037,-1036,-1039,1172,-1204,1284,1285,1286,1292,1293,1288,1289,1290,1272,1273,1261,1262,1282,1283,1278,1279,1280,1275,1276,1270,-1266,-1147,1031,-924,-923,819,-799,761,-682,643,-521,-520,395,-389,327,-301,203,-196,145,146,88,-87,89,92,1,121,137,188,8664,190]]},{"type":"MultiPolygon","id":28,"arcs":[[[8105,8106,7964,8003,8000,8001,7996,7997,7998,7986,7987,-7843,-7842,-7626,-7625,-7624,7458,7459,-7305,7284,-7034,-7039,6786,-6782,-6511,6408,-6394,-6132,-6131,-6096,-6095,-6156,-6155,-6137,-6136,-6135,-6164,-6142,-6141,-6324,6333,6334,-6554,6633,-6675,6795,-6818,6973,-7047,7199,-7330,-7329,7475,-7592,-7591,7779,-7870,7974,-8043,-8042,8169,8190,8204,-8184]]]},{"type":"Polygon","id":29,"arcs":[[5393,5290,5342,5343,5315,5316,5317,5140,5356,5357,5344,5345,5346,5240,5280,5281,5360,5361,-5173,5137,-4999,4977,-4733,-4732,4475,4476,-4248,4201,-3980,3933,-3787,3627,3628,3481,3436,3437,-3326,3202,-3085,3008,2928,2929,2732,-2584,-2521,-2525,-2524,-2527,-2526,-2530,-2529,-2546,-2545,-2549,-2548,-2555,-2554,-2539,-2538,-2543,-2542,-2574,-2697,-2696,2942,-2966,3129,-3194,-3193,3366,-3509,-3508,-3611,-3815,-3814,3948,3890,3891,-4148,-4147,-4365,-4368,-4563,-4786,4802,-4992,-4991,-5066,5117,5118,5119,5322,5323,5324,5325,-5523,5587,5586,5390,5391,5392]]},{"type":"Polygon","id":30,"arcs":[[599,600,601,689,676,677,678,495,-491,309,310,332,-231,187,-115,27,-25,28,30,39,42,45,49,95,99,105,109,53,54,55,-128,-214,-213,350,-355,484,485,486,623,624,621,695,696,697,638,639,749,750,605]]},{"type":"Polygon","id":31,"arcs":[[2861,2877,2878,2874,2875,2870,2871,2881,2883,2885,2886,2879,2868,2869,-2826,2655,-2615,2441,2442,2287,2171,2172,2206,2207,-1996,1982,-1635,-1634,1501,-1359,-1408,-1407,-1321,-1320,-1419,-1420,-1311,-1357,-1356,-1365,-1364,-1478,-1475,-1474,-1488,-1487,-1484,-1483,-1644,-1643,1718,-1736,1795,-1888,1986,-2102,-2101,2292,-2322,2391,-2522,2583,-2733,-2930,2930,2931,2932,2934,2935,2767,2768,2864]]},{"type":"Polygon","id":32,"arcs":[[-3572,-3571,1864,1865,1866,1867,-1859,-1337,-1216,-1215,-1088,-1325,-1324,-1546,-1620,-1834,1854,-2378,3014,3015,-3433,4054,4055,4056,4057,-5213,5333,-4906,3689,4212,-4008,3753,3238,3741,3742,3743]]},{"type":"Polygon","id":33,"arcs":[[1345,-1235,1097,1092,-979,-878,806,803,-796,-795,1114,-1303,1346,1430,1431,1460,1461,1462,1471,1472,-1438]]},{"type":"Polygon","id":34,"arcs":[[3229,-3196,3175,-3035,-3007,-3006,2975,-2707,-2710,2591,2372,2373,-2275,2224,-2052,-2020,-2019,-2236,-2235,-2221,2364,2365,-2559,2572,2550,2624,2718,2807,2984,3247,3561,3398]]},{"type":"Polygon","id":35,"arcs":[[7401,-6965,-6964,6543,-5232,-5231,-5230,5189,-4756,-4757,-4920,-4922,-4948,-4947,-4750,-4749,-4642,-4641,-4748,5184,5185,5186,-5783,5958,5959,-6264,6387,6538,6539,-6937,7027,7028,7029,7030,7031,7333,7334,7335,7152,7153,7154,7258,7259,7460,7400]]},{"type":"MultiPolygon","id":36,"arcs":[[[2593]],[[2535,2592,2531,2582,2533,2579,2620,2581]],[[2694]],[[9054,8989,8931,8935,8940,8945,8928,8898,8825,8775,910,890,-883,891,-999,1051,-1114,-1261,1303,-1424,1528,-1597,1788,1789,-1992,-1991,2218,2505,2557,2558,-2366,-2365,2220,2234,2235,2018,2019,2020,1814,1815,1665,-1848,9092,9094,9095,9097,9098,9048,9049,9060,9061,9057,9058,9052,9053]]]},{"type":"MultiPolygon","id":37,"arcs":[[[-5272,5460]],[[-5270,5461,5949,5463]],[[5952]],[[6245]],[[6410]],[[6391,6392,6313,6267,6237,6233,6234,6071,6072,6153,6042,6043,6025,6026,6161,6162,6091,6150,6151,6152,6064,6190,6271,6272,6273,6211,6212,6213,-5995,-5998,-5865,-5802,-5801,-5704,-5703,-5596,-5656,-5655,-5654,-5518,-5517,-5408,-5407,-5406,-5355,-5354,-5353,-5277,-5322,-5321,-5336,-5335,5490,5483,5484,5485,-5146,-5145,-5144,-5305,-5304,-5303,-5150,-5149,-5301,-5227,-5226,-5297,-5296,-5330,-5329,-5274,5458,5471,5514,5603,5620,5476,5469,5670,5837,5839,6244,5950,6243,5968,5964,6202,6298,6296,6409,6380,6491,6648,6654,6655,6632]]]},{"type":"Polygon","id":38,"arcs":[[-486,-485,354,-351,212,213,127,-56,-55,57,60,65,69,73,76,81,85,86,-89,-147,-146,195,-204,300,-328,388,-396,519,520,517,581,582,578,579,575,576,505,551,585,586,584]]},{"type":"Polygon","id":39,"arcs":[[-9100,9138,2126,2127,2359,-2364,2504,2501,-2706,2721,2722,-2970,2981,-3054,3185,3183,3331,3332,3333,3428,-3501,3661,3662,3796,3797,3927,3928,3929,3930,3804,3805,3781,3782,3621,3622,3601,3602,3603,3576,3577,3578,-3567,3371,3372,-3243,3152,-3057,2856,2857,-2734,2627,-2494,2476,-2257,-2256,2176,-2084,1977,1978,1979,1965,1966,1945,1946,1947,2040,2122,2158,2091,2029,9141,9137]]},{"type":"Polygon","id":40,"arcs":[[6709,6612,6613,6516,6517,6425,6426,6316,6314,-6258,6077,-6020,5809,-5775,5430,5431,5216,5217,5221,5222,5223,5203,5204,-5185,-4747,-4952,-4949,-4954,-4953,-4888,-4891,-4890,-4965,-4964,-4897,-4896,-4956,-4955,-4880,-4879,-4884,-4883,-5026,-5025,-4959,-4958,-4962,-4961,-5001,-5000,-5138,5172,-5362,5370,-5557,-5674,5717,-5955,-6124,6156,6157,-6491,6607,6608,6609,6610,6769,6770,6766,6767,6768,6748,6812,6813,6811,6708]]},{"type":"Polygon","id":41,"arcs":[[1337,1238,1119,870,706,593,609,-568,-565,606,-632,-560,-564,-633,-637,-636,-635,-634,-473,-472,-530,-528,-527,-482,-551,-526,-495,648,-824,857,-960,1089,1085,1086,1087,1214,1215,1336,1335,1332,1333,1512,1589,1590,1526,1527]]},{"type":"Polygon","id":42,"arcs":[[-9053,-9059,-9058,-9062,-9061,-9050,-9049,-9099,-9098,-9096,-9095,-9093,1847,-1666,-1816,-1815,-2021,2051,-2225,2274,-2374,-2373,-2592,2709,2706,-2976,3005,3006,3034,3035,2946,2947,2900,2951,2952,2953,3032,3033,2906,2907,2986,2987,2892,2914,2915,3001,3002,3003,3054,3055,-3052,2790,2791,2792,-2704,2564,-2505,2363,-2360,-2128,-2127,-9139,9099,9100,-9054]]},{"type":"MultiPolygon","id":44,"arcs":[[[1987,-1763]],[[1988]],[[1912,-1812,-1811,-1609,-1735,-1766,-1765,1909,1817,1910,2001,-1975]]]},{"type":"MultiPolygon","id":45,"arcs":[[[7413,7414,7271,-7262,7240,-7193,7082,6912,6913,6856,6857,6809,6810,-6711,6630,6438,6439,6304,6305,6306,6307,6308,-6065,-6153,-6152,-6151,-6092,-6163,-6162,-6027,-6026,-6044,-6043,-6154,-6073,-6072,-6235,-6234,-6238,-6268,-6314,-6393,-6392,-6633,-6656,6701,6967,7278,7059,7279,7233,7617,7410,7618,7412]],[[7619]]]},{"type":"Polygon","id":46,"arcs":[[1473,1474,1477,1363,1364,1355,1356,1310,1419,1418,1319,1320,1406,1407,-1358,1256,-1176,1069,1032,-900,842,-625,-624,-487,-585,-587,-586,-552,-506,-577,-576,-580,-579,-583,-582,-518,-644,681,-762,798,-820,922,923,-1032,1146,1265,1266,1371,1372,-1434,1485,1481,1482,1483,1486,1487]]},{"type":"Polygon","id":47,"arcs":[[6189,6176,6177,6166,6167,6115,6114,6088,6139,6140,6141,6163,6134,6135,6136,6154,6155,6094,6095,6096,-5819,-5824,-5823,5692,-5588,5522,-5326,-5455,-5324,-5454,-5453,-5359,-5259,-5258,-5364,-5363,-5157,-5092,-5091,-5123,-5122,-5126,-5310,-5309,-5267,-5266,-5340,-5339,-5263,-5315,-5314,-5215,-5255,-5254,-5247,-5246,-5257,-5308,-5307,-5313,-5312,-5311,-5287,-5401,-5285,-5284,-5356,5405,5406,5407,5516,5517,5653,5654,5655,5595,5702,5703,5800,5801,5864,5997,5994,-6214,6214,6215,6178,6179,6180,6106,6107,6108,6188]]},{"type":"MultiPolygon","id":48,"arcs":[[[8449]],[[8551]],[[8569]],[[8599,8583]],[[8651,8650,8629]],[[8656]],[[8640,8615,8557,8499,8440,8314,8200,8196,8209,7743,7745,-7259,-7155,-7154,-7153,-7336,-7335,-7334,-7032,-7031,-7030,-7029,-7028,6936,-6540,-6539,-6388,6263,-5960,-5959,5782,-5187,-5186,-5205,-5204,-5224,-5223,-5222,-5218,-5217,-5432,-5431,5774,-5810,6019,-6078,6257,-6315,-6317,-6427,-6426,-6518,-6517,-6614,-6613,-6710,-6709,-6812,-6814,-6813,-6749,-6769,-6768,-6767,-6771,-6770,-6611,-6610,-6890,6991,-7023,7190,-7277,-7276,-7275,7572,-7585,7752,-7806,-7805,-7991,8033,8034,-8265,8328,8329,8336,8404,8447,8406,8343,8448,8442,8484,8550,8475,8549,8477,8548,8533,8567,8553,8568,8535,8562,8570,8564,8580,8596,8626,8648,8657,8643]]]},{"type":"Polygon","id":49,"arcs":[[-4057,-4056,-4055,3432,-3016,-3015,2377,-1855,1833,-1619,-1676,-1675,-1699,-1640,-1425,1835,-2077,-1724,-1723,-2430,-2429,2559,2560,-3025,3451,-4062,4178,4179,4180,4181,4182,4183,4846,4847,4772]]},{"type":"Polygon","id":50,"arcs":[[1423,-1304,1260,1113,-1052,998,-892,882,879,883,888,876,-807,877,978,-1093,-1098,1234,-1346,1437,1436,1421,1422]]},{"type":"MultiPolygon","id":51,"arcs":[[[-4218,4492]],[[-4288,-4214,4494,4836,4493]],[[5355,5283,5284,5400,5286,5310,5311,5312,5306,5307,-5256,-5153,5069,-5042,-4665,-4664,-4663,-4536,-4843,-4842,-4811,-4810,-4809,-4708,-4707,4558,-4309,4307,-3986,-3985,-3836,-3835,-3834,-3626,-3625,3479,-3435,-3303,-3347,-3463,-3462,-3253,-3287,-3544,-3543,-3823,-3822,-3719,3771,3772,3845,4098,4261,4291,4496,4622,4449,4406,4656,4803,4857,4805,4899,4969,5086,5110,5058,4904,4862,5049,5096,5292,5340,5331,5341,5252,5268,5269,5270,5271,5272,5273,5328,5329,5295,5296,5225,5226,5300,5148,5149,5302,5303,5304,5143,5144,5145,-5486,-5485,-5484,-5491,5334,5335,5320,5321,5276,5352,5353,5354]]]},{"type":"MultiPolygon","id":53,"arcs":[[[139]],[[182]],[[632,563,559,631,-607,564,567,568,445,326,214,169,215,301,259,369,368,303,397,372,289,179,183,181,126,112,13,4,8,19,20,21,-114,231,232,-349,378,379,-524,550,481,526,527,529,471,472,633,634,635,636]]]},{"type":"Polygon","id":54,"arcs":[[4536,4537,4237,4238,-4174,-3929,-3928,-3798,-3797,-3663,-3662,3500,-3429,-3334,-3333,-3332,-3184,-3186,3053,-2982,2969,-2723,-2722,2705,-2502,-2565,2703,-2793,-2792,-2791,3051,-3056,-3055,-3004,-3003,-3265,-3264,-3266,-3259,-3258,-3257,-3256,-3255,-3254,3461,3462,3346,3302,3434,-3480,3624,3625,3833,3834,3835,3984,3985,-4308,4308,-4559,4706,4707,4808,4809,4810,4841,4842,4535]]},{"type":"Polygon","id":55,"arcs":[[1458,1459,1411,-1384,1317,-1285,1203,-1173,1038,1035,1036,1018,-1003,949,-927,-810,-809,724,-722,619,-554,461,-455,462,423,497,530,531,-8687,-8702,-8701,-8700,-8708,-8707,-8722,8724,8744,8802,8790,8751,8750,8752,8791,8827,8872,8916,8970,9019,9041,9042,9043,9015,9016,9012,9013,9009,9010,1584,1585,1457]]},{"type":"Polygon","id":56,"arcs":[[1425,1426,-1326,1019,1020,-990,-601,-600,-606,-751,-750,-640,-639,-698,-697,-696,-622,-843,899,-1033,-1070,1175,-1257,1357,1358,-1502,1633,1634,-1983,1995,1993,1994,1696,1697,1682,1683,1684,1721,1722,1723,2076,-1836,1424]]}]},"land":{"type":"MultiPolygon","arcs":[[[139]],[[182]],[[1091]],[[1988]],[[2145]],[[2203]],[[2593]],[[2535,2592,2531,2582,2533,2579,2620,2581]],[[2694]],[[3597]],[[4492,4218]],[[5952]],[[6245]],[[6410]],[[6830]],[[6831]],[[7091]],[[7092]],[[7619]],[[8046]],[[8286,8291,8285,8280]],[[8430]],[[8449]],[[8462]],[[8468,8467]],[[8531]],[[8532]],[[8551]],[[8569]],[[8599,8583]],[[8647]],[[8651,8650,8629]],[[8656]],[[8663]],[[8665]],[[8668,8666]],[[8713]],[[9089,9029,8962,8918,8878,8844,8806,8789,8764,8786,8759,8748,8726,8729,8734,8754,8783,8810,8850,8861,8892,8857,8899,8974,9001,9076,9118,1947,2040,2122,2158,2091,2029,9141,9137,9100,9054,8989,8931,8935,8940,8945,8928,8898,8825,8775,910,890,879,883,888,876,803,796,742,538,341,738,1090,982,1102,1106,1218,1108,1217,1180,1301,1346,1430,1569,1678,1732,1730,1725,1792,1727,1761,1987,1763,1909,1817,1910,2001,1975,2002,2004,1989,2218,2505,2557,2572,2550,2624,2718,2807,2984,3247,3561,3398,3229,3196,3527,3827,4216,3829,4215,4494,4836,4493,4288,4125,4016,3838,3595,3515,3261,3266,3278,3525,3631,3955,4158,4006,3772,3845,4098,4261,4291,4496,4622,4449,4406,4656,4803,4857,4805,4899,4969,5086,5110,5058,4904,4862,5049,5096,5292,5340,5331,5341,5252,5268,5461,5949,5463,5270,5460,5272,5458,5471,5514,5603,5620,5476,5469,5670,5837,5839,6244,5950,6243,5968,5964,6202,6298,6296,6409,6380,6491,6648,6654,6701,6967,7278,7059,7279,7233,7617,7410,7618,7412,7790,7791,7630,7631,7792,7633,7685,7871,7952,8043,8167,8235,8324,8427,8456,8527,8458,8528,8577,8600,8620,8602,8621,8635,8658,8660,8662,8655,8645,8632,8613,8630,8606,8633,8608,8590,8561,8558,8538,8520,8504,8446,8414,8302,8192,8307,8381,8332,8240,8333,8238,8134,8281,8136,8278,8283,8290,8021,8040,8169,8190,8204,8184,8110,8303,8365,8489,8351,8377,8402,8490,8395,8491,8397,8466,8386,8429,8354,8376,8329,8336,8404,8447,8406,8343,8448,8442,8484,8550,8475,8549,8477,8548,8533,8567,8553,8568,8535,8562,8570,8564,8580,8596,8626,8648,8657,8643,8640,8615,8557,8499,8440,8314,8200,8196,8209,7743,7745,7259,7460,7400,7552,7853,7508,7076,7110,7067,6883,7090,6402,6829,5931,5299,5036,4719,4639,4720,4870,4601,4450,4286,3977,4409,3916,4410,3919,4280,3921,3088,2150,1849,1527,1337,1238,1119,870,706,593,609,568,445,326,214,169,215,301,259,369,368,303,397,372,289,179,183,181,126,112,13,4,8,19,23,28,30,39,42,45,49,95,99,105,109,53,57,60,65,69,73,76,81,85,89,92,1,121,137,188,8664,190,133,453,462,423,497,530,8687,8673,8669,8676,8682,8694,8688,8712,8708,8696,8710,8720,8724,8744,8802,8790,8751,8750,8752,8791,8827,8872,8916,8970,9019,9041,9073,9114,1958,1962,9142,9105]],[[9161]],[[9173]],[[9174]],[[9210]],[[9212]],[[9213]],[[9218]],[[9219]],[[9224]],[[9225]],[[9226]],[[9227]],[[9228]],[[9229]],[[9230]],[[9231]],[[9233]],[[9234]],[[9235]],[[9236]],[[9238]],[[9239]],[[9240]],[[9241]],[[9242]],[[9243]],[[9244]],[[9247]],[[9248]],[[9249]],[[9250]],[[9251]],[[9252,9245]],[[9253]],[[9261]],[[9262]],[[9268]],[[9271,9215,9274,9217]],[[9267,9199,9273,9205,9207,9270,9222,9232,9220,9269,9209,9203,9272,9201,9266,9265,9257,9187,9260,9189,9259,9191,9182,9162,9183,9211,9195,9237,9197,9156,9198,9193,9178,9171,9158,9151,9148,9275,9279,9255,9263]]]}},"arcs":[[[7448,5643],[0,33],[23,0],[0,37],[-4,-4],[-8,-3],[-6,5],[-3,6],[2,2],[-2,3],[0,3],[0,3],[3,0]],[[7453,5728],[11,0],[0,73],[30,-8],[14,-88],[-1,-19],[11,-11],[12,0]],[[7530,5675],[0,-67]],[[7530,5608],[-70,1],[-1,34],[-11,0]],[[5336,5728],[57,0]],[[5393,5728],[0,-3],[0,-8],[0,-4],[0,-8],[6,-17],[1,-1],[0,-6],[2,-7],[-2,-3],[4,-9],[-4,-5],[0,-10],[-1,-4],[0,-4],[-6,-9],[0,-6],[4,-28],[2,-6],[0,-6],[-4,-6],[-2,-12],[-3,-5],[0,-7],[-1,-5],[-3,-2],[-7,-1],[-3,-2],[2,-5],[1,-6],[2,-16]],[[5381,5517],[-2,-10],[-7,1],[-1,8],[-6,-2],[-1,1],[-2,8],[0,1],[-7,0],[-4,2],[-5,-7],[-9,5],[0,3],[-3,2]],[[5334,5529],[2,100],[-2,1],[0,32],[2,0],[0,66]],[[5393,5728],[69,0]],[[5462,5728],[1,-13],[-7,-1],[0,-16],[-5,0],[0,-17],[-6,0],[0,-19],[11,1],[0,-99],[6,0],[0,-17]],[[5462,5547],[-9,0],[0,-48],[-7,1],[-1,5],[-3,4],[-1,8],[-2,-2],[-1,-7],[-3,-2],[-7,-3],[0,1]],[[5428,5504],[-3,3],[-1,2],[-6,-3],[-7,0],[-2,-6],[-5,0],[-1,5],[-3,1],[0,8],[-3,4],[-4,9],[-7,-2],[-4,-7],[-1,-1]],[[5166,5663],[2,1],[0,3],[2,5],[2,0],[1,5],[-1,1],[-6,7],[0,4],[0,12],[-3,7],[0,6],[2,3],[-1,2],[-3,2],[-3,-4],[-6,5],[0,1],[3,2],[0,3]],[[5155,5728],[181,0]],[[5334,5529],[-7,-3],[-4,1]],[[5323,5527],[0,4]],[[5323,5531],[3,6],[0,6],[-4,4],[-2,12],[-2,5],[-7,3],[-12,-8],[-5,0],[-2,-3],[0,-7],[-5,-2],[-2,0],[-5,7],[-4,0],[-10,-15],[-2,0],[-2,0],[-3,5],[0,11],[-2,0],[-2,3],[-3,0],[0,-2],[-3,0],[-7,-8],[0,-2],[1,-5],[-1,-6],[1,-5]],[[5243,5530],[-16,0],[-2,7],[-1,2],[0,4],[-3,1],[-1,4],[-9,9],[-3,6],[-5,1],[-2,1],[0,4],[0,9],[-4,1],[0,5],[-7,4],[-3,8],[-7,3],[0,4],[3,2],[0,3],[-1,2],[-3,2],[-3,3],[-3,8],[0,1],[3,3],[-3,3],[3,4],[-3,2],[0,3],[0,3],[-4,-2]],[[5169,5640],[1,4],[0,4],[-2,4],[-3,-3],[-2,3],[-1,5],[2,5],[1,0],[1,1]],[[5462,5728],[36,0]],[[5498,5728],[0,-30]],[[5498,5698],[0,-151]],[[5498,5547],[-36,0]],[[5498,5728],[86,0]],[[5584,5728],[3,-94]],[[5587,5634],[-66,0],[0,64],[-23,0]],[[5680,5540],[-12,-1],[0,-4],[1,-5],[-1,-1],[-2,1],[-1,-6],[-3,-4],[-3,0],[-1,-1],[-3,-1],[-4,3],[-4,-2],[-2,1],[-1,5],[-1,-4],[-5,0],[-4,-2],[-1,1],[-2,5],[2,8],[-2,5],[-4,6],[-3,6],[-2,13],[-3,4],[0,2],[0,8],[-2,7],[-5,2],[-3,-8],[-6,-1],[-5,-4],[-2,-3],[-1,-3],[-1,-1],[-5,1],[0,3],[0,6],[0,2],[-2,0]],[[5587,5578],[0,56]],[[5584,5728],[122,0]],[[5706,5728],[1,-3],[3,-2],[-3,-7],[1,-2],[2,-16],[-4,-2],[0,-3],[5,-4],[4,-8],[-2,-3],[-3,-4],[0,-5],[-2,-3],[3,-2],[2,-2],[-23,0],[2,-16],[2,-1],[0,-65],[-14,0],[0,-40]],[[5706,5728],[60,0]],[[5766,5728],[-2,-2],[2,-4],[3,-1],[-2,-6],[2,-1],[0,-3],[0,-3],[-2,-2],[2,-4],[2,-3],[0,-4],[5,-2],[2,2],[0,3],[5,-1],[2,2],[2,-2],[1,0],[4,-3],[-2,-7],[2,-4],[5,-6],[0,-4],[0,-2],[-2,-3],[0,-4],[-1,-5],[0,-4],[6,-6],[4,0],[2,-2],[5,0],[5,-4],[2,-1],[0,-19],[2,-4],[3,-1],[5,0],[2,-10],[-5,-6],[3,-5]],[[5828,5597],[1,-2],[1,-1],[0,-2],[2,-3],[4,-4],[1,0],[2,-3],[0,-4],[0,-8],[3,-2],[2,1],[2,-3],[5,-2],[2,2],[2,-1],[1,-4],[4,0]],[[5860,5561],[2,0],[-2,-5],[3,-5],[2,-3],[0,-4],[5,-4],[2,-6],[-5,-7],[-4,1]],[[5863,5528],[-5,-4],[-5,-1],[0,-3],[0,-2],[2,-3],[0,-19],[-2,-7],[-5,-1],[-2,-3],[0,-5],[3,-9],[-1,-10]],[[5848,5461],[-30,1]],[[5818,5462],[-14,0]],[[5804,5462],[0,10],[3,4],[0,4],[0,2],[-3,0],[-2,3],[-1,3],[0,2],[1,4],[-2,6],[1,4],[0,7],[0,5],[-6,7],[-1,5],[-1,1],[-1,-2],[-4,8],[-3,-1],[-2,5],[0,5],[-2,3],[-12,0],[0,-3],[-2,0],[0,-5],[-3,0],[2,-3],[1,0],[0,-7],[-42,0],[0,-15],[3,0],[0,-16],[-11,0]],[[5717,5498],[0,16],[-34,0],[0,25],[-3,0],[0,1]],[[5766,5728],[167,0]],[[5933,5728],[0,-15],[2,-85]],[[5935,5628],[-5,2],[-32,-1],[0,-33],[-70,1]],[[5933,5728],[83,0]],[[6016,5728],[-1,-148],[-12,0]],[[6003,5580],[-23,-1],[0,24],[-12,0],[0,10],[-16,0],[0,7],[-1,3],[-2,0],[-3,-1],[-2,0],[-5,5],[-4,-1],[0,2]],[[6016,5728],[47,0]],[[6063,5728],[0,-149]],[[6063,5579],[-6,0],[0,-15],[-54,0]],[[6003,5564],[0,16]],[[6063,5728],[113,0]],[[6176,5728],[0,-14],[-1,0],[0,-65],[1,0],[0,-11],[2,0],[0,-14],[-2,0],[0,-10],[-2,0],[0,-20],[-3,0],[0,-14],[0,-16]],[[6171,5564],[-16,0],[0,16],[-10,0],[0,17],[-72,0],[0,-18],[-10,0]],[[6582,5646],[0,18],[-6,0],[0,50],[-1,0],[0,14]],[[6575,5728],[90,0]],[[6665,5728],[0,-66]],[[6665,5662],[0,-48]],[[6665,5614],[-52,0],[0,15],[-11,0],[0,17],[-20,0]],[[6665,5728],[100,0]],[[6765,5728],[0,-51],[5,0],[0,-16]],[[6770,5661],[-105,1]],[[6765,5728],[82,0]],[[6847,5728],[0,-36]],[[6847,5692],[-12,0],[0,-15],[-7,0],[0,-34]],[[6828,5643],[-58,1]],[[6770,5644],[0,17]],[[6847,5728],[47,0]],[[6894,5728],[0,-52],[5,0],[0,-33],[35,0]],[[6934,5643],[0,-17]],[[6934,5626],[-70,0],[0,51],[-17,0],[0,15]],[[6894,5728],[119,0]],[[7013,5728],[0,-52],[3,0],[0,-33]],[[7016,5643],[-12,0]],[[7004,5643],[-12,0],[0,16],[-58,-1],[0,-15]],[[7013,5728],[59,0]],[[7072,5728],[0,-51],[2,0],[0,-34]],[[7074,5643],[-58,0]],[[7072,5728],[48,0]],[[7120,5728],[0,-51],[3,-1],[0,-33]],[[7123,5643],[-2,-34],[-21,1]],[[7100,5610],[-26,0]],[[7074,5610],[0,33]],[[7120,5728],[94,0]],[[7214,5728],[0,-52],[2,0],[0,-33]],[[7216,5643],[-35,0]],[[7181,5643],[-58,0]],[[7214,5728],[65,0]],[[7279,5728],[1,-11],[4,-12],[0,-7],[-2,-3],[2,-1],[0,-2],[2,-5],[1,-3],[-1,-2],[1,0],[0,-5],[2,-3],[0,-2],[2,-5],[-2,-9],[-2,0],[0,-1],[-1,-1],[1,-7],[-3,0],[2,-2],[-2,-2],[2,-2],[-2,0]],[[7284,5643],[-68,0]],[[7284,5642],[0,1]],[[7279,5728],[73,0]],[[7352,5728],[0,-51],[2,0],[0,-34]],[[7354,5643],[-70,-1]],[[7352,5728],[101,0]],[[7448,5643],[-23,0]],[[7425,5643],[-71,0]],[[6176,5728],[112,0]],[[6288,5728],[0,-14],[-2,0],[0,-33],[-5,-2],[0,-31],[-2,0],[0,-28],[-7,3],[0,-43],[-1,0],[0,-44],[-11,0],[-3,2],[-1,-3],[-3,-11],[-3,1],[-20,0],[0,-11],[0,-1],[0,-24]],[[6230,5489],[-5,0],[0,2],[2,3],[-2,3],[0,2],[-5,4],[-7,-2],[-7,-3],[-2,1],[-7,1],[-2,-3],[-10,-7],[-4,-3],[-5,0],[-3,3],[-2,0]],[[6171,5490],[0,74]],[[6288,5728],[96,0]],[[6384,5728],[0,-15],[-2,0],[0,-64],[0,-11],[-1,-1],[-4,1],[-2,-6],[-3,0],[0,-17],[5,0],[0,-18],[-10,0],[0,-17],[-4,-1],[0,-64],[-2,0],[0,-35]],[[6361,5480],[0,-9],[-1,-4],[-4,1],[-5,4],[-4,0],[-5,0],[-5,-4],[-2,-7],[-5,-6],[-7,-7],[0,-8],[-2,-4],[-3,0]],[[6318,5436],[0,6],[-2,12],[-2,5],[-14,3],[-5,-2],[-9,0],[-5,0]],[[6281,5460],[-2,-3],[-5,4],[-2,-1],[0,4],[-2,2],[-5,-2],[-2,2],[-3,-1],[-4,2],[-6,0],[-6,5],[-5,0],[0,7],[-3,6],[-6,4]],[[6451,5531],[0,-1],[-1,0],[0,4],[-1,2],[-4,-7],[0,-3],[-3,-3],[2,-4],[-4,-3],[3,-5],[-5,-4],[0,-3],[-2,-1],[-1,-6],[-2,1],[0,2],[-2,0],[-2,-4],[-5,0],[-1,-6],[-1,-2],[-5,2],[-7,-2],[0,-8],[-2,-2],[-10,-2],[-9,1],[-8,-1],[-18,6],[-2,-2]],[[6384,5728],[95,0]],[[6479,5728],[1,-14],[-5,-1],[0,-16],[12,0],[0,-50],[19,0]],[[6506,5647],[0,-67],[-3,0],[0,-40]],[[6503,5540],[-2,1],[-2,4],[0,-4],[-3,-2],[-4,1],[-3,4],[0,-5],[-2,0],[-5,6],[0,-1],[0,-4],[-3,-1],[-1,1],[1,4],[-11,1],[-3,3],[-7,0],[-2,2],[-4,-2],[-1,-4],[0,-13]],[[6479,5728],[96,0]],[[6582,5646],[-76,1]],[[5166,5663],[-17,0],[0,-2],[-141,0]],[[5008,5661],[-4,14],[0,8],[-14,9],[-7,21],[-7,6],[7,2],[0,7],[172,0]],[[5498,5534],[0,13]],[[5587,5578],[0,-43]],[[5587,5535],[-7,8],[-5,-2],[-5,8],[-4,-1],[-5,-5],[0,-25]],[[5561,5518],[-14,0],[0,19],[-12,0],[0,-3],[-37,0]],[[6934,5626],[0,-17],[4,0],[0,-66],[5,0],[0,-33]],[[6943,5510],[-82,0]],[[6861,5510],[0,34],[-5,0],[0,66],[-4,2],[0,31],[-24,0]],[[7530,5510],[0,98]],[[7530,5675],[12,-1],[6,-11],[35,-6],[3,-19],[2,-1],[24,3],[4,3],[2,9],[14,9],[19,-3]],[[7651,5658],[-2,-105],[2,-2],[1,-32]],[[7652,5519],[-64,0],[0,-9],[-58,0]],[[5169,5640],[-1,-2],[-5,-2],[-4,2],[-1,4],[-2,1],[-2,-4],[-2,1],[-1,-2],[-4,0],[-2,-4],[-7,-4],[-1,-4],[1,-4],[-1,-6],[1,-11],[-1,-2],[0,-4],[4,-4]],[[5141,5595],[-123,-1]],[[5018,5594],[-16,24],[-12,0],[-2,15],[9,5],[7,-12],[5,0],[-2,19],[7,8],[-6,8]],[[6665,5539],[0,75]],[[6770,5644],[0,-34],[6,0],[0,-46]],[[6776,5564],[-4,0],[-4,-1],[-5,2],[-14,1],[-8,-3],[-2,-4],[0,-6],[-2,-2],[-10,-5],[-6,-1],[-7,-4],[-2,5],[-3,2],[0,7],[-3,8],[1,1],[-1,0],[-4,-3],[-5,0],[-4,-5],[2,-3],[-2,-3],[-1,-2],[-4,1],[0,-5],[0,-5],[-2,-2],[-1,3],[-2,0],[-2,-4],[-2,-5],[-3,0],[-2,5],[-3,-1],[-4,3],[-2,1]],[[7011,5511],[-35,-1]],[[6976,5510],[-33,0]],[[7004,5643],[0,-34],[4,-1],[0,-65],[3,0],[0,-32]],[[7766,5333],[-26,-25],[-11,-22],[-8,-2]],[[7721,5284],[1,19],[-69,0]],[[7653,5303],[1,49]],[[7654,5352],[-1,134],[-1,0],[0,33]],[[7651,5658],[12,0],[19,-16],[9,0],[0,-7],[-5,-1],[-2,-8],[19,-3],[5,-7],[-3,-10],[10,-26],[9,5],[-2,11],[2,9],[12,3],[9,-2],[5,-20],[18,-8]],[[7768,5578],[-2,-63],[2,-58],[-2,-124]],[[4965,5623],[-12,7],[-5,8],[-2,7],[3,12],[4,-2],[7,-10],[2,-5],[3,-1],[-5,-2],[0,-4],[5,-10]],[[6665,5539],[-3,1],[0,4],[-2,0],[-2,5],[-5,-3],[0,7],[-2,-8],[-1,-1],[-4,1],[-2,4],[-5,-2],[-2,6],[-7,4],[-1,3],[-2,3],[-2,-3],[-2,1],[-5,-1],[-1,4],[-4,0],[0,-5],[-3,0],[-2,1],[-5,-1],[-2,4],[-7,-2],[-4,4],[-3,-1],[-2,-5],[-3,0],[1,-3],[-2,-3],[-1,0],[0,3],[-4,-7],[-1,0],[-1,6],[-3,-5],[-2,0],[0,4],[-2,0],[-3,4],[-2,-4],[0,-3]],[[6562,5551],[-2,2],[0,2],[-1,2],[-7,-2],[-4,2],[-7,-1],[-7,1],[-3,-6],[-2,3],[-9,-1],[2,-6],[-5,2],[-4,-5],[-1,0],[-2,2],[0,-3],[-4,0],[-3,-3]],[[6861,5510],[-47,0],[0,-15]],[[6814,5495],[-4,-4],[-3,3],[-9,5],[-5,4],[-2,2]],[[6791,5505],[0,6],[0,14],[7,10],[0,4],[0,2],[-2,2],[-3,4],[-2,0],[-2,8],[-7,3],[0,2],[0,3],[-6,1]],[[7287,5573],[0,3]],[[7287,5576],[0,2],[2,0],[-2,4],[2,1],[-2,0],[0,5],[0,1],[2,3],[0,2],[-2,1],[2,0],[0,2],[-2,1],[2,1],[-2,1],[0,7],[-1,0],[1,2],[0,4],[-3,0],[3,4],[-1,0],[0,1],[1,0],[2,5],[-3,0],[1,15],[-1,0],[1,2],[-3,2]],[[7425,5643],[0,-73]],[[7425,5570],[-82,0]],[[7343,5570],[-56,3]],[[7183,5577],[-13,0],[0,-34],[-8,0],[0,-20]],[[7162,5523],[-11,1],[0,3],[-2,4],[0,8],[-1,0],[-4,0],[-2,-5],[-3,-1],[0,1],[3,4],[-1,2],[-2,-1],[-2,8],[0,3],[-7,-5],[-2,-5],[0,3],[-3,-4],[-5,0],[1,2],[-3,3],[0,4],[-2,-1],[-3,-3],[0,15],[-4,0],[-2,5],[-7,4],[0,42]],[[7181,5643],[0,-35],[2,0],[0,-31]],[[7287,5576],[-69,1]],[[7218,5577],[-35,0]],[[7425,5543],[0,27]],[[7530,5510],[2,-80]],[[7532,5430],[-2,-3],[-21,-1]],[[7509,5426],[-47,1]],[[7462,5427],[-2,88],[-5,4],[-2,2],[0,4],[2,13],[2,6],[-32,-1]],[[7074,5610],[-30,-1],[-1,-66],[3,0],[0,-33]],[[7046,5510],[-23,1]],[[7023,5511],[-12,0]],[[5243,5530],[2,-3],[-6,-8],[0,-5],[-3,-5],[-1,-8],[-3,-3],[-7,-3],[-4,2],[-3,-1],[-5,-8],[0,-3],[2,-5],[-4,-11],[0,-8],[-1,-5],[-4,-7],[-2,-8],[0,-10],[4,-9],[12,-4],[5,-6],[0,-3],[-1,-11]],[[5224,5398],[-27,0],[-12,12],[-2,-3],[-3,-1],[0,2],[-4,4],[-4,3],[-13,11],[-3,0],[-7,4],[-7,16],[-4,2],[-3,6],[-1,5],[-3,2]],[[5131,5461],[0,9],[0,7],[4,7],[0,5],[-4,8]],[[5131,5497],[4,7],[-5,3],[-4,12],[2,11],[3,7],[0,2],[-1,5],[1,2],[6,4],[5,6],[5,5],[0,5],[2,4],[0,6],[-2,2],[-2,5],[-3,5],[-1,7]],[[6003,5564],[0,-28]],[[6003,5536],[-51,-1],[0,11],[-5,0],[0,9],[-12,1],[0,7],[-75,-2]],[[4817,5515],[-11,52],[3,16],[-1,27],[14,-4],[51,-37],[54,-10],[24,8],[18,-10],[0,-6]],[[4969,5551],[-2,0],[0,-37],[-63,0],[0,1],[-87,0]],[[7162,5523],[0,-13]],[[7162,5510],[-69,0]],[[7093,5510],[-47,0]],[[6171,5490],[-4,1],[-1,-3],[-4,1],[-3,-2],[-5,-5],[-9,3],[1,-16],[-3,-7],[2,-7],[-2,-3],[-7,-5],[0,-2],[-5,-5],[-4,0],[-7,-9],[-3,-4],[-6,1]],[[6111,5428],[-38,0]],[[6073,5428],[0,6],[-12,0],[0,14],[-9,0],[-2,4],[0,-1],[-5,3],[-2,4],[-5,1],[-2,2],[0,4],[2,9],[2,1],[2,4],[0,2],[-39,0]],[[6003,5481],[0,55]],[[5131,5497],[-115,-1]],[[5016,5496],[9,33],[7,4],[1,7],[-14,24],[-3,18]],[[5016,5582],[0,3]],[[5016,5585],[2,9]],[[4986,5592],[7,23],[4,1],[7,-17],[0,-6],[-9,3],[-8,-14],[10,-4],[5,-24],[6,3],[10,-13],[1,-13],[-1,-11],[-6,4],[-3,13],[-7,-4],[-5,11],[-7,30],[-7,6],[3,12]],[[5016,5582],[-5,1],[0,-19],[8,-14],[-15,14],[0,14],[3,9],[9,-2]],[[5717,5498],[0,-10],[1,0],[0,-27],[21,-1],[3,1],[-1,-3],[0,-4],[-3,-5],[-2,-9],[3,2],[4,0],[2,-5],[-3,0],[-3,-6],[0,-10],[3,-5],[11,-1],[0,-34],[0,-8]],[[5753,5373],[0,-2],[-3,1],[-1,-2],[-6,1],[-4,5],[0,5],[-1,4],[-9,1],[-9,11],[-10,2],[-4,-3],[-6,2]],[[5700,5398],[-4,1],[0,4],[-6,0],[0,3],[-7,0],[0,13],[-1,3],[-3,3],[-10,3],[-4,7],[-4,1],[-2,3],[-4,1],[-4,-2],[-6,2],[-7,-3],[-4,5],[-1,-3],[-3,-2],[-3,0],[-3,3],[0,-1]],[[5624,5439],[-5,2],[-2,6],[-2,2],[4,11],[0,5],[-3,5],[0,10],[-4,4],[-2,6],[-5,1],[0,10],[-2,4],[-5,3],[-2,6],[-5,10],[-2,9],[-2,2]],[[7768,5578],[7,-1],[0,-17],[12,-1],[0,-12],[30,8],[19,22]],[[7836,5577],[0,-140]],[[7836,5437],[-40,-65],[-30,-39]],[[7219,5477],[-8,0]],[[7211,5477],[-48,1]],[[7163,5478],[-1,0],[0,32]],[[7218,5577],[0,-34],[1,0],[0,-66]],[[7287,5573],[0,-3],[2,-1],[-2,-2],[0,-2],[0,-5],[2,-1],[2,-6],[2,-6],[1,-17],[4,-6],[-2,-8],[2,-1],[3,-9],[0,-3],[2,-4],[2,-5],[0,-9],[3,-8]],[[7308,5477],[-52,0]],[[7256,5477],[-37,0]],[[7345,5531],[0,-22],[12,0],[0,-15],[47,0],[0,15],[11,1],[0,16]],[[7415,5526],[10,0]],[[7425,5526],[2,-49],[2,0],[0,-33]],[[7429,5444],[-46,0]],[[7383,5444],[-71,0]],[[7312,5444],[0,3],[0,5],[0,4],[0,6],[-2,3],[-2,12]],[[7343,5570],[0,-27],[2,0],[0,-12]],[[7425,5543],[0,-17]],[[7415,5526],[0,7],[-70,-2]],[[5323,5531],[-10,-1],[0,-2],[-5,-1],[0,-4],[0,-4],[-3,0],[0,-2],[-4,-1],[0,-15],[0,-4],[-2,0],[0,-7],[-2,0],[0,-3],[-3,-1],[0,-7],[0,-3],[-2,0],[0,-9],[-1,0],[0,-2],[-6,0],[0,-1],[-2,-2],[0,-2],[-3,0],[0,-2],[0,-3],[-2,0],[0,-4],[-2,0],[0,-3],[-3,0],[0,-17],[-30,-1],[0,-5],[-2,0],[0,-3],[-2,0],[0,-4],[-1,-1],[0,-2],[-2,-3],[0,-1],[-2,-1],[0,-2],[-2,-1],[0,-17]],[[5232,5390],[-7,1],[-1,7]],[[6791,5505],[0,-26],[-40,-1],[-2,-67]],[[6749,5411],[-50,0]],[[6699,5411],[-34,0]],[[6665,5411],[0,14]],[[6665,5425],[0,114]],[[4841,5448],[-3,21],[-9,34],[-12,12]],[[4969,5551],[7,13],[7,2],[-3,-10],[13,-32],[1,-11],[-11,-10],[-2,-2],[-1,10],[-6,-6],[-2,-28],[-10,-13]],[[4962,5464],[-45,0],[0,-19]],[[4917,5445],[-49,1],[0,2],[-27,0]],[[6665,5425],[-7,0],[0,-8],[-26,0]],[[6632,5417],[-8,0],[0,32],[-7,0],[0,16],[-35,2],[0,14],[-23,1],[-2,17]],[[6557,5499],[2,14],[3,0],[0,38]],[[6003,5481],[-23,-1],[0,-15],[-22,0],[0,-20],[-11,2]],[[5947,5447],[-7,-2],[-10,0],[-4,0],[-3,5],[-9,2],[-2,10],[-7,3],[-1,5],[-4,1],[-2,-2],[-3,-1],[-2,-2],[-9,-1],[-3,-3],[-5,3],[-4,3],[-1,8],[-2,1],[0,8],[-2,9],[2,10],[-4,14],[-2,5],[0,5]],[[6557,5499],[-10,0],[0,-51],[-4,-1],[0,-65]],[[6543,5382],[-38,1],[0,-17],[-13,0],[2,16],[-12,0]],[[6482,5382],[-9,0],[0,35],[-10,0],[0,31],[2,0],[1,66],[-8,0],[-1,17],[-6,0]],[[5685,5333],[-124,0]],[[5561,5333],[0,18]],[[5561,5351],[0,75]],[[5561,5426],[0,92]],[[5624,5439],[0,-3],[-1,-2],[-7,0],[-4,-4],[0,-2],[10,-3],[2,-4],[3,-2],[4,-7],[3,-9],[2,-2],[7,0],[2,-2],[6,-2],[1,-2],[3,-13],[9,-11],[2,-5],[2,0],[1,-5],[4,-8],[3,-10],[2,-1],[2,-1],[5,-8]],[[5498,5534],[0,-116]],[[5498,5418],[0,-20]],[[5498,5398],[-71,0]],[[5427,5398],[1,106]],[[5804,5462],[-28,0],[2,-2],[0,-6],[0,-5],[0,-4],[-2,-4],[0,-2],[5,-10],[2,-8],[-2,-5],[0,-7],[0,-3],[0,-4],[2,-1],[4,-4],[0,-16],[-11,0],[0,-6],[-23,-2]],[[7462,5377],[-33,1]],[[7429,5378],[0,66]],[[7462,5427],[0,-17],[2,0],[-2,-33]],[[5561,5426],[-16,-1],[0,1],[-6,0],[0,-2],[-4,0],[0,-5],[-10,0],[0,2],[-3,0],[0,-1],[-4,0],[0,-3],[-20,1]],[[6482,5382],[0,-60]],[[6482,5322],[0,-2]],[[6482,5320],[-58,0],[0,2],[-66,0],[0,-2],[-38,0]],[[6320,5320],[-2,2],[-2,5],[0,6],[2,5],[-2,1],[2,4],[1,2],[1,4],[-2,3],[0,4],[-2,1],[0,6],[0,3],[0,4],[-2,1],[0,8],[2,3],[-2,4],[0,3],[0,1],[0,2],[-1,3],[1,3],[-1,3],[0,9],[3,12],[2,14]],[[5323,5527],[0,-129]],[[5323,5398],[0,-67],[-36,-1],[0,-32]],[[5287,5298],[0,-11],[-7,0]],[[5280,5287],[0,4],[-4,5],[-10,-15],[-2,0],[-5,1],[-9,-4],[-7,-1]],[[5243,5277],[-5,6],[-3,10],[0,5]],[[5235,5298],[4,12],[-4,12],[0,11],[-3,10],[-1,13],[-3,5],[4,12],[-1,8],[1,9]],[[5427,5398],[-13,0]],[[5414,5398],[-91,0]],[[5947,5447],[0,-61],[2,0],[0,-4],[3,1],[4,-5],[-2,-3],[4,-3],[10,0],[0,-42],[14,1]],[[5982,5331],[4,-4],[-4,-5],[0,-4],[5,-7],[4,-1],[3,2],[1,0],[1,-10]],[[5996,5302],[-2,0],[-7,5],[-1,0],[-4,-9],[0,-32],[-14,0]],[[5968,5266],[-19,0],[0,-5],[-3,-3],[-4,-4],[-3,0],[-6,-2],[0,-4],[2,-3],[-2,-2],[-3,-4],[-9,-1]],[[5921,5238],[2,14],[0,5],[0,7],[2,7],[-4,11],[-7,0],[0,7],[-12,1],[0,27],[-23,-1],[0,65],[-24,0],[0,59],[-2,0],[-2,0],[-1,5],[0,5],[1,5],[-3,6]],[[4995,5425],[-15,0]],[[4980,5425],[0,21],[-20,0]],[[4960,5446],[9,19],[14,10],[4,16],[10,19],[0,16],[7,-5],[5,-30],[-14,-10],[5,-23],[2,2],[2,-13],[3,-2],[-5,-20]],[[5002,5425],[-7,0]],[[7654,5352],[-66,3]],[[7588,5355],[0,33],[0,1],[-2,6],[2,3],[0,8],[-4,0],[-5,3],[-2,-4],[-3,1],[-2,5],[-5,4],[-2,5],[0,8],[-3,10],[-2,2],[-4,-1],[-15,-12],[-9,3]],[[7023,5511],[0,-34],[4,0],[-2,-67]],[[7025,5410],[-7,0]],[[7018,5410],[-49,0]],[[6969,5410],[0,66],[7,0],[0,34]],[[7093,5510],[-1,-32],[3,0],[0,-18]],[[7095,5460],[0,-49]],[[7095,5411],[-19,0]],[[7076,5411],[-51,-1]],[[6969,5410],[-7,0],[0,-31],[-19,1]],[[6943,5380],[-2,2],[0,4],[0,6],[0,6],[-5,5],[-9,3],[-3,-4],[-2,-5],[-7,3]],[[6915,5400],[-1,2],[-6,3],[-1,4],[-1,12],[-3,3],[-2,11],[-1,3],[1,4],[5,5],[-5,9],[-5,0],[-12,-7],[-9,0],[-9,-5],[-7,1],[-5,4],[-7,2],[0,5],[-3,3],[-7,-1],[-6,1]],[[6831,5459],[-3,6],[-2,4],[0,16],[-2,6],[2,4],[0,4],[-3,0],[-4,2],[-2,-1],[-3,-5]],[[7163,5478],[0,-17]],[[7163,5461],[-68,-1]],[[6831,5459],[0,-47],[4,0],[0,-62]],[[6835,5350],[-32,0],[0,-4],[-47,0]],[[6756,5346],[0,65],[-7,0]],[[6281,5460],[2,-11],[-2,0],[0,-42],[-2,0],[0,-1],[-22,0],[0,-7],[-11,0],[0,-17],[-2,0],[0,-15],[11,0],[1,-49],[-3,0],[0,-17]],[[6253,5301],[-33,1]],[[6220,5302],[-35,0],[0,-12]],[[6185,5290],[-33,0]],[[6152,5290],[1,17],[-3,0],[0,2],[-2,0],[0,1],[-2,1],[0,6],[2,0],[0,6],[2,0],[0,5],[3,0],[0,57],[-10,0],[0,7],[-12,0],[0,9],[-12,0],[0,17],[-7,1],[-1,9]],[[6632,5417],[-2,-8],[6,-8],[0,-4],[1,-1],[2,-7],[2,-14],[0,-19],[-2,0],[0,-8],[-2,-3],[0,-4],[-1,0],[-2,-10],[-2,0],[0,-3],[-2,0],[0,-1],[-1,0],[0,-3],[-2,-2],[-2,0],[0,-1],[-9,0]],[[6616,5321],[-40,1],[0,5],[-1,0],[0,2],[-2,1],[0,2],[-11,1],[0,10],[-12,2],[0,37],[-7,0]],[[5131,5461],[-3,0],[-7,-6],[-5,-14],[-6,-5],[-7,-16],[-3,-3],[3,-5],[0,-7],[9,-4],[0,-4],[-2,-6],[4,-5],[0,-11],[0,-2],[-5,3],[-2,-1],[-1,-6],[1,-4]],[[5107,5365],[-5,0],[-6,6],[-7,-1],[-4,8],[-6,0],[-8,3],[-4,-5],[-6,2],[-4,-2],[-3,3],[-7,3],[-5,5],[-3,11],[-16,0],[-8,11]],[[5015,5409],[8,3],[0,10],[-7,23],[2,16],[-3,14],[1,21]],[[6073,5428],[0,-11],[-12,0],[0,-11],[-2,0],[0,-9],[2,0],[0,-5],[0,-26],[10,0],[0,-33],[2,0],[0,-15],[-2,0],[0,-5]],[[6071,5313],[-3,5],[-5,1],[0,8],[-4,3],[-2,-1],[-3,3],[-5,10],[-6,6],[-3,2],[-7,-1],[-5,16],[-2,0],[0,-15],[-10,0],[0,-2],[-25,0],[0,-17],[-9,0]],[[7163,5410],[0,51]],[[7211,5477],[0,-66],[1,-1],[0,-15]],[[7212,5395],[-45,0]],[[7167,5395],[0,15],[-4,0]],[[7256,5477],[0,-68],[2,0],[1,-14]],[[7259,5395],[-24,1]],[[7235,5396],[-23,-1]],[[7314,5395],[-55,0]],[[7312,5444],[-2,-7],[2,-6],[-2,-5],[2,0],[2,-5],[-2,-3],[2,-6],[-2,-4],[2,-3],[-2,-7],[2,-3]],[[4962,5464],[-10,-28],[-3,-21],[13,1],[14,15],[-17,-14],[-7,3],[8,26]],[[4980,5425],[0,-7]],[[4980,5418],[-7,-12],[-21,-19],[3,-21]],[[4955,5366],[0,-4],[-11,1]],[[4944,5363],[-26,0],[0,34],[-1,0],[0,48]],[[5818,5462],[0,-81],[14,0],[2,-65]],[[5834,5316],[-11,0],[0,-8],[-5,0],[-2,-9],[-5,0],[0,-7],[-10,0],[0,-10],[-13,0]],[[5788,5282],[-47,0]],[[5741,5282],[-5,1],[-4,-2],[-4,-4],[-6,3],[-7,-2]],[[5715,5278],[-2,5],[0,3],[2,2],[-4,10]],[[5711,5298],[0,2],[11,0],[0,16],[-2,1],[0,23],[1,1],[1,5],[0,1],[3,1],[7,-3],[0,3],[2,1],[0,2],[-6,0],[0,9],[-7,1],[0,5],[-3,0],[0,4],[-4,1],[0,2],[-3,0],[0,6],[-3,1],[0,1],[-1,0],[0,8],[-6,1],[0,2],[-1,0],[0,6]],[[6320,5320],[5,-10],[-2,-6],[3,-2]],[[6326,5302],[-73,-1]],[[5921,5238],[-2,-8],[-3,-1],[-2,1],[-5,-10],[-2,3],[-2,-3],[-3,1],[-2,-7],[0,-6]],[[5900,5208],[-42,0]],[[5858,5208],[0,89],[-7,-4],[-2,3],[-5,0],[0,6],[-5,5],[-2,6],[-2,-4],[-1,7]],[[5235,5298],[-49,0],[0,15],[-10,0],[0,17],[-38,0],[-1,7],[-3,5],[-1,4],[-7,10],[-9,9],[-4,-3],[-3,0],[-3,-1]],[[5107,5361],[0,4]],[[7163,5410],[-68,1]],[[6915,5400],[2,-4],[-46,-1],[0,-49]],[[6871,5346],[-31,0]],[[6840,5346],[-5,0],[0,4]],[[4944,5363],[0,-16],[4,0],[0,-39]],[[4948,5308],[-20,0]],[[4928,5308],[-66,0]],[[4862,5308],[-2,21],[2,1],[0,-6],[7,-11],[-1,14],[21,15],[-16,1],[-4,12],[-7,2],[-4,-24],[-3,48],[-3,20],[-8,14],[-3,33]],[[7314,5378],[1,3],[-1,14]],[[7383,5444],[0,-66]],[[7383,5378],[-12,0]],[[7371,5378],[-57,0]],[[7429,5378],[-46,0]],[[5711,5298],[-3,0],[-4,-8],[-3,1],[0,11],[-1,1],[-4,3],[-3,3],[-3,1],[-4,11],[1,6],[0,3],[-2,3]],[[7588,5355],[0,-45]],[[7588,5310],[-51,0],[2,-93],[0,-7]],[[7539,5210],[-2,3],[-3,1],[-2,6],[-2,1],[-3,-1],[-2,-3],[-5,-2],[-4,5],[-2,0],[-3,3],[-2,1]],[[7509,5224],[0,3],[-1,-3],[-2,0],[-4,4]],[[7502,5228],[0,2],[-1,0],[-4,3],[2,45],[-2,0],[0,32]],[[7497,5310],[12,0],[0,33],[0,2],[0,64],[0,17]],[[9832,5233],[0,34],[-80,0]],[[9752,5267],[-27,0]],[[9725,5267],[2,22],[67,146],[18,-7],[1,-30],[12,-15],[35,22],[11,-3],[5,15],[9,-1],[40,-56],[0,-212],[3,-6],[-4,-8],[3,-10],[-3,-5],[0,-23]],[[9924,5096],[-22,-7]],[[9902,5089],[-19,-6],[0,-2],[-14,-5],[-2,3],[0,33],[1,2],[-2,61],[1,55],[-24,1],[0,2],[-11,0]],[[6152,5290],[-5,0],[-13,12],[-5,-3],[-4,2],[-3,-1],[-4,-6],[-5,2],[-3,-4],[-5,1]],[[6105,5293],[-2,-4],[-4,-2],[-5,2],[-4,-2],[-10,11],[0,5],[-2,1],[-5,0],[-2,5],[0,4]],[[7497,5310],[-33,1]],[[7464,5311],[-2,66]],[[5498,5371],[0,27]],[[5561,5351],[-12,0],[0,2],[-32,0],[-2,3],[-5,6],[-5,-1],[-2,10],[-5,0]],[[6665,5411],[0,-130]],[[6665,5281],[-28,-1],[0,6],[-5,0],[0,2],[-16,0]],[[6616,5288],[-1,28],[1,0],[0,5]],[[6705,5279],[-17,-1],[0,-17],[-23,1]],[[6665,5262],[0,19]],[[6699,5411],[1,-65],[6,-1],[-1,-66]],[[6739,5279],[-34,0]],[[6756,5346],[-16,0],[-1,-67]],[[7170,5279],[-54,0]],[[7116,5279],[-37,1]],[[7079,5280],[0,65],[-3,0],[0,66]],[[7167,5395],[1,-49],[1,0],[1,-67]],[[7079,5280],[-42,-1]],[[7037,5279],[-15,0]],[[7022,5279],[0,67],[-4,0],[0,64]],[[7022,5279],[-51,0]],[[6971,5279],[0,4],[-7,-1],[-2,6],[-3,0],[-2,5],[2,3],[0,3],[-4,2],[0,10],[-7,18],[0,10],[-3,7]],[[6945,5346],[5,4],[0,7],[-3,9],[-4,14]],[[4995,5425],[-9,-13],[-3,-13],[5,-9],[-5,-10],[-7,12],[7,20],[-3,6]],[[5002,5425],[0,-5],[-5,-9],[5,-9],[-2,-5],[-3,8],[0,-5],[-9,3],[7,22]],[[5102,5307],[-28,0],[-9,-10],[-11,4],[-11,-1],[-11,2]],[[5032,5302],[-2,2],[-4,0],[-1,3],[0,6],[-2,5],[-7,1],[-5,2],[-2,2],[-2,6],[-6,8],[1,5],[-2,1],[-5,0],[0,4],[-5,3],[0,9],[-2,3],[0,5]],[[4988,5367],[9,15],[7,21],[-2,5],[12,-10],[2,3],[-4,5],[3,3]],[[5107,5361],[0,-2],[-1,-4],[0,-7],[-3,-3],[-1,-3],[-2,-6],[-4,-5],[-1,-5],[1,-7],[3,-2],[3,-7],[0,-3]],[[6945,5346],[-74,0]],[[5414,5398],[0,-67],[0,-9],[-3,-3],[2,-3],[-3,-5],[1,-3],[-4,-4],[-4,2],[-6,-5],[-7,-2]],[[5390,5299],[-103,-1]],[[5393,5269],[0,7],[0,5],[0,7],[-3,8],[0,3]],[[5498,5371],[0,-111]],[[5498,5260],[0,-20]],[[5498,5240],[-7,-2],[-4,1],[-4,-1],[-1,5],[-2,1]],[[5480,5244],[0,4],[0,6],[-1,7],[-3,5],[-6,2],[-4,6],[-3,8],[-1,2],[-3,5],[-1,0],[-2,-3],[-7,1],[-3,-3],[-4,6],[-5,0],[-3,-3],[-3,-8],[-3,-3],[-3,0]],[[5425,5276],[-4,-7],[-11,-1],[-6,-1],[-4,-4],[-3,0],[-4,6]],[[7235,5396],[0,-51],[3,0],[0,-67]],[[7238,5278],[-33,0]],[[7205,5278],[-35,1]],[[7317,5278],[-44,1]],[[7273,5279],[-35,-1]],[[7314,5378],[1,-12],[0,-3],[0,-8],[-1,-5],[1,-2],[0,-6],[2,0],[0,-2],[0,-1],[0,-3],[4,1],[0,-4],[-2,-10],[0,-4],[-2,-7],[2,-10],[0,-10],[-2,-5],[0,-9]],[[6616,5288],[0,-6],[-12,0],[0,-8]],[[6604,5274],[-12,0],[0,-8],[-11,0],[0,-4],[-24,0],[0,4],[-19,1],[2,5],[-4,0],[0,11],[-9,1],[0,17],[-3,0],[0,16],[-19,1],[0,4],[-23,0]],[[7464,5311],[0,-17]],[[7464,5294],[-91,0]],[[7373,5294],[0,49],[-2,0],[0,35]],[[7364,5278],[-45,-1]],[[7319,5277],[-2,1]],[[7373,5294],[0,-16],[-9,0]],[[4955,5366],[5,1],[9,-9],[12,14],[6,-9],[1,4]],[[5032,5302],[-84,0],[0,6]],[[5561,5333],[0,-56],[-12,0]],[[5549,5277],[-13,-1],[-7,-9],[-1,-7],[-30,0]],[[6105,5293],[-1,-93]],[[6104,5200],[0,-9]],[[6104,5191],[-12,0],[0,2],[-33,0]],[[6059,5193],[-24,0]],[[6035,5193],[1,6],[-3,3],[0,2],[-2,1],[-1,5],[1,11],[4,6],[0,3],[1,4],[-3,3],[-2,3],[-2,3],[-5,0],[-1,-2],[-2,-2],[-4,2],[0,11],[-1,1],[-1,5],[-5,1],[-1,2],[3,5],[-2,2],[0,10],[-7,2],[0,4],[-3,3],[0,2],[-2,2],[2,6],[0,2],[-4,3]],[[5243,5277],[0,-14],[0,-65],[0,-34]],[[5243,5164],[-147,2]],[[5096,5166],[-1,64]],[[5095,5230],[11,1],[1,3],[-7,23],[5,6],[0,4],[1,2],[-1,4],[2,6],[-2,7],[2,2],[2,1],[1,5],[-3,3],[-4,1],[-1,9]],[[7586,5203],[0,65],[2,2],[0,40]],[[7653,5303],[1,-65]],[[7654,5238],[0,-50]],[[7654,5188],[-35,-1]],[[7619,5187],[0,16],[-33,0]],[[6840,5346],[0,-50]],[[6840,5296],[0,-17]],[[6840,5279],[-73,-1]],[[6767,5278],[-28,1]],[[6971,5279],[2,-6],[5,-2],[0,-3],[0,-2],[0,-7],[-2,-11],[0,-8]],[[6976,5240],[-3,0],[-2,-3],[-3,0],[-4,-7],[-2,4],[-7,-2],[-3,1],[0,1],[-4,0],[-3,-4],[0,-5],[-4,-4],[-3,-2],[0,-4],[-2,-4],[-2,0]],[[6934,5211],[0,17],[-22,0],[0,50],[-37,1],[0,14],[-35,3]],[[7789,5189],[0,113]],[[7789,5302],[61,38],[9,-7],[0,-6],[-14,-58]],[[7845,5269],[-2,-59],[2,-22]],[[7845,5188],[-56,1]],[[5715,5278],[-1,-2],[-90,-29],[-2,-10],[-6,-9],[-1,-6],[-3,-11],[-2,-3],[-2,0],[-6,3],[-8,2],[-3,1],[-7,10],[-4,1],[-5,3]],[[5575,5228],[-1,6],[-11,0],[-2,8],[-5,5]],[[5556,5247],[0,4],[-7,0],[0,26]],[[6590,5184],[-5,0],[0,-66],[-5,0]],[[6580,5118],[-107,1]],[[6473,5119],[-1,65],[3,-1],[0,65],[4,0],[0,69],[3,0],[0,3]],[[6604,5274],[0,-25],[-16,0],[0,-31],[2,0],[0,-34]],[[6333,5249],[0,3],[-3,0]],[[6330,5252],[-2,0],[0,19],[-2,0],[2,6],[-1,3],[1,4],[0,4],[-1,5],[0,5],[-1,4]],[[6473,5119],[-5,0],[0,-85],[-3,0],[0,-32]],[[6465,5002],[-44,0],[0,31],[3,0],[0,63],[-16,3],[0,19],[2,0],[0,7],[-5,1],[0,7]],[[6405,5133],[0,50],[-5,1],[0,33],[-2,1],[0,15],[-12,0],[0,14],[-2,0],[0,3],[-51,-1]],[[5858,5208],[0,-8],[-23,0],[0,-17],[2,0],[0,-15],[-2,-4],[-5,-5],[-1,-1],[-4,3],[-2,-7],[-5,-2],[0,-4],[-2,-3]],[[5816,5145],[-2,0]],[[5814,5145],[-1,3],[-2,-3],[-5,4],[0,2],[-4,0],[-1,9],[-2,4],[-6,1],[-3,-2],[-2,1],[2,6],[0,1],[3,7],[-3,7],[0,5],[-3,2],[0,3],[1,4],[2,1],[3,8],[-3,2],[0,7],[0,10],[-3,7],[-4,5],[2,4],[-2,9],[2,2],[2,14],[1,2],[0,8],[0,4]],[[7502,5228],[-38,0]],[[7464,5228],[0,66]],[[7586,5203],[0,-16]],[[7586,5187],[-51,1],[0,4],[-1,9],[5,9]],[[4897,5212],[-14,-9],[-10,14],[-8,-9],[2,72],[4,-12],[0,-38],[15,4],[-8,15],[4,5],[-6,22],[3,10],[7,8],[-4,6],[-13,-6],[-5,3],[-2,11]],[[4928,5308],[2,-79]],[[4930,5229],[-33,1],[0,-18]],[[5095,5230],[-65,0]],[[5030,5230],[-88,-1]],[[4942,5229],[-12,0]],[[6035,5193],[-25,-1],[0,-11],[-5,-6],[-2,-3],[0,-14],[-5,-3],[0,-4],[-2,-7],[-2,0],[-3,-2],[-2,-3],[-2,-5],[-3,-4],[-2,-2]],[[5982,5128],[0,38],[-12,2],[-2,98]],[[7721,5284],[1,-1]],[[7722,5283],[0,-45]],[[7722,5238],[-68,0]],[[6220,5302],[-2,-25],[2,-1],[0,-8],[9,0],[0,-18],[1,0],[0,-7],[4,0],[-2,-15],[2,0],[2,-8],[1,0],[0,-3],[2,0],[-2,-7],[2,0],[0,-26]],[[6239,5184],[-12,0]],[[6227,5184],[-44,-1],[0,-18]],[[6183,5165],[-17,0],[0,18],[-4,1],[0,16]],[[6162,5200],[21,0],[0,51],[2,2],[0,37]],[[7722,5188],[0,50]],[[7722,5283],[7,-1],[11,18],[7,-12],[9,-1],[33,15]],[[7789,5189],[-46,-1]],[[7743,5188],[-21,0]],[[6330,5252],[0,-20],[-14,0],[0,-3],[-2,0],[0,-1],[0,-4],[-3,0],[0,-2],[-2,0],[0,-5],[-2,0],[0,-9],[-26,0],[0,-3],[-3,0],[0,-2],[-4,0],[0,-19],[-35,0]],[[6162,5200],[-58,0]],[[5393,5269],[-1,1]],[[5392,5270],[-9,2],[-7,-4],[-5,2],[-3,-2],[-13,-15],[2,-6],[-2,-5],[-1,-8],[-4,-6],[-4,-1],[-5,-9],[2,-5],[-4,-1],[-5,-7],[-11,-3],[-3,-2],[-1,-6]],[[5319,5194],[-8,7],[-10,2],[-3,6],[0,2],[1,8],[-1,9],[0,20],[0,6],[-11,14],[-2,5],[-1,9],[-4,2],[0,3]],[[5319,5194],[1,-3],[2,-2],[5,-16],[0,-9],[-4,-6]],[[5323,5158],[-4,-7],[-11,-7],[-2,-1],[-12,1],[-7,-1],[-4,-1]],[[5283,5142],[-7,-3],[-7,3],[-3,-3],[-7,-10],[-13,-1],[-3,-3]],[[5243,5125],[0,39]],[[6849,5168],[0,29]],[[6849,5197],[0,14],[-4,0],[0,68],[-5,0]],[[6934,5211],[-3,-3],[-2,-4],[0,-4],[-7,-7],[0,-8],[-2,2],[-1,-3],[-6,-1],[-1,-3],[-4,-7],[-5,-2],[-2,-2],[-1,0],[-4,0],[-2,-3],[0,-3],[-3,1],[0,-2],[-2,-2],[-2,3],[-2,-2],[-3,3],[-2,-3],[-1,0],[-6,4],[-1,-1],[-1,1],[-3,-1],[-2,0],[-2,0],[-3,7],[-2,-1],[0,-1],[-5,1],[-2,-2],[-3,0]],[[7464,5228],[2,-50]],[[7466,5178],[-56,0]],[[7410,5178],[-46,0]],[[7364,5178],[0,33],[0,67]],[[5458,5158],[-10,0]],[[5448,5158],[-2,65],[-5,0],[0,7],[-2,0],[0,3],[-2,0],[0,9],[-2,0],[0,6],[-11,0],[1,28]],[[5480,5244],[0,-7],[-10,-3],[-1,-1],[-3,0],[0,-3],[-3,0],[0,-49],[-5,0],[0,-23]],[[6665,5262],[0,-51]],[[6665,5211],[0,-65]],[[6665,5146],[0,-11]],[[6665,5135],[-7,0],[0,17],[-24,0],[0,16],[-11,0],[-1,16],[-32,0]],[[5519,5129],[5,2],[2,5],[-1,12],[4,7]],[[5529,5155],[4,0],[0,7],[3,2],[4,-1],[3,-5],[0,1],[3,4],[0,17],[3,1],[0,11],[5,2],[2,-2],[5,0],[2,-3],[4,1],[8,-3],[0,2],[2,8],[7,0],[7,3],[0,1],[-9,9],[-7,18]],[[5741,5282],[1,-5],[-1,-8],[-2,-12],[0,-3],[-5,-4],[2,-10],[0,-7],[-1,-1],[-3,-20],[-3,-7],[0,-1],[3,-4],[0,-11],[-3,-1],[-4,0],[0,-4],[0,-4],[3,-1],[1,-6],[0,-5],[-2,-5],[2,-3],[-1,-5],[6,-3],[1,-3],[-3,-6],[2,-2],[2,-8],[-1,-4],[-3,0],[-3,-1],[-2,0],[-2,-6],[-4,-10],[1,-2],[0,-5],[5,-5],[-2,-5],[0,-4],[-4,-5],[1,-5],[-1,-10]],[[5721,5071],[-3,-4],[-3,-2],[-4,-10],[-1,0],[-7,8],[-2,-1],[-1,-3],[0,-9],[3,-3],[1,-4],[4,-2],[6,-15],[3,-4],[-6,-11],[-3,-8]],[[5708,5003],[-114,1],[0,3],[-7,-10],[-6,-3],[-4,-3],[0,-5]],[[5577,4986],[-14,1],[0,4],[0,15],[0,2],[-2,8],[-32,1]],[[5529,5017],[2,14],[9,23],[2,8],[7,13],[0,8],[-4,10],[-2,10],[-3,7],[-7,5],[-5,9],[-6,0],[-3,5]],[[5778,5095],[-4,1],[0,5],[-3,-2],[-2,-4],[0,-4],[0,-1],[-3,-4],[-2,-7],[-4,-3],[0,-4],[-5,-2],[-2,-3],[-3,3],[-1,-6],[-1,-4],[-6,-6],[-3,1],[-1,5],[-4,3],[-2,4],[-3,4],[-2,0],[-3,2],[-3,-2]],[[5814,5145],[-1,-2],[0,-9],[-4,-2],[-1,-3],[-4,-4],[-5,1],[-4,-2],[-2,-4],[-3,-4],[0,-6],[-2,-1],[-3,0],[-2,4],[-2,-3],[0,-10],[-3,-5]],[[7845,5269],[17,12],[18,-12]],[[7880,5269],[0,-65],[10,-1],[0,-15],[11,0],[0,-34]],[[7901,5154],[-34,-1]],[[7867,5153],[-21,1],[-1,34]],[[7116,5279],[0,-68]],[[7116,5211],[-75,0]],[[7041,5211],[-4,0],[0,68]],[[7041,5211],[0,-63]],[[7041,5148],[-58,-2]],[[6983,5146],[0,3],[-1,6],[-6,8],[-1,5],[-2,13],[0,10],[5,12],[-2,7],[4,12],[0,6],[-4,12]],[[7118,5211],[-2,0]],[[7205,5278],[0,-67]],[[7205,5211],[-87,0]],[[6767,5278],[0,-68]],[[6767,5210],[-6,0]],[[6761,5210],[-96,1]],[[6849,5197],[-44,1],[0,12],[-38,0]],[[7273,5211],[-64,0]],[[7209,5211],[-4,0]],[[7273,5279],[0,-68]],[[7338,5145],[-61,0]],[[7277,5145],[0,13],[-2,1],[0,52],[-2,0]],[[7319,5277],[0,-5],[3,-3],[0,-18],[2,-3],[0,-8],[3,-3],[4,-10],[3,-3],[1,-2],[0,-19],[1,-4],[0,-5],[2,-3],[2,-16],[-4,-13]],[[7336,5162],[2,-14],[0,-3]],[[7364,5178],[0,-16]],[[7364,5162],[-28,0]],[[5508,5155],[-3,15],[-2,2],[2,3],[3,14],[-3,6],[-1,10],[-3,10],[-3,7],[-2,2],[2,7],[0,9]],[[5556,5247],[-2,-2],[2,-6],[3,-5],[0,-11],[-10,0],[-2,-1],[0,-3],[-19,0],[-2,-6],[5,-9],[-2,-3],[0,-46]],[[5519,5129],[-4,11],[-4,14],[-3,1]],[[5448,5158],[-35,0]],[[5413,5158],[0,1]],[[5413,5159],[0,38],[-13,1],[0,15],[-10,0],[0,51],[2,0],[0,6]],[[5413,5159],[-90,-1]],[[7880,5269],[12,-2]],[[7892,5267],[2,-6],[5,2],[2,-1],[1,-4],[2,0],[0,-4],[5,0],[4,-11],[3,-11],[2,-4],[0,-5],[16,-8]],[[7934,5215],[0,-61],[-9,0]],[[7925,5154],[-24,0]],[[9784,4982],[7,-51],[0,-2],[1,-15]],[[9792,4914],[-5,-1],[-2,8],[-3,0],[-2,-3],[0,-7],[-7,-2]],[[9773,4909],[0,4],[-14,-2],[2,-8],[3,-7],[0,-4],[-2,-4],[-16,4],[-2,-5],[-1,1],[-1,4],[-3,3],[-6,-3]],[[9733,4892],[-2,6],[-3,5],[2,2],[0,2],[-4,-1],[-1,16],[1,0],[-2,10],[-1,0],[0,3],[1,0],[-1,7],[-9,-2],[0,8],[-1,0],[-1,4],[1,0],[0,4],[3,1],[-4,34],[-12,-3],[-2,9],[-5,0],[1,-1],[-5,-2],[-10,71],[1,0],[-4,28]],[[9676,5093],[14,12],[-1,13],[14,21],[1,9],[-6,3],[3,17],[-3,2],[7,14],[-4,10],[8,28],[13,17],[3,28]],[[9752,5267],[-2,-115],[5,1],[3,-22],[-3,-2],[-2,6],[-2,-1],[2,-8],[-2,-2],[1,-2],[-2,-8],[1,-3],[-4,0],[-1,3],[-1,-4],[0,-1],[-2,-1],[2,-3],[1,-6],[4,-4],[0,-3],[3,-1],[0,-1],[-1,-1],[1,-4],[-1,-1],[0,-8],[-6,-6],[7,-46],[-1,-1],[6,-37],[3,-16],[11,3],[0,4],[12,5]],[[9832,5233],[0,-137],[-12,-3],[-1,-28],[10,2],[7,-54],[-9,-2],[2,-16],[-45,-13]],[[5982,5128],[-5,-8],[-2,-1],[-3,2],[-2,-1]],[[5970,5120],[-3,2],[-4,1],[-3,2],[-2,4],[-4,0],[0,-1],[-9,0],[-5,-4],[0,-3],[-1,-3],[-1,-6],[-3,-3]],[[5935,5109],[-12,10],[-9,4],[-2,3],[2,5],[0,5],[-2,9],[0,5],[-1,13],[-2,2],[0,5],[0,5],[-2,3],[-2,6],[0,8],[-3,-2],[-4,1]],[[5898,5191],[0,6],[0,4],[2,2],[0,5]],[[6333,5249],[0,-2],[2,0],[0,-5],[2,0],[0,-8],[3,0],[0,-2],[0,-4],[2,0],[0,-4],[2,-1],[0,-6],[3,0],[0,-4],[2,0],[0,-5],[2,0],[0,-3],[2,0],[0,-5],[1,0],[0,-5],[2,-1],[0,-3],[2,0],[0,-3],[0,-4],[-2,-1],[0,-5],[-2,-8],[0,-5]],[[6354,5165],[-14,0],[-1,-11],[-11,0],[0,-5],[-3,0],[0,-5],[-4,0],[0,-6],[-15,0],[0,-23],[-2,0],[0,-49],[-11,0],[0,-5],[-10,0],[0,-7],[-30,2]],[[6253,5056],[-5,0],[0,10],[-7,0],[0,5],[-2,0],[0,18],[-5,-4]],[[6234,5085],[0,5],[-2,0],[0,1],[0,1],[0,3],[-2,0],[0,4],[-1,0],[1,51],[-3,0],[0,34]],[[6405,5133],[-10,1],[0,8],[-11,1],[0,6],[-21,0],[0,16],[-9,0]],[[5508,5155],[-50,3]],[[6983,5146],[-134,0]],[[6849,5146],[0,22]],[[7722,5188],[0,-17],[-3,-2],[-2,-6],[-2,-2],[-5,2],[-3,-9],[-6,0],[-3,-5],[-9,-7],[-5,-6],[-2,-7],[-2,-3],[-1,-14],[-6,-6]],[[7673,5106],[-26,2]],[[7647,5108],[0,46],[7,0],[0,34]],[[9901,5016],[-22,-5],[2,-25],[-11,-2],[2,-17],[-11,-3],[5,-41],[-16,-5],[-3,-6],[-4,2],[-2,-3],[-2,-7],[-3,0],[0,2],[-2,1],[-2,0]],[[9832,4907],[-1,4],[-3,0],[-2,-4],[-1,1],[-25,-10],[-3,17],[-5,-1]],[[9902,5089],[9,-72],[-10,-1]],[[5058,5090],[-4,-1],[-3,-4],[-7,-5],[-14,-9]],[[5030,5071],[0,98]],[[5030,5169],[0,61]],[[5096,5166],[-10,-1],[2,-50],[7,-1],[-2,-3],[2,-1],[0,-5]],[[5095,5105],[-16,-6],[-5,0],[-6,2],[-7,-5],[-3,-6]],[[4981,5129],[0,3],[-1,8],[0,8],[-6,15],[-5,9],[-4,7],[-7,9],[-6,3],[-6,1],[-4,-2]],[[4942,5190],[0,39]],[[5030,5169],[-4,0],[-1,-4],[-3,-16],[-3,0],[-10,5],[-5,-1],[-9,-9],[-7,0],[-5,-5],[4,-8],[-4,1],[-2,-3]],[[4942,5190],[-3,-5],[-4,0]],[[4935,5185],[-15,25],[-13,-2],[-10,4]],[[7509,5224],[2,-110]],[[7511,5114],[-44,0]],[[7467,5114],[-1,30],[0,34]],[[7590,5124],[-53,0],[2,-3],[5,-6]],[[7544,5115],[-33,-1]],[[7586,5187],[0,-33],[4,-1],[0,-29]],[[7118,5146],[-63,0]],[[7055,5146],[-14,2]],[[7118,5211],[0,-65]],[[7207,5144],[-63,2]],[[7144,5146],[-26,0]],[[7209,5211],[-2,-67]],[[7277,5145],[-66,-1]],[[7211,5144],[-4,0]],[[6761,5210],[0,-64]],[[6761,5146],[-96,0]],[[6849,5146],[-84,0]],[[6765,5146],[-4,0]],[[5898,5191],[-1,-2],[-6,0],[0,-4],[-3,-1],[-7,-1],[0,-17],[-7,-2],[-2,-1],[0,-8],[-5,-1],[0,-4],[0,-1],[0,-6],[-2,-1],[0,-4],[-5,-3],[0,-3],[-5,-2]],[[5855,5130],[-4,4],[-7,-1],[0,-3],[-5,-1],[-2,-6],[-1,0],[-6,-3],[-1,-10],[-1,0],[-5,9],[-1,10],[-6,16]],[[7612,5108],[0,-35]],[[7612,5073],[-22,1]],[[7590,5074],[0,50]],[[7619,5187],[0,-34],[-7,0],[0,-45]],[[4875,5114],[1,19],[-3,13],[6,15],[-4,36],[15,-18],[3,6],[-4,9],[4,4],[4,-8],[5,1],[14,12],[14,-18]],[[4930,5185],[0,-71]],[[4930,5114],[-33,-1],[0,1],[-22,0]],[[6126,5000],[-15,0],[0,33],[1,0],[-1,83],[-7,0],[0,75]],[[6183,5165],[0,-15],[-8,0],[0,-17],[-4,0],[0,-17],[-2,0],[0,-32],[-10,0],[0,-8],[-11,-1],[0,-9],[-12,1],[0,-34],[-10,0],[0,-33]],[[6059,5193],[0,-9],[0,-1],[0,-68],[-2,0],[2,-36],[-5,0],[0,-14],[-5,0],[-2,-32],[-11,0],[2,-32],[-2,0],[0,-34]],[[6036,4967],[0,-63]],[[6036,4904],[0,-37]],[[6036,4867],[-3,2],[-4,4],[0,4],[-3,4],[-2,4],[-3,1],[-2,6],[2,2],[0,2],[-4,2],[0,8],[-3,1],[-2,5],[0,3],[-2,0],[-2,3]],[[6008,4918],[0,115],[2,0],[0,56],[-17,0],[0,2],[-2,0],[0,2],[-2,0],[0,3],[-2,0],[0,5],[-3,0],[0,2],[0,2],[-2,0],[0,3],[-5,0],[0,6],[-7,1],[0,5]],[[6126,5000],[22,1]],[[6148,5001],[0,-34]],[[6148,4967],[-17,0],[-35,0],[-4,-1],[-56,1]],[[4981,5129],[0,-9],[2,-8],[0,-7]],[[4983,5105],[-2,0],[0,-1],[-12,0]],[[4969,5104],[0,2],[-7,0],[0,3],[-3,0],[0,5],[-29,0]],[[4930,5185],[5,0]],[[5935,5109],[-26,-1],[-2,2],[-3,-11],[-6,-4],[-1,-5],[-7,-5]],[[5890,5085],[-2,4],[0,4],[-4,3],[0,9],[-3,6],[-2,1],[-1,3],[-15,7],[-3,2],[-5,6]],[[7790,5090],[-45,0]],[[7745,5090],[0,64],[-2,0],[0,34]],[[7789,5189],[0,-34],[1,0],[0,-65]],[[7867,5153],[0,-64]],[[7867,5089],[-77,1]],[[7745,5090],[-10,-1]],[[7735,5089],[-2,16],[-32,0],[-1,-15],[-32,0]],[[7668,5090],[2,13],[3,3]],[[7647,5108],[-35,0]],[[6665,4967],[-89,0]],[[6576,4967],[0,66],[5,1],[0,17],[1,0],[1,54],[-2,0],[-1,13]],[[6665,5135],[0,-128]],[[6665,5007],[0,-40]],[[6234,5085],[-4,-2],[-7,1],[-8,-5],[-6,-3],[0,-10],[-7,-1],[0,-10],[-14,-1],[0,-3],[-5,0],[0,-2],[-2,0],[0,-3],[-5,0],[0,-2],[-1,0],[0,-2],[-2,0],[0,-3],[-2,0],[-2,-9],[-1,0],[0,-5],[-2,0],[0,-9],[-7,0],[0,-15],[-11,0]],[[7410,5178],[0,-33],[1,0],[0,-33]],[[7411,5112],[-45,-1]],[[7366,5111],[0,33],[-2,0],[0,18]],[[7467,5114],[0,-2]],[[7467,5112],[-56,0]],[[5030,5071],[-5,-1],[-6,5],[-7,-1],[-10,7],[-8,2],[-4,4],[-7,3],[0,15]],[[5102,5100],[-7,5]],[[5243,5125],[-11,-3]],[[5232,5122],[-7,-7],[-7,-3],[-5,-7],[-6,-1],[-15,-5],[-5,1],[-7,9],[-4,0],[-3,-3]],[[5173,5106],[-4,-3],[-14,-10],[-6,-4]],[[5149,5089],[-2,2],[-2,-1],[-7,1],[-3,-1],[-4,-7],[-4,-1],[-3,3],[0,7],[-1,2],[-6,2],[-4,4],[-4,1],[-6,-2],[-1,1]],[[6465,5002],[1,0],[0,-35]],[[6466,4967],[-146,0]],[[6320,4967],[-34,0]],[[6286,4967],[2,8],[2,1],[0,7],[2,3],[1,0],[0,5],[2,1],[0,4],[4,7],[1,5],[-54,2],[0,21],[3,18],[4,7]],[[7366,5111],[0,-31]],[[7366,5080],[-54,-1]],[[7312,5079],[0,5],[2,7],[15,18],[6,13],[1,2],[2,21]],[[5413,5158],[1,-29]],[[5414,5129],[0,-7],[-7,-1],[0,-9],[-1,0],[0,-16],[-6,0],[2,-41],[-7,-1],[0,-7],[-16,-1],[0,3],[-1,0],[0,1],[-3,0],[0,-3],[-1,-1],[0,-14],[-17,0],[0,-1],[-4,-1],[0,1],[-5,0],[0,-17],[5,0],[0,-10],[9,-1],[0,-21],[3,-1],[0,-16]],[[5365,4965],[-57,1]],[[5308,4966],[0,16],[0,82],[-9,0],[0,17],[-19,0],[3,61]],[[5529,5017],[-4,-24],[-3,-6],[0,-1],[-1,-4]],[[5521,4982],[-42,0]],[[5479,4982],[0,15],[-21,0],[0,9],[-3,0],[0,10],[-2,0],[0,7],[-2,0],[0,3],[-2,0],[0,5],[-5,0],[0,4],[-2,1],[0,11],[-3,0],[0,18],[-2,0],[-2,19],[-1,7],[-2,0],[0,5],[-1,0],[0,17],[4,0],[-1,17],[-20,-1]],[[7925,5139],[0,-67]],[[7925,5072],[0,-31]],[[7925,5041],[-58,-1]],[[7867,5040],[0,49]],[[7925,5154],[0,-15]],[[7055,5146],[-2,-64]],[[7053,5082],[-63,-1]],[[6990,5081],[2,11],[5,0],[2,2],[2,2],[0,6],[0,3],[-5,14],[-2,7],[2,4],[0,2],[-6,2],[0,7],[-3,-1],[-4,4],[0,2]],[[6765,5146],[-2,-139]],[[6763,5007],[-98,0]],[[7144,5146],[0,-65]],[[7144,5081],[-89,1]],[[7055,5082],[-2,0]],[[6849,5146],[0,-89]],[[6849,5057],[0,-82]],[[6849,4975],[-86,-1]],[[6763,4974],[0,33]],[[6999,5057],[-103,2]],[[6896,5059],[-47,-2]],[[6990,5081],[-5,-6],[0,-3],[2,-3],[2,-4],[7,-2],[3,-6]],[[7211,5144],[0,-64]],[[7211,5080],[0,-67]],[[7211,5013],[-67,1]],[[7144,5014],[0,67]],[[5890,5085],[-2,-18],[0,-2],[3,-1],[0,-7],[0,-3],[6,-7],[3,0],[2,3],[3,0],[4,-8],[2,-58],[10,-1],[0,-16],[12,0],[0,-16],[4,-1],[0,-16],[9,0],[0,-7],[24,-1],[0,-14],[28,-1]],[[5998,4911],[0,-3],[2,-3],[0,-3],[-2,-4],[-3,0],[1,-4],[-1,-5],[1,-7],[2,0],[2,-3],[-2,-1],[-2,-1],[-7,6],[-2,-2]],[[5987,4881],[-8,1],[-2,-4],[-5,-3],[-2,0],[-2,-2],[-5,10],[-7,-1],[-3,-5],[-4,1],[0,-2],[-3,1],[-4,-2],[-2,2],[-7,0],[-1,2],[-2,5],[-2,0],[-2,-5],[-7,-3],[2,-4],[-3,-9],[-6,0],[-3,4],[-4,-2],[-3,3],[-11,0],[-5,4],[-2,-3],[-3,-1],[-2,-4],[-2,-8],[1,-4]],[[5878,4852],[0,-5],[-4,-2],[-2,3],[-1,4],[-4,2],[-4,5],[-3,2],[0,2],[-2,5],[2,6],[-2,4],[0,5],[-5,5],[3,7],[-1,11],[-4,3],[0,3],[-1,5],[-1,5],[-10,10],[-2,0],[-5,-6],[-2,0],[0,5],[-7,4],[-2,3],[-5,16],[0,1],[4,0],[1,2],[1,10],[-2,5],[0,3],[-2,2],[-2,4],[-2,2],[1,4],[-4,0],[-2,3],[0,2],[-1,3],[-1,7],[-5,4],[-3,11],[0,4],[-4,8],[0,12],[-3,4],[-2,7],[2,7],[0,5],[-2,1],[-4,0],[2,14],[-1,3],[-2,2],[-5,1],[0,4],[-2,3],[0,3]],[[7277,5145],[2,-72]],[[7279,5073],[-13,0],[-1,7],[-54,0]],[[7312,5079],[7,-14],[3,-11],[5,-9],[8,-2],[6,-4],[4,-9]],[[7345,5030],[-47,1],[0,-6],[-19,0]],[[7279,5025],[0,48]],[[5308,4966],[-46,-1]],[[5262,4965],[-12,0],[0,15]],[[5250,4980],[0,2],[2,0],[0,15],[-9,0],[0,17],[-11,0],[0,108]],[[5479,4982],[-28,-1],[0,-15],[-19,-1],[-7,11],[-2,0],[-2,-4],[0,-5],[-10,-1],[-5,2],[-2,4],[-2,1],[-6,-3],[-3,-4],[-4,-9]],[[5389,4957],[-4,1],[-6,5],[-7,-3],[-4,5],[-3,0]],[[6008,4918],[-3,-1],[0,-5],[-4,0],[-3,-1]],[[7590,5074],[-34,-1]],[[7556,5073],[-7,14],[2,9],[-2,8],[0,1],[-3,4],[-2,6]],[[5250,4980],[-63,-3]],[[5187,4977],[-1,6]],[[5186,4983],[0,3],[4,0],[0,6],[0,1],[-1,10],[-6,2],[0,1],[0,5],[0,3],[0,1],[0,8],[2,-1],[-2,3],[2,17],[1,3],[3,0],[0,2],[-3,0],[1,2],[2,4],[-2,2],[3,2],[4,-2],[2,1],[-2,3],[0,3],[3,-1],[2,2],[-2,3],[2,1],[-3,3],[-2,5],[-1,6],[-1,4],[-3,1],[-2,5],[-2,2],[-3,1],[-2,6],[-7,5],[0,1]],[[6576,4967],[-3,0]],[[6573,4967],[-84,0]],[[6489,4967],[-23,0]],[[7544,5022],[-9,0],[0,8],[-35,0]],[[7500,5030],[0,16],[-33,-1]],[[7467,5045],[0,67]],[[7556,5073],[0,-7],[0,-6],[7,-10]],[[7563,5050],[-3,-17],[-2,-3],[-5,-4],[-2,3],[-5,-3],[-2,-4]],[[4921,5047],[0,-41],[-29,0],[0,-25],[5,0]],[[4897,4981],[0,-7]],[[4897,4974],[-25,0]],[[4872,4974],[4,50],[-2,36],[4,5],[4,-8],[3,6],[-9,12],[2,27],[-3,12]],[[4930,5114],[0,-12],[-12,-1],[0,-6],[3,0],[0,-3],[2,0],[0,-2],[1,0],[0,-4],[4,0],[0,-1],[4,0],[0,-3],[3,0],[0,-2],[-1,-1],[0,-3],[-4,-1],[0,-5],[-3,0],[-2,-3],[-1,0],[0,-2],[-1,0],[0,-4],[-2,-1],[0,-9],[-3,0],[0,-2],[3,-2]],[[4969,5104],[0,-18],[0,-2],[3,0],[0,-2],[2,0],[0,-3],[2,0],[0,-4],[0,-2],[4,-1],[0,-2],[1,0],[0,-3],[2,0],[0,-2],[3,0],[0,-16]],[[4986,5049],[0,-19],[-6,0],[0,2],[-4,0],[0,-5],[-2,-1]],[[4974,5026],[-5,0],[0,5],[-4,0],[0,4],[-3,0],[0,2],[-2,0],[0,4],[-1,2],[-7,1],[0,1],[-3,0],[0,4],[-28,-2]],[[7467,5045],[-12,0]],[[7455,5045],[-44,0]],[[7411,5045],[0,34],[0,33]],[[7411,5045],[-33,0]],[[7378,5045],[-12,0],[0,34],[0,1]],[[7647,5108],[0,-34],[9,-1],[0,-28]],[[7656,5045],[-44,1]],[[7612,5046],[0,27]],[[7682,5024],[-26,1]],[[7656,5025],[0,20]],[[7668,5090],[2,-14],[3,-2],[7,0],[2,-3],[5,-15],[2,-3],[2,-3],[-2,-7],[-2,-7],[-3,-9],[-2,-3]],[[5186,4983],[-20,0],[0,4],[0,4],[-7,6],[-4,6],[-6,2],[-7,0],[-2,2],[1,10],[-3,4],[6,5],[1,-2],[2,1],[1,1],[-1,4],[2,1],[0,3],[3,1],[0,5],[3,1],[0,4],[1,4],[-1,1],[3,14],[0,1],[-4,1],[-2,4],[-1,3],[1,6],[-3,10]],[[7733,5007],[-53,0]],[[7680,5007],[2,17]],[[7735,5089],[-2,-82]],[[5058,5090],[2,-14],[1,-3],[-1,-2],[0,-4],[1,-2],[3,-1],[1,-4],[3,-7]],[[5068,5053],[-75,0],[0,-4],[-7,0]],[[5102,5100],[1,-35],[-4,0],[0,-50],[-18,0]],[[5081,5015],[0,2],[1,5],[-3,9],[0,8],[-2,3],[-6,3],[-3,8]],[[5187,4977],[2,-23],[1,-2],[0,-5],[2,0],[1,-1],[-3,-2],[0,-3],[4,-4],[3,-5]],[[5197,4932],[-122,0]],[[5075,4932],[0,12]],[[5075,4944],[2,1],[0,2],[-3,7],[-3,-1],[0,4],[-3,7],[2,3],[4,5],[4,1],[1,3],[3,5],[0,5],[-4,5],[-3,12],[0,2],[6,6],[0,4]],[[5878,4852],[1,1],[0,-35],[-16,1]],[[5863,4819],[-29,0]],[[5834,4819],[-2,4],[0,7],[-2,9],[-5,8],[0,6],[-2,3],[-1,7],[-4,-1],[-2,-7],[-1,-1],[-6,5],[-7,3],[-5,5],[-7,1],[-3,4],[-6,6],[-1,1],[-11,22],[-5,13],[-5,3],[-6,0],[-1,4],[1,13],[-1,7],[-4,-5],[-2,-3],[-1,-1],[-6,-7],[0,-7],[-3,-1],[-1,-5],[3,-3],[-2,-4],[-1,-4],[-3,-3],[-1,-6],[-2,-4],[-2,0],[-2,1],[-3,-3],[-4,2],[0,5],[-1,5],[-2,3],[-4,0],[-3,-3],[-2,0],[-2,7],[-3,4],[-1,3],[-3,5],[3,8],[-3,3]],[[5697,4928],[3,6],[1,1],[2,2],[0,4],[1,0],[2,4],[-2,15],[3,6],[-1,26],[1,8],[1,3]],[[9924,5096],[4,-4],[3,4],[8,-13],[17,-2],[2,-17],[-8,-4],[8,-21],[-5,-18],[3,-17],[9,-13],[6,12],[10,-6],[0,-6],[9,-31],[-7,-10],[16,-16],[-4,-8],[-17,-24],[-11,0],[-7,6],[-16,-17],[-5,-12],[-16,4],[-5,-5],[-3,-15],[-6,4],[0,6],[-2,-4]],[[9907,4869],[-3,19],[2,1],[-2,17],[-1,0],[-6,49],[11,3],[-7,58]],[[9715,4869],[-7,-1],[-3,-2]],[[9705,4866],[-1,7],[-2,0],[-1,6],[-3,0],[3,8],[-24,5],[3,3],[-10,32],[-14,-11],[0,22],[-1,14],[-1,0],[-2,16],[4,3],[-7,50]],[[9649,5021],[4,13],[-1,8],[2,7],[15,-7],[-8,23],[15,28]],[[9733,4892],[-3,-5],[-6,1],[-4,-10],[4,-4],[-2,-5],[-7,0]],[[7790,5090],[0,-66]],[[7790,5024],[0,-17],[-12,0]],[[7778,5007],[-45,0]],[[7845,5024],[-55,0]],[[7867,5040],[-21,0],[-1,-16]],[[6286,4967],[-33,0]],[[6253,4967],[-105,0]],[[7055,5082],[0,-67]],[[7055,5015],[-51,0]],[[7004,5015],[0,2],[-3,10],[0,5],[3,4],[0,5],[-1,4],[-4,8],[0,4]],[[7144,5014],[-77,1]],[[7067,5015],[-12,0]],[[7279,5025],[0,-29]],[[7279,4996],[-25,1]],[[7254,4997],[-43,0]],[[7211,4997],[0,16]],[[7380,5002],[-7,3],[-2,1],[0,1],[-1,0],[-2,3],[-4,1],[-2,3],[-8,2],[-4,5],[-2,-1]],[[7348,5020],[0,5],[-3,5]],[[7378,5045],[0,-32],[2,-11]],[[7612,5046],[0,-32]],[[7612,5014],[-5,7],[0,4],[-5,-1],[-5,2],[-7,0],[-11,9],[-3,7],[-4,-1],[-7,5],[-2,4]],[[6849,4875],[0,100]],[[6896,5059],[0,-17],[0,-66],[-2,-1],[0,-8],[33,0],[0,-49]],[[6927,4918],[-6,-7],[-11,-4],[-2,1],[-1,0],[-1,-5],[-3,0],[-2,-5],[-1,0],[-2,-5],[-2,-1],[-2,-4],[-2,-1],[-13,2],[-1,-1],[-5,-1],[-1,-3],[-4,-3],[-2,-4],[-1,1],[-11,1],[-3,-2],[-2,-2]],[[7004,5015],[0,-19],[-3,-4],[-2,-5],[0,-4],[2,-6],[3,-3],[0,-2],[-1,-1],[-7,2],[-4,-2],[-2,-1],[0,-13],[2,-10]],[[6992,4947],[2,-2],[-2,-5],[-5,-6],[-7,-11],[-4,0],[-3,2],[-4,8],[-3,2],[-2,-1],[0,-3],[0,-7]],[[6964,4924],[-2,-1],[0,2],[-1,-3],[-2,3],[-4,-1],[-3,2],[-4,-2],[-1,2],[-2,-3],[-2,0],[-2,-2],[-3,-6],[-4,3],[-7,0]],[[5075,4944],[-59,1],[0,2],[-4,0],[-3,4],[-5,1],[0,1],[-2,5],[-1,5],[-1,1],[-3,6],[-7,5],[-3,9],[-6,7],[2,4],[0,2],[0,3],[3,6],[-3,9],[-2,0],[0,2],[-5,0],[0,-2],[-2,0]],[[4974,5015],[0,11]],[[7590,4963],[-23,0]],[[7567,4963],[-21,1]],[[7546,4964],[-2,58]],[[7612,5014],[-1,-2],[-2,0],[-5,-5],[-4,-1],[0,-9],[-2,-1],[-3,-5],[-2,-5],[-3,-4],[0,-19]],[[4955,4981],[-58,0]],[[4974,5015],[-7,2],[-2,4],[-3,-5],[0,-6],[-3,-2],[-1,-2],[0,-1],[2,-1],[2,-7],[-2,-2],[2,-7],[-2,-2],[-2,0],[0,-4],[-3,-1]],[[7638,4974],[-5,0],[0,12],[-1,8],[-11,11],[-2,3],[-5,3],[-2,3]],[[7656,5025],[0,-34]],[[7656,4991],[-18,0],[0,-17]],[[7500,5030],[1,-83]],[[7501,4947],[-44,0]],[[7457,4947],[0,49]],[[7457,4996],[0,16],[-2,0],[0,33]],[[7457,4996],[-72,0]],[[7385,4996],[-5,6]],[[7925,5041],[0,-50]],[[7925,4991],[-14,0],[0,-18],[-10,0]],[[7901,4973],[-55,0]],[[7846,4973],[-1,51]],[[9683,4784],[-6,-6],[-7,10],[3,11],[-3,8],[0,2],[-18,-17],[-3,2],[-1,0],[1,-5],[0,-2],[5,-2],[8,-15],[-3,-3],[1,-3],[-2,-6],[0,-5],[-2,0],[-2,-4],[2,-9]],[[9656,4740],[-12,-2],[-3,-2],[-3,0]],[[9638,4736],[-3,94]],[[9635,4830],[-1,75],[-6,120]],[[9628,5025],[12,6],[7,-20],[2,10]],[[9705,4866],[-3,-4],[1,-15],[-6,-29],[-14,-34]],[[7348,5020],[0,-58]],[[7348,4962],[-38,1]],[[7310,4963],[-2,33],[-29,0]],[[7546,4964],[-23,-1],[0,-16]],[[7523,4947],[-22,0]],[[9591,4970],[0,7],[7,13],[2,16],[-4,6],[5,0],[9,12],[11,-12],[7,13]],[[9635,4830],[-3,0],[0,-8],[-18,1],[-7,-24],[0,-6],[-2,0],[-1,16],[-3,3],[-1,4],[-2,0]],[[9598,4816],[-3,9],[-5,0],[-1,3],[-5,-2],[-1,7],[-9,9],[-1,-3],[-6,14]],[[9567,4853],[8,4],[2,4],[1,6],[1,1],[2,0],[2,3],[2,5],[-2,3],[0,3],[5,6],[-2,3],[-1,7],[-2,3],[-1,5],[-3,12],[5,8],[1,6],[6,16],[-1,8],[-2,7],[3,7]],[[7656,4947],[4,0],[0,44],[-4,0]],[[7680,5007],[0,-4],[2,-6],[0,-9],[-5,-8],[3,-9],[0,-4],[0,-13],[0,-2],[-1,-4],[1,-6]],[[7680,4942],[0,-7],[-5,-17]],[[7675,4918],[-5,5],[-4,3],[-5,-2],[-5,3],[2,16],[-2,4]],[[7846,4973],[-1,-32]],[[7845,4941],[-65,-1]],[[7780,4940],[0,51],[-2,0],[0,16]],[[5075,4932],[-5,-1],[-2,-3],[2,-4],[2,-2],[-2,-8],[1,-8]],[[5071,4906],[-22,1],[-9,5],[-5,-4],[-2,-1],[-1,1],[-3,5],[-3,5],[-17,0],[-5,0],[0,4],[-7,2],[0,3],[-7,-3],[-7,3],[-3,0],[-6,-6],[-2,-4],[-3,0],[-2,-3],[-5,-7],[-2,0],[0,5],[-2,4],[-6,2],[-1,-1]],[[4951,4917],[-2,1],[0,6],[0,2],[4,2],[0,1],[-1,3],[-6,1],[0,4],[3,6],[0,4],[3,3],[0,2],[3,1],[4,5],[0,5],[-4,5],[0,8],[0,5]],[[7385,4996],[2,-5],[17,-25],[2,-9],[7,-2]],[[7413,4955],[0,-8],[-10,0],[0,-16],[-55,-2]],[[7348,4929],[0,33]],[[5577,4986],[3,-5],[4,-4],[-2,-2],[0,-3],[-1,-1],[-1,-6],[1,-8],[-4,-5],[0,-5],[-3,-5],[-1,-20],[2,-5],[2,-11],[-2,-19],[2,-15]],[[5577,4872],[-2,-1],[-2,1],[-3,-7],[-2,-1],[-5,-3]],[[5563,4861],[-9,0],[-9,8],[0,23],[-7,0],[0,6],[-2,4],[0,32],[-26,0]],[[5510,4934],[1,4],[3,5],[3,9],[-2,6],[2,5],[-2,-1],[0,2],[0,3],[0,4],[4,5],[2,6]],[[7067,5015],[0,-68]],[[7067,4947],[-8,0]],[[7059,4947],[-67,0]],[[7144,5014],[0,-67]],[[7144,4947],[-54,0]],[[7090,4947],[-23,0]],[[7644,4947],[-6,-13],[-8,-7]],[[7630,4927],[-5,0],[-2,4],[-4,1],[-3,-1],[-4,0]],[[7612,4931],[0,16],[-22,0],[0,16]],[[7638,4974],[2,0],[0,-23],[4,-4]],[[7211,4997],[0,-101]],[[7211,4896],[-65,1]],[[7146,4897],[0,50],[-2,0]],[[7736,4940],[-56,2]],[[7733,5007],[0,-16],[3,0],[0,-51]],[[7780,4940],[0,-33]],[[7780,4907],[-44,0]],[[7736,4907],[0,33]],[[6665,4887],[0,80]],[[6763,4974],[0,-82],[-54,0]],[[6709,4892],[-24,0],[-2,-1],[-4,0],[-3,-3],[-7,-1],[-2,1],[-2,-1]],[[5697,4928],[-3,-4],[-2,-1],[-5,-11],[-7,0],[-1,5],[-4,5],[-6,-7],[0,-3],[-1,-7],[-4,-12],[-5,-1],[0,-1],[-2,0],[-2,-4],[0,-3],[0,-8],[2,-3],[2,-1],[3,-15],[-3,-11],[-2,-2],[-2,-5]],[[5655,4839],[-3,4],[-2,-1],[1,-7],[-1,-2],[-3,-1],[-2,-6],[-4,-4],[-4,0],[-3,-3],[-52,0],[-1,-15],[-8,1]],[[5573,4805],[0,32],[4,0],[0,35]],[[7254,4997],[0,-68]],[[7254,4929],[0,-50]],[[7254,4879],[-33,2]],[[7221,4881],[0,15],[-10,0]],[[7310,4963],[0,-34]],[[7310,4929],[-56,0]],[[7434,4922],[-2,3],[2,2],[-2,2],[-8,11],[-2,5],[-4,3],[-3,2],[-2,5]],[[7457,4947],[-23,0],[0,-25]],[[7656,4947],[-2,5],[-1,4],[-1,1],[-3,-3],[-5,-7]],[[5510,4934],[-5,-9],[-7,-7],[-2,-9],[-2,-1],[-4,-22],[-1,-2],[0,-6],[-5,-4],[-1,-5],[-1,-2],[0,-9],[-2,-6],[4,-10],[-2,-8]],[[5482,4834],[-24,-1],[0,16],[-2,0],[0,4],[-3,0],[0,2],[-2,0],[0,2],[-2,0],[0,4],[-35,0],[0,-4],[-3,0],[0,-4],[-2,0],[0,-4],[-2,0],[0,-3],[-3,0],[0,-2],[0,-1],[0,-6],[-2,0],[0,-2],[-2,-1],[0,-1],[-3,-1],[0,-5],[-4,0],[0,-3],[-3,0]],[[5390,4824],[-23,0],[0,2],[1,10],[6,10],[-2,7],[2,5],[1,3],[4,3],[-1,11],[1,4],[4,4],[0,4],[-4,10],[-7,1],[-4,4],[-3,3],[0,4],[4,2],[2,1],[3,1],[5,4],[4,-2],[2,1],[1,7],[-3,12],[2,3],[5,3],[2,2],[-2,4],[0,5],[-1,5]],[[4951,4917],[-2,-5]],[[4949,4912],[-42,0]],[[4907,4912],[-7,0],[0,2],[-3,0],[0,60]],[[5262,4965],[0,-33],[1,0],[0,-99]],[[5263,4833],[-22,1],[0,15],[-12,0],[0,9],[-32,0],[0,26]],[[5197,4884],[0,34],[-1,9],[1,1],[0,4]],[[6849,4875],[-4,-2],[0,-2],[-3,-2],[-4,-8],[-1,1],[-2,0],[0,-4],[-2,1],[-3,3],[-2,2],[-4,0],[-1,-2],[0,-13],[-4,-4],[-2,-17],[0,-6],[-3,-5],[0,-3],[0,-2],[0,-4],[0,-3],[-95,0]],[[6719,4805],[0,22],[-12,1],[0,16],[2,0],[0,48]],[[4907,4912],[0,-14],[2,0],[0,-41],[-12,1],[0,-10],[-1,1],[0,-10],[-7,0],[0,-4],[4,-1],[0,-5]],[[4893,4829],[-15,-1],[-2,0],[-14,0]],[[4862,4828],[6,75],[-2,29],[6,42]],[[7846,4889],[-1,52]],[[7901,4973],[-2,-66]],[[7899,4907],[0,-50]],[[7899,4857],[-42,0],[0,16],[-11,1],[0,15]],[[9552,4924],[-3,3],[8,17],[-5,4],[3,20]],[[9555,4968],[36,2]],[[9567,4853],[-2,-4],[-3,-5],[-1,-1]],[[9561,4843],[-9,19],[7,10],[-6,7],[7,15],[-5,4],[5,14],[-8,12]],[[9425,4968],[15,0]],[[9440,4968],[-5,-14],[3,-6],[1,-5],[0,-8],[-2,-8],[-1,-14]],[[9436,4913],[0,-8],[-3,-14],[-2,-3],[-6,-5]],[[9425,4883],[-2,5],[-1,6],[1,3],[0,6],[1,4],[-1,7],[4,15],[-4,3],[-1,6],[4,16],[-1,10],[0,4]],[[9440,4968],[57,0]],[[9497,4968],[2,-34],[-4,-8]],[[9495,4926],[-3,2],[-13,-1],[-1,-9],[-4,-11],[-5,4],[-3,-10],[-2,0],[-2,-5]],[[9462,4896],[-8,2],[-18,15]],[[9513,4887],[0,1],[-10,8],[6,17],[-14,13]],[[9497,4968],[58,0]],[[9552,4924],[-7,-15],[-9,8],[2,-10],[-6,2],[-10,-30],[-9,8]],[[9365,4966],[60,2]],[[9425,4883],[1,-2]],[[9426,4881],[-12,-3],[0,-2],[1,-2],[-4,-5],[-3,0],[-3,-4],[-5,-2],[-4,-4],[-3,2],[-2,-2],[-1,2],[-15,-4]],[[9375,4857],[-5,54],[-4,0],[-1,55]],[[6192,4743],[-2,3],[-2,2],[-1,6],[-4,1],[0,4],[-5,6],[0,3],[-3,-2],[-4,3],[-2,0],[-1,-3],[-2,1],[-2,-3],[-2,-4],[-2,-13],[-6,-2],[-6,-6],[-5,6],[0,4],[4,0],[-1,5],[-3,5],[0,4],[-2,1],[2,4],[-5,0],[-4,1],[-3,-1],[-4,9],[-1,1]],[[6126,4778],[0,25],[-4,1],[-2,2],[0,3],[0,3],[0,2],[0,3],[-1,5],[-2,11],[-2,2],[-2,-1],[-1,4],[-1,1],[-1,9],[-6,10],[1,15],[-2,8],[-4,0],[-1,1],[-1,6],[-26,0],[0,15],[-35,1]],[[6253,4967],[2,-25],[2,0],[0,-65],[1,0],[0,-68],[2,0]],[[6260,4809],[0,-16]],[[6260,4793],[-21,0],[0,-18],[-12,-1],[0,-14],[-14,0],[0,-16],[-21,-1]],[[6665,4887],[0,-75]],[[6665,4812],[-92,0]],[[6573,4812],[0,115],[1,0],[0,18],[-1,0],[0,22]],[[6388,4807],[-128,2]],[[6320,4967],[1,-3],[0,-8],[2,-4],[0,-7],[2,-5],[2,-7],[-1,-6],[6,-3],[0,-8],[1,-3],[6,-1],[0,-5],[1,0],[4,2],[5,-2],[2,-2],[2,-2],[-2,-6],[5,1],[0,-5],[0,-1],[5,0],[0,-1],[4,-2],[0,-6]],[[6365,4883],[3,-2],[2,-5],[2,-3],[0,-7],[0,-1],[3,-2],[4,1],[3,-1],[0,-10],[2,0],[0,-4],[2,-2],[-2,-8],[2,-2],[2,-30]],[[6573,4812],[0,-131]],[[6573,4681],[-86,-1]],[[6487,4680],[2,63],[0,66],[-2,68],[2,0],[0,6]],[[6489,4883],[0,61],[-2,0],[2,23]],[[6489,4883],[-124,0]],[[9300,4966],[65,0]],[[9375,4857],[-21,-4],[4,-50],[-16,-4]],[[9342,4799],[-25,-4]],[[9317,4795],[0,12],[2,3],[-11,146],[-6,1],[-2,9]],[[5390,4824],[2,-41]],[[5392,4783],[-11,-1],[0,2],[-44,1],[0,-16],[-74,-1]],[[5263,4768],[0,65]],[[7567,4963],[0,-50]],[[7567,4913],[-16,0],[0,-1],[-2,2],[-1,-2],[-2,1],[0,-16],[-23,0],[0,16]],[[7523,4913],[0,34]],[[7590,4898],[0,8],[-11,0],[0,7],[-12,0]],[[7612,4931],[-5,-2],[-5,-6],[0,-2],[0,-3],[0,-7],[-4,-2],[-3,-3],[-5,-8]],[[7348,4929],[0,-33]],[[7348,4896],[0,-17]],[[7348,4879],[-40,2]],[[7308,4881],[2,48]],[[7675,4918],[7,-6]],[[7682,4912],[0,-15],[-5,-1],[0,-15],[-11,-2],[0,-4],[-3,-1],[-3,-1],[-4,1],[-2,-6]],[[7654,4868],[-21,0],[0,13]],[[7633,4881],[0,15],[-3,-1],[0,32]],[[7446,4911],[0,-30],[-21,0]],[[7425,4881],[0,-2],[0,17],[-45,0]],[[7380,4896],[-32,0]],[[7434,4922],[9,-7],[2,-4],[1,0]],[[7059,4947],[-1,-65]],[[7058,4882],[-75,0]],[[6983,4882],[-1,1],[-4,2],[-2,-1],[-3,3],[-2,8],[2,12],[0,10],[-9,7]],[[7093,4814],[-26,0]],[[7067,4814],[-2,3],[-5,1]],[[7060,4818],[0,64],[-2,0]],[[7090,4947],[0,-65],[3,0],[0,-68]],[[7146,4897],[0,-83]],[[7146,4814],[-21,0]],[[7125,4814],[-32,0]],[[7523,4913],[-12,0],[2,-49]],[[7513,4864],[-16,-1]],[[7497,4863],[-2,5],[-5,4]],[[7490,4872],[-2,3],[-1,1],[-6,5],[-3,1],[-7,5],[-9,9],[-5,8],[-4,0],[-3,4],[-4,3]],[[7736,4907],[0,-28],[-17,0]],[[7719,4879],[-2,4],[-14,4],[-9,6],[-3,5],[-9,14]],[[5834,4819],[-9,0],[0,-32],[-4,0],[1,-27],[-2,-7],[3,-4],[0,-3],[7,-7],[0,-4],[-2,1],[-3,4],[-3,-3],[0,-3],[-1,-4],[-12,-12],[-7,-4],[-5,-6],[-4,-3],[0,-5],[-3,-3],[0,-3]],[[5790,4694],[-2,1],[0,4],[-1,1],[-4,8],[-2,1],[-3,4],[-2,2],[-3,8],[-2,6],[-2,5],[-2,-8],[-5,0],[-2,2],[-1,5],[-2,0],[-9,11],[-2,10],[-4,0],[-3,-3],[-3,3],[-9,1],[-2,-1],[0,-7],[-3,-1],[-1,1],[-3,7],[-7,6],[-12,0],[0,14],[-2,0],[-4,0],[-3,-5],[-3,-3],[-4,-1]],[[5683,4765],[2,5],[-2,1],[0,5],[-4,2],[-1,5],[0,4],[2,2],[2,3],[0,1],[-3,1],[-1,3],[2,5],[0,2],[-1,2],[-3,1],[-3,2],[-2,4],[-5,1],[0,5],[0,5],[0,6],[-2,-1],[-2,5],[-3,1],[0,3],[-4,1]],[[7791,4889],[-11,2]],[[7780,4891],[0,16]],[[7846,4889],[-22,0]],[[7824,4889],[-33,0]],[[5563,4861],[-2,-14],[0,-5],[0,-13],[0,-12],[-1,-13],[-8,1]],[[5552,4805],[-41,0]],[[5511,4805],[-1,5],[-7,4],[1,5],[-3,5],[-3,1],[-1,-6],[-3,5],[-1,4],[-2,0],[-2,-3],[-3,1],[-3,4],[-1,4]],[[5197,4884],[-39,-1],[0,-16],[-16,0],[0,-17],[-11,-1]],[[5131,4849],[-64,1]],[[5067,4850],[-2,8],[5,26],[1,22]],[[7633,4881],[-22,0]],[[7611,4881],[-34,0]],[[7577,4881],[0,10],[9,7],[4,0]],[[7287,4879],[-33,0]],[[7308,4881],[-21,-2]],[[9513,4887],[-5,-15]],[[9508,4872],[-6,-15],[-9,11],[-5,-15],[-10,9],[-4,1]],[[9474,4863],[-2,2],[2,8],[-2,2],[2,6],[-1,0],[-8,15],[-3,0]],[[5067,4850],[-2,-8],[2,-6],[0,-6],[3,-4]],[[5070,4826],[-47,-2],[0,-7],[-4,-3],[-3,2],[-4,0],[-5,2],[-3,0],[-2,1],[-1,0],[-14,10],[-6,1],[-5,-2],[0,2],[-2,-4],[-5,-1],[0,-11],[-20,-1],[-1,1],[1,4],[-3,5],[0,5],[-2,1]],[[4944,4829],[1,4],[-3,4],[-1,0],[1,9],[-1,1],[0,1],[1,0],[0,6],[2,7],[-2,3],[0,11],[0,6],[-3,1],[0,2],[3,3],[4,1],[-1,1],[1,6],[9,3],[0,7],[-4,2],[-2,5]],[[6983,4882],[-1,-6],[-4,-3],[-2,-1],[0,-7],[4,-2],[10,3],[4,-2],[0,-6],[0,-5],[3,-9],[11,-5],[14,-3],[5,-6],[5,-2],[6,0],[1,-6],[-2,-4],[-1,-4]],[[7036,4814],[-40,0],[0,-5]],[[6996,4809],[-60,1]],[[6936,4810],[-12,0],[0,34],[2,64],[1,0],[0,10]],[[9561,4843],[-8,-4],[-1,-1],[-6,1],[-3,-6],[-2,-6],[1,-5],[-1,-10],[1,-5]],[[9542,4807],[-10,6],[-14,-3],[-4,5]],[[9514,4815],[4,13],[0,5],[9,20],[-2,3],[-17,16]],[[9832,4907],[0,-3]],[[9832,4904],[-3,-11],[4,-7],[0,-15],[-13,-13],[-3,-30],[-3,-4]],[[9814,4824],[-2,1],[-8,2],[-12,20],[-7,-11],[-5,7],[-1,-4]],[[9779,4839],[-8,3]],[[9771,4842],[5,24],[4,-2],[3,17],[-4,1],[1,15],[-5,1],[2,7],[-4,1],[0,3]],[[6936,4810],[0,-35],[-2,0]],[[6934,4775],[-85,1]],[[6849,4776],[0,70],[0,29]],[[6036,4867],[0,-93]],[[6036,4774],[-12,-10],[-3,2],[-6,-6],[-5,7],[-5,-7]],[[6005,4760],[-5,0],[-4,3],[-5,-5],[0,-4],[-12,0],[0,2],[-12,0],[0,4],[-13,0]],[[5954,4760],[0,9],[-16,1],[0,18]],[[5938,4788],[11,0],[0,16],[11,0],[0,8],[5,0],[1,23],[4,0],[0,18],[17,0],[0,28]],[[7577,4881],[2,-6],[-5,-11]],[[7574,4864],[-61,0]],[[9474,4863],[-3,-10],[3,-1],[-3,-8],[-2,1],[-5,-15],[1,-1],[-4,-20]],[[9461,4809],[-3,24],[-4,0],[0,-3],[-22,-4],[-3,1]],[[9429,4827],[-2,20],[2,6],[1,6],[-4,22]],[[9771,4842],[-2,-10],[-3,-5],[-8,3],[-2,-8],[1,-20],[-8,2]],[[9749,4804],[-1,3],[-9,2],[-2,-2],[-2,-9],[-9,4]],[[9726,4802],[-2,1],[0,4],[1,0],[1,3],[0,-1],[1,3],[-8,4],[0,17],[-4,15],[2,2],[-2,19]],[[7719,4879],[3,-8],[4,-7]],[[7726,4864],[-16,0],[0,-16],[-12,-1],[0,-33]],[[7698,4814],[-11,0]],[[7687,4814],[-33,0]],[[7654,4814],[0,54]],[[4944,4829],[-47,-1],[0,1],[-4,0]],[[7469,4814],[-33,0]],[[7436,4814],[-11,0]],[[7425,4814],[0,67]],[[7490,4872],[0,-42],[-21,-1],[0,-15]],[[7953,4824],[-14,1]],[[7939,4825],[-38,0]],[[7901,4825],[-2,32]],[[7899,4907],[44,0]],[[7943,4907],[0,-34],[10,0],[0,-49]],[[7780,4891],[-33,0],[-2,-5],[-2,-12],[-3,-19]],[[7740,4855],[-11,6],[-3,3]],[[6036,4640],[0,45]],[[6036,4685],[0,89]],[[6126,4778],[0,-103]],[[6126,4675],[0,-17],[-27,0],[0,-18],[-21,0],[0,-10]],[[6078,4630],[-21,0],[0,6],[-10,0],[0,4],[-11,0]],[[7221,4881],[0,-67]],[[7221,4814],[-42,0]],[[7179,4814],[-33,0]],[[7425,4814],[-42,0]],[[7383,4814],[-1,0]],[[7382,4814],[0,67],[-2,0],[0,15]],[[7382,4814],[-34,0]],[[7348,4814],[0,65]],[[6665,4805],[0,7]],[[6719,4805],[-54,0]],[[7791,4889],[0,-65],[-7,-8],[1,-2],[-1,-5],[3,-5],[3,-9],[-1,-2],[-2,-9]],[[7787,4784],[-2,1],[-5,4],[-9,14],[-10,11]],[[7761,4814],[-2,12],[-3,6],[0,5],[-2,5],[-4,5],[-10,8]],[[7825,4792],[-3,2],[-4,-6],[-3,2],[-4,-1],[-3,-3],[-2,-2],[2,-10],[-9,0]],[[7799,4774],[-8,10],[-4,0]],[[7824,4889],[0,-64],[1,-1],[0,-32]],[[7841,4790],[-16,2]],[[7901,4825],[-2,-17]],[[7899,4808],[-53,0],[-3,-2],[-2,-3],[0,-13]],[[5938,4788],[-48,-1],[0,-17]],[[5890,4770],[-27,0],[0,49]],[[5263,4768],[-11,0],[0,-51],[-10,0]],[[5242,4717],[-34,0],[0,17],[-11,1],[0,16],[-32,0],[0,17],[-21,1],[-2,31],[-9,2],[-2,47]],[[6487,4680],[-5,0]],[[6482,4680],[-93,0],[0,1]],[[6389,4681],[0,62],[0,64],[-1,0]],[[7060,4818],[-3,-1],[-2,-3],[2,-5],[2,0],[3,0],[3,-4],[0,-6],[-3,-2],[-14,7],[-4,-2],[-3,0],[-4,7],[-1,5]],[[9429,4827],[-6,-12],[-1,-6],[-2,-6],[0,-6],[-3,-8],[0,-3],[3,-6],[-1,-6],[1,-14],[3,-5],[-1,-16]],[[9422,4739],[-6,-1]],[[9416,4738],[-55,-10]],[[9361,4728],[1,9],[-8,3],[-2,5],[-2,-1],[-3,-4],[-10,20],[7,11],[-2,28]],[[7567,4824],[0,4],[3,5],[2,2],[2,7],[-2,10],[2,12]],[[7611,4881],[0,-67]],[[7611,4814],[-23,0]],[[7588,4814],[0,9],[-21,1]],[[7654,4814],[-33,0]],[[7621,4814],[-10,0]],[[7287,4879],[0,-65]],[[7287,4814],[-21,0]],[[7266,4814],[-45,0]],[[7348,4814],[-40,0]],[[7308,4814],[-21,0]],[[6849,4776],[-2,-1],[0,-52],[-3,-6],[-4,1],[-2,-1],[0,4],[-1,-1]],[[6837,4720],[-4,-1],[0,-2],[-56,-1]],[[6777,4716],[0,7],[2,1],[7,11],[2,14],[-123,0]],[[6665,4749],[0,56]],[[5573,4805],[-5,0],[0,-67],[-1,0]],[[5567,4738],[-21,0]],[[5546,4738],[-17,0]],[[5529,4738],[0,33],[11,0],[0,5],[3,0],[2,12],[4,0],[3,17]],[[7497,4863],[7,-4],[2,-6],[2,1],[0,-1],[7,-3],[1,-2],[4,-1],[1,1],[2,-3],[5,-7],[2,-4],[2,-6],[3,-1]],[[7535,4827],[0,-30]],[[7535,4797],[-43,0]],[[7492,4797],[-23,0],[0,17]],[[9514,4815],[-4,3],[-3,-16],[-11,6],[0,-2],[-2,1],[-11,-28],[-3,3]],[[9480,4782],[-14,7],[-2,0],[-2,19],[-1,1]],[[9726,4802],[-2,-16],[-1,-3],[1,-6],[-1,-3],[0,-3]],[[9723,4771],[-3,-7],[-2,2],[-2,-6],[-7,8],[0,1],[-11,16],[-5,-11],[-2,3],[-1,-2],[-6,5],[-1,4]],[[7567,4824],[0,-5],[0,-1],[2,-5],[-4,-4],[-2,-1],[-5,4],[-9,4],[-7,8],[-7,3]],[[7761,4814],[-19,0],[-2,-17]],[[7740,4797],[-21,0],[0,17],[-21,0]],[[5504,4753],[-1,-4],[-3,0],[1,-2],[-3,-2],[0,-7],[2,-8],[-2,-15]],[[5498,4715],[2,-321]],[[5500,4394],[-105,1]],[[5395,4395],[0,49],[-2,3],[0,122],[-1,0],[0,214]],[[5511,4805],[-4,-11],[-2,0],[-1,-4],[4,-11],[-3,-10],[0,-5],[-1,-6],[0,-5]],[[9907,4869],[-3,-19],[-5,-1],[-5,19],[-10,3],[-11,-13],[-6,8],[-11,-13],[1,-21],[-1,-5],[-17,16],[-6,-4],[0,16],[6,18],[0,9],[-7,10],[0,12]],[[9871,4848],[3,5],[0,5],[10,3],[7,-22],[-13,-7],[-1,-13],[-7,9],[1,20]],[[9528,4731],[2,7],[1,16],[4,5],[1,7],[2,3],[-2,4],[0,1],[3,4],[0,5],[4,10],[0,2],[-1,0],[1,4],[-1,8]],[[9598,4816],[-1,0],[0,-7],[3,-4],[2,-16],[2,-1],[-2,-8],[2,-20],[-19,-4],[2,-19],[1,0],[1,-7]],[[9589,4730],[0,-12],[-11,-2],[0,-11],[-2,-5],[-4,0],[-2,-2],[1,-2],[0,-1]],[[9571,4695],[-4,-4],[-2,1],[-2,-1],[-3,10],[-8,-14]],[[9552,4687],[-11,2],[-2,2],[-1,-3],[-2,1],[1,2],[-10,6],[-11,3]],[[9516,4700],[2,19],[5,8],[4,3],[1,1]],[[5242,4717],[-1,-16]],[[5241,4701],[-128,2]],[[5113,4703],[-62,0]],[[5051,4703],[3,3],[0,4],[0,9],[0,26],[4,14],[6,-1],[1,7],[3,4],[0,16],[4,9],[0,4],[-1,6],[1,9],[-2,13]],[[9814,4824],[-6,-35],[-12,-22],[-6,-1],[-5,13]],[[9785,4779],[1,-1],[5,12],[-2,4],[0,8],[-3,14],[-6,1],[-1,2],[-2,4],[-1,12],[0,3],[2,-1],[1,2]],[[5683,4765],[-5,2],[-2,-3],[-1,3],[-2,0],[0,3],[-1,-1],[-3,4],[-1,16],[-2,4],[-4,1],[3,-7],[-3,-2],[0,-8],[-4,-8],[-3,-9],[-4,-1],[-3,1],[-3,-2],[-9,-7],[-2,-3],[-1,-11],[-6,-2],[-3,-7],[0,-10],[-5,-2],[0,-5],[-9,-4],[0,-3],[-7,-6],[-7,3],[-2,-5]],[[5594,4696],[-27,42]],[[9785,4779],[-5,3],[-7,-27],[-10,-7],[-7,1],[1,24],[4,11],[-10,-19]],[[9751,4765],[2,13],[-9,4]],[[9744,4782],[3,4],[-1,4]],[[9746,4790],[3,14]],[[9480,4782],[-5,-14]],[[9475,4768],[-6,-17],[-1,0],[-1,6],[-8,-7],[1,-6]],[[9460,4744],[-5,-5],[-1,9],[-17,-2],[1,-13],[-14,-3]],[[9424,4730],[0,5],[-2,4]],[[9638,4736],[1,-41],[1,-1],[1,-4],[-2,-2]],[[9639,4688],[-6,-12],[-1,11],[-2,0],[-2,-3],[-2,-3],[-2,14],[-3,-6]],[[9621,4689],[-2,1],[-3,0],[-3,4],[-24,36]],[[5051,4703],[-2,-3],[-9,-10],[0,-6],[0,-3],[2,-2],[-3,-9]],[[5039,4670],[-53,-1],[0,19],[-33,0],[0,11],[-4,0],[0,35],[-18,0],[0,4],[-11,1],[0,5],[-6,0],[0,6],[-3,0],[0,4],[-4,1],[0,5],[-4,0],[0,4],[-4,0],[0,2],[-13,0],[0,-2],[0,-1],[0,-3],[-3,-2],[-4,-2],[0,-6],[-3,0],[0,-2],[-9,0],[0,1],[-9,0]],[[4858,4749],[4,79]],[[7588,4814],[0,-65]],[[7588,4749],[-42,-1]],[[7546,4748],[-11,0]],[[7535,4748],[0,49]],[[7948,4710],[-49,-1]],[[7899,4709],[0,17]],[[7899,4726],[0,82]],[[7939,4825],[-2,-6],[0,-1],[0,-5],[-1,-5],[-4,0],[-2,-4],[-3,-7],[0,-9],[2,-8],[3,-5],[0,-12],[-2,-4],[2,-8],[10,-18],[2,-15],[4,-5],[0,-3]],[[5890,4770],[0,-66]],[[5890,4704],[-2,0],[0,-16],[-9,-1],[0,-17],[-12,0],[0,-15],[0,-17],[-7,0]],[[5860,4638],[-31,1],[1,17],[-26,0],[0,14],[2,4],[2,0],[0,1],[-4,3],[-3,1],[1,5],[-2,4],[-1,7],[-2,1],[-2,0],[-2,-2],[-3,0]],[[7067,4814],[4,-6],[-2,-11],[0,-4],[4,-4],[5,-2],[7,-7],[3,-9],[-2,-7]],[[7086,4764],[0,-5],[6,-6],[0,-4],[-6,-12],[-5,-3],[0,-3],[2,-8],[-4,-5],[-1,-3],[1,-4],[6,0],[1,-1],[2,-4],[0,-11],[5,-7],[0,-7]],[[7093,4681],[-21,0]],[[7072,4681],[-8,0],[0,47],[-2,0],[-2,3],[-1,-5],[-1,0],[0,4],[-1,0],[-4,-6],[0,1],[0,4],[-1,1],[-1,-3],[1,-4],[-4,-2],[-3,-3],[-2,1],[-2,-4],[-2,4],[-3,-1],[-2,1],[-7,-1],[0,2],[0,-1],[-2,1],[-5,-2],[-2,0],[0,2],[-5,1],[-2,-2],[-1,4],[-2,0]],[[7008,4723],[-4,-3],[-3,4],[-2,1]],[[6999,4725],[0,23],[-3,0],[0,61]],[[9528,4731],[-52,32],[0,4],[-1,1]],[[7621,4814],[0,-66]],[[7621,4748],[-21,0]],[[7600,4748],[-12,1]],[[7125,4814],[0,-50]],[[7125,4764],[-39,0]],[[7179,4765],[-42,-1]],[[7137,4764],[-12,0]],[[7179,4814],[0,-49]],[[7348,4814],[0,-66]],[[7348,4748],[-40,0]],[[7308,4748],[0,66]],[[7383,4814],[0,-66]],[[7383,4748],[-35,0]],[[7686,4748],[-32,0]],[[7654,4748],[0,66]],[[7687,4814],[0,-65],[-1,-1]],[[7221,4814],[0,-66]],[[7221,4748],[-9,0]],[[7212,4748],[-33,0]],[[7179,4748],[0,17]],[[7436,4814],[0,-66]],[[7436,4748],[-53,0]],[[7492,4797],[-2,-49]],[[7490,4748],[-52,0]],[[7438,4748],[-2,0]],[[7654,4748],[-33,0]],[[7740,4797],[0,-49]],[[7740,4748],[-32,0],[0,-3]],[[7708,4745],[-22,0],[0,3]],[[7266,4814],[0,-66]],[[7266,4748],[-22,0]],[[7244,4748],[-23,0]],[[7308,4748],[-21,-1]],[[7287,4747],[-21,1]],[[7799,4774],[6,-7],[7,-19]],[[7812,4748],[-39,0]],[[7773,4748],[-33,0]],[[6665,4749],[0,-68]],[[6665,4681],[-77,0]],[[6588,4681],[-15,0]],[[6999,4725],[-2,2],[-3,-1],[-2,1],[0,-3],[-3,2],[-2,-2],[0,3],[-4,-1],[-1,3],[-2,-1],[-2,3],[0,-1],[-2,3],[-1,-2],[-2,-2],[-4,0],[0,-2],[0,-3],[-3,1],[-4,-1],[0,4],[-3,-2],[-2,3],[0,1],[-2,3],[-1,0],[-2,3],[-2,-1],[0,3],[-2,-1],[0,3],[-1,0],[-2,5],[-2,-5],[0,6],[-3,3],[-4,-1],[0,1],[-2,1],[-1,-2]],[[6933,4748],[1,27]],[[9736,4754],[-1,-18],[-6,-3],[-3,3],[1,12],[-3,0],[-12,-12],[-7,-20],[0,-20],[-10,-7]],[[9695,4689],[-13,14],[2,7],[-8,13],[-1,-6],[-3,1],[0,-2],[-2,3],[-2,1],[0,11],[-2,5],[-3,3],[-5,-2],[-2,2],[0,1]],[[9723,4771],[0,-2],[5,-9],[6,3],[5,6],[0,-9],[-3,-6]],[[6389,4681],[-38,0]],[[6351,4681],[-4,0]],[[6347,4681],[0,29],[-12,0],[0,16],[-21,0],[0,14],[-19,0],[-2,5],[0,3],[-12,0],[0,10],[-9,0],[0,17],[-7,0],[0,17],[-5,1]],[[7846,4725],[0,65],[-5,0]],[[7899,4726],[-11,-1],[-42,0]],[[5529,4738],[-5,0],[0,-2],[-3,1],[0,-2],[-6,0],[0,3],[-3,0],[0,2],[-1,0],[0,4],[-4,1],[-2,8],[-1,0]],[[9361,4728],[-14,-4],[5,-68]],[[9352,4656],[2,-22]],[[9354,4634],[-7,0],[0,-5],[-9,-2],[-1,4],[-18,-1],[-17,10]],[[9302,4640],[-14,11],[9,26],[-7,113]],[[9290,4790],[27,5]],[[7492,4748],[-2,0]],[[7535,4748],[-43,0]],[[9298,4560],[-11,8],[0,-13],[-2,-2],[-17,17],[-3,-10],[-7,-1],[0,6]],[[9258,4565],[-1,33],[14,33],[-6,1],[0,3],[-2,0],[-1,1],[1,8],[3,2],[2,-1],[0,2],[0,2],[1,0],[-3,54]],[[9266,4703],[-4,91]],[[9262,4794],[9,-7],[19,3]],[[9302,4640],[2,-19],[-2,-3],[0,-2],[-2,-1],[0,-4],[-3,-4],[0,-6],[1,-5],[1,-1]],[[9299,4595],[1,-10],[-2,-25]],[[7846,4725],[-31,-1]],[[7815,4724],[0,12],[-3,12]],[[5683,4765],[0,-7],[2,-8]],[[5685,4750],[-6,-13],[-1,-10],[2,-8],[-1,-8],[0,-6],[-1,-6],[-3,-1],[0,-76]],[[5675,4622],[0,-51],[1,-2],[3,0]],[[5679,4569],[0,-28]],[[5679,4541],[-38,0],[0,16],[2,0],[-2,15],[-4,0],[-3,3],[-5,-2],[-5,4],[-5,-4],[-7,2],[-2,2],[0,3],[-5,0],[-2,2],[-5,0],[0,4],[-2,0],[-2,-4],[2,-6],[-5,0],[-4,6],[-3,0],[-2,6],[-5,2],[0,3],[-2,2],[-1,2],[1,3],[-1,2],[-4,3],[-2,2]],[[5568,4607],[26,1],[0,88]],[[6347,4681],[0,-5],[-50,1],[0,-2],[-18,0],[0,2],[-10,0],[0,7],[-11,0],[0,5],[-10,1],[0,6],[-11,0],[0,7],[-10,0],[0,3],[-23,0],[2,13],[-4,5],[-3,6],[-2,3],[-2,5],[-1,2],[-2,3]],[[5986,4705],[-81,-1]],[[5905,4704],[-15,0]],[[5954,4760],[0,-31],[4,1],[3,-2],[2,-5],[5,-3],[5,-6],[4,-4],[9,0],[0,-5]],[[5395,4395],[-101,-1]],[[5294,4394],[-4,0]],[[5290,4394],[0,24],[0,118],[-52,0],[0,32],[1,0],[0,50],[3,0],[-1,83]],[[9746,4790],[-7,-14],[6,-46],[-4,-5],[-2,4],[1,18],[-4,7]],[[9751,4765],[-2,-9],[2,-21],[-2,-4],[-3,5],[-2,46]],[[6353,4479],[0,-35]],[[6353,4444],[-137,0]],[[6216,4444],[0,35],[-3,0],[0,52],[-4,0],[-3,6],[-4,5],[-3,-1],[0,4],[0,4],[-7,8],[-5,19],[-2,0],[-10,13],[-4,2],[0,2],[-2,12],[-5,6],[0,5],[-2,3],[-1,5],[-2,15],[1,6],[-3,4],[0,6],[0,1],[-3,0],[-1,0],[0,19],[-27,0]],[[6351,4681],[0,-5],[3,-1],[0,-64],[2,-66],[-5,0],[0,-66],[2,0]],[[6919,4661],[-81,0]],[[6838,4661],[0,16],[-1,0],[0,43]],[[6933,4748],[-6,-2],[-1,-3],[-2,1],[0,-5],[-3,1],[-2,-4],[0,-75]],[[5860,4638],[0,-31]],[[5860,4607],[-21,0],[2,-67],[5,0],[-2,-19],[-3,0],[0,-8]],[[5841,4513],[-2,-1],[-2,1],[-5,4],[-2,3],[-1,2],[-9,-1]],[[5820,4521],[0,36],[5,0],[0,65],[-28,0]],[[5797,4622],[-58,0]],[[5739,4622],[0,13],[-3,0],[0,1],[0,12],[-11,1],[-1,7],[1,3],[-3,1],[0,8],[3,6],[0,3],[-4,3],[-3,7],[0,4],[0,3],[-3,1],[-2,2],[-2,1],[0,5],[0,6],[-1,6],[1,10],[0,2],[0,3],[-1,6],[-2,3],[-1,-2],[-3,0],[0,-1],[-3,1],[-5,-2],[-2,1],[2,3],[-2,1],[-8,7],[-1,3]],[[6005,4704],[0,56]],[[6036,4685],[-12,4],[-2,10],[-3,5],[-14,0]],[[9516,4700],[-3,-5],[-2,-10],[0,-7],[0,-13],[-2,-7],[2,-4],[-2,-6],[1,-3],[-3,-14]],[[9507,4631],[-10,0],[-12,-2],[-12,7]],[[9473,4636],[0,5],[-5,3]],[[9468,4644],[1,8],[0,4],[3,2],[4,-2],[6,18],[-6,3],[0,2],[-1,1],[1,18],[2,-1],[5,18],[-10,8],[1,5],[-1,1],[3,9],[-1,6],[-3,2],[-1,-2],[-3,2],[0,3],[-8,-5]],[[4852,4701],[6,48]],[[5039,4670],[4,-3],[1,-3],[3,-3],[0,-4],[4,-6],[0,-10],[3,-6],[-1,-4],[-3,-4],[-3,-11],[0,-1],[-1,-6],[-2,-7],[0,-5],[-18,1],[0,-13]],[[5026,4585],[-10,0],[0,-3],[-1,0],[0,-3],[-3,-1],[0,-1],[-1,0],[0,-2],[-9,-2],[0,-1],[-1,-1],[0,-2],[-4,0],[0,-3],[-2,0],[0,-4],[-5,-1],[0,-2],[0,-2],[-2,0],[0,-4],[-2,0],[0,-1],[-3,0],[-2,-5],[0,-4],[-14,-2],[-2,-1],[0,-1],[-16,-1],[0,-2],[-3,0],[-2,-5],[-3,-1]],[[4941,4530],[-2,0],[0,3],[-4,1],[0,-1],[-1,0],[0,1],[-7,-1],[0,-1],[-3,0],[0,-1],[-4,-2],[0,1],[-2,0],[0,1],[-4,0],[0,1],[-3,0],[0,2],[-1,0],[0,3],[-8,0],[-2,0],[-3,0],[0,5]],[[4897,4542],[-4,6],[-3,-2]],[[4890,4546],[0,5],[-1,0],[0,34],[4,0],[0,15],[6,0],[0,34],[-6,0],[0,33],[-4,0],[0,14],[-6,0],[0,20],[-31,0]],[[7179,4748],[0,-68]],[[7179,4680],[-35,1]],[[7144,4681],[-7,0]],[[7137,4681],[0,67],[0,16]],[[7137,4681],[-44,0]],[[6005,4704],[-19,1]],[[5546,4738],[0,-31],[3,-1],[0,-35],[-3,0],[0,-32]],[[5546,4639],[-6,6],[-4,10],[-3,2],[-7,15],[-2,3],[-2,6],[-1,8],[-3,8],[-6,2],[-5,8],[-2,6],[-7,2]],[[7008,4723],[0,-46],[2,0],[0,-16]],[[7010,4661],[-91,0]],[[5739,4622],[-21,0]],[[5718,4622],[-43,0]],[[6665,4677],[0,4]],[[6777,4716],[-2,-3],[-3,0],[-2,1],[-2,1],[-1,-2],[-2,-9],[-3,0],[-2,-3],[0,-25]],[[6760,4676],[-95,1]],[[9468,4644],[-8,0],[0,-4],[-2,-1],[0,5],[-24,2]],[[9434,4646],[1,38],[-2,8],[-3,3],[1,4],[-1,6],[-1,1],[-5,-2],[-2,-9],[-3,2],[-1,10],[5,16],[1,7]],[[7600,4681],[-30,0]],[[7570,4681],[-24,0]],[[7546,4681],[0,67]],[[7600,4748],[0,-67]],[[7348,4748],[0,-67]],[[7348,4681],[-13,0]],[[7335,4681],[-28,0]],[[7307,4681],[-20,0]],[[7287,4681],[0,66]],[[7383,4681],[-35,0]],[[7383,4748],[0,-67]],[[7654,4681],[-40,0]],[[7614,4681],[-14,0]],[[7654,4748],[0,-67]],[[7436,4681],[-35,0]],[[7401,4681],[-18,0]],[[7438,4748],[-2,-67]],[[7492,4681],[-6,0]],[[7486,4681],[-43,0]],[[7443,4681],[-7,0]],[[7492,4748],[0,-67]],[[7546,4681],[-18,0]],[[7528,4681],[-36,0]],[[7815,4724],[0,-9],[3,-15],[-1,-10],[2,-9]],[[7819,4681],[-35,0]],[[7784,4681],[-11,0]],[[7773,4681],[0,67]],[[7708,4681],[-10,0]],[[7698,4681],[-42,0]],[[7656,4681],[-2,0]],[[7708,4745],[0,-64]],[[7773,4681],[-31,0]],[[7742,4681],[-34,0]],[[7212,4680],[-14,0]],[[7198,4680],[-19,0]],[[7212,4748],[0,-68]],[[7244,4680],[-32,0]],[[7244,4748],[0,-68]],[[7263,4680],[-19,0]],[[7287,4681],[-24,-1]],[[9695,4689],[-2,-20],[-9,-17],[-7,-1],[-11,-49],[-13,8]],[[9653,4610],[-2,6],[2,15],[-8,8],[0,5],[-6,12],[-1,5],[2,9],[-1,5],[1,10],[-1,3]],[[9434,4646],[-2,-71]],[[9432,4575],[-10,0],[-4,2],[-3,-2],[-16,0]],[[9399,4575],[1,4],[1,3],[3,25],[-1,10],[1,10],[-1,5],[0,4],[-2,3],[0,6]],[[9401,4645],[-2,40],[1,3],[1,2],[0,4],[2,0],[6,14],[3,3],[0,7],[2,12],[0,5],[2,3]],[[5568,4607],[-5,3],[-4,10],[-3,5],[3,5],[-5,9],[-8,0]],[[9401,4645],[-3,0],[-1,-4],[-1,-4],[-2,1],[0,3],[-3,-2],[-2,-2],[1,-1],[-3,-5],[0,-1],[-2,5],[-5,0],[3,6],[-3,8],[0,2],[-2,5],[-1,5],[-25,-5]],[[7072,4681],[0,-96]],[[7072,4585],[-61,0]],[[7011,4585],[0,26],[-1,0],[0,50]],[[9621,4689],[-2,-4],[2,-31],[-7,-15]],[[9614,4639],[-26,32],[-2,1],[-3,-2],[-2,0],[-2,7],[-1,1],[-1,3],[-2,3],[-4,11]],[[7899,4709],[0,-17]],[[7899,4692],[-32,0],[0,-25]],[[7867,4667],[-47,1]],[[7820,4668],[-3,7],[2,6]],[[6838,4661],[0,-49],[4,0],[0,-27]],[[6842,4585],[-63,1]],[[6779,4586],[-19,1]],[[6760,4587],[0,89]],[[5679,4541],[0,-146]],[[5679,4395],[-83,-1],[-95,0]],[[5501,4394],[-1,0]],[[6036,4640],[0,-49]],[[6036,4591],[-47,0]],[[5989,4591],[0,47],[-21,1],[0,16],[-19,0],[-2,9],[-5,0],[0,2],[-37,0],[0,38]],[[5989,4591],[-43,0]],[[5946,4591],[-53,0],[-7,-9],[-2,-5]],[[5884,4577],[-3,-12],[-2,-5],[-19,-2],[0,49]],[[5113,4703],[0,-51],[-3,-1],[2,-114],[30,0],[0,-1],[10,0],[2,-142]],[[5154,4394],[-51,0]],[[5103,4394],[-77,1]],[[5026,4395],[0,92],[2,0],[-2,98]],[[5232,4394],[-78,0]],[[5290,4394],[-58,0]],[[4829,4577],[9,59],[-2,8],[12,30],[4,27]],[[4890,4546],[-4,0],[0,-3],[-1,0],[0,-1],[-6,0],[0,-5],[0,-4],[-1,0],[0,-2],[-2,0],[0,-2],[-2,0],[0,-2],[-9,0],[0,-4],[-3,0],[-1,14],[-2,0],[-1,11],[0,4],[1,0],[0,1],[2,0],[0,6],[-1,3],[-1,0],[-1,0],[-3,4],[0,2],[-1,0],[1,3],[-1,0],[0,1],[-2,1],[0,2],[-2,1],[0,1],[-21,0]],[[9614,4639],[0,-1]],[[9614,4638],[-8,-27],[-2,-3],[-3,-13],[-2,1],[1,-8]],[[9600,4588],[-4,3],[-1,4],[-2,-3],[-1,4],[-2,0],[0,3],[-11,-2],[-3,18],[-17,-6],[-6,17],[-8,-5]],[[9545,4621],[-3,10],[0,3],[-3,1],[-1,12],[4,13],[-1,7],[1,3],[3,0],[7,17]],[[9545,4621],[-1,0],[0,-5],[-1,-5]],[[9543,4611],[-13,0],[2,9],[-21,-4],[2,-5],[-6,0],[0,5],[-1,0]],[[9506,4616],[1,15]],[[9653,4610],[-6,1],[0,-5],[-2,-4]],[[9645,4602],[-3,0],[-7,-1],[-5,1],[3,10],[-19,26]],[[7911,4618],[-5,7],[-4,0],[-3,2],[-4,0],[-5,-2]],[[7890,4625],[-10,2],[-11,-7]],[[7869,4620],[-2,47]],[[7899,4692],[12,0],[0,-74]],[[6482,4478],[-129,1]],[[6482,4680],[0,-4],[2,0],[-2,-198]],[[7093,4681],[-1,-4],[3,-5],[9,-2],[9,-20],[5,-11],[3,-3],[7,-2],[2,-2],[2,-14],[7,-3],[5,-9],[5,-5],[7,0],[2,-1],[2,-5],[5,-10]],[[7165,4585],[-68,0]],[[7097,4585],[-25,0]],[[6665,4677],[0,-90]],[[6665,4587],[0,-74]],[[6665,4513],[-54,0]],[[6611,4513],[-22,0]],[[6589,4513],[0,163],[-1,0],[0,5]],[[7202,4618],[-4,-7],[0,-9],[2,-10],[-2,-4],[2,-7],[-2,-6],[0,-3],[0,-2],[0,-4],[-2,-7],[-1,1],[-2,-4]],[[7193,4556],[-11,6]],[[7182,4562],[-8,10],[-6,3],[-3,10]],[[7144,4681],[0,-24],[4,0],[50,-33]],[[7198,4624],[5,-3],[-1,-3]],[[7263,4618],[0,62]],[[7307,4681],[-2,-79]],[[7305,4602],[-21,0]],[[7284,4602],[0,16],[-21,0]],[[7335,4681],[1,-3],[0,-8],[2,-9],[4,-2],[0,-4],[-1,-10],[-5,-4],[2,-5]],[[7338,4636],[0,-1],[0,-4],[0,-1],[7,-2],[2,-1],[2,-16],[-1,-9]],[[7348,4602],[-33,0]],[[7315,4602],[-10,0]],[[7656,4681],[0,-46]],[[7656,4635],[-42,0]],[[7614,4635],[0,46]],[[7698,4681],[0,-53]],[[7698,4628],[-42,-1]],[[7656,4627],[0,8]],[[7822,4602],[-38,-1]],[[7784,4601],[0,50],[-2,0],[2,30]],[[7820,4668],[0,-12],[2,-2],[10,-8],[0,-7],[0,-3],[-8,-21],[-2,-13]],[[7614,4635],[-44,0]],[[7570,4635],[0,46]],[[7784,4601],[-44,1]],[[7740,4602],[0,26]],[[7740,4628],[2,53]],[[6554,4478],[-4,0],[0,-1],[-2,0],[0,-8],[0,-11],[-3,0],[0,-6],[-12,0],[-6,1],[0,1],[-3,0],[0,14],[3,0],[0,5],[2,0],[0,5],[-47,0]],[[6589,4513],[-35,-1],[0,-34]],[[7443,4681],[0,-46]],[[7443,4635],[-42,1]],[[7401,4636],[0,45]],[[7486,4681],[0,-46]],[[7486,4635],[-43,0]],[[7570,4635],[0,-65]],[[7570,4570],[-42,0]],[[7528,4570],[0,65]],[[7528,4635],[0,46]],[[7740,4628],[-42,0]],[[7528,4635],[-42,0]],[[7401,4636],[-63,0]],[[7198,4680],[0,-56]],[[7263,4618],[-21,0]],[[7242,4618],[-40,0]],[[6760,4587],[-46,-1]],[[6714,4586],[-49,1]],[[6216,4444],[-90,3]],[[6126,4447],[-44,2],[0,32],[-4,0],[0,51],[-5,0],[0,14],[5,0],[0,84]],[[7869,4620],[-2,-1],[-3,-3],[-9,-11],[-12,-8],[-9,-11],[-2,-1],[-7,2]],[[7825,4587],[-1,14],[-2,1]],[[9399,4575],[-2,-4],[-3,-4],[2,-10],[1,-6],[-3,-10]],[[9394,4541],[-4,9],[-3,-4],[-2,0],[-1,-3],[-1,0]],[[9383,4543],[-7,14],[-1,11],[-5,-1],[-1,3],[-8,7],[-3,0]],[[9358,4577],[0,5]],[[9358,4582],[-4,52]],[[6919,4661],[0,-79]],[[6919,4582],[-77,3]],[[7011,4585],[-92,-3]],[[9473,4636],[-2,0],[-2,-10],[0,-1],[0,-16],[-12,0],[-1,-37],[6,0],[0,-31],[0,-4]],[[9462,4537],[-7,0]],[[9455,4537],[-22,0]],[[9433,4537],[-1,1],[-2,11],[1,7],[1,19]],[[6036,4315],[0,79]],[[6036,4394],[0,98]],[[6036,4492],[0,99]],[[6126,4447],[0,-131]],[[6126,4316],[-90,-1]],[[9358,4582],[-41,0],[-18,13]],[[9645,4602],[1,-5],[7,5],[7,-5],[-7,-37]],[[9653,4560],[-4,0],[-4,5],[-3,0],[-8,-8],[-4,-8],[-5,3],[-5,-2],[-1,-13],[-5,0]],[[9614,4537],[-8,4],[-2,4],[1,3],[-3,4],[-3,0],[-3,20],[6,4],[-2,12]],[[7340,4570],[3,7],[0,5],[0,7],[-1,7],[3,2],[3,2],[0,2]],[[7401,4636],[0,-65]],[[7401,4571],[-61,-1]],[[9504,4533],[-42,4]],[[9506,4616],[1,-7],[-1,-8],[-2,-5],[0,-9],[0,-6],[-3,-2],[-1,-2],[-1,-7],[-2,-11],[0,-9],[3,-3],[1,-5],[2,-2],[1,-3],[0,-4]],[[7443,4570],[-42,1]],[[7443,4635],[0,-65]],[[7656,4569],[-42,1]],[[7614,4570],[0,65]],[[7656,4627],[0,-58]],[[7486,4570],[-43,0]],[[7486,4635],[0,-65]],[[7614,4570],[-44,0]],[[7528,4570],[-42,0]],[[7698,4628],[0,-58]],[[7698,4570],[-42,-1]],[[7740,4602],[0,-32]],[[7740,4570],[-42,0]],[[7943,4626],[0,-68]],[[7943,4558],[0,-7]],[[7943,4551],[-53,0]],[[7890,4551],[0,74]],[[7911,4618],[9,-1],[3,-1],[4,8],[10,0],[6,2]],[[7890,4551],[0,-58]],[[7890,4493],[-19,0]],[[7871,4493],[0,4],[0,4],[-2,2],[-3,14],[-6,3],[-12,3]],[[7848,4523],[-2,3],[-7,5],[-7,6],[-1,8],[-2,16],[-4,11],[0,15]],[[9614,4537],[0,-3]],[[9614,4534],[-4,-5],[-55,2]],[[9555,4531],[-2,0]],[[9553,4531],[-2,15],[-2,1],[-3,29],[-5,1],[2,34]],[[5718,4557],[0,65]],[[5797,4622],[0,-65],[-3,0],[-1,-16],[-15,0]],[[5778,4541],[-11,0],[0,9],[-26,0],[0,2],[-2,0],[0,5],[-21,0]],[[5717,4517],[-4,2],[-7,1],[-3,1],[-2,-1],[-2,2],[-2,6],[-1,2],[0,7],[-6,4],[-3,1],[0,3],[0,7],[3,1],[0,4],[0,4],[-3,1],[0,6],[-1,1],[-6,1],[-1,-1]],[[5718,4557],[-1,0],[0,-40]],[[5778,4496],[0,45]],[[5820,4521],[-7,-2],[-4,-2],[-3,-14],[-4,-9],[-5,0],[-4,5],[-6,-1],[-6,0],[-3,-2]],[[9553,4531],[-32,1]],[[9521,4532],[-17,1]],[[7284,4548],[-4,3],[-1,5],[-2,1],[-2,0],[-5,2],[-7,1],[-5,-3],[-2,2]],[[7256,4559],[-2,0],[-7,-2],[-5,2]],[[7242,4559],[0,59]],[[7284,4602],[0,-54]],[[7242,4559],[-4,-3],[-5,3],[-3,-2],[-2,0],[-2,3],[-7,-2],[0,-3],[-3,-8],[-4,-4],[-2,-2],[-5,1],[-7,8],[0,2],[-2,3],[-3,1]],[[5884,4577],[2,-2],[-2,-5],[0,-2],[4,4],[0,4],[5,0],[2,2],[3,1],[4,-3],[0,-4],[3,-4],[0,-21],[2,0],[0,-10],[4,0],[0,-7],[1,0],[0,-4],[2,0],[0,-7],[2,0],[0,-16],[-2,-1],[0,-10]],[[5914,4492],[-7,-1],[0,-17],[-14,0],[0,-15],[-12,-1],[-19,0]],[[5862,4458],[0,50],[-18,0],[0,4],[-2,1],[-1,0]],[[7345,4503],[0,-9],[5,-5]],[[7350,4489],[-5,0],[-5,5],[-4,0],[-1,-1],[-2,3]],[[7333,4496],[-2,4],[-7,13],[0,1],[3,3],[-1,4],[-2,2],[-7,0],[-2,3],[0,4]],[[7315,4530],[0,72]],[[7340,4570],[1,-3],[-3,-10],[0,-2],[-2,0],[-1,-6],[-4,-6],[0,-5],[2,-7],[5,-8],[3,-2],[2,-5],[2,-9],[-2,-1],[2,-3]],[[7315,4530],[-7,6],[-7,-3],[0,1],[0,4],[0,2],[-3,0]],[[7298,4540],[-11,3],[-3,5]],[[7784,4601],[0,-83]],[[7784,4518],[-44,-1]],[[7740,4517],[0,53]],[[7848,4523],[0,-5],[-23,1]],[[7825,4519],[-41,-1]],[[9343,4548],[-2,-3],[-8,0],[-7,-3],[-11,10],[-7,3]],[[9308,4555],[-10,5]],[[9358,4577],[1,-10],[-15,-16],[-1,-3]],[[6036,4492],[-1,-2],[-4,-2],[-2,0],[-5,-2],[-3,1],[-2,3],[3,9],[0,7],[-3,5],[-3,-9],[-4,1],[-2,6],[-1,1],[-20,0],[-5,-4],[0,-8],[0,-5],[3,-6],[2,-8],[-1,-5]],[[5988,4474],[-11,0],[0,3],[-2,0],[0,-3],[-12,0]],[[5963,4474],[-2,15],[0,8],[-2,0],[0,20],[-3,0],[0,9],[-2,0],[0,6],[-7,0],[-3,-2],[-2,0],[0,1],[-2,5],[-1,4],[-1,8],[2,5],[-1,13],[0,7],[1,3],[2,1],[2,4],[3,1],[-1,9]],[[5963,4474],[-2,0],[0,-30],[-8,0],[0,6],[-13,1]],[[5940,4451],[-3,2],[0,5],[-2,1],[0,3],[-7,1],[-2,-6],[-5,1],[2,6],[3,6],[-1,10],[-2,2],[0,-2],[-2,0],[-5,12],[-2,0]],[[6665,4395],[0,118]],[[6714,4586],[2,-41],[0,-67],[5,0]],[[6721,4478],[-1,-66],[3,-1],[0,-17]],[[6723,4394],[-58,0],[0,1]],[[6779,4586],[0,-41],[2,-2],[0,-64]],[[6781,4479],[-60,-1]],[[6849,4412],[0,-15],[-5,0]],[[6844,4397],[-55,-2]],[[6789,4395],[-3,0]],[[6786,4395],[0,17],[-4,1],[0,65],[-1,1]],[[6842,4585],[0,-40],[2,-2],[0,-65],[1,0],[0,-65],[4,-1]],[[5026,4395],[-84,2]],[[4942,4397],[0,132],[-1,1]],[[7097,4585],[-2,-36]],[[7095,4549],[-3,-2],[-4,-4],[-2,0],[-5,-2],[-2,-3],[-7,-6],[-10,0],[-2,2],[-1,-1]],[[7059,4533],[-6,0],[-1,3],[-2,-2],[-5,3],[-4,2],[-5,1],[-9,5],[-4,0],[-6,3],[-1,4],[-3,0],[-2,3]],[[7011,4555],[0,30]],[[7182,4540],[-5,2],[-9,-2],[-12,3],[-7,6],[-3,0],[-5,4],[-6,0],[-1,4],[-6,-1],[-3,5],[-4,5],[-3,-1],[-9,-8],[-5,-2],[-2,-3],[-7,-3]],[[7182,4562],[-1,-17],[1,-5]],[[7011,4555],[0,-13],[2,0],[0,-64],[2,-66]],[[7015,4412],[-9,-1]],[[7006,4411],[-52,1]],[[6954,4412],[-53,0]],[[6901,4412],[-52,0]],[[4897,4542],[-4,-12],[-4,-13],[-1,-9],[-2,-5],[0,-5],[-3,-1],[0,-4],[-1,-3],[-3,0],[-3,1],[-4,-2],[1,-8],[0,-5],[-4,-3],[-2,-4],[0,-2],[2,-1],[0,-4],[9,0],[5,-3],[0,-2],[3,-2],[3,-12],[1,-5],[-1,-6],[1,-4],[-4,-6],[0,-3],[2,-7],[-2,-9],[3,-9]],[[4889,4394],[-35,1]],[[4854,4395],[-13,19],[-7,28],[-1,36],[4,23],[0,13],[-15,41],[7,22]],[[9433,4537],[-8,-45]],[[9425,4492],[-39,-9]],[[9386,4483],[0,5],[1,11],[0,13],[7,17],[0,12]],[[9383,4543],[-33,-9]],[[9350,4534],[-2,-2],[-5,0],[-5,5],[3,2],[2,1],[1,3],[0,4],[-1,1]],[[7401,4571],[0,-68]],[[7401,4503],[-56,0]],[[7443,4570],[0,-68]],[[7443,4502],[-32,1]],[[7411,4503],[-10,0]],[[7740,4517],[-42,0]],[[7698,4517],[0,53]],[[7656,4500],[0,69]],[[7698,4517],[0,-16]],[[7698,4501],[-42,-1]],[[7486,4502],[-43,0]],[[7486,4570],[0,-68]],[[5746,4394],[-67,1]],[[5717,4517],[8,-3],[6,-5],[8,-1],[4,-5],[10,-5],[4,-5],[2,-2],[3,1],[5,4],[4,0]],[[5771,4496],[0,-3],[-5,-1],[0,-19],[-20,0],[0,-79]],[[7528,4570],[0,-51]],[[7528,4519],[0,-17]],[[7528,4502],[-42,0]],[[7570,4570],[0,-51]],[[7570,4519],[-42,0]],[[7614,4570],[0,-69]],[[7614,4501],[-44,0]],[[7570,4501],[0,18]],[[7656,4500],[-42,1]],[[9240,4458],[2,6],[-2,7],[2,6],[-1,9],[0,7],[1,1],[0,5],[5,4],[1,10],[0,9],[3,16]],[[9251,4538],[3,8],[1,10],[-1,6]],[[9254,4562],[1,0],[3,3]],[[9308,4555],[-2,-16],[3,-18],[0,-7],[-1,-5],[-6,-15]],[[9302,4494],[-5,-1],[-5,0],[-9,-7],[-1,2],[-2,-1],[-2,-6],[0,1],[-1,-2],[-1,1],[-1,-4],[-6,-1],[-5,-7],[-4,-3],[-1,3],[-2,-3],[-3,-2],[-5,-6],[-3,-3],[-6,3]],[[7182,4540],[1,-62]],[[7183,4478],[0,-66]],[[7183,4412],[-41,0]],[[7142,4412],[-42,0]],[[7100,4412],[-1,0]],[[7099,4412],[0,65],[-2,66],[-2,0],[0,6]],[[9634,4480],[-3,6],[2,5],[-1,5],[-2,0],[-2,3],[3,4],[2,0],[0,4],[-2,4],[-6,-2],[-2,3],[-2,-2],[-1,2],[1,1],[-8,7],[1,1],[0,13]],[[9653,4560],[7,-38],[13,-4],[-4,-11],[-16,-8],[-7,-18],[-6,-3]],[[9640,4478],[-5,0],[0,2],[-1,0]],[[7256,4559],[0,-80]],[[7256,4479],[-32,0]],[[7224,4479],[-41,-1]],[[7298,4540],[0,-79]],[[7298,4461],[-32,0]],[[7266,4461],[0,18],[-10,0]],[[5778,4496],[-7,0]],[[9350,4534],[2,-3],[0,-10],[-7,-22],[0,-7],[-1,-11],[0,-8]],[[9344,4473],[1,-5],[-3,-4],[-6,-1],[-3,4],[-6,-4]],[[9327,4463],[-17,15],[-8,16]],[[7060,4412],[-2,-1]],[[7058,4411],[-43,1]],[[7059,4533],[0,-56],[1,0],[0,-65]],[[7943,4492],[-9,0]],[[7934,4492],[-44,1]],[[7943,4551],[0,-59]],[[9386,4483],[-42,-10]],[[7099,4412],[-39,0]],[[4942,4397],[-26,-2]],[[4916,4395],[-27,-1]],[[7333,4496],[-9,0],[0,-47]],[[7324,4449],[0,-5],[-9,0]],[[7315,4444],[-17,0],[0,17]],[[9457,4455],[-3,-33],[-1,2],[-3,0],[1,-6],[-1,-4],[2,-10],[0,-2]],[[9452,4402],[-39,2]],[[9413,4404],[-1,7],[13,81]],[[9455,4537],[0,-6],[6,-1],[0,-2],[-2,0],[-1,-5],[2,-1],[1,-2],[-2,-19]],[[9459,4501],[-3,-33],[-5,2],[0,-3],[1,-9],[2,-5],[3,2]],[[9521,4532],[1,-6],[3,-4],[2,-8],[-3,-2],[-1,-6],[-1,0],[0,-8],[2,-5],[-3,-5],[0,-9],[-3,-5],[0,-12]],[[9518,4462],[-1,-5],[-2,-3],[0,10],[-4,12],[-8,-3],[-1,5],[-19,-5],[0,8],[-5,-1],[0,2],[-9,6],[0,6],[-2,2],[0,2],[-8,3]],[[9634,4480],[-2,-10],[-2,0],[-2,-3],[2,-5],[-4,0]],[[9626,4462],[-2,4],[-4,-4],[1,-4]],[[9621,4458],[-1,-4],[1,-1]],[[9621,4453],[-2,-3]],[[9619,4450],[-2,3],[-1,4],[-2,1],[-7,-4],[0,-12],[-1,0],[-1,-8],[-4,-2],[-1,-2],[-3,0],[-4,-6]],[[9593,4424],[0,4],[-2,0],[-5,3],[0,3],[-3,0],[-1,4],[1,6],[2,3],[5,0],[3,7],[-1,4],[-6,0],[-3,-3],[-1,3],[-2,2],[1,6],[3,3],[-1,2],[3,3],[1,9],[-2,3],[3,8],[0,4],[-3,1],[-3,-1],[-2,1],[-1,-1],[0,-2],[-4,2],[1,14],[-10,6],[0,-1],[-7,0],[0,6],[-4,8]],[[9593,4424],[0,-4],[-2,-3],[1,-19]],[[9592,4398],[-27,-1]],[[9565,4397],[-1,2],[-26,1]],[[9538,4400],[-4,0]],[[9534,4400],[0,24],[-5,-1],[-6,9],[1,6],[3,4]],[[9527,4442],[0,12],[-5,-2],[-1,10],[-3,0]],[[7883,4470],[-14,-1],[0,-17],[-21,1]],[[7848,4453],[-21,0]],[[7827,4453],[-2,66]],[[7871,4493],[-2,-3],[0,-3],[5,-4],[4,-6],[5,-7]],[[5862,4458],[0,-63]],[[5862,4395],[-95,-1]],[[5767,4394],[-21,0]],[[7570,4501],[0,-15],[4,0],[0,-51]],[[7574,4435],[-21,0]],[[7553,4435],[-21,0]],[[7532,4435],[0,51],[-4,0],[0,16]],[[7827,4453],[-21,-1]],[[7806,4452],[-21,0]],[[7785,4452],[0,34],[-1,0],[0,32]],[[7785,4452],[-22,1]],[[7763,4453],[-21,0]],[[7742,4453],[1,30],[-3,0],[0,34]],[[7742,4453],[-21,-1]],[[7721,4452],[-21,0]],[[7700,4452],[0,34],[-2,0],[0,15]],[[6665,4395],[0,-56]],[[6665,4339],[0,-26]],[[6665,4313],[-54,0],[0,18]],[[6611,4331],[0,182]],[[6611,4331],[-56,-1]],[[6555,4330],[0,84],[-1,64]],[[6036,4394],[-40,1]],[[5996,4395],[-1,13],[-7,6],[1,7],[-3,7],[-2,6],[3,8],[2,6],[0,9],[2,4],[0,5],[-3,6],[0,2]],[[7418,4435],[-61,2]],[[7357,4437],[2,2],[0,5],[-2,6]],[[7357,4450],[-1,3],[-2,5],[-4,4],[2,7],[0,5],[0,5],[2,4],[-4,6]],[[7411,4503],[0,-16],[7,0],[0,-52]],[[7443,4502],[0,-15],[5,0],[0,-52]],[[7448,4435],[-30,0]],[[7486,4502],[0,-15],[4,0],[0,-52]],[[7490,4435],[-21,0]],[[7469,4435],[-21,0]],[[7532,4435],[-21,0]],[[7511,4435],[-21,0]],[[7616,4435],[-21,0]],[[7595,4435],[-21,0]],[[7614,4501],[0,-18],[2,0],[0,-48]],[[9527,4442],[-2,0],[-2,-4],[-2,2],[-4,-2],[-3,-5],[-3,-1],[-1,7],[-18,-2],[-2,3],[2,9],[0,2],[-3,-4],[-2,-9],[-4,-1],[2,-5],[-9,2],[0,4],[-1,0],[0,2],[-1,0],[0,2],[-5,-1],[-1,-3],[-3,3],[2,6],[0,12],[-1,1],[-5,0],[-4,-5]],[[7656,4500],[0,-17],[2,0],[0,-48]],[[7658,4435],[-21,0]],[[7637,4435],[-21,0]],[[7679,4435],[-21,0]],[[7700,4452],[-21,0],[0,-17]],[[7357,4450],[-33,-1]],[[9327,4463],[1,-2],[-9,-27],[7,-6]],[[9326,4428],[-5,-5],[-4,-1],[-1,-4],[-20,-19]],[[9296,4399],[-33,-30]],[[9263,4369],[-2,2],[-7,0],[-3,14],[-3,4],[-2,5],[-4,1]],[[9242,4395],[-2,4],[-2,8],[1,26]],[[9239,4433],[1,25]],[[7899,4434],[-4,1],[-3,6],[-2,3],[0,16],[-2,4],[-5,6]],[[7934,4492],[0,-58]],[[7934,4434],[-35,0]],[[9413,4404],[-4,0],[0,-11],[-18,5],[-16,13],[-3,0]],[[9372,4411],[1,9]],[[9373,4420],[2,7],[4,5],[1,9],[4,3],[2,9],[-1,18],[2,9],[-1,3]],[[5942,4397],[-4,-2]],[[5938,4395],[-76,0]],[[5940,4451],[4,-4],[1,-7],[0,-11],[-3,-1],[0,-31]],[[9373,4420],[-7,10],[-1,-6],[-2,4],[-4,-14],[-19,4],[-14,10]],[[9640,4478],[-7,-27]],[[9633,4451],[-1,-3],[-5,-4],[-1,-4],[-2,-1],[-5,11]],[[9621,4453],[0,-1],[4,3],[2,7],[-1,0]],[[9626,4462],[-5,-4]],[[6461,4205],[-49,-1]],[[6412,4204],[-40,1]],[[6372,4205],[-54,0]],[[6318,4205],[0,77],[-2,0],[0,50],[37,0],[0,7],[1,0],[0,74],[-1,1],[0,30]],[[6482,4478],[2,-197],[-23,0],[0,-76]],[[7266,4461],[0,-48]],[[7266,4413],[-42,-1]],[[7224,4412],[0,67]],[[6786,4395],[-58,-1]],[[6728,4394],[-5,0]],[[7224,4380],[-41,-1]],[[7183,4379],[0,33]],[[7224,4412],[0,-32]],[[6555,4330],[0,-126]],[[6555,4204],[-83,1]],[[6472,4205],[-11,0]],[[5996,4395],[-54,2]],[[7915,4402],[-67,0]],[[7848,4402],[0,51]],[[7899,4434],[9,-7],[3,-8],[2,0],[0,-4],[0,-7],[2,-6]],[[7315,4444],[0,-30]],[[7315,4414],[-19,-1]],[[7296,4413],[-30,0]],[[9534,4400],[-33,1]],[[9501,4401],[-6,0],[-1,-2],[-2,1],[0,1],[-14,1],[-2,-5],[-3,-2],[0,7],[-17,0]],[[9456,4402],[-4,0]],[[7848,4385],[-43,0]],[[7805,4385],[1,67]],[[7848,4402],[0,-17]],[[7764,4369],[-42,1]],[[7722,4370],[-1,82]],[[7763,4453],[1,-84]],[[7805,4385],[0,-17]],[[7805,4368],[-41,1]],[[7722,4370],[-42,0]],[[7680,4370],[-1,65]],[[7357,4437],[0,-9],[7,-9],[0,-15]],[[7364,4404],[-2,0],[0,-4],[-22,-1]],[[7340,4399],[0,15],[-25,0]],[[6318,4205],[-102,-1]],[[6216,4204],[-85,0]],[[6131,4204],[-6,0]],[[6125,4204],[0,78],[1,1],[0,33]],[[9652,4444],[4,-1],[7,-19],[7,-34],[7,-8],[0,-23]],[[9677,4359],[-7,-8],[0,-6]],[[9670,4345],[-19,-21]],[[9651,4324],[-5,26],[-1,-1],[-3,6],[-8,-1],[1,4],[-2,3],[6,9],[-4,13],[-3,4],[-4,27]],[[9628,4414],[14,10],[2,13],[-2,3]],[[9642,4440],[4,7],[6,-3]],[[9652,4444],[-3,-1],[2,-3],[-2,-1],[3,-5],[3,4],[0,2],[-3,4]],[[9633,4451],[9,-11]],[[9628,4414],[-24,-21],[-2,-1]],[[9602,4392],[0,7],[-10,-1]],[[7376,4370],[-1,8],[1,3],[0,9],[-3,3],[-2,2],[-3,0],[0,6],[-4,3]],[[7418,4435],[0,-65]],[[7418,4370],[-42,0]],[[7469,4435],[0,-65]],[[7469,4370],[-40,0]],[[7429,4370],[-11,0]],[[7511,4435],[0,-65]],[[7511,4370],[-10,0]],[[7501,4370],[-32,0]],[[7542,4369],[-31,1]],[[7553,4435],[0,-66]],[[7553,4369],[-11,0]],[[7595,4370],[-11,0]],[[7584,4370],[-31,-1]],[[7595,4435],[0,-65]],[[7680,4370],[-42,0]],[[7638,4370],[-1,65]],[[7626,4370],[-31,0]],[[7638,4370],[-12,0]],[[9372,4411],[-2,-32],[2,-9],[-1,-18],[1,-8],[-1,-26]],[[9371,4318],[-9,-2],[-3,5],[-4,1],[0,-6],[-6,3],[-5,2],[0,4],[-8,-5],[-3,-1]],[[9333,4319],[-2,9],[-16,20],[11,24],[-30,27]],[[7340,4399],[0,-54]],[[7340,4345],[-32,0]],[[7308,4345],[-10,3]],[[7298,4348],[-2,65]],[[9651,4324],[-5,1],[-11,-21],[-9,-4]],[[9626,4300],[-2,31],[-6,4]],[[9618,4335],[-2,5]],[[9616,4340],[-4,9],[-5,4]],[[9607,4353],[-1,2],[-1,5],[1,9],[-1,4],[1,2],[-4,-1],[0,18]],[[7298,4348],[-21,-3]],[[7277,4345],[-11,0]],[[7266,4345],[0,68]],[[7266,4345],[-42,0]],[[7224,4345],[0,35]],[[6901,4412],[0,-67]],[[6901,4345],[-50,0]],[[6851,4345],[-7,0],[0,52]],[[7100,4345],[-42,0]],[[7058,4345],[0,66]],[[7100,4412],[0,-67]],[[6903,4345],[-2,0]],[[6954,4412],[0,-67]],[[6954,4345],[-51,0]],[[7142,4345],[-42,0]],[[7142,4412],[0,-67]],[[7006,4345],[-40,0]],[[6966,4345],[-12,0]],[[7006,4411],[0,-66]],[[7183,4379],[1,-34]],[[7184,4345],[-42,0]],[[7058,4345],[-52,0]],[[9413,4404],[-3,-71]],[[9410,4333],[-1,-29]],[[9409,4304],[-5,1],[-31,-6],[-5,-10]],[[9368,4289],[-2,4],[0,12],[5,13]],[[9677,4359],[11,-14],[13,-3],[-6,-2],[13,0],[16,15],[2,14],[-9,28],[-14,11],[11,2],[8,-10],[7,-22],[4,-26],[-3,-18],[-40,-13],[-3,-7],[-18,-5],[-3,3],[4,33]],[[7378,4335],[-28,0]],[[7350,4335],[0,10],[-10,0]],[[7376,4370],[6,-15],[-2,-6],[0,-5],[2,-4],[-4,-2],[0,-3]],[[9456,4402],[-2,-12],[13,2],[-3,-16],[-3,-1],[-1,-7],[2,-5],[-1,-4],[-6,-1],[3,-30]],[[9458,4328],[-4,-3],[0,-4],[-2,-1],[0,-1],[-3,-1],[-1,-4],[-6,-3],[0,-7],[-16,-3],[1,-5]],[[9427,4296],[-4,4],[-1,3],[-5,-2],[-5,27],[1,1],[-2,4],[-1,0]],[[9501,4401],[1,-17],[-2,0],[0,-15],[1,0],[0,-9],[2,0],[3,-26],[3,-5],[0,-8]],[[9509,4321],[-1,-3],[-4,0]],[[9504,4318],[-3,11],[-19,-5],[0,-4],[-3,-1],[0,-4]],[[9479,4315],[-5,0],[-1,-4],[-1,4],[-3,-1],[0,-4],[-1,1],[-1,2],[-6,0],[1,15],[-4,0]],[[7899,4342],[-7,3],[-2,5],[-7,3],[-3,-2],[-11,-1],[-5,-5],[-2,0],[-3,7],[-11,0]],[[7848,4352],[0,33]],[[7915,4402],[1,-9],[-1,-11]],[[7915,4382],[-4,-23],[-5,-4]],[[7906,4355],[-5,-5],[-2,-8]],[[9538,4400],[-1,-12],[-10,1],[-2,-25],[6,0],[1,-13],[-2,-2],[-2,-5],[-5,-1],[2,-3]],[[9525,4340],[-3,-1],[-1,-4],[1,-4],[-4,-2],[-1,-1],[-1,-8],[-3,0],[-2,-2],[-2,3]],[[9565,4397],[0,-55]],[[9565,4342],[0,-14]],[[9565,4328],[-6,1],[-8,-4],[-19,7],[-7,8]],[[9333,4319],[-3,-4],[-6,-14],[-25,-1],[-1,-9],[1,-5]],[[9299,4286],[-4,0],[-6,5],[-3,-1],[0,4],[-3,3],[-4,0],[-4,11],[-1,5],[-4,7]],[[9270,4320],[0,1],[2,4],[-1,16],[1,2],[-1,9],[-3,2],[0,4],[2,2],[-4,4],[-1,1],[-2,4]],[[9607,4353],[-4,-8]],[[9603,4345],[-2,6]],[[9601,4351],[-2,0],[-2,-3],[-2,-4],[-30,-2]],[[5996,4395],[4,-12],[0,-4],[-4,-1],[2,-6],[-2,-7],[5,-3],[2,-21],[0,-6],[2,-5],[-2,-9],[0,-13],[-2,-5],[-5,-9],[0,-10]],[[5996,4284],[-14,0],[-3,2],[-2,-7],[-3,-3],[-4,4],[-5,1],[-4,4]],[[5961,4285],[0,5],[-2,3],[1,1],[3,1],[-2,5],[-2,5],[-1,5],[-2,1],[-3,-3],[-1,1],[-3,24],[-3,9],[0,6],[3,5],[2,5],[-2,2],[0,5],[-2,3],[-3,10],[-2,1],[-2,4],[-2,10],[0,2]],[[5103,4394],[-1,-9],[0,-1],[-2,-32],[2,0],[0,-112]],[[5102,4240],[-94,0]],[[5008,4240],[-4,3],[0,2],[3,16],[2,4],[-2,5],[-3,0],[-2,5],[-1,0],[-1,-9],[-5,0],[-1,-5],[-6,-4],[-1,-4],[-4,-4],[-2,-6],[-2,0],[-3,-1],[-2,0],[-5,-3],[-2,0],[0,-8],[-1,-10],[3,-5],[3,-9],[-3,-4],[0,-1],[-4,4],[-5,-1],[-5,10],[-3,4],[-6,-2],[-4,2],[-7,13],[-3,1],[-1,2],[-3,-1],[-3,5]],[[4925,4239],[-2,7],[0,10],[-2,3],[0,3],[-1,4],[0,7],[-2,3],[-14,0]],[[4904,4276],[0,5],[0,4],[3,7],[0,3],[-3,5],[0,5],[-4,6],[0,5],[-1,0],[0,6],[3,6],[0,4],[1,3],[0,7],[-3,8],[2,5],[-2,6],[3,4],[1,9],[5,0],[1,1],[1,0],[2,3],[1,9],[0,6],[2,2]],[[6851,4345],[0,-65]],[[6851,4280],[-6,0],[0,-34]],[[6845,4246],[-50,0]],[[6795,4246],[0,35],[-2,0],[0,8]],[[6793,4289],[0,56],[-2,0],[-2,15],[0,35]],[[5907,4221],[-31,-16],[-109,-1]],[[5767,4204],[0,190]],[[5961,4285],[-2,-2],[-5,2],[0,-11],[-5,-4],[-19,0],[-23,-49]],[[6036,4315],[0,-60]],[[6036,4255],[-3,-3],[-2,-7],[-2,-4],[-3,-1],[-4,-7],[-1,0],[-2,2]],[[6019,4235],[4,10],[-1,1],[-3,3],[-2,3],[0,10],[-5,12],[-2,0],[-2,2],[-5,-1]],[[6003,4275],[-3,4],[-2,4],[-2,1]],[[6728,4394],[-1,-46],[0,-10]],[[6727,4338],[-62,1]],[[6793,4289],[-66,-3]],[[6727,4286],[0,52]],[[9270,4320],[-10,-28],[-6,-8],[-1,-8],[-2,-1],[-5,1],[0,-6],[2,-4],[-3,-11],[0,-3]],[[9245,4252],[-13,-1]],[[9232,4251],[3,4],[0,73]],[[9235,4328],[-1,67]],[[9234,4395],[8,0]],[[4904,4276],[-11,0],[0,18],[-26,-1]],[[4867,4293],[-7,50],[-9,11],[3,11],[0,30]],[[5294,4197],[-2,0],[0,55],[2,0],[0,32],[-2,86],[2,0],[0,24]],[[5501,4394],[0,-191]],[[5501,4203],[0,-66],[-21,0],[-5,-21]],[[5475,4116],[0,28],[-30,0],[0,33],[-104,0],[0,19],[-47,1]],[[5767,4204],[0,-168]],[[5767,4036],[-159,3]],[[5608,4039],[-17,0],[-14,105],[0,60],[-38,0]],[[5539,4204],[-38,-1]],[[5232,4394],[0,-154]],[[5232,4240],[-119,0]],[[5113,4240],[-11,0]],[[5305,3945],[-4,-2],[-3,0]],[[5298,3943],[-11,-5],[-7,-1],[0,-7],[-4,0],[-3,2],[0,-4],[-3,-2],[-4,-4],[-2,-2],[-1,0],[-4,2],[0,-6],[0,-6],[4,-4],[1,-5],[-1,-5],[1,-6],[-1,-2],[0,-3],[-4,-6],[0,-7]],[[5259,3872],[0,-3],[-4,0],[0,-1],[-5,-1],[0,-3],[-1,0],[0,-1],[-3,0],[0,-2],[-1,0],[0,-4],[-2,0],[0,-4],[-11,0]],[[5232,3853],[0,30]],[[5232,3883],[0,25]],[[5232,3908],[0,53]],[[5232,3961],[0,279]],[[5294,4197],[-2,-181],[9,0]],[[5301,4016],[3,-12],[-3,-5],[4,-10],[-4,-5],[3,-4],[2,-4],[2,-16],[-3,-9],[0,-6]],[[7806,4319],[-1,49]],[[7848,4352],[-2,-33]],[[7846,4319],[-40,0]],[[7184,4296],[0,49]],[[7224,4345],[0,-40]],[[7224,4305],[-5,-1],[0,-2],[-12,0],[0,-2],[-7,0],[0,-4],[-16,0]],[[7680,4302],[-10,0]],[[7670,4302],[-42,0]],[[7628,4302],[0,18],[-2,0],[0,50]],[[7680,4370],[-1,-50],[1,0],[0,-18]],[[7628,4302],[0,-2]],[[7628,4300],[-7,0],[-2,2],[-33,0]],[[7586,4302],[0,18],[-2,0],[0,50]],[[7722,4370],[0,-68]],[[7722,4302],[-12,0]],[[7710,4302],[-30,0]],[[7434,4302],[-44,0]],[[7390,4302],[0,3],[-1,3],[-4,-3],[-3,3],[-2,5],[2,2],[-4,5],[2,10],[-2,5]],[[7429,4370],[0,-50],[5,0],[0,-18]],[[7542,4369],[0,-49],[4,0],[0,-19]],[[7546,4301],[-42,0]],[[7504,4301],[0,19],[-3,0],[0,50]],[[7474,4301],[-10,0]],[[7464,4301],[-30,1]],[[7469,4370],[0,-50],[5,0],[0,-19]],[[7504,4301],[-30,0]],[[7764,4369],[0,-67]],[[7764,4302],[-10,0]],[[7754,4302],[-32,0]],[[7586,4302],[-9,-2],[-31,1]],[[7806,4319],[-1,-33]],[[7805,4286],[-11,0]],[[7794,4286],[-2,5],[2,2],[-2,2],[0,5],[-1,2],[-27,0]],[[7906,4355],[0,-15],[3,-5],[2,-2],[2,-8],[2,-4],[-4,-5]],[[7911,4316],[0,-3],[-2,-3],[-3,-5],[-11,-2],[-1,-7],[-6,-3],[0,-24]],[[7888,4269],[-56,1]],[[7832,4270],[2,11],[2,4],[3,1],[4,-1],[10,5],[4,1]],[[7857,4291],[7,0],[5,3],[5,8],[6,3],[8,0],[0,4],[2,5],[7,4],[0,2],[0,9],[2,13]],[[7857,4291],[0,28],[-11,0]],[[9616,4340],[-5,-5],[-8,10]],[[9601,4351],[2,-11],[-4,-10]],[[9599,4330],[-6,-5],[-1,-5],[-27,0]],[[9565,4320],[0,8]],[[7308,4293],[-5,-1],[-5,-7],[-4,-1],[-5,-4],[-5,-3],[-7,3]],[[7277,4280],[0,65]],[[7308,4345],[0,-52]],[[7359,4281],[-12,0]],[[7347,4281],[-9,5],[-2,3],[-9,-3],[-6,6],[-13,1]],[[7350,4335],[0,-35],[0,-3],[2,0],[0,-2],[2,0],[0,-2],[2,0],[0,-3],[3,0],[0,-9]],[[7277,4280],[-4,-4],[-3,3],[-4,0]],[[7266,4279],[0,2],[-1,0],[-6,-5],[-3,-2],[-4,0],[-7,-8]],[[7245,4266],[0,14],[-10,0]],[[7235,4280],[0,24],[-11,1]],[[6903,4345],[0,-65]],[[6903,4280],[-52,0]],[[7184,4280],[-42,1]],[[7142,4281],[0,64]],[[7184,4296],[0,-16]],[[6966,4345],[0,-64]],[[6966,4281],[-51,-1]],[[6915,4280],[-12,0]],[[7006,4345],[0,-64]],[[7006,4281],[-40,0]],[[7100,4345],[0,-65],[2,0]],[[7102,4280],[0,-66]],[[7102,4214],[-21,0]],[[7081,4214],[-71,0]],[[7010,4214],[-2,0],[0,66],[-2,1]],[[7142,4281],[-40,-1]],[[8150,4295],[0,-33]],[[8150,4262],[-45,-1],[2,-16],[-21,-1]],[[8086,4244],[-2,50]],[[8084,4294],[0,49]],[[8084,4343],[21,0],[0,-5]],[[8105,4338],[0,-9],[11,0],[0,-16],[10,1],[0,-19],[24,0]],[[8480,4341],[9,0]],[[8489,4341],[25,2]],[[8514,4343],[30,-19]],[[8544,4324],[-23,-2]],[[8521,4322],[-15,-1],[-3,-6],[-7,-10],[-3,-8],[-9,-11],[-5,-2]],[[8479,4284],[0,13]],[[8479,4297],[1,44]],[[8084,4294],[-30,-1]],[[8054,4293],[-1,32]],[[8053,4325],[0,16],[1,1]],[[8054,4342],[30,1]],[[8150,4239],[0,23]],[[8150,4295],[0,48]],[[8150,4343],[6,-9],[3,1],[-2,-4],[6,-6],[14,-1]],[[8177,4324],[0,-72]],[[8177,4252],[-4,-6]],[[8173,4246],[-7,-5],[-5,-2],[-7,1],[-4,-1]],[[8177,4324],[26,17]],[[8203,4341],[1,-90]],[[8204,4251],[-2,-2],[-3,-3],[-8,11],[-6,3],[-5,-4],[-3,-4]],[[8433,4340],[2,0]],[[8435,4340],[45,1]],[[8479,4297],[-41,0]],[[8438,4297],[0,5],[-5,0],[0,38]],[[8737,4340],[0,-40]],[[8737,4300],[0,-29]],[[8737,4271],[-33,1]],[[8704,4272],[0,13],[1,0],[0,4],[-1,0],[-1,24]],[[8703,4313],[9,0],[0,12],[17,0],[0,15],[8,0]],[[9565,4320],[-1,-36],[-4,-2],[1,-11],[-1,-5],[-2,0]],[[9558,4266],[-37,-7],[-4,2],[-6,13]],[[9511,4274],[0,2],[0,4],[-2,0],[-2,5],[11,4],[-1,19],[-9,-3],[-4,13]],[[8397,4286],[0,19]],[[8397,4305],[0,34]],[[8397,4339],[36,1]],[[8438,4297],[0,-11]],[[8438,4286],[-41,0]],[[6665,4280],[0,33]],[[6727,4286],[0,-6],[-1,0]],[[6726,4280],[-61,0]],[[7394,4281],[-35,0]],[[7390,4302],[-3,-2],[2,-3],[3,-2],[2,-1],[0,-13]],[[9626,4300],[-8,-6],[0,41]],[[9612,4323],[4,2],[-2,-30],[-4,2],[-5,-6],[7,32]],[[9447,4236],[-49,-32]],[[9398,4204],[0,3],[-7,17],[22,21],[-6,16],[1,14]],[[9408,4275],[1,29]],[[9427,4296],[3,-1],[0,-3],[2,0],[0,-2],[3,0],[1,-4],[2,0],[2,-5],[3,-2],[3,-9],[4,-6],[-2,-9],[-2,-4],[1,-8],[-1,-2],[1,-5]],[[6665,4205],[-80,-1]],[[6585,4204],[-30,0]],[[6665,4280],[0,-75]],[[9161,4279],[6,30]],[[9167,4309],[2,21],[7,0]],[[9176,4330],[0,-2],[35,0]],[[9211,4328],[-4,-13],[-2,-11],[2,-3],[-7,-16]],[[9200,4285],[-14,-6],[-25,0]],[[9599,4330],[-1,-33],[-6,-17],[-21,-14],[-13,0]],[[9511,4274],[0,-15],[-12,-3]],[[9499,4256],[-2,0],[-4,10],[-1,0],[-2,15],[-3,5],[-7,0],[1,10],[-1,0],[-1,19]],[[9499,4256],[-34,0],[-18,-20]],[[9232,4251],[-2,-5],[-2,3],[-1,-3],[-6,-10]],[[9221,4236],[-3,5],[0,14],[-5,6],[1,10],[-9,6],[-3,4],[-2,4]],[[9211,4328],[24,0]],[[8002,4225],[0,40]],[[8002,4265],[0,53]],[[8002,4318],[0,6],[21,1]],[[8023,4325],[30,0]],[[8054,4293],[0,-67]],[[8054,4226],[-31,0],[0,-34]],[[8023,4192],[-11,0]],[[8012,4192],[0,33],[-10,0]],[[9368,4289],[3,-8],[-3,-15]],[[9368,4266],[-23,-34]],[[9345,4232],[-12,10]],[[9333,4242],[-29,30]],[[9304,4272],[-1,4],[-3,5],[0,4],[-1,1]],[[8969,4320],[0,-38],[15,0],[0,-16],[1,0],[0,-16]],[[8985,4250],[-36,4],[0,-8],[-6,-3]],[[8943,4243],[0,6],[-3,0],[0,7],[-19,20],[-2,1],[-2,-2],[-3,-2],[-2,1],[-3,-2]],[[8909,4272],[0,12],[1,0],[0,7],[9,0],[0,-5],[2,3],[0,35]],[[8921,4324],[42,1],[0,-4],[6,-1]],[[8704,4272],[-19,0],[0,-3],[3,-10],[-1,-2],[-10,0]],[[8677,4257],[-18,0]],[[8659,4257],[0,15],[-9,0],[1,28]],[[8651,4300],[20,-1],[23,26]],[[8694,4325],[1,-11],[8,-1]],[[8854,4239],[-27,0]],[[8827,4239],[0,60]],[[8827,4299],[0,2],[2,0],[0,3],[1,0],[0,1],[2,0],[0,4],[1,0],[0,3],[2,0],[0,2],[1,0],[0,1],[5,4],[0,1],[1,1],[0,3],[5,0],[0,-2],[14,0],[0,2]],[[8861,4324],[10,0]],[[8871,4324],[0,-31],[-1,1],[0,-5],[4,0],[0,-9]],[[8874,4280],[0,-11],[-6,1],[0,-5],[-6,1],[0,-7],[-2,0],[0,-3],[-1,0],[0,-2],[-1,0],[0,-9],[-1,-2],[0,-3],[-2,1],[-1,-2]],[[8871,4324],[50,0]],[[8909,4272],[-2,-3],[-4,0],[0,-3],[-1,6],[-1,-6],[-1,4],[-2,-4]],[[8898,4266],[0,20],[-18,3],[1,-10],[-7,1]],[[8544,4324],[13,-16],[19,0],[1,-7],[-26,-8]],[[8551,4293],[-23,-1],[-1,8],[-6,0]],[[8521,4300],[0,22]],[[8998,4246],[-13,4]],[[8969,4320],[0,3],[19,0]],[[8988,4323],[14,-27],[5,-1]],[[9007,4295],[0,-20],[-9,-29]],[[8479,4236],[0,48]],[[8521,4300],[-1,-47]],[[8520,4253],[0,-17]],[[8520,4236],[-41,0]],[[9304,4272],[-9,-8],[0,-3],[-3,-1],[-3,-11],[0,-5],[-5,-11],[-3,-7],[-3,-2]],[[9278,4224],[-4,-3],[-5,12],[-7,2],[3,19],[-20,-2]],[[9120,4237],[-3,2],[-10,-3],[-1,-4]],[[9106,4232],[-6,2],[-1,-13],[-9,0],[-7,-1]],[[9083,4220],[-2,0],[-10,20],[-2,1],[0,2],[-1,1],[0,2],[-6,3],[-2,7],[-1,0],[-4,7],[-1,2],[-1,8],[-5,2],[-4,11],[0,4],[-1,0],[0,6]],[[9043,4296],[-2,13]],[[9041,4309],[59,2],[8,9]],[[9108,4320],[5,-1]],[[9113,4319],[7,-37],[12,-18],[7,-3],[-1,0],[9,-2]],[[9147,4259],[-14,-23],[-5,-1]],[[9128,4235],[-2,0],[-6,2]],[[7832,4270],[-27,0],[0,16]],[[9113,4319],[54,-10]],[[9161,4279],[-3,-15]],[[9158,4264],[-8,0],[-3,-5]],[[7976,4235],[-16,-1]],[[7960,4234],[0,17],[-19,0]],[[7941,4251],[-2,65]],[[7939,4316],[21,2]],[[7960,4318],[42,0]],[[8002,4265],[-9,1],[-7,-5],[0,-11],[-10,0],[0,-15]],[[7911,4316],[28,0]],[[7941,4251],[-2,-1],[0,-15],[-10,0]],[[7929,4235],[-41,0]],[[7888,4235],[0,34]],[[6125,4204],[-89,0],[0,51]],[[8360,4308],[0,-49]],[[8360,4259],[-10,-2]],[[8350,4257],[-21,0],[0,5],[-10,-1]],[[8319,4261],[-1,30]],[[8318,4291],[0,17]],[[8318,4308],[42,0]],[[8397,4286],[0,-26]],[[8397,4260],[-37,-1]],[[8360,4308],[37,-3]],[[9408,4275],[-40,-9]],[[7235,4280],[0,-17],[-16,-1],[0,-1],[-14,0],[-1,-2],[-4,0],[0,-3],[-16,0],[0,24]],[[8633,4216],[-15,0]],[[8618,4216],[-1,44]],[[8617,4260],[0,26]],[[8617,4286],[29,17],[5,-3]],[[8659,4257],[-8,0],[-1,-15],[-9,0],[0,-10],[-8,0],[0,-16]],[[7691,4236],[-21,0]],[[7670,4236],[0,66]],[[7710,4302],[0,-66]],[[7710,4236],[-19,0]],[[7464,4301],[0,-65]],[[7464,4236],[-21,0]],[[7443,4236],[-44,0]],[[7399,4236],[2,0],[0,4],[-4,2]],[[7397,4242],[-1,2],[1,5],[-3,13],[3,1],[0,-3],[2,2],[-5,8],[0,11]],[[7794,4286],[0,-50]],[[7794,4236],[-21,0]],[[7773,4236],[-19,0]],[[7754,4236],[0,66]],[[7649,4236],[-21,0]],[[7628,4236],[0,64]],[[7670,4236],[-21,0]],[[7586,4302],[0,-66]],[[7586,4236],[-19,0]],[[7567,4236],[-21,0]],[[7546,4236],[0,65]],[[7628,4236],[-21,0]],[[7607,4236],[-21,0]],[[7754,4236],[-23,0]],[[7731,4236],[-21,0]],[[7504,4301],[0,-65]],[[7504,4236],[-19,0]],[[7485,4236],[-21,0]],[[7546,4236],[-21,0]],[[7525,4236],[-21,0]],[[8551,4293],[15,-7]],[[8566,4286],[5,0],[2,-26]],[[8573,4260],[-2,-6]],[[8571,4254],[-51,-1]],[[8779,4300],[2,-1]],[[8781,4299],[-2,-69]],[[8779,4230],[-42,1]],[[8737,4231],[0,40]],[[8737,4300],[42,0]],[[8781,4299],[6,-2],[0,2],[2,0],[1,-2],[26,-1],[0,1],[11,2]],[[8827,4239],[-9,-20]],[[8818,4219],[-4,7],[-11,0],[0,4],[-24,0]],[[8281,4299],[0,-9]],[[8281,4290],[0,-51],[-1,0]],[[8280,4239],[-35,0]],[[8245,4239],[0,51]],[[8245,4290],[0,7],[36,2]],[[8479,4236],[-32,0]],[[8447,4236],[0,49],[-9,1]],[[9083,4220],[0,-6]],[[9083,4214],[-17,-12],[-16,-4],[-6,16],[2,2],[-2,1],[-7,8],[-7,0],[-3,8],[-1,-1],[0,8],[-10,-1],[0,16],[-3,-4],[-1,-5],[0,-1],[-1,1],[-2,-4],[1,-2],[-1,-4],[-2,0],[-1,-2],[-3,1]],[[9003,4235],[-5,11]],[[9007,4295],[36,1]],[[9672,4286],[3,8],[1,-10],[-2,-1],[6,-2],[2,-10],[-22,-2],[-4,-7],[-7,10],[7,1],[0,-7],[3,13],[7,13],[6,3],[0,-9]],[[8084,4226],[-30,0]],[[8086,4244],[0,-18],[-2,0]],[[4925,4239],[0,-5],[0,-10],[-4,-3],[4,-7],[0,-7],[-2,-10],[0,-2],[-5,-8],[-5,7],[-4,-2],[-2,-1],[3,-9],[3,-9],[1,-6],[-1,-4],[1,-10],[0,-138]],[[4914,4015],[-42,0]],[[4872,4015],[-8,19],[-23,29],[0,15],[-4,20],[25,104],[-3,28],[7,34],[1,29]],[[7308,4293],[0,-79]],[[7308,4214],[-42,0]],[[7266,4214],[0,65]],[[7347,4281],[5,-10],[2,-9],[3,-5],[-1,-8],[3,-8]],[[7359,4241],[2,-9],[-2,-11],[2,-7]],[[7361,4214],[-4,-1],[0,-6],[-9,0]],[[7348,4207],[0,7],[-40,0]],[[8566,4286],[17,6],[15,-12],[19,6]],[[8617,4260],[-44,0]],[[8319,4261],[-1,-20],[-2,0],[0,-26]],[[8316,4215],[-23,0]],[[8293,4215],[-7,0],[0,8],[-6,0],[0,16]],[[8281,4290],[14,0],[23,1]],[[8240,4290],[5,0]],[[8245,4239],[-41,0]],[[8204,4239],[0,12]],[[8204,4251],[5,5],[6,1],[4,5],[2,4],[4,15],[5,8],[10,1]],[[8898,4266],[0,-51]],[[8898,4215],[-2,-1],[-2,-3],[-1,0],[-2,-5],[-2,1],[-1,-2],[-3,0],[-3,-5],[-1,3],[1,0],[0,2],[-2,-2],[0,2],[-1,0],[0,2],[-1,-4],[-3,-1],[0,2],[-1,1],[-2,-3],[-1,0],[-3,-2],[-1,2],[-5,-2],[-1,3],[3,0],[0,2],[-2,2],[1,4],[-3,1],[-3,4],[0,3],[-1,4],[0,13],[-2,3]],[[6795,4246],[0,-32],[-2,0],[0,-9]],[[6793,4205],[-2,-1]],[[6791,4204],[-65,1]],[[6726,4205],[1,9],[-1,66]],[[8447,4236],[-9,0]],[[8438,4236],[0,8],[-10,0],[0,10],[-31,0]],[[8397,4254],[0,6]],[[6003,4275],[0,-3],[0,-2],[-1,-6],[0,-5],[-2,-6],[-2,-1],[-2,-3],[-7,2],[-2,-1],[-1,-7],[-7,-3],[-2,1],[-3,5],[-1,-2],[-1,2],[-4,0],[-3,-4],[-2,-2],[0,-8]],[[5963,4232],[-4,0],[-6,3],[-16,1],[-30,-16]],[[5907,4220],[0,1]],[[7843,4219],[-38,1]],[[7805,4220],[0,16],[-11,0]],[[7832,4270],[-3,-14],[0,-6],[5,-11],[2,-3],[3,-3],[2,-8],[2,-6]],[[9221,4236],[0,-2],[-3,-5]],[[9218,4229],[-2,2],[-2,0],[-2,-5],[-1,0],[-4,-4],[0,-7],[2,-4],[1,-6],[-10,-4],[-1,-4],[-13,-10]],[[9186,4187],[-2,-1],[-16,10]],[[9168,4196],[-3,19],[0,17],[-4,-1],[-3,12],[0,21]],[[7266,4214],[-40,0]],[[7226,4214],[-2,22]],[[7224,4236],[2,5],[4,4],[1,6],[4,3],[3,7],[7,5]],[[7397,4242],[-38,-1]],[[7142,4281],[0,-67]],[[7142,4214],[-40,0]],[[7184,4280],[0,-67]],[[7184,4213],[-40,1]],[[7144,4214],[-2,0]],[[7010,4214],[0,-67]],[[7010,4147],[-51,0]],[[6959,4147],[-42,0]],[[6917,4147],[0,58]],[[6917,4205],[0,9],[-2,0],[0,66]],[[7224,4236],[-6,-12],[-6,-2],[-8,-9],[-2,-6],[-6,-7],[-3,-3],[-2,-4],[-3,-8],[-4,-3]],[[7184,4182],[0,22],[0,9]],[[9723,4264],[3,2],[-2,4],[-6,-9],[5,11],[-1,8],[7,-19],[0,-7],[-12,-3],[-10,5],[0,5],[10,-2],[6,5]],[[6917,4205],[-72,-1]],[[6845,4204],[0,42]],[[6726,4205],[-17,0]],[[6709,4205],[-44,0]],[[8935,4187],[-39,3]],[[8896,4190],[2,25]],[[8943,4243],[-5,0],[-3,-12],[0,-44]],[[6019,4235],[-10,-5],[-2,-4],[0,-4],[-4,-2],[-1,0],[-6,-4],[-3,-2],[0,-4],[-5,-7],[0,-1],[1,-5],[5,0],[-1,-10],[2,3],[1,-9],[0,-6],[-1,-3],[0,-5],[-1,-2],[-1,-1],[-5,9],[-2,0],[-2,-3]],[[5984,4170],[-2,3],[-1,4],[-2,0],[-2,0],[-3,3]],[[5974,4180],[-2,2],[0,2],[-2,6],[-2,6],[0,1],[2,0],[0,3],[-2,7],[-2,4],[-1,8],[-2,13]],[[5008,4240],[4,-6],[0,-12],[-8,-3],[0,-13],[-7,-10],[0,-12],[-3,-12],[-1,-10],[-5,-5],[0,-2],[0,-4],[0,-4],[-2,-2],[1,-9],[3,-10],[0,-3],[-3,0],[-4,-5],[-2,-1],[0,-4],[-5,-2],[0,-6],[-2,-2],[-2,-5],[-3,0],[-2,-4],[-5,-4],[0,-4],[-4,-8],[0,-11],[2,-3]],[[4960,4064],[2,-1],[3,-4],[1,-10],[-1,-8],[0,-2],[1,-12],[1,-3],[0,-5],[0,-10]],[[4967,4009],[-53,0],[0,6]],[[9376,4204],[0,13],[0,16],[-3,9],[-4,10],[0,3],[2,6],[-3,5]],[[9398,4204],[-12,-21]],[[9386,4183],[-4,1],[-2,3],[-5,5]],[[9375,4192],[1,5],[0,7]],[[9333,4242],[-12,-22]],[[9321,4220],[-12,-23],[0,-3],[-1,-7],[-5,-1],[-3,1],[-3,0]],[[9297,4187],[-17,34]],[[9280,4221],[-2,0],[0,3]],[[8680,4187],[0,15],[-4,0]],[[8676,4202],[1,55]],[[8704,4272],[-1,-70]],[[8703,4202],[-2,0],[-1,-15],[-20,0]],[[8737,4231],[0,-29],[-7,0]],[[8730,4202],[-27,0]],[[7888,4235],[0,-18]],[[7888,4217],[-31,2]],[[7857,4219],[-14,0]],[[9376,4204],[-29,25]],[[9347,4229],[-2,3]],[[8002,4225],[-16,0],[2,10],[-12,0]],[[9168,4196],[-7,-13],[-2,-16],[-7,-5]],[[9152,4162],[-2,11],[-8,-1],[-1,2],[1,3],[-1,5],[-2,0]],[[9139,4182],[0,15],[-2,5],[-3,14],[-3,1],[-3,18]],[[8150,4239],[0,-32]],[[8150,4207],[-54,-2]],[[8096,4205],[-10,0]],[[8086,4205],[-2,21]],[[8350,4257],[-1,-15],[-2,-1],[0,-34]],[[8347,4207],[-27,-1]],[[8320,4206],[-4,1],[0,8]],[[8204,4239],[0,-49]],[[8204,4190],[-5,0],[0,-13],[-10,-1],[0,-19]],[[8189,4157],[-16,0]],[[8173,4157],[0,89]],[[8609,4203],[-26,0]],[[8583,4203],[-10,1]],[[8573,4204],[-2,50]],[[8618,4216],[-9,0],[0,-13]],[[8397,4254],[0,-52]],[[8397,4202],[0,-8]],[[8397,4194],[-26,-1]],[[8371,4193],[-24,-1]],[[8347,4192],[0,15]],[[8676,4202],[-40,1]],[[8636,4203],[-4,0],[1,13]],[[6131,4204],[0,-34]],[[6131,4170],[-4,1],[-5,-4],[-14,7],[-7,-2],[-2,-7],[-2,-1],[-3,1],[-2,-2],[-5,-1],[-2,0],[-3,0],[-2,-2],[-5,0],[0,2],[-4,-5],[-3,0],[-5,0],[-4,-6],[-3,0],[-2,2],[-2,2],[-2,-5],[0,-6]],[[6050,4144],[-3,-1],[-2,-15],[-2,-1],[-5,-2],[-3,1],[-2,2],[-2,0],[-3,-7],[-11,6],[-5,7],[-4,2],[-3,8],[-2,-1],[-1,-2],[-2,-3],[-2,-7],[-7,1]],[[5991,4132],[-4,10],[1,5],[-4,8],[0,6],[-2,1],[0,5],[2,3]],[[9064,4177],[-30,-23]],[[9034,4154],[-1,-1],[-6,0],[-4,3],[-6,-2],[-6,-8],[-15,11]],[[8996,4157],[-2,0],[-20,-1]],[[8974,4156],[-1,4],[2,2],[1,5],[3,3],[2,7],[3,-1],[1,4],[0,2],[1,0],[2,8],[1,-3],[4,8],[-2,2],[1,0],[0,1],[2,-2],[1,4],[0,-5],[1,-1],[3,3],[-1,4],[3,3],[0,2],[-1,5],[2,2],[-2,3],[-2,0],[1,4],[-2,3],[0,3],[1,0],[1,3],[1,-3],[1,4],[1,0],[0,3],[1,2]],[[9083,4214],[-4,-9],[-5,-11],[-10,-17]],[[8974,4156],[1,-3]],[[8975,4153],[-39,0],[-2,1]],[[8934,4154],[1,33]],[[9280,4221],[-3,-4],[-3,-6],[-4,-4],[-4,-2],[-2,-4],[1,-3]],[[9265,4198],[-11,-11],[-4,-9],[-17,-8]],[[9233,4170],[-1,7],[-7,18],[3,2],[0,3],[4,2],[-11,19],[0,5],[-3,3]],[[8548,4202],[-28,0]],[[8520,4202],[0,34]],[[8573,4204],[-2,-1],[-23,-1]],[[8438,4236],[0,-34],[-5,0]],[[8433,4202],[-36,0]],[[7960,4234],[0,-33]],[[7960,4201],[-31,1]],[[7929,4202],[0,33]],[[8150,4157],[0,50]],[[8173,4157],[-23,0]],[[6845,4204],[-52,1]],[[9347,4229],[-5,-23],[2,-2],[0,-2],[6,-1],[1,0],[3,-3],[-2,-6],[3,-2],[0,-6],[2,-6],[-2,-1],[1,-5],[-1,-2]],[[9355,4170],[-13,13]],[[9342,4183],[0,4],[-1,4],[1,4],[-2,8],[-6,3],[-3,-1],[-3,2],[0,5],[-2,2],[-2,0],[-1,-3],[-1,2],[0,7],[-1,0]],[[7399,4217],[-9,-1],[-5,1],[-2,0],[-3,-2],[-7,-9],[-2,-1],[-7,6],[-3,3]],[[7399,4236],[2,-10],[-2,-9]],[[5113,4101],[-17,-2]],[[5096,4099],[-4,0],[-1,-1],[-7,0],[-5,3],[-4,-4],[-8,1],[-9,-4],[-14,-5],[-9,-5],[-3,1],[-10,-2],[-6,0],[-4,1],[-5,4],[-12,-10],[-5,0],[-4,5],[-10,-4],[-7,-9],[-7,3],[-2,-5],[0,-4]],[[5113,4240],[0,-54],[1,0],[-1,-85]],[[5232,3961],[-1,0],[0,-1],[-11,0]],[[5220,3960],[0,5],[1,0],[1,4],[0,21],[0,8],[0,4],[-2,2],[0,2],[-2,1],[0,1],[-1,0],[0,2],[0,5],[-2,0],[0,2],[-1,0],[-1,8],[-2,0],[0,4],[-1,0],[0,5],[-2,0],[0,2],[-7,0],[0,1],[-2,1],[0,2],[-2,0],[-1,4],[-2,0],[0,1],[-2,2],[0,2],[-2,0],[0,4],[-1,1],[0,3],[-2,0],[0,3],[-4,3],[-3,0],[0,4],[-4,0],[0,1],[-3,0],[0,2],[0,3],[-7,0],[0,2],[-3,0],[0,-5],[-2,0],[0,-3],[-3,-1],[0,-3],[-2,0],[0,-3],[-2,0],[0,-7],[-2,0],[0,-3],[-3,0],[0,5],[-2,0],[0,2],[-5,0],[0,2],[-4,0],[0,5],[-1,35],[-24,2]],[[9120,4237],[0,-6],[0,-7],[-2,-12],[-2,-5],[1,-5],[-2,-7],[9,3],[3,0],[2,-1],[1,0],[3,-2],[3,-1],[0,-9],[1,-3],[2,0]],[[9152,4162],[-28,-20],[0,-1]],[[9124,4141],[-1,1],[-7,-5],[-2,1],[-1,-3],[-2,-1],[-1,2],[-5,-5],[-2,0],[-1,2]],[[9102,4133],[0,4]],[[9102,4137],[2,3],[2,2],[4,11],[-1,9],[2,8],[3,6],[0,6],[-2,1]],[[9112,4183],[-2,4],[-2,10],[2,10],[-1,10],[0,4],[-2,2],[-1,9]],[[8273,4190],[-28,0]],[[8245,4190],[0,49]],[[8293,4215],[0,-9]],[[8293,4206],[-20,0],[0,-16]],[[8854,4239],[0,-98]],[[8854,4141],[-40,2]],[[8814,4143],[-1,34]],[[8813,4177],[-1,28],[6,14]],[[8875,4116],[-2,2],[0,-2],[-1,0],[-5,6],[-1,3],[0,3],[-1,0],[-1,7],[-2,0],[-1,5],[-2,0],[-1,2],[-1,2],[-3,-3]],[[8896,4190],[0,-26],[-21,-48]],[[8245,4190],[-10,0]],[[8235,4190],[-31,0]],[[8520,4202],[-3,0],[0,-7],[-2,0],[0,-9],[-3,0],[0,-16]],[[8512,4170],[-33,0]],[[8479,4170],[0,20]],[[8479,4190],[0,46]],[[7443,4187],[-39,-1]],[[7404,4186],[0,15],[-3,4],[0,7],[-2,5]],[[7443,4236],[0,-49]],[[8479,4190],[-11,-3],[0,-1],[-10,0],[0,-9],[-20,0]],[[8438,4177],[0,10],[-5,0],[0,15]],[[7485,4187],[-42,0]],[[7485,4236],[0,-49]],[[7525,4186],[-40,1]],[[7525,4236],[0,-50]],[[7607,4186],[-40,0]],[[7567,4186],[0,50]],[[7607,4236],[0,-50]],[[7731,4186],[-40,0]],[[7691,4186],[0,50]],[[7731,4236],[0,-50]],[[7773,4236],[0,-51]],[[7773,4185],[-42,1]],[[7567,4186],[-42,0]],[[7805,4220],[0,-50],[-4,0]],[[7801,4170],[-28,0]],[[7773,4170],[0,15]],[[7226,4214],[0,-67]],[[7226,4147],[-42,0]],[[7184,4147],[0,35]],[[7649,4186],[-42,0]],[[7649,4236],[0,-50]],[[7691,4186],[-42,0]],[[5928,4162],[-21,58]],[[5974,4180],[-1,-3],[-6,-3],[-9,-2],[-4,5],[0,13],[-3,0],[-23,-28]],[[7929,4152],[-41,-1]],[[7888,4151],[0,66]],[[7929,4202],[0,-50]],[[8012,4192],[-38,-1]],[[7974,4191],[3,3],[0,7],[-17,0]],[[9112,4183],[-7,-1],[-3,1],[-5,-2],[-1,1],[-2,-5],[-4,5],[-25,-12]],[[9065,4170],[-1,7]],[[9233,4170],[-12,-6]],[[9221,4164],[-7,-2],[-7,-6]],[[9207,4156],[-14,18],[-7,13]],[[8779,4230],[0,-45]],[[8779,4185],[-25,0],[0,7],[-7,0],[0,-7],[-17,1]],[[8730,4186],[0,16]],[[8813,4177],[-32,0]],[[8781,4177],[-2,8]],[[9375,4192],[-2,-9]],[[9373,4183],[-4,-17]],[[9369,4166],[-4,1],[0,5],[-1,0],[-5,-8],[-1,-3],[-3,-1],[-1,2]],[[9354,4162],[1,8]],[[8025,4158],[-2,34]],[[8086,4205],[0,-71],[-19,-1]],[[8067,4133],[-11,0],[0,25],[-31,0]],[[9287,4163],[-2,-1],[-1,-5],[-2,-1],[-2,-6],[-4,-5],[-3,-1],[-4,-6],[-2,-3],[-3,-2],[-5,-8]],[[9259,4125],[0,7]],[[9259,4132],[0,4],[-1,2],[2,4],[-2,3],[2,8],[-1,4],[2,5],[4,0],[3,3],[1,7],[-1,3],[4,2],[0,4],[-2,2],[0,3],[-5,12]],[[9297,4187],[-3,-5],[0,-5],[-1,-4],[-3,-6],[0,-2],[-2,0],[-1,-2]],[[5935,4103],[-2,0],[-1,-4],[3,-20],[-2,-4],[0,-6],[0,-5],[2,-1],[0,-5],[2,-3],[1,-7],[0,-2],[-3,-2],[0,-5],[2,-6],[-2,-8],[0,-4],[0,-4]],[[5935,4017],[-5,-6],[0,-5],[-7,-2],[-2,0],[-2,-7],[-97,1],[-2,-2],[-4,2],[-7,-2],[-2,1],[-40,1]],[[5767,3998],[0,38]],[[5928,4162],[5,-15],[2,-11],[0,-8],[0,-25]],[[9342,4183],[-2,3],[-3,0],[-1,-1],[0,-4],[2,-4],[-5,-15],[0,-2],[1,-3],[-1,-3]],[[9333,4154],[-9,-12],[0,-1]],[[9324,4141],[-4,-4],[-1,4],[2,6],[-4,8],[-1,2],[-15,-6]],[[9301,4151],[-4,3],[-5,1],[0,2],[-5,6]],[[7843,4219],[-2,-23],[-2,-5],[-5,-9],[-3,-8],[-2,-14],[-2,-10]],[[7827,4150],[-3,2],[-4,-1],[-5,6],[-2,0],[0,4],[-7,3],[-5,6]],[[7819,4137],[5,3],[3,4],[0,6]],[[7857,4219],[0,-82]],[[7857,4137],[-11,0]],[[7846,4137],[-27,0]],[[7888,4135],[-31,2]],[[7888,4151],[0,-16]],[[7404,4186],[0,-5],[-1,-4],[0,-12]],[[7403,4165],[-55,-1]],[[7348,4164],[0,43]],[[8636,4203],[0,-61]],[[8636,4142],[-9,0],[0,-19]],[[8627,4123],[-9,-1]],[[8618,4122],[0,31],[-5,0],[0,12],[-2,2],[0,36],[-2,0]],[[8320,4206],[0,-64]],[[8320,4142],[-20,-1]],[[8300,4141],[-7,0],[0,65]],[[7266,4147],[0,67]],[[7308,4214],[0,-67]],[[7308,4147],[-42,0]],[[7348,4116],[-40,-1]],[[7308,4115],[0,32]],[[7348,4164],[0,-48]],[[7083,4142],[0,4],[-2,1],[0,67]],[[7144,4214],[0,-67]],[[7144,4147],[0,-2]],[[7144,4145],[-16,-5],[-24,-2]],[[7104,4138],[-9,3],[-5,1],[-7,0]],[[7083,4142],[-21,2]],[[7062,4144],[-4,2],[-26,0]],[[7032,4146],[-22,1]],[[7266,4147],[-40,0]],[[7184,4147],[-40,0]],[[8337,4142],[-17,0]],[[8347,4192],[0,-50],[-10,0]],[[8150,4157],[0,-49]],[[8150,4108],[-36,-1]],[[8114,4107],[-16,1],[-2,97]],[[8300,4141],[0,-16]],[[8300,4125],[-27,0]],[[8273,4125],[0,65]],[[8114,4107],[0,-17]],[[8114,4090],[-49,-1]],[[8065,4089],[2,44]],[[6216,4055],[0,87]],[[6216,4142],[0,62]],[[6372,4205],[0,-77],[-5,0],[0,-11],[-4,0],[-2,-61]],[[6361,4056],[-145,-1]],[[6709,4205],[0,-59],[-2,0],[0,-33]],[[6707,4113],[-49,0],[0,-99]],[[6658,4014],[-75,0]],[[6583,4014],[0,10],[-1,0],[-1,-7],[-5,-2]],[[6576,4015],[-1,48]],[[6575,4063],[1,16],[9,1],[0,124]],[[6431,4095],[-1,3],[1,10],[-3,11],[-2,14],[3,4],[1,6],[1,4],[0,11],[2,8],[0,1],[-2,6],[0,4],[-1,3],[-6,0],[-1,2],[-6,2],[0,6],[-3,3],[-2,4],[2,5],[-2,2]],[[6472,4205],[1,-11],[0,-4],[5,-6],[0,-2],[1,-6],[3,-5],[3,-1],[2,-10],[2,-3],[10,-35],[0,-9],[4,-1],[0,-7]],[[6503,4105],[-4,-2],[0,-14],[-3,-3],[0,-3],[-2,-2],[-2,2],[-5,0],[-3,-4],[-12,-2],[-6,3],[-3,-1],[-4,2],[-3,-2],[-5,1],[-6,9],[-3,-6],[-5,1],[-6,11]],[[6845,4147],[0,10]],[[6845,4157],[0,47]],[[6917,4147],[-9,0]],[[6908,4147],[-63,0]],[[6791,4098],[-12,-1]],[[6779,4097],[-60,0]],[[6719,4097],[0,16],[-12,0]],[[6791,4204],[0,-48]],[[6791,4156],[0,-9],[-2,0],[2,-49]],[[6845,4157],[-54,-1]],[[6431,4095],[0,-17],[2,0],[0,-79]],[[6433,3999],[-35,0]],[[6398,3999],[-2,31]],[[6396,4030],[0,26],[-35,0]],[[6575,4063],[-25,0],[-5,0],[-25,0]],[[6520,4063],[-1,3],[-2,11],[-4,3],[-3,4],[-2,11],[0,7],[-5,3]],[[6216,4142],[-5,-1],[0,4],[-3,0],[-2,20],[-2,0],[0,13],[-19,0],[0,-12],[-7,-9],[-3,3],[0,7],[-1,5],[-1,1],[-2,-2],[-11,-4],[-6,0],[-4,-4],[-2,0],[-2,-1],[-5,0],[-8,5]],[[6133,4167],[-2,3]],[[8583,4203],[-1,-52]],[[8582,4151],[-12,0],[1,-4]],[[8571,4147],[-23,0]],[[8548,4147],[0,55]],[[5539,4204],[0,-351]],[[5539,3853],[-69,0],[-38,-12]],[[5432,3841],[0,7],[0,8],[0,2],[3,2],[3,8],[-3,18],[0,6],[0,4],[4,-1],[2,2],[0,4],[4,2],[0,3],[-1,5],[5,8],[0,4],[3,-1],[4,3],[2,-3],[2,8],[0,7],[2,5],[-2,4],[0,10],[0,9],[-2,5],[0,12],[2,6],[0,9],[-1,7],[-3,5],[-3,6]],[[5453,4015],[22,101]],[[5608,4039],[0,-18],[-3,-2],[3,-14],[2,-19],[0,-6],[0,-12],[-5,-7],[4,-21],[0,-3],[-4,-7],[3,-3],[-5,-16],[-2,-5],[0,-53]],[[5601,3853],[-62,0]],[[8592,4121],[0,15],[-2,1],[0,5],[2,0],[0,9],[-10,0]],[[8618,4122],[-5,-3],[-21,2]],[[8680,4187],[0,-45]],[[8680,4142],[-44,0]],[[8438,4177],[0,-7],[-5,1],[0,-26]],[[8433,4145],[-5,0]],[[8428,4145],[0,9],[-32,0]],[[8396,4154],[1,40]],[[8548,4147],[-17,0],[0,-2],[-11,0]],[[8520,4145],[-1,0],[0,2],[-5,0],[0,23],[-2,0]],[[8709,4137],[-11,1],[0,3],[-2,0],[-1,-3],[-15,-2]],[[8680,4136],[0,6]],[[8730,4186],[0,-33]],[[8730,4153],[-10,0],[0,-1],[-4,-1],[0,-14],[-7,0]],[[7939,4113],[0,14],[0,9],[-10,0],[0,16]],[[7974,4191],[-2,-10],[-5,-10],[0,-6],[2,-8]],[[7969,4157],[0,-2],[-2,-4],[0,-5],[-4,-4],[0,-5],[-5,-5],[0,-7],[0,-2],[-12,-4],[-7,-6]],[[9259,4132],[-13,-14]],[[9246,4118],[-6,7],[1,8],[-4,9],[-4,-4],[0,4],[-3,3],[-2,11],[-2,-3],[-5,3],[0,8]],[[5453,4015],[-102,-1],[-50,2]],[[9207,4156],[-11,-12]],[[9196,4144],[-10,-7],[-1,-12],[-4,1],[-2,-3],[-5,-1],[-3,-4],[-11,-4],[-3,0],[-10,-6]],[[9147,4108],[-9,13]],[[9138,4121],[-13,16],[-1,4]],[[8396,4154],[0,-28]],[[8396,4126],[-25,0]],[[8371,4126],[0,67]],[[8371,4126],[-11,0]],[[8360,4126],[-23,1]],[[8337,4127],[0,15]],[[8025,4158],[-6,0],[0,-16],[-5,-1],[0,-6],[-5,0],[0,-3],[-4,0],[0,-4],[-12,0]],[[7993,4128],[0,5],[-5,0],[0,24],[-19,0]],[[8779,4137],[-3,-4],[-4,0],[-2,-1],[-3,-7]],[[8767,4125],[-6,0],[0,3],[-11,0]],[[8750,4128],[1,9],[-7,0],[0,16],[-14,0]],[[8781,4177],[-2,-40]],[[9386,4183],[-1,-9],[-12,-7]],[[9373,4167],[0,5],[2,4],[1,6],[-3,1]],[[8236,4157],[-1,33]],[[8273,4125],[-18,-1]],[[8255,4124],[-1,23],[-13,0],[0,10],[-5,0]],[[8236,4157],[-15,0],[-2,-3],[-1,-4],[1,-7],[-1,0],[0,-19]],[[8218,4124],[-29,0]],[[8189,4124],[0,33]],[[5991,4132],[-2,-6],[-1,-1]],[[5988,4125],[-1,-2],[-3,0],[-3,-5],[-9,-3],[-4,-9],[-2,-1],[-1,-2],[-4,1],[-5,-9],[-3,-1],[-6,8],[-1,0],[-1,-3],[-5,-1],[0,1],[-1,5],[-4,-1]],[[8479,4170],[0,-33]],[[8479,4137],[-20,0],[0,3],[-10,0],[-2,5],[-14,0]],[[8919,4088],[-2,6],[-3,1],[-1,-7],[-1,-1],[-3,0],[-3,-3],[-1,2],[1,3],[-3,-1],[0,5],[-4,0],[-4,4],[-2,-3],[-1,4],[-1,0],[-2,3],[-1,1],[-1,1],[-3,0],[-2,-4],[-1,2],[-1,2],[-2,0],[0,3],[-3,0],[0,6],[0,4]],[[8934,4154],[-3,-20],[-12,-46]],[[7443,4187],[0,-32],[2,0],[0,-29]],[[7445,4126],[-35,0]],[[7410,4126],[1,7],[-1,4],[-11,17],[4,11]],[[7485,4187],[0,-32],[1,-1],[0,-30]],[[7486,4124],[-26,1]],[[7460,4125],[-15,1]],[[7525,4124],[-14,0]],[[7511,4124],[-25,0]],[[7525,4186],[0,-62]],[[7567,4124],[-19,-1]],[[7548,4123],[-23,1]],[[7567,4186],[0,-62]],[[9418,4141],[-29,-14]],[[9389,4127],[1,1],[-1,5],[-2,0]],[[9387,4133],[0,4]],[[9387,4137],[3,0],[0,3],[1,0],[0,14],[2,1],[0,2],[0,1],[-4,4],[0,2]],[[9389,4164],[0,12],[14,10],[10,-4]],[[9413,4182],[3,-4],[2,-37]],[[7731,4128],[-16,0]],[[7715,4128],[-24,-1]],[[7691,4127],[0,59]],[[7731,4186],[0,-58]],[[7773,4127],[-2,4],[-17,0]],[[7754,4131],[-23,-3]],[[7773,4170],[0,-43]],[[7607,4125],[-19,-1]],[[7588,4124],[-21,0]],[[7607,4186],[0,-61]],[[7649,4126],[-23,-1]],[[7626,4125],[-19,0]],[[7649,4186],[0,-60]],[[9356,4150],[-4,-7]],[[9352,4143],[-3,1],[-2,3],[-6,4],[-3,0],[-5,3]],[[9354,4162],[-2,-5],[0,-2],[3,0],[1,-5]],[[7691,4127],[-7,0]],[[7684,4127],[-35,-1]],[[9102,4137],[-1,3],[-4,-3],[-4,6],[-5,1],[-1,3],[-4,-3],[-14,3]],[[9069,4147],[-4,3],[0,20]],[[9373,4167],[-7,-20]],[[9366,4147],[0,9],[3,10]],[[6216,4055],[0,-106]],[[6216,3949],[0,-27]],[[6216,3922],[-3,0],[0,-1],[0,-1],[-2,0],[0,-2],[0,-8],[-2,0],[0,-1],[-80,1]],[[6129,3910],[0,7],[-2,6],[2,3],[-2,4],[2,2],[0,5],[3,5],[-1,3],[2,2],[0,3],[-2,1],[3,7],[-1,3],[1,1],[2,-2],[0,2],[2,3],[0,5],[0,6],[2,-2],[1,2],[0,-1],[2,1],[-2,3],[-8,0]],[[6133,3979],[0,188]],[[8779,4105],[0,32]],[[8814,4143],[-1,-10],[-19,-27]],[[8794,4106],[-15,-1]],[[9029,4086],[-2,-1],[-4,-1],[-3,1],[-1,4],[-2,1],[-1,7],[3,6],[4,5],[-3,11],[2,3],[5,12],[7,10],[0,1],[0,-1],[-1,3],[1,0],[-1,3],[3,2],[-2,2]],[[9069,4147],[-18,-15],[2,-5],[-12,-12],[0,-1],[0,-6],[-12,-22]],[[6054,3979],[0,16],[-4,0]],[[6050,3995],[0,149]],[[6133,3979],[-51,-1],[0,1],[-28,0]],[[9366,4147],[-11,-10],[1,13]],[[7798,4085],[-2,3],[-2,0],[0,2],[-3,3],[0,5],[-1,0],[1,4],[-4,1],[-2,3],[-3,5],[0,6],[-7,2],[2,6],[-4,2]],[[7819,4137],[-4,0],[-10,-9],[-4,-5],[0,-4],[3,-3],[1,-5],[-1,-12],[1,-9],[-1,-2],[-3,0],[-3,-3]],[[8520,4108],[-9,0]],[[8511,4108],[0,4],[-32,4]],[[8479,4116],[0,21]],[[8520,4145],[0,-30],[0,-7]],[[9387,4137],[-7,3]],[[9380,4140],[-1,5],[-2,0],[-6,11]],[[9371,4156],[5,10],[13,-2]],[[9389,4127],[-16,-6],[14,12]],[[7410,4126],[0,-7],[3,-2]],[[7413,4117],[-30,-1]],[[7383,4116],[-35,0]],[[9232,4095],[-4,4]],[[9228,4099],[-32,45]],[[9246,4118],[-7,-11],[-7,-12]],[[9301,4151],[0,-5],[0,-2],[1,-2],[-2,-2],[1,-3],[0,-2],[2,-1],[-2,-8],[2,-3],[-3,-5],[-3,-10],[-2,3],[4,-16]],[[9299,4095],[-5,-2],[0,-6],[-5,-1],[1,-7],[-7,-1]],[[9283,4078],[-2,2],[-2,10],[-2,3],[-2,-3],[-3,5],[-2,7],[1,12],[-1,4],[-4,5],[-6,-2],[-1,2],[0,2]],[[9413,4182],[5,9],[19,-5],[7,10],[11,4],[35,2],[28,32],[3,-1],[-7,-7],[-5,-15],[-12,-13],[-5,-11],[12,3],[16,20],[8,2],[11,-7],[14,16],[5,-1],[-5,-8],[-54,-42],[-81,-29]],[[9430,4135],[0,1],[5,0],[17,7],[16,13],[8,5],[2,0],[0,-1],[-18,-13],[-6,-5],[-20,-8],[-4,1]],[[8065,4089],[2,-21]],[[8067,4068],[-11,0]],[[8056,4068],[-52,0]],[[8004,4068],[-11,0],[0,10]],[[7993,4078],[0,50]],[[9324,4141],[3,-4],[1,3],[3,0],[0,-3],[-3,-6],[-4,-4]],[[9324,4127],[0,-2],[-3,-2],[-2,-5],[3,-3],[0,-3],[2,-1],[0,-5],[-4,-8],[-6,-4],[-2,-8],[-2,-2]],[[9310,4084],[0,3],[-2,1],[-2,-2],[-5,-1],[-2,10]],[[8255,4124],[-1,-26]],[[8254,4098],[-29,1]],[[8225,4099],[0,25],[-7,0]],[[7993,4078],[-29,-1]],[[7964,4077],[-11,0],[0,21],[-19,1]],[[7934,4099],[3,4],[0,8],[2,2]],[[8996,4157],[-1,-4],[-4,-2],[-1,-5],[-2,0],[-1,-5],[5,-6],[-2,-7],[1,-2],[-2,-5],[1,-3],[2,-2],[2,7],[-1,-15],[3,0],[-1,-5],[-7,-20],[-5,-14]],[[8983,4069],[-3,-6],[-12,10],[-1,-5],[-1,-7],[-5,7],[-2,1],[-8,8]],[[8951,4077],[2,6],[4,2],[-1,9],[1,4],[-1,0],[2,5],[1,11],[3,4],[2,1],[1,5],[2,4],[0,8],[0,1],[3,1],[5,15]],[[8150,4106],[0,2]],[[8189,4124],[0,-18]],[[8189,4106],[-39,0]],[[6845,4147],[0,-50]],[[6845,4097],[-54,1]],[[9029,4086],[4,-21]],[[9033,4065],[-8,-19],[-6,-20]],[[9019,4026],[-6,9],[-14,4],[-4,6]],[[8995,4045],[-9,13],[-3,11]],[[9380,4140],[-7,-5],[4,-8],[-11,-2],[-2,12],[7,19]],[[8951,4077],[-1,-3],[0,-6],[-1,-1],[0,-3],[-1,-1],[0,-4]],[[8948,4059],[-17,0],[-1,2],[-3,-1],[-1,5],[-2,3],[-12,0]],[[8912,4068],[5,15],[2,5]],[[9352,4143],[-4,-16]],[[9348,4127],[-3,0],[-5,-2],[-2,3],[-12,-2],[-2,1]],[[8429,4081],[-33,0]],[[8396,4081],[0,45]],[[8428,4145],[0,-61],[1,-3]],[[8750,4128],[1,-7],[-7,0],[0,-18],[-1,1],[0,-9]],[[8743,4095],[-30,2]],[[8713,4097],[1,26],[-5,-1],[0,15]],[[7909,4049],[-21,1],[0,17]],[[7888,4067],[0,68]],[[7934,4099],[-2,-3],[-3,-7],[-6,-3],[-3,-16],[-2,-6],[-2,-5],[-3,-2],[-4,-8]],[[8592,4121],[-2,-2],[0,-3],[1,0],[-1,-36],[-9,0]],[[8581,4080],[-17,3],[0,12],[-8,0],[0,3]],[[8556,4098],[0,9],[6,1],[0,29],[9,0],[0,10]],[[8556,4098],[-20,1]],[[8536,4099],[0,12],[-16,-3]],[[7266,4080],[0,67]],[[7308,4115],[0,-35]],[[7308,4080],[-42,0]],[[7184,4147],[0,-68]],[[7184,4079],[-40,1]],[[7144,4080],[0,65]],[[7226,4147],[0,-67]],[[7226,4080],[-42,-1]],[[7266,4080],[-40,0]],[[9036,4069],[-3,-4]],[[9102,4137],[-12,-9],[-9,-2],[-1,-3],[-9,-8],[-7,-9],[-14,-11],[-2,-5],[0,-3],[-8,-9],[-4,-9]],[[6908,4080],[0,67]],[[6959,4147],[0,-68]],[[6959,4079],[-49,0]],[[6910,4079],[-2,1]],[[6845,4079],[0,18]],[[6908,4080],[-63,-1]],[[7022,4079],[-9,0]],[[7013,4079],[-51,0]],[[6962,4079],[-3,0]],[[7032,4146],[-1,-48],[-9,0],[0,-19]],[[7062,4079],[-40,0]],[[7062,4144],[0,-65]],[[8479,4116],[-11,0],[0,-10]],[[8468,4106],[-30,0],[0,-20],[-8,0],[-1,-5]],[[7144,4080],[-40,-1]],[[7104,4079],[0,59]],[[6050,3995],[-17,0],[0,7],[-3,0],[1,4],[-2,3],[-3,2],[-3,13],[-4,-2],[2,22],[0,3],[-4,7],[0,6],[-1,4],[-4,4],[-7,2],[-2,-2],[-2,1],[0,7],[-1,4],[-2,3],[-7,1],[-5,14],[1,5],[2,5],[0,6],[0,5],[-1,6]],[[7104,4079],[-42,0]],[[9228,4099],[-14,-36]],[[9214,4063],[0,-2],[-17,-20]],[[9197,4041],[-25,35]],[[9172,4076],[-4,7],[-3,0],[-18,25]],[[8912,4068],[-7,-20],[-2,-2],[-2,-8],[-2,-3],[-3,1],[-2,-6],[-5,-9]],[[8889,4021],[-2,1],[-2,5],[-4,7],[-2,1],[-4,4],[-1,1],[-3,0],[-1,-2],[-2,1],[-5,-10],[-1,1],[-1,-1],[-3,0],[-1,7],[-1,-1],[-1,1],[-3,0],[0,2],[-2,1],[-3,0],[-2,0],[-7,0]],[[8838,4039],[-2,5],[3,0],[1,1],[1,4],[-1,4]],[[8840,4053],[6,5],[-1,2],[1,8],[1,1],[-2,1],[2,6],[1,11],[3,2],[2,7],[0,20],[-3,3],[-3,2],[0,4],[1,2],[5,5],[1,4],[0,5]],[[8840,4053],[-5,0],[-6,5],[1,1],[4,2],[0,2],[-23,15],[-17,28]],[[8326,4088],[-26,0]],[[8300,4088],[0,5]],[[8300,4093],[0,32]],[[8337,4127],[1,-39]],[[8338,4088],[-12,0]],[[8674,4099],[-42,3]],[[8632,4102],[0,22],[-5,-1]],[[8680,4136],[-1,-1],[-1,-36],[-4,0]],[[9105,4077],[-2,6],[-8,2],[-1,3],[3,6],[2,5],[3,4],[-1,4],[-2,7],[-1,9],[4,10]],[[9138,4121],[-12,-17],[9,-54]],[[9135,4050],[-3,0],[-1,-1],[-2,0],[-1,-4],[-1,1],[-1,-2],[-2,0],[-1,-3],[-3,0]],[[9120,4041],[-1,7],[-8,10]],[[9111,4058],[-4,5],[-2,3],[-1,3],[1,8]],[[8713,4097],[0,-27],[-5,0],[0,-15]],[[8708,4055],[-26,1]],[[8682,4056],[1,27],[-9,0],[0,16]],[[9345,4112],[0,6],[7,16],[7,4],[2,-10],[-5,-10],[-7,-6],[-4,0]],[[7792,4053],[2,10]],[[7794,4063],[0,11],[4,11]],[[7846,4137],[0,-69]],[[7846,4068],[0,-15]],[[7846,4053],[-54,0]],[[7888,4067],[-42,1]],[[9105,4077],[-5,-1],[-4,-3],[-4,1],[-20,-6],[-3,-1],[-1,0],[-1,1],[-1,1],[-6,-6],[-1,1],[1,1],[4,8],[0,2],[-2,1],[-5,-8],[-9,-11],[-2,-1],[-3,-6],[-2,4]],[[9041,4054],[0,4],[-2,-1],[0,3],[-2,4],[1,2],[-2,3]],[[8779,4105],[0,-15]],[[8779,4090],[-8,-1]],[[8771,4089],[1,17],[-1,5],[-1,7],[-3,5],[0,2]],[[9301,4044],[-1,-5],[-8,-2],[-4,-8],[-7,-4],[-3,-4]],[[9278,4021],[0,3],[2,5],[0,7],[-5,4]],[[9275,4040],[-43,55]],[[9283,4078],[1,-3],[3,-5],[4,-7],[9,-15],[1,-4]],[[7794,4063],[-42,0]],[[7752,4063],[0,10]],[[7752,4073],[2,58]],[[7752,4073],[-35,0]],[[7717,4073],[0,7]],[[7717,4080],[-2,48]],[[7717,4080],[-30,-1]],[[7687,4079],[-1,9],[1,0],[0,5],[-3,5],[0,6],[3,3],[-1,5],[1,1],[-3,2],[3,3],[-1,5],[-2,1],[0,3]],[[9348,4127],[-6,-14],[0,-10],[3,-4]],[[9345,4099],[-1,-3],[0,-7],[-14,-22],[0,-2],[-4,-4],[-3,2]],[[9323,4063],[0,1],[-3,4],[-3,0],[-7,9],[-2,2],[2,2],[0,3]],[[8771,4089],[0,-1],[1,-3],[0,-11],[0,-7],[-3,-6],[-4,-11]],[[8765,4050],[-1,-4],[0,-2]],[[8764,4044],[-16,0]],[[8748,4044],[2,51],[-7,0]],[[8359,4088],[-21,0]],[[8360,4126],[0,-38],[-1,0]],[[7625,4088],[1,37]],[[7687,4079],[-17,0]],[[7670,4079],[2,8],[-46,-1],[-1,2]],[[7460,4125],[0,-20],[2,0],[0,-40]],[[7462,4065],[-33,0]],[[7429,4065],[-4,9],[-5,0],[0,3],[4,1],[0,2],[-2,3],[0,6],[-5,18],[1,6],[2,3],[0,6],[-2,1],[-1,-1],[0,-7],[-4,2]],[[8396,4081],[0,-5]],[[8396,4076],[-37,-1]],[[8359,4075],[0,13]],[[6054,3979],[-35,0]],[[6019,3979],[-14,-1],[-5,1],[-4,-1],[-2,0],[0,1],[-10,-1]],[[5984,3978],[-12,1],[2,5],[1,2],[0,2],[-3,6],[-6,6],[-3,-6],[-7,-8],[-3,-9],[-1,2],[-3,-5],[-4,-3],[-1,5],[1,5],[-1,7],[2,3],[0,6],[-4,4],[0,5],[0,2],[-3,2],[-2,6],[-2,1]],[[7514,4088],[-1,-49]],[[7513,4039],[-39,1]],[[7474,4040],[-3,9],[0,10],[0,5],[-9,1]],[[7511,4124],[0,-19],[2,-1],[0,-16],[1,0]],[[7625,4088],[0,-24]],[[7625,4064],[-35,0]],[[7590,4064],[-2,39],[0,21]],[[8266,4087],[-2,0],[-1,1],[-2,0],[-1,10],[-6,0]],[[8300,4093],[-33,0],[-1,-6]],[[7590,4064],[-2,-24]],[[7588,4040],[-39,1]],[[7549,4041],[0,47]],[[7549,4088],[0,16],[-3,0],[2,19]],[[8225,4099],[0,-41]],[[8225,4058],[-36,0]],[[8189,4058],[0,29]],[[8189,4087],[0,19]],[[7549,4088],[-35,0]],[[8632,4102],[-2,-44]],[[8630,4058],[-25,2],[0,4],[-24,2]],[[8581,4066],[0,14]],[[7429,4065],[-40,-1]],[[7389,4064],[-6,0]],[[7383,4064],[0,52]],[[9172,4076],[-14,-13],[-11,-4],[-12,-9]],[[8511,4108],[-2,-50]],[[8509,4058],[-21,2],[0,4],[-21,2]],[[8467,4066],[1,40]],[[7348,4014],[-31,0]],[[7317,4014],[-9,0]],[[7308,4014],[0,66]],[[7348,4116],[0,-52]],[[7348,4064],[0,-50]],[[7383,4064],[-35,0]],[[6697,4014],[-39,0]],[[6719,4097],[0,-83],[-22,0]],[[8542,4040],[0,-4],[-3,0]],[[8539,4036],[-26,1]],[[8513,4037],[1,20],[-5,1]],[[8536,4099],[-1,-38],[7,-1],[0,-20]],[[8150,4106],[0,-60]],[[8150,4046],[0,-52]],[[8150,3994],[-5,0],[2,-5],[-5,0],[0,5],[-30,-3]],[[8112,3991],[0,67],[2,0],[0,32]],[[8189,4087],[-4,-4],[-3,-2],[-5,-4],[-4,-10],[-7,-9],[-7,-4],[-2,-7],[4,-6]],[[8161,4041],[-7,0],[0,4],[-4,1]],[[8467,4066],[-1,-18]],[[8466,4048],[-21,5],[-15,-3]],[[8430,4050],[-1,31]],[[8838,4039],[-1,-1],[4,-4],[-1,-5],[-3,1],[-1,-1],[0,-2],[2,-2],[0,-3],[1,-3],[-4,0],[-2,-8],[-5,6],[-1,-7]],[[8827,4010],[-3,0],[-1,6],[-2,0],[-1,1],[-3,-6],[-3,0],[-2,5],[-2,0],[-3,1],[-3,-1],[-4,3],[-1,-1],[-4,-1],[0,-3],[-3,0],[-3,-5],[-4,0],[-1,-4],[-5,1]],[[8779,4006],[0,13]],[[8779,4019],[0,26]],[[8779,4045],[0,45]],[[6520,4063],[0,-10],[0,-7],[2,-6],[2,-3],[-2,-8],[0,-4],[0,-4],[0,-2],[-5,-3],[2,-15]],[[6519,4001],[-2,-7],[2,-9]],[[6519,3985],[-4,-6],[-2,-3],[-5,2],[-2,-3],[-5,2],[0,-2],[0,-9],[-3,-10]],[[6498,3956],[-6,-1],[-5,1],[-2,5],[0,9],[-3,9],[-2,2],[-7,4],[-5,12],[-2,1],[-10,0],[-2,1],[-3,0]],[[6451,3999],[-18,0]],[[8673,4043],[-42,2]],[[8631,4045],[1,13],[-2,0]],[[8682,4056],[-4,0],[0,-13],[-5,0]],[[5096,4099],[4,-5],[0,-9],[2,-5],[5,-2],[3,-4],[0,-5],[-1,-1],[1,-1],[0,-11],[-3,-2],[0,-4],[-4,-1],[0,-1],[0,-4]],[[5103,4044],[0,-5],[-1,0],[0,-1],[-2,0],[0,-2],[-1,1],[0,-2],[-10,-2],[0,-8],[0,-1],[-1,-3],[-2,0],[0,-2],[0,-4],[-1,0],[0,-6],[-6,0],[-4,-8],[0,-7],[-3,-4],[-25,1],[-1,-2],[3,0],[-2,-2],[0,-3],[0,-6],[2,-2]],[[5049,3976],[-80,0]],[[4969,3976],[-2,9],[0,11],[2,3],[0,3],[-2,7]],[[9316,4028],[-3,11]],[[9313,4039],[-3,7],[3,3],[0,-2],[2,0],[2,8],[6,4],[0,4]],[[9345,4099],[11,2],[13,-24],[-6,-42],[-5,2]],[[9358,4037],[0,1],[-2,2],[-4,-7],[-2,1],[-5,1],[-1,1],[-1,9],[-14,0],[-10,-15],[-3,-2]],[[5220,3960],[-30,0],[0,-2],[-15,0],[-3,-4],[-4,5],[-3,1],[-4,0],[-5,10],[-2,0],[-2,-3],[-3,-1],[-1,-15],[-6,-6]],[[5142,3945],[-7,-7]],[[5135,3938],[0,-1],[0,3],[-4,0],[0,2],[-1,6],[-2,0],[0,2],[-1,0],[0,4],[-1,0],[0,2],[-2,1],[0,4],[-3,0],[0,3],[-1,0],[0,2],[-1,0],[-2,3],[-1,5],[-2,1],[0,2],[-1,1],[-1,2],[-2,0],[0,6],[-4,2],[0,7],[-1,0],[0,3],[1,0],[-1,7],[1,0],[0,4],[-1,0],[0,6],[0,4],[1,0],[1,3],[0,4],[2,0],[0,3],[-2,1],[0,4],[-1,0],[0,10],[-3,0]],[[8581,4066],[-1,-27]],[[8580,4039],[-38,1]],[[9242,4027],[0,2],[-2,-2],[-2,7],[-3,-4],[-1,6],[0,3],[-3,0],[0,5],[-3,-1],[0,2],[-1,3],[0,5],[-1,2],[-2,-1],[0,2],[-3,2],[-1,2],[-1,0],[-2,3],[-3,0]],[[9275,4040],[-4,-5],[-5,-11],[-5,5],[-2,-1],[-3,5],[-3,-9],[4,-6],[-6,-8]],[[9251,4010],[-3,9],[-1,-2],[-5,10]],[[7964,4077],[0,-37]],[[7964,4040],[-6,6],[-2,-3],[-3,0],[-3,-4],[-2,1],[-2,-1],[-2,0],[-2,2],[-1,-2],[-2,4],[-2,-3],[-3,1],[-2,0],[-5,-4]],[[7927,4037],[-4,-2],[-3,-6],[-4,-2],[-5,1],[-2,-2],[-3,-1],[-2,3],[0,-2],[-2,1],[-3,9],[-2,3]],[[7897,4039],[0,4],[2,0],[3,1],[7,1],[0,2],[0,2]],[[8266,4087],[0,-29]],[[8266,4058],[0,-9]],[[8266,4049],[-41,1]],[[8225,4050],[0,8]],[[6845,4079],[0,-64]],[[6845,4015],[0,-84]],[[6845,3931],[-68,-1]],[[6777,3930],[0,84],[2,65],[0,18]],[[6777,3930],[-30,0]],[[6747,3930],[-50,0]],[[6697,3930],[0,34]],[[6697,3964],[0,50]],[[8748,4044],[-20,1],[-10,0]],[[8718,4045],[-10,1],[0,9]],[[9313,4039],[-1,0],[-6,8],[-2,0],[-3,-3]],[[8300,4088],[0,-30]],[[8300,4058],[-34,0]],[[8112,3991],[-47,-1]],[[8065,3990],[2,78]],[[8779,4045],[-4,3],[-6,0],[-4,2]],[[8300,4005],[0,53]],[[8326,4088],[0,-59]],[[8326,4029],[-1,-24]],[[8325,4005],[-25,0]],[[8359,4075],[-1,-46]],[[8358,4029],[-32,0]],[[7513,4024],[0,15]],[[7549,4041],[0,-19]],[[7549,4022],[-36,2]],[[7670,4079],[0,-57],[2,-1]],[[7672,4021],[-46,-1]],[[7626,4020],[-1,44]],[[8189,4058],[0,-51]],[[8189,4007],[-28,0],[-2,-2]],[[8159,4005],[-2,4],[2,5],[0,5],[0,7],[0,3],[2,12]],[[8395,3999],[1,19]],[[8396,4018],[0,58]],[[8430,4050],[0,-51]],[[8430,3999],[-6,0]],[[8424,3999],[-29,0]],[[7266,4015],[-40,0]],[[7226,4015],[0,65]],[[7266,4080],[0,-65]],[[7308,4014],[-42,1]],[[7717,4073],[0,-51]],[[7717,4022],[-45,-1]],[[6910,4079],[0,-63]],[[6910,4016],[-7,-1]],[[6903,4015],[-58,0]],[[7144,4015],[-30,0]],[[7114,4015],[-10,0]],[[7104,4015],[0,64]],[[7144,4080],[0,-65]],[[7186,4015],[-23,0]],[[7163,4015],[-19,0]],[[7184,4079],[2,-64]],[[7226,4015],[-10,0]],[[7216,4015],[-30,0]],[[6962,4015],[-52,1]],[[6962,4079],[0,-64]],[[7104,4015],[-42,1]],[[7062,4016],[0,63]],[[7062,4016],[-49,-1]],[[7013,4015],[0,64]],[[7013,4015],[-49,0]],[[6964,4015],[-2,0]],[[7998,3999],[-17,0],[0,2],[-7,1],[0,7],[-9,0]],[[7965,4009],[0,24],[-1,0],[0,7]],[[8004,4068],[1,-43]],[[8005,4025],[0,-26],[-7,0]],[[8995,4045],[-3,-8],[-3,-4],[0,-4],[2,-4],[-3,-3],[0,-5],[-8,-33],[-3,-9],[-2,-8],[-3,-5]],[[8972,3962],[-38,-1]],[[8934,3961],[4,19],[0,45],[2,4],[1,-2],[7,32]],[[9111,4058],[-2,-1],[-3,0],[-2,-2],[1,-6],[-1,0],[1,-1],[-1,-2],[-4,0],[-1,-2],[-2,0],[-2,0],[-12,-16]],[[9083,4028],[-3,-7],[-19,-6],[-6,-8]],[[9055,4007],[0,3],[-1,0],[-3,9],[-4,11],[-1,9],[-5,2],[-1,4],[0,4],[1,5]],[[8396,4018],[-36,-1]],[[8360,4017],[-1,1],[-1,11]],[[9197,4041],[-5,-5],[0,-15],[-6,-14],[2,-5],[-2,-3],[0,-10],[0,-1],[-1,-2],[-1,0],[0,-2],[-1,-3],[0,-3],[-4,-9],[-1,-3],[-1,0],[0,-2],[0,-2],[-2,3],[-1,-1],[0,-3]],[[9174,3961],[-9,0]],[[9165,3961],[-3,14],[-4,3],[-3,6],[-2,5],[-1,10],[-6,3],[-1,2],[-4,15],[-2,5],[-4,0],[-8,4],[-5,10],[-2,3]],[[7752,4063],[0,-58]],[[7752,4005],[-30,0]],[[7722,4005],[-5,0],[0,17]],[[9055,4007],[-1,-5],[1,-41]],[[9055,3961],[-1,0]],[[9054,3961],[-56,1]],[[8998,3962],[4,6],[6,18],[5,28],[6,12]],[[8065,3990],[0,-15]],[[8065,3975],[-25,1]],[[8040,3976],[0,49]],[[8040,4025],[0,10],[6,0],[0,6],[10,27]],[[8040,4025],[-35,0]],[[8934,3961],[-11,0]],[[8923,3961],[-41,0]],[[8882,3961],[-1,4],[1,5],[-1,4],[4,2],[0,3],[-1,1],[-2,1],[0,3],[-2,3],[2,12],[7,22]],[[7881,4011],[-7,-1],[0,6],[-1,2],[1,1],[-1,1],[-4,0],[-2,4],[0,5],[-3,0],[2,6],[-20,1]],[[7846,4036],[0,17]],[[7897,4039],[-3,-1],[-2,-9],[-2,-2],[-2,-8],[-7,-8]],[[8631,4045],[-1,-41],[-3,0],[0,-6]],[[8627,3998],[-17,1],[0,1],[-4,0],[0,-1]],[[8606,3999],[-29,2]],[[8577,4001],[0,7],[1,0],[2,31]],[[8513,4037],[-1,-20]],[[8512,4017],[-47,4]],[[8465,4021],[1,27]],[[7474,4040],[-1,-12],[3,-6],[0,-5],[2,-6],[1,-7],[-1,-3],[3,-5]],[[7481,3996],[-5,0],[0,-6],[-3,-1],[-4,0],[-3,9],[-4,0],[-2,4],[-3,2],[-7,11]],[[7450,4015],[-2,4],[-2,1],[-3,4],[-2,0],[2,5],[2,4],[-2,4],[-2,2],[-3,8],[-2,9],[0,2],[-7,7]],[[7450,4015],[-2,-1]],[[7448,4014],[-40,0]],[[7408,4014],[-19,0]],[[7389,4014],[0,50]],[[7389,4014],[-21,0]],[[7368,4014],[-20,0]],[[7626,4020],[0,-13]],[[7626,4007],[-36,-1]],[[7590,4006],[-2,34]],[[6576,4015],[-12,-17]],[[6564,3998],[-19,0]],[[6545,3998],[0,2],[-26,1]],[[7792,4053],[0,-13],[0,-13],[2,-11],[4,-12]],[[7798,4004],[-37,1]],[[7761,4005],[-9,0]],[[9242,4027],[-4,-5],[1,-3],[-4,-4],[2,-4],[-7,-7],[-2,-5],[-1,0],[-2,-5],[-4,-5],[2,-3],[1,-2]],[[9224,3984],[-5,0],[-5,-4],[-4,-10],[-3,-8],[-1,0]],[[9206,3962],[-32,-1]],[[8293,4001],[-28,0]],[[8265,4001],[1,48]],[[8300,4005],[0,-3],[-7,-1]],[[9165,3961],[-29,0]],[[9136,3961],[-20,0]],[[9116,3961],[-19,0]],[[9097,3961],[0,20],[3,8],[-2,5],[1,6],[0,4],[-3,7],[-1,8],[-5,0],[-2,6],[-5,3]],[[8225,4050],[-1,-49]],[[8224,4001],[0,-11]],[[8224,3990],[-28,0]],[[8196,3990],[-7,0],[0,17]],[[6396,4030],[-22,0],[-2,-14],[0,-1],[0,-16],[-11,0],[0,-19],[-45,0],[0,-24],[-56,-1],[0,-8],[-30,0],[0,2],[-14,0]],[[8718,4045],[-2,-41]],[[8716,4004],[-1,1],[-11,0],[0,-6],[-7,0],[0,-5],[-11,1],[0,-11],[-11,0]],[[8675,3984],[1,16],[-4,1],[1,42]],[[7846,4036],[0,-51]],[[7846,3985],[0,-15],[-41,-1]],[[7805,3969],[-1,9],[-6,10],[0,3],[1,5],[0,3],[-1,5]],[[8465,4021],[-2,-31]],[[8463,3990],[-9,4],[0,5],[-24,0]],[[8779,4019],[-18,2]],[[8761,4021],[3,23]],[[8258,4001],[-34,0]],[[8265,4001],[-7,0]],[[9316,4028],[15,-61],[0,-30],[-2,-7],[0,-1]],[[9329,3929],[-2,-2],[-1,2],[0,-3],[-2,1],[-4,3],[-1,1],[-3,5],[-1,0],[-5,5],[-3,1],[-2,13],[-5,7]],[[9300,3962],[-4,5],[-2,3],[-3,4],[-4,-4],[-2,5],[-2,14],[-2,2],[-1,7],[-5,6],[0,4],[0,1],[-4,1]],[[9271,4010],[2,7],[5,4]],[[8163,3940],[-13,0]],[[8150,3940],[0,54]],[[8159,4005],[0,-3],[2,-3],[3,-2],[0,-8],[-1,-7],[1,-7],[-1,-5],[0,-14],[-2,-7],[2,-9]],[[7929,3997],[-2,40]],[[7965,4009],[-10,0],[0,-10],[-6,0],[0,-1],[-20,-1]],[[8761,4021],[0,-11],[-3,-6],[0,-5],[-2,0],[-1,0],[-1,-2],[2,-8],[0,-2],[-3,-3]],[[8753,3984],[-37,4]],[[8716,3988],[0,16]],[[9358,4037],[1,-7],[4,3],[-1,-8],[-6,-1],[3,-2],[-7,-32],[-1,-29],[-6,-18],[-7,-11],[-1,-9],[-7,4]],[[9330,3927],[-1,2]],[[8998,3962],[-21,0]],[[8977,3962],[-5,0]],[[8675,3984],[0,-17]],[[8675,3967],[-34,3]],[[8641,3970],[0,9],[-9,1],[1,17],[-6,1]],[[5135,3938],[0,-3],[-1,0],[0,-5],[-3,0],[0,-2],[-1,0],[0,-5],[-2,0],[0,-2],[-2,0],[0,2],[-5,0],[0,-3],[-4,0],[0,1],[-3,1],[0,-7],[-2,-6],[0,-4],[-2,-10],[-3,-7],[-7,-2],[0,-1],[-2,-4],[-5,0],[-5,2],[-2,-1]],[[5086,3882],[-25,-1]],[[5061,3881],[2,17]],[[5063,3898],[1,8],[0,13],[3,7],[-9,-1],[-4,0],[-1,1],[0,3],[1,11],[0,5],[2,2],[-2,3],[3,4],[1,5],[-1,6],[-3,0],[-3,4],[0,6],[-2,1]],[[7590,4006],[0,-32]],[[7590,3974],[-41,0]],[[7549,3974],[0,47],[0,1]],[[8577,4001],[-2,0],[0,-3],[1,0],[-1,-18],[-1,0],[-1,-5]],[[8573,3975],[-37,3]],[[8536,3978],[-1,20],[2,2],[-3,15],[1,4],[-1,5],[5,0],[0,12]],[[8882,3961],[-8,0]],[[8874,3961],[-26,0]],[[8848,3961],[-13,0]],[[8835,3961],[0,4],[-2,3],[-1,2],[1,5],[2,1],[-1,4],[0,5],[-1,1],[2,8],[-2,1],[0,4],[-3,5],[-4,1],[0,1],[1,4]],[[9271,4010],[-2,-1],[-2,0],[-3,-3],[-1,-4],[1,-6],[0,-5]],[[9264,3991],[-4,-1],[-6,-4]],[[9254,3986],[0,3],[-1,5],[2,8],[-1,4],[-3,4]],[[7488,3980],[0,1],[-2,1],[-1,3],[0,10],[-4,1]],[[7513,4024],[1,-44]],[[7514,3980],[-26,0]],[[7929,3997],[0,-7]],[[7929,3990],[-53,0]],[[7876,3990],[4,9],[1,12]],[[5767,3998],[0,-72]],[[5767,3926],[0,-163]],[[5767,3763],[-85,0]],[[5682,3763],[-81,89],[0,1]],[[8536,3978],[-1,-22]],[[8535,3956],[-36,4]],[[8499,3960],[0,10]],[[8499,3970],[5,0],[8,47]],[[7876,3990],[0,-5]],[[7876,3985],[-28,-1],[-2,1]],[[6216,3891],[0,31]],[[6398,3999],[-7,0],[0,-109]],[[6391,3890],[-30,0]],[[6361,3890],[-145,1]],[[8360,4017],[-1,-27],[-1,0],[0,-15]],[[8358,3975],[-8,0]],[[8350,3975],[-27,0]],[[8323,3975],[0,15],[3,1],[-1,14]],[[9097,3961],[-21,0]],[[9076,3961],[-21,0]],[[9254,3986],[0,-1],[-8,0],[-7,-8]],[[9239,3977],[-5,4],[-10,3]],[[8035,3949],[-21,0]],[[8014,3949],[-9,0],[0,28],[-5,3],[-2,-1]],[[7998,3979],[0,20]],[[8040,3976],[0,-11],[-5,0],[0,-16]],[[7549,3974],[0,-9]],[[7549,3965],[-35,0]],[[7514,3965],[0,15]],[[7722,3940],[-36,0]],[[7686,3940],[1,17],[-15,1]],[[7672,3958],[0,63]],[[7722,4005],[0,-65]],[[8463,3985],[0,5]],[[8499,3970],[-8,4],[0,1],[-7,1],[0,4],[-10,1],[-1,3],[-10,1]],[[7672,3958],[-39,1]],[[7633,3959],[-8,0],[1,48]],[[8779,4006],[0,-45]],[[8779,3961],[-28,0]],[[8751,3961],[-1,4],[-1,3],[5,11],[-1,5]],[[8835,3961],[-46,0]],[[8789,3961],[-10,0]],[[8395,3999],[0,-35]],[[8395,3964],[-20,0],[0,-4]],[[8375,3960],[-14,1],[0,14],[-3,0]],[[5984,3978],[0,-2],[0,-1],[0,-4],[5,0],[0,-10],[-7,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-2],[-3,-3],[0,-42],[-3,0],[0,-14],[-15,0],[0,-4],[-3,0],[-2,-5],[-5,0],[0,-5]],[[5949,3881],[-4,0],[0,4],[-10,0],[-2,7],[-1,5],[1,3],[0,8],[0,4],[0,4],[0,6],[0,7],[-166,-3]],[[5432,3841],[-7,-2]],[[5425,3839],[-79,0]],[[5346,3839],[0,8],[-5,0],[0,5],[-2,0],[0,5],[-2,0],[0,3],[-3,0],[0,2],[-1,0],[0,4],[-3,0],[0,4],[0,2],[-1,0],[0,4],[-2,0],[0,4],[-2,0],[0,1],[-2,0],[0,4],[-1,-2],[0,4],[-2,-1],[0,3],[-1,0],[0,2],[-1,0],[0,5],[-3,0],[0,3],[-2,0],[0,2],[-1,0],[0,22],[3,0],[0,22],[0,1],[0,18],[-3,-6],[0,-3],[-4,0],[-2,-5],[0,-3],[-1,-2]],[[7062,4016],[0,-86]],[[7062,3930],[-47,0]],[[7015,3930],[-2,0]],[[7013,3930],[0,85]],[[7114,4015],[0,-85]],[[7114,3930],[-49,0]],[[7065,3930],[-3,0]],[[6964,4015],[-2,-84]],[[6962,3931],[-57,-1]],[[6905,3930],[-2,1]],[[6903,3931],[0,84]],[[6903,3931],[-58,-1]],[[6845,3930],[0,1]],[[7013,3930],[-49,0]],[[6964,3930],[-2,1]],[[7266,4015],[0,-68]],[[7266,3947],[-50,0]],[[7216,3947],[0,68]],[[7474,3943],[-5,-1],[-2,5],[-19,0]],[[7448,3947],[0,67]],[[7488,3980],[0,-4],[-3,-2],[0,-4],[1,-2],[4,1],[0,-2],[0,-2],[-2,-3],[-3,0],[-2,3],[0,-1],[-2,-9],[-5,-5],[-2,-7]],[[4969,3976],[0,-10],[0,-6],[4,0],[0,-25]],[[4973,3935],[0,-10],[-4,0],[0,-3],[-9,0],[0,-2],[-1,0],[-1,0],[0,-11],[-3,0],[0,-7],[3,-1],[0,-5],[1,1],[1,-11],[2,-1],[0,-8],[0,-9],[0,-2],[-2,0],[0,-2],[-1,-5],[-4,-1],[0,-20],[3,-5],[1,-6],[1,0],[0,-3],[2,0],[0,-2],[3,0],[0,-9],[1,0],[0,-2],[1,-1],[0,-4],[2,1],[0,-3],[3,0],[0,-2],[2,0],[0,-2],[2,-2],[3,-1],[0,-4]],[[4979,3793],[-24,3],[0,-4],[-4,0],[0,-5],[-21,0],[0,-5],[-12,0],[-4,-3]],[[4914,3779],[-17,30],[3,22],[-11,59],[6,39],[-3,27],[-6,25],[-14,34]],[[7163,4015],[0,-85]],[[7163,3930],[-47,0]],[[7116,3930],[-2,0]],[[7216,3947],[0,-17]],[[7216,3930],[-51,0]],[[7165,3930],[-2,0]],[[7317,4014],[0,-84]],[[7317,3930],[-14,0]],[[7303,3930],[-37,0]],[[7266,3930],[0,17]],[[6576,3975],[0,23]],[[6576,3998],[2,1],[0,10],[5,5]],[[6697,3964],[-107,0]],[[6590,3964],[0,1],[4,1],[0,4],[2,0],[0,1],[8,-1],[0,10],[9,1],[3,15],[-12,0],[-5,-18],[-5,0],[0,-2],[-2,-1],[0,2],[-2,1],[0,-4],[-3,0],[-2,1],[-9,0]],[[7408,4014],[0,-67]],[[7408,3947],[0,-17],[-23,0]],[[7385,3930],[-17,0]],[[7368,3930],[0,84]],[[7368,3930],[-32,0]],[[7336,3930],[-19,0]],[[7448,3947],[-19,0]],[[7429,3947],[-21,0]],[[9300,3962],[-13,-23]],[[9287,3939],[-4,16],[-6,3],[-1,2],[-2,2],[0,3],[-2,4],[-3,1],[1,5],[-1,3],[0,3],[-1,4],[-4,6]],[[7998,3979],[-3,1],[-2,-4],[-5,-7],[-7,-4],[-2,1],[0,-11],[-5,0],[0,-8],[-4,0],[0,-22]],[[7970,3925],[-15,0]],[[7955,3925],[-21,0]],[[7934,3925],[0,5],[-4,29],[-1,31]],[[7633,3959],[0,-2],[0,-6],[0,-2],[0,-1],[0,-3],[2,-3],[-2,-1]],[[7633,3941],[-43,-1]],[[7590,3940],[0,34]],[[8196,3990],[0,-50]],[[8196,3940],[-18,0]],[[8178,3940],[-15,0]],[[7761,4005],[0,-55]],[[7761,3950],[-30,0],[0,-10],[-9,0]],[[8323,3975],[-3,0],[0,-17]],[[8320,3958],[-29,0]],[[8291,3958],[0,32],[2,1],[0,10]],[[7773,3949],[-12,1]],[[7805,3969],[1,-7],[4,-7]],[[7810,3955],[-37,0],[0,-6]],[[8716,3988],[-7,1],[0,-31],[4,0],[-1,-19]],[[8712,3939],[0,-3],[-6,0],[0,2],[-4,0],[0,2],[-2,0],[1,2],[-4,1],[0,2],[-2,0],[0,-10],[-10,1]],[[8685,3936],[0,14],[-5,0],[0,17],[-5,0]],[[8291,3958],[0,-13]],[[8291,3945],[-26,0]],[[8265,3945],[-7,0]],[[8258,3945],[0,56]],[[8613,3948],[-9,0],[-1,-9],[-11,1],[0,-10],[-10,0],[0,-2]],[[8582,3928],[-11,2],[2,16],[-2,0],[2,29]],[[8606,3999],[-1,-17],[7,-1],[0,-16],[3,0],[-2,-17]],[[8258,3945],[-13,0],[1,-5],[-16,0]],[[8230,3940],[0,5],[-4,0],[-1,45],[-1,0]],[[6545,3998],[0,-33]],[[6545,3965],[-7,2],[-9,8],[0,3],[0,2],[-2,0],[-5,4],[-3,1]],[[8641,3970],[-1,-8],[6,-1],[-2,-33]],[[8644,3928],[-10,1]],[[8634,3929],[-10,1],[0,7],[-11,1],[0,10]],[[8435,3937],[-10,0]],[[8425,3937],[-1,62]],[[8463,3985],[0,-1],[-3,0],[-2,-49]],[[8458,3935],[-16,2],[-7,0]],[[8395,3930],[0,34]],[[8425,3937],[0,-6],[-30,-1]],[[6506,3930],[0,-5],[-1,-2],[-2,0],[0,-4],[-2,-1],[-2,-8],[-3,0],[-2,-3],[0,-4],[-7,-12],[-2,-1],[-3,5],[-3,1]],[[6479,3896],[-6,0]],[[6473,3896],[-5,14],[0,7],[0,2],[0,4],[0,4],[3,-2],[1,1],[0,10],[3,4],[0,5],[-2,2],[-3,2],[0,2],[-2,0],[-2,5],[-1,1],[-6,10],[-2,0],[-5,18],[0,9],[-1,5]],[[6498,3956],[1,-6],[0,-2],[4,0],[3,-3],[4,-2],[0,-5],[-4,-8]],[[6452,3890],[-61,0]],[[6473,3896],[-8,-6],[-7,0],[-4,6],[-2,-1],[0,-5]],[[6552,3848],[-7,0],[0,82]],[[6545,3930],[0,35]],[[6564,3998],[0,-4],[9,2],[3,2]],[[6576,3975],[-1,0],[0,-1],[1,-3],[0,-21],[-2,0],[1,-3],[-6,-2],[2,-4],[5,4]],[[6576,3945],[0,-15]],[[6576,3930],[-2,-5],[-1,-7],[-4,-6],[0,-6],[-2,-5],[0,-10],[-5,-19],[-5,-4],[0,-7],[-5,-10],[0,-3]],[[8110,3917],[0,39]],[[8110,3956],[0,20],[2,1],[0,14]],[[8150,3940],[0,-24]],[[8150,3916],[-14,0],[0,2],[-26,-1]],[[8110,3956],[-7,-1],[0,-6],[-38,-1]],[[8065,3948],[0,27]],[[9287,3939],[-9,-18]],[[9278,3921],[-7,9]],[[9271,3930],[-12,19],[-3,0],[-2,2],[-3,0],[-4,4],[-3,5],[-4,10],[-2,1]],[[9238,3971],[2,4],[-1,2]],[[7934,3925],[-19,0]],[[7915,3925],[-14,0]],[[7901,3925],[0,21],[-4,0],[0,4],[-2,0],[0,18],[-10,0],[0,8],[-11,0]],[[7874,3976],[2,3],[0,6]],[[8230,3940],[-2,-15],[-2,-3],[0,-12]],[[8226,3910],[-24,1]],[[8202,3911],[-6,0],[0,29]],[[8743,3940],[-4,-4],[-5,-9],[0,-2]],[[8734,3925],[0,6],[-18,4],[0,-4],[-2,0],[0,8],[-2,0]],[[8751,3961],[0,-2],[-1,-5],[-1,-4],[-1,-7],[-4,-3],[-1,0]],[[8499,3960],[-2,-31]],[[8497,3929],[-27,2]],[[8470,3931],[-12,4]],[[7874,3976],[-5,-17],[2,-5],[2,-8],[3,-16],[0,-5]],[[7876,3925],[-3,-20],[0,-5]],[[7873,3900],[-30,1]],[[7843,3901],[-9,7],[-2,7],[-3,10],[-4,4],[-5,10]],[[7820,3939],[-10,16]],[[6545,3930],[-39,0]],[[9238,3971],[-3,-2],[-1,-4],[0,-4],[-1,-1]],[[9233,3960],[-12,-20],[5,-9],[-2,-20],[6,-16]],[[9230,3895],[-2,-5],[-1,0],[0,-1],[-3,-6],[-3,0],[-4,-2],[-4,0],[-6,0]],[[9207,3881],[0,17]],[[9207,3898],[-1,64]],[[8005,3890],[-35,0],[0,35]],[[8014,3949],[2,-59],[-11,0]],[[7469,3925],[0,5],[5,6],[0,7]],[[7514,3965],[0,-40]],[[7514,3925],[-45,0]],[[6129,3910],[-94,0],[-2,15],[-2,4],[-1,11],[-4,-3],[-4,12],[-1,6],[-2,3]],[[6019,3958],[0,21]],[[6014,3830],[-49,0],[0,1],[-14,0]],[[5951,3831],[-2,50]],[[6019,3958],[0,-48],[-5,0],[0,-80]],[[8582,3928],[-1,-18]],[[8581,3910],[-23,2],[0,6],[-1,2],[-23,1]],[[8534,3921],[1,35]],[[6590,3964],[0,-2],[2,-2],[0,-3],[-3,0],[0,-7],[3,1],[0,-3],[-2,-1],[0,-4],[-1,2],[0,-2],[-1,2],[-5,5],[-5,-2],[0,-5],[-2,2]],[[5063,3898],[-12,0],[0,5],[-11,0],[0,-5],[-53,0]],[[4987,3898],[0,37],[-14,0]],[[8065,3948],[0,-38]],[[8065,3910],[-11,0],[0,6],[0,2],[-3,0],[0,2],[-2,0],[0,5],[-5,0],[-2,10],[-7,1],[0,13]],[[7901,3925],[-25,0]],[[8350,3975],[0,-55]],[[8350,3920],[0,-12]],[[8350,3908],[-30,0]],[[8320,3908],[0,50]],[[8375,3960],[-1,-38]],[[8374,3922],[-24,-2]],[[7590,3925],[-41,0]],[[7549,3925],[0,40]],[[7590,3940],[0,-15]],[[9271,3930],[-1,-1],[1,-8],[-2,-11],[-14,19],[-8,-12],[-2,-1],[-3,-6],[-2,0],[-1,0],[0,-4],[1,-1],[-1,-3],[0,-6]],[[9239,3896],[-12,22],[3,13],[-5,10],[8,19]],[[5232,3908],[-45,0],[-1,2],[-3,10],[-3,2],[-5,0],[-5,-2],[-1,-5],[-4,-6],[-20,-7],[-3,-3],[-1,0]],[[5141,3899],[-1,23],[-2,0],[0,3],[4,5],[0,15]],[[8685,3936],[-12,-1],[-1,-5],[0,-4],[0,-1],[2,0],[0,-9],[-4,0],[-1,2],[-6,1],[0,-9],[-2,0]],[[8661,3910],[-18,0],[1,18]],[[7549,3910],[-35,0]],[[7514,3910],[0,15]],[[7549,3925],[0,-15]],[[5346,3839],[-17,0],[-9,-26],[2,-16],[8,0],[2,-15],[-2,0],[2,-71],[-24,1]],[[5308,3712],[-16,21]],[[5292,3733],[0,27],[-1,1],[0,12],[-4,0],[0,-1],[-2,0],[0,16],[0,3],[0,6],[-1,0],[0,4],[1,0],[0,15],[2,1],[0,4],[5,0],[0,1],[0,19],[-19,-1]],[[5273,3840],[-2,10],[0,10],[-7,1],[-5,3],[0,8]],[[5259,3872],[7,4],[3,4],[11,8],[18,55]],[[8395,3930],[0,-9]],[[8395,3921],[-19,0],[-2,1]],[[6697,3930],[-2,0]],[[6695,3930],[-84,0]],[[6611,3930],[-35,0]],[[9330,3927],[1,-7],[-7,-14],[2,-9],[-19,-18]],[[9307,3879],[-1,-1],[-1,2],[-3,-2],[-10,3],[-2,1],[-1,4]],[[9289,3886],[1,10],[0,7],[-12,18]],[[8976,3946],[1,1],[-2,2],[0,1],[2,0],[0,1],[2,3],[0,4],[-2,4]],[[9054,3961],[-2,-5],[1,-1],[0,-5],[-3,-5],[-2,0],[-3,-5],[-1,-12],[-3,-6],[0,-13],[-5,-24]],[[9036,3885],[-4,0]],[[9032,3885],[-2,1],[-1,2],[1,3],[-1,6],[2,3],[-1,1],[-1,5],[-4,0],[0,2],[0,2],[0,1],[1,-1],[-1,6],[2,4],[-4,-1]],[[9023,3919],[-3,1],[3,1],[-1,4],[-2,0],[-1,-3],[0,6],[-2,2],[3,0],[0,2],[0,8],[0,-1],[-3,2],[0,-2],[-1,-1],[-3,3],[-1,0],[1,-4],[-1,-1],[-2,4],[-3,-1],[-2,3]],[[9005,3942],[-6,9],[-8,6],[-2,-6],[-2,0],[-1,-2],[-2,-3],[-1,-5],[-7,5]],[[8976,3946],[-1,-1],[-2,0],[-1,-4],[-4,1],[3,-5],[-4,1],[-1,-3],[3,-7],[-2,0],[-1,-3],[-2,-2]],[[8964,3923],[-3,2],[-5,-2],[-3,3],[-3,-1],[-1,1],[-2,0]],[[8947,3926],[-4,4],[-2,5],[-3,1],[0,3],[3,1],[0,2],[0,1],[-3,0],[0,3],[-3,-1],[0,-4],[-2,-5],[2,-5],[-4,-1],[-2,-5],[-8,-15],[-1,-3],[-7,10],[-3,0]],[[8910,3917],[13,44]],[[9207,3898],[-4,-1],[-1,1],[-2,-1]],[[9200,3897],[-11,3],[2,12],[-2,13],[-5,6],[-5,-4]],[[9179,3927],[-3,12],[-4,3],[0,5],[-5,10],[-2,4]],[[8892,3886],[-1,-5],[-5,-1],[-4,-4],[-5,-12],[-2,0],[-2,-3]],[[8873,3861],[1,100]],[[8910,3917],[0,-5],[-2,0],[0,-1],[0,-2],[-3,-6],[-2,0],[0,-3],[-9,-10],[-2,-4]],[[9179,3927],[-7,-26],[-7,-5],[-11,4]],[[9154,3900],[-3,12],[-3,5],[-1,3],[-7,5],[-1,3],[-4,13],[1,20]],[[8836,3908],[-4,2]],[[8832,3910],[-2,1],[-2,5],[-2,2],[-1,2],[-2,2],[0,3],[-3,2],[-7,13],[-17,0],[-2,5],[-3,0]],[[8791,3945],[0,15],[-2,1]],[[8848,3961],[0,-5],[-2,-7],[0,-6],[-11,-26],[1,-9]],[[8873,3861],[-5,6],[-13,9],[-12,-8]],[[8843,3868],[-2,2],[-2,9],[-3,2]],[[8836,3881],[0,27]],[[9108,3887],[-2,3],[-2,-1],[-5,1],[-4,-1],[-2,1],[-3,0],[-1,2],[-8,-2]],[[9081,3890],[6,28],[-4,7],[-1,0],[-1,5],[-3,5],[-2,-3],[0,5],[-5,2],[-2,6],[3,-2],[1,6],[2,1],[1,6],[0,1],[0,2],[0,2]],[[9116,3961],[-8,-44],[-1,-8],[-1,-3],[1,-4],[-1,-7],[2,-5],[0,-3]],[[9154,3900],[-3,-32],[-12,2]],[[9139,3870],[0,25],[-17,0],[1,-17],[8,-9],[1,-3]],[[9132,3866],[-4,1],[-4,-4]],[[9124,3863],[-1,3],[-2,0],[-1,2],[-4,3],[1,8],[-1,3],[-4,1],[-4,4]],[[8791,3945],[-1,0],[-2,0],[0,-5],[-2,-1],[-2,0],[-1,-9],[1,-4],[0,-4],[1,-3],[-1,-1],[-1,-1],[0,-2]],[[8783,3915],[-2,-5],[0,-3],[-2,-1]],[[8779,3906],[-4,1],[-1,3],[-2,-2],[-1,2]],[[8771,3910],[-2,2],[-2,-1],[-2,4],[-4,3],[-1,4],[-3,3],[0,3],[-3,2],[-1,0],[-2,8],[-1,1],[-3,-4],[-3,3],[-1,2]],[[9055,3866],[0,1],[-2,4],[-5,5],[-2,5],[-5,0],[-5,4]],[[9081,3890],[-26,-24]],[[8534,3921],[-11,-25]],[[8523,3896],[-18,-1]],[[8505,3895],[1,32],[-9,2]],[[7686,3940],[-2,-54]],[[7684,3886],[-7,3],[-7,-23]],[[7670,3866],[0,2],[-4,-1],[-1,8],[-4,3],[0,4],[-8,4],[-4,11],[-2,1]],[[7647,3898],[0,5],[-3,2],[-4,2],[-1,-1],[0,1],[-2,1],[1,2],[0,5],[-3,-4],[-2,0],[0,4],[0,3],[0,2],[-1,7],[3,0],[-2,1],[0,8],[0,5]],[[8315,3889],[-24,-1]],[[8291,3888],[0,57]],[[8320,3908],[0,-18],[-5,-1]],[[6129,3910],[0,-20],[-2,-4],[0,-1],[-1,-4],[1,-2],[-2,-4],[1,-9],[0,-2],[-2,0],[1,-4],[-3,-3],[-2,-6],[2,-4],[-3,-8],[-1,-8],[-1,-4],[2,-5],[-1,-4],[1,-8],[-4,-3],[0,-1],[2,-3],[0,-5],[2,0],[-1,-7],[2,0],[0,-2],[2,-2],[-2,-5],[4,-4],[0,-5],[-2,-1],[-2,-1],[0,-1],[0,-3],[2,0],[0,-3],[0,-2],[0,-2],[2,1],[1,-3],[1,1],[0,-2],[1,0],[0,-7],[-1,0],[-1,-2],[1,0],[1,0],[2,2],[2,-2],[0,-4],[-4,3],[-1,-4],[1,-1],[2,0],[0,-2],[2,1],[1,-1],[-3,-3],[3,-5],[-3,-2],[-2,1],[0,-3]],[[6127,3728],[-113,0],[0,2]],[[6014,3730],[0,100]],[[9005,3942],[-2,-3],[-4,0],[-1,-3],[-2,3],[-1,-1],[-3,-13],[-4,-23],[-2,-3]],[[8986,3899],[-4,6],[-6,5]],[[8976,3910],[-9,10],[-3,3]],[[8110,3917],[-3,0],[0,-20]],[[8107,3897],[-42,-1]],[[8065,3896],[0,14]],[[7820,3939],[-23,-29],[2,-24]],[[7799,3886],[-24,0],[-2,2]],[[7773,3888],[0,52],[0,9]],[[7773,3888],[-54,2]],[[7719,3890],[3,50]],[[8065,3896],[0,-32]],[[8065,3864],[-30,2]],[[8035,3866],[-30,0]],[[8005,3866],[0,24]],[[8634,3929],[-1,-18],[-10,1],[-1,-15]],[[8622,3897],[-21,2],[0,-7],[-11,3],[0,-5],[-10,1]],[[8580,3891],[1,19]],[[7266,3882],[-50,-1]],[[7216,3881],[0,49]],[[7266,3930],[0,-48]],[[7483,3902],[-19,0]],[[7464,3902],[-37,0]],[[7427,3902],[2,45]],[[7469,3925],[5,-8],[0,-6],[6,-4],[3,-5]],[[7427,3902],[-2,-36]],[[7425,3866],[-40,-2]],[[7385,3864],[0,66]],[[8947,3926],[-1,-4],[-3,-2],[-1,-9],[-6,-4],[-1,-6],[-4,-13],[-3,-2],[-4,-8],[-5,-8]],[[8919,3870],[-13,13],[-14,3]],[[8734,3925],[-5,-6],[-2,-7]],[[8727,3912],[-6,-5],[-2,-4],[-3,-2],[0,-2],[-4,-1],[-5,-8],[-3,0]],[[8704,3890],[-6,11],[-1,1],[-1,-1],[-7,-11],[-2,-3],[-1,-12],[-9,1],[-2,-4],[0,-6],[-3,-2]],[[8672,3864],[1,12],[-9,1],[0,4],[-2,0],[1,5],[-2,0],[0,24]],[[8832,3910],[-12,-12],[-2,1],[-1,3],[-1,-2],[-2,1],[-5,-1]],[[8809,3900],[-6,6],[-20,9]],[[8265,3887],[0,58]],[[8291,3888],[-12,0]],[[8279,3888],[-14,-1]],[[8265,3887],[-12,0]],[[8253,3887],[-23,0]],[[8230,3887],[0,23],[-4,0]],[[5141,3899],[-6,0],[-4,-7],[-3,-5],[-1,0],[-1,-1],[-2,-7],[-5,-4],[0,-5],[-2,-4],[0,-36]],[[5117,3830],[-3,2],[-4,-5],[-5,-4]],[[5105,3823],[-5,-1],[-7,-3],[-1,-8],[-1,-1],[-3,28],[1,6],[-3,24],[0,14]],[[9004,3875],[-18,24]],[[9023,3919],[-3,-11],[-9,-13],[-1,-5],[-1,0],[-3,-9],[-1,-2],[-1,-4]],[[7614,3879],[0,-3],[0,-8],[-2,-2],[-5,0],[-2,3],[-5,2],[-2,-3],[-3,-4],[-5,-1]],[[7590,3863],[0,62]],[[7647,3898],[-1,-1],[-4,4],[-2,0],[0,-6],[-1,-8],[-2,-1],[-2,2],[-3,-5],[-4,-2],[-2,0],[2,-9],[0,-2],[-3,-3],[-4,0],[0,1],[0,7],[-2,0],[-3,4],[-2,0]],[[8175,3872],[-32,0]],[[8143,3872],[0,6],[0,3],[-1,1],[1,6],[7,2],[0,26]],[[8178,3940],[0,-19],[-3,0],[0,-49]],[[7719,3890],[0,-19]],[[7719,3871],[-9,0]],[[7710,3871],[-26,15]],[[8192,3856],[-17,0]],[[8175,3856],[0,16]],[[8202,3911],[0,-22],[-10,0],[0,-33]],[[8771,3910],[-3,-4],[-5,0],[-2,-6],[-8,-10],[-6,-9]],[[8747,3881],[0,5],[1,3],[-4,9],[-1,2],[-2,-11],[-4,1]],[[8737,3890],[-2,21],[-3,4],[0,-4],[-3,1],[-1,-1],[-1,1]],[[7862,3866],[-40,1],[-2,-16],[-5,0]],[[7815,3851],[-14,0]],[[7801,3851],[-2,35]],[[7843,3901],[9,-11],[5,-9],[5,-10],[0,-5]],[[8470,3931],[-3,-60]],[[8467,3871],[-22,4]],[[8445,3875],[-2,5],[-7,0]],[[8436,3880],[2,49],[-3,-1],[0,9]],[[8395,3881],[0,2]],[[8395,3883],[0,38]],[[8436,3880],[-26,3],[-2,-2],[-13,0]],[[5021,3809],[-5,-1],[0,-2],[0,-6],[0,-4]],[[5016,3796],[3,-8],[-1,-1],[-2,-2],[0,-4],[-5,-13],[-14,-6]],[[4997,3762],[-2,5],[-5,2],[-7,18],[-4,5],[0,1]],[[4987,3898],[-4,0],[0,-2],[0,-1],[3,-5],[-3,-3],[0,-5],[3,-5],[7,-11],[8,-3],[3,0],[5,-6],[0,-6],[-1,-2],[1,-16],[3,-5],[4,0],[0,-8],[5,-11]],[[8505,3895],[-17,-23],[-2,-3],[-2,-5],[-1,2],[0,3],[-3,0]],[[8480,3869],[-12,2]],[[8468,3871],[-1,0]],[[6845,3930],[0,-82]],[[6845,3848],[0,-17]],[[6845,3831],[-99,-2]],[[6746,3829],[0,17],[1,0],[0,84]],[[6905,3930],[0,-82]],[[6905,3848],[-9,0]],[[6896,3848],[-51,0]],[[6964,3848],[-7,0]],[[6957,3848],[-52,0]],[[6964,3930],[0,-82]],[[7015,3848],[-51,0]],[[7015,3930],[0,-82]],[[7266,3848],[0,34]],[[7303,3930],[0,-64]],[[7303,3866],[0,-18]],[[7303,3848],[-37,0]],[[9289,3886],[-2,-4],[-2,-16],[-3,-3],[2,-6]],[[9284,3857],[-9,4],[-9,-1],[-27,36]],[[6744,3749],[0,-18],[-30,0],[0,-1]],[[6714,3730],[-49,1]],[[6665,3731],[0,67]],[[6665,3798],[30,0],[0,49],[0,83]],[[6746,3829],[-2,-67],[0,-13]],[[6611,3848],[0,82]],[[6665,3798],[0,49],[-54,1]],[[7336,3930],[-10,-21],[-2,-9],[7,-19],[5,-5],[0,-5],[2,-1],[0,-2],[0,-1],[2,-1],[2,-4],[0,-1],[-2,0],[0,-3],[2,0],[1,-2],[2,2],[3,-1],[1,3],[3,-1],[2,-2]],[[7354,3857],[0,-26],[-9,0]],[[7345,3831],[0,6],[-19,1],[0,3],[-4,-2],[0,1],[-8,1],[-2,23],[-9,2]],[[6552,3848],[0,-83]],[[6552,3765],[-58,0]],[[6494,3765],[2,9],[3,13],[-1,5],[-2,10],[-2,-1],[-2,6],[-3,3],[0,1],[-2,-2],[-5,2],[-2,2],[0,7],[-5,6],[-2,2],[0,5]],[[6473,3833],[2,7],[-2,6],[2,4],[0,13],[0,3],[-2,5],[0,10],[2,4],[2,0],[1,2],[0,5],[1,4]],[[7116,3848],[-49,0]],[[7067,3848],[-2,0]],[[7065,3848],[0,82]],[[7116,3930],[0,-82]],[[6611,3848],[-33,-1]],[[6578,3847],[-26,1]],[[7165,3930],[0,-66]],[[7165,3864],[0,-16]],[[7165,3848],[-49,0]],[[7385,3864],[0,-17]],[[7385,3847],[-2,3],[-3,1],[0,5],[3,-3],[0,4],[0,3],[-3,1],[-2,-1],[-10,3],[-2,-1],[-2,-4],[-3,1],[-4,-6],[0,4],[-3,0]],[[7065,3848],[-49,-1]],[[7016,3847],[-1,1]],[[7216,3881],[0,-17]],[[7216,3864],[-51,0]],[[8672,3864],[-3,-6]],[[8669,3858],[-45,4]],[[8624,3862],[0,18],[-4,1],[2,16]],[[5905,3743],[-55,0],[-39,0],[-44,0]],[[5767,3743],[0,20]],[[5951,3831],[-2,-9],[-4,0],[0,-6],[-5,0],[0,-5],[-2,0],[-1,-4],[-2,0],[0,-6],[-2,0],[0,-3],[-3,0],[0,-26],[-4,-5],[0,-4],[-3,0],[0,-1],[-4,0],[0,1],[-10,-1],[-2,-5],[0,-9],[-2,0],[0,-5]],[[8976,3910],[0,-13],[-2,-5],[2,-2],[0,-1],[-6,-17],[1,-2],[-2,-6],[0,-3],[2,-4],[-3,-6],[-1,-5],[-4,0],[-1,-4]],[[8962,3842],[-5,8],[-3,1],[-2,-3],[-3,0],[-4,3],[-7,2],[-10,8],[-9,9]],[[7514,3852],[-3,1],[-3,5],[-6,-1],[-5,4]],[[7497,3861],[-2,3],[-1,11],[-4,4],[-3,7],[0,2],[1,9],[-2,0],[-3,5]],[[7514,3910],[0,-58]],[[7995,3828],[-30,1],[0,-6],[-5,0]],[[7960,3823],[-5,0]],[[7955,3823],[0,67],[0,35]],[[8005,3866],[-10,0],[0,-38]],[[7955,3823],[-40,0]],[[7915,3823],[0,49]],[[7915,3872],[0,53]],[[7558,3851],[-2,8],[-5,1],[2,3],[-2,3],[-2,-3]],[[7549,3863],[0,47]],[[7590,3863],[-9,1],[-4,-4],[-3,-1],[-2,-7],[-2,-1],[-3,1],[3,9],[-1,2],[-4,-2],[0,-9],[0,-1],[-3,-1],[-4,1]],[[7915,3872],[-6,-1],[0,-4],[-10,0],[0,-9],[-16,0],[0,-2],[-2,4],[-5,0],[0,-1],[0,-6],[-2,-7]],[[7874,3846],[-1,6],[1,12],[-1,28],[0,8]],[[6216,3891],[0,-163]],[[6216,3728],[-89,0]],[[8350,3876],[0,32]],[[8395,3883],[-24,-1]],[[8371,3882],[-13,0],[-8,-6]],[[5232,3883],[-60,0],[-16,-20],[-1,-4],[-3,-1],[-7,-11],[-1,-4],[0,-4],[-6,-12],[-4,-1],[-3,4],[-4,-3],[-4,0],[-6,3]],[[8577,3853],[-51,8]],[[8526,3861],[1,8],[-1,1],[0,1],[-1,-2],[-2,1],[0,5],[-1,2],[1,3],[0,16]],[[8580,3891],[-2,-29]],[[8578,3862],[0,-9],[-1,0]],[[9032,3885],[-3,-6],[-2,-8],[-2,-10],[-2,-10],[-1,-2]],[[9022,3849],[-18,26]],[[8143,3872],[2,-1],[0,-8],[0,-2],[-2,0],[-3,-4]],[[8140,3857],[-2,0],[0,2],[-26,0]],[[8112,3859],[-5,-1]],[[8107,3858],[0,39]],[[8737,3890],[-3,0],[-1,-4],[-5,0],[-2,-3],[-4,-1],[-2,1],[-2,-2],[-3,-5]],[[8715,3876],[0,1],[-2,4],[-5,0],[0,4],[-2,1],[-1,0],[-1,4]],[[8809,3900],[0,-22],[3,-9]],[[8812,3869],[-5,-12],[0,-11]],[[8807,3846],[-2,-4],[-5,1]],[[8800,3843],[-14,5],[-2,3],[-5,0],[-3,5],[-2,0]],[[8774,3856],[1,3],[1,0],[3,3],[0,2],[-4,2],[1,2],[2,0],[-3,3],[0,7],[-3,3],[4,4],[2,5],[1,1],[-1,5],[0,5],[1,5]],[[8225,3857],[-33,-1]],[[8230,3887],[-5,0],[0,-30]],[[9004,3875],[-6,-24],[-1,-7],[-4,-11],[0,-2]],[[8993,3831],[-1,-3],[-13,-1]],[[8979,3827],[-1,1],[1,2],[-2,1],[0,1],[-1,1],[2,8],[-2,2],[-1,-2],[-3,2],[-1,-2],[-3,-3],[-2,-9],[-7,7]],[[8959,3836],[3,6]],[[8995,3861],[-4,1],[-2,-4],[0,-5],[3,-3],[3,6],[0,5]],[[7514,3846],[1,5],[-1,1]],[[7549,3863],[-3,5],[-4,0],[-7,-12],[-3,5],[0,-8],[-4,-5],[-3,3],[-2,1],[-7,-5],[-2,-1]],[[8774,3856],[-4,-5],[-2,-1],[-3,-3],[0,-4],[-1,-2],[-3,1]],[[8761,3842],[-7,4]],[[8754,3846],[-10,31],[3,4]],[[8836,3881],[-2,-1],[-2,1],[-5,-11],[-11,-2],[-4,1]],[[8315,3848],[0,41]],[[8350,3876],[-13,-15]],[[8337,3861],[-12,-12],[-10,-1]],[[5067,3810],[-46,-1]],[[5061,3881],[-3,-10],[0,-9],[0,-4],[2,-7],[-2,-3],[3,-2],[3,-9],[3,-1],[1,-10],[2,-3],[-2,-1],[0,-3],[0,-1],[-1,-8]],[[7434,3833],[-3,4],[-6,-1],[0,5],[0,10],[0,15]],[[7464,3902],[-2,-71]],[[7462,3831],[-14,-1],[-3,3],[-6,4],[-5,-4]],[[7497,3861],[-9,0],[0,-39]],[[7488,3822],[-1,0],[-2,0],[-2,-1],[-5,1],[-2,-2],[-2,0]],[[7474,3820],[-3,1],[-2,-4],[-2,2],[-3,0],[-2,-1],[0,13]],[[8710,3859],[-8,-9],[-2,0],[-15,-21]],[[8685,3829],[-15,13]],[[8670,3842],[0,6],[-1,10]],[[8715,3876],[-2,-1],[-3,-16]],[[7663,3836],[-9,-16],[0,-10]],[[7654,3810],[-40,1]],[[7614,3811],[0,68]],[[7670,3866],[0,-3],[-4,-7],[0,-6],[-3,-4],[0,-3],[4,-2],[-4,-5]],[[7874,3846],[0,-2],[2,-14],[0,-4],[2,-7],[3,-2],[4,1],[0,-1]],[[7885,3817],[-4,-14],[-5,-3],[-5,2],[-4,9]],[[7867,3811],[-3,20],[0,5],[2,6],[-2,9],[0,10],[-2,5]],[[8754,3846],[-4,-6],[-3,-1],[-3,-8],[-4,0],[-5,-5]],[[8735,3826],[-3,1],[-2,0],[-2,1],[-1,4],[-4,-1]],[[8723,3831],[-2,1],[-1,-1],[-2,1],[-3,-2],[0,3],[-2,4],[2,3],[-1,3],[-1,3],[-1,3],[-2,-1],[-1,3],[1,8]],[[8624,3862],[-4,0],[-1,-33]],[[8619,3829],[-11,1]],[[8608,3830],[1,20],[-10,0],[0,8],[-11,2],[1,2],[-11,0]],[[9177,3846],[-10,-5],[-2,8],[2,14],[10,23],[6,5],[17,6]],[[9207,3881],[0,-10]],[[9207,3871],[-1,0],[-2,0],[-4,5],[-2,-4],[-1,0],[-2,-1],[-3,-1],[-3,1],[-1,-1],[-2,0],[-4,-8],[-1,-1],[2,-2],[0,-3],[-4,-4],[0,-2],[-2,-4]],[[8107,3858],[-32,0]],[[8075,3858],[-10,0],[0,6]],[[6473,3833],[-35,-1]],[[6438,3832],[0,9],[2,10],[4,2],[3,9],[-2,7],[2,3],[-2,8],[2,2],[2,0],[1,3],[1,-2],[1,7]],[[8526,3861],[-3,-29]],[[8523,3832],[-21,-5],[-5,0]],[[8497,3827],[-18,1],[1,41]],[[9139,3870],[-6,2],[3,-4],[-1,-7]],[[9135,3861],[-3,5]],[[9230,3895],[11,-23],[0,-33],[7,-12],[1,-15]],[[9249,3812],[-7,4],[-2,-6],[-7,-4],[-2,-4],[-1,-4],[-3,-6],[-15,-1]],[[9212,3791],[-3,60]],[[9209,3851],[-2,20]],[[9124,3863],[-1,-2],[-5,-4],[-4,-11],[-3,-4]],[[9111,3842],[-1,2],[-2,4],[-1,0]],[[9107,3848],[-6,1],[0,2],[-2,0],[1,2],[-4,4],[1,1],[-1,5],[-3,6],[-5,6],[-1,0],[-4,2],[0,4],[-1,1],[-1,4],[0,4]],[[6356,3864],[-2,-3],[-1,-3],[-4,-2],[-2,-5],[-3,0],[-2,-3],[-2,-5],[-1,-1],[0,-1],[-2,-1],[-4,-8],[-5,7],[-3,0],[-12,-7],[-9,-10],[-4,-11],[-1,-1],[-2,-4],[-4,-4],[-15,-10],[-1,-30]],[[6277,3762],[0,-34],[-61,0]],[[6361,3890],[-1,-7],[3,-5],[2,-7]],[[6365,3871],[-4,0],[0,-3],[-5,-2],[0,-2]],[[6438,3832],[-1,-2],[0,-8]],[[6437,3822],[-4,4],[-2,5],[-3,1],[-4,-1],[0,-3],[-2,-1],[-1,-5],[-2,-2],[-2,0],[-5,4],[-2,-2],[-2,1],[-7,7],[0,7],[-5,9],[-3,0],[-18,0],[-1,6],[-7,9],[-2,7],[0,3]],[[9107,3848],[-11,-30]],[[9096,3818],[-3,4],[-7,-11]],[[9086,3811],[-3,7],[-8,2],[-1,9],[-6,8]],[[9068,3837],[-2,1],[-8,-1],[-3,3],[-1,3],[-3,3],[0,7],[3,5],[1,8]],[[7801,3851],[-21,0],[0,-14]],[[7780,3837],[-42,0]],[[7738,3837],[0,33],[-19,1]],[[7710,3871],[-12,-47],[0,-5]],[[7698,3819],[-14,2],[-7,-1],[-5,1],[-4,5],[-2,1],[-3,9]],[[8280,3832],[-1,56]],[[8315,3848],[-10,0],[0,-10]],[[8305,3838],[-4,-2],[-1,-5],[-20,0],[0,1]],[[8280,3832],[-22,-1]],[[8258,3831],[-4,0],[-1,56]],[[8258,3831],[0,-8]],[[8258,3823],[-33,-1]],[[8225,3822],[0,35]],[[8919,3870],[-2,-9],[-3,-9],[0,-5],[-4,-8],[0,-13],[2,-14],[-2,-12],[-3,-7],[-1,-6]],[[8906,3787],[-10,15],[-10,11]],[[8886,3813],[0,6]],[[8886,3819],[3,10],[0,3],[0,5],[0,3],[-3,1],[0,3],[2,5],[0,3],[1,5],[2,6],[-4,1],[-1,0],[-1,-2],[-3,2],[0,-3],[-3,0],[-4,-1],[-2,1]],[[9307,3879],[3,-1],[0,-7],[-16,-42],[-6,-7],[0,-6],[-8,3],[7,27],[-3,11]],[[9068,3837],[-20,-41]],[[9048,3796],[0,1],[-1,5],[-3,2],[-3,7],[-3,0]],[[9038,3811],[-27,16]],[[9011,3827],[2,4],[2,0],[2,7],[2,2],[1,6],[2,3]],[[8395,3881],[0,-38]],[[8395,3843],[-2,0],[-5,-6],[0,-5],[1,-2]],[[8389,3830],[-2,-3],[-4,0],[-2,-5],[-3,0],[-2,-2],[-3,-1],[-2,-7],[-1,1],[-4,-3],[0,2],[-1,1]],[[8365,3813],[6,69]],[[5232,3853],[0,-9]],[[5232,3844],[0,-7]],[[5232,3837],[-12,0],[-2,-6],[-1,0],[-2,-2],[-4,0],[-1,-2],[-16,2],[-4,-11],[-4,-7],[-6,-3],[-7,9],[-2,4],[-2,1],[-3,2],[-7,-1],[-3,-4],[0,-6],[-7,3],[-1,-5],[-4,-3],[-6,-1],[0,-5],[-1,-10],[-3,-5],[-3,-10],[-1,-8]],[[5130,3769],[-31,3]],[[5099,3772],[0,7],[1,0],[0,31],[5,0],[0,13]],[[8445,3875],[-6,-11],[1,-2],[3,1],[1,-2],[-2,-4],[-2,-30]],[[8440,3827],[-3,4],[-4,-1],[-3,2],[0,9],[-2,5],[-4,-2],[-3,-2]],[[8421,3842],[-7,-4],[-2,1]],[[8412,3839],[-4,2],[-7,10],[-4,-7],[-2,-1]],[[7216,3817],[0,47]],[[7266,3848],[0,-32]],[[7266,3816],[-50,1]],[[8365,3813],[0,-2]],[[8365,3811],[-6,-1],[0,-2]],[[8359,3808],[-22,0]],[[8337,3808],[0,53]],[[5099,3772],[-10,1]],[[5089,3773],[0,7],[-1,2],[-6,-3],[-1,1],[0,4],[-3,3],[-1,6],[-2,6],[0,1],[-3,-2],[-1,1],[-1,1],[-2,2],[4,5],[-2,0],[-2,1],[-1,2]],[[8843,3868],[1,-4],[-2,-3],[1,-4],[-2,-8],[1,-3]],[[8842,3846],[0,-2],[-2,-3],[-1,-4],[-3,-18],[-15,-6]],[[8821,3813],[2,9],[-1,8],[-6,1],[-4,9],[-4,2],[-1,4]],[[7614,3811],[0,-1]],[[7614,3810],[-31,1],[0,-4],[-25,0]],[[7558,3807],[0,44]],[[9191,3808],[-13,5]],[[9178,3813],[-1,-4],[-8,11],[8,26]],[[9209,3851],[0,-1],[-4,0],[-5,-4],[0,-5],[0,-2],[-3,-7],[0,-4],[-4,-4],[-1,-5],[-1,-11]],[[9161,3807],[-1,12],[-4,-3],[3,-4],[-1,-5],[-2,2],[1,-8],[-4,-4],[2,20],[5,14],[5,-10],[0,-12],[-3,4],[-1,-6]],[[8886,3819],[-2,-2],[-4,2],[-5,0],[-2,1],[-2,-1],[-24,12],[1,6],[-1,4],[-2,3],[-3,2]],[[9011,3827],[-4,-6]],[[9007,3821],[-5,6],[-4,0],[-5,4]],[[8463,3780],[-3,0],[-8,3],[-5,5]],[[8447,3788],[0,13]],[[8447,3801],[-3,7],[-2,4],[-2,15]],[[8468,3871],[-5,-91]],[[5273,3840],[-17,1],[0,1],[-4,0],[0,2],[-20,0]],[[8175,3856],[0,-49]],[[8175,3807],[0,-1],[-25,1]],[[8150,3807],[0,4],[0,7],[-1,2],[-4,3],[0,14],[-2,4],[-3,0],[0,2],[-2,3],[0,3],[0,2],[2,6]],[[7915,3823],[-13,0],[0,-14]],[[7902,3809],[-3,0],[-9,9],[-5,-1]],[[6437,3822],[3,0],[3,-5],[2,-7],[2,-3],[5,0],[9,-3],[0,-5],[-4,-7],[-1,-3],[-4,-1],[0,-18],[-1,-3],[0,-2],[1,-7],[4,-6],[3,-4],[0,-14],[0,-4],[5,-2],[1,-4],[3,-1],[0,-9]],[[6468,3714],[0,-1],[-67,0],[0,-51]],[[6401,3662],[-52,0]],[[6349,3662],[-2,17],[-3,12]],[[6344,3691],[12,0],[0,69]],[[6356,3760],[0,104]],[[7738,3837],[-2,-1],[-1,-26],[-2,-6],[0,-2],[0,-2],[3,-11],[-5,-16],[-2,-3],[0,-3],[2,-4],[0,-3],[-2,-6]],[[7729,3754],[-5,4],[-2,3],[-5,1],[0,8],[-5,2]],[[7712,3772],[0,7],[0,5],[0,4],[-2,2],[-5,9],[-2,9]],[[7703,3808],[-5,11]],[[8494,3753],[-6,5],[-1,7],[-5,4],[-1,5],[-6,5]],[[8475,3779],[-4,3],[-8,-2]],[[8497,3827],[-3,-74]],[[8959,3836],[-3,-6],[2,-2],[-1,-1],[-4,-9],[-3,3],[-1,-8],[-3,-4],[-4,-2],[0,3],[-1,0],[-1,-3],[-4,-5],[-2,-10],[-5,-12]],[[8929,3780],[-12,13],[-3,-6],[-2,-3],[0,-5]],[[8912,3779],[-6,8]],[[7514,3792],[0,39]],[[7514,3831],[0,15]],[[7558,3807],[0,-16]],[[7558,3791],[-44,1]],[[9135,3861],[-3,-2],[1,-6],[3,8],[13,-15],[-5,-39],[-7,-28],[3,-11]],[[9140,3768],[-9,3],[-1,8],[0,1],[-5,-2],[-1,-4]],[[9124,3774],[-2,8],[1,2],[0,3],[3,19],[-1,3],[1,2],[-2,5],[0,6],[-2,2],[-3,7],[-4,1],[-1,5],[-2,1],[0,3],[-1,1]],[[7867,3811],[-1,0],[0,-3],[-2,0],[0,-1],[-2,1],[0,3],[-5,-2],[-2,-2],[0,-5],[-7,1],[-5,-1],[-2,2],[0,-4]],[[7841,3800],[-14,1],[0,9],[-7,1],[0,11],[-7,1]],[[7813,3823],[2,28]],[[8005,3773],[-10,1]],[[7995,3774],[0,52],[0,2]],[[8035,3866],[0,-58],[9,0]],[[8044,3808],[0,-17]],[[8044,3791],[-39,-1],[0,-17]],[[7345,3831],[0,-32]],[[7345,3799],[-37,-1]],[[7308,3798],[-3,1],[0,20],[-2,-2],[0,31]],[[7434,3833],[0,-35]],[[7434,3798],[-40,1]],[[7394,3799],[0,42],[-2,5],[-2,0],[0,2],[-3,-2],[-2,1]],[[8075,3858],[0,-50]],[[8075,3808],[-31,0]],[[7216,3817],[0,-19]],[[7216,3798],[-51,0]],[[7165,3798],[0,49],[0,1]],[[6356,3760],[-79,2]],[[7394,3799],[0,-27]],[[7394,3772],[-37,0]],[[7357,3772],[-2,0],[0,17],[-10,1],[0,9]],[[8608,3830],[-2,-37],[-10,3],[0,-4]],[[8596,3792],[-7,1]],[[8589,3793],[-11,3],[0,15],[-3,1]],[[8575,3812],[2,41]],[[8670,3842],[-3,-3],[-3,0],[-1,-2],[1,-6],[4,-4],[-1,-8],[2,-9],[-2,-1],[-4,4],[-1,-2],[-2,-9],[-3,-1],[-2,1]],[[8655,3802],[-1,2],[3,7],[-3,11],[-1,0],[-3,0],[-2,5],[-4,0],[-2,-5],[-2,-2],[-2,-4]],[[8638,3816],[1,8],[-21,3],[1,2]],[[7514,3831],[-24,0],[-2,-9]],[[8337,3808],[-9,-1],[0,-5],[-2,0],[-1,-4],[-3,0],[0,-6],[-1,-1],[0,-2],[-5,0],[0,-1]],[[8316,3788],[-3,3],[-2,0],[-5,-4]],[[8306,3787],[-1,51]],[[8533,3827],[-3,4],[-1,2],[-6,-1]],[[8575,3812],[-35,5],[-3,10],[-4,0]],[[8149,3798],[-33,-1]],[[8116,3797],[-4,0]],[[8112,3797],[0,62]],[[8150,3807],[-3,-7],[2,-2]],[[8112,3797],[-28,0]],[[8084,3797],[-9,1],[0,10]],[[8723,3831],[-11,-20],[0,-3]],[[8712,3808],[-6,-2],[-9,7],[-4,-2],[-1,-2]],[[8692,3809],[-1,3],[-2,4],[0,4],[1,2],[-1,4],[-4,3]],[[8225,3822],[0,-15]],[[8225,3807],[-19,-1]],[[8206,3806],[-19,0]],[[8187,3806],[-12,1]],[[8800,3843],[-1,-17],[-2,-4],[2,-6],[-3,-5],[0,-2],[-3,-7],[-2,-11],[-1,-11],[2,-8]],[[8792,3772],[-1,0],[-3,0],[-1,1]],[[8787,3773],[1,8],[-2,1],[0,2],[-2,0],[0,7],[-5,7],[0,-1],[-4,1],[-1,4],[-2,4]],[[8772,3806],[-9,21],[-2,15]],[[5682,3763],[0,-120],[-80,0],[0,-231]],[[5602,3412],[0,-159]],[[5602,3253],[-115,182]],[[5487,3435],[0,197],[-4,10],[-3,0],[0,3],[-41,76]],[[5439,3721],[-44,83],[1,20],[29,15]],[[7799,3769],[-5,-2],[-7,-5],[-2,1],[-5,4]],[[7780,3767],[0,70]],[[7813,3823],[0,-30],[-12,3],[-2,-27]],[[8389,3807],[0,3],[3,6],[1,5],[-1,5],[-3,4]],[[8412,3839],[1,-35],[-1,-19]],[[8412,3785],[-2,2],[-2,-5],[-1,0]],[[8407,3782],[-8,10],[0,1],[-1,3],[-1,3]],[[8397,3799],[0,3],[-1,2],[-5,2],[-2,1]],[[9212,3791],[1,-33]],[[9213,3758],[-6,4],[-2,1],[-1,4],[-4,0],[-4,0],[-3,-5],[-2,0]],[[9191,3762],[-6,10],[3,9],[2,1],[1,0],[5,6],[-1,3],[-2,1],[0,1],[0,3],[0,2],[-2,4],[0,6]],[[6929,3767],[-33,0]],[[6896,3767],[0,81]],[[6957,3848],[-2,-81]],[[6955,3767],[-26,0]],[[7066,3765],[-50,0]],[[7016,3765],[0,82]],[[7067,3848],[-1,-83]],[[7116,3848],[0,-83]],[[7116,3765],[-49,-1]],[[7067,3764],[-1,1]],[[7016,3765],[-8,0]],[[7008,3765],[-40,2]],[[6968,3767],[-13,0]],[[9124,3774],[0,-6],[1,-14],[1,-7],[0,-13]],[[9126,3734],[-5,6],[-2,12],[-10,8],[-5,-1],[-4,2],[-4,-3],[-4,-6],[-3,15]],[[9089,3767],[1,2],[2,0],[1,1],[0,13]],[[9093,3783],[12,20],[-9,15]],[[6845,3765],[0,66]],[[6896,3767],[-7,-2]],[[6889,3765],[-44,0]],[[7165,3798],[0,-34]],[[7165,3764],[-49,1]],[[7266,3748],[0,68]],[[7308,3798],[0,-10],[-1,-1],[-2,-39]],[[7305,3748],[-39,0]],[[6665,3731],[-78,1]],[[6587,3732],[0,26]],[[6587,3758],[-2,27],[-10,0],[0,14],[3,0],[0,48]],[[6587,3758],[-27,0],[0,7],[-8,0]],[[8886,3813],[-4,-5],[-7,1],[2,-2],[-2,-5],[-2,0],[-3,0],[0,-4],[-2,-6],[3,-5],[0,-4],[-3,-10],[-5,-10],[0,-2],[-2,1]],[[8861,3762],[-1,0],[-3,2],[-1,-4],[-2,2],[-3,0],[-2,10],[-2,0],[-2,-3],[-4,-21],[-2,-4],[0,-5],[-14,-18],[-8,2],[-12,-15]],[[8805,3708],[6,24],[-9,35]],[[8802,3767],[4,7],[9,3],[1,1],[2,14],[0,12],[1,3],[-1,3],[1,2],[2,1]],[[8447,3801],[-16,-14]],[[8431,3787],[-1,2],[-4,1],[0,6],[0,3],[2,7],[-2,6],[2,4],[1,4],[-3,0],[0,3],[-1,4],[-1,6],[-3,9]],[[8802,3767],[-3,-2],[-3,7],[-4,0]],[[8772,3806],[-2,-4],[-1,1],[-1,-2],[-1,3],[-28,-33]],[[8739,3771],[-2,6],[-3,4],[-1,3],[3,6],[1,3],[-1,15],[1,3],[-1,7],[-2,4],[1,4]],[[5292,3733],[-22,34]],[[5270,3767],[-28,42]],[[5242,3809],[-10,14],[0,14]],[[8972,3791],[-5,-8],[-3,-9],[-3,-3],[-4,1],[-3,-5],[-3,-15],[-2,-3]],[[8949,3749],[-20,31]],[[8979,3827],[-1,-4],[1,-2],[-1,-1],[0,-1],[2,-3],[0,-5],[-3,-7],[-1,-4],[-4,-9]],[[8692,3809],[0,-2],[-2,-3],[1,-17],[-3,-26],[2,-11]],[[8690,3750],[-4,-6],[-6,-4],[1,2],[-2,0],[-5,10]],[[8674,3752],[-4,12],[-3,-1]],[[8667,3763],[-3,6],[2,3],[-11,30]],[[8431,3787],[-12,-4]],[[8419,3783],[-5,0],[-2,2]],[[5374,3612],[-66,100]],[[5439,3721],[-58,-110],[-7,1]],[[8297,3771],[-2,1],[0,5],[-1,-3],[-2,4],[-2,0],[-2,-1],[-1,2],[-3,0],[-4,3],[-6,0],[-4,1],[-5,-2],[-3,0]],[[8262,3781],[0,42],[-4,0]],[[8306,3787],[-1,0],[-1,-4],[-2,-2],[-1,-9],[-2,-1],[-2,0]],[[7752,3748],[-2,-1],[-5,-5],[-5,-1],[-7,3],[-2,4],[-2,6]],[[7780,3767],[-9,1],[-1,-3],[-4,-2],[-5,-1],[-9,-14]],[[7474,3772],[-40,0]],[[7434,3772],[0,26]],[[7474,3820],[0,-48]],[[5242,3809],[0,-2],[1,-3],[0,-6],[-2,-2],[0,-6],[-5,-8],[-11,-15]],[[5225,3767],[-3,-2],[-2,-8],[-7,-8],[-2,-6],[-3,0],[-1,-4],[-4,-2],[-4,0],[-5,-5],[-4,0],[-3,-2],[-7,-1],[-7,2],[-7,7],[-5,1],[-2,2],[-5,-8],[-2,-1],[-3,-2],[-1,2],[-7,-3]],[[5141,3729],[-10,41],[0,-2],[-1,1]],[[9058,3782],[-1,3],[-5,-1],[0,4],[0,1],[-1,3],[-3,0],[0,4]],[[9086,3811],[-5,-8]],[[9081,3803],[-2,-1],[0,-2],[4,-1],[0,1]],[[9083,3800],[4,-4]],[[9087,3796],[-4,-6],[0,-5],[5,2],[5,-4]],[[9089,3767],[-3,-5],[-1,-4]],[[9085,3758],[-6,-6],[0,8],[-3,-2]],[[9076,3758],[-3,7],[-4,2],[-2,3],[-2,1],[-3,-1],[0,4],[-1,4],[-1,-4],[-2,8]],[[9071,3800],[-2,-1],[-3,-1],[-1,-6],[6,-2],[1,1],[1,0],[0,9],[-2,0]],[[7673,3764],[-20,3]],[[7653,3767],[1,43]],[[7703,3808],[-10,-44],[-20,0]],[[6494,3765],[5,-4],[0,-4],[2,-7],[0,-7],[-5,-14],[-7,-9]],[[6489,3720],[-4,2],[0,-2],[-1,-6],[-16,0]],[[8533,3827],[0,-78]],[[8533,3749],[-1,-1],[-2,0],[-1,1],[-1,4],[-4,6],[-7,2],[-4,4],[-3,2],[-8,-5],[-1,-1],[-1,-8]],[[8500,3753],[-1,-1],[-2,-1],[-3,2]],[[8739,3771],[-5,-10]],[[8734,3761],[-4,-10]],[[8730,3751],[-2,3],[-2,-1],[-3,4],[-1,5],[0,9],[-1,7],[-3,4],[1,2],[-3,0],[2,7],[-2,5],[-1,1],[1,2],[-2,4],[1,1],[-3,4]],[[7514,3792],[0,-19]],[[7514,3773],[-40,-1]],[[5972,3728],[-27,0],[0,2],[-40,0]],[[5905,3730],[0,13]],[[6014,3730],[-39,0],[-3,-2]],[[9007,3821],[-4,-10],[-2,-1],[-1,-3],[1,-4],[0,-1],[-2,0],[-2,0],[-1,0],[-2,-4]],[[8994,3798],[-2,-6],[-4,-10],[-4,-3],[-2,1],[0,-1]],[[8982,3779],[-1,4],[-3,1],[-6,7]],[[6845,3765],[0,-15]],[[6845,3750],[-101,-1]],[[8638,3816],[-3,-10],[-1,-14],[-4,-5],[-3,-5],[4,-14],[0,-6],[1,-9],[-1,-5],[-4,-3]],[[8627,3745],[-4,2],[-3,-3]],[[8620,3744],[-5,0],[1,18],[-11,1],[0,9],[-2,1],[0,7],[-7,1],[0,11]],[[8389,3807],[-24,0],[0,4]],[[7995,3774],[-31,-1]],[[7964,3773],[0,27],[-4,0],[0,23]],[[8667,3763],[-16,-4],[-9,-11],[1,-24]],[[8643,3724],[-16,21]],[[8573,3743],[-2,5],[-1,10],[-2,5],[1,7],[-1,4],[-4,0],[-4,-4],[-5,-1]],[[8555,3769],[-3,-5],[-4,-3],[-3,-10],[-4,-2],[-5,3],[-3,-3]],[[8589,3793],[-1,-19],[-3,0],[0,-10],[-2,-2],[-5,0],[0,-4],[2,-10],[-7,-5]],[[9038,3811],[-2,-9],[-3,-1],[-1,-9],[16,-50]],[[9048,3742],[-7,-19],[0,-9],[-1,-1]],[[9040,3713],[-3,0],[-3,1],[-1,-1],[-2,-1],[-2,2],[-2,7],[-2,11],[-6,11],[0,5],[1,3],[-2,3],[0,4],[-1,4],[-2,-1],[1,2],[-1,4],[-3,0]],[[9012,3767],[-5,3],[0,3],[-3,6],[1,4],[-1,4],[-1,0],[-1,1],[-8,10]],[[7964,3773],[0,-13],[-11,-1]],[[7953,3759],[-42,1]],[[7911,3760],[-2,7],[2,4],[2,10],[3,2],[2,4]],[[7918,3787],[0,4],[-2,6],[-10,10],[-4,2]],[[7841,3800],[0,-62]],[[7841,3738],[-5,3],[-4,8],[-1,0],[-6,-1],[-5,2],[-2,2],[-3,7],[-3,5],[-4,3],[-3,0]],[[7805,3767],[-6,2]],[[8259,3764],[-33,-1]],[[8226,3763],[-1,44]],[[8262,3781],[-1,-2],[-1,-6],[-1,-1],[0,-8]],[[9093,3783],[1,5],[-1,3],[0,1]],[[9093,3792],[0,6],[-3,4],[0,6],[-4,3]],[[7918,3787],[-2,3],[-5,0],[-7,7],[-2,5],[-3,1],[-2,-2],[-2,-9],[-3,-2],[-2,2],[-2,-1],[-5,-12],[-3,-8],[-2,-6],[-4,-2],[-3,2],[-4,-3],[0,-2],[-5,-7]],[[7862,3753],[-5,-10],[-2,2],[0,-1],[-9,-7],[-5,1]],[[7266,3748],[-50,0]],[[7216,3748],[0,50]],[[9249,3812],[11,-25],[9,0],[4,-67]],[[9273,3720],[-2,0]],[[9271,3720],[-3,0]],[[9268,3720],[-23,1]],[[9245,3721],[-31,1],[-1,18]],[[9213,3740],[0,18]],[[8912,3779],[-3,-11],[0,-8],[-3,1],[0,-1],[-10,-35]],[[8896,3725],[-3,-8],[-4,-5]],[[8889,3712],[-16,10],[-5,18],[-9,7]],[[8859,3747],[2,2],[-1,4],[1,5],[0,4]],[[9191,3762],[0,-4],[-2,-6],[-1,-5],[-4,-4]],[[9184,3743],[0,9],[-1,-5],[-4,3],[-3,18],[-5,0],[-4,12],[-4,1],[-6,-18],[-2,4],[7,25],[7,-12],[3,3],[5,19],[2,1],[-1,1],[0,9]],[[8730,3751],[-5,-10],[-5,-8]],[[8720,3733],[-2,1],[-5,-2],[-2,2],[-16,4],[-4,9],[-1,3]],[[7612,3731],[0,9]],[[7612,3740],[2,70]],[[7653,3767],[-1,-33]],[[7652,3734],[-19,3],[0,-7],[-21,1]],[[9076,3758],[-7,-29]],[[9069,3729],[-7,3],[-4,11],[-5,5],[-5,-6]],[[9054,3782],[-2,-1],[-2,-9],[0,-2],[2,-2],[-1,4],[0,1],[2,-2],[0,1],[2,0],[2,7],[-2,2]],[[9055,3781],[3,-2],[0,3]],[[9058,3782],[-1,0],[0,-1],[-2,1],[0,1],[-1,0],[0,-1]],[[7612,3740],[-49,2]],[[7563,3742],[-5,0],[0,17],[-2,0],[2,32]],[[9093,3792],[-4,4],[-2,-4],[0,4]],[[9083,3800],[-2,3]],[[8397,3799],[-3,-7],[0,-8],[-14,-2],[-4,-2]],[[8376,3780],[-4,-3],[-5,-8],[-4,-2],[-4,0]],[[8359,3767],[0,41]],[[5089,3773],[-3,-10],[3,-5],[3,-4],[1,-6],[3,0],[0,-1],[0,-13],[-1,-2],[0,-1],[-2,-2],[0,-4],[3,-2],[0,-2],[0,-3],[-1,-4],[1,-4],[-1,-7],[-2,-3],[-1,-2],[-1,-5],[-2,0]],[[5089,3693],[-10,0],[0,39],[-1,5],[-7,-5],[-6,2],[-7,-1],[0,-1],[-4,-4],[-3,-1],[-5,3],[-3,0]],[[5043,3730],[-3,17],[-1,3],[-2,1],[0,6],[-1,3],[-3,7],[-3,16],[-4,8],[0,1],[-7,1],[-3,3]],[[5266,3699],[-3,1],[-4,3],[0,6],[-2,4],[-2,0],[-5,-3],[-4,-7],[-3,-1],[-12,15]],[[5231,3717],[-3,3],[-3,-2],[0,12]],[[5225,3730],[0,37]],[[5270,3767],[-4,-7],[0,-10],[5,-19],[2,-6],[-2,-3],[0,-10],[0,-2],[-5,-2],[0,-5],[0,-4]],[[8359,3767],[-5,7],[-6,-1]],[[8348,3773],[-8,0],[-2,-2],[-1,-4],[3,-22]],[[8340,3745],[-5,-1],[0,3],[-2,0],[0,1],[-7,0]],[[8326,3748],[0,14],[-3,0],[0,5],[-4,0],[0,4],[-3,1],[0,16]],[[7712,3772],[-9,-59]],[[7703,3713],[-12,1]],[[7691,3714],[-18,34],[0,16]],[[8084,3797],[0,-23],[-2,-1],[0,-13],[0,-3],[0,-6],[2,-2]],[[8084,3749],[-40,1]],[[8044,3750],[0,41]],[[8138,3743],[2,4],[2,1],[0,4],[0,5],[3,5],[4,2],[3,9],[0,8],[-2,1],[2,3],[-3,13]],[[8187,3806],[0,-2],[-2,-1],[0,-2],[0,-1],[0,-2],[-1,-5],[-4,0],[0,-4],[-2,-2],[-3,1],[0,-5],[-2,-1],[2,-2],[0,-7],[-2,-1],[0,-4],[-2,-4],[2,-2],[2,-3],[0,-5],[0,-1],[0,-14]],[[8175,3739],[-2,-7],[-2,-1],[-7,7],[0,-1],[0,-5],[0,-1],[-3,6],[-2,-3],[0,3],[-2,-4],[-3,1]],[[8154,3734],[-2,-6],[-2,0],[0,2],[-1,0],[-2,-3],[-2,1],[-2,-5],[0,-3],[-3,-1],[-2,2],[-2,-2],[0,-2],[-3,-4],[-2,0]],[[8131,3713],[0,6],[-2,2],[0,2],[7,2],[0,4],[2,0],[2,2],[-2,7],[0,5]],[[8226,3763],[0,-31]],[[8226,3732],[-14,0],[-5,-4],[-3,0]],[[8204,3728],[0,59],[2,0],[0,19]],[[8204,3728],[-3,-1],[-1,2],[-2,2],[-7,-1]],[[8191,3730],[-4,4],[-2,0],[-1,-2],[-4,7],[-5,0]],[[8787,3773],[-5,-15],[-14,-26]],[[8768,3732],[0,1],[-4,1],[-4,-2],[-4,10],[-8,-11]],[[8748,3731],[-2,6],[-2,5],[-1,2],[-3,3],[-1,5],[-5,9]],[[7897,3708],[0,5],[0,7],[-5,1],[-2,4],[2,2],[0,1],[-18,1],[-1,-6],[-4,2],[-2,-7],[0,1],[-1,4],[-4,-1]],[[7862,3722],[0,31]],[[7918,3787],[-5,-4],[-2,-4],[-5,-7],[-5,-10],[-2,-18],[5,-10]],[[7904,3734],[0,-2]],[[7904,3732],[-3,-18],[-4,-6]],[[8424,3737],[-5,46]],[[8447,3788],[-1,-1],[1,-39],[2,0],[0,-3],[-2,-1]],[[8447,3744],[-15,-3],[-2,1],[-1,-8],[-3,-1],[-2,4]],[[8407,3782],[-10,-1],[0,-11]],[[8397,3770],[-2,1],[-6,-4],[-2,-5],[-4,-1]],[[8383,3761],[-2,2],[-5,17]],[[7357,3772],[0,-41]],[[7357,3731],[-42,0]],[[7315,3731],[-10,1],[0,16]],[[7434,3772],[0,-8],[-2,0],[2,-50]],[[7434,3714],[-40,0]],[[7394,3714],[-2,51],[2,0],[0,7]],[[7216,3748],[0,-17]],[[7216,3731],[-49,0]],[[7167,3731],[0,33],[-2,0]],[[9012,3767],[-14,-19],[-6,-14],[-2,-2],[-2,2],[-2,0]],[[8986,3734],[-10,18]],[[8976,3752],[2,6],[0,6],[-1,5],[1,2],[0,1],[3,2],[1,5]],[[8138,3743],[-22,0]],[[8116,3743],[0,54]],[[8116,3743],[-4,0]],[[8112,3743],[-17,0]],[[8095,3743],[0,5],[-11,1]],[[5043,3730],[-3,-17],[6,-10],[1,-8],[-1,-2],[-11,0],[-2,-3],[2,-2],[-2,-3],[2,-2],[-2,-1],[3,-4],[-3,-9],[2,-3],[0,-2],[-7,0]],[[5028,3664],[-5,8],[-1,-2],[4,-6]],[[5026,3664],[-10,0]],[[5016,3664],[0,5],[3,2],[3,0],[-3,10],[0,2],[-3,10],[-4,9],[0,3],[-1,3],[-2,3],[0,9],[-5,3],[-2,9],[-7,11],[0,5],[2,12],[0,2]],[[5016,3664],[-2,-10],[-6,0],[-4,9]],[[5004,3663],[-2,6],[-7,-1],[-7,4],[-1,0],[-15,21],[-5,-1],[-1,1],[-4,-3]],[[4962,3690],[-4,-1],[-6,28],[-17,21],[-21,41]],[[8949,3749],[-4,-17],[1,-2],[2,-2],[2,0],[1,-5],[5,-4],[1,-5],[3,0],[3,-1]],[[8963,3713],[-6,-18],[-5,-2],[-4,-5],[0,-3]],[[8948,3685],[-1,-3],[-5,-3],[-4,-6]],[[8938,3673],[-11,18],[-3,0],[-28,34]],[[8931,3719],[-3,4],[-4,-10],[2,-5],[3,5],[2,0],[0,6]],[[8620,3744],[-1,-21],[-1,-5],[-6,-4],[-2,0],[-7,-4]],[[8603,3710],[-5,-1],[-2,1],[-1,2]],[[8595,3712],[-3,11],[-5,6]],[[8587,3729],[-2,8],[-4,3],[-6,0],[-2,3]],[[7563,3742],[0,-24]],[[7563,3718],[-3,2],[-2,-1],[-2,1],[-3,-2],[-2,0],[-3,1],[-2,2],[-2,0],[-5,2],[-26,0]],[[7513,3723],[1,50]],[[8044,3750],[0,-27]],[[8044,3723],[-39,1]],[[8005,3724],[0,5]],[[8005,3729],[0,44]],[[8326,3748],[-20,0],[0,-3],[-2,-3],[0,-2],[-3,0]],[[8301,3740],[0,2],[-3,0],[-1,29]],[[8976,3752],[-1,-1],[-3,-6],[-1,-5],[-4,-8],[-1,-9]],[[8966,3723],[-3,-10]],[[8475,3779],[-7,-32]],[[8468,3747],[-2,-3],[-1,1],[-1,-1],[-1,4],[-3,0],[-6,-9],[-2,0],[-5,-1]],[[8447,3738],[0,1],[2,3],[-2,2]],[[8424,3737],[-1,-7],[-4,0],[-2,-3]],[[8417,3727],[-2,-3]],[[8415,3724],[-4,3],[-3,3],[1,2],[-2,1],[0,6],[-9,11],[-1,20]],[[7911,3760],[0,-11],[-5,-8],[-2,-7]],[[9055,3781],[-1,1]],[[8301,3740],[0,-2],[-1,-1],[0,-6],[-2,0],[0,-3],[-6,0],[-1,-3],[-3,-1],[0,-13]],[[8288,3711],[-3,0]],[[8285,3711],[-21,1]],[[8264,3712],[-4,0]],[[8260,3712],[-1,52]],[[9140,3768],[1,-36],[11,-24],[-2,-8],[-1,-7],[-5,5],[-4,13],[-11,9]],[[9129,3720],[-2,5],[-1,3]],[[9126,3728],[0,6]],[[8383,3761],[-1,-3],[-6,-5],[-5,-5]],[[8371,3748],[-9,-1]],[[8362,3747],[-4,1],[-1,4],[-9,21]],[[8500,3753],[1,-2],[-2,-17]],[[8499,3734],[-19,-11],[-6,5]],[[8474,3728],[-2,3],[-2,13],[-2,3]],[[8587,3729],[-9,-11],[0,-5],[-4,-7]],[[8574,3706],[-10,5],[-5,-1],[-4,8],[-1,4],[-7,5],[-4,3]],[[8543,3730],[1,4],[2,4],[3,5],[1,5],[0,4],[4,9],[1,8]],[[7955,3713],[-2,46]],[[8005,3729],[-10,1],[-4,-1],[-5,2],[-3,-4],[-4,1],[-2,-1],[-3,-4],[-4,2],[0,-2],[-3,2],[-4,-2],[-1,-3],[-2,-2],[-2,0],[0,-4],[-3,-1]],[[8805,3708],[-7,-10],[-3,3],[0,-23]],[[8795,3678],[-7,6]],[[8788,3684],[-16,19],[-1,-2],[-3,9],[2,3],[-5,16],[3,3]],[[8362,3747],[-10,-18],[-4,-1]],[[8348,3728],[-2,4],[-7,2]],[[8339,3734],[1,7],[0,4]],[[5141,3729],[0,-39]],[[5141,3690],[-7,-2],[-6,-5],[-4,-2],[-7,1],[-3,-4],[-8,0],[-3,5],[-3,0],[-4,-13],[-1,-6],[-3,-4]],[[5092,3660],[-10,-8],[0,13]],[[5082,3665],[2,4],[4,2],[1,8],[0,7],[0,7]],[[7513,3723],[0,-15]],[[7513,3708],[-39,0]],[[7474,3708],[0,64]],[[7752,3748],[-7,-8],[2,-10],[-2,-6],[-3,-1],[-4,-2],[-2,2],[-3,0],[0,-5],[3,-6],[2,-4],[-2,-2],[-3,-1],[-2,-2],[0,-5]],[[7731,3698],[-3,0],[-2,-4],[-4,4],[-10,0],[0,15],[-9,0]],[[8859,3747],[-2,-8],[0,-7],[-2,-4],[1,-14],[-4,-6],[-1,-7],[-2,1],[-4,-9],[0,-3],[1,-2],[0,-4]],[[8846,3684],[-4,-2],[-7,-14],[0,-4],[-2,-9],[1,-2],[-3,-7]],[[8831,3646],[-13,-2],[-5,-2],[-9,1],[-10,12],[1,23]],[[7394,3714],[-2,-49]],[[7392,3665],[-35,-1]],[[7357,3664],[0,67]],[[7474,3708],[-40,0]],[[7434,3708],[0,6]],[[8415,3724],[-4,-7],[-11,-17]],[[8400,3700],[-5,-2],[-6,4]],[[8389,3702],[0,1],[-3,3],[1,7],[-3,4],[1,2],[-1,1],[-2,-7],[-1,1],[0,8],[-3,6],[1,4],[-3,-1],[-1,1],[1,7],[1,3],[-3,1],[-2,0],[-1,5]],[[8543,3730],[-3,-2],[1,-4],[-5,-10],[1,-13],[-4,-3],[-4,1],[-2,-4]],[[8527,3695],[-2,3],[-1,5],[-2,2],[-1,4],[-4,-1]],[[8517,3708],[-12,10],[0,9],[-1,2],[-3,1],[0,2],[-2,2]],[[7805,3767],[0,-54],[0,-40]],[[7805,3673],[-15,0],[0,-9]],[[7790,3664],[-10,0]],[[7780,3664],[0,24]],[[7780,3688],[0,79]],[[7780,3688],[-49,0]],[[7731,3688],[0,10]],[[9126,3728],[-2,0],[-2,3],[-1,0],[-5,-1],[-3,-10],[-1,-7],[-3,-5]],[[9109,3708],[-4,-18],[-6,5],[-2,19],[-21,-6],[-2,4],[-2,15],[13,31]],[[5374,3612],[51,-82]],[[5425,3530],[-82,0]],[[5343,3530],[-3,3],[-4,0],[-2,1],[0,3],[-2,3],[-2,4],[-10,8]],[[5320,3552],[-5,14],[0,5],[-3,11],[-7,1],[-4,-3],[-2,2]],[[5299,3582],[2,8],[4,3],[-1,7],[1,3],[-4,2],[0,6],[0,3],[-7,7],[0,3],[-2,7],[2,7],[-2,6],[0,4],[-8,5],[-1,-2],[-3,0],[-2,8],[0,4],[-1,0],[-1,-3],[-5,3],[0,6],[-5,0],[0,4],[0,5],[0,5],[-2,2],[0,3],[2,11]],[[7862,3722],[0,-14],[-5,-35]],[[7857,3673],[-28,-1]],[[7829,3672],[-21,0],[-3,0],[0,1]],[[9213,3740],[-1,-2],[-2,0],[-3,-8],[-4,-3],[0,-4],[-1,0],[-2,-3],[3,-1],[0,-2],[-3,-4],[0,-3],[0,-2],[-1,-2],[-1,-4]],[[9198,3702],[-1,3],[-6,-17],[-5,0],[-1,6],[-4,-11],[-21,34],[1,7],[9,14],[-6,10],[20,-5]],[[9040,3713],[0,-4],[1,-1],[0,-4]],[[9041,3704],[-2,-1],[1,3],[-1,0],[-3,-2],[0,-1],[-3,0]],[[9033,3703],[-3,2],[-1,3],[-2,1],[-1,-3],[1,-2],[-4,2],[-6,0],[0,2],[-2,-4],[-4,-1],[-2,0],[0,-3],[-2,1],[-3,-6],[0,-2],[-5,0],[-1,0]],[[8998,3693],[0,6],[-1,4],[2,7],[-3,3],[0,6],[-10,15]],[[5225,3730],[-7,-2],[-5,0],[-10,-5],[-9,0],[-7,-4],[-1,-6],[-8,-5],[0,-5],[-3,-5],[-11,-10],[-3,0],[-5,-5],[-4,-9],[-1,1],[-7,0]],[[5144,3675],[-3,15]],[[6969,3683],[-38,0]],[[6931,3683],[-2,0]],[[6929,3683],[0,84]],[[6968,3767],[1,-84]],[[7652,3684],[0,50]],[[7691,3714],[0,-14],[-5,0],[0,-26]],[[7686,3674],[-6,0],[0,-4],[-19,0],[4,4],[0,4],[-2,0],[-2,-4],[-1,-5],[-2,0],[-2,1],[0,2],[3,2],[-3,8],[-2,2],[-2,0]],[[6929,3683],[-38,0]],[[6891,3683],[-2,0]],[[6889,3683],[0,82]],[[7008,3682],[-39,1]],[[7008,3765],[0,-83]],[[7067,3764],[0,-65]],[[7067,3699],[0,-17]],[[7067,3682],[-57,0]],[[7010,3682],[-2,0]],[[6845,3683],[0,67]],[[6889,3683],[-44,0]],[[6587,3732],[-2,-49],[-9,0]],[[6576,3683],[-66,-1]],[[6510,3682],[-5,7],[-6,13],[-5,6],[-5,12]],[[7116,3765],[0,-65]],[[7116,3700],[-49,-1]],[[7167,3731],[-2,-49]],[[7165,3682],[-37,0]],[[7128,3682],[-12,0],[0,18]],[[8226,3708],[0,24]],[[8260,3712],[0,-4],[-34,0]],[[8674,3752],[-2,-4],[-2,-5],[0,-11],[2,-5],[0,-4],[-16,-15],[-1,-14]],[[8655,3694],[-6,-9],[-5,1],[-1,2],[1,10],[-1,6]],[[8643,3704],[0,20]],[[5767,3743],[0,-83]],[[5767,3660],[0,-104]],[[5767,3556],[0,-113]],[[5767,3443],[0,-30]],[[5767,3413],[-74,0],[0,2],[-3,0],[-74,0],[0,-3],[-14,0]],[[6344,3691],[0,7],[-45,0],[1,-5],[0,-5],[2,0],[0,-5],[7,0],[0,-2],[3,0],[1,-2],[3,-6],[0,-7],[0,-2],[-2,0]],[[6314,3664],[-98,-1]],[[6216,3663],[0,18],[0,47]],[[8748,3731],[5,-4],[0,-3],[-7,-11],[-30,-29]],[[8716,3684],[-4,39],[8,10]],[[7955,3713],[-2,-39]],[[7953,3674],[-16,1]],[[7937,3675],[-3,11],[0,2],[2,-2],[0,6],[-11,1],[0,2],[-10,16],[0,3],[-11,18]],[[8716,3684],[-7,-15],[-1,0],[-5,-42]],[[8703,3627],[-4,-1],[-2,3]],[[8697,3629],[0,5],[-3,12],[-1,0],[-1,-2],[-3,5],[0,1],[1,3],[-1,7],[-5,3],[-1,5],[-3,0],[-1,7],[-2,-1],[-5,4],[-1,-7],[-1,0],[-2,7],[-1,0],[0,-5],[-3,-1],[1,-3],[-1,0],[0,3],[-1,1]],[[8663,3673],[0,2],[0,-2]],[[8663,3673],[2,2],[-1,6],[2,2],[-3,10],[-4,-1],[-2,2],[-2,-1],[0,1]],[[8998,3693],[-3,-5],[-2,0],[-1,-4],[-1,1],[0,-3],[-3,-3],[-3,-1],[-4,6]],[[8981,3684],[-3,0],[-4,6],[1,3],[-2,0],[-5,10],[0,5],[-1,3],[1,7],[-2,5]],[[6845,3683],[-61,0]],[[6784,3683],[-59,0]],[[6725,3683],[-9,0]],[[6716,3683],[-2,47]],[[8095,3743],[-1,-60]],[[8094,3683],[-19,0]],[[8075,3683],[-31,0]],[[8044,3683],[0,40]],[[8339,3734],[-3,-2],[-4,-9],[-9,-4],[-3,-13]],[[8320,3706],[-1,-7],[-3,-9],[-5,-5],[-4,3]],[[8307,3688],[-1,2],[1,4],[2,7],[-4,8],[-15,0],[0,1],[-2,0],[0,1]],[[7266,3748],[0,-82]],[[7266,3666],[-31,-1]],[[7235,3665],[-18,0]],[[7217,3665],[-1,66]],[[8474,3728],[-6,-7],[2,-3]],[[8470,3718],[-2,-5],[-1,4],[-8,5]],[[8459,3722],[-7,5],[0,2],[-2,0],[1,1],[-1,2],[-3,6]],[[8389,3702],[-1,-1],[-3,2],[-4,-2],[-1,-6]],[[8380,3695],[-29,8]],[[8351,3703],[-4,8],[0,6],[-1,6],[2,5]],[[7315,3731],[0,-32],[-1,0],[0,-50]],[[7314,3649],[-28,0]],[[7286,3649],[0,16],[-20,1]],[[9069,3729],[-2,-12],[4,-14],[-3,-3]],[[9068,3700],[0,-7],[-3,-3],[1,-6],[1,-3]],[[9067,3681],[-1,1],[-2,-1]],[[9064,3681],[-4,1],[-2,3]],[[9058,3685],[-1,3],[-2,4]],[[9055,3692],[0,1],[-3,1],[-2,0],[-2,-2],[-2,6],[0,2],[0,1],[-5,-3],[0,1],[2,3],[-2,2]],[[8643,3704],[-1,1],[-3,-2],[-2,-2],[-5,-3],[-1,0],[-4,-6],[0,-4],[-1,-4],[0,-2],[-2,-1],[0,-3]],[[8624,3678],[-4,1],[0,7],[0,2],[3,3],[0,2],[-3,2],[-3,-1],[1,-2],[-1,-1],[-2,2],[-12,17]],[[8889,3712],[0,-7],[-2,-1],[0,-2],[-2,-3],[-3,-9],[-1,-4],[-1,-7],[-2,-6],[-3,1],[-3,-5]],[[8872,3669],[-19,5],[-7,10]],[[8459,3722],[-10,-19]],[[8449,3703],[-7,-11],[-2,0],[-4,-4],[-3,0],[-1,-2],[-3,2],[-1,-2]],[[8428,3686],[-3,22],[-2,4],[-4,6],[0,3],[-2,6]],[[5905,3730],[0,-8],[4,-8],[2,-4],[3,2],[0,-6],[4,-3],[1,-8],[2,-2],[-2,-7],[-3,-6],[3,-6],[-1,-1],[-4,-4],[-2,-8]],[[5912,3661],[-5,0]],[[5907,3661],[-140,-1]],[[8109,3683],[-15,0]],[[8112,3743],[0,-6],[0,-9],[0,-8],[0,-3],[0,-4],[-2,-3],[0,-5],[2,-4],[0,-11],[-3,-7]],[[8110,3680],[-1,3]],[[8131,3713],[-3,-8],[-6,-4],[0,-13],[-1,0],[-2,5],[-2,-3],[-1,-2],[0,3],[-1,0],[-5,-11]],[[7612,3731],[0,-58]],[[7612,3673],[-5,1],[0,-1],[0,-2],[-28,2],[-2,-1],[-1,1],[-13,0]],[[7563,3673],[-1,0],[1,45]],[[8788,3684],[-25,-35],[-15,4]],[[8748,3653],[0,7],[-1,1],[-1,-1],[0,3],[-2,0],[-1,1],[-1,5],[1,2],[-4,4],[-2,-1],[-1,-1],[-1,2],[-1,5],[-1,-5],[-1,-4],[-2,-1],[-4,8],[-4,0],[-6,6]],[[9245,3721],[2,-9],[-1,-6],[2,-4],[-1,-4],[-3,-5],[0,-5],[-23,-3]],[[9221,3685],[-1,3],[-3,1],[-3,-1],[-1,-5],[-2,0],[0,3],[-4,2],[-2,-5]],[[9205,3683],[-9,0],[2,19]],[[8191,3730],[0,-52]],[[8191,3678],[-20,1],[0,2],[-3,0]],[[8168,3681],[0,24],[-2,1],[-5,-1],[-2,12],[-2,0],[0,6],[-3,0],[0,11]],[[7653,3645],[-41,3]],[[7612,3648],[0,21],[0,4]],[[7652,3684],[-1,-15],[2,0],[0,-3],[0,-21]],[[8351,3703],[-3,-11],[-3,-1],[-4,0],[-1,-1],[-3,1],[-1,-2]],[[8336,3689],[-16,17]],[[8517,3708],[-1,-2],[0,-3],[-4,-2],[1,-7],[-3,-10],[-4,-10],[-5,-3],[-1,-2]],[[8500,3669],[-1,-1],[-1,3],[-2,1],[0,1],[-2,-1],[2,11],[-1,0],[-1,-2],[-1,1],[0,2],[-2,1],[0,3],[-3,2],[-3,-2],[-2,2],[-2,0]],[[8481,3690],[1,8],[-2,0],[-2,4],[-3,-1],[-1,10],[-4,7]],[[8168,3681],[0,-9],[-14,0],[0,-6]],[[8154,3666],[-19,0]],[[8135,3666],[0,6],[-11,0],[0,3],[-14,4]],[[8110,3679],[0,1]],[[8216,3672],[-20,0]],[[8196,3672],[-5,0],[0,6]],[[8226,3708],[0,-25]],[[8226,3683],[0,-2],[-10,0],[0,-9]],[[7937,3675],[-12,0],[0,-15],[-16,-10]],[[7909,3650],[-3,5]],[[7906,3655],[-4,10],[-5,4],[-2,10],[0,15],[0,9],[2,5]],[[6665,3662],[0,-79]],[[6665,3583],[-26,12]],[[6639,3595],[-28,17],[-29,-3],[-4,0],[-2,5]],[[6576,3614],[0,69]],[[6665,3731],[0,-48],[0,-1],[0,-20]],[[7357,3664],[0,-14],[-14,-1]],[[7343,3649],[-29,0]],[[7217,3665],[-20,0],[0,-1],[-6,-1],[0,2],[-24,0]],[[7167,3665],[0,17],[-2,0]],[[6716,3683],[0,-19],[-11,0],[0,-11],[-19,0],[-7,2],[-7,0],[-7,7]],[[9129,3720],[27,-47],[1,-30],[-22,32],[-16,4],[-10,29]],[[8005,3724],[0,-51]],[[8005,3673],[-40,0]],[[7965,3673],[-12,1]],[[8576,3681],[-2,-1],[0,-6],[-1,-1],[-9,-4]],[[8564,3669],[-5,-1],[-2,5],[-4,-3],[-3,5],[-4,5],[-2,4],[-1,1],[-4,-4],[-1,-8],[-4,-2]],[[8534,3671],[-4,4],[-3,20]],[[8574,3706],[3,-2],[-1,-23]],[[6127,3728],[4,-5],[-2,-4],[-2,1],[0,-1],[2,-2],[2,-6],[-2,-2],[-2,-4],[2,-3],[3,3],[1,0],[-1,-5],[2,-2],[0,3],[2,-1],[-2,-6],[2,-3],[0,-3],[0,-5],[4,0],[-1,-2],[-1,-2],[2,-1],[0,-4],[-2,-1],[0,-1],[3,-2],[-1,-1],[1,-3],[-3,-2],[-2,-3]],[[6136,3661],[-14,1],[-119,0],[0,-1],[-37,0]],[[5966,3661],[-1,52],[1,4],[2,6],[4,5]],[[5966,3661],[-12,1],[0,-2],[-9,2],[-33,-1]],[[5173,3601],[-24,48]],[[5149,3649],[-5,26]],[[5231,3717],[-2,-4],[-2,-1],[-2,-2],[-3,-1],[-4,-3],[-15,-35],[-2,-3],[-5,-16],[-2,-4],[-2,-8],[-2,-6],[-4,-3],[-1,-2],[2,-5],[-2,-1],[-2,-4],[-3,-7],[-1,-2],[-3,-5],[-3,-4]],[[8595,3712],[-1,-9],[2,-11],[-1,-3],[1,-6],[-1,-2]],[[8595,3681],[-1,2],[-3,2],[-6,-1],[-4,-3],[-5,0]],[[7906,3655],[-4,-4],[-3,1],[-9,-9]],[[7890,3643],[-16,-9],[-3,0],[2,4],[0,5],[1,5],[-3,1]],[[7871,3649],[-2,1],[0,2],[-2,-1],[0,3],[-10,19]],[[6216,3663],[0,-51]],[[6216,3612],[0,-48]],[[6216,3564],[0,-121]],[[6216,3443],[-85,-1]],[[6131,3442],[-41,0],[-3,2],[-23,0]],[[6064,3444],[-55,0]],[[6009,3444],[1,3],[2,-1],[2,2],[1,3],[-3,1],[2,2],[3,-2],[0,-4],[2,-1],[2,2],[-2,3],[0,2],[3,-1],[2,9],[4,-4],[3,5],[5,-1],[7,4],[2,5],[2,0],[3,9],[2,15],[2,5],[0,3],[-2,3],[0,1],[0,1],[7,-5],[5,8],[0,2],[-1,2],[0,5],[3,-3],[2,6],[-2,3],[-2,0],[0,2],[2,5],[5,-1],[2,2],[0,1],[-2,1],[0,9]],[[6071,3545],[4,5],[2,5],[1,4],[2,4],[2,0],[2,3],[1,0],[2,8],[3,8],[2,7],[-5,1],[2,4],[2,1],[3,15],[2,1],[7,-1],[2,-3],[1,5],[5,0],[1,2],[0,7],[0,2],[3,1],[3,8],[2,1],[2,-2],[2,1],[1,8],[1,3],[1,6],[2,3],[3,-1],[1,2],[3,8]],[[8428,3686],[1,-4],[1,-8],[1,-1]],[[8431,3673],[-20,-14],[-1,-5]],[[8410,3654],[-1,1],[0,4],[-1,7],[-2,2],[-1,-2],[-1,2],[-1,0],[-4,1]],[[8399,3669],[2,1],[-1,30]],[[8938,3673],[0,-5],[-1,-8],[0,-11],[-6,-7]],[[8931,3642],[-3,-2],[-2,-9],[0,-7],[-2,-3],[-2,0],[-5,-9],[-3,0],[-2,3],[-4,-1],[-2,0],[-3,-2]],[[8903,3612],[-2,4],[-27,33]],[[8874,3649],[-1,4],[4,8],[0,3],[-5,5]],[[8930,3649],[-2,2],[-4,-2],[0,-5],[3,-1],[3,1],[0,4],[0,1]],[[8914,3662],[-1,1],[1,3],[-4,0],[0,3],[-2,0],[-1,-7],[2,-4],[3,-3],[2,7]],[[8044,3683],[0,-24]],[[8044,3659],[-39,-1]],[[8005,3658],[0,1],[0,14]],[[8981,3684],[-7,-15]],[[8974,3669],[-26,16]],[[7513,3644],[0,64]],[[7563,3673],[0,-32]],[[7563,3641],[-3,0],[-2,3],[0,-2],[-2,2],[-1,0],[-2,0],[-2,-2],[-2,2],[-1,-4],[-2,-1],[0,5],[-33,0]],[[6510,3682],[3,-9],[2,-4],[5,-11],[4,-24],[3,-4],[2,-6],[5,-3],[2,-6],[2,-6]],[[6538,3609],[2,-6],[-2,-10],[2,-9]],[[6540,3584],[-53,0]],[[6487,3584],[-49,1],[0,16],[-9,0]],[[6429,3601],[0,8],[-5,1],[-2,1],[-1,3],[-6,6],[-3,5],[-3,1],[-2,-1],[-4,2],[-2,-2]],[[6401,3625],[0,37]],[[8481,3690],[-11,-20]],[[8470,3670],[-2,4],[0,-2],[-2,2],[-1,-1],[-4,6],[0,4],[-1,0],[-1,1],[-1,-1],[-1,2],[0,3],[-3,2],[-2,11],[-3,2]],[[5487,3435],[-62,95]],[[9242,3635],[-22,-3]],[[9220,3632],[0,2],[-3,8],[0,2],[2,-1],[1,1],[1,5],[2,-3],[2,4],[3,0],[-1,5],[-2,4],[0,2],[2,7],[-6,12],[0,5]],[[9268,3720],[-5,-16],[0,-19],[-10,-13],[-11,-26],[0,-11]],[[9273,3720],[-4,-26],[2,26]],[[9255,3640],[-3,-1]],[[9252,3639],[3,2],[3,10],[4,21],[6,21],[-7,-35],[-6,-18]],[[5299,3582],[-5,3],[0,5]],[[5294,3590],[-7,12],[0,1],[-3,3],[-6,1],[-5,6],[-2,0],[-2,-4],[-5,-5],[0,-9],[-7,-3],[-5,-3],[-2,-3],[-5,3],[-3,-2],[-3,2],[-12,10],[-2,0],[-3,-8],[-7,0],[0,-2],[-4,-3],[-1,-1],[-3,-1],[-1,-1],[-5,-2],[0,-1],[3,-7],[0,-4],[-1,-2],[-2,4],[-4,1],[0,-2],[2,-3],[-2,-2]],[[5197,3565],[-24,36]],[[7432,3641],[-40,0]],[[7392,3641],[0,24]],[[7434,3708],[0,-26],[-2,0],[0,-41]],[[7731,3688],[0,-23],[0,-1],[0,-29]],[[7731,3635],[-19,3]],[[7712,3638],[-11,1],[0,2],[-3,3],[0,1],[-2,0],[0,6],[0,1],[0,1],[-2,0],[0,7],[0,5],[-3,1],[0,7],[-5,1]],[[8264,3712],[0,-1],[1,-5],[-1,-2],[1,-2],[0,-2],[-1,2],[-1,-7],[-1,-2],[3,-5],[-2,-2],[0,-3],[4,-8],[-3,-2],[-1,1],[-2,-1],[-2,-4],[0,-1],[-2,0]],[[8257,3668],[-2,2],[-2,0],[0,-5],[4,-1],[1,-2],[-1,-2],[-4,-2],[-2,-5],[-4,6],[-1,0]],[[8246,3659],[0,13],[-10,0],[0,11],[-10,0]],[[8295,3668],[0,-22],[-1,-5],[-2,-7]],[[8292,3634],[-5,-1]],[[8287,3633],[-2,-1],[-2,-5],[-4,7],[-8,4],[-6,4],[-2,2],[-1,5],[-1,14],[-4,5]],[[8285,3711],[0,-17],[1,0],[0,-4],[1,0],[1,-5],[2,0],[0,-3],[1,0],[0,-14],[4,0]],[[8624,3678],[-1,-17],[1,-2],[0,-6],[2,-1],[1,-6],[2,0],[1,-3],[-10,-19]],[[8620,3624],[-7,-15],[-1,-4],[-2,4]],[[8610,3609],[-2,4],[-5,6],[0,4]],[[8603,3623],[1,1],[1,5],[-6,6],[-5,18],[-5,9],[0,3],[3,3],[0,2],[0,10],[3,1]],[[8307,3688],[-2,0],[-3,-2],[-1,-6],[-6,-12]],[[9011,3655],[-2,0],[-2,6],[-2,0],[-3,-2],[-4,4],[-2,-2],[-1,0],[-5,-3],[-2,0]],[[8988,3658],[-14,11]],[[9033,3703],[-1,-8],[-21,-40]],[[8534,3671],[1,-2],[4,-4],[-1,-4],[-3,-6]],[[8535,3655],[-7,-5],[-1,-2],[-2,-2],[-3,-3],[-2,1],[-2,-4]],[[8518,3640],[-2,-2],[0,3],[-1,0],[0,3],[-1,0]],[[8514,3644],[2,5],[-4,1],[-1,-1],[-2,3],[1,3],[-2,0],[0,6],[-2,2],[-1,0],[-2,-3],[-1,4],[2,5],[-3,0],[-1,0]],[[7513,3644],[1,-4]],[[7514,3640],[-41,0]],[[7473,3640],[0,42],[1,1],[0,25]],[[7473,3640],[-41,1]],[[8336,3689],[5,-4],[-2,-21]],[[8339,3664],[-1,-9]],[[8338,3655],[-11,-6],[-14,0],[-15,-7],[-5,-10]],[[8293,3632],[-1,2]],[[9055,3692],[-2,-1],[-1,-7],[3,-1],[2,3],[1,-1]],[[9064,3681],[-25,-49]],[[9039,3632],[-2,1],[-1,1],[-2,0]],[[9034,3634],[-1,1],[-2,5],[-1,-1],[0,4],[-4,2],[0,3],[-2,1],[-2,4],[-2,0],[0,-1],[-3,1],[-6,2]],[[9090,3664],[-1,-1],[-1,1],[-2,-2]],[[9086,3662],[-3,3],[-3,0],[-4,6],[-1,-2],[-2,1],[2,2],[-1,3],[2,4],[0,2],[-2,1],[-2,-1],[-1,-6],[-2,5],[-2,1]],[[9068,3700],[7,-5],[17,10],[5,-17]],[[9097,3688],[-1,-3],[-4,-2],[0,-17],[-2,-1],[0,-1]],[[8663,3673],[-1,-3],[0,-1],[-1,-1],[-3,1],[0,-6],[-1,-1],[-3,1],[-1,-2],[0,-8],[-3,-8],[1,-1],[4,-2],[0,-2],[-3,-1]],[[8652,3639],[-5,0],[-16,-10]],[[8631,3629],[-11,-5]],[[8399,3669],[-10,-7],[0,-7]],[[8389,3655],[-3,-3],[-10,6],[-2,0]],[[8374,3658],[2,6],[1,15],[-1,4],[4,12]],[[8470,3670],[-6,-8],[-3,-3],[-1,-5]],[[8460,3654],[-20,-8]],[[8440,3646],[-1,3],[-6,4],[0,11],[2,5],[-2,3],[-2,1]],[[8374,3658],[-2,-9],[-4,-5]],[[8368,3644],[-11,7],[-18,13]],[[7118,3633],[-30,-1],[0,17],[-19,-1]],[[7069,3648],[-2,34]],[[7128,3682],[-1,-49],[-9,0]],[[6349,3662],[0,-3],[2,-8],[3,-6],[-3,-12],[-4,0],[0,-6]],[[6347,3627],[-3,-2],[-2,-6],[0,-5],[-5,-1],[-4,1]],[[6333,3614],[2,7],[-2,4],[-5,6],[-8,7],[-1,3],[1,12],[-6,1],[0,7],[0,3]],[[5004,3663],[5,-14],[-2,-11],[5,-8],[-4,-9],[3,-18],[-7,-3],[-14,14],[0,-1],[-14,21],[-7,6],[-3,-9],[-6,1],[7,31],[-5,27]],[[8514,3644],[-5,1],[-3,0],[-1,-7],[-2,-3],[-2,4],[-3,1],[-3,-5],[-5,-1]],[[8490,3634],[-5,9],[-3,8],[-4,9],[-6,4],[-4,0],[2,6]],[[5149,3649],[0,-64],[-2,-1],[-3,3],[-4,-3],[-3,1],[-2,-1],[-1,0],[-3,-2],[-3,-2],[-1,-5],[0,-2],[-3,1],[-1,-1],[0,-3],[-2,0],[-21,-36]],[[5100,3534],[0,2],[-2,4],[0,3],[-5,1],[0,1],[0,51]],[[5093,3596],[2,7],[-4,6],[2,14],[-2,7],[0,4],[1,1],[0,6],[-1,-1],[0,5]],[[5091,3645],[2,0],[-2,9],[1,6]],[[9220,3632],[-2,-5]],[[9218,3627],[-19,2],[8,23],[-11,16],[4,10],[-1,2],[6,3]],[[7780,3664],[0,-20],[-23,0],[-1,-1],[-2,-2],[-2,1],[-2,-8],[-5,0]],[[7745,3634],[-14,1]],[[9097,3688],[6,-16],[30,-17],[4,-7],[0,-9]],[[9137,3639],[-2,0],[-2,-5],[-2,-1],[-2,-6]],[[9129,3627],[-1,3],[-4,0],[-2,3],[-4,0],[0,6],[-3,5],[-2,1],[-5,8],[-5,-1],[-2,-3]],[[9101,3649],[-3,1],[-1,3],[-2,-2],[-1,0],[-2,2],[0,8],[-2,3]],[[8988,3658],[-8,-24]],[[8980,3634],[-17,-40]],[[8963,3594],[-1,-7],[-2,0],[-3,2],[-2,-4],[-4,1],[-3,-3]],[[8948,3583],[-3,2],[0,1],[2,1],[-2,3],[1,1],[-1,2],[-1,8],[-2,3],[-11,38]],[[8965,3646],[-3,0],[-2,-3],[-1,-4],[1,-4],[2,0],[3,-1],[2,9],[-2,3]],[[8556,3635],[3,9],[3,1],[1,5],[4,4],[0,6],[-3,9]],[[8603,3623],[0,1],[-4,2],[-4,-1],[-3,-9],[0,-4],[0,-1]],[[8592,3611],[-11,5],[-10,11],[-9,7],[-3,-3],[0,-4]],[[8559,3627],[-3,4],[0,4]],[[8556,3635],[-2,-1],[-3,4],[-5,-4],[-1,-1],[-2,5],[-3,1],[-3,5],[-4,4],[2,7]],[[8874,3649],[-4,-6],[1,-4],[-3,-8],[-6,-9],[-3,-12]],[[8859,3610],[-4,-6],[-6,8],[-5,-1],[-7,3],[-4,11],[-6,1],[-3,-2],[-2,1]],[[8822,3625],[5,6],[3,11],[1,4]],[[8822,3625],[-4,-9],[-1,-4],[-4,-2],[-1,-3],[0,-3],[-5,-9],[0,-4],[-3,-4],[1,-5],[-5,-9]],[[8800,3573],[-2,1],[-1,5],[-1,-5],[-3,0],[0,2],[-2,4],[-3,-7],[-2,1],[-3,0],[-14,7]],[[8769,3581],[-1,8],[-8,15],[-4,5]],[[8756,3609],[4,-2],[-6,17],[4,6],[-1,8],[-1,2],[-3,1],[2,4],[0,3],[-4,-4],[-4,5],[1,4]],[[7712,3638],[0,-31]],[[7712,3607],[-4,-3],[0,-2],[-3,1],[-2,-3],[-5,-6],[0,5],[-4,3],[-1,10],[-23,1]],[[7670,3613],[-18,1]],[[7652,3614],[1,31]],[[8756,3609],[-14,-8]],[[8742,3601],[-2,2],[-3,-2],[-4,2],[-1,1],[1,2],[-3,-2],[-1,2],[1,3],[0,1],[-20,2],[0,10],[-3,2],[1,2],[-5,1]],[[6845,3683],[0,-99]],[[6845,3584],[0,-19]],[[6845,3565],[-61,0]],[[6784,3565],[0,34],[0,1],[0,83]],[[8246,3659],[-1,-6],[3,-3],[0,-1],[-1,-5],[-4,0]],[[8243,3644],[-2,-1],[0,-5],[-1,-7],[2,-8],[-1,-3],[-2,-1],[-3,1],[-2,-1],[-1,-13],[-3,-2],[-2,0]],[[8228,3604],[0,3],[1,7],[-1,2],[-2,-1],[-3,-2],[-3,1],[-4,15],[-2,3]],[[8214,3632],[1,2],[3,0],[0,19],[-2,1],[-1,6],[0,5],[1,3],[0,4]],[[6784,3565],[-30,0]],[[6754,3565],[-29,0]],[[6725,3565],[0,118]],[[8110,3679],[0,-8],[4,-5],[0,-2],[-2,-4],[-2,-1],[-3,-6],[0,-2],[3,1],[0,-4],[-5,-4],[-2,-1],[2,-2],[0,-7],[0,-5],[-2,-4],[2,-3],[-3,-1],[-1,2],[0,-3],[4,-4],[0,-2],[-2,-1],[-5,1],[0,-1]],[[8098,3613],[-3,6],[0,-3],[-21,0]],[[8074,3616],[1,67]],[[8074,3616],[-30,-1]],[[8044,3615],[0,44]],[[6893,3583],[-48,1]],[[6891,3683],[1,-82],[1,-1],[0,-17]],[[6931,3683],[0,-83],[0,-17]],[[6931,3583],[-38,0]],[[6725,3565],[-60,0],[0,18]],[[6576,3614],[-2,8],[-5,2],[-2,9],[-3,1],[-7,-13],[-2,-8],[-1,0],[-4,7],[-3,-4],[-6,-6],[-3,-1]],[[6971,3583],[-40,0]],[[7010,3682],[-2,-50]],[[7008,3632],[-37,0],[0,-49]],[[7167,3665],[0,-66]],[[7167,3599],[-49,0]],[[7118,3599],[0,34]],[[7069,3648],[0,-34]],[[7069,3614],[-61,1]],[[7008,3615],[0,17]],[[9086,3662],[0,-4],[-3,-3],[-1,-7],[3,-7],[0,-2],[5,-5],[0,-5]],[[9090,3629],[-2,-2],[-1,2],[-4,-2],[-1,-1],[-2,-4],[1,-8],[-1,-1]],[[9080,3613],[0,-1],[-2,0],[0,2],[-3,1],[0,-5],[-4,-5],[0,-2],[-5,-9],[0,-1]],[[9066,3593],[-1,0],[-1,1],[-2,-3],[-1,0],[-1,4],[-1,0],[-1,1],[1,4],[-1,4],[1,3],[-2,5],[-4,-1],[-3,8],[-2,-3],[-1,3],[1,3],[-3,4],[-1,-2],[-1,1],[-2,-1],[-2,8]],[[8196,3672],[-1,-14],[-4,-3],[-2,-9],[0,-2],[-2,-1],[-3,1],[-2,-9],[-2,0],[0,-3],[-3,-3],[-2,-4],[-2,-1],[0,-15]],[[8173,3609],[-3,4]],[[8170,3613],[-7,9],[-6,0]],[[8157,3622],[0,20],[-3,1],[0,23]],[[8135,3666],[0,-8],[-2,-44]],[[8133,3614],[0,-1],[-4,1],[-5,-4],[-3,2],[-4,8],[-2,-1],[-1,-5]],[[8114,3614],[0,-5],[2,-6],[-1,-7],[-1,-2],[-2,-3],[-5,3],[-2,1]],[[8105,3595],[-4,4],[-1,3],[3,-1],[2,3],[-4,5],[-3,4]],[[8691,3594],[-5,-5],[-1,2],[-3,2]],[[8682,3593],[-3,9],[-3,1],[0,-2],[-3,-5],[-2,5],[-4,8],[2,4],[-2,8],[-3,3],[-9,1],[-1,4],[-3,0],[-1,0],[-1,4],[3,6]],[[8697,3629],[-3,0],[-1,0],[-2,1],[-4,-8],[0,-9],[0,-7],[0,-4],[3,0],[1,-8]],[[7934,3610],[-4,5],[2,11],[-5,1],[-2,5],[-7,8],[-2,4],[-7,6]],[[7965,3673],[-1,-49]],[[7964,3624],[-6,-20],[-1,-2],[-1,-7]],[[7956,3595],[-3,9],[-11,10],[-1,0],[-2,-1],[-2,-3],[-3,0]],[[7605,3601],[-3,0]],[[7602,3601],[-18,1],[0,10],[-22,1]],[[7562,3613],[1,28]],[[7612,3648],[0,-32],[-5,0],[-2,-15]],[[8002,3624],[-38,0]],[[8005,3658],[0,-5],[2,-2],[-2,-8],[0,-12],[-3,-7]],[[7829,3672],[0,-87]],[[7829,3585],[-4,-1],[0,-10],[-1,0]],[[7824,3574],[-14,1],[0,17],[-20,1]],[[7790,3593],[1,71],[-1,0]],[[8440,3646],[0,-8],[-1,-4],[-1,-1],[0,-7],[1,-2],[-2,-3],[0,-2],[-1,-5],[1,-1]],[[8437,3613],[-1,-2],[-3,2],[0,-4],[0,-3],[-1,-2],[-2,5],[-2,-5]],[[8428,3604],[-2,10],[-2,7],[-17,13]],[[8407,3634],[3,20]],[[7871,3649],[-2,-65]],[[7869,3584],[-40,1]],[[8199,3621],[-2,-1],[-2,-5],[-3,-20],[-3,-3],[-4,1],[-1,8],[-2,2],[-4,1],[-5,5]],[[8214,3632],[-4,-1],[-3,-7],[-3,-2],[-5,-1]],[[8287,3633],[1,-24],[-1,-8],[-13,-6]],[[8274,3595],[-9,16],[-22,33]],[[8490,3634],[-3,-3],[1,-11]],[[8488,3620],[-2,-5],[-7,-1],[-9,8]],[[8470,3622],[-10,32]],[[8407,3634],[-4,-28]],[[8403,3606],[-5,-1],[-1,0],[1,4],[-1,3],[0,2],[-2,-2],[0,2],[-3,1],[3,6],[-1,3],[1,1],[-1,2]],[[8394,3627],[-2,7],[0,5],[-1,5],[1,1],[-1,3],[1,2],[-1,2],[-2,0],[0,3]],[[8157,3622],[-5,-6],[-9,13],[-1,-9],[3,-8],[0,-5],[-2,-3],[-3,-3],[-4,2],[0,11],[-3,0]],[[7286,3649],[0,-34]],[[7286,3615],[-49,0]],[[7237,3615],[-2,50]],[[7226,3582],[-58,0]],[[7168,3582],[0,17],[-1,0]],[[7237,3615],[0,-33],[-11,0]],[[7392,3641],[0,-58]],[[7392,3583],[0,-27]],[[7392,3556],[-49,3]],[[7343,3559],[0,90]],[[9101,3649],[2,-3],[2,-7],[0,-9],[3,-1],[2,-6],[3,-4]],[[9113,3619],[8,-25],[5,-4]],[[9126,3590],[-5,-1],[-2,-5]],[[9119,3584],[-2,5],[-1,2],[-1,3],[-3,0],[-2,0],[-2,-1],[-3,1],[-3,0],[0,7],[-6,3],[-2,5],[0,1],[0,6],[-4,8],[0,5]],[[5082,3665],[-10,-19],[-11,2],[-7,13],[-24,-13],[-2,16]],[[5026,3664],[2,-12],[-12,12]],[[7764,3556],[-19,3]],[[7745,3559],[2,32],[-2,1],[0,42]],[[7790,3593],[-26,0],[2,-8],[-2,-5],[0,-24]],[[8368,3644],[-1,-2],[-2,-1],[1,-6],[-1,-1],[-3,-2],[0,-3]],[[8362,3629],[-19,-6],[-8,6],[-2,2]],[[8333,3631],[-2,3],[3,15],[4,4],[0,2]],[[6323,3590],[-3,3],[-2,6],[-9,6],[-7,-2],[-2,1],[-7,-2],[-1,0],[-2,2],[-2,6],[-2,4],[-49,0],[-1,-2],[-20,0]],[[6333,3614],[-3,-5],[0,-5],[0,-2],[-3,-7],[-1,-5],[-3,0]],[[9034,3634],[-10,-50]],[[9024,3584],[-2,2],[-7,3],[-2,2],[-2,13],[-3,2],[-3,7],[-4,2]],[[9001,3615],[-12,9],[-2,5],[-7,5]],[[6071,3545],[-105,0],[0,-1],[-47,0],[0,1],[-29,0]],[[5890,3545],[-2,49],[10,0],[0,17],[11,0],[0,15],[-2,1],[0,34]],[[6386,3525],[-28,0]],[[6358,3525],[0,39]],[[6358,3564],[0,22],[2,5],[-2,4],[-4,6],[0,3],[-1,19],[-4,3],[-2,1]],[[6401,3625],[-1,-1],[-7,0],[-7,-4],[0,-95]],[[5870,3535],[-12,0],[0,-4],[-10,0],[0,2],[-9,0],[0,10],[-21,1],[0,16],[-9,0],[-1,-5],[-41,1]],[[5890,3545],[-20,0],[0,-10]],[[8044,3615],[0,-6]],[[8044,3609],[-40,0]],[[8004,3609],[0,15],[-2,0]],[[8394,3627],[-6,-4],[-2,0],[-2,1],[-4,0],[-4,-13]],[[8376,3611],[-3,2],[-4,-1],[-2,-3],[-1,1],[2,4],[-1,1],[-3,-4]],[[8364,3611],[-2,18]],[[7934,3610],[-7,-10],[-9,-29]],[[7918,3571],[-5,5],[-4,-5],[-22,39],[12,21],[-9,12]],[[8513,3607],[0,6],[4,12],[1,15]],[[8559,3627],[1,-3],[1,-10],[-2,-1],[1,-3],[-3,-4]],[[8557,3606],[-3,6],[-3,-2],[-2,3],[-3,0],[1,-4],[-7,-9],[-2,-1],[-1,-5],[-1,0],[-3,-4],[3,-6],[-2,-4]],[[8534,3580],[-2,0],[-1,5],[-4,4],[1,3],[-5,3],[-1,4],[-4,2],[-2,3],[-2,0],[0,2],[-1,1]],[[8333,3631],[-4,-5],[0,-2],[-2,-5],[-2,0],[1,-6],[-4,-4],[-3,-5],[-3,-4],[-5,-1]],[[8311,3599],[-2,3],[-7,7],[0,2],[0,2],[2,0],[-2,2],[-2,8],[-3,0],[-2,1],[0,5],[-2,3]],[[8470,3622],[-3,-3],[-1,-10],[-2,-2],[3,-3]],[[8467,3604],[-2,-1],[0,1],[-2,-1],[-2,0],[0,-2],[-1,2]],[[8460,3603],[-1,2],[-2,-1],[-7,5],[-1,0],[-4,1],[-2,-1],[0,5],[0,2],[-6,-3]],[[9129,3627],[7,-7],[2,-10],[0,-3],[2,-2],[1,-2]],[[9141,3603],[-6,0],[-1,-7],[-4,-2]],[[9130,3594],[-13,22],[-4,3]],[[5025,3613],[-6,2],[-1,14],[8,6],[25,9],[28,-5],[3,11],[7,1],[2,-6]],[[5093,3596],[-1,3],[-1,-4],[-37,-15],[0,3],[-3,2],[2,5],[-4,4],[-6,0],[-4,5],[-2,0],[-2,5],[-5,9],[-1,1],[-4,-1]],[[7287,3533],[-1,82]],[[7343,3559],[0,-26]],[[7343,3533],[-56,0]],[[8903,3612],[2,-5],[-2,-11],[-2,-2]],[[8901,3594],[-2,-1],[-3,3],[-2,-1],[-2,-3],[0,-3],[-3,-4],[0,-3],[-1,-2],[0,-6],[-1,-1],[-1,-3],[-5,-6],[-3,-3]],[[8878,3561],[-3,-2],[2,-8],[-2,-3],[-3,-3]],[[8872,3545],[-7,9],[1,2],[-10,14],[2,4],[-1,1],[-1,9],[1,5]],[[8857,3589],[5,17],[1,1],[-4,3]],[[8886,3579],[1,6],[-2,0],[-3,-5],[0,-1],[2,-3],[2,3]],[[8879,3594],[-4,0],[0,-4],[0,-1],[3,1],[1,4]],[[7918,3571],[-3,-6]],[[7915,3565],[-35,0]],[[7880,3565],[-11,0],[0,19]],[[5197,3565],[0,-3]],[[5197,3562],[-52,-45],[-1,-2],[1,-1],[0,-8],[-22,-38]],[[5123,3468],[-6,7],[-3,-1],[-4,2],[-1,-1],[0,-4],[-2,2],[-1,8],[-1,3],[-3,3],[0,4],[0,6],[1,3],[3,3],[-3,8],[2,3],[-2,1],[-3,2],[0,5],[0,6],[0,3],[0,3]],[[7118,3599],[0,-16]],[[7118,3583],[-49,0]],[[7069,3583],[0,31]],[[7640,3594],[-33,5],[-2,2]],[[7652,3614],[-10,0],[-2,-20]],[[8513,3607],[-2,-1],[-1,-4],[-4,-2],[-2,0],[-3,2],[-1,-1]],[[8500,3601],[-3,1],[-1,5],[-6,6],[-2,7]],[[7513,3567],[0,5]],[[7513,3572],[1,68]],[[7562,3613],[0,-48]],[[7562,3565],[-49,2]],[[8274,3595],[-11,-39]],[[8263,3556],[-6,-1],[-3,-4],[-7,3],[-3,1],[-2,6],[-2,1],[-1,-2],[1,-5],[-1,-1],[-2,2],[-1,-3],[-2,-2]],[[8234,3551],[-2,2],[-2,9],[0,8]],[[8230,3570],[1,-1],[-4,25],[1,10]],[[8948,3583],[-1,-7],[1,-2],[-1,-1],[-3,2],[0,-4],[-2,-1],[-1,-5],[-8,0],[0,-6],[-2,-5],[0,-4]],[[8931,3550],[0,-5],[-3,1]],[[8928,3546],[0,1],[-4,3],[-2,16],[-3,8],[-2,2],[-3,0],[-2,5],[-2,9],[0,1],[-4,3],[-5,0]],[[7432,3641],[0,-42],[0,-16]],[[7432,3583],[-40,0]],[[7473,3640],[-2,-58]],[[7471,3582],[-39,1]],[[7513,3572],[-42,-1]],[[7471,3571],[0,11]],[[9255,3640],[-5,-14],[-4,-14],[-4,-3],[4,5],[-4,0],[4,5],[6,20]],[[9199,3548],[-7,2],[1,4],[4,-1],[-2,1],[10,25],[1,14],[8,8],[0,5],[-3,15],[7,2],[0,4]],[[9242,3635],[-21,-61],[3,-2],[-10,-18],[4,-4],[-7,0],[-2,-9],[4,-5],[-9,-4]],[[9204,3532],[1,4],[-1,5],[1,3],[-3,4],[-3,0]],[[9137,3639],[-2,-5],[5,1],[14,-10],[10,-13],[0,-7],[-6,-11],[1,-13],[-4,-6]],[[9155,3575],[-2,4],[1,6],[-1,5],[-3,2],[-2,8],[-1,1],[-1,-1],[-3,3],[-2,0]],[[8682,3593],[-6,-2],[-3,-2],[-3,0],[-1,-2],[4,-12],[-2,-2],[-4,-2],[-2,-2]],[[8665,3569],[-4,2],[-2,1],[-3,-2],[-3,2],[-3,-2],[-1,-6],[-2,0],[-2,10],[-4,1],[-1,7],[0,3],[-3,1],[1,4],[0,3],[-3,9],[1,2],[1,1],[0,7],[-5,9],[-1,8]],[[7745,3559],[-19,0]],[[7726,3559],[0,7],[-14,13],[0,28]],[[8311,3599],[-2,-5],[2,-1],[0,-1],[4,-2],[-1,-5],[2,-2]],[[8316,3583],[-7,-17],[-1,0],[-1,-2],[-2,-1],[-3,-10],[-4,-6],[0,-21]],[[8298,3526],[-15,2]],[[8283,3528],[-2,3],[2,3],[-2,2],[-4,15],[-3,-1],[-3,1],[-5,3],[0,1],[-3,1]],[[9066,3593],[1,0],[1,-3],[-1,-3],[2,0],[-1,-3],[1,1],[0,-3],[2,-2],[1,1],[2,-2],[1,3],[1,-2],[-1,-5],[0,-2],[3,1],[1,-2],[0,2],[1,0],[0,-3],[-1,-2],[3,1],[1,0],[0,2],[0,-2],[3,0],[0,-5],[-1,-1]],[[9085,3564],[-2,-10],[-3,1],[-4,-8],[0,1],[0,-2]],[[9076,3546],[-4,4],[-8,3],[-2,2],[-4,10],[-1,7],[-2,1],[-2,-1],[-2,3],[-4,-3],[-4,4],[-3,0]],[[9040,3576],[-2,3],[-4,-3],[-10,8]],[[8992,3585],[-3,-2],[-3,-3],[0,-6],[-1,0]],[[8985,3574],[-3,2],[-3,4],[-4,3],[-4,1],[-7,5],[-1,5]],[[9001,3615],[-8,-25],[-1,-5]],[[6639,3595],[-9,-10],[-10,-25],[0,-8],[-9,-17],[-2,-1],[-1,-4],[-2,-4],[-2,-4],[-3,-6],[-9,-2],[-4,1],[-3,0],[-4,-4],[-3,-3],[0,-3],[-7,-10],[-4,0]],[[6567,3495],[1,18],[-1,1],[0,11],[-3,3],[0,6],[0,9],[-3,7],[1,4],[0,2],[-3,3],[-2,4],[-3,2],[-13,-10],[-3,-4],[-2,0]],[[6536,3551],[-2,2],[0,3],[2,8],[0,9],[2,7],[2,4]],[[8592,3611],[-5,-5],[2,-3],[-2,-9],[1,-3],[0,-1],[2,-7],[0,-2]],[[8590,3581],[-5,2],[-3,3],[-4,0],[0,-1],[-1,1],[-7,-4],[-2,0],[-2,-6],[-2,5],[-1,0]],[[8563,3581],[-1,9],[-3,6],[0,7],[-2,3]],[[8428,3604],[-4,0],[1,-9],[-2,-1],[-4,-4]],[[8419,3590],[0,-1],[-4,-6],[-1,3],[-2,-1],[0,4],[-2,3],[-1,1],[2,1],[-3,1],[0,-3],[-2,2],[1,7],[-4,-2]],[[8403,3599],[0,3],[2,3],[-2,1]],[[7008,3615],[0,-14],[3,-1],[0,-68]],[[7011,3532],[-40,1]],[[6971,3533],[0,50]],[[8230,3570],[-17,14]],[[8213,3584],[0,10],[-2,9],[-5,-2],[-1,2],[2,7],[-2,4],[-5,-1],[0,3],[-1,5]],[[8364,3611],[-5,3],[0,-9],[-1,0],[-1,4],[-1,-3],[0,3],[-1,0],[0,-4],[-3,0],[0,-2],[-2,-2],[-1,-7],[-3,-4],[0,-3],[-2,0],[-1,-2],[-2,-3]],[[8341,3582],[-5,-11],[-5,-21]],[[8331,3550],[-3,0],[-2,-5],[-3,0],[0,1],[-2,0],[0,4],[2,0],[-1,5],[1,1],[0,5],[3,1],[-1,2],[-2,1],[0,9],[0,1],[-2,-1],[-5,9]],[[8742,3601],[2,-2],[3,-9],[0,-1],[-3,-4],[3,-3],[2,-9],[-2,-2],[0,5],[-3,0],[-1,4],[-3,0],[0,-6],[-4,-4],[-2,-3],[-2,-1],[-2,-6],[0,-5]],[[8730,3555],[-5,0],[-5,-3],[-1,-7],[-1,-4]],[[8718,3541],[-2,3],[-2,0],[-4,4],[-1,6],[-12,37],[-6,3]],[[8665,3569],[1,-5],[-1,-3],[-1,-1],[0,-5],[-2,-1],[-2,-7]],[[8660,3547],[-1,-2],[-4,-1],[-2,-4]],[[8653,3540],[-2,5]],[[8651,3545],[-1,1],[-5,-1],[-2,3],[0,-4],[-3,3],[-5,3],[-1,0],[1,1],[1,3],[-3,1],[-2,10],[-2,-2],[-3,6],[-6,1],[-2,15]],[[8618,3585],[1,2],[-2,5],[-6,4],[-1,13]],[[9119,3584],[3,-14],[2,-1],[0,-5],[4,-8]],[[9128,3556],[-1,-3],[-1,-8],[2,-10],[0,-3],[-4,-5],[-2,-2]],[[9122,3525],[-1,6]],[[9121,3531],[-6,11]],[[9115,3542],[1,4],[1,4],[-2,1],[0,3],[-2,1],[1,4],[-2,-3],[-1,4],[-2,1],[1,3],[-3,3],[-2,2],[0,2],[-2,3],[-3,0],[-1,1],[-3,4],[-1,2],[-1,1],[-4,4],[-1,-1],[1,5],[-3,2],[1,4],[-1,-1],[-1,5],[-1,1],[1,2],[-1,1],[0,5],[-3,0],[1,2],[-1,2],[-2,0]],[[8170,3613],[-2,-13],[2,-1],[0,-5],[3,-1],[0,-2],[-5,-6],[-7,-2],[0,-10]],[[8161,3573],[-2,-3],[-3,0],[-2,-3]],[[8154,3567],[-23,-1]],[[8131,3566],[-2,6],[0,18],[-3,-1],[-2,2],[0,-1],[-2,2],[-8,22]],[[6358,3564],[-44,0]],[[6314,3564],[0,2],[0,7],[2,6],[5,1],[2,10]],[[8403,3599],[1,-7],[-1,-2],[1,-5],[0,-4],[-3,-1]],[[8401,3580],[-6,0],[0,-1],[-20,-7]],[[8375,3572],[2,32],[-1,3],[2,2],[0,2],[-2,0]],[[6429,3601],[0,-30],[0,-2],[-3,-2],[0,-50]],[[6426,3517],[-40,0],[0,8]],[[8618,3585],[-5,-1],[-3,-3],[3,-6],[-2,-3],[-5,-1],[-3,3],[-4,0],[-3,-1]],[[8596,3573],[-6,8]],[[8857,3589],[-12,5],[-4,-1],[0,-3],[-6,-14],[-10,-10]],[[8825,3566],[-1,3],[-9,-10],[-3,2],[-3,0],[-1,2]],[[8808,3563],[-4,2],[-4,0],[0,2],[1,4],[-1,2]],[[8830,3589],[0,1],[0,5],[-3,0],[-2,-5],[2,-4],[3,3]],[[8004,3609],[1,-50]],[[8005,3559],[-28,0],[0,-5],[-1,-3],[-6,1]],[[7970,3552],[2,9],[0,6],[0,5],[-2,2],[-5,2],[-7,9],[0,7],[-2,3]],[[8500,3601],[-6,-20]],[[8494,3581],[-2,0]],[[8492,3581],[0,1],[-3,2],[-2,5],[-4,-3],[-1,4],[-4,-3],[-5,3],[-3,4],[0,10],[-3,0]],[[8213,3584],[-3,-5],[4,-8],[-9,-8],[-3,1],[-8,-14]],[[8194,3550],[-2,2],[-3,-1],[-4,1],[-24,21]],[[8105,3595],[-3,-11],[-6,-9],[-2,-5],[0,-7],[2,-9]],[[8096,3554],[-2,0],[-3,6],[-17,0]],[[8074,3560],[0,56]],[[8460,3603],[-2,0],[-2,-4],[1,-4],[2,1],[1,-2],[-2,-3],[1,-2],[0,-4],[-1,-5],[1,-10],[-2,0],[-1,-5],[3,-15]],[[8459,3550],[-7,0],[-3,-7]],[[8449,3543],[-9,0],[0,2],[-4,0]],[[8436,3545],[-3,10],[-4,8],[0,2],[-3,4],[0,2],[0,1],[0,2],[-3,8],[-4,8]],[[8044,3559],[0,50]],[[8074,3560],[-4,-1]],[[8070,3559],[-26,0]],[[9115,3542],[-2,5],[-3,-3],[-2,0],[2,6],[-1,3],[-1,-1],[0,-4],[-1,-1],[-1,0],[-2,3],[-1,0],[-1,-4],[-2,-1],[-1,2],[2,3],[-1,3],[-2,0],[0,-3],[-2,1],[-3,4],[-3,4],[-1,-4],[0,1],[0,5],[-4,3]],[[7069,3583],[0,-52]],[[7069,3531],[-49,1]],[[7020,3532],[-9,0]],[[7287,3533],[-61,-2]],[[7226,3531],[0,51]],[[8375,3572],[-1,-8]],[[8374,3564],[-21,0],[-4,3],[-4,0],[-2,4],[1,3],[-3,5],[0,3]],[[9040,3576],[-2,-11],[1,-10],[2,-1],[-4,-4]],[[9037,3550],[-3,4],[-3,0],[-4,6],[-5,0],[0,4],[-6,6],[-3,4],[-2,-3],[1,-6],[-1,-2],[-2,0],[-3,2],[-6,4]],[[9000,3569],[-4,3],[2,3],[0,5],[-6,5]],[[7970,3552],[-5,0],[-1,3],[-4,-1],[0,2],[-3,-2],[-1,1],[-1,1],[-2,-1],[-2,1],[-2,-2],[-3,2],[-5,0]],[[7941,3556],[-26,0]],[[7915,3556],[0,9]],[[8131,3566],[-19,-34]],[[8112,3532],[-2,0],[0,4],[-1,4],[-1,0],[-1,5],[-2,1],[0,-4],[-3,-1]],[[8102,3541],[-6,13]],[[6314,3564],[-91,-1],[-1,1],[-6,0]],[[7652,3522],[-10,0]],[[7642,3522],[0,60],[-2,1],[0,11]],[[7670,3613],[0,-31],[2,0],[0,-47]],[[7672,3535],[-20,0],[0,-13]],[[5100,3534],[-35,-1],[-5,-3],[-6,0]],[[5054,3530],[-10,6],[-11,48],[-10,7],[2,22]],[[5229,3476],[-4,8],[-7,2],[-1,2],[-2,9],[-7,17],[0,11],[0,2],[-4,9],[-7,26]],[[5294,3590],[-23,-42],[-1,-13],[-4,0],[0,-5],[-2,0],[0,-8],[-9,0],[-26,-46]],[[7602,3601],[-2,-16],[2,0],[0,-33]],[[7602,3552],[-40,2]],[[7562,3554],[0,11]],[[8563,3581],[0,-9],[3,-7],[0,-9],[2,-11],[-4,-10]],[[8564,3535],[-3,5]],[[8561,3540],[-4,5],[0,3],[-1,2],[0,4],[-4,2],[-2,8],[-2,-2],[-2,-2],[-2,5],[-5,2],[-4,4]],[[8535,3571],[0,3],[-1,6]],[[7726,3559],[0,-25]],[[7726,3534],[-39,1]],[[7687,3535],[-15,0]],[[8044,3559],[-30,0]],[[8014,3559],[-9,0]],[[8769,3581],[-19,-55]],[[8750,3526],[-20,29]],[[8535,3571],[-5,2],[-3,-1],[-6,3],[-2,-2],[-1,-4],[-1,-4],[-4,-1],[-1,2],[-2,-1]],[[8510,3565],[-9,5],[0,3],[-7,8]],[[8492,3581],[-2,-1],[-7,-10],[0,-5],[-3,-2],[0,-3],[-5,-14]],[[8475,3546],[-2,5],[-3,2],[-7,-2],[-4,-1]],[[9155,3575],[3,-3],[-2,-10],[-15,7],[-6,21],[-5,4]],[[6487,3584],[0,-67]],[[6487,3517],[-56,0]],[[6431,3517],[-5,0]],[[8436,3545],[-3,-12],[-7,2]],[[8426,3535],[-1,0],[-14,20],[-2,5],[0,3],[0,1],[-1,1]],[[8408,3565],[0,1],[-3,0],[0,4],[1,2],[-2,1],[-1,2],[-2,-1],[-1,1],[1,5]],[[7642,3522],[-40,2]],[[7602,3524],[0,28]],[[7168,3582],[0,-51]],[[7168,3531],[-50,0]],[[7118,3531],[0,52]],[[8928,3546],[-1,-2],[-1,1],[0,-4],[-2,-5],[-2,1],[-1,-3],[-4,-2],[-2,-6]],[[8915,3526],[-1,0],[-1,-3],[-3,0],[2,-3],[-2,-4],[-1,1]],[[8909,3517],[-4,7],[-4,4],[-1,3]],[[8900,3531],[-2,4],[-2,5],[-2,-4],[-1,5],[-4,-4],[-3,6],[-4,13],[-4,5]],[[5019,3575],[-11,0]],[[5008,3575],[0,17],[8,4],[5,-14],[-2,-7]],[[6753,3444],[-82,-1]],[[6671,3443],[-104,-1]],[[6567,3442],[0,53]],[[6754,3565],[0,-50],[-1,0],[0,-71]],[[8718,3541],[-3,-4],[-2,-6],[-2,-3],[1,-6],[-2,2]],[[8710,3524],[-6,2],[-2,4],[-2,-2],[-2,2],[-2,5],[-5,-3],[-2,3],[-3,0],[-2,1],[-2,6],[-1,-1],[-3,3],[-3,-2],[1,-5],[-3,-2],[-2,0],[-2,5],[-2,-3],[-2,4],[-2,0],[0,4],[-1,2],[-2,0]],[[8872,3545],[0,-1],[-1,-2],[-3,-5],[-2,0],[-1,-4],[0,-3],[-5,0],[-1,4],[-2,1],[-10,-13],[-2,-1],[-1,-4],[3,-2],[0,-4],[-1,-4],[-4,-2],[-1,-3]],[[8841,3502],[-2,4],[-19,17]],[[8820,3523],[3,5],[3,8],[1,6],[3,5],[-5,18],[0,1]],[[8985,3574],[-1,-10],[-20,-57]],[[8964,3507],[-1,0],[-1,-1],[-2,1],[-1,4],[-2,0],[-1,2],[-1,0],[0,2],[-1,0],[0,5]],[[8954,3520],[-2,-5],[-2,1],[-1,7],[-3,3],[-15,24]],[[7824,3574],[0,-20]],[[7824,3554],[-14,0],[0,-14],[9,-3],[0,-15]],[[7819,3522],[-39,2]],[[7780,3524],[-10,1],[0,30],[-6,1]],[[9126,3590],[10,-25],[23,-17],[-3,-4],[-15,4]],[[9141,3548],[-2,2],[-2,0],[-1,0],[-2,4],[-2,0],[-4,2]],[[5320,3552],[-23,-41],[-3,-1],[-2,-9],[2,-19],[-2,-5],[-1,-2],[0,-2],[-4,-2],[0,1],[-2,0],[-1,-3],[-4,-1],[0,-4],[-2,5],[-1,0],[0,-3],[-1,0],[-3,3],[0,-1],[0,-4],[0,-1],[0,-1],[0,-5],[0,-1],[-2,-2],[-1,1],[-4,-7],[0,-1],[0,4],[-2,-3],[0,-3],[-7,-7],[-1,-10],[-4,-2],[0,-8],[-2,-4],[-2,1],[-3,-1],[-2,2],[-4,-4],[-5,0],[-3,-5],[-6,2],[-5,-4],[-2,0],[-1,-4],[-2,0],[0,3],[-2,-2],[0,-4],[-2,3],[-3,-5],[-5,8],[-2,-2],[0,1],[0,2],[-1,2],[-7,8],[-1,7],[1,3],[-1,4],[-3,12],[-2,1],[-2,9]],[[5185,3451],[5,11],[2,-1],[11,5],[7,5],[8,2],[4,-1],[5,2],[2,2]],[[8596,3573],[-4,0],[0,-3],[0,-3],[0,-27],[0,1],[2,-4],[0,-9],[-2,-7],[-4,-8],[1,-2],[-2,-5],[-3,-6]],[[8584,3500],[-4,4],[-2,7],[2,4],[-2,10],[-5,-2],[-2,7],[-7,3],[0,2]],[[8651,3545],[-29,-43]],[[8622,3502],[-6,-10],[-5,-1],[-13,-9]],[[8598,3482],[-2,-1]],[[8596,3481],[-4,9],[-2,1],[-5,-4],[-3,8]],[[8582,3495],[2,5]],[[9000,3569],[-2,-4],[-4,-35]],[[8994,3530],[-2,-3],[-1,0],[-1,-1],[-1,-1],[-3,-10],[0,-2]],[[8986,3513],[-2,-2],[-1,-1],[0,1],[-1,0],[0,-5],[-1,1],[-1,-2],[-1,0],[-2,-2],[-1,1],[-1,-3],[-1,1],[-2,0],[-4,4],[-4,1]],[[7880,3565],[0,-10],[-2,0],[0,-52]],[[7878,3503],[0,-8],[-16,-1]],[[7862,3494],[-2,1],[0,18],[-1,0],[0,43],[-21,3],[-9,-5],[-5,0]],[[6513,3510],[-26,0],[0,7]],[[6536,3551],[0,-3],[-23,-38]],[[8234,3551],[0,-3],[-3,3],[-2,-1],[-2,-2],[5,-28]],[[8232,3520],[-13,-18],[-2,4],[-2,0],[0,-6],[-2,-3],[-2,-6],[-4,-6]],[[8207,3485],[-2,1],[0,2],[-2,2],[-4,4],[0,10],[-5,8],[-5,1],[-2,-7],[0,5],[0,4],[0,9]],[[8187,3524],[2,6],[-2,4],[7,16]],[[6845,3515],[0,50]],[[6893,3583],[0,-67]],[[6893,3516],[-4,0]],[[6889,3516],[-44,-1]],[[6971,3533],[0,-18]],[[6971,3515],[-37,1]],[[6934,3516],[-1,0]],[[6933,3516],[-2,67]],[[6933,3516],[-40,0]],[[8325,3531],[-5,1],[-1,-4],[-1,-2],[0,-3]],[[8318,3523],[-20,3]],[[8331,3550],[1,-2],[3,-16]],[[8335,3532],[-3,1],[-3,-3],[-4,1]],[[7118,3531],[0,-16]],[[7118,3515],[-47,0]],[[7071,3515],[-2,0],[0,16]],[[7432,3583],[0,-68]],[[7432,3515],[-40,0]],[[7392,3515],[0,41]],[[7471,3571],[0,-56]],[[7471,3515],[-39,0]],[[8374,3564],[-1,-17]],[[8373,3547],[0,-24],[-4,0]],[[8369,3523],[-3,4],[-4,3],[-4,-2],[-4,-5],[-2,0],[-1,3],[-5,5],[-4,0],[-6,2],[-1,-1]],[[7226,3531],[0,-16]],[[7226,3515],[-49,0]],[[7177,3515],[-8,0],[-1,16]],[[8808,3563],[-3,-8],[-6,-4],[-1,-6],[2,-1],[2,1],[-1,-4],[-5,-6],[0,-2],[-4,-2],[-3,-5],[-4,-2]],[[8785,3524],[-1,2],[-1,4],[-1,3],[-3,-1],[-5,-4],[-10,-12],[-2,0],[-2,0],[0,-1],[-2,-2],[0,2],[-3,1],[0,6],[-4,2]],[[8751,3524],[-1,2]],[[8478,3543],[-3,3]],[[8510,3565],[-5,-25]],[[8505,3540],[-4,2],[0,3],[-2,0],[-3,-4],[-2,0],[-2,1],[-2,-6],[-7,-1],[-3,1],[-2,7]],[[8408,3565],[-1,-3],[-2,0],[-1,-3],[-5,-5],[-3,-1],[-6,-5]],[[8390,3548],[-3,-3],[-9,0],[0,2],[-5,0]],[[9076,3546],[0,-1],[2,-3],[2,-2],[1,-5]],[[9081,3535],[-5,-14],[0,-6],[-2,2],[0,-2]],[[9074,3515],[-2,-4],[-3,1],[0,1],[0,4],[0,4],[-2,-6],[-2,-1],[-3,-3],[0,2],[2,1],[1,2],[-3,-1],[0,6],[-2,3],[-1,1],[0,1]],[[9059,3526],[1,5],[-1,10],[2,0],[1,4],[-1,3],[-1,0],[-1,2],[1,4],[-3,1],[0,5],[-2,0],[0,-4],[-3,0],[0,-3],[-4,2],[0,-3],[0,-1],[0,-1],[-3,0],[-1,0],[-1,-2]],[[9043,3548],[-6,2]],[[5028,3464],[-13,24],[1,23],[-4,23],[-5,9],[1,32]],[[5019,3575],[0,-15],[25,-30]],[[5044,3530],[-1,-2],[-4,2],[-3,-6],[0,-21],[1,-1],[2,-7]],[[5039,3495],[0,-11],[-7,0],[0,-7],[-7,0],[1,-6],[2,-7]],[[8561,3540],[-5,0],[-4,5],[-3,-2],[-1,-8],[-3,-5],[1,-8]],[[8546,3522],[-5,0],[-2,2],[0,3],[-9,-12],[-2,0],[-3,-1],[-3,-4],[-2,-2],[0,3],[-4,4],[-2,-1],[-1,-3],[-2,-3],[-3,-2]],[[8508,3506],[0,17],[-1,8],[-2,4],[0,5]],[[9020,3523],[-1,7],[-2,-2],[-1,4],[-3,2],[-5,1],[-2,0],[-1,0],[0,-2],[-2,-1],[-1,-2],[-2,0],[-2,-3],[-4,3]],[[9037,3550],[-11,-18],[-2,-7],[-2,-1],[0,1],[-2,-2]],[[8187,3524],[-5,-1],[-4,-8],[-7,1]],[[8171,3516],[-1,4],[-2,2],[-2,3],[0,19],[-2,6]],[[8164,3550],[-3,4],[-7,5],[-2,5],[2,3]],[[7513,3567],[0,-56]],[[7513,3511],[0,-5]],[[7513,3506],[-40,1]],[[7473,3507],[0,8],[-2,0]],[[8820,3523],[-6,-8],[-5,-1],[-5,-6]],[[8804,3508],[-7,4],[-3,-4],[-5,-3]],[[8789,3505],[-4,19]],[[8124,3511],[0,3]],[[8124,3514],[0,1],[-3,0],[1,5],[-1,2],[-5,-1],[-2,1],[-2,5],[0,5]],[[8164,3550],[-10,-15],[-9,-4],[-21,-20]],[[7562,3554],[-2,-44]],[[7560,3510],[-47,1]],[[7915,3556],[0,-53],[-6,0]],[[7909,3503],[-31,0]],[[6845,3515],[2,-73]],[[6847,3442],[-87,1]],[[6760,3443],[-7,1]],[[6567,3442],[-6,0]],[[6561,3442],[-46,1]],[[6515,3443],[0,2],[-3,2],[-2,4],[0,4],[3,7],[0,6],[2,3],[-2,6],[2,4],[-2,5],[0,4],[2,1],[0,5],[-2,10],[0,4]],[[8426,3535],[-4,-29]],[[8422,3506],[-5,5],[-15,-20]],[[8402,3491],[0,4],[1,5],[-2,13],[-7,7],[-4,6],[0,6],[0,16]],[[6314,3564],[-5,-10],[-2,-24],[-3,-4],[-4,-11],[-7,-8],[-5,-16],[-3,-7],[-1,-10],[1,-3],[-2,-8],[-2,-9],[-3,-7],[-1,-3]],[[6277,3444],[-61,-1]],[[6358,3443],[-81,1]],[[6358,3525],[0,-82]],[[9121,3531],[-2,-1],[-1,-4],[-1,0],[-4,2],[-6,-2],[0,-10],[-1,-1]],[[9106,3515],[-1,0],[1,5],[-2,0],[-1,-4],[-1,-1],[0,6],[-1,-1],[-2,3],[-1,1],[-2,-2],[-1,3],[-3,0],[-2,1],[-1,1],[-4,5],[-4,3]],[[5185,3451],[-34,-58]],[[5151,3393],[-2,3],[-18,16],[-1,3],[-3,10],[-4,2],[0,4],[1,3]],[[5124,3434],[-3,7],[0,2],[0,5],[3,3],[0,4],[-3,6],[2,2],[1,4],[-1,1]],[[8283,3528],[1,-3],[0,-4],[1,-5],[-1,-1],[-3,0],[0,-7],[-3,-3],[-2,1],[-3,0]],[[8273,3506],[-28,-2]],[[8245,3504],[-2,8],[-11,8]],[[8900,3531],[-2,1],[-5,-5],[3,-10],[-2,-6]],[[8894,3511],[-16,-56]],[[8878,3455],[-4,0],[1,-8],[0,-1],[-7,7],[-1,0],[-1,-2],[-2,1]],[[8864,3452],[-2,5],[0,5],[-3,4],[-2,6],[-2,0],[-1,2],[-1,6],[-4,1],[-2,5],[-2,-1],[-1,1],[-2,-1],[-1,1]],[[8841,3486],[0,16]],[[8873,3506],[-3,4],[-2,-2],[0,-5],[4,0],[1,3]],[[5870,3443],[-103,0]],[[5870,3535],[0,-92]],[[8102,3541],[-2,-8],[-21,-6],[-4,-5]],[[8075,3522],[-5,2]],[[8070,3524],[0,35]],[[9059,3526],[-4,4],[-3,1],[-2,4],[0,8],[-3,2],[-4,0],[0,3]],[[8070,3524],[-5,-4],[-4,-20],[2,-8],[5,-9],[2,-10],[-2,-11],[-3,-6],[-2,0]],[[8063,3456],[0,18],[-19,34]],[[8044,3508],[0,51]],[[7780,3524],[-2,-72]],[[7778,3452],[-38,2]],[[7740,3454],[-16,0]],[[7724,3454],[2,37],[0,1],[0,42]],[[7976,3507],[3,4],[0,11],[-2,8],[-3,5],[-4,17]],[[8014,3559],[0,-52]],[[8014,3507],[-19,0]],[[7995,3507],[-19,0]],[[8025,3503],[-2,-1],[-4,2],[-5,-3],[0,6]],[[8044,3508],[-18,-1],[0,-2],[-1,-2]],[[7862,3494],[0,-20],[-2,0],[0,-3],[-3,-2],[0,-16]],[[7857,3453],[-16,1],[0,9],[-5,0]],[[7836,3463],[0,6],[-2,2],[0,4],[-2,-1],[0,1],[-3,0],[0,7],[-4,0],[0,6],[2,0],[0,3],[-3,1],[0,12],[-2,0],[0,18],[-3,0]],[[7343,3500],[0,33]],[[7392,3515],[0,-15]],[[7392,3500],[-49,0]],[[7941,3556],[-2,-88]],[[7939,3468],[-7,0],[0,-13],[-3,0],[0,-3],[-11,0]],[[7918,3452],[0,6],[-9,0],[0,45]],[[7974,3491],[-2,-1],[-7,-2],[0,-2],[-3,0],[0,-1],[-2,-1],[0,-3],[-4,0],[0,-5],[-3,0],[0,-3],[0,-2],[-3,0],[0,-3],[-1,-1]],[[7949,3467],[-10,1]],[[7976,3507],[-4,-1],[0,-4],[0,-7],[2,-4]],[[9141,3548],[7,-6]],[[9148,3542],[-2,-7],[1,-5]],[[9147,3530],[-2,-7],[4,-1],[2,-8],[-5,1],[6,-15],[-7,-9],[-17,31],[-4,1]],[[9124,3523],[-2,2]],[[8705,3507],[5,17]],[[8751,3524],[-3,-8],[3,-5],[-1,-4],[-7,-6],[-3,-4],[-1,3]],[[8739,3500],[0,2],[-4,-6],[-10,-1],[-9,-7]],[[8716,3488],[-7,12],[-4,7]],[[7602,3524],[0,-29]],[[7602,3495],[-39,2]],[[7563,3497],[-3,0],[0,13]],[[8478,3543],[0,-12],[3,-5],[1,-3],[1,-1],[1,-9],[3,-3]],[[8487,3510],[0,-4],[-5,0],[-4,-4],[-3,-10],[-2,1],[-1,-2]],[[8472,3491],[-8,1],[-3,4],[-3,5],[0,3],[-2,2],[-2,0]],[[8454,3506],[0,6],[-2,4],[0,10],[-2,7],[-1,10]],[[5343,3530],[1,-4],[-3,-11],[2,-4],[-2,-5],[3,-2],[4,-1],[3,-12],[0,-3],[0,-2],[0,-3],[0,-6],[2,-2],[0,-6],[4,-2],[15,-14],[3,-15],[4,-15],[0,-10],[-3,-2],[3,-15],[2,-3]],[[5381,3393],[-19,0],[0,-1],[-39,1],[0,-17],[-29,1],[0,-15],[-14,0],[-9,-16]],[[5271,3346],[-7,-13],[-2,2],[0,-2],[-6,-1],[-1,-3],[-19,0],[0,-40],[-30,-53]],[[5206,3236],[-2,1],[-3,9],[-4,3],[-3,0],[-7,9],[-1,0],[-6,9],[0,4],[-4,2],[-1,3],[-2,8],[2,1],[1,8],[-3,5],[-1,8]],[[5172,3306],[0,3],[1,4],[7,3],[0,29],[-29,48]],[[8171,3516],[0,-2],[-5,-9],[-2,-3],[-1,-7],[7,-15],[-2,-8]],[[8168,3472],[-2,0],[-3,-3],[-11,-2],[-2,-2],[-7,2],[-3,4],[-4,0]],[[8136,3471],[-3,4],[-2,5],[-2,3],[-1,-1],[1,3],[-3,3],[0,4],[0,1],[0,3],[-2,5],[0,3],[-2,-2],[-1,3],[1,2],[2,1],[0,3]],[[9074,3515],[1,-2],[-2,-3],[-1,-5]],[[9072,3505],[-4,-2]],[[9068,3503],[-2,0],[-4,-12]],[[9062,3491],[0,9],[-1,-5],[-4,0],[2,-4],[0,-3]],[[9059,3488],[-4,-2]],[[9055,3486],[-4,-1],[-3,1],[-1,0],[-4,4],[-2,4],[-1,1],[-2,-1]],[[9038,3494],[-2,6],[-2,-5],[-1,5],[-1,-4],[-1,0],[-2,-3],[-5,9],[1,3],[0,2],[-5,3],[0,1],[-2,1],[1,8],[-1,1],[0,2],[2,0]],[[8954,3520],[-1,-13],[-4,-3],[-4,-13]],[[8945,3491],[-2,-3],[-2,-3],[-4,1],[-2,-4],[-2,1]],[[8933,3483],[-3,1],[-1,6],[-5,0],[0,4],[-2,2],[-7,30]],[[9204,3532],[-1,-7],[3,-4],[-4,2],[-6,-10],[-3,-42],[-4,-4],[-4,35],[8,33],[-3,-1],[1,9],[2,7],[6,-2]],[[8402,3491],[-17,-25]],[[8385,3466],[-4,-1],[-8,12]],[[8373,3477],[-1,5],[0,10],[-10,11]],[[8362,3503],[3,8],[0,4],[4,8]],[[8705,3507],[-3,-4],[-1,-8],[-6,-4],[-2,0],[-1,-4],[-5,-4],[-9,0],[-4,4],[-3,4]],[[8671,3491],[-1,4],[-4,1],[-2,-1],[-2,1],[-2,6],[0,4],[-3,2],[-3,5],[1,10],[-6,9],[1,3],[2,1],[1,4]],[[8124,3514],[-21,-24],[0,-2],[-3,-2],[-2,-9]],[[8098,3477],[0,-3],[-3,-2],[-2,-4],[-4,1]],[[8089,3469],[2,6],[-3,1],[1,10],[0,7],[-7,14],[-1,4],[-2,5],[-4,6]],[[6009,3444],[-79,-1],[-28,0]],[[5902,3443],[-32,0]],[[8508,3506],[0,-9],[2,-2],[0,-3]],[[8510,3492],[-4,3],[-1,2],[-2,3],[-5,11],[-3,-4],[-8,3]],[[8454,3506],[0,-2],[0,-3],[-2,0],[-3,-6],[-2,2],[0,-1],[0,-5],[-2,-4],[-1,1],[-1,-5],[-1,-3],[1,-4],[-3,-2]],[[8440,3474],[-18,32]],[[8582,3495],[-6,-2],[-3,1],[-2,-1],[-5,-8],[-6,-8],[-3,4]],[[8557,3481],[0,2],[-5,3],[-1,4],[-5,-2],[2,15],[-2,19]],[[8671,3491],[-2,-8],[-3,-3],[-3,-3],[-1,-1],[-3,-2],[-1,-3],[-1,0],[-1,0]],[[8656,3471],[-9,-5],[-1,-4],[1,-5],[-3,-4],[-3,-2],[-2,2],[-1,-2],[-3,0]],[[8635,3451],[1,2],[-2,8],[0,5],[-2,0],[0,3],[-1,3],[-2,1],[-2,11],[-2,11],[-3,7]],[[9148,3542],[7,0],[9,-26],[-2,-10],[-2,0],[-4,11],[-9,13]],[[9038,3494],[-2,-7],[-2,-1],[-3,-2],[-1,-4],[-6,0]],[[9024,3480],[-38,20]],[[8986,3500],[0,13]],[[9106,3515],[-2,-4],[1,0],[1,1],[1,-1],[1,2],[-1,-2],[1,-6]],[[9108,3505],[0,-13],[-6,-4]],[[9102,3488],[-3,3]],[[9099,3491],[-2,9],[-2,3],[-5,-8],[-2,9],[-3,-2],[-4,0],[-1,-1],[-4,3],[0,1],[-2,-2],[-2,2]],[[7687,3535],[-1,-42],[1,0],[0,-37]],[[7687,3456],[-19,0]],[[7668,3456],[0,2],[-16,3]],[[7652,3461],[1,33],[-2,0],[1,28]],[[7724,3454],[-37,2]],[[5044,3530],[10,0]],[[5124,3434],[-18,1],[-3,3],[-3,0],[-2,-2],[-2,-4],[-3,-5],[0,-4],[-2,0]],[[5091,3423],[0,3],[-5,2],[-2,6],[-2,2],[-3,8],[-4,7],[-8,11],[-14,11],[-6,12],[-3,0],[0,5],[-5,5]],[[8362,3503],[-2,-2],[0,-7],[-7,-2],[-2,-4],[-2,2],[0,-4],[-4,-6]],[[8345,3480],[-1,4],[-3,1],[1,3],[-7,22],[-10,15],[-2,2],[2,4]],[[8789,3505],[-8,-11],[-9,-3]],[[8772,3491],[-11,-9],[-6,-6],[-4,-4]],[[8751,3472],[-2,3],[2,2],[-2,5],[-2,-5],[-10,18],[2,5]],[[7287,3444],[-29,-1]],[[7258,3443],[-32,0]],[[7226,3443],[0,72]],[[7287,3533],[0,-89]],[[7343,3444],[-21,0]],[[7322,3444],[-35,0]],[[7343,3500],[0,-56]],[[8909,3517],[-2,-4],[-6,-5],[-3,-2],[-4,5]],[[7020,3532],[0,-17],[2,-72]],[[7022,3443],[-49,0]],[[6973,3443],[0,72],[-2,0]],[[7071,3443],[-41,0]],[[7030,3443],[-8,0]],[[7071,3515],[0,-72]],[[8345,3480],[0,-4],[-3,-3],[-12,-8]],[[8330,3465],[-9,1],[-3,3],[-2,7]],[[8316,3476],[0,18],[-1,6],[-1,5],[2,7],[2,4],[0,7]],[[7177,3443],[-17,0]],[[7160,3443],[-40,0]],[[7120,3443],[0,72],[-2,0]],[[7177,3515],[0,-72]],[[9124,3523],[3,-10]],[[9127,3513],[-3,-1],[-3,1],[-1,0],[0,-5],[3,-11]],[[9123,3497],[-1,-1],[0,-4],[3,0],[1,1]],[[9126,3493],[2,-2],[5,-1],[1,-3]],[[9134,3487],[0,-7],[-2,-4]],[[9132,3476],[-3,10],[-5,1],[-4,-6],[-5,7],[-5,2],[-2,15]],[[5602,3253],[22,-39]],[[5624,3214],[-88,0],[-92,1]],[[5444,3215],[-26,0],[-7,0]],[[5411,3215],[0,11],[3,3],[0,7],[-3,8],[0,2],[0,4],[-4,7],[-1,12],[0,9],[1,2],[0,6],[-4,5],[-1,9],[-2,7],[3,10],[-6,11],[3,1],[-1,4],[-2,1],[-4,0],[0,4],[-3,4],[0,8],[-4,9],[2,7],[-5,7],[-1,5],[-3,5],[4,5],[-2,5]],[[8316,3476],[-7,-2]],[[8309,3474],[-14,-3],[-14,3]],[[8281,3474],[2,11],[-10,21]],[[8557,3481],[-1,-5],[-2,0],[-2,-8],[2,-11],[-3,-4],[2,-4],[-4,-5],[-3,0]],[[8546,3444],[0,2],[-5,1]],[[8541,3447],[0,2],[2,9],[-1,6],[-3,2],[-2,5],[1,4],[-3,7],[-3,1],[-4,4],[-1,8],[-2,6],[-4,4],[-3,-5],[-4,-4],[0,-4],[-2,-2]],[[8512,3490],[-2,2]],[[8933,3483],[-9,-36]],[[8924,3447],[-5,5],[-2,-4],[-2,1],[-1,-1],[-6,5]],[[8908,3453],[-2,5],[-3,-2],[-1,-1],[-2,1],[-1,-1],[0,10],[-3,-2],[0,3],[-2,2],[-1,-4],[-2,0],[-4,5],[-1,-2],[-2,-1],[0,-3],[-2,-7],[-4,-1]],[[6363,3443],[-5,0]],[[6431,3517],[0,-31],[6,-3],[0,-12],[10,-29]],[[6447,3442],[-35,0],[-2,1],[-47,0]],[[7652,3461],[-50,1]],[[7602,3462],[2,33],[-2,0]],[[7836,3463],[-7,-5],[-11,0],[0,-37]],[[7818,3421],[-40,1]],[[7778,3422],[0,30]],[[8089,3469],[-1,-3],[1,-3],[-3,-5],[2,-3],[0,-4],[0,-7],[-2,-3]],[[8086,3441],[-5,11],[-4,3],[-7,-2],[-7,-5]],[[8063,3448],[-3,3],[-2,5]],[[8058,3456],[3,-1],[2,1]],[[8207,3485],[-1,-5],[1,-4],[-2,-1],[-1,-6],[3,-2],[0,-2],[-1,-4],[-2,-4],[0,-1]],[[8204,3456],[-11,0]],[[8193,3456],[-6,-3],[-12,-1],[0,4],[-2,1]],[[8173,3457],[-2,1],[0,8],[-1,0],[-2,1],[0,5]],[[8841,3486],[-3,-2],[-4,-11],[-3,-4],[-3,2],[-1,4],[-2,0],[-6,-3],[-3,-5]],[[8816,3467],[-1,0],[-2,-2],[-1,0],[0,1]],[[8812,3466],[-2,21],[-6,16],[0,5]],[[8837,3490],[-1,5],[1,2],[-4,8],[-6,-3],[-1,-6],[1,-2],[1,0],[-1,-3],[2,-1],[2,-4],[3,0],[1,0],[2,4]],[[8825,3494],[-1,10],[-7,-7],[1,-2],[2,0],[2,-2],[3,1]],[[8986,3500],[-1,-34]],[[8985,3466],[-2,0],[-2,-3],[-2,1],[-4,-1],[-8,-6]],[[8967,3457],[-2,5],[-3,2],[0,3],[-5,4],[-3,0],[-3,2],[-1,8],[-5,1],[0,9]],[[8245,3504],[5,-23],[2,-4],[0,-3]],[[8252,3474],[-1,-2],[-3,1],[-1,-2],[-4,6],[-2,0],[-1,-2],[-2,0],[-1,2],[-5,0],[0,-6],[-5,-26]],[[8227,3445],[-15,9],[-8,2]],[[6515,3443],[-24,-1]],[[6491,3442],[-44,0]],[[6933,3443],[-44,0]],[[6889,3443],[0,73]],[[6934,3516],[-1,-73]],[[6889,3443],[-42,-1]],[[6973,3443],[-30,0]],[[6943,3443],[-10,0]],[[7226,3443],[-26,0]],[[7200,3443],[-23,0]],[[7432,3515],[0,-71]],[[7432,3444],[-24,-1]],[[7408,3443],[-16,1]],[[7392,3444],[0,56]],[[7473,3444],[-30,0]],[[7443,3444],[-11,0]],[[7473,3507],[0,-63]],[[7120,3443],[-41,0]],[[7079,3443],[-8,0]],[[8136,3471],[-3,-23],[-2,-3]],[[8131,3445],[-2,-7],[-10,-4],[-2,2]],[[8117,3436],[0,2],[-7,15],[-7,22],[-5,2]],[[9126,3493],[-1,4],[-2,0]],[[9127,3513],[6,-16],[16,-14],[1,-11]],[[9150,3472],[0,-5],[1,-3]],[[9151,3464],[0,-3],[-3,0]],[[9148,3461],[-3,2],[-9,23],[-2,1]],[[8812,3466],[-4,-3],[-8,-7],[-4,-8],[-3,-1],[-1,-1],[-1,2],[-1,-3],[-1,2],[-1,-1],[-1,1],[-3,-3],[0,-6],[-1,3],[-1,5],[-1,0],[0,-3],[-2,-5]],[[8779,3438],[0,5],[-1,8],[-1,1],[0,1],[2,-2],[-1,4],[-1,2],[-1,0],[-2,4],[0,2],[0,1]],[[8774,3464],[4,1],[1,4]],[[8779,3469],[0,3],[-1,1],[-1,2],[1,5],[3,0],[0,3],[-3,0],[-4,-3],[-2,6],[0,5]],[[7513,3454],[0,52]],[[7563,3497],[0,-44]],[[7563,3453],[-50,1]],[[8440,3474],[0,-7],[0,-4],[-2,-7],[1,-7],[-1,-1],[1,-3],[-3,-4],[-1,-6]],[[8435,3435],[-5,-2],[-15,-16]],[[8415,3417],[-1,5],[-1,0],[-2,3],[-5,13],[-3,0],[-2,-2],[-3,-1],[-2,2],[-5,6]],[[8391,3443],[-6,10],[0,13]],[[8512,3490],[-2,-3],[2,-2],[-4,-10],[0,-8],[1,-2],[-1,-7],[1,-2],[0,-5],[2,-4],[1,-15]],[[8512,3432],[-8,3]],[[8504,3435],[-5,1],[-5,6],[-4,7],[-3,-2],[0,4],[-4,-2],[-4,4]],[[8479,3453],[-1,3],[1,5],[-1,5],[-5,0],[0,3],[-3,6],[2,6],[0,10]],[[8023,3485],[2,18]],[[8058,3456],[-5,8],[-7,4],[-4,3],[-2,1],[-10,10],[-7,3]],[[8007,3441],[-7,0],[-2,7],[-1,3],[-2,7],[-2,3],[-2,-3],[0,-4],[4,-6],[0,-3],[-2,-1],[-3,1]],[[7990,3445],[-6,7],[0,11],[-5,6],[0,5],[-3,12],[1,5],[-3,0]],[[7995,3507],[3,-3],[0,-7],[-3,-3],[0,-7],[0,-1],[-2,-3],[2,-2],[0,-6],[-2,-8],[2,-3],[7,-6],[0,-3]],[[8002,3455],[0,-7],[3,-5],[2,-2]],[[8716,3488],[-4,-3],[1,-10],[-4,0],[-1,-4],[0,-2],[5,-3],[1,0],[-1,-4],[-5,-6],[-6,-2],[-5,-3],[-1,-2],[2,-3]],[[8698,3446],[-3,-4],[0,5],[-8,-4],[-9,-11],[-2,0],[-2,5],[-6,-2]],[[8668,3435],[-2,10],[-4,11],[-4,8],[-2,7]],[[8023,3485],[-4,1],[-7,-9],[-5,-12],[-2,-4],[-3,-6]],[[7513,3454],[0,-11]],[[7513,3443],[-37,1]],[[7476,3444],[-3,0]],[[8281,3474],[-1,-21],[-3,2]],[[8277,3455],[-7,2],[-3,7],[-4,-6],[-11,16]],[[8479,3453],[-4,-2],[-1,0],[-1,-6],[0,-1],[-3,-6],[-5,4],[-6,-6],[0,-1]],[[8459,3435],[-3,1],[-2,-2],[-1,1],[0,-3],[-4,0],[-2,2],[-2,-2],[-1,1],[0,3],[-4,-4]],[[8440,3432],[-5,0],[0,3]],[[9068,3503],[0,-6],[0,-2],[1,-1],[2,0],[3,6],[-2,2],[0,3]],[[9099,3491],[-3,-4],[-1,-4],[-5,-3],[-7,-15]],[[9083,3465],[-3,-1],[-19,-21]],[[9061,3443],[0,31]],[[9061,3474],[1,0],[0,2],[4,-1],[1,9],[-5,7]],[[8541,3447],[-4,-1],[-4,-10],[-12,-8],[0,-4],[-4,0],[-1,-1],[-3,2]],[[8513,3425],[0,3],[-1,4]],[[8373,3477],[-8,-21],[-7,-14],[-2,-13]],[[8356,3429],[-19,3]],[[8337,3432],[0,3],[-5,10],[-2,20]],[[7918,3452],[-3,0],[0,-6],[-2,0],[0,-4],[-2,0],[0,-5],[-2,-1],[0,-1],[-1,0],[0,-3],[-4,-4]],[[7904,3428],[-37,0]],[[7867,3428],[-1,1],[0,7],[-2,0],[0,7],[-2,0],[0,9],[-5,1]],[[8744,3456],[-7,-3],[-9,-6],[-2,4],[-4,-3],[-3,4],[-1,0],[-6,-5],[-6,-11],[-3,-1]],[[8703,3435],[-5,11]],[[8751,3472],[-4,-5],[-3,-1],[0,-10]],[[8635,3451],[-5,-2],[-4,-6],[-3,1],[-4,-6]],[[8619,3438],[-3,-3],[-3,2],[-4,9],[-6,2],[0,7],[-4,13],[-1,14]],[[7392,3444],[-3,-1]],[[7389,3443],[-46,1]],[[9016,3442],[-1,-1],[-6,1],[-1,2],[-1,4],[-1,-1]],[[9006,3447],[-4,-1],[-3,1],[0,2],[-2,0],[0,2],[-1,0],[-2,0],[-3,6],[-3,4],[-1,4],[-2,1]],[[9024,3480],[-1,-6],[-3,0],[-3,-3],[-2,-2],[1,-27]],[[9062,3491],[-3,-3]],[[7602,3462],[0,-20]],[[7602,3442],[0,-14]],[[7602,3428],[-39,1]],[[7563,3429],[0,24]],[[5091,3423],[-2,1],[-3,2],[0,-2]],[[5086,3424],[-1,3],[-7,0],[-3,-1],[-1,-4],[-2,-4],[-1,-4]],[[5071,3414],[-8,21],[-16,-2],[-10,11],[-9,20]],[[9055,3486],[0,-2],[0,-4],[3,-4],[0,-2],[3,0]],[[9061,3443],[-20,-22]],[[9041,3421],[-1,1],[0,-5],[-1,7],[-1,0]],[[9038,3424],[-5,4],[-1,-1],[-1,7],[-2,1],[-2,3],[-1,0],[-6,5],[-2,-2],[-2,1]],[[8596,3481],[-13,-16],[0,-4],[1,-5],[-1,-1],[0,-6],[-8,-4],[-5,-8]],[[8570,3437],[-8,10],[-6,-6],[-4,0],[-8,-5],[0,2],[0,5],[2,1]],[[7990,3445],[-4,0],[-2,-4],[0,-5],[-3,0],[0,-2],[-2,-1],[0,-1],[-3,-1],[0,-4],[-4,-2],[0,-4],[-2,0],[0,-4]],[[7970,3417],[-6,0],[0,-1],[-9,0]],[[7955,3416],[1,13],[-3,7],[0,8],[-3,4],[-2,8],[1,11]],[[8967,3457],[-4,-33]],[[8963,3424],[-14,-37]],[[8949,3387],[-4,7],[2,3],[-1,9],[1,1],[-1,4],[1,1],[0,3],[-2,1],[0,2],[-3,9],[-2,1],[1,4],[-1,14],[-2,0],[0,-1],[0,-3],[0,-6],[-2,-1],[-2,7],[-8,-1],[1,5],[-3,1]],[[9102,3488],[4,-6],[9,1],[6,-12],[4,10],[1,-10]],[[9126,3471],[-1,-2],[1,-5],[-3,-8],[0,-2],[-13,-11]],[[9110,3443],[-9,-10]],[[9101,3433],[-1,12],[0,8],[-3,-1],[-4,4],[-1,-2],[-2,2],[0,-1],[0,3],[-1,3],[-1,-3],[-1,4],[-2,0],[-2,3]],[[8779,3469],[-1,2],[-2,0],[-4,-5],[2,-2]],[[8779,3438],[-8,-7]],[[8771,3431],[-4,-5],[-2,-4],[-3,0]],[[8762,3422],[-15,27],[-3,7]],[[9148,3461],[-1,-4],[-1,-6],[1,-3],[1,1],[2,-6],[1,1],[1,-2]],[[9152,3442],[-3,-6],[-10,20],[2,5],[-5,5],[0,-9],[-5,11],[1,8]],[[8864,3452],[-4,-39]],[[8860,3413],[-11,-11],[-21,9],[-4,-7]],[[8824,3404],[-2,5],[-1,5],[-10,2],[-6,2]],[[8805,3418],[1,4],[4,2],[0,3],[2,5],[3,1],[0,2],[0,1],[2,6],[-1,3],[2,4],[-1,4],[1,5],[-2,6],[0,3]],[[8023,3485],[10,-49]],[[8033,3436],[-14,-7],[-3,3],[-2,-3],[0,3],[-5,2]],[[8009,3434],[0,3],[-2,4]],[[8063,3448],[0,-16]],[[8063,3432],[-19,0],[-2,2],[-7,-1]],[[8035,3433],[-2,3]],[[8569,3423],[1,8],[0,6]],[[8619,3438],[1,-12],[-1,-2],[-1,1],[-3,-1],[-4,-3]],[[8611,3421],[0,2],[-19,-2],[-7,-12],[-3,3],[-4,-5]],[[8578,3407],[-7,7],[0,2],[-2,7]],[[8595,3434],[-3,0],[-2,-3],[0,-3],[2,0],[0,3],[4,1],[-1,2]],[[8251,3403],[0,4],[-16,5],[-3,11]],[[8232,3423],[-5,22]],[[8277,3455],[-5,-26]],[[8272,3429],[-2,-1],[-1,3],[-2,-5],[0,1],[-1,-3],[-2,0],[-1,-6],[-12,-15]],[[8391,3443],[-6,-11],[-2,2],[-1,-2],[-1,-3],[-10,-13]],[[8371,3416],[-4,-4],[-10,10],[-1,-1],[2,-5],[0,-1]],[[8358,3415],[-2,0],[-1,6],[-2,3],[3,5]],[[8117,3436],[-8,-8],[-16,-11]],[[8093,3417],[-4,16],[-3,8]],[[8337,3432],[-2,-6],[-3,-8],[-5,-3],[-4,2],[2,-5],[-2,0]],[[8323,3412],[-3,0],[-9,1]],[[8311,3413],[-2,52],[-1,0],[0,4],[1,5]],[[9150,3472],[1,3],[3,-4],[3,4],[4,-9],[-10,-2]],[[8311,3413],[-9,-5],[-12,-16]],[[8290,3392],[-2,3],[-4,6],[-3,5],[0,1],[-1,16],[-1,0],[-1,-5],[-4,7],[0,3],[0,-2],[-2,1],[0,2]],[[8173,3457],[-7,-81]],[[8166,3376],[-26,-1]],[[8140,3375],[-4,0]],[[8136,3375],[0,20],[0,27],[2,14],[-7,9]],[[9106,3375],[-1,2]],[[9105,3377],[0,7]],[[9105,3384],[-1,3],[-1,0],[2,6],[1,1],[0,2],[1,6],[2,3],[0,2],[1,8],[2,1],[1,10],[0,2],[-3,4],[0,4],[0,7]],[[9126,3471],[1,-18],[8,-6],[-3,-4],[5,2],[6,-10],[-3,-8]],[[9140,3427],[-1,1],[-33,-53]],[[8668,3435],[-4,-3],[-1,-3]],[[8663,3429],[-5,-6],[-5,-6],[-2,0],[-2,1],[-8,-3],[-3,-4],[0,-5],[-1,-2],[-11,-8],[-9,-8]],[[8617,3388],[-6,33]],[[7955,3416],[-2,0],[2,-15],[-2,-29],[-21,1]],[[7932,3373],[-17,0]],[[7915,3373],[0,4],[1,0],[-1,2],[-2,9],[-4,13],[0,5],[-1,3],[0,5],[-4,4],[2,5],[-2,5]],[[8805,3418],[-9,-9],[0,-2],[-3,-3],[-2,-10],[-1,-1],[-2,1],[-1,-1],[-1,-6]],[[8786,3387],[-15,44]],[[9006,3447],[-2,-44]],[[9004,3403],[-1,1],[-1,-2],[-4,3],[-1,2],[-1,-3],[-5,3],[-5,0],[-1,2],[-3,0],[-4,7],[-2,-2],[-1,2],[-3,1],[-1,-1],[-1,0],[-1,0],[-1,2],[-4,0],[-1,6]],[[9101,3433],[-43,-46]],[[9058,3387],[-5,3],[2,26],[-1,0],[-4,-2],[-2,1],[-1,-1],[-6,7]],[[9151,3464],[11,-8],[-2,-9],[-8,-5]],[[7867,3428],[0,-7],[2,0],[0,-14]],[[7869,3407],[-42,2]],[[7827,3409],[-9,0],[0,12]],[[7668,3456],[-1,-49]],[[7667,3407],[-36,1]],[[7631,3408],[-3,0],[0,33],[-26,1]],[[8009,3434],[-2,-18],[-5,-3],[0,-2],[2,-5],[3,-2]],[[8007,3404],[0,-7],[-2,-1],[-3,0],[-2,-4],[0,-4],[2,-9],[0,-2]],[[8002,3377],[-2,-4],[-2,-9],[-1,-2],[-4,1],[-5,9],[0,1]],[[7988,3373],[0,3],[-2,2],[-2,4],[0,5],[-1,0],[0,2],[-2,0],[0,3],[-2,3],[0,1],[-2,0],[0,2],[0,5],[-1,0],[0,3],[-2,0],[0,1],[0,5],[-2,0],[0,2],[-2,0],[0,3]],[[8192,3376],[-5,0]],[[8187,3376],[-21,0]],[[8193,3456],[-1,-80]],[[8232,3423],[-2,-1],[-4,-6],[-4,-12],[-2,-11],[-1,-17]],[[8219,3376],[-27,0]],[[8762,3422],[-7,-7],[-5,-1],[-16,-7]],[[8734,3407],[-4,-3],[-1,-6],[-6,-1],[-3,-1],[-6,0]],[[8714,3396],[-6,27],[-5,12]],[[7738,3405],[-59,2]],[[7679,3407],[-12,0]],[[7740,3454],[0,-49],[-2,0]],[[8093,3417],[3,-21]],[[8096,3396],[-33,0]],[[8063,3396],[0,36]],[[7563,3429],[-1,-34]],[[7562,3395],[-49,2]],[[7513,3397],[0,46]],[[7736,3347],[2,58]],[[7778,3422],[0,-18],[-1,0],[0,-57]],[[7777,3347],[-41,0]],[[8504,3435],[2,-3],[0,-5],[-2,0],[-5,-9],[-2,-1],[-6,-10],[-5,-1],[-4,-16],[-3,-2],[-1,-3]],[[8478,3385],[-7,7],[-1,5],[-2,-1],[0,9],[-1,3],[-2,3],[-2,4],[-2,0],[-2,20]],[[8941,3356],[-6,0]],[[8935,3356],[-32,0]],[[8903,3356],[-5,1]],[[8898,3357],[10,96]],[[8949,3387],[2,-5],[6,-6],[1,-2],[-1,-1],[-2,0],[-4,4],[-2,7],[-1,1],[-2,-1],[-1,-5],[-2,-15],[-3,-7],[1,-1]],[[9027,3357],[-11,0]],[[9016,3357],[-14,0]],[[9002,3357],[2,46]],[[9038,3424],[0,-37],[-11,-30]],[[8569,3423],[-7,-7],[-9,0],[-1,-2],[-6,-12],[0,-7],[-1,-2],[-6,-1],[-10,-5],[-6,-3],[-2,-5],[-5,-2]],[[8516,3377],[0,9],[-3,4],[0,3],[0,9],[-1,6],[1,8],[0,9]],[[8714,3396],[-10,-3],[-6,-5],[-9,-1],[1,-3],[-1,-7],[-6,-4]],[[8683,3373],[-1,0],[-7,30],[-12,26]],[[8136,3375],[-15,-1],[-2,5],[-17,4]],[[8102,3383],[-6,13]],[[6131,3442],[1,-252],[15,0],[-1,-26],[0,-126],[-1,-9],[0,-68],[-2,-66],[0,-63],[-3,0],[1,-40]],[[6141,2792],[-3,-1],[-4,2],[-2,0]],[[6132,2793],[-1,80],[-67,0],[0,50]],[[6064,2923],[0,521]],[[5991,2958],[0,69],[-19,0],[0,32],[-4,0],[0,-2],[-47,1],[0,33],[-9,0],[-1,20],[-2,-1],[-9,-1],[-7,11],[-2,0],[-1,1],[-6,0],[-17,10],[-5,9],[-7,10],[-5,4],[-4,5],[-2,0],[-7,6],[-5,1]],[[5832,3166],[0,51],[2,13],[-2,6],[0,2],[0,5],[2,4],[-4,3],[0,4],[0,4],[0,6],[4,7],[5,-2],[3,1],[2,5],[0,3],[0,2],[4,5],[3,1],[6,5],[3,5],[4,-1],[3,3],[2,5],[2,0],[1,3],[5,1],[1,1],[1,0],[4,5],[1,1],[2,0],[0,3],[2,2],[3,-2],[0,2],[4,9],[0,5],[-2,2],[0,1],[0,1],[2,2],[0,6],[-2,8],[0,5],[2,6],[0,5],[0,9],[0,9],[2,11],[-2,5],[5,21],[2,3],[2,8],[-2,8]],[[6064,2923],[-1,0],[-2,0],[2,7],[-7,3],[-2,-1],[3,-2],[0,-3],[0,-3],[0,-1],[-3,-2],[0,2],[-2,1],[0,6],[-9,4],[-5,8],[0,-3],[-2,1],[0,3],[-3,5],[-2,-4],[-3,-1],[-2,5],[-7,5],[0,5],[-9,-5],[0,4],[-1,1],[-4,-5],[0,-2],[2,-1],[1,-3],[-3,-4],[0,1],[-2,6],[0,7],[2,0],[0,2],[-2,0],[-3,-7],[-2,5],[-2,-3],[2,5],[0,2],[-2,0],[0,3],[2,0],[0,4],[-2,1],[0,2],[-1,-2],[-1,-7],[-3,-4]],[[7439,3368],[0,65],[2,0],[2,11]],[[7476,3444],[-2,-2],[2,-6],[3,-3],[0,-51]],[[7479,3382],[-1,-30]],[[7478,3352],[-28,0]],[[7450,3352],[0,16],[-11,0]],[[7439,3368],[-33,0]],[[7406,3368],[0,65],[2,0],[0,10]],[[7513,3397],[0,-18]],[[7513,3379],[-34,3]],[[7294,3367],[0,5],[-1,6],[0,6],[1,3],[2,0],[2,-1],[5,-1],[5,11],[7,0],[0,5],[2,0],[2,2],[3,0],[0,41]],[[7389,3443],[0,-109]],[[7389,3334],[-2,-48],[-23,0]],[[7364,3286],[2,4],[0,4],[0,1],[-9,3],[-9,16],[-3,1],[-3,-5],[-4,2],[0,4],[4,8],[-1,4],[-1,0],[-4,-2],[-3,7],[-5,1],[-2,2],[0,11],[-2,2],[-2,7],[-1,3],[-4,-1],[-2,-3],[-5,-11],[-5,-5],[-4,0],[-3,8],[-2,3]],[[7296,3350],[2,3],[5,1],[5,4],[2,6],[-3,4],[-9,-4],[-4,3]],[[7294,3367],[-36,-1]],[[7258,3366],[0,77]],[[7406,3368],[0,-33]],[[7406,3335],[-17,-1]],[[6669,3295],[2,148]],[[6760,3443],[0,-96]],[[6760,3347],[-2,0],[0,-83]],[[6758,3264],[0,-60]],[[6758,3204],[-31,0]],[[6727,3204],[1,66],[-40,0],[0,16],[-19,1],[0,8]],[[6216,3251],[0,192]],[[6363,3443],[-2,-7],[-1,-10],[-13,-14],[-1,-4],[-2,-1],[0,-113]],[[6344,3294],[0,-40]],[[6344,3254],[-128,-3]],[[6491,3442],[1,-26],[0,-8],[0,-12],[0,-4],[2,-10],[-2,-4],[0,-2],[2,0],[-2,-9],[4,-15],[0,-4],[-2,-24],[-2,-6],[-5,-1],[-2,-5],[18,-14],[10,-21],[21,-21]],[[6534,3256],[-3,-6],[-2,-1],[-5,4],[-2,-5],[-7,0]],[[6515,3248],[0,6],[-30,0],[2,-4],[0,-10],[-19,0]],[[6468,3240],[0,8]],[[6468,3248],[0,6],[-56,0],[-2,40],[-66,0]],[[7200,3443],[0,-77]],[[7200,3366],[0,-24]],[[7200,3342],[-38,0]],[[7162,3342],[-2,101]],[[7258,3366],[-58,0]],[[6847,3347],[-12,0]],[[6835,3347],[-75,0]],[[6847,3442],[0,-28],[0,-67]],[[7093,3407],[-3,9],[-4,6],[-1,4],[-4,6],[-2,11]],[[7162,3342],[0,-13],[-9,-1],[-5,5],[-4,4],[-5,1],[-2,4],[-5,7],[-9,-1]],[[7123,3348],[0,18],[-2,2],[-12,26],[-3,8],[-4,2],[-5,0],[-4,3]],[[5832,3166],[0,-233]],[[5832,2933],[-2,-2],[-1,0],[-6,-1],[-8,2],[-4,-5],[-3,-12],[-6,-3],[-5,2],[-2,5],[-2,-2],[-3,1],[-3,-4],[-4,6],[-12,0],[0,3],[-2,0],[-3,7],[-9,5]],[[5757,2935],[-2,6],[-7,8],[-2,2],[-3,3],[-2,5],[-3,0],[-2,3],[2,11],[-3,9],[-3,2],[0,4],[-3,19],[-2,6],[-3,1],[-2,3],[-2,14],[-5,7],[0,9],[0,5],[0,8]],[[5715,3060],[-1,11],[4,5],[-4,9],[1,3],[3,0],[2,1],[1,7],[0,9],[-3,15],[0,11],[-5,17],[-2,11],[2,8],[0,7],[1,4],[-1,8],[-2,2],[0,7],[-3,5],[2,8],[-2,16],[3,5],[-3,6],[-4,15],[3,8],[-1,6],[0,5],[1,4],[8,5],[3,0],[6,5],[5,-7],[2,-1],[5,5],[3,-2],[4,-4],[0,-5],[0,-4],[7,-9],[3,-1],[7,4],[2,16],[5,14],[0,5],[0,119]],[[8415,3417],[-1,-1],[1,-2],[-1,-1],[1,-4],[-1,-3],[-3,-1],[0,-1],[0,-1],[-2,-6],[-2,0],[-1,-3],[-9,-26]],[[8397,3368],[-19,2]],[[8378,3370],[-1,5],[1,3],[-2,9],[0,9],[0,6],[-2,10],[-3,0],[0,4]],[[7029,3347],[-49,-1]],[[6980,3346],[-37,0]],[[6943,3346],[0,97]],[[7030,3443],[-1,-77]],[[7029,3366],[0,-19]],[[6943,3346],[-12,0]],[[6931,3346],[-47,1]],[[6884,3347],[-37,0]],[[9106,3375],[0,-3],[-1,-2],[0,-5],[-2,-6],[1,-2]],[[9104,3357],[-23,0]],[[9081,3357],[-13,0]],[[9068,3357],[-1,1],[-1,-1],[-2,5],[0,6],[-2,5],[-1,2],[-10,4],[7,8]],[[9105,3384],[-2,0],[-2,-2],[2,-5],[2,0]],[[6216,3251],[0,-198]],[[6216,3053],[0,-70]],[[6216,2983],[0,-152]],[[6216,2831],[-26,0],[-2,-7],[0,-3],[-3,-2],[0,-2],[-4,0],[-3,-3],[0,-5],[-2,-4]],[[6176,2805],[-3,-4],[-4,0],[-2,-2],[-3,-5],[-4,-2],[1,-3],[-4,-5],[-2,-4],[-2,-6],[-1,-1],[-4,1],[-1,8],[-2,1],[0,2],[-4,7]],[[7093,3407],[0,-40],[-27,-1]],[[7066,3366],[-37,0]],[[6561,3442],[0,-7],[3,-10],[-3,-10],[1,-4],[-1,-8],[1,-9],[-3,-5],[-2,3],[-3,0],[-1,-5],[-3,0],[-2,-3],[2,-9],[-2,-3],[2,-8],[-2,-7],[4,-9],[-2,-10],[2,-5],[0,-24],[-4,-4]],[[6548,3305],[-5,-9],[0,-3],[2,-4],[0,-11],[-4,-5],[0,-7],[-3,-3],[-4,-7]],[[6669,3295],[-37,-1]],[[6632,3294],[-38,0],[0,10],[-46,1]],[[7628,3347],[-23,-1]],[[7605,3346],[0,62],[-3,1],[0,19]],[[7631,3408],[-3,-61]],[[5172,3306],[-6,7],[-1,0],[3,-7],[2,-12],[0,-3],[-4,0],[-4,5],[-4,11],[-6,3],[-3,-1],[0,-2],[-4,1],[0,-1],[-3,-3],[0,2],[-1,0],[-3,10],[-14,22],[-3,10],[-5,1],[0,4],[-3,9],[1,7],[-2,6],[-2,2],[-3,0],[-2,2],[-2,0],[-3,6],[0,3],[2,0],[0,2],[-2,6],[-4,1],[-4,10],[-6,10],[0,7]],[[8478,3385],[0,-2],[-7,-8],[3,-3],[0,-6]],[[8474,3366],[-7,0]],[[8467,3366],[-22,1]],[[8445,3367],[-1,1],[2,1],[-4,7],[-2,6],[-2,6],[0,8],[-2,6],[-1,5],[3,5],[-2,0],[2,3],[0,2],[2,10],[-1,1],[1,4]],[[8035,3433],[-2,-31]],[[8033,3402],[-21,0],[0,2],[-3,2],[-2,-2]],[[9170,3425],[-2,-4],[1,-3],[0,-2],[2,0],[-2,-5],[-2,1]],[[9167,3412],[-2,0],[-1,-4],[-3,3]],[[9161,3411],[-2,21],[2,4],[8,-5],[1,-6]],[[8445,3367],[-47,1]],[[8398,3368],[-1,0]],[[8516,3377],[-6,0],[-10,-7],[-3,-3]],[[8497,3367],[-2,-3],[-21,2]],[[8063,3348],[-2,0]],[[8061,3348],[-26,0]],[[8035,3348],[-2,54]],[[8063,3396],[0,-48]],[[8358,3415],[-3,-23],[-4,-20]],[[8351,3372],[-12,-2]],[[8339,3370],[-6,16],[1,6],[-2,2],[-2,0],[-2,8],[-3,0],[-2,2],[0,8]],[[8290,3392],[2,-15],[-2,-4]],[[8290,3373],[-20,2]],[[8270,3375],[-19,1]],[[8251,3376],[-1,14],[1,13]],[[9170,3425],[6,6],[10,-3],[12,-71]],[[9198,3357],[-2,0]],[[9196,3357],[0,10],[-5,23],[-5,-33]],[[9186,3357],[-2,0]],[[9184,3357],[-3,11],[2,-11]],[[9183,3357],[-8,0]],[[9175,3357],[1,22],[3,4],[0,2],[0,2],[-3,3],[0,3],[-4,3],[-4,1],[-3,14],[2,1]],[[8786,3387],[0,-4],[-3,-6],[-5,-3],[-1,3],[-3,0],[-2,-4],[-1,0],[0,-6],[1,-2],[0,-8]],[[8772,3357],[-21,1]],[[8751,3358],[-5,17]],[[8746,3375],[-2,1],[3,1],[1,5],[-1,4],[-4,-4]],[[8743,3382],[-9,25]],[[7605,3346],[-24,0]],[[7581,3346],[-19,1]],[[7562,3347],[0,48]],[[8679,3368],[-16,1]],[[8663,3369],[-8,0],[-1,-2],[-20,0]],[[8634,3367],[0,1],[-2,4],[-5,-4],[0,-2]],[[8627,3366],[-7,0]],[[8620,3366],[-3,22]],[[8683,3373],[0,-3],[-4,-2]],[[7915,3373],[-2,-5],[-2,0],[0,-11],[-2,-2],[-1,-8]],[[7908,3347],[-32,0]],[[7876,3347],[0,19],[-2,0],[0,17],[-3,0],[0,24],[-2,0]],[[9140,3427],[4,0],[-1,-3],[-7,-11],[0,-8],[5,12],[9,8]],[[9150,3425],[0,-4],[-1,-5]],[[9149,3416],[-3,-7],[-4,-52]],[[9142,3357],[-6,0]],[[9136,3357],[-32,0]],[[5206,3236],[2,-2],[3,-4],[0,-10],[3,-2],[0,-4]],[[5214,3214],[-101,1]],[[5113,3215],[-11,14],[-23,59],[-16,24],[-7,52],[4,10],[4,-6],[6,8],[4,32],[-3,6]],[[9068,3357],[-41,0]],[[9048,3387],[-2,-1],[2,-7],[0,3],[2,3],[-2,2]],[[9002,3357],[-24,-1]],[[8978,3356],[-12,-1]],[[8966,3355],[-25,1]],[[8578,3407],[-1,-4],[-3,-7],[0,-4],[-11,-13],[-4,-13]],[[8559,3366],[-20,-1],[-4,1],[-2,2],[-17,-1]],[[8516,3367],[-19,0]],[[8251,3376],[-9,1]],[[8242,3377],[-23,-1]],[[8620,3366],[-28,0]],[[8592,3366],[-21,0]],[[8571,3366],[-12,0]],[[8378,3370],[-25,2]],[[8353,3372],[-2,0]],[[7827,3346],[-26,1]],[[7801,3347],[-3,0]],[[7798,3347],[-21,0]],[[7827,3409],[0,-63]],[[8824,3404],[-3,-1],[-2,-6],[1,-8],[1,-6],[1,-6],[2,-8],[-1,-13]],[[8823,3356],[-35,1]],[[8788,3357],[-16,0]],[[7988,3373],[-2,-1],[-2,-2],[-3,-21],[0,-1]],[[7981,3348],[-4,-10],[-1,-1],[-2,5],[2,6]],[[7976,3348],[-2,0],[2,5],[-2,4],[0,1],[-4,1],[-3,-2],[0,-2],[0,-3],[3,-4]],[[7970,3348],[2,-5],[-3,-7],[3,-7],[0,-10]],[[7972,3319],[-3,3],[-4,3],[-1,5],[-6,-1],[-2,3],[0,1],[-3,1],[-2,-1],[-1,-6],[-18,0]],[[7932,3327],[-2,1],[2,9],[0,15],[0,5],[0,16]],[[9175,3357],[-18,0]],[[9157,3357],[-15,0]],[[9149,3416],[2,-2],[0,-2]],[[9151,3412],[0,-1]],[[9151,3411],[-1,-4],[3,-5],[7,2],[1,7]],[[5715,3060],[-91,154]],[[8853,3357],[-28,-1]],[[8825,3356],[-2,0]],[[8860,3413],[-7,-56]],[[8842,3387],[-4,0],[-2,-4],[1,-4],[4,-2],[1,10]],[[8339,3370],[-32,3]],[[8307,3373],[-17,0]],[[9150,3425],[6,2],[0,-11],[-5,-4]],[[9151,3411],[7,2],[3,-2]],[[7876,3347],[-21,-1]],[[7855,3346],[-28,0]],[[7679,3346],[-7,0]],[[7672,3346],[-40,1]],[[7632,3347],[-4,0]],[[7679,3407],[0,-61]],[[7123,3348],[0,-63]],[[7123,3285],[-38,0]],[[7085,3285],[-18,-1],[-1,82]],[[8743,3382],[-1,-5],[1,-2],[1,-2],[0,-4],[2,6]],[[8751,3358],[-5,1]],[[8746,3359],[-40,3]],[[8706,3362],[-29,3]],[[8677,3365],[2,3]],[[7736,3347],[-35,0]],[[7701,3347],[-22,-1]],[[8035,3348],[-2,0]],[[8033,3348],[-7,15],[-3,3],[-7,0],[-11,9],[-3,2]],[[7562,3347],[-49,-1]],[[7513,3346],[0,33]],[[8102,3383],[3,-19],[0,-9],[-2,-7]],[[8103,3348],[-40,0]],[[5411,3215],[-138,-1]],[[5273,3214],[0,91],[7,0],[0,23],[-4,1],[0,17],[-5,0]],[[8110,3318],[-1,4]],[[8109,3322],[-6,14],[0,1],[2,5],[-2,3],[0,3]],[[8140,3375],[5,-51]],[[8145,3324],[-10,-1],[-6,-7],[-7,-1],[-5,2],[-3,2],[-4,-1]],[[7513,3346],[1,-2],[4,-60]],[[7518,3284],[-21,2]],[[7497,3286],[-19,0]],[[7478,3286],[0,66]],[[8242,3377],[-3,-2],[-2,-2],[0,-3],[-6,-15],[-1,-11],[-4,-11],[-4,0],[-2,-5]],[[8220,3328],[-1,-1],[-1,-8],[-3,-2],[-7,10],[-2,-1]],[[8206,3326],[-5,-4],[-14,17]],[[8187,3339],[0,16],[-2,4],[2,5],[0,12]],[[8270,3375],[-3,-22],[3,0],[-1,-6]],[[8269,3347],[-2,0],[0,-2],[0,-7],[-2,0],[-1,-15],[-1,-4],[0,-2]],[[8263,3317],[-1,0],[0,-4],[-2,0],[-4,-3],[1,7],[-2,1],[-1,-8],[-1,0],[-4,5],[-6,-5],[0,-3],[-1,-1],[-1,2],[-1,5],[-1,0],[-1,-3],[-1,-11],[-1,-1]],[[8236,3298],[-3,0],[-1,1],[-5,15],[-7,14]],[[8173,3314],[-7,-1],[-14,4]],[[8152,3317],[-7,1],[0,6]],[[8187,3339],[-3,-2],[1,-4],[-3,0],[0,2],[-2,-2],[-5,-8],[0,-6],[-2,0],[0,-5]],[[8307,3373],[-2,-25]],[[8305,3348],[-1,-16]],[[8304,3332],[-14,1]],[[8290,3333],[-16,3],[-2,9],[-3,1],[0,1]],[[7932,3327],[0,-74]],[[7932,3253],[-30,-3]],[[7902,3250],[-8,0]],[[7894,3250],[5,20],[3,4],[2,1],[2,3],[2,6],[1,2],[4,4]],[[7913,3290],[3,4],[2,6],[5,5],[0,4],[-1,5],[1,8],[0,4],[-3,2],[-2,1],[-2,4],[2,5],[-2,0],[-1,9],[-7,0]],[[8353,3372],[-1,-17]],[[8352,3355],[-8,-5],[0,-3],[-2,1],[0,2],[-4,-2],[-2,-4],[-2,-7],[0,-5]],[[8334,3332],[-3,2],[-3,9],[-12,5],[-2,5],[-2,-3],[2,-2],[-3,0],[-3,2],[-3,-2]],[[8398,3368],[4,-15]],[[8402,3353],[-5,0],[-6,6],[-4,4],[-4,1],[-7,-6],[-2,-5],[-1,0],[-2,-5],[-1,-16],[-2,0]],[[8368,3332],[-2,0],[-1,6],[-5,12],[-8,5]],[[8634,3367],[-7,-1]],[[8649,3348],[-1,-1],[-3,-1],[-4,-7],[-3,-1],[-5,-5],[-7,0],[-6,-5]],[[8620,3328],[-5,0],[-2,0],[0,5],[-2,0],[-1,3],[-4,1],[-11,-4],[-7,3],[-3,-2]],[[8585,3334],[-1,3],[7,10],[0,2],[1,4],[0,9],[0,2],[0,2]],[[8663,3369],[-8,-7],[-6,-14]],[[8677,3365],[-3,-13],[1,-9],[-4,-15]],[[8671,3328],[0,-6],[3,-6],[-2,-1],[-9,1],[-7,-8]],[[8656,3308],[-2,-5]],[[8654,3303],[-1,1],[-5,6],[0,5],[-3,3],[-2,6],[9,19],[-3,5]],[[7268,3285],[-2,1],[-8,0]],[[7258,3286],[0,80]],[[7296,3350],[0,-33],[11,0],[0,-17]],[[7307,3300],[-21,-1],[0,-14],[-18,0]],[[8445,3367],[0,-4],[1,-9],[-2,-5],[-2,-1],[-2,1],[-2,-1],[-1,-10],[0,-8],[2,-3],[-1,-5],[1,-15],[-4,-3],[-2,-10]],[[8433,3294],[-2,-7],[-3,-2]],[[8428,3285],[-3,8],[-7,5],[-2,-1],[0,8],[-2,2],[-1,-2],[-8,19]],[[8405,3324],[2,3],[2,1],[-3,8],[-4,17]],[[7410,3286],[-6,0],[2,43],[2,5],[-2,1]],[[7450,3352],[-11,0],[0,-52],[0,-31]],[[7439,3269],[-12,-1],[0,1],[2,1],[-2,4],[0,4],[-2,1],[-1,6],[-14,1]],[[8571,3366],[-9,-10],[-1,1],[-2,-1],[-1,3],[-7,-4],[-4,-5],[-6,-13],[-1,0],[0,-4],[-7,-5]],[[8533,3328],[-2,-1],[-2,3],[-2,2],[-3,-2],[0,3]],[[8524,3333],[1,6],[-2,10],[-2,8],[-5,10]],[[8477,3333],[-3,1],[0,3],[0,2],[-7,27]],[[8524,3333],[-2,-1],[-1,1],[-3,-4],[-1,-3],[0,-2],[-1,-2],[-2,2],[-1,0],[0,-2],[-1,1],[-1,-4],[-1,3],[-1,-3],[-3,4],[-7,-8],[-2,2]],[[8497,3317],[-1,2],[-2,0],[0,-2],[-3,0],[0,8],[-4,4],[0,4],[-2,0],[-2,0],[-2,2],[-4,-2]],[[8466,3305],[-1,3],[-4,-13],[-1,0],[-2,2],[-11,1],[0,-11],[-3,2],[-4,5],[-2,-1],[-5,1]],[[8477,3333],[-2,-5],[-2,0],[-2,-1],[0,-21],[-1,-1],[-2,2],[-2,-2]],[[7085,3285],[0,-31]],[[7085,3254],[-4,1],[-5,-4],[-3,-13],[-4,-4],[0,-6],[-4,-3],[-5,-1],[-5,4],[-4,5],[-3,4],[-2,3],[2,10],[-2,4],[-2,0],[-3,0],[-2,-6],[-3,-12],[-6,-6]],[[7030,3230],[0,34]],[[7030,3264],[0,83],[-1,0]],[[7258,3286],[-20,-1]],[[7238,3285],[-38,1]],[[7200,3286],[0,56]],[[8550,3298],[-2,9],[-4,6],[1,1],[-2,2],[1,0],[-1,2],[-1,-2],[-1,-3],[-4,-5],[-3,1]],[[8534,3309],[-1,3],[1,4],[-2,9],[1,1],[0,2]],[[8585,3334],[0,-2]],[[8585,3332],[-10,-9],[-4,0],[-3,-6],[-6,-3],[-12,-16]],[[8716,3323],[-2,-5],[-6,4],[-3,-4],[0,-1],[1,-8],[-2,-3],[-3,1],[-1,-3],[-1,-1],[-2,-5],[-2,-1]],[[8695,3297],[-6,8],[-2,0],[-6,12],[-10,11]],[[8706,3362],[0,-7],[2,-5],[1,-5],[5,-10],[0,-6],[2,-4],[0,-2]],[[8386,3283],[-1,-4],[-1,5],[-1,-1],[-2,1],[-1,-1],[-2,0],[-2,3],[-2,-3],[-3,-5],[-2,1]],[[8369,3279],[-2,1]],[[8367,3280],[4,11],[-4,21],[1,20]],[[8405,3324],[-2,-1],[-3,-7],[-2,0],[-1,-3],[0,-5],[-7,-1],[-2,-12],[-1,-2],[0,-7],[-1,-3]],[[8746,3359],[-3,-11],[-2,-6],[1,-10],[-1,-3]],[[8741,3329],[-2,-1],[0,-4],[-2,-1],[-2,2],[-1,5],[-4,4],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-6,-9]],[[8788,3357],[-1,-57]],[[8787,3300],[-1,-2]],[[8786,3298],[-1,2],[-6,0],[-1,6],[-4,-2],[-3,1],[-4,-7],[-2,5],[-3,-3],[-1,4],[-1,-4],[-2,3],[-1,-4],[-8,-2]],[[8749,3297],[0,17],[-2,5],[-3,5],[-3,5]],[[8033,3348],[-47,0]],[[7986,3348],[-5,0]],[[7976,3348],[-6,0]],[[7364,3286],[-2,0]],[[7362,3286],[-29,-1]],[[7333,3285],[-18,0],[0,15],[-8,0]],[[9183,3357],[1,-7],[-5,-2],[10,-13],[1,-3],[-4,1],[5,-10],[2,10],[0,-15],[12,-44],[0,-7],[-5,6],[-5,25],[-4,5],[1,5],[-6,5]],[[9186,3313],[-1,4],[-1,-1],[-1,3],[-5,-1],[-6,10],[0,4],[0,2],[-15,23]],[[9186,3357],[9,-1],[-2,-13],[-4,1],[0,8],[-5,5]],[[9198,3357],[9,-61]],[[9207,3296],[-1,-1]],[[9206,3295],[-10,62]],[[9081,3357],[2,-4],[6,-4],[1,-4],[-1,-2],[-3,0],[-3,-5],[0,-5],[-7,-35]],[[9076,3298],[0,-4],[-7,-1],[2,-9]],[[9071,3284],[-2,0],[-2,4],[-5,3],[0,7],[-2,2],[-1,7],[-4,6],[-7,-3],[-1,0],[-1,3],[-1,2],[2,10],[0,5],[-7,6],[-2,7],[-4,1],[-4,-1],[-14,6]],[[9016,3349],[0,8]],[[9104,3357],[1,-9],[-3,-9],[-1,-6],[1,-4],[2,-1]],[[9104,3328],[16,-15],[3,-9],[-3,-7]],[[9120,3297],[-21,-1],[-2,1],[-12,0],[-9,1]],[[9186,3313],[5,-24],[-2,-4],[-19,28]],[[9170,3313],[-1,1],[-2,1],[-2,7],[-2,0],[-1,4],[-2,2],[-2,2],[-8,7],[-8,11]],[[9142,3348],[-6,9]],[[9145,3324],[-9,-7]],[[9136,3317],[-3,-4],[-4,0],[-4,-5]],[[9125,3308],[-8,11],[-13,9]],[[9142,3348],[0,-11],[3,-13]],[[8979,3303],[3,5],[-4,48]],[[9016,3349],[-1,-1],[-2,-30],[-2,-11],[-4,-18]],[[9007,3289],[-5,4],[-5,1],[-2,3],[-16,6]],[[8825,3356],[0,-57]],[[8825,3299],[-38,1]],[[8871,3356],[4,1]],[[8875,3357],[11,0]],[[8886,3357],[12,0]],[[8903,3356],[0,-59]],[[8903,3297],[-9,0]],[[8894,3297],[-24,1]],[[8870,3298],[1,58]],[[8853,3357],[18,-1]],[[8870,3298],[0,-1]],[[8870,3297],[-45,2]],[[8958,3255],[-13,11],[-5,-1]],[[8940,3265],[-4,0],[-1,4],[-1,5],[1,22]],[[8935,3296],[0,60]],[[8966,3355],[-1,-2],[-3,-5],[-1,-9],[0,-52],[2,-1]],[[8963,3286],[-5,-20],[0,-11]],[[8935,3296],[-13,1]],[[8922,3297],[-19,0]],[[8979,3303],[-3,-8],[-3,0],[-3,-11],[-7,2]],[[8367,3280],[-6,3],[-13,10],[1,2],[-7,2],[-6,10],[0,5],[-2,0]],[[8334,3312],[0,20]],[[8307,3300],[-3,-1],[-2,7],[2,26]],[[8334,3312],[-1,-3],[1,0],[0,-2],[-1,0],[-2,-9],[-1,0],[-2,-3],[-2,2],[-3,-1],[0,-2],[-12,4],[-4,2]],[[7478,3286],[-9,0],[0,-17],[-9,-1]],[[7460,3268],[-21,1]],[[9071,3284],[2,-1],[1,-6],[0,-2],[1,-4],[-6,-2],[-2,-3]],[[9067,3266],[-6,-15]],[[9061,3251],[-2,0],[-1,4],[-3,2],[-5,1],[-2,6],[0,5],[-7,2],[-2,5],[-5,3]],[[9034,3279],[-2,-1],[-2,1],[-5,0],[-1,-1],[-7,1],[-4,4],[0,4],[0,2],[-2,-1],[-2,1],[-1,-2],[-1,2]],[[7200,3286],[-9,-1]],[[7191,3285],[-40,-1]],[[7151,3284],[-28,1]],[[9170,3313],[-3,-4],[10,-23],[-3,-7],[-9,5],[-5,10]],[[9160,3294],[-2,3],[-5,2],[-8,25]],[[8654,3303],[-8,-26],[-5,-6]],[[8641,3271],[-4,-1],[-3,8],[-5,1]],[[8629,3279],[-2,11],[-3,4],[1,3],[-5,3],[-3,0]],[[8617,3300],[0,6],[3,16],[0,6]],[[7986,3348],[2,-3],[-4,-8],[2,-7],[-5,-11],[0,-6],[-4,-18],[-1,-1]],[[7976,3294],[-2,0],[0,-5],[-11,-1]],[[7963,3288],[-5,6],[-2,4],[0,1],[2,1],[5,-2],[7,2],[0,4],[0,3],[-6,5],[-2,4],[2,3],[5,-2],[3,2]],[[8021,3295],[0,-4],[-17,0]],[[8004,3291],[-28,3]],[[8033,3348],[2,-5],[0,-13],[-2,2],[-5,-5],[-2,1],[-1,2],[-2,0],[-2,-35]],[[8061,3348],[0,-65]],[[8061,3283],[0,-8],[-12,0],[0,-9],[-3,0]],[[8046,3266],[-6,4],[0,4],[-7,2],[-5,11],[-3,2],[-4,6]],[[8109,3322],[-9,0],[0,-9],[1,-5],[-1,-10],[-2,-2],[-2,-2],[-2,-7],[0,-7],[-3,0],[-2,-3]],[[8089,3277],[0,3],[-28,3]],[[8290,3333],[0,-1],[0,-4],[-6,-3],[-8,-16]],[[8276,3309],[-4,4],[-3,5],[-2,-1],[-1,-8],[-1,0],[-1,4],[1,4],[-2,0]],[[7030,3264],[-50,0]],[[6980,3264],[0,82]],[[6884,3347],[0,-83]],[[6884,3264],[-49,0]],[[6835,3264],[0,83]],[[7913,3290],[-14,1],[0,12],[-44,2]],[[7855,3305],[0,3],[2,0],[3,0],[0,25],[0,1],[-1,0],[-2,11],[-2,1]],[[6835,3264],[-77,0]],[[6931,3346],[0,-82]],[[6931,3264],[-47,0]],[[7731,3274],[0,-9],[-9,1],[0,-17],[-12,0]],[[7710,3249],[2,17]],[[7712,3266],[0,12],[-2,2],[2,5],[-4,1],[-3,3],[0,4],[3,2],[-1,2],[0,3],[-6,4],[0,5],[0,3],[-3,0],[0,3],[3,1],[0,2],[-3,-1],[-2,0],[0,6],[5,5],[0,19]],[[7736,3347],[-1,-44]],[[7735,3303],[0,-16],[-6,0],[0,-9],[2,0],[0,-4]],[[7775,3300],[-40,3]],[[7798,3347],[-1,-31],[-10,1],[0,-17],[-12,0]],[[7806,3233],[-9,0],[0,6],[-24,0]],[[7773,3239],[0,15],[5,0],[0,2],[-3,0],[0,3],[2,1],[1,33],[-3,0],[0,7]],[[7801,3347],[0,-2],[2,-1],[3,-1],[0,-10],[4,0],[0,-6],[2,1],[0,-3],[1,0],[0,-10],[2,1],[0,-13]],[[7815,3303],[0,-5],[-7,0],[0,-2],[-2,0],[0,-63]],[[7855,3305],[0,-22]],[[7855,3283],[-21,0],[-2,-5],[-1,0],[-2,5],[-4,3],[0,5],[-3,3],[-4,4],[0,-3],[-1,1],[0,4],[-2,3]],[[7520,3273],[-2,11]],[[7581,3346],[0,-34]],[[7581,3312],[0,-15],[-2,0]],[[7579,3297],[-12,0],[0,-4],[-28,1],[0,-16],[-5,1],[0,-6],[-14,0]],[[7712,3266],[-39,2],[0,7],[-5,0]],[[7668,3275],[2,55],[-2,2],[2,3],[0,10],[2,-2],[0,3]],[[7632,3347],[1,-71]],[[7633,3276],[-17,1]],[[7616,3277],[-7,0],[0,6],[-2,0],[0,6],[-2,0],[0,1],[-1,0],[0,13],[-2,0],[0,3],[-2,0],[0,4],[-19,2]],[[7668,3275],[-3,-1]],[[7665,3274],[-32,2]],[[6980,3264],[-49,0]],[[5273,3214],[-58,0]],[[5215,3214],[-1,0]],[[8206,3326],[1,-9],[-6,-18],[-2,-22],[-4,-4],[0,-13],[-1,3]],[[8194,3263],[-12,1]],[[8182,3264],[2,21],[-2,1],[3,1],[-3,7],[2,4],[-2,2],[3,7],[2,2],[-5,3],[-2,0],[-3,1],[-4,1]],[[8617,3300],[-4,-6],[-2,-5],[-1,-4],[-2,-1],[-4,0],[-5,-4],[-5,-9]],[[8594,3271],[-5,9],[1,52],[-5,0]],[[8497,3317],[-1,-5],[0,-4],[-2,-5],[1,-9],[-3,-5],[1,-3],[-1,-1]],[[8492,3285],[-17,1],[-2,3]],[[8473,3289],[-7,16]],[[7410,3286],[1,-51],[-7,-1],[0,-7]],[[7404,3227],[-19,-1]],[[7385,3226],[2,43],[-25,0],[0,17]],[[8749,3297],[-1,-34]],[[8748,3263],[-11,0],[-1,-5]],[[8736,3258],[-6,-2],[-4,2],[-3,-2],[-7,1],[-7,-7]],[[8709,3250],[-3,5],[-4,3],[0,6],[-3,2],[-2,3],[-6,1],[-3,4]],[[8688,3274],[5,4],[4,11],[-2,8]],[[7953,3253],[-21,0]],[[7963,3288],[2,-8],[0,-3],[-7,-6],[-1,-2],[-1,-12],[-3,-4]],[[8307,3300],[-1,-2],[1,-4],[-1,-3],[1,-2],[-1,-2],[2,-1],[-3,-3],[0,-5]],[[8305,3278],[0,-1],[-3,-1],[-1,-3],[-1,-2],[-5,4],[0,-2],[-1,2],[-4,-2],[-2,1],[0,-4],[-5,0]],[[8283,3270],[0,5],[-2,3],[-3,27],[-2,4]],[[8534,3309],[0,-2],[-1,-4],[-1,0],[-4,5],[-4,-5],[-5,-5],[1,-2],[-2,-2],[0,1],[-1,-6],[-1,0],[-1,-3]],[[8515,3286],[-2,-3],[-1,4],[-2,-2],[-3,4],[0,-1],[0,-3],[-1,1],[-1,-3],[0,2],[-2,-9],[-1,2],[-1,0],[1,-4],[0,-4],[-1,0],[-1,4],[-2,1],[-1,-1],[2,-5],[-1,0],[-1,0]],[[8497,3269],[-2,8],[-2,1],[-1,7]],[[8594,3271],[1,-2],[-3,-10]],[[8592,3259],[-1,5],[-1,-1],[-12,-10],[0,-3],[0,-5],[-3,-8],[-4,6],[-4,0]],[[8567,3243],[-15,30],[-1,0],[-2,2],[-1,-1],[-2,2],[-3,7],[0,5]],[[8543,3288],[3,2],[4,8]],[[8236,3298],[3,-20],[3,0],[0,-1],[-1,-1],[0,-2],[2,-3]],[[8243,3271],[-1,-5],[-3,0],[-1,-6],[-3,-3],[-1,-3],[0,-5],[-1,0]],[[8233,3249],[-2,0],[-6,5],[-4,1],[0,2],[-3,2],[-13,4],[-10,-13],[-1,0],[0,13]],[[8688,3274],[-10,1],[-13,-2]],[[8665,3273],[-1,1],[0,9],[-3,5],[-3,1],[-1,1],[-1,4],[1,10],[-1,4]],[[9160,3294],[2,-20],[-18,-6]],[[9144,3268],[-5,1],[-4,4],[-2,25],[3,8],[0,11]],[[8152,3317],[-2,-20],[-3,-8]],[[8147,3289],[-2,2],[-7,2],[-7,5],[-3,1],[-6,-2],[-10,1]],[[8112,3298],[-2,20]],[[8428,3285],[0,-6],[1,-1],[1,-4],[3,-5],[4,-5]],[[8437,3264],[-9,-13],[-9,-4],[-1,-3],[-5,0],[0,-6],[-4,0],[-1,-2],[-1,0]],[[8407,3236],[-3,13],[-7,16],[-1,4],[-3,1],[-3,7],[-4,6]],[[8112,3298],[0,-7],[4,-12],[-4,-9],[-4,-11],[1,-5],[-1,-6],[1,-8],[1,-2],[5,2],[-1,-11],[-2,-5]],[[8112,3224],[-2,-7]],[[8110,3217],[-1,0],[0,1],[-1,0],[0,-1],[-3,0],[2,3],[-2,6],[-12,-2]],[[8093,3224],[-4,1],[0,52]],[[8283,3270],[1,-10],[3,-7],[0,-8]],[[8287,3245],[-7,4],[-1,-3],[-2,-1],[-3,2],[0,-2]],[[8274,3245],[-11,3],[-2,2],[-6,5],[0,3],[-5,5],[-7,8]],[[8543,3288],[-1,-1],[0,-10],[-1,0],[-3,3],[0,-4],[-2,-2]],[[8536,3274],[-6,6],[-7,4],[0,-4],[-1,-1],[0,4],[-5,0],[-2,3]],[[9144,3268],[5,-4],[-9,-10],[-7,0],[-4,12],[1,-8],[-5,5],[-3,20],[3,25]],[[8182,3264],[-2,-15],[-2,0],[0,-2]],[[8178,3247],[-7,1],[-21,5]],[[8150,3253],[-1,5],[0,16],[-2,15]],[[8369,3279],[-1,-1],[-1,0],[-2,-4],[-8,0],[-2,-21],[0,-4],[0,1]],[[8355,3250],[-3,1],[-2,3],[0,5],[-2,0],[-2,5],[-13,5],[-5,0],[-3,-6],[-2,0],[0,-7],[-2,1]],[[8321,3257],[-2,0],[-3,12],[-4,0],[-3,-2],[-1,2],[1,2],[-3,4],[-1,3]],[[7612,3209],[-15,0]],[[7597,3209],[-20,1],[0,-3]],[[7577,3207],[-5,1]],[[7572,3208],[0,11],[2,0],[0,51],[5,27]],[[7616,3277],[0,-8],[3,0],[0,-23],[-3,0],[0,-2],[-2,0],[0,-7],[0,-7],[-2,0],[0,-21]],[[8473,3289],[-6,-11],[-1,-3],[-6,-7],[1,-3],[2,-6],[-2,-1],[-5,-7],[-5,0],[0,-2],[-2,0],[0,-6],[-2,2],[0,-6],[-3,4],[0,-5],[2,-1],[-2,-2]],[[8444,3235],[-7,29]],[[8665,3273],[7,-9],[-7,-18]],[[8665,3246],[-5,2],[-2,2],[-2,1],[-1,-2],[-2,-4]],[[8653,3245],[-2,-5],[2,-3],[-1,-2],[-3,-1]],[[8649,3234],[-2,2],[-4,11],[1,7],[-2,4],[-1,13]],[[8786,3298],[2,-4],[-1,-18],[-4,-2],[-1,-4],[0,-3],[1,-8]],[[8783,3259],[-18,1]],[[8765,3260],[-17,3]],[[7852,3249],[-2,2],[3,9],[0,5],[2,4],[2,1],[3,13],[-5,0]],[[7894,3250],[0,-1],[0,-1],[-42,1]],[[6632,3294],[0,-5],[-2,0],[2,-3],[0,1],[0,-4],[2,-4],[-2,-1],[2,-4],[0,-4],[2,-1],[1,-4],[0,-2],[0,-4],[0,-4],[2,-1],[0,-5],[2,-3],[-2,-2],[0,-1],[0,-4],[0,-1],[-2,-4],[0,-5],[-1,-2],[0,-2],[1,-1],[0,-4],[0,-1],[0,-1],[0,-4]],[[6637,3214],[-49,0],[-3,1],[-2,0],[-3,-1],[-2,-4],[0,2],[-3,0],[-6,6],[-3,2],[-4,0],[-1,6],[-13,5],[-33,0]],[[6515,3231],[0,17]],[[7852,3249],[-2,-9],[0,-2],[-2,-1],[0,-2],[2,-5],[-16,1]],[[7834,3231],[-14,2]],[[7820,3233],[-14,0]],[[90 |