Skip to content

Instantly share code, notes, and snippets.

@almccon
Last active March 27, 2018 05:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save almccon/12bef71ab27b32472e40f74500cb42b7 to your computer and use it in GitHub Desktop.
Save almccon/12bef71ab27b32472e40f74500cb42b7 to your computer and use it in GitHub Desktop.
Pop vs Soda trivariate choropleth
license: mit
<!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
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment