Skip to content

Instantly share code, notes, and snippets.

@bigeasy
Created October 9, 2012 05:42
Show Gist options
  • Save bigeasy/3856837 to your computer and use it in GitHub Desktop.
Save bigeasy/3856837 to your computer and use it in GitHub Desktop.
US Median Age by County

US Median Age by County

A display of US median age by county using the census.ide.org API.

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<script type="text/javascript" src="http://d3js.org/d3.v2.js"></script>
<script type="text/javascript" src="https://raw.github.com/IntoMethod/Lightweight-JSONP/master/jsonp.js"></script>
<link type="text/css" rel="stylesheet" href="http://mbostock.github.com/d3/talk/20111018/colorbrewer/colorbrewer.css"/>
<style type="text/css">
#counties path {
stroke: #fff;
stroke-width: .25px;
}
#states path {
fill: none;
stroke: #fff;
stroke-width: 1.5px;
}
</style>
</head>
<body>
<div id="body">
<div id="footer">
U.S. Unemployment, 2008
<div class="hint">use the menu to change the color scale</div>
<div><select>
<optgroup label="Colors by Cynthia Brewer.">
<option value="YlGn">YlGn</option>
<option value="YlGnBu">YlGnBu</option>
<option value="GnBu">GnBu</option>
<option value="BuGn">BuGn</option>
<option value="PuBuGn">PuBuGn</option>
<option value="PuBu">PuBu</option>
<option value="BuPu">BuPu</option>
<option value="RdPu">RdPu</option>
<option value="PuRd">PuRd</option>
<option value="OrRd">OrRd</option>
<option value="YlOrRd">YlOrRd</option>
<option value="YlOrBr">YlOrBr</option>
<option value="Purples">Purples</option>
<option value="Blues" selected>Blues</option>
<option value="Greens">Greens</option>
<option value="Oranges">Oranges</option>
<option value="Reds">Reds</option>
<option value="Greys">Greys</option>
</optgroup>
</select></div>
</div>
</div>
<script type="text/javascript">
var path = d3.geo.path()
.projection(d3.geo.albersUsa()
.scale(1400)
.translate([680, 360]));
var svg = d3.select("#body").append("svg:svg")
.attr("class", "Blues")
.attr("width", 1280)
.attr("height", 800);
var counties = svg.append("svg:g")
.attr("id", "counties");
var states = svg.append("svg:g")
.attr("id", "states");
d3.json("us-counties.json", function(json) {
var pad = d3.format("05d"),
// quantize = d3.scale.quantile().domain([0, 15]).range(d3.range(9)),
quantize = d3.scale.quantile().domain([20, 60]).range(d3.range(9)),
queue = json.features.slice(0).map(function (feature) { return pad(feature.id) }).sort(),
features = [];
// http://arf.hrsa.gov/indep.htm 02201 Defunct as of 5/19/08
var defunct = [ "02201", "02232", "02280" ];
queue = queue.filter(function (feature) { return defunct.indexOf(feature) == -1 });
function obtained (data) {
features = features.concat(json.features.filter(function (feature) { return data[pad(feature.id)] }));
counties.selectAll("path")
.data(features)
.enter().append("svg:path")
.attr("class", function(d) { return "q" + quantize(data[pad(d.id)].data[2010]["P13"]["P013001"]) + "-9"; })
.attr("d", path)
.append("svg:title")
.text(function(d) { return d.properties.name + ": " + data[pad(d.id)].data[2010]["P13"]["P013001"] + ""; });
if (queue.length) obtain();
else alert("done");
}
function obtain () {
var range = queue.splice(0, 90),
params = { url: "http://census.ire.org/data/" + range.join(",") + ".json?tables=P13" };
console.log(range);
JSONP.get("http://census.prettyrobots.com/", params, obtained, "jsonp");
}
//obtain();
alert('loaded');
});
d3.json("us-states.json", function(json) {
states.selectAll("path")
.data(json.features)
.enter().append("svg:path")
.attr("d", path);
});
d3.select("select").on("change", function() {
d3.selectAll("svg").attr("class", this.value);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[
{"type":"Feature","properties":{"name":"Lake of the Woods"},"geometry":{"type":"Polygon","coordinates":[[[-95.342831,48.546679],[-95.341053,48.715172],[-95.094359,48.717358],[-95.09491,48.911762],[-95.133821,48.894485],[-95.219578,48.879447],[-95.29026,48.90295],[-95.314172,48.932072],[-95.303757,48.945939],[-95.320916,48.960977],[-95.323236,48.978956],[-95.310121,48.993395],[-95.276657,48.999991],[-95.15775,48.999996],[-95.151867,49.37173],[-94.832039,49.330806],[-94.68125,48.877161],[-94.694432,48.777616],[-94.570313,48.713676],[-94.430634,48.710785],[-94.43169,48.368212],[-95.211788,48.369005],[-95.21984,48.544358],[-95.342831,48.546679]]]},"id":27077},
{"type":"Feature","properties":{"name":"Ferry"},"geometry":{"type":"Polygon","coordinates":[[[-118.851629,47.949564],[-118.84846,48.478066],[-118.870258,48.479164],[-118.871056,48.647238],[-118.839736,48.649038],[-118.843603,48.999898],[-118.200355,48.999909],[-118.212363,48.981258],[-118.214948,48.936839],[-118.200809,48.913379],[-118.209665,48.87493],[-118.140992,48.784907],[-118.124542,48.782268],[-118.127944,48.742503],[-118.115026,48.706568],[-118.124304,48.690324],[-118.090068,48.64348],[-118.12232,48.615978],[-118.126973,48.570224],[-118.147612,48.54328],[-118.145979,48.528055],[-118.195496,48.481941],[-118.212632,48.452258],[-118.17039,48.298057],[-118.145531,48.273353],[-118.148331,48.240126],[-118.190401,48.206112],[-118.19474,48.147524],[-118.246271,48.117577],[-118.236672,48.075256],[-118.249817,48.056247],[-118.280657,48.043524],[-118.365745,48.041338],[-118.386307,48.023621],[-118.381034,47.997872],[-118.355389,47.966335],[-118.344263,47.885379],[-118.368158,47.83587],[-118.432882,47.838902],[-118.459344,47.877309],[-118.507007,47.869431],[-118.529355,47.873795],[-118.543837,47.916005],[-118.556785,47.921853],[-118.625582,47.921982],[-118.682577,47.935127],[-118.729407,47.895399],[-118.820529,47.923254],[-118.831822,47.941068],[-118.851629,47.949564]]]},"id":53019},
{"type":"Feature","properties":{"name":"Stevens"},"geometry":{"type":"Polygon","coordinates":[[[-117.438832,48.044115],[-117.542192,48.04329],[-117.536709,47.790013],[-117.608122,47.798004],[-117.62725,47.826924],[-117.662439,47.844254],[-117.674968,47.883794],[-117.698413,47.870324],[-117.71155,47.839409],[-117.726939,47.830581],[-117.804816,47.811273],[-117.821709,47.816244],[-117.842852,47.836831],[-117.869931,47.847253],[-117.936341,47.827945],[-117.994283,47.829843],[-118.032172,47.798718],[-118.071847,47.796581],[-118.103312,47.826256],[-118.120907,47.831181],[-118.126218,47.86567],[-118.158912,47.885666],[-118.213183,47.940473],[-118.278418,47.930214],[-118.328149,47.888297],[-118.344263,47.885379],[-118.355389,47.966335],[-118.381034,47.997872],[-118.386307,48.023621],[-118.365745,48.041338],[-118.280657,48.043524],[-118.249817,48.056247],[-118.236672,48.075256],[-118.246271,48.117577],[-118.19474,48.147524],[-118.190401,48.206112],[-118.148331,48.240126],[-118.145531,48.273353],[-118.17039,48.298057],[-118.212632,48.452258],[-118.195496,48.481941],[-118.145979,48.528055],[-118.147612,48.54328],[-118.126973,48.570224],[-118.12232,48.615978],[-118.090068,48.64348],[-118.124304,48.690324],[-118.115026,48.706568],[-118.127944,48.742503],[-118.124542,48.782268],[-118.140992,48.784907],[-118.209665,48.87493],[-118.200809,48.913379],[-118.214948,48.936839],[-118.212363,48.981258],[-118.200355,48.999909],[-117.43858,48.999919],[-117.433888,48.921082],[-117.499616,48.919008],[-117.500371,48.839954],[-117.566018,48.83832],[-117.567262,48.746353],[-117.635541,48.744669],[-117.635988,48.651356],[-117.506418,48.652807],[-117.500322,48.133312],[-117.440107,48.133054],[-117.438832,48.044115]]]},"id":53065},
{"type":"Feature","properties":{"name":"Okanogan"},"geometry":{"type":"Polygon","coordinates":[[[-118.972094,47.939152],[-118.974063,47.959397],[-118.954021,47.988702],[-118.954273,48.019575],[-119.00379,48.047899],[-119.023064,48.102473],[-119.048318,48.131148],[-119.124715,48.149824],[-119.247735,48.105945],[-119.314731,48.106692],[-119.334263,48.085619],[-119.336612,48.057004],[-119.362553,48.045506],[-119.404448,48.04525],[-119.458994,48.075642],[-119.509739,48.076579],[-119.614366,48.005059],[-119.639719,47.997204],[-119.662136,48.000465],[-119.69084,48.0248],[-119.675566,48.080408],[-119.728426,48.083074],[-119.743976,48.098905],[-119.763638,48.099897],[-119.773182,48.085877],[-119.810431,48.086975],[-119.894763,48.052054],[-119.894862,48.039144],[-119.870828,48.015214],[-119.886102,47.978951],[-119.872345,47.958039],[-120.062015,47.957673],[-120.068066,47.985655],[-120.092336,47.998945],[-120.09123,48.018332],[-120.120185,48.030131],[-120.138168,48.052779],[-120.225971,48.091807],[-120.272154,48.122085],[-120.320664,48.131087],[-120.337488,48.142214],[-120.349237,48.159919],[-120.351069,48.208313],[-120.377872,48.215508],[-120.394627,48.23771],[-120.454116,48.259777],[-120.506372,48.297703],[-120.567836,48.316916],[-120.571414,48.332518],[-120.546031,48.352553],[-120.548679,48.363566],[-120.55949,48.374831],[-120.593823,48.381334],[-120.628767,48.398442],[-120.650726,48.438042],[-120.650093,48.450986],[-120.629081,48.464464],[-120.649674,48.47963],[-120.627395,48.494989],[-120.65059,48.507783],[-120.647111,48.530507],[-120.653627,48.53727],[-120.699122,48.534687],[-120.686572,48.553497],[-120.69276,48.578285],[-120.712491,48.589316],[-120.750127,48.579996],[-120.772665,48.592329],[-120.775817,48.622743],[-120.762702,48.643431],[-120.745742,48.645273],[-120.74018,48.655127],[-120.709196,48.662417],[-120.710051,48.677192],[-120.694013,48.695178],[-120.668027,48.694473],[-120.658658,48.721992],[-120.665594,48.735683],[-120.722237,48.769793],[-120.735132,48.791648],[-120.731059,48.850963],[-120.768354,48.891601],[-120.769827,48.916549],[-120.751448,48.930458],[-120.761298,48.946388],[-120.789254,48.95536],[-120.827394,48.939516],[-120.874652,48.961367],[-120.875835,48.969663],[-120.857303,48.980818],[-120.857059,48.999831],[-118.843603,48.999898],[-118.839736,48.649038],[-118.871056,48.647238],[-118.870258,48.479164],[-118.84846,48.478066],[-118.851629,47.949564],[-118.93763,47.937333],[-118.972094,47.939152]]]},"id":53047},
{"type":"Feature","properties":{"name":"Pend Oreille"},"geometry":{"type":"Polygon","coordinates":[[[-117.43858,48.999919],[-117.03205,48.999931],[-117.029112,48.838075],[-117.038868,48.046186],[-117.438832,48.044115],[-117.440107,48.133054],[-117.500322,48.133312],[-117.506418,48.652807],[-117.635988,48.651356],[-117.635541,48.744669],[-117.567262,48.746353],[-117.566018,48.83832],[-117.500371,48.839954],[-117.499616,48.919008],[-117.433888,48.921082],[-117.43858,48.999919]]]},"id":53051},
{"type":"Feature","properties":{"name":"Boundary"},"geometry":{"type":"Polygon","coordinates":[[[-117.029112,48.838075],[-117.03205,48.999931],[-116.063531,48.99995],[-116.056692,48.498665],[-116.786742,48.49613],[-116.787678,48.836538],[-117.029112,48.838075]]]},"id":16021},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-116.055497,48.208484],[-116.056692,48.498665],[-116.063531,48.99995],[-114.729325,48.99997],[-114.716194,48.979565],[-114.684355,48.968869],[-114.719489,48.925499],[-114.708791,48.917926],[-114.688281,48.840827],[-114.726558,48.8225],[-114.729884,48.80591],[-114.664864,48.788664],[-114.615286,48.742998],[-114.651854,48.732984],[-114.68827,48.708173],[-114.680785,48.688645],[-114.689581,48.671692],[-114.662656,48.661545],[-114.654927,48.648941],[-114.889608,48.648046],[-114.888278,48.563966],[-114.850206,48.56154],[-114.852089,48.219148],[-115.020178,48.217486],[-115.009677,48.008504],[-115.151579,48.00585],[-115.150373,47.977274],[-115.12997,47.959028],[-115.153859,47.949673],[-115.175978,47.955033],[-115.178358,47.918209],[-115.202315,47.905623],[-115.252932,47.903967],[-115.265345,47.893526],[-115.28767,47.89058],[-115.33509,47.907739],[-115.387247,47.89822],[-115.397952,47.901566],[-115.414128,47.929391],[-115.428822,47.907444],[-115.488114,47.909484],[-115.522698,47.900641],[-115.543473,47.906389],[-115.559129,47.93004],[-115.544177,47.965358],[-115.550992,47.992607],[-115.600267,48.023983],[-115.635893,48.063966],[-115.657648,48.122711],[-115.678719,48.151032],[-115.696815,48.159497],[-115.687246,48.197215],[-115.7148,48.242199],[-115.749834,48.252662],[-115.768168,48.250983],[-115.807584,48.208896],[-115.871489,48.195595],[-115.904952,48.178801],[-115.951096,48.172238],[-115.958909,48.149711],[-115.97117,48.144728],[-116.014391,48.150109],[-116.024332,48.164011],[-116.015801,48.190688],[-116.021736,48.201336],[-116.055497,48.208484]]]},"id":30053},
{"type":"Feature","properties":{"name":"Flathead"},"geometry":{"type":"Polygon","coordinates":[[[-113.47363,47.597576],[-113.63732,47.600265],[-113.628592,47.65207],[-113.602849,47.668935],[-113.603544,47.694276],[-113.608366,47.704984],[-113.638641,47.704801],[-113.643974,47.718744],[-113.670763,47.734129],[-113.671541,47.7452],[-113.652543,47.761325],[-113.683512,47.800759],[-113.667429,47.812348],[-113.675188,47.858141],[-113.666719,47.878673],[-113.72977,47.911961],[-113.748394,47.944197],[-113.760297,47.949087],[-113.772176,47.941065],[-113.80883,47.977859],[-113.843484,47.973582],[-113.862421,48.00074],[-113.863941,48.025205],[-113.881932,48.044512],[-114.02393,48.043471],[-114.021977,48.027295],[-114.053137,48.025651],[-114.054014,48.006314],[-114.079132,48.003616],[-114.065138,47.984424],[-114.048223,47.984985],[-114.040906,47.953035],[-114.501185,47.953766],[-114.501054,47.869458],[-114.486276,47.868272],[-114.484925,47.781198],[-114.607431,47.78106],[-114.609026,47.865826],[-114.987121,47.86491],[-114.987603,48.00174],[-115.009211,48.001587],[-115.009677,48.008504],[-115.020178,48.217486],[-114.852089,48.219148],[-114.850206,48.56154],[-114.888278,48.563966],[-114.889608,48.648046],[-114.654927,48.648941],[-114.662656,48.661545],[-114.689581,48.671692],[-114.680785,48.688645],[-114.68827,48.708173],[-114.651854,48.732984],[-114.615286,48.742998],[-114.664864,48.788664],[-114.729884,48.80591],[-114.726558,48.8225],[-114.688281,48.840827],[-114.708791,48.917926],[-114.719489,48.925499],[-114.684355,48.968869],[-114.716194,48.979565],[-114.729325,48.99997],[-114.063463,48.999978],[-114.067919,48.985142],[-114.056734,48.959926],[-114.023453,48.953209],[-114.052949,48.922835],[-114.031174,48.9196],[-114.01892,48.903151],[-114.018089,48.891573],[-114.03447,48.878042],[-114.022475,48.856054],[-113.990286,48.841955],[-113.995535,48.817559],[-113.950931,48.805963],[-113.921702,48.816427],[-113.911158,48.836543],[-113.875245,48.829272],[-113.851241,48.84446],[-113.822432,48.831787],[-113.80396,48.831833],[-113.772854,48.810776],[-113.781949,48.77954],[-113.771924,48.761279],[-113.718203,48.72906],[-113.710092,48.700673],[-113.71261,48.691487],[-113.737063,48.680504],[-113.731348,48.658649],[-113.748873,48.635951],[-113.753092,48.606478],[-113.684569,48.586389],[-113.636982,48.583871],[-113.611186,48.568924],[-113.555901,48.570347],[-113.50759,48.543746],[-113.4839,48.540839],[-113.483998,48.439235],[-113.464382,48.424888],[-113.42161,48.411331],[-113.367867,48.411793],[-113.340635,48.364448],[-113.388862,48.328314],[-113.368665,48.301019],[-113.361707,48.292069],[-113.342884,48.288808],[-113.344837,48.278245],[-113.309435,48.268544],[-113.286263,48.246704],[-113.261229,48.245571],[-113.2327,48.223117],[-113.243404,48.202177],[-113.236726,48.16555],[-113.211433,48.157943],[-113.186056,48.163249],[-113.158771,48.143587],[-113.11895,48.130029],[-113.079443,48.145068],[-113.064938,48.138667],[-113.057468,48.116769],[-113.003006,48.121675],[-112.995185,48.116842],[-112.998861,48.090191],[-112.981434,48.065707],[-112.941903,48.048876],[-112.948853,48.024175],[-112.900503,48.008466],[-112.885852,47.972992],[-112.927602,47.942866],[-112.984772,47.946375],[-113.029543,47.920922],[-113.076451,47.915341],[-113.090642,47.903755],[-113.091451,47.890411],[-113.064982,47.870772],[-113.068863,47.773194],[-113.093575,47.74303],[-113.151958,47.734526],[-113.165806,47.716487],[-113.161395,47.688731],[-113.130845,47.64828],[-113.152062,47.596384],[-113.47363,47.597576]]]},"id":30029},
{"type":"Feature","properties":{"name":"Glacier"},"geometry":{"type":"Polygon","coordinates":[[[-112.182734,48.471165],[-112.229153,48.478768],[-112.583526,48.474686],[-112.587983,48.300243],[-113.368665,48.301019],[-113.388862,48.328314],[-113.340635,48.364448],[-113.367867,48.411793],[-113.42161,48.411331],[-113.464382,48.424888],[-113.483998,48.439235],[-113.4839,48.540839],[-113.50759,48.543746],[-113.555901,48.570347],[-113.611186,48.568924],[-113.636982,48.583871],[-113.684569,48.586389],[-113.753092,48.606478],[-113.748873,48.635951],[-113.731348,48.658649],[-113.737063,48.680504],[-113.71261,48.691487],[-113.710092,48.700673],[-113.718203,48.72906],[-113.771924,48.761279],[-113.781949,48.77954],[-113.772854,48.810776],[-113.80396,48.831833],[-113.822432,48.831787],[-113.851241,48.84446],[-113.875245,48.829272],[-113.911158,48.836543],[-113.921702,48.816427],[-113.950931,48.805963],[-113.995535,48.817559],[-113.990286,48.841955],[-114.022475,48.856054],[-114.03447,48.878042],[-114.018089,48.891573],[-114.01892,48.903151],[-114.031174,48.9196],[-114.052949,48.922835],[-114.023453,48.953209],[-114.056734,48.959926],[-114.067919,48.985142],[-114.063463,48.999978],[-112.188387,48.999992],[-112.197037,48.910126],[-112.187492,48.909337],[-112.182734,48.471165]]]},"id":30035},
{"type":"Feature","properties":{"name":"Toole"},"geometry":{"type":"Polygon","coordinates":[[[-111.42231,48.217763],[-111.673545,48.212927],[-111.674159,48.337204],[-111.799792,48.338707],[-111.800144,48.384916],[-111.991796,48.386837],[-111.993148,48.43078],[-112.003829,48.442247],[-112.015121,48.437104],[-112.026658,48.446294],[-112.055559,48.433461],[-112.083561,48.432137],[-112.139648,48.464596],[-112.173127,48.462979],[-112.182734,48.471165],[-112.187492,48.909337],[-112.197037,48.910126],[-112.188387,48.999992],[-111.282679,49.000012],[-111.286606,48.219373],[-111.42231,48.217763]]]},"id":30101},
{"type":"Feature","properties":{"name":"Liberty"},"geometry":{"type":"Polygon","coordinates":[[[-111.420735,48.127216],[-111.42231,48.217763],[-111.286606,48.219373],[-111.282679,49.000012],[-110.750797,49.000005],[-110.755728,48.216065],[-110.826243,48.21494],[-110.826797,48.130334],[-111.420735,48.127216]]]},"id":30051},
{"type":"Feature","properties":{"name":"Hill"},"geometry":{"type":"Polygon","coordinates":[[[-109.540274,48.132487],[-109.726636,48.13234],[-109.724754,48.218318],[-109.845691,48.21977],[-109.84528,48.30526],[-110.628749,48.302132],[-110.62803,48.215722],[-110.755728,48.216065],[-110.750797,49.000005],[-109.500737,49.000005],[-109.497748,48.917011],[-109.510818,48.917427],[-109.513365,48.580399],[-109.500287,48.57906],[-109.502203,48.521644],[-109.466557,48.519343],[-109.46661,48.447686],[-109.498625,48.447816],[-109.500052,48.392757],[-109.524505,48.392257],[-109.522933,48.286506],[-109.558846,48.285541],[-109.557762,48.217683],[-109.539344,48.216569],[-109.540274,48.132487]]]},"id":30041},
{"type":"Feature","properties":{"name":"Sheridan"},"geometry":{"type":"Polygon","coordinates":[[[-104.052111,48.391019],[-104.634243,48.394207],[-104.635052,48.476346],[-104.75818,48.47804],[-104.757837,48.564825],[-104.979227,48.567147],[-104.979281,48.660429],[-105.035916,48.661409],[-105.034544,48.916052],[-105.056488,48.917738],[-105.063035,49.000021],[-104.062991,49.000027],[-104.052318,48.645825],[-104.052111,48.391019]]]},"id":30091},
{"type":"Feature","properties":{"name":"Divide"},"geometry":{"type":"Polygon","coordinates":[[[-102.885018,48.636782],[-104.052318,48.645825],[-104.062991,49.000027],[-102.937959,49.000026],[-102.939415,48.728669],[-102.884811,48.727323],[-102.885018,48.636782]]]},"id":38023},
{"type":"Feature","properties":{"name":"Burke"},"geometry":{"type":"Polygon","coordinates":[[[-102.234169,48.549277],[-102.883066,48.552722],[-102.885018,48.636782],[-102.884811,48.727323],[-102.939415,48.728669],[-102.937959,49.000026],[-102.022264,49.000015],[-102.019362,48.802345],[-102.154741,48.802341],[-102.157028,48.722425],[-102.234186,48.722491],[-102.234169,48.549277]]]},"id":38013},
{"type":"Feature","properties":{"name":"Renville"},"geometry":{"type":"Polygon","coordinates":[[[-101.061306,48.460315],[-101.846204,48.461204],[-101.845655,48.722142],[-102.018301,48.726072],[-102.019362,48.802345],[-102.022264,49.000015],[-101.500437,49.00002],[-101.496159,48.718192],[-101.455196,48.717917],[-101.455158,48.54652],[-101.061582,48.5439],[-101.061306,48.460315]]]},"id":38075},
{"type":"Feature","properties":{"name":"Bottineau"},"geometry":{"type":"Polygon","coordinates":[[[-101.061582,48.5439],[-101.455158,48.54652],[-101.455196,48.717917],[-101.496159,48.718192],[-101.500437,49.00002],[-100.187908,49.000002],[-100.18606,48.718269],[-100.151324,48.716396],[-100.148057,48.542988],[-100.282287,48.54292],[-100.411749,48.542599],[-100.412866,48.632732],[-101.063238,48.627088],[-101.061582,48.5439]]]},"id":38009},
{"type":"Feature","properties":{"name":"Rolette"},"geometry":{"type":"Polygon","coordinates":[[[-100.148057,48.542988],[-100.151324,48.716396],[-100.18606,48.718269],[-100.187908,49.000002],[-99.533566,49.000009],[-99.533176,48.723057],[-99.498492,48.720562],[-99.49597,48.542018],[-100.148057,48.542988]]]},"id":38079},
{"type":"Feature","properties":{"name":"Towner"},"geometry":{"type":"Polygon","coordinates":[[[-99.493373,48.374686],[-99.49597,48.542018],[-99.498492,48.720562],[-99.533176,48.723057],[-99.533566,49.000009],[-99.000403,49.000007],[-98.999482,48.720779],[-98.96331,48.719951],[-98.965927,48.547084],[-98.969984,48.373005],[-99.212633,48.374134],[-99.493373,48.374686]]]},"id":38095},
{"type":"Feature","properties":{"name":"Cavalier"},"geometry":{"type":"Polygon","coordinates":[[[-97.926552,48.54653],[-98.32013,48.546876],[-98.965927,48.547084],[-98.96331,48.719951],[-98.999482,48.720779],[-99.000403,49.000007],[-97.937868,48.999992],[-97.947208,48.718641],[-97.92409,48.71718],[-97.926552,48.54653]]]},"id":38019},
{"type":"Feature","properties":{"name":"Pembina"},"geometry":{"type":"Polygon","coordinates":[[[-97.160436,48.545078],[-97.926552,48.54653],[-97.92409,48.71718],[-97.947208,48.718641],[-97.937868,48.999992],[-97.229436,48.999988],[-97.216369,48.93183],[-97.175728,48.873758],[-97.171204,48.83598],[-97.180422,48.815538],[-97.164712,48.810368],[-97.173945,48.801514],[-97.147516,48.78117],[-97.139246,48.763542],[-97.147898,48.755653],[-97.132502,48.747219],[-97.134806,48.726238],[-97.110101,48.708583],[-97.116739,48.695243],[-97.097169,48.674529],[-97.10763,48.629947],[-97.127444,48.629794],[-97.122958,48.620769],[-97.144718,48.614025],[-97.140812,48.586906],[-97.158192,48.583641],[-97.152127,48.572856],[-97.167943,48.562263],[-97.146618,48.549537],[-97.160436,48.545078]]]},"id":38067},
{"type":"Feature","properties":{"name":"Kittson"},"geometry":{"type":"Polygon","coordinates":[[[-97.160436,48.545078],[-97.146618,48.549537],[-97.167943,48.562263],[-97.152127,48.572856],[-97.158192,48.583641],[-97.140812,48.586906],[-97.144718,48.614025],[-97.122958,48.620769],[-97.127444,48.629794],[-97.10763,48.629947],[-97.097169,48.674529],[-97.116739,48.695243],[-97.110101,48.708583],[-97.134806,48.726238],[-97.132502,48.747219],[-97.147898,48.755653],[-97.139246,48.763542],[-97.147516,48.78117],[-97.173945,48.801514],[-97.164712,48.810368],[-97.180422,48.815538],[-97.171204,48.83598],[-97.175728,48.873758],[-97.216369,48.93183],[-97.229436,48.999988],[-96.406915,48.999982],[-96.407914,48.723164],[-96.391327,48.721665],[-96.392477,48.547507],[-97.155537,48.538398],[-97.160436,48.545078]]]},"id":27069},
{"type":"Feature","properties":{"name":"Roseau"},"geometry":{"type":"Polygon","coordinates":[[[-96.392477,48.547507],[-96.391327,48.721665],[-96.407914,48.723164],[-96.406915,48.999982],[-95.276657,48.999991],[-95.310121,48.993395],[-95.323236,48.978956],[-95.320916,48.960977],[-95.303757,48.945939],[-95.314172,48.932072],[-95.29026,48.90295],[-95.219578,48.879447],[-95.133821,48.894485],[-95.09491,48.911762],[-95.094359,48.717358],[-95.341053,48.715172],[-95.342831,48.546679],[-95.603092,48.542975],[-96.392477,48.547507]]]},"id":27135},
{"type":"Feature","properties":{"name":"Blaine"},"geometry":{"type":"Polygon","coordinates":[[[-109.544328,47.745252],[-109.540274,48.132487],[-109.539344,48.216569],[-109.557762,48.217683],[-109.558846,48.285541],[-109.522933,48.286506],[-109.524505,48.392257],[-109.500052,48.392757],[-109.498625,48.447816],[-109.46661,48.447686],[-109.466557,48.519343],[-109.502203,48.521644],[-109.500287,48.57906],[-109.513365,48.580399],[-109.510818,48.917427],[-109.497748,48.917011],[-109.500737,49.000005],[-108.250675,49.00001],[-108.24964,48.915354],[-108.265403,48.915339],[-108.26344,48.741439],[-108.328286,48.739917],[-108.325443,48.575874],[-108.347219,48.575199],[-108.347587,48.429178],[-108.420039,48.444002],[-108.417469,48.217827],[-108.44383,48.216526],[-108.444592,47.981217],[-108.566364,47.983264],[-108.594594,47.990637],[-108.60803,47.980047],[-108.629508,47.921228],[-108.67183,47.927655],[-108.888613,47.92804],[-108.886561,47.864941],[-108.900653,47.863979],[-108.898683,47.739592],[-108.951976,47.74093],[-108.953525,47.752393],[-108.93085,47.764261],[-108.95393,47.775423],[-108.942531,47.793806],[-108.99764,47.80935],[-109.082756,47.803032],[-109.147837,47.782196],[-109.183094,47.793327],[-109.263686,47.798133],[-109.284103,47.775687],[-109.399593,47.746347],[-109.427159,47.729601],[-109.484595,47.731951],[-109.528489,47.749109],[-109.544328,47.745252]]]},"id":30005},
{"type":"Feature","properties":{"name":"Phillips"},"geometry":{"type":"Polygon","coordinates":[[[-107.915639,47.456812],[-107.913808,47.493224],[-107.931517,47.553476],[-107.960022,47.580744],[-108.112286,47.599789],[-108.177855,47.585392],[-108.267556,47.591408],[-108.314076,47.58398],[-108.339201,47.568],[-108.396731,47.594736],[-108.429807,47.587236],[-108.430356,47.605173],[-108.448089,47.618883],[-108.500864,47.604741],[-108.528256,47.621812],[-108.559248,47.61343],[-108.608018,47.628394],[-108.677145,47.626997],[-108.725839,47.649758],[-108.781108,47.651546],[-108.797734,47.685528],[-108.832229,47.715198],[-108.898683,47.739592],[-108.900653,47.863979],[-108.886561,47.864941],[-108.888613,47.92804],[-108.67183,47.927655],[-108.629508,47.921228],[-108.60803,47.980047],[-108.594594,47.990637],[-108.566364,47.983264],[-108.444592,47.981217],[-108.44383,48.216526],[-108.417469,48.217827],[-108.420039,48.444002],[-108.347587,48.429178],[-108.347219,48.575199],[-108.325443,48.575874],[-108.328286,48.739917],[-108.26344,48.741439],[-108.265403,48.915339],[-108.24964,48.915354],[-108.250675,49.00001],[-107.188121,49.000017],[-107.183917,48.914363],[-107.211293,48.913741],[-107.209781,48.582306],[-107.192713,48.581772],[-107.1945,48.521681],[-107.219282,48.513261],[-107.265313,48.521431],[-107.26771,48.488124],[-107.30853,48.487627],[-107.308068,48.398984],[-107.263143,48.397731],[-107.262528,48.304972],[-107.378503,48.303133],[-107.374705,48.217402],[-107.411238,48.216054],[-107.41545,47.872477],[-107.427589,47.872637],[-107.427686,47.695766],[-107.43459,47.64817],[-107.449552,47.626159],[-107.50016,47.630415],[-107.534799,47.649794],[-107.600246,47.654557],[-107.640478,47.653042],[-107.70243,47.631607],[-107.723884,47.595581],[-107.769379,47.557987],[-107.862079,47.525512],[-107.864238,47.48265],[-107.878155,47.457411],[-107.915639,47.456812]]]},"id":30071},
{"type":"Feature","properties":{"name":"Valley"},"geometry":{"type":"Polygon","coordinates":[[[-107.427686,47.695766],[-107.427589,47.872637],[-107.41545,47.872477],[-107.411238,48.216054],[-107.374705,48.217402],[-107.378503,48.303133],[-107.262528,48.304972],[-107.263143,48.397731],[-107.308068,48.398984],[-107.30853,48.487627],[-107.26771,48.488124],[-107.265313,48.521431],[-107.219282,48.513261],[-107.1945,48.521681],[-107.192713,48.581772],[-107.209781,48.582306],[-107.211293,48.913741],[-107.183917,48.914363],[-107.188121,49.000017],[-106.12558,49.000021],[-106.117308,48.914565],[-106.159072,48.913935],[-106.159673,48.830234],[-106.033113,48.829807],[-106.025634,48.571173],[-105.814421,48.570371],[-105.811995,48.217851],[-105.847893,48.217382],[-105.848047,48.009485],[-105.879237,48.013677],[-105.900745,48.033201],[-105.904179,48.011953],[-105.928273,48.004713],[-105.967612,48.010153],[-106.015542,48.031126],[-106.020081,48.003412],[-106.034158,47.999982],[-106.078456,48.033888],[-106.092357,48.024923],[-106.087772,48.008402],[-106.123281,47.999574],[-106.13986,48.010839],[-106.132375,48.029848],[-106.241251,48.032748],[-106.287083,48.048594],[-106.366242,48.05096],[-106.380815,48.061313],[-106.414272,48.051982],[-106.4363,48.026706],[-106.437238,47.961717],[-106.43765,47.954797],[-106.449133,47.95506],[-106.449812,47.973016],[-106.462257,47.980631],[-106.509089,47.952145],[-106.499574,47.932968],[-106.537213,47.912013],[-106.519069,47.89622],[-106.553434,47.87855],[-106.530964,47.855466],[-106.573967,47.835331],[-106.58326,47.814895],[-106.60927,47.808422],[-106.616161,47.778819],[-106.630398,47.781314],[-106.640462,47.79724],[-106.65534,47.798801],[-106.682595,47.773871],[-106.733128,47.775187],[-106.744627,47.744569],[-106.759795,47.737359],[-106.821315,47.744413],[-106.886763,47.7334],[-106.892501,47.695988],[-106.911949,47.679928],[-107.012876,47.66764],[-107.121983,47.672595],[-107.221094,47.665266],[-107.405888,47.703205],[-107.427686,47.695766]]]},"id":30105},
{"type":"Feature","properties":{"name":"Daniels"},"geometry":{"type":"Polygon","coordinates":[[[-105.814421,48.570371],[-106.025634,48.571173],[-106.033113,48.829807],[-106.159673,48.830234],[-106.159072,48.913935],[-106.117308,48.914565],[-106.12558,49.000021],[-105.063035,49.000021],[-105.056488,48.917738],[-105.034544,48.916052],[-105.035916,48.661409],[-104.979281,48.660429],[-104.979227,48.567147],[-105.814421,48.570371]]]},"id":30019},
{"type":"Feature","properties":{"name":"Whatcom"},"geometry":{"type":"Polygon","coordinates":[[[-120.857059,48.999831],[-120.857303,48.980818],[-120.875835,48.969663],[-120.874652,48.961367],[-120.827394,48.939516],[-120.789254,48.95536],[-120.761298,48.946388],[-120.751448,48.930458],[-120.769827,48.916549],[-120.768354,48.891601],[-120.731059,48.850963],[-120.735132,48.791648],[-120.722237,48.769793],[-120.665594,48.735683],[-120.658658,48.721992],[-120.668027,48.694473],[-120.694013,48.695178],[-120.710051,48.677192],[-120.709196,48.662417],[-120.74018,48.655127],[-120.914166,48.654078],[-120.914577,48.63835],[-122.487798,48.63857],[-122.526558,48.711725],[-122.516853,48.757921],[-122.697404,48.803015],[-122.754242,48.909989],[-122.822421,48.950725],[-122.74394,48.955808],[-122.765119,48.999746],[-120.857059,48.999831]]]},"id":53073},
{"type":"Feature","properties":{"name":"Bonner"},"geometry":{"type":"Polygon","coordinates":[[[-117.038868,48.046186],[-117.029112,48.838075],[-116.787678,48.836538],[-116.786742,48.49613],[-116.056692,48.498665],[-116.055497,48.208484],[-116.053492,47.976192],[-116.126462,48.02043],[-116.170432,48.01471],[-116.244232,48.055676],[-116.286165,48.052671],[-116.325033,48.019227],[-116.327761,47.885659],[-116.499622,47.885921],[-116.501542,47.987708],[-116.633157,47.988581],[-116.633934,47.971079],[-117.037472,47.971092],[-117.038868,48.046186]]]},"id":16017},
{"type":"Feature","properties":{"name":"Ward"},"geometry":{"type":"Polygon","coordinates":[[[-100.964706,47.854092],[-101.877778,47.853993],[-101.877603,48.024449],[-101.917414,48.025971],[-101.918921,48.378767],[-101.971861,48.380007],[-101.977506,48.546725],[-102.234169,48.549277],[-102.234186,48.722491],[-102.157028,48.722425],[-102.154741,48.802341],[-102.019362,48.802345],[-102.018301,48.726072],[-101.845655,48.722142],[-101.846204,48.461204],[-101.061306,48.460315],[-101.062008,48.370308],[-101.015857,48.369332],[-101.009548,48.021874],[-100.963694,48.019963],[-100.964706,47.854092]]]},"id":38101},
{"type":"Feature","properties":{"name":"Koochiching"},"geometry":{"type":"Polygon","coordinates":[[[-94.417501,47.852308],[-94.43169,48.368212],[-94.430634,48.710785],[-94.292337,48.707711],[-94.230827,48.651988],[-93.843904,48.624737],[-93.812685,48.525408],[-93.781106,48.51159],[-93.514139,48.534271],[-93.465339,48.54952],[-93.457769,48.59271],[-93.304237,48.637163],[-93.091442,48.626585],[-93.093743,48.069363],[-93.085594,48.068646],[-93.081398,47.894972],[-93.771915,47.900841],[-93.774031,47.850997],[-94.417501,47.852308]]]},"id":27071},
{"type":"Feature","properties":{"name":"Skagit"},"geometry":{"type":"Polygon","coordinates":[[[-122.37832,48.289721],[-122.564366,48.414246],[-122.667032,48.412895],[-122.699414,48.494328],[-122.608178,48.518824],[-122.523228,48.458403],[-122.473833,48.462195],[-122.5053,48.559445],[-122.429545,48.599397],[-122.487798,48.63857],[-120.914577,48.63835],[-120.914166,48.654078],[-120.74018,48.655127],[-120.745742,48.645273],[-120.762702,48.643431],[-120.775817,48.622743],[-120.772665,48.592329],[-120.750127,48.579996],[-120.712491,48.589316],[-120.69276,48.578285],[-120.686572,48.553497],[-120.699122,48.534687],[-120.71078,48.524215],[-120.772618,48.510091],[-120.803732,48.518025],[-120.823432,48.540127],[-120.846046,48.542274],[-120.869163,48.530093],[-120.891236,48.534563],[-120.90593,48.518442],[-120.948,48.515878],[-120.963159,48.49651],[-121.048846,48.483892],[-121.056284,48.461499],[-121.0355,48.433931],[-121.055313,48.402874],[-121.047911,48.349983],[-121.060583,48.335307],[-121.059537,48.318716],[-121.01768,48.289924],[-122.37832,48.289721]]]},"id":53057},
{"type":"Feature","properties":{"name":"Williams"},"geometry":{"type":"Polygon","coordinates":[[[-102.825459,48.127381],[-102.857769,48.136869],[-102.906674,48.125281],[-102.966649,48.140029],[-103.121504,48.146159],[-103.215842,48.122756],[-103.23632,48.1072],[-103.238739,48.07449],[-103.249634,48.067642],[-103.368167,48.041044],[-103.420903,48.036203],[-103.496734,48.013926],[-103.537743,48.03987],[-103.5701,48.049646],[-103.562439,48.0828],[-103.596673,48.122075],[-103.587136,48.133107],[-103.601998,48.135919],[-103.630511,48.119863],[-103.688,48.119542],[-103.730062,48.090134],[-103.721349,48.071225],[-103.729498,48.062951],[-103.76197,48.053334],[-103.795075,48.054306],[-103.787743,48.024807],[-103.802002,47.999489],[-103.828355,47.989387],[-103.840456,48.011055],[-103.854639,48.009689],[-103.869548,47.982066],[-103.901302,47.963663],[-103.926266,47.96184],[-103.955267,47.98488],[-103.992392,47.976594],[-104.019386,47.994562],[-104.048425,48.000081],[-104.052111,48.391019],[-104.052318,48.645825],[-102.885018,48.636782],[-102.883066,48.552722],[-102.880656,48.378241],[-102.826319,48.378717],[-102.825459,48.127381]]]},"id":38105},
{"type":"Feature","properties":{"name":"McHenry"},"geometry":{"type":"Polygon","coordinates":[[[-100.964706,47.854092],[-100.963694,48.019963],[-101.009548,48.021874],[-101.015857,48.369332],[-101.062008,48.370308],[-101.061306,48.460315],[-101.061582,48.5439],[-101.063238,48.627088],[-100.412866,48.632732],[-100.411749,48.542599],[-100.282287,48.54292],[-100.284157,48.368857],[-100.240029,48.36814],[-100.239445,48.017032],[-100.204303,48.016998],[-100.202323,47.854695],[-100.5846,47.85356],[-100.964706,47.854092]]]},"id":38049},
{"type":"Feature","properties":{"name":"St. Louis"},"geometry":{"type":"Polygon","coordinates":[[[-93.05986,46.766019],[-93.058465,47.022303],[-93.06594,47.724],[-93.081421,47.724066],[-93.081398,47.894972],[-93.085594,48.068646],[-93.093743,48.069363],[-93.091442,48.626585],[-92.946926,48.628355],[-92.729001,48.540212],[-92.64182,48.540349],[-92.62638,48.502824],[-92.698821,48.494721],[-92.706643,48.46037],[-92.497529,48.440073],[-92.456345,48.402169],[-92.473322,48.357499],[-92.370116,48.220779],[-92.276918,48.244341],[-92.300272,48.298311],[-92.276131,48.35232],[-92.125962,48.366756],[-92.035184,48.355509],[-91.979534,48.250398],[-91.788815,48.206145],[-91.801382,47.873652],[-91.789194,47.565904],[-91.800969,46.927087],[-92.088492,46.791897],[-92.214624,46.668204],[-92.303148,46.666576],[-92.302132,46.764301],[-93.05986,46.766019]]]},"id":27137},
{"type":"Feature","properties":{"name":"San Juan"},"geometry":{"type":"Polygon","coordinates":[[[-122.967978,48.443795],[-123.095233,48.479423],[-123.15972,48.521842],[-123.169899,48.562565],[-123.141054,48.623647],[-123.103721,48.608377],[-123.012095,48.557478],[-123.008699,48.533719],[-122.96798,48.526933],[-123.022271,48.51336],[-123.018883,48.489605],[-122.967978,48.443795]]]},"id":53055},
{"type":"Feature","properties":{"name":"Roosevelt"},"geometry":{"type":"Polygon","coordinates":[[[-105.848047,48.009485],[-105.847893,48.217382],[-105.811995,48.217851],[-105.814421,48.570371],[-104.979227,48.567147],[-104.757837,48.564825],[-104.75818,48.47804],[-104.635052,48.476346],[-104.634243,48.394207],[-104.052111,48.391019],[-104.048425,48.000081],[-104.092319,48.006505],[-104.096401,48.0277],[-104.118016,48.030908],[-104.130231,48.057157],[-104.178161,48.040059],[-104.182976,48.071843],[-104.193108,48.069524],[-104.210565,48.034943],[-104.225412,48.029854],[-104.257854,48.035786],[-104.288335,48.053696],[-104.340331,48.047127],[-104.353302,48.071976],[-104.439289,48.094311],[-104.45432,48.115464],[-104.482107,48.124127],[-104.502997,48.112992],[-104.52536,48.119363],[-104.584818,48.112214],[-104.59241,48.128316],[-104.624912,48.131394],[-104.634144,48.107388],[-104.666585,48.105397],[-104.695769,48.115391],[-104.745774,48.110985],[-104.772325,48.126049],[-104.844655,48.121483],[-104.889571,48.141488],[-104.926598,48.128338],[-104.937035,48.101532],[-104.976954,48.103104],[-104.973985,48.085613],[-104.987322,48.07354],[-105.000163,48.073444],[-105.005099,48.086315],[-105.04453,48.057914],[-105.053998,48.058765],[-105.065199,48.08218],[-105.102714,48.062072],[-105.119629,48.06332],[-105.119903,48.078987],[-105.151658,48.078269],[-105.169634,48.100238],[-105.182467,48.099208],[-105.188151,48.077502],[-105.20354,48.069072],[-105.22588,48.070724],[-105.222088,48.084582],[-105.238461,48.092273],[-105.319352,48.080008],[-105.345301,48.092662],[-105.441184,48.086638],[-105.512339,48.093718],[-105.538745,48.066698],[-105.572858,48.079684],[-105.65445,48.071368],[-105.649086,48.046541],[-105.693201,48.053847],[-105.745824,48.025553],[-105.761411,48.027197],[-105.778669,48.040804],[-105.785582,48.021822],[-105.826729,48.019903],[-105.848047,48.009485]]]},"id":30085},
{"type":"Feature","properties":{"name":"Mountrail"},"geometry":{"type":"Polygon","coordinates":[[[-102.64309,47.823985],[-102.66063,47.854999],[-102.640898,47.928495],[-102.575068,47.977586],[-102.565035,48.004205],[-102.574259,48.014436],[-102.601794,48.021628],[-102.61748,48.046206],[-102.658756,48.043384],[-102.671436,48.084056],[-102.746869,48.098583],[-102.740475,48.114658],[-102.752438,48.125366],[-102.825459,48.127381],[-102.826319,48.378717],[-102.880656,48.378241],[-102.883066,48.552722],[-102.234169,48.549277],[-101.977506,48.546725],[-101.971861,48.380007],[-101.918921,48.378767],[-101.917414,48.025971],[-101.877603,48.024449],[-101.877778,47.853993],[-102.38658,47.848866],[-102.38588,47.768744],[-102.439945,47.758776],[-102.468747,47.764159],[-102.573151,47.789212],[-102.625222,47.809072],[-102.64309,47.823985]]]},"id":38061},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-97.136291,48.175227],[-97.137275,48.195063],[-97.130828,48.203742],[-97.110899,48.207606],[-97.139754,48.221755],[-97.109236,48.228049],[-97.127554,48.233523],[-97.123785,48.259173],[-97.136656,48.264484],[-97.111715,48.277877],[-97.112684,48.286147],[-97.130514,48.29304],[-97.113721,48.294883],[-97.114751,48.303618],[-97.132635,48.310969],[-97.112592,48.319926],[-97.137136,48.325992],[-97.131124,48.361491],[-97.150396,48.363216],[-97.133786,48.372455],[-97.135205,48.38441],[-97.158819,48.388206],[-97.129125,48.407886],[-97.149824,48.409992],[-97.151647,48.419612],[-97.122601,48.41611],[-97.119633,48.437102],[-97.143613,48.43811],[-97.134594,48.517314],[-97.148328,48.517951],[-97.139386,48.534648],[-97.155537,48.538398],[-96.392477,48.547507],[-95.603092,48.542975],[-95.592368,48.170394],[-96.503711,48.171017],[-97.136291,48.175227]]]},"id":27089},
{"type":"Feature","properties":{"name":"Ramsey"},"geometry":{"type":"Polygon","coordinates":[[[-98.526856,47.913139],[-98.638484,47.918872],[-98.638492,47.943325],[-98.660023,47.960762],[-98.666395,47.998376],[-98.678221,48.002518],[-98.722563,47.997746],[-98.745619,47.971863],[-98.780693,47.964416],[-98.779991,47.973156],[-98.752891,47.990593],[-98.76088,48.008885],[-98.787385,47.99881],[-98.793918,48.043809],[-98.811475,48.061078],[-98.86814,48.0378],[-98.899643,48.007118],[-98.910027,48.021343],[-98.928323,48.003555],[-98.994756,48.001349],[-98.989537,48.016383],[-99.004942,48.027087],[-99.005332,48.048324],[-99.038605,48.046744],[-99.069268,48.026153],[-99.075671,48.10205],[-99.120068,48.105918],[-99.136762,48.136035],[-99.206482,48.155066],[-99.212633,48.374134],[-98.969984,48.373005],[-98.965927,48.547084],[-98.32013,48.546876],[-98.321553,48.368481],[-98.298465,48.368004],[-98.295235,48.196933],[-98.424914,48.195714],[-98.426393,48.021267],[-98.527316,48.019734],[-98.526856,47.913139]]]},"id":38071},
{"type":"Feature","properties":{"name":"Walsh"},"geometry":{"type":"Polygon","coordinates":[[[-97.902479,48.196005],[-98.295235,48.196933],[-98.298465,48.368004],[-98.321553,48.368481],[-98.32013,48.546876],[-97.926552,48.54653],[-97.160436,48.545078],[-97.155537,48.538398],[-97.139386,48.534648],[-97.148328,48.517951],[-97.134594,48.517314],[-97.143613,48.43811],[-97.119633,48.437102],[-97.122601,48.41611],[-97.151647,48.419612],[-97.149824,48.409992],[-97.129125,48.407886],[-97.158819,48.388206],[-97.135205,48.38441],[-97.133786,48.372455],[-97.150396,48.363216],[-97.131124,48.361491],[-97.137136,48.325992],[-97.112592,48.319926],[-97.132635,48.310969],[-97.114751,48.303618],[-97.113721,48.294883],[-97.130514,48.29304],[-97.112684,48.286147],[-97.111715,48.277877],[-97.136656,48.264484],[-97.123785,48.259173],[-97.127554,48.233523],[-97.109236,48.228049],[-97.139754,48.221755],[-97.110899,48.207606],[-97.130828,48.203742],[-97.137275,48.195063],[-97.902479,48.196005]]]},"id":38099},
{"type":"Feature","properties":{"name":"Beltrami"},"geometry":{"type":"Polygon","coordinates":[[[-95.58914,48.020913],[-95.592368,48.170394],[-95.603092,48.542975],[-95.342831,48.546679],[-95.21984,48.544358],[-95.211788,48.369005],[-94.43169,48.368212],[-94.417501,47.852308],[-94.416154,47.434043],[-94.417276,47.413292],[-94.668508,47.412871],[-95.185281,47.413755],[-95.197943,47.873675],[-95.259087,47.893302],[-95.274605,47.908339],[-95.277756,47.928512],[-95.257095,47.992587],[-95.235403,48.02256],[-95.58914,48.020913]]]},"id":27007},
{"type":"Feature","properties":{"name":"Pierce"},"geometry":{"type":"Polygon","coordinates":[[[-100.202323,47.854695],[-100.204303,48.016998],[-100.239445,48.017032],[-100.240029,48.36814],[-100.284157,48.368857],[-100.282287,48.54292],[-100.148057,48.542988],[-99.49597,48.542018],[-99.493373,48.374686],[-99.846247,48.373156],[-99.853214,48.021738],[-99.816784,48.020651],[-99.818084,47.853802],[-100.074223,47.854821],[-100.202323,47.854695]]]},"id":38069},
{"type":"Feature","properties":{"name":"Chelan"},"geometry":{"type":"Polygon","coordinates":[[[-121.117982,47.596401],[-121.125682,47.643599],[-121.117298,47.670561],[-121.065884,47.70846],[-121.085569,47.743348],[-121.119238,47.775521],[-121.078405,47.822348],[-121.138686,47.837613],[-121.179535,47.896305],[-121.159828,47.957284],[-121.129906,47.985839],[-121.126244,48.002547],[-121.141465,48.029304],[-121.124741,48.042713],[-121.054771,48.05907],[-120.987487,48.086845],[-120.948928,48.120226],[-120.951041,48.143694],[-120.919089,48.163975],[-120.924873,48.192418],[-120.945816,48.202439],[-120.965386,48.234185],[-121.003656,48.260784],[-121.01768,48.289924],[-121.059537,48.318716],[-121.060583,48.335307],[-121.047911,48.349983],[-121.055313,48.402874],[-121.0355,48.433931],[-121.056284,48.461499],[-121.048846,48.483892],[-120.963159,48.49651],[-120.948,48.515878],[-120.90593,48.518442],[-120.891236,48.534563],[-120.869163,48.530093],[-120.846046,48.542274],[-120.823432,48.540127],[-120.803732,48.518025],[-120.772618,48.510091],[-120.71078,48.524215],[-120.699122,48.534687],[-120.653627,48.53727],[-120.647111,48.530507],[-120.65059,48.507783],[-120.627395,48.494989],[-120.649674,48.47963],[-120.629081,48.464464],[-120.650093,48.450986],[-120.650726,48.438042],[-120.628767,48.398442],[-120.593823,48.381334],[-120.55949,48.374831],[-120.548679,48.363566],[-120.546031,48.352553],[-120.571414,48.332518],[-120.567836,48.316916],[-120.506372,48.297703],[-120.454116,48.259777],[-120.394627,48.23771],[-120.377872,48.215508],[-120.351069,48.208313],[-120.349237,48.159919],[-120.337488,48.142214],[-120.320664,48.131087],[-120.272154,48.122085],[-120.225971,48.091807],[-120.138168,48.052779],[-120.120185,48.030131],[-120.09123,48.018332],[-120.092336,47.998945],[-120.068066,47.985655],[-120.062015,47.957673],[-119.872345,47.958039],[-119.859397,47.939873],[-119.91298,47.900977],[-119.910073,47.866026],[-119.954982,47.845727],[-119.971301,47.804848],[-119.992619,47.785049],[-120.077897,47.766141],[-120.122135,47.776208],[-120.150243,47.772804],[-120.207687,47.736491],[-120.208907,47.720347],[-120.189076,47.68627],[-120.224126,47.6339],[-120.222125,47.593441],[-120.24602,47.561126],[-120.28741,47.530237],[-120.304758,47.48887],[-120.301438,47.436506],[-120.270414,47.392164],[-120.13526,47.36494],[-120.082348,47.335324],[-120.075565,47.318921],[-120.091349,47.256963],[-120.38049,47.256158],[-120.520565,47.327147],[-120.541706,47.31005],[-120.574979,47.307352],[-120.575582,47.318373],[-120.6137,47.342676],[-120.671472,47.347134],[-120.800391,47.413107],[-120.842483,47.411486],[-120.916642,47.431027],[-121.00427,47.516413],[-121.040556,47.528249],[-121.074134,47.550278],[-121.09063,47.577873],[-121.117982,47.596401]]]},"id":53007},
{"type":"Feature","properties":{"name":"Pondera"},"geometry":{"type":"Polygon","coordinates":[[[-113.003006,48.121675],[-113.057468,48.116769],[-113.064938,48.138667],[-113.079443,48.145068],[-113.11895,48.130029],[-113.158771,48.143587],[-113.186056,48.163249],[-113.211433,48.157943],[-113.236726,48.16555],[-113.243404,48.202177],[-113.2327,48.223117],[-113.261229,48.245571],[-113.286263,48.246704],[-113.309435,48.268544],[-113.344837,48.278245],[-113.342884,48.288808],[-113.361707,48.292069],[-113.368665,48.301019],[-112.587983,48.300243],[-112.583526,48.474686],[-112.229153,48.478768],[-112.182734,48.471165],[-112.173127,48.462979],[-112.139648,48.464596],[-112.083561,48.432137],[-112.055559,48.433461],[-112.026658,48.446294],[-112.015121,48.437104],[-112.003829,48.442247],[-111.993148,48.43078],[-111.991796,48.386837],[-111.800144,48.384916],[-111.799792,48.338707],[-111.674159,48.337204],[-111.673545,48.212927],[-111.42231,48.217763],[-111.420735,48.127216],[-111.420966,47.981612],[-111.989556,47.97819],[-111.989612,48.038629],[-112.046995,48.040223],[-112.047096,48.083137],[-112.175543,48.08534],[-112.177856,48.126954],[-113.003006,48.121675]]]},"id":30073},
{"type":"Feature","properties":{"name":"Clallam"},"geometry":{"type":"Polygon","coordinates":[[[-124.606685,47.873735],[-124.73277,48.149989],[-124.70521,48.231996],[-124.717176,48.377558],[-124.563547,48.357279],[-123.991216,48.159162],[-123.396857,48.111031],[-123.123222,48.148733],[-122.921595,48.094179],[-122.924844,48.066796],[-122.954859,48.065522],[-122.953397,47.865742],[-123.641513,47.86638],[-123.642268,47.873727],[-124.606685,47.873735]]]},"id":53009},
{"type":"Feature","properties":{"name":"Benson"},"geometry":{"type":"Polygon","coordinates":[[[-99.29825,47.852849],[-99.818084,47.853802],[-99.816784,48.020651],[-99.853214,48.021738],[-99.846247,48.373156],[-99.493373,48.374686],[-99.212633,48.374134],[-99.206482,48.155066],[-99.136762,48.136035],[-99.120068,48.105918],[-99.075671,48.10205],[-99.069268,48.026153],[-99.038605,48.046744],[-99.005332,48.048324],[-99.004942,48.027087],[-98.989537,48.016383],[-98.994756,48.001349],[-98.928323,48.003555],[-98.910027,48.021343],[-98.899643,48.007118],[-98.86814,48.0378],[-98.811475,48.061078],[-98.793918,48.043809],[-98.787385,47.99881],[-98.76088,48.008885],[-98.752891,47.990593],[-98.779991,47.973156],[-98.780693,47.964416],[-98.745619,47.971863],[-98.722563,47.997746],[-98.678221,48.002518],[-98.666395,47.998376],[-98.660023,47.960762],[-98.638492,47.943325],[-98.638484,47.918872],[-98.526856,47.913139],[-98.52742,47.850436],[-99.29825,47.852849]]]},"id":38005},
{"type":"Feature","properties":{"name":"Chouteau"},"geometry":{"type":"Polygon","coordinates":[[[-110.641138,47.419935],[-110.641703,47.445257],[-110.762558,47.445848],[-110.763931,47.523688],[-110.877873,47.527289],[-110.886074,47.547629],[-110.89977,47.543719],[-110.943124,47.553076],[-110.974383,47.575026],[-111.025198,47.578451],[-111.052655,47.595963],[-111.0535,47.616219],[-111.026259,47.656815],[-111.002736,47.663545],[-110.986773,47.68419],[-110.986535,47.70081],[-111.419642,47.698588],[-111.420966,47.981612],[-111.420735,48.127216],[-110.826797,48.130334],[-110.826243,48.21494],[-110.755728,48.216065],[-110.62803,48.215722],[-110.628749,48.302132],[-109.84528,48.30526],[-109.845691,48.21977],[-109.724754,48.218318],[-109.726636,48.13234],[-109.540274,48.132487],[-109.544328,47.745252],[-109.595309,47.750577],[-109.612399,47.737897],[-109.639766,47.742784],[-109.692159,47.733266],[-109.739584,47.705952],[-109.842034,47.714584],[-109.836953,47.635504],[-109.855126,47.59833],[-109.845856,47.554937],[-109.854478,47.546281],[-109.93072,47.520451],[-109.946559,47.502728],[-109.999204,47.483863],[-110.03726,47.481749],[-110.106156,47.436333],[-110.154734,47.418052],[-110.215847,47.418998],[-110.641138,47.419935]]]},"id":30015},
{"type":"Feature","properties":{"name":"Snohomish"},"geometry":{"type":"Polygon","coordinates":[[[-121.119238,47.775521],[-122.394492,47.774176],[-122.302922,47.950215],[-122.230121,47.969113],[-122.216992,48.00744],[-122.368333,48.128142],[-122.402016,48.225217],[-122.404405,48.246595],[-122.37832,48.289721],[-121.01768,48.289924],[-121.003656,48.260784],[-120.965386,48.234185],[-120.945816,48.202439],[-120.924873,48.192418],[-120.919089,48.163975],[-120.951041,48.143694],[-120.948928,48.120226],[-120.987487,48.086845],[-121.054771,48.05907],[-121.124741,48.042713],[-121.141465,48.029304],[-121.126244,48.002547],[-121.129906,47.985839],[-121.159828,47.957284],[-121.179535,47.896305],[-121.138686,47.837613],[-121.078405,47.822348],[-121.119238,47.775521]]]},"id":53061},
{"type":"Feature","properties":{"name":"Island"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.733188,48.276647],[-122.665613,48.396778],[-122.604384,48.404789],[-122.52575,48.321044],[-122.528648,48.28351],[-122.62351,48.296351],[-122.732034,48.225414],[-122.610925,48.206321],[-122.546203,48.076858],[-122.496213,48.094071],[-122.379994,48.032146],[-122.3554,47.963886],[-122.386961,47.904549],[-122.442788,47.918056],[-122.471617,47.987509],[-122.544961,47.967531],[-122.608628,48.031431],[-122.695554,48.181185],[-122.768778,48.218818],[-122.733188,48.276647]]],[[[-122.402016,48.225217],[-122.462855,48.228364],[-122.454419,48.128492],[-122.361333,48.060097],[-122.514511,48.133974],[-122.542074,48.21046],[-122.509131,48.253793],[-122.404405,48.246595],[-122.402016,48.225217]]]]},"id":53029},
{"type":"Feature","properties":{"name":"Sanders"},"geometry":{"type":"Polygon","coordinates":[[[-114.799402,47.260282],[-114.840701,47.263235],[-114.840518,47.28897],[-114.905919,47.2909],[-114.908208,47.302882],[-114.970946,47.30474],[-114.974273,47.370065],[-114.993088,47.388731],[-115.027979,47.407626],[-115.123976,47.419997],[-115.181992,47.451579],[-115.223284,47.459937],[-115.248981,47.475441],[-115.284382,47.479102],[-115.336866,47.470084],[-115.390907,47.478541],[-115.471628,47.463822],[-115.511775,47.494611],[-115.540363,47.474679],[-115.572727,47.464901],[-115.608876,47.465267],[-115.623983,47.479214],[-115.640142,47.475235],[-115.692771,47.489541],[-115.701523,47.520894],[-115.742829,47.533692],[-115.692088,47.590721],[-115.698284,47.616081],[-115.734067,47.63988],[-115.733665,47.695554],[-115.775727,47.709733],[-115.790538,47.744838],[-115.836742,47.756281],[-115.849324,47.805182],[-115.86981,47.827452],[-115.903921,47.841074],[-115.937842,47.867124],[-115.998932,47.925141],[-116.025316,47.964939],[-116.053492,47.976192],[-116.055497,48.208484],[-116.021736,48.201336],[-116.015801,48.190688],[-116.024332,48.164011],[-116.014391,48.150109],[-115.97117,48.144728],[-115.958909,48.149711],[-115.951096,48.172238],[-115.904952,48.178801],[-115.871489,48.195595],[-115.807584,48.208896],[-115.768168,48.250983],[-115.749834,48.252662],[-115.7148,48.242199],[-115.687246,48.197215],[-115.696815,48.159497],[-115.678719,48.151032],[-115.657648,48.122711],[-115.635893,48.063966],[-115.600267,48.023983],[-115.550992,47.992607],[-115.544177,47.965358],[-115.559129,47.93004],[-115.543473,47.906389],[-115.522698,47.900641],[-115.488114,47.909484],[-115.428822,47.907444],[-115.414128,47.929391],[-115.397952,47.901566],[-115.387247,47.89822],[-115.33509,47.907739],[-115.28767,47.89058],[-115.265345,47.893526],[-115.252932,47.903967],[-115.202315,47.905623],[-115.178358,47.918209],[-115.175978,47.955033],[-115.153859,47.949673],[-115.12997,47.959028],[-115.150373,47.977274],[-115.151579,48.00585],[-115.009677,48.008504],[-115.009211,48.001587],[-114.987603,48.00174],[-114.987121,47.86491],[-114.609026,47.865826],[-114.607431,47.78106],[-114.609026,47.737808],[-114.5916,47.736129],[-114.587495,47.592916],[-114.36147,47.589254],[-114.35368,47.582662],[-114.331829,47.591905],[-114.342739,47.571412],[-114.337475,47.552445],[-114.369793,47.532818],[-114.381855,47.482902],[-114.352001,47.491996],[-114.300349,47.493296],[-114.288255,47.461778],[-114.324473,47.460642],[-114.346956,47.434862],[-114.355157,47.38121],[-114.321586,47.351596],[-114.205378,47.347911],[-114.202188,47.172713],[-114.191544,47.172034],[-114.189874,47.133406],[-114.201586,47.124452],[-114.234874,47.125123],[-114.253903,47.116315],[-114.304281,47.122823],[-114.352034,47.144887],[-114.354414,47.168367],[-114.374983,47.187602],[-114.455163,47.201053],[-114.576679,47.252415],[-114.685065,47.264848],[-114.722999,47.249395],[-114.799402,47.260282]]]},"id":30089},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-91.027148,48.195339],[-91.021476,47.461059],[-91.468657,47.124936],[-91.800969,46.927087],[-91.789194,47.565904],[-91.801382,47.873652],[-91.788815,48.206145],[-91.711938,48.196775],[-91.703731,48.114835],[-91.568775,48.104458],[-91.571562,48.043572],[-91.239447,48.081298],[-91.027148,48.195339]]]},"id":27075},
{"type":"Feature","properties":{"name":"Nelson"},"geometry":{"type":"Polygon","coordinates":[[[-97.984969,47.674878],[-98.507085,47.676278],[-98.528585,47.676667],[-98.52742,47.850436],[-98.526856,47.913139],[-98.527316,48.019734],[-98.426393,48.021267],[-98.424914,48.195714],[-98.295235,48.196933],[-97.902479,48.196005],[-97.906089,48.021135],[-97.881148,48.02004],[-97.882015,47.674518],[-97.984969,47.674878]]]},"id":38063},
{"type":"Feature","properties":{"name":"Grand Forks"},"geometry":{"type":"Polygon","coordinates":[[[-96.889426,47.673925],[-97.480896,47.673277],[-97.882015,47.674518],[-97.881148,48.02004],[-97.906089,48.021135],[-97.902479,48.196005],[-97.137275,48.195063],[-97.136291,48.175227],[-97.137443,48.167769],[-97.116066,48.159224],[-97.136513,48.148398],[-97.120919,48.142775],[-97.121873,48.116369],[-97.09903,48.100973],[-97.092721,48.070344],[-97.067071,48.048165],[-97.048053,47.954924],[-97.015331,47.91789],[-97.020566,47.875569],[-97.00034,47.870198],[-96.977232,47.828029],[-96.983893,47.809662],[-96.95783,47.79444],[-96.932013,47.763506],[-96.923659,47.714094],[-96.889426,47.673925]]]},"id":38035},
{"type":"Feature","properties":{"name":"Polk"},"geometry":{"type":"Polygon","coordinates":[[[-96.070451,47.50168],[-96.851616,47.500619],[-96.860687,47.521356],[-96.849189,47.544568],[-96.858665,47.562978],[-96.852217,47.601152],[-96.873336,47.615255],[-96.889426,47.673925],[-96.923659,47.714094],[-96.932013,47.763506],[-96.95783,47.79444],[-96.983893,47.809662],[-96.977232,47.828029],[-97.00034,47.870198],[-97.020566,47.875569],[-97.015331,47.91789],[-97.048053,47.954924],[-97.067071,48.048165],[-97.092721,48.070344],[-97.09903,48.100973],[-97.121873,48.116369],[-97.120919,48.142775],[-97.136513,48.148398],[-97.116066,48.159224],[-97.137443,48.167769],[-97.136291,48.175227],[-96.503711,48.171017],[-96.497603,48.020678],[-96.48187,48.01916],[-96.482031,47.964189],[-96.484452,47.848622],[-96.355837,47.845802],[-96.3531,47.7624],[-95.838607,47.762411],[-95.840238,47.848151],[-95.71585,47.85331],[-95.7171,47.936784],[-95.586586,47.936096],[-95.578718,47.672126],[-95.559773,47.671111],[-95.558107,47.501568],[-96.070451,47.50168]]]},"id":27119},
{"type":"Feature","properties":{"name":"Pennington"},"geometry":{"type":"Polygon","coordinates":[[[-96.482031,47.964189],[-96.48187,48.01916],[-96.497603,48.020678],[-96.503711,48.171017],[-95.592368,48.170394],[-95.58914,48.020913],[-95.586586,47.936096],[-95.7171,47.936784],[-95.713818,47.966005],[-96.482031,47.964189]]]},"id":27113},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-120.00489,47.221178],[-120.070467,47.224794],[-120.091349,47.256963],[-120.075565,47.318921],[-120.082348,47.335324],[-120.13526,47.36494],[-120.270414,47.392164],[-120.301438,47.436506],[-120.304758,47.48887],[-120.28741,47.530237],[-120.24602,47.561126],[-120.222125,47.593441],[-120.224126,47.6339],[-120.189076,47.68627],[-120.208907,47.720347],[-120.207687,47.736491],[-120.150243,47.772804],[-120.122135,47.776208],[-120.077897,47.766141],[-119.992619,47.785049],[-119.971301,47.804848],[-119.954982,47.845727],[-119.910073,47.866026],[-119.91298,47.900977],[-119.859397,47.939873],[-119.872345,47.958039],[-119.886102,47.978951],[-119.870828,48.015214],[-119.894862,48.039144],[-119.894763,48.052054],[-119.810431,48.086975],[-119.773182,48.085877],[-119.763638,48.099897],[-119.743976,48.098905],[-119.728426,48.083074],[-119.675566,48.080408],[-119.69084,48.0248],[-119.662136,48.000465],[-119.639719,47.997204],[-119.614366,48.005059],[-119.509739,48.076579],[-119.458994,48.075642],[-119.404448,48.04525],[-119.362553,48.045506],[-119.336612,48.057004],[-119.334263,48.085619],[-119.314731,48.106692],[-119.247735,48.105945],[-119.124715,48.149824],[-119.048318,48.131148],[-119.023064,48.102473],[-119.00379,48.047899],[-118.954273,48.019575],[-118.954021,47.988702],[-118.974063,47.959397],[-119.098839,47.957106],[-119.097747,47.944224],[-119.128716,47.94237],[-119.127785,47.913824],[-119.152009,47.912073],[-119.152177,47.896871],[-119.191263,47.896256],[-119.192766,47.881035],[-119.212245,47.878883],[-119.209031,47.804328],[-119.22983,47.802153],[-119.229746,47.780055],[-119.25188,47.777853],[-119.255503,47.746488],[-119.274295,47.74526],[-119.27573,47.728662],[-119.294537,47.727895],[-119.299648,47.682241],[-119.310574,47.668248],[-119.324605,47.666173],[-119.321186,47.626648],[-119.343953,47.624886],[-119.342885,47.613861],[-119.40387,47.610977],[-119.40422,47.60223],[-119.429696,47.601325],[-119.429147,47.586612],[-119.449228,47.585334],[-119.450083,47.572436],[-119.468173,47.571654],[-119.467631,47.557398],[-119.48772,47.556582],[-119.487903,47.543695],[-119.511327,47.542352],[-119.509457,47.528585],[-119.532865,47.527238],[-119.531399,47.437568],[-119.875378,47.43314],[-119.875584,47.407379],[-119.896939,47.406017],[-119.897542,47.389446],[-119.916891,47.388118],[-119.917707,47.361434],[-119.937666,47.359168],[-119.938406,47.345816],[-119.95909,47.344916],[-119.959113,47.33066],[-119.983101,47.328768],[-119.982467,47.314989],[-120.005089,47.312654],[-120.00489,47.221178]]]},"id":53017},
{"type":"Feature","properties":{"name":"McKenzie"},"geometry":{"type":"Polygon","coordinates":[[[-103.674385,47.332077],[-104.045927,47.333832],[-104.047308,47.400017],[-104.048425,48.000081],[-104.019386,47.994562],[-103.992392,47.976594],[-103.955267,47.98488],[-103.926266,47.96184],[-103.901302,47.963663],[-103.869548,47.982066],[-103.854639,48.009689],[-103.840456,48.011055],[-103.828355,47.989387],[-103.802002,47.999489],[-103.787743,48.024807],[-103.795075,48.054306],[-103.76197,48.053334],[-103.729498,48.062951],[-103.721349,48.071225],[-103.730062,48.090134],[-103.688,48.119542],[-103.630511,48.119863],[-103.601998,48.135919],[-103.587136,48.133107],[-103.596673,48.122075],[-103.562439,48.0828],[-103.5701,48.049646],[-103.537743,48.03987],[-103.496734,48.013926],[-103.420903,48.036203],[-103.368167,48.041044],[-103.249634,48.067642],[-103.238739,48.07449],[-103.23632,48.1072],[-103.215842,48.122756],[-103.121504,48.146159],[-102.966649,48.140029],[-102.906674,48.125281],[-102.857769,48.136869],[-102.825459,48.127381],[-102.752438,48.125366],[-102.740475,48.114658],[-102.746869,48.098583],[-102.671436,48.084056],[-102.658756,48.043384],[-102.61748,48.046206],[-102.601794,48.021628],[-102.574259,48.014436],[-102.565035,48.004205],[-102.575068,47.977586],[-102.640898,47.928495],[-102.66063,47.854999],[-102.64309,47.823985],[-102.645349,47.683148],[-103.104289,47.679514],[-103.115081,47.331001],[-103.674385,47.332077]]]},"id":38053},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-122.924844,48.066796],[-122.841111,48.133136],[-122.768883,48.143994],[-122.802931,48.085322],[-122.661561,47.917157],[-122.653586,47.864431],[-122.74587,47.808988],[-122.789801,47.802549],[-122.809517,47.857075],[-122.858804,47.827328],[-122.899364,47.672517],[-122.982745,47.605474],[-123.50053,47.605489],[-123.502014,47.512754],[-124.05029,47.513547],[-124.051107,47.527337],[-124.34908,47.52691],[-124.373606,47.638764],[-124.484035,47.808255],[-124.606685,47.873735],[-123.642268,47.873727],[-123.641513,47.86638],[-122.953397,47.865742],[-122.954859,48.065522],[-122.924844,48.066796]]]},"id":53031},
{"type":"Feature","properties":{"name":"Richland"},"geometry":{"type":"Polygon","coordinates":[[[-104.428336,47.358455],[-104.513904,47.357703],[-104.517948,47.530556],[-104.593024,47.531635],[-104.593803,47.616726],[-104.985895,47.624618],[-104.985719,47.701458],[-105.241147,47.703551],[-105.242795,47.789608],[-105.240804,47.861912],[-105.201724,47.861794],[-105.20354,48.069072],[-105.188151,48.077502],[-105.182467,48.099208],[-105.169634,48.100238],[-105.151658,48.078269],[-105.119903,48.078987],[-105.119629,48.06332],[-105.102714,48.062072],[-105.065199,48.08218],[-105.053998,48.058765],[-105.04453,48.057914],[-105.005099,48.086315],[-105.000163,48.073444],[-104.987322,48.07354],[-104.973985,48.085613],[-104.976954,48.103104],[-104.937035,48.101532],[-104.926598,48.128338],[-104.889571,48.141488],[-104.844655,48.121483],[-104.772325,48.126049],[-104.745774,48.110985],[-104.695769,48.115391],[-104.666585,48.105397],[-104.634144,48.107388],[-104.624912,48.131394],[-104.59241,48.128316],[-104.584818,48.112214],[-104.52536,48.119363],[-104.502997,48.112992],[-104.482107,48.124127],[-104.45432,48.115464],[-104.439289,48.094311],[-104.353302,48.071976],[-104.340331,48.047127],[-104.288335,48.053696],[-104.257854,48.035786],[-104.225412,48.029854],[-104.210565,48.034943],[-104.193108,48.069524],[-104.182976,48.071843],[-104.178161,48.040059],[-104.130231,48.057157],[-104.118016,48.030908],[-104.096401,48.0277],[-104.092319,48.006505],[-104.048425,48.000081],[-104.047308,47.400017],[-104.128251,47.399506],[-104.127503,47.358597],[-104.428336,47.358455]]]},"id":30083},
{"type":"Feature","properties":{"name":"Teton"},"geometry":{"type":"Polygon","coordinates":[[[-112.050427,47.522078],[-112.114907,47.50796],[-112.222665,47.502516],[-112.28272,47.50688],[-112.31758,47.535227],[-112.40723,47.548822],[-112.425169,47.599149],[-112.513239,47.617688],[-112.526469,47.640222],[-112.553494,47.648003],[-112.575864,47.635361],[-112.616355,47.632961],[-112.649529,47.619274],[-112.733517,47.608992],[-112.763822,47.597486],[-112.831552,47.60967],[-112.871868,47.630681],[-112.890416,47.666688],[-112.912047,47.675618],[-112.908538,47.720655],[-112.934251,47.761487],[-112.916932,47.812121],[-112.947987,47.886765],[-112.977393,47.912969],[-112.984772,47.946375],[-112.927602,47.942866],[-112.885852,47.972992],[-112.900503,48.008466],[-112.948853,48.024175],[-112.941903,48.048876],[-112.981434,48.065707],[-112.998861,48.090191],[-112.995185,48.116842],[-113.003006,48.121675],[-112.177856,48.126954],[-112.175543,48.08534],[-112.047096,48.083137],[-112.046995,48.040223],[-111.989612,48.038629],[-111.989556,47.97819],[-111.420966,47.981612],[-111.419642,47.698588],[-111.678719,47.694621],[-111.68106,47.611864],[-111.928695,47.610353],[-111.925861,47.509899],[-112.050427,47.522078]]]},"id":30099},
{"type":"Feature","properties":{"name":"McCone"},"geometry":{"type":"Polygon","coordinates":[[[-105.412642,47.181871],[-105.836201,47.186532],[-105.838963,47.095078],[-105.966846,47.095603],[-105.965374,47.17969],[-106.090768,47.180604],[-106.177488,47.181556],[-106.180683,47.357532],[-106.305101,47.358732],[-106.30629,47.525193],[-106.278823,47.525647],[-106.275898,47.864941],[-106.365564,47.86575],[-106.369684,47.960114],[-106.437238,47.961717],[-106.4363,48.026706],[-106.414272,48.051982],[-106.380815,48.061313],[-106.366242,48.05096],[-106.287083,48.048594],[-106.241251,48.032748],[-106.132375,48.029848],[-106.13986,48.010839],[-106.123281,47.999574],[-106.087772,48.008402],[-106.092357,48.024923],[-106.078456,48.033888],[-106.034158,47.999982],[-106.020081,48.003412],[-106.015542,48.031126],[-105.967612,48.010153],[-105.928273,48.004713],[-105.904179,48.011953],[-105.900745,48.033201],[-105.879237,48.013677],[-105.848047,48.009485],[-105.826729,48.019903],[-105.785582,48.021822],[-105.778669,48.040804],[-105.761411,48.027197],[-105.745824,48.025553],[-105.693201,48.053847],[-105.649086,48.046541],[-105.65445,48.071368],[-105.572858,48.079684],[-105.538745,48.066698],[-105.512339,48.093718],[-105.441184,48.086638],[-105.345301,48.092662],[-105.319352,48.080008],[-105.238461,48.092273],[-105.222088,48.084582],[-105.22588,48.070724],[-105.20354,48.069072],[-105.201724,47.861794],[-105.240804,47.861912],[-105.242795,47.789608],[-105.370013,47.790713],[-105.368442,47.524303],[-105.413328,47.522933],[-105.412642,47.181871]]]},"id":30055},
{"type":"Feature","properties":{"name":"Shoshone"},"geometry":{"type":"Polygon","coordinates":[[[-114.96473,46.925213],[-116.328969,46.921653],[-116.328666,47.016671],[-116.328613,47.411771],[-116.327761,47.885659],[-116.325033,48.019227],[-116.286165,48.052671],[-116.244232,48.055676],[-116.170432,48.01471],[-116.126462,48.02043],[-116.053492,47.976192],[-116.025316,47.964939],[-115.998932,47.925141],[-115.937842,47.867124],[-115.903921,47.841074],[-115.86981,47.827452],[-115.849324,47.805182],[-115.836742,47.756281],[-115.790538,47.744838],[-115.775727,47.709733],[-115.733665,47.695554],[-115.734067,47.63988],[-115.698284,47.616081],[-115.692088,47.590721],[-115.742829,47.533692],[-115.701523,47.520894],[-115.692771,47.489541],[-115.640142,47.475235],[-115.643186,47.457794],[-115.656087,47.44918],[-115.732482,47.445304],[-115.750106,47.433966],[-115.750327,47.422476],[-115.666478,47.399168],[-115.638782,47.380044],[-115.599536,47.370003],[-115.555521,47.334613],[-115.523064,47.291983],[-115.50193,47.281644],[-115.426641,47.274374],[-115.408208,47.263594],[-115.343661,47.255023],[-115.325228,47.24515],[-115.296235,47.17955],[-115.193074,47.124026],[-115.172496,47.097571],[-115.148684,47.091742],[-115.135507,47.06355],[-115.081336,47.026524],[-115.055638,46.973358],[-115.037335,46.963001],[-115.001574,46.958809],[-114.96473,46.925213]]]},"id":16079},
{"type":"Feature","properties":{"name":"Spokane"},"geometry":{"type":"Polygon","coordinates":[[[-117.041795,47.361442],[-117.042392,47.258501],[-117.828037,47.257396],[-117.821709,47.816244],[-117.804816,47.811273],[-117.726939,47.830581],[-117.71155,47.839409],[-117.698413,47.870324],[-117.674968,47.883794],[-117.662439,47.844254],[-117.62725,47.826924],[-117.608122,47.798004],[-117.536709,47.790013],[-117.542192,48.04329],[-117.438832,48.044115],[-117.038868,48.046186],[-117.037472,47.971092],[-117.041795,47.361442]]]},"id":53063},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-114.189874,47.133406],[-114.191544,47.172034],[-114.202188,47.172713],[-114.205378,47.347911],[-114.321586,47.351596],[-114.355157,47.38121],[-114.346956,47.434862],[-114.324473,47.460642],[-114.288255,47.461778],[-114.300349,47.493296],[-114.352001,47.491996],[-114.381855,47.482902],[-114.369793,47.532818],[-114.337475,47.552445],[-114.342739,47.571412],[-114.331829,47.591905],[-114.35368,47.582662],[-114.36147,47.589254],[-114.587495,47.592916],[-114.5916,47.736129],[-114.609026,47.737808],[-114.607431,47.78106],[-114.484925,47.781198],[-114.486276,47.868272],[-114.501054,47.869458],[-114.501185,47.953766],[-114.040906,47.953035],[-114.048223,47.984985],[-114.065138,47.984424],[-114.079132,48.003616],[-114.054014,48.006314],[-114.053137,48.025651],[-114.021977,48.027295],[-114.02393,48.043471],[-113.881932,48.044512],[-113.863941,48.025205],[-113.862421,48.00074],[-113.843484,47.973582],[-113.80883,47.977859],[-113.772176,47.941065],[-113.760297,47.949087],[-113.748394,47.944197],[-113.72977,47.911961],[-113.666719,47.878673],[-113.675188,47.858141],[-113.667429,47.812348],[-113.683512,47.800759],[-113.652543,47.761325],[-113.671541,47.7452],[-113.670763,47.734129],[-113.643974,47.718744],[-113.638641,47.704801],[-113.608366,47.704984],[-113.603544,47.694276],[-113.602849,47.668935],[-113.628592,47.65207],[-113.63732,47.600265],[-113.949545,47.599665],[-113.928884,47.582178],[-113.920994,47.550252],[-113.927831,47.533375],[-113.909794,47.503524],[-113.938588,47.489901],[-113.944806,47.471636],[-113.888124,47.423918],[-113.869355,47.382559],[-113.888284,47.350336],[-113.884965,47.321748],[-113.893938,47.301717],[-113.879357,47.285298],[-113.854346,47.277375],[-113.82472,47.254632],[-113.824539,47.176025],[-113.931981,47.17478],[-113.934416,47.137151],[-114.189874,47.133406]]]},"id":30047},
{"type":"Feature","properties":{"name":"Clearwater"},"geometry":{"type":"Polygon","coordinates":[[[-95.558107,47.501568],[-95.559773,47.671111],[-95.578718,47.672126],[-95.586586,47.936096],[-95.58914,48.020913],[-95.235403,48.02256],[-95.257095,47.992587],[-95.277756,47.928512],[-95.274605,47.908339],[-95.259087,47.893302],[-95.197943,47.873675],[-95.185281,47.413755],[-95.184368,47.326307],[-95.168865,47.325102],[-95.175103,47.150418],[-95.55379,47.151777],[-95.558107,47.501568]]]},"id":27029},
{"type":"Feature","properties":{"name":"Kootenai"},"geometry":{"type":"Polygon","coordinates":[[[-117.037472,47.971092],[-116.633934,47.971079],[-116.633157,47.988581],[-116.501542,47.987708],[-116.499622,47.885921],[-116.327761,47.885659],[-116.328613,47.411771],[-116.520687,47.404751],[-116.521984,47.410275],[-116.590231,47.410032],[-116.590985,47.396242],[-116.63246,47.39544],[-116.632611,47.368321],[-116.73893,47.367181],[-116.738854,47.385106],[-116.774301,47.385632],[-116.773668,47.375054],[-116.815798,47.373741],[-116.815164,47.35995],[-117.041795,47.361442],[-117.037472,47.971092]]]},"id":16055},
{"type":"Feature","properties":{"name":"Garfield"},"geometry":{"type":"Polygon","coordinates":[[[-106.093496,46.849021],[-106.731104,46.84746],[-106.731715,46.862135],[-107.472714,46.865139],[-107.472501,46.848613],[-107.893969,46.847408],[-107.916438,46.856872],[-107.945988,46.884502],[-107.938374,46.92376],[-107.917553,46.942273],[-107.923962,46.949437],[-107.915539,46.975408],[-107.903774,46.97896],[-107.901508,47.007972],[-107.923649,47.022044],[-107.913975,47.038398],[-107.928929,47.043487],[-107.929745,47.079312],[-107.942487,47.091816],[-107.945226,47.115182],[-107.959036,47.123055],[-107.961088,47.157014],[-107.937611,47.176997],[-107.951955,47.193595],[-107.947232,47.214885],[-107.965757,47.223086],[-107.961919,47.236991],[-107.971067,47.244544],[-107.955228,47.258797],[-107.968489,47.279114],[-107.970106,47.327818],[-107.932363,47.389622],[-107.915639,47.456812],[-107.878155,47.457411],[-107.864238,47.48265],[-107.862079,47.525512],[-107.769379,47.557987],[-107.723884,47.595581],[-107.70243,47.631607],[-107.640478,47.653042],[-107.600246,47.654557],[-107.534799,47.649794],[-107.50016,47.630415],[-107.449552,47.626159],[-107.43459,47.64817],[-107.427686,47.695766],[-107.405888,47.703205],[-107.221094,47.665266],[-107.121983,47.672595],[-107.012876,47.66764],[-106.911949,47.679928],[-106.892501,47.695988],[-106.886763,47.7334],[-106.821315,47.744413],[-106.759795,47.737359],[-106.744627,47.744569],[-106.733128,47.775187],[-106.682595,47.773871],[-106.65534,47.798801],[-106.640462,47.79724],[-106.630398,47.781314],[-106.616161,47.778819],[-106.60927,47.808422],[-106.58326,47.814895],[-106.573967,47.835331],[-106.530964,47.855466],[-106.553434,47.87855],[-106.519069,47.89622],[-106.537213,47.912013],[-106.499574,47.932968],[-106.509089,47.952145],[-106.462257,47.980631],[-106.449812,47.973016],[-106.449133,47.95506],[-106.43765,47.954797],[-106.437238,47.961717],[-106.369684,47.960114],[-106.365564,47.86575],[-106.275898,47.864941],[-106.278823,47.525647],[-106.30629,47.525193],[-106.305101,47.358732],[-106.180683,47.357532],[-106.177488,47.181556],[-106.090768,47.180604],[-106.092032,46.865565],[-106.093496,46.849021]]]},"id":30033},
{"type":"Feature","properties":{"name":"Red Lake"},"geometry":{"type":"Polygon","coordinates":[[[-96.482031,47.964189],[-95.713818,47.966005],[-95.7171,47.936784],[-95.71585,47.85331],[-95.840238,47.848151],[-95.838607,47.762411],[-96.3531,47.7624],[-96.355837,47.845802],[-96.484452,47.848622],[-96.482031,47.964189]]]},"id":27125},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-119.453848,46.676041],[-119.469466,46.704205],[-119.513154,46.72131],[-119.625387,46.6458],[-119.650359,46.641649],[-119.703615,46.649782],[-119.793905,46.62595],[-119.883173,46.625476],[-119.934422,46.662467],[-119.969055,46.711276],[-119.972695,46.733221],[-119.927352,46.801204],[-119.966524,46.860957],[-119.962954,46.928989],[-119.994168,46.972396],[-120.016554,47.039885],[-120.043273,47.070532],[-120.001517,47.133013],[-120.010444,47.167746],[-120.00489,47.221178],[-120.005089,47.312654],[-119.982467,47.314989],[-119.983101,47.328768],[-119.959113,47.33066],[-119.95909,47.344916],[-119.938406,47.345816],[-119.937666,47.359168],[-119.917707,47.361434],[-119.916891,47.388118],[-119.897542,47.389446],[-119.896939,47.406017],[-119.875584,47.407379],[-119.875378,47.43314],[-119.531399,47.437568],[-119.532865,47.527238],[-119.509457,47.528585],[-119.511327,47.542352],[-119.487903,47.543695],[-119.48772,47.556582],[-119.467631,47.557398],[-119.468173,47.571654],[-119.450083,47.572436],[-119.449228,47.585334],[-119.429147,47.586612],[-119.429696,47.601325],[-119.40422,47.60223],[-119.40387,47.610977],[-119.342885,47.613861],[-119.343953,47.624886],[-119.321186,47.626648],[-119.324605,47.666173],[-119.310574,47.668248],[-119.299648,47.682241],[-119.294537,47.727895],[-119.27573,47.728662],[-119.274295,47.74526],[-119.255503,47.746488],[-119.25188,47.777853],[-119.229746,47.780055],[-119.22983,47.802153],[-119.209031,47.804328],[-119.212245,47.878883],[-119.192766,47.881035],[-119.191263,47.896256],[-119.152177,47.896871],[-119.152009,47.912073],[-119.127785,47.913824],[-119.128716,47.94237],[-119.097747,47.944224],[-119.098839,47.957106],[-118.974063,47.959397],[-118.972094,47.939152],[-118.980344,47.259915],[-118.987727,46.909822],[-119.370229,46.908806],[-119.371226,46.733931],[-119.373179,46.677923],[-119.453848,46.676041]]]},"id":53025},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-117.828037,47.257396],[-117.960196,47.256542],[-118.980344,47.259915],[-118.972094,47.939152],[-118.93763,47.937333],[-118.851629,47.949564],[-118.831822,47.941068],[-118.820529,47.923254],[-118.729407,47.895399],[-118.682577,47.935127],[-118.625582,47.921982],[-118.556785,47.921853],[-118.543837,47.916005],[-118.529355,47.873795],[-118.507007,47.869431],[-118.459344,47.877309],[-118.432882,47.838902],[-118.368158,47.83587],[-118.344263,47.885379],[-118.328149,47.888297],[-118.278418,47.930214],[-118.213183,47.940473],[-118.158912,47.885666],[-118.126218,47.86567],[-118.120907,47.831181],[-118.103312,47.826256],[-118.071847,47.796581],[-118.032172,47.798718],[-117.994283,47.829843],[-117.936341,47.827945],[-117.869931,47.847253],[-117.842852,47.836831],[-117.821709,47.816244],[-117.828037,47.257396]]]},"id":53043},
{"type":"Feature","properties":{"name":"Lewis and Clark"},"geometry":{"type":"Polygon","coordinates":[[[-111.795792,46.565959],[-112.026641,46.565055],[-112.027319,46.538454],[-112.053543,46.523798],[-112.099597,46.508931],[-112.137655,46.51259],[-112.196229,46.497678],[-112.199151,46.475754],[-112.1687,46.458615],[-112.200555,46.44735],[-112.229441,46.422206],[-112.319451,46.418441],[-112.309937,46.496579],[-112.29773,46.519563],[-112.31669,46.559686],[-112.295541,46.596602],[-112.319583,46.649307],[-112.414208,46.650207],[-112.415833,46.693421],[-112.536927,46.695583],[-112.539515,46.833442],[-112.794115,46.828157],[-112.798347,47.166957],[-113.064357,47.17021],[-113.064845,47.48392],[-113.095959,47.479281],[-113.112279,47.486643],[-113.127004,47.509608],[-113.129408,47.536829],[-113.117995,47.559523],[-113.152062,47.596384],[-113.130845,47.64828],[-113.161395,47.688731],[-113.165806,47.716487],[-113.151958,47.734526],[-113.093575,47.74303],[-113.068863,47.773194],[-113.064982,47.870772],[-113.091451,47.890411],[-113.090642,47.903755],[-113.076451,47.915341],[-113.029543,47.920922],[-112.984772,47.946375],[-112.977393,47.912969],[-112.947987,47.886765],[-112.916932,47.812121],[-112.934251,47.761487],[-112.908538,47.720655],[-112.912047,47.675618],[-112.890416,47.666688],[-112.871868,47.630681],[-112.831552,47.60967],[-112.763822,47.597486],[-112.733517,47.608992],[-112.649529,47.619274],[-112.616355,47.632961],[-112.575864,47.635361],[-112.553494,47.648003],[-112.526469,47.640222],[-112.513239,47.617688],[-112.425169,47.599149],[-112.40723,47.548822],[-112.31758,47.535227],[-112.28272,47.50688],[-112.222665,47.502516],[-112.114907,47.50796],[-112.050427,47.522078],[-112.045208,47.197185],[-112.022219,47.1953],[-112.014109,47.178249],[-111.985215,47.182697],[-111.951246,47.151015],[-111.951788,47.138999],[-111.918484,47.12894],[-111.796048,47.128101],[-111.797336,46.909217],[-111.658938,46.910568],[-111.613044,46.888256],[-111.646714,46.862907],[-111.65677,46.840708],[-111.597997,46.804392],[-111.543177,46.801898],[-111.525987,46.814349],[-111.512352,46.811416],[-111.502777,46.75672],[-111.522637,46.756086],[-111.596067,46.781946],[-111.609007,46.778928],[-111.645775,46.735001],[-111.648788,46.56691],[-111.795792,46.565959]]]},"id":30049},
{"type":"Feature","properties":{"name":"Kitsap"},"geometry":{"type":"Polygon","coordinates":[[[-122.637437,47.39858],[-122.799553,47.398887],[-122.803456,47.518027],[-123.026336,47.515936],[-122.91697,47.614607],[-122.752943,47.660689],[-122.723062,47.756899],[-122.611162,47.850009],[-122.613218,47.936189],[-122.531888,47.909461],[-122.473588,47.75498],[-122.62151,47.696969],[-122.58646,47.571191],[-122.555262,47.583506],[-122.542702,47.522734],[-122.504461,47.507217],[-122.558447,47.398364],[-122.628754,47.398554],[-122.637437,47.39858]]]},"id":53035},
{"type":"Feature","properties":{"name":"Itasca"},"geometry":{"type":"Polygon","coordinates":[[[-93.081398,47.894972],[-93.081421,47.724066],[-93.06594,47.724],[-93.058465,47.022303],[-93.775235,47.030398],[-93.776262,47.209651],[-93.792192,47.218357],[-93.803063,47.24147],[-93.784202,47.259532],[-93.782239,47.30099],[-93.832435,47.301723],[-93.87664,47.322873],[-93.909456,47.293768],[-93.939021,47.305701],[-93.963549,47.332053],[-94.018223,47.348678],[-94.039532,47.376049],[-94.040522,47.419276],[-94.081499,47.468554],[-94.104983,47.478362],[-94.133656,47.476027],[-94.309755,47.417995],[-94.416154,47.434043],[-94.417501,47.852308],[-93.774031,47.850997],[-93.771915,47.900841],[-93.081398,47.894972]]]},"id":27061},
{"type":"Feature","properties":{"name":"Sheridan"},"geometry":{"type":"Polygon","coordinates":[[[-100.115294,47.326535],[-100.678334,47.326053],[-100.674205,47.670132],[-100.589578,47.668995],[-100.5846,47.85356],[-100.202323,47.854695],[-100.074223,47.854821],[-100.075028,47.674258],[-100.034004,47.674475],[-100.038327,47.327568],[-100.115294,47.326535]]]},"id":38083},
{"type":"Feature","properties":{"name":"Wells"},"geometry":{"type":"Polygon","coordinates":[[[-99.485035,47.329907],[-100.038327,47.327568],[-100.034004,47.674475],[-100.075028,47.674258],[-100.074223,47.854821],[-99.818084,47.853802],[-99.29825,47.852849],[-99.301478,47.677841],[-99.27199,47.676376],[-99.270187,47.590175],[-99.268947,47.330035],[-99.485035,47.329907]]]},"id":38103},
{"type":"Feature","properties":{"name":"McLean"},"geometry":{"type":"Polygon","coordinates":[[[-101.260435,47.266651],[-101.281706,47.285],[-101.342705,47.296301],[-101.364312,47.32384],[-101.370775,47.379138],[-101.400851,47.39672],[-101.419384,47.452716],[-101.437505,47.468689],[-101.421132,47.493225],[-101.381107,47.521911],[-101.435231,47.560654],[-101.472792,47.560883],[-101.617472,47.529866],[-101.71053,47.533739],[-101.814841,47.502303],[-101.889739,47.507148],[-101.942572,47.53186],[-102.016761,47.539384],[-102.023451,47.562021],[-102.061896,47.577287],[-102.14116,47.573774],[-102.200037,47.579611],[-102.248064,47.614734],[-102.26224,47.636997],[-102.257349,47.719315],[-102.290744,47.753331],[-102.268137,47.768705],[-102.271692,47.786703],[-102.298556,47.788878],[-102.333157,47.804492],[-102.354864,47.797843],[-102.38588,47.768744],[-102.38658,47.848866],[-101.877778,47.853993],[-100.964706,47.854092],[-100.5846,47.85356],[-100.589578,47.668995],[-100.674205,47.670132],[-100.678334,47.326053],[-100.751899,47.325507],[-100.755552,47.157795],[-100.953436,47.161392],[-100.979377,47.177128],[-100.989281,47.193893],[-100.979836,47.239647],[-100.988947,47.259152],[-101.040371,47.28877],[-101.134827,47.298117],[-101.17615,47.285178],[-101.198139,47.25529],[-101.260435,47.266651]]]},"id":38055},
{"type":"Feature","properties":{"name":"Eddy"},"geometry":{"type":"Polygon","coordinates":[[[-99.270187,47.590175],[-99.27199,47.676376],[-99.301478,47.677841],[-99.29825,47.852849],[-98.52742,47.850436],[-98.528585,47.676667],[-98.507085,47.676278],[-98.507443,47.592419],[-99.270187,47.590175]]]},"id":38027},
{"type":"Feature","properties":{"name":"Dunn"},"geometry":{"type":"Polygon","coordinates":[[[-102.158384,47.012371],[-102.522924,47.009415],[-102.524159,46.98418],[-103.040649,46.984167],[-103.034911,47.329545],[-103.115081,47.331001],[-103.104289,47.679514],[-102.645349,47.683148],[-102.64309,47.823985],[-102.625222,47.809072],[-102.573151,47.789212],[-102.468747,47.764159],[-102.439945,47.758776],[-102.38588,47.768744],[-102.354864,47.797843],[-102.333157,47.804492],[-102.298556,47.788878],[-102.271692,47.786703],[-102.268137,47.768705],[-102.290744,47.753331],[-102.257349,47.719315],[-102.26224,47.636997],[-102.248064,47.614734],[-102.200037,47.579611],[-102.21072,47.337411],[-102.15526,47.336678],[-102.158384,47.012371]]]},"id":38025},
{"type":"Feature","properties":{"name":"Fergus"},"geometry":{"type":"Polygon","coordinates":[[[-109.013717,46.753636],[-109.390182,46.757724],[-109.3899,46.697557],[-109.759788,46.697195],[-109.756668,46.782802],[-109.785233,46.782977],[-109.786287,46.794887],[-109.801042,46.796558],[-109.801645,46.803425],[-109.833644,46.804828],[-109.831501,46.832963],[-109.802294,46.833276],[-109.800349,46.87152],[-109.77775,46.871555],[-109.776652,46.896886],[-109.755335,46.896401],[-109.757666,47.188401],[-109.868593,47.188784],[-109.869753,47.231536],[-110.000197,47.232361],[-110.002737,47.274606],[-110.127971,47.276005],[-110.128862,47.363925],[-110.212819,47.366159],[-110.215847,47.418998],[-110.154734,47.418052],[-110.106156,47.436333],[-110.03726,47.481749],[-109.999204,47.483863],[-109.946559,47.502728],[-109.93072,47.520451],[-109.854478,47.546281],[-109.845856,47.554937],[-109.855126,47.59833],[-109.836953,47.635504],[-109.842034,47.714584],[-109.739584,47.705952],[-109.692159,47.733266],[-109.639766,47.742784],[-109.612399,47.737897],[-109.595309,47.750577],[-109.544328,47.745252],[-109.528489,47.749109],[-109.484595,47.731951],[-109.427159,47.729601],[-109.399593,47.746347],[-109.284103,47.775687],[-109.263686,47.798133],[-109.183094,47.793327],[-109.147837,47.782196],[-109.082756,47.803032],[-108.99764,47.80935],[-108.942531,47.793806],[-108.95393,47.775423],[-108.93085,47.764261],[-108.953525,47.752393],[-108.951976,47.74093],[-108.898683,47.739592],[-108.832229,47.715198],[-108.797734,47.685528],[-108.781108,47.651546],[-108.725839,47.649758],[-108.677145,47.626997],[-108.608018,47.628394],[-108.559248,47.61343],[-108.528256,47.621812],[-108.500864,47.604741],[-108.448089,47.618883],[-108.430356,47.605173],[-108.429807,47.587236],[-108.396731,47.594736],[-108.339201,47.568],[-108.314076,47.58398],[-108.311946,47.531558],[-108.324673,47.531164],[-108.324222,47.31212],[-108.34087,47.311139],[-108.341747,47.304208],[-108.594431,47.302925],[-108.594514,47.26612],[-108.720161,47.266014],[-108.721166,47.178125],[-108.741842,47.177873],[-108.740978,47.101565],[-108.615523,47.099855],[-108.613104,46.838434],[-108.635589,46.837221],[-108.635506,46.751331],[-109.013717,46.753636]]]},"id":30027},
{"type":"Feature","properties":{"name":"Dawson"},"geometry":{"type":"Polygon","coordinates":[[[-104.598891,46.856322],[-105.038821,46.861043],[-105.037921,46.888127],[-105.058514,46.888887],[-105.058094,46.904039],[-105.077367,46.905263],[-105.07826,46.919484],[-105.201191,46.923055],[-105.202831,46.976751],[-105.326502,46.978367],[-105.327906,47.179495],[-105.412642,47.181871],[-105.413328,47.522933],[-105.368442,47.524303],[-105.370013,47.790713],[-105.242795,47.789608],[-105.241147,47.703551],[-104.985719,47.701458],[-104.985895,47.624618],[-104.593803,47.616726],[-104.593024,47.531635],[-104.517948,47.530556],[-104.513904,47.357703],[-104.428336,47.358455],[-104.444122,47.320716],[-104.379055,47.276336],[-104.377583,47.252444],[-104.354877,47.250213],[-104.346034,47.218532],[-104.336687,47.21672],[-104.329614,47.137271],[-104.31762,47.136378],[-104.315812,47.038572],[-104.334436,47.037611],[-104.336237,46.99904],[-104.355426,46.981092],[-104.356646,46.961347],[-104.377239,46.960836],[-104.40154,46.91441],[-104.415487,46.914364],[-104.417379,46.898754],[-104.439276,46.89777],[-104.44052,46.885376],[-104.459762,46.884396],[-104.459686,46.87384],[-104.472252,46.866913],[-104.490823,46.86639],[-104.491395,46.854457],[-104.598891,46.856322]]]},"id":30021},
{"type":"Feature","properties":{"name":"King"},"geometry":{"type":"Polygon","coordinates":[[[-121.385914,47.087615],[-121.443006,47.084402],[-121.513679,47.123482],[-121.578058,47.119056],[-121.641995,47.155542],[-121.702499,47.152569],[-121.794498,47.16963],[-121.840733,47.145021],[-121.896223,47.155476],[-121.943313,47.142758],[-121.966523,47.158478],[-122.064167,47.178382],[-122.109693,47.20568],[-122.152405,47.256087],[-122.328862,47.255819],[-122.420837,47.318844],[-122.325376,47.344323],[-122.319739,47.390115],[-122.392634,47.510242],[-122.38222,47.595409],[-122.414815,47.66418],[-122.394492,47.774176],[-121.119238,47.775521],[-121.085569,47.743348],[-121.065884,47.70846],[-121.117298,47.670561],[-121.125682,47.643599],[-121.117982,47.596401],[-121.154764,47.593921],[-121.221621,47.558287],[-121.295724,47.491104],[-121.360428,47.455935],[-121.440468,47.371477],[-121.461143,47.360681],[-121.438667,47.335184],[-121.427345,47.296442],[-121.339698,47.27531],[-121.330992,47.254882],[-121.357344,47.229217],[-121.308904,47.193489],[-121.30389,47.137554],[-121.31947,47.131088],[-121.364911,47.142528],[-121.382062,47.139685],[-121.404928,47.112749],[-121.385914,47.087615]]]},"id":53033},
{"type":"Feature","properties":{"name":"Cascade"},"geometry":{"type":"Polygon","coordinates":[[[-110.658725,46.817828],[-110.698003,46.837993],[-110.754462,46.843964],[-110.760315,46.88784],[-110.790208,46.906608],[-110.811159,46.90327],[-110.85342,46.919111],[-110.911574,46.971876],[-110.970613,47.000653],[-111.016871,47.009346],[-111.078641,47.007094],[-111.143326,47.086626],[-111.1661,47.087285],[-111.167114,47.011253],[-111.282329,47.009801],[-111.283092,46.998707],[-111.545855,46.998794],[-111.549143,46.911584],[-111.658938,46.910568],[-111.797336,46.909217],[-111.796048,47.128101],[-111.918484,47.12894],[-111.951788,47.138999],[-111.951246,47.151015],[-111.985215,47.182697],[-112.014109,47.178249],[-112.022219,47.1953],[-112.045208,47.197185],[-112.050427,47.522078],[-111.925861,47.509899],[-111.928695,47.610353],[-111.68106,47.611864],[-111.678719,47.694621],[-111.419642,47.698588],[-110.986535,47.70081],[-110.986773,47.68419],[-111.002736,47.663545],[-111.026259,47.656815],[-111.0535,47.616219],[-111.052655,47.595963],[-111.025198,47.578451],[-110.974383,47.575026],[-110.943124,47.553076],[-110.89977,47.543719],[-110.886074,47.547629],[-110.877873,47.527289],[-110.763931,47.523688],[-110.762558,47.445848],[-110.641703,47.445257],[-110.641138,47.419935],[-110.644449,47.360337],[-110.766914,47.358528],[-110.769584,47.306796],[-110.791001,47.306666],[-110.792701,47.252218],[-110.777869,47.251108],[-110.777487,47.234544],[-110.763364,47.233858],[-110.774395,47.095166],[-110.658609,47.092077],[-110.655455,46.923329],[-110.643301,46.92162],[-110.645412,46.837333],[-110.658596,46.836231],[-110.658725,46.817828]]]},"id":30013},
{"type":"Feature","properties":{"name":"Griggs"},"geometry":{"type":"Polygon","coordinates":[[[-97.961673,47.244938],[-98.468476,47.244577],[-98.470819,47.327525],[-98.504953,47.327506],[-98.507443,47.592419],[-98.507085,47.676278],[-97.984969,47.674878],[-97.987954,47.329886],[-97.962617,47.328783],[-97.961673,47.244938]]]},"id":38039},
{"type":"Feature","properties":{"name":"Steele"},"geometry":{"type":"Polygon","coordinates":[[[-97.961673,47.244938],[-97.962617,47.328783],[-97.987954,47.329886],[-97.984969,47.674878],[-97.882015,47.674518],[-97.480896,47.673277],[-97.475274,47.320406],[-97.454476,47.320802],[-97.453392,47.244752],[-97.7122,47.245291],[-97.961673,47.244938]]]},"id":38091},
{"type":"Feature","properties":{"name":"Traill"},"geometry":{"type":"Polygon","coordinates":[[[-96.837065,47.240459],[-97.453392,47.244752],[-97.454476,47.320802],[-97.475274,47.320406],[-97.480896,47.673277],[-96.889426,47.673925],[-96.873336,47.615255],[-96.852217,47.601152],[-96.858665,47.562978],[-96.849189,47.544568],[-96.860687,47.521356],[-96.851616,47.500619],[-96.866684,47.461538],[-96.855827,47.436753],[-96.867249,47.413087],[-96.850006,47.408936],[-96.839828,47.384117],[-96.850631,47.360955],[-96.838462,47.342243],[-96.846747,47.314602],[-96.837714,47.293884],[-96.849624,47.256844],[-96.837065,47.240459]]]},"id":38097},
{"type":"Feature","properties":{"name":"Mason"},"geometry":{"type":"Polygon","coordinates":[[[-123.0812,47.090058],[-123.085213,47.077237],[-123.206043,47.078282],[-123.486334,47.079158],[-123.487694,47.254502],[-123.502526,47.255642],[-123.502014,47.512754],[-123.50053,47.605489],[-122.982745,47.605474],[-123.113915,47.456274],[-123.15406,47.348547],[-123.010471,47.353027],[-122.833248,47.438464],[-123.036206,47.356052],[-123.112685,47.371569],[-123.026336,47.515936],[-122.803456,47.518027],[-122.799553,47.398887],[-122.802184,47.360741],[-122.880373,47.299233],[-123.115436,47.207981],[-123.0812,47.090058]]]},"id":53045},
{"type":"Feature","properties":{"name":"Missoula"},"geometry":{"type":"Polygon","coordinates":[[[-113.817941,46.653749],[-114.334685,46.654227],[-114.384018,46.661597],[-114.441536,46.645716],[-114.484718,46.623575],[-114.540391,46.637891],[-114.610826,46.629048],[-114.64474,46.660824],[-114.645038,46.670921],[-114.625927,46.687107],[-114.673887,46.734722],[-114.672964,46.74205],[-114.552373,46.742703],[-114.551139,46.829415],[-114.571639,46.831154],[-114.568369,46.955506],[-114.555696,46.956658],[-114.553362,46.983708],[-114.534685,46.985211],[-114.534304,46.995304],[-114.51343,47.002278],[-114.442376,46.982144],[-114.436906,47.003171],[-114.419571,47.004224],[-114.420342,47.018476],[-114.481523,47.019147],[-114.481927,47.060496],[-114.565036,47.063368],[-114.565425,47.088638],[-114.591991,47.090484],[-114.592296,47.118512],[-114.633458,47.122441],[-114.635747,47.13305],[-114.657674,47.134801],[-114.656789,47.159597],[-114.688703,47.16197],[-114.688932,47.17438],[-114.713523,47.176627],[-114.716765,47.217583],[-114.780091,47.219536],[-114.78103,47.231034],[-114.799646,47.23317],[-114.799402,47.260282],[-114.722999,47.249395],[-114.685065,47.264848],[-114.576679,47.252415],[-114.455163,47.201053],[-114.374983,47.187602],[-114.354414,47.168367],[-114.352034,47.144887],[-114.304281,47.122823],[-114.253903,47.116315],[-114.234874,47.125123],[-114.201586,47.124452],[-114.189874,47.133406],[-113.934416,47.137151],[-113.931981,47.17478],[-113.824539,47.176025],[-113.82472,47.254632],[-113.854346,47.277375],[-113.879357,47.285298],[-113.893938,47.301717],[-113.884965,47.321748],[-113.888284,47.350336],[-113.869355,47.382559],[-113.888124,47.423918],[-113.944806,47.471636],[-113.938588,47.489901],[-113.909794,47.503524],[-113.927831,47.533375],[-113.920994,47.550252],[-113.928884,47.582178],[-113.949545,47.599665],[-113.63732,47.600265],[-113.47363,47.597576],[-113.472972,47.176217],[-113.317017,47.173514],[-113.306502,46.828206],[-113.423964,46.828102],[-113.424613,46.791846],[-113.486331,46.791148],[-113.488437,46.739328],[-113.550818,46.737695],[-113.553602,46.709771],[-113.670933,46.70808],[-113.67229,46.654883],[-113.817941,46.653749]]]},"id":30063},
{"type":"Feature","properties":{"name":"Petroleum"},"geometry":{"type":"Polygon","coordinates":[[[-107.827383,46.75286],[-108.635506,46.751331],[-108.635589,46.837221],[-108.613104,46.838434],[-108.615523,47.099855],[-108.740978,47.101565],[-108.741842,47.177873],[-108.721166,47.178125],[-108.720161,47.266014],[-108.594514,47.26612],[-108.594431,47.302925],[-108.341747,47.304208],[-108.34087,47.311139],[-108.324222,47.31212],[-108.324673,47.531164],[-108.311946,47.531558],[-108.314076,47.58398],[-108.267556,47.591408],[-108.177855,47.585392],[-108.112286,47.599789],[-107.960022,47.580744],[-107.931517,47.553476],[-107.913808,47.493224],[-107.915639,47.456812],[-107.932363,47.389622],[-107.970106,47.327818],[-107.968489,47.279114],[-107.955228,47.258797],[-107.971067,47.244544],[-107.961919,47.236991],[-107.965757,47.223086],[-107.947232,47.214885],[-107.951955,47.193595],[-107.937611,47.176997],[-107.961088,47.157014],[-107.959036,47.123055],[-107.945226,47.115182],[-107.942487,47.091816],[-107.929745,47.079312],[-107.928929,47.043487],[-107.913975,47.038398],[-107.923649,47.022044],[-107.901508,47.007972],[-107.903774,46.97896],[-107.915539,46.975408],[-107.923962,46.949437],[-107.917553,46.942273],[-107.938374,46.92376],[-107.945988,46.884502],[-107.916438,46.856872],[-107.893969,46.847408],[-107.844917,46.803329],[-107.846435,46.772525],[-107.827383,46.75286]]]},"id":30069},
{"type":"Feature","properties":{"name":"Powell"},"geometry":{"type":"Polygon","coordinates":[[[-113.028643,46.264816],[-113.03762,46.730714],[-113.103015,46.71193],[-113.131527,46.72284],[-113.184425,46.724777],[-113.18264,46.755486],[-113.232188,46.781647],[-113.256824,46.814924],[-113.292944,46.797997],[-113.297888,46.827973],[-113.306502,46.828206],[-113.317017,47.173514],[-113.472972,47.176217],[-113.47363,47.597576],[-113.152062,47.596384],[-113.117995,47.559523],[-113.129408,47.536829],[-113.127004,47.509608],[-113.112279,47.486643],[-113.095959,47.479281],[-113.064845,47.48392],[-113.064357,47.17021],[-112.798347,47.166957],[-112.794115,46.828157],[-112.539515,46.833442],[-112.536927,46.695583],[-112.415833,46.693421],[-112.414208,46.650207],[-112.319583,46.649307],[-112.295541,46.596602],[-112.31669,46.559686],[-112.29773,46.519563],[-112.309937,46.496579],[-112.319451,46.418441],[-112.360301,46.381755],[-112.381077,46.376956],[-112.408484,46.381091],[-112.460603,46.323206],[-112.495754,46.339048],[-112.512715,46.32218],[-112.534727,46.327947],[-112.569053,46.297421],[-112.56076,46.264138],[-113.028643,46.264816]]]},"id":30077},
{"type":"Feature","properties":{"name":"Kittitas"},"geometry":{"type":"Polygon","coordinates":[[[-121.382023,47.06935],[-121.385914,47.087615],[-121.404928,47.112749],[-121.382062,47.139685],[-121.364911,47.142528],[-121.31947,47.131088],[-121.30389,47.137554],[-121.308904,47.193489],[-121.357344,47.229217],[-121.330992,47.254882],[-121.339698,47.27531],[-121.427345,47.296442],[-121.438667,47.335184],[-121.461143,47.360681],[-121.440468,47.371477],[-121.360428,47.455935],[-121.295724,47.491104],[-121.221621,47.558287],[-121.154764,47.593921],[-121.117982,47.596401],[-121.09063,47.577873],[-121.074134,47.550278],[-121.040556,47.528249],[-121.00427,47.516413],[-120.916642,47.431027],[-120.842483,47.411486],[-120.800391,47.413107],[-120.671472,47.347134],[-120.6137,47.342676],[-120.575582,47.318373],[-120.574979,47.307352],[-120.541706,47.31005],[-120.520565,47.327147],[-120.38049,47.256158],[-120.091349,47.256963],[-120.070467,47.224794],[-120.00489,47.221178],[-120.010444,47.167746],[-120.001517,47.133013],[-120.043273,47.070532],[-120.016554,47.039885],[-119.994168,46.972396],[-119.962954,46.928989],[-119.966524,46.860957],[-119.927352,46.801204],[-119.972695,46.733221],[-120.50883,46.7357],[-120.50877,46.821542],[-120.625686,46.824013],[-120.628913,46.906585],[-121.043611,46.907865],[-121.060076,46.937699],[-121.096966,46.964169],[-121.10088,46.984268],[-121.176223,47.038981],[-121.283099,47.084877],[-121.324237,47.072097],[-121.349811,47.075889],[-121.382023,47.06935]]]},"id":53037},
{"type":"Feature","properties":{"name":"Foster"},"geometry":{"type":"Polygon","coordinates":[[[-98.504953,47.327506],[-99.268947,47.330035],[-99.270187,47.590175],[-98.507443,47.592419],[-98.504953,47.327506]]]},"id":38031},
{"type":"Feature","properties":{"name":"Mercer"},"geometry":{"type":"Polygon","coordinates":[[[-101.765539,46.985426],[-102.104647,46.984546],[-102.158505,46.984363],[-102.158384,47.012371],[-102.15526,47.336678],[-102.21072,47.337411],[-102.200037,47.579611],[-102.14116,47.573774],[-102.061896,47.577287],[-102.023451,47.562021],[-102.016761,47.539384],[-101.942572,47.53186],[-101.889739,47.507148],[-101.814841,47.502303],[-101.71053,47.533739],[-101.617472,47.529866],[-101.472792,47.560883],[-101.435231,47.560654],[-101.381107,47.521911],[-101.421132,47.493225],[-101.437505,47.468689],[-101.419384,47.452716],[-101.400851,47.39672],[-101.370775,47.379138],[-101.364312,47.32384],[-101.342705,47.296301],[-101.281706,47.285],[-101.260435,47.266651],[-101.259313,47.245483],[-101.766154,47.241302],[-101.765539,46.985426]]]},"id":38057},
{"type":"Feature","properties":{"name":"Grays Harbor"},"geometry":{"type":"Polygon","coordinates":[[[-123.16173,46.791894],[-123.373036,46.79281],[-124.102067,46.789469],[-124.138827,46.899985],[-124.105761,46.908149],[-124.104738,46.874145],[-124.028809,46.823767],[-124.046929,46.887253],[-123.812656,46.963965],[-123.995865,46.976386],[-124.034395,47.031034],[-124.112362,47.042675],[-124.162036,46.929613],[-124.192734,47.166982],[-124.231425,47.275071],[-124.319427,47.349238],[-124.34908,47.52691],[-124.051107,47.527337],[-124.05029,47.513547],[-123.502014,47.512754],[-123.502526,47.255642],[-123.487694,47.254502],[-123.486334,47.079158],[-123.206043,47.078282],[-123.208765,46.994421],[-123.164635,46.992727],[-123.16173,46.791894]]]},"id":53027},
{"type":"Feature","properties":{"name":"Norman"},"geometry":{"type":"Polygon","coordinates":[[[-96.195716,47.152439],[-96.839164,47.151887],[-96.826491,47.170064],[-96.837065,47.240459],[-96.849624,47.256844],[-96.837714,47.293884],[-96.846747,47.314602],[-96.838462,47.342243],[-96.850631,47.360955],[-96.839828,47.384117],[-96.850006,47.408936],[-96.867249,47.413087],[-96.855827,47.436753],[-96.866684,47.461538],[-96.851616,47.500619],[-96.070451,47.50168],[-96.071648,47.154273],[-96.195716,47.152439]]]},"id":27107},
{"type":"Feature","properties":{"name":"Mahnomen"},"geometry":{"type":"Polygon","coordinates":[[[-95.558107,47.501568],[-95.55379,47.151777],[-96.071648,47.154273],[-96.070451,47.50168],[-95.558107,47.501568]]]},"id":27087},
{"type":"Feature","properties":{"name":"Mineral"},"geometry":{"type":"Polygon","coordinates":[[[-114.673887,46.734722],[-114.698431,46.73376],[-114.748105,46.695132],[-114.782919,46.70304],[-114.777832,46.755717],[-114.79403,46.766532],[-114.840792,46.775538],[-114.866603,46.797046],[-114.902325,46.799434],[-114.948409,46.852447],[-114.940567,46.890888],[-114.924125,46.907165],[-114.96473,46.925213],[-115.001574,46.958809],[-115.037335,46.963001],[-115.055638,46.973358],[-115.081336,47.026524],[-115.135507,47.06355],[-115.148684,47.091742],[-115.172496,47.097571],[-115.193074,47.124026],[-115.296235,47.17955],[-115.325228,47.24515],[-115.343661,47.255023],[-115.408208,47.263594],[-115.426641,47.274374],[-115.50193,47.281644],[-115.523064,47.291983],[-115.555521,47.334613],[-115.599536,47.370003],[-115.638782,47.380044],[-115.666478,47.399168],[-115.750327,47.422476],[-115.750106,47.433966],[-115.732482,47.445304],[-115.656087,47.44918],[-115.643186,47.457794],[-115.640142,47.475235],[-115.623983,47.479214],[-115.608876,47.465267],[-115.572727,47.464901],[-115.540363,47.474679],[-115.511775,47.494611],[-115.471628,47.463822],[-115.390907,47.478541],[-115.336866,47.470084],[-115.284382,47.479102],[-115.248981,47.475441],[-115.223284,47.459937],[-115.181992,47.451579],[-115.123976,47.419997],[-115.027979,47.407626],[-114.993088,47.388731],[-114.974273,47.370065],[-114.970946,47.30474],[-114.908208,47.302882],[-114.905919,47.2909],[-114.840518,47.28897],[-114.840701,47.263235],[-114.799402,47.260282],[-114.799646,47.23317],[-114.78103,47.231034],[-114.780091,47.219536],[-114.716765,47.217583],[-114.713523,47.176627],[-114.688932,47.17438],[-114.688703,47.16197],[-114.656789,47.159597],[-114.657674,47.134801],[-114.635747,47.13305],[-114.633458,47.122441],[-114.592296,47.118512],[-114.591991,47.090484],[-114.565425,47.088638],[-114.565036,47.063368],[-114.481927,47.060496],[-114.481523,47.019147],[-114.420342,47.018476],[-114.419571,47.004224],[-114.436906,47.003171],[-114.442376,46.982144],[-114.51343,47.002278],[-114.534304,46.995304],[-114.534685,46.985211],[-114.553362,46.983708],[-114.555696,46.956658],[-114.568369,46.955506],[-114.571639,46.831154],[-114.551139,46.829415],[-114.552373,46.742703],[-114.672964,46.74205],[-114.673887,46.734722]]]},"id":30061},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-94.733983,46.368017],[-94.738469,46.382989],[-94.757505,46.381799],[-94.785932,46.399057],[-94.781053,46.626948],[-94.7904,46.627959],[-94.791877,46.802926],[-94.663736,46.802754],[-94.656027,46.975384],[-94.66487,46.97781],[-94.659837,47.320214],[-94.667955,47.321293],[-94.668508,47.412871],[-94.417276,47.413292],[-94.416154,47.434043],[-94.309755,47.417995],[-94.133656,47.476027],[-94.104983,47.478362],[-94.081499,47.468554],[-94.040522,47.419276],[-94.039532,47.376049],[-94.018223,47.348678],[-93.963549,47.332053],[-93.939021,47.305701],[-93.909456,47.293768],[-93.87664,47.322873],[-93.832435,47.301723],[-93.782239,47.30099],[-93.784202,47.259532],[-93.803063,47.24147],[-93.792192,47.218357],[-93.776262,47.209651],[-93.775235,47.030398],[-93.774367,46.802562],[-94.344391,46.801995],[-94.330052,46.309061],[-94.338941,46.277551],[-94.352041,46.294519],[-94.384567,46.297941],[-94.404762,46.321527],[-94.429796,46.330262],[-94.462932,46.324014],[-94.484242,46.309476],[-94.540396,46.302823],[-94.590942,46.326176],[-94.615914,46.325237],[-94.63128,46.344848],[-94.650804,46.350078],[-94.670619,46.358965],[-94.683856,46.351118],[-94.70496,46.351233],[-94.733983,46.368017]]]},"id":27021},
{"type":"Feature","properties":{"name":"Aroostook"},"geometry":{"type":"Polygon","coordinates":[[[-68.820216,46.397503],[-68.819843,46.570536],[-69.717211,46.571715],[-70.014145,46.570598],[-69.984978,46.691366],[-69.230296,47.453335],[-69.046976,47.422031],[-69.036715,47.257362],[-68.894872,47.182256],[-68.514673,47.296964],[-68.391257,47.285097],[-68.334814,47.357374],[-68.230807,47.352148],[-67.791011,47.061004],[-67.78029,45.947063],[-67.755615,45.91658],[-67.794571,45.878476],[-67.759367,45.827799],[-67.803053,45.794508],[-67.803433,45.678114],[-68.044267,45.635781],[-68.25775,45.604246],[-68.257277,45.594607],[-68.407833,45.572063],[-68.434163,45.584597],[-68.431913,45.759945],[-68.422491,45.771011],[-68.43874,46.093009],[-68.436251,46.381015],[-68.693894,46.384847],[-68.694253,46.396794],[-68.820216,46.397503]]]},"id":23003},
{"type":"Feature","properties":{"name":"Judith Basin"},"geometry":{"type":"Polygon","coordinates":[[[-109.759788,46.697195],[-109.818742,46.696538],[-109.968459,46.753517],[-110.023681,46.740531],[-110.060295,46.749026],[-110.100533,46.746325],[-110.147698,46.718473],[-110.196572,46.723164],[-110.234772,46.706264],[-110.288355,46.711629],[-110.315615,46.691529],[-110.34708,46.680883],[-110.395292,46.692431],[-110.449989,46.682048],[-110.564657,46.734531],[-110.567061,46.765225],[-110.585021,46.77218],[-110.629395,46.77096],[-110.659663,46.794329],[-110.658725,46.817828],[-110.658596,46.836231],[-110.645412,46.837333],[-110.643301,46.92162],[-110.655455,46.923329],[-110.658609,47.092077],[-110.774395,47.095166],[-110.763364,47.233858],[-110.777487,47.234544],[-110.777869,47.251108],[-110.792701,47.252218],[-110.791001,47.306666],[-110.769584,47.306796],[-110.766914,47.358528],[-110.644449,47.360337],[-110.641138,47.419935],[-110.215847,47.418998],[-110.212819,47.366159],[-110.128862,47.363925],[-110.127971,47.276005],[-110.002737,47.274606],[-110.000197,47.232361],[-109.869753,47.231536],[-109.868593,47.188784],[-109.757666,47.188401],[-109.755335,46.896401],[-109.776652,46.896886],[-109.77775,46.871555],[-109.800349,46.87152],[-109.802294,46.833276],[-109.831501,46.832963],[-109.833644,46.804828],[-109.801645,46.803425],[-109.801042,46.796558],[-109.786287,46.794887],[-109.785233,46.782977],[-109.756668,46.782802],[-109.759788,46.697195]]]},"id":30045},
{"type":"Feature","properties":{"name":"Hubbard"},"geometry":{"type":"Polygon","coordinates":[[[-95.165213,46.805017],[-95.175103,47.150418],[-95.168865,47.325102],[-95.184368,47.326307],[-95.185281,47.413755],[-94.668508,47.412871],[-94.667955,47.321293],[-94.659837,47.320214],[-94.66487,46.97781],[-94.656027,46.975384],[-94.663736,46.802754],[-94.791877,46.802926],[-95.165213,46.805017]]]},"id":27057},
{"type":"Feature","properties":{"name":"Benewah"},"geometry":{"type":"Polygon","coordinates":[[[-116.328613,47.411771],[-116.328666,47.016671],[-116.461655,47.018172],[-116.461571,47.028732],[-116.834722,47.026013],[-116.837355,47.037033],[-116.912477,47.074753],[-116.96174,47.061915],[-116.98502,47.119781],[-117.040968,47.119319],[-117.042392,47.258501],[-117.041795,47.361442],[-116.815164,47.35995],[-116.815798,47.373741],[-116.773668,47.375054],[-116.774301,47.385632],[-116.738854,47.385106],[-116.73893,47.367181],[-116.632611,47.368321],[-116.63246,47.39544],[-116.590985,47.396242],[-116.590231,47.410032],[-116.521984,47.410275],[-116.520687,47.404751],[-116.328613,47.411771]]]},"id":16009},
{"type":"Feature","properties":{"name":"Wibaux"},"geometry":{"type":"Polygon","coordinates":[[[-104.606619,46.687932],[-104.608557,46.825999],[-104.600599,46.825575],[-104.598891,46.856322],[-104.491395,46.854457],[-104.490823,46.86639],[-104.472252,46.866913],[-104.459686,46.87384],[-104.459762,46.884396],[-104.44052,46.885376],[-104.439276,46.89777],[-104.417379,46.898754],[-104.415487,46.914364],[-104.40154,46.91441],[-104.377239,46.960836],[-104.356646,46.961347],[-104.355426,46.981092],[-104.336237,46.99904],[-104.334436,47.037611],[-104.315812,47.038572],[-104.31762,47.136378],[-104.329614,47.137271],[-104.336687,47.21672],[-104.346034,47.218532],[-104.354877,47.250213],[-104.377583,47.252444],[-104.379055,47.276336],[-104.444122,47.320716],[-104.428336,47.358455],[-104.127503,47.358597],[-104.128251,47.399506],[-104.047308,47.400017],[-104.045927,47.333832],[-104.047437,46.642947],[-104.356234,46.641119],[-104.357722,46.671378],[-104.427854,46.67209],[-104.427953,46.688147],[-104.606619,46.687932]]]},"id":30109},
{"type":"Feature","properties":{"name":"Golden Valley"},"geometry":{"type":"Polygon","coordinates":[[[-104.046706,46.54254],[-104.047437,46.642947],[-104.045927,47.333832],[-103.674385,47.332077],[-103.673452,46.983455],[-103.604998,46.982356],[-103.607098,46.631844],[-103.797512,46.630882],[-103.798459,46.537814],[-104.046706,46.54254]]]},"id":38033},
{"type":"Feature","properties":{"name":"Billings"},"geometry":{"type":"Polygon","coordinates":[[[-103.607098,46.631844],[-103.604998,46.982356],[-103.673452,46.983455],[-103.674385,47.332077],[-103.115081,47.331001],[-103.034911,47.329545],[-103.040649,46.984167],[-103.226101,46.983961],[-103.230229,46.632076],[-103.607098,46.631844]]]},"id":38007},
{"type":"Feature","properties":{"name":"Stutsman"},"geometry":{"type":"Polygon","coordinates":[[[-99.03877,46.63519],[-99.451719,46.637136],[-99.455092,46.981747],[-99.487715,46.981445],[-99.485035,47.329907],[-99.268947,47.330035],[-98.504953,47.327506],[-98.470819,47.327525],[-98.468476,47.244577],[-98.463544,46.987221],[-98.445118,46.984642],[-98.439762,46.631919],[-99.03877,46.63519]]]},"id":38093},
{"type":"Feature","properties":{"name":"Kidder"},"geometry":{"type":"Polygon","coordinates":[[[-100.08849,46.635702],[-100.084243,46.985479],[-100.120164,46.985578],[-100.115294,47.326535],[-100.038327,47.327568],[-99.485035,47.329907],[-99.487715,46.981445],[-99.455092,46.981747],[-99.451719,46.637136],[-99.915828,46.634791],[-100.08849,46.635702]]]},"id":38043},
{"type":"Feature","properties":{"name":"Burleigh"},"geometry":{"type":"Polygon","coordinates":[[[-100.08849,46.635702],[-100.649601,46.635446],[-100.648343,46.660192],[-100.720122,46.654127],[-100.745132,46.683634],[-100.780816,46.684939],[-100.798044,46.711954],[-100.7837,46.720797],[-100.784241,46.736876],[-100.835955,46.75001],[-100.819171,46.809293],[-100.901732,46.901162],[-100.902198,46.947548],[-100.930429,46.983547],[-100.890526,47.011588],[-100.875084,47.042472],[-100.925273,47.093681],[-100.953436,47.161392],[-100.755552,47.157795],[-100.751899,47.325507],[-100.678334,47.326053],[-100.115294,47.326535],[-100.120164,46.985578],[-100.084243,46.985479],[-100.08849,46.635702]]]},"id":38015},
{"type":"Feature","properties":{"name":"Pierce"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.802184,47.360741],[-122.799553,47.398887],[-122.637437,47.39858],[-122.741549,47.34145],[-122.769708,47.266156],[-122.719802,47.223131],[-122.761239,47.162496],[-122.825108,47.234826],[-122.773335,47.337361],[-122.802184,47.360741]]],[[[-122.558447,47.398364],[-122.544125,47.373927],[-122.588254,47.33393],[-122.553156,47.283332],[-122.580531,47.251388],[-122.611546,47.293399],[-122.606914,47.270572],[-122.699745,47.292085],[-122.628754,47.398554],[-122.558447,47.398364]]],[[[-122.231149,46.762085],[-122.242609,46.772671],[-122.284358,46.771984],[-122.307742,46.782111],[-122.307827,46.816107],[-122.330136,46.837301],[-122.394927,46.841664],[-122.460603,46.856529],[-122.484964,46.869803],[-122.503711,46.90307],[-122.56861,46.939068],[-122.564628,46.962681],[-122.578949,46.974514],[-122.628122,46.97343],[-122.640124,46.996848],[-122.668675,47.011309],[-122.688428,47.054648],[-122.709486,47.074476],[-122.700079,47.098326],[-122.591807,47.18006],[-122.530764,47.287456],[-122.546588,47.316276],[-122.424094,47.259473],[-122.392844,47.277722],[-122.441604,47.301125],[-122.420837,47.318844],[-122.328862,47.255819],[-122.152405,47.256087],[-122.109693,47.20568],[-122.064167,47.178382],[-121.966523,47.158478],[-121.943313,47.142758],[-121.896223,47.155476],[-121.840733,47.145021],[-121.794498,47.16963],[-121.702499,47.152569],[-121.641995,47.155542],[-121.578058,47.119056],[-121.513679,47.123482],[-121.443006,47.084402],[-121.385914,47.087615],[-121.382023,47.06935],[-121.381641,47.053733],[-121.400349,47.03475],[-121.404209,47.00292],[-121.43877,46.982508],[-121.452923,46.965502],[-121.459178,46.93038],[-121.501644,46.909696],[-121.520275,46.881063],[-121.500307,46.841749],[-121.478326,46.830988],[-121.450287,46.799288],[-121.449143,46.782332],[-121.754471,46.784487],[-121.844043,46.730373],[-121.965396,46.74808],[-122.107207,46.746542],[-122.231149,46.762085]]]]},"id":53053},
{"type":"Feature","properties":{"name":"Oliver"},"geometry":{"type":"Polygon","coordinates":[[[-100.930429,46.983547],[-101.765539,46.985426],[-101.766154,47.241302],[-101.259313,47.245483],[-101.260435,47.266651],[-101.198139,47.25529],[-101.17615,47.285178],[-101.134827,47.298117],[-101.040371,47.28877],[-100.988947,47.259152],[-100.979836,47.239647],[-100.989281,47.193893],[-100.979377,47.177128],[-100.953436,47.161392],[-100.925273,47.093681],[-100.875084,47.042472],[-100.890526,47.011588],[-100.930429,46.983547]]]},"id":38065},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-119.371226,46.733931],[-119.370229,46.908806],[-118.987727,46.909822],[-118.980344,47.259915],[-117.960196,47.256542],[-117.961796,46.911194],[-117.969746,46.909759],[-117.971066,46.864776],[-117.997916,46.841177],[-117.989721,46.825636],[-118.017975,46.808454],[-118.012367,46.788766],[-118.041888,46.769276],[-118.100265,46.773406],[-118.162763,46.747663],[-118.227457,46.736087],[-119.371226,46.733931]]]},"id":53001},
{"type":"Feature","properties":{"name":"Whitman"},"geometry":{"type":"Polygon","coordinates":[[[-117.040968,47.119319],[-117.041926,46.536602],[-117.038559,46.427981],[-117.10512,46.418782],[-117.155873,46.425144],[-117.209899,46.418201],[-117.218574,46.44981],[-117.229805,46.45758],[-117.241731,46.473598],[-117.239893,46.512104],[-117.256496,46.537285],[-117.291601,46.563347],[-117.336572,46.574703],[-117.398909,46.614886],[-117.417008,46.654266],[-117.445513,46.663349],[-117.471516,46.692154],[-117.49204,46.693916],[-117.513716,46.672282],[-117.575259,46.674329],[-117.614225,46.667279],[-117.660822,46.695954],[-117.721075,46.698406],[-117.759209,46.676642],[-117.787134,46.632458],[-117.818058,46.619896],[-117.854385,46.617385],[-117.89957,46.585912],[-118.022406,46.581839],[-118.086277,46.56851],[-118.11965,46.5499],[-118.166522,46.549049],[-118.214088,46.585777],[-118.200789,46.617532],[-118.214508,46.644468],[-118.215256,46.684821],[-118.243068,46.720809],[-118.227457,46.736087],[-118.162763,46.747663],[-118.100265,46.773406],[-118.041888,46.769276],[-118.012367,46.788766],[-118.017975,46.808454],[-117.989721,46.825636],[-117.997916,46.841177],[-117.971066,46.864776],[-117.969746,46.909759],[-117.961796,46.911194],[-117.960196,47.256542],[-117.828037,47.257396],[-117.042392,47.258501],[-117.040968,47.119319]]]},"id":53075},
{"type":"Feature","properties":{"name":"Barnes"},"geometry":{"type":"Polygon","coordinates":[[[-97.684056,46.630817],[-98.036648,46.629179],[-98.439762,46.631919],[-98.445118,46.984642],[-98.463544,46.987221],[-98.468476,47.244577],[-97.961673,47.244938],[-97.7122,47.245291],[-97.713552,46.981163],[-97.684857,46.981686],[-97.684056,46.630817]]]},"id":38003},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-97.684056,46.630817],[-97.684857,46.981686],[-97.713552,46.981163],[-97.7122,47.245291],[-97.453392,47.244752],[-96.837065,47.240459],[-96.826491,47.170064],[-96.839164,47.151887],[-96.819152,47.092604],[-96.826965,47.078833],[-96.822608,47.033932],[-96.835296,47.010231],[-96.824531,47.003437],[-96.816772,46.969779],[-96.793426,46.969641],[-96.801887,46.955844],[-96.78971,46.948203],[-96.787925,46.932185],[-96.763068,46.936262],[-96.756911,46.92278],[-96.778061,46.86735],[-96.76825,46.844862],[-96.797197,46.812033],[-96.780382,46.762312],[-96.781557,46.707044],[-96.793695,46.678804],[-96.790246,46.629773],[-97.283717,46.631509],[-97.684056,46.630817]]]},"id":38017},
{"type":"Feature","properties":{"name":"Prairie"},"geometry":{"type":"Polygon","coordinates":[[[-104.606619,46.687932],[-104.606329,46.656285],[-104.73663,46.656105],[-104.736156,46.613922],[-104.853822,46.614612],[-104.854524,46.566927],[-104.987945,46.566484],[-104.987586,46.542192],[-105.243167,46.544694],[-105.242931,46.567159],[-105.455059,46.571034],[-105.453739,46.60085],[-105.492132,46.603646],[-105.491469,46.661897],[-105.580874,46.665941],[-105.577572,46.749006],[-105.620657,46.750337],[-105.620078,46.834311],[-105.835702,46.836186],[-105.837114,46.862786],[-106.092032,46.865565],[-106.090768,47.180604],[-105.965374,47.17969],[-105.966846,47.095603],[-105.838963,47.095078],[-105.836201,47.186532],[-105.412642,47.181871],[-105.327906,47.179495],[-105.326502,46.978367],[-105.202831,46.976751],[-105.201191,46.923055],[-105.07826,46.919484],[-105.077367,46.905263],[-105.058094,46.904039],[-105.058514,46.888887],[-105.037921,46.888127],[-105.038821,46.861043],[-104.598891,46.856322],[-104.600599,46.825575],[-104.608557,46.825999],[-104.606619,46.687932]]]},"id":30079},
{"type":"Feature","properties":{"name":"Becker"},"geometry":{"type":"Polygon","coordinates":[[[-95.165527,46.71631],[-96.176493,46.715805],[-96.174202,46.974428],[-96.193001,46.975813],[-96.195716,47.152439],[-96.071648,47.154273],[-95.55379,47.151777],[-95.175103,47.150418],[-95.165213,46.805017],[-95.165527,46.71631]]]},"id":27005},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-96.282324,46.628774],[-96.784318,46.624112],[-96.790246,46.629773],[-96.793695,46.678804],[-96.781557,46.707044],[-96.780382,46.762312],[-96.797197,46.812033],[-96.76825,46.844862],[-96.778061,46.86735],[-96.756911,46.92278],[-96.763068,46.936262],[-96.787925,46.932185],[-96.78971,46.948203],[-96.801887,46.955844],[-96.793426,46.969641],[-96.816772,46.969779],[-96.824531,47.003437],[-96.835296,47.010231],[-96.822608,47.033932],[-96.826965,47.078833],[-96.819152,47.092604],[-96.839164,47.151887],[-96.195716,47.152439],[-96.193001,46.975813],[-96.174202,46.974428],[-96.176493,46.715805],[-96.177142,46.630727],[-96.282324,46.628774]]]},"id":27027},
{"type":"Feature","properties":{"name":"Thurston"},"geometry":{"type":"Polygon","coordinates":[[[-122.231149,46.762085],[-123.159341,46.759363],[-123.16173,46.791894],[-123.164635,46.992727],[-123.208765,46.994421],[-123.206043,47.078282],[-123.085213,47.077237],[-123.0812,47.090058],[-123.031348,47.100774],[-122.92315,47.047964],[-122.790049,47.12586],[-122.728187,47.082441],[-122.700079,47.098326],[-122.709486,47.074476],[-122.688428,47.054648],[-122.668675,47.011309],[-122.640124,46.996848],[-122.628122,46.97343],[-122.578949,46.974514],[-122.564628,46.962681],[-122.56861,46.939068],[-122.503711,46.90307],[-122.484964,46.869803],[-122.460603,46.856529],[-122.394927,46.841664],[-122.330136,46.837301],[-122.307827,46.816107],[-122.307742,46.782111],[-122.284358,46.771984],[-122.242609,46.772671],[-122.231149,46.762085]]]},"id":53067},
{"type":"Feature","properties":{"name":"Latah"},"geometry":{"type":"Polygon","coordinates":[[[-117.040968,47.119319],[-116.98502,47.119781],[-116.96174,47.061915],[-116.912477,47.074753],[-116.837355,47.037033],[-116.834722,47.026013],[-116.461571,47.028732],[-116.461655,47.018172],[-116.328666,47.016671],[-116.328969,46.921653],[-116.330684,46.623013],[-116.462905,46.621758],[-116.623552,46.619542],[-116.694505,46.571574],[-116.708543,46.533556],[-117.041926,46.536602],[-117.040968,47.119319]]]},"id":16057},
{"type":"Feature","properties":{"name":"Meagher"},"geometry":{"type":"Polygon","coordinates":[[[-111.063699,46.18946],[-111.058609,46.215897],[-111.078424,46.228649],[-111.078828,46.244702],[-111.096407,46.24884],[-111.126186,46.274384],[-111.115351,46.326861],[-111.06739,46.359676],[-111.070541,46.382946],[-111.054342,46.404465],[-111.087013,46.413334],[-111.095498,46.430818],[-111.132876,46.446336],[-111.174185,46.449223],[-111.196106,46.431984],[-111.224321,46.424057],[-111.251415,46.435951],[-111.26392,46.4955],[-111.280515,46.50197],[-111.293272,46.521517],[-111.34182,46.529493],[-111.352715,46.538103],[-111.325736,46.563461],[-111.342415,46.582336],[-111.340522,46.630727],[-111.418933,46.637993],[-111.420757,46.665952],[-111.452092,46.678971],[-111.452382,46.693216],[-111.466505,46.700727],[-111.453122,46.72906],[-111.45828,46.739363],[-111.502777,46.75672],[-111.512352,46.811416],[-111.525987,46.814349],[-111.543177,46.801898],[-111.597997,46.804392],[-111.65677,46.840708],[-111.646714,46.862907],[-111.613044,46.888256],[-111.658938,46.910568],[-111.549143,46.911584],[-111.545855,46.998794],[-111.283092,46.998707],[-111.282329,47.009801],[-111.167114,47.011253],[-111.1661,47.087285],[-111.143326,47.086626],[-111.078641,47.007094],[-111.016871,47.009346],[-110.970613,47.000653],[-110.911574,46.971876],[-110.85342,46.919111],[-110.811159,46.90327],[-110.790208,46.906608],[-110.760315,46.88784],[-110.754462,46.843964],[-110.698003,46.837993],[-110.658725,46.817828],[-110.659663,46.794329],[-110.629395,46.77096],[-110.585021,46.77218],[-110.567061,46.765225],[-110.564657,46.734531],[-110.449989,46.682048],[-110.395292,46.692431],[-110.34708,46.680883],[-110.315615,46.691529],[-110.288355,46.711629],[-110.298208,46.219246],[-110.299453,46.176962],[-110.43629,46.176524],[-110.436656,46.187064],[-110.790247,46.187774],[-111.063699,46.18946]]]},"id":30059},
{"type":"Feature","properties":{"name":"Yakima"},"geometry":{"type":"Polygon","coordinates":[[[-121.525174,46.383743],[-121.403391,46.386807],[-121.388407,46.40931],[-121.453732,46.517302],[-121.413357,46.555784],[-121.417042,46.571271],[-121.405545,46.587243],[-121.411389,46.605413],[-121.393964,46.63168],[-121.415655,46.669083],[-121.393629,46.686318],[-121.370801,46.691635],[-121.363973,46.718483],[-121.377867,46.728145],[-121.424086,46.735385],[-121.449143,46.782332],[-121.450287,46.799288],[-121.478326,46.830988],[-121.500307,46.841749],[-121.520275,46.881063],[-121.501644,46.909696],[-121.459178,46.93038],[-121.452923,46.965502],[-121.43877,46.982508],[-121.404209,47.00292],[-121.400349,47.03475],[-121.381641,47.053733],[-121.382023,47.06935],[-121.349811,47.075889],[-121.324237,47.072097],[-121.283099,47.084877],[-121.176223,47.038981],[-121.10088,46.984268],[-121.096966,46.964169],[-121.060076,46.937699],[-121.043611,46.907865],[-120.628913,46.906585],[-120.625686,46.824013],[-120.50877,46.821542],[-120.50883,46.7357],[-119.972695,46.733221],[-119.969055,46.711276],[-119.934422,46.662467],[-119.883173,46.625476],[-119.882126,46.556236],[-119.874824,46.555473],[-119.874912,46.208919],[-119.865695,46.208656],[-119.868807,46.037735],[-121.517154,46.044731],[-121.525174,46.383743]]]},"id":53077},
{"type":"Feature","properties":{"name":"Aitkin"},"geometry":{"type":"Polygon","coordinates":[[[-93.052165,46.157625],[-93.434241,46.153084],[-93.432846,46.240206],[-93.805063,46.23813],[-93.809586,46.58064],[-93.774511,46.590462],[-93.774367,46.802562],[-93.775235,47.030398],[-93.058465,47.022303],[-93.05986,46.766019],[-93.052299,46.417522],[-93.052165,46.157625]]]},"id":27001},
{"type":"Feature","properties":{"name":"Stark"},"geometry":{"type":"Polygon","coordinates":[[[-102.099568,46.632056],[-102.926787,46.630033],[-103.230229,46.632076],[-103.226101,46.983961],[-103.040649,46.984167],[-102.524159,46.98418],[-102.522924,47.009415],[-102.158384,47.012371],[-102.158505,46.984363],[-102.104647,46.984546],[-102.100989,46.720607],[-102.099568,46.632056]]]},"id":38089},
{"type":"Feature","properties":{"name":"Morton"},"geometry":{"type":"Polygon","coordinates":[[[-100.594676,46.430891],[-100.621846,46.428354],[-100.639745,46.413664],[-100.683326,46.41244],[-100.72429,46.384082],[-100.74434,46.405192],[-100.821498,46.390968],[-100.856175,46.396355],[-100.863667,46.405236],[-100.903982,46.402948],[-100.933874,46.383909],[-100.947058,46.35533],[-100.975951,46.328467],[-101.01776,46.32114],[-101.005522,46.300704],[-101.026724,46.282837],[-101.051169,46.280617],[-101.049904,46.368129],[-101.304022,46.37247],[-101.305491,46.627445],[-101.719907,46.634062],[-101.721084,46.714814],[-102.100989,46.720607],[-102.104647,46.984546],[-101.765539,46.985426],[-100.930429,46.983547],[-100.902198,46.947548],[-100.901732,46.901162],[-100.819171,46.809293],[-100.835955,46.75001],[-100.784241,46.736876],[-100.7837,46.720797],[-100.798044,46.711954],[-100.780816,46.684939],[-100.745132,46.683634],[-100.720122,46.654127],[-100.648343,46.660192],[-100.649601,46.635446],[-100.623867,46.608206],[-100.57889,46.595617],[-100.563051,46.582376],[-100.578455,46.565786],[-100.562639,46.526857],[-100.599193,46.471357],[-100.594676,46.430891]]]},"id":38059},
{"type":"Feature","properties":{"name":"Bayfield"},"geometry":{"type":"Polygon","coordinates":[[[-91.55427,46.15913],[-91.555773,46.75686],[-90.86173,46.95248],[-90.774486,46.920235],[-90.777446,46.883123],[-90.926244,46.585503],[-90.935131,46.278825],[-90.92591,46.156169],[-91.55427,46.15913]]]},"id":55007},
{"type":"Feature","properties":{"name":"Clearwater"},"geometry":{"type":"Polygon","coordinates":[[[-116.462905,46.621758],[-116.330684,46.623013],[-116.328969,46.921653],[-114.96473,46.925213],[-114.924125,46.907165],[-114.940567,46.890888],[-114.948409,46.852447],[-114.902325,46.799434],[-114.866603,46.797046],[-114.840792,46.775538],[-114.79403,46.766532],[-114.777832,46.755717],[-114.782919,46.70304],[-114.748105,46.695132],[-114.698431,46.73376],[-114.673887,46.734722],[-114.625927,46.687107],[-114.645038,46.670921],[-114.64474,46.660824],[-114.610826,46.629048],[-114.636354,46.618023],[-115.635196,46.464729],[-115.660632,46.413648],[-115.734005,46.367606],[-115.737949,46.333735],[-115.765888,46.282677],[-115.787242,46.265918],[-115.81818,46.263899],[-115.888195,46.284188],[-115.968983,46.291236],[-115.999119,46.299243],[-116.068752,46.352882],[-116.12798,46.354651],[-116.171284,46.366373],[-116.190564,46.404975],[-116.310461,46.407468],[-116.325278,46.440535],[-116.371841,46.465967],[-116.373565,46.493018],[-116.456034,46.493371],[-116.462905,46.621758]]]},"id":16035},
{"type":"Feature","properties":{"name":"Custer"},"geometry":{"type":"Polygon","coordinates":[[[-106.1975,45.794355],[-106.200181,46.132603],[-106.162765,46.132286],[-106.160927,46.478724],[-106.12596,46.478811],[-106.123511,46.833415],[-106.092969,46.832503],[-106.093496,46.849021],[-106.092032,46.865565],[-105.837114,46.862786],[-105.835702,46.836186],[-105.620078,46.834311],[-105.620657,46.750337],[-105.577572,46.749006],[-105.580874,46.665941],[-105.491469,46.661897],[-105.492132,46.603646],[-105.453739,46.60085],[-105.455059,46.571034],[-105.242931,46.567159],[-105.243167,46.544694],[-104.987586,46.542192],[-104.987945,46.566484],[-104.854524,46.566927],[-104.853822,46.614612],[-104.736156,46.613922],[-104.735996,46.481435],[-104.909526,46.483598],[-104.91244,46.312655],[-104.884127,46.311469],[-104.887064,46.137864],[-104.940876,46.137501],[-104.942465,45.787374],[-104.99794,45.786524],[-106.1975,45.794355]]]},"id":30017},
{"type":"Feature","properties":{"name":"Rosebud"},"geometry":{"type":"Polygon","coordinates":[[[-106.1975,45.794355],[-106.239288,45.79413],[-106.240795,45.353726],[-106.28166,45.3535],[-106.280911,45.178955],[-106.76685,45.178053],[-106.769345,45.348467],[-106.724008,45.350307],[-106.729691,45.681274],[-106.920313,45.686442],[-106.920844,45.788018],[-106.887548,45.788274],[-106.889472,45.832624],[-106.942445,45.833317],[-106.942285,45.874059],[-106.938635,46.131945],[-107.004999,46.133245],[-107.007008,46.307779],[-107.024397,46.313806],[-107.026818,46.395349],[-107.152839,46.397995],[-107.154055,46.464912],[-107.178531,46.466178],[-107.178097,46.484531],[-107.738467,46.483198],[-107.750385,46.483785],[-107.751164,46.497526],[-107.780203,46.497182],[-107.800033,46.497551],[-107.798501,46.597151],[-107.832332,46.598966],[-107.810732,46.625719],[-107.819377,46.637869],[-107.801623,46.662688],[-107.799587,46.684775],[-107.822522,46.714892],[-107.814992,46.733463],[-107.827383,46.75286],[-107.846435,46.772525],[-107.844917,46.803329],[-107.893969,46.847408],[-107.472501,46.848613],[-107.472714,46.865139],[-106.731715,46.862135],[-106.731104,46.84746],[-106.093496,46.849021],[-106.092969,46.832503],[-106.123511,46.833415],[-106.12596,46.478811],[-106.160927,46.478724],[-106.162765,46.132286],[-106.200181,46.132603],[-106.1975,45.794355]]]},"id":30087},
{"type":"Feature","properties":{"name":"Granite"},"geometry":{"type":"Polygon","coordinates":[[[-113.492246,45.935298],[-113.524184,45.937953],[-113.537582,45.944709],[-113.563462,45.938037],[-113.609324,45.950179],[-113.619068,45.964617],[-113.658902,45.966975],[-113.666037,46.007452],[-113.696251,46.032461],[-113.754962,46.038458],[-113.788326,46.026426],[-113.803005,46.034559],[-113.79369,46.064566],[-113.77615,46.074686],[-113.759694,46.102697],[-113.792312,46.147448],[-113.787315,46.169325],[-113.82541,46.183043],[-113.82464,46.199064],[-113.812845,46.212076],[-113.782877,46.220076],[-113.75532,46.259295],[-113.78281,46.27553],[-113.77847,46.310717],[-113.792488,46.361014],[-113.824183,46.400721],[-113.856152,46.421637],[-113.847745,46.445739],[-113.868484,46.495284],[-113.84642,46.514957],[-113.83017,46.578339],[-113.816345,46.590863],[-113.808694,46.626008],[-113.817941,46.653749],[-113.67229,46.654883],[-113.670933,46.70808],[-113.553602,46.709771],[-113.550818,46.737695],[-113.488437,46.739328],[-113.486331,46.791148],[-113.424613,46.791846],[-113.423964,46.828102],[-113.306502,46.828206],[-113.297888,46.827973],[-113.292944,46.797997],[-113.256824,46.814924],[-113.232188,46.781647],[-113.18264,46.755486],[-113.184425,46.724777],[-113.131527,46.72284],[-113.103015,46.71193],[-113.03762,46.730714],[-113.028643,46.264816],[-113.032671,46.219554],[-113.287927,46.217576],[-113.287498,46.13141],[-113.268431,46.131803],[-113.269612,46.052579],[-113.290616,46.028874],[-113.331336,46.003868],[-113.362969,46.000595],[-113.389833,46.012764],[-113.430202,45.981311],[-113.468678,45.97224],[-113.473363,45.9458],[-113.492246,45.935298]]]},"id":30039},
{"type":"Feature","properties":{"name":"Wadena"},"geometry":{"type":"Polygon","coordinates":[[[-95.159379,46.367558],[-95.165527,46.71631],[-95.165213,46.805017],[-94.791877,46.802926],[-94.7904,46.627959],[-94.781053,46.626948],[-94.785932,46.399057],[-94.757505,46.381799],[-94.738469,46.382989],[-94.733983,46.368017],[-95.159379,46.367558]]]},"id":27159},
{"type":"Feature","properties":{"name":"Crow Wing"},"geometry":{"type":"Polygon","coordinates":[[[-93.806718,46.152357],[-94.376838,46.15743],[-94.373542,46.184144],[-94.394226,46.223756],[-94.338941,46.277551],[-94.330052,46.309061],[-94.344391,46.801995],[-93.774367,46.802562],[-93.774511,46.590462],[-93.809586,46.58064],[-93.805063,46.23813],[-93.806718,46.152357]]]},"id":27035},
{"type":"Feature","properties":{"name":"Pacific"},"geometry":{"type":"Polygon","coordinates":[[[-123.359814,46.375286],[-123.723977,46.379409],[-123.725459,46.285424],[-123.885771,46.240438],[-123.993329,46.310275],[-124.079108,46.267259],[-124.065511,46.639745],[-124.023043,46.583541],[-124.013002,46.38368],[-123.841451,46.404343],[-123.940693,46.481115],[-123.893567,46.51108],[-123.957712,46.617225],[-123.92647,46.673061],[-123.840967,46.718288],[-123.895542,46.744986],[-124.043158,46.715856],[-124.091049,46.729023],[-124.102067,46.789469],[-123.373036,46.79281],[-123.359814,46.375286]]]},"id":53049},
{"type":"Feature","properties":{"name":"Lewis"},"geometry":{"type":"Polygon","coordinates":[[[-123.373036,46.79281],[-123.16173,46.791894],[-123.159341,46.759363],[-122.231149,46.762085],[-122.107207,46.746542],[-121.965396,46.74808],[-121.844043,46.730373],[-121.754471,46.784487],[-121.449143,46.782332],[-121.424086,46.735385],[-121.377867,46.728145],[-121.363973,46.718483],[-121.370801,46.691635],[-121.393629,46.686318],[-121.415655,46.669083],[-121.393964,46.63168],[-121.411389,46.605413],[-121.405545,46.587243],[-121.417042,46.571271],[-121.413357,46.555784],[-121.453732,46.517302],[-121.388407,46.40931],[-121.403391,46.386807],[-121.525174,46.383743],[-122.243193,46.380985],[-123.219756,46.373936],[-123.359814,46.375286],[-123.373036,46.79281]]]},"id":53041},
{"type":"Feature","properties":{"name":"Broadwater"},"geometry":{"type":"Polygon","coordinates":[[[-111.659736,45.841736],[-111.6586,46.04794],[-111.785788,46.05035],[-111.795792,46.565959],[-111.648788,46.56691],[-111.645775,46.735001],[-111.609007,46.778928],[-111.596067,46.781946],[-111.522637,46.756086],[-111.502777,46.75672],[-111.45828,46.739363],[-111.453122,46.72906],[-111.466505,46.700727],[-111.452382,46.693216],[-111.452092,46.678971],[-111.420757,46.665952],[-111.418933,46.637993],[-111.340522,46.630727],[-111.342415,46.582336],[-111.325736,46.563461],[-111.352715,46.538103],[-111.34182,46.529493],[-111.293272,46.521517],[-111.280515,46.50197],[-111.26392,46.4955],[-111.251415,46.435951],[-111.224321,46.424057],[-111.196106,46.431984],[-111.174185,46.449223],[-111.132876,46.446336],[-111.095498,46.430818],[-111.087013,46.413334],[-111.054342,46.404465],[-111.070541,46.382946],[-111.06739,46.359676],[-111.115351,46.326861],[-111.126186,46.274384],[-111.096407,46.24884],[-111.078828,46.244702],[-111.078424,46.228649],[-111.058609,46.215897],[-111.063699,46.18946],[-111.346116,46.182307],[-111.34491,46.118078],[-111.389415,46.098215],[-111.412815,46.078111],[-111.426038,45.996583],[-111.465842,45.988431],[-111.468047,45.96719],[-111.502503,45.92352],[-111.526941,45.924916],[-111.550837,45.915784],[-111.563907,45.898068],[-111.604497,45.880192],[-111.624578,45.855199],[-111.659736,45.841736]]]},"id":30007},
{"type":"Feature","properties":{"name":"Carlton"},"geometry":{"type":"Polygon","coordinates":[[[-93.052299,46.417522],[-93.05986,46.766019],[-92.302132,46.764301],[-92.303148,46.666576],[-92.287272,46.658786],[-92.288685,46.415984],[-93.052299,46.417522]]]},"id":27017},
{"type":"Feature","properties":{"name":"Golden Valley"},"geometry":{"type":"Polygon","coordinates":[[[-108.92473,46.132747],[-109.423461,46.132127],[-109.423178,46.040426],[-109.607066,46.041674],[-109.606753,46.131121],[-109.656841,46.132716],[-109.656238,46.218066],[-109.407433,46.217618],[-109.408936,46.493823],[-109.39241,46.501818],[-109.3899,46.697557],[-109.390182,46.757724],[-109.013717,46.753636],[-109.018203,46.621207],[-108.998259,46.620093],[-108.998229,46.576021],[-108.908097,46.573775],[-108.909631,46.487885],[-108.883079,46.486085],[-108.882446,46.450768],[-108.85597,46.449875],[-108.859122,46.367174],[-108.841855,46.365492],[-108.834378,46.326307],[-108.820439,46.324964],[-108.819996,46.309842],[-108.802707,46.307698],[-108.80318,46.277871],[-108.781443,46.277718],[-108.786775,46.133088],[-108.92473,46.132747]]]},"id":30037},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-92.288944,46.156601],[-92.288685,46.415984],[-92.287272,46.658786],[-92.209154,46.646872],[-92.09597,46.742627],[-92.004157,46.6838],[-91.921461,46.680134],[-91.555773,46.75686],[-91.55427,46.15913],[-92.048657,46.158104],[-92.288944,46.156601]]]},"id":55031},
{"type":"Feature","properties":{"name":"Musselshell"},"geometry":{"type":"Polygon","coordinates":[[[-108.786775,46.133088],[-108.781443,46.277718],[-108.80318,46.277871],[-108.802707,46.307698],[-108.819996,46.309842],[-108.820439,46.324964],[-108.834378,46.326307],[-108.841855,46.365492],[-108.859122,46.367174],[-108.85597,46.449875],[-108.882446,46.450768],[-108.883079,46.486085],[-108.909631,46.487885],[-108.908097,46.573775],[-108.998229,46.576021],[-108.998259,46.620093],[-109.018203,46.621207],[-109.013717,46.753636],[-108.635506,46.751331],[-107.827383,46.75286],[-107.814992,46.733463],[-107.822522,46.714892],[-107.799587,46.684775],[-107.801623,46.662688],[-107.819377,46.637869],[-107.810732,46.625719],[-107.832332,46.598966],[-107.798501,46.597151],[-107.800033,46.497551],[-107.780203,46.497182],[-107.779567,46.39401],[-107.929287,46.394826],[-107.929592,46.377847],[-107.946705,46.377354],[-107.947941,46.364937],[-107.967649,46.363907],[-107.968084,46.349216],[-107.994369,46.347995],[-107.994796,46.333304],[-108.013268,46.333681],[-108.014397,46.308885],[-108.0328,46.308343],[-108.033494,46.265687],[-108.322854,46.262311],[-108.32351,46.252205],[-108.365603,46.251777],[-108.367137,46.235225],[-108.401998,46.235018],[-108.403746,46.132735],[-108.786775,46.133088]]]},"id":30065},
{"type":"Feature","properties":{"name":"Wheatland"},"geometry":{"type":"Polygon","coordinates":[[[-110.298208,46.219246],[-110.288355,46.711629],[-110.234772,46.706264],[-110.196572,46.723164],[-110.147698,46.718473],[-110.100533,46.746325],[-110.060295,46.749026],[-110.023681,46.740531],[-109.968459,46.753517],[-109.818742,46.696538],[-109.759788,46.697195],[-109.3899,46.697557],[-109.39241,46.501818],[-109.408936,46.493823],[-109.407433,46.217618],[-109.656238,46.218066],[-110.298208,46.219246]]]},"id":30107},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-118.214088,46.585777],[-118.225388,46.589344],[-118.324112,46.602183],[-118.394398,46.581766],[-118.457391,46.591653],[-118.492855,46.582101],[-118.617052,46.499999],[-118.615602,46.467928],[-118.635332,46.438818],[-118.638559,46.409448],[-118.691464,46.365266],[-118.734808,46.360597],[-118.771759,46.313847],[-118.76921,46.292344],[-118.80787,46.286797],[-118.86668,46.249355],[-118.98514,46.231188],[-119.014973,46.217928],[-119.033299,46.194292],[-119.119584,46.221834],[-119.218152,46.240885],[-119.261847,46.26903],[-119.268874,46.282202],[-119.253707,46.319568],[-119.271232,46.370147],[-119.262816,46.470673],[-119.268867,46.512291],[-119.376285,46.580631],[-119.407094,46.609902],[-119.4204,46.648198],[-119.448782,46.664208],[-119.453848,46.676041],[-119.373179,46.677923],[-119.371226,46.733931],[-118.227457,46.736087],[-118.243068,46.720809],[-118.215256,46.684821],[-118.214508,46.644468],[-118.200789,46.617532],[-118.214088,46.585777]]]},"id":53021},
{"type":"Feature","properties":{"name":"Benton"},"geometry":{"type":"Polygon","coordinates":[[[-118.982133,45.999058],[-119.032222,45.966275],[-119.140251,45.925709],[-119.178743,45.922352],[-119.302764,45.932663],[-119.379441,45.91761],[-119.438861,45.914269],[-119.51222,45.899201],[-119.589294,45.913315],[-119.622117,45.89941],[-119.678446,45.852539],[-119.833556,45.841609],[-119.869736,45.831699],[-119.868807,46.037735],[-119.865695,46.208656],[-119.874912,46.208919],[-119.874824,46.555473],[-119.882126,46.556236],[-119.883173,46.625476],[-119.793905,46.62595],[-119.703615,46.649782],[-119.650359,46.641649],[-119.625387,46.6458],[-119.513154,46.72131],[-119.469466,46.704205],[-119.453848,46.676041],[-119.448782,46.664208],[-119.4204,46.648198],[-119.407094,46.609902],[-119.376285,46.580631],[-119.268867,46.512291],[-119.262816,46.470673],[-119.271232,46.370147],[-119.253707,46.319568],[-119.268874,46.282202],[-119.261847,46.26903],[-119.218152,46.240885],[-119.119584,46.221834],[-119.033299,46.194292],[-119.020267,46.176164],[-118.998271,46.165498],[-118.936797,46.083951],[-118.947661,46.029771],[-118.982133,45.999058]]]},"id":53005},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-102.003386,46.052848],[-102.003372,46.205803],[-102.004365,46.281861],[-102.054309,46.283501],[-102.055942,46.631445],[-102.099568,46.632056],[-102.100989,46.720607],[-101.721084,46.714814],[-101.719907,46.634062],[-101.305491,46.627445],[-101.304022,46.37247],[-101.049904,46.368129],[-101.051169,46.280617],[-101.095831,46.267369],[-101.117742,46.247674],[-101.114339,46.220109],[-101.194501,46.189714],[-101.200932,46.146326],[-101.222447,46.149977],[-101.23016,46.13822],[-101.303365,46.130073],[-101.304074,46.112678],[-101.344731,46.080509],[-101.405972,46.07436],[-101.423611,46.059124],[-101.445409,46.054958],[-101.479497,46.055138],[-101.496862,46.046753],[-101.502873,46.026261],[-101.544027,46.029755],[-101.537839,46.020032],[-101.557836,46.010777],[-101.584166,46.025441],[-101.606169,46.01484],[-101.632957,46.035455],[-101.657218,46.016649],[-101.682197,46.01433],[-101.737038,46.039065],[-101.756257,46.032969],[-101.762575,46.039942],[-101.803936,46.03787],[-101.810818,46.027906],[-101.845991,46.034417],[-101.861205,46.070832],[-101.896073,46.067257],[-101.901605,46.058182],[-101.94926,46.064861],[-101.972584,46.05239],[-102.003386,46.052848]]]},"id":38037},
{"type":"Feature","properties":{"name":"Otter Tail"},"geometry":{"type":"Polygon","coordinates":[[[-96.282324,46.628774],[-96.177142,46.630727],[-96.176493,46.715805],[-95.165527,46.71631],[-95.159379,46.367558],[-95.146792,46.104722],[-95.763372,46.106162],[-96.266866,46.104975],[-96.26515,46.281355],[-96.279158,46.282953],[-96.282324,46.628774]]]},"id":27111},
{"type":"Feature","properties":{"name":"Garfield"},"geometry":{"type":"Polygon","coordinates":[[[-117.481663,45.999835],[-117.602826,46.000268],[-117.613135,46.337255],[-117.673709,46.338799],[-117.676777,46.380937],[-117.698514,46.381287],[-117.69869,46.397324],[-117.715827,46.398152],[-117.718925,46.440751],[-117.739366,46.441105],[-117.741007,46.469968],[-117.863065,46.47246],[-117.854385,46.617385],[-117.818058,46.619896],[-117.787134,46.632458],[-117.759209,46.676642],[-117.721075,46.698406],[-117.660822,46.695954],[-117.614225,46.667279],[-117.575259,46.674329],[-117.513716,46.672282],[-117.49204,46.693916],[-117.471516,46.692154],[-117.445513,46.663349],[-117.417008,46.654266],[-117.398909,46.614886],[-117.336572,46.574703],[-117.291601,46.563347],[-117.256496,46.537285],[-117.239893,46.512104],[-117.241731,46.473598],[-117.229805,46.45758],[-117.229659,46.414504],[-117.357482,46.410561],[-117.358733,46.399101],[-117.401552,46.398067],[-117.402788,46.383857],[-117.423198,46.38288],[-117.42022,46.120894],[-117.481877,46.119317],[-117.481663,45.999835]]]},"id":53023},
{"type":"Feature","properties":{"name":"Fallon"},"geometry":{"type":"Polygon","coordinates":[[[-104.048906,45.942994],[-104.049517,45.883053],[-104.138425,45.882992],[-104.140569,45.969933],[-104.397826,45.972167],[-104.398962,46.052269],[-104.529384,46.05228],[-104.531359,46.135594],[-104.887064,46.137864],[-104.884127,46.311469],[-104.91244,46.312655],[-104.909526,46.483598],[-104.735996,46.481435],[-104.736156,46.613922],[-104.73663,46.656105],[-104.606329,46.656285],[-104.606619,46.687932],[-104.427953,46.688147],[-104.427854,46.67209],[-104.357722,46.671378],[-104.356234,46.641119],[-104.047437,46.642947],[-104.046706,46.54254],[-104.047836,46.280881],[-104.048906,45.942994]]]},"id":30025},
{"type":"Feature","properties":{"name":"Idaho"},"geometry":{"type":"Polygon","coordinates":[[[-114.691929,45.184936],[-115.96844,45.187972],[-115.976535,45.209048],[-116.049099,45.157509],[-116.120396,45.145204],[-116.134869,45.125658],[-116.137112,45.102384],[-116.30571,45.106556],[-116.291908,45.128403],[-116.314461,45.198394],[-116.29679,45.217033],[-116.331308,45.260603],[-116.688813,45.262351],[-116.672265,45.33541],[-116.565772,45.459864],[-116.554503,45.493647],[-116.478551,45.566058],[-116.470419,45.606257],[-116.514915,45.664491],[-116.528275,45.710728],[-116.560632,45.747425],[-116.654398,45.78063],[-116.70318,45.819169],[-116.773707,45.819764],[-116.791262,45.845867],[-116.752649,45.863644],[-116.735567,45.886948],[-116.744485,45.946449],[-116.695855,45.991657],[-116.652673,45.985603],[-116.638894,45.991062],[-116.63939,46.020351],[-116.622957,46.030377],[-116.579752,46.024757],[-116.539317,45.99945],[-116.526202,46.001697],[-116.507045,46.024055],[-116.506388,46.112865],[-116.47484,46.119618],[-116.452028,46.181804],[-116.407945,46.190777],[-116.376519,46.181023],[-116.338433,46.180841],[-116.30642,46.165575],[-116.274849,46.170447],[-116.188415,46.151645],[-116.173217,46.159794],[-116.145117,46.200835],[-116.088613,46.201386],[-116.009526,46.219157],[-116.006825,46.223716],[-116.11189,46.278491],[-116.171284,46.366373],[-116.12798,46.354651],[-116.068752,46.352882],[-115.999119,46.299243],[-115.968983,46.291236],[-115.888195,46.284188],[-115.81818,46.263899],[-115.787242,46.265918],[-115.765888,46.282677],[-115.737949,46.333735],[-115.734005,46.367606],[-115.660632,46.413648],[-115.635196,46.464729],[-114.636354,46.618023],[-114.610826,46.629048],[-114.540391,46.637891],[-114.484718,46.623575],[-114.441536,46.645716],[-114.384018,46.661597],[-114.334685,46.654227],[-114.324712,46.62284],[-114.34332,46.587882],[-114.350115,46.51739],[-114.360468,46.506125],[-114.410715,46.487372],[-114.384025,46.428179],[-114.397017,46.399546],[-114.409796,46.392912],[-114.431796,46.284711],[-114.473795,46.252961],[-114.472834,46.243783],[-114.439553,46.220254],[-114.440879,46.168969],[-114.467018,46.155263],[-114.509614,46.157418],[-114.518944,46.136063],[-114.506569,46.116143],[-114.47737,46.107357],[-114.45603,46.08223],[-114.465757,46.050816],[-114.494321,46.023411],[-114.47453,46.009765],[-114.484455,45.989807],[-114.412447,45.971973],[-114.405291,45.953979],[-114.429461,45.921477],[-114.41353,45.910651],[-114.392838,45.870887],[-114.407525,45.846453],[-114.443232,45.852621],[-114.473803,45.839468],[-114.499164,45.842684],[-114.517376,45.810068],[-114.563542,45.762399],[-114.541958,45.745999],[-114.534977,45.722997],[-114.497561,45.694401],[-114.510707,45.674058],[-114.501742,45.652394],[-114.564678,45.624271],[-114.540958,45.596397],[-114.560924,45.54874],[-114.589161,45.523643],[-114.631162,45.51295],[-114.662169,45.463199],[-114.678389,45.463935],[-114.764254,45.500133],[-114.781931,45.496306],[-114.792331,45.476821],[-114.798945,45.433959],[-114.763589,45.422862],[-114.74382,45.392821],[-114.709739,45.383559],[-114.642132,45.312923],[-114.599719,45.284297],[-114.67239,45.225719],[-114.691929,45.184936]]]},"id":16049},
{"type":"Feature","properties":{"name":"Ravalli"},"geometry":{"type":"Polygon","coordinates":[[[-114.560924,45.54874],[-114.540958,45.596397],[-114.564678,45.624271],[-114.501742,45.652394],[-114.510707,45.674058],[-114.497561,45.694401],[-114.534977,45.722997],[-114.541958,45.745999],[-114.563542,45.762399],[-114.517376,45.810068],[-114.499164,45.842684],[-114.473803,45.839468],[-114.443232,45.852621],[-114.407525,45.846453],[-114.392838,45.870887],[-114.41353,45.910651],[-114.429461,45.921477],[-114.405291,45.953979],[-114.412447,45.971973],[-114.484455,45.989807],[-114.47453,46.009765],[-114.494321,46.023411],[-114.465757,46.050816],[-114.45603,46.08223],[-114.47737,46.107357],[-114.506569,46.116143],[-114.518944,46.136063],[-114.509614,46.157418],[-114.467018,46.155263],[-114.440879,46.168969],[-114.439553,46.220254],[-114.472834,46.243783],[-114.473795,46.252961],[-114.431796,46.284711],[-114.409796,46.392912],[-114.397017,46.399546],[-114.384025,46.428179],[-114.410715,46.487372],[-114.360468,46.506125],[-114.350115,46.51739],[-114.34332,46.587882],[-114.324712,46.62284],[-114.334685,46.654227],[-113.817941,46.653749],[-113.808694,46.626008],[-113.816345,46.590863],[-113.83017,46.578339],[-113.84642,46.514957],[-113.868484,46.495284],[-113.847745,46.445739],[-113.856152,46.421637],[-113.824183,46.400721],[-113.792488,46.361014],[-113.77847,46.310717],[-113.78281,46.27553],[-113.75532,46.259295],[-113.782877,46.220076],[-113.812845,46.212076],[-113.82464,46.199064],[-113.82541,46.183043],[-113.787315,46.169325],[-113.792312,46.147448],[-113.759694,46.102697],[-113.77615,46.074686],[-113.79369,46.064566],[-113.803005,46.034559],[-113.788326,46.026426],[-113.754962,46.038458],[-113.696251,46.032461],[-113.666037,46.007452],[-113.658902,45.966975],[-113.619068,45.964617],[-113.609324,45.950179],[-113.563462,45.938037],[-113.537582,45.944709],[-113.524184,45.937953],[-113.539016,45.91727],[-113.533339,45.875457],[-113.578232,45.867442],[-113.596101,45.850493],[-113.638232,45.831858],[-113.6937,45.833681],[-113.730193,45.82266],[-113.756202,45.798574],[-113.786224,45.785554],[-113.795166,45.749151],[-113.810448,45.743566],[-113.845193,45.740262],[-113.857675,45.766179],[-113.892382,45.750046],[-113.895044,45.69291],[-113.926699,45.671211],[-113.964145,45.679378],[-113.971149,45.697376],[-114.009472,45.686332],[-114.019879,45.672378],[-114.01099,45.652511],[-114.018032,45.640773],[-114.056516,45.625144],[-114.082967,45.586379],[-114.118139,45.571127],[-114.132048,45.550383],[-114.172668,45.543924],[-114.194809,45.527917],[-114.241998,45.535291],[-114.24788,45.502946],[-114.262239,45.48586],[-114.326435,45.457425],[-114.350247,45.463383],[-114.371457,45.485741],[-114.419051,45.499008],[-114.433555,45.527634],[-114.462708,45.547848],[-114.496591,45.54665],[-114.527392,45.558193],[-114.560924,45.54874]]]},"id":30081},
{"type":"Feature","properties":{"name":"Ashland"},"geometry":{"type":"Polygon","coordinates":[[[-90.92591,46.156169],[-90.935131,46.278825],[-90.926244,46.585503],[-90.730714,46.645696],[-90.540877,46.587527],[-90.543935,46.244817],[-90.420955,46.240204],[-90.419799,46.157322],[-90.307515,46.154368],[-90.302174,45.984557],[-90.677239,45.979084],[-90.922125,45.980409],[-90.92591,46.156169]]]},"id":55003},
{"type":"Feature","properties":{"name":"Logan"},"geometry":{"type":"Polygon","coordinates":[[[-99.04408,46.283383],[-99.878944,46.283215],[-99.919051,46.283964],[-99.915828,46.634791],[-99.451719,46.637136],[-99.03877,46.63519],[-99.04408,46.283383]]]},"id":38047},
{"type":"Feature","properties":{"name":"Emmons"},"geometry":{"type":"Polygon","coordinates":[[[-99.875783,45.943547],[-100.514407,45.940388],[-100.51359,45.955933],[-100.534036,45.990807],[-100.585244,46.026909],[-100.604211,46.05349],[-100.62841,46.11914],[-100.616386,46.174739],[-100.56171,46.240732],[-100.584736,46.278894],[-100.551684,46.332155],[-100.554667,46.363405],[-100.594676,46.430891],[-100.599193,46.471357],[-100.562639,46.526857],[-100.578455,46.565786],[-100.563051,46.582376],[-100.57889,46.595617],[-100.623867,46.608206],[-100.649601,46.635446],[-100.08849,46.635702],[-99.915828,46.634791],[-99.919051,46.283964],[-99.878944,46.283215],[-99.875783,45.943547]]]},"id":38029},
{"type":"Feature","properties":{"name":"LaMoure"},"geometry":{"type":"Polygon","coordinates":[[[-99.009206,46.283028],[-99.04408,46.283383],[-99.03877,46.63519],[-98.439762,46.631919],[-98.036648,46.629179],[-98.04289,46.282292],[-99.009206,46.283028]]]},"id":38045},
{"type":"Feature","properties":{"name":"Slope"},"geometry":{"type":"Polygon","coordinates":[[[-102.925268,46.277115],[-102.993675,46.276265],[-104.047836,46.280881],[-104.046706,46.54254],[-103.798459,46.537814],[-103.797512,46.630882],[-103.607098,46.631844],[-103.230229,46.632076],[-102.926787,46.630033],[-102.925268,46.277115]]]},"id":38087},
{"type":"Feature","properties":{"name":"Hettinger"},"geometry":{"type":"Polygon","coordinates":[[[-102.003372,46.205803],[-102.49347,46.207065],[-102.493143,46.278976],[-102.925268,46.277115],[-102.926787,46.630033],[-102.099568,46.632056],[-102.055942,46.631445],[-102.054309,46.283501],[-102.004365,46.281861],[-102.003372,46.205803]]]},"id":38041},
{"type":"Feature","properties":{"name":"Ransom"},"geometry":{"type":"Polygon","coordinates":[[[-97.282976,46.28183],[-98.01003,46.281312],[-98.04289,46.282292],[-98.036648,46.629179],[-97.684056,46.630817],[-97.283717,46.631509],[-97.282976,46.28183]]]},"id":38073},
{"type":"Feature","properties":{"name":"Richland"},"geometry":{"type":"Polygon","coordinates":[[[-97.23331,45.936503],[-97.23682,45.998614],[-97.258145,46.001975],[-97.260065,46.280239],[-97.282976,46.28183],[-97.283717,46.631509],[-96.790246,46.629773],[-96.784318,46.624112],[-96.771042,46.599984],[-96.751228,46.588619],[-96.740316,46.489433],[-96.714894,46.468718],[-96.709683,46.427168],[-96.688228,46.412218],[-96.652102,46.359434],[-96.614861,46.350812],[-96.602074,46.336324],[-96.598183,46.238683],[-96.586456,46.215413],[-96.58789,46.191918],[-96.571166,46.177175],[-96.551931,46.095529],[-96.576215,46.02128],[-96.561802,45.947683],[-96.566922,45.93411],[-97.23331,45.936503]]]},"id":38077},
{"type":"Feature","properties":{"name":"Wilkin"},"geometry":{"type":"Polygon","coordinates":[[[-96.576215,46.02128],[-96.551931,46.095529],[-96.571166,46.177175],[-96.58789,46.191918],[-96.586456,46.215413],[-96.598183,46.238683],[-96.602074,46.336324],[-96.614861,46.350812],[-96.652102,46.359434],[-96.688228,46.412218],[-96.709683,46.427168],[-96.714894,46.468718],[-96.740316,46.489433],[-96.751228,46.588619],[-96.771042,46.599984],[-96.784318,46.624112],[-96.282324,46.628774],[-96.279158,46.282953],[-96.26515,46.281355],[-96.266866,46.104975],[-96.267529,46.021418],[-96.576215,46.02128]]]},"id":27167},
{"type":"Feature","properties":{"name":"Nez Perce"},"geometry":{"type":"Polygon","coordinates":[[[-116.371841,46.465967],[-116.413453,46.458355],[-116.391998,46.425266],[-116.361839,46.409549],[-116.367721,46.344967],[-116.467127,46.344935],[-116.486963,46.334012],[-116.492991,46.319832],[-116.710133,46.320923],[-116.71487,46.292072],[-116.675623,46.246638],[-116.694788,46.224695],[-116.695855,45.991657],[-116.744485,45.946449],[-116.735567,45.886948],[-116.752649,45.863644],[-116.791262,45.845867],[-116.856472,45.903597],[-116.898197,45.980516],[-116.919132,45.995175],[-116.957723,46.065688],[-116.987212,46.078509],[-116.961638,46.097274],[-116.929426,46.165483],[-116.967491,46.197554],[-116.972725,46.249309],[-117.001642,46.302449],[-117.027974,46.335427],[-117.064185,46.348698],[-117.044471,46.388574],[-117.038559,46.427981],[-117.041926,46.536602],[-116.708543,46.533556],[-116.694505,46.571574],[-116.623552,46.619542],[-116.462905,46.621758],[-116.456034,46.493371],[-116.373565,46.493018],[-116.371841,46.465967]]]},"id":16069},
{"type":"Feature","properties":{"name":"Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-117.602826,46.000268],[-117.982677,45.999881],[-117.992528,46.001639],[-117.989649,46.204486],[-118.1165,46.207633],[-118.116608,46.292369],[-118.239003,46.294063],[-118.238725,46.560336],[-118.225525,46.560916],[-118.225388,46.589344],[-118.214088,46.585777],[-118.166522,46.549049],[-118.11965,46.5499],[-118.086277,46.56851],[-118.022406,46.581839],[-117.89957,46.585912],[-117.854385,46.617385],[-117.863065,46.47246],[-117.741007,46.469968],[-117.739366,46.441105],[-117.718925,46.440751],[-117.715827,46.398152],[-117.69869,46.397324],[-117.698514,46.381287],[-117.676777,46.380937],[-117.673709,46.338799],[-117.613135,46.337255],[-117.602826,46.000268]]]},"id":53013},
{"type":"Feature","properties":{"name":"Walla Walla"},"geometry":{"type":"Polygon","coordinates":[[[-117.992528,46.001639],[-118.982133,45.999058],[-118.947661,46.029771],[-118.936797,46.083951],[-118.998271,46.165498],[-119.020267,46.176164],[-119.033299,46.194292],[-119.014973,46.217928],[-118.98514,46.231188],[-118.86668,46.249355],[-118.80787,46.286797],[-118.76921,46.292344],[-118.771759,46.313847],[-118.734808,46.360597],[-118.691464,46.365266],[-118.638559,46.409448],[-118.635332,46.438818],[-118.615602,46.467928],[-118.617052,46.499999],[-118.492855,46.582101],[-118.457391,46.591653],[-118.394398,46.581766],[-118.324112,46.602183],[-118.225388,46.589344],[-118.225525,46.560916],[-118.238725,46.560336],[-118.239003,46.294063],[-118.116608,46.292369],[-118.1165,46.207633],[-117.989649,46.204486],[-117.992528,46.001639]]]},"id":53071},
{"type":"Feature","properties":{"name":"Iron"},"geometry":{"type":"Polygon","coordinates":[[[-90.4082,46.568611],[-90.385525,46.539658],[-90.313708,46.551563],[-90.302394,46.544296],[-90.300181,46.525052],[-90.269785,46.522481],[-90.258402,46.50879],[-90.211526,46.506295],[-90.161391,46.44238],[-90.141797,46.393899],[-90.115177,46.365156],[-90.111659,46.340429],[-89.925136,46.304026],[-89.924388,45.9826],[-90.038298,45.982199],[-90.302174,45.984557],[-90.307515,46.154368],[-90.419799,46.157322],[-90.420955,46.240204],[-90.543935,46.244817],[-90.540877,46.587527],[-90.4082,46.568611]]]},"id":55051},
{"type":"Feature","properties":{"name":"Somerset"},"geometry":{"type":"Polygon","coordinates":[[[-70.55227,45.660664],[-70.396383,45.722046],[-70.416214,45.790309],[-70.253964,45.899005],[-70.247465,45.94462],[-70.310295,45.968782],[-70.280023,46.053154],[-70.30485,46.066658],[-70.229325,46.137434],[-70.283497,46.190249],[-70.191058,46.33484],[-70.046608,46.426116],[-70.014145,46.570598],[-69.717211,46.571715],[-69.728936,45.97282],[-69.683457,45.976879],[-69.649565,45.864035],[-69.675269,45.851115],[-69.705276,45.882753],[-69.720642,45.877745],[-69.702941,45.837802],[-69.719375,45.826411],[-69.708632,45.8105],[-69.730483,45.775478],[-69.726561,45.755207],[-69.765075,45.755501],[-69.778228,45.774685],[-69.79393,45.753655],[-69.791389,45.742131],[-69.811966,45.736817],[-69.794471,45.724374],[-69.778457,45.688627],[-69.735678,45.674009],[-69.739424,45.656279],[-69.69724,45.653108],[-69.698599,45.642168],[-69.710569,45.63843],[-69.695753,45.61553],[-69.711088,45.610072],[-69.708417,45.580695],[-69.777564,45.538029],[-69.697543,45.294893],[-69.706775,45.292444],[-69.649056,45.102682],[-69.641251,45.103341],[-69.607055,45.013103],[-69.489605,45.030688],[-69.493786,45.055052],[-69.352267,45.073086],[-69.272747,44.806622],[-69.282741,44.801945],[-69.265735,44.723231],[-69.324054,44.717058],[-69.344669,44.753861],[-69.382763,44.751988],[-69.395557,44.743748],[-69.402842,44.702885],[-69.462473,44.695789],[-69.478976,44.718273],[-69.625523,44.699851],[-69.61584,44.66072],[-69.576715,44.630207],[-69.578943,44.60608],[-69.602502,44.579461],[-69.778692,44.604778],[-69.798445,44.576187],[-69.816764,44.580867],[-69.823318,44.609836],[-69.852181,44.620776],[-69.921611,44.608763],[-69.941518,44.64087],[-69.973822,44.659195],[-69.958471,44.668774],[-69.960356,44.680245],[-69.996605,44.675857],[-70.016169,44.758177],[-70.003107,44.761442],[-70.019198,44.815812],[-70.02962,44.813836],[-70.031756,44.83217],[-70.023936,44.833764],[-70.031726,44.865513],[-70.129597,44.855583],[-70.136685,44.900551],[-70.14768,44.899952],[-70.151678,44.920169],[-70.142019,44.919891],[-70.144552,44.94326],[-70.107472,44.948585],[-70.155348,45.126798],[-70.290054,45.112302],[-70.308502,45.16491],[-70.363106,45.160455],[-70.360321,45.152154],[-70.417641,45.145013],[-70.524777,45.512651],[-70.510411,45.513655],[-70.55227,45.660664]]]},"id":23025},
{"type":"Feature","properties":{"name":"Piscataquis"},"geometry":{"type":"Polygon","coordinates":[[[-69.717211,46.571715],[-68.819843,46.570536],[-68.820216,46.397503],[-68.825992,45.68442],[-68.952209,45.663996],[-68.96626,45.512527],[-68.858462,45.525856],[-68.775042,45.243962],[-68.872778,45.229425],[-68.853262,45.145895],[-69.352267,45.073086],[-69.493786,45.055052],[-69.489605,45.030688],[-69.607055,45.013103],[-69.641251,45.103341],[-69.649056,45.102682],[-69.706775,45.292444],[-69.697543,45.294893],[-69.777564,45.538029],[-69.708417,45.580695],[-69.711088,45.610072],[-69.695753,45.61553],[-69.710569,45.63843],[-69.698599,45.642168],[-69.69724,45.653108],[-69.739424,45.656279],[-69.735678,45.674009],[-69.778457,45.688627],[-69.794471,45.724374],[-69.811966,45.736817],[-69.791389,45.742131],[-69.79393,45.753655],[-69.778228,45.774685],[-69.765075,45.755501],[-69.726561,45.755207],[-69.730483,45.775478],[-69.708632,45.8105],[-69.719375,45.826411],[-69.702941,45.837802],[-69.720642,45.877745],[-69.705276,45.882753],[-69.675269,45.851115],[-69.649565,45.864035],[-69.683457,45.976879],[-69.728936,45.97282],[-69.717211,46.571715]]]},"id":23021},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-111.790838,45.797081],[-111.822638,45.811772],[-111.871293,45.81683],[-111.906321,45.829143],[-111.921298,45.847118],[-111.952412,45.851024],[-111.961827,45.839008],[-112.068407,45.839717],[-112.108661,45.82606],[-112.109073,45.802714],[-112.131862,45.786132],[-112.142238,45.760398],[-112.165921,45.740176],[-112.177716,45.739684],[-112.30985,45.792407],[-112.403173,45.813472],[-112.43972,45.83348],[-112.408369,45.861277],[-112.400603,45.888499],[-112.431512,45.933978],[-112.426202,45.963584],[-112.443729,46.02328],[-112.468809,46.040157],[-112.462416,46.066524],[-112.469733,46.093807],[-112.490082,46.103653],[-112.511744,46.132786],[-112.513049,46.18142],[-112.534779,46.171135],[-112.57791,46.174835],[-112.577895,46.204628],[-112.592995,46.224831],[-112.568855,46.241474],[-112.56076,46.264138],[-112.569053,46.297421],[-112.534727,46.327947],[-112.512715,46.32218],[-112.495754,46.339048],[-112.460603,46.323206],[-112.408484,46.381091],[-112.381077,46.376956],[-112.360301,46.381755],[-112.319451,46.418441],[-112.229441,46.422206],[-112.200555,46.44735],[-112.1687,46.458615],[-112.199151,46.475754],[-112.196229,46.497678],[-112.137655,46.51259],[-112.099597,46.508931],[-112.053543,46.523798],[-112.027319,46.538454],[-112.026641,46.565055],[-111.795792,46.565959],[-111.785788,46.05035],[-111.6586,46.04794],[-111.659736,45.841736],[-111.703867,45.798383],[-111.731036,45.795464],[-111.76334,45.802788],[-111.790838,45.797081]]]},"id":30043},
{"type":"Feature","properties":{"name":"Yellowstone"},"geometry":{"type":"Polygon","coordinates":[[[-108.847015,45.61876],[-108.847862,45.639329],[-108.858956,45.63939],[-108.860703,45.654435],[-108.874467,45.655312],[-108.874948,45.670865],[-108.892619,45.671601],[-108.893214,45.688523],[-108.903659,45.688602],[-108.902381,45.963958],[-108.925324,45.964046],[-108.92473,46.132747],[-108.786775,46.133088],[-108.403746,46.132735],[-108.401998,46.235018],[-108.367137,46.235225],[-108.365603,46.251777],[-108.32351,46.252205],[-108.322854,46.262311],[-108.033494,46.265687],[-108.0328,46.308343],[-108.014397,46.308885],[-108.013268,46.333681],[-107.994796,46.333304],[-107.994369,46.347995],[-107.968084,46.349216],[-107.967649,46.363907],[-107.947941,46.364937],[-107.946705,46.377354],[-107.929592,46.377847],[-107.929287,46.394826],[-107.779567,46.39401],[-107.780203,46.497182],[-107.751164,46.497526],[-107.750385,46.483785],[-107.738467,46.483198],[-107.738902,46.467588],[-107.721666,46.466226],[-107.723412,46.438658],[-107.696296,46.437563],[-107.698004,46.409083],[-107.672932,46.408839],[-107.672016,46.392359],[-107.657451,46.391371],[-107.65687,46.368922],[-107.638345,46.367583],[-107.63794,46.348334],[-107.615477,46.347099],[-107.616003,46.308578],[-107.587558,46.306118],[-107.586207,46.293316],[-107.570406,46.293274],[-107.570214,46.26532],[-107.555,46.263882],[-107.554893,46.249676],[-107.531148,46.248463],[-107.532186,46.218644],[-107.51247,46.218698],[-107.512592,46.196237],[-107.492823,46.195371],[-107.491984,46.179353],[-107.46634,46.17909],[-107.477678,46.157267],[-107.471329,46.136355],[-107.490716,46.130358],[-107.482789,46.104449],[-107.512216,46.065211],[-107.513498,46.039984],[-107.677404,46.039311],[-107.679395,45.98063],[-107.794761,45.98158],[-107.797096,45.953571],[-107.839001,45.953305],[-107.840764,45.92715],[-107.881997,45.926892],[-107.883418,45.895248],[-108.050987,45.895838],[-108.054173,45.776227],[-108.073789,45.776554],[-108.074397,45.519779],[-108.18965,45.520831],[-108.190832,45.487849],[-108.309808,45.486849],[-108.310021,45.459848],[-108.644223,45.468434],[-108.694899,45.467598],[-108.69677,45.521992],[-108.759341,45.523005],[-108.760547,45.549048],[-108.802251,45.549406],[-108.787489,45.634158],[-108.847015,45.61876]]]},"id":30111},
{"type":"Feature","properties":{"name":"Treasure"},"geometry":{"type":"Polygon","coordinates":[[[-107.513498,46.039984],[-107.512216,46.065211],[-107.482789,46.104449],[-107.490716,46.130358],[-107.471329,46.136355],[-107.477678,46.157267],[-107.46634,46.17909],[-107.491984,46.179353],[-107.492823,46.195371],[-107.512592,46.196237],[-107.51247,46.218698],[-107.532186,46.218644],[-107.531148,46.248463],[-107.554893,46.249676],[-107.555,46.263882],[-107.570214,46.26532],[-107.570406,46.293274],[-107.586207,46.293316],[-107.587558,46.306118],[-107.616003,46.308578],[-107.615477,46.347099],[-107.63794,46.348334],[-107.638345,46.367583],[-107.65687,46.368922],[-107.657451,46.391371],[-107.672016,46.392359],[-107.672932,46.408839],[-107.698004,46.409083],[-107.696296,46.437563],[-107.723412,46.438658],[-107.721666,46.466226],[-107.738902,46.467588],[-107.738467,46.483198],[-107.178097,46.484531],[-107.178531,46.466178],[-107.154055,46.464912],[-107.152839,46.397995],[-107.026818,46.395349],[-107.024397,46.313806],[-107.007008,46.307779],[-107.004999,46.133245],[-106.938635,46.131945],[-106.942285,45.874059],[-107.061372,45.875545],[-107.059961,45.915863],[-107.177843,45.917731],[-107.177148,45.958042],[-107.420782,45.958533],[-107.420392,46.040065],[-107.513498,46.039984]]]},"id":30103},
{"type":"Feature","properties":{"name":"Lewis"},"geometry":{"type":"Polygon","coordinates":[[[-116.695855,45.991657],[-116.694788,46.224695],[-116.675623,46.246638],[-116.71487,46.292072],[-116.710133,46.320923],[-116.492991,46.319832],[-116.486963,46.334012],[-116.467127,46.344935],[-116.367721,46.344967],[-116.361839,46.409549],[-116.391998,46.425266],[-116.413453,46.458355],[-116.371841,46.465967],[-116.325278,46.440535],[-116.310461,46.407468],[-116.190564,46.404975],[-116.171284,46.366373],[-116.11189,46.278491],[-116.006825,46.223716],[-116.009526,46.219157],[-116.088613,46.201386],[-116.145117,46.200835],[-116.173217,46.159794],[-116.188415,46.151645],[-116.274849,46.170447],[-116.30642,46.165575],[-116.338433,46.180841],[-116.376519,46.181023],[-116.407945,46.190777],[-116.452028,46.181804],[-116.47484,46.119618],[-116.506388,46.112865],[-116.507045,46.024055],[-116.526202,46.001697],[-116.539317,45.99945],[-116.579752,46.024757],[-116.622957,46.030377],[-116.63939,46.020351],[-116.638894,45.991062],[-116.652673,45.985603],[-116.695855,45.991657]]]},"id":16061},
{"type":"Feature","properties":{"name":"Asotin"},"geometry":{"type":"Polygon","coordinates":[[[-116.919132,45.995175],[-117.481663,45.999835],[-117.481877,46.119317],[-117.42022,46.120894],[-117.423198,46.38288],[-117.402788,46.383857],[-117.401552,46.398067],[-117.358733,46.399101],[-117.357482,46.410561],[-117.229659,46.414504],[-117.229805,46.45758],[-117.218574,46.44981],[-117.209899,46.418201],[-117.155873,46.425144],[-117.10512,46.418782],[-117.038559,46.427981],[-117.044471,46.388574],[-117.064185,46.348698],[-117.027974,46.335427],[-117.001642,46.302449],[-116.972725,46.249309],[-116.967491,46.197554],[-116.929426,46.165483],[-116.961638,46.097274],[-116.987212,46.078509],[-116.957723,46.065688],[-116.919132,45.995175]]]},"id":53003},
{"type":"Feature","properties":{"name":"Sioux"},"geometry":{"type":"Polygon","coordinates":[[[-100.514407,45.940388],[-102.002775,45.942505],[-102.003386,46.052848],[-101.972584,46.05239],[-101.94926,46.064861],[-101.901605,46.058182],[-101.896073,46.067257],[-101.861205,46.070832],[-101.845991,46.034417],[-101.810818,46.027906],[-101.803936,46.03787],[-101.762575,46.039942],[-101.756257,46.032969],[-101.737038,46.039065],[-101.682197,46.01433],[-101.657218,46.016649],[-101.632957,46.035455],[-101.606169,46.01484],[-101.584166,46.025441],[-101.557836,46.010777],[-101.537839,46.020032],[-101.544027,46.029755],[-101.502873,46.026261],[-101.496862,46.046753],[-101.479497,46.055138],[-101.445409,46.054958],[-101.423611,46.059124],[-101.405972,46.07436],[-101.344731,46.080509],[-101.304074,46.112678],[-101.303365,46.130073],[-101.23016,46.13822],[-101.222447,46.149977],[-101.200932,46.146326],[-101.194501,46.189714],[-101.114339,46.220109],[-101.117742,46.247674],[-101.095831,46.267369],[-101.051169,46.280617],[-101.026724,46.282837],[-101.005522,46.300704],[-101.01776,46.32114],[-100.975951,46.328467],[-100.947058,46.35533],[-100.933874,46.383909],[-100.903982,46.402948],[-100.863667,46.405236],[-100.856175,46.396355],[-100.821498,46.390968],[-100.74434,46.405192],[-100.72429,46.384082],[-100.683326,46.41244],[-100.639745,46.413664],[-100.621846,46.428354],[-100.594676,46.430891],[-100.554667,46.363405],[-100.551684,46.332155],[-100.584736,46.278894],[-100.56171,46.240732],[-100.616386,46.174739],[-100.62841,46.11914],[-100.604211,46.05349],[-100.585244,46.026909],[-100.534036,45.990807],[-100.51359,45.955933],[-100.514407,45.940388]]]},"id":38085},
{"type":"Feature","properties":{"name":"Pine"},"geometry":{"type":"Polygon","coordinates":[[[-93.137265,45.733611],[-93.133759,45.980481],[-93.051952,45.982181],[-93.052165,46.157625],[-93.052299,46.417522],[-92.288685,46.415984],[-92.288944,46.156601],[-92.28937,46.073231],[-92.327373,46.056878],[-92.346225,46.022596],[-92.364963,46.016249],[-92.424999,46.025504],[-92.462346,45.981198],[-92.523977,45.982583],[-92.552672,45.951269],[-92.666208,45.915703],[-92.706241,45.890958],[-92.734098,45.844981],[-92.748762,45.837302],[-92.779107,45.76334],[-92.833636,45.73089],[-93.137265,45.733611]]]},"id":27115},
{"type":"Feature","properties":{"name":"Penobscot"},"geometry":{"type":"Polygon","coordinates":[[[-69.352267,45.073086],[-68.853262,45.145895],[-68.872778,45.229425],[-68.775042,45.243962],[-68.858462,45.525856],[-68.96626,45.512527],[-68.952209,45.663996],[-68.825992,45.68442],[-68.820216,46.397503],[-68.694253,46.396794],[-68.693894,46.384847],[-68.436251,46.381015],[-68.43874,46.093009],[-68.422491,45.771011],[-68.431913,45.759945],[-68.434163,45.584597],[-68.407833,45.572063],[-68.257277,45.594607],[-68.25775,45.604246],[-68.044267,45.635781],[-67.937402,45.26834],[-68.050137,45.255971],[-68.300564,45.225625],[-68.275356,45.103314],[-68.394539,45.086837],[-68.376305,44.995524],[-68.499699,44.980058],[-68.44511,44.765235],[-68.60531,44.742996],[-68.649446,44.705933],[-68.684284,44.721027],[-68.718106,44.699982],[-68.743962,44.66536],[-68.766362,44.666699],[-68.765615,44.676262],[-68.796294,44.687058],[-68.824004,44.686306],[-68.831893,44.700775],[-68.862824,44.700138],[-68.891976,44.688922],[-68.897431,44.693241],[-69.180023,44.644345],[-69.208743,44.728511],[-69.265735,44.723231],[-69.282741,44.801945],[-69.272747,44.806622],[-69.352267,45.073086]]]},"id":23019},
{"type":"Feature","properties":{"name":"Skamania"},"geometry":{"type":"Polygon","coordinates":[[[-121.926821,45.642028],[-121.972659,45.635776],[-122.000012,45.617824],[-122.082038,45.590504],[-122.244922,45.548113],[-122.247781,46.056988],[-122.243193,46.380985],[-121.525174,46.383743],[-121.517154,46.044731],[-121.610164,46.042527],[-121.604778,45.77609],[-121.523036,45.775175],[-121.540606,45.754896],[-121.526918,45.745741],[-121.529055,45.719568],[-121.706417,45.688793],[-121.758694,45.689716],[-121.811041,45.700683],[-121.888283,45.676856],[-121.926821,45.642028]]]},"id":53059},
{"type":"Feature","properties":{"name":"Cowlitz"},"geometry":{"type":"Polygon","coordinates":[[[-122.247781,46.056988],[-122.294131,46.053818],[-122.309649,46.042668],[-122.337557,45.957227],[-122.366893,45.955156],[-122.483748,45.981198],[-122.511046,45.978257],[-122.622619,45.932888],[-122.715798,45.926705],[-122.749581,45.900525],[-122.722732,45.862699],[-122.749794,45.86522],[-122.784516,45.85045],[-122.784074,45.867886],[-122.806223,45.904072],[-122.807742,45.94389],[-122.875418,46.027183],[-122.899757,46.07933],[-122.974169,46.110483],[-123.050596,46.155736],[-123.118554,46.179311],[-123.176196,46.183586],[-123.212437,46.170006],[-123.219756,46.373936],[-122.243193,46.380985],[-122.247781,46.056988]]]},"id":53015},
{"type":"Feature","properties":{"name":"Wahkiakum"},"geometry":{"type":"Polygon","coordinates":[[[-123.304717,46.144738],[-123.470773,46.275024],[-123.620076,46.258665],[-123.725459,46.285424],[-123.723977,46.379409],[-123.359814,46.375286],[-123.219756,46.373936],[-123.212437,46.170006],[-123.248799,46.14402],[-123.304717,46.144738]]]},"id":53069},
{"type":"Feature","properties":{"name":"Todd"},"geometry":{"type":"Polygon","coordinates":[[[-94.650804,46.350078],[-94.641517,45.773704],[-95.136903,45.772326],[-95.141795,45.930235],[-95.149089,45.93131],[-95.146792,46.104722],[-95.159379,46.367558],[-94.733983,46.368017],[-94.70496,46.351233],[-94.683856,46.351118],[-94.670619,46.358965],[-94.650804,46.350078]]]},"id":27153},
{"type":"Feature","properties":{"name":"Morrison"},"geometry":{"type":"Polygon","coordinates":[[[-94.279724,45.777336],[-94.641517,45.773704],[-94.650804,46.350078],[-94.63128,46.344848],[-94.615914,46.325237],[-94.590942,46.326176],[-94.540396,46.302823],[-94.484242,46.309476],[-94.462932,46.324014],[-94.429796,46.330262],[-94.404762,46.321527],[-94.384567,46.297941],[-94.352041,46.294519],[-94.338941,46.277551],[-94.394226,46.223756],[-94.373542,46.184144],[-94.376838,46.15743],[-93.806718,46.152357],[-93.806801,45.981889],[-93.763425,45.980054],[-93.762905,45.818849],[-94.351429,45.819675],[-94.336497,45.803261],[-94.279724,45.777336]]]},"id":27097},
{"type":"Feature","properties":{"name":"McIntosh"},"geometry":{"type":"Polygon","coordinates":[[[-99.875783,45.943547],[-99.878944,46.283215],[-99.04408,46.283383],[-99.009206,46.283028],[-99.006833,45.939556],[-99.717346,45.942761],[-99.875783,45.943547]]]},"id":38051},
{"type":"Feature","properties":{"name":"Dickey"},"geometry":{"type":"Polygon","coordinates":[[[-98.730437,45.938271],[-99.006833,45.939556],[-99.009206,46.283028],[-98.04289,46.282292],[-98.01003,46.281312],[-98.01471,45.931498],[-98.730437,45.938271]]]},"id":38021},
{"type":"Feature","properties":{"name":"Sargent"},"geometry":{"type":"Polygon","coordinates":[[[-97.978722,45.930822],[-98.01471,45.931498],[-98.01003,46.281312],[-97.282976,46.28183],[-97.260065,46.280239],[-97.258145,46.001975],[-97.23682,45.998614],[-97.23331,45.936503],[-97.978722,45.930822]]]},"id":38081},
{"type":"Feature","properties":{"name":"Bowman"},"geometry":{"type":"Polygon","coordinates":[[[-102.994823,45.941116],[-104.048906,45.942994],[-104.047836,46.280881],[-102.993675,46.276265],[-102.994823,45.941116]]]},"id":38011},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-102.946397,45.941665],[-102.994823,45.941116],[-102.993675,46.276265],[-102.925268,46.277115],[-102.493143,46.278976],[-102.49347,46.207065],[-102.003372,46.205803],[-102.003386,46.052848],[-102.002775,45.942505],[-102.946397,45.941665]]]},"id":38001},
{"type":"Feature","properties":{"name":"Deer Lodge"},"geometry":{"type":"Polygon","coordinates":[[[-113.074432,45.859292],[-113.115206,45.877866],[-113.178411,45.870961],[-113.195463,45.858621],[-113.234665,45.84781],[-113.25425,45.813553],[-113.281709,45.813397],[-113.342747,45.796745],[-113.356388,45.750423],[-113.373014,45.744919],[-113.420731,45.792419],[-113.434152,45.84679],[-113.492246,45.935298],[-113.473363,45.9458],[-113.468678,45.97224],[-113.430202,45.981311],[-113.389833,46.012764],[-113.362969,46.000595],[-113.331336,46.003868],[-113.290616,46.028874],[-113.269612,46.052579],[-113.268431,46.131803],[-113.287498,46.13141],[-113.287927,46.217576],[-113.032671,46.219554],[-113.028643,46.264816],[-112.56076,46.264138],[-112.568855,46.241474],[-112.592995,46.224831],[-112.577895,46.204628],[-112.57791,46.174835],[-112.604851,46.165164],[-112.653376,46.16672],[-112.666499,46.146971],[-112.692341,46.133582],[-112.768852,46.128649],[-112.773985,46.048151],[-112.854684,46.037351],[-112.86738,46.023077],[-112.869172,45.994268],[-112.935978,45.984376],[-112.93024,45.960382],[-112.920459,45.95963],[-112.920313,45.951379],[-112.932819,45.950384],[-112.92148,45.92164],[-112.959095,45.916814],[-112.962329,45.895845],[-112.998486,45.882257],[-113.016431,45.866762],[-113.074432,45.859292]]]},"id":30023},
{"type":"Feature","properties":{"name":"Mille Lacs"},"geometry":{"type":"Polygon","coordinates":[[[-93.760808,45.561651],[-93.762905,45.818849],[-93.763425,45.980054],[-93.806801,45.981889],[-93.806718,46.152357],[-93.805063,46.23813],[-93.432846,46.240206],[-93.434241,46.153084],[-93.438358,45.979324],[-93.520234,45.978756],[-93.517201,45.733864],[-93.517073,45.558585],[-93.760808,45.561651]]]},"id":27095},
{"type":"Feature","properties":{"name":"Clatsop"},"geometry":{"type":"Polygon","coordinates":[[[-123.976629,45.775482],[-123.956274,45.871041],[-123.996506,45.941922],[-123.921187,46.012323],[-123.977341,46.202706],[-123.794096,46.111449],[-123.777083,46.14443],[-123.820978,46.19365],[-123.761414,46.209939],[-123.717161,46.169894],[-123.670246,46.174498],[-123.517029,46.236092],[-123.363557,46.144154],[-123.36094,45.770982],[-123.721751,45.76822],[-123.721652,45.773728],[-123.976629,45.775482]]]},"id":41007},
{"type":"Feature","properties":{"name":"Sweet Grass"},"geometry":{"type":"Polygon","coordinates":[[[-110.057252,45.171139],[-110.218467,45.169269],[-110.225295,45.347483],[-110.211019,45.347686],[-110.218592,45.785771],[-110.304265,45.785477],[-110.299453,46.176962],[-110.298208,46.219246],[-109.656238,46.218066],[-109.656841,46.132716],[-109.606753,46.131121],[-109.607066,46.041674],[-109.423178,46.040426],[-109.420102,45.962611],[-109.507957,45.962741],[-109.508215,45.871059],[-109.554657,45.870536],[-109.553161,45.782151],[-109.56884,45.781967],[-109.566165,45.609377],[-109.685478,45.608991],[-109.684843,45.571005],[-109.804544,45.568204],[-109.805848,45.523268],[-109.932263,45.523719],[-109.933636,45.348744],[-110.058999,45.348201],[-110.057252,45.171139]]]},"id":30097},
{"type":"Feature","properties":{"name":"Gallatin"},"geometry":{"type":"Polygon","coordinates":[[[-111.37231,44.745087],[-111.369178,45.349748],[-111.350279,45.349408],[-111.349754,45.634587],[-111.530136,45.635201],[-111.529991,45.651261],[-111.553522,45.651326],[-111.554323,45.664124],[-111.574511,45.663453],[-111.573779,45.680009],[-111.598675,45.680447],[-111.598598,45.696969],[-111.618298,45.697694],[-111.619008,45.709584],[-111.638014,45.709885],[-111.638235,45.72318],[-111.653884,45.722752],[-111.654967,45.737836],[-111.715151,45.737626],[-111.71641,45.771054],[-111.789892,45.777859],[-111.790838,45.797081],[-111.76334,45.802788],[-111.731036,45.795464],[-111.703867,45.798383],[-111.659736,45.841736],[-111.624578,45.855199],[-111.604497,45.880192],[-111.563907,45.898068],[-111.550837,45.915784],[-111.526941,45.924916],[-111.502503,45.92352],[-111.468047,45.96719],[-111.465842,45.988431],[-111.426038,45.996583],[-111.412815,46.078111],[-111.389415,46.098215],[-111.34491,46.118078],[-111.346116,46.182307],[-111.063699,46.18946],[-110.790247,46.187774],[-110.790516,46.132674],[-110.797665,46.131854],[-110.795565,45.778218],[-110.807383,45.778546],[-110.804552,45.584753],[-110.858066,45.584798],[-110.857562,45.516527],[-110.916204,45.51629],[-110.918256,45.347563],[-111.040513,45.347637],[-111.038636,45.175502],[-111.051438,45.173915],[-111.053429,44.995695],[-111.051616,44.66449],[-111.051561,44.473323],[-111.094631,44.486124],[-111.128919,44.500757],[-111.134359,44.527902],[-111.170242,44.545186],[-111.178765,44.564851],[-111.219508,44.57317],[-111.234233,44.602562],[-111.219798,44.617982],[-111.223971,44.626908],[-111.270665,44.642212],[-111.270208,44.673802],[-111.295668,44.682938],[-111.315475,44.705193],[-111.319222,44.727864],[-111.349977,44.726178],[-111.37231,44.745087]]]},"id":30031},
{"type":"Feature","properties":{"name":"Park"},"geometry":{"type":"Polygon","coordinates":[[[-111.053429,44.995695],[-111.051438,45.173915],[-111.038636,45.175502],[-111.040513,45.347637],[-110.918256,45.347563],[-110.916204,45.51629],[-110.857562,45.516527],[-110.858066,45.584798],[-110.804552,45.584753],[-110.807383,45.778546],[-110.795565,45.778218],[-110.797665,46.131854],[-110.790516,46.132674],[-110.790247,46.187774],[-110.436656,46.187064],[-110.43629,46.176524],[-110.299453,46.176962],[-110.304265,45.785477],[-110.218592,45.785771],[-110.211019,45.347686],[-110.225295,45.347483],[-110.218467,45.169269],[-110.057252,45.171139],[-109.795608,45.173065],[-109.799385,44.999523],[-109.995529,45.002793],[-110.39276,44.998625],[-110.429649,44.992285],[-111.053429,44.995695]]]},"id":30067},
{"type":"Feature","properties":{"name":"Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-122.929462,45.714032],[-122.93011,45.728665],[-122.996099,45.728508],[-122.995298,45.741371],[-123.033957,45.742404],[-123.034606,45.771247],[-123.36094,45.770982],[-123.363557,46.144154],[-123.304717,46.144738],[-123.248799,46.14402],[-123.212437,46.170006],[-123.176196,46.183586],[-123.118554,46.179311],[-123.050596,46.155736],[-122.974169,46.110483],[-122.899757,46.07933],[-122.875418,46.027183],[-122.807742,45.94389],[-122.806223,45.904072],[-122.784074,45.867886],[-122.784516,45.85045],[-122.78801,45.800344],[-122.764289,45.760568],[-122.772551,45.727686],[-122.797813,45.725233],[-122.79824,45.715131],[-122.929462,45.714032]]]},"id":41009},
{"type":"Feature","properties":{"name":"Silver Bow"},"geometry":{"type":"Polygon","coordinates":[[[-112.68455,45.618075],[-112.703007,45.635142],[-112.696735,45.661486],[-112.738082,45.677901],[-112.750648,45.726363],[-112.775628,45.754614],[-112.795488,45.760729],[-112.811427,45.777243],[-112.985949,45.808165],[-112.998828,45.822283],[-113.074432,45.859292],[-113.016431,45.866762],[-112.998486,45.882257],[-112.962329,45.895845],[-112.959095,45.916814],[-112.92148,45.92164],[-112.932819,45.950384],[-112.920313,45.951379],[-112.920459,45.95963],[-112.93024,45.960382],[-112.935978,45.984376],[-112.869172,45.994268],[-112.86738,46.023077],[-112.854684,46.037351],[-112.773985,46.048151],[-112.768852,46.128649],[-112.692341,46.133582],[-112.666499,46.146971],[-112.653376,46.16672],[-112.604851,46.165164],[-112.57791,46.174835],[-112.534779,46.171135],[-112.513049,46.18142],[-112.511744,46.132786],[-112.490082,46.103653],[-112.469733,46.093807],[-112.462416,46.066524],[-112.468809,46.040157],[-112.443729,46.02328],[-112.426202,45.963584],[-112.431512,45.933978],[-112.400603,45.888499],[-112.408369,45.861277],[-112.43972,45.83348],[-112.403173,45.813472],[-112.30985,45.792407],[-112.177716,45.739684],[-112.455665,45.734183],[-112.47242,45.737494],[-112.490916,45.753676],[-112.526614,45.688929],[-112.579976,45.671454],[-112.604948,45.648928],[-112.68455,45.618075]]]},"id":30093},
{"type":"Feature","properties":{"name":"Washburn"},"geometry":{"type":"Polygon","coordinates":[[[-92.033444,45.640248],[-92.033974,45.980237],[-92.047754,45.980897],[-92.048657,46.158104],[-91.55427,46.15913],[-91.550415,45.992519],[-91.541214,45.991283],[-91.540905,45.640799],[-92.033444,45.640248]]]},"id":55129},
{"type":"Feature","properties":{"name":"Sawyer"},"geometry":{"type":"Polygon","coordinates":[[[-90.677239,45.979084],[-90.677045,45.636901],[-91.540905,45.640799],[-91.541214,45.991283],[-91.550415,45.992519],[-91.55427,46.15913],[-90.92591,46.156169],[-90.922125,45.980409],[-90.677239,45.979084]]]},"id":55113},
{"type":"Feature","properties":{"name":"Burnett"},"geometry":{"type":"Polygon","coordinates":[[[-92.033444,45.640248],[-92.157817,45.638318],[-92.158641,45.724306],[-92.530047,45.727948],[-92.537357,45.644977],[-92.885397,45.644955],[-92.86002,45.710563],[-92.833636,45.73089],[-92.779107,45.76334],[-92.748762,45.837302],[-92.734098,45.844981],[-92.706241,45.890958],[-92.666208,45.915703],[-92.552672,45.951269],[-92.523977,45.982583],[-92.462346,45.981198],[-92.424999,46.025504],[-92.364963,46.016249],[-92.346225,46.022596],[-92.327373,46.056878],[-92.28937,46.073231],[-92.288944,46.156601],[-92.048657,46.158104],[-92.047754,45.980897],[-92.033974,45.980237],[-92.033444,45.640248]]]},"id":55013},
{"type":"Feature","properties":{"name":"Kanabec"},"geometry":{"type":"Polygon","coordinates":[[[-93.137265,45.733611],[-93.517201,45.733864],[-93.520234,45.978756],[-93.438358,45.979324],[-93.434241,46.153084],[-93.052165,46.157625],[-93.051952,45.982181],[-93.133759,45.980481],[-93.137265,45.733611]]]},"id":27065},
{"type":"Feature","properties":{"name":"Carter"},"geometry":{"type":"Polygon","coordinates":[[[-104.99794,45.786524],[-104.942465,45.787374],[-104.940876,46.137501],[-104.887064,46.137864],[-104.531359,46.135594],[-104.529384,46.05228],[-104.398962,46.052269],[-104.397826,45.972167],[-104.140569,45.969933],[-104.138425,45.882992],[-104.049517,45.883053],[-104.043851,45.212875],[-104.043072,44.997806],[-104.059842,44.997336],[-105.041796,45.001076],[-105.03749,45.35006],[-104.994695,45.35038],[-104.992786,45.440879],[-104.981746,45.440505],[-104.975487,45.724477],[-104.997666,45.724774],[-104.99794,45.786524]]]},"id":30011},
{"type":"Feature","properties":{"name":"Stillwater"},"geometry":{"type":"Polygon","coordinates":[[[-109.795608,45.173065],[-110.057252,45.171139],[-110.058999,45.348201],[-109.933636,45.348744],[-109.932263,45.523719],[-109.805848,45.523268],[-109.804544,45.568204],[-109.684843,45.571005],[-109.685478,45.608991],[-109.566165,45.609377],[-109.56884,45.781967],[-109.553161,45.782151],[-109.554657,45.870536],[-109.508215,45.871059],[-109.507957,45.962741],[-109.420102,45.962611],[-109.423178,46.040426],[-109.423461,46.132127],[-108.92473,46.132747],[-108.925324,45.964046],[-108.902381,45.963958],[-108.903659,45.688602],[-108.893214,45.688523],[-108.892619,45.671601],[-108.874948,45.670865],[-108.874467,45.655312],[-108.860703,45.654435],[-108.858956,45.63939],[-108.847862,45.639329],[-108.847015,45.61876],[-108.881875,45.605141],[-108.968205,45.608867],[-109.061493,45.583887],[-109.134272,45.58114],[-109.135988,45.518812],[-109.194454,45.517034],[-109.195926,45.460672],[-109.359079,45.458871],[-109.360498,45.444169],[-109.423572,45.443932],[-109.424945,45.428776],[-109.443745,45.428013],[-109.445988,45.41557],[-109.482465,45.416378],[-109.485761,45.401139],[-109.504553,45.400372],[-109.507497,45.38881],[-109.527014,45.388928],[-109.529799,45.375538],[-109.548583,45.374768],[-109.57054,45.326264],[-109.585418,45.325642],[-109.587776,45.299458],[-109.609856,45.299458],[-109.610863,45.257317],[-109.684794,45.256958],[-109.688769,45.17397],[-109.795608,45.173065]]]},"id":30095},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-96.255801,45.758239],[-96.255001,45.930735],[-96.266285,45.932009],[-96.267529,46.021418],[-96.266866,46.104975],[-95.763372,46.106162],[-95.769545,45.935236],[-95.760923,45.934256],[-95.756972,45.760209],[-96.255801,45.758239]]]},"id":27051},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-95.756972,45.760209],[-95.760923,45.934256],[-95.769545,45.935236],[-95.763372,46.106162],[-95.146792,46.104722],[-95.149089,45.93131],[-95.141795,45.930235],[-95.136903,45.772326],[-95.138498,45.76034],[-95.756972,45.760209]]]},"id":27041},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-122.244922,45.548113],[-122.30315,45.543093],[-122.356458,45.566171],[-122.437154,45.564779],[-122.56543,45.594819],[-122.651209,45.60683],[-122.696323,45.631046],[-122.760541,45.649397],[-122.772551,45.727686],[-122.764289,45.760568],[-122.78801,45.800344],[-122.784516,45.85045],[-122.749794,45.86522],[-122.722732,45.862699],[-122.749581,45.900525],[-122.715798,45.926705],[-122.622619,45.932888],[-122.511046,45.978257],[-122.483748,45.981198],[-122.366893,45.955156],[-122.337557,45.957227],[-122.309649,46.042668],[-122.294131,46.053818],[-122.247781,46.056988],[-122.244922,45.548113]]]},"id":53011},
{"type":"Feature","properties":{"name":"Klickitat"},"geometry":{"type":"Polygon","coordinates":[[[-119.99432,45.81114],[-120.068648,45.780202],[-120.155908,45.761262],[-120.207445,45.719784],[-120.283635,45.716583],[-120.443384,45.68928],[-120.499157,45.695631],[-120.570082,45.740918],[-120.623757,45.743611],[-120.658403,45.732613],[-120.696994,45.71051],[-120.86142,45.665186],[-120.907937,45.635477],[-120.948573,45.650316],[-120.968479,45.645155],[-121.033483,45.652844],[-121.07353,45.646611],[-121.125205,45.607059],[-121.174316,45.600516],[-121.192055,45.613242],[-121.203308,45.657287],[-121.214272,45.665645],[-121.276391,45.67834],[-121.319978,45.696643],[-121.367814,45.699687],[-121.422029,45.690603],[-121.442552,45.694967],[-121.529055,45.719568],[-121.526918,45.745741],[-121.540606,45.754896],[-121.523036,45.775175],[-121.604778,45.77609],[-121.610164,46.042527],[-121.517154,46.044731],[-119.868807,46.037735],[-119.869736,45.831699],[-119.99432,45.81114]]]},"id":53039},
{"type":"Feature","properties":{"name":"Big Horn"},"geometry":{"type":"Polygon","coordinates":[[[-107.894374,44.999774],[-108.259239,45.000115],[-108.24311,45.041299],[-108.224898,45.049642],[-108.227317,45.077898],[-108.206725,45.100027],[-108.186186,45.102499],[-108.182555,45.127295],[-108.163611,45.134742],[-108.1687,45.154239],[-108.133849,45.187313],[-108.120612,45.214237],[-108.704142,45.220245],[-108.705365,45.329978],[-108.683546,45.426353],[-108.644223,45.468434],[-108.310021,45.459848],[-108.309808,45.486849],[-108.190832,45.487849],[-108.18965,45.520831],[-108.074397,45.519779],[-108.073789,45.776554],[-108.054173,45.776227],[-108.050987,45.895838],[-107.883418,45.895248],[-107.881997,45.926892],[-107.840764,45.92715],[-107.839001,45.953305],[-107.797096,45.953571],[-107.794761,45.98158],[-107.679395,45.98063],[-107.677404,46.039311],[-107.513498,46.039984],[-107.420392,46.040065],[-107.420782,45.958533],[-107.177148,45.958042],[-107.177843,45.917731],[-107.059961,45.915863],[-107.061372,45.875545],[-106.942285,45.874059],[-106.942445,45.833317],[-106.889472,45.832624],[-106.887548,45.788274],[-106.920844,45.788018],[-106.920313,45.686442],[-106.729691,45.681274],[-106.724008,45.350307],[-106.769345,45.348467],[-106.76685,45.178053],[-106.280911,45.178955],[-106.258891,45.17841],[-106.259232,44.996163],[-107.894374,44.999774]]]},"id":30003},
{"type":"Feature","properties":{"name":"Traverse"},"geometry":{"type":"Polygon","coordinates":[[[-96.255801,45.758239],[-96.257386,45.587167],[-96.843087,45.58409],[-96.85499,45.609122],[-96.832796,45.650687],[-96.657392,45.738971],[-96.604611,45.808264],[-96.587955,45.817854],[-96.566922,45.93411],[-96.561802,45.947683],[-96.576215,46.02128],[-96.267529,46.021418],[-96.266285,45.932009],[-96.255001,45.930735],[-96.255801,45.758239]]]},"id":27155},
{"type":"Feature","properties":{"name":"Umatilla"},"geometry":{"type":"Polygon","coordinates":[[[-119.438861,45.914269],[-119.379441,45.91761],[-119.302764,45.932663],[-119.178743,45.922352],[-119.140251,45.925709],[-119.032222,45.966275],[-118.982133,45.999058],[-117.992528,46.001639],[-117.982677,45.999881],[-117.973941,45.850759],[-117.972034,45.809598],[-118.040543,45.805427],[-118.042503,45.764243],[-118.066629,45.762682],[-118.065293,45.678992],[-118.116093,45.676755],[-118.107973,45.462399],[-118.191091,45.460318],[-118.191014,45.419642],[-118.3598,45.418503],[-118.361227,45.424889],[-118.37876,45.425164],[-118.379577,45.432927],[-118.410737,45.432606],[-118.410447,45.4189],[-118.422761,45.417855],[-118.423805,45.344723],[-118.613788,45.343045],[-118.614131,45.330247],[-118.654936,45.328382],[-118.655745,45.334768],[-118.69529,45.33428],[-118.695716,45.248832],[-118.658131,45.247931],[-118.657953,45.188542],[-118.547931,45.187567],[-118.546592,45.073404],[-118.518782,45.071896],[-118.519436,44.986506],[-119.160146,44.989163],[-119.161015,45.07636],[-119.143573,45.076185],[-119.148969,45.507445],[-119.258199,45.507037],[-119.258474,45.592086],[-119.442851,45.595748],[-119.438861,45.914269]]]},"id":41059},
{"type":"Feature","properties":{"name":"Wallowa"},"geometry":{"type":"Polygon","coordinates":[[[-116.78721,45.075753],[-117.256115,45.073396],[-117.255151,45.160613],[-117.4841,45.161351],[-117.48571,45.204277],[-117.522608,45.205965],[-117.522363,45.25758],[-117.542436,45.257953],[-117.542037,45.289024],[-117.560829,45.289401],[-117.56095,45.303565],[-117.585578,45.303458],[-117.587766,45.332232],[-117.642204,45.329698],[-117.642492,45.359857],[-117.665854,45.361112],[-117.668392,45.420046],[-117.687223,45.420408],[-117.690103,45.51181],[-117.725224,45.512538],[-117.728222,45.609444],[-117.747106,45.609799],[-117.750181,45.651391],[-117.7704,45.653565],[-117.770705,45.679627],[-117.786361,45.681366],[-117.78868,45.766881],[-117.74693,45.768488],[-117.751163,45.854924],[-117.973941,45.850759],[-117.982677,45.999881],[-117.602826,46.000268],[-117.481663,45.999835],[-116.919132,45.995175],[-116.898197,45.980516],[-116.856472,45.903597],[-116.791262,45.845867],[-116.773707,45.819764],[-116.70318,45.819169],[-116.654398,45.78063],[-116.560632,45.747425],[-116.528275,45.710728],[-116.514915,45.664491],[-116.470419,45.606257],[-116.478551,45.566058],[-116.554503,45.493647],[-116.565772,45.459864],[-116.672265,45.33541],[-116.688813,45.262351],[-116.736585,45.137307],[-116.761268,45.106301],[-116.778092,45.09948],[-116.78721,45.075753]]]},"id":41063},
{"type":"Feature","properties":{"name":"Price"},"geometry":{"type":"Polygon","coordinates":[[[-90.038913,45.897077],[-90.041347,45.554521],[-90.043211,45.384037],[-90.675753,45.379556],[-90.677045,45.636901],[-90.677239,45.979084],[-90.302174,45.984557],[-90.038298,45.982199],[-90.038913,45.897077]]]},"id":55099},
{"type":"Feature","properties":{"name":"Campbell"},"geometry":{"type":"Polygon","coordinates":[[[-100.438576,45.596499],[-100.422407,45.655094],[-100.35831,45.658877],[-100.331087,45.667754],[-100.312127,45.68051],[-100.30291,45.705428],[-100.307266,45.721107],[-100.371904,45.792427],[-100.387765,45.837257],[-100.373032,45.855632],[-100.377709,45.865833],[-100.425348,45.879917],[-100.429773,45.907047],[-100.443277,45.911522],[-100.467196,45.904823],[-100.515735,45.927601],[-100.514407,45.940388],[-99.875783,45.943547],[-99.717346,45.942761],[-99.72438,45.599585],[-100.438576,45.596499]]]},"id":46021},
{"type":"Feature","properties":{"name":"Harding"},"geometry":{"type":"Polygon","coordinates":[[[-104.043851,45.212875],[-104.049517,45.883053],[-104.048906,45.942994],[-102.994823,45.941116],[-102.946397,45.941665],[-102.9624,45.211167],[-104.043851,45.212875]]]},"id":46063},
{"type":"Feature","properties":{"name":"McPherson"},"geometry":{"type":"Polygon","coordinates":[[[-99.72438,45.599585],[-99.717346,45.942761],[-99.006833,45.939556],[-98.730437,45.938271],[-98.732038,45.596134],[-99.708778,45.599089],[-99.72438,45.599585]]]},"id":46089},
{"type":"Feature","properties":{"name":"Perkins"},"geometry":{"type":"Polygon","coordinates":[[[-102.003641,45.043688],[-102.961814,45.040364],[-102.9624,45.211167],[-102.946397,45.941665],[-102.002775,45.942505],[-102.002441,45.474987],[-102.003641,45.043688]]]},"id":46105},
{"type":"Feature","properties":{"name":"Corson"},"geometry":{"type":"Polygon","coordinates":[[[-100.344923,45.475055],[-101.474666,45.476666],[-102.002441,45.474987],[-102.002775,45.942505],[-100.514407,45.940388],[-100.515735,45.927601],[-100.467196,45.904823],[-100.443277,45.911522],[-100.429773,45.907047],[-100.425348,45.879917],[-100.377709,45.865833],[-100.373032,45.855632],[-100.387765,45.837257],[-100.371904,45.792427],[-100.307266,45.721107],[-100.30291,45.705428],[-100.312127,45.68051],[-100.331087,45.667754],[-100.35831,45.658877],[-100.422407,45.655094],[-100.438576,45.596499],[-100.486445,45.565726],[-100.490924,45.554862],[-100.479877,45.529875],[-100.457232,45.5151],[-100.370773,45.501828],[-100.344923,45.475055]]]},"id":46031},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-98.727698,45.247199],[-98.724813,45.596763],[-98.732038,45.596134],[-98.730437,45.938271],[-98.01471,45.931498],[-97.978722,45.930822],[-97.979545,45.589407],[-97.983946,45.244349],[-98.727698,45.247199]]]},"id":46013},
{"type":"Feature","properties":{"name":"Beaverhead"},"geometry":{"type":"Polygon","coordinates":[[[-111.475425,44.702162],[-111.480804,44.691416],[-111.460692,44.670023],[-111.458265,44.652555],[-111.470168,44.64071],[-111.507691,44.637689],[-111.501747,44.615971],[-111.514526,44.593197],[-111.492904,44.551189],[-111.462827,44.549942],[-111.459325,44.537922],[-111.482573,44.536144],[-111.490241,44.528697],[-111.567231,44.552867],[-111.605249,44.54299],[-111.684863,44.550752],[-111.716998,44.533761],[-111.766918,44.518825],[-111.792608,44.518463],[-111.807837,44.503982],[-111.872502,44.556266],[-111.940386,44.549727],[-111.977818,44.529676],[-112.023613,44.535043],[-112.027077,44.522844],[-112.059367,44.528612],[-112.099897,44.518232],[-112.124191,44.528253],[-112.199658,44.53145],[-112.217764,44.538495],[-112.230399,44.559491],[-112.256676,44.559972],[-112.282341,44.541703],[-112.342507,44.5251],[-112.340577,44.49718],[-112.367584,44.449271],[-112.420753,44.449285],[-112.45852,44.468835],[-112.50184,44.462997],[-112.539324,44.477498],[-112.653189,44.480802],[-112.714326,44.496935],[-112.733712,44.48432],[-112.779863,44.473922],[-112.796228,44.458011],[-112.826691,44.421084],[-112.81871,44.39482],[-112.817397,44.364203],[-112.844275,44.35364],[-112.870781,44.369979],[-112.887308,44.392852],[-112.938281,44.407192],[-112.98525,44.43554],[-113.012015,44.437715],[-113.006659,44.452616],[-113.020309,44.481776],[-113.007713,44.510612],[-113.037821,44.532959],[-113.039661,44.556294],[-113.083037,44.582681],[-113.054289,44.624289],[-113.073144,44.675526],[-113.098956,44.695916],[-113.101703,44.715173],[-113.127431,44.737379],[-113.138274,44.761439],[-113.240338,44.811841],[-113.257154,44.810487],[-113.31868,44.780229],[-113.340631,44.779],[-113.350024,44.807569],[-113.421379,44.8337],[-113.445573,44.85124],[-113.496191,44.93067],[-113.487348,44.939574],[-113.463414,44.940775],[-113.448765,44.949523],[-113.441029,44.998195],[-113.458853,45.02745],[-113.455435,45.043349],[-113.486306,45.058322],[-113.490159,45.071219],[-113.520609,45.082064],[-113.510226,45.107836],[-113.552273,45.107549],[-113.574376,45.117711],[-113.571584,45.134545],[-113.594099,45.149743],[-113.600928,45.180992],[-113.645593,45.20679],[-113.69012,45.262282],[-113.688709,45.277788],[-113.739081,45.321531],[-113.74131,45.382386],[-113.775026,45.410172],[-113.785662,45.445634],[-113.769168,45.477708],[-113.772304,45.507054],[-113.780934,45.516865],[-113.833715,45.514908],[-113.803755,45.58373],[-113.822485,45.600636],[-113.852027,45.609562],[-113.903306,45.613491],[-113.9022,45.637253],[-113.923532,45.655125],[-113.926699,45.671211],[-113.895044,45.69291],[-113.892382,45.750046],[-113.857675,45.766179],[-113.845193,45.740262],[-113.810448,45.743566],[-113.795166,45.749151],[-113.786224,45.785554],[-113.756202,45.798574],[-113.730193,45.82266],[-113.6937,45.833681],[-113.638232,45.831858],[-113.596101,45.850493],[-113.578232,45.867442],[-113.533339,45.875457],[-113.539016,45.91727],[-113.524184,45.937953],[-113.492246,45.935298],[-113.434152,45.84679],[-113.420731,45.792419],[-113.373014,45.744919],[-113.356388,45.750423],[-113.342747,45.796745],[-113.281709,45.813397],[-113.25425,45.813553],[-113.234665,45.84781],[-113.195463,45.858621],[-113.178411,45.870961],[-113.115206,45.877866],[-113.074432,45.859292],[-112.998828,45.822283],[-112.985949,45.808165],[-112.811427,45.777243],[-112.795488,45.760729],[-112.775628,45.754614],[-112.750648,45.726363],[-112.738082,45.677901],[-112.696735,45.661486],[-112.703007,45.635142],[-112.68455,45.618075],[-112.696444,45.524642],[-112.694437,45.515426],[-112.674309,45.504714],[-112.672921,45.475844],[-112.660919,45.460364],[-112.59856,45.419911],[-112.564623,45.422002],[-112.544312,45.43414],[-112.498044,45.435807],[-112.455195,45.387249],[-112.444702,45.083697],[-112.325209,45.081424],[-112.326047,44.995054],[-112.186586,44.994238],[-112.186703,44.911515],[-112.161707,44.909241],[-112.160505,44.827399],[-112.062659,44.826114],[-112.059983,44.783514],[-111.77882,44.780154],[-111.777407,44.706987],[-111.475425,44.702162]]]},"id":30001},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-97.23331,45.936503],[-97.229918,45.558496],[-97.375224,45.559745],[-97.383403,45.589014],[-97.979545,45.589407],[-97.978722,45.930822],[-97.23331,45.936503]]]},"id":46091},
{"type":"Feature","properties":{"name":"Roberts"},"geometry":{"type":"Polygon","coordinates":[[[-96.843087,45.58409],[-96.769246,45.517479],[-96.738032,45.458195],[-96.693169,45.410638],[-96.605085,45.396524],[-96.532549,45.375132],[-96.477592,45.328509],[-96.998752,45.331329],[-97.013485,45.302319],[-97.228548,45.302317],[-97.229918,45.558496],[-97.23331,45.936503],[-96.566922,45.93411],[-96.587955,45.817854],[-96.604611,45.808264],[-96.657392,45.738971],[-96.832796,45.650687],[-96.85499,45.609122],[-96.843087,45.58409]]]},"id":46109},
{"type":"Feature","properties":{"name":"Morrow"},"geometry":{"type":"Polygon","coordinates":[[[-119.438861,45.914269],[-119.442851,45.595748],[-119.258474,45.592086],[-119.258199,45.507037],[-119.148969,45.507445],[-119.143573,45.076185],[-119.161015,45.07636],[-119.160146,44.989163],[-119.672422,44.9877],[-119.791109,44.986652],[-119.791013,45.062018],[-119.790861,45.073897],[-119.755963,45.073703],[-119.758257,45.160909],[-119.879971,45.162925],[-119.879037,45.246568],[-119.997631,45.247634],[-119.99432,45.81114],[-119.869736,45.831699],[-119.833556,45.841609],[-119.678446,45.852539],[-119.622117,45.89941],[-119.589294,45.913315],[-119.51222,45.899201],[-119.438861,45.914269]]]},"id":41049},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-117.256115,45.073396],[-117.562878,45.068804],[-117.564138,44.988446],[-117.780209,44.986447],[-117.84872,45.049031],[-117.871326,45.049801],[-117.894947,45.029557],[-117.892659,45.003091],[-118.009886,44.989936],[-118.064963,45.005483],[-118.082075,45.026348],[-118.104163,45.0353],[-118.176681,45.010946],[-118.214347,44.988691],[-118.249084,44.948661],[-118.29561,44.954154],[-118.366986,44.976271],[-118.430488,44.959632],[-118.48456,44.984613],[-118.519436,44.986506],[-118.518782,45.071896],[-118.546592,45.073404],[-118.547931,45.187567],[-118.657953,45.188542],[-118.658131,45.247931],[-118.695716,45.248832],[-118.69529,45.33428],[-118.655745,45.334768],[-118.654936,45.328382],[-118.614131,45.330247],[-118.613788,45.343045],[-118.423805,45.344723],[-118.422761,45.417855],[-118.410447,45.4189],[-118.410737,45.432606],[-118.379577,45.432927],[-118.37876,45.425164],[-118.361227,45.424889],[-118.3598,45.418503],[-118.191014,45.419642],[-118.191091,45.460318],[-118.107973,45.462399],[-118.116093,45.676755],[-118.065293,45.678992],[-118.066629,45.762682],[-118.042503,45.764243],[-118.040543,45.805427],[-117.972034,45.809598],[-117.973941,45.850759],[-117.751163,45.854924],[-117.74693,45.768488],[-117.78868,45.766881],[-117.786361,45.681366],[-117.770705,45.679627],[-117.7704,45.653565],[-117.750181,45.651391],[-117.747106,45.609799],[-117.728222,45.609444],[-117.725224,45.512538],[-117.690103,45.51181],[-117.687223,45.420408],[-117.668392,45.420046],[-117.665854,45.361112],[-117.642492,45.359857],[-117.642204,45.329698],[-117.587766,45.332232],[-117.585578,45.303458],[-117.56095,45.303565],[-117.560829,45.289401],[-117.542037,45.289024],[-117.542436,45.257953],[-117.522363,45.25758],[-117.522608,45.205965],[-117.48571,45.204277],[-117.4841,45.161351],[-117.255151,45.160613],[-117.256115,45.073396]]]},"id":41061},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-111.37231,44.745087],[-111.38496,44.737694],[-111.395084,44.70887],[-111.443632,44.71318],[-111.475425,44.702162],[-111.777407,44.706987],[-111.77882,44.780154],[-112.059983,44.783514],[-112.062659,44.826114],[-112.160505,44.827399],[-112.161707,44.909241],[-112.186703,44.911515],[-112.186586,44.994238],[-112.326047,44.995054],[-112.325209,45.081424],[-112.444702,45.083697],[-112.455195,45.387249],[-112.498044,45.435807],[-112.544312,45.43414],[-112.564623,45.422002],[-112.59856,45.419911],[-112.660919,45.460364],[-112.672921,45.475844],[-112.674309,45.504714],[-112.694437,45.515426],[-112.696444,45.524642],[-112.68455,45.618075],[-112.604948,45.648928],[-112.579976,45.671454],[-112.526614,45.688929],[-112.490916,45.753676],[-112.47242,45.737494],[-112.455665,45.734183],[-112.177716,45.739684],[-112.165921,45.740176],[-112.142238,45.760398],[-112.131862,45.786132],[-112.109073,45.802714],[-112.108661,45.82606],[-112.068407,45.839717],[-111.961827,45.839008],[-111.952412,45.851024],[-111.921298,45.847118],[-111.906321,45.829143],[-111.871293,45.81683],[-111.822638,45.811772],[-111.790838,45.797081],[-111.789892,45.777859],[-111.71641,45.771054],[-111.715151,45.737626],[-111.654967,45.737836],[-111.653884,45.722752],[-111.638235,45.72318],[-111.638014,45.709885],[-111.619008,45.709584],[-111.618298,45.697694],[-111.598598,45.696969],[-111.598675,45.680447],[-111.573779,45.680009],[-111.574511,45.663453],[-111.554323,45.664124],[-111.553522,45.651326],[-111.529991,45.651261],[-111.530136,45.635201],[-111.349754,45.634587],[-111.350279,45.349408],[-111.369178,45.349748],[-111.37231,44.745087]]]},"id":30057},
{"type":"Feature","properties":{"name":"Benton"},"geometry":{"type":"Polygon","coordinates":[[[-93.760808,45.561651],[-94.149406,45.558448],[-94.206119,45.63293],[-94.188609,45.680694],[-94.219678,45.713955],[-94.214719,45.726951],[-94.251006,45.741249],[-94.279724,45.777336],[-94.336497,45.803261],[-94.351429,45.819675],[-93.762905,45.818849],[-93.760808,45.561651]]]},"id":27009},
{"type":"Feature","properties":{"name":"Gilliam"},"geometry":{"type":"Polygon","coordinates":[[[-120.491832,45.058414],[-120.510999,45.078929],[-120.50987,45.094497],[-120.462765,45.096179],[-120.454862,45.131107],[-120.46955,45.139869],[-120.482926,45.185683],[-120.531917,45.193999],[-120.541378,45.201522],[-120.531994,45.207709],[-120.548917,45.233775],[-120.537969,45.247321],[-120.548636,45.252982],[-120.543974,45.28739],[-120.525106,45.286059],[-120.545348,45.301066],[-120.526123,45.391646],[-120.513847,45.405226],[-120.482352,45.411532],[-120.484679,45.418784],[-120.510864,45.422678],[-120.489677,45.427348],[-120.479926,45.452292],[-120.491005,45.465266],[-120.467941,45.471808],[-120.413655,45.465419],[-120.404126,45.469775],[-120.425321,45.477469],[-120.425512,45.49393],[-120.374554,45.489269],[-120.364666,45.499576],[-120.379933,45.518401],[-120.36668,45.526511],[-120.402075,45.544379],[-120.40795,45.570304],[-120.436417,45.592001],[-120.451348,45.616324],[-120.479753,45.623831],[-120.499392,45.65032],[-120.521549,45.662561],[-120.553113,45.66768],[-120.575301,45.692265],[-120.641961,45.718407],[-120.658403,45.732613],[-120.623757,45.743611],[-120.570082,45.740918],[-120.499157,45.695631],[-120.443384,45.68928],[-120.283635,45.716583],[-120.207445,45.719784],[-120.155908,45.761262],[-120.068648,45.780202],[-119.99432,45.81114],[-119.997631,45.247634],[-119.879037,45.246568],[-119.879971,45.162925],[-119.758257,45.160909],[-119.755963,45.073703],[-119.790861,45.073897],[-119.791013,45.062018],[-120.491832,45.058414]]]},"id":41021},
{"type":"Feature","properties":{"name":"Powder River"},"geometry":{"type":"Polygon","coordinates":[[[-105.085003,44.999817],[-106.021151,44.997214],[-106.259232,44.996163],[-106.258891,45.17841],[-106.280911,45.178955],[-106.28166,45.3535],[-106.240795,45.353726],[-106.239288,45.79413],[-106.1975,45.794355],[-104.99794,45.786524],[-104.997666,45.724774],[-104.975487,45.724477],[-104.981746,45.440505],[-104.992786,45.440879],[-104.994695,45.35038],[-105.03749,45.35006],[-105.041796,45.001076],[-105.085003,44.999817]]]},"id":30075},
{"type":"Feature","properties":{"name":"Stearns"},"geometry":{"type":"Polygon","coordinates":[[[-95.13379,45.411554],[-95.138498,45.76034],[-95.136903,45.772326],[-94.641517,45.773704],[-94.279724,45.777336],[-94.251006,45.741249],[-94.214719,45.726951],[-94.219678,45.713955],[-94.188609,45.680694],[-94.206119,45.63293],[-94.149406,45.558448],[-94.148002,45.519596],[-94.133322,45.486236],[-94.050211,45.431412],[-94.09466,45.349845],[-94.123095,45.329204],[-94.165508,45.304412],[-94.194653,45.32215],[-94.25292,45.310961],[-94.261427,45.284587],[-94.374955,45.284639],[-94.378695,45.327047],[-94.765488,45.3253],[-94.765299,45.413626],[-95.13379,45.411554]]]},"id":27145},
{"type":"Feature","properties":{"name":"Tillamook"},"geometry":{"type":"Polygon","coordinates":[[[-123.723559,45.068559],[-123.724322,45.037398],[-124.007573,45.036103],[-123.956607,45.292966],[-123.98056,45.485085],[-123.936675,45.507966],[-123.892108,45.47405],[-123.859507,45.499083],[-123.953416,45.568529],[-123.936076,45.702835],[-123.976629,45.775482],[-123.721652,45.773728],[-123.721751,45.76822],[-123.36094,45.770982],[-123.360893,45.702226],[-123.481402,45.698338],[-123.480821,45.672242],[-123.462442,45.671288],[-123.462373,45.657078],[-123.441994,45.655759],[-123.442017,45.642468],[-123.422996,45.641541],[-123.423019,45.628247],[-123.380568,45.627965],[-123.379263,45.614282],[-123.336858,45.614442],[-123.335988,45.598447],[-123.300007,45.597383],[-123.298366,45.586919],[-123.313953,45.586194],[-123.314518,45.5715],[-123.363858,45.569188],[-123.364537,45.542126],[-123.399625,45.540921],[-123.402112,45.526146],[-123.423566,45.525585],[-123.424191,45.51181],[-123.443608,45.510425],[-123.442792,45.488472],[-123.461499,45.48666],[-123.461933,45.444038],[-123.483921,45.442524],[-123.484783,45.424618],[-123.46323,45.423824],[-123.464385,45.207171],[-123.782376,45.208441],[-123.785953,45.070912],[-123.723559,45.068559]]]},"id":41057},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-122.743135,45.424821],[-122.743172,45.32686],[-122.80488,45.326959],[-122.804896,45.342065],[-122.847851,45.342958],[-122.847888,45.313657],[-122.869152,45.311814],[-122.907483,45.31197],[-122.909254,45.33936],[-122.972915,45.339298],[-122.97438,45.355717],[-122.992707,45.357189],[-122.991952,45.370498],[-123.014047,45.370429],[-123.015924,45.384082],[-123.032282,45.385184],[-123.033388,45.397494],[-123.116665,45.397863],[-123.11929,45.412393],[-123.140149,45.41282],[-123.140966,45.428815],[-123.46323,45.423824],[-123.484783,45.424618],[-123.483921,45.442524],[-123.461933,45.444038],[-123.461499,45.48666],[-123.442792,45.488472],[-123.443608,45.510425],[-123.424191,45.51181],[-123.423566,45.525585],[-123.402112,45.526146],[-123.399625,45.540921],[-123.364537,45.542126],[-123.363858,45.569188],[-123.314518,45.5715],[-123.313953,45.586194],[-123.298366,45.586919],[-123.300007,45.597383],[-123.335988,45.598447],[-123.336858,45.614442],[-123.379263,45.614282],[-123.380568,45.627965],[-123.423019,45.628247],[-123.422996,45.641541],[-123.442017,45.642468],[-123.441994,45.655759],[-123.462373,45.657078],[-123.462442,45.671288],[-123.480821,45.672242],[-123.481402,45.698338],[-123.360893,45.702226],[-123.36094,45.770982],[-123.034606,45.771247],[-123.033957,45.742404],[-122.995298,45.741371],[-122.996099,45.728508],[-122.93011,45.728665],[-122.929462,45.714032],[-122.928934,45.627458],[-122.913217,45.626772],[-122.912569,45.612142],[-122.891091,45.612623],[-122.890565,45.59936],[-122.867745,45.599436],[-122.867073,45.584349],[-122.846122,45.583426],[-122.846305,45.570594],[-122.829909,45.569468],[-122.830618,45.555244],[-122.804533,45.554992],[-122.804067,45.542186],[-122.785771,45.541595],[-122.78523,45.527885],[-122.761669,45.5266],[-122.761257,45.514252],[-122.742931,45.513203],[-122.743135,45.424821]]]},"id":41067},
{"type":"Feature","properties":{"name":"Pope"},"geometry":{"type":"Polygon","coordinates":[[[-95.261053,45.409379],[-95.74524,45.412543],[-95.741917,45.585848],[-95.756291,45.5861],[-95.756972,45.760209],[-95.138498,45.76034],[-95.13379,45.411554],[-95.261053,45.409379]]]},"id":27121},
{"type":"Feature","properties":{"name":"Stevens"},"geometry":{"type":"Polygon","coordinates":[[[-96.124294,45.41002],[-96.244856,45.411833],[-96.246163,45.585893],[-96.257386,45.587167],[-96.255801,45.758239],[-95.756972,45.760209],[-95.756291,45.5861],[-95.741917,45.585848],[-95.74524,45.412543],[-96.124294,45.41002]]]},"id":27149},
{"type":"Feature","properties":{"name":"Isanti"},"geometry":{"type":"Polygon","coordinates":[[[-93.023016,45.41228],[-93.513572,45.413673],[-93.517073,45.558585],[-93.517201,45.733864],[-93.137265,45.733611],[-93.136391,45.562043],[-93.024952,45.55996],[-93.023016,45.41228]]]},"id":27059},
{"type":"Feature","properties":{"name":"Chisago"},"geometry":{"type":"Polygon","coordinates":[[[-93.01898,45.298539],[-93.023016,45.41228],[-93.024952,45.55996],[-93.136391,45.562043],[-93.137265,45.733611],[-92.833636,45.73089],[-92.86002,45.710563],[-92.885397,45.644955],[-92.876831,45.578837],[-92.835037,45.563402],[-92.762175,45.564263],[-92.728155,45.547242],[-92.685421,45.470053],[-92.654818,45.455222],[-92.644975,45.439452],[-92.648751,45.395466],[-92.68487,45.363076],[-92.707384,45.318202],[-92.746593,45.297603],[-93.01898,45.298539]]]},"id":27025},
{"type":"Feature","properties":{"name":"Sherman"},"geometry":{"type":"Polygon","coordinates":[[[-120.510999,45.078929],[-120.725057,45.080937],[-120.719396,45.10714],[-120.730544,45.121456],[-120.81409,45.1575],[-120.852513,45.184291],[-120.918571,45.195639],[-120.993563,45.193433],[-121.019245,45.211407],[-121.018308,45.271329],[-121.03813,45.277592],[-120.977598,45.306375],[-120.965405,45.29759],[-120.949215,45.298063],[-120.937046,45.311678],[-120.943059,45.325681],[-120.925862,45.331213],[-120.916027,45.351618],[-120.896206,45.356768],[-120.876819,45.380648],[-120.856852,45.383506],[-120.856166,45.405478],[-120.841731,45.425559],[-120.854229,45.439379],[-120.823414,45.502921],[-120.825757,45.509719],[-120.872016,45.522124],[-120.895798,45.539282],[-120.902115,45.558317],[-120.888519,45.582041],[-120.907937,45.635477],[-120.86142,45.665186],[-120.696994,45.71051],[-120.658403,45.732613],[-120.641961,45.718407],[-120.575301,45.692265],[-120.553113,45.66768],[-120.521549,45.662561],[-120.499392,45.65032],[-120.479753,45.623831],[-120.451348,45.616324],[-120.436417,45.592001],[-120.40795,45.570304],[-120.402075,45.544379],[-120.36668,45.526511],[-120.379933,45.518401],[-120.364666,45.499576],[-120.374554,45.489269],[-120.425512,45.49393],[-120.425321,45.477469],[-120.404126,45.469775],[-120.413655,45.465419],[-120.467941,45.471808],[-120.491005,45.465266],[-120.479926,45.452292],[-120.489677,45.427348],[-120.510864,45.422678],[-120.484679,45.418784],[-120.482352,45.411532],[-120.513847,45.405226],[-120.526123,45.391646],[-120.545348,45.301066],[-120.525106,45.286059],[-120.543974,45.28739],[-120.548636,45.252982],[-120.537969,45.247321],[-120.548917,45.233775],[-120.531994,45.207709],[-120.541378,45.201522],[-120.531917,45.193999],[-120.482926,45.185683],[-120.46955,45.139869],[-120.454862,45.131107],[-120.462765,45.096179],[-120.50987,45.094497],[-120.510999,45.078929]]]},"id":41055},
{"type":"Feature","properties":{"name":"Polk"},"geometry":{"type":"Polygon","coordinates":[[[-92.755419,45.212377],[-92.746593,45.297603],[-92.707384,45.318202],[-92.68487,45.363076],[-92.648751,45.395466],[-92.644975,45.439452],[-92.654818,45.455222],[-92.685421,45.470053],[-92.728155,45.547242],[-92.762175,45.564263],[-92.835037,45.563402],[-92.876831,45.578837],[-92.885397,45.644955],[-92.537357,45.644977],[-92.530047,45.727948],[-92.158641,45.724306],[-92.157817,45.638318],[-92.162332,45.213071],[-92.755419,45.212377]]]},"id":55095},
{"type":"Feature","properties":{"name":"Multnomah"},"geometry":{"type":"Polygon","coordinates":[[[-121.814154,45.454758],[-122.658875,45.451276],[-122.654655,45.42444],[-122.743135,45.424821],[-122.742931,45.513203],[-122.761257,45.514252],[-122.761669,45.5266],[-122.78523,45.527885],[-122.785771,45.541595],[-122.804067,45.542186],[-122.804533,45.554992],[-122.830618,45.555244],[-122.829909,45.569468],[-122.846305,45.570594],[-122.846122,45.583426],[-122.867073,45.584349],[-122.867745,45.599436],[-122.890565,45.59936],[-122.891091,45.612623],[-122.912569,45.612142],[-122.913217,45.626772],[-122.928934,45.627458],[-122.929462,45.714032],[-122.79824,45.715131],[-122.797813,45.725233],[-122.772551,45.727686],[-122.760541,45.649397],[-122.696323,45.631046],[-122.651209,45.60683],[-122.56543,45.594819],[-122.437154,45.564779],[-122.356458,45.566171],[-122.30315,45.543093],[-122.244922,45.548113],[-122.082038,45.590504],[-122.000012,45.617824],[-121.972659,45.635776],[-121.926821,45.642028],[-121.915803,45.581081],[-121.899079,45.557431],[-121.913247,45.546387],[-121.912347,45.525364],[-121.892861,45.508221],[-121.867348,45.506398],[-121.853187,45.481736],[-121.814154,45.454758]]]},"id":41051},
{"type":"Feature","properties":{"name":"Hood River"},"geometry":{"type":"Polygon","coordinates":[[[-121.682217,45.25171],[-121.685529,45.27126],[-121.670338,45.285966],[-121.696996,45.333069],[-121.704389,45.373524],[-121.721059,45.388954],[-121.797156,45.40823],[-121.814154,45.454758],[-121.853187,45.481736],[-121.867348,45.506398],[-121.892861,45.508221],[-121.912347,45.525364],[-121.913247,45.546387],[-121.899079,45.557431],[-121.915803,45.581081],[-121.926821,45.642028],[-121.888283,45.676856],[-121.811041,45.700683],[-121.758694,45.689716],[-121.706417,45.688793],[-121.529055,45.719568],[-121.442552,45.694967],[-121.440173,45.51242],[-121.482318,45.510112],[-121.480041,45.253098],[-121.682217,45.25171]]]},"id":41027},
{"type":"Feature","properties":{"name":"Wasco"},"geometry":{"type":"Polygon","coordinates":[[[-121.753325,44.819516],[-121.752144,44.875763],[-121.72808,44.882096],[-121.72757,44.893082],[-121.761256,44.931649],[-121.793979,44.929109],[-121.791004,44.9507],[-121.809285,44.980669],[-121.80853,44.997152],[-121.760403,45.029034],[-121.716762,45.033318],[-121.70869,45.047314],[-121.659883,45.070499],[-121.663424,45.102837],[-121.709522,45.123635],[-121.74085,45.182431],[-121.737264,45.195821],[-121.682957,45.225156],[-121.682217,45.25171],[-121.480041,45.253098],[-121.482318,45.510112],[-121.440173,45.51242],[-121.442552,45.694967],[-121.422029,45.690603],[-121.367814,45.699687],[-121.319978,45.696643],[-121.276391,45.67834],[-121.214272,45.665645],[-121.203308,45.657287],[-121.192055,45.613242],[-121.174316,45.600516],[-121.125205,45.607059],[-121.07353,45.646611],[-121.033483,45.652844],[-120.968479,45.645155],[-120.948573,45.650316],[-120.907937,45.635477],[-120.888519,45.582041],[-120.902115,45.558317],[-120.895798,45.539282],[-120.872016,45.522124],[-120.825757,45.509719],[-120.823414,45.502921],[-120.854229,45.439379],[-120.841731,45.425559],[-120.856166,45.405478],[-120.856852,45.383506],[-120.876819,45.380648],[-120.896206,45.356768],[-120.916027,45.351618],[-120.925862,45.331213],[-120.943059,45.325681],[-120.937046,45.311678],[-120.949215,45.298063],[-120.965405,45.29759],[-120.977598,45.306375],[-121.03813,45.277592],[-121.018308,45.271329],[-121.019245,45.211407],[-120.993563,45.193433],[-120.918571,45.195639],[-120.852513,45.184291],[-120.81409,45.1575],[-120.730544,45.121456],[-120.719396,45.10714],[-120.725057,45.080937],[-120.510999,45.078929],[-120.491832,45.058414],[-120.476919,44.93272],[-120.466726,44.922481],[-120.464718,44.896042],[-120.445332,44.895169],[-120.437877,44.888054],[-120.452121,44.876725],[-120.453189,44.859799],[-120.413103,44.844388],[-120.3815,44.817796],[-121.753325,44.819516]]]},"id":41065},
{"type":"Feature","properties":{"name":"Lemhi"},"geometry":{"type":"Polygon","coordinates":[[[-113.306343,44.230418],[-113.322418,44.239982],[-113.323923,44.282903],[-113.351895,44.332942],[-113.390418,44.365925],[-113.403222,44.401857],[-113.425334,44.419337],[-113.439138,44.448909],[-113.46491,44.445942],[-113.490199,44.41513],[-113.518695,44.408577],[-113.575608,44.434689],[-113.649434,44.443414],[-113.704423,44.471247],[-113.787954,44.479217],[-113.828774,44.49662],[-113.881451,44.535275],[-113.901731,44.540311],[-114.021827,44.652109],[-114.081738,44.721891],[-114.142059,44.739625],[-114.209658,44.7374],[-114.212886,44.752529],[-114.189724,44.830108],[-114.212369,44.858428],[-114.257551,44.840186],[-114.267187,44.824862],[-114.295966,44.813574],[-114.3471,44.773511],[-114.35965,44.748658],[-114.394785,44.737934],[-114.400888,44.712948],[-114.372581,44.697339],[-114.380653,44.671486],[-114.401459,44.648159],[-114.432702,44.636901],[-114.448075,44.603881],[-114.472719,44.579715],[-114.494402,44.582861],[-114.504932,44.593092],[-114.545521,44.570581],[-114.594343,44.586063],[-114.58882,44.615166],[-114.608551,44.637878],[-114.631897,44.649242],[-114.658128,44.651988],[-114.701472,44.642244],[-114.731517,44.645951],[-114.742306,44.668946],[-114.768324,44.697678],[-114.796813,44.710468],[-114.813301,44.737205],[-114.797882,44.776203],[-114.811342,44.797417],[-114.790353,44.829484],[-114.771599,44.83191],[-114.760979,44.841779],[-114.766221,44.8583],[-114.750008,44.861681],[-114.728782,44.880037],[-114.733163,44.960471],[-114.717882,44.992629],[-114.727413,45.130721],[-114.715184,45.16706],[-114.691929,45.184936],[-114.67239,45.225719],[-114.599719,45.284297],[-114.642132,45.312923],[-114.709739,45.383559],[-114.74382,45.392821],[-114.763589,45.422862],[-114.798945,45.433959],[-114.792331,45.476821],[-114.781931,45.496306],[-114.764254,45.500133],[-114.678389,45.463935],[-114.662169,45.463199],[-114.631162,45.51295],[-114.589161,45.523643],[-114.560924,45.54874],[-114.527392,45.558193],[-114.496591,45.54665],[-114.462708,45.547848],[-114.433555,45.527634],[-114.419051,45.499008],[-114.371457,45.485741],[-114.350247,45.463383],[-114.326435,45.457425],[-114.262239,45.48586],[-114.24788,45.502946],[-114.241998,45.535291],[-114.194809,45.527917],[-114.172668,45.543924],[-114.132048,45.550383],[-114.118139,45.571127],[-114.082967,45.586379],[-114.056516,45.625144],[-114.018032,45.640773],[-114.01099,45.652511],[-114.019879,45.672378],[-114.009472,45.686332],[-113.971149,45.697376],[-113.964145,45.679378],[-113.926699,45.671211],[-113.923532,45.655125],[-113.9022,45.637253],[-113.903306,45.613491],[-113.852027,45.609562],[-113.822485,45.600636],[-113.803755,45.58373],[-113.833715,45.514908],[-113.780934,45.516865],[-113.772304,45.507054],[-113.769168,45.477708],[-113.785662,45.445634],[-113.775026,45.410172],[-113.74131,45.382386],[-113.739081,45.321531],[-113.688709,45.277788],[-113.69012,45.262282],[-113.645593,45.20679],[-113.600928,45.180992],[-113.594099,45.149743],[-113.571584,45.134545],[-113.574376,45.117711],[-113.552273,45.107549],[-113.510226,45.107836],[-113.520609,45.082064],[-113.490159,45.071219],[-113.486306,45.058322],[-113.455435,45.043349],[-113.458853,45.02745],[-113.441029,44.998195],[-113.448765,44.949523],[-113.463414,44.940775],[-113.487348,44.939574],[-113.496191,44.93067],[-113.445573,44.85124],[-113.421379,44.8337],[-113.350024,44.807569],[-113.340631,44.779],[-113.31868,44.780229],[-113.257154,44.810487],[-113.240338,44.811841],[-113.138274,44.761439],[-113.127431,44.737379],[-113.101703,44.715173],[-113.098956,44.695916],[-113.073144,44.675526],[-113.054289,44.624289],[-113.083037,44.582681],[-113.039661,44.556294],[-113.037821,44.532959],[-113.007713,44.510612],[-113.020309,44.481776],[-113.006659,44.452616],[-113.012015,44.437715],[-112.98525,44.43554],[-112.938281,44.407192],[-112.887308,44.392852],[-112.870781,44.369979],[-112.844275,44.35364],[-112.817397,44.364203],[-112.81871,44.39482],[-112.802016,44.395666],[-112.801385,44.219978],[-112.982819,44.228325],[-113.306343,44.230418]]]},"id":16059},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-67.150661,45.12199],[-67.065359,44.959296],[-67.146707,44.904581],[-66.969271,44.828655],[-67.007719,44.780625],[-67.200365,44.653781],[-67.308468,44.653521],[-67.38851,44.6914],[-67.570994,44.598333],[-67.618838,44.54024],[-67.811219,44.55401],[-67.858561,44.536077],[-67.900042,44.452399],[-67.968342,44.471228],[-67.963437,44.505327],[-67.986524,44.484812],[-68.011261,44.588364],[-67.994902,44.591744],[-68.014398,44.676258],[-68.0319,44.674758],[-68.094801,44.940894],[-67.979837,44.955447],[-68.050137,45.255971],[-67.937402,45.26834],[-68.044267,45.635781],[-67.803433,45.678114],[-67.752955,45.659289],[-67.718035,45.681299],[-67.61514,45.605199],[-67.439301,45.592561],[-67.416084,45.503555],[-67.504107,45.485816],[-67.418555,45.375852],[-67.47795,45.28028],[-67.439435,45.189584],[-67.345606,45.122252],[-67.274095,45.182783],[-67.165906,45.156264],[-67.150661,45.12199]]]},"id":23029},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-70.842876,45.278137],[-70.812666,45.354678],[-70.829132,45.390726],[-70.796967,45.425172],[-70.63493,45.391967],[-70.719911,45.512954],[-70.55227,45.660664],[-70.510411,45.513655],[-70.524777,45.512651],[-70.417641,45.145013],[-70.360321,45.152154],[-70.363106,45.160455],[-70.308502,45.16491],[-70.290054,45.112302],[-70.155348,45.126798],[-70.107472,44.948585],[-70.144552,44.94326],[-70.142019,44.919891],[-70.151678,44.920169],[-70.14768,44.899952],[-70.136685,44.900551],[-70.129597,44.855583],[-70.031726,44.865513],[-70.023936,44.833764],[-70.031756,44.83217],[-70.02962,44.813836],[-70.019198,44.815812],[-70.003107,44.761442],[-70.016169,44.758177],[-69.996605,44.675857],[-69.960356,44.680245],[-69.958471,44.668774],[-69.973822,44.659195],[-69.941518,44.64087],[-69.921611,44.608763],[-69.951076,44.577704],[-70.028692,44.589163],[-70.067831,44.534179],[-70.028118,44.511551],[-70.041103,44.486836],[-70.124426,44.486542],[-70.199142,44.479568],[-70.231269,44.466331],[-70.247261,44.501468],[-70.271302,44.507159],[-70.282862,44.541708],[-70.304041,44.541384],[-70.281008,44.575433],[-70.543563,44.609868],[-70.512678,44.623669],[-70.62169,44.793091],[-70.770504,44.736043],[-70.779254,44.849024],[-70.796435,44.921128],[-70.807383,44.921391],[-70.823923,45.008106],[-70.784219,45.014927],[-70.842876,45.278137]]]},"id":23007},
{"type":"Feature","properties":{"name":"Barron"},"geometry":{"type":"Polygon","coordinates":[[[-92.157817,45.638318],[-92.033444,45.640248],[-91.540905,45.640799],[-91.541988,45.293358],[-91.543369,45.211094],[-91.663758,45.210582],[-92.162332,45.213071],[-92.157817,45.638318]]]},"id":55005},
{"type":"Feature","properties":{"name":"Rusk"},"geometry":{"type":"Polygon","coordinates":[[[-90.675753,45.379556],[-90.92228,45.378098],[-90.925657,45.29307],[-91.541988,45.293358],[-91.540905,45.640799],[-90.677045,45.636901],[-90.675753,45.379556]]]},"id":55107},
{"type":"Feature","properties":{"name":"Carbon"},"geometry":{"type":"Polygon","coordinates":[[[-109.799385,44.999523],[-109.795608,45.173065],[-109.688769,45.17397],[-109.684794,45.256958],[-109.610863,45.257317],[-109.609856,45.299458],[-109.587776,45.299458],[-109.585418,45.325642],[-109.57054,45.326264],[-109.548583,45.374768],[-109.529799,45.375538],[-109.527014,45.388928],[-109.507497,45.38881],[-109.504553,45.400372],[-109.485761,45.401139],[-109.482465,45.416378],[-109.445988,45.41557],[-109.443745,45.428013],[-109.424945,45.428776],[-109.423572,45.443932],[-109.360498,45.444169],[-109.359079,45.458871],[-109.195926,45.460672],[-109.194454,45.517034],[-109.135988,45.518812],[-109.134272,45.58114],[-109.061493,45.583887],[-108.968205,45.608867],[-108.881875,45.605141],[-108.847015,45.61876],[-108.787489,45.634158],[-108.802251,45.549406],[-108.760547,45.549048],[-108.759341,45.523005],[-108.69677,45.521992],[-108.694899,45.467598],[-108.644223,45.468434],[-108.683546,45.426353],[-108.705365,45.329978],[-108.704142,45.220245],[-108.120612,45.214237],[-108.133849,45.187313],[-108.1687,45.154239],[-108.163611,45.134742],[-108.182555,45.127295],[-108.186186,45.102499],[-108.206725,45.100027],[-108.227317,45.077898],[-108.224898,45.049642],[-108.24311,45.041299],[-108.259239,45.000115],[-108.625256,44.997593],[-109.799385,44.999523]]]},"id":30009},
{"type":"Feature","properties":{"name":"Walworth"},"geometry":{"type":"Polygon","coordinates":[[[-99.716024,45.253018],[-100.270963,45.250797],[-100.276449,45.26878],[-100.322333,45.318501],[-100.312704,45.340184],[-100.282254,45.362668],[-100.279843,45.382723],[-100.295804,45.411059],[-100.336538,45.45013],[-100.344923,45.475055],[-100.370773,45.501828],[-100.457232,45.5151],[-100.479877,45.529875],[-100.490924,45.554862],[-100.486445,45.565726],[-100.438576,45.596499],[-99.72438,45.599585],[-99.708778,45.599089],[-99.716024,45.253018]]]},"id":46129},
{"type":"Feature","properties":{"name":"Edmunds"},"geometry":{"type":"Polygon","coordinates":[[[-98.727698,45.247199],[-99.573476,45.252066],[-99.716024,45.253018],[-99.708778,45.599089],[-98.732038,45.596134],[-98.724813,45.596763],[-98.727698,45.247199]]]},"id":46045},
{"type":"Feature","properties":{"name":"Day"},"geometry":{"type":"Polygon","coordinates":[[[-97.985348,45.156545],[-97.983946,45.244349],[-97.979545,45.589407],[-97.383403,45.589014],[-97.375224,45.559745],[-97.229918,45.558496],[-97.228548,45.302317],[-97.229133,45.155354],[-97.501187,45.157343],[-97.985348,45.156545]]]},"id":46037},
{"type":"Feature","properties":{"name":"Big Stone"},"geometry":{"type":"Polygon","coordinates":[[[-96.477592,45.328509],[-96.532549,45.375132],[-96.605085,45.396524],[-96.693169,45.410638],[-96.738032,45.458195],[-96.769246,45.517479],[-96.843087,45.58409],[-96.257386,45.587167],[-96.246163,45.585893],[-96.244856,45.411833],[-96.124294,45.41002],[-96.124717,45.243749],[-96.110877,45.241685],[-96.107617,45.182324],[-96.18148,45.194696],[-96.190368,45.199293],[-96.186203,45.20957],[-96.210831,45.209261],[-96.233507,45.221866],[-96.27035,45.226882],[-96.29932,45.250148],[-96.39359,45.257717],[-96.433912,45.277171],[-96.454497,45.275195],[-96.457602,45.29885],[-96.477592,45.328509]]]},"id":27011},
{"type":"Feature","properties":{"name":"Sherburne"},"geometry":{"type":"Polygon","coordinates":[[[-93.513572,45.413673],[-93.518577,45.248439],[-93.561921,45.279147],[-93.574793,45.298877],[-93.622479,45.293765],[-93.693367,45.307128],[-93.769672,45.303359],[-93.893305,45.358383],[-93.922504,45.387623],[-93.967878,45.386127],[-94.033441,45.414131],[-94.050211,45.431412],[-94.133322,45.486236],[-94.148002,45.519596],[-94.149406,45.558448],[-93.760808,45.561651],[-93.517073,45.558585],[-93.513572,45.413673]]]},"id":27141},
{"type":"Feature","properties":{"name":"Ziebach"},"geometry":{"type":"Polygon","coordinates":[[[-101.135384,44.749445],[-101.210601,44.703108],[-101.32637,44.684024],[-101.337562,44.693374],[-101.365989,44.689376],[-101.370979,44.660262],[-101.406371,44.658218],[-101.424216,44.644874],[-101.447921,44.646243],[-101.463385,44.610488],[-101.485266,44.608619],[-101.501394,44.588852],[-101.529409,44.577049],[-101.671988,44.589649],[-101.688994,44.579911],[-101.741126,44.574414],[-101.757018,44.55917],[-101.786376,44.543694],[-101.803718,44.542615],[-101.81694,44.530057],[-101.828904,44.536641],[-101.948033,44.53898],[-101.989386,44.52775],[-102.001249,44.516523],[-102.003641,45.043688],[-102.002441,45.474987],[-101.474666,45.476666],[-101.477348,45.388484],[-101.488341,45.389598],[-101.490851,45.046048],[-101.502501,45.04535],[-101.501655,44.99875],[-101.135201,44.995998],[-101.135384,44.749445]]]},"id":46137},
{"type":"Feature","properties":{"name":"Dewey"},"geometry":{"type":"Polygon","coordinates":[[[-100.718914,44.770925],[-100.737752,44.767275],[-100.747678,44.77482],[-100.764997,44.762457],[-100.792058,44.77498],[-100.816076,44.770529],[-100.862517,44.781671],[-100.893225,44.771429],[-100.918616,44.778864],[-100.937171,44.766966],[-100.962295,44.766165],[-100.971863,44.753603],[-101.015976,44.730402],[-101.066116,44.745203],[-101.135384,44.749445],[-101.135201,44.995998],[-101.501655,44.99875],[-101.502501,45.04535],[-101.490851,45.046048],[-101.488341,45.389598],[-101.477348,45.388484],[-101.474666,45.476666],[-100.344923,45.475055],[-100.336538,45.45013],[-100.295804,45.411059],[-100.279843,45.382723],[-100.282254,45.362668],[-100.312704,45.340184],[-100.322333,45.318501],[-100.276449,45.26878],[-100.270963,45.250797],[-100.290708,45.151696],[-100.317755,45.130501],[-100.332144,45.103931],[-100.331457,45.081066],[-100.309697,45.053508],[-100.280902,45.036723],[-100.283245,45.029475],[-100.302372,45.022238],[-100.377433,45.031592],[-100.411484,45.022917],[-100.424989,45.011851],[-100.428331,44.948901],[-100.406564,44.89762],[-100.397835,44.88003],[-100.407517,44.855627],[-100.468326,44.826189],[-100.541625,44.765547],[-100.600159,44.765677],[-100.622834,44.775385],[-100.666841,44.822145],[-100.70183,44.830774],[-100.717532,44.825682],[-100.730709,44.806368],[-100.718914,44.770925]]]},"id":46041},
{"type":"Feature","properties":{"name":"Clackamas"},"geometry":{"type":"Polygon","coordinates":[[[-122.866427,45.251062],[-122.869152,45.311814],[-122.847888,45.313657],[-122.847851,45.342958],[-122.804896,45.342065],[-122.80488,45.326959],[-122.743172,45.32686],[-122.743135,45.424821],[-122.654655,45.42444],[-122.658875,45.451276],[-121.814154,45.454758],[-121.797156,45.40823],[-121.721059,45.388954],[-121.704389,45.373524],[-121.696996,45.333069],[-121.670338,45.285966],[-121.685529,45.27126],[-121.682217,45.25171],[-121.682957,45.225156],[-121.737264,45.195821],[-121.74085,45.182431],[-121.709522,45.123635],[-121.663424,45.102837],[-121.659883,45.070499],[-121.70869,45.047314],[-121.716762,45.033318],[-121.760403,45.029034],[-121.80853,44.997152],[-121.809285,44.980669],[-121.791004,44.9507],[-121.793979,44.929109],[-121.761256,44.931649],[-121.72757,44.893082],[-121.72808,44.882096],[-121.752144,44.875763],[-122.395915,44.878354],[-122.403331,44.890397],[-122.445759,44.896451],[-122.470242,44.911912],[-122.510641,44.916657],[-122.516874,44.929662],[-122.557738,44.955403],[-122.568557,44.976903],[-122.584502,44.98219],[-122.592002,45.010228],[-122.679346,45.041775],[-122.726558,45.087337],[-122.78504,45.120063],[-122.776541,45.149249],[-122.754774,45.159793],[-122.749258,45.171008],[-122.739508,45.208488],[-122.743827,45.251319],[-122.779732,45.253897],[-122.782204,45.267523],[-122.821924,45.26901],[-122.840166,45.254953],[-122.866427,45.251062]]]},"id":41005},
{"type":"Feature","properties":{"name":"Wright"},"geometry":{"type":"Polygon","coordinates":[[[-94.25479,44.981217],[-94.261427,45.284587],[-94.25292,45.310961],[-94.194653,45.32215],[-94.165508,45.304412],[-94.123095,45.329204],[-94.09466,45.349845],[-94.050211,45.431412],[-94.033441,45.414131],[-93.967878,45.386127],[-93.922504,45.387623],[-93.893305,45.358383],[-93.769672,45.303359],[-93.693367,45.307128],[-93.622479,45.293765],[-93.574793,45.298877],[-93.561921,45.279147],[-93.518577,45.248439],[-93.528221,45.236266],[-93.553414,45.235049],[-93.605731,45.211062],[-93.652593,45.204138],[-93.649601,45.166288],[-93.682455,45.153383],[-93.712004,45.129152],[-93.728133,45.097562],[-93.768715,45.074792],[-93.770926,44.977383],[-94.014982,44.977616],[-94.25479,44.981217]]]},"id":27171},
{"type":"Feature","properties":{"name":"Yamhill"},"geometry":{"type":"Polygon","coordinates":[[[-123.071118,45.06854],[-123.723559,45.068559],[-123.785953,45.070912],[-123.782376,45.208441],[-123.464385,45.207171],[-123.46323,45.423824],[-123.140966,45.428815],[-123.140149,45.41282],[-123.11929,45.412393],[-123.116665,45.397863],[-123.033388,45.397494],[-123.032282,45.385184],[-123.015924,45.384082],[-123.014047,45.370429],[-122.991952,45.370498],[-122.992707,45.357189],[-122.97438,45.355717],[-122.972915,45.339298],[-122.909254,45.33936],[-122.907483,45.31197],[-122.869152,45.311814],[-122.866427,45.251062],[-122.940786,45.262902],[-122.967665,45.28048],[-123.005706,45.255898],[-122.997511,45.222397],[-123.035255,45.216587],[-123.045936,45.205582],[-123.044181,45.193302],[-123.023268,45.191498],[-123.005964,45.164815],[-123.005361,45.157979],[-123.028295,45.146424],[-123.000675,45.112886],[-123.020047,45.097837],[-123.051282,45.099633],[-123.044674,45.0766],[-123.071118,45.06854]]]},"id":41071},
{"type":"Feature","properties":{"name":"Anoka"},"geometry":{"type":"Polygon","coordinates":[[[-93.022924,45.127034],[-93.227223,45.125183],[-93.228168,45.037422],[-93.277852,45.036491],[-93.274351,45.100563],[-93.30265,45.143638],[-93.408656,45.197276],[-93.427937,45.216827],[-93.486333,45.229282],[-93.518577,45.248439],[-93.513572,45.413673],[-93.023016,45.41228],[-93.01898,45.298539],[-93.022924,45.127034]]]},"id":27003},
{"type":"Feature","properties":{"name":"Kandiyohi"},"geometry":{"type":"Polygon","coordinates":[[[-94.765488,45.3253],[-94.75746,44.892967],[-95.247732,44.892031],[-95.246404,45.155998],[-95.246949,45.237877],[-95.25866,45.238292],[-95.261053,45.409379],[-95.13379,45.411554],[-94.765299,45.413626],[-94.765488,45.3253]]]},"id":27067},
{"type":"Feature","properties":{"name":"Swift"},"geometry":{"type":"Polygon","coordinates":[[[-95.261053,45.409379],[-95.25866,45.238292],[-95.246949,45.237877],[-95.246404,45.155998],[-96.050332,45.153537],[-96.107617,45.182324],[-96.110877,45.241685],[-96.124717,45.243749],[-96.124294,45.41002],[-95.74524,45.412543],[-95.261053,45.409379]]]},"id":27151},
{"type":"Feature","properties":{"name":"Taylor"},"geometry":{"type":"Polygon","coordinates":[[[-90.925657,45.29307],[-90.92228,45.378098],[-90.675753,45.379556],[-90.043211,45.384037],[-90.043043,45.12457],[-90.195559,45.122045],[-90.19464,45.033922],[-90.30822,45.03192],[-90.920738,45.030489],[-90.925657,45.29307]]]},"id":55119},
{"type":"Feature","properties":{"name":"Oxford"},"geometry":{"type":"Polygon","coordinates":[[[-71.008597,44.282146],[-71.028726,44.668538],[-71.087509,45.301469],[-70.959382,45.338866],[-70.876444,45.225445],[-70.842876,45.278137],[-70.784219,45.014927],[-70.823923,45.008106],[-70.807383,44.921391],[-70.796435,44.921128],[-70.779254,44.849024],[-70.770504,44.736043],[-70.62169,44.793091],[-70.512678,44.623669],[-70.543563,44.609868],[-70.281008,44.575433],[-70.304041,44.541384],[-70.282862,44.541708],[-70.271302,44.507159],[-70.247261,44.501468],[-70.231269,44.466331],[-70.272796,44.445141],[-70.260374,44.368597],[-70.319066,44.218336],[-70.481373,44.034504],[-70.543839,44.009081],[-70.608484,44.05702],[-70.588873,44.121665],[-70.610582,44.156774],[-70.622751,44.168481],[-70.82205,44.079026],[-70.860259,44.092701],[-70.872657,44.086155],[-70.851301,44.066045],[-70.848249,44.049566],[-70.80415,44.038236],[-70.718584,43.966655],[-70.746858,43.946842],[-70.73182,43.929154],[-70.753961,43.904633],[-70.75554,43.871404],[-70.777117,43.87148],[-70.800548,43.859288],[-70.784136,43.81697],[-70.910497,43.799933],[-70.941534,43.786533],[-70.984443,43.791164],[-71.008597,44.282146]]]},"id":23017},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-96.886736,44.972824],[-96.887578,45.154185],[-97.229133,45.155354],[-97.228548,45.302317],[-97.013485,45.302319],[-96.998752,45.331329],[-96.477592,45.328509],[-96.457602,45.29885],[-96.454497,45.275195],[-96.45608,44.971995],[-96.886736,44.972824]]]},"id":46051},
{"type":"Feature","properties":{"name":"Meeker"},"geometry":{"type":"Polygon","coordinates":[[[-94.75746,44.892967],[-94.765488,45.3253],[-94.378695,45.327047],[-94.374955,45.284639],[-94.261427,45.284587],[-94.25479,44.981217],[-94.501159,44.976826],[-94.502745,44.894035],[-94.75746,44.892967]]]},"id":27093},
{"type":"Feature","properties":{"name":"Coos"},"geometry":{"type":"Polygon","coordinates":[[[-71.008597,44.282146],[-71.042448,44.28199],[-71.045736,44.236009],[-71.248511,44.2399],[-71.311332,44.119922],[-71.315352,44.082626],[-71.342742,44.082268],[-71.360558,44.164671],[-71.392343,44.183534],[-71.400324,44.208302],[-71.427752,44.208382],[-71.463825,44.250107],[-71.514928,44.248794],[-71.522001,44.26488],[-71.580429,44.255469],[-71.59108,44.297151],[-71.68932,44.338104],[-71.708539,44.336613],[-71.76657,44.398249],[-71.676884,44.421343],[-71.656399,44.440137],[-71.647709,44.469174],[-71.636555,44.476731],[-71.614223,44.474507],[-71.586619,44.494538],[-71.575244,44.525806],[-71.591441,44.538874],[-71.592288,44.551203],[-71.536791,44.578931],[-71.554103,44.596589],[-71.568027,44.637447],[-71.588749,44.650599],[-71.607679,44.677862],[-71.631133,44.741711],[-71.583501,44.779197],[-71.575101,44.81602],[-71.506365,44.899671],[-71.516978,44.943696],[-71.540927,44.976563],[-71.505372,45.013352],[-71.502999,45.05989],[-71.43041,45.116992],[-71.402523,45.202803],[-71.44656,45.236082],[-71.386378,45.23493],[-71.297236,45.293494],[-71.153089,45.237969],[-71.087509,45.301469],[-71.028726,44.668538],[-71.008597,44.282146]]]},"id":33007},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-92.755419,45.212377],[-92.762583,45.186612],[-92.744935,45.156423],[-92.745422,45.113004],[-92.796762,45.06561],[-92.762992,45.022119],[-92.767126,45.001005],[-92.749768,44.935656],[-92.753926,44.915003],[-92.771871,44.899496],[-92.764263,44.862234],[-92.761028,44.835371],[-92.805585,44.746161],[-92.879151,44.763952],[-92.915507,44.783121],[-92.961758,44.769147],[-93.019211,44.785001],[-93.010651,44.867875],[-93.019067,44.893231],[-92.985047,44.895951],[-92.983455,45.126695],[-93.022924,45.127034],[-93.01898,45.298539],[-92.746593,45.297603],[-92.755419,45.212377]]]},"id":27163},
{"type":"Feature","properties":{"name":"Chippewa"},"geometry":{"type":"Polygon","coordinates":[[[-90.923538,44.857435],[-91.652999,44.855464],[-91.649979,45.124011],[-91.661652,45.125194],[-91.663758,45.210582],[-91.543369,45.211094],[-91.541988,45.293358],[-90.925657,45.29307],[-90.920738,45.030489],[-90.923538,44.857435]]]},"id":55017},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-123.124956,44.736797],[-123.147196,44.747661],[-123.150477,44.769462],[-123.145571,44.779284],[-123.097955,44.794265],[-123.094766,44.80173],[-123.11471,44.815451],[-123.170879,44.823389],[-123.179951,44.844923],[-123.146534,44.867499],[-123.135929,44.892683],[-123.113826,44.905123],[-123.112575,44.919821],[-123.07413,44.930258],[-123.038035,44.952471],[-123.035967,44.972689],[-123.073688,45.003923],[-123.056462,45.049531],[-123.071118,45.06854],[-123.044674,45.0766],[-123.051282,45.099633],[-123.020047,45.097837],[-123.000675,45.112886],[-123.028295,45.146424],[-123.005361,45.157979],[-123.005964,45.164815],[-123.023268,45.191498],[-123.044181,45.193302],[-123.045936,45.205582],[-123.035255,45.216587],[-122.997511,45.222397],[-123.005706,45.255898],[-122.967665,45.28048],[-122.940786,45.262902],[-122.866427,45.251062],[-122.840166,45.254953],[-122.821924,45.26901],[-122.782204,45.267523],[-122.779732,45.253897],[-122.743827,45.251319],[-122.739508,45.208488],[-122.749258,45.171008],[-122.754774,45.159793],[-122.776541,45.149249],[-122.78504,45.120063],[-122.726558,45.087337],[-122.679346,45.041775],[-122.592002,45.010228],[-122.584502,44.98219],[-122.568557,44.976903],[-122.557738,44.955403],[-122.516874,44.929662],[-122.510641,44.916657],[-122.470242,44.911912],[-122.445759,44.896451],[-122.403331,44.890397],[-122.395915,44.878354],[-121.752144,44.875763],[-121.753325,44.819516],[-121.801513,44.80866],[-121.811622,44.796876],[-121.807806,44.770513],[-121.771489,44.757649],[-121.8,44.724199],[-121.796725,44.678178],[-122.034265,44.682236],[-122.142796,44.714196],[-122.188657,44.691407],[-122.214666,44.686742],[-122.227728,44.689428],[-122.254584,44.720361],[-122.297355,44.748829],[-122.481648,44.751004],[-122.513432,44.746041],[-122.540525,44.762288],[-122.588354,44.772183],[-122.610594,44.784047],[-122.680511,44.772874],[-122.75422,44.791207],[-122.799952,44.791058],[-122.861057,44.75274],[-122.898953,44.736905],[-122.923405,44.736737],[-122.953626,44.721676],[-122.981535,44.687978],[-123.003363,44.680146],[-123.016989,44.688675],[-123.015051,44.710244],[-123.049827,44.731987],[-123.111505,44.744728],[-123.124956,44.736797]]]},"id":41047},
{"type":"Feature","properties":{"name":"Lac qui Parle"},"geometry":{"type":"Polygon","coordinates":[[[-96.050332,45.153537],[-96.028312,45.127147],[-95.831461,44.991043],[-95.8023,44.948959],[-95.735938,44.936965],[-95.737578,44.892062],[-95.847048,44.889206],[-95.846941,44.80597],[-96.455217,44.801348],[-96.45608,44.971995],[-96.454497,45.275195],[-96.433912,45.277171],[-96.39359,45.257717],[-96.29932,45.250148],[-96.27035,45.226882],[-96.233507,45.221866],[-96.210831,45.209261],[-96.186203,45.20957],[-96.190368,45.199293],[-96.18148,45.194696],[-96.107617,45.182324],[-96.050332,45.153537]]]},"id":27073},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-116.146775,44.496438],[-116.187182,44.490761],[-116.208232,44.497726],[-116.234249,44.46231],[-116.261174,44.457904],[-116.297857,44.438952],[-116.407243,44.440851],[-116.520156,44.48827],[-116.521887,44.605935],[-116.600123,44.608474],[-116.597986,44.643592],[-116.622936,44.657347],[-116.620674,44.830262],[-116.909621,44.82894],[-116.897367,44.848555],[-116.867076,44.868608],[-116.835396,44.920144],[-116.847557,44.95485],[-116.831397,44.972634],[-116.848159,44.971741],[-116.855888,44.979966],[-116.848097,45.000042],[-116.854513,45.016945],[-116.807307,45.049755],[-116.78721,45.075753],[-116.778092,45.09948],[-116.761268,45.106301],[-116.736585,45.137307],[-116.688813,45.262351],[-116.331308,45.260603],[-116.29679,45.217033],[-116.314461,45.198394],[-116.291908,45.128403],[-116.30571,45.106556],[-116.137112,45.102384],[-116.129155,45.068087],[-116.085354,45.059581],[-116.08221,45.053622],[-116.09782,45.044592],[-116.098072,45.025874],[-116.11694,45.01459],[-116.124425,44.985415],[-116.116529,44.947931],[-116.154211,44.924893],[-116.15718,44.893872],[-116.192971,44.863056],[-116.203205,44.760443],[-116.176448,44.74066],[-116.154774,44.675738],[-116.179756,44.575089],[-116.146775,44.496438]]]},"id":16003},
{"type":"Feature","properties":{"name":"Potter"},"geometry":{"type":"Polygon","coordinates":[[[-100.406564,44.89762],[-100.428331,44.948901],[-100.424989,45.011851],[-100.411484,45.022917],[-100.377433,45.031592],[-100.302372,45.022238],[-100.283245,45.029475],[-100.280902,45.036723],[-100.309697,45.053508],[-100.331457,45.081066],[-100.332144,45.103931],[-100.317755,45.130501],[-100.290708,45.151696],[-100.270963,45.250797],[-99.716024,45.253018],[-99.573476,45.252066],[-99.574932,44.896491],[-99.674846,44.897014],[-100.406564,44.89762]]]},"id":46107},
{"type":"Feature","properties":{"name":"Faulk"},"geometry":{"type":"Polygon","coordinates":[[[-98.722004,44.891654],[-99.314545,44.894494],[-99.574932,44.896491],[-99.573476,45.252066],[-98.727698,45.247199],[-98.722004,44.891654]]]},"id":46049},
{"type":"Feature","properties":{"name":"Hennepin"},"geometry":{"type":"Polygon","coordinates":[[[-93.770926,44.977383],[-93.768715,45.074792],[-93.728133,45.097562],[-93.712004,45.129152],[-93.682455,45.153383],[-93.649601,45.166288],[-93.652593,45.204138],[-93.605731,45.211062],[-93.553414,45.235049],[-93.528221,45.236266],[-93.518577,45.248439],[-93.486333,45.229282],[-93.427937,45.216827],[-93.408656,45.197276],[-93.30265,45.143638],[-93.274351,45.100563],[-93.277852,45.036491],[-93.228168,45.037422],[-93.210727,45.037449],[-93.202515,44.91204],[-93.166885,44.897034],[-93.23137,44.827663],[-93.326381,44.788443],[-93.377462,44.792456],[-93.394423,44.807489],[-93.427787,44.816564],[-93.469758,44.807561],[-93.523936,44.809137],[-93.525097,44.893152],[-93.767469,44.892503],[-93.770926,44.977383]]]},"id":27053},
{"type":"Feature","properties":{"name":"Spink"},"geometry":{"type":"Polygon","coordinates":[[[-98.704935,44.63325],[-98.703319,44.891371],[-98.722004,44.891654],[-98.727698,45.247199],[-97.983946,45.244349],[-97.985348,45.156545],[-97.985399,44.62927],[-98.704935,44.63325]]]},"id":46115},
{"type":"Feature","properties":{"name":"St. Croix"},"geometry":{"type":"Polygon","coordinates":[[[-92.138564,44.855918],[-92.764263,44.862234],[-92.771871,44.899496],[-92.753926,44.915003],[-92.749768,44.935656],[-92.767126,45.001005],[-92.762992,45.022119],[-92.796762,45.06561],[-92.745422,45.113004],[-92.744935,45.156423],[-92.762583,45.186612],[-92.755419,45.212377],[-92.162332,45.213071],[-92.160776,45.124925],[-92.141938,45.122556],[-92.138564,44.855918]]]},"id":55109},
{"type":"Feature","properties":{"name":"Dunn"},"geometry":{"type":"Polygon","coordinates":[[[-91.653842,44.680653],[-92.13489,44.679802],[-92.138564,44.855918],[-92.141938,45.122556],[-92.160776,45.124925],[-92.162332,45.213071],[-91.663758,45.210582],[-91.661652,45.125194],[-91.649979,45.124011],[-91.652999,44.855464],[-91.653842,44.680653]]]},"id":55033},
{"type":"Feature","properties":{"name":"Butte"},"geometry":{"type":"Polygon","coordinates":[[[-103.563054,44.607853],[-103.829879,44.605724],[-103.84594,44.594798],[-103.900439,44.598041],[-103.931881,44.583465],[-104.001128,44.574363],[-104.028702,44.581657],[-104.059465,44.574353],[-104.059842,44.997336],[-104.043072,44.997806],[-104.043851,45.212875],[-102.9624,45.211167],[-102.961814,45.040364],[-102.968509,44.604587],[-103.563054,44.607853]]]},"id":46019},
{"type":"Feature","properties":{"name":"Valley"},"geometry":{"type":"Polygon","coordinates":[[[-115.284497,44.330826],[-115.311667,44.343029],[-115.346297,44.337989],[-115.343146,44.310142],[-115.351164,44.295653],[-115.378874,44.285052],[-115.396178,44.255175],[-115.452842,44.233056],[-115.499314,44.237236],[-115.532076,44.226658],[-116.097833,44.228507],[-116.118728,44.1416],[-116.207897,44.143529],[-116.203911,44.320344],[-116.14578,44.320898],[-116.146775,44.496438],[-116.179756,44.575089],[-116.154774,44.675738],[-116.176448,44.74066],[-116.203205,44.760443],[-116.192971,44.863056],[-116.15718,44.893872],[-116.154211,44.924893],[-116.116529,44.947931],[-116.124425,44.985415],[-116.11694,45.01459],[-116.098072,45.025874],[-116.09782,45.044592],[-116.08221,45.053622],[-116.085354,45.059581],[-116.129155,45.068087],[-116.137112,45.102384],[-116.134869,45.125658],[-116.120396,45.145204],[-116.049099,45.157509],[-115.976535,45.209048],[-115.96844,45.187972],[-114.691929,45.184936],[-114.715184,45.16706],[-114.727413,45.130721],[-114.717882,44.992629],[-114.733163,44.960471],[-114.728782,44.880037],[-114.750008,44.861681],[-114.766221,44.8583],[-114.760979,44.841779],[-114.771599,44.83191],[-114.790353,44.829484],[-114.811342,44.797417],[-114.845026,44.770126],[-114.8819,44.763408],[-114.941907,44.714605],[-115.003013,44.712335],[-115.029282,44.736909],[-115.077555,44.757233],[-115.139401,44.729358],[-115.135571,44.705119],[-115.148152,44.668334],[-115.190023,44.615072],[-115.249886,44.607659],[-115.252732,44.596749],[-115.270661,44.597893],[-115.288484,44.578052],[-115.294694,44.560798],[-115.284127,44.522346],[-115.26912,44.508014],[-115.238586,44.499859],[-115.217587,44.421597],[-115.251103,44.362309],[-115.271833,44.351635],[-115.284497,44.330826]]]},"id":16085},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-97.857633,44.542554],[-97.85945,44.628558],[-97.985399,44.62927],[-97.985348,45.156545],[-97.501187,45.157343],[-97.495462,44.802455],[-97.502073,44.54032],[-97.857633,44.542554]]]},"id":46025},
{"type":"Feature","properties":{"name":"Codington"},"geometry":{"type":"Polygon","coordinates":[[[-96.886736,44.972824],[-96.885718,44.799312],[-97.495462,44.802455],[-97.501187,45.157343],[-97.229133,45.155354],[-96.887578,45.154185],[-96.886736,44.972824]]]},"id":46029},
{"type":"Feature","properties":{"name":"Chippewa"},"geometry":{"type":"Polygon","coordinates":[[[-95.4856,44.758613],[-95.525038,44.774673],[-95.506407,44.789684],[-95.519736,44.801883],[-95.613406,44.853885],[-95.633846,44.879932],[-95.66879,44.902106],[-95.711851,44.906981],[-95.735938,44.936965],[-95.8023,44.948959],[-95.831461,44.991043],[-96.028312,45.127147],[-96.050332,45.153537],[-95.246404,45.155998],[-95.247732,44.892031],[-95.485663,44.889839],[-95.4856,44.758613]]]},"id":27023},
{"type":"Feature","properties":{"name":"Ramsey"},"geometry":{"type":"Polygon","coordinates":[[[-93.019067,44.893231],[-93.052005,44.918854],[-93.063755,44.94595],[-93.074208,44.948414],[-93.111555,44.935078],[-93.166885,44.897034],[-93.202515,44.91204],[-93.210727,45.037449],[-93.228168,45.037422],[-93.227223,45.125183],[-93.022924,45.127034],[-92.983455,45.126695],[-92.985047,44.895951],[-93.019067,44.893231]]]},"id":27123},
{"type":"Feature","properties":{"name":"Baker"},"geometry":{"type":"Polygon","coordinates":[[[-117.217456,44.300665],[-117.483056,44.298603],[-117.485554,44.379734],[-117.504102,44.380123],[-117.50614,44.396981],[-117.527251,44.39827],[-117.528632,44.411484],[-117.565102,44.413159],[-117.564561,44.425019],[-117.588236,44.425827],[-117.590923,44.439949],[-117.963918,44.438688],[-117.963742,44.425928],[-118.01167,44.422834],[-118.010761,44.404604],[-118.031842,44.403528],[-118.031505,44.381193],[-118.051296,44.379671],[-118.051676,44.362799],[-118.072726,44.36035],[-118.071253,44.348051],[-118.090403,44.346529],[-118.088709,44.321016],[-118.111033,44.319006],[-118.111475,44.30715],[-118.133791,44.30514],[-118.133547,44.290556],[-118.152667,44.288565],[-118.151567,44.261225],[-118.194293,44.259486],[-118.195987,44.246707],[-118.229794,44.246398],[-118.502255,44.247248],[-118.503675,44.253615],[-118.487714,44.311232],[-118.417263,44.363062],[-118.431424,44.398019],[-118.425634,44.426805],[-118.411237,44.442002],[-118.368603,44.453847],[-118.374357,44.51672],[-118.354978,44.540637],[-118.322614,44.556922],[-118.312757,44.577547],[-118.354294,44.634147],[-118.437822,44.639209],[-118.489521,44.65552],[-118.514295,44.672579],[-118.517431,44.697633],[-118.466107,44.70049],[-118.452915,44.714321],[-118.419528,44.715591],[-118.370539,44.739371],[-118.350649,44.740939],[-118.31894,44.72985],[-118.29332,44.734207],[-118.282296,44.763056],[-118.321588,44.832493],[-118.298135,44.850974],[-118.238395,44.857928],[-118.226363,44.868994],[-118.240295,44.891228],[-118.228645,44.923742],[-118.249084,44.948661],[-118.214347,44.988691],[-118.176681,45.010946],[-118.104163,45.0353],[-118.082075,45.026348],[-118.064963,45.005483],[-118.009886,44.989936],[-117.892659,45.003091],[-117.894947,45.029557],[-117.871326,45.049801],[-117.84872,45.049031],[-117.780209,44.986447],[-117.564138,44.988446],[-117.562878,45.068804],[-117.256115,45.073396],[-116.78721,45.075753],[-116.807307,45.049755],[-116.854513,45.016945],[-116.848097,45.000042],[-116.855888,44.979966],[-116.848159,44.971741],[-116.831397,44.972634],[-116.847557,44.95485],[-116.835396,44.920144],[-116.867076,44.868608],[-116.897367,44.848555],[-116.909621,44.82894],[-116.951494,44.776035],[-117.039572,44.749116],[-117.066513,44.697557],[-117.079354,44.689336],[-117.130504,44.572524],[-117.14394,44.559287],[-117.145161,44.534656],[-117.187391,44.511806],[-117.203963,44.485785],[-117.22441,44.472987],[-117.217222,44.427855],[-117.236921,44.389983],[-117.201602,44.339438],[-117.217456,44.300665]]]},"id":41001},
{"type":"Feature","properties":{"name":"Polk"},"geometry":{"type":"Polygon","coordinates":[[[-123.147806,44.711975],[-123.604169,44.710774],[-123.698898,44.711545],[-123.700302,44.725651],[-123.724106,44.725373],[-123.724322,45.037398],[-123.723559,45.068559],[-123.071118,45.06854],[-123.056462,45.049531],[-123.073688,45.003923],[-123.035967,44.972689],[-123.038035,44.952471],[-123.07413,44.930258],[-123.112575,44.919821],[-123.113826,44.905123],[-123.135929,44.892683],[-123.146534,44.867499],[-123.179951,44.844923],[-123.170879,44.823389],[-123.11471,44.815451],[-123.094766,44.80173],[-123.097955,44.794265],[-123.145571,44.779284],[-123.150477,44.769462],[-123.147196,44.747661],[-123.124956,44.736797],[-123.147806,44.711975]]]},"id":41053},
{"type":"Feature","properties":{"name":"Wheeler"},"geometry":{"type":"Polygon","coordinates":[[[-120.381972,44.558045],[-120.384977,44.746027],[-120.401939,44.788969],[-120.381133,44.797716],[-120.3815,44.817796],[-120.413103,44.844388],[-120.453189,44.859799],[-120.452121,44.876725],[-120.437877,44.888054],[-120.445332,44.895169],[-120.464718,44.896042],[-120.466726,44.922481],[-120.476919,44.93272],[-120.491832,45.058414],[-119.791013,45.062018],[-119.791109,44.986652],[-119.672422,44.9877],[-119.668202,44.816557],[-119.655895,44.81452],[-119.652897,44.29766],[-119.897031,44.300777],[-119.898522,44.380554],[-120.021444,44.383295],[-120.024842,44.430658],[-120.380715,44.430318],[-120.381972,44.558045]]]},"id":41069},
{"type":"Feature","properties":{"name":"Meade"},"geometry":{"type":"Polygon","coordinates":[[[-102.001249,44.516523],[-102.040595,44.507528],[-102.055808,44.490877],[-102.076484,44.484339],[-102.116776,44.440214],[-102.14219,44.446959],[-102.156976,44.444426],[-102.167597,44.430433],[-102.193759,44.433073],[-102.22282,44.447146],[-102.227665,44.457697],[-102.282796,44.454314],[-102.304838,44.443198],[-102.303807,44.382078],[-102.342817,44.355669],[-102.371824,44.265305],[-102.368711,44.235638],[-102.39472,44.214986],[-102.402869,44.193662],[-102.403739,44.184098],[-102.390341,44.184396],[-102.40428,44.160863],[-102.395682,44.147089],[-103.455811,44.145639],[-103.455514,44.262303],[-103.578663,44.264577],[-103.574948,44.348435],[-103.567913,44.348869],[-103.563054,44.607853],[-102.968509,44.604587],[-102.961814,45.040364],[-102.003641,45.043688],[-102.001249,44.516523]]]},"id":46093},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-124.118319,44.269515],[-124.054405,44.662139],[-124.075568,44.814739],[-124.007573,45.036103],[-123.724322,45.037398],[-123.724106,44.725373],[-123.700302,44.725651],[-123.698898,44.711545],[-123.604169,44.710774],[-123.602559,44.641805],[-123.594701,44.640363],[-123.599422,44.425735],[-123.716872,44.426715],[-123.716002,44.379226],[-123.735907,44.379592],[-123.734839,44.336684],[-123.816033,44.335292],[-123.818474,44.308658],[-123.77526,44.305385],[-123.775389,44.274761],[-123.942867,44.272968],[-123.946034,44.266407],[-124.118319,44.269515]]]},"id":41041},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-90.311742,44.682302],[-90.314388,44.422776],[-90.797339,44.422596],[-90.799637,44.508767],[-90.921398,44.512081],[-90.923099,44.5928],[-90.923538,44.857435],[-90.920738,45.030489],[-90.30822,45.03192],[-90.311742,44.682302]]]},"id":55019},
{"type":"Feature","properties":{"name":"Essex"},"geometry":{"type":"Polygon","coordinates":[[[-71.942068,44.769215],[-71.974341,44.786594],[-71.883474,44.874194],[-71.932203,44.902346],[-71.901869,45.00734],[-71.505372,45.013352],[-71.540927,44.976563],[-71.516978,44.943696],[-71.506365,44.899671],[-71.575101,44.81602],[-71.583501,44.779197],[-71.631133,44.741711],[-71.607679,44.677862],[-71.588749,44.650599],[-71.568027,44.637447],[-71.554103,44.596589],[-71.536791,44.578931],[-71.592288,44.551203],[-71.591441,44.538874],[-71.575244,44.525806],[-71.586619,44.494538],[-71.614223,44.474507],[-71.636555,44.476731],[-71.647709,44.469174],[-71.656399,44.440137],[-71.676884,44.421343],[-71.76657,44.398249],[-71.797729,44.384173],[-71.821197,44.35036],[-71.834816,44.344199],[-71.931514,44.442406],[-71.857493,44.496425],[-71.911198,44.541064],[-71.853046,44.616326],[-71.906697,44.645007],[-71.843563,44.712446],[-71.942068,44.769215]]]},"id":50009},
{"type":"Feature","properties":{"name":"Grand Isle"},"geometry":{"type":"Polygon","coordinates":[[[-73.347812,44.553972],[-73.371296,44.579167],[-73.381825,44.619808],[-73.370137,44.634349],[-73.373097,44.661276],[-73.358151,44.680369],[-73.373159,44.724236],[-73.326786,44.799294],[-73.369054,44.819118],[-73.382307,44.847934],[-73.336415,44.932604],[-73.350758,44.981973],[-73.344724,45.006139],[-73.188546,45.008486],[-73.23652,44.932532],[-73.208521,44.901787],[-73.198611,44.867959],[-73.199657,44.834645],[-73.22015,44.787767],[-73.225444,44.718447],[-73.227305,44.668274],[-73.260202,44.595017],[-73.280893,44.579167],[-73.347812,44.553972]]]},"id":50013},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-73.225444,44.718447],[-73.22015,44.787767],[-73.199657,44.834645],[-73.198611,44.867959],[-73.208521,44.901787],[-73.23652,44.932532],[-73.188546,45.008486],[-72.547231,45.00537],[-72.530488,44.826704],[-72.573947,44.780169],[-72.60642,44.796027],[-72.751373,44.784224],[-72.764235,44.749206],[-72.807106,44.687546],[-72.852451,44.702537],[-72.893115,44.650875],[-72.921422,44.647],[-72.928738,44.631092],[-73.02668,44.646892],[-73.225444,44.718447]]]},"id":50011},
{"type":"Feature","properties":{"name":"Orleans"},"geometry":{"type":"Polygon","coordinates":[[[-72.371728,44.578486],[-72.368967,44.586661],[-72.479596,44.629022],[-72.419757,44.718208],[-72.573947,44.780169],[-72.530488,44.826704],[-72.547231,45.00537],[-71.901869,45.00734],[-71.932203,44.902346],[-71.883474,44.874194],[-71.974341,44.786594],[-71.942068,44.769215],[-72.017532,44.69597],[-72.115847,44.740742],[-72.097627,44.68025],[-72.151141,44.696057],[-72.269484,44.539799],[-72.371728,44.578486]]]},"id":50019},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-74.021539,44.990847],[-73.344724,45.006139],[-73.350758,44.981973],[-73.336415,44.932604],[-73.382307,44.847934],[-73.369054,44.819118],[-73.326786,44.799294],[-73.373159,44.724236],[-73.358151,44.680369],[-73.373097,44.661276],[-73.370137,44.634349],[-73.381825,44.619808],[-73.371296,44.579167],[-73.347812,44.553972],[-73.334452,44.544328],[-73.469725,44.536268],[-73.477507,44.523988],[-73.466071,44.511629],[-73.504058,44.484412],[-73.539894,44.486822],[-73.57016,44.46002],[-73.627802,44.45244],[-73.676517,44.435697],[-73.702091,44.439401],[-73.731541,44.433084],[-73.744954,44.439496],[-73.910685,44.424661],[-73.964264,44.69969],[-73.996377,44.700155],[-74.021539,44.990847]]]},"id":36019},
{"type":"Feature","properties":{"name":"Park"},"geometry":{"type":"Polygon","coordinates":[[[-111.051616,44.66449],[-111.053429,44.995695],[-110.429649,44.992285],[-110.39276,44.998625],[-109.995529,45.002793],[-109.799385,44.999523],[-108.625256,44.997593],[-108.623126,44.863313],[-108.599329,44.864133],[-108.592482,44.527752],[-108.578985,44.527302],[-108.579019,44.168125],[-108.557313,44.167958],[-108.558479,44.080788],[-108.795512,44.080643],[-108.7977,43.994351],[-108.922187,43.990696],[-108.925741,43.916672],[-109.085774,43.914269],[-109.087855,43.822976],[-109.311781,43.820093],[-109.331382,43.835268],[-109.368296,43.844271],[-109.377216,43.876749],[-109.404973,43.890215],[-109.416777,43.910718],[-109.465723,43.934251],[-109.480503,43.951889],[-109.513341,43.940945],[-109.55481,43.95792],[-109.56749,43.957386],[-109.585733,43.939281],[-109.611094,43.945964],[-109.617541,43.931545],[-109.648029,43.915649],[-109.675112,43.84377],[-109.739439,43.830502],[-109.802215,43.80677],[-109.860004,43.82886],[-109.852978,43.850615],[-109.824397,43.858263],[-109.828434,43.883181],[-109.851484,43.907262],[-109.852973,43.924535],[-109.872535,43.930058],[-109.865501,43.951817],[-109.920023,43.94939],[-109.957989,43.96138],[-110.002363,43.952071],[-110.036079,44.002116],[-110.057625,44.007979],[-110.058016,44.133962],[-110.094943,44.140031],[-110.107288,44.14951],[-110.115078,44.165135],[-110.109203,44.18504],[-110.117619,44.193329],[-110.108524,44.198772],[-110.112339,44.212749],[-110.13548,44.235435],[-110.154371,44.29576],[-110.181579,44.306376],[-110.19284,44.303565],[-110.207665,44.325716],[-110.220704,44.328306],[-110.235467,44.377409],[-110.295956,44.428475],[-110.286587,44.500207],[-110.310605,44.544319],[-110.342017,44.543743],[-110.370415,44.551982],[-110.374527,44.581957],[-110.668618,44.579462],[-110.668351,44.661321],[-111.051616,44.66449]]]},"id":56029},
{"type":"Feature","properties":{"name":"Crook"},"geometry":{"type":"Polygon","coordinates":[[[-105.080896,44.182914],[-105.086727,44.787105],[-105.072596,44.788131],[-105.071513,44.882156],[-105.08633,44.882488],[-105.085003,44.999817],[-105.041796,45.001076],[-104.059842,44.997336],[-104.059465,44.574353],[-104.061036,44.181825],[-105.080896,44.182914]]]},"id":56011},
{"type":"Feature","properties":{"name":"Big Horn"},"geometry":{"type":"Polygon","coordinates":[[[-108.557313,44.167958],[-108.579019,44.168125],[-108.578985,44.527302],[-108.592482,44.527752],[-108.599329,44.864133],[-108.623126,44.863313],[-108.625256,44.997593],[-108.259239,45.000115],[-107.894374,44.999774],[-107.879733,44.981013],[-107.878916,44.944487],[-107.856255,44.92047],[-107.863014,44.880995],[-107.838393,44.856124],[-107.822942,44.822307],[-107.833311,44.789584],[-107.757525,44.769363],[-107.760675,44.733653],[-107.738679,44.719665],[-107.683462,44.709324],[-107.679556,44.684776],[-107.670324,44.680466],[-107.619037,44.694649],[-107.561052,44.679768],[-107.555345,44.668965],[-107.533722,44.660863],[-107.539459,44.635606],[-107.500372,44.637094],[-107.493276,44.611718],[-107.483404,44.606954],[-107.43336,44.60734],[-107.430239,44.596464],[-107.390778,44.590171],[-107.378883,44.557612],[-107.350576,44.542812],[-107.338605,44.521209],[-107.311313,44.500446],[-107.314868,44.468418],[-107.306132,44.459968],[-107.270401,44.449444],[-107.226599,44.457352],[-107.208959,44.450021],[-107.199666,44.402344],[-107.173244,44.398415],[-107.175037,44.381951],[-107.163341,44.364437],[-107.177196,44.332637],[-107.145174,44.317436],[-107.142907,44.158339],[-108.557313,44.167958]]]},"id":56003},
{"type":"Feature","properties":{"name":"Campbell"},"geometry":{"type":"Polygon","coordinates":[[[-105.084019,43.500177],[-106.028041,43.494951],[-106.019912,43.818838],[-106.004042,43.818167],[-106.008669,44.169399],[-106.020762,44.168762],[-106.025145,44.52982],[-106.016805,44.529492],[-106.016325,44.556412],[-106.011035,44.874554],[-106.023319,44.876195],[-106.021151,44.997214],[-105.085003,44.999817],[-105.08633,44.882488],[-105.071513,44.882156],[-105.072596,44.788131],[-105.086727,44.787105],[-105.080896,44.182914],[-105.084019,43.500177]]]},"id":56005},
{"type":"Feature","properties":{"name":"Sheridan"},"geometry":{"type":"Polygon","coordinates":[[[-106.021151,44.997214],[-106.023319,44.876195],[-106.011035,44.874554],[-106.016325,44.556412],[-107.378883,44.557612],[-107.390778,44.590171],[-107.430239,44.596464],[-107.43336,44.60734],[-107.483404,44.606954],[-107.493276,44.611718],[-107.500372,44.637094],[-107.539459,44.635606],[-107.533722,44.660863],[-107.555345,44.668965],[-107.561052,44.679768],[-107.619037,44.694649],[-107.670324,44.680466],[-107.679556,44.684776],[-107.683462,44.709324],[-107.738679,44.719665],[-107.760675,44.733653],[-107.757525,44.769363],[-107.833311,44.789584],[-107.822942,44.822307],[-107.838393,44.856124],[-107.863014,44.880995],[-107.856255,44.92047],[-107.878916,44.944487],[-107.879733,44.981013],[-107.894374,44.999774],[-106.259232,44.996163],[-106.021151,44.997214]]]},"id":56033},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-74.021539,44.990847],[-73.996377,44.700155],[-73.964264,44.69969],[-73.910685,44.424661],[-74.135158,44.400461],[-74.09195,44.137514],[-74.278504,44.118575],[-74.536228,44.095912],[-74.553274,44.15599],[-74.533696,44.177944],[-74.64874,44.94501],[-74.715152,44.946953],[-74.736108,44.992916],[-74.021539,44.990847]]]},"id":36033},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-118.229794,44.246398],[-118.225249,44.029975],[-118.346042,44.027437],[-118.346164,44.033816],[-118.817701,44.041407],[-118.818615,43.956648],[-119.657305,43.953869],[-119.652897,44.29766],[-119.655895,44.81452],[-119.668202,44.816557],[-119.672422,44.9877],[-119.160146,44.989163],[-118.519436,44.986506],[-118.48456,44.984613],[-118.430488,44.959632],[-118.366986,44.976271],[-118.29561,44.954154],[-118.249084,44.948661],[-118.228645,44.923742],[-118.240295,44.891228],[-118.226363,44.868994],[-118.238395,44.857928],[-118.298135,44.850974],[-118.321588,44.832493],[-118.282296,44.763056],[-118.29332,44.734207],[-118.31894,44.72985],[-118.350649,44.740939],[-118.370539,44.739371],[-118.419528,44.715591],[-118.452915,44.714321],[-118.466107,44.70049],[-118.517431,44.697633],[-118.514295,44.672579],[-118.489521,44.65552],[-118.437822,44.639209],[-118.354294,44.634147],[-118.312757,44.577547],[-118.322614,44.556922],[-118.354978,44.540637],[-118.374357,44.51672],[-118.368603,44.453847],[-118.411237,44.442002],[-118.425634,44.426805],[-118.431424,44.398019],[-118.417263,44.363062],[-118.487714,44.311232],[-118.503675,44.253615],[-118.502255,44.247248],[-118.229794,44.246398]]]},"id":41023},
{"type":"Feature","properties":{"name":"McLeod"},"geometry":{"type":"Polygon","coordinates":[[[-94.502745,44.894035],[-94.501159,44.976826],[-94.25479,44.981217],[-94.014982,44.977616],[-94.012532,44.720021],[-94.18748,44.719941],[-94.193583,44.715157],[-94.213306,44.721318],[-94.235317,44.714143],[-94.252995,44.718545],[-94.254009,44.632639],[-94.495607,44.632954],[-94.496113,44.7179],[-94.496176,44.892452],[-94.502745,44.894035]]]},"id":27085},
{"type":"Feature","properties":{"name":"Carver"},"geometry":{"type":"Polygon","coordinates":[[[-93.771472,44.640718],[-93.76987,44.676385],[-93.888825,44.677098],[-93.889595,44.718632],[-94.012532,44.720021],[-94.014982,44.977616],[-93.770926,44.977383],[-93.767469,44.892503],[-93.525097,44.893152],[-93.523936,44.809137],[-93.571057,44.800408],[-93.619734,44.764665],[-93.618483,44.754655],[-93.634536,44.743657],[-93.630209,44.704518],[-93.679917,44.697495],[-93.69661,44.676423],[-93.771472,44.640718]]]},"id":27019},
{"type":"Feature","properties":{"name":"Deuel"},"geometry":{"type":"Polygon","coordinates":[[[-96.89033,44.542012],[-96.885718,44.799312],[-96.886736,44.972824],[-96.45608,44.971995],[-96.455217,44.801348],[-96.456718,44.628809],[-96.455106,44.538343],[-96.89033,44.542012]]]},"id":46039},
{"type":"Feature","properties":{"name":"Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-93.326381,44.788443],[-93.23137,44.827663],[-93.166885,44.897034],[-93.111555,44.935078],[-93.074208,44.948414],[-93.063755,44.94595],[-93.052005,44.918854],[-93.019067,44.893231],[-93.010651,44.867875],[-93.019211,44.785001],[-92.961758,44.769147],[-92.915507,44.783121],[-92.879151,44.763952],[-92.805585,44.746161],[-92.737146,44.713594],[-92.738404,44.632772],[-92.795429,44.630468],[-92.797633,44.54416],[-92.919335,44.541555],[-92.922708,44.519563],[-92.944811,44.513063],[-92.986866,44.508321],[-93.033995,44.514836],[-93.041471,44.474026],[-93.281714,44.474272],[-93.286178,44.542605],[-93.281876,44.626254],[-93.319673,44.62472],[-93.326381,44.788443]]]},"id":27037},
{"type":"Feature","properties":{"name":"Yellow Medicine"},"geometry":{"type":"Polygon","coordinates":[[[-96.456718,44.628809],[-96.455217,44.801348],[-95.846941,44.80597],[-95.847048,44.889206],[-95.737578,44.892062],[-95.735938,44.936965],[-95.711851,44.906981],[-95.66879,44.902106],[-95.633846,44.879932],[-95.613406,44.853885],[-95.519736,44.801883],[-95.506407,44.789684],[-95.525038,44.774673],[-95.4856,44.758613],[-95.406449,44.730133],[-95.384261,44.704597],[-95.362791,44.701889],[-95.362589,44.544231],[-95.590343,44.542247],[-95.5993,44.541839],[-95.60404,44.629832],[-96.096513,44.628804],[-96.456718,44.628809]]]},"id":27173},
{"type":"Feature","properties":{"name":"Sully"},"geometry":{"type":"Polygon","coordinates":[[[-99.680974,44.550578],[-100.52194,44.548671],[-100.533659,44.557644],[-100.567351,44.563537],[-100.598968,44.55978],[-100.634759,44.575294],[-100.64657,44.621685],[-100.616967,44.68712],[-100.633127,44.736834],[-100.718914,44.770925],[-100.730709,44.806368],[-100.717532,44.825682],[-100.70183,44.830774],[-100.666841,44.822145],[-100.622834,44.775385],[-100.600159,44.765677],[-100.541625,44.765547],[-100.468326,44.826189],[-100.407517,44.855627],[-100.397835,44.88003],[-100.406564,44.89762],[-99.674846,44.897014],[-99.680974,44.550578]]]},"id":46119},
{"type":"Feature","properties":{"name":"Hyde"},"geometry":{"type":"Polygon","coordinates":[[[-99.299927,44.199482],[-99.5784,44.196722],[-99.611696,44.214704],[-99.6617,44.221368],[-99.665608,44.550078],[-99.680974,44.550578],[-99.674846,44.897014],[-99.574932,44.896491],[-99.314545,44.894494],[-99.316053,44.548769],[-99.298772,44.548159],[-99.299927,44.199482]]]},"id":46069},
{"type":"Feature","properties":{"name":"Hand"},"geometry":{"type":"Polygon","coordinates":[[[-99.299927,44.199482],[-99.298772,44.548159],[-99.316053,44.548769],[-99.314545,44.894494],[-98.722004,44.891654],[-98.703319,44.891371],[-98.704935,44.63325],[-98.70429,44.199429],[-98.929665,44.199551],[-99.299927,44.199482]]]},"id":46059},
{"type":"Feature","properties":{"name":"Renville"},"geometry":{"type":"Polygon","coordinates":[[[-94.496113,44.7179],[-94.633026,44.71637],[-94.627458,44.457146],[-94.791182,44.452568],[-94.820519,44.483372],[-94.865854,44.497081],[-94.886134,44.518188],[-94.912685,44.521224],[-94.981481,44.546733],[-95.012412,44.548201],[-95.091104,44.575994],[-95.187971,44.628099],[-95.237938,44.663888],[-95.286111,44.663182],[-95.316211,44.691582],[-95.362791,44.701889],[-95.384261,44.704597],[-95.406449,44.730133],[-95.4856,44.758613],[-95.485663,44.889839],[-95.247732,44.892031],[-94.75746,44.892967],[-94.502745,44.894035],[-94.496176,44.892452],[-94.496113,44.7179]]]},"id":27129},
{"type":"Feature","properties":{"name":"Pierce"},"geometry":{"type":"Polygon","coordinates":[[[-92.138564,44.855918],[-92.13489,44.679802],[-92.135924,44.541982],[-92.320478,44.540491],[-92.340873,44.552835],[-92.509215,44.575159],[-92.608974,44.610292],[-92.630368,44.642652],[-92.737146,44.713594],[-92.805585,44.746161],[-92.761028,44.835371],[-92.764263,44.862234],[-92.138564,44.855918]]]},"id":55093},
{"type":"Feature","properties":{"name":"Custer"},"geometry":{"type":"Polygon","coordinates":[[[-113.306343,44.230418],[-113.407972,44.227732],[-113.408254,44.053547],[-113.450895,44.053781],[-113.436149,43.922097],[-113.455162,43.874294],[-113.426803,43.858031],[-113.413275,43.837615],[-113.352268,43.80359],[-113.353291,43.784478],[-113.374066,43.787328],[-113.402411,43.814989],[-113.434479,43.796266],[-113.435738,43.772145],[-113.447259,43.757874],[-113.565315,43.691743],[-113.655827,43.666735],[-113.70162,43.636],[-113.754281,43.619544],[-113.759651,43.599635],[-113.781868,43.584239],[-113.789711,43.565299],[-113.802124,43.570159],[-113.806115,43.593024],[-113.829141,43.600868],[-113.861019,43.636703],[-113.896725,43.644383],[-113.909772,43.663815],[-113.940199,43.676827],[-113.97837,43.715517],[-113.990945,43.746321],[-114.016398,43.772869],[-114.029063,43.773151],[-114.051234,43.72946],[-114.10246,43.731505],[-114.123533,43.742446],[-114.135124,43.768207],[-114.159211,43.768269],[-114.265402,43.822901],[-114.282326,43.875649],[-114.329897,43.876613],[-114.346835,43.865565],[-114.385609,43.880461],[-114.49131,43.888887],[-114.501648,43.884065],[-114.507667,43.8409],[-114.549172,43.833476],[-114.564142,43.840587],[-114.593776,43.881672],[-114.66493,43.917118],[-114.802684,43.919019],[-114.80064,43.982318],[-114.811925,43.987059],[-114.867858,43.987516],[-114.908616,43.964471],[-114.929666,43.941112],[-114.967998,43.933959],[-114.957462,43.96751],[-114.976315,43.974632],[-114.976911,43.997425],[-115.025528,44.009094],[-115.04149,44.028927],[-115.038995,44.049393],[-115.017473,44.067299],[-114.993058,44.075135],[-114.997216,44.085225],[-115.023043,44.094724],[-115.037883,44.109986],[-115.011851,44.129197],[-115.017856,44.141591],[-115.030347,44.150438],[-115.062704,44.155469],[-115.080162,44.168943],[-115.097458,44.166001],[-115.121744,44.186402],[-115.155956,44.194631],[-115.168493,44.226255],[-115.15782,44.243429],[-115.170867,44.280077],[-115.199624,44.279104],[-115.21557,44.303937],[-115.239757,44.306992],[-115.252132,44.322659],[-115.284497,44.330826],[-115.271833,44.351635],[-115.251103,44.362309],[-115.217587,44.421597],[-115.238586,44.499859],[-115.26912,44.508014],[-115.284127,44.522346],[-115.294694,44.560798],[-115.288484,44.578052],[-115.270661,44.597893],[-115.252732,44.596749],[-115.249886,44.607659],[-115.190023,44.615072],[-115.148152,44.668334],[-115.135571,44.705119],[-115.139401,44.729358],[-115.077555,44.757233],[-115.029282,44.736909],[-115.003013,44.712335],[-114.941907,44.714605],[-114.8819,44.763408],[-114.845026,44.770126],[-114.811342,44.797417],[-114.797882,44.776203],[-114.813301,44.737205],[-114.796813,44.710468],[-114.768324,44.697678],[-114.742306,44.668946],[-114.731517,44.645951],[-114.701472,44.642244],[-114.658128,44.651988],[-114.631897,44.649242],[-114.608551,44.637878],[-114.58882,44.615166],[-114.594343,44.586063],[-114.545521,44.570581],[-114.504932,44.593092],[-114.494402,44.582861],[-114.472719,44.579715],[-114.448075,44.603881],[-114.432702,44.636901],[-114.401459,44.648159],[-114.380653,44.671486],[-114.372581,44.697339],[-114.400888,44.712948],[-114.394785,44.737934],[-114.35965,44.748658],[-114.3471,44.773511],[-114.295966,44.813574],[-114.267187,44.824862],[-114.257551,44.840186],[-114.212369,44.858428],[-114.189724,44.830108],[-114.212886,44.752529],[-114.209658,44.7374],[-114.142059,44.739625],[-114.081738,44.721891],[-114.021827,44.652109],[-113.901731,44.540311],[-113.881451,44.535275],[-113.828774,44.49662],[-113.787954,44.479217],[-113.704423,44.471247],[-113.649434,44.443414],[-113.575608,44.434689],[-113.518695,44.408577],[-113.490199,44.41513],[-113.46491,44.445942],[-113.439138,44.448909],[-113.425334,44.419337],[-113.403222,44.401857],[-113.390418,44.365925],[-113.351895,44.332942],[-113.323923,44.282903],[-113.322418,44.239982],[-113.306343,44.230418]]]},"id":16037},
{"type":"Feature","properties":{"name":"Eau Claire"},"geometry":{"type":"Polygon","coordinates":[[[-91.529852,44.594084],[-91.65184,44.597647],[-91.653842,44.680653],[-91.652999,44.855464],[-90.923538,44.857435],[-90.923099,44.5928],[-91.164264,44.593662],[-91.529852,44.594084]]]},"id":55035},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-116.441052,44.143806],[-116.902254,44.146314],[-116.913051,44.177304],[-116.981872,44.197842],[-116.976127,44.225182],[-116.992707,44.247063],[-117.030352,44.249337],[-117.052028,44.231556],[-117.081387,44.243847],[-117.100561,44.267078],[-117.112692,44.269805],[-117.143279,44.250632],[-117.170723,44.253333],[-117.213572,44.28472],[-117.217456,44.300665],[-117.201602,44.339438],[-117.236921,44.389983],[-117.217222,44.427855],[-117.22441,44.472987],[-117.203963,44.485785],[-117.187391,44.511806],[-117.145161,44.534656],[-117.14394,44.559287],[-117.130504,44.572524],[-117.079354,44.689336],[-117.066513,44.697557],[-117.039572,44.749116],[-116.951494,44.776035],[-116.909621,44.82894],[-116.620674,44.830262],[-116.622936,44.657347],[-116.597986,44.643592],[-116.600123,44.608474],[-116.521887,44.605935],[-116.520156,44.48827],[-116.407243,44.440851],[-116.297857,44.438952],[-116.336325,44.365287],[-116.329557,44.338813],[-116.344189,44.278717],[-116.337168,44.213505],[-116.351869,44.142944],[-116.441052,44.143806]]]},"id":16087},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-121.839547,44.38804],[-121.846851,44.427495],[-121.801826,44.560166],[-121.796725,44.678178],[-121.8,44.724199],[-121.771489,44.757649],[-121.807806,44.770513],[-121.811622,44.796876],[-121.801513,44.80866],[-121.753325,44.819516],[-120.3815,44.817796],[-120.381133,44.797716],[-120.401939,44.788969],[-120.384977,44.746027],[-120.381972,44.558045],[-120.829519,44.555536],[-120.827357,44.472082],[-120.988769,44.471457],[-120.989445,44.385183],[-121.108986,44.383373],[-121.839547,44.38804]]]},"id":41031},
{"type":"Feature","properties":{"name":"Scott"},"geometry":{"type":"Polygon","coordinates":[[[-93.908989,44.543108],[-93.898987,44.596399],[-93.815618,44.637929],[-93.771472,44.640718],[-93.69661,44.676423],[-93.679917,44.697495],[-93.630209,44.704518],[-93.634536,44.743657],[-93.618483,44.754655],[-93.619734,44.764665],[-93.571057,44.800408],[-93.523936,44.809137],[-93.469758,44.807561],[-93.427787,44.816564],[-93.394423,44.807489],[-93.377462,44.792456],[-93.326381,44.788443],[-93.319673,44.62472],[-93.281876,44.626254],[-93.286178,44.542605],[-93.532449,44.542688],[-93.908989,44.543108]]]},"id":27139},
{"type":"Feature","properties":{"name":"Hamlin"},"geometry":{"type":"Polygon","coordinates":[[[-97.130694,44.541356],[-97.502073,44.54032],[-97.495462,44.802455],[-96.885718,44.799312],[-96.89033,44.542012],[-97.130694,44.541356]]]},"id":46057},
{"type":"Feature","properties":{"name":"Lamoille"},"geometry":{"type":"Polygon","coordinates":[[[-72.799767,44.449848],[-72.828416,44.458313],[-72.801408,44.501391],[-72.827395,44.51713],[-72.804515,44.543375],[-72.818599,44.543959],[-72.908915,44.62637],[-72.928738,44.631092],[-72.921422,44.647],[-72.893115,44.650875],[-72.852451,44.702537],[-72.807106,44.687546],[-72.764235,44.749206],[-72.751373,44.784224],[-72.60642,44.796027],[-72.573947,44.780169],[-72.419757,44.718208],[-72.479596,44.629022],[-72.368967,44.586661],[-72.371728,44.578486],[-72.431964,44.497113],[-72.489269,44.426176],[-72.592538,44.474728],[-72.654253,44.397391],[-72.762771,44.443127],[-72.799767,44.449848]]]},"id":50015},
{"type":"Feature","properties":{"name":"Linn"},"geometry":{"type":"Polygon","coordinates":[[[-123.2005,44.277247],[-123.19548,44.299406],[-123.224297,44.320444],[-123.23652,44.321237],[-123.221551,44.360315],[-123.239832,44.364027],[-123.236879,44.373758],[-123.220468,44.376356],[-123.229052,44.407022],[-123.203424,44.442029],[-123.213694,44.45617],[-123.214832,44.517354],[-123.23299,44.547123],[-123.254506,44.550686],[-123.254155,44.560757],[-123.23235,44.575031],[-123.183383,44.580513],[-123.189792,44.594383],[-123.168818,44.625065],[-123.075462,44.644887],[-123.088478,44.668061],[-123.128366,44.682239],[-123.147806,44.711975],[-123.124956,44.736797],[-123.111505,44.744728],[-123.049827,44.731987],[-123.015051,44.710244],[-123.016989,44.688675],[-123.003363,44.680146],[-122.981535,44.687978],[-122.953626,44.721676],[-122.923405,44.736737],[-122.898953,44.736905],[-122.861057,44.75274],[-122.799952,44.791058],[-122.75422,44.791207],[-122.680511,44.772874],[-122.610594,44.784047],[-122.588354,44.772183],[-122.540525,44.762288],[-122.513432,44.746041],[-122.481648,44.751004],[-122.297355,44.748829],[-122.254584,44.720361],[-122.227728,44.689428],[-122.214666,44.686742],[-122.188657,44.691407],[-122.142796,44.714196],[-122.034265,44.682236],[-121.796725,44.678178],[-121.801826,44.560166],[-121.846851,44.427495],[-121.839547,44.38804],[-121.844931,44.338094],[-121.832868,44.312512],[-121.832477,44.280125],[-121.803102,44.253345],[-122.316079,44.243872],[-122.330458,44.215456],[-122.37309,44.197302],[-122.407349,44.210524],[-122.448617,44.207468],[-122.50533,44.221564],[-122.517727,44.21694],[-122.544874,44.228594],[-122.566855,44.22402],[-122.722842,44.27812],[-122.793309,44.279633],[-122.822667,44.2715],[-122.85359,44.281555],[-122.860746,44.253388],[-122.904799,44.252804],[-122.908719,44.195099],[-123.145191,44.189387],[-123.157345,44.196585],[-123.151814,44.220133],[-123.172941,44.24153],[-123.175719,44.272005],[-123.2005,44.277247]]]},"id":41043},
{"type":"Feature","properties":{"name":"Stanley"},"geometry":{"type":"Polygon","coordinates":[[[-101.046034,44.176346],[-101.174788,44.177327],[-101.17727,44.347915],[-101.159982,44.34846],[-101.153907,44.691416],[-101.136535,44.691957],[-101.135384,44.749445],[-101.066116,44.745203],[-101.015976,44.730402],[-100.971863,44.753603],[-100.962295,44.766165],[-100.937171,44.766966],[-100.918616,44.778864],[-100.893225,44.771429],[-100.862517,44.781671],[-100.816076,44.770529],[-100.792058,44.77498],[-100.764997,44.762457],[-100.747678,44.77482],[-100.737752,44.767275],[-100.718914,44.770925],[-100.633127,44.736834],[-100.616967,44.68712],[-100.64657,44.621685],[-100.634759,44.575294],[-100.598968,44.55978],[-100.567351,44.563537],[-100.533659,44.557644],[-100.52194,44.548671],[-100.527143,44.522334],[-100.579779,44.508182],[-100.592605,44.495276],[-100.586531,44.463184],[-100.550588,44.452217],[-100.444239,44.465393],[-100.399362,44.454148],[-100.382157,44.42859],[-100.387718,44.396348],[-100.367675,44.352464],[-100.244182,44.330786],[-100.08145,44.314688],[-100.018772,44.282721],[-99.966601,44.268374],[-99.908601,44.266143],[-99.89573,44.236095],[-99.923593,44.218704],[-99.932328,44.20073],[-100.371397,44.199305],[-100.372175,44.172878],[-101.046034,44.176346]]]},"id":46117},
{"type":"Feature","properties":{"name":"Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[-72.364146,44.202683],[-72.315256,44.271358],[-72.312708,44.296854],[-72.220026,44.397774],[-72.231593,44.420272],[-72.431964,44.497113],[-72.371728,44.578486],[-72.269484,44.539799],[-72.151141,44.696057],[-72.097627,44.68025],[-72.115847,44.740742],[-72.017532,44.69597],[-71.942068,44.769215],[-71.843563,44.712446],[-71.906697,44.645007],[-71.853046,44.616326],[-71.911198,44.541064],[-71.857493,44.496425],[-71.931514,44.442406],[-71.834816,44.344199],[-71.928362,44.336112],[-71.938906,44.325786],[-71.994434,44.327548],[-72.035495,44.299434],[-72.059566,44.261494],[-72.04439,44.23438],[-72.059282,44.182177],[-72.044725,44.156436],[-72.163693,44.187307],[-72.299705,44.178632],[-72.364146,44.202683]]]},"id":50005},
{"type":"Feature","properties":{"name":"Waldo"},"geometry":{"type":"Polygon","coordinates":[[[-69.414641,44.330754],[-69.504729,44.341582],[-69.440244,44.463536],[-69.392576,44.457792],[-69.368758,44.543705],[-69.413893,44.549831],[-69.401635,44.63571],[-69.4609,44.642762],[-69.432771,44.669202],[-69.473505,44.675156],[-69.472864,44.694317],[-69.462473,44.695789],[-69.402842,44.702885],[-69.395557,44.743748],[-69.382763,44.751988],[-69.344669,44.753861],[-69.324054,44.717058],[-69.265735,44.723231],[-69.208743,44.728511],[-69.180023,44.644345],[-68.897431,44.693241],[-68.891976,44.688922],[-68.862824,44.700138],[-68.831893,44.700775],[-68.824004,44.686306],[-68.823813,44.664089],[-68.860609,44.61097],[-68.807903,44.569654],[-68.811678,44.494593],[-68.959179,44.430332],[-68.985028,44.271113],[-69.021482,44.244093],[-69.039183,44.252478],[-69.130648,44.259965],[-69.263869,44.365179],[-69.345496,44.313295],[-69.392409,44.347328],[-69.414641,44.330754]]]},"id":23027},
{"type":"Feature","properties":{"name":"Haakon"},"geometry":{"type":"Polygon","coordinates":[[[-101.067952,43.993595],[-102.012691,43.996545],[-102.01289,44.360276],[-101.997554,44.360047],[-102.001249,44.516523],[-101.989386,44.52775],[-101.948033,44.53898],[-101.828904,44.536641],[-101.81694,44.530057],[-101.803718,44.542615],[-101.786376,44.543694],[-101.757018,44.55917],[-101.741126,44.574414],[-101.688994,44.579911],[-101.671988,44.589649],[-101.529409,44.577049],[-101.501394,44.588852],[-101.485266,44.608619],[-101.463385,44.610488],[-101.447921,44.646243],[-101.424216,44.644874],[-101.406371,44.658218],[-101.370979,44.660262],[-101.365989,44.689376],[-101.337562,44.693374],[-101.32637,44.684024],[-101.210601,44.703108],[-101.135384,44.749445],[-101.136535,44.691957],[-101.153907,44.691416],[-101.159982,44.34846],[-101.17727,44.347915],[-101.174788,44.177327],[-101.046034,44.176346],[-101.047605,43.993599],[-101.067952,43.993595]]]},"id":46055},
{"type":"Feature","properties":{"name":"Fremont"},"geometry":{"type":"Polygon","coordinates":[[[-111.957082,43.922342],[-111.958425,43.964361],[-112.145297,43.966778],[-112.145444,44.05391],[-112.027376,44.056833],[-112.02463,44.137945],[-111.902562,44.141067],[-111.901227,44.184371],[-111.845644,44.184963],[-111.832292,44.309968],[-111.781744,44.310273],[-111.778379,44.395521],[-111.606003,44.39687],[-111.605249,44.54299],[-111.567231,44.552867],[-111.490241,44.528697],[-111.482573,44.536144],[-111.459325,44.537922],[-111.462827,44.549942],[-111.492904,44.551189],[-111.514526,44.593197],[-111.501747,44.615971],[-111.507691,44.637689],[-111.470168,44.64071],[-111.458265,44.652555],[-111.460692,44.670023],[-111.480804,44.691416],[-111.475425,44.702162],[-111.443632,44.71318],[-111.395084,44.70887],[-111.38496,44.737694],[-111.37231,44.745087],[-111.349977,44.726178],[-111.319222,44.727864],[-111.315475,44.705193],[-111.295668,44.682938],[-111.270208,44.673802],[-111.270665,44.642212],[-111.223971,44.626908],[-111.219798,44.617982],[-111.234233,44.602562],[-111.219508,44.57317],[-111.178765,44.564851],[-111.170242,44.545186],[-111.134359,44.527902],[-111.128919,44.500757],[-111.094631,44.486124],[-111.051561,44.473323],[-111.050405,43.982553],[-111.180619,43.928803],[-111.226596,43.941767],[-111.294072,43.918684],[-111.349784,43.944799],[-111.392128,43.917402],[-111.451624,43.913065],[-111.494625,43.923986],[-111.544026,43.902768],[-111.54704,43.880994],[-111.684916,43.881588],[-111.687128,43.893993],[-111.823058,43.895274],[-111.824333,43.920413],[-111.957082,43.922342]]]},"id":16043},
{"type":"Feature","properties":{"name":"Sibley"},"geometry":{"type":"Polygon","coordinates":[[[-93.930319,44.457492],[-94.627458,44.457146],[-94.633026,44.71637],[-94.496113,44.7179],[-94.495607,44.632954],[-94.254009,44.632639],[-94.252995,44.718545],[-94.235317,44.714143],[-94.213306,44.721318],[-94.193583,44.715157],[-94.18748,44.719941],[-94.012532,44.720021],[-93.889595,44.718632],[-93.888825,44.677098],[-93.76987,44.676385],[-93.771472,44.640718],[-93.815618,44.637929],[-93.898987,44.596399],[-93.908989,44.543108],[-93.891418,44.519491],[-93.930319,44.457492]]]},"id":27143},
{"type":"Feature","properties":{"name":"Chittenden"},"geometry":{"type":"Polygon","coordinates":[[[-73.305326,44.260142],[-73.329788,44.36739],[-73.299995,44.405533],[-73.29332,44.432854],[-73.334452,44.544328],[-73.347812,44.553972],[-73.280893,44.579167],[-73.260202,44.595017],[-73.227305,44.668274],[-73.225444,44.718447],[-73.02668,44.646892],[-72.928738,44.631092],[-72.908915,44.62637],[-72.818599,44.543959],[-72.804515,44.543375],[-72.827395,44.51713],[-72.801408,44.501391],[-72.828416,44.458313],[-72.799767,44.449848],[-72.833816,44.404557],[-72.807182,44.392011],[-72.837905,44.352617],[-72.860206,44.356455],[-72.911887,44.282126],[-72.900481,44.276561],[-72.946888,44.165277],[-72.981285,44.294069],[-73.022065,44.29939],[-73.02298,44.280252],[-73.268971,44.258125],[-73.305326,44.260142]]]},"id":50007},
{"type":"Feature","properties":{"name":"Kennebec"},"geometry":{"type":"Polygon","coordinates":[[[-70.124426,44.486542],[-70.041103,44.486836],[-70.028118,44.511551],[-70.067831,44.534179],[-70.028692,44.589163],[-69.951076,44.577704],[-69.921611,44.608763],[-69.852181,44.620776],[-69.823318,44.609836],[-69.816764,44.580867],[-69.798445,44.576187],[-69.778692,44.604778],[-69.602502,44.579461],[-69.578943,44.60608],[-69.576715,44.630207],[-69.61584,44.66072],[-69.625523,44.699851],[-69.478976,44.718273],[-69.462473,44.695789],[-69.472864,44.694317],[-69.473505,44.675156],[-69.432771,44.669202],[-69.4609,44.642762],[-69.401635,44.63571],[-69.413893,44.549831],[-69.368758,44.543705],[-69.392576,44.457792],[-69.440244,44.463536],[-69.504729,44.341582],[-69.521804,44.286487],[-69.543792,44.263042],[-69.645484,44.281008],[-69.666305,44.235152],[-69.655953,44.127615],[-69.750122,44.140694],[-69.755463,44.157287],[-69.853984,44.173172],[-69.874881,44.154667],[-69.895924,44.112444],[-69.998901,44.127901],[-70.022728,44.134546],[-70.020683,44.158654],[-70.010467,44.158807],[-70.006324,44.175103],[-69.997542,44.172558],[-69.993132,44.182457],[-70.074524,44.20906],[-70.073556,44.29205],[-70.120616,44.374179],[-70.101436,44.385027],[-70.124426,44.486542]]]},"id":23011},
{"type":"Feature","properties":{"name":"Goodhue"},"geometry":{"type":"Polygon","coordinates":[[[-92.2491,44.456217],[-92.432725,44.453218],[-92.434906,44.370607],[-92.549276,44.368493],[-92.553652,44.19601],[-92.681823,44.195281],[-93.043068,44.198908],[-93.041471,44.474026],[-93.033995,44.514836],[-92.986866,44.508321],[-92.944811,44.513063],[-92.922708,44.519563],[-92.919335,44.541555],[-92.797633,44.54416],[-92.795429,44.630468],[-92.738404,44.632772],[-92.737146,44.713594],[-92.630368,44.642652],[-92.608974,44.610292],[-92.509215,44.575159],[-92.340873,44.552835],[-92.320478,44.540491],[-92.296687,44.492182],[-92.2491,44.456217]]]},"id":27049},
{"type":"Feature","properties":{"name":"Benton"},"geometry":{"type":"Polygon","coordinates":[[[-123.775389,44.274761],[-123.77526,44.305385],[-123.818474,44.308658],[-123.816033,44.335292],[-123.734839,44.336684],[-123.735907,44.379592],[-123.716002,44.379226],[-123.716872,44.426715],[-123.599422,44.425735],[-123.594701,44.640363],[-123.602559,44.641805],[-123.604169,44.710774],[-123.147806,44.711975],[-123.128366,44.682239],[-123.088478,44.668061],[-123.075462,44.644887],[-123.168818,44.625065],[-123.189792,44.594383],[-123.183383,44.580513],[-123.23235,44.575031],[-123.254155,44.560757],[-123.254506,44.550686],[-123.23299,44.547123],[-123.214832,44.517354],[-123.213694,44.45617],[-123.203424,44.442029],[-123.229052,44.407022],[-123.220468,44.376356],[-123.236879,44.373758],[-123.239832,44.364027],[-123.221551,44.360315],[-123.23652,44.321237],[-123.224297,44.320444],[-123.19548,44.299406],[-123.2005,44.277247],[-123.717374,44.270393],[-123.716596,44.275459],[-123.775389,44.274761]]]},"id":41003},
{"type":"Feature","properties":{"name":"Redwood"},"geometry":{"type":"Polygon","coordinates":[[[-95.111011,44.197468],[-95.468002,44.196971],[-95.595181,44.197586],[-95.590343,44.542247],[-95.362589,44.544231],[-95.362791,44.701889],[-95.316211,44.691582],[-95.286111,44.663182],[-95.237938,44.663888],[-95.187971,44.628099],[-95.091104,44.575994],[-95.012412,44.548201],[-94.981481,44.546733],[-94.912685,44.521224],[-94.886134,44.518188],[-94.865854,44.497081],[-94.870695,44.28364],[-95.109395,44.278347],[-95.111011,44.197468]]]},"id":27127},
{"type":"Feature","properties":{"name":"Wood"},"geometry":{"type":"Polygon","coordinates":[[[-90.311742,44.682302],[-89.838504,44.68206],[-89.835719,44.509653],[-89.724906,44.506695],[-89.722138,44.24776],[-89.886113,44.249203],[-90.310436,44.253217],[-90.314388,44.422776],[-90.311742,44.682302]]]},"id":55141},
{"type":"Feature","properties":{"name":"Pepin"},"geometry":{"type":"Polygon","coordinates":[[[-92.320478,44.540491],[-92.135924,44.541982],[-92.13489,44.679802],[-91.653842,44.680653],[-91.65184,44.597647],[-92.016139,44.595849],[-92.038844,44.568498],[-92.050165,44.511717],[-92.091333,44.41559],[-92.206137,44.438394],[-92.2491,44.456217],[-92.296687,44.492182],[-92.320478,44.540491]]]},"id":55091},
{"type":"Feature","properties":{"name":"Teton"},"geometry":{"type":"Polygon","coordinates":[[[-111.047498,43.284735],[-111.046771,43.515528],[-111.050405,43.982553],[-111.051561,44.473323],[-111.051616,44.66449],[-110.668351,44.661321],[-110.668618,44.579462],[-110.374527,44.581957],[-110.370415,44.551982],[-110.342017,44.543743],[-110.310605,44.544319],[-110.286587,44.500207],[-110.295956,44.428475],[-110.235467,44.377409],[-110.220704,44.328306],[-110.207665,44.325716],[-110.19284,44.303565],[-110.181579,44.306376],[-110.154371,44.29576],[-110.13548,44.235435],[-110.112339,44.212749],[-110.108524,44.198772],[-110.117619,44.193329],[-110.109203,44.18504],[-110.115078,44.165135],[-110.107288,44.14951],[-110.094943,44.140031],[-110.058016,44.133962],[-110.057625,44.007979],[-110.053867,43.465213],[-110.053919,43.379942],[-110.346817,43.379795],[-110.346119,43.283606],[-110.588904,43.283943],[-110.590398,43.227325],[-110.816148,43.229002],[-110.816347,43.256358],[-110.934982,43.257435],[-110.934685,43.285729],[-111.047498,43.284735]]]},"id":56039},
{"type":"Feature","properties":{"name":"Beadle"},"geometry":{"type":"Polygon","coordinates":[[[-98.337862,44.198001],[-98.70429,44.199429],[-98.704935,44.63325],[-97.985399,44.62927],[-97.85945,44.628558],[-97.857633,44.542554],[-97.856484,44.195313],[-98.337862,44.198001]]]},"id":46005},
{"type":"Feature","properties":{"name":"Lyon"},"geometry":{"type":"Polygon","coordinates":[[[-96.066079,44.197518],[-96.08275,44.198063],[-96.080352,44.542283],[-96.094589,44.543408],[-96.096513,44.628804],[-95.60404,44.629832],[-95.5993,44.541839],[-95.590343,44.542247],[-95.595181,44.197586],[-96.066079,44.197518]]]},"id":27083},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-96.096513,44.628804],[-96.094589,44.543408],[-96.080352,44.542283],[-96.08275,44.198063],[-96.457398,44.199061],[-96.455106,44.538343],[-96.456718,44.628809],[-96.096513,44.628804]]]},"id":27081},
{"type":"Feature","properties":{"name":"Lawrence"},"geometry":{"type":"Polygon","coordinates":[[[-103.455811,44.145639],[-104.059731,44.145825],[-104.061036,44.181825],[-104.059465,44.574353],[-104.028702,44.581657],[-104.001128,44.574363],[-103.931881,44.583465],[-103.900439,44.598041],[-103.84594,44.594798],[-103.829879,44.605724],[-103.563054,44.607853],[-103.567913,44.348869],[-103.574948,44.348435],[-103.578663,44.264577],[-103.455514,44.262303],[-103.455811,44.145639]]]},"id":46081},
{"type":"Feature","properties":{"name":"Buffalo"},"geometry":{"type":"Polygon","coordinates":[[[-91.529852,44.594084],[-91.530313,44.246575],[-91.609482,44.207052],[-91.59568,44.193593],[-91.610847,44.168741],[-91.566038,44.141641],[-91.542423,44.097799],[-91.557201,44.081163],[-91.569162,44.034955],[-91.601786,44.040822],[-91.652234,44.066896],[-91.753219,44.137228],[-91.848744,44.191187],[-91.888694,44.257495],[-91.922349,44.288341],[-91.922754,44.31752],[-91.938868,44.339111],[-91.972386,44.364487],[-92.091333,44.41559],[-92.050165,44.511717],[-92.038844,44.568498],[-92.016139,44.595849],[-91.65184,44.597647],[-91.529852,44.594084]]]},"id":55011},
{"type":"Feature","properties":{"name":"Trempealeau"},"geometry":{"type":"Polygon","coordinates":[[[-91.425902,43.98562],[-91.52842,44.034215],[-91.569162,44.034955],[-91.557201,44.081163],[-91.542423,44.097799],[-91.566038,44.141641],[-91.610847,44.168741],[-91.59568,44.193593],[-91.609482,44.207052],[-91.530313,44.246575],[-91.529852,44.594084],[-91.164264,44.593662],[-91.164096,44.248467],[-91.148752,44.247288],[-91.148422,44.076389],[-91.181841,44.089183],[-91.225626,44.058543],[-91.264118,44.0708],[-91.302768,44.064353],[-91.335405,44.047504],[-91.346467,44.033226],[-91.330618,43.987882],[-91.425902,43.98562]]]},"id":55121},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-91.148422,44.076389],[-91.148752,44.247288],[-91.164096,44.248467],[-91.164264,44.593662],[-90.923099,44.5928],[-90.921398,44.512081],[-90.799637,44.508767],[-90.797339,44.422596],[-90.314388,44.422776],[-90.310436,44.253217],[-90.31187,44.15933],[-90.903224,44.161232],[-90.94253,44.151695],[-90.96892,44.134545],[-90.973335,44.073892],[-91.148422,44.076389]]]},"id":55053},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-112.145444,44.05391],[-112.681133,44.053286],[-112.683413,43.967169],[-112.982832,43.96929],[-112.982819,44.228325],[-112.801385,44.219978],[-112.802016,44.395666],[-112.81871,44.39482],[-112.826691,44.421084],[-112.796228,44.458011],[-112.779863,44.473922],[-112.733712,44.48432],[-112.714326,44.496935],[-112.653189,44.480802],[-112.539324,44.477498],[-112.50184,44.462997],[-112.45852,44.468835],[-112.420753,44.449285],[-112.367584,44.449271],[-112.340577,44.49718],[-112.342507,44.5251],[-112.282341,44.541703],[-112.256676,44.559972],[-112.230399,44.559491],[-112.217764,44.538495],[-112.199658,44.53145],[-112.124191,44.528253],[-112.099897,44.518232],[-112.059367,44.528612],[-112.027077,44.522844],[-112.023613,44.535043],[-111.977818,44.529676],[-111.940386,44.549727],[-111.872502,44.556266],[-111.807837,44.503982],[-111.792608,44.518463],[-111.766918,44.518825],[-111.716998,44.533761],[-111.684863,44.550752],[-111.605249,44.54299],[-111.606003,44.39687],[-111.778379,44.395521],[-111.781744,44.310273],[-111.832292,44.309968],[-111.845644,44.184963],[-111.901227,44.184371],[-111.902562,44.141067],[-112.02463,44.137945],[-112.027376,44.056833],[-112.145444,44.05391]]]},"id":16033},
{"type":"Feature","properties":{"name":"Crook"},"geometry":{"type":"Polygon","coordinates":[[[-119.657305,43.953869],[-119.77677,43.953703],[-119.774979,43.691322],[-119.893292,43.689692],[-120.256089,43.689901],[-120.25635,43.775082],[-120.382553,43.776015],[-120.3827,43.868516],[-120.747805,43.869154],[-120.747967,43.95302],[-120.985297,43.956119],[-120.987567,44.125218],[-121.099907,44.127726],[-121.108986,44.383373],[-120.989445,44.385183],[-120.988769,44.471457],[-120.827357,44.472082],[-120.829519,44.555536],[-120.381972,44.558045],[-120.380715,44.430318],[-120.024842,44.430658],[-120.021444,44.383295],[-119.898522,44.380554],[-119.897031,44.300777],[-119.652897,44.29766],[-119.657305,43.953869]]]},"id":41013},
{"type":"Feature","properties":{"name":"Johnson"},"geometry":{"type":"Polygon","coordinates":[[[-106.016325,44.556412],[-106.016805,44.529492],[-106.025145,44.52982],[-106.020762,44.168762],[-106.008669,44.169399],[-106.004042,43.818167],[-106.019912,43.818838],[-106.028041,43.494951],[-106.082311,43.494558],[-107.112483,43.494271],[-107.112262,43.503385],[-107.114032,43.820374],[-107.12485,43.82103],[-107.129517,44.158198],[-107.142907,44.158339],[-107.145174,44.317436],[-107.177196,44.332637],[-107.163341,44.364437],[-107.175037,44.381951],[-107.173244,44.398415],[-107.199666,44.402344],[-107.208959,44.450021],[-107.226599,44.457352],[-107.270401,44.449444],[-107.306132,44.459968],[-107.314868,44.468418],[-107.311313,44.500446],[-107.338605,44.521209],[-107.350576,44.542812],[-107.378883,44.557612],[-106.016325,44.556412]]]},"id":56019},
{"type":"Feature","properties":{"name":"Hughes"},"geometry":{"type":"Polygon","coordinates":[[[-99.932328,44.20073],[-99.923593,44.218704],[-99.89573,44.236095],[-99.908601,44.266143],[-99.966601,44.268374],[-100.018772,44.282721],[-100.08145,44.314688],[-100.244182,44.330786],[-100.367675,44.352464],[-100.387718,44.396348],[-100.382157,44.42859],[-100.399362,44.454148],[-100.444239,44.465393],[-100.550588,44.452217],[-100.586531,44.463184],[-100.592605,44.495276],[-100.579779,44.508182],[-100.527143,44.522334],[-100.52194,44.548671],[-99.680974,44.550578],[-99.665608,44.550078],[-99.6617,44.221368],[-99.701168,44.213067],[-99.71268,44.192453],[-99.69855,44.173754],[-99.676615,44.167567],[-99.636224,44.170805],[-99.604042,44.145572],[-99.608299,44.119254],[-99.645371,44.107704],[-99.784276,44.139097],[-99.835966,44.127958],[-99.872206,44.129545],[-99.921815,44.173951],[-99.932328,44.20073]]]},"id":46065},
{"type":"Feature","properties":{"name":"Essex"},"geometry":{"type":"Polygon","coordinates":[[[-73.44818,43.79795],[-74.059106,43.739441],[-74.055987,43.79317],[-74.137154,43.814971],[-74.148592,43.828166],[-74.187892,43.824016],[-74.212582,43.811229],[-74.331671,43.921648],[-74.256298,43.970561],[-74.278504,44.118575],[-74.09195,44.137514],[-74.135158,44.400461],[-73.910685,44.424661],[-73.744954,44.439496],[-73.731541,44.433084],[-73.702091,44.439401],[-73.676517,44.435697],[-73.627802,44.45244],[-73.57016,44.46002],[-73.539894,44.486822],[-73.504058,44.484412],[-73.466071,44.511629],[-73.477507,44.523988],[-73.469725,44.536268],[-73.334452,44.544328],[-73.29332,44.432854],[-73.299995,44.405533],[-73.329788,44.36739],[-73.305326,44.260142],[-73.377333,44.201247],[-73.382062,44.172108],[-73.407865,44.136227],[-73.408757,44.10661],[-73.435215,44.063898],[-73.436001,44.045679],[-73.408251,44.018222],[-73.417406,43.988197],[-73.405335,43.914808],[-73.375121,43.885977],[-73.38474,43.804508],[-73.44818,43.79795]]]},"id":36031},
{"type":"Feature","properties":{"name":"Le Sueur"},"geometry":{"type":"Polygon","coordinates":[[[-94.017255,44.24373],[-94.021201,44.264585],[-93.992691,44.297032],[-93.964767,44.309838],[-93.943108,44.340229],[-93.961727,44.389805],[-93.930319,44.457492],[-93.891418,44.519491],[-93.908989,44.543108],[-93.532449,44.542688],[-93.529329,44.200105],[-93.775025,44.200189],[-93.776422,44.24257],[-94.017255,44.24373]]]},"id":27079},
{"type":"Feature","properties":{"name":"Rice"},"geometry":{"type":"Polygon","coordinates":[[[-93.049348,44.196921],[-93.410459,44.196817],[-93.529329,44.200105],[-93.532449,44.542688],[-93.286178,44.542605],[-93.281714,44.474272],[-93.041471,44.474026],[-93.043068,44.198908],[-93.049348,44.196921]]]},"id":27131},
{"type":"Feature","properties":{"name":"Kingsbury"},"geometry":{"type":"Polygon","coordinates":[[[-97.856484,44.195313],[-97.857633,44.542554],[-97.502073,44.54032],[-97.130694,44.541356],[-97.132665,44.193628],[-97.374706,44.195425],[-97.856484,44.195313]]]},"id":46077},
{"type":"Feature","properties":{"name":"Brookings"},"geometry":{"type":"Polygon","coordinates":[[[-96.457398,44.199061],[-96.891577,44.194638],[-97.132665,44.193628],[-97.130694,44.541356],[-96.89033,44.542012],[-96.455106,44.538343],[-96.457398,44.199061]]]},"id":46011},
{"type":"Feature","properties":{"name":"Pennington"},"geometry":{"type":"Polygon","coordinates":[[[-102.146585,43.702412],[-102.175806,43.698719],[-102.178019,43.686909],[-102.815326,43.685513],[-102.804079,43.713182],[-102.784295,43.722108],[-102.713453,43.785646],[-102.693118,43.854676],[-104.059479,43.852907],[-104.059731,44.145825],[-103.455811,44.145639],[-102.395682,44.147089],[-102.40428,44.160863],[-102.390341,44.184396],[-102.403739,44.184098],[-102.402869,44.193662],[-102.39472,44.214986],[-102.368711,44.235638],[-102.371824,44.265305],[-102.342817,44.355669],[-102.303807,44.382078],[-102.304838,44.443198],[-102.282796,44.454314],[-102.227665,44.457697],[-102.22282,44.447146],[-102.193759,44.433073],[-102.167597,44.430433],[-102.156976,44.444426],[-102.14219,44.446959],[-102.116776,44.440214],[-102.076484,44.484339],[-102.055808,44.490877],[-102.040595,44.507528],[-102.001249,44.516523],[-101.997554,44.360047],[-102.01289,44.360276],[-102.012691,43.996545],[-102.020343,43.995747],[-102.024053,43.714749],[-102.06909,43.689462],[-102.105674,43.694085],[-102.120995,43.689298],[-102.130547,43.710377],[-102.146585,43.702412]]]},"id":46103},
{"type":"Feature","properties":{"name":"Gem"},"geometry":{"type":"Polygon","coordinates":[[[-116.701826,43.800269],[-116.697886,43.973333],[-116.566998,43.971602],[-116.563642,44.000743],[-116.526767,44.000617],[-116.521924,44.056178],[-116.446848,44.0568],[-116.441052,44.143806],[-116.351869,44.142944],[-116.337168,44.213505],[-116.344189,44.278717],[-116.329557,44.338813],[-116.336325,44.365287],[-116.297857,44.438952],[-116.261174,44.457904],[-116.234249,44.46231],[-116.208232,44.497726],[-116.187182,44.490761],[-116.146775,44.496438],[-116.14578,44.320898],[-116.203911,44.320344],[-116.207897,44.143529],[-116.267782,44.143418],[-116.2664,43.798114],[-116.276562,43.796805],[-116.505345,43.798767],[-116.701826,43.800269]]]},"id":16045},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-94.375735,44.26346],[-94.369681,44.108078],[-94.861896,44.107804],[-95.104319,44.108737],[-95.103221,44.195968],[-95.111011,44.197468],[-95.109395,44.278347],[-94.870695,44.28364],[-94.865854,44.497081],[-94.820519,44.483372],[-94.791182,44.452568],[-94.712818,44.433739],[-94.696391,44.403332],[-94.678217,44.408604],[-94.674295,44.39917],[-94.60562,44.388581],[-94.587393,44.376042],[-94.539913,44.365975],[-94.52167,44.37032],[-94.513033,44.357407],[-94.496912,44.355725],[-94.448707,44.32649],[-94.437277,44.301351],[-94.409695,44.273618],[-94.375735,44.26346]]]},"id":27015},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-72.735378,44.024912],[-72.889206,44.068207],[-72.910859,44.067021],[-72.93671,44.163828],[-72.946888,44.165277],[-72.900481,44.276561],[-72.911887,44.282126],[-72.860206,44.356455],[-72.837905,44.352617],[-72.807182,44.392011],[-72.833816,44.404557],[-72.799767,44.449848],[-72.762771,44.443127],[-72.654253,44.397391],[-72.592538,44.474728],[-72.489269,44.426176],[-72.431964,44.497113],[-72.231593,44.420272],[-72.220026,44.397774],[-72.312708,44.296854],[-72.315256,44.271358],[-72.364146,44.202683],[-72.409695,44.218277],[-72.435322,44.130167],[-72.5589,44.159813],[-72.56479,44.152589],[-72.582544,44.156884],[-72.688532,44.013526],[-72.735378,44.024912]]]},"id":50023},
{"type":"Feature","properties":{"name":"Androscoggin"},"geometry":{"type":"Polygon","coordinates":[[[-69.998901,44.127901],[-70.018471,44.044129],[-70.032799,44.027688],[-70.021317,44.006368],[-70.037804,43.985437],[-70.034043,43.973471],[-70.0727,43.931769],[-70.089462,43.938646],[-70.110992,43.917853],[-70.194985,43.949925],[-70.190537,43.961193],[-70.310283,44.039342],[-70.36317,43.990655],[-70.388584,44.003201],[-70.401722,43.995355],[-70.464101,44.018917],[-70.481373,44.034504],[-70.319066,44.218336],[-70.260374,44.368597],[-70.272796,44.445141],[-70.231269,44.466331],[-70.199142,44.479568],[-70.124426,44.486542],[-70.101436,44.385027],[-70.120616,44.374179],[-70.073556,44.29205],[-70.074524,44.20906],[-69.993132,44.182457],[-69.997542,44.172558],[-70.006324,44.175103],[-70.010467,44.158807],[-70.020683,44.158654],[-70.022728,44.134546],[-69.998901,44.127901]]]},"id":23001},
{"type":"Feature","properties":{"name":"Nicollet"},"geometry":{"type":"Polygon","coordinates":[[[-94.017255,44.24373],[-94.012372,44.227926],[-94.02448,44.217935],[-94.005223,44.187558],[-94.03378,44.166062],[-94.069334,44.163472],[-94.11734,44.184624],[-94.212093,44.207302],[-94.304107,44.244621],[-94.375735,44.26346],[-94.409695,44.273618],[-94.437277,44.301351],[-94.448707,44.32649],[-94.496912,44.355725],[-94.513033,44.357407],[-94.52167,44.37032],[-94.539913,44.365975],[-94.587393,44.376042],[-94.60562,44.388581],[-94.674295,44.39917],[-94.678217,44.408604],[-94.696391,44.403332],[-94.712818,44.433739],[-94.791182,44.452568],[-94.627458,44.457146],[-93.930319,44.457492],[-93.961727,44.389805],[-93.943108,44.340229],[-93.964767,44.309838],[-93.992691,44.297032],[-94.021201,44.264585],[-94.017255,44.24373]]]},"id":27103},
{"type":"Feature","properties":{"name":"Wabasha"},"geometry":{"type":"Polygon","coordinates":[[[-91.848744,44.191187],[-92.079679,44.193748],[-92.084018,44.106593],[-92.320439,44.109531],[-92.322067,44.194748],[-92.553652,44.19601],[-92.549276,44.368493],[-92.434906,44.370607],[-92.432725,44.453218],[-92.2491,44.456217],[-92.206137,44.438394],[-92.091333,44.41559],[-91.972386,44.364487],[-91.938868,44.339111],[-91.922754,44.31752],[-91.922349,44.288341],[-91.888694,44.257495],[-91.848744,44.191187]]]},"id":27157},
{"type":"Feature","properties":{"name":"Malheur"},"geometry":{"type":"Polygon","coordinates":[[[-118.225249,44.029975],[-118.229794,44.246398],[-118.195987,44.246707],[-118.194293,44.259486],[-118.151567,44.261225],[-118.152667,44.288565],[-118.133547,44.290556],[-118.133791,44.30514],[-118.111475,44.30715],[-118.111033,44.319006],[-118.088709,44.321016],[-118.090403,44.346529],[-118.071253,44.348051],[-118.072726,44.36035],[-118.051676,44.362799],[-118.051296,44.379671],[-118.031505,44.381193],[-118.031842,44.403528],[-118.010761,44.404604],[-118.01167,44.422834],[-117.963742,44.425928],[-117.963918,44.438688],[-117.590923,44.439949],[-117.588236,44.425827],[-117.564561,44.425019],[-117.565102,44.413159],[-117.528632,44.411484],[-117.527251,44.39827],[-117.50614,44.396981],[-117.504102,44.380123],[-117.485554,44.379734],[-117.483056,44.298603],[-117.217456,44.300665],[-117.213572,44.28472],[-117.170723,44.253333],[-117.143279,44.250632],[-117.112692,44.269805],[-117.100561,44.267078],[-117.081387,44.243847],[-117.052028,44.231556],[-117.030352,44.249337],[-116.992707,44.247063],[-116.976127,44.225182],[-116.981872,44.197842],[-116.913051,44.177304],[-116.902254,44.146314],[-116.946887,44.093026],[-116.963443,44.090298],[-116.976818,44.073895],[-116.933593,44.014203],[-116.967957,43.963196],[-116.959716,43.928577],[-116.978141,43.904441],[-116.978148,43.873469],[-116.98577,43.859351],[-117.01622,43.852972],[-117.010505,43.83977],[-117.027627,43.831568],[-117.037117,43.800142],[-117.023795,43.753702],[-117.026295,43.679031],[-117.018864,41.994794],[-118.185317,41.996637],[-118.188597,42.262516],[-118.205993,42.264625],[-118.209052,42.904549],[-118.219063,42.904458],[-118.225249,44.029975]]]},"id":41045},
{"type":"Feature","properties":{"name":"Hancock"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.050137,45.255971],[-67.979837,44.955447],[-68.094801,44.940894],[-68.0319,44.674758],[-68.014398,44.676258],[-67.994902,44.591744],[-68.011261,44.588364],[-67.986524,44.484812],[-68.016393,44.384957],[-68.074379,44.381374],[-68.136265,44.475237],[-68.245614,44.490648],[-68.363766,44.431387],[-68.428571,44.465306],[-68.552186,44.399049],[-68.530076,44.289836],[-68.559427,44.259887],[-68.74031,44.34633],[-68.812852,44.327432],[-68.813768,44.41399],[-68.741349,44.507285],[-68.745279,44.552321],[-68.823552,44.608907],[-68.823813,44.664089],[-68.824004,44.686306],[-68.796294,44.687058],[-68.765615,44.676262],[-68.766362,44.666699],[-68.743962,44.66536],[-68.718106,44.699982],[-68.684284,44.721027],[-68.649446,44.705933],[-68.60531,44.742996],[-68.44511,44.765235],[-68.499699,44.980058],[-68.376305,44.995524],[-68.394539,45.086837],[-68.275356,45.103314],[-68.300564,45.225625],[-68.050137,45.255971]]],[[[-68.387921,44.377253],[-68.350254,44.398951],[-68.355449,44.428858],[-68.238709,44.437563],[-68.164769,44.334496],[-68.304705,44.290031],[-68.320712,44.225079],[-68.40289,44.270801],[-68.387921,44.377253]]]]},"id":23009},
{"type":"Feature","properties":{"name":"Grafton"},"geometry":{"type":"Polygon","coordinates":[[[-71.730488,43.566522],[-71.770055,43.554449],[-71.790151,43.557977],[-71.813719,43.551996],[-71.850585,43.604958],[-71.942071,43.526742],[-72.054111,43.539372],[-72.072018,43.553746],[-72.094784,43.52995],[-72.117932,43.538021],[-72.108639,43.554276],[-72.215888,43.583541],[-72.333085,43.597365],[-72.30404,43.69853],[-72.260056,43.7353],[-72.219123,43.750693],[-72.206092,43.764635],[-72.184836,43.80169],[-72.17009,43.878918],[-72.12165,43.909217],[-72.113204,43.939166],[-72.091712,43.957991],[-72.112808,43.976515],[-72.109909,43.989229],[-72.085204,44.008924],[-72.076919,44.032041],[-72.034728,44.083374],[-72.032447,44.0961],[-72.049515,44.100452],[-72.03492,44.120746],[-72.044725,44.156436],[-72.059282,44.182177],[-72.04439,44.23438],[-72.059566,44.261494],[-72.035495,44.299434],[-71.994434,44.327548],[-71.938906,44.325786],[-71.928362,44.336112],[-71.834816,44.344199],[-71.821197,44.35036],[-71.797729,44.384173],[-71.76657,44.398249],[-71.708539,44.336613],[-71.68932,44.338104],[-71.59108,44.297151],[-71.580429,44.255469],[-71.522001,44.26488],[-71.514928,44.248794],[-71.463825,44.250107],[-71.427752,44.208382],[-71.437365,44.207204],[-71.431727,44.170621],[-71.399461,44.147661],[-71.37796,44.060634],[-71.357078,44.057484],[-71.385238,44.020218],[-71.363249,43.914519],[-71.564714,43.892862],[-71.550401,43.796478],[-71.540261,43.796287],[-71.530426,43.752835],[-71.524307,43.694421],[-71.648806,43.682118],[-71.652209,43.619795],[-71.673808,43.598322],[-71.709766,43.600317],[-71.732212,43.590685],[-71.721218,43.579115],[-71.730488,43.566522]]]},"id":33009},
{"type":"Feature","properties":{"name":"Deschutes"},"geometry":{"type":"Polygon","coordinates":[[[-122.000905,43.609327],[-121.975057,43.62808],[-121.985151,43.64502],[-121.96758,43.699478],[-121.975952,43.831846],[-121.928086,43.907517],[-121.874283,43.901756],[-121.861634,43.938251],[-121.829598,43.961772],[-121.815433,44.040285],[-121.766721,44.090395],[-121.765105,44.112806],[-121.787385,44.139384],[-121.771686,44.188311],[-121.803102,44.253345],[-121.832477,44.280125],[-121.832868,44.312512],[-121.844931,44.338094],[-121.839547,44.38804],[-121.108986,44.383373],[-121.099907,44.127726],[-120.987567,44.125218],[-120.985297,43.956119],[-120.747967,43.95302],[-120.747805,43.869154],[-120.3827,43.868516],[-120.382553,43.776015],[-120.25635,43.775082],[-120.256089,43.689901],[-119.893292,43.689692],[-119.895999,43.604011],[-121.328936,43.610309],[-122.000905,43.609327]]]},"id":41017},
{"type":"Feature","properties":{"name":"Knox"},"geometry":{"type":"Polygon","coordinates":[[[-69.346454,44.01597],[-69.328601,44.011133],[-69.282503,44.070168],[-69.301843,44.094574],[-69.29757,44.128634],[-69.332748,44.210629],[-69.403381,44.214004],[-69.407852,44.223285],[-69.438819,44.237581],[-69.444335,44.307583],[-69.440138,44.322502],[-69.418662,44.318566],[-69.414641,44.330754],[-69.392409,44.347328],[-69.345496,44.313295],[-69.263869,44.365179],[-69.130648,44.259965],[-69.039183,44.252478],[-69.021482,44.244093],[-69.074458,44.069066],[-69.219141,43.946788],[-69.29365,43.942191],[-69.346454,44.01597]]]},"id":23013},
{"type":"Feature","properties":{"name":"Boise"},"geometry":{"type":"Polygon","coordinates":[[[-115.972453,43.577613],[-116.276562,43.796805],[-116.2664,43.798114],[-116.267782,44.143418],[-116.207897,44.143529],[-116.118728,44.1416],[-116.097833,44.228507],[-115.532076,44.226658],[-115.499314,44.237236],[-115.452842,44.233056],[-115.396178,44.255175],[-115.378874,44.285052],[-115.351164,44.295653],[-115.343146,44.310142],[-115.346297,44.337989],[-115.311667,44.343029],[-115.284497,44.330826],[-115.252132,44.322659],[-115.239757,44.306992],[-115.21557,44.303937],[-115.199624,44.279104],[-115.170867,44.280077],[-115.15782,44.243429],[-115.168493,44.226255],[-115.155956,44.194631],[-115.121744,44.186402],[-115.097458,44.166001],[-115.080162,44.168943],[-115.062704,44.155469],[-115.030347,44.150438],[-115.017856,44.141591],[-115.011851,44.129197],[-115.037883,44.109986],[-115.023043,44.094724],[-114.997216,44.085225],[-114.993058,44.075135],[-115.017473,44.067299],[-115.038995,44.049393],[-115.04149,44.028927],[-115.025528,44.009094],[-114.976911,43.997425],[-114.976315,43.974632],[-114.957462,43.96751],[-114.967998,43.933959],[-115.034315,43.946803],[-115.059516,43.932138],[-115.067993,43.94684],[-115.085213,43.944361],[-115.083955,43.966666],[-115.108881,43.961557],[-115.131298,43.978273],[-115.152457,44.065147],[-115.17431,44.080943],[-115.217448,44.086539],[-115.189049,44.053351],[-115.207208,44.040377],[-115.222122,44.005041],[-115.265916,43.958237],[-115.28592,43.920684],[-115.334491,43.908095],[-115.36678,43.912138],[-115.403181,43.903016],[-115.504305,43.865936],[-115.526323,43.845229],[-115.536897,43.796156],[-115.597507,43.776777],[-115.624866,43.739721],[-115.630167,43.696519],[-115.669681,43.682351],[-115.692294,43.65799],[-115.783178,43.63382],[-115.798658,43.616661],[-115.875602,43.589114],[-115.949305,43.604289],[-115.972453,43.577613]]]},"id":16015},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-69.800013,44.026867],[-69.766755,44.047732],[-69.777276,44.074148],[-69.750122,44.140694],[-69.655953,44.127615],[-69.666305,44.235152],[-69.645484,44.281008],[-69.543792,44.263042],[-69.521804,44.286487],[-69.504729,44.341582],[-69.414641,44.330754],[-69.418662,44.318566],[-69.440138,44.322502],[-69.444335,44.307583],[-69.438819,44.237581],[-69.407852,44.223285],[-69.403381,44.214004],[-69.332748,44.210629],[-69.29757,44.128634],[-69.301843,44.094574],[-69.282503,44.070168],[-69.328601,44.011133],[-69.346454,44.01597],[-69.394488,44.025128],[-69.483233,43.88716],[-69.589327,43.844863],[-69.664453,43.852224],[-69.655245,43.98025],[-69.612932,44.033613],[-69.720636,43.93798],[-69.704759,44.011082],[-69.800013,44.026867]]]},"id":23015},
{"type":"Feature","properties":{"name":"Addison"},"geometry":{"type":"Polygon","coordinates":[[[-73.38474,43.804508],[-73.375121,43.885977],[-73.405335,43.914808],[-73.417406,43.988197],[-73.408251,44.018222],[-73.436001,44.045679],[-73.435215,44.063898],[-73.408757,44.10661],[-73.407865,44.136227],[-73.382062,44.172108],[-73.377333,44.201247],[-73.305326,44.260142],[-73.268971,44.258125],[-73.02298,44.280252],[-73.022065,44.29939],[-72.981285,44.294069],[-72.946888,44.165277],[-72.93671,44.163828],[-72.910859,44.067021],[-72.889206,44.068207],[-72.735378,44.024912],[-72.796466,43.950771],[-72.860126,43.866611],[-72.872127,43.869903],[-72.879925,43.897296],[-72.970579,43.86296],[-72.960377,43.824169],[-73.01518,43.805462],[-73.030455,43.845649],[-73.212595,43.836838],[-73.208344,43.765314],[-73.35667,43.756558],[-73.358997,43.778428],[-73.38474,43.804508]]]},"id":50001},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-71.172569,43.53525],[-71.19471,43.549845],[-71.225068,43.549116],[-71.257669,43.563211],[-71.530426,43.752835],[-71.540261,43.796287],[-71.550401,43.796478],[-71.564714,43.892862],[-71.363249,43.914519],[-71.385238,44.020218],[-71.357078,44.057484],[-71.37796,44.060634],[-71.399461,44.147661],[-71.431727,44.170621],[-71.437365,44.207204],[-71.427752,44.208382],[-71.400324,44.208302],[-71.392343,44.183534],[-71.360558,44.164671],[-71.342742,44.082268],[-71.315352,44.082626],[-71.311332,44.119922],[-71.248511,44.2399],[-71.045736,44.236009],[-71.042448,44.28199],[-71.008597,44.282146],[-70.984443,43.791164],[-70.973874,43.57183],[-70.956524,43.564143],[-70.94962,43.548954],[-70.964268,43.53199],[-71.033659,43.475739],[-71.045454,43.524269],[-71.066847,43.526111],[-71.08087,43.508209],[-71.11312,43.507102],[-71.131271,43.571246],[-71.172569,43.53525]]]},"id":33003},
{"type":"Feature","properties":{"name":"Lane"},"geometry":{"type":"Polygon","coordinates":[[[-122.1467,43.435519],[-122.734442,43.433543],[-122.737191,43.534187],[-123.105103,43.531325],[-123.106288,43.594215],[-123.133649,43.59568],[-123.137997,43.771123],[-123.345724,43.772258],[-123.347129,43.800941],[-123.467594,43.805136],[-123.470577,43.823248],[-123.528577,43.824961],[-123.530027,43.860037],[-123.575445,43.86281],[-123.576239,43.884226],[-123.617782,43.886263],[-123.620025,43.915827],[-123.659599,43.91704],[-123.659576,43.929823],[-123.704957,43.931639],[-123.705804,43.940271],[-123.834401,43.940085],[-123.835889,43.929506],[-123.853345,43.92586],[-123.85465,43.913466],[-123.86952,43.903105],[-123.926933,43.891886],[-123.928542,43.863947],[-123.94635,43.863928],[-123.947349,43.848806],[-124.060993,43.846891],[-124.064564,43.856748],[-124.158326,43.857118],[-124.118319,44.269515],[-123.946034,44.266407],[-123.942867,44.272968],[-123.775389,44.274761],[-123.716596,44.275459],[-123.717374,44.270393],[-123.2005,44.277247],[-123.175719,44.272005],[-123.172941,44.24153],[-123.151814,44.220133],[-123.157345,44.196585],[-123.145191,44.189387],[-122.908719,44.195099],[-122.904799,44.252804],[-122.860746,44.253388],[-122.85359,44.281555],[-122.822667,44.2715],[-122.793309,44.279633],[-122.722842,44.27812],[-122.566855,44.22402],[-122.544874,44.228594],[-122.517727,44.21694],[-122.50533,44.221564],[-122.448617,44.207468],[-122.407349,44.210524],[-122.37309,44.197302],[-122.330458,44.215456],[-122.316079,44.243872],[-121.803102,44.253345],[-121.771686,44.188311],[-121.787385,44.139384],[-121.765105,44.112806],[-121.766721,44.090395],[-121.815433,44.040285],[-121.829598,43.961772],[-121.861634,43.938251],[-121.874283,43.901756],[-121.928086,43.907517],[-121.975952,43.831846],[-121.96758,43.699478],[-121.985151,43.64502],[-121.975057,43.62808],[-122.000905,43.609327],[-122.032591,43.601278],[-122.126818,43.541124],[-122.139521,43.508264],[-122.122491,43.500273],[-122.118493,43.489031],[-122.1467,43.435519]]]},"id":41039},
{"type":"Feature","properties":{"name":"Blue Earth"},"geometry":{"type":"Polygon","coordinates":[[[-94.369681,44.108078],[-94.375735,44.26346],[-94.304107,44.244621],[-94.212093,44.207302],[-94.11734,44.184624],[-94.069334,44.163472],[-94.03378,44.166062],[-94.005223,44.187558],[-94.02448,44.217935],[-94.012372,44.227926],[-94.017255,44.24373],[-93.776422,44.24257],[-93.775025,44.200189],[-93.772733,43.849569],[-94.247501,43.846603],[-94.37014,43.847613],[-94.369681,44.108078]]]},"id":27013},
{"type":"Feature","properties":{"name":"Juneau"},"geometry":{"type":"Polygon","coordinates":[[[-90.314589,43.642812],[-90.313728,43.729773],[-90.31187,44.15933],[-90.310436,44.253217],[-89.886113,44.249203],[-89.891103,44.229592],[-89.907613,44.216782],[-89.902959,44.185353],[-89.920019,44.161145],[-89.962081,44.162373],[-89.970854,44.140469],[-90.013931,44.109783],[-90.013541,44.058297],[-89.997977,44.017809],[-89.965384,43.993331],[-89.951604,43.927785],[-89.966726,43.910878],[-89.953114,43.868571],[-89.847278,43.766432],[-89.819057,43.692746],[-89.786654,43.662317],[-89.780261,43.644575],[-90.314589,43.642812]]]},"id":55057},
{"type":"Feature","properties":{"name":"Butte"},"geometry":{"type":"Polygon","coordinates":[[[-113.306343,44.230418],[-112.982819,44.228325],[-112.982832,43.96929],[-112.683413,43.967169],[-112.678504,43.613739],[-112.689178,43.614998],[-112.688864,43.529782],[-112.804781,43.525326],[-112.806283,43.438817],[-112.924954,43.43845],[-112.924069,43.357801],[-112.936131,43.356355],[-112.937695,43.276709],[-112.998152,43.276288],[-113.353609,43.280264],[-113.350496,43.362588],[-113.628324,43.364544],[-113.625715,43.443252],[-113.610501,43.457431],[-113.587673,43.459574],[-113.590351,43.469206],[-113.622953,43.486441],[-113.665047,43.490702],[-113.660202,43.512438],[-113.676981,43.531081],[-113.687183,43.568228],[-113.701809,43.579527],[-113.732077,43.581191],[-113.764655,43.560588],[-113.789711,43.565299],[-113.781868,43.584239],[-113.759651,43.599635],[-113.754281,43.619544],[-113.70162,43.636],[-113.655827,43.666735],[-113.565315,43.691743],[-113.447259,43.757874],[-113.435738,43.772145],[-113.434479,43.796266],[-113.402411,43.814989],[-113.374066,43.787328],[-113.353291,43.784478],[-113.352268,43.80359],[-113.413275,43.837615],[-113.426803,43.858031],[-113.455162,43.874294],[-113.436149,43.922097],[-113.450895,44.053781],[-113.408254,44.053547],[-113.407972,44.227732],[-113.306343,44.230418]]]},"id":16023},
{"type":"Feature","properties":{"name":"Lyman"},"geometry":{"type":"Polygon","coordinates":[[[-99.534007,43.504074],[-99.62052,43.504703],[-99.623548,43.744044],[-99.640257,43.740496],[-99.650885,43.762724],[-99.664229,43.762255],[-99.672035,43.729236],[-99.687676,43.732482],[-99.684196,43.757437],[-99.696129,43.759196],[-99.726999,43.721912],[-99.743739,43.727916],[-99.739268,43.748744],[-99.748675,43.750415],[-99.760906,43.737132],[-99.75732,43.713314],[-99.793065,43.708991],[-99.830717,43.694236],[-99.85691,43.700983],[-99.867469,43.673064],[-99.87577,43.671954],[-99.898728,43.700922],[-99.932809,43.692407],[-99.939409,43.698533],[-100.013661,43.69624],[-100.015049,43.704937],[-100.034368,43.699597],[-100.040929,43.706631],[-100.09243,43.692215],[-100.122071,43.694454],[-100.132883,43.704795],[-100.185833,43.709525],[-100.209233,43.69881],[-100.222768,43.717421],[-100.232412,43.714964],[-100.287452,43.704676],[-100.303664,43.721079],[-100.343277,43.72674],[-100.345099,43.846634],[-100.371764,43.846455],[-100.372175,44.172878],[-100.371397,44.199305],[-99.932328,44.20073],[-99.921815,44.173951],[-99.872206,44.129545],[-99.835966,44.127958],[-99.784276,44.139097],[-99.645371,44.107704],[-99.608299,44.119254],[-99.604042,44.145572],[-99.636224,44.170805],[-99.676615,44.167567],[-99.69855,44.173754],[-99.71268,44.192453],[-99.701168,44.213067],[-99.6617,44.221368],[-99.611696,44.214704],[-99.5784,44.196722],[-99.544883,44.162753],[-99.564216,44.110943],[-99.548949,44.081242],[-99.517156,44.061017],[-99.459873,44.050855],[-99.382272,44.021266],[-99.348541,43.974484],[-99.359077,43.931981],[-99.358145,43.908238],[-99.311139,43.871015],[-99.309315,43.851343],[-99.358952,43.793818],[-99.419859,43.774973],[-99.423185,43.763235],[-99.404073,43.717448],[-99.456893,43.695117],[-99.464782,43.671688],[-99.448539,43.658825],[-99.387677,43.659898],[-99.364132,43.652238],[-99.347515,43.626585],[-99.341541,43.574878],[-99.285844,43.529598],[-99.299036,43.503186],[-99.534007,43.504074]]]},"id":46085},
{"type":"Feature","properties":{"name":"Orange"},"geometry":{"type":"Polygon","coordinates":[[[-72.044725,44.156436],[-72.03492,44.120746],[-72.049515,44.100452],[-72.032447,44.0961],[-72.034728,44.083374],[-72.076919,44.032041],[-72.085204,44.008924],[-72.109909,43.989229],[-72.112808,43.976515],[-72.091712,43.957991],[-72.113204,43.939166],[-72.12165,43.909217],[-72.17009,43.878918],[-72.184836,43.80169],[-72.206092,43.764635],[-72.774668,43.92643],[-72.781314,43.945167],[-72.796466,43.950771],[-72.735378,44.024912],[-72.688532,44.013526],[-72.582544,44.156884],[-72.56479,44.152589],[-72.5589,44.159813],[-72.435322,44.130167],[-72.409695,44.218277],[-72.364146,44.202683],[-72.299705,44.178632],[-72.163693,44.187307],[-72.044725,44.156436]]]},"id":50017},
{"type":"Feature","properties":{"name":"Waseca"},"geometry":{"type":"Polygon","coordinates":[[[-93.772733,43.849569],[-93.775025,44.200189],[-93.529329,44.200105],[-93.410459,44.196817],[-93.411988,43.847055],[-93.651399,43.848417],[-93.772733,43.849569]]]},"id":27161},
{"type":"Feature","properties":{"name":"Buffalo"},"geometry":{"type":"Polygon","coordinates":[[[-98.93125,43.930434],[-99.359077,43.931981],[-99.348541,43.974484],[-99.382272,44.021266],[-99.459873,44.050855],[-99.517156,44.061017],[-99.548949,44.081242],[-99.564216,44.110943],[-99.544883,44.162753],[-99.5784,44.196722],[-99.299927,44.199482],[-98.929665,44.199551],[-98.93125,43.930434]]]},"id":46017},
{"type":"Feature","properties":{"name":"Jerauld"},"geometry":{"type":"Polygon","coordinates":[[[-98.335699,43.933192],[-98.809132,43.930716],[-98.93125,43.930434],[-98.929665,44.199551],[-98.70429,44.199429],[-98.337862,44.198001],[-98.335699,43.933192]]]},"id":46073},
{"type":"Feature","properties":{"name":"Moody"},"geometry":{"type":"Polygon","coordinates":[[[-96.456602,43.848742],[-96.891835,43.84472],[-96.891577,44.194638],[-96.457398,44.199061],[-96.456602,43.848742]]]},"id":46101},
{"type":"Feature","properties":{"name":"Pipestone"},"geometry":{"type":"Polygon","coordinates":[[[-96.06982,43.847078],[-96.456602,43.848742],[-96.457398,44.199061],[-96.08275,44.198063],[-96.066079,44.197518],[-96.06982,43.847078]]]},"id":27117},
{"type":"Feature","properties":{"name":"Dodge"},"geometry":{"type":"Polygon","coordinates":[[[-93.052017,43.845818],[-93.049348,44.196921],[-93.043068,44.198908],[-92.681823,44.195281],[-92.680327,43.850263],[-92.694778,43.847181],[-93.052017,43.845818]]]},"id":27039},
{"type":"Feature","properties":{"name":"Sanborn"},"geometry":{"type":"Polygon","coordinates":[[[-97.855708,43.844215],[-97.966916,43.84432],[-98.331036,43.844024],[-98.335699,43.933192],[-98.337862,44.198001],[-97.856484,44.195313],[-97.855708,43.844215]]]},"id":46111},
{"type":"Feature","properties":{"name":"Murray"},"geometry":{"type":"Polygon","coordinates":[[[-95.468002,44.196971],[-95.469756,43.846786],[-96.058345,43.846735],[-96.06982,43.847078],[-96.066079,44.197518],[-95.595181,44.197586],[-95.468002,44.196971]]]},"id":27101},
{"type":"Feature","properties":{"name":"Cottonwood"},"geometry":{"type":"Polygon","coordinates":[[[-95.468002,44.196971],[-95.111011,44.197468],[-95.103221,44.195968],[-95.104319,44.108737],[-94.861896,44.107804],[-94.865504,43.846682],[-95.459036,43.847728],[-95.469756,43.846786],[-95.468002,44.196971]]]},"id":27033},
{"type":"Feature","properties":{"name":"Steele"},"geometry":{"type":"Polygon","coordinates":[[[-93.049348,44.196921],[-93.052017,43.845818],[-93.411988,43.847055],[-93.410459,44.196817],[-93.049348,44.196921]]]},"id":27147},
{"type":"Feature","properties":{"name":"Olmsted"},"geometry":{"type":"Polygon","coordinates":[[[-92.084018,44.106593],[-92.085593,43.846815],[-92.454137,43.844114],[-92.453641,43.832734],[-92.694114,43.83307],[-92.694778,43.847181],[-92.680327,43.850263],[-92.681823,44.195281],[-92.553652,44.19601],[-92.322067,44.194748],[-92.320439,44.109531],[-92.084018,44.106593]]]},"id":27109},
{"type":"Feature","properties":{"name":"Miner"},"geometry":{"type":"Polygon","coordinates":[[[-97.372619,43.844147],[-97.61102,43.844021],[-97.855708,43.844215],[-97.856484,44.195313],[-97.374706,44.195425],[-97.372619,43.844147]]]},"id":46097},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-97.372619,43.844147],[-97.374706,44.195425],[-97.132665,44.193628],[-96.891577,44.194638],[-96.891835,43.84472],[-97.131052,43.843676],[-97.372619,43.844147]]]},"id":46079},
{"type":"Feature","properties":{"name":"Winona"},"geometry":{"type":"Polygon","coordinates":[[[-92.084018,44.106593],[-92.079679,44.193748],[-91.848744,44.191187],[-91.753219,44.137228],[-91.652234,44.066896],[-91.601786,44.040822],[-91.569162,44.034955],[-91.52842,44.034215],[-91.425902,43.98562],[-91.373357,43.947191],[-91.291948,43.847191],[-91.730258,43.845541],[-92.085593,43.846815],[-92.084018,44.106593]]]},"id":27169},
{"type":"Feature","properties":{"name":"Weston"},"geometry":{"type":"Polygon","coordinates":[[[-104.057914,43.503712],[-104.914892,43.500548],[-105.084019,43.500177],[-105.080896,44.182914],[-104.061036,44.181825],[-104.059731,44.145825],[-104.059479,43.852907],[-104.057914,43.503712]]]},"id":56045},
{"type":"Feature","properties":{"name":"Jones"},"geometry":{"type":"Polygon","coordinates":[[[-100.343277,43.72674],[-100.36557,43.736463],[-100.38868,43.730719],[-100.408035,43.736261],[-100.417702,43.72103],[-100.448861,43.730986],[-100.477265,43.720812],[-100.476373,43.7381],[-100.516587,43.732332],[-100.531083,43.746382],[-100.557397,43.739783],[-100.560792,43.760374],[-100.575464,43.758478],[-100.587717,43.766996],[-100.604967,43.76425],[-100.627413,43.746142],[-100.660441,43.744704],[-100.659029,43.734645],[-100.68001,43.720143],[-100.704463,43.725312],[-100.746509,43.720433],[-100.751208,43.741505],[-100.789798,43.729238],[-100.802952,43.745953],[-100.795459,43.75716],[-100.817066,43.769531],[-100.8438,43.766983],[-100.863774,43.787506],[-100.877248,43.78418],[-100.882176,43.801151],[-100.89887,43.796536],[-100.906286,43.814934],[-100.92394,43.817169],[-100.936018,43.830658],[-100.964613,43.815373],[-100.965704,43.833622],[-100.994696,43.852508],[-101.028571,43.846897],[-101.029997,43.857864],[-101.055838,43.862083],[-101.070434,43.847374],[-101.067952,43.993595],[-101.047605,43.993599],[-101.046034,44.176346],[-100.372175,44.172878],[-100.371764,43.846455],[-100.345099,43.846634],[-100.343277,43.72674]]]},"id":46075},
{"type":"Feature","properties":{"name":"Cumberland"},"geometry":{"type":"Polygon","coordinates":[[[-70.784136,43.81697],[-70.800548,43.859288],[-70.777117,43.87148],[-70.75554,43.871404],[-70.753961,43.904633],[-70.73182,43.929154],[-70.746858,43.946842],[-70.718584,43.966655],[-70.80415,44.038236],[-70.848249,44.049566],[-70.851301,44.066045],[-70.872657,44.086155],[-70.860259,44.092701],[-70.82205,44.079026],[-70.622751,44.168481],[-70.610582,44.156774],[-70.588873,44.121665],[-70.608484,44.05702],[-70.543839,44.009081],[-70.481373,44.034504],[-70.464101,44.018917],[-70.401722,43.995355],[-70.388584,44.003201],[-70.36317,43.990655],[-70.310283,44.039342],[-70.190537,43.961193],[-70.194985,43.949925],[-70.110992,43.917853],[-70.089462,43.938646],[-70.0727,43.931769],[-70.034043,43.973471],[-70.029678,43.961031],[-69.974234,43.92015],[-69.914311,43.923328],[-69.857044,43.955744],[-69.860332,43.922561],[-69.886791,43.876713],[-69.903132,43.790732],[-69.972903,43.768848],[-69.9995,43.786208],[-69.98737,43.845739],[-70.026403,43.845601],[-70.156629,43.78981],[-70.235798,43.685796],[-70.222239,43.57724],[-70.341611,43.534909],[-70.492768,43.610929],[-70.465668,43.645737],[-70.555179,43.715525],[-70.572383,43.688182],[-70.596683,43.696101],[-70.606892,43.681784],[-70.621167,43.700373],[-70.650129,43.703844],[-70.646681,43.761159],[-70.664321,43.789398],[-70.696548,43.804786],[-70.75419,43.793003],[-70.777719,43.804965],[-70.784136,43.81697]]]},"id":23005},
{"type":"Feature","properties":{"name":"Washakie"},"geometry":{"type":"Polygon","coordinates":[[[-107.534767,43.504568],[-107.596712,43.50562],[-107.595187,43.645046],[-107.715491,43.64627],[-107.7144,43.731047],[-107.950767,43.731023],[-107.949913,43.814905],[-108.16889,43.815934],[-108.188208,43.830819],[-108.185988,43.846391],[-108.321865,43.846578],[-108.3223,43.903554],[-108.432961,43.904908],[-108.431756,43.993866],[-108.499927,43.99522],[-108.50108,44.080014],[-108.558479,44.080788],[-108.557313,44.167958],[-107.142907,44.158339],[-107.129517,44.158198],[-107.12485,43.82103],[-107.114032,43.820374],[-107.112262,43.503385],[-107.534767,43.504568]]]},"id":56043},
{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"Polygon","coordinates":[[[-90.911371,43.725651],[-90.914085,44.07089],[-90.973335,44.073892],[-90.96892,44.134545],[-90.94253,44.151695],[-90.903224,44.161232],[-90.31187,44.15933],[-90.313728,43.729773],[-90.435845,43.723505],[-90.911371,43.725651]]]},"id":55081},
{"type":"Feature","properties":{"name":"Payette"},"geometry":{"type":"Polygon","coordinates":[[[-116.441052,44.143806],[-116.446848,44.0568],[-116.521924,44.056178],[-116.526767,44.000617],[-116.563642,44.000743],[-116.566998,43.971602],[-116.697886,43.973333],[-116.701826,43.800269],[-116.748726,43.800822],[-116.750664,43.791262],[-116.784884,43.791777],[-116.78554,43.783129],[-116.841306,43.783659],[-116.841268,43.799143],[-116.879295,43.800093],[-116.881813,43.810568],[-116.900826,43.812407],[-116.902078,43.826525],[-116.946461,43.828829],[-116.948964,43.873916],[-116.978148,43.873469],[-116.978141,43.904441],[-116.959716,43.928577],[-116.967957,43.963196],[-116.933593,44.014203],[-116.976818,44.073895],[-116.963443,44.090298],[-116.946887,44.093026],[-116.902254,44.146314],[-116.441052,44.143806]]]},"id":16075},
{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"Polygon","coordinates":[[[-74.15955,43.368855],[-74.142925,43.250583],[-74.222769,43.247741],[-74.221426,43.220447],[-74.320679,43.211142],[-74.32583,43.236605],[-74.534462,43.227277],[-74.714828,43.284649],[-74.8709,43.339218],[-74.778678,43.478595],[-74.854204,44.0701],[-74.536228,44.095912],[-74.278504,44.118575],[-74.256298,43.970561],[-74.331671,43.921648],[-74.212582,43.811229],[-74.187892,43.824016],[-74.148592,43.828166],[-74.137154,43.814971],[-74.055987,43.79317],[-74.059106,43.739441],[-74.214837,43.721981],[-74.15955,43.368855]]]},"id":36041},
{"type":"Feature","properties":{"name":"Watonwan"},"geometry":{"type":"Polygon","coordinates":[[[-94.859065,43.845572],[-94.865504,43.846682],[-94.861896,44.107804],[-94.369681,44.108078],[-94.37014,43.847613],[-94.859065,43.845572]]]},"id":27165},
{"type":"Feature","properties":{"name":"Herkimer"},"geometry":{"type":"Polygon","coordinates":[[[-74.854204,44.0701],[-74.778678,43.478595],[-74.8709,43.339218],[-74.714828,43.284649],[-74.69434,43.18741],[-74.718038,43.170904],[-74.721631,43.154054],[-74.737279,43.149415],[-74.740835,43.129839],[-74.770086,43.107836],[-74.774801,43.080973],[-74.76447,43.054198],[-74.747433,43.044291],[-74.744975,42.991099],[-74.763637,42.866398],[-74.884125,42.900196],[-74.890801,42.835587],[-74.910692,42.827263],[-75.09887,42.910388],[-75.135645,42.863692],[-75.212498,42.860278],[-75.212932,42.885279],[-75.214192,43.063535],[-75.068162,43.230389],[-75.129986,43.243973],[-75.135166,43.253026],[-75.157788,43.252373],[-75.161695,43.260079],[-75.149167,43.300679],[-75.117237,43.310509],[-75.101459,43.307911],[-75.092761,43.314812],[-75.097354,43.326603],[-75.080363,43.327198],[-75.115208,43.611362],[-75.163869,44.092807],[-75.067101,44.052158],[-74.854204,44.0701]]]},"id":36043},
{"type":"Feature","properties":{"name":"La Crosse"},"geometry":{"type":"Polygon","coordinates":[[[-90.911371,43.725651],[-91.258916,43.722396],[-91.251105,43.788076],[-91.291948,43.847191],[-91.373357,43.947191],[-91.425902,43.98562],[-91.330618,43.987882],[-91.346467,44.033226],[-91.335405,44.047504],[-91.302768,44.064353],[-91.264118,44.0708],[-91.225626,44.058543],[-91.181841,44.089183],[-91.148422,44.076389],[-90.973335,44.073892],[-90.914085,44.07089],[-90.911371,43.725651]]]},"id":55063},
{"type":"Feature","properties":{"name":"Elmore"},"geometry":{"type":"Polygon","coordinates":[[[-115.027607,42.906628],[-115.026652,42.764737],[-115.448809,42.763162],[-115.446294,42.847699],[-115.4325,42.849355],[-115.433905,42.925313],[-115.494568,42.927387],[-115.531275,42.937813],[-115.585186,42.93386],[-115.626143,42.952033],[-115.679054,42.935294],[-115.761638,42.937468],[-115.780239,42.947646],[-115.782932,42.972227],[-115.836844,42.96908],[-115.876098,42.981248],[-115.906182,42.980138],[-115.925951,42.997582],[-115.938463,42.998593],[-115.968837,42.978829],[-115.95624,42.941895],[-116.000042,42.943146],[-116.052099,42.981277],[-116.080238,42.98466],[-116.110009,43.007601],[-116.141863,43.015546],[-116.146601,43.037862],[-116.179165,43.040803],[-116.197774,43.05774],[-116.19003,43.076344],[-116.196798,43.087754],[-116.241241,43.095753],[-116.254318,43.105377],[-115.969366,43.110725],[-115.972453,43.577613],[-115.949305,43.604289],[-115.875602,43.589114],[-115.798658,43.616661],[-115.783178,43.63382],[-115.692294,43.65799],[-115.669681,43.682351],[-115.630167,43.696519],[-115.624866,43.739721],[-115.597507,43.776777],[-115.536897,43.796156],[-115.526323,43.845229],[-115.504305,43.865936],[-115.403181,43.903016],[-115.36678,43.912138],[-115.334491,43.908095],[-115.28592,43.920684],[-115.265916,43.958237],[-115.222122,44.005041],[-115.207208,44.040377],[-115.189049,44.053351],[-115.217448,44.086539],[-115.17431,44.080943],[-115.152457,44.065147],[-115.131298,43.978273],[-115.108881,43.961557],[-115.083955,43.966666],[-115.085213,43.944361],[-115.067993,43.94684],[-115.059516,43.932138],[-115.034315,43.946803],[-114.967998,43.933959],[-114.982241,43.903193],[-114.96444,43.861471],[-115.023515,43.793583],[-115.035981,43.735015],[-115.001486,43.701709],[-115.026778,43.658827],[-115.022253,43.618239],[-115.038718,43.595262],[-115.072967,43.591211],[-115.074793,43.189356],[-115.076688,42.919186],[-115.055715,42.908413],[-115.027607,42.906628]]]},"id":16039},
{"type":"Feature","properties":{"name":"Hot Springs"},"geometry":{"type":"Polygon","coordinates":[[[-107.596712,43.50562],[-107.597657,43.475537],[-108.154087,43.479194],[-108.155132,43.465045],[-108.344522,43.464851],[-108.344782,43.478965],[-108.466704,43.479442],[-108.466796,43.509963],[-108.588169,43.510802],[-108.588162,43.539053],[-108.692528,43.539934],[-108.693353,43.579557],[-108.815511,43.580617],[-108.814909,43.607984],[-108.934,43.60951],[-108.933886,43.625466],[-109.170734,43.626421],[-109.167851,43.697203],[-109.200583,43.719175],[-109.229034,43.75955],[-109.258165,43.767058],[-109.276683,43.801436],[-109.302671,43.809057],[-109.311781,43.820093],[-109.087855,43.822976],[-109.085774,43.914269],[-108.925741,43.916672],[-108.922187,43.990696],[-108.7977,43.994351],[-108.795512,44.080643],[-108.558479,44.080788],[-108.50108,44.080014],[-108.499927,43.99522],[-108.431756,43.993866],[-108.432961,43.904908],[-108.3223,43.903554],[-108.321865,43.846578],[-108.185988,43.846391],[-108.188208,43.830819],[-108.16889,43.815934],[-107.949913,43.814905],[-107.950767,43.731023],[-107.7144,43.731047],[-107.715491,43.64627],[-107.595187,43.645046],[-107.596712,43.50562]]]},"id":56017},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-112.507432,43.617139],[-112.678504,43.613739],[-112.683413,43.967169],[-112.681133,44.053286],[-112.145444,44.05391],[-112.145297,43.966778],[-111.958425,43.964361],[-111.957082,43.922342],[-111.969584,43.744509],[-111.920846,43.751761],[-111.877189,43.74187],[-111.852545,43.715374],[-111.815839,43.706188],[-111.756107,43.666894],[-111.699724,43.650506],[-111.617529,43.648546],[-111.617079,43.62208],[-112.507432,43.617139]]]},"id":16051},
{"type":"Feature","properties":{"name":"Harney"},"geometry":{"type":"Polygon","coordinates":[[[-118.185317,41.996637],[-119.310942,41.989135],[-119.351692,41.988853],[-119.359682,42.11564],[-119.356457,42.734748],[-119.935706,42.73209],[-119.932947,42.902715],[-119.917978,42.903963],[-119.922918,43.168653],[-119.891552,43.169806],[-119.895999,43.604011],[-119.893292,43.689692],[-119.774979,43.691322],[-119.77677,43.953703],[-119.657305,43.953869],[-118.818615,43.956648],[-118.817701,44.041407],[-118.346164,44.033816],[-118.346042,44.027437],[-118.225249,44.029975],[-118.219063,42.904458],[-118.209052,42.904549],[-118.205993,42.264625],[-118.188597,42.262516],[-118.185317,41.996637]]]},"id":41025},
{"type":"Feature","properties":{"name":"Sagadahoc"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-69.886791,43.876713],[-69.860332,43.922561],[-69.857044,43.955744],[-69.914311,43.923328],[-69.974234,43.92015],[-70.029678,43.961031],[-70.034043,43.973471],[-70.037804,43.985437],[-70.021317,44.006368],[-70.032799,44.027688],[-70.018471,44.044129],[-69.998901,44.127901],[-69.895924,44.112444],[-69.874881,44.154667],[-69.853984,44.173172],[-69.755463,44.157287],[-69.750122,44.140694],[-69.777276,44.074148],[-69.859928,44.000001],[-69.791528,43.756085],[-69.830392,43.727986],[-69.851785,43.744328],[-69.846156,43.842344],[-69.886791,43.876713]]],[[[-69.800013,44.026867],[-69.704759,44.011082],[-69.720636,43.93798],[-69.748528,43.893375],[-69.724671,43.784477],[-69.750359,43.761704],[-69.777673,43.791271],[-69.800013,44.026867]]]]},"id":23023},
{"type":"Feature","properties":{"name":"Fremont"},"geometry":{"type":"Polygon","coordinates":[[[-110.053867,43.465213],[-110.057625,44.007979],[-110.036079,44.002116],[-110.002363,43.952071],[-109.957989,43.96138],[-109.920023,43.94939],[-109.865501,43.951817],[-109.872535,43.930058],[-109.852973,43.924535],[-109.851484,43.907262],[-109.828434,43.883181],[-109.824397,43.858263],[-109.852978,43.850615],[-109.860004,43.82886],[-109.802215,43.80677],[-109.739439,43.830502],[-109.675112,43.84377],[-109.648029,43.915649],[-109.617541,43.931545],[-109.611094,43.945964],[-109.585733,43.939281],[-109.56749,43.957386],[-109.55481,43.95792],[-109.513341,43.940945],[-109.480503,43.951889],[-109.465723,43.934251],[-109.416777,43.910718],[-109.404973,43.890215],[-109.377216,43.876749],[-109.368296,43.844271],[-109.331382,43.835268],[-109.311781,43.820093],[-109.302671,43.809057],[-109.276683,43.801436],[-109.258165,43.767058],[-109.229034,43.75955],[-109.200583,43.719175],[-109.167851,43.697203],[-109.170734,43.626421],[-108.933886,43.625466],[-108.934,43.60951],[-108.814909,43.607984],[-108.815511,43.580617],[-108.693353,43.579557],[-108.692528,43.539934],[-108.588162,43.539053],[-108.588169,43.510802],[-108.466796,43.509963],[-108.466704,43.479442],[-108.344782,43.478965],[-108.344522,43.464851],[-108.155132,43.465045],[-108.154087,43.479194],[-107.597657,43.475537],[-107.596712,43.50562],[-107.534767,43.504568],[-107.534972,43.471769],[-107.516615,43.470896],[-107.517627,43.133959],[-107.501917,43.133921],[-107.500389,42.782674],[-107.539124,42.78254],[-107.545349,42.440806],[-107.524184,42.440471],[-107.524313,42.259066],[-109.046543,42.262845],[-109.046306,42.43938],[-109.072468,42.439727],[-109.071353,42.705563],[-109.129444,42.705561],[-109.159933,42.745783],[-109.204779,42.768583],[-109.23838,42.766327],[-109.242462,42.778912],[-109.231674,42.801656],[-109.309657,42.847681],[-109.3729,42.944374],[-109.396094,42.944328],[-109.512371,43.010537],[-109.558355,43.020431],[-109.556028,43.038295],[-109.580322,43.097857],[-109.624216,43.135164],[-109.628954,43.15455],[-109.6591,43.176949],[-109.66805,43.193878],[-109.683478,43.281621],[-109.674727,43.305249],[-109.693756,43.329491],[-109.693505,43.356854],[-109.705575,43.365445],[-109.747691,43.363613],[-109.750629,43.368492],[-109.748601,43.464776],[-110.053867,43.465213]]]},"id":56013},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-101.230963,43.394509],[-102.117766,43.392885],[-102.118544,43.479381],[-102.146903,43.480693],[-102.146585,43.702412],[-102.130547,43.710377],[-102.120995,43.689298],[-102.105674,43.694085],[-102.06909,43.689462],[-102.024053,43.714749],[-102.020343,43.995747],[-102.012691,43.996545],[-101.067952,43.993595],[-101.070434,43.847374],[-101.142585,43.836651],[-101.148262,43.822198],[-101.170921,43.826325],[-101.173676,43.805883],[-101.212921,43.807626],[-101.231377,43.79025],[-101.230963,43.394509]]]},"id":46071},
{"type":"Feature","properties":{"name":"Blaine"},"geometry":{"type":"Polygon","coordinates":[[[-113.709166,43.189969],[-114.364587,43.192939],[-114.36548,43.251662],[-114.382433,43.252456],[-114.384532,43.263423],[-114.382861,43.323921],[-114.520661,43.326594],[-114.527459,43.364954],[-114.517342,43.383429],[-114.532777,43.392367],[-114.534067,43.426532],[-114.505105,43.460132],[-114.505716,43.477897],[-114.556148,43.49705],[-114.588605,43.52542],[-114.585813,43.550868],[-114.596182,43.56153],[-114.623191,43.566119],[-114.644692,43.583804],[-114.669236,43.586977],[-114.674814,43.608931],[-114.657259,43.641406],[-114.677485,43.679107],[-114.665195,43.723976],[-114.675563,43.735545],[-114.671291,43.749588],[-114.683873,43.789437],[-114.702467,43.80206],[-114.712217,43.794941],[-114.742599,43.796375],[-114.754287,43.787917],[-114.788392,43.791682],[-114.838709,43.784315],[-114.846125,43.790358],[-114.841891,43.803954],[-114.856754,43.815127],[-114.95108,43.841673],[-114.96444,43.861471],[-114.982241,43.903193],[-114.967998,43.933959],[-114.929666,43.941112],[-114.908616,43.964471],[-114.867858,43.987516],[-114.811925,43.987059],[-114.80064,43.982318],[-114.802684,43.919019],[-114.66493,43.917118],[-114.593776,43.881672],[-114.564142,43.840587],[-114.549172,43.833476],[-114.507667,43.8409],[-114.501648,43.884065],[-114.49131,43.888887],[-114.385609,43.880461],[-114.346835,43.865565],[-114.329897,43.876613],[-114.282326,43.875649],[-114.265402,43.822901],[-114.159211,43.768269],[-114.135124,43.768207],[-114.123533,43.742446],[-114.10246,43.731505],[-114.051234,43.72946],[-114.029063,43.773151],[-114.016398,43.772869],[-113.990945,43.746321],[-113.97837,43.715517],[-113.940199,43.676827],[-113.909772,43.663815],[-113.896725,43.644383],[-113.861019,43.636703],[-113.829141,43.600868],[-113.806115,43.593024],[-113.802124,43.570159],[-113.789711,43.565299],[-113.764655,43.560588],[-113.732077,43.581191],[-113.701809,43.579527],[-113.687183,43.568228],[-113.676981,43.531081],[-113.660202,43.512438],[-113.665047,43.490702],[-113.622953,43.486441],[-113.590351,43.469206],[-113.587673,43.459574],[-113.610501,43.457431],[-113.625715,43.443252],[-113.628324,43.364544],[-113.350496,43.362588],[-113.353609,43.280264],[-112.998152,43.276288],[-113.000647,43.103811],[-113.236638,43.105788],[-113.227976,42.759693],[-113.174333,42.758134],[-113.177185,42.661318],[-113.229561,42.661931],[-113.230263,42.614649],[-113.251221,42.607523],[-113.258248,42.615911],[-113.328928,42.635205],[-113.340877,42.656922],[-113.359729,42.666092],[-113.461675,42.661167],[-113.461601,42.845855],[-113.408484,42.844859],[-113.406283,43.187937],[-113.709166,43.189969]]]},"id":16013},
{"type":"Feature","properties":{"name":"Teton"},"geometry":{"type":"Polygon","coordinates":[[[-111.046771,43.515528],[-111.190971,43.539232],[-111.216615,43.595086],[-111.237077,43.615135],[-111.387633,43.617072],[-111.392128,43.917402],[-111.349784,43.944799],[-111.294072,43.918684],[-111.226596,43.941767],[-111.180619,43.928803],[-111.050405,43.982553],[-111.046771,43.515528]]]},"id":16081},
{"type":"Feature","properties":{"name":"Windsor"},"geometry":{"type":"Polygon","coordinates":[[[-72.815506,43.256701],[-72.816117,43.29447],[-72.866396,43.298093],[-72.865603,43.345868],[-72.85174,43.346654],[-72.848833,43.369839],[-72.828546,43.377392],[-72.773369,43.362786],[-72.721161,43.460589],[-72.780763,43.478445],[-72.775537,43.488409],[-72.792475,43.494032],[-72.777538,43.589028],[-72.759936,43.583855],[-72.702532,43.678909],[-72.815192,43.713663],[-72.80271,43.739504],[-72.819091,43.744661],[-72.778175,43.80121],[-72.794228,43.825494],[-72.828287,43.836274],[-72.836717,43.825417],[-72.868891,43.835263],[-72.874957,43.852165],[-72.960377,43.824169],[-72.970579,43.86296],[-72.879925,43.897296],[-72.872127,43.869903],[-72.860126,43.866611],[-72.796466,43.950771],[-72.781314,43.945167],[-72.774668,43.92643],[-72.206092,43.764635],[-72.219123,43.750693],[-72.260056,43.7353],[-72.30404,43.69853],[-72.333085,43.597365],[-72.373498,43.572375],[-72.394998,43.517554],[-72.382516,43.48463],[-72.396248,43.410157],[-72.41214,43.377126],[-72.397628,43.351007],[-72.410232,43.323404],[-72.402419,43.307383],[-72.435599,43.232254],[-72.539246,43.236175],[-72.685391,43.220886],[-72.815506,43.256701]]]},"id":50027},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-123.236287,42.701511],[-123.246205,42.700576],[-123.250081,42.722713],[-123.306243,42.728209],[-123.306365,42.722731],[-123.321845,42.721071],[-123.321884,42.728361],[-123.397012,42.722416],[-123.397462,42.713734],[-123.427957,42.712234],[-123.428614,42.705825],[-123.472079,42.695921],[-123.473208,42.701331],[-123.495655,42.70067],[-123.4958,42.708864],[-123.540075,42.707563],[-123.540006,42.713487],[-123.566993,42.714406],[-123.567123,42.728982],[-123.583885,42.727681],[-123.584129,42.736779],[-123.678036,42.737469],[-123.678296,42.746567],[-123.695768,42.746128],[-123.696805,42.737415],[-123.719878,42.736686],[-123.718963,42.772277],[-123.729591,42.772182],[-123.771814,42.794154],[-123.799442,42.788611],[-123.801105,42.81177],[-123.812405,42.812095],[-123.816162,42.989681],[-123.763585,42.991501],[-123.766074,43.074352],[-123.710309,43.076314],[-123.708123,43.247425],[-123.767528,43.248931],[-123.771187,43.420259],[-123.817438,43.421522],[-123.819515,43.505824],[-123.879095,43.506827],[-123.881897,43.603888],[-124.226005,43.605005],[-124.158326,43.857118],[-124.064564,43.856748],[-124.060993,43.846891],[-123.947349,43.848806],[-123.94635,43.863928],[-123.928542,43.863947],[-123.926933,43.891886],[-123.86952,43.903105],[-123.85465,43.913466],[-123.853345,43.92586],[-123.835889,43.929506],[-123.834401,43.940085],[-123.705804,43.940271],[-123.704957,43.931639],[-123.659576,43.929823],[-123.659599,43.91704],[-123.620025,43.915827],[-123.617782,43.886263],[-123.576239,43.884226],[-123.575445,43.86281],[-123.530027,43.860037],[-123.528577,43.824961],[-123.470577,43.823248],[-123.467594,43.805136],[-123.347129,43.800941],[-123.345724,43.772258],[-123.137997,43.771123],[-123.133649,43.59568],[-123.106288,43.594215],[-123.105103,43.531325],[-122.737191,43.534187],[-122.734442,43.433543],[-122.1467,43.435519],[-122.09906,43.423248],[-122.079428,43.405323],[-122.054777,43.396248],[-122.048764,43.374608],[-122.009494,43.337839],[-122.005884,43.288314],[-121.984963,43.251754],[-121.995507,43.232219],[-122.026056,43.211009],[-122.051013,43.156753],[-122.064868,43.148475],[-122.069911,43.11457],[-122.093059,43.087714],[-122.081653,43.060828],[-122.281442,43.062027],[-122.278686,42.993363],[-122.39703,42.990356],[-122.398746,42.980262],[-122.417401,42.978126],[-122.418209,42.964427],[-122.437406,42.961349],[-122.438863,42.948085],[-122.455114,42.947406],[-122.456235,42.937793],[-122.55246,42.933741],[-122.55394,42.920928],[-122.575135,42.91957],[-122.5765,42.905391],[-122.597734,42.904483],[-122.599122,42.890757],[-122.635965,42.889174],[-122.637315,42.874995],[-122.67657,42.872385],[-122.676844,42.86053],[-122.697398,42.859179],[-122.698108,42.845027],[-122.717334,42.842818],[-122.717571,42.830512],[-122.735035,42.829745],[-122.735889,42.817408],[-122.77596,42.817465],[-122.779447,42.791804],[-122.796164,42.789698],[-122.796423,42.777842],[-122.947598,42.767847],[-122.967763,42.762369],[-122.968191,42.752787],[-123.153224,42.751469],[-123.15356,42.734139],[-123.177303,42.733929],[-123.209186,42.705993],[-123.236287,42.701511]]]},"id":41019},
{"type":"Feature","properties":{"name":"Aurora"},"geometry":{"type":"Polygon","coordinates":[[[-98.712871,43.499628],[-98.800656,43.500392],[-98.79858,43.844093],[-98.810642,43.844112],[-98.809132,43.930716],[-98.335699,43.933192],[-98.331036,43.844024],[-98.32939,43.497333],[-98.712871,43.499628]]]},"id":46003},
{"type":"Feature","properties":{"name":"Brule"},"geometry":{"type":"Polygon","coordinates":[[[-98.800656,43.500392],[-99.299036,43.503186],[-99.285844,43.529598],[-99.341541,43.574878],[-99.347515,43.626585],[-99.364132,43.652238],[-99.387677,43.659898],[-99.448539,43.658825],[-99.464782,43.671688],[-99.456893,43.695117],[-99.404073,43.717448],[-99.423185,43.763235],[-99.419859,43.774973],[-99.358952,43.793818],[-99.309315,43.851343],[-99.311139,43.871015],[-99.358145,43.908238],[-99.359077,43.931981],[-98.93125,43.930434],[-98.809132,43.930716],[-98.810642,43.844112],[-98.79858,43.844093],[-98.800656,43.500392]]]},"id":46015},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-111.387633,43.617072],[-111.617079,43.62208],[-111.617529,43.648546],[-111.699724,43.650506],[-111.756107,43.666894],[-111.815839,43.706188],[-111.852545,43.715374],[-111.877189,43.74187],[-111.920846,43.751761],[-111.969584,43.744509],[-111.957082,43.922342],[-111.824333,43.920413],[-111.823058,43.895274],[-111.687128,43.893993],[-111.684916,43.881588],[-111.54704,43.880994],[-111.544026,43.902768],[-111.494625,43.923986],[-111.451624,43.913065],[-111.392128,43.917402],[-111.387633,43.617072]]]},"id":16065},
{"type":"Feature","properties":{"name":"Canyon"},"geometry":{"type":"Polygon","coordinates":[[[-116.502135,43.282143],[-116.574312,43.308329],[-116.608663,43.355757],[-116.645721,43.373151],[-116.731077,43.451617],[-116.756255,43.465323],[-116.779466,43.50405],[-116.783153,43.537734],[-116.823447,43.581946],[-116.884081,43.594302],[-116.94535,43.633494],[-116.963669,43.662639],[-117.026295,43.679031],[-117.023795,43.753702],[-117.037117,43.800142],[-117.027627,43.831568],[-117.010505,43.83977],[-117.01622,43.852972],[-116.98577,43.859351],[-116.978148,43.873469],[-116.948964,43.873916],[-116.946461,43.828829],[-116.902078,43.826525],[-116.900826,43.812407],[-116.881813,43.810568],[-116.879295,43.800093],[-116.841268,43.799143],[-116.841306,43.783659],[-116.78554,43.783129],[-116.784884,43.791777],[-116.750664,43.791262],[-116.748726,43.800822],[-116.701826,43.800269],[-116.505345,43.798767],[-116.50657,43.628944],[-116.469283,43.627434],[-116.463717,43.449894],[-116.504711,43.449146],[-116.502135,43.282143]]]},"id":16027},
{"type":"Feature","properties":{"name":"Mellette"},"geometry":{"type":"Polygon","coordinates":[[[-100.217861,43.394319],[-101.230963,43.394509],[-101.231377,43.79025],[-101.212921,43.807626],[-101.173676,43.805883],[-101.170921,43.826325],[-101.148262,43.822198],[-101.142585,43.836651],[-101.070434,43.847374],[-101.055838,43.862083],[-101.029997,43.857864],[-101.028571,43.846897],[-100.994696,43.852508],[-100.965704,43.833622],[-100.964613,43.815373],[-100.936018,43.830658],[-100.92394,43.817169],[-100.906286,43.814934],[-100.89887,43.796536],[-100.882176,43.801151],[-100.877248,43.78418],[-100.863774,43.787506],[-100.8438,43.766983],[-100.817066,43.769531],[-100.795459,43.75716],[-100.802952,43.745953],[-100.789798,43.729238],[-100.751208,43.741505],[-100.746509,43.720433],[-100.704463,43.725312],[-100.68001,43.720143],[-100.659029,43.734645],[-100.660441,43.744704],[-100.627413,43.746142],[-100.604967,43.76425],[-100.587717,43.766996],[-100.575464,43.758478],[-100.560792,43.760374],[-100.557397,43.739783],[-100.531083,43.746382],[-100.516587,43.732332],[-100.476373,43.7381],[-100.477265,43.720812],[-100.448861,43.730986],[-100.417702,43.72103],[-100.408035,43.736261],[-100.38868,43.730719],[-100.36557,43.736463],[-100.343277,43.72674],[-100.303664,43.721079],[-100.287452,43.704676],[-100.232412,43.714964],[-100.234015,43.479033],[-100.21639,43.478075],[-100.217861,43.394319]]]},"id":46095},
{"type":"Feature","properties":{"name":"Camas"},"geometry":{"type":"Polygon","coordinates":[[[-114.587136,43.190847],[-115.074793,43.189356],[-115.072967,43.591211],[-115.038718,43.595262],[-115.022253,43.618239],[-115.026778,43.658827],[-115.001486,43.701709],[-115.035981,43.735015],[-115.023515,43.793583],[-114.96444,43.861471],[-114.95108,43.841673],[-114.856754,43.815127],[-114.841891,43.803954],[-114.846125,43.790358],[-114.838709,43.784315],[-114.788392,43.791682],[-114.754287,43.787917],[-114.742599,43.796375],[-114.712217,43.794941],[-114.702467,43.80206],[-114.683873,43.789437],[-114.671291,43.749588],[-114.675563,43.735545],[-114.665195,43.723976],[-114.677485,43.679107],[-114.657259,43.641406],[-114.674814,43.608931],[-114.669236,43.586977],[-114.644692,43.583804],[-114.623191,43.566119],[-114.596182,43.56153],[-114.585813,43.550868],[-114.588605,43.52542],[-114.556148,43.49705],[-114.505716,43.477897],[-114.505105,43.460132],[-114.534067,43.426532],[-114.532777,43.392367],[-114.517342,43.383429],[-114.527459,43.364954],[-114.520661,43.326594],[-114.382861,43.323921],[-114.384532,43.263423],[-114.382433,43.252456],[-114.36548,43.251662],[-114.364587,43.192939],[-114.587136,43.190847]]]},"id":16025},
{"type":"Feature","properties":{"name":"Custer"},"geometry":{"type":"Polygon","coordinates":[[[-103.001282,43.475369],[-104.059157,43.479134],[-104.057914,43.503712],[-104.059479,43.852907],[-102.693118,43.854676],[-102.713453,43.785646],[-102.784295,43.722108],[-102.804079,43.713182],[-102.815326,43.685513],[-102.834034,43.664277],[-102.862561,43.660885],[-102.876332,43.669652],[-102.907286,43.672642],[-102.92707,43.661423],[-102.948625,43.617439],[-102.978358,43.616306],[-103.001904,43.60556],[-103.001282,43.475369]]]},"id":46033},
{"type":"Feature","properties":{"name":"Rutland"},"geometry":{"type":"Polygon","coordinates":[[[-72.866396,43.298093],[-72.963239,43.301626],[-72.965413,43.282537],[-72.984296,43.281771],[-72.984647,43.300428],[-73.250071,43.310854],[-73.238391,43.512833],[-73.259984,43.559382],[-73.291402,43.575034],[-73.281736,43.593187],[-73.294104,43.619653],[-73.303535,43.624715],[-73.363686,43.614999],[-73.388114,43.569144],[-73.41832,43.582479],[-73.42296,43.632115],[-73.370989,43.714281],[-73.35667,43.756558],[-73.208344,43.765314],[-73.212595,43.836838],[-73.030455,43.845649],[-73.01518,43.805462],[-72.960377,43.824169],[-72.874957,43.852165],[-72.868891,43.835263],[-72.836717,43.825417],[-72.828287,43.836274],[-72.794228,43.825494],[-72.778175,43.80121],[-72.819091,43.744661],[-72.80271,43.739504],[-72.815192,43.713663],[-72.702532,43.678909],[-72.759936,43.583855],[-72.777538,43.589028],[-72.792475,43.494032],[-72.775537,43.488409],[-72.780763,43.478445],[-72.721161,43.460589],[-72.773369,43.362786],[-72.828546,43.377392],[-72.848833,43.369839],[-72.85174,43.346654],[-72.865603,43.345868],[-72.866396,43.298093]]]},"id":50021},
{"type":"Feature","properties":{"name":"Faribault"},"geometry":{"type":"Polygon","coordinates":[[[-93.97395,43.500299],[-94.246787,43.498948],[-94.247501,43.846603],[-93.772733,43.849569],[-93.651399,43.848417],[-93.653699,43.500763],[-93.97395,43.500299]]]},"id":27043},
{"type":"Feature","properties":{"name":"Minnehaha"},"geometry":{"type":"Polygon","coordinates":[[[-96.919887,43.501545],[-97.125625,43.500598],[-97.131052,43.843676],[-96.891835,43.84472],[-96.456602,43.848742],[-96.460455,43.499718],[-96.598315,43.499849],[-96.919887,43.501545]]]},"id":46099},
{"type":"Feature","properties":{"name":"Rock"},"geometry":{"type":"Polygon","coordinates":[[[-96.06104,43.498534],[-96.460455,43.499718],[-96.456602,43.848742],[-96.06982,43.847078],[-96.058345,43.846735],[-96.06104,43.498534]]]},"id":27133},
{"type":"Feature","properties":{"name":"Freeborn"},"geometry":{"type":"Polygon","coordinates":[[[-93.651399,43.848417],[-93.411988,43.847055],[-93.052017,43.845818],[-93.05438,43.501457],[-93.50083,43.500489],[-93.653699,43.500763],[-93.651399,43.848417]]]},"id":27047},
{"type":"Feature","properties":{"name":"Nobles"},"geometry":{"type":"Polygon","coordinates":[[[-95.866912,43.498944],[-96.06104,43.498534],[-96.058345,43.846735],[-95.469756,43.846786],[-95.459036,43.847728],[-95.464775,43.499541],[-95.866912,43.498944]]]},"id":27105},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-95.459036,43.847728],[-94.865504,43.846682],[-94.859065,43.845572],[-94.859839,43.50003],[-94.920465,43.499371],[-95.396559,43.500334],[-95.464775,43.499541],[-95.459036,43.847728]]]},"id":27063},
{"type":"Feature","properties":{"name":"Martin"},"geometry":{"type":"Polygon","coordinates":[[[-94.247501,43.846603],[-94.246787,43.498948],[-94.455238,43.498102],[-94.859839,43.50003],[-94.859065,43.845572],[-94.37014,43.847613],[-94.247501,43.846603]]]},"id":27091},
{"type":"Feature","properties":{"name":"Houston"},"geometry":{"type":"Polygon","coordinates":[[[-91.611099,43.500626],[-91.730366,43.499572],[-91.730258,43.845541],[-91.291948,43.847191],[-91.251105,43.788076],[-91.258916,43.722396],[-91.258389,43.677322],[-91.23299,43.59889],[-91.240558,43.548713],[-91.223567,43.500809],[-91.611099,43.500626]]]},"id":27055},
{"type":"Feature","properties":{"name":"Mower"},"geometry":{"type":"Polygon","coordinates":[[[-93.027211,43.501279],[-93.05438,43.501457],[-93.052017,43.845818],[-92.694778,43.847181],[-92.694114,43.83307],[-92.453641,43.832734],[-92.453169,43.499462],[-92.558008,43.500259],[-93.027211,43.501279]]]},"id":27099},
{"type":"Feature","properties":{"name":"Fillmore"},"geometry":{"type":"Polygon","coordinates":[[[-92.453641,43.832734],[-92.454137,43.844114],[-92.085593,43.846815],[-91.730258,43.845541],[-91.730366,43.499572],[-92.077533,43.499154],[-92.453169,43.499462],[-92.453641,43.832734]]]},"id":27045},
{"type":"Feature","properties":{"name":"Davison"},"geometry":{"type":"Polygon","coordinates":[[[-97.965887,43.497119],[-98.116404,43.496644],[-98.32939,43.497333],[-98.331036,43.844024],[-97.966916,43.84432],[-97.965887,43.497119]]]},"id":46035},
{"type":"Feature","properties":{"name":"Hanson"},"geometry":{"type":"Polygon","coordinates":[[[-97.610535,43.496763],[-97.965887,43.497119],[-97.966916,43.84432],[-97.855708,43.844215],[-97.61102,43.844021],[-97.610535,43.496763]]]},"id":46061},
{"type":"Feature","properties":{"name":"McCook"},"geometry":{"type":"Polygon","coordinates":[[[-97.402433,43.496981],[-97.610535,43.496763],[-97.61102,43.844021],[-97.372619,43.844147],[-97.131052,43.843676],[-97.125625,43.500598],[-97.402433,43.496981]]]},"id":46087},
{"type":"Feature","properties":{"name":"York"},"geometry":{"type":"Polygon","coordinates":[[[-70.964268,43.53199],[-70.94962,43.548954],[-70.956524,43.564143],[-70.973874,43.57183],[-70.984443,43.791164],[-70.941534,43.786533],[-70.910497,43.799933],[-70.784136,43.81697],[-70.777719,43.804965],[-70.75419,43.793003],[-70.696548,43.804786],[-70.664321,43.789398],[-70.646681,43.761159],[-70.650129,43.703844],[-70.621167,43.700373],[-70.606892,43.681784],[-70.596683,43.696101],[-70.572383,43.688182],[-70.555179,43.715525],[-70.465668,43.645737],[-70.492768,43.610929],[-70.341611,43.534909],[-70.365926,43.430304],[-70.456977,43.349471],[-70.538941,43.335718],[-70.665672,43.091051],[-70.818668,43.121871],[-70.830548,43.159174],[-70.813207,43.235223],[-70.901086,43.28102],[-70.905801,43.302069],[-70.9697,43.36638],[-70.979099,43.396184],[-70.961483,43.438126],[-70.970791,43.470211],[-70.959278,43.516388],[-70.964268,43.53199]]]},"id":23031},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-73.250071,43.310854],[-73.276005,42.940294],[-73.381179,42.938108],[-73.42923,42.955152],[-73.464409,42.940294],[-73.63654,42.939519],[-73.629513,42.966786],[-73.610615,42.985825],[-73.579821,43.10625],[-73.598308,43.16453],[-73.585452,43.213159],[-73.599109,43.24186],[-73.591448,43.261857],[-73.605189,43.277825],[-73.602618,43.303341],[-73.644207,43.517742],[-73.623943,43.530425],[-73.614361,43.549518],[-73.619351,43.561362],[-73.597218,43.565394],[-73.532933,43.637558],[-73.493572,43.658809],[-73.493329,43.692042],[-73.471296,43.759342],[-73.474906,43.783493],[-73.44818,43.79795],[-73.38474,43.804508],[-73.358997,43.778428],[-73.35667,43.756558],[-73.370989,43.714281],[-73.42296,43.632115],[-73.41832,43.582479],[-73.388114,43.569144],[-73.363686,43.614999],[-73.303535,43.624715],[-73.294104,43.619653],[-73.281736,43.593187],[-73.291402,43.575034],[-73.259984,43.559382],[-73.238391,43.512833],[-73.250071,43.310854]]]},"id":36115},
{"type":"Feature","properties":{"name":"Ada"},"geometry":{"type":"Polygon","coordinates":[[[-115.972453,43.577613],[-115.969366,43.110725],[-116.254318,43.105377],[-116.294932,43.121978],[-116.367835,43.179659],[-116.373893,43.203348],[-116.36737,43.2297],[-116.410922,43.281766],[-116.502135,43.282143],[-116.504711,43.449146],[-116.463717,43.449894],[-116.469283,43.627434],[-116.50657,43.628944],[-116.505345,43.798767],[-116.276562,43.796805],[-115.972453,43.577613]]]},"id":16001},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-73.602618,43.303341],[-73.645306,43.304779],[-73.661717,43.294357],[-73.668126,43.269802],[-73.686986,43.272129],[-73.698866,43.288078],[-73.732245,43.278141],[-73.746749,43.269527],[-73.743652,43.256779],[-73.756294,43.238155],[-73.772034,43.22908],[-73.798997,43.252327],[-73.836084,43.255562],[-73.822778,43.297401],[-73.852915,43.325648],[-73.852251,43.34157],[-73.873622,43.361612],[-73.884265,43.398476],[-74.15955,43.368855],[-74.214837,43.721981],[-74.059106,43.739441],[-73.44818,43.79795],[-73.474906,43.783493],[-73.471296,43.759342],[-73.493329,43.692042],[-73.493572,43.658809],[-73.532933,43.637558],[-73.597218,43.565394],[-73.619351,43.561362],[-73.614361,43.549518],[-73.623943,43.530425],[-73.644207,43.517742],[-73.602618,43.303341]]]},"id":36113},
{"type":"Feature","properties":{"name":"Tripp"},"geometry":{"type":"Polygon","coordinates":[[[-99.53279,42.992335],[-100.198142,42.991095],[-100.203238,43.134378],[-100.219573,43.134397],[-100.217861,43.394319],[-100.21639,43.478075],[-100.234015,43.479033],[-100.232412,43.714964],[-100.222768,43.717421],[-100.209233,43.69881],[-100.185833,43.709525],[-100.132883,43.704795],[-100.122071,43.694454],[-100.09243,43.692215],[-100.040929,43.706631],[-100.034368,43.699597],[-100.015049,43.704937],[-100.013661,43.69624],[-99.939409,43.698533],[-99.932809,43.692407],[-99.898728,43.700922],[-99.87577,43.671954],[-99.867469,43.673064],[-99.85691,43.700983],[-99.830717,43.694236],[-99.793065,43.708991],[-99.75732,43.713314],[-99.760906,43.737132],[-99.748675,43.750415],[-99.739268,43.748744],[-99.743739,43.727916],[-99.726999,43.721912],[-99.696129,43.759196],[-99.684196,43.757437],[-99.687676,43.732482],[-99.672035,43.729236],[-99.664229,43.762255],[-99.650885,43.762724],[-99.640257,43.740496],[-99.623548,43.744044],[-99.62052,43.504703],[-99.534007,43.504074],[-99.53279,42.992335]]]},"id":46123},
{"type":"Feature","properties":{"name":"Belknap"},"geometry":{"type":"Polygon","coordinates":[[[-71.172569,43.53525],[-71.196144,43.514811],[-71.161879,43.35109],[-71.239614,43.282193],[-71.540153,43.447473],[-71.561439,43.451966],[-71.594811,43.435738],[-71.619363,43.437092],[-71.632333,43.481479],[-71.651774,43.485019],[-71.661288,43.502033],[-71.683047,43.511977],[-71.730488,43.566522],[-71.721218,43.579115],[-71.732212,43.590685],[-71.709766,43.600317],[-71.673808,43.598322],[-71.652209,43.619795],[-71.648806,43.682118],[-71.524307,43.694421],[-71.530426,43.752835],[-71.257669,43.563211],[-71.225068,43.549116],[-71.19471,43.549845],[-71.172569,43.53525]]]},"id":33001},
{"type":"Feature","properties":{"name":"Vernon"},"geometry":{"type":"Polygon","coordinates":[[[-90.669372,43.422112],[-91.210917,43.424051],[-91.235903,43.464684],[-91.223567,43.500809],[-91.240558,43.548713],[-91.23299,43.59889],[-91.258389,43.677322],[-91.258916,43.722396],[-90.911371,43.725651],[-90.435845,43.723505],[-90.313728,43.729773],[-90.314589,43.642812],[-90.315474,43.558139],[-90.668519,43.556843],[-90.669372,43.422112]]]},"id":55123},
{"type":"Feature","properties":{"name":"Shannon"},"geometry":{"type":"Polygon","coordinates":[[[-102.788385,42.995304],[-103.005875,42.999354],[-103.001282,43.475369],[-103.001904,43.60556],[-102.978358,43.616306],[-102.948625,43.617439],[-102.92707,43.661423],[-102.907286,43.672642],[-102.876332,43.669652],[-102.862561,43.660885],[-102.834034,43.664277],[-102.815326,43.685513],[-102.178019,43.686909],[-102.175806,43.698719],[-102.146585,43.702412],[-102.146903,43.480693],[-102.118544,43.479381],[-102.117766,43.392885],[-102.118412,43.139439],[-102.088924,43.138559],[-102.086701,42.989887],[-102.788385,42.995304]]]},"id":46113},
{"type":"Feature","properties":{"name":"Owyhee"},"geometry":{"type":"Polygon","coordinates":[[[-117.018864,41.994794],[-117.026295,43.679031],[-116.963669,43.662639],[-116.94535,43.633494],[-116.884081,43.594302],[-116.823447,43.581946],[-116.783153,43.537734],[-116.779466,43.50405],[-116.756255,43.465323],[-116.731077,43.451617],[-116.645721,43.373151],[-116.608663,43.355757],[-116.574312,43.308329],[-116.502135,43.282143],[-116.410922,43.281766],[-116.36737,43.2297],[-116.373893,43.203348],[-116.367835,43.179659],[-116.294932,43.121978],[-116.254318,43.105377],[-116.241241,43.095753],[-116.196798,43.087754],[-116.19003,43.076344],[-116.197774,43.05774],[-116.179165,43.040803],[-116.146601,43.037862],[-116.141863,43.015546],[-116.110009,43.007601],[-116.080238,42.98466],[-116.052099,42.981277],[-116.000042,42.943146],[-115.95624,42.941895],[-115.968837,42.978829],[-115.938463,42.998593],[-115.925951,42.997582],[-115.906182,42.980138],[-115.876098,42.981248],[-115.836844,42.96908],[-115.782932,42.972227],[-115.780239,42.947646],[-115.761638,42.937468],[-115.679054,42.935294],[-115.626143,42.952033],[-115.585186,42.93386],[-115.531275,42.937813],[-115.494568,42.927387],[-115.433905,42.925313],[-115.4325,42.849355],[-115.446294,42.847699],[-115.448809,42.763162],[-115.026652,42.764737],[-115.024863,41.996506],[-115.947545,41.994599],[-116.992313,41.994795],[-117.018864,41.994794]]]},"id":16073},
{"type":"Feature","properties":{"name":"Bonneville"},"geometry":{"type":"Polygon","coordinates":[[[-112.507432,43.617139],[-111.617079,43.62208],[-111.387633,43.617072],[-111.237077,43.615135],[-111.216615,43.595086],[-111.190971,43.539232],[-111.046771,43.515528],[-111.047498,43.284735],[-111.049216,43.019883],[-111.577283,43.022532],[-111.574364,43.274816],[-111.81099,43.278009],[-111.813707,43.358765],[-112.028063,43.35976],[-112.031817,43.403644],[-112.096768,43.404257],[-112.097843,43.41569],[-112.509148,43.417621],[-112.507432,43.617139]]]},"id":16019},
{"type":"Feature","properties":{"name":"Bingham"},"geometry":{"type":"Polygon","coordinates":[[[-112.051878,43.020852],[-112.650494,43.019811],[-112.724029,42.987179],[-112.735153,42.949307],[-112.777764,42.887882],[-112.806207,42.862854],[-113.003684,42.85676],[-113.000647,43.103811],[-112.998152,43.276288],[-112.937695,43.276709],[-112.936131,43.356355],[-112.924069,43.357801],[-112.924954,43.43845],[-112.806283,43.438817],[-112.804781,43.525326],[-112.688864,43.529782],[-112.689178,43.614998],[-112.678504,43.613739],[-112.507432,43.617139],[-112.509148,43.417621],[-112.097843,43.41569],[-112.096768,43.404257],[-112.031817,43.403644],[-112.028063,43.35976],[-111.813707,43.358765],[-111.81099,43.278009],[-111.574364,43.274816],[-111.577283,43.022532],[-112.051878,43.020852]]]},"id":16011},
{"type":"Feature","properties":{"name":"Klamath"},"geometry":{"type":"Polygon","coordinates":[[[-121.441509,41.994335],[-122.284705,42.000765],[-122.284652,42.47411],[-122.273474,42.474568],[-122.278686,42.993363],[-122.281442,43.062027],[-122.081653,43.060828],[-122.093059,43.087714],[-122.069911,43.11457],[-122.064868,43.148475],[-122.051013,43.156753],[-122.026056,43.211009],[-121.995507,43.232219],[-121.984963,43.251754],[-122.005884,43.288314],[-122.009494,43.337839],[-122.048764,43.374608],[-122.054777,43.396248],[-122.079428,43.405323],[-122.09906,43.423248],[-122.1467,43.435519],[-122.118493,43.489031],[-122.122491,43.500273],[-122.139521,43.508264],[-122.126818,43.541124],[-122.032591,43.601278],[-122.000905,43.609327],[-121.328936,43.610309],[-121.329916,43.346044],[-121.347411,43.343645],[-121.340166,42.741131],[-120.999711,42.74156],[-120.999344,42.735201],[-120.888119,42.734469],[-120.871909,41.987672],[-121.441509,41.994335]]]},"id":41035},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-119.993459,41.989205],[-120.871909,41.987672],[-120.888119,42.734469],[-120.999344,42.735201],[-120.999711,42.74156],[-121.340166,42.741131],[-121.347411,43.343645],[-121.329916,43.346044],[-121.328936,43.610309],[-119.895999,43.604011],[-119.891552,43.169806],[-119.922918,43.168653],[-119.917978,42.903963],[-119.932947,42.902715],[-119.935706,42.73209],[-119.356457,42.734748],[-119.359682,42.11564],[-119.351692,41.988853],[-119.993459,41.989205]]]},"id":41037},
{"type":"Feature","properties":{"name":"Coos"},"geometry":{"type":"Polygon","coordinates":[[[-124.485347,42.955454],[-124.386772,43.261589],[-124.406076,43.300198],[-124.273994,43.459105],[-124.226005,43.605005],[-123.881897,43.603888],[-123.879095,43.506827],[-123.819515,43.505824],[-123.817438,43.421522],[-123.771187,43.420259],[-123.767528,43.248931],[-123.708123,43.247425],[-123.710309,43.076314],[-123.766074,43.074352],[-123.763585,42.991501],[-123.816162,42.989681],[-123.812405,42.812095],[-123.801105,42.81177],[-123.799442,42.788611],[-123.836736,42.785746],[-123.837659,42.776129],[-123.864577,42.776079],[-123.865324,42.771032],[-123.919686,42.769975],[-123.91909,42.739015],[-123.930871,42.737935],[-123.930085,42.723844],[-123.943772,42.723115],[-123.943696,42.709905],[-123.962266,42.707997],[-123.962556,42.698411],[-123.98237,42.696442],[-123.984957,42.684906],[-124.085554,42.684028],[-124.085996,42.676254],[-124.120017,42.672573],[-124.12349,42.736656],[-124.150484,42.737453],[-124.157649,42.794502],[-124.157986,42.81591],[-124.149265,42.816391],[-124.147854,42.826958],[-124.133617,42.828648],[-124.133297,42.86195],[-124.143918,42.873676],[-124.155858,42.873932],[-124.157423,42.882965],[-124.188926,42.890354],[-124.191925,42.901134],[-124.210259,42.9024],[-124.199974,42.918018],[-124.210763,42.919246],[-124.2119,42.930129],[-124.230188,42.930938],[-124.231234,42.940913],[-124.252742,42.942458],[-124.253315,42.953826],[-124.485347,42.955454]]]},"id":41011},
{"type":"Feature","properties":{"name":"Merrimack"},"geometry":{"type":"Polygon","coordinates":[[[-72.018853,43.186132],[-72.050287,43.229828],[-72.047845,43.249359],[-72.067178,43.255104],[-72.09376,43.317378],[-72.04703,43.389052],[-72.058749,43.420179],[-72.051181,43.442369],[-72.013392,43.440893],[-71.942071,43.526742],[-71.850585,43.604958],[-71.813719,43.551996],[-71.790151,43.557977],[-71.770055,43.554449],[-71.730488,43.566522],[-71.683047,43.511977],[-71.661288,43.502033],[-71.651774,43.485019],[-71.632333,43.481479],[-71.619363,43.437092],[-71.594811,43.435738],[-71.561439,43.451966],[-71.540153,43.447473],[-71.239614,43.282193],[-71.245649,43.272763],[-71.335402,43.132628],[-71.360091,43.110835],[-71.396491,43.044681],[-71.409499,43.049034],[-71.39971,43.009262],[-71.449364,43.022522],[-71.45797,43.044067],[-71.47712,43.034885],[-71.494096,43.050681],[-71.510332,43.052806],[-71.513544,43.067885],[-71.641256,43.057051],[-71.664459,43.149819],[-71.857014,43.117164],[-71.911497,43.204031],[-72.018853,43.186132]]]},"id":33013},
{"type":"Feature","properties":{"name":"Sullivan"},"geometry":{"type":"Polygon","coordinates":[[[-72.452399,43.156022],[-72.435599,43.232254],[-72.402419,43.307383],[-72.410232,43.323404],[-72.397628,43.351007],[-72.41214,43.377126],[-72.396248,43.410157],[-72.382516,43.48463],[-72.394998,43.517554],[-72.373498,43.572375],[-72.333085,43.597365],[-72.215888,43.583541],[-72.108639,43.554276],[-72.117932,43.538021],[-72.094784,43.52995],[-72.072018,43.553746],[-72.054111,43.539372],[-71.942071,43.526742],[-72.013392,43.440893],[-72.051181,43.442369],[-72.058749,43.420179],[-72.04703,43.389052],[-72.09376,43.317378],[-72.067178,43.255104],[-72.047845,43.249359],[-72.050287,43.229828],[-72.018853,43.186132],[-72.031487,43.183595],[-72.024086,43.157095],[-72.034996,43.12678],[-72.181712,43.133444],[-72.164149,43.180055],[-72.386465,43.156137],[-72.376416,43.129629],[-72.432844,43.132585],[-72.4336,43.154431],[-72.452399,43.156022]]]},"id":33019},
{"type":"Feature","properties":{"name":"Strafford"},"geometry":{"type":"Polygon","coordinates":[[[-70.964268,43.53199],[-70.959278,43.516388],[-70.970791,43.470211],[-70.961483,43.438126],[-70.979099,43.396184],[-70.9697,43.36638],[-70.905801,43.302069],[-70.901086,43.28102],[-70.813207,43.235223],[-70.830548,43.159174],[-70.818668,43.121871],[-70.884748,43.127707],[-70.874631,43.101527],[-70.905416,43.084021],[-70.938475,43.091654],[-71.017357,43.081644],[-71.069337,43.084184],[-71.030603,43.138371],[-71.245649,43.272763],[-71.239614,43.282193],[-71.161879,43.35109],[-71.196144,43.514811],[-71.172569,43.53525],[-71.131271,43.571246],[-71.11312,43.507102],[-71.08087,43.508209],[-71.066847,43.526111],[-71.045454,43.524269],[-71.033659,43.475739],[-70.964268,43.53199]]]},"id":33017},
{"type":"Feature","properties":{"name":"Richland"},"geometry":{"type":"Polygon","coordinates":[[[-90.428729,43.200182],[-90.538814,43.208908],[-90.666485,43.178264],[-90.669372,43.422112],[-90.668519,43.556843],[-90.315474,43.558139],[-90.194837,43.557462],[-90.192797,43.168432],[-90.25532,43.200841],[-90.287996,43.201103],[-90.31325,43.211414],[-90.368541,43.210601],[-90.428729,43.200182]]]},"id":55103},
{"type":"Feature","properties":{"name":"Natrona"},"geometry":{"type":"Polygon","coordinates":[[[-106.082281,42.434761],[-107.524184,42.440471],[-107.545349,42.440806],[-107.539124,42.78254],[-107.500389,42.782674],[-107.501917,43.133921],[-107.517627,43.133959],[-107.516615,43.470896],[-107.534972,43.471769],[-107.534767,43.504568],[-107.112262,43.503385],[-107.112483,43.494271],[-106.082311,43.494558],[-106.081098,43.475458],[-106.070989,43.47516],[-106.082281,42.434761]]]},"id":56025},
{"type":"Feature","properties":{"name":"Gregory"},"geometry":{"type":"Polygon","coordinates":[[[-98.497651,42.991779],[-99.253972,42.992389],[-99.53279,42.992335],[-99.534007,43.504074],[-99.299036,43.503186],[-99.303209,43.479184],[-99.272828,43.45258],[-99.166761,43.434596],[-99.077549,43.331957],[-99.004625,43.277265],[-98.973855,43.258782],[-98.904594,43.250183],[-98.886435,43.240363],[-98.863455,43.168853],[-98.77879,43.149107],[-98.71709,43.10108],[-98.657214,43.079062],[-98.588785,43.078528],[-98.572313,43.072382],[-98.534921,43.04486],[-98.497651,42.991779]]]},"id":46053},
{"type":"Feature","properties":{"name":"Niobrara"},"geometry":{"type":"Polygon","coordinates":[[[-104.056219,42.61467],[-104.657124,42.613836],[-104.900693,42.61193],[-104.902555,43.473783],[-104.915182,43.475057],[-104.914892,43.500548],[-104.057914,43.503712],[-104.059157,43.479134],[-104.056199,43.003062],[-104.056219,42.61467]]]},"id":56027},
{"type":"Feature","properties":{"name":"Charles Mix"},"geometry":{"type":"Polygon","coordinates":[[[-98.497651,42.991779],[-98.534921,43.04486],[-98.572313,43.072382],[-98.588785,43.078528],[-98.657214,43.079062],[-98.71709,43.10108],[-98.77879,43.149107],[-98.863455,43.168853],[-98.886435,43.240363],[-98.904594,43.250183],[-98.973855,43.258782],[-99.004625,43.277265],[-99.077549,43.331957],[-99.166761,43.434596],[-99.272828,43.45258],[-99.303209,43.479184],[-99.299036,43.503186],[-98.800656,43.500392],[-98.712871,43.499628],[-98.712336,43.375634],[-98.684626,43.37497],[-98.113763,43.196562],[-98.077119,43.183517],[-98.082566,43.171459],[-98.112817,43.126789],[-98.119722,43.090192],[-98.109987,43.035074],[-98.118608,43.007666],[-98.104478,42.974685],[-98.120744,42.938515],[-98.118501,42.920644],[-98.128641,42.911988],[-98.123361,42.893071],[-98.146731,42.861326],[-98.162921,42.862505],[-98.167827,42.839571],[-98.31034,42.881795],[-98.391205,42.920136],[-98.457444,42.937161],[-98.497651,42.991779]]]},"id":46023},
{"type":"Feature","properties":{"name":"Turner"},"geometry":{"type":"Polygon","coordinates":[[[-96.926037,43.087174],[-97.165804,43.085784],[-97.164257,43.170979],[-97.399036,43.171623],[-97.402433,43.496981],[-97.125625,43.500598],[-96.919887,43.501545],[-96.926037,43.087174]]]},"id":46125},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-96.926037,43.087174],[-96.919887,43.501545],[-96.598315,43.499849],[-96.583796,43.481921],[-96.589113,43.435539],[-96.557709,43.400727],[-96.525054,43.384225],[-96.522894,43.356966],[-96.540563,43.307659],[-96.579131,43.290074],[-96.570722,43.263612],[-96.559568,43.253263],[-96.566991,43.239634],[-96.558606,43.225489],[-96.487245,43.217909],[-96.473115,43.209082],[-96.451505,43.126309],[-96.460805,43.087873],[-96.812357,43.085537],[-96.926037,43.087174]]]},"id":46083},
{"type":"Feature","properties":{"name":"Worth"},"geometry":{"type":"Polygon","coordinates":[[[-93.029027,43.254434],[-93.502765,43.252671],[-93.50083,43.500489],[-93.05438,43.501457],[-93.027211,43.501279],[-93.029027,43.254434]]]},"id":19195},
{"type":"Feature","properties":{"name":"Mitchell"},"geometry":{"type":"Polygon","coordinates":[[[-92.558593,43.216169],[-93.028133,43.21258],[-93.029027,43.254434],[-93.027211,43.501279],[-92.558008,43.500259],[-92.558593,43.216169]]]},"id":19131},
{"type":"Feature","properties":{"name":"Allamakee"},"geometry":{"type":"Polygon","coordinates":[[[-91.609592,43.082441],[-91.609413,43.343167],[-91.617608,43.343491],[-91.611099,43.500626],[-91.223567,43.500809],[-91.235903,43.464684],[-91.210917,43.424051],[-91.198244,43.370513],[-91.177049,43.353946],[-91.078498,43.313298],[-91.066428,43.280683],[-91.069052,43.257898],[-91.161354,43.147576],[-91.168572,43.082888],[-91.609592,43.082441]]]},"id":19005},
{"type":"Feature","properties":{"name":"Winnebago"},"geometry":{"type":"Polygon","coordinates":[[[-93.502765,43.252671],[-93.979295,43.253676],[-93.97395,43.500299],[-93.653699,43.500763],[-93.50083,43.500489],[-93.502765,43.252671]]]},"id":19189},
{"type":"Feature","properties":{"name":"Winneshiek"},"geometry":{"type":"Polygon","coordinates":[[[-92.083468,43.087144],[-92.082611,43.215024],[-92.077533,43.499154],[-91.730366,43.499572],[-91.611099,43.500626],[-91.617608,43.343491],[-91.609413,43.343167],[-91.609592,43.082441],[-92.083468,43.087144]]]},"id":19191},
{"type":"Feature","properties":{"name":"Converse"},"geometry":{"type":"Polygon","coordinates":[[[-106.082281,42.434761],[-106.070989,43.47516],[-106.081098,43.475458],[-106.082311,43.494558],[-106.028041,43.494951],[-105.084019,43.500177],[-104.914892,43.500548],[-104.915182,43.475057],[-104.902555,43.473783],[-104.900693,42.61193],[-105.288745,42.60776],[-105.288547,42.429153],[-105.332044,42.429168],[-105.332532,42.422347],[-105.345571,42.421756],[-105.353476,42.381232],[-105.364646,42.380664],[-105.36293,42.324794],[-105.380272,42.323245],[-105.380287,42.292804],[-105.523535,42.292109],[-105.594346,42.296709],[-105.595857,42.308508],[-105.612009,42.309671],[-105.611688,42.376013],[-105.577553,42.376886],[-105.576309,42.404165],[-105.55522,42.405783],[-105.5558,42.431681],[-106.082281,42.434761]]]},"id":56009},
{"type":"Feature","properties":{"name":"Osceola"},"geometry":{"type":"Polygon","coordinates":[[[-95.399361,43.254025],[-95.869192,43.258502],[-95.866912,43.498944],[-95.464775,43.499541],[-95.396559,43.500334],[-95.399361,43.254025]]]},"id":19143},
{"type":"Feature","properties":{"name":"Dickinson"},"geometry":{"type":"Polygon","coordinates":[[[-94.921088,43.251865],[-95.399361,43.254025],[-95.396559,43.500334],[-94.920465,43.499371],[-94.921088,43.251865]]]},"id":19059},
{"type":"Feature","properties":{"name":"Kossuth"},"geometry":{"type":"Polygon","coordinates":[[[-94.455237,42.913228],[-94.457046,43.252445],[-94.455238,43.498102],[-94.246787,43.498948],[-93.97395,43.500299],[-93.979295,43.253676],[-93.978936,42.910388],[-94.455237,42.913228]]]},"id":19109},
{"type":"Feature","properties":{"name":"Howard"},"geometry":{"type":"Polygon","coordinates":[[[-92.082611,43.215024],[-92.558593,43.216169],[-92.558008,43.500259],[-92.453169,43.499462],[-92.077533,43.499154],[-92.082611,43.215024]]]},"id":19089},
{"type":"Feature","properties":{"name":"Emmet"},"geometry":{"type":"Polygon","coordinates":[[[-94.457046,43.252445],[-94.921088,43.251865],[-94.920465,43.499371],[-94.859839,43.50003],[-94.455238,43.498102],[-94.457046,43.252445]]]},"id":19063},
{"type":"Feature","properties":{"name":"Lyon"},"geometry":{"type":"Polygon","coordinates":[[[-96.570722,43.263612],[-96.579131,43.290074],[-96.540563,43.307659],[-96.522894,43.356966],[-96.525054,43.384225],[-96.557709,43.400727],[-96.589113,43.435539],[-96.583796,43.481921],[-96.598315,43.499849],[-96.460455,43.499718],[-96.06104,43.498534],[-95.866912,43.498944],[-95.869192,43.258502],[-96.570722,43.263612]]]},"id":19119},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-98.113763,43.196562],[-98.684626,43.37497],[-98.712336,43.375634],[-98.712871,43.499628],[-98.32939,43.497333],[-98.116404,43.496644],[-98.113763,43.196562]]]},"id":46043},
{"type":"Feature","properties":{"name":"Hutchinson"},"geometry":{"type":"Polygon","coordinates":[[[-98.082566,43.171459],[-98.077119,43.183517],[-98.113763,43.196562],[-98.116404,43.496644],[-97.965887,43.497119],[-97.610535,43.496763],[-97.402433,43.496981],[-97.399036,43.171623],[-97.636407,43.171059],[-98.082566,43.171459]]]},"id":46067},
{"type":"Feature","properties":{"name":"Fall River"},"geometry":{"type":"Polygon","coordinates":[[[-103.005875,42.999354],[-103.501464,42.998619],[-104.056199,43.003062],[-104.059157,43.479134],[-103.001282,43.475369],[-103.005875,42.999354]]]},"id":46047},
{"type":"Feature","properties":{"name":"Sublette"},"geometry":{"type":"Polygon","coordinates":[[[-110.053867,43.465213],[-109.748601,43.464776],[-109.750629,43.368492],[-109.747691,43.363613],[-109.705575,43.365445],[-109.693505,43.356854],[-109.693756,43.329491],[-109.674727,43.305249],[-109.683478,43.281621],[-109.66805,43.193878],[-109.6591,43.176949],[-109.628954,43.15455],[-109.624216,43.135164],[-109.580322,43.097857],[-109.556028,43.038295],[-109.558355,43.020431],[-109.512371,43.010537],[-109.396094,42.944328],[-109.3729,42.944374],[-109.309657,42.847681],[-109.231674,42.801656],[-109.242462,42.778912],[-109.23838,42.766327],[-109.204779,42.768583],[-109.159933,42.745783],[-109.129444,42.705561],[-109.071353,42.705563],[-109.072468,42.439727],[-109.046306,42.43938],[-109.046543,42.262845],[-110.054588,42.266512],[-110.546542,42.278994],[-110.548238,42.448777],[-110.592521,42.449268],[-110.592136,42.713975],[-110.631025,42.715187],[-110.631453,42.784888],[-110.593861,42.784515],[-110.590398,43.227325],[-110.588904,43.283943],[-110.346119,43.283606],[-110.346817,43.379795],[-110.053919,43.379942],[-110.053867,43.465213]]]},"id":56035},
{"type":"Feature","properties":{"name":"Crawford"},"geometry":{"type":"Polygon","coordinates":[[[-91.168572,43.082888],[-91.161354,43.147576],[-91.069052,43.257898],[-91.066428,43.280683],[-91.078498,43.313298],[-91.177049,43.353946],[-91.198244,43.370513],[-91.210917,43.424051],[-90.669372,43.422112],[-90.666485,43.178264],[-90.689648,43.173961],[-90.707494,43.152873],[-90.80753,43.097328],[-90.945333,43.056766],[-91.048124,42.998738],[-91.07807,42.993374],[-91.152214,43.001316],[-91.159752,43.081183],[-91.168572,43.082888]]]},"id":55023},
{"type":"Feature","properties":{"name":"Saratoga"},"geometry":{"type":"Polygon","coordinates":[[[-73.822236,42.775319],[-73.89519,42.844956],[-73.90636,42.902248],[-73.956944,42.894649],[-73.978299,42.9141],[-74.057166,42.949557],[-74.09285,42.949992],[-74.09916,42.984545],[-74.142925,43.250583],[-74.15955,43.368855],[-73.884265,43.398476],[-73.873622,43.361612],[-73.852251,43.34157],[-73.852915,43.325648],[-73.822778,43.297401],[-73.836084,43.255562],[-73.798997,43.252327],[-73.772034,43.22908],[-73.756294,43.238155],[-73.743652,43.256779],[-73.746749,43.269527],[-73.732245,43.278141],[-73.698866,43.288078],[-73.686986,43.272129],[-73.668126,43.269802],[-73.661717,43.294357],[-73.645306,43.304779],[-73.602618,43.303341],[-73.605189,43.277825],[-73.591448,43.261857],[-73.599109,43.24186],[-73.585452,43.213159],[-73.598308,43.16453],[-73.579821,43.10625],[-73.610615,42.985825],[-73.629513,42.966786],[-73.63654,42.939519],[-73.666059,42.919591],[-73.679296,42.897801],[-73.675176,42.842771],[-73.662816,42.814554],[-73.678663,42.764135],[-73.737815,42.808366],[-73.767875,42.784776],[-73.792221,42.788003],[-73.810997,42.773939],[-73.822236,42.775319]]]},"id":36091},
{"type":"Feature","properties":{"name":"Bennett"},"geometry":{"type":"Polygon","coordinates":[[[-101.231737,42.986843],[-102.086701,42.989887],[-102.088924,43.138559],[-102.118412,43.139439],[-102.117766,43.392885],[-101.230963,43.394509],[-101.231737,42.986843]]]},"id":46007},
{"type":"Feature","properties":{"name":"Todd"},"geometry":{"type":"Polygon","coordinates":[[[-100.198142,42.991095],[-101.231737,42.986843],[-101.230963,43.394509],[-100.217861,43.394319],[-100.219573,43.134397],[-100.203238,43.134378],[-100.198142,42.991095]]]},"id":46121},
{"type":"Feature","properties":{"name":"Bennington"},"geometry":{"type":"Polygon","coordinates":[[[-73.25806,42.746059],[-73.269275,42.747481],[-73.29617,42.803549],[-73.279583,42.837103],[-73.276005,42.940294],[-73.250071,43.310854],[-72.984647,43.300428],[-72.984296,43.281771],[-72.965413,43.282537],[-72.963239,43.301626],[-72.866396,43.298093],[-72.816117,43.29447],[-72.815506,43.256701],[-72.841806,43.263304],[-72.845933,43.205108],[-72.859804,43.202045],[-72.863717,43.117013],[-72.993016,43.115796],[-73.007619,42.929901],[-72.922579,42.925133],[-72.932542,42.766081],[-72.922997,42.737364],[-73.019695,42.740397],[-73.25806,42.746059]]]},"id":50003},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-110.053393,41.582222],[-111.051069,41.578592],[-111.048697,41.996203],[-111.04678,42.503252],[-111.049216,43.019883],[-111.047498,43.284735],[-110.934685,43.285729],[-110.934982,43.257435],[-110.816347,43.256358],[-110.816148,43.229002],[-110.590398,43.227325],[-110.593861,42.784515],[-110.631453,42.784888],[-110.631025,42.715187],[-110.592136,42.713975],[-110.592521,42.449268],[-110.548238,42.448777],[-110.546542,42.278994],[-110.054588,42.266512],[-110.053393,41.582222]]]},"id":56023},
{"type":"Feature","properties":{"name":"Fulton"},"geometry":{"type":"Polygon","coordinates":[[[-74.142925,43.250583],[-74.09916,42.984545],[-74.538197,42.982563],[-74.747433,43.044291],[-74.76447,43.054198],[-74.774801,43.080973],[-74.770086,43.107836],[-74.740835,43.129839],[-74.737279,43.149415],[-74.721631,43.154054],[-74.718038,43.170904],[-74.69434,43.18741],[-74.714828,43.284649],[-74.534462,43.227277],[-74.32583,43.236605],[-74.320679,43.211142],[-74.221426,43.220447],[-74.222769,43.247741],[-74.142925,43.250583]]]},"id":36035},
{"type":"Feature","properties":{"name":"Rockingham"},"geometry":{"type":"Polygon","coordinates":[[[-70.813881,42.867065],[-70.84974,42.863429],[-70.898112,42.886877],[-70.921336,42.885149],[-71.025426,42.851171],[-71.065565,42.80432],[-71.120604,42.818281],[-71.181061,42.807317],[-71.186347,42.738761],[-71.240479,42.743555],[-71.340084,42.76745],[-71.355152,42.781854],[-71.352688,42.797265],[-71.384831,42.822929],[-71.418516,42.824962],[-71.449027,42.929716],[-71.377141,42.943304],[-71.39971,43.009262],[-71.409499,43.049034],[-71.396491,43.044681],[-71.360091,43.110835],[-71.335402,43.132628],[-71.245649,43.272763],[-71.030603,43.138371],[-71.069337,43.084184],[-71.017357,43.081644],[-70.938475,43.091654],[-70.905416,43.084021],[-70.886494,43.058883],[-70.810428,43.089741],[-70.734139,43.058763],[-70.813881,42.867065]]]},"id":33015},
{"type":"Feature","properties":{"name":"Sioux"},"geometry":{"type":"Polygon","coordinates":[[[-95.868853,42.91528],[-96.544263,42.913866],[-96.514935,42.952382],[-96.517148,42.986458],[-96.49902,43.01205],[-96.52001,43.051509],[-96.479573,43.061884],[-96.462094,43.075582],[-96.460805,43.087873],[-96.451505,43.126309],[-96.473115,43.209082],[-96.487245,43.217909],[-96.558606,43.225489],[-96.566991,43.239634],[-96.559568,43.253263],[-96.570722,43.263612],[-95.869192,43.258502],[-95.868853,42.91528]]]},"id":19167},
{"type":"Feature","properties":{"name":"Windham"},"geometry":{"type":"Polygon","coordinates":[[[-72.45577,42.725853],[-72.922997,42.737364],[-72.932542,42.766081],[-72.922579,42.925133],[-73.007619,42.929901],[-72.993016,43.115796],[-72.863717,43.117013],[-72.859804,43.202045],[-72.845933,43.205108],[-72.841806,43.263304],[-72.815506,43.256701],[-72.685391,43.220886],[-72.539246,43.236175],[-72.435599,43.232254],[-72.452399,43.156022],[-72.437605,43.11627],[-72.443464,43.079039],[-72.461752,43.046504],[-72.457159,42.999604],[-72.473341,42.976144],[-72.504264,42.965585],[-72.520217,42.951673],[-72.52481,42.912614],[-72.553428,42.860643],[-72.538917,42.807734],[-72.513068,42.789259],[-72.50727,42.768733],[-72.479323,42.761588],[-72.462171,42.746841],[-72.45577,42.725853]]]},"id":50025},
{"type":"Feature","properties":{"name":"O'Brien"},"geometry":{"type":"Polygon","coordinates":[[[-95.400999,42.914014],[-95.868853,42.91528],[-95.869192,43.258502],[-95.399361,43.254025],[-95.400999,42.914014]]]},"id":19141},
{"type":"Feature","properties":{"name":"Cerro Gordo"},"geometry":{"type":"Polygon","coordinates":[[[-93.026374,42.908616],[-93.499939,42.912266],[-93.502765,43.252671],[-93.029027,43.254434],[-93.028133,43.21258],[-93.026374,42.908616]]]},"id":19033},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-94.920164,42.912982],[-95.400999,42.914014],[-95.399361,43.254025],[-94.921088,43.251865],[-94.920164,42.912982]]]},"id":19041},
{"type":"Feature","properties":{"name":"Hancock"},"geometry":{"type":"Polygon","coordinates":[[[-93.978936,42.910388],[-93.979295,43.253676],[-93.502765,43.252671],[-93.499939,42.912266],[-93.978936,42.910388]]]},"id":19081},
{"type":"Feature","properties":{"name":"Palo Alto"},"geometry":{"type":"Polygon","coordinates":[[[-94.455237,42.913228],[-94.920164,42.912982],[-94.921088,43.251865],[-94.457046,43.252445],[-94.455237,42.913228]]]},"id":19147},
{"type":"Feature","properties":{"name":"Floyd"},"geometry":{"type":"Polygon","coordinates":[[[-93.026374,42.908616],[-93.028133,43.21258],[-92.558593,43.216169],[-92.55836,42.914039],[-93.026374,42.908616]]]},"id":19067},
{"type":"Feature","properties":{"name":"Chickasaw"},"geometry":{"type":"Polygon","coordinates":[[[-92.55836,42.914039],[-92.558593,43.216169],[-92.082611,43.215024],[-92.083468,43.087144],[-92.086408,42.914678],[-92.55836,42.914039]]]},"id":19037},
{"type":"Feature","properties":{"name":"Iowa"},"geometry":{"type":"Polygon","coordinates":[[[-90.192797,43.168432],[-90.096056,43.165275],[-90.063295,43.152226],[-90.004595,43.195678],[-89.908464,43.193278],[-89.836915,43.208495],[-89.835824,42.856057],[-89.838106,42.810587],[-90.42542,42.814103],[-90.428729,43.200182],[-90.368541,43.210601],[-90.31325,43.211414],[-90.287996,43.201103],[-90.25532,43.200841],[-90.192797,43.168432]]]},"id":55049},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-90.892546,42.67824],[-90.919409,42.680677],[-90.999182,42.707059],[-91.066169,42.744914],[-91.08203,42.783365],[-91.093429,42.87144],[-91.139122,42.925894],[-91.152214,43.001316],[-91.07807,42.993374],[-91.048124,42.998738],[-90.945333,43.056766],[-90.80753,43.097328],[-90.707494,43.152873],[-90.689648,43.173961],[-90.666485,43.178264],[-90.538814,43.208908],[-90.428729,43.200182],[-90.42542,42.814103],[-90.420103,42.508365],[-90.638456,42.509364],[-90.625707,42.528562],[-90.639219,42.555714],[-90.664381,42.571392],[-90.694791,42.637929],[-90.74561,42.657001],[-90.892546,42.67824]]]},"id":55043},
{"type":"Feature","properties":{"name":"Hillsborough"},"geometry":{"type":"Polygon","coordinates":[[[-72.034996,43.12678],[-72.024086,43.157095],[-72.031487,43.183595],[-72.018853,43.186132],[-71.911497,43.204031],[-71.857014,43.117164],[-71.664459,43.149819],[-71.641256,43.057051],[-71.513544,43.067885],[-71.510332,43.052806],[-71.494096,43.050681],[-71.47712,43.034885],[-71.45797,43.044067],[-71.449364,43.022522],[-71.39971,43.009262],[-71.377141,42.943304],[-71.449027,42.929716],[-71.418516,42.824962],[-71.384831,42.822929],[-71.352688,42.797265],[-71.355152,42.781854],[-71.340084,42.76745],[-71.240479,42.743555],[-71.252412,42.726069],[-71.287194,42.698603],[-71.900942,42.705379],[-71.930217,42.707209],[-71.945942,42.787027],[-71.96587,42.789155],[-72.007002,42.944406],[-72.060668,42.95067],[-72.034996,43.12678]]]},"id":33011},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-113.924357,42.76342],[-114.042922,42.766163],[-114.043067,42.806644],[-114.335526,42.807482],[-114.337502,42.821165],[-114.355028,42.820616],[-114.35528,42.846544],[-114.579745,42.847256],[-114.587136,43.190847],[-114.364587,43.192939],[-113.709166,43.189969],[-113.705431,42.84814],[-113.753659,42.846618],[-113.754421,42.763851],[-113.924357,42.76342]]]},"id":16063},
{"type":"Feature","properties":{"name":"Gooding"},"geometry":{"type":"Polygon","coordinates":[[[-114.607628,42.63769],[-114.651431,42.65122],[-114.731153,42.653995],[-114.759582,42.661758],[-114.787789,42.657241],[-114.806283,42.663921],[-114.820353,42.69234],[-114.836337,42.699881],[-114.843837,42.739561],[-114.894827,42.766767],[-114.925315,42.770441],[-114.930068,42.778699],[-114.926452,42.815927],[-114.903594,42.82784],[-114.896277,42.842275],[-114.907287,42.871103],[-114.926445,42.878686],[-114.94079,42.901196],[-114.953157,42.905938],[-115.003628,42.913541],[-115.027607,42.906628],[-115.055715,42.908413],[-115.076688,42.919186],[-115.074793,43.189356],[-114.587136,43.190847],[-114.579745,42.847256],[-114.608532,42.84642],[-114.607628,42.63769]]]},"id":16047},
{"type":"Feature","properties":{"name":"Minidoka"},"geometry":{"type":"Polygon","coordinates":[[[-113.924937,42.525603],[-113.924357,42.76342],[-113.754421,42.763851],[-113.753659,42.846618],[-113.705431,42.84814],[-113.709166,43.189969],[-113.406283,43.187937],[-113.408484,42.844859],[-113.461601,42.845855],[-113.461675,42.661167],[-113.538453,42.647766],[-113.570299,42.63451],[-113.612728,42.570138],[-113.662511,42.519582],[-113.715507,42.517747],[-113.760248,42.546155],[-113.824422,42.531823],[-113.882019,42.538671],[-113.924937,42.525603]]]},"id":16067},
{"type":"Feature","properties":{"name":"Cheshire"},"geometry":{"type":"Polygon","coordinates":[[[-72.034996,43.12678],[-72.060668,42.95067],[-72.007002,42.944406],[-71.96587,42.789155],[-71.945942,42.787027],[-71.930217,42.707209],[-72.279917,42.720467],[-72.45577,42.725853],[-72.462171,42.746841],[-72.479323,42.761588],[-72.50727,42.768733],[-72.513068,42.789259],[-72.538917,42.807734],[-72.553428,42.860643],[-72.52481,42.912614],[-72.520217,42.951673],[-72.504264,42.965585],[-72.473341,42.976144],[-72.457159,42.999604],[-72.461752,43.046504],[-72.443464,43.079039],[-72.437605,43.11627],[-72.452399,43.156022],[-72.4336,43.154431],[-72.432844,43.132585],[-72.376416,43.129629],[-72.386465,43.156137],[-72.164149,43.180055],[-72.181712,43.133444],[-72.034996,43.12678]]]},"id":33005},
{"type":"Feature","properties":{"name":"Yankton"},"geometry":{"type":"Polygon","coordinates":[[[-97.483159,42.857157],[-97.506132,42.860136],[-97.570654,42.847991],[-97.634971,42.861285],[-97.636407,43.171059],[-97.399036,43.171623],[-97.164257,43.170979],[-97.165804,43.085784],[-97.161423,42.798619],[-97.211832,42.812574],[-97.224444,42.841203],[-97.24319,42.851826],[-97.271458,42.850015],[-97.311414,42.861772],[-97.389306,42.867433],[-97.457264,42.850443],[-97.483159,42.857157]]]},"id":46135},
{"type":"Feature","properties":{"name":"Bon Homme"},"geometry":{"type":"Polygon","coordinates":[[[-98.167827,42.839571],[-98.162921,42.862505],[-98.146731,42.861326],[-98.123361,42.893071],[-98.128641,42.911988],[-98.118501,42.920644],[-98.120744,42.938515],[-98.104478,42.974685],[-98.118608,43.007666],[-98.109987,43.035074],[-98.119722,43.090192],[-98.112817,43.126789],[-98.082566,43.171459],[-97.636407,43.171059],[-97.634971,42.861285],[-97.685752,42.836837],[-97.72525,42.858008],[-97.772186,42.846164],[-97.797028,42.849597],[-97.818643,42.866587],[-97.888659,42.855807],[-97.889941,42.831272],[-97.929477,42.792324],[-97.963558,42.77369],[-97.995145,42.766812],[-98.03314,42.769192],[-98.12182,42.80836],[-98.123117,42.820224],[-98.144869,42.835795],[-98.167827,42.839571]]]},"id":46009},
{"type":"Feature","properties":{"name":"Power"},"geometry":{"type":"Polygon","coordinates":[[[-112.995773,42.324306],[-112.996295,42.58492],[-113.175589,42.588492],[-113.175635,42.610327],[-113.21196,42.618669],[-113.230263,42.614649],[-113.229561,42.661931],[-113.177185,42.661318],[-113.174333,42.758134],[-113.227976,42.759693],[-113.236638,43.105788],[-113.000647,43.103811],[-113.003684,42.85676],[-112.806207,42.862854],[-112.777764,42.887882],[-112.735153,42.949307],[-112.728835,42.939999],[-112.741066,42.914452],[-112.730491,42.903183],[-112.705214,42.926938],[-112.699675,42.945412],[-112.647747,42.94415],[-112.616634,42.960409],[-112.583765,42.964769],[-112.54937,42.944029],[-112.541168,42.925535],[-112.512732,42.900442],[-112.511579,42.792985],[-112.492238,42.792314],[-112.492611,42.73863],[-112.448352,42.737089],[-112.446879,42.702452],[-112.425012,42.702597],[-112.424645,42.679831],[-112.405991,42.678717],[-112.407974,42.648757],[-112.374983,42.647589],[-112.384313,42.563735],[-112.412535,42.561095],[-112.414694,42.500206],[-112.488892,42.49871],[-112.49115,42.415997],[-112.643675,42.413471],[-112.644368,42.332989],[-112.767427,42.331604],[-112.769059,42.325295],[-112.995773,42.324306]]]},"id":16077},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-96.629295,42.522694],[-96.636672,42.550732],[-96.71406,42.612302],[-96.715273,42.621907],[-96.694597,42.641164],[-96.69906,42.657716],[-96.722659,42.668592],[-96.799344,42.670019],[-96.810437,42.681341],[-96.81014,42.704084],[-96.812357,43.085537],[-96.460805,43.087873],[-96.462094,43.075582],[-96.479573,43.061884],[-96.52001,43.051509],[-96.49902,43.01205],[-96.517148,42.986458],[-96.514935,42.952382],[-96.544263,42.913866],[-96.537511,42.896906],[-96.556211,42.846661],[-96.573126,42.834347],[-96.587645,42.835381],[-96.600875,42.799559],[-96.632981,42.776836],[-96.640709,42.748604],[-96.626541,42.708355],[-96.563039,42.668513],[-96.541165,42.662405],[-96.512844,42.629755],[-96.488498,42.580481],[-96.500942,42.573885],[-96.489338,42.564028],[-96.480243,42.51713],[-96.439395,42.489241],[-96.494701,42.488459],[-96.547216,42.520499],[-96.584753,42.518287],[-96.605467,42.507236],[-96.629295,42.522694]]]},"id":46127},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-97.01514,42.759542],[-97.130469,42.773923],[-97.161423,42.798619],[-97.165804,43.085784],[-96.926037,43.087174],[-96.812357,43.085537],[-96.81014,42.704084],[-96.908234,42.731699],[-96.970773,42.721147],[-96.977869,42.727308],[-96.970003,42.752065],[-96.979593,42.758314],[-97.01514,42.759542]]]},"id":46027},
{"type":"Feature","properties":{"name":"Fayette"},"geometry":{"type":"Polygon","coordinates":[[[-91.610573,42.643577],[-92.08738,42.639984],[-92.086408,42.914678],[-92.083468,43.087144],[-91.609592,43.082441],[-91.610573,42.643577]]]},"id":19065},
{"type":"Feature","properties":{"name":"Clayton"},"geometry":{"type":"Polygon","coordinates":[[[-91.137522,42.647209],[-91.610573,42.643577],[-91.609592,43.082441],[-91.168572,43.082888],[-91.159752,43.081183],[-91.152214,43.001316],[-91.139122,42.925894],[-91.093429,42.87144],[-91.08203,42.783365],[-91.066169,42.744914],[-90.999182,42.707059],[-90.919409,42.680677],[-90.892546,42.67824],[-90.89939,42.646804],[-91.137522,42.647209]]]},"id":19043},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-74.763637,42.866398],[-74.744975,42.991099],[-74.747433,43.044291],[-74.538197,42.982563],[-74.09916,42.984545],[-74.09285,42.949992],[-74.086524,42.896796],[-74.253846,42.811556],[-74.25879,42.796999],[-74.28309,42.782858],[-74.369267,42.782187],[-74.449119,42.769205],[-74.573765,42.816454],[-74.648917,42.834741],[-74.763637,42.866398]]]},"id":36057},
{"type":"Feature","properties":{"name":"Caribou"},"geometry":{"type":"Polygon","coordinates":[[[-111.584957,42.414119],[-111.703662,42.415827],[-111.705974,42.42639],[-111.720272,42.426515],[-111.723064,42.414343],[-111.869371,42.41293],[-111.880213,42.485252],[-111.892596,42.486198],[-111.895114,42.528164],[-111.909405,42.52872],[-111.915578,42.640013],[-111.942961,42.641081],[-111.946364,42.679903],[-111.955504,42.682985],[-111.970573,42.716341],[-112.051501,42.720353],[-112.083522,42.700627],[-112.093418,42.701909],[-112.103596,42.708211],[-112.10822,42.731141],[-112.138022,42.760479],[-112.142295,42.797508],[-112.122,42.82816],[-112.137428,42.893379],[-112.129776,42.930886],[-112.118934,42.942322],[-112.094008,42.949128],[-112.074621,42.974809],[-112.050565,42.986649],[-112.051878,43.020852],[-111.577283,43.022532],[-111.049216,43.019883],[-111.04678,42.503252],[-111.064435,42.490148],[-111.103255,42.480535],[-111.132889,42.483693],[-111.185549,42.472409],[-111.22015,42.475769],[-111.240591,42.492157],[-111.214941,42.54565],[-111.216949,42.573967],[-111.234101,42.600227],[-111.277528,42.557982],[-111.321895,42.564478],[-111.34142,42.592645],[-111.354803,42.596868],[-111.583206,42.596109],[-111.623628,42.573659],[-111.619271,42.533422],[-111.633553,42.509886],[-111.599867,42.478453],[-111.577832,42.441581],[-111.584957,42.414119]]]},"id":16029},
{"type":"Feature","properties":{"name":"Bannock"},"geometry":{"type":"Polygon","coordinates":[[[-112.414694,42.500206],[-112.412535,42.561095],[-112.384313,42.563735],[-112.374983,42.647589],[-112.407974,42.648757],[-112.405991,42.678717],[-112.424645,42.679831],[-112.425012,42.702597],[-112.446879,42.702452],[-112.448352,42.737089],[-112.492611,42.73863],[-112.492238,42.792314],[-112.511579,42.792985],[-112.512732,42.900442],[-112.541168,42.925535],[-112.54937,42.944029],[-112.583765,42.964769],[-112.616634,42.960409],[-112.647747,42.94415],[-112.699675,42.945412],[-112.705214,42.926938],[-112.730491,42.903183],[-112.741066,42.914452],[-112.728835,42.939999],[-112.735153,42.949307],[-112.724029,42.987179],[-112.650494,43.019811],[-112.051878,43.020852],[-112.050565,42.986649],[-112.074621,42.974809],[-112.094008,42.949128],[-112.118934,42.942322],[-112.129776,42.930886],[-112.137428,42.893379],[-112.122,42.82816],[-112.142295,42.797508],[-112.138022,42.760479],[-112.10822,42.731141],[-112.103596,42.708211],[-112.093418,42.701909],[-112.083522,42.700627],[-112.051501,42.720353],[-111.970573,42.716341],[-111.955504,42.682985],[-111.946364,42.679903],[-111.942961,42.641081],[-111.915578,42.640013],[-111.909405,42.52872],[-111.895114,42.528164],[-111.892596,42.486198],[-111.880213,42.485252],[-111.869371,42.41293],[-111.884325,42.41261],[-111.88765,42.257589],[-111.980138,42.257566],[-111.981885,42.284932],[-112.11651,42.286434],[-112.15253,42.304165],[-112.156124,42.32386],[-112.177242,42.332832],[-112.180813,42.352984],[-112.249686,42.354617],[-112.272018,42.318583],[-112.319238,42.327578],[-112.312051,42.360521],[-112.283448,42.388147],[-112.288812,42.446569],[-112.30372,42.456204],[-112.317583,42.444425],[-112.333628,42.446366],[-112.385968,42.501465],[-112.414694,42.500206]]]},"id":16005},
{"type":"Feature","properties":{"name":"Sioux"},"geometry":{"type":"Polygon","coordinates":[[[-104.056219,42.61467],[-104.056199,43.003062],[-103.501464,42.998619],[-103.493346,42.782722],[-103.480208,42.782012],[-103.475234,42.432505],[-103.439772,42.43122],[-103.446209,42.083979],[-103.404055,42.080069],[-103.403545,41.993312],[-104.042191,41.994135],[-104.053513,41.999815],[-104.056219,42.61467]]]},"id":31165},
{"type":"Feature","properties":{"name":"Dawes"},"geometry":{"type":"Polygon","coordinates":[[[-103.439772,42.43122],[-103.475234,42.432505],[-103.480208,42.782012],[-103.493346,42.782722],[-103.501464,42.998619],[-103.005875,42.999354],[-102.788385,42.995304],[-102.790002,42.780202],[-102.772476,42.7781],[-102.772507,42.439008],[-103.439772,42.43122]]]},"id":31045},
{"type":"Feature","properties":{"name":"Sheridan"},"geometry":{"type":"Polygon","coordinates":[[[-102.772507,42.439008],[-102.772476,42.7781],[-102.790002,42.780202],[-102.788385,42.995304],[-102.086701,42.989887],[-102.084303,42.778926],[-102.066183,42.77764],[-102.06714,42.435392],[-102.04351,42.432767],[-102.038349,42.087068],[-102.008044,42.085371],[-102.006839,42.004083],[-102.063634,42.001576],[-102.674937,41.997913],[-102.70399,41.999458],[-102.706661,42.082552],[-102.745052,42.08582],[-102.75258,42.436929],[-102.772507,42.439008]]]},"id":31161},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-122.284705,42.000765],[-123.222103,42.002192],[-123.226925,42.694667],[-123.236287,42.701511],[-123.209186,42.705993],[-123.177303,42.733929],[-123.15356,42.734139],[-123.153224,42.751469],[-122.968191,42.752787],[-122.967763,42.762369],[-122.947598,42.767847],[-122.796423,42.777842],[-122.796164,42.789698],[-122.779447,42.791804],[-122.77596,42.817465],[-122.735889,42.817408],[-122.735035,42.829745],[-122.717571,42.830512],[-122.717334,42.842818],[-122.698108,42.845027],[-122.697398,42.859179],[-122.676844,42.86053],[-122.67657,42.872385],[-122.637315,42.874995],[-122.635965,42.889174],[-122.599122,42.890757],[-122.597734,42.904483],[-122.5765,42.905391],[-122.575135,42.91957],[-122.55394,42.920928],[-122.55246,42.933741],[-122.456235,42.937793],[-122.455114,42.947406],[-122.438863,42.948085],[-122.437406,42.961349],[-122.418209,42.964427],[-122.417401,42.978126],[-122.398746,42.980262],[-122.39703,42.990356],[-122.278686,42.993363],[-122.273474,42.474568],[-122.284652,42.47411],[-122.284705,42.000765]]]},"id":41029},
{"type":"Feature","properties":{"name":"Keya Paha"},"geometry":{"type":"Polygon","coordinates":[[[-99.259536,42.801923],[-99.304192,42.79268],[-99.338511,42.774152],[-99.379116,42.773908],[-99.425032,42.763277],[-99.444839,42.748132],[-99.52817,42.715776],[-99.62608,42.718124],[-99.655728,42.729461],[-99.673406,42.72198],[-99.728972,42.720923],[-99.75492,42.73128],[-99.776817,42.729296],[-99.828362,42.739967],[-99.867272,42.757286],[-99.929048,42.758954],[-100.020945,42.782767],[-100.074032,42.7829],[-100.137441,42.797671],[-100.153219,42.821479],[-100.17137,42.820301],[-100.197402,42.831474],[-100.198142,42.991095],[-99.53279,42.992335],[-99.253972,42.992389],[-99.259536,42.801923]]]},"id":31103},
{"type":"Feature","properties":{"name":"Boyd"},"geometry":{"type":"Polygon","coordinates":[[[-98.305411,42.758399],[-98.344947,42.768005],[-98.460771,42.762111],[-98.579517,42.775288],[-98.663282,42.804424],[-98.698416,42.801091],[-98.763687,42.825668],[-98.813066,42.825783],[-98.840532,42.843178],[-98.890635,42.841003],[-98.931362,42.87228],[-98.985761,42.89017],[-99.022253,42.884498],[-99.111291,42.842499],[-99.169132,42.833084],[-99.194027,42.817608],[-99.259536,42.801923],[-99.253972,42.992389],[-98.497651,42.991779],[-98.457444,42.937161],[-98.391205,42.920136],[-98.31034,42.881795],[-98.312468,42.781317],[-98.305411,42.758399]]]},"id":31015},
{"type":"Feature","properties":{"name":"Cherry"},"geometry":{"type":"Polygon","coordinates":[[[-100.197402,42.831474],[-100.197913,42.77101],[-100.181723,42.768576],[-100.184366,42.433153],[-100.172609,42.430307],[-100.1638,42.080841],[-100.266478,42.078686],[-100.845116,42.081999],[-101.427493,42.083181],[-102.008044,42.085371],[-102.038349,42.087068],[-102.04351,42.432767],[-102.06714,42.435392],[-102.066183,42.77764],[-102.084303,42.778926],[-102.086701,42.989887],[-101.231737,42.986843],[-100.198142,42.991095],[-100.197402,42.831474]]]},"id":31031},
{"type":"Feature","properties":{"name":"Curry"},"geometry":{"type":"Polygon","coordinates":[[[-123.819146,41.992949],[-124.206444,41.997648],[-124.352247,42.098677],[-124.415062,42.245895],[-124.437819,42.429609],[-124.391763,42.553028],[-124.401079,42.622699],[-124.559617,42.832457],[-124.485347,42.955454],[-124.253315,42.953826],[-124.252742,42.942458],[-124.231234,42.940913],[-124.230188,42.930938],[-124.2119,42.930129],[-124.210763,42.919246],[-124.199974,42.918018],[-124.210259,42.9024],[-124.191925,42.901134],[-124.188926,42.890354],[-124.157423,42.882965],[-124.155858,42.873932],[-124.143918,42.873676],[-124.133297,42.86195],[-124.133617,42.828648],[-124.147854,42.826958],[-124.149265,42.816391],[-124.157986,42.81591],[-124.157649,42.794502],[-124.150484,42.737453],[-124.12349,42.736656],[-124.120017,42.672573],[-124.085996,42.676254],[-124.085554,42.684028],[-123.984957,42.684906],[-123.98237,42.696442],[-123.962556,42.698411],[-123.962266,42.707997],[-123.943696,42.709905],[-123.943772,42.723115],[-123.930085,42.723844],[-123.930871,42.737935],[-123.91909,42.739015],[-123.919686,42.769975],[-123.865324,42.771032],[-123.864577,42.776079],[-123.837659,42.776129],[-123.836736,42.785746],[-123.799442,42.788611],[-123.771814,42.794154],[-123.729591,42.772182],[-123.761375,42.700354],[-123.812943,42.639791],[-123.826889,42.584836],[-123.855661,42.566464],[-123.850045,42.541245],[-123.867455,42.528023],[-123.8723,42.507717],[-123.892709,42.493427],[-123.916712,42.490325],[-123.946338,42.499679],[-124.001203,42.487166],[-123.993153,42.45069],[-123.999691,42.416621],[-124.034521,42.403799],[-124.059882,42.383745],[-124.058158,42.3729],[-124.039472,42.366633],[-124.029759,42.350756],[-123.942613,42.350444],[-123.882811,42.337234],[-123.868544,42.318863],[-123.848607,42.312172],[-123.81998,42.248551],[-123.792063,42.223603],[-123.812884,42.188809],[-123.809038,42.168515],[-123.844379,42.142972],[-123.848773,42.124524],[-123.825472,42.082952],[-123.842211,42.038809],[-123.819146,41.992949]]]},"id":41015},
{"type":"Feature","properties":{"name":"Rensselaer"},"geometry":{"type":"Polygon","coordinates":[[[-73.350824,42.504756],[-73.779528,42.460291],[-73.788172,42.479844],[-73.76246,42.544781],[-73.764115,42.605228],[-73.697699,42.695994],[-73.678663,42.764135],[-73.662816,42.814554],[-73.675176,42.842771],[-73.679296,42.897801],[-73.666059,42.919591],[-73.63654,42.939519],[-73.464409,42.940294],[-73.42923,42.955152],[-73.381179,42.938108],[-73.276005,42.940294],[-73.279583,42.837103],[-73.29617,42.803549],[-73.269275,42.747481],[-73.25806,42.746059],[-73.350824,42.504756]]]},"id":36083},
{"type":"Feature","properties":{"name":"Schenectady"},"geometry":{"type":"Polygon","coordinates":[[[-73.822236,42.775319],[-74.179283,42.728034],[-74.206063,42.711631],[-74.259722,42.712901],[-74.3035,42.736441],[-74.287965,42.75466],[-74.263642,42.758349],[-74.249337,42.774741],[-74.247529,42.792929],[-74.25879,42.796999],[-74.253846,42.811556],[-74.086524,42.896796],[-74.09285,42.949992],[-74.057166,42.949557],[-73.978299,42.9141],[-73.956944,42.894649],[-73.90636,42.902248],[-73.89519,42.844956],[-73.822236,42.775319]]]},"id":36093},
{"type":"Feature","properties":{"name":"Plymouth"},"geometry":{"type":"Polygon","coordinates":[[[-95.867852,42.564977],[-96.489338,42.564028],[-96.500942,42.573885],[-96.488498,42.580481],[-96.512844,42.629755],[-96.541165,42.662405],[-96.563039,42.668513],[-96.626541,42.708355],[-96.640709,42.748604],[-96.632981,42.776836],[-96.600875,42.799559],[-96.587645,42.835381],[-96.573126,42.834347],[-96.556211,42.846661],[-96.537511,42.896906],[-96.544263,42.913866],[-95.868853,42.91528],[-95.867852,42.564977]]]},"id":19149},
{"type":"Feature","properties":{"name":"Cherokee"},"geometry":{"type":"Polygon","coordinates":[[[-95.397312,42.563029],[-95.747922,42.56351],[-95.867852,42.564977],[-95.868853,42.91528],[-95.400999,42.914014],[-95.397312,42.563029]]]},"id":19035},
{"type":"Feature","properties":{"name":"Bremer"},"geometry":{"type":"Polygon","coordinates":[[[-92.557379,42.637528],[-92.55836,42.914039],[-92.086408,42.914678],[-92.08738,42.639984],[-92.557379,42.637528]]]},"id":19017},
{"type":"Feature","properties":{"name":"Butler"},"geometry":{"type":"Polygon","coordinates":[[[-93.030664,42.551881],[-93.026374,42.908616],[-92.55836,42.914039],[-92.557379,42.637528],[-92.560501,42.552881],[-93.030664,42.551881]]]},"id":19023},
{"type":"Feature","properties":{"name":"Buena Vista"},"geometry":{"type":"Polygon","coordinates":[[[-94.920491,42.558282],[-95.397312,42.563029],[-95.400999,42.914014],[-94.920164,42.912982],[-94.920491,42.558282]]]},"id":19021},
{"type":"Feature","properties":{"name":"Twin Falls"},"geometry":{"type":"Polygon","coordinates":[[[-115.024863,41.996506],[-115.026652,42.764737],[-115.027607,42.906628],[-115.003628,42.913541],[-114.953157,42.905938],[-114.94079,42.901196],[-114.926445,42.878686],[-114.907287,42.871103],[-114.896277,42.842275],[-114.903594,42.82784],[-114.926452,42.815927],[-114.930068,42.778699],[-114.925315,42.770441],[-114.894827,42.766767],[-114.843837,42.739561],[-114.836337,42.699881],[-114.820353,42.69234],[-114.806283,42.663921],[-114.787789,42.657241],[-114.759582,42.661758],[-114.731153,42.653995],[-114.651431,42.65122],[-114.607628,42.63769],[-114.518406,42.62238],[-114.44407,42.593214],[-114.353346,42.586852],[-114.307544,42.563183],[-114.188881,42.540666],[-114.154808,42.506281],[-114.134605,42.498109],[-114.09774,42.50184],[-114.048964,42.522106],[-114.002928,42.521506],[-114.005888,42.510665],[-114.063529,42.501526],[-114.062481,42.408764],[-114.269516,42.406008],[-114.269472,41.995924],[-115.024863,41.996506]]]},"id":16083},
{"type":"Feature","properties":{"name":"Pocahontas"},"geometry":{"type":"Polygon","coordinates":[[[-94.45378,42.561422],[-94.920491,42.558282],[-94.920164,42.912982],[-94.455237,42.913228],[-94.453231,42.649732],[-94.45378,42.561422]]]},"id":19151},
{"type":"Feature","properties":{"name":"Humboldt"},"geometry":{"type":"Polygon","coordinates":[[[-93.97753,42.647386],[-94.453231,42.649732],[-94.455237,42.913228],[-93.978936,42.910388],[-93.97753,42.647386]]]},"id":19091},
{"type":"Feature","properties":{"name":"Wright"},"geometry":{"type":"Polygon","coordinates":[[[-93.499796,42.553311],[-93.977347,42.557759],[-93.97753,42.647386],[-93.978936,42.910388],[-93.499939,42.912266],[-93.499796,42.553311]]]},"id":19197},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-93.026374,42.908616],[-93.030664,42.551881],[-93.499796,42.553311],[-93.499939,42.912266],[-93.026374,42.908616]]]},"id":19069},
{"type":"Feature","properties":{"name":"Otsego"},"geometry":{"type":"Polygon","coordinates":[[[-75.212932,42.885279],[-75.212498,42.860278],[-75.135645,42.863692],[-75.09887,42.910388],[-74.910692,42.827263],[-74.890801,42.835587],[-74.884125,42.900196],[-74.763637,42.866398],[-74.648917,42.834741],[-74.673126,42.753695],[-74.641061,42.661582],[-74.636973,42.622966],[-74.649151,42.59291],[-74.718148,42.519833],[-74.770877,42.505444],[-74.835057,42.515046],[-74.933991,42.46984],[-74.937882,42.481627],[-74.964555,42.477343],[-74.980974,42.451313],[-74.989084,42.453071],[-74.99827,42.443462],[-75.012004,42.447899],[-75.022251,42.426007],[-75.082434,42.420521],[-75.137765,42.384602],[-75.190189,42.363686],[-75.191707,42.380028],[-75.218792,42.366604],[-75.253462,42.361275],[-75.306115,42.322133],[-75.342569,42.314038],[-75.410351,42.321952],[-75.391261,42.360324],[-75.403057,42.391092],[-75.373293,42.425039],[-75.395373,42.472515],[-75.392939,42.506175],[-75.378839,42.516776],[-75.370056,42.544592],[-75.333853,42.571329],[-75.321057,42.619188],[-75.321315,42.665547],[-75.286072,42.748634],[-75.254324,42.788043],[-75.243344,42.837252],[-75.252126,42.873541],[-75.245389,42.881335],[-75.212932,42.885279]]]},"id":36077},
{"type":"Feature","properties":{"name":"Holt"},"geometry":{"type":"Polygon","coordinates":[[[-98.75573,42.081804],[-99.219562,42.08218],[-99.231892,42.083305],[-99.233798,42.424596],[-99.251075,42.774041],[-99.258536,42.775075],[-99.259536,42.801923],[-99.194027,42.817608],[-99.169132,42.833084],[-99.111291,42.842499],[-99.022253,42.884498],[-98.985761,42.89017],[-98.931362,42.87228],[-98.890635,42.841003],[-98.840532,42.843178],[-98.813066,42.825783],[-98.763687,42.825668],[-98.698416,42.801091],[-98.663282,42.804424],[-98.579517,42.775288],[-98.460771,42.762111],[-98.344947,42.768005],[-98.305411,42.758399],[-98.297275,42.434883],[-98.290603,42.081546],[-98.75573,42.081804]]]},"id":31089},
{"type":"Feature","properties":{"name":"Essex"},"geometry":{"type":"Polygon","coordinates":[[[-71.02671,42.443307],[-71.059021,42.473137],[-71.03743,42.498104],[-71.042016,42.521854],[-71.069909,42.524753],[-71.075281,42.544879],[-71.05665,42.573107],[-71.033746,42.569857],[-71.030847,42.579341],[-71.055376,42.603087],[-71.126804,42.593771],[-71.152394,42.607973],[-71.162838,42.59638],[-71.179883,42.606298],[-71.171475,42.613843],[-71.260238,42.654388],[-71.236877,42.661625],[-71.252412,42.726069],[-71.240479,42.743555],[-71.186347,42.738761],[-71.181061,42.807317],[-71.120604,42.818281],[-71.065565,42.80432],[-71.025426,42.851171],[-70.921336,42.885149],[-70.898112,42.886877],[-70.84974,42.863429],[-70.813881,42.867065],[-70.739695,42.663524],[-70.593199,42.646305],[-70.633452,42.582642],[-70.813128,42.546436],[-70.893604,42.448068],[-70.960622,42.432394],[-71.006857,42.42785],[-71.01174,42.444326],[-71.02671,42.443307]]]},"id":25009},
{"type":"Feature","properties":{"name":"Knox"},"geometry":{"type":"Polygon","coordinates":[[[-97.835175,42.437218],[-98.297275,42.434883],[-98.305411,42.758399],[-98.312468,42.781317],[-98.31034,42.881795],[-98.167827,42.839571],[-98.144869,42.835795],[-98.123117,42.820224],[-98.12182,42.80836],[-98.03314,42.769192],[-97.995145,42.766812],[-97.963558,42.77369],[-97.929477,42.792324],[-97.889941,42.831272],[-97.888659,42.855807],[-97.818643,42.866587],[-97.797028,42.849597],[-97.772186,42.846164],[-97.72525,42.858008],[-97.685752,42.836837],[-97.634971,42.861285],[-97.570654,42.847991],[-97.506132,42.860136],[-97.483159,42.857157],[-97.484881,42.440047],[-97.835175,42.437218]]]},"id":31107},
{"type":"Feature","properties":{"name":"Cedar"},"geometry":{"type":"Polygon","coordinates":[[[-97.019992,42.347063],[-97.367979,42.345423],[-97.36927,42.438695],[-97.484881,42.440047],[-97.483159,42.857157],[-97.457264,42.850443],[-97.389306,42.867433],[-97.311414,42.861772],[-97.271458,42.850015],[-97.24319,42.851826],[-97.224444,42.841203],[-97.211832,42.812574],[-97.161423,42.798619],[-97.130469,42.773923],[-97.01514,42.759542],[-97.019992,42.347063]]]},"id":31027},
{"type":"Feature","properties":{"name":"Jerome"},"geometry":{"type":"Polygon","coordinates":[[[-114.002928,42.521506],[-114.048964,42.522106],[-114.09774,42.50184],[-114.134605,42.498109],[-114.154808,42.506281],[-114.188881,42.540666],[-114.307544,42.563183],[-114.353346,42.586852],[-114.44407,42.593214],[-114.518406,42.62238],[-114.607628,42.63769],[-114.608532,42.84642],[-114.579745,42.847256],[-114.35528,42.846544],[-114.355028,42.820616],[-114.337502,42.821165],[-114.335526,42.807482],[-114.043067,42.806644],[-114.042922,42.766163],[-113.924357,42.76342],[-113.924937,42.525603],[-114.002928,42.521506]]]},"id":16053},
{"type":"Feature","properties":{"name":"Schoharie"},"geometry":{"type":"Polygon","coordinates":[[[-74.179283,42.728034],[-74.156777,42.708519],[-74.162905,42.659878],[-74.236078,42.547051],[-74.229702,42.500256],[-74.248807,42.449786],[-74.250509,42.405255],[-74.243567,42.374368],[-74.269591,42.361143],[-74.340318,42.353709],[-74.370203,42.371347],[-74.43964,42.356139],[-74.619057,42.43037],[-74.718148,42.519833],[-74.649151,42.59291],[-74.636973,42.622966],[-74.641061,42.661582],[-74.673126,42.753695],[-74.648917,42.834741],[-74.573765,42.816454],[-74.449119,42.769205],[-74.369267,42.782187],[-74.28309,42.782858],[-74.25879,42.796999],[-74.247529,42.792929],[-74.249337,42.774741],[-74.263642,42.758349],[-74.287965,42.75466],[-74.3035,42.736441],[-74.259722,42.712901],[-74.206063,42.711631],[-74.179283,42.728034]]]},"id":36095},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-99.661729,42.081041],[-99.684023,42.079996],[-100.1638,42.080841],[-100.172609,42.430307],[-100.184366,42.433153],[-100.181723,42.768576],[-100.197913,42.77101],[-100.197402,42.831474],[-100.17137,42.820301],[-100.153219,42.821479],[-100.137441,42.797671],[-100.074032,42.7829],[-100.020945,42.782767],[-99.929048,42.758954],[-99.867272,42.757286],[-99.828362,42.739967],[-99.776817,42.729296],[-99.75492,42.73128],[-99.728972,42.720923],[-99.673406,42.72198],[-99.669993,42.426471],[-99.660723,42.424522],[-99.661729,42.081041]]]},"id":31017},
{"type":"Feature","properties":{"name":"Lafayette"},"geometry":{"type":"Polygon","coordinates":[[[-89.834739,42.503469],[-89.923691,42.504116],[-90.420103,42.508365],[-90.42542,42.814103],[-89.838106,42.810587],[-89.834739,42.503469]]]},"id":55065},
{"type":"Feature","properties":{"name":"Albany"},"geometry":{"type":"Polygon","coordinates":[[[-73.779528,42.460291],[-74.250509,42.405255],[-74.248807,42.449786],[-74.229702,42.500256],[-74.236078,42.547051],[-74.162905,42.659878],[-74.156777,42.708519],[-74.179283,42.728034],[-73.822236,42.775319],[-73.810997,42.773939],[-73.792221,42.788003],[-73.767875,42.784776],[-73.737815,42.808366],[-73.678663,42.764135],[-73.697699,42.695994],[-73.764115,42.605228],[-73.76246,42.544781],[-73.788172,42.479844],[-73.779528,42.460291]]]},"id":36001},
{"type":"Feature","properties":{"name":"Rock"},"geometry":{"type":"Polygon","coordinates":[[[-99.231892,42.083305],[-99.661729,42.081041],[-99.660723,42.424522],[-99.669993,42.426471],[-99.673406,42.72198],[-99.655728,42.729461],[-99.62608,42.718124],[-99.52817,42.715776],[-99.444839,42.748132],[-99.425032,42.763277],[-99.379116,42.773908],[-99.338511,42.774152],[-99.304192,42.79268],[-99.259536,42.801923],[-99.258536,42.775075],[-99.251075,42.774041],[-99.233798,42.424596],[-99.231892,42.083305]]]},"id":31149},
{"type":"Feature","properties":{"name":"Josephine"},"geometry":{"type":"Polygon","coordinates":[[[-123.513205,41.997833],[-123.819146,41.992949],[-123.842211,42.038809],[-123.825472,42.082952],[-123.848773,42.124524],[-123.844379,42.142972],[-123.809038,42.168515],[-123.812884,42.188809],[-123.792063,42.223603],[-123.81998,42.248551],[-123.848607,42.312172],[-123.868544,42.318863],[-123.882811,42.337234],[-123.942613,42.350444],[-124.029759,42.350756],[-124.039472,42.366633],[-124.058158,42.3729],[-124.059882,42.383745],[-124.034521,42.403799],[-123.999691,42.416621],[-123.993153,42.45069],[-124.001203,42.487166],[-123.946338,42.499679],[-123.916712,42.490325],[-123.892709,42.493427],[-123.8723,42.507717],[-123.867455,42.528023],[-123.850045,42.541245],[-123.855661,42.566464],[-123.826889,42.584836],[-123.812943,42.639791],[-123.761375,42.700354],[-123.729591,42.772182],[-123.718963,42.772277],[-123.719878,42.736686],[-123.696805,42.737415],[-123.695768,42.746128],[-123.678296,42.746567],[-123.678036,42.737469],[-123.584129,42.736779],[-123.583885,42.727681],[-123.567123,42.728982],[-123.566993,42.714406],[-123.540006,42.713487],[-123.540075,42.707563],[-123.4958,42.708864],[-123.495655,42.70067],[-123.473208,42.701331],[-123.472079,42.695921],[-123.428614,42.705825],[-123.427957,42.712234],[-123.397462,42.713734],[-123.397012,42.722416],[-123.321884,42.728361],[-123.321845,42.721071],[-123.306365,42.722731],[-123.306243,42.728209],[-123.250081,42.722713],[-123.246205,42.700576],[-123.236287,42.701511],[-123.226925,42.694667],[-123.222103,42.002192],[-123.513205,41.997833]]]},"id":41033},
{"type":"Feature","properties":{"name":"Dixon"},"geometry":{"type":"Polygon","coordinates":[[[-96.727222,42.276567],[-96.729549,42.260737],[-96.825842,42.259243],[-97.01794,42.263305],[-97.019992,42.347063],[-97.01514,42.759542],[-96.979593,42.758314],[-96.970003,42.752065],[-96.977869,42.727308],[-96.970773,42.721147],[-96.908234,42.731699],[-96.81014,42.704084],[-96.810437,42.681341],[-96.799344,42.670019],[-96.722659,42.668592],[-96.69906,42.657716],[-96.694597,42.641164],[-96.715273,42.621907],[-96.71406,42.612302],[-96.636672,42.550732],[-96.629295,42.522694],[-96.719644,42.522409],[-96.727222,42.276567]]]},"id":31051},
{"type":"Feature","properties":{"name":"Berkshire"},"geometry":{"type":"Polygon","coordinates":[[[-73.48423,42.047428],[-73.49884,42.077461],[-73.350824,42.504756],[-73.25806,42.746059],[-73.019695,42.740397],[-73.018947,42.70539],[-72.949098,42.703937],[-72.950517,42.69258],[-72.967996,42.69136],[-72.983912,42.669662],[-72.955926,42.664447],[-72.94423,42.654804],[-72.970048,42.553655],[-73.00616,42.378986],[-73.060718,42.384841],[-73.06522,42.373515],[-73.054707,42.324821],[-73.025196,42.305523],[-72.995326,42.312111],[-73.025626,42.141987],[-73.038459,42.153896],[-73.066986,42.149108],[-73.057533,42.115879],[-73.070214,42.092805],[-73.044198,42.050833],[-73.045632,42.03631],[-73.48423,42.047428]]]},"id":25003},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-73.019695,42.740397],[-72.922997,42.737364],[-72.45577,42.725853],[-72.279917,42.720467],[-72.274065,42.679933],[-72.230218,42.662981],[-72.219338,42.625102],[-72.251504,42.610083],[-72.254853,42.576034],[-72.271058,42.575344],[-72.267755,42.533024],[-72.245423,42.505456],[-72.283334,42.481878],[-72.279374,42.44092],[-72.300553,42.413477],[-72.305832,42.349929],[-72.325211,42.318371],[-72.351479,42.30962],[-72.352067,42.36325],[-72.377512,42.416731],[-72.480862,42.407076],[-72.488461,42.428979],[-72.698945,42.404446],[-72.695588,42.451213],[-72.758486,42.44456],[-72.757005,42.457721],[-72.862317,42.480044],[-72.861081,42.517298],[-72.87837,42.525629],[-72.877508,42.540616],[-72.970048,42.553655],[-72.94423,42.654804],[-72.955926,42.664447],[-72.983912,42.669662],[-72.967996,42.69136],[-72.950517,42.69258],[-72.949098,42.703937],[-73.018947,42.70539],[-73.019695,42.740397]]]},"id":25011},
{"type":"Feature","properties":{"name":"Middlesex"},"geometry":{"type":"Polygon","coordinates":[[[-71.189966,42.280581],[-71.212916,42.296076],[-71.223155,42.319471],[-71.238826,42.331171],[-71.327231,42.308023],[-71.308485,42.247191],[-71.332144,42.244497],[-71.349738,42.205774],[-71.343809,42.198839],[-71.393737,42.188947],[-71.399681,42.179071],[-71.436814,42.179811],[-71.476137,42.154226],[-71.4769,42.167417],[-71.502269,42.167909],[-71.554356,42.183445],[-71.556989,42.196675],[-71.591673,42.196865],[-71.605765,42.219394],[-71.592635,42.258681],[-71.566862,42.268653],[-71.516621,42.269065],[-71.485439,42.308456],[-71.492809,42.327689],[-71.558569,42.328486],[-71.590193,42.31135],[-71.603797,42.330691],[-71.627006,42.34157],[-71.613685,42.368139],[-71.586448,42.383547],[-71.593566,42.393221],[-71.563071,42.412653],[-71.5464,42.462335],[-71.565383,42.470872],[-71.535788,42.516228],[-71.538809,42.536289],[-71.571456,42.54599],[-71.597939,42.53648],[-71.619973,42.54734],[-71.632104,42.538471],[-71.631417,42.522091],[-71.676486,42.532905],[-71.667064,42.609564],[-71.77748,42.644681],[-71.781622,42.632024],[-71.858307,42.631489],[-71.856988,42.674198],[-71.900942,42.705379],[-71.287194,42.698603],[-71.252412,42.726069],[-71.236877,42.661625],[-71.260238,42.654388],[-71.171475,42.613843],[-71.179883,42.606298],[-71.162838,42.59638],[-71.152394,42.607973],[-71.126804,42.593771],[-71.055376,42.603087],[-71.030847,42.579341],[-71.033746,42.569857],[-71.05665,42.573107],[-71.075281,42.544879],[-71.069909,42.524753],[-71.042016,42.521854],[-71.03743,42.498104],[-71.059021,42.473137],[-71.02671,42.443307],[-71.052085,42.387514],[-71.073105,42.38981],[-71.083702,42.37414],[-71.066604,42.352389],[-71.116913,42.352152],[-71.136224,42.365762],[-71.17605,42.348451],[-71.152696,42.32749],[-71.180811,42.30765],[-71.1644,42.299113],[-71.189966,42.280581]]]},"id":25017},
{"type":"Feature","properties":{"name":"Worcester"},"geometry":{"type":"Polygon","coordinates":[[[-72.136347,42.026402],[-72.136637,42.154509],[-72.195003,42.147616],[-72.262143,42.185331],[-72.24587,42.216913],[-72.211003,42.247785],[-72.220037,42.306522],[-72.269324,42.295376],[-72.284088,42.350555],[-72.305832,42.349929],[-72.300553,42.413477],[-72.279374,42.44092],[-72.283334,42.481878],[-72.245423,42.505456],[-72.267755,42.533024],[-72.271058,42.575344],[-72.254853,42.576034],[-72.251504,42.610083],[-72.219338,42.625102],[-72.230218,42.662981],[-72.274065,42.679933],[-72.279917,42.720467],[-71.930217,42.707209],[-71.900942,42.705379],[-71.856988,42.674198],[-71.858307,42.631489],[-71.781622,42.632024],[-71.77748,42.644681],[-71.667064,42.609564],[-71.676486,42.532905],[-71.631417,42.522091],[-71.632104,42.538471],[-71.619973,42.54734],[-71.597939,42.53648],[-71.571456,42.54599],[-71.538809,42.536289],[-71.535788,42.516228],[-71.565383,42.470872],[-71.5464,42.462335],[-71.563071,42.412653],[-71.593566,42.393221],[-71.586448,42.383547],[-71.613685,42.368139],[-71.627006,42.34157],[-71.603797,42.330691],[-71.590193,42.31135],[-71.558569,42.328486],[-71.492809,42.327689],[-71.485439,42.308456],[-71.516621,42.269065],[-71.566862,42.268653],[-71.592635,42.258681],[-71.605765,42.219394],[-71.591673,42.196865],[-71.556989,42.196675],[-71.554356,42.183445],[-71.502269,42.167909],[-71.4769,42.167417],[-71.476137,42.154226],[-71.477625,42.130178],[-71.498751,42.110594],[-71.49743,42.009253],[-71.797832,42.004275],[-71.802341,42.017977],[-72.094972,42.025799],[-72.136347,42.026402]]]},"id":25027},
{"type":"Feature","properties":{"name":"Dubuque"},"geometry":{"type":"Polygon","coordinates":[[[-91.134262,42.297311],[-91.137522,42.647209],[-90.89939,42.646804],[-90.892546,42.67824],[-90.74561,42.657001],[-90.694791,42.637929],[-90.664381,42.571392],[-90.639219,42.555714],[-90.625707,42.528562],[-90.638456,42.509364],[-90.651899,42.494701],[-90.648474,42.475647],[-90.605955,42.460565],[-90.563712,42.421844],[-90.491171,42.388791],[-90.664962,42.383713],[-90.66591,42.291928],[-90.893584,42.295582],[-91.134262,42.297311]]]},"id":19061},
{"type":"Feature","properties":{"name":"Cassia"},"geometry":{"type":"Polygon","coordinates":[[[-114.269472,41.995924],[-114.269516,42.406008],[-114.062481,42.408764],[-114.063529,42.501526],[-114.005888,42.510665],[-114.002928,42.521506],[-113.924937,42.525603],[-113.882019,42.538671],[-113.824422,42.531823],[-113.760248,42.546155],[-113.715507,42.517747],[-113.662511,42.519582],[-113.612728,42.570138],[-113.570299,42.63451],[-113.538453,42.647766],[-113.461675,42.661167],[-113.359729,42.666092],[-113.340877,42.656922],[-113.328928,42.635205],[-113.258248,42.615911],[-113.251221,42.607523],[-113.230263,42.614649],[-113.21196,42.618669],[-113.175635,42.610327],[-113.175589,42.588492],[-112.996295,42.58492],[-112.995773,42.324306],[-112.989575,42.001147],[-114.039073,41.995391],[-114.269472,41.995924]]]},"id":16031},
{"type":"Feature","properties":{"name":"Webster"},"geometry":{"type":"Polygon","coordinates":[[[-94.40823,42.208735],[-94.412625,42.473337],[-94.453703,42.473148],[-94.45378,42.561422],[-94.453231,42.649732],[-93.97753,42.647386],[-93.977347,42.557759],[-93.976165,42.471818],[-93.935064,42.471407],[-93.939987,42.207902],[-94.172548,42.208359],[-94.40823,42.208735]]]},"id":19187},
{"type":"Feature","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-91.368021,42.29415],[-91.600027,42.295142],[-91.599102,42.470575],[-91.610914,42.470384],[-91.610573,42.643577],[-91.137522,42.647209],[-91.134262,42.297311],[-91.368021,42.29415]]]},"id":19055},
{"type":"Feature","properties":{"name":"Buchanan"},"geometry":{"type":"Polygon","coordinates":[[[-91.600027,42.295142],[-91.836998,42.295634],[-92.069631,42.295776],[-92.066073,42.468558],[-92.086596,42.468612],[-92.08738,42.639984],[-91.610573,42.643577],[-91.610914,42.470384],[-91.599102,42.470575],[-91.600027,42.295142]]]},"id":19019},
{"type":"Feature","properties":{"name":"Black Hawk"},"geometry":{"type":"Polygon","coordinates":[[[-92.544169,42.294135],[-92.542031,42.472385],[-92.560105,42.473319],[-92.560501,42.552881],[-92.557379,42.637528],[-92.08738,42.639984],[-92.086596,42.468612],[-92.066073,42.468558],[-92.069631,42.295776],[-92.305927,42.294058],[-92.544169,42.294135]]]},"id":19013},
{"type":"Feature","properties":{"name":"Goshen"},"geometry":{"type":"Polygon","coordinates":[[[-104.657124,42.613836],[-104.056219,42.61467],[-104.053513,41.999815],[-104.053615,41.698218],[-104.055501,41.564222],[-104.649797,41.565585],[-104.650637,41.656365],[-104.657124,42.613836]]]},"id":56015},
{"type":"Feature","properties":{"name":"Platte"},"geometry":{"type":"Polygon","coordinates":[[[-105.2811,41.654813],[-105.276211,42.095803],[-105.286114,42.096158],[-105.288547,42.429153],[-105.288745,42.60776],[-104.900693,42.61193],[-104.657124,42.613836],[-104.650637,41.656365],[-105.2811,41.654813]]]},"id":56031},
{"type":"Feature","properties":{"name":"Bear Lake"},"geometry":{"type":"Polygon","coordinates":[[[-111.048697,41.996203],[-111.494586,42.000171],[-111.510754,42.061998],[-111.591301,42.093143],[-111.58239,42.135989],[-111.612375,42.164995],[-111.618563,42.205289],[-111.603723,42.244706],[-111.569283,42.272393],[-111.584215,42.319882],[-111.553811,42.343186],[-111.560709,42.366226],[-111.59264,42.395324],[-111.584957,42.414119],[-111.577832,42.441581],[-111.599867,42.478453],[-111.633553,42.509886],[-111.619271,42.533422],[-111.623628,42.573659],[-111.583206,42.596109],[-111.354803,42.596868],[-111.34142,42.592645],[-111.321895,42.564478],[-111.277528,42.557982],[-111.234101,42.600227],[-111.216949,42.573967],[-111.214941,42.54565],[-111.240591,42.492157],[-111.22015,42.475769],[-111.185549,42.472409],[-111.132889,42.483693],[-111.103255,42.480535],[-111.064435,42.490148],[-111.04678,42.503252],[-111.048697,41.996203]]]},"id":16007},
{"type":"Feature","properties":{"name":"Woodbury"},"geometry":{"type":"Polygon","coordinates":[[[-96.342882,42.282082],[-96.3687,42.298024],[-96.389781,42.32879],[-96.424175,42.349279],[-96.411761,42.380918],[-96.417628,42.414777],[-96.39789,42.441793],[-96.396074,42.467401],[-96.439395,42.489241],[-96.480243,42.51713],[-96.489338,42.564028],[-95.867852,42.564977],[-95.747922,42.56351],[-95.747402,42.474727],[-95.679621,42.47615],[-95.678321,42.20987],[-96.363512,42.214042],[-96.337708,42.229522],[-96.332658,42.260307],[-96.342882,42.282082]]]},"id":19193},
{"type":"Feature","properties":{"name":"Ida"},"geometry":{"type":"Polygon","coordinates":[[[-95.334007,42.211279],[-95.678321,42.20987],[-95.679621,42.47615],[-95.747402,42.474727],[-95.747922,42.56351],[-95.397312,42.563029],[-95.394289,42.476207],[-95.334603,42.477534],[-95.334007,42.211279]]]},"id":19093},
{"type":"Feature","properties":{"name":"Sac"},"geometry":{"type":"Polygon","coordinates":[[[-94.865299,42.207893],[-95.101122,42.208824],[-95.334007,42.211279],[-95.334603,42.477534],[-95.394289,42.476207],[-95.397312,42.563029],[-94.920491,42.558282],[-94.919515,42.47412],[-94.866611,42.474494],[-94.865299,42.207893]]]},"id":19161},
{"type":"Feature","properties":{"name":"Calhoun"},"geometry":{"type":"Polygon","coordinates":[[[-94.643223,42.207804],[-94.865299,42.207893],[-94.866611,42.474494],[-94.919515,42.47412],[-94.920491,42.558282],[-94.45378,42.561422],[-94.453703,42.473148],[-94.412625,42.473337],[-94.40823,42.208735],[-94.643223,42.207804]]]},"id":19025},
{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"Polygon","coordinates":[[[-93.471845,42.206746],[-93.70558,42.207093],[-93.939987,42.207902],[-93.935064,42.471407],[-93.976165,42.471818],[-93.977347,42.557759],[-93.499796,42.553311],[-93.497905,42.466498],[-93.47053,42.466426],[-93.471845,42.206746]]]},"id":19079},
{"type":"Feature","properties":{"name":"Hampshire"},"geometry":{"type":"Polygon","coordinates":[[[-72.211003,42.247785],[-72.242101,42.243669],[-72.259267,42.226182],[-72.276388,42.235498],[-72.330535,42.225755],[-72.354271,42.19153],[-72.390222,42.190168],[-72.401063,42.230279],[-72.601539,42.213513],[-72.615959,42.235927],[-72.599677,42.275283],[-72.608749,42.286734],[-72.63765,42.267508],[-72.655793,42.22681],[-72.688265,42.213512],[-72.685655,42.187592],[-72.77763,42.203937],[-72.77863,42.218028],[-72.792195,42.221335],[-72.791333,42.235411],[-72.807432,42.236014],[-72.809789,42.243303],[-72.851958,42.241411],[-72.867737,42.223833],[-72.907708,42.242803],[-72.881912,42.267114],[-72.883315,42.334366],[-72.895614,42.341286],[-72.952074,42.342209],[-72.995326,42.312111],[-73.025196,42.305523],[-73.054707,42.324821],[-73.06522,42.373515],[-73.060718,42.384841],[-73.00616,42.378986],[-72.970048,42.553655],[-72.877508,42.540616],[-72.87837,42.525629],[-72.861081,42.517298],[-72.862317,42.480044],[-72.757005,42.457721],[-72.758486,42.44456],[-72.695588,42.451213],[-72.698945,42.404446],[-72.488461,42.428979],[-72.480862,42.407076],[-72.377512,42.416731],[-72.352067,42.36325],[-72.351479,42.30962],[-72.325211,42.318371],[-72.305832,42.349929],[-72.284088,42.350555],[-72.269324,42.295376],[-72.220037,42.306522],[-72.211003,42.247785]]]},"id":25015},
{"type":"Feature","properties":{"name":"Hardin"},"geometry":{"type":"Polygon","coordinates":[[[-93.471845,42.206746],[-93.47053,42.466426],[-93.497905,42.466498],[-93.499796,42.553311],[-93.030664,42.551881],[-93.031664,42.461361],[-93.008631,42.461074],[-93.007663,42.207875],[-93.242529,42.207208],[-93.471845,42.206746]]]},"id":19083},
{"type":"Feature","properties":{"name":"Grundy"},"geometry":{"type":"Polygon","coordinates":[[[-92.778345,42.207517],[-93.007663,42.207875],[-93.008631,42.461074],[-93.031664,42.461361],[-93.030664,42.551881],[-92.560501,42.552881],[-92.560105,42.473319],[-92.542031,42.472385],[-92.544169,42.294135],[-92.779291,42.293404],[-92.778345,42.207517]]]},"id":19075},
{"type":"Feature","properties":{"name":"Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-96.727222,42.276567],[-96.719644,42.522409],[-96.629295,42.522694],[-96.605467,42.507236],[-96.584753,42.518287],[-96.547216,42.520499],[-96.494701,42.488459],[-96.439395,42.489241],[-96.396074,42.467401],[-96.39789,42.441793],[-96.417628,42.414777],[-96.411761,42.380918],[-96.424175,42.349279],[-96.389781,42.32879],[-96.3687,42.298024],[-96.342882,42.282082],[-96.727222,42.276567]]]},"id":31043},
{"type":"Feature","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-75.148281,41.855789],[-75.171284,41.86784],[-75.254515,41.868873],[-75.28369,41.947604],[-75.324066,41.961275],[-75.345657,41.992845],[-75.382813,41.998357],[-75.406007,42.015362],[-75.427249,42.057373],[-75.421384,42.194166],[-75.410351,42.321952],[-75.342569,42.314038],[-75.306115,42.322133],[-75.253462,42.361275],[-75.218792,42.366604],[-75.191707,42.380028],[-75.190189,42.363686],[-75.137765,42.384602],[-75.082434,42.420521],[-75.022251,42.426007],[-75.012004,42.447899],[-74.99827,42.443462],[-74.989084,42.453071],[-74.980974,42.451313],[-74.964555,42.477343],[-74.937882,42.481627],[-74.933991,42.46984],[-74.835057,42.515046],[-74.770877,42.505444],[-74.718148,42.519833],[-74.619057,42.43037],[-74.43964,42.356139],[-74.424061,42.346648],[-74.531534,42.1977],[-74.448371,42.1694],[-74.50699,42.143743],[-74.535433,42.141362],[-74.564921,42.115346],[-74.789009,42.021516],[-75.148281,41.855789]]]},"id":36025},
{"type":"Feature","properties":{"name":"Jo Daviess"},"geometry":{"type":"Polygon","coordinates":[[[-90.32373,42.197337],[-90.367858,42.210227],[-90.407302,42.242662],[-90.418112,42.263939],[-90.427809,42.340645],[-90.441725,42.360084],[-90.491171,42.388791],[-90.563712,42.421844],[-90.605955,42.460565],[-90.648474,42.475647],[-90.651899,42.494701],[-90.638456,42.509364],[-90.420103,42.508365],[-89.923691,42.504116],[-89.922448,42.197458],[-90.32373,42.197337]]]},"id":17085},
{"type":"Feature","properties":{"name":"Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-73.48423,42.047428],[-73.526857,42.048954],[-73.532245,41.98267],[-73.732178,42.006851],[-73.902524,42.079757],[-73.936529,42.07796],[-73.918538,42.131086],[-73.90179,42.163328],[-73.863977,42.189187],[-73.837859,42.240028],[-73.806814,42.260883],[-73.780674,42.29582],[-73.792789,42.390793],[-73.775225,42.445288],[-73.779528,42.460291],[-73.350824,42.504756],[-73.49884,42.077461],[-73.48423,42.047428]]]},"id":36021},
{"type":"Feature","properties":{"name":"Oneida"},"geometry":{"type":"Polygon","coordinates":[[[-112.989575,42.001147],[-112.995773,42.324306],[-112.769059,42.325295],[-112.767427,42.331604],[-112.644368,42.332989],[-112.643675,42.413471],[-112.49115,42.415997],[-112.488892,42.49871],[-112.414694,42.500206],[-112.385968,42.501465],[-112.333628,42.446366],[-112.317583,42.444425],[-112.30372,42.456204],[-112.288812,42.446569],[-112.283448,42.388147],[-112.312051,42.360521],[-112.319238,42.327578],[-112.272018,42.318583],[-112.249686,42.354617],[-112.180813,42.352984],[-112.177242,42.332832],[-112.156124,42.32386],[-112.15253,42.304165],[-112.11651,42.286434],[-112.083733,42.266999],[-112.064125,42.237142],[-112.068266,42.169981],[-112.103691,42.168596],[-112.100514,42.002301],[-112.147117,41.999054],[-112.989575,42.001147]]]},"id":16071},
{"type":"Feature","properties":{"name":"Greene"},"geometry":{"type":"Polygon","coordinates":[[[-73.779528,42.460291],[-73.775225,42.445288],[-73.792789,42.390793],[-73.780674,42.29582],[-73.806814,42.260883],[-73.837859,42.240028],[-73.863977,42.189187],[-73.90179,42.163328],[-73.918538,42.131086],[-73.997725,42.177442],[-74.01258,42.157461],[-74.040436,42.165628],[-74.074405,42.096572],[-74.294612,42.112612],[-74.448371,42.1694],[-74.531534,42.1977],[-74.424061,42.346648],[-74.43964,42.356139],[-74.370203,42.371347],[-74.340318,42.353709],[-74.269591,42.361143],[-74.243567,42.374368],[-74.250509,42.405255],[-73.779528,42.460291]]]},"id":36039},
{"type":"Feature","properties":{"name":"Suffolk"},"geometry":{"type":"Polygon","coordinates":[[[-71.189966,42.280581],[-71.1644,42.299113],[-71.159082,42.292632],[-71.127907,42.311492],[-71.09977,42.350596],[-71.117264,42.351881],[-71.152696,42.32749],[-71.17605,42.348451],[-71.136224,42.365762],[-71.116913,42.352152],[-71.066604,42.352389],[-71.083702,42.37414],[-71.073105,42.38981],[-71.052085,42.387514],[-71.02671,42.443307],[-71.01174,42.444326],[-71.006857,42.42785],[-70.960622,42.432394],[-71.034162,42.285629],[-71.044027,42.270065],[-71.098426,42.259475],[-71.118102,42.233555],[-71.136268,42.228958],[-71.189966,42.280581]]]},"id":25025},
{"type":"Feature","properties":{"name":"Carbon"},"geometry":{"type":"Polygon","coordinates":[[[-107.304051,41.000133],[-107.918671,41.003375],[-107.916124,41.406657],[-107.936365,41.40695],[-107.935954,41.662728],[-107.52453,41.663306],[-107.526399,41.700506],[-107.509835,41.70141],[-107.506511,42.090461],[-107.524479,42.090881],[-107.524313,42.259066],[-107.524184,42.440471],[-106.082281,42.434761],[-106.071906,41.399793],[-106.324189,41.398647],[-106.329126,41.001289],[-106.865439,40.998457],[-107.304051,41.000133]]]},"id":56007},
{"type":"Feature","properties":{"name":"Pierce"},"geometry":{"type":"Polygon","coordinates":[[[-97.835156,42.083983],[-97.835175,42.437218],[-97.484881,42.440047],[-97.36927,42.438695],[-97.367979,42.345423],[-97.365892,42.088005],[-97.835156,42.083983]]]},"id":31139},
{"type":"Feature","properties":{"name":"Box Butte"},"geometry":{"type":"Polygon","coordinates":[[[-103.361521,41.992111],[-103.403545,41.993312],[-103.404055,42.080069],[-103.446209,42.083979],[-103.439772,42.43122],[-102.772507,42.439008],[-102.75258,42.436929],[-102.745052,42.08582],[-102.706661,42.082552],[-102.70399,41.999458],[-103.361521,41.992111]]]},"id":31013},
{"type":"Feature","properties":{"name":"Antelope"},"geometry":{"type":"Polygon","coordinates":[[[-97.835802,41.918572],[-98.289739,41.912038],[-98.290603,42.081546],[-98.297275,42.434883],[-97.835175,42.437218],[-97.835156,42.083983],[-97.835802,41.918572]]]},"id":31003},
{"type":"Feature","properties":{"name":"Albany"},"geometry":{"type":"Polygon","coordinates":[[[-106.203471,41.000085],[-106.329126,41.001289],[-106.324189,41.398647],[-106.071906,41.399793],[-106.082281,42.434761],[-105.5558,42.431681],[-105.55522,42.405783],[-105.576309,42.404165],[-105.577553,42.376886],[-105.611688,42.376013],[-105.612009,42.309671],[-105.595857,42.308508],[-105.594346,42.296709],[-105.523535,42.292109],[-105.380287,42.292804],[-105.380272,42.323245],[-105.36293,42.324794],[-105.364646,42.380664],[-105.353476,42.381232],[-105.345571,42.421756],[-105.332532,42.422347],[-105.332044,42.429168],[-105.288547,42.429153],[-105.286114,42.096158],[-105.276211,42.095803],[-105.2811,41.654813],[-105.278798,40.996349],[-106.203471,41.000085]]]},"id":56001},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-111.494586,42.000171],[-112.100514,42.002301],[-112.103691,42.168596],[-112.068266,42.169981],[-112.064125,42.237142],[-112.083733,42.266999],[-112.11651,42.286434],[-111.981885,42.284932],[-111.980138,42.257566],[-111.88765,42.257589],[-111.884325,42.41261],[-111.869371,42.41293],[-111.723064,42.414343],[-111.720272,42.426515],[-111.705974,42.42639],[-111.703662,42.415827],[-111.584957,42.414119],[-111.59264,42.395324],[-111.560709,42.366226],[-111.553811,42.343186],[-111.584215,42.319882],[-111.569283,42.272393],[-111.603723,42.244706],[-111.618563,42.205289],[-111.612375,42.164995],[-111.58239,42.135989],[-111.591301,42.093143],[-111.510754,42.061998],[-111.494586,42.000171]]]},"id":16041},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-90.89891,42.035688],[-90.893584,42.295582],[-90.66591,42.291928],[-90.664962,42.383713],[-90.491171,42.388791],[-90.441725,42.360084],[-90.427809,42.340645],[-90.418112,42.263939],[-90.407302,42.242662],[-90.367858,42.210227],[-90.32373,42.197337],[-90.231063,42.159741],[-90.191702,42.12271],[-90.176214,42.120524],[-90.166777,42.103767],[-90.168226,42.061067],[-90.150663,42.033453],[-90.89891,42.035688]]]},"id":19097},
{"type":"Feature","properties":{"name":"Wayne"},"geometry":{"type":"Polygon","coordinates":[[[-96.823902,42.094086],[-97.022225,42.090653],[-97.365892,42.088005],[-97.367979,42.345423],[-97.019992,42.347063],[-97.01794,42.263305],[-96.825842,42.259243],[-96.823902,42.094086]]]},"id":31179},
{"type":"Feature","properties":{"name":"Hampden"},"geometry":{"type":"Polygon","coordinates":[[[-72.211003,42.247785],[-72.24587,42.216913],[-72.262143,42.185331],[-72.195003,42.147616],[-72.136637,42.154509],[-72.136347,42.026402],[-72.507572,42.030766],[-72.571226,42.030125],[-72.581907,42.021607],[-72.607825,42.022801],[-72.609527,42.030537],[-72.755894,42.033848],[-72.767575,42.002167],[-72.81768,41.997185],[-72.816451,42.033508],[-73.006096,42.036009],[-73.045632,42.03631],[-73.044198,42.050833],[-73.070214,42.092805],[-73.057533,42.115879],[-73.066986,42.149108],[-73.038459,42.153896],[-73.025626,42.141987],[-72.995326,42.312111],[-72.952074,42.342209],[-72.895614,42.341286],[-72.883315,42.334366],[-72.881912,42.267114],[-72.907708,42.242803],[-72.867737,42.223833],[-72.851958,42.241411],[-72.809789,42.243303],[-72.807432,42.236014],[-72.791333,42.235411],[-72.792195,42.221335],[-72.77863,42.218028],[-72.77763,42.203937],[-72.685655,42.187592],[-72.688265,42.213512],[-72.655793,42.22681],[-72.63765,42.267508],[-72.608749,42.286734],[-72.599677,42.275283],[-72.615959,42.235927],[-72.601539,42.213513],[-72.401063,42.230279],[-72.390222,42.190168],[-72.354271,42.19153],[-72.330535,42.225755],[-72.276388,42.235498],[-72.259267,42.226182],[-72.242101,42.243669],[-72.211003,42.247785]]]},"id":25013},
{"type":"Feature","properties":{"name":"Jones"},"geometry":{"type":"Polygon","coordinates":[[[-90.900873,41.948471],[-91.371033,41.944317],[-91.368021,42.29415],[-91.134262,42.297311],[-90.893584,42.295582],[-90.89891,42.035688],[-90.900873,41.948471]]]},"id":19105},
{"type":"Feature","properties":{"name":"Benton"},"geometry":{"type":"Polygon","coordinates":[[[-91.834689,41.856821],[-92.301485,41.860231],[-92.305927,42.294058],[-92.069631,42.295776],[-91.836998,42.295634],[-91.834689,41.856821]]]},"id":19011},
{"type":"Feature","properties":{"name":"Linn"},"geometry":{"type":"Polygon","coordinates":[[[-91.834689,41.856821],[-91.836998,42.295634],[-91.600027,42.295142],[-91.368021,42.29415],[-91.371033,41.944317],[-91.369788,41.85169],[-91.834689,41.856821]]]},"id":19113},
{"type":"Feature","properties":{"name":"Tama"},"geometry":{"type":"Polygon","coordinates":[[[-92.301485,41.860231],[-92.769596,41.862838],[-92.778345,42.207517],[-92.779291,42.293404],[-92.544169,42.294135],[-92.305927,42.294058],[-92.301485,41.860231]]]},"id":19171},
{"type":"Feature","properties":{"name":"Thurston"},"geometry":{"type":"Polygon","coordinates":[[[-96.265483,42.048897],[-96.30161,42.048654],[-96.305966,42.023354],[-96.548848,42.017893],[-96.549833,42.091154],[-96.823902,42.094086],[-96.825842,42.259243],[-96.729549,42.260737],[-96.727222,42.276567],[-96.342882,42.282082],[-96.332658,42.260307],[-96.337708,42.229522],[-96.363512,42.214042],[-96.352166,42.168185],[-96.285123,42.123453],[-96.265483,42.048897]]]},"id":31173},
{"type":"Feature","properties":{"name":"Sweetwater"},"geometry":{"type":"Polygon","coordinates":[[[-110.053393,41.582222],[-110.054588,42.266512],[-109.046543,42.262845],[-107.524313,42.259066],[-107.524479,42.090881],[-107.506511,42.090461],[-107.509835,41.70141],[-107.526399,41.700506],[-107.52453,41.663306],[-107.935954,41.662728],[-107.936365,41.40695],[-107.916124,41.406657],[-107.918671,41.003375],[-109.048315,40.998433],[-110.002165,40.997599],[-110.063186,40.997892],[-110.065966,41.407437],[-110.051378,41.409032],[-110.053393,41.582222]]]},"id":56037},
{"type":"Feature","properties":{"name":"Plymouth"},"geometry":{"type":"Polygon","coordinates":[[[-70.924533,41.787906],[-71.022314,41.77703],[-71.009755,41.797179],[-71.03166,41.818126],[-70.973744,41.860846],[-71.002661,41.93421],[-71.043831,41.953333],[-71.078174,42.091786],[-70.923866,42.1541],[-70.911195,42.216519],[-70.923204,42.234517],[-70.892671,42.265767],[-70.824661,42.260507],[-70.842194,42.248491],[-70.838371,42.237035],[-70.849251,42.22957],[-70.819495,42.202482],[-70.79151,42.218157],[-70.78739,42.234148],[-70.824661,42.260507],[-70.774595,42.24864],[-70.686037,42.153167],[-70.618703,41.96819],[-70.540339,41.930952],[-70.537705,41.805762],[-70.624598,41.761316],[-70.619761,41.735636],[-70.839431,41.626692],[-70.888247,41.758873],[-70.902598,41.754677],[-70.924533,41.787906]]]},"id":25023},
{"type":"Feature","properties":{"name":"Norfolk"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.152696,42.32749],[-71.117264,42.351881],[-71.09977,42.350596],[-71.127907,42.311492],[-71.159082,42.292632],[-71.1644,42.299113],[-71.180811,42.30765],[-71.152696,42.32749]]],[[[-71.078174,42.091786],[-71.355152,41.981434],[-71.382405,41.979263],[-71.378644,42.013713],[-71.49743,42.009253],[-71.498751,42.110594],[-71.477625,42.130178],[-71.476137,42.154226],[-71.436814,42.179811],[-71.399681,42.179071],[-71.393737,42.188947],[-71.343809,42.198839],[-71.349738,42.205774],[-71.332144,42.244497],[-71.308485,42.247191],[-71.327231,42.308023],[-71.238826,42.331171],[-71.223155,42.319471],[-71.212916,42.296076],[-71.189966,42.280581],[-71.136268,42.228958],[-71.118102,42.233555],[-71.098426,42.259475],[-71.044027,42.270065],[-71.034162,42.285629],[-70.923204,42.234517],[-70.911195,42.216519],[-70.923866,42.1541],[-71.078174,42.091786]]],[[[-70.824661,42.260507],[-70.78739,42.234148],[-70.79151,42.218157],[-70.819495,42.202482],[-70.849251,42.22957],[-70.838371,42.237035],[-70.842194,42.248491],[-70.824661,42.260507]]]]},"id":25021},
{"type":"Feature","properties":{"name":"Monona"},"geometry":{"type":"Polygon","coordinates":[[[-95.677178,41.861301],[-96.135624,41.862621],[-96.15997,41.904151],[-96.145871,41.924907],[-96.147328,41.966254],[-96.185218,41.980685],[-96.202843,41.996616],[-96.236093,42.001258],[-96.238725,42.028438],[-96.265483,42.048897],[-96.285123,42.123453],[-96.352166,42.168185],[-96.363512,42.214042],[-95.678321,42.20987],[-95.677178,41.861301]]]},"id":19133},
{"type":"Feature","properties":{"name":"Crawford"},"geometry":{"type":"Polygon","coordinates":[[[-95.677178,41.861301],[-95.678321,42.20987],[-95.334007,42.211279],[-95.101122,42.208824],[-95.097385,41.86141],[-95.560385,41.860477],[-95.677178,41.861301]]]},"id":19047},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-95.097385,41.86141],[-95.101122,42.208824],[-94.865299,42.207893],[-94.643223,42.207804],[-94.636897,41.861489],[-94.751594,41.860052],[-95.097385,41.86141]]]},"id":19027},
{"type":"Feature","properties":{"name":"Greene"},"geometry":{"type":"Polygon","coordinates":[[[-94.289282,41.858959],[-94.636897,41.861489],[-94.643223,42.207804],[-94.40823,42.208735],[-94.172548,42.208359],[-94.168275,41.857945],[-94.289282,41.858959]]]},"id":19073},
{"type":"Feature","properties":{"name":"Boone"},"geometry":{"type":"Polygon","coordinates":[[[-93.703331,41.861674],[-93.819829,41.860094],[-94.168275,41.857945],[-94.172548,42.208359],[-93.939987,42.207902],[-93.70558,42.207093],[-93.703331,41.861674]]]},"id":19015},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-92.769596,41.862838],[-93.232168,41.863452],[-93.242529,42.207208],[-93.007663,42.207875],[-92.778345,42.207517],[-92.769596,41.862838]]]},"id":19127},
{"type":"Feature","properties":{"name":"Story"},"geometry":{"type":"Polygon","coordinates":[[[-93.349963,41.86317],[-93.703331,41.861674],[-93.70558,42.207093],[-93.471845,42.206746],[-93.242529,42.207208],[-93.232168,41.863452],[-93.349963,41.86317]]]},"id":19169},
{"type":"Feature","properties":{"name":"Ulster"},"geometry":{"type":"Polygon","coordinates":[[[-74.37041,41.594332],[-74.395237,41.64192],[-74.576714,41.745194],[-74.455707,41.871908],[-74.789009,42.021516],[-74.564921,42.115346],[-74.535433,42.141362],[-74.50699,42.143743],[-74.448371,42.1694],[-74.294612,42.112612],[-74.074405,42.096572],[-74.040436,42.165628],[-74.01258,42.157461],[-73.997725,42.177442],[-73.918538,42.131086],[-73.936529,42.07796],[-73.960733,41.912209],[-73.941041,41.862256],[-73.949732,41.770544],[-73.94053,41.728773],[-73.955386,41.587595],[-74.051153,41.583052],[-74.08187,41.608912],[-74.130403,41.616587],[-74.129113,41.58663],[-74.192371,41.594721],[-74.253203,41.608233],[-74.256369,41.63592],[-74.344645,41.598032],[-74.37041,41.594332]]]},"id":36111},
{"type":"Feature","properties":{"name":"Cuming"},"geometry":{"type":"Polygon","coordinates":[[[-96.552185,41.743847],[-96.902747,41.743221],[-97.018426,41.745032],[-97.022225,42.090653],[-96.823902,42.094086],[-96.549833,42.091154],[-96.548848,42.017893],[-96.552185,41.743847]]]},"id":31039},
{"type":"Feature","properties":{"name":"Bristol"},"geometry":{"type":"Polygon","coordinates":[[[-71.198809,41.6785],[-71.228976,41.707694],[-71.266629,41.749743],[-71.319328,41.772196],[-71.339799,41.784426],[-71.345483,41.813161],[-71.334543,41.857904],[-71.342493,41.875783],[-71.333086,41.896031],[-71.383953,41.88844],[-71.382405,41.979263],[-71.355152,41.981434],[-71.078174,42.091786],[-71.043831,41.953333],[-71.002661,41.93421],[-70.973744,41.860846],[-71.03166,41.818126],[-71.009755,41.797179],[-71.022314,41.77703],[-70.924533,41.787906],[-70.902598,41.754677],[-70.888247,41.758873],[-70.839431,41.626692],[-70.892128,41.633913],[-71.001185,41.520124],[-71.117133,41.493062],[-71.141213,41.655273],[-71.198809,41.6785]]]},"id":25005},
{"type":"Feature","properties":{"name":"Stanton"},"geometry":{"type":"Polygon","coordinates":[[[-97.247205,41.740526],[-97.362862,41.742478],[-97.365892,42.088005],[-97.022225,42.090653],[-97.018426,41.745032],[-97.247205,41.740526]]]},"id":31167},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-97.829298,41.736636],[-97.835802,41.918572],[-97.835156,42.083983],[-97.365892,42.088005],[-97.362862,41.742478],[-97.829298,41.736636]]]},"id":31119},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-101.989521,41.735339],[-102.06397,41.736849],[-102.063634,42.001576],[-102.006839,42.004083],[-102.008044,42.085371],[-101.427493,42.083181],[-101.43093,41.738979],[-101.989521,41.735339]]]},"id":31075},
{"type":"Feature","properties":{"name":"Loup"},"geometry":{"type":"Polygon","coordinates":[[[-99.679969,41.737491],[-99.684023,42.079996],[-99.661729,42.081041],[-99.231892,42.083305],[-99.219562,42.08218],[-99.219685,41.737429],[-99.679969,41.737491]]]},"id":31115},
{"type":"Feature","properties":{"name":"Hooker"},"geometry":{"type":"Polygon","coordinates":[[[-101.40879,41.737152],[-101.43093,41.738979],[-101.427493,42.083181],[-100.845116,42.081999],[-100.839708,41.738669],[-101.40879,41.737152]]]},"id":31091},
{"type":"Feature","properties":{"name":"Garfield"},"geometry":{"type":"Polygon","coordinates":[[[-98.75387,41.736062],[-99.209866,41.736804],[-99.219685,41.737429],[-99.219562,42.08218],[-98.75573,42.081804],[-98.75387,41.736062]]]},"id":31071},
{"type":"Feature","properties":{"name":"Thomas"},"geometry":{"type":"Polygon","coordinates":[[[-100.70806,41.737926],[-100.839708,41.738669],[-100.845116,42.081999],[-100.266478,42.078686],[-100.262623,41.738505],[-100.70806,41.737926]]]},"id":31171},
{"type":"Feature","properties":{"name":"Wheeler"},"geometry":{"type":"Polygon","coordinates":[[[-98.75387,41.736062],[-98.75573,42.081804],[-98.290603,42.081546],[-98.289739,41.912038],[-98.287197,41.738887],[-98.75387,41.736062]]]},"id":31183},
{"type":"Feature","properties":{"name":"Blaine"},"geometry":{"type":"Polygon","coordinates":[[[-100.262623,41.738505],[-100.266478,42.078686],[-100.1638,42.080841],[-99.684023,42.079996],[-99.679969,41.737491],[-100.25095,41.737486],[-100.262623,41.738505]]]},"id":31009},
{"type":"Feature","properties":{"name":"Dutchess"},"geometry":{"type":"Polygon","coordinates":[[[-73.517147,41.665686],[-73.530392,41.522746],[-73.588637,41.526572],[-73.928476,41.4909],[-73.981205,41.439635],[-73.998974,41.455973],[-73.994678,41.529501],[-73.955386,41.587595],[-73.94053,41.728773],[-73.949732,41.770544],[-73.941041,41.862256],[-73.960733,41.912209],[-73.936529,42.07796],[-73.902524,42.079757],[-73.732178,42.006851],[-73.532245,41.98267],[-73.526857,42.048954],[-73.48423,42.047428],[-73.517147,41.665686]]]},"id":36027},
{"type":"Feature","properties":{"name":"Barnstable"},"geometry":{"type":"Polygon","coordinates":[[[-70.619761,41.735636],[-70.624598,41.761316],[-70.537705,41.805762],[-70.423512,41.743622],[-70.273834,41.721663],[-70.341127,41.711813],[-70.20526,41.712573],[-70.019215,41.781519],[-70.000448,41.85635],[-70.100497,42.002194],[-70.255148,42.060119],[-70.13509,42.072494],[-70.050471,42.026299],[-69.964171,41.904094],[-69.91778,41.767654],[-69.954423,41.671495],[-70.397617,41.612572],[-70.432919,41.569756],[-70.637139,41.539805],[-70.664888,41.556127],[-70.619761,41.735636]]]},"id":25001},
{"type":"Feature","properties":{"name":"Burt"},"geometry":{"type":"Polygon","coordinates":[[[-96.552185,41.743847],[-96.548848,42.017893],[-96.305966,42.023354],[-96.30161,42.048654],[-96.265483,42.048897],[-96.238725,42.028438],[-96.236093,42.001258],[-96.202843,41.996616],[-96.185218,41.980685],[-96.147328,41.966254],[-96.145871,41.924907],[-96.15997,41.904151],[-96.135624,41.862621],[-96.076417,41.791469],[-96.099321,41.752975],[-96.099771,41.731564],[-96.085557,41.704987],[-96.122202,41.694913],[-96.120264,41.684095],[-96.438702,41.685781],[-96.441464,41.741357],[-96.552185,41.743847]]]},"id":31021},
{"type":"Feature","properties":{"name":"Litchfield"},"geometry":{"type":"Polygon","coordinates":[[[-73.006096,42.036009],[-73.028649,41.969425],[-72.885958,41.97554],[-72.917408,41.898149],[-72.945806,41.896115],[-72.961279,41.850374],[-72.93691,41.832014],[-72.953932,41.806273],[-73.018105,41.797239],[-72.979713,41.642577],[-73.025361,41.629763],[-73.024987,41.612513],[-73.053301,41.607275],[-73.050387,41.595903],[-73.081783,41.589323],[-73.093075,41.570791],[-73.164466,41.554479],[-73.163024,41.520879],[-73.335508,41.50645],[-73.324742,41.477802],[-73.374861,41.493938],[-73.387565,41.514427],[-73.438539,41.504222],[-73.496425,41.641997],[-73.489009,41.647418],[-73.501781,41.666083],[-73.517147,41.665686],[-73.48423,42.047428],[-73.045632,42.03631],[-73.006096,42.036009]]]},"id":9005},
{"type":"Feature","properties":{"name":"Hartford"},"geometry":{"type":"Polygon","coordinates":[[[-72.410875,41.610023],[-72.425425,41.591133],[-72.466,41.588898],[-72.505322,41.645203],[-72.712735,41.62656],[-72.713727,41.606144],[-72.753837,41.595192],[-72.754699,41.581127],[-72.799554,41.57883],[-72.817819,41.551303],[-72.830965,41.57231],[-72.84759,41.569281],[-72.8473,41.549758],[-72.869983,41.550864],[-72.88509,41.565524],[-72.945891,41.562861],[-72.938535,41.643153],[-72.979713,41.642577],[-73.018105,41.797239],[-72.953932,41.806273],[-72.93691,41.832014],[-72.961279,41.850374],[-72.945806,41.896115],[-72.917408,41.898149],[-72.885958,41.97554],[-73.028649,41.969425],[-73.006096,42.036009],[-72.816451,42.033508],[-72.81768,41.997185],[-72.767575,42.002167],[-72.755894,42.033848],[-72.609527,42.030537],[-72.607825,42.022801],[-72.581907,42.021607],[-72.571226,42.030125],[-72.507572,42.030766],[-72.494655,41.942049],[-72.511364,41.939974],[-72.518665,41.857409],[-72.500842,41.85493],[-72.504863,41.810928],[-72.477809,41.808795],[-72.451205,41.674984],[-72.418062,41.645523],[-72.410875,41.610023]]]},"id":9003},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-90.900967,41.76819],[-90.900873,41.948471],[-90.89891,42.035688],[-90.150663,42.033453],[-90.142797,41.98399],[-90.154645,41.930802],[-90.195966,41.806167],[-90.255439,41.781769],[-90.305016,41.756497],[-90.326157,41.722768],[-90.390277,41.734601],[-90.417049,41.759381],[-90.510817,41.77457],[-90.545105,41.762493],[-90.662601,41.75876],[-90.715109,41.734666],[-90.736746,41.740815],[-90.772323,41.768619],[-90.900967,41.76819]]]},"id":19045},
{"type":"Feature","properties":{"name":"Tolland"},"geometry":{"type":"Polygon","coordinates":[[[-72.410875,41.610023],[-72.418062,41.645523],[-72.451205,41.674984],[-72.477809,41.808795],[-72.504863,41.810928],[-72.500842,41.85493],[-72.518665,41.857409],[-72.511364,41.939974],[-72.494655,41.942049],[-72.507572,42.030766],[-72.136347,42.026402],[-72.094972,42.025799],[-72.100503,41.958658],[-72.217128,41.959867],[-72.220828,41.838656],[-72.166674,41.836077],[-72.157473,41.764198],[-72.185511,41.750976],[-72.198985,41.72982],[-72.256863,41.727893],[-72.236988,41.710823],[-72.268674,41.698085],[-72.277112,41.680034],[-72.272077,41.659538],[-72.318435,41.648799],[-72.327239,41.640289],[-72.336746,41.602275],[-72.368707,41.600868],[-72.381219,41.591037],[-72.410875,41.610023]]]},"id":9013},
{"type":"Feature","properties":{"name":"Windham"},"geometry":{"type":"Polygon","coordinates":[[[-71.788249,41.721603],[-71.792605,41.641758],[-71.858273,41.644684],[-71.951415,41.632583],[-72.162013,41.661643],[-72.236988,41.710823],[-72.256863,41.727893],[-72.198985,41.72982],[-72.185511,41.750976],[-72.157473,41.764198],[-72.166674,41.836077],[-72.220828,41.838656],[-72.217128,41.959867],[-72.100503,41.958658],[-72.094972,42.025799],[-71.802341,42.017977],[-71.797832,42.004275],[-71.788249,41.721603]]]},"id":9015},
{"type":"Feature","properties":{"name":"Sullivan"},"geometry":{"type":"Polygon","coordinates":[[[-74.37041,41.594332],[-74.406521,41.574701],[-74.476043,41.507738],[-74.746365,41.498734],[-74.759328,41.450089],[-74.754827,41.430146],[-74.792799,41.429917],[-74.864067,41.447155],[-74.895279,41.444671],[-74.89856,41.461894],[-74.932564,41.484351],[-74.971788,41.483603],[-75.014887,41.539556],[-75.025087,41.565801],[-75.069865,41.604478],[-75.072452,41.61308],[-75.051325,41.637315],[-75.065401,41.714837],[-75.05697,41.726708],[-75.061319,41.77026],[-75.097155,41.779042],[-75.096827,41.797207],[-75.079843,41.814148],[-75.117777,41.836987],[-75.124751,41.849182],[-75.148281,41.855789],[-74.789009,42.021516],[-74.455707,41.871908],[-74.576714,41.745194],[-74.395237,41.64192],[-74.37041,41.594332]]]},"id":36105},
{"type":"Feature","properties":{"name":"Providence"},"geometry":{"type":"Polygon","coordinates":[[[-71.788249,41.721603],[-71.797832,42.004275],[-71.49743,42.009253],[-71.378644,42.013713],[-71.382405,41.979263],[-71.383953,41.88844],[-71.333086,41.896031],[-71.342493,41.875783],[-71.334543,41.857904],[-71.345483,41.813161],[-71.339799,41.784426],[-71.319328,41.772196],[-71.367387,41.74135],[-71.393581,41.761156],[-71.415829,41.760088],[-71.43839,41.749181],[-71.453863,41.729963],[-71.788249,41.721603]]]},"id":44007},
{"type":"Feature","properties":{"name":"Cache"},"geometry":{"type":"Polygon","coordinates":[[[-111.502783,41.417085],[-111.646382,41.416348],[-111.693389,41.42739],[-111.716155,41.385609],[-111.749223,41.369697],[-111.792933,41.391937],[-111.847141,41.396854],[-111.882077,41.422343],[-111.88297,41.443739],[-111.910322,41.45574],[-111.904096,41.46549],[-111.862302,41.474729],[-111.874181,41.497026],[-111.894285,41.499192],[-111.907256,41.531979],[-111.927451,41.550052],[-111.950699,41.551421],[-111.976212,41.538333],[-111.986207,41.544631],[-112.020419,41.668693],[-112.055409,41.722322],[-112.051839,41.746731],[-112.013043,41.772511],[-112.006375,41.796806],[-112.028456,41.815845],[-112.028754,41.84632],[-112.044921,41.853309],[-112.081964,41.905649],[-112.107135,41.916612],[-112.120655,41.935312],[-112.148123,41.984543],[-112.147117,41.999054],[-112.100514,42.002301],[-111.494586,42.000171],[-111.454988,41.937978],[-111.456064,41.916647],[-111.49245,41.901826],[-111.47819,41.871199],[-111.485011,41.847388],[-111.448602,41.823994],[-111.40853,41.715381],[-111.414351,41.681075],[-111.389058,41.650868],[-111.413808,41.610565],[-111.425053,41.538758],[-111.450651,41.518041],[-111.488913,41.461042],[-111.502783,41.417085]]]},"id":49005},
{"type":"Feature","properties":{"name":"Siskiyou"},"geometry":{"type":"Polygon","coordinates":[[[-121.444737,41.180801],[-122.48918,41.179704],[-122.515289,41.200852],[-122.516136,41.211724],[-122.499473,41.296079],[-122.477653,41.31474],[-122.506898,41.336216],[-122.52981,41.339321],[-122.543948,41.363254],[-122.5723,41.365207],[-122.585056,41.325099],[-122.637273,41.31917],[-122.648877,41.288203],[-122.708801,41.271902],[-122.726287,41.246115],[-122.765817,41.227972],[-122.789308,41.200997],[-122.819308,41.201451],[-122.840648,41.193203],[-122.875791,41.196593],[-122.919822,41.174551],[-122.954575,41.173387],[-122.951637,41.131246],[-122.961814,41.085309],[-122.915776,41.060633],[-122.89584,41.019282],[-122.903942,40.992083],[-122.918789,40.987306],[-122.96881,41.009061],[-123.02105,40.999329],[-123.060641,41.04837],[-123.116941,41.071138],[-123.1782,41.066361],[-123.222094,41.072414],[-123.293944,41.138456],[-123.324211,41.141961],[-123.346284,41.156326],[-123.370882,41.151008],[-123.40414,41.173899],[-123.439894,41.217126],[-123.435958,41.267807],[-123.450577,41.280262],[-123.444954,41.299194],[-123.468499,41.322112],[-123.469377,41.351637],[-123.489085,41.372472],[-123.648146,41.374309],[-123.633712,41.396895],[-123.634673,41.42005],[-123.607879,41.455103],[-123.610236,41.473635],[-123.636162,41.500963],[-123.64576,41.530945],[-123.678339,41.550186],[-123.680994,41.584628],[-123.709384,41.585421],[-123.701869,41.616301],[-123.673303,41.639635],[-123.675066,41.664571],[-123.662866,41.685231],[-123.663148,41.720711],[-123.680239,41.757602],[-123.671824,41.7858],[-123.693668,41.82062],[-123.657908,41.840686],[-123.639086,41.883078],[-123.599381,41.881477],[-123.587784,41.896179],[-123.566092,41.895466],[-123.550864,41.904438],[-123.52577,41.953499],[-123.526678,41.983043],[-123.513205,41.997833],[-123.222103,42.002192],[-122.284705,42.000765],[-121.441509,41.994335],[-121.442684,41.944744],[-121.451221,41.943085],[-121.454159,41.766162],[-121.443065,41.766093],[-121.444737,41.180801]]]},"id":6093},
{"type":"Feature","properties":{"name":"Garden"},"geometry":{"type":"Polygon","coordinates":[[[-102.050676,41.219475],[-102.606375,41.216782],[-102.606126,41.395593],[-102.628816,41.398118],[-102.631861,41.434857],[-102.638639,41.74031],[-102.658956,41.741488],[-102.679158,41.808508],[-102.674937,41.997913],[-102.063634,42.001576],[-102.06397,41.736849],[-101.989521,41.735339],[-101.982827,41.389475],[-102.051989,41.38738],[-102.050676,41.219475]]]},"id":31069},
{"type":"Feature","properties":{"name":"Box Elder"},"geometry":{"type":"Polygon","coordinates":[[[-112.495874,41.078317],[-112.837326,40.999083],[-114.038151,40.997687],[-114.039073,41.995391],[-112.989575,42.001147],[-112.147117,41.999054],[-112.148123,41.984543],[-112.120655,41.935312],[-112.107135,41.916612],[-112.081964,41.905649],[-112.044921,41.853309],[-112.028754,41.84632],[-112.028456,41.815845],[-112.006375,41.796806],[-112.013043,41.772511],[-112.051839,41.746731],[-112.055409,41.722322],[-112.020419,41.668693],[-111.986207,41.544631],[-111.976212,41.538333],[-111.950699,41.551421],[-111.927451,41.550052],[-111.907256,41.531979],[-111.894285,41.499192],[-111.874181,41.497026],[-111.862302,41.474729],[-111.904096,41.46549],[-111.910322,41.45574],[-111.88297,41.443739],[-111.882077,41.422343],[-111.910611,41.409389],[-111.952666,41.421508],[-111.969496,41.357637],[-112.021239,41.336486],[-112.221618,41.335034],[-112.495874,41.078317]]]},"id":49003},
{"type":"Feature","properties":{"name":"Rich"},"geometry":{"type":"Polygon","coordinates":[[[-111.051651,41.258425],[-111.078614,41.244944],[-111.101152,41.209613],[-111.138575,41.186332],[-111.167239,41.179919],[-111.215932,41.145308],[-111.228261,41.144049],[-111.239813,41.1523],[-111.203915,41.209772],[-111.216512,41.220346],[-111.247801,41.226758],[-111.262549,41.241059],[-111.263062,41.302456],[-111.319058,41.359966],[-111.337423,41.360324],[-111.370009,41.374492],[-111.413132,41.364108],[-111.459361,41.384299],[-111.483144,41.409422],[-111.502783,41.417085],[-111.488913,41.461042],[-111.450651,41.518041],[-111.425053,41.538758],[-111.413808,41.610565],[-111.389058,41.650868],[-111.414351,41.681075],[-111.40853,41.715381],[-111.448602,41.823994],[-111.485011,41.847388],[-111.47819,41.871199],[-111.49245,41.901826],[-111.456064,41.916647],[-111.454988,41.937978],[-111.494586,42.000171],[-111.048697,41.996203],[-111.051069,41.578592],[-111.051651,41.258425]]]},"id":49033},
{"type":"Feature","properties":{"name":"Scotts Bluff"},"geometry":{"type":"Polygon","coordinates":[[[-103.37151,41.696321],[-104.053615,41.698218],[-104.053513,41.999815],[-104.042191,41.994135],[-103.403545,41.993312],[-103.361521,41.992111],[-103.363613,41.746384],[-103.370335,41.744469],[-103.37151,41.696321]]]},"id":31157},
{"type":"Feature","properties":{"name":"Morrill"},"geometry":{"type":"Polygon","coordinates":[[[-102.674937,41.997913],[-102.679158,41.808508],[-102.658956,41.741488],[-102.638639,41.74031],[-102.631861,41.434857],[-103.3688,41.433044],[-103.37151,41.696321],[-103.370335,41.744469],[-103.363613,41.746384],[-103.361521,41.992111],[-102.70399,41.999458],[-102.674937,41.997913]]]},"id":31123},
{"type":"Feature","properties":{"name":"Wayne"},"geometry":{"type":"Polygon","coordinates":[[[-75.495922,41.239578],[-75.449565,41.257909],[-75.46602,41.641322],[-75.479732,41.996368],[-75.382813,41.998357],[-75.345657,41.992845],[-75.324066,41.961275],[-75.28369,41.947604],[-75.254515,41.868873],[-75.171284,41.86784],[-75.148281,41.855789],[-75.124751,41.849182],[-75.117777,41.836987],[-75.079843,41.814148],[-75.096827,41.797207],[-75.097155,41.779042],[-75.061319,41.77026],[-75.05697,41.726708],[-75.065401,41.714837],[-75.051325,41.637315],[-75.072452,41.61308],[-75.069865,41.604478],[-75.190713,41.454607],[-75.248851,41.41887],[-75.26566,41.371946],[-75.284841,41.365472],[-75.345237,41.371948],[-75.343803,41.338787],[-75.315559,41.322418],[-75.351731,41.259483],[-75.352311,41.240429],[-75.495922,41.239578]]]},"id":42127},
{"type":"Feature","properties":{"name":"Del Norte"},"geometry":{"type":"Polygon","coordinates":[[[-123.648146,41.374309],[-123.764795,41.375021],[-123.765254,41.462815],[-124.057955,41.458164],[-124.14421,41.727193],[-124.243099,41.776757],[-124.207501,41.848327],[-124.206444,41.997648],[-123.819146,41.992949],[-123.513205,41.997833],[-123.526678,41.983043],[-123.52577,41.953499],[-123.550864,41.904438],[-123.566092,41.895466],[-123.587784,41.896179],[-123.599381,41.881477],[-123.639086,41.883078],[-123.657908,41.840686],[-123.693668,41.82062],[-123.671824,41.7858],[-123.680239,41.757602],[-123.663148,41.720711],[-123.662866,41.685231],[-123.675066,41.664571],[-123.673303,41.639635],[-123.701869,41.616301],[-123.709384,41.585421],[-123.680994,41.584628],[-123.678339,41.550186],[-123.64576,41.530945],[-123.636162,41.500963],[-123.610236,41.473635],[-123.607879,41.455103],[-123.634673,41.42005],[-123.633712,41.396895],[-123.648146,41.374309]]]},"id":6015},
{"type":"Feature","properties":{"name":"Humboldt"},"geometry":{"type":"Polygon","coordinates":[[[-119.305165,40.953176],[-119.324018,40.952833],[-119.317604,41.240692],[-119.297469,41.241508],[-119.295843,41.416764],[-119.313643,41.417809],[-119.317869,41.862736],[-119.311109,41.863312],[-119.310942,41.989135],[-118.185317,41.996637],[-117.018864,41.994794],[-116.992313,41.994795],[-117.007029,40.99352],[-117.010626,40.642874],[-117.24323,40.64264],[-117.294248,40.52915],[-117.296089,40.679717],[-117.633679,40.681208],[-117.636419,40.852203],[-118.784141,40.852181],[-118.785432,40.95153],[-119.305165,40.953176]]]},"id":32013},
{"type":"Feature","properties":{"name":"Elko"},"geometry":{"type":"Polygon","coordinates":[[[-115.822196,40.126751],[-115.98998,40.127752],[-116.154872,40.679979],[-116.150521,40.993863],[-116.583952,40.994198],[-117.007029,40.99352],[-116.992313,41.994795],[-115.947545,41.994599],[-115.024863,41.996506],[-114.269472,41.995924],[-114.039073,41.995391],[-114.038151,40.997687],[-114.038108,40.111047],[-115.822196,40.126751]]]},"id":32007},
{"type":"Feature","properties":{"name":"Modoc"},"geometry":{"type":"Polygon","coordinates":[[[-121.326088,41.178967],[-121.444737,41.180801],[-121.443065,41.766093],[-121.454159,41.766162],[-121.451221,41.943085],[-121.442684,41.944744],[-121.441509,41.994335],[-120.871909,41.987672],[-119.993459,41.989205],[-119.996325,41.177566],[-121.326088,41.178967]]]},"id":6049},
{"type":"Feature","properties":{"name":"Washoe"},"geometry":{"type":"Polygon","coordinates":[[[-119.995304,39.311545],[-119.996011,39.443501],[-119.996165,39.720611],[-119.996325,41.177566],[-119.993459,41.989205],[-119.351692,41.988853],[-119.310942,41.989135],[-119.311109,41.863312],[-119.317869,41.862736],[-119.313643,41.417809],[-119.295843,41.416764],[-119.297469,41.241508],[-119.317604,41.240692],[-119.324018,40.952833],[-119.305165,40.953176],[-119.318514,40.003897],[-119.208593,40.003154],[-119.196622,39.945312],[-119.211484,39.921471],[-119.187747,39.870641],[-119.210048,39.835786],[-119.199206,39.814211],[-119.16984,39.793863],[-119.155579,39.717479],[-119.187806,39.675655],[-119.191369,39.635689],[-119.2203,39.624298],[-119.267017,39.628449],[-119.361464,39.593601],[-119.444949,39.590183],[-119.467243,39.56118],[-119.508474,39.562626],[-119.524946,39.572723],[-119.549155,39.548199],[-119.58223,39.538448],[-119.613557,39.513767],[-119.637713,39.50555],[-119.654948,39.503822],[-119.684002,39.515449],[-119.679714,39.480167],[-119.686634,39.457798],[-119.655359,39.433979],[-119.649552,39.405533],[-119.657326,39.374081],[-119.642897,39.353981],[-119.658324,39.336422],[-119.659331,39.315086],[-119.682524,39.282848],[-119.688162,39.258693],[-119.692755,39.238189],[-119.747452,39.238806],[-119.748314,39.230173],[-119.794481,39.225519],[-119.795175,39.212804],[-119.814799,39.213269],[-119.814486,39.205113],[-119.838237,39.205029],[-119.838213,39.189156],[-119.852488,39.189736],[-119.85406,39.169297],[-119.876041,39.169697],[-119.877444,39.160141],[-119.995527,39.158713],[-119.995304,39.311545]]]},"id":32031},
{"type":"Feature","properties":{"name":"Cedar"},"geometry":{"type":"Polygon","coordinates":[[[-91.367883,41.595621],[-91.369788,41.85169],[-91.371033,41.944317],[-90.900873,41.948471],[-90.900967,41.76819],[-90.901797,41.594293],[-91.367883,41.595621]]]},"id":19031},
{"type":"Feature","properties":{"name":"Boone"},"geometry":{"type":"Polygon","coordinates":[[[-97.826237,41.52485],[-97.882811,41.522825],[-97.884551,41.51288],[-98.029513,41.510069],[-98.030825,41.496027],[-98.089161,41.494868],[-98.090451,41.480822],[-98.283227,41.476718],[-98.27927,41.737327],[-98.287197,41.738887],[-98.289739,41.912038],[-97.835802,41.918572],[-97.829298,41.736636],[-97.826237,41.52485]]]},"id":31011},
{"type":"Feature","properties":{"name":"Jasper"},"geometry":{"type":"Polygon","coordinates":[[[-92.869779,41.510025],[-93.328166,41.509886],[-93.33063,41.600213],[-93.353381,41.600442],[-93.349963,41.86317],[-93.232168,41.863452],[-92.769596,41.862838],[-92.771585,41.602043],[-92.759904,41.601887],[-92.761301,41.512831],[-92.869779,41.510025]]]},"id":19099},
{"type":"Feature","properties":{"name":"Polk"},"geometry":{"type":"Polygon","coordinates":[[[-93.328166,41.509886],[-93.329722,41.493483],[-93.41142,41.495108],[-93.42938,41.509096],[-93.798319,41.509988],[-93.795787,41.599133],[-93.821605,41.599175],[-93.819829,41.860094],[-93.703331,41.861674],[-93.349963,41.86317],[-93.353381,41.600442],[-93.33063,41.600213],[-93.328166,41.509886]]]},"id":19153},
{"type":"Feature","properties":{"name":"Poweshiek"},"geometry":{"type":"Polygon","coordinates":[[[-92.299179,41.509669],[-92.416361,41.509785],[-92.761301,41.512831],[-92.759904,41.601887],[-92.771585,41.602043],[-92.769596,41.862838],[-92.301485,41.860231],[-92.299179,41.509669]]]},"id":19157},
{"type":"Feature","properties":{"name":"Harrison"},"geometry":{"type":"Polygon","coordinates":[[[-95.996689,41.511518],[-95.993965,41.528104],[-96.004593,41.536664],[-96.050172,41.524335],[-96.08584,41.537522],[-96.091936,41.563145],[-96.080835,41.576],[-96.111308,41.599006],[-96.099306,41.65468],[-96.120264,41.684095],[-96.122202,41.694913],[-96.085557,41.704987],[-96.099771,41.731564],[-96.099321,41.752975],[-96.076417,41.791469],[-96.135624,41.862621],[-95.677178,41.861301],[-95.560385,41.860477],[-95.562477,41.59971],[-95.502768,41.599332],[-95.506652,41.508189],[-95.996689,41.511518]]]},"id":19085},
{"type":"Feature","properties":{"name":"Guthrie"},"geometry":{"type":"Polygon","coordinates":[[[-94.250367,41.504043],[-94.709766,41.505747],[-94.711964,41.60158],[-94.754401,41.601667],[-94.751594,41.860052],[-94.636897,41.861489],[-94.289282,41.858959],[-94.291889,41.599757],[-94.250704,41.599925],[-94.250367,41.504043]]]},"id":19077},
{"type":"Feature","properties":{"name":"Shelby"},"geometry":{"type":"Polygon","coordinates":[[[-95.051224,41.505521],[-95.161259,41.506619],[-95.506652,41.508189],[-95.502768,41.599332],[-95.562477,41.59971],[-95.560385,41.860477],[-95.097385,41.86141],[-95.106311,41.603157],[-95.054025,41.603157],[-95.051224,41.505521]]]},"id":19165},
{"type":"Feature","properties":{"name":"Audubon"},"geometry":{"type":"Polygon","coordinates":[[[-95.051224,41.505521],[-95.054025,41.603157],[-95.106311,41.603157],[-95.097385,41.86141],[-94.751594,41.860052],[-94.754401,41.601667],[-94.711964,41.60158],[-94.709766,41.505747],[-95.051224,41.505521]]]},"id":19009},
{"type":"Feature","properties":{"name":"Iowa"},"geometry":{"type":"Polygon","coordinates":[[[-91.946418,41.508712],[-92.299179,41.509669],[-92.301485,41.860231],[-91.834689,41.856821],[-91.828678,41.509543],[-91.946418,41.508712]]]},"id":19095},
{"type":"Feature","properties":{"name":"Dallas"},"geometry":{"type":"Polygon","coordinates":[[[-94.250367,41.504043],[-94.250704,41.599925],[-94.291889,41.599757],[-94.289282,41.858959],[-94.168275,41.857945],[-93.819829,41.860094],[-93.821605,41.599175],[-93.795787,41.599133],[-93.798319,41.509988],[-93.90946,41.500764],[-94.250367,41.504043]]]},"id":19049},
{"type":"Feature","properties":{"name":"Johnson"},"geometry":{"type":"Polygon","coordinates":[[[-91.371313,41.424878],[-91.480332,41.424147],[-91.503,41.445581],[-91.498423,41.457003],[-91.512248,41.469045],[-91.505046,41.495943],[-91.518619,41.498906],[-91.527553,41.511025],[-91.828678,41.509543],[-91.834689,41.856821],[-91.369788,41.85169],[-91.367883,41.595621],[-91.371313,41.424878]]]},"id":19103},
{"type":"Feature","properties":{"name":"Rock Island"},"geometry":{"type":"Polygon","coordinates":[[[-90.437798,41.332086],[-91.073429,41.334925],[-91.055936,41.401407],[-91.027638,41.423536],[-91.000843,41.431113],[-90.949801,41.421264],[-90.844284,41.444653],[-90.780043,41.449853],[-90.708355,41.450094],[-90.65893,41.462351],[-90.600838,41.509619],[-90.540975,41.526003],[-90.455126,41.52758],[-90.435098,41.543613],[-90.423135,41.567305],[-90.348494,41.586882],[-90.339476,41.602831],[-90.341262,41.649122],[-90.326157,41.722768],[-90.305016,41.756497],[-90.255439,41.781769],[-90.23615,41.70334],[-90.217456,41.679838],[-90.182901,41.666406],[-90.159897,41.63838],[-90.152892,41.611631],[-90.179046,41.585169],[-90.185561,41.56153],[-90.203811,41.545089],[-90.254518,41.525284],[-90.366659,41.516407],[-90.387038,41.479046],[-90.43522,41.460548],[-90.437798,41.332086]]]},"id":17161},
{"type":"Feature","properties":{"name":"Scott"},"geometry":{"type":"Polygon","coordinates":[[[-90.780043,41.449853],[-90.778983,41.59376],[-90.901797,41.594293],[-90.900967,41.76819],[-90.772323,41.768619],[-90.736746,41.740815],[-90.715109,41.734666],[-90.662601,41.75876],[-90.545105,41.762493],[-90.510817,41.77457],[-90.417049,41.759381],[-90.390277,41.734601],[-90.326157,41.722768],[-90.341262,41.649122],[-90.339476,41.602831],[-90.348494,41.586882],[-90.423135,41.567305],[-90.435098,41.543613],[-90.455126,41.52758],[-90.540975,41.526003],[-90.600838,41.509619],[-90.65893,41.462351],[-90.708355,41.450094],[-90.780043,41.449853]]]},"id":19163},
{"type":"Feature","properties":{"name":"Bristol"},"geometry":{"type":"Polygon","coordinates":[[[-71.367387,41.74135],[-71.319328,41.772196],[-71.266629,41.749743],[-71.228976,41.707694],[-71.284002,41.679549],[-71.367387,41.74135]]]},"id":44001},
{"type":"Feature","properties":{"name":"Kent"},"geometry":{"type":"Polygon","coordinates":[[[-71.792605,41.641758],[-71.788249,41.721603],[-71.453863,41.729963],[-71.43839,41.749181],[-71.415829,41.760088],[-71.393581,41.761156],[-71.369013,41.703291],[-71.419247,41.652212],[-71.475837,41.632299],[-71.487945,41.603022],[-71.790194,41.601307],[-71.792605,41.641758]]]},"id":44003},
{"type":"Feature","properties":{"name":"Colfax"},"geometry":{"type":"Polygon","coordinates":[[[-97.251972,41.387639],[-97.247205,41.740526],[-97.018426,41.745032],[-96.902747,41.743221],[-96.903606,41.457846],[-96.946393,41.45074],[-97.002218,41.421815],[-97.051765,41.414003],[-97.107873,41.389136],[-97.168612,41.378032],[-97.251972,41.387639]]]},"id":31037},
{"type":"Feature","properties":{"name":"Dodge"},"geometry":{"type":"Polygon","coordinates":[[[-96.32841,41.39501],[-96.470151,41.393387],[-96.561759,41.433308],[-96.589065,41.437539],[-96.690499,41.434119],[-96.756082,41.452923],[-96.903606,41.457846],[-96.902747,41.743221],[-96.552185,41.743847],[-96.441464,41.741357],[-96.438702,41.685781],[-96.42995,41.500429],[-96.424777,41.487043],[-96.408893,41.485956],[-96.405978,41.475385],[-96.391963,41.47392],[-96.391315,41.457533],[-96.369319,41.456197],[-96.36896,41.444368],[-96.328485,41.444104],[-96.32841,41.39501]]]},"id":31053},
{"type":"Feature","properties":{"name":"Platte"},"geometry":{"type":"Polygon","coordinates":[[[-97.3666,41.386846],[-97.366813,41.393666],[-97.378883,41.396779],[-97.442362,41.36928],[-97.485889,41.357935],[-97.516477,41.358435],[-97.597717,41.329142],[-97.599318,41.388693],[-97.705209,41.390513],[-97.706612,41.523644],[-97.826237,41.52485],[-97.829298,41.736636],[-97.362862,41.742478],[-97.247205,41.740526],[-97.251972,41.387639],[-97.277913,41.373959],[-97.314009,41.385137],[-97.3666,41.386846]]]},"id":31141},
{"type":"Feature","properties":{"name":"Arthur"},"geometry":{"type":"Polygon","coordinates":[[[-101.982827,41.389475],[-101.989521,41.735339],[-101.43093,41.738979],[-101.40879,41.737152],[-101.403111,41.391711],[-101.982827,41.389475]]]},"id":31005},
{"type":"Feature","properties":{"name":"Greeley"},"geometry":{"type":"Polygon","coordinates":[[[-98.750037,41.394489],[-98.75387,41.736062],[-98.287197,41.738887],[-98.27927,41.737327],[-98.283227,41.476718],[-98.28463,41.392286],[-98.742713,41.393879],[-98.750037,41.394489]]]},"id":31077},
{"type":"Feature","properties":{"name":"McPherson"},"geometry":{"type":"Polygon","coordinates":[[[-101.403111,41.391711],[-101.40879,41.737152],[-100.839708,41.738669],[-100.70806,41.737926],[-100.707044,41.392929],[-101.262933,41.390168],[-101.403111,41.391711]]]},"id":31117},
{"type":"Feature","properties":{"name":"Logan"},"geometry":{"type":"Polygon","coordinates":[[[-100.707044,41.392929],[-100.70806,41.737926],[-100.262623,41.738505],[-100.25095,41.737486],[-100.25276,41.3934],[-100.707044,41.392929]]]},"id":31113},
{"type":"Feature","properties":{"name":"Custer"},"geometry":{"type":"Polygon","coordinates":[[[-99.4157,41.043481],[-100.21692,41.041803],[-100.233949,41.043333],[-100.22952,41.391813],[-100.25276,41.3934],[-100.25095,41.737486],[-99.679969,41.737491],[-99.219685,41.737429],[-99.209866,41.736804],[-99.204521,41.392537],[-99.19538,41.391011],[-99.199361,41.044302],[-99.4157,41.043481]]]},"id":31041},
{"type":"Feature","properties":{"name":"Valley"},"geometry":{"type":"Polygon","coordinates":[[[-99.19538,41.391011],[-99.204521,41.392537],[-99.209866,41.736804],[-98.75387,41.736062],[-98.750037,41.394489],[-99.19538,41.391011]]]},"id":31175},
{"type":"Feature","properties":{"name":"Will"},"geometry":{"type":"Polygon","coordinates":[[[-88.249022,41.205057],[-88.259753,41.463402],[-88.266823,41.724956],[-88.031762,41.728394],[-88.031235,41.69479],[-88.033507,41.644875],[-87.914256,41.646634],[-87.911797,41.565344],[-87.798779,41.568435],[-87.794466,41.468051],[-87.532686,41.46975],[-87.532485,41.301339],[-88.021193,41.295659],[-88.018719,41.209401],[-88.249022,41.205057]]]},"id":17197},
{"type":"Feature","properties":{"name":"Lucas"},"geometry":{"type":"Polygon","coordinates":[[[-83.763954,41.717042],[-83.482691,41.72513],[-83.153746,41.62609],[-83.407279,41.616565],[-83.571193,41.612107],[-83.605838,41.571798],[-83.691526,41.532214],[-83.714452,41.485618],[-83.815743,41.430178],[-83.870859,41.415163],[-83.872455,41.486957],[-83.86864,41.715993],[-83.763954,41.717042]]]},"id":39095},
{"type":"Feature","properties":{"name":"Kendall"},"geometry":{"type":"Polygon","coordinates":[[[-88.607042,41.720504],[-88.266823,41.724956],[-88.259753,41.463402],[-88.604244,41.457192],[-88.611175,41.636543],[-88.613855,41.716464],[-88.607042,41.720504]]]},"id":17093},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-87.532485,41.301339],[-87.532686,41.46975],[-87.529906,41.723626],[-87.463711,41.671625],[-87.419307,41.676366],[-87.441974,41.658113],[-87.394747,41.634191],[-87.233855,41.626189],[-87.230988,41.244604],[-87.281213,41.22143],[-87.342569,41.192521],[-87.404787,41.174039],[-87.490116,41.178585],[-87.531765,41.17379],[-87.532485,41.301339]]]},"id":18089},
{"type":"Feature","properties":{"name":"Porter"},"geometry":{"type":"Polygon","coordinates":[[[-87.233855,41.626189],[-86.94246,41.716503],[-86.935386,41.239931],[-86.959075,41.226785],[-86.988495,41.224187],[-87.0742,41.272598],[-87.134299,41.285068],[-87.194702,41.270282],[-87.230988,41.244604],[-87.233855,41.626189]]]},"id":18127},
{"type":"Feature","properties":{"name":"Fulton"},"geometry":{"type":"Polygon","coordinates":[[[-84.359208,41.708039],[-83.86864,41.715993],[-83.872455,41.486957],[-84.331867,41.48467],[-84.331974,41.511057],[-84.374576,41.512876],[-84.384393,41.70715],[-84.359208,41.708039]]]},"id":39051},
{"type":"Feature","properties":{"name":"Geauga"},"geometry":{"type":"Polygon","coordinates":[[[-81.000939,41.711916],[-81.00428,41.495599],[-81.00653,41.343848],[-81.377068,41.346334],[-81.375658,41.420864],[-81.361557,41.420841],[-81.361352,41.439468],[-81.375459,41.439495],[-81.379885,41.564282],[-81.285304,41.564381],[-81.286662,41.635209],[-81.0937,41.636664],[-81.092029,41.712125],[-81.000939,41.711916]]]},"id":39055},
{"type":"Feature","properties":{"name":"New London"},"geometry":{"type":"Polygon","coordinates":[[[-72.378412,41.358348],[-72.378199,41.375831],[-72.395671,41.388305],[-72.420688,41.392246],[-72.437741,41.423771],[-72.304466,41.438422],[-72.322334,41.537166],[-72.429874,41.529445],[-72.466,41.588898],[-72.425425,41.591133],[-72.410875,41.610023],[-72.381219,41.591037],[-72.368707,41.600868],[-72.336746,41.602275],[-72.327239,41.640289],[-72.318435,41.648799],[-72.272077,41.659538],[-72.277112,41.680034],[-72.268674,41.698085],[-72.236988,41.710823],[-72.162013,41.661643],[-71.951415,41.632583],[-71.858273,41.644684],[-71.792605,41.641758],[-71.790194,41.601307],[-71.802743,41.415829],[-71.845996,41.403855],[-71.83687,41.341961],[-71.847772,41.325348],[-71.866678,41.32277],[-72.281416,41.281145],[-72.326355,41.289641],[-72.378412,41.358348]]]},"id":9011},
{"type":"Feature","properties":{"name":"Williams"},"geometry":{"type":"Polygon","coordinates":[[[-84.791897,41.427899],[-84.79137,41.530492],[-84.790377,41.697495],[-84.384393,41.70715],[-84.374576,41.512876],[-84.331974,41.511057],[-84.331867,41.48467],[-84.334132,41.425851],[-84.791897,41.427899]]]},"id":39171},
{"type":"Feature","properties":{"name":"Banner"},"geometry":{"type":"Polygon","coordinates":[[[-103.375636,41.390729],[-104.054012,41.388086],[-104.055501,41.564222],[-104.053615,41.698218],[-103.37151,41.696321],[-103.3688,41.433044],[-103.368945,41.392186],[-103.375636,41.390729]]]},"id":31007},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-95.940056,41.394805],[-96.32841,41.39501],[-96.328485,41.444104],[-96.36896,41.444368],[-96.369319,41.456197],[-96.391315,41.457533],[-96.391963,41.47392],[-96.405978,41.475385],[-96.408893,41.485956],[-96.424777,41.487043],[-96.42995,41.500429],[-96.438702,41.685781],[-96.120264,41.684095],[-96.099306,41.65468],[-96.111308,41.599006],[-96.080835,41.576],[-96.091936,41.563145],[-96.08584,41.537522],[-96.050172,41.524335],[-96.004593,41.536664],[-95.993965,41.528104],[-95.996689,41.511518],[-96.013451,41.492994],[-96.006897,41.481955],[-95.953186,41.472387],[-95.935066,41.462381],[-95.940056,41.394805]]]},"id":31177},
{"type":"Feature","properties":{"name":"Newport"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.198809,41.6785],[-71.141213,41.655273],[-71.117133,41.493062],[-71.199937,41.463318],[-71.198809,41.6785]]],[[[-71.269169,41.621268],[-71.219447,41.635642],[-71.238673,41.47485],[-71.288007,41.483619],[-71.349525,41.445858],[-71.269169,41.621268]]]]},"id":44005},
{"type":"Feature","properties":{"name":"Fairfield"},"geometry":{"type":"Polygon","coordinates":[[[-73.104419,41.161039],[-73.653151,40.998392],[-73.653724,41.012617],[-73.725238,41.100354],[-73.478121,41.210755],[-73.55026,41.293621],[-73.544293,41.365298],[-73.530392,41.522746],[-73.517147,41.665686],[-73.501781,41.666083],[-73.489009,41.647418],[-73.496425,41.641997],[-73.438539,41.504222],[-73.387565,41.514427],[-73.374861,41.493938],[-73.324742,41.477802],[-73.298443,41.47221],[-73.292522,41.451302],[-73.276569,41.453938],[-73.266887,41.442082],[-73.243013,41.440579],[-73.231508,41.428258],[-73.208268,41.424939],[-73.178001,41.393887],[-73.153036,41.382375],[-73.119969,41.334954],[-73.076235,41.311048],[-73.096477,41.25855],[-73.115093,41.235536],[-73.107608,41.199636],[-73.115093,41.186979],[-73.104419,41.161039]]]},"id":9001},
{"type":"Feature","properties":{"name":"Laramie"},"geometry":{"type":"Polygon","coordinates":[[[-105.278798,40.996349],[-105.2811,41.654813],[-104.650637,41.656365],[-104.649797,41.565585],[-104.055501,41.564222],[-104.054012,41.388086],[-104.051706,41.003211],[-104.934493,40.994289],[-105.278798,40.996349]]]},"id":56021},
{"type":"Feature","properties":{"name":"Wyoming"},"geometry":{"type":"Polygon","coordinates":[[[-76.12018,41.653175],[-76.119165,41.642719],[-75.727776,41.641557],[-75.776081,41.576382],[-75.768771,41.574014],[-75.801328,41.52224],[-75.776578,41.506024],[-75.838652,41.422407],[-76.010319,41.385936],[-76.284631,41.38338],[-76.220503,41.543895],[-76.197629,41.652618],[-76.12018,41.653175]]]},"id":42131},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-71.866678,41.32277],[-71.847772,41.325348],[-71.83687,41.341961],[-71.845996,41.403855],[-71.802743,41.415829],[-71.790194,41.601307],[-71.487945,41.603022],[-71.475837,41.632299],[-71.419247,41.652212],[-71.427319,41.486689],[-71.489888,41.392085],[-71.722264,41.327264],[-71.866678,41.32277]]]},"id":44009},
{"type":"Feature","properties":{"name":"Middlesex"},"geometry":{"type":"Polygon","coordinates":[[[-72.754699,41.581127],[-72.753837,41.595192],[-72.713727,41.606144],[-72.712735,41.62656],[-72.505322,41.645203],[-72.466,41.588898],[-72.429874,41.529445],[-72.322334,41.537166],[-72.304466,41.438422],[-72.437741,41.423771],[-72.420688,41.392246],[-72.395671,41.388305],[-72.378199,41.375831],[-72.378412,41.358348],[-72.378153,41.278102],[-72.527245,41.263703],[-72.543923,41.265259],[-72.593973,41.324684],[-72.607447,41.329051],[-72.617823,41.392703],[-72.655598,41.434413],[-72.739699,41.424826],[-72.730162,41.478293],[-72.739928,41.480654],[-72.754699,41.581127]]]},"id":9007},
{"type":"Feature","properties":{"name":"New Haven"},"geometry":{"type":"Polygon","coordinates":[[[-73.104419,41.161039],[-73.115093,41.186979],[-73.107608,41.199636],[-73.115093,41.235536],[-73.096477,41.25855],[-73.076235,41.311048],[-73.119969,41.334954],[-73.153036,41.382375],[-73.178001,41.393887],[-73.208268,41.424939],[-73.231508,41.428258],[-73.243013,41.440579],[-73.266887,41.442082],[-73.276569,41.453938],[-73.292522,41.451302],[-73.298443,41.47221],[-73.324742,41.477802],[-73.335508,41.50645],[-73.163024,41.520879],[-73.164466,41.554479],[-73.093075,41.570791],[-73.081783,41.589323],[-73.050387,41.595903],[-73.053301,41.607275],[-73.024987,41.612513],[-73.025361,41.629763],[-72.979713,41.642577],[-72.938535,41.643153],[-72.945891,41.562861],[-72.88509,41.565524],[-72.869983,41.550864],[-72.8473,41.549758],[-72.84759,41.569281],[-72.830965,41.57231],[-72.817819,41.551303],[-72.799554,41.57883],[-72.754699,41.581127],[-72.739928,41.480654],[-72.730162,41.478293],[-72.739699,41.424826],[-72.655598,41.434413],[-72.617823,41.392703],[-72.607447,41.329051],[-72.593973,41.324684],[-72.543923,41.265259],[-72.527245,41.263703],[-72.906734,41.270063],[-73.104419,41.161039]]]},"id":9009},
{"type":"Feature","properties":{"name":"Lackawanna"},"geometry":{"type":"Polygon","coordinates":[[[-75.606681,41.165017],[-75.650528,41.191982],[-75.653725,41.256476],[-75.70344,41.296216],[-75.688829,41.341397],[-75.797429,41.379199],[-75.828161,41.400027],[-75.838652,41.422407],[-75.776578,41.506024],[-75.801328,41.52224],[-75.768771,41.574014],[-75.776081,41.576382],[-75.727776,41.641557],[-75.46602,41.641322],[-75.449565,41.257909],[-75.495922,41.239578],[-75.520886,41.220902],[-75.540884,41.226658],[-75.551405,41.221825],[-75.606681,41.165017]]]},"id":42069},
{"type":"Feature","properties":{"name":"La Salle"},"geometry":{"type":"Polygon","coordinates":[[[-89.168404,41.1082],[-89.170487,41.316033],[-89.171657,41.58972],[-89.171476,41.628756],[-88.941124,41.629776],[-88.611175,41.636543],[-88.604244,41.457192],[-88.593342,41.114031],[-88.937295,41.110564],[-88.936301,40.929533],[-89.057948,40.928199],[-89.05866,41.10696],[-89.168404,41.1082]]]},"id":17099},
{"type":"Feature","properties":{"name":"Orange"},"geometry":{"type":"Polygon","coordinates":[[[-74.700062,41.350573],[-74.705273,41.375059],[-74.740438,41.401636],[-74.740041,41.422059],[-74.754827,41.430146],[-74.759328,41.450089],[-74.746365,41.498734],[-74.476043,41.507738],[-74.406521,41.574701],[-74.37041,41.594332],[-74.344645,41.598032],[-74.256369,41.63592],[-74.253203,41.608233],[-74.192371,41.594721],[-74.129113,41.58663],[-74.130403,41.616587],[-74.08187,41.608912],[-74.051153,41.583052],[-73.955386,41.587595],[-73.994678,41.529501],[-73.998974,41.455973],[-73.981205,41.439635],[-73.954898,41.39696],[-73.980015,41.324809],[-74.24236,41.137627],[-74.371981,41.19585],[-74.700062,41.350573]]]},"id":36071},
{"type":"Feature","properties":{"name":"Elk"},"geometry":{"type":"Polygon","coordinates":[[[-78.711038,41.201412],[-78.708428,41.227302],[-78.742647,41.227882],[-78.741495,41.266922],[-78.958833,41.373555],[-78.974222,41.377465],[-78.986216,41.365979],[-79.033039,41.351808],[-79.053326,41.356107],[-79.091123,41.349741],[-79.093877,41.417337],[-79.069379,41.417642],[-79.068212,41.44761],[-78.979983,41.447755],[-78.980929,41.434579],[-78.959497,41.435281],[-78.959193,41.627304],[-78.489961,41.633138],[-78.48961,41.608625],[-78.425117,41.607748],[-78.423713,41.407124],[-78.255287,41.404145],[-78.258728,41.326058],[-78.240379,41.325714],[-78.243645,41.229942],[-78.645987,41.256011],[-78.647193,41.217426],[-78.711038,41.201412]]]},"id":42047},
{"type":"Feature","properties":{"name":"Cuyahoga"},"geometry":{"type":"Polygon","coordinates":[[[-81.377068,41.346334],[-81.585362,41.348035],[-81.58617,41.330293],[-81.54834,41.279261],[-81.556496,41.272188],[-81.675271,41.273816],[-81.870501,41.275013],[-81.868786,41.345941],[-81.967575,41.348888],[-81.961908,41.501919],[-81.738503,41.491155],[-81.478263,41.631716],[-81.476434,41.566327],[-81.379885,41.564282],[-81.375459,41.439495],[-81.361352,41.439468],[-81.361557,41.420841],[-81.375658,41.420864],[-81.377068,41.346334]]]},"id":39035},
{"type":"Feature","properties":{"name":"Venango"},"geometry":{"type":"Polygon","coordinates":[[[-80.003983,41.172629],[-80.002322,41.487717],[-80.00294,41.504959],[-79.984003,41.507145],[-79.98514,41.522106],[-79.967378,41.5229],[-79.969484,41.530579],[-79.94922,41.530061],[-79.950936,41.544103],[-79.931924,41.544466],[-79.93232,41.555811],[-79.916382,41.556566],[-79.916748,41.567],[-79.899566,41.567324],[-79.899437,41.581404],[-79.850798,41.595924],[-79.850562,41.607281],[-79.836462,41.607994],[-79.835218,41.626179],[-79.775586,41.624978],[-79.77535,41.617719],[-79.621172,41.618086],[-79.620798,41.626265],[-79.51828,41.628826],[-79.515257,41.459527],[-79.526954,41.461156],[-79.527526,41.43845],[-79.483389,41.437779],[-79.483808,41.38738],[-79.482313,41.334298],[-79.548438,41.33598],[-79.548522,41.317818],[-79.610451,41.322716],[-79.610405,41.280506],[-79.6306,41.281074],[-79.63205,41.268341],[-79.644905,41.269035],[-79.644425,41.253155],[-79.657303,41.254753],[-79.657219,41.212093],[-79.673928,41.199097],[-79.674629,41.182293],[-79.691773,41.183815],[-79.697594,41.174637],[-80.003983,41.172629]]]},"id":42121},
{"type":"Feature","properties":{"name":"Forest"},"geometry":{"type":"Polygon","coordinates":[[[-79.091123,41.349741],[-79.11643,41.332632],[-79.142775,41.334566],[-79.160979,41.327978],[-79.174262,41.346415],[-79.18035,41.319552],[-79.19548,41.338415],[-79.212288,41.32503],[-79.21296,41.428061],[-79.409184,41.435274],[-79.407879,41.387178],[-79.483808,41.38738],[-79.483389,41.437779],[-79.527526,41.43845],[-79.526954,41.461156],[-79.515257,41.459527],[-79.51828,41.628826],[-78.959193,41.627304],[-78.959497,41.435281],[-78.980929,41.434579],[-78.979983,41.447755],[-79.068212,41.44761],[-79.069379,41.417642],[-79.093877,41.417337],[-79.091123,41.349741]]]},"id":42053},
{"type":"Feature","properties":{"name":"Ottawa"},"geometry":{"type":"Polygon","coordinates":[[[-83.408963,41.497789],[-83.407279,41.616565],[-83.153746,41.62609],[-83.003433,41.538194],[-82.795831,41.537648],[-82.784707,41.507417],[-83.070398,41.45611],[-83.334139,41.454836],[-83.335765,41.496595],[-83.408963,41.497789]]]},"id":39123},
{"type":"Feature","properties":{"name":"Cameron"},"geometry":{"type":"Polygon","coordinates":[[[-78.425117,41.607748],[-78.422233,41.62184],[-78.209708,41.620467],[-78.051345,41.477352],[-77.997387,41.47485],[-77.99538,41.364112],[-78.099397,41.217991],[-78.243645,41.229942],[-78.240379,41.325714],[-78.258728,41.326058],[-78.255287,41.404145],[-78.423713,41.407124],[-78.425117,41.607748]]]},"id":42023},
{"type":"Feature","properties":{"name":"Wood"},"geometry":{"type":"Polygon","coordinates":[[[-83.416529,41.164604],[-83.870782,41.163652],[-83.870859,41.415163],[-83.815743,41.430178],[-83.714452,41.485618],[-83.691526,41.532214],[-83.605838,41.571798],[-83.571193,41.612107],[-83.407279,41.616565],[-83.408963,41.497789],[-83.415026,41.248783],[-83.416529,41.164604]]]},"id":39173},
{"type":"Feature","properties":{"name":"Pike"},"geometry":{"type":"Polygon","coordinates":[[[-74.700062,41.350573],[-74.791663,41.311965],[-74.794143,41.295215],[-74.825196,41.282706],[-74.866411,41.226817],[-74.862887,41.206771],[-74.914768,41.141106],[-74.949994,41.111855],[-74.984595,41.099381],[-75.031632,41.079872],[-75.087938,41.144945],[-75.163365,41.152242],[-75.132441,41.255619],[-75.352311,41.240429],[-75.351731,41.259483],[-75.315559,41.322418],[-75.343803,41.338787],[-75.345237,41.371948],[-75.284841,41.365472],[-75.26566,41.371946],[-75.248851,41.41887],[-75.190713,41.454607],[-75.069865,41.604478],[-75.025087,41.565801],[-75.014887,41.539556],[-74.971788,41.483603],[-74.932564,41.484351],[-74.89856,41.461894],[-74.895279,41.444671],[-74.864067,41.447155],[-74.792799,41.429917],[-74.754827,41.430146],[-74.740041,41.422059],[-74.740438,41.401636],[-74.705273,41.375059],[-74.700062,41.350573]]]},"id":42103},
{"type":"Feature","properties":{"name":"Lycoming"},"geometry":{"type":"Polygon","coordinates":[[[-76.880794,41.599612],[-76.819467,41.592494],[-76.746551,41.406896],[-76.61365,41.311646],[-76.536834,41.294305],[-76.539344,41.289785],[-76.446582,41.27862],[-76.598475,41.159073],[-76.649175,41.15488],[-76.682143,41.153282],[-76.738099,41.169959],[-76.777087,41.176539],[-76.882819,41.159849],[-76.898238,41.140409],[-76.961618,41.148858],[-76.974267,41.088114],[-77.079135,41.084418],[-77.145015,41.073727],[-77.174267,41.07471],[-77.28791,41.181572],[-77.301933,41.18613],[-77.301277,41.203376],[-77.322022,41.207034],[-77.321999,41.216113],[-77.374499,41.227065],[-77.410488,41.262941],[-77.426373,41.266126],[-77.45629,41.306527],[-77.474021,41.316064],[-77.492973,41.35146],[-77.541314,41.364162],[-77.592197,41.432212],[-77.591594,41.442649],[-77.603847,41.443095],[-77.605129,41.477588],[-77.606457,41.544311],[-76.962837,41.550506],[-76.880794,41.599612]]]},"id":42081},
{"type":"Feature","properties":{"name":"Muscatine"},"geometry":{"type":"Polygon","coordinates":[[[-91.073429,41.334925],[-91.371449,41.33772],[-91.371313,41.424878],[-91.367883,41.595621],[-90.901797,41.594293],[-90.778983,41.59376],[-90.780043,41.449853],[-90.844284,41.444653],[-90.949801,41.421264],[-91.000843,41.431113],[-91.027638,41.423536],[-91.055936,41.401407],[-91.073429,41.334925]]]},"id":19139},
{"type":"Feature","properties":{"name":"Sullivan"},"geometry":{"type":"Polygon","coordinates":[[[-76.446582,41.27862],[-76.539344,41.289785],[-76.536834,41.294305],[-76.61365,41.311646],[-76.746551,41.406896],[-76.819467,41.592494],[-76.220503,41.543895],[-76.284631,41.38338],[-76.315242,41.310597],[-76.404534,41.310033],[-76.446582,41.27862]]]},"id":42113},
{"type":"Feature","properties":{"name":"Bureau"},"geometry":{"type":"Polygon","coordinates":[[[-89.862929,41.235621],[-89.86841,41.584166],[-89.636995,41.587795],[-89.171657,41.58972],[-89.170487,41.316033],[-89.270137,41.323057],[-89.345426,41.295492],[-89.362661,41.235156],[-89.471383,41.233409],[-89.47142,41.151736],[-89.645292,41.14984],[-89.646086,41.237414],[-89.862929,41.235621]]]},"id":17011},
{"type":"Feature","properties":{"name":"Henry"},"geometry":{"type":"Polygon","coordinates":[[[-90.441552,41.155077],[-90.437798,41.332086],[-90.43522,41.460548],[-90.387038,41.479046],[-90.366659,41.516407],[-90.254518,41.525284],[-90.203811,41.545089],[-90.185561,41.56153],[-90.179046,41.585169],[-89.86841,41.584166],[-89.862929,41.235621],[-89.875137,41.234679],[-89.873474,41.151191],[-89.990621,41.151248],[-90.441552,41.155077]]]},"id":17073},
{"type":"Feature","properties":{"name":"Uinta"},"geometry":{"type":"Polygon","coordinates":[[[-110.053393,41.582222],[-110.051378,41.409032],[-110.065966,41.407437],[-110.063186,40.997892],[-111.051022,40.996584],[-111.051651,41.258425],[-111.051069,41.578592],[-110.053393,41.582222]]]},"id":56041},
{"type":"Feature","properties":{"name":"Noble"},"geometry":{"type":"Polygon","coordinates":[[[-85.658456,41.297867],[-85.661822,41.449676],[-85.663272,41.535572],[-85.197147,41.537148],[-85.195797,41.278602],[-85.313384,41.276598],[-85.545835,41.276723],[-85.548231,41.299508],[-85.658456,41.297867]]]},"id":18113},
{"type":"Feature","properties":{"name":"DeKalb"},"geometry":{"type":"Polygon","coordinates":[[[-85.195797,41.278602],[-85.197147,41.537148],[-84.79137,41.530492],[-84.791897,41.427899],[-84.790976,41.283818],[-85.195797,41.278602]]]},"id":18033},
{"type":"Feature","properties":{"name":"Putnam"},"geometry":{"type":"Polygon","coordinates":[[[-73.544293,41.365298],[-73.980015,41.324809],[-73.954898,41.39696],[-73.981205,41.439635],[-73.928476,41.4909],[-73.588637,41.526572],[-73.530392,41.522746],[-73.544293,41.365298]]]},"id":36079},
{"type":"Feature","properties":{"name":"Nance"},"geometry":{"type":"Polygon","coordinates":[[[-97.705209,41.390513],[-97.706088,41.30606],[-97.897269,41.300685],[-97.898528,41.288005],[-98.053843,41.289104],[-98.056185,41.278724],[-98.097812,41.278022],[-98.099773,41.262633],[-98.270323,41.263422],[-98.270012,41.390555],[-98.28463,41.392286],[-98.283227,41.476718],[-98.090451,41.480822],[-98.089161,41.494868],[-98.030825,41.496027],[-98.029513,41.510069],[-97.884551,41.51288],[-97.882811,41.522825],[-97.826237,41.52485],[-97.706612,41.523644],[-97.705209,41.390513]]]},"id":31125},
{"type":"Feature","properties":{"name":"Lorain"},"geometry":{"type":"Polygon","coordinates":[[[-82.165801,41.05879],[-82.330055,41.060849],[-82.336693,41.282765],[-82.341383,41.431501],[-82.015606,41.51531],[-81.961908,41.501919],[-81.967575,41.348888],[-81.868786,41.345941],[-81.870501,41.275013],[-81.967017,41.272586],[-81.96714,41.197175],[-82.070433,41.197155],[-82.06958,41.136769],[-82.164771,41.135594],[-82.165801,41.05879]]]},"id":39093},
{"type":"Feature","properties":{"name":"Mahaska"},"geometry":{"type":"Polygon","coordinates":[[[-92.643663,41.159787],[-92.875099,41.160687],[-92.869779,41.510025],[-92.761301,41.512831],[-92.416361,41.509785],[-92.415324,41.159303],[-92.643663,41.159787]]]},"id":19123},
{"type":"Feature","properties":{"name":"Pottawattamie"},"geometry":{"type":"Polygon","coordinates":[[[-95.394151,41.163298],[-95.876685,41.164202],[-95.859801,41.166865],[-95.859198,41.180537],[-95.9161,41.194064],[-95.92225,41.207854],[-95.910981,41.225245],[-95.930231,41.302057],[-95.911202,41.308469],[-95.897591,41.286863],[-95.889107,41.301389],[-95.942895,41.340077],[-95.940056,41.394805],[-95.935066,41.462381],[-95.953186,41.472387],[-96.006897,41.481955],[-96.013451,41.492994],[-95.996689,41.511518],[-95.506652,41.508189],[-95.161259,41.506619],[-95.164142,41.161433],[-95.394151,41.163298]]]},"id":19155},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-91.715263,41.16111],[-91.945387,41.16145],[-91.946418,41.508712],[-91.828678,41.509543],[-91.527553,41.511025],[-91.518619,41.498906],[-91.505046,41.495943],[-91.512248,41.469045],[-91.498423,41.457003],[-91.503,41.445581],[-91.480332,41.424147],[-91.485144,41.160357],[-91.715263,41.16111]]]},"id":19183},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-93.100416,41.160888],[-93.33305,41.160474],[-93.329722,41.493483],[-93.328166,41.509886],[-92.869779,41.510025],[-92.875099,41.160687],[-93.100416,41.160888]]]},"id":19125},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-94.019568,41.160728],[-94.248097,41.161523],[-94.250367,41.504043],[-93.90946,41.500764],[-93.798319,41.509988],[-93.799766,41.162416],[-94.019568,41.160728]]]},"id":19121},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-93.33305,41.160474],[-93.563288,41.160622],[-93.799766,41.162416],[-93.798319,41.509988],[-93.42938,41.509096],[-93.41142,41.495108],[-93.329722,41.493483],[-93.33305,41.160474]]]},"id":19181},
{"type":"Feature","properties":{"name":"Keokuk"},"geometry":{"type":"Polygon","coordinates":[[[-91.945387,41.16145],[-92.18591,41.162063],[-92.415324,41.159303],[-92.416361,41.509785],[-92.299179,41.509669],[-91.946418,41.508712],[-91.945387,41.16145]]]},"id":19107},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-94.935611,41.162274],[-95.164142,41.161433],[-95.161259,41.506619],[-95.051224,41.505521],[-94.709766,41.505747],[-94.70649,41.163187],[-94.935611,41.162274]]]},"id":19029},
{"type":"Feature","properties":{"name":"Adair"},"geometry":{"type":"Polygon","coordinates":[[[-94.480833,41.160831],[-94.70649,41.163187],[-94.709766,41.505747],[-94.250367,41.504043],[-94.248097,41.161523],[-94.480833,41.160831]]]},"id":19001},
{"type":"Feature","properties":{"name":"Sandusky"},"geometry":{"type":"Polygon","coordinates":[[[-83.415026,41.248783],[-83.408963,41.497789],[-83.335765,41.496595],[-83.334139,41.454836],[-83.070398,41.45611],[-82.908932,41.429469],[-82.842814,41.426707],[-82.833894,41.284809],[-82.835252,41.254303],[-83.415026,41.248783]]]},"id":39143},
{"type":"Feature","properties":{"name":"Trumbull"},"geometry":{"type":"Polygon","coordinates":[[[-80.999654,41.131527],[-81.00653,41.343848],[-81.00428,41.495599],[-80.523926,41.495102],[-80.519996,41.489289],[-80.522933,41.129628],[-80.999654,41.131527]]]},"id":39155},
{"type":"Feature","properties":{"name":"Mercer"},"geometry":{"type":"Polygon","coordinates":[[[-80.105143,41.068486],[-80.152584,41.114257],[-80.269286,41.11904],[-80.266623,41.129084],[-80.522933,41.129628],[-80.519996,41.489289],[-80.452993,41.485855],[-80.451406,41.491795],[-80.425648,41.491932],[-80.412426,41.483601],[-80.128316,41.478844],[-80.128621,41.487007],[-80.002322,41.487717],[-80.003983,41.172629],[-80.105143,41.068486]]]},"id":42085},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-86.067955,41.444837],[-86.065793,41.175039],[-86.084699,41.175546],[-86.473122,41.174438],[-86.475697,41.442385],[-86.47379,41.486842],[-86.068299,41.487994],[-86.067955,41.444837]]]},"id":18099},
{"type":"Feature","properties":{"name":"Henry"},"geometry":{"type":"Polygon","coordinates":[[[-83.870782,41.163652],[-84.220969,41.160693],[-84.223261,41.422162],[-84.334132,41.425851],[-84.331867,41.48467],[-83.872455,41.486957],[-83.870859,41.415163],[-83.870782,41.163652]]]},"id":39069},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-77.152484,41.041531],[-77.343885,40.987008],[-77.521619,40.963956],[-77.586217,41.044685],[-77.562473,41.060578],[-77.588681,41.064194],[-77.667989,41.105404],[-77.747254,41.106634],[-77.773619,41.144236],[-77.788833,41.135584],[-77.789617,41.178234],[-77.898241,41.174764],[-77.904204,41.257789],[-77.920571,41.236407],[-77.944323,41.224527],[-77.946681,41.210905],[-77.958926,41.21676],[-77.974072,41.198098],[-77.972714,41.177685],[-77.982405,41.166756],[-77.999457,41.161705],[-78.01094,41.146228],[-78.04332,41.1529],[-78.099397,41.217991],[-77.99538,41.364112],[-77.997387,41.47485],[-77.605129,41.477588],[-77.603847,41.443095],[-77.591594,41.442649],[-77.592197,41.432212],[-77.541314,41.364162],[-77.492973,41.35146],[-77.474021,41.316064],[-77.45629,41.306527],[-77.426373,41.266126],[-77.410488,41.262941],[-77.374499,41.227065],[-77.321999,41.216113],[-77.322022,41.207034],[-77.301277,41.203376],[-77.301933,41.18613],[-77.28791,41.181572],[-77.174267,41.07471],[-77.145015,41.073727],[-77.143932,41.046044],[-77.152484,41.041531]]]},"id":42035},
{"type":"Feature","properties":{"name":"Dukes"},"geometry":{"type":"Polygon","coordinates":[[[-70.604331,41.429663],[-70.567695,41.464567],[-70.552832,41.417389],[-70.575857,41.410286],[-70.515157,41.39866],[-70.486141,41.341561],[-70.738677,41.334155],[-70.769713,41.298164],[-70.84392,41.348599],[-70.782524,41.352518],[-70.770927,41.32498],[-70.75177,41.382169],[-70.667488,41.454937],[-70.605842,41.474663],[-70.604331,41.429663]]]},"id":25007},
{"type":"Feature","properties":{"name":"Grundy"},"geometry":{"type":"Polygon","coordinates":[[[-88.256061,41.11709],[-88.593342,41.114031],[-88.604244,41.457192],[-88.259753,41.463402],[-88.249022,41.205057],[-88.245692,41.117441],[-88.256061,41.11709]]]},"id":17063},
{"type":"Feature","properties":{"name":"Humboldt"},"geometry":{"type":"Polygon","coordinates":[[[-123.53674,39.997892],[-124.007639,39.998581],[-124.09456,40.100378],[-124.345306,40.25243],[-124.336107,40.327555],[-124.392638,40.435237],[-124.109446,40.978211],[-124.149703,41.128832],[-124.071602,41.313833],[-124.057955,41.458164],[-123.765254,41.462815],[-123.764795,41.375021],[-123.648146,41.374309],[-123.489085,41.372472],[-123.469377,41.351637],[-123.468499,41.322112],[-123.444954,41.299194],[-123.450577,41.280262],[-123.435958,41.267807],[-123.439894,41.217126],[-123.40414,41.173899],[-123.415477,41.150592],[-123.420084,41.100338],[-123.450411,41.077888],[-123.416275,41.045049],[-123.400359,41.010839],[-123.437818,40.959837],[-123.439206,40.94158],[-123.482885,40.912535],[-123.546013,40.936132],[-123.600161,40.92833],[-123.603167,40.921349],[-123.587738,40.873499],[-123.548619,40.825954],[-123.543208,40.800317],[-123.551959,40.783044],[-123.532089,40.725871],[-123.53674,39.997892]]]},"id":6023},
{"type":"Feature","properties":{"name":"Butler"},"geometry":{"type":"Polygon","coordinates":[[[-96.904209,41.044894],[-97.362308,41.042879],[-97.3666,41.386846],[-97.314009,41.385137],[-97.277913,41.373959],[-97.251972,41.387639],[-97.168612,41.378032],[-97.107873,41.389136],[-97.051765,41.414003],[-97.002218,41.421815],[-96.946393,41.45074],[-96.903606,41.457846],[-96.904209,41.044894]]]},"id":31023},
{"type":"Feature","properties":{"name":"Saunders"},"geometry":{"type":"Polygon","coordinates":[[[-96.308977,41.043391],[-96.349511,41.039583],[-96.351707,41.017862],[-96.457318,41.016176],[-96.459029,41.043509],[-96.904209,41.044894],[-96.903606,41.457846],[-96.756082,41.452923],[-96.690499,41.434119],[-96.589065,41.437539],[-96.561759,41.433308],[-96.470151,41.393387],[-96.414968,41.342579],[-96.39285,41.30125],[-96.354413,41.274258],[-96.366864,41.229313],[-96.328577,41.184143],[-96.314399,41.135852],[-96.328998,41.078284],[-96.308977,41.043391]]]},"id":31155},
{"type":"Feature","properties":{"name":"Erie"},"geometry":{"type":"Polygon","coordinates":[[[-82.336693,41.282765],[-82.833894,41.284809],[-82.842814,41.426707],[-82.908932,41.429469],[-82.716947,41.450525],[-82.548838,41.391338],[-82.341383,41.431501],[-82.336693,41.282765]]]},"id":39043},
{"type":"Feature","properties":{"name":"Kosciusko"},"geometry":{"type":"Polygon","coordinates":[[[-85.94947,41.046995],[-86.025614,41.048185],[-86.025218,41.093576],[-86.084378,41.093809],[-86.084699,41.175546],[-86.065793,41.175039],[-86.067955,41.444837],[-85.90697,41.439974],[-85.661822,41.449676],[-85.658456,41.297867],[-85.66201,41.187614],[-85.68892,41.187057],[-85.686095,41.047115],[-85.94947,41.046995]]]},"id":18085},
{"type":"Feature","properties":{"name":"Starke"},"geometry":{"type":"Polygon","coordinates":[[[-86.475697,41.442385],[-86.473122,41.174438],[-86.932875,41.174512],[-86.935386,41.239931],[-86.883695,41.266119],[-86.812992,41.276457],[-86.769199,41.302318],[-86.741854,41.328971],[-86.704867,41.397637],[-86.647524,41.437238],[-86.529127,41.440001],[-86.475697,41.442385]]]},"id":18149},
{"type":"Feature","properties":{"name":"Clarion"},"geometry":{"type":"Polygon","coordinates":[[[-79.216543,41.047684],[-79.237776,41.043767],[-79.258673,41.026692],[-79.274519,41.026929],[-79.290404,41.004922],[-79.31124,41.010071],[-79.325607,41.000336],[-79.361542,41.000725],[-79.382683,40.971375],[-79.399049,40.991554],[-79.385621,40.990391],[-79.385255,40.99947],[-79.410608,40.991379],[-79.410882,41.001358],[-79.423723,41.003433],[-79.423456,41.016143],[-79.431337,40.992428],[-79.456095,40.984787],[-79.466181,40.997341],[-79.485202,41.00249],[-79.49747,40.984149],[-79.507091,40.979911],[-79.518856,40.986987],[-79.533047,40.97224],[-79.556493,40.983207],[-79.612738,40.970488],[-79.628569,40.991103],[-79.587728,40.989505],[-79.590551,41.00262],[-79.615782,41.011279],[-79.615996,41.018538],[-79.597936,41.025645],[-79.630988,41.030997],[-79.671859,41.052542],[-79.664436,41.069006],[-79.681107,41.095499],[-79.68132,41.161755],[-79.697594,41.174637],[-79.691773,41.183815],[-79.674629,41.182293],[-79.673928,41.199097],[-79.657219,41.212093],[-79.657303,41.254753],[-79.644425,41.253155],[-79.644905,41.269035],[-79.63205,41.268341],[-79.6306,41.281074],[-79.610405,41.280506],[-79.610451,41.322716],[-79.548522,41.317818],[-79.548438,41.33598],[-79.482313,41.334298],[-79.483808,41.38738],[-79.407879,41.387178],[-79.409184,41.435274],[-79.21296,41.428061],[-79.212288,41.32503],[-79.216543,41.047684]]]},"id":42031},
{"type":"Feature","properties":{"name":"Cheyenne"},"geometry":{"type":"Polygon","coordinates":[[[-102.621257,41.000215],[-102.652271,40.998124],[-103.382957,41.000316],[-103.373092,41.041755],[-103.375636,41.390729],[-103.368945,41.392186],[-103.3688,41.433044],[-102.631861,41.434857],[-102.628816,41.398118],[-102.606126,41.395593],[-102.606375,41.216782],[-102.611004,41.045224],[-102.620731,41.043778],[-102.621257,41.000215]]]},"id":31033},
{"type":"Feature","properties":{"name":"Defiance"},"geometry":{"type":"Polygon","coordinates":[[[-84.334132,41.425851],[-84.223261,41.422162],[-84.220969,41.160693],[-84.33226,41.16024],[-84.333603,41.205661],[-84.443269,41.206569],[-84.445809,41.251018],[-84.791586,41.253133],[-84.790976,41.283818],[-84.791897,41.427899],[-84.334132,41.425851]]]},"id":39039},
{"type":"Feature","properties":{"name":"Weber"},"geometry":{"type":"Polygon","coordinates":[[[-112.495874,41.078317],[-112.221618,41.335034],[-112.021239,41.336486],[-111.969496,41.357637],[-111.952666,41.421508],[-111.910611,41.409389],[-111.882077,41.422343],[-111.847141,41.396854],[-111.792933,41.391937],[-111.749223,41.369697],[-111.716155,41.385609],[-111.693389,41.42739],[-111.646382,41.416348],[-111.502783,41.417085],[-111.483144,41.409422],[-111.459361,41.384299],[-111.413132,41.364108],[-111.411408,41.347209],[-111.42682,41.338336],[-111.437516,41.311526],[-111.435608,41.28144],[-111.461358,41.249832],[-111.482157,41.242096],[-111.498172,41.225056],[-111.582916,41.236858],[-111.599289,41.230735],[-111.615739,41.199615],[-111.684498,41.179775],[-111.7152,41.186046],[-111.747719,41.217383],[-111.753342,41.207614],[-111.772988,41.214782],[-111.807878,41.214386],[-111.850725,41.197033],[-111.8659,41.181744],[-111.857622,41.135968],[-111.916896,41.135617],[-111.982098,41.155008],[-112.152449,41.156594],[-112.494714,41.077367],[-112.495874,41.078317]]]},"id":49057},
{"type":"Feature","properties":{"name":"Louisa"},"geometry":{"type":"Polygon","coordinates":[[[-91.373614,41.074008],[-91.373408,41.158418],[-91.485144,41.160357],[-91.480332,41.424147],[-91.371313,41.424878],[-91.371449,41.33772],[-91.073429,41.334925],[-91.102496,41.267848],[-91.101672,41.231552],[-91.056466,41.17629],[-91.018402,41.165858],[-90.990485,41.144405],[-90.95793,41.104393],[-90.954794,41.070397],[-91.373614,41.074008]]]},"id":19115},
{"type":"Feature","properties":{"name":"Luzerne"},"geometry":{"type":"Polygon","coordinates":[[[-76.211145,40.949755],[-76.233085,41.04979],[-76.232093,41.139168],[-76.283472,41.1315],[-76.322002,41.19857],[-76.315242,41.310597],[-76.284631,41.38338],[-76.010319,41.385936],[-75.838652,41.422407],[-75.828161,41.400027],[-75.797429,41.379199],[-75.688829,41.341397],[-75.70344,41.296216],[-75.653725,41.256476],[-75.650528,41.191982],[-75.606681,41.165017],[-75.611969,41.149667],[-75.653008,41.120316],[-75.671037,41.131012],[-75.702684,41.133728],[-75.715929,41.116673],[-75.728098,41.117748],[-75.772106,41.088852],[-75.777348,41.048993],[-75.748004,41.028173],[-75.741313,41.003126],[-75.846763,40.972769],[-75.865372,40.957586],[-75.997162,40.912474],[-76.029611,40.901964],[-76.211145,40.949755]]]},"id":42079},
{"type":"Feature","properties":{"name":"Polk"},"geometry":{"type":"Polygon","coordinates":[[[-97.362308,41.042879],[-97.820859,41.041495],[-97.826841,41.161087],[-97.806257,41.192733],[-97.772946,41.210388],[-97.753712,41.238887],[-97.719318,41.253315],[-97.669969,41.29499],[-97.597717,41.329142],[-97.516477,41.358435],[-97.485889,41.357935],[-97.442362,41.36928],[-97.378883,41.396779],[-97.366813,41.393666],[-97.3666,41.386846],[-97.362308,41.042879]]]},"id":31143},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-96.328577,41.184143],[-96.366864,41.229313],[-96.354413,41.274258],[-96.39285,41.30125],[-96.414968,41.342579],[-96.470151,41.393387],[-96.32841,41.39501],[-95.940056,41.394805],[-95.942895,41.340077],[-95.889107,41.301389],[-95.897591,41.286863],[-95.911202,41.308469],[-95.930231,41.302057],[-95.910981,41.225245],[-95.92225,41.207854],[-95.9161,41.194064],[-96.328577,41.184143]]]},"id":31055},
{"type":"Feature","properties":{"name":"Sherman"},"geometry":{"type":"Polygon","coordinates":[[[-98.745426,41.04257],[-99.199361,41.044302],[-99.19538,41.391011],[-98.750037,41.394489],[-98.742713,41.393879],[-98.745426,41.04257]]]},"id":31163},
{"type":"Feature","properties":{"name":"Howard"},"geometry":{"type":"Polygon","coordinates":[[[-98.281749,41.039884],[-98.720477,41.041578],[-98.745426,41.04257],[-98.742713,41.393879],[-98.28463,41.392286],[-98.281749,41.039884]]]},"id":31093},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-101.24341,40.697782],[-101.245356,41.000809],[-101.243381,41.041183],[-101.262867,41.044399],[-101.262933,41.390168],[-100.707044,41.392929],[-100.25276,41.3934],[-100.22952,41.391813],[-100.233949,41.043333],[-100.21692,41.041803],[-100.214667,40.69653],[-100.770576,40.697316],[-101.24341,40.697782]]]},"id":31111},
{"type":"Feature","properties":{"name":"Merrick"},"geometry":{"type":"Polygon","coordinates":[[[-98.281749,41.039884],[-98.28463,41.392286],[-98.270012,41.390555],[-98.270323,41.263422],[-98.099773,41.262633],[-98.097812,41.278022],[-98.056185,41.278724],[-98.053843,41.289104],[-97.898528,41.288005],[-97.897269,41.300685],[-97.706088,41.30606],[-97.705209,41.390513],[-97.599318,41.388693],[-97.597717,41.329142],[-97.669969,41.29499],[-97.719318,41.253315],[-97.753712,41.238887],[-97.772946,41.210388],[-97.806257,41.192733],[-97.826841,41.161087],[-97.909758,41.103507],[-97.965904,41.091002],[-98.063668,41.037375],[-98.081955,41.011988],[-98.151452,40.97252],[-98.167511,40.954782],[-98.20939,40.931359],[-98.237046,40.898934],[-98.274538,40.877194],[-98.273463,40.994279],[-98.281749,41.039884]]]},"id":31121},
{"type":"Feature","properties":{"name":"Nantucket"},"geometry":{"type":"Polygon","coordinates":[[[-70.031716,41.311931],[-70.006508,41.324775],[-70.02662,41.33721],[-70.087633,41.296849],[-70.034486,41.349718],[-70.049264,41.391961],[-69.96598,41.294891],[-69.968444,41.251817],[-70.103106,41.23828],[-70.213269,41.270205],[-70.207096,41.294088],[-70.097872,41.277631],[-70.031716,41.311931]]]},"id":25019},
{"type":"Feature","properties":{"name":"Keith"},"geometry":{"type":"Polygon","coordinates":[[[-101.262933,41.390168],[-101.262867,41.044399],[-101.243381,41.041183],[-101.245356,41.000809],[-102.047739,40.998071],[-102.050676,41.219475],[-102.051989,41.38738],[-101.982827,41.389475],[-101.403111,41.391711],[-101.262933,41.390168]]]},"id":31101},
{"type":"Feature","properties":{"name":"Kimball"},"geometry":{"type":"Polygon","coordinates":[[[-103.572316,40.999648],[-104.051706,41.003211],[-104.054012,41.388086],[-103.375636,41.390729],[-103.373092,41.041755],[-103.382957,41.000316],[-103.572316,40.999648]]]},"id":31105},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-79.220639,40.915585],[-79.216543,41.047684],[-79.212288,41.32503],[-79.19548,41.338415],[-79.18035,41.319552],[-79.174262,41.346415],[-79.160979,41.327978],[-79.142775,41.334566],[-79.11643,41.332632],[-79.091123,41.349741],[-79.053326,41.356107],[-79.033039,41.351808],[-78.986216,41.365979],[-78.974222,41.377465],[-78.958833,41.373555],[-78.741495,41.266922],[-78.742647,41.227882],[-78.708428,41.227302],[-78.711038,41.201412],[-78.770213,41.198567],[-78.80502,41.13242],[-78.806974,40.908251],[-79.220639,40.915585]]]},"id":42065},
{"type":"Feature","properties":{"name":"Morgan"},"geometry":{"type":"Polygon","coordinates":[[[-111.634016,40.814595],[-111.659568,40.830662],[-111.663765,40.847649],[-111.68654,40.852237],[-111.707575,40.847664],[-111.741069,40.86359],[-111.765881,40.873702],[-111.765118,40.892299],[-111.791342,40.916545],[-111.807868,40.948569],[-111.807037,40.959891],[-111.780272,40.959254],[-111.781294,40.970198],[-111.814369,41.017897],[-111.831376,41.027219],[-111.848886,41.07155],[-111.857622,41.135968],[-111.8659,41.181744],[-111.850725,41.197033],[-111.807878,41.214386],[-111.772988,41.214782],[-111.753342,41.207614],[-111.747719,41.217383],[-111.7152,41.186046],[-111.684498,41.179775],[-111.615739,41.199615],[-111.599289,41.230735],[-111.582916,41.236858],[-111.498172,41.225056],[-111.482157,41.242096],[-111.461358,41.249832],[-111.435608,41.28144],[-111.437516,41.311526],[-111.42682,41.338336],[-111.411408,41.347209],[-111.413132,41.364108],[-111.370009,41.374492],[-111.337423,41.360324],[-111.319058,41.359966],[-111.263062,41.302456],[-111.262549,41.241059],[-111.247801,41.226758],[-111.216512,41.220346],[-111.203915,41.209772],[-111.239813,41.1523],[-111.356624,41.128428],[-111.374615,41.109679],[-111.374417,41.089217],[-111.40914,41.074836],[-111.434654,41.076407],[-111.505176,41.056742],[-111.530048,41.042815],[-111.539738,41.020057],[-111.585944,40.990218],[-111.586272,40.977962],[-111.579328,40.957218],[-111.525806,40.955837],[-111.531558,40.912914],[-111.512354,40.917088],[-111.487809,40.872403],[-111.496659,40.836888],[-111.510377,40.824761],[-111.509095,40.801984],[-111.520951,40.790231],[-111.539408,40.787389],[-111.587201,40.830326],[-111.61173,40.827736],[-111.634016,40.814595]]]},"id":49029},
{"type":"Feature","properties":{"name":"Trinity"},"geometry":{"type":"Polygon","coordinates":[[[-122.933004,39.979234],[-123.533688,39.977602],[-123.53674,39.997892],[-123.532089,40.725871],[-123.551959,40.783044],[-123.543208,40.800317],[-123.548619,40.825954],[-123.587738,40.873499],[-123.603167,40.921349],[-123.600161,40.92833],[-123.546013,40.936132],[-123.482885,40.912535],[-123.439206,40.94158],[-123.437818,40.959837],[-123.400359,41.010839],[-123.416275,41.045049],[-123.450411,41.077888],[-123.420084,41.100338],[-123.415477,41.150592],[-123.40414,41.173899],[-123.370882,41.151008],[-123.346284,41.156326],[-123.324211,41.141961],[-123.293944,41.138456],[-123.222094,41.072414],[-123.1782,41.066361],[-123.116941,41.071138],[-123.060641,41.04837],[-123.02105,40.999329],[-122.96881,41.009061],[-122.918789,40.987306],[-122.903942,40.992083],[-122.89584,41.019282],[-122.915776,41.060633],[-122.961814,41.085309],[-122.951637,41.131246],[-122.954575,41.173387],[-122.919822,41.174551],[-122.875791,41.196593],[-122.840648,41.193203],[-122.819308,41.201451],[-122.789308,41.200997],[-122.765817,41.227972],[-122.726287,41.246115],[-122.708801,41.271902],[-122.648877,41.288203],[-122.637273,41.31917],[-122.585056,41.325099],[-122.5723,41.365207],[-122.543948,41.363254],[-122.52981,41.339321],[-122.506898,41.336216],[-122.477653,41.31474],[-122.499473,41.296079],[-122.516136,41.211724],[-122.515289,41.200852],[-122.48918,41.179704],[-122.442006,41.14673],[-122.452466,41.092199],[-122.522323,41.071919],[-122.529388,41.006172],[-122.602128,40.946639],[-122.607964,40.889579],[-122.650201,40.82363],[-122.657068,40.772433],[-122.701014,40.751833],[-122.713702,40.735815],[-122.705828,40.71345],[-122.713595,40.696738],[-122.741259,40.68595],[-122.724931,40.633979],[-122.686668,40.587994],[-122.690971,40.565991],[-122.728951,40.56337],[-122.749795,40.543797],[-122.780107,40.536511],[-122.789812,40.51426],[-122.834826,40.50174],[-122.846277,40.478947],[-122.871882,40.4664],[-122.893008,40.436337],[-122.91154,40.440926],[-122.949214,40.413708],[-122.992443,40.40258],[-123.002239,40.375305],[-123.049724,40.336235],[-123.053682,40.276067],[-123.023889,40.259317],[-122.992386,40.250826],[-122.971183,40.235472],[-122.964292,40.189006],[-122.97601,40.141654],[-122.967411,40.132522],[-122.961381,40.067387],[-122.94751,40.045327],[-122.950202,40.027032],[-122.933004,39.979234]]]},"id":6105},
{"type":"Feature","properties":{"name":"Westchester"},"geometry":{"type":"Polygon","coordinates":[[[-73.896698,40.99853],[-73.891121,41.06204],[-73.900155,41.142811],[-73.926943,41.194103],[-73.967823,41.241759],[-73.971478,41.260367],[-73.954959,41.292132],[-73.980015,41.324809],[-73.544293,41.365298],[-73.55026,41.293621],[-73.478121,41.210755],[-73.725238,41.100354],[-73.653724,41.012617],[-73.653151,40.998392],[-73.780041,40.886689],[-73.824522,40.892746],[-73.837858,40.908188],[-73.908966,40.927314],[-73.896148,40.960872],[-73.896698,40.99853]]]},"id":36119},
{"type":"Feature","properties":{"name":"Sussex"},"geometry":{"type":"Polygon","coordinates":[[[-74.50746,41.075014],[-74.64461,40.955153],[-74.637934,40.939571],[-74.655467,40.912277],[-74.708843,40.900753],[-74.737012,40.91135],[-74.768843,40.906139],[-74.966292,41.082677],[-74.988883,41.081761],[-74.984595,41.099381],[-74.949994,41.111855],[-74.914768,41.141106],[-74.862887,41.206771],[-74.866411,41.226817],[-74.825196,41.282706],[-74.794143,41.295215],[-74.791663,41.311965],[-74.700062,41.350573],[-74.371981,41.19585],[-74.50746,41.075014]]]},"id":34037},
{"type":"Feature","properties":{"name":"Summit"},"geometry":{"type":"Polygon","coordinates":[[[-81.638168,40.912611],[-81.638015,40.983],[-81.679521,40.984369],[-81.675271,41.273816],[-81.556496,41.272188],[-81.54834,41.279261],[-81.58617,41.330293],[-81.585362,41.348035],[-81.377068,41.346334],[-81.381608,40.98426],[-81.405908,40.983062],[-81.41267,40.907028],[-81.638168,40.912611]]]},"id":39153},
{"type":"Feature","properties":{"name":"Portage"},"geometry":{"type":"Polygon","coordinates":[[[-81.080682,40.983991],[-81.381608,40.98426],[-81.377068,41.346334],[-81.00653,41.343848],[-80.999654,41.131527],[-81.002797,40.9857],[-81.080682,40.983991]]]},"id":39133},
{"type":"Feature","properties":{"name":"Mercer"},"geometry":{"type":"Polygon","coordinates":[[[-90.954794,41.070397],[-90.95793,41.104393],[-90.990485,41.144405],[-91.018402,41.165858],[-91.056466,41.17629],[-91.101672,41.231552],[-91.102496,41.267848],[-91.073429,41.334925],[-90.437798,41.332086],[-90.441552,41.155077],[-90.444635,41.066573],[-90.790209,41.068537],[-90.954794,41.070397]]]},"id":17131},
{"type":"Feature","properties":{"name":"Rockland"},"geometry":{"type":"Polygon","coordinates":[[[-73.980015,41.324809],[-73.954959,41.292132],[-73.971478,41.260367],[-73.967823,41.241759],[-73.926943,41.194103],[-73.900155,41.142811],[-73.891121,41.06204],[-73.896698,40.99853],[-74.213039,41.123612],[-74.24236,41.137627],[-73.980015,41.324809]]]},"id":36087},
{"type":"Feature","properties":{"name":"Putnam"},"geometry":{"type":"Polygon","coordinates":[[[-89.47142,41.151736],[-89.471383,41.233409],[-89.362661,41.235156],[-89.345426,41.295492],[-89.270137,41.323057],[-89.170487,41.316033],[-89.168404,41.1082],[-89.35011,41.104006],[-89.329876,41.152075],[-89.47142,41.151736]]]},"id":17155},
{"type":"Feature","properties":{"name":"Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-76.531506,40.881362],[-76.526765,40.960723],[-76.556253,40.985442],[-76.583956,41.055514],[-76.622822,41.065771],[-76.649175,41.15488],[-76.598475,41.159073],[-76.446582,41.27862],[-76.404534,41.310033],[-76.315242,41.310597],[-76.322002,41.19857],[-76.283472,41.1315],[-76.232093,41.139168],[-76.233085,41.04979],[-76.211145,40.949755],[-76.286491,40.884708],[-76.313939,40.806484],[-76.390306,40.776779],[-76.414368,40.830512],[-76.498273,40.824397],[-76.50665,40.833537],[-76.500263,40.855715],[-76.509121,40.873477],[-76.531506,40.881362]]]},"id":42037},
{"type":"Feature","properties":{"name":"Kankakee"},"geometry":{"type":"Polygon","coordinates":[[[-88.131388,41.00419],[-88.250762,41.002695],[-88.256061,41.11709],[-88.245692,41.117441],[-88.249022,41.205057],[-88.018719,41.209401],[-88.021193,41.295659],[-87.532485,41.301339],[-87.531765,41.17379],[-87.532053,41.009963],[-88.131388,41.00419]]]},"id":17091},
{"type":"Feature","properties":{"name":"Whitley"},"geometry":{"type":"Polygon","coordinates":[[[-85.642491,41.008113],[-85.687514,41.009468],[-85.686095,41.047115],[-85.68892,41.187057],[-85.66201,41.187614],[-85.658456,41.297867],[-85.548231,41.299508],[-85.545835,41.276723],[-85.313384,41.276598],[-85.31642,41.194483],[-85.343383,41.19309],[-85.34438,41.010095],[-85.642491,41.008113]]]},"id":18183},
{"type":"Feature","properties":{"name":"Jasper"},"geometry":{"type":"Polygon","coordinates":[[[-87.101924,40.744401],[-87.265775,40.743761],[-87.281213,41.22143],[-87.230988,41.244604],[-87.194702,41.270282],[-87.134299,41.285068],[-87.0742,41.272598],[-86.988495,41.224187],[-86.959075,41.226785],[-86.935386,41.239931],[-86.932875,41.174512],[-86.931193,40.918496],[-86.986553,40.91824],[-86.986041,40.846982],[-87.103398,40.844712],[-87.101924,40.744401]]]},"id":18073},
{"type":"Feature","properties":{"name":"Huron"},"geometry":{"type":"Polygon","coordinates":[[[-82.71968,40.990969],[-82.82848,40.994643],[-82.835252,41.254303],[-82.833894,41.284809],[-82.336693,41.282765],[-82.330055,41.060849],[-82.42706,41.060773],[-82.427578,40.989427],[-82.71968,40.990969]]]},"id":39077},
{"type":"Feature","properties":{"name":"Allen"},"geometry":{"type":"Polygon","coordinates":[[[-85.078056,40.931646],[-85.343746,40.927426],[-85.34438,41.010095],[-85.343383,41.19309],[-85.31642,41.194483],[-85.313384,41.276598],[-85.195797,41.278602],[-84.790976,41.283818],[-84.791586,41.253133],[-84.790527,40.988341],[-84.791023,40.937708],[-85.078056,40.931646]]]},"id":18003},
{"type":"Feature","properties":{"name":"Medina"},"geometry":{"type":"Polygon","coordinates":[[[-81.679521,40.984369],[-82.127737,40.989771],[-82.168038,40.991022],[-82.165801,41.05879],[-82.164771,41.135594],[-82.06958,41.136769],[-82.070433,41.197155],[-81.96714,41.197175],[-81.967017,41.272586],[-81.870501,41.275013],[-81.675271,41.273816],[-81.679521,40.984369]]]},"id":39103},
{"type":"Feature","properties":{"name":"Summit"},"geometry":{"type":"Polygon","coordinates":[[[-109.996086,40.813028],[-110.041099,40.819596],[-110.086503,40.809791],[-110.251192,40.83184],[-110.333615,40.823004],[-110.359601,40.792532],[-110.375814,40.788378],[-110.41561,40.792269],[-110.429893,40.782549],[-110.48639,40.776823],[-110.506029,40.768282],[-110.544367,40.774782],[-110.566829,40.761828],[-110.608242,40.761195],[-110.625188,40.768866],[-110.658452,40.743708],[-110.704169,40.749171],[-110.754043,40.742087],[-110.800385,40.712539],[-110.833749,40.713256],[-110.83909,40.721698],[-110.883204,40.731564],[-110.897898,40.709091],[-110.897286,40.680881],[-110.930604,40.674755],[-110.956275,40.601443],[-110.970412,40.592116],[-111.036904,40.580272],[-111.062501,40.586018],[-111.083156,40.600163],[-111.103206,40.599737],[-111.149943,40.555102],[-111.271044,40.594263],[-111.313132,40.621606],[-111.365466,40.634847],[-111.389602,40.682716],[-111.427826,40.675312],[-111.435044,40.660637],[-111.461511,40.648167],[-111.474457,40.606482],[-111.54984,40.612016],[-111.596299,40.66307],[-111.589571,40.703669],[-111.618916,40.733083],[-111.625768,40.762906],[-111.642622,40.77316],[-111.644743,40.801415],[-111.634016,40.814595],[-111.61173,40.827736],[-111.587201,40.830326],[-111.539408,40.787389],[-111.520951,40.790231],[-111.509095,40.801984],[-111.510377,40.824761],[-111.496659,40.836888],[-111.487809,40.872403],[-111.512354,40.917088],[-111.531558,40.912914],[-111.525806,40.955837],[-111.579328,40.957218],[-111.586272,40.977962],[-111.585944,40.990218],[-111.539738,41.020057],[-111.530048,41.042815],[-111.505176,41.056742],[-111.434654,41.076407],[-111.40914,41.074836],[-111.374417,41.089217],[-111.374615,41.109679],[-111.356624,41.128428],[-111.239813,41.1523],[-111.228261,41.144049],[-111.215932,41.145308],[-111.167239,41.179919],[-111.138575,41.186332],[-111.101152,41.209613],[-111.078614,41.244944],[-111.051651,41.258425],[-111.051022,40.996584],[-110.063186,40.997892],[-110.002165,40.997599],[-109.996086,40.813028]]]},"id":49043},
{"type":"Feature","properties":{"name":"Centre"},"geometry":{"type":"Polygon","coordinates":[[[-78.371338,40.737777],[-78.381928,40.759929],[-78.35482,40.776446],[-78.340575,40.803759],[-78.313368,40.813463],[-78.294988,40.853044],[-78.253605,40.84649],[-78.244663,40.862877],[-78.249698,40.879631],[-78.229602,40.87521],[-78.213625,40.9184],[-78.197748,40.911679],[-78.161576,40.944992],[-78.176248,40.952625],[-78.172074,40.961727],[-78.164193,40.964943],[-78.147011,40.94915],[-78.13562,40.967811],[-78.132957,40.942413],[-78.122581,40.937927],[-78.088057,40.955788],[-78.100386,40.975235],[-78.064657,40.99718],[-78.062314,41.008529],[-78.077687,41.027065],[-78.060704,41.036217],[-78.074917,41.061559],[-78.096837,41.059647],[-78.087849,41.077382],[-78.114842,41.098127],[-78.11739,41.110365],[-78.111958,41.116743],[-78.098492,41.11136],[-78.087596,41.120485],[-78.079623,41.11553],[-78.070574,41.127371],[-78.060808,41.126505],[-78.056673,41.143313],[-78.04332,41.1529],[-78.01094,41.146228],[-77.999457,41.161705],[-77.982405,41.166756],[-77.972714,41.177685],[-77.974072,41.198098],[-77.958926,41.21676],[-77.946681,41.210905],[-77.944323,41.224527],[-77.920571,41.236407],[-77.904204,41.257789],[-77.898241,41.174764],[-77.789617,41.178234],[-77.788833,41.135584],[-77.773619,41.144236],[-77.747254,41.106634],[-77.667989,41.105404],[-77.588681,41.064194],[-77.562473,41.060578],[-77.586217,41.044685],[-77.521619,40.963956],[-77.343885,40.987008],[-77.152484,41.041531],[-77.19955,41.003538],[-77.259439,40.937882],[-77.363623,40.855018],[-77.688936,40.730199],[-77.713777,40.721993],[-77.767145,40.721889],[-77.824841,40.740355],[-77.889662,40.726111],[-77.956749,40.690505],[-78.126319,40.741942],[-78.140922,40.746405],[-78.371338,40.737777]]]},"id":42027},
{"type":"Feature","properties":{"name":"Clearfield"},"geometry":{"type":"Polygon","coordinates":[[[-78.807339,40.730416],[-78.806974,40.908251],[-78.80502,41.13242],[-78.770213,41.198567],[-78.711038,41.201412],[-78.647193,41.217426],[-78.645987,41.256011],[-78.243645,41.229942],[-78.099397,41.217991],[-78.04332,41.1529],[-78.056673,41.143313],[-78.060808,41.126505],[-78.070574,41.127371],[-78.079623,41.11553],[-78.087596,41.120485],[-78.098492,41.11136],[-78.111958,41.116743],[-78.11739,41.110365],[-78.114842,41.098127],[-78.087849,41.077382],[-78.096837,41.059647],[-78.074917,41.061559],[-78.060704,41.036217],[-78.077687,41.027065],[-78.062314,41.008529],[-78.064657,40.99718],[-78.100386,40.975235],[-78.088057,40.955788],[-78.122581,40.937927],[-78.132957,40.942413],[-78.13562,40.967811],[-78.147011,40.94915],[-78.164193,40.964943],[-78.172074,40.961727],[-78.176248,40.952625],[-78.161576,40.944992],[-78.197748,40.911679],[-78.213625,40.9184],[-78.229602,40.87521],[-78.249698,40.879631],[-78.244663,40.862877],[-78.253605,40.84649],[-78.294988,40.853044],[-78.313368,40.813463],[-78.340575,40.803759],[-78.35482,40.776446],[-78.381928,40.759929],[-78.371338,40.737777],[-78.361487,40.725597],[-78.79082,40.722875],[-78.807339,40.730416]]]},"id":42033},
{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"Polygon","coordinates":[[[-75.135525,40.962937],[-75.247298,40.912315],[-75.299964,40.861511],[-75.483042,40.813723],[-75.4985,40.84709],[-75.570593,40.944391],[-75.536077,40.9602],[-75.541342,40.967996],[-75.500066,40.985506],[-75.608741,41.087904],[-75.622787,41.109891],[-75.653008,41.120316],[-75.611969,41.149667],[-75.606681,41.165017],[-75.551405,41.221825],[-75.540884,41.226658],[-75.520886,41.220902],[-75.495922,41.239578],[-75.352311,41.240429],[-75.132441,41.255619],[-75.163365,41.152242],[-75.087938,41.144945],[-75.031632,41.079872],[-74.984595,41.099381],[-74.988883,41.081761],[-74.966292,41.082677],[-75.001152,41.062486],[-75.035256,41.028203],[-75.069979,41.010716],[-75.116619,41.000248],[-75.139302,40.977528],[-75.135525,40.962937]]]},"id":42089},
{"type":"Feature","properties":{"name":"Seneca"},"geometry":{"type":"Polygon","coordinates":[[[-83.104766,40.987784],[-83.416871,40.986391],[-83.416529,41.164604],[-83.415026,41.248783],[-82.835252,41.254303],[-82.82848,40.994643],[-82.850652,40.989623],[-83.104766,40.987784]]]},"id":39147},
{"type":"Feature","properties":{"name":"Paulding"},"geometry":{"type":"Polygon","coordinates":[[[-84.387507,40.986679],[-84.790527,40.988341],[-84.791586,41.253133],[-84.445809,41.251018],[-84.443269,41.206569],[-84.333603,41.205661],[-84.33226,41.16024],[-84.332514,40.986008],[-84.387507,40.986679]]]},"id":39125},
{"type":"Feature","properties":{"name":"Stark"},"geometry":{"type":"Polygon","coordinates":[[[-89.649199,40.977881],[-89.989424,40.978843],[-89.990621,41.151248],[-89.873474,41.151191],[-89.875137,41.234679],[-89.862929,41.235621],[-89.646086,41.237414],[-89.645292,41.14984],[-89.649199,40.977881]]]},"id":17175},
{"type":"Feature","properties":{"name":"Newton"},"geometry":{"type":"Polygon","coordinates":[[[-87.265775,40.743761],[-87.532696,40.745448],[-87.532053,41.009963],[-87.531765,41.17379],[-87.490116,41.178585],[-87.404787,41.174039],[-87.342569,41.192521],[-87.281213,41.22143],[-87.265775,40.743761]]]},"id":18111},
{"type":"Feature","properties":{"name":"Deuel"},"geometry":{"type":"Polygon","coordinates":[[[-102.050676,41.219475],[-102.047739,40.998071],[-102.621257,41.000215],[-102.620731,41.043778],[-102.611004,41.045224],[-102.606375,41.216782],[-102.050676,41.219475]]]},"id":31049},
{"type":"Feature","properties":{"name":"Passaic"},"geometry":{"type":"Polygon","coordinates":[[[-74.270321,40.886753],[-74.272328,40.909496],[-74.288053,40.924873],[-74.276127,40.946361],[-74.291181,40.990321],[-74.357986,41.008326],[-74.381951,41.003466],[-74.433147,41.016962],[-74.430537,41.035055],[-74.445957,41.044958],[-74.472295,41.041956],[-74.485715,41.027296],[-74.499273,41.038054],[-74.495985,41.072477],[-74.50746,41.075014],[-74.371981,41.19585],[-74.24236,41.137627],[-74.213039,41.123612],[-74.271596,41.005713],[-74.249576,40.994257],[-74.247013,40.983748],[-74.182962,40.973021],[-74.169976,40.977225],[-74.143799,40.964278],[-74.14608,40.928932],[-74.132095,40.915855],[-74.132736,40.889542],[-74.108565,40.860756],[-74.124702,40.85392],[-74.119598,40.820653],[-74.127914,40.811795],[-74.270321,40.886753]]]},"id":34031},
{"type":"Feature","properties":{"name":"Sarpy"},"geometry":{"type":"Polygon","coordinates":[[[-96.308977,41.043391],[-96.328998,41.078284],[-96.314399,41.135852],[-96.328577,41.184143],[-95.9161,41.194064],[-95.859198,41.180537],[-95.859801,41.166865],[-95.876685,41.164202],[-95.858274,41.109187],[-95.878805,41.065871],[-95.984513,41.057483],[-96.030283,41.065364],[-96.068888,41.063376],[-96.10721,41.049098],[-96.172456,41.009127],[-96.207109,41.002394],[-96.276758,41.025263],[-96.308977,41.043391]]]},"id":31153},
{"type":"Feature","properties":{"name":"Shasta"},"geometry":{"type":"Polygon","coordinates":[[[-121.322265,40.448008],[-121.499382,40.446823],[-121.553804,40.446693],[-121.566896,40.433963],[-121.646732,40.43423],[-121.68897,40.451289],[-121.748679,40.430441],[-121.838915,40.43247],[-121.925968,40.414578],[-122.088693,40.398597],[-122.196476,40.367869],[-122.224729,40.373968],[-122.333032,40.359452],[-122.391132,40.360619],[-122.452063,40.367088],[-122.50544,40.385212],[-122.632784,40.32872],[-122.670215,40.328407],[-122.738592,40.35985],[-122.849525,40.341581],[-122.906433,40.298948],[-122.982843,40.302617],[-123.023058,40.285257],[-123.023889,40.259317],[-123.053682,40.276067],[-123.049724,40.336235],[-123.002239,40.375305],[-122.992443,40.40258],[-122.949214,40.413708],[-122.91154,40.440926],[-122.893008,40.436337],[-122.871882,40.4664],[-122.846277,40.478947],[-122.834826,40.50174],[-122.789812,40.51426],[-122.780107,40.536511],[-122.749795,40.543797],[-122.728951,40.56337],[-122.690971,40.565991],[-122.686668,40.587994],[-122.724931,40.633979],[-122.741259,40.68595],[-122.713595,40.696738],[-122.705828,40.71345],[-122.713702,40.735815],[-122.701014,40.751833],[-122.657068,40.772433],[-122.650201,40.82363],[-122.607964,40.889579],[-122.602128,40.946639],[-122.529388,41.006172],[-122.522323,41.071919],[-122.452466,41.092199],[-122.442006,41.14673],[-122.48918,41.179704],[-121.444737,41.180801],[-121.326088,41.178967],[-121.324893,40.900147],[-121.312114,40.900124],[-121.322265,40.448008]]]},"id":6089},
{"type":"Feature","properties":{"name":"Lassen"},"geometry":{"type":"Polygon","coordinates":[[[-120.139907,39.710286],[-120.138556,39.734357],[-120.127242,39.735551],[-120.115225,39.762155],[-120.102667,39.762468],[-120.108878,39.878433],[-120.096938,39.879635],[-120.099342,39.9077],[-120.110191,39.908794],[-120.110191,39.936462],[-120.134003,39.945853],[-120.135033,39.955806],[-120.156282,39.961173],[-120.153665,39.969855],[-120.162614,39.968726],[-120.162599,39.981879],[-120.171633,39.982561],[-120.170557,39.998915],[-120.183772,39.999033],[-120.184298,40.01082],[-120.197459,40.00958],[-120.209789,40.056898],[-120.227864,40.057794],[-120.227536,40.07731],[-120.244352,40.076883],[-120.245443,40.1009],[-120.264067,40.100415],[-120.26438,40.107213],[-120.338434,40.108448],[-120.339288,40.113869],[-120.372592,40.118427],[-120.372821,40.136116],[-120.387912,40.137069],[-120.401806,40.150764],[-120.415135,40.152667],[-120.415036,40.163108],[-120.441283,40.170561],[-120.442069,40.186873],[-120.455298,40.186514],[-120.457198,40.200976],[-120.475914,40.201826],[-120.47847,40.21718],[-120.492936,40.217237],[-120.503137,40.241003],[-120.549983,40.249672],[-120.550426,40.25874],[-120.57391,40.258072],[-120.575467,40.277088],[-120.619566,40.278556],[-120.619376,40.286731],[-120.642287,40.286524],[-120.642906,40.298758],[-120.653747,40.298445],[-120.654701,40.305224],[-120.728846,40.303963],[-120.728137,40.313515],[-120.763729,40.313366],[-120.770725,40.297272],[-120.791905,40.298454],[-120.79446,40.278407],[-120.829137,40.272822],[-120.829419,40.255572],[-120.849309,40.255419],[-120.849035,40.239088],[-120.867765,40.239877],[-120.865636,40.20046],[-120.88674,40.200719],[-120.887495,40.192529],[-120.923682,40.193219],[-120.923927,40.208646],[-120.94799,40.20789],[-120.948685,40.220578],[-120.994463,40.220047],[-120.992868,40.234619],[-121.037448,40.234107],[-121.038303,40.259947],[-121.052143,40.259505],[-121.056746,40.446815],[-121.322265,40.448008],[-121.312114,40.900124],[-121.324893,40.900147],[-121.326088,41.178967],[-119.996325,41.177566],[-119.996165,39.720611],[-120.014095,39.72018],[-120.01366,39.709758],[-120.139907,39.710286]]]},"id":6035},
{"type":"Feature","properties":{"name":"Northumberland"},"geometry":{"type":"Polygon","coordinates":[[[-76.938237,40.637948],[-76.922939,40.65693],[-76.895548,40.671315],[-76.849624,40.722798],[-76.864898,40.778218],[-76.843938,40.813493],[-76.813296,40.842362],[-76.812906,40.88228],[-76.828081,40.885083],[-76.852167,40.909253],[-76.881509,40.961118],[-76.859755,41.011827],[-76.860503,41.064003],[-76.867026,41.083545],[-76.883376,41.096328],[-76.898238,41.140409],[-76.882819,41.159849],[-76.777087,41.176539],[-76.738099,41.169959],[-76.746447,41.130989],[-76.738856,41.099633],[-76.766987,41.032648],[-76.785458,41.012793],[-76.778417,40.986437],[-76.799521,40.945268],[-76.694635,40.967334],[-76.664841,40.964877],[-76.647323,40.954779],[-76.630248,40.957839],[-76.602461,40.941767],[-76.566029,40.936515],[-76.570196,40.897074],[-76.549115,40.882403],[-76.531506,40.881362],[-76.509121,40.873477],[-76.500263,40.855715],[-76.50665,40.833537],[-76.498273,40.824397],[-76.414368,40.830512],[-76.390306,40.776779],[-76.696869,40.663412],[-76.697533,40.657972],[-76.714433,40.663976],[-76.791592,40.643567],[-76.806081,40.648629],[-76.81716,40.630097],[-76.845672,40.625257],[-76.859535,40.632585],[-76.906985,40.608327],[-76.93301,40.608895],[-76.943852,40.616654],[-76.938237,40.637948]]]},"id":42097},
{"type":"Feature","properties":{"name":"Fulton"},"geometry":{"type":"Polygon","coordinates":[[[-86.170704,40.91859],[-86.479237,40.917205],[-86.473122,41.174438],[-86.084699,41.175546],[-86.084378,41.093809],[-86.025218,41.093576],[-86.025614,41.048185],[-85.94947,41.046995],[-85.948341,41.008829],[-86.170278,41.005284],[-86.170704,40.91859]]]},"id":18049},
{"type":"Feature","properties":{"name":"Butler"},"geometry":{"type":"Polygon","coordinates":[[[-80.149517,40.67457],[-80.159969,40.856769],[-80.166103,41.003682],[-80.105143,41.068486],[-80.003983,41.172629],[-79.697594,41.174637],[-79.699348,40.662751],[-80.149517,40.67457]]]},"id":42019},
{"type":"Feature","properties":{"name":"Armstrong"},"geometry":{"type":"Polygon","coordinates":[[[-79.458077,40.52834],[-79.486245,40.540604],[-79.493791,40.529145],[-79.504068,40.528985],[-79.561862,40.56117],[-79.572109,40.58051],[-79.565479,40.602395],[-79.584888,40.603436],[-79.58688,40.63017],[-79.612889,40.628835],[-79.623296,40.652707],[-79.642164,40.655564],[-79.653601,40.673062],[-79.66838,40.680523],[-79.699348,40.662751],[-79.697594,41.174637],[-79.68132,41.161755],[-79.681107,41.095499],[-79.664436,41.069006],[-79.671859,41.052542],[-79.630988,41.030997],[-79.597936,41.025645],[-79.615996,41.018538],[-79.615782,41.011279],[-79.590551,41.00262],[-79.587728,40.989505],[-79.628569,40.991103],[-79.612738,40.970488],[-79.556493,40.983207],[-79.533047,40.97224],[-79.518856,40.986987],[-79.507091,40.979911],[-79.49747,40.984149],[-79.485202,41.00249],[-79.466181,40.997341],[-79.456095,40.984787],[-79.431337,40.992428],[-79.423456,41.016143],[-79.423723,41.003433],[-79.410882,41.001358],[-79.410608,40.991379],[-79.385255,40.99947],[-79.385621,40.990391],[-79.399049,40.991554],[-79.382683,40.971375],[-79.361542,41.000725],[-79.325607,41.000336],[-79.31124,41.010071],[-79.290404,41.004922],[-79.274519,41.026929],[-79.258673,41.026692],[-79.237776,41.043767],[-79.216543,41.047684],[-79.220639,40.915585],[-79.221745,40.785812],[-79.458077,40.52834]]]},"id":42005},
{"type":"Feature","properties":{"name":"Pulaski"},"geometry":{"type":"Polygon","coordinates":[[[-86.588768,40.916579],[-86.931193,40.918496],[-86.932875,41.174512],[-86.473122,41.174438],[-86.479237,40.917205],[-86.588768,40.916579]]]},"id":18131},
{"type":"Feature","properties":{"name":"Montour"},"geometry":{"type":"Polygon","coordinates":[[[-76.531506,40.881362],[-76.549115,40.882403],[-76.570196,40.897074],[-76.566029,40.936515],[-76.602461,40.941767],[-76.630248,40.957839],[-76.647323,40.954779],[-76.664841,40.964877],[-76.694635,40.967334],[-76.799521,40.945268],[-76.778417,40.986437],[-76.785458,41.012793],[-76.766987,41.032648],[-76.738856,41.099633],[-76.746447,41.130989],[-76.738099,41.169959],[-76.682143,41.153282],[-76.649175,41.15488],[-76.622822,41.065771],[-76.583956,41.055514],[-76.556253,40.985442],[-76.526765,40.960723],[-76.531506,40.881362]]]},"id":42093},
{"type":"Feature","properties":{"name":"Hancock"},"geometry":{"type":"Polygon","coordinates":[[[-83.508227,40.812562],[-83.873307,40.812495],[-83.872849,40.915725],[-83.870782,41.163652],[-83.416529,41.164604],[-83.416871,40.986391],[-83.450358,40.985738],[-83.450685,40.946176],[-83.473193,40.945577],[-83.475176,40.904119],[-83.506847,40.903989],[-83.508227,40.812562]]]},"id":39063},
{"type":"Feature","properties":{"name":"Mills"},"geometry":{"type":"Polygon","coordinates":[[[-95.394893,40.908703],[-95.836541,40.901108],[-95.837603,40.974258],[-95.860897,41.002651],[-95.859539,41.035003],[-95.878805,41.065871],[-95.858274,41.109187],[-95.876685,41.164202],[-95.394151,41.163298],[-95.394893,40.908703]]]},"id":19129},
{"type":"Feature","properties":{"name":"Putnam"},"geometry":{"type":"Polygon","coordinates":[[[-83.872849,40.915725],[-83.986058,40.914095],[-83.98676,40.901782],[-84.106224,40.901998],[-84.106201,40.856069],[-84.329602,40.854718],[-84.332065,40.905522],[-84.384999,40.904488],[-84.387507,40.986679],[-84.332514,40.986008],[-84.33226,41.16024],[-84.220969,41.160693],[-83.870782,41.163652],[-83.872849,40.915725]]]},"id":39137},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-94.934927,40.907364],[-95.394893,40.908703],[-95.394151,41.163298],[-95.164142,41.161433],[-94.935611,41.162274],[-94.934927,40.907364]]]},"id":19137},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-94.480833,41.160831],[-94.482204,40.903179],[-94.934927,40.907364],[-94.935611,41.162274],[-94.70649,41.163187],[-94.480833,41.160831]]]},"id":19003},
{"type":"Feature","properties":{"name":"Clarke"},"geometry":{"type":"Polygon","coordinates":[[[-93.563288,41.160622],[-93.562396,40.900903],[-94.017027,40.901468],[-94.019568,41.160728],[-93.799766,41.162416],[-93.563288,41.160622]]]},"id":19039},
{"type":"Feature","properties":{"name":"Wapello"},"geometry":{"type":"Polygon","coordinates":[[[-92.183949,40.901586],[-92.64251,40.900618],[-92.643663,41.159787],[-92.415324,41.159303],[-92.18591,41.162063],[-92.183949,40.901586]]]},"id":19179},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-91.716741,40.89697],[-92.183949,40.901586],[-92.18591,41.162063],[-91.945387,41.16145],[-91.715263,41.16111],[-91.716741,40.89697]]]},"id":19101},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-94.017027,40.901468],[-94.482204,40.903179],[-94.480833,41.160831],[-94.248097,41.161523],[-94.019568,41.160728],[-94.017027,40.901468]]]},"id":19175},
{"type":"Feature","properties":{"name":"Henry"},"geometry":{"type":"Polygon","coordinates":[[[-91.404367,40.81265],[-91.715885,40.811225],[-91.716741,40.89697],[-91.715263,41.16111],[-91.485144,41.160357],[-91.373408,41.158418],[-91.373614,41.074008],[-91.375191,40.81172],[-91.404367,40.81265]]]},"id":19087},
{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"Polygon","coordinates":[[[-97.81851,40.70003],[-98.274658,40.700643],[-98.274538,40.877194],[-98.237046,40.898934],[-98.20939,40.931359],[-98.167511,40.954782],[-98.151452,40.97252],[-98.081955,41.011988],[-98.063668,41.037375],[-97.965904,41.091002],[-97.909758,41.103507],[-97.826841,41.161087],[-97.820859,41.041495],[-97.81851,40.70003]]]},"id":31081},
{"type":"Feature","properties":{"name":"Lucas"},"geometry":{"type":"Polygon","coordinates":[[[-93.099371,40.900766],[-93.562396,40.900903],[-93.563288,41.160622],[-93.33305,41.160474],[-93.100416,41.160888],[-93.099371,40.900766]]]},"id":19117},
{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"Polygon","coordinates":[[[-92.643663,41.159787],[-92.64251,40.900618],[-93.099371,40.900766],[-93.100416,41.160888],[-92.875099,41.160687],[-92.643663,41.159787]]]},"id":19135},
{"type":"Feature","properties":{"name":"Davis"},"geometry":{"type":"Polygon","coordinates":[[[-112.253543,40.770654],[-112.494714,41.077367],[-112.152449,41.156594],[-111.982098,41.155008],[-111.916896,41.135617],[-111.857622,41.135968],[-111.848886,41.07155],[-111.831376,41.027219],[-111.814369,41.017897],[-111.781294,40.970198],[-111.780272,40.959254],[-111.807037,40.959891],[-111.807868,40.948569],[-111.791342,40.916545],[-111.765118,40.892299],[-111.765881,40.873702],[-111.741069,40.86359],[-111.755291,40.852367],[-111.82559,40.831168],[-111.928895,40.823977],[-111.955782,40.85639],[-111.951999,40.91802],[-112.005566,40.918313],[-112.253543,40.770654]]]},"id":49011},
{"type":"Feature","properties":{"name":"Knox"},"geometry":{"type":"Polygon","coordinates":[[[-89.993103,40.719802],[-90.450821,40.710401],[-90.444635,41.066573],[-90.441552,41.155077],[-89.990621,41.151248],[-89.989424,40.978843],[-89.993103,40.719802]]]},"id":17095},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-89.168404,41.1082],[-89.05866,41.10696],[-89.057948,40.928199],[-89.479416,40.923525],[-89.462989,40.93804],[-89.454451,40.975691],[-89.649199,40.977881],[-89.645292,41.14984],[-89.47142,41.151736],[-89.329876,41.152075],[-89.35011,41.104006],[-89.168404,41.1082]]]},"id":17123},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-77.363623,40.855018],[-77.259439,40.937882],[-77.19955,41.003538],[-77.152484,41.041531],[-77.143932,41.046044],[-77.145015,41.073727],[-77.079135,41.084418],[-76.974267,41.088114],[-76.961618,41.148858],[-76.898238,41.140409],[-76.883376,41.096328],[-76.867026,41.083545],[-76.860503,41.064003],[-76.859755,41.011827],[-76.881509,40.961118],[-76.852167,40.909253],[-76.828081,40.885083],[-76.908956,40.880498],[-76.939902,40.88744],[-76.994714,40.871792],[-77.012918,40.875492],[-77.031886,40.856509],[-77.065806,40.873411],[-77.360062,40.811462],[-77.363623,40.855018]]]},"id":42119},
{"type":"Feature","properties":{"name":"Carbon"},"geometry":{"type":"Polygon","coordinates":[[[-75.765436,40.739398],[-75.915645,40.83209],[-75.997162,40.912474],[-75.865372,40.957586],[-75.846763,40.972769],[-75.741313,41.003126],[-75.748004,41.028173],[-75.777348,41.048993],[-75.772106,41.088852],[-75.728098,41.117748],[-75.715929,41.116673],[-75.702684,41.133728],[-75.671037,41.131012],[-75.653008,41.120316],[-75.622787,41.109891],[-75.608741,41.087904],[-75.500066,40.985506],[-75.541342,40.967996],[-75.536077,40.9602],[-75.570593,40.944391],[-75.4985,40.84709],[-75.483042,40.813723],[-75.618551,40.787673],[-75.697211,40.774291],[-75.765436,40.739398]]]},"id":42025},
{"type":"Feature","properties":{"name":"Mahoning"},"geometry":{"type":"Polygon","coordinates":[[[-80.520924,40.897271],[-80.812372,40.899099],[-80.813768,40.929022],[-80.894087,40.92872],[-80.893866,40.898767],[-81.078332,40.901429],[-81.080682,40.983991],[-81.002797,40.9857],[-80.999654,41.131527],[-80.522933,41.129628],[-80.520924,40.897271]]]},"id":39099},
{"type":"Feature","properties":{"name":"Lawrence"},"geometry":{"type":"Polygon","coordinates":[[[-80.159969,40.856769],[-80.520306,40.854169],[-80.520924,40.897271],[-80.522933,41.129628],[-80.266623,41.129084],[-80.269286,41.11904],[-80.152584,41.114257],[-80.105143,41.068486],[-80.166103,41.003682],[-80.159969,40.856769]]]},"id":42073},
{"type":"Feature","properties":{"name":"Bergen"},"geometry":{"type":"Polygon","coordinates":[[[-73.922394,40.88604],[-73.977061,40.797487],[-74.012028,40.808672],[-74.012546,40.822755],[-74.026509,40.823137],[-74.078085,40.786863],[-74.090048,40.765398],[-74.125457,40.761347],[-74.14357,40.776354],[-74.127914,40.811795],[-74.119598,40.820653],[-74.124702,40.85392],[-74.108565,40.860756],[-74.132736,40.889542],[-74.132095,40.915855],[-74.14608,40.928932],[-74.143799,40.964278],[-74.169976,40.977225],[-74.182962,40.973021],[-74.247013,40.983748],[-74.249576,40.994257],[-74.271596,41.005713],[-74.213039,41.123612],[-73.896698,40.99853],[-73.896148,40.960872],[-73.908966,40.927314],[-73.922394,40.88604]]]},"id":34003},
{"type":"Feature","properties":{"name":"Livingston"},"geometry":{"type":"Polygon","coordinates":[[[-88.936301,40.929533],[-88.937295,41.110564],[-88.593342,41.114031],[-88.256061,41.11709],[-88.250762,41.002695],[-88.240466,40.622883],[-88.463382,40.619453],[-88.577834,40.619431],[-88.585195,40.753296],[-88.931009,40.75486],[-88.936301,40.929533]]]},"id":17105},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-75.200388,40.614743],[-75.197939,40.634206],[-75.208918,40.650738],[-75.184061,40.669792],[-75.205355,40.686062],[-75.187754,40.723857],[-75.193644,40.748004],[-75.170313,40.774809],[-75.130319,40.772708],[-75.100541,40.791659],[-75.089211,40.821391],[-75.099542,40.839285],[-75.054619,40.855673],[-75.056488,40.872046],[-75.073686,40.884626],[-75.079736,40.903349],[-75.135525,40.962937],[-75.139302,40.977528],[-75.116619,41.000248],[-75.069979,41.010716],[-75.035256,41.028203],[-75.001152,41.062486],[-74.966292,41.082677],[-74.768843,40.906139],[-74.807693,40.876106],[-74.803054,40.854225],[-74.819297,40.826428],[-74.849167,40.807545],[-74.856431,40.791813],[-74.877077,40.791786],[-74.882974,40.78011],[-74.90877,40.772015],[-74.916812,40.751309],[-74.936,40.740803],[-74.96262,40.709123],[-75.002858,40.685872],[-75.039381,40.681596],[-75.090743,40.650819],[-75.109054,40.628934],[-75.142052,40.620477],[-75.193513,40.583769],[-75.200388,40.614743]]]},"id":34041},
{"type":"Feature","properties":{"name":"Tooele"},"geometry":{"type":"Polygon","coordinates":[[[-112.17837,40.008162],[-112.221134,39.988912],[-112.234028,39.95762],[-112.305295,39.942601],[-112.331961,39.948136],[-112.34503,39.904137],[-113.434532,39.908934],[-113.464333,39.900702],[-113.487878,39.909983],[-113.578381,39.899324],[-113.602643,39.906336],[-114.039845,39.908779],[-114.038108,40.111047],[-114.038151,40.997687],[-112.837326,40.999083],[-112.495874,41.078317],[-112.494714,41.077367],[-112.253543,40.770654],[-112.194901,40.703505],[-112.184585,40.631812],[-112.165861,40.60385],[-112.174627,40.465679],[-112.201971,40.463996],[-112.209128,40.447467],[-112.181814,40.341538],[-112.198287,40.312199],[-112.187583,40.291814],[-112.191916,40.263371],[-112.178687,40.253789],[-112.178771,40.225641],[-112.156455,40.207991],[-112.147841,40.174967],[-112.150321,40.165072],[-112.175491,40.14924],[-112.176896,40.128412],[-112.156342,40.094027],[-112.184237,40.055143],[-112.175257,40.036642],[-112.17837,40.008162]]]},"id":49045},
{"type":"Feature","properties":{"name":"Morris"},"geometry":{"type":"Polygon","coordinates":[[[-74.728916,40.71377],[-74.772641,40.72833],[-74.828956,40.73134],[-74.829742,40.742696],[-74.882974,40.78011],[-74.877077,40.791786],[-74.856431,40.791813],[-74.849167,40.807545],[-74.819297,40.826428],[-74.803054,40.854225],[-74.807693,40.876106],[-74.768843,40.906139],[-74.737012,40.91135],[-74.708843,40.900753],[-74.655467,40.912277],[-74.637934,40.939571],[-74.64461,40.955153],[-74.50746,41.075014],[-74.495985,41.072477],[-74.499273,41.038054],[-74.485715,41.027296],[-74.472295,41.041956],[-74.445957,41.044958],[-74.430537,41.035055],[-74.433147,41.016962],[-74.381951,41.003466],[-74.357986,41.008326],[-74.291181,40.990321],[-74.276127,40.946361],[-74.288053,40.924873],[-74.272328,40.909496],[-74.270321,40.886753],[-74.29218,40.900921],[-74.330504,40.90097],[-74.335646,40.894748],[-74.337951,40.870297],[-74.312429,40.856495],[-74.37442,40.774068],[-74.375137,40.757749],[-74.36145,40.751512],[-74.37516,40.729612],[-74.458361,40.671271],[-74.461832,40.660918],[-74.519696,40.640056],[-74.53085,40.663005],[-74.51241,40.69797],[-74.552183,40.733388],[-74.557707,40.748201],[-74.728916,40.71377]]]},"id":34027},
{"type":"Feature","properties":{"name":"Des Moines"},"geometry":{"type":"Polygon","coordinates":[[[-91.120132,40.705443],[-91.165323,40.71892],[-91.196093,40.712161],[-91.253392,40.748583],[-91.27348,40.751481],[-91.286596,40.766267],[-91.356948,40.78749],[-91.404367,40.81265],[-91.375191,40.81172],[-91.373614,41.074008],[-90.954794,41.070397],[-90.960851,40.950542],[-90.983419,40.923965],[-91.049354,40.879623],[-91.08905,40.833768],[-91.092895,40.761587],[-91.120132,40.705443]]]},"id":19057},
{"type":"Feature","properties":{"name":"Henderson"},"geometry":{"type":"Polygon","coordinates":[[[-91.21506,40.643859],[-91.162644,40.656352],[-91.129303,40.682189],[-91.120132,40.705443],[-91.092895,40.761587],[-91.08905,40.833768],[-91.049354,40.879623],[-90.983419,40.923965],[-90.960851,40.950542],[-90.954794,41.070397],[-90.790209,41.068537],[-90.799368,40.638361],[-90.91327,40.639415],[-91.21506,40.643859]]]},"id":17071},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-90.45156,40.63011],[-90.799368,40.638361],[-90.790209,41.068537],[-90.444635,41.066573],[-90.450821,40.710401],[-90.45156,40.63011]]]},"id":17187},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-95.85179,40.7926],[-96.453673,40.785255],[-96.457318,41.016176],[-96.351707,41.017862],[-96.349511,41.039583],[-96.308977,41.043391],[-96.276758,41.025263],[-96.207109,41.002394],[-96.172456,41.009127],[-96.10721,41.049098],[-96.068888,41.063376],[-96.030283,41.065364],[-95.984513,41.057483],[-95.878805,41.065871],[-95.859539,41.035003],[-95.860897,41.002651],[-95.837603,40.974258],[-95.836541,40.901108],[-95.834397,40.870301],[-95.846436,40.848332],[-95.85179,40.7926]]]},"id":31025},
{"type":"Feature","properties":{"name":"Ashland"},"geometry":{"type":"Polygon","coordinates":[[[-82.21738,40.570016],[-82.33174,40.558895],[-82.332144,40.725549],[-82.380761,40.72596],[-82.383004,40.794002],[-82.405863,40.808109],[-82.411106,40.989157],[-82.427578,40.989427],[-82.42706,41.060773],[-82.330055,41.060849],[-82.165801,41.05879],[-82.168038,40.991022],[-82.127737,40.989771],[-82.123403,40.671561],[-82.218394,40.667613],[-82.21738,40.570016]]]},"id":39005},
{"type":"Feature","properties":{"name":"Wabash"},"geometry":{"type":"Polygon","coordinates":[[[-85.643205,40.670808],[-85.866784,40.662879],[-85.943996,40.658713],[-85.948341,41.008829],[-85.94947,41.046995],[-85.686095,41.047115],[-85.687514,41.009468],[-85.642491,41.008113],[-85.643205,40.670808]]]},"id":18169},
{"type":"Feature","properties":{"name":"Seward"},"geometry":{"type":"Polygon","coordinates":[[[-97.363569,40.698276],[-97.362308,41.042879],[-96.904209,41.044894],[-96.905837,40.700692],[-97.363569,40.698276]]]},"id":31159},
{"type":"Feature","properties":{"name":"Lancaster"},"geometry":{"type":"Polygon","coordinates":[[[-96.45621,40.527366],[-96.905128,40.524025],[-96.905837,40.700692],[-96.904209,41.044894],[-96.459029,41.043509],[-96.457318,41.016176],[-96.453673,40.785255],[-96.45621,40.527366]]]},"id":31109},
{"type":"Feature","properties":{"name":"Buffalo"},"geometry":{"type":"Polygon","coordinates":[[[-99.406094,40.668078],[-99.406017,40.691214],[-99.417439,40.694578],[-99.4157,41.043481],[-99.199361,41.044302],[-98.745426,41.04257],[-98.720477,41.041578],[-98.721138,40.698947],[-98.722847,40.686278],[-98.893844,40.653151],[-99.172664,40.651764],[-99.277862,40.659546],[-99.316354,40.669288],[-99.406094,40.668078]]]},"id":31019},
{"type":"Feature","properties":{"name":"Dawson"},"geometry":{"type":"Polygon","coordinates":[[[-99.976453,40.694346],[-100.214667,40.69653],[-100.21692,41.041803],[-99.4157,41.043481],[-99.417439,40.694578],[-99.406017,40.691214],[-99.406094,40.668078],[-99.639061,40.682594],[-99.681803,40.694099],[-99.976453,40.694346]]]},"id":31047},
{"type":"Feature","properties":{"name":"York"},"geometry":{"type":"Polygon","coordinates":[[[-97.363569,40.698276],[-97.81851,40.70003],[-97.820859,41.041495],[-97.362308,41.042879],[-97.363569,40.698276]]]},"id":31185},
{"type":"Feature","properties":{"name":"Hall"},"geometry":{"type":"Polygon","coordinates":[[[-98.721138,40.698947],[-98.720477,41.041578],[-98.281749,41.039884],[-98.273463,40.994279],[-98.274538,40.877194],[-98.274658,40.700643],[-98.721138,40.698947]]]},"id":31079},
{"type":"Feature","properties":{"name":"Huntington"},"geometry":{"type":"Polygon","coordinates":[[[-85.643205,40.670808],[-85.642491,41.008113],[-85.34438,41.010095],[-85.343746,40.927426],[-85.341159,40.670803],[-85.455135,40.671763],[-85.643205,40.670808]]]},"id":18069},
{"type":"Feature","properties":{"name":"Iroquois"},"geometry":{"type":"Polygon","coordinates":[[[-87.94006,40.484826],[-88.118238,40.492337],[-88.131388,41.00419],[-87.532053,41.009963],[-87.532696,40.745448],[-87.537191,40.494646],[-87.94006,40.484826]]]},"id":17075},
{"type":"Feature","properties":{"name":"Miami"},"geometry":{"type":"Polygon","coordinates":[[[-85.865524,40.58069],[-86.161737,40.579305],[-86.170704,40.91859],[-86.170278,41.005284],[-85.948341,41.008829],[-85.943996,40.658713],[-85.866784,40.662879],[-85.865524,40.58069]]]},"id":18103},
{"type":"Feature","properties":{"name":"Ford"},"geometry":{"type":"Polygon","coordinates":[[[-87.938213,40.403615],[-88.464757,40.400401],[-88.463382,40.619453],[-88.240466,40.622883],[-88.250762,41.002695],[-88.131388,41.00419],[-88.118238,40.492337],[-87.94006,40.484826],[-87.938213,40.403615]]]},"id":17053},
{"type":"Feature","properties":{"name":"Moffat"},"geometry":{"type":"Polygon","coordinates":[[[-107.436162,40.212418],[-109.051263,40.210511],[-109.046156,40.665291],[-109.048315,40.998433],[-107.918671,41.003375],[-107.304051,41.000133],[-107.309003,40.599986],[-107.370741,40.598501],[-107.372305,40.536632],[-107.421203,40.53435],[-107.436162,40.212418]]]},"id":8081},
{"type":"Feature","properties":{"name":"Weld"},"geometry":{"type":"Polygon","coordinates":[[[-104.140788,39.99554],[-104.965467,39.994692],[-104.958513,40.046446],[-104.981906,40.043917],[-104.99139,40.00788],[-105.052006,39.997608],[-105.05411,40.258449],[-105.052164,40.340636],[-104.941899,40.344595],[-104.934493,40.994289],[-104.051706,41.003211],[-103.572316,40.999648],[-103.570023,40.69205],[-103.579087,40.690994],[-103.578206,40.515443],[-104.132083,40.511498],[-104.140788,39.99554]]]},"id":8123},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-106.64699,40.417861],[-106.671138,40.442309],[-106.665897,40.495207],[-106.698804,40.547909],[-106.70377,40.615836],[-106.678912,40.640929],[-106.676577,40.675547],[-106.660875,40.701624],[-106.662232,40.753808],[-106.637924,40.795677],[-106.641364,40.80962],[-106.658348,40.82574],[-106.66201,40.851031],[-106.673859,40.863268],[-106.732905,40.863581],[-106.748744,40.88019],[-106.806333,40.893247],[-106.817708,40.915036],[-106.855002,40.93301],[-106.865317,40.956657],[-106.852552,40.98128],[-106.865439,40.998457],[-106.329126,41.001289],[-106.203471,41.000085],[-106.196377,40.939028],[-106.179111,40.917406],[-106.13791,40.892573],[-106.141092,40.876105],[-106.129282,40.844287],[-106.085632,40.818169],[-106.060958,40.812698],[-106.036864,40.759064],[-106.005926,40.750177],[-105.904186,40.558961],[-105.900868,40.515035],[-105.85567,40.508425],[-105.847636,40.476015],[-105.890759,40.45909],[-105.8998,40.399756],[-105.933478,40.3777],[-105.93112,40.359168],[-105.946166,40.348651],[-105.98166,40.356025],[-106.036616,40.35588],[-106.067539,40.338874],[-106.208994,40.322787],[-106.264286,40.346136],[-106.304502,40.342344],[-106.35105,40.351915],[-106.382362,40.341627],[-106.440691,40.346624],[-106.48891,40.396951],[-106.536451,40.359644],[-106.599251,40.36757],[-106.64699,40.417861]]]},"id":8057},
{"type":"Feature","properties":{"name":"Perkins"},"geometry":{"type":"Polygon","coordinates":[[[-101.341016,40.697487],[-102.046031,40.697319],[-102.046992,40.74313],[-102.047739,40.998071],[-101.245356,41.000809],[-101.24341,40.697782],[-101.341016,40.697487]]]},"id":31135},
{"type":"Feature","properties":{"name":"Logan"},"geometry":{"type":"Polygon","coordinates":[[[-102.777832,40.431704],[-103.45611,40.429836],[-103.458443,40.51508],[-103.578206,40.515443],[-103.579087,40.690994],[-103.570023,40.69205],[-103.572316,40.999648],[-103.382957,41.000316],[-102.652271,40.998124],[-102.651728,40.739991],[-102.651645,40.697353],[-102.663761,40.696789],[-102.661274,40.432826],[-102.777832,40.431704]]]},"id":8075},
{"type":"Feature","properties":{"name":"Sedgwick"},"geometry":{"type":"Polygon","coordinates":[[[-102.651728,40.739991],[-102.652271,40.998124],[-102.621257,41.000215],[-102.047739,40.998071],[-102.046992,40.74313],[-102.651728,40.739991]]]},"id":8115},
{"type":"Feature","properties":{"name":"Routt"},"geometry":{"type":"Polygon","coordinates":[[[-106.633374,39.918009],[-107.030138,39.915238],[-107.035022,40.0876],[-107.035679,40.212929],[-107.436162,40.212418],[-107.421203,40.53435],[-107.372305,40.536632],[-107.370741,40.598501],[-107.309003,40.599986],[-107.304051,41.000133],[-106.865439,40.998457],[-106.852552,40.98128],[-106.865317,40.956657],[-106.855002,40.93301],[-106.817708,40.915036],[-106.806333,40.893247],[-106.748744,40.88019],[-106.732905,40.863581],[-106.673859,40.863268],[-106.66201,40.851031],[-106.658348,40.82574],[-106.641364,40.80962],[-106.637924,40.795677],[-106.662232,40.753808],[-106.660875,40.701624],[-106.676577,40.675547],[-106.678912,40.640929],[-106.70377,40.615836],[-106.698804,40.547909],[-106.665897,40.495207],[-106.671138,40.442309],[-106.64699,40.417861],[-106.648615,40.331506],[-106.637079,40.330617],[-106.633374,39.918009]]]},"id":8107},
{"type":"Feature","properties":{"name":"Larimer"},"geometry":{"type":"Polygon","coordinates":[[[-105.05411,40.258449],[-105.339872,40.257794],[-105.379883,40.250672],[-105.65868,40.254501],[-105.677059,40.269779],[-105.700856,40.325729],[-105.752181,40.346252],[-105.779427,40.367576],[-105.807145,40.416568],[-105.806618,40.457896],[-105.847636,40.476015],[-105.85567,40.508425],[-105.900868,40.515035],[-105.904186,40.558961],[-106.005926,40.750177],[-106.036864,40.759064],[-106.060958,40.812698],[-106.085632,40.818169],[-106.129282,40.844287],[-106.141092,40.876105],[-106.13791,40.892573],[-106.179111,40.917406],[-106.196377,40.939028],[-106.203471,41.000085],[-105.278798,40.996349],[-104.934493,40.994289],[-104.941899,40.344595],[-105.052164,40.340636],[-105.05411,40.258449]]]},"id":8069},
{"type":"Feature","properties":{"name":"Daggett"},"geometry":{"type":"Polygon","coordinates":[[[-109.046156,40.665291],[-109.109131,40.6613],[-109.109132,40.68861],[-109.146838,40.688678],[-109.153911,40.789702],[-109.190915,40.791075],[-109.190243,40.857942],[-109.382542,40.860975],[-109.386738,40.799333],[-109.469649,40.746945],[-109.507347,40.758732],[-109.510209,40.800763],[-109.517457,40.824399],[-109.527978,40.828656],[-109.558924,40.818188],[-109.672615,40.802505],[-109.743258,40.808382],[-109.7728,40.781408],[-109.798176,40.783303],[-109.836972,40.772766],[-109.893072,40.777736],[-109.972579,40.804453],[-109.996086,40.813028],[-110.002165,40.997599],[-109.048315,40.998433],[-109.046156,40.665291]]]},"id":49009},
{"type":"Feature","properties":{"name":"Crawford"},"geometry":{"type":"Polygon","coordinates":[[[-82.857105,40.704476],[-83.105321,40.702386],[-83.104766,40.987784],[-82.850652,40.989623],[-82.82848,40.994643],[-82.71968,40.990969],[-82.725951,40.71267],[-82.857151,40.713105],[-82.857105,40.704476]]]},"id":39033},
{"type":"Feature","properties":{"name":"Lander"},"geometry":{"type":"Polygon","coordinates":[[[-116.583191,39.159171],[-117.343877,39.157582],[-117.765675,39.093152],[-117.781454,39.127503],[-117.772932,39.162457],[-117.760617,39.176586],[-117.731632,39.186275],[-117.706554,39.23175],[-117.741393,39.328093],[-117.741188,39.366175],[-117.730552,39.373942],[-117.700765,39.370486],[-117.67764,39.379226],[-117.670712,39.402835],[-117.632732,39.416633],[-117.626903,39.43162],[-117.641476,39.463278],[-117.585108,39.492568],[-117.5758,39.52162],[-117.554902,39.518088],[-117.508437,39.525088],[-117.48512,39.516566],[-117.458547,39.557917],[-117.464117,39.589174],[-117.447004,39.620061],[-117.465049,39.640397],[-117.456993,39.688931],[-117.466302,39.742393],[-117.488649,39.774039],[-117.481272,39.83346],[-117.462305,39.864809],[-117.463153,39.903799],[-117.473606,39.94275],[-117.494832,39.97667],[-117.534606,39.998272],[-117.294248,40.52915],[-117.24323,40.64264],[-117.010626,40.642874],[-117.007029,40.99352],[-116.583952,40.994198],[-116.583191,39.159171]]]},"id":32015},
{"type":"Feature","properties":{"name":"Eureka"},"geometry":{"type":"Polygon","coordinates":[[[-115.899573,39.161796],[-116.583191,39.159171],[-116.583952,40.994198],[-116.150521,40.993863],[-116.154872,40.679979],[-115.98998,40.127752],[-115.822196,40.126751],[-115.818281,40.036027],[-115.826292,40.023858],[-115.815449,39.952569],[-115.782984,39.850697],[-115.79854,39.815934],[-115.798929,39.756997],[-115.823458,39.720505],[-115.809143,39.609754],[-115.808319,39.587076],[-115.82486,39.560937],[-115.816253,39.540003],[-115.862756,39.466089],[-115.897303,39.42832],[-115.899573,39.161796]]]},"id":32011},
{"type":"Feature","properties":{"name":"Richland"},"geometry":{"type":"Polygon","coordinates":[[[-82.622123,40.552932],[-82.620774,40.635198],[-82.639719,40.637155],[-82.63946,40.667146],[-82.618211,40.667096],[-82.622721,40.712792],[-82.725951,40.71267],[-82.71968,40.990969],[-82.427578,40.989427],[-82.411106,40.989157],[-82.405863,40.808109],[-82.383004,40.794002],[-82.380761,40.72596],[-82.332144,40.725549],[-82.33174,40.558895],[-82.389343,40.550781],[-82.622123,40.552932]]]},"id":39139},
{"type":"Feature","properties":{"name":"Wayne"},"geometry":{"type":"Polygon","coordinates":[[[-81.642053,40.666849],[-82.123403,40.671561],[-82.127737,40.989771],[-81.679521,40.984369],[-81.638015,40.983],[-81.638168,40.912611],[-81.642053,40.666849]]]},"id":39169},
{"type":"Feature","properties":{"name":"Van Wert"},"geometry":{"type":"Polygon","coordinates":[[[-84.329602,40.854718],[-84.332387,40.814091],[-84.38854,40.815605],[-84.389373,40.686397],[-84.445251,40.686076],[-84.446861,40.727374],[-84.793061,40.72886],[-84.791023,40.937708],[-84.790527,40.988341],[-84.387507,40.986679],[-84.384999,40.904488],[-84.332065,40.905522],[-84.329602,40.854718]]]},"id":39161},
{"type":"Feature","properties":{"name":"Wyandot"},"geometry":{"type":"Polygon","coordinates":[[[-83.105321,40.702386],[-83.297771,40.701461],[-83.298252,40.685077],[-83.417274,40.685034],[-83.433716,40.685629],[-83.434815,40.698756],[-83.485903,40.699537],[-83.488108,40.81215],[-83.508227,40.812562],[-83.506847,40.903989],[-83.475176,40.904119],[-83.473193,40.945577],[-83.450685,40.946176],[-83.450358,40.985738],[-83.416871,40.986391],[-83.104766,40.987784],[-83.105321,40.702386]]]},"id":39175},
{"type":"Feature","properties":{"name":"Stark"},"geometry":{"type":"Polygon","coordinates":[[[-81.314706,40.647156],[-81.436141,40.650257],[-81.437369,40.661564],[-81.456772,40.661415],[-81.472611,40.65184],[-81.641862,40.632354],[-81.642053,40.666849],[-81.638168,40.912611],[-81.41267,40.907028],[-81.405908,40.983062],[-81.381608,40.98426],[-81.080682,40.983991],[-81.078332,40.901429],[-81.083392,40.724707],[-81.198069,40.724143],[-81.197009,40.715548],[-81.231595,40.715445],[-81.236455,40.646309],[-81.314706,40.647156]]]},"id":39151},
{"type":"Feature","properties":{"name":"Peoria"},"geometry":{"type":"Polygon","coordinates":[[[-89.993103,40.719802],[-89.989424,40.978843],[-89.649199,40.977881],[-89.454451,40.975691],[-89.462989,40.93804],[-89.479416,40.923525],[-89.509209,40.87136],[-89.559604,40.817813],[-89.563831,40.792411],[-89.55408,40.7466],[-89.548618,40.731635],[-89.555874,40.711673],[-89.573438,40.690345],[-89.621292,40.668991],[-89.620042,40.64677],[-89.656917,40.611351],[-89.659275,40.581414],[-89.672551,40.566884],[-89.808626,40.549847],[-89.875592,40.514741],[-89.869945,40.592312],[-89.883267,40.593182],[-89.879856,40.635372],[-89.991311,40.635895],[-89.993103,40.719802]]]},"id":17143},
{"type":"Feature","properties":{"name":"Northampton"},"geometry":{"type":"Polygon","coordinates":[[[-75.34506,40.537438],[-75.40969,40.582069],[-75.395942,40.617225],[-75.436844,40.668711],[-75.488283,40.650022],[-75.490259,40.665937],[-75.516886,40.689034],[-75.541041,40.736595],[-75.563884,40.721974],[-75.610089,40.740814],[-75.618551,40.787673],[-75.483042,40.813723],[-75.299964,40.861511],[-75.247298,40.912315],[-75.135525,40.962937],[-75.079736,40.903349],[-75.073686,40.884626],[-75.056488,40.872046],[-75.054619,40.855673],[-75.099542,40.839285],[-75.089211,40.821391],[-75.100541,40.791659],[-75.130319,40.772708],[-75.170313,40.774809],[-75.193644,40.748004],[-75.187754,40.723857],[-75.205355,40.686062],[-75.184061,40.669792],[-75.208918,40.650738],[-75.197939,40.634206],[-75.200388,40.614743],[-75.34506,40.537438]]]},"id":42095},
{"type":"Feature","properties":{"name":"Pershing"},"geometry":{"type":"Polygon","coordinates":[[[-117.534606,39.998272],[-118.670365,39.994215],[-119.208593,40.003154],[-119.318514,40.003897],[-119.305165,40.953176],[-118.785432,40.95153],[-118.784141,40.852181],[-117.636419,40.852203],[-117.633679,40.681208],[-117.296089,40.679717],[-117.294248,40.52915],[-117.534606,39.998272]]]},"id":32027},
{"type":"Feature","properties":{"name":"Schuylkill"},"geometry":{"type":"Polygon","coordinates":[[[-76.540769,40.556645],[-76.69043,40.643865],[-76.697533,40.657972],[-76.696869,40.663412],[-76.390306,40.776779],[-76.313939,40.806484],[-76.286491,40.884708],[-76.211145,40.949755],[-76.029611,40.901964],[-75.997162,40.912474],[-75.915645,40.83209],[-75.765436,40.739398],[-75.894131,40.682115],[-75.998113,40.638023],[-76.018654,40.582471],[-76.06454,40.588444],[-76.079991,40.572743],[-76.13768,40.562485],[-76.176852,40.538861],[-76.300013,40.517406],[-76.326572,40.520381],[-76.438204,40.495963],[-76.540769,40.556645]]]},"id":42107},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-85.073921,40.588661],[-85.078056,40.931646],[-84.791023,40.937708],[-84.793061,40.72886],[-84.793252,40.588738],[-85.073921,40.588661]]]},"id":18001},
{"type":"Feature","properties":{"name":"Wells"},"geometry":{"type":"Polygon","coordinates":[[[-85.073921,40.588661],[-85.19581,40.586956],[-85.45251,40.589963],[-85.455135,40.671763],[-85.341159,40.670803],[-85.343746,40.927426],[-85.078056,40.931646],[-85.073921,40.588661]]]},"id":18179},
{"type":"Feature","properties":{"name":"Woodford"},"geometry":{"type":"Polygon","coordinates":[[[-89.55408,40.7466],[-89.563831,40.792411],[-89.559604,40.817813],[-89.509209,40.87136],[-89.479416,40.923525],[-89.057948,40.928199],[-88.936301,40.929533],[-88.931009,40.75486],[-88.987431,40.754647],[-88.989293,40.664392],[-89.043235,40.662782],[-89.044052,40.629674],[-89.104022,40.628061],[-89.104701,40.614912],[-89.138607,40.615465],[-89.138066,40.601858],[-89.274897,40.59991],[-89.27666,40.617145],[-89.331761,40.617687],[-89.335094,40.745146],[-89.55408,40.7466]]]},"id":17203},
{"type":"Feature","properties":{"name":"Columbiana"},"geometry":{"type":"Polygon","coordinates":[[[-80.855229,40.596605],[-80.852978,40.638871],[-80.913101,40.641346],[-80.91159,40.72354],[-81.083392,40.724707],[-81.078332,40.901429],[-80.893866,40.898767],[-80.894087,40.92872],[-80.813768,40.929022],[-80.812372,40.899099],[-80.520924,40.897271],[-80.520306,40.854169],[-80.522,40.637203],[-80.574416,40.615974],[-80.61155,40.620063],[-80.637338,40.613982],[-80.667728,40.582137],[-80.739577,40.584181],[-80.738882,40.595541],[-80.855229,40.596605]]]},"id":39029},
{"type":"Feature","properties":{"name":"Bronx"},"geometry":{"type":"Polygon","coordinates":[[[-73.919862,40.802805],[-73.923074,40.82253],[-73.905426,40.845204],[-73.90052,40.877858],[-73.922394,40.88604],[-73.908966,40.927314],[-73.837858,40.908188],[-73.824522,40.892746],[-73.780041,40.886689],[-73.796346,40.832334],[-73.919862,40.802805]]]},"id":36005},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-86.161737,40.579305],[-86.372548,40.577419],[-86.377341,40.70279],[-86.522296,40.703095],[-86.524777,40.745355],[-86.582984,40.746705],[-86.588768,40.916579],[-86.479237,40.917205],[-86.170704,40.91859],[-86.161737,40.579305]]]},"id":18017},
{"type":"Feature","properties":{"name":"White"},"geometry":{"type":"Polygon","coordinates":[[[-87.100296,40.576948],[-87.101924,40.744401],[-87.103398,40.844712],[-86.986041,40.846982],[-86.986553,40.91824],[-86.931193,40.918496],[-86.588768,40.916579],[-86.582984,40.746705],[-86.748631,40.747682],[-86.766911,40.729924],[-86.773899,40.706025],[-86.765926,40.676807],[-86.775646,40.676109],[-86.777025,40.576769],[-87.100296,40.576948]]]},"id":18181},
{"type":"Feature","properties":{"name":"Salt Lake"},"geometry":{"type":"Polygon","coordinates":[[[-111.586035,40.582677],[-111.602103,40.570646],[-111.634538,40.566571],[-111.67094,40.54176],[-111.77102,40.523677],[-111.814578,40.482772],[-111.83797,40.47737],[-111.845691,40.462695],[-111.874096,40.471576],[-111.944899,40.420379],[-111.977271,40.415767],[-112.041429,40.458261],[-112.055437,40.456991],[-112.065935,40.445142],[-112.111103,40.439175],[-112.125179,40.445622],[-112.131413,40.469475],[-112.174627,40.465679],[-112.165861,40.60385],[-112.184585,40.631812],[-112.194901,40.703505],[-112.253543,40.770654],[-112.005566,40.918313],[-111.951999,40.91802],[-111.955782,40.85639],[-111.928895,40.823977],[-111.82559,40.831168],[-111.755291,40.852367],[-111.741069,40.86359],[-111.707575,40.847664],[-111.68654,40.852237],[-111.663765,40.847649],[-111.659568,40.830662],[-111.634016,40.814595],[-111.644743,40.801415],[-111.642622,40.77316],[-111.625768,40.762906],[-111.618916,40.733083],[-111.589571,40.703669],[-111.596299,40.66307],[-111.54984,40.612016],[-111.563092,40.589418],[-111.586035,40.582677]]]},"id":49035},
{"type":"Feature","properties":{"name":"Allen"},"geometry":{"type":"Polygon","coordinates":[[[-83.878593,40.641294],[-84.102867,40.643898],[-84.102799,40.656178],[-84.213901,40.655796],[-84.21487,40.685299],[-84.389373,40.686397],[-84.38854,40.815605],[-84.332387,40.814091],[-84.329602,40.854718],[-84.106201,40.856069],[-84.106224,40.901998],[-83.98676,40.901782],[-83.986058,40.914095],[-83.872849,40.915725],[-83.873307,40.812495],[-83.878593,40.641294]]]},"id":39003},
{"type":"Feature","properties":{"name":"Indiana"},"geometry":{"type":"Polygon","coordinates":[[[-78.982294,40.394657],[-79.003253,40.415271],[-79.035991,40.421225],[-79.046276,40.394343],[-79.061695,40.381454],[-79.087056,40.382045],[-79.121747,40.367999],[-79.130949,40.374682],[-79.128454,40.397394],[-79.147574,40.388983],[-79.161872,40.406484],[-79.20533,40.405904],[-79.242113,40.428532],[-79.265886,40.412781],[-79.277888,40.433933],[-79.296031,40.435035],[-79.304935,40.452598],[-79.326145,40.455016],[-79.333607,40.463073],[-79.365514,40.458521],[-79.38207,40.44467],[-79.407049,40.452464],[-79.413977,40.46279],[-79.431594,40.46615],[-79.438087,40.482835],[-79.455017,40.483026],[-79.463562,40.507844],[-79.458077,40.52834],[-79.221745,40.785812],[-79.220639,40.915585],[-78.806974,40.908251],[-78.807339,40.730416],[-78.846605,40.626128],[-78.982294,40.394657]]]},"id":42063},
{"type":"Feature","properties":{"name":"Fremont"},"geometry":{"type":"Polygon","coordinates":[[[-95.394893,40.908703],[-95.399214,40.733976],[-95.384573,40.733293],[-95.382555,40.584334],[-95.76748,40.589048],[-95.757546,40.620904],[-95.767999,40.643117],[-95.876616,40.730436],[-95.85179,40.7926],[-95.846436,40.848332],[-95.834397,40.870301],[-95.836541,40.901108],[-95.394893,40.908703]]]},"id":19071},
{"type":"Feature","properties":{"name":"Page"},"geometry":{"type":"Polygon","coordinates":[[[-94.920616,40.577218],[-95.217428,40.581893],[-95.382555,40.584334],[-95.384573,40.733293],[-95.399214,40.733976],[-95.394893,40.908703],[-94.934927,40.907364],[-94.937922,40.732304],[-94.918947,40.730389],[-94.920616,40.577218]]]},"id":19145},
{"type":"Feature","properties":{"name":"Taylor"},"geometry":{"type":"Polygon","coordinates":[[[-94.482204,40.903179],[-94.485231,40.574205],[-94.639876,40.575745],[-94.920616,40.577218],[-94.918947,40.730389],[-94.937922,40.732304],[-94.934927,40.907364],[-94.482204,40.903179]]]},"id":19173},
{"type":"Feature","properties":{"name":"Ringgold"},"geometry":{"type":"Polygon","coordinates":[[[-94.238392,40.570966],[-94.485231,40.574205],[-94.482204,40.903179],[-94.017027,40.901468],[-94.018059,40.574022],[-94.238392,40.570966]]]},"id":19159},
{"type":"Feature","properties":{"name":"Nassau"},"geometry":{"type":"Polygon","coordinates":[[[-73.47809,40.879745],[-73.455193,40.858135],[-73.422526,40.661325],[-73.752209,40.594587],[-73.742298,40.600042],[-73.748303,40.615926],[-73.761395,40.618238],[-73.764935,40.636933],[-73.74033,40.643575],[-73.738468,40.654462],[-73.72816,40.656705],[-73.72607,40.728366],[-73.704821,40.73331],[-73.701144,40.743277],[-73.70473,40.756442],[-73.745907,40.777396],[-73.753918,40.788851],[-73.749477,40.844999],[-73.598272,40.903144],[-73.47809,40.879745]]]},"id":36059},
{"type":"Feature","properties":{"name":"Davis"},"geometry":{"type":"Polygon","coordinates":[[[-92.646432,40.591462],[-92.64251,40.900618],[-92.183949,40.901586],[-92.193174,40.600089],[-92.361513,40.599576],[-92.646432,40.591462]]]},"id":19051},
{"type":"Feature","properties":{"name":"Van Buren"},"geometry":{"type":"Polygon","coordinates":[[[-92.193174,40.600089],[-92.183949,40.901586],[-91.716741,40.89697],[-91.715885,40.811225],[-91.716976,40.593435],[-91.741712,40.609784],[-91.94637,40.608267],[-92.193174,40.600089]]]},"id":19177},
{"type":"Feature","properties":{"name":"Decatur"},"geometry":{"type":"Polygon","coordinates":[[[-94.018059,40.574022],[-94.017027,40.901468],[-93.562396,40.900903],[-93.56291,40.580814],[-93.786304,40.578449],[-94.018059,40.574022]]]},"id":19053},
{"type":"Feature","properties":{"name":"Wayne"},"geometry":{"type":"Polygon","coordinates":[[[-93.370271,40.580491],[-93.56291,40.580814],[-93.562396,40.900903],[-93.099371,40.900766],[-93.100939,40.584347],[-93.370271,40.580491]]]},"id":19185},
{"type":"Feature","properties":{"name":"Essex"},"geometry":{"type":"Polygon","coordinates":[[[-74.14357,40.776354],[-74.163193,40.746462],[-74.161362,40.733702],[-74.124931,40.734099],[-74.115531,40.705627],[-74.146858,40.67548],[-74.194658,40.683288],[-74.221872,40.698066],[-74.281841,40.713213],[-74.320768,40.711016],[-74.37516,40.729612],[-74.36145,40.751512],[-74.375137,40.757749],[-74.37442,40.774068],[-74.312429,40.856495],[-74.337951,40.870297],[-74.335646,40.894748],[-74.330504,40.90097],[-74.29218,40.900921],[-74.270321,40.886753],[-74.127914,40.811795],[-74.14357,40.776354]]]},"id":34013},
{"type":"Feature","properties":{"name":"Appanoose"},"geometry":{"type":"Polygon","coordinates":[[[-93.100939,40.584347],[-93.099371,40.900766],[-92.64251,40.900618],[-92.646432,40.591462],[-92.717815,40.589667],[-93.100939,40.584347]]]},"id":19007},
{"type":"Feature","properties":{"name":"Snyder"},"geometry":{"type":"Polygon","coordinates":[[[-76.938237,40.637948],[-76.958715,40.653005],[-77.004234,40.640946],[-77.038522,40.677814],[-77.094264,40.680724],[-77.10873,40.695734],[-77.155476,40.681352],[-77.300881,40.698445],[-77.359065,40.706228],[-77.360062,40.811462],[-77.065806,40.873411],[-77.031886,40.856509],[-77.012918,40.875492],[-76.994714,40.871792],[-76.939902,40.88744],[-76.908956,40.880498],[-76.828081,40.885083],[-76.812906,40.88228],[-76.813296,40.842362],[-76.843938,40.813493],[-76.864898,40.778218],[-76.849624,40.722798],[-76.895548,40.671315],[-76.922939,40.65693],[-76.938237,40.637948]]]},"id":42109},
{"type":"Feature","properties":{"name":"New York"},"geometry":{"type":"Polygon","coordinates":[[[-73.977061,40.797487],[-73.922394,40.88604],[-73.90052,40.877858],[-73.905426,40.845204],[-73.923074,40.82253],[-73.919862,40.802805],[-74.006183,40.704002],[-74.00626,40.737731],[-73.977061,40.797487]]]},"id":36061},
{"type":"Feature","properties":{"name":"Uintah"},"geometry":{"type":"Polygon","coordinates":[[[-109.052552,39.657382],[-109.053529,39.51817],[-109.074007,39.517064],[-109.072916,39.510628],[-109.088709,39.508446],[-109.08787,39.499752],[-109.100993,39.500126],[-109.101435,39.490605],[-109.112132,39.49128],[-109.114299,39.45503],[-109.131718,39.454312],[-109.132061,39.445691],[-110.011269,39.455799],[-110.009607,39.485248],[-110.040683,39.522438],[-110.02186,39.537754],[-110.028643,39.560402],[-110.016489,39.574722],[-110.020991,39.589977],[-109.992365,39.619735],[-110.000483,39.634734],[-109.981248,39.64775],[-109.97825,39.666217],[-109.997942,39.673232],[-109.965531,39.698233],[-109.979006,39.719901],[-109.959077,39.727416],[-109.944481,39.711139],[-109.942978,39.726508],[-109.920318,39.743415],[-109.916785,39.773219],[-109.924705,39.796397],[-109.90351,39.786105],[-109.886587,39.793326],[-109.870923,39.78789],[-109.863591,39.795203],[-109.884474,39.808665],[-109.973329,39.80868],[-109.972579,40.804453],[-109.893072,40.777736],[-109.836972,40.772766],[-109.798176,40.783303],[-109.7728,40.781408],[-109.743258,40.808382],[-109.672615,40.802505],[-109.558924,40.818188],[-109.527978,40.828656],[-109.517457,40.824399],[-109.510209,40.800763],[-109.507347,40.758732],[-109.469649,40.746945],[-109.386738,40.799333],[-109.382542,40.860975],[-109.190243,40.857942],[-109.190915,40.791075],[-109.153911,40.789702],[-109.146838,40.688678],[-109.109132,40.68861],[-109.109131,40.6613],[-109.046156,40.665291],[-109.051263,40.210511],[-109.052552,39.657382]]]},"id":49047},
{"type":"Feature","properties":{"name":"Beaver"},"geometry":{"type":"Polygon","coordinates":[[[-80.365356,40.479308],[-80.524358,40.478785],[-80.522,40.637203],[-80.520306,40.854169],[-80.159969,40.856769],[-80.149517,40.67457],[-80.154086,40.618212],[-80.365356,40.479308]]]},"id":42007},
{"type":"Feature","properties":{"name":"Mifflin"},"geometry":{"type":"Polygon","coordinates":[[[-77.756795,40.3786],[-77.76341,40.371783],[-77.820724,40.367571],[-77.859971,40.372907],[-77.869142,40.396008],[-77.891505,40.401379],[-77.90253,40.429008],[-77.864679,40.468581],[-77.820107,40.499537],[-77.842722,40.551178],[-77.839151,40.56298],[-77.775864,40.625721],[-77.690628,40.681662],[-77.690636,40.686202],[-77.703354,40.682097],[-77.711274,40.69478],[-77.700371,40.697523],[-77.705857,40.708402],[-77.680413,40.717512],[-77.688936,40.730199],[-77.363623,40.855018],[-77.360062,40.811462],[-77.359065,40.706228],[-77.300881,40.698445],[-77.507589,40.61287],[-77.487606,40.590647],[-77.610379,40.523933],[-77.618229,40.51712],[-77.618786,40.491726],[-77.756795,40.3786]]]},"id":42087},
{"type":"Feature","properties":{"name":"Duchesne"},"geometry":{"type":"Polygon","coordinates":[[[-110.852812,39.812652],[-110.85433,39.893137],[-110.886146,39.893328],[-110.897286,40.680881],[-110.897898,40.709091],[-110.883204,40.731564],[-110.83909,40.721698],[-110.833749,40.713256],[-110.800385,40.712539],[-110.754043,40.742087],[-110.704169,40.749171],[-110.658452,40.743708],[-110.625188,40.768866],[-110.608242,40.761195],[-110.566829,40.761828],[-110.544367,40.774782],[-110.506029,40.768282],[-110.48639,40.776823],[-110.429893,40.782549],[-110.41561,40.792269],[-110.375814,40.788378],[-110.359601,40.792532],[-110.333615,40.823004],[-110.251192,40.83184],[-110.086503,40.809791],[-110.041099,40.819596],[-109.996086,40.813028],[-109.972579,40.804453],[-109.973329,39.80868],[-110.52911,39.802259],[-110.528583,39.808137],[-110.852812,39.812652]]]},"id":49013},
{"type":"Feature","properties":{"name":"Hudson"},"geometry":{"type":"Polygon","coordinates":[[[-73.977061,40.797487],[-74.00626,40.737731],[-74.006183,40.704002],[-74.129058,40.647072],[-74.115531,40.705627],[-74.124931,40.734099],[-74.161362,40.733702],[-74.163193,40.746462],[-74.14357,40.776354],[-74.125457,40.761347],[-74.090048,40.765398],[-74.078085,40.786863],[-74.026509,40.823137],[-74.012546,40.822755],[-74.012028,40.808672],[-73.977061,40.797487]]]},"id":34017},
{"type":"Feature","properties":{"name":"Lee"},"geometry":{"type":"Polygon","coordinates":[[[-91.716976,40.593435],[-91.715885,40.811225],[-91.404367,40.81265],[-91.356948,40.78749],[-91.286596,40.766267],[-91.27348,40.751481],[-91.253392,40.748583],[-91.196093,40.712161],[-91.165323,40.71892],[-91.120132,40.705443],[-91.129303,40.682189],[-91.162644,40.656352],[-91.21506,40.643859],[-91.262211,40.639587],[-91.375763,40.60348],[-91.411271,40.573013],[-91.413026,40.548035],[-91.382256,40.528538],[-91.374946,40.503698],[-91.385551,40.447294],[-91.372908,40.403033],[-91.385909,40.392405],[-91.418969,40.386919],[-91.448747,40.371947],[-91.477038,40.391012],[-91.490314,40.390806],[-91.500378,40.405161],[-91.527692,40.410169],[-91.529607,40.435086],[-91.538847,40.441289],[-91.533208,40.455441],[-91.579383,40.46376],[-91.586029,40.484519],[-91.61686,40.504874],[-91.622537,40.532903],[-91.692081,40.551678],[-91.68996,40.581203],[-91.716976,40.593435]]]},"id":19111},
{"type":"Feature","properties":{"name":"Hardin"},"geometry":{"type":"Polygon","coordinates":[[[-83.421272,40.499896],[-83.514972,40.497744],[-83.516536,40.509031],[-83.877586,40.528611],[-83.878593,40.641294],[-83.873307,40.812495],[-83.508227,40.812562],[-83.488108,40.81215],[-83.485903,40.699537],[-83.434815,40.698756],[-83.433716,40.685629],[-83.417274,40.685034],[-83.414779,40.523826],[-83.421272,40.499896]]]},"id":39065},
{"type":"Feature","properties":{"name":"Queens"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.846061,40.6526],[-73.863815,40.688217],[-73.887459,40.687336],[-73.955607,40.739383],[-73.899018,40.797117],[-73.753918,40.788851],[-73.745907,40.777396],[-73.70473,40.756442],[-73.701144,40.743277],[-73.704821,40.73331],[-73.72607,40.728366],[-73.72816,40.656705],[-73.738468,40.654462],[-73.74033,40.643575],[-73.764935,40.636933],[-73.846061,40.6526]]],[[[-73.761395,40.618238],[-73.748303,40.615926],[-73.742298,40.600042],[-73.752209,40.594587],[-73.927591,40.55765],[-73.761395,40.618238]]]]},"id":36081},
{"type":"Feature","properties":{"name":"Otoe"},"geometry":{"type":"Polygon","coordinates":[[[-96.45621,40.527366],[-96.453673,40.785255],[-95.85179,40.7926],[-95.876616,40.730436],[-95.767999,40.643117],[-95.757546,40.620904],[-95.76748,40.589048],[-95.763412,40.549707],[-95.737036,40.532373],[-96.060701,40.527341],[-96.45621,40.527366]]]},"id":31131},
{"type":"Feature","properties":{"name":"Lehigh"},"geometry":{"type":"Polygon","coordinates":[[[-75.532144,40.444312],[-75.894131,40.682115],[-75.765436,40.739398],[-75.697211,40.774291],[-75.618551,40.787673],[-75.610089,40.740814],[-75.563884,40.721974],[-75.541041,40.736595],[-75.516886,40.689034],[-75.490259,40.665937],[-75.488283,40.650022],[-75.436844,40.668711],[-75.395942,40.617225],[-75.40969,40.582069],[-75.34506,40.537438],[-75.422729,40.487927],[-75.494155,40.420132],[-75.532144,40.444312]]]},"id":42077},
{"type":"Feature","properties":{"name":"Hunterdon"},"geometry":{"type":"Polygon","coordinates":[[[-74.751254,40.418425],[-74.810162,40.410166],[-74.802159,40.382323],[-74.866438,40.374602],[-74.851972,40.34164],[-74.932503,40.333774],[-74.950188,40.345474],[-74.972841,40.404448],[-75.000476,40.408621],[-75.021266,40.401324],[-75.057453,40.420171],[-75.070119,40.456254],[-75.06368,40.521003],[-75.079786,40.545356],[-75.124526,40.564799],[-75.182282,40.556799],[-75.197572,40.570684],[-75.193513,40.583769],[-75.142052,40.620477],[-75.109054,40.628934],[-75.090743,40.650819],[-75.039381,40.681596],[-75.002858,40.685872],[-74.96262,40.709123],[-74.936,40.740803],[-74.916812,40.751309],[-74.90877,40.772015],[-74.882974,40.78011],[-74.829742,40.742696],[-74.828956,40.73134],[-74.772641,40.72833],[-74.728916,40.71377],[-74.724971,40.690542],[-74.732685,40.679365],[-74.722026,40.672781],[-74.738514,40.654078],[-74.727466,40.642043],[-74.733394,40.62992],[-74.712527,40.621295],[-74.728999,40.587173],[-74.712611,40.572746],[-74.74451,40.546223],[-74.77325,40.49104],[-74.799489,40.500676],[-74.751254,40.418425]]]},"id":34019},
{"type":"Feature","properties":{"name":"Suffolk"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.422526,40.661325],[-73.455193,40.858135],[-73.47809,40.879745],[-73.430648,40.922557],[-73.214523,40.901042],[-73.14098,40.951396],[-73.02127,40.968433],[-72.631572,40.981285],[-72.317031,41.149333],[-72.281149,41.142535],[-72.354279,41.110203],[-72.416346,41.02604],[-72.550971,40.96618],[-72.604815,40.905301],[-72.476109,40.920148],[-72.293082,41.024017],[-72.203351,41.035374],[-72.077011,41.000574],[-71.9237,41.084872],[-71.869987,41.074508],[-71.918702,41.030574],[-72.521164,40.815042],[-73.422526,40.661325]]],[[[-73.293059,40.626382],[-73.291144,40.633077],[-73.240437,40.633077],[-73.051023,40.675167],[-72.876906,40.737346],[-72.782199,40.764133],[-72.757327,40.767959],[-72.764025,40.758392],[-72.956316,40.700039],[-73.030934,40.671341],[-73.249051,40.625424],[-73.293059,40.626382]]]]},"id":36103},
{"type":"Feature","properties":{"name":"McLean"},"geometry":{"type":"Polygon","coordinates":[[[-88.464552,40.289744],[-88.575472,40.289245],[-89.154742,40.285813],[-89.268654,40.28562],[-89.269118,40.329607],[-89.274897,40.59991],[-89.138066,40.601858],[-89.138607,40.615465],[-89.104701,40.614912],[-89.104022,40.628061],[-89.044052,40.629674],[-89.043235,40.662782],[-88.989293,40.664392],[-88.987431,40.754647],[-88.931009,40.75486],[-88.585195,40.753296],[-88.577834,40.619431],[-88.463382,40.619453],[-88.464757,40.400401],[-88.464552,40.289744]]]},"id":17113},
{"type":"Feature","properties":{"name":"Somerset"},"geometry":{"type":"Polygon","coordinates":[[[-74.623999,40.368412],[-74.629515,40.381244],[-74.651031,40.386722],[-74.670738,40.377182],[-74.728342,40.370742],[-74.751254,40.418425],[-74.799489,40.500676],[-74.77325,40.49104],[-74.74451,40.546223],[-74.712611,40.572746],[-74.728999,40.587173],[-74.712527,40.621295],[-74.733394,40.62992],[-74.727466,40.642043],[-74.738514,40.654078],[-74.722026,40.672781],[-74.732685,40.679365],[-74.724971,40.690542],[-74.728916,40.71377],[-74.557707,40.748201],[-74.552183,40.733388],[-74.51241,40.69797],[-74.53085,40.663005],[-74.519696,40.640056],[-74.461832,40.660918],[-74.442438,40.646838],[-74.430597,40.654265],[-74.40081,40.656264],[-74.400208,40.642188],[-74.430093,40.609783],[-74.463465,40.59425],[-74.477923,40.58189],[-74.511043,40.571789],[-74.530834,40.547295],[-74.497989,40.522469],[-74.493647,40.510571],[-74.463098,40.503492],[-74.470102,40.48097],[-74.523303,40.43777],[-74.58479,40.411983],[-74.603048,40.378826],[-74.623999,40.368412]]]},"id":34035},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-86.375729,40.435919],[-86.700551,40.443071],[-86.700217,40.574641],[-86.777025,40.576769],[-86.775646,40.676109],[-86.765926,40.676807],[-86.773899,40.706025],[-86.766911,40.729924],[-86.748631,40.747682],[-86.582984,40.746705],[-86.524777,40.745355],[-86.522296,40.703095],[-86.377341,40.70279],[-86.372548,40.577419],[-86.375729,40.435919]]]},"id":18015},
{"type":"Feature","properties":{"name":"Tazewell"},"geometry":{"type":"Polygon","coordinates":[[[-89.269118,40.329607],[-89.610457,40.325237],[-89.717195,40.324192],[-89.722985,40.439821],[-89.930786,40.443365],[-89.907935,40.460676],[-89.890631,40.500638],[-89.875592,40.514741],[-89.808626,40.549847],[-89.672551,40.566884],[-89.659275,40.581414],[-89.656917,40.611351],[-89.620042,40.64677],[-89.621292,40.668991],[-89.573438,40.690345],[-89.555874,40.711673],[-89.548618,40.731635],[-89.55408,40.7466],[-89.335094,40.745146],[-89.331761,40.617687],[-89.27666,40.617145],[-89.274897,40.59991],[-89.269118,40.329607]]]},"id":17179},
{"type":"Feature","properties":{"name":"Blair"},"geometry":{"type":"Polygon","coordinates":[[[-78.268869,40.293534],[-78.297907,40.248915],[-78.43359,40.305572],[-78.446018,40.28825],[-78.451497,40.246942],[-78.506879,40.286869],[-78.53285,40.290741],[-78.621421,40.32672],[-78.606788,40.355417],[-78.561789,40.372129],[-78.564825,40.413826],[-78.555479,40.435218],[-78.563375,40.437877],[-78.545698,40.468409],[-78.53552,40.516568],[-78.503866,40.544487],[-78.478551,40.551033],[-78.470419,40.575587],[-78.445974,40.603441],[-78.448806,40.634259],[-78.44107,40.644753],[-78.415076,40.649021],[-78.361487,40.725597],[-78.371338,40.737777],[-78.140922,40.746405],[-78.126319,40.741942],[-78.135276,40.725571],[-78.175782,40.712204],[-78.19497,40.690782],[-78.209512,40.690251],[-78.222551,40.661147],[-78.171333,40.626508],[-78.187423,40.599665],[-78.179412,40.585193],[-78.196083,40.55653],[-78.188666,40.540242],[-78.170424,40.530367],[-78.141096,40.564984],[-78.153776,40.495529],[-78.12782,40.500198],[-78.132359,40.466161],[-78.208015,40.357375],[-78.268869,40.293534]]]},"id":42013},
{"type":"Feature","properties":{"name":"Benton"},"geometry":{"type":"Polygon","coordinates":[[[-87.537191,40.494646],[-87.532696,40.745448],[-87.265775,40.743761],[-87.101924,40.744401],[-87.100296,40.576948],[-87.101721,40.480794],[-87.535695,40.483282],[-87.537191,40.494646]]]},"id":18007},
{"type":"Feature","properties":{"name":"Phillips"},"geometry":{"type":"Polygon","coordinates":[[[-102.04762,40.431078],[-102.661274,40.432826],[-102.663761,40.696789],[-102.651645,40.697353],[-102.651728,40.739991],[-102.046992,40.74313],[-102.046031,40.697319],[-102.04762,40.431078]]]},"id":8095},
{"type":"Feature","properties":{"name":"Huntingdon"},"geometry":{"type":"Polygon","coordinates":[[[-78.268869,40.293534],[-78.208015,40.357375],[-78.132359,40.466161],[-78.12782,40.500198],[-78.153776,40.495529],[-78.141096,40.564984],[-78.170424,40.530367],[-78.188666,40.540242],[-78.196083,40.55653],[-78.179412,40.585193],[-78.187423,40.599665],[-78.171333,40.626508],[-78.222551,40.661147],[-78.209512,40.690251],[-78.19497,40.690782],[-78.175782,40.712204],[-78.135276,40.725571],[-78.126319,40.741942],[-77.956749,40.690505],[-77.889662,40.726111],[-77.824841,40.740355],[-77.767145,40.721889],[-77.713777,40.721993],[-77.688936,40.730199],[-77.680413,40.717512],[-77.705857,40.708402],[-77.700371,40.697523],[-77.711274,40.69478],[-77.703354,40.682097],[-77.690636,40.686202],[-77.690628,40.681662],[-77.775864,40.625721],[-77.839151,40.56298],[-77.842722,40.551178],[-77.820107,40.499537],[-77.864679,40.468581],[-77.90253,40.429008],[-77.891505,40.401379],[-77.869142,40.396008],[-77.859971,40.372907],[-77.820724,40.367571],[-77.76341,40.371783],[-77.756795,40.3786],[-77.707591,40.266234],[-77.801161,40.164929],[-77.866823,40.063193],[-77.922931,40.102006],[-78.086703,40.132181],[-78.13509,40.162778],[-78.236207,40.223895],[-78.268869,40.293534]]]},"id":42061},
{"type":"Feature","properties":{"name":"Kings"},"geometry":{"type":"Polygon","coordinates":[[[-73.955607,40.739383],[-73.887459,40.687336],[-73.863815,40.688217],[-73.846061,40.6526],[-73.915734,40.631131],[-73.879814,40.590269],[-74.004039,40.581259],[-74.027722,40.639336],[-73.955607,40.739383]]]},"id":36047},
{"type":"Feature","properties":{"name":"Cambria"},"geometry":{"type":"Polygon","coordinates":[[[-79.061984,40.284398],[-79.001429,40.357239],[-78.982294,40.394657],[-78.846605,40.626128],[-78.807339,40.730416],[-78.79082,40.722875],[-78.361487,40.725597],[-78.415076,40.649021],[-78.44107,40.644753],[-78.448806,40.634259],[-78.445974,40.603441],[-78.470419,40.575587],[-78.478551,40.551033],[-78.503866,40.544487],[-78.53552,40.516568],[-78.545698,40.468409],[-78.563375,40.437877],[-78.555479,40.435218],[-78.564825,40.413826],[-78.561789,40.372129],[-78.606788,40.355417],[-78.621421,40.32672],[-78.637451,40.310702],[-78.637046,40.284858],[-78.647796,40.278866],[-78.647484,40.259369],[-78.658798,40.251103],[-78.661537,40.234299],[-78.83263,40.236237],[-78.862325,40.245441],[-78.890547,40.2406],[-78.897665,40.265914],[-78.923934,40.286032],[-79.061984,40.284398]]]},"id":42021},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-74.208253,40.591188],[-74.240045,40.592794],[-74.290203,40.581819],[-74.304592,40.598519],[-74.449243,40.587105],[-74.463465,40.59425],[-74.430093,40.609783],[-74.400208,40.642188],[-74.40081,40.656264],[-74.430597,40.654265],[-74.442438,40.646838],[-74.461832,40.660918],[-74.458361,40.671271],[-74.37516,40.729612],[-74.320768,40.711016],[-74.281841,40.713213],[-74.221872,40.698066],[-74.194658,40.683288],[-74.146858,40.67548],[-74.208253,40.591188]]]},"id":34039},
{"type":"Feature","properties":{"name":"Mercer"},"geometry":{"type":"Polygon","coordinates":[[[-84.445251,40.686076],[-84.440244,40.367575],[-84.426709,40.352861],[-84.794556,40.353051],[-84.793252,40.588738],[-84.793061,40.72886],[-84.446861,40.727374],[-84.445251,40.686076]]]},"id":39107},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-80.940052,40.421425],[-81.268118,40.431592],[-81.261778,40.563402],[-81.318077,40.563082],[-81.314706,40.647156],[-81.236455,40.646309],[-81.231595,40.715445],[-81.197009,40.715548],[-81.198069,40.724143],[-81.083392,40.724707],[-80.91159,40.72354],[-80.913101,40.641346],[-80.852978,40.638871],[-80.855229,40.596605],[-80.853788,40.553076],[-80.916169,40.553679],[-80.922938,40.467724],[-80.937518,40.469147],[-80.940052,40.421425]]]},"id":39019},
{"type":"Feature","properties":{"name":"Fulton"},"geometry":{"type":"Polygon","coordinates":[[[-90.455288,40.276331],[-90.45156,40.63011],[-90.450821,40.710401],[-89.993103,40.719802],[-89.991311,40.635895],[-89.879856,40.635372],[-89.883267,40.593182],[-89.869945,40.592312],[-89.875592,40.514741],[-89.890631,40.500638],[-89.907935,40.460676],[-89.930786,40.443365],[-89.966317,40.426462],[-89.998132,40.399131],[-90.046878,40.378974],[-90.079998,40.296296],[-90.119481,40.260736],[-90.130704,40.235289],[-90.168493,40.219226],[-90.207945,40.189537],[-90.455402,40.194252],[-90.455288,40.276331]]]},"id":17057},
{"type":"Feature","properties":{"name":"Morrow"},"geometry":{"type":"Polygon","coordinates":[[[-82.737865,40.347443],[-82.924739,40.357724],[-82.920383,40.419685],[-83.019599,40.419933],[-83.019966,40.440361],[-83.013893,40.486961],[-82.956487,40.496265],[-82.955901,40.646658],[-82.855624,40.644571],[-82.857105,40.704476],[-82.857151,40.713105],[-82.725951,40.71267],[-82.622721,40.712792],[-82.618211,40.667096],[-82.63946,40.667146],[-82.639719,40.637155],[-82.620774,40.635198],[-82.622123,40.552932],[-82.64132,40.550338],[-82.642639,40.526664],[-82.630027,40.528083],[-82.640898,40.343255],[-82.737865,40.347443]]]},"id":39117},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-83.24614,40.44618],[-83.24524,40.502561],[-83.421272,40.499896],[-83.414779,40.523826],[-83.417274,40.685034],[-83.298252,40.685077],[-83.297771,40.701461],[-83.105321,40.702386],[-82.857105,40.704476],[-82.855624,40.644571],[-82.955901,40.646658],[-82.956487,40.496265],[-83.013893,40.486961],[-83.019966,40.440361],[-83.24614,40.44618]]]},"id":39101},
{"type":"Feature","properties":{"name":"Saline"},"geometry":{"type":"Polygon","coordinates":[[[-96.907693,40.343412],[-97.364045,40.346015],[-97.363569,40.698276],[-96.905837,40.700692],[-96.905128,40.524025],[-96.907693,40.343412]]]},"id":31151},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-98.269119,40.342008],[-98.723509,40.343284],[-98.722847,40.686278],[-98.721138,40.698947],[-98.274658,40.700643],[-98.269119,40.342008]]]},"id":31001},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-98.269119,40.342008],[-98.274658,40.700643],[-97.81851,40.70003],[-97.816978,40.343246],[-98.269119,40.342008]]]},"id":31035},
{"type":"Feature","properties":{"name":"Fillmore"},"geometry":{"type":"Polygon","coordinates":[[[-97.816978,40.343246],[-97.81851,40.70003],[-97.363569,40.698276],[-97.364045,40.346015],[-97.816978,40.343246]]]},"id":31059},
{"type":"Feature","properties":{"name":"Juniata"},"geometry":{"type":"Polygon","coordinates":[[[-77.707591,40.266234],[-77.756795,40.3786],[-77.618786,40.491726],[-77.618229,40.51712],[-77.610379,40.523933],[-77.487606,40.590647],[-77.507589,40.61287],[-77.300881,40.698445],[-77.155476,40.681352],[-77.10873,40.695734],[-77.094264,40.680724],[-77.038522,40.677814],[-77.004234,40.640946],[-76.958715,40.653005],[-76.938237,40.637948],[-77.062013,40.602603],[-77.179531,40.58753],[-77.185085,40.563959],[-77.294112,40.522912],[-77.367355,40.483551],[-77.520242,40.417862],[-77.540765,40.404705],[-77.542558,40.38067],[-77.630595,40.336168],[-77.674518,40.292586],[-77.707591,40.266234]]]},"id":42067},
{"type":"Feature","properties":{"name":"Hayes"},"geometry":{"type":"Polygon","coordinates":[[[-101.341804,40.34328],[-101.341016,40.697487],[-101.24341,40.697782],[-100.770576,40.697316],[-100.773619,40.340843],[-101.322501,40.3428],[-101.341804,40.34328]]]},"id":31085},
{"type":"Feature","properties":{"name":"Chase"},"geometry":{"type":"Polygon","coordinates":[[[-102.047545,40.342644],[-102.04762,40.431078],[-102.046031,40.697319],[-101.341016,40.697487],[-101.341804,40.34328],[-102.047545,40.342644]]]},"id":31029},
{"type":"Feature","properties":{"name":"Frontier"},"geometry":{"type":"Polygon","coordinates":[[[-100.773619,40.340843],[-100.770576,40.697316],[-100.214667,40.69653],[-99.976453,40.694346],[-99.980034,40.441736],[-100.083348,40.441119],[-100.086546,40.340926],[-100.190341,40.338866],[-100.751913,40.33981],[-100.773619,40.340843]]]},"id":31063},
{"type":"Feature","properties":{"name":"Gosper"},"geometry":{"type":"Polygon","coordinates":[[[-99.639535,40.340127],[-100.086546,40.340926],[-100.083348,40.441119],[-99.980034,40.441736],[-99.976453,40.694346],[-99.681803,40.694099],[-99.639061,40.682594],[-99.639535,40.340127]]]},"id":31073},
{"type":"Feature","properties":{"name":"Auglaize"},"geometry":{"type":"Polygon","coordinates":[[[-83.877586,40.528611],[-83.987369,40.529392],[-83.989673,40.481544],[-84.002857,40.479957],[-84.329364,40.479563],[-84.331782,40.378496],[-84.425427,40.377027],[-84.426709,40.352861],[-84.440244,40.367575],[-84.445251,40.686076],[-84.389373,40.686397],[-84.21487,40.685299],[-84.213901,40.655796],[-84.102799,40.656178],[-84.102867,40.643898],[-83.878593,40.641294],[-83.877586,40.528611]]]},"id":39011},
{"type":"Feature","properties":{"name":"Kearney"},"geometry":{"type":"Polygon","coordinates":[[[-99.171931,40.340997],[-99.172664,40.651764],[-98.893844,40.653151],[-98.722847,40.686278],[-98.723509,40.343284],[-99.171931,40.340997]]]},"id":31099},
{"type":"Feature","properties":{"name":"Wasatch"},"geometry":{"type":"Polygon","coordinates":[[[-110.886146,39.893328],[-111.077665,39.894338],[-111.076139,39.934693],[-111.118896,39.933521],[-111.114043,39.956009],[-111.134651,39.976051],[-111.162026,39.986861],[-111.197062,40.04436],[-111.230548,40.039542],[-111.222133,40.151354],[-111.227878,40.169786],[-111.263707,40.20413],[-111.265042,40.24008],[-111.279684,40.260733],[-111.323342,40.288599],[-111.394025,40.295848],[-111.41413,40.285838],[-111.449631,40.295127],[-111.443978,40.321223],[-111.451249,40.344256],[-111.481944,40.361499],[-111.546227,40.366564],[-111.607656,40.441421],[-111.605443,40.462676],[-111.572299,40.492599],[-111.56415,40.519958],[-111.566234,40.548213],[-111.586035,40.582677],[-111.563092,40.589418],[-111.54984,40.612016],[-111.474457,40.606482],[-111.461511,40.648167],[-111.435044,40.660637],[-111.427826,40.675312],[-111.389602,40.682716],[-111.365466,40.634847],[-111.313132,40.621606],[-111.271044,40.594263],[-111.149943,40.555102],[-111.103206,40.599737],[-111.083156,40.600163],[-111.062501,40.586018],[-111.036904,40.580272],[-110.970412,40.592116],[-110.956275,40.601443],[-110.930604,40.674755],[-110.897286,40.680881],[-110.886146,39.893328]]]},"id":49051},
{"type":"Feature","properties":{"name":"Phelps"},"geometry":{"type":"Polygon","coordinates":[[[-99.639535,40.340127],[-99.639061,40.682594],[-99.406094,40.668078],[-99.316354,40.669288],[-99.277862,40.659546],[-99.172664,40.651764],[-99.171931,40.340997],[-99.629296,40.33952],[-99.639535,40.340127]]]},"id":31137},
{"type":"Feature","properties":{"name":"Berks"},"geometry":{"type":"Polygon","coordinates":[[[-75.695204,40.25579],[-75.70214,40.243644],[-75.887033,40.140479],[-76.153194,40.318192],[-76.208465,40.36321],[-76.230805,40.36253],[-76.438204,40.495963],[-76.326572,40.520381],[-76.300013,40.517406],[-76.176852,40.538861],[-76.13768,40.562485],[-76.079991,40.572743],[-76.06454,40.588444],[-76.018654,40.582471],[-75.998113,40.638023],[-75.894131,40.682115],[-75.532144,40.444312],[-75.695204,40.25579]]]},"id":42011},
{"type":"Feature","properties":{"name":"Westmoreland"},"geometry":{"type":"Polygon","coordinates":[[[-79.884535,40.130478],[-79.901107,40.158283],[-79.864973,40.157607],[-79.859136,40.163158],[-79.849042,40.185569],[-79.863989,40.200713],[-79.792484,40.224257],[-79.805684,40.241251],[-79.7944,40.284093],[-79.778355,40.291188],[-79.807553,40.299276],[-79.784703,40.320104],[-79.769872,40.384785],[-79.741352,40.399353],[-79.71439,40.425686],[-79.708532,40.529215],[-79.744345,40.552176],[-79.777046,40.55295],[-79.780312,40.579207],[-79.774681,40.592466],[-79.717277,40.615709],[-79.703299,40.633649],[-79.699348,40.662751],[-79.66838,40.680523],[-79.653601,40.673062],[-79.642164,40.655564],[-79.623296,40.652707],[-79.612889,40.628835],[-79.58688,40.63017],[-79.584888,40.603436],[-79.565479,40.602395],[-79.572109,40.58051],[-79.561862,40.56117],[-79.504068,40.528985],[-79.493791,40.529145],[-79.486245,40.540604],[-79.458077,40.52834],[-79.463562,40.507844],[-79.455017,40.483026],[-79.438087,40.482835],[-79.431594,40.46615],[-79.413977,40.46279],[-79.407049,40.452464],[-79.38207,40.44467],[-79.365514,40.458521],[-79.333607,40.463073],[-79.326145,40.455016],[-79.304935,40.452598],[-79.296031,40.435035],[-79.277888,40.433933],[-79.265886,40.412781],[-79.242113,40.428532],[-79.20533,40.405904],[-79.161872,40.406484],[-79.147574,40.388983],[-79.128454,40.397394],[-79.130949,40.374682],[-79.121747,40.367999],[-79.087056,40.382045],[-79.061695,40.381454],[-79.046276,40.394343],[-79.035991,40.421225],[-79.003253,40.415271],[-78.982294,40.394657],[-79.001429,40.357239],[-79.061984,40.284398],[-79.136127,40.179148],[-79.156857,40.16482],[-79.182248,40.118227],[-79.196965,40.10488],[-79.223516,40.109056],[-79.259711,40.089052],[-79.297477,40.036822],[-79.34018,40.038927],[-79.356553,40.068162],[-79.405474,40.099629],[-79.424189,40.10252],[-79.456249,40.131504],[-79.478054,40.137058],[-79.513539,40.136497],[-79.520917,40.12096],[-79.54025,40.123821],[-79.600301,40.079751],[-79.615057,40.09084],[-79.629187,40.080628],[-79.65927,40.081475],[-79.668479,40.107621],[-79.683387,40.103738],[-79.690849,40.111771],[-79.719689,40.110814],[-79.725396,40.120232],[-79.75216,40.129738],[-79.777887,40.125191],[-79.805774,40.131943],[-79.884535,40.130478]]]},"id":42129},
{"type":"Feature","properties":{"name":"Allegheny"},"geometry":{"type":"Polygon","coordinates":[[[-79.863989,40.200713],[-79.913925,40.199313],[-79.97555,40.222612],[-79.96824,40.237722],[-79.925812,40.248071],[-79.923035,40.25493],[-80.183297,40.332681],[-80.365356,40.479308],[-80.154086,40.618212],[-80.149517,40.67457],[-79.699348,40.662751],[-79.703299,40.633649],[-79.717277,40.615709],[-79.774681,40.592466],[-79.780312,40.579207],[-79.777046,40.55295],[-79.744345,40.552176],[-79.708532,40.529215],[-79.71439,40.425686],[-79.741352,40.399353],[-79.769872,40.384785],[-79.784703,40.320104],[-79.807553,40.299276],[-79.778355,40.291188],[-79.7944,40.284093],[-79.805684,40.241251],[-79.792484,40.224257],[-79.863989,40.200713]]]},"id":42003},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-85.572324,40.394923],[-85.865308,40.395058],[-85.865713,40.410954],[-85.865524,40.58069],[-85.866784,40.662879],[-85.643205,40.670808],[-85.455135,40.671763],[-85.45251,40.589963],[-85.444338,40.393151],[-85.572324,40.394923]]]},"id":18053},
{"type":"Feature","properties":{"name":"Holmes"},"geometry":{"type":"Polygon","coordinates":[[[-82.177634,40.453888],[-82.175248,40.574304],[-82.21738,40.570016],[-82.218394,40.667613],[-82.123403,40.671561],[-81.642053,40.666849],[-81.641862,40.632354],[-81.654992,40.628745],[-81.662926,40.443273],[-81.704012,40.442823],[-82.177634,40.453888]]]},"id":39075},
{"type":"Feature","properties":{"name":"Dauphin"},"geometry":{"type":"Polygon","coordinates":[[[-76.576923,40.19457],[-76.610034,40.194356],[-76.622203,40.183557],[-76.638462,40.183214],[-76.654941,40.163374],[-76.669345,40.166647],[-76.68153,40.153578],[-76.703182,40.154169],[-76.713527,40.142897],[-76.738231,40.139421],[-76.755872,40.178067],[-76.84629,40.228446],[-76.885865,40.248598],[-76.907381,40.269555],[-76.918024,40.294091],[-76.911752,40.32354],[-76.937396,40.360389],[-77.016965,40.3716],[-77.035559,40.388449],[-76.99857,40.412794],[-76.97781,40.444456],[-76.945651,40.463365],[-76.950283,40.48924],[-76.977872,40.518834],[-76.989035,40.563778],[-76.943852,40.616654],[-76.93301,40.608895],[-76.906985,40.608327],[-76.859535,40.632585],[-76.845672,40.625257],[-76.81716,40.630097],[-76.806081,40.648629],[-76.791592,40.643567],[-76.714433,40.663976],[-76.697533,40.657972],[-76.69043,40.643865],[-76.540769,40.556645],[-76.6803,40.47145],[-76.576923,40.19457]]]},"id":42043},
{"type":"Feature","properties":{"name":"Tuscarawas"},"geometry":{"type":"Polygon","coordinates":[[[-81.613934,40.212489],[-81.60735,40.36021],[-81.709512,40.361843],[-81.704012,40.442823],[-81.662926,40.443273],[-81.654992,40.628745],[-81.641862,40.632354],[-81.472611,40.65184],[-81.456772,40.661415],[-81.437369,40.661564],[-81.436141,40.650257],[-81.314706,40.647156],[-81.318077,40.563082],[-81.261778,40.563402],[-81.268118,40.431592],[-81.268393,40.299521],[-81.322075,40.299269],[-81.32927,40.208286],[-81.613934,40.212489]]]},"id":39157},
{"type":"Feature","properties":{"name":"Richmond"},"geometry":{"type":"Polygon","coordinates":[[[-74.23694,40.506003],[-74.23694,40.537905],[-74.166298,40.624497],[-74.072866,40.649563],[-74.059194,40.601709],[-74.123,40.544741],[-74.193642,40.510562],[-74.23694,40.506003]]]},"id":36085},
{"type":"Feature","properties":{"name":"Hancock"},"geometry":{"type":"Polygon","coordinates":[[[-91.499087,40.251422],[-91.486849,40.309668],[-91.448747,40.371947],[-91.418969,40.386919],[-91.385909,40.392405],[-91.372908,40.403033],[-91.385551,40.447294],[-91.374946,40.503698],[-91.382256,40.528538],[-91.413026,40.548035],[-91.411271,40.573013],[-91.375763,40.60348],[-91.262211,40.639587],[-91.21506,40.643859],[-90.91327,40.639415],[-90.918301,40.284224],[-90.921383,40.196667],[-91.506701,40.200504],[-91.499087,40.251422]]]},"id":17067},
{"type":"Feature","properties":{"name":"McDonough"},"geometry":{"type":"Polygon","coordinates":[[[-90.455288,40.276331],[-90.918301,40.284224],[-90.91327,40.639415],[-90.799368,40.638361],[-90.45156,40.63011],[-90.455288,40.276331]]]},"id":17109},
{"type":"Feature","properties":{"name":"Perry"},"geometry":{"type":"Polygon","coordinates":[[[-77.615297,40.203325],[-77.614724,40.223275],[-77.64905,40.221883],[-77.640657,40.242295],[-77.670214,40.259037],[-77.659403,40.273563],[-77.674518,40.292586],[-77.630595,40.336168],[-77.542558,40.38067],[-77.540765,40.404705],[-77.520242,40.417862],[-77.367355,40.483551],[-77.294112,40.522912],[-77.185085,40.563959],[-77.179531,40.58753],[-77.062013,40.602603],[-76.938237,40.637948],[-76.943852,40.616654],[-76.989035,40.563778],[-76.977872,40.518834],[-76.950283,40.48924],[-76.945651,40.463365],[-76.97781,40.444456],[-76.99857,40.412794],[-77.035559,40.388449],[-77.016965,40.3716],[-76.937396,40.360389],[-76.911752,40.32354],[-76.96667,40.318344],[-77.00536,40.304894],[-77.052961,40.307792],[-77.273098,40.28525],[-77.309887,40.275335],[-77.324948,40.276266],[-77.331547,40.289422],[-77.342389,40.292158],[-77.409338,40.258665],[-77.417173,40.260031],[-77.414152,40.265928],[-77.365873,40.305333],[-77.364652,40.315308],[-77.376707,40.317135],[-77.441855,40.284986],[-77.541862,40.220148],[-77.57016,40.213789],[-77.599626,40.190645],[-77.615297,40.203325]]]},"id":42099},
{"type":"Feature","properties":{"name":"Hancock"},"geometry":{"type":"Polygon","coordinates":[[[-80.627848,40.398227],[-80.60183,40.480539],[-80.625253,40.504464],[-80.63344,40.539204],[-80.66862,40.568279],[-80.667728,40.582137],[-80.637338,40.613982],[-80.61155,40.620063],[-80.574416,40.615974],[-80.522,40.637203],[-80.524358,40.478785],[-80.523565,40.403034],[-80.627848,40.398227]]]},"id":54029},
{"type":"Feature","properties":{"name":"Bucks"},"geometry":{"type":"Polygon","coordinates":[[[-75.021465,40.134609],[-75.494155,40.420132],[-75.422729,40.487927],[-75.34506,40.537438],[-75.200388,40.614743],[-75.193513,40.583769],[-75.197572,40.570684],[-75.182282,40.556799],[-75.124526,40.564799],[-75.079786,40.545356],[-75.06368,40.521003],[-75.070119,40.456254],[-75.057453,40.420171],[-75.021266,40.401324],[-75.000476,40.408621],[-74.972841,40.404448],[-74.950188,40.345474],[-74.932503,40.333774],[-74.92115,40.314034],[-74.88066,40.299592],[-74.842763,40.248453],[-74.738825,40.177726],[-74.72548,40.149307],[-74.746294,40.124359],[-74.829022,40.116161],[-74.871924,40.078057],[-74.956202,40.058014],[-74.983485,40.034074],[-74.990924,40.044652],[-74.966791,40.081364],[-74.965753,40.11082],[-75.021465,40.134609]]]},"id":42017},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-91.953085,40.258383],[-91.954626,40.303254],[-91.94637,40.608267],[-91.741712,40.609784],[-91.716976,40.593435],[-91.68996,40.581203],[-91.692081,40.551678],[-91.622537,40.532903],[-91.61686,40.504874],[-91.586029,40.484519],[-91.579383,40.46376],[-91.533208,40.455441],[-91.538847,40.441289],[-91.529607,40.435086],[-91.527692,40.410169],[-91.500378,40.405161],[-91.490314,40.390806],[-91.477038,40.391012],[-91.448747,40.371947],[-91.486849,40.309668],[-91.499087,40.251422],[-91.953085,40.258383]]]},"id":29045},
{"type":"Feature","properties":{"name":"Scotland"},"geometry":{"type":"Polygon","coordinates":[[[-91.954626,40.303254],[-92.351422,40.302178],[-92.356175,40.345623],[-92.361513,40.599576],[-92.193174,40.600089],[-91.94637,40.608267],[-91.954626,40.303254]]]},"id":29199},
{"type":"Feature","properties":{"name":"Schuyler"},"geometry":{"type":"Polygon","coordinates":[[[-92.356175,40.345623],[-92.690329,40.341248],[-92.695493,40.389217],[-92.692701,40.394276],[-92.678037,40.390564],[-92.673291,40.406109],[-92.710965,40.437827],[-92.708951,40.473727],[-92.687679,40.484702],[-92.69292,40.507258],[-92.682346,40.51433],[-92.715474,40.524381],[-92.68967,40.542733],[-92.696231,40.567528],[-92.72266,40.576385],[-92.717815,40.589667],[-92.646432,40.591462],[-92.361513,40.599576],[-92.356175,40.345623]]]},"id":29197},
{"type":"Feature","properties":{"name":"Middlesex"},"geometry":{"type":"Polygon","coordinates":[[[-74.482964,40.248531],[-74.485963,40.263118],[-74.521929,40.282572],[-74.549449,40.287756],[-74.630606,40.324105],[-74.647414,40.341275],[-74.632659,40.348194],[-74.623999,40.368412],[-74.603048,40.378826],[-74.58479,40.411983],[-74.523303,40.43777],[-74.470102,40.48097],[-74.463098,40.503492],[-74.493647,40.510571],[-74.497989,40.522469],[-74.530834,40.547295],[-74.511043,40.571789],[-74.477923,40.58189],[-74.463465,40.59425],[-74.449243,40.587105],[-74.304592,40.598519],[-74.290203,40.581819],[-74.240045,40.592794],[-74.208253,40.591188],[-74.27891,40.514304],[-74.268915,40.463749],[-74.224503,40.443585],[-74.245836,40.426404],[-74.252046,40.396161],[-74.403945,40.277923],[-74.405524,40.269344],[-74.452858,40.24781],[-74.482964,40.248531]]]},"id":34023},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-80.702065,40.15409],[-80.877795,40.153131],[-80.858947,40.418618],[-80.940052,40.421425],[-80.937518,40.469147],[-80.922938,40.467724],[-80.916169,40.553679],[-80.853788,40.553076],[-80.855229,40.596605],[-80.738882,40.595541],[-80.739577,40.584181],[-80.667728,40.582137],[-80.66862,40.568279],[-80.63344,40.539204],[-80.625253,40.504464],[-80.60183,40.480539],[-80.627848,40.398227],[-80.629245,40.388664],[-80.609247,40.373275],[-80.604517,40.306245],[-80.614688,40.276502],[-80.650113,40.24568],[-80.678557,40.194151],[-80.70089,40.168181],[-80.702065,40.15409]]]},"id":39081},
{"type":"Feature","properties":{"name":"Blackford"},"geometry":{"type":"Polygon","coordinates":[[[-85.214769,40.392839],[-85.444338,40.393151],[-85.45251,40.589963],[-85.19581,40.586956],[-85.199037,40.393213],[-85.214769,40.392839]]]},"id":18009},
{"type":"Feature","properties":{"name":"Putnam"},"geometry":{"type":"Polygon","coordinates":[[[-92.690329,40.341248],[-92.861675,40.339981],[-92.858775,40.380897],[-93.355745,40.379411],[-93.371386,40.389371],[-93.370271,40.580491],[-93.100939,40.584347],[-92.717815,40.589667],[-92.72266,40.576385],[-92.696231,40.567528],[-92.68967,40.542733],[-92.715474,40.524381],[-92.682346,40.51433],[-92.69292,40.507258],[-92.687679,40.484702],[-92.708951,40.473727],[-92.710965,40.437827],[-92.673291,40.406109],[-92.678037,40.390564],[-92.692701,40.394276],[-92.695493,40.389217],[-92.690329,40.341248]]]},"id":29171},
{"type":"Feature","properties":{"name":"Atchison"},"geometry":{"type":"Polygon","coordinates":[[[-95.187997,40.267015],[-95.547137,40.266216],[-95.595532,40.309777],[-95.646827,40.30911],[-95.645553,40.322347],[-95.617933,40.331418],[-95.616202,40.346498],[-95.634185,40.3588],[-95.636818,40.39639],[-95.695362,40.485338],[-95.68497,40.512205],[-95.658061,40.530333],[-95.662944,40.558729],[-95.675694,40.565836],[-95.687413,40.56117],[-95.692066,40.52413],[-95.737036,40.532373],[-95.763412,40.549707],[-95.76748,40.589048],[-95.382555,40.584334],[-95.217428,40.581893],[-95.216946,40.477866],[-95.184154,40.476618],[-95.187997,40.267015]]]},"id":29005},
{"type":"Feature","properties":{"name":"Jay"},"geometry":{"type":"Polygon","coordinates":[[[-84.795388,40.319501],[-85.21457,40.315664],[-85.214769,40.392839],[-85.199037,40.393213],[-85.19581,40.586956],[-85.073921,40.588661],[-84.793252,40.588738],[-84.794556,40.353051],[-84.795388,40.319501]]]},"id":18075},
{"type":"Feature","properties":{"name":"Utah"},"geometry":{"type":"Polygon","coordinates":[[[-110.852812,39.812652],[-111.243772,39.807593],[-111.39457,39.804438],[-111.459547,39.809595],[-111.499093,39.802255],[-111.518183,39.803548],[-111.521883,39.810063],[-111.638429,39.807384],[-111.76404,39.811781],[-111.750932,39.84347],[-111.736511,39.85195],[-111.738671,39.86339],[-111.767939,39.890043],[-111.833028,39.928154],[-111.871802,39.889785],[-111.940393,39.853526],[-111.978793,39.801951],[-111.995785,39.807623],[-112.020985,39.781389],[-112.072691,39.778889],[-112.080763,39.792374],[-112.06761,39.826809],[-112.078376,39.862191],[-112.060698,39.88374],[-112.060019,39.902325],[-112.098404,39.929252],[-112.096642,39.955063],[-112.106591,39.967704],[-112.13611,39.984286],[-112.152803,40.004],[-112.17837,40.008162],[-112.175257,40.036642],[-112.184237,40.055143],[-112.156342,40.094027],[-112.176896,40.128412],[-112.175491,40.14924],[-112.150321,40.165072],[-112.147841,40.174967],[-112.156455,40.207991],[-112.178771,40.225641],[-112.178687,40.253789],[-112.191916,40.263371],[-112.187583,40.291814],[-112.198287,40.312199],[-112.181814,40.341538],[-112.209128,40.447467],[-112.201971,40.463996],[-112.174627,40.465679],[-112.131413,40.469475],[-112.125179,40.445622],[-112.111103,40.439175],[-112.065935,40.445142],[-112.055437,40.456991],[-112.041429,40.458261],[-111.977271,40.415767],[-111.944899,40.420379],[-111.874096,40.471576],[-111.845691,40.462695],[-111.83797,40.47737],[-111.814578,40.482772],[-111.77102,40.523677],[-111.67094,40.54176],[-111.634538,40.566571],[-111.602103,40.570646],[-111.586035,40.582677],[-111.566234,40.548213],[-111.56415,40.519958],[-111.572299,40.492599],[-111.605443,40.462676],[-111.607656,40.441421],[-111.546227,40.366564],[-111.481944,40.361499],[-111.451249,40.344256],[-111.443978,40.321223],[-111.449631,40.295127],[-111.41413,40.285838],[-111.394025,40.295848],[-111.323342,40.288599],[-111.279684,40.260733],[-111.265042,40.24008],[-111.263707,40.20413],[-111.227878,40.169786],[-111.222133,40.151354],[-111.230548,40.039542],[-111.197062,40.04436],[-111.162026,39.986861],[-111.134651,39.976051],[-111.114043,39.956009],[-111.118896,39.933521],[-111.076139,39.934693],[-111.077665,39.894338],[-110.886146,39.893328],[-110.85433,39.893137],[-110.852812,39.812652]]]},"id":49049},
{"type":"Feature","properties":{"name":"Nodaway"},"geometry":{"type":"Polygon","coordinates":[[[-95.059959,40.134187],[-95.085457,40.183022],[-95.075737,40.236141],[-95.086274,40.262928],[-95.187997,40.267015],[-95.184154,40.476618],[-95.216946,40.477866],[-95.217428,40.581893],[-94.920616,40.577218],[-94.639876,40.575745],[-94.63983,40.474462],[-94.618581,40.473508],[-94.617452,40.390444],[-94.60838,40.390356],[-94.619892,40.129685],[-95.059959,40.134187]]]},"id":29147},
{"type":"Feature","properties":{"name":"Mercer"},"geometry":{"type":"Polygon","coordinates":[[[-93.371386,40.389371],[-93.374193,40.263118],[-93.770412,40.263035],[-93.771679,40.465901],[-93.785015,40.466359],[-93.786304,40.578449],[-93.56291,40.580814],[-93.370271,40.580491],[-93.371386,40.389371]]]},"id":29129},
{"type":"Feature","properties":{"name":"Howard"},"geometry":{"type":"Polygon","coordinates":[[[-85.865713,40.410954],[-86.238513,40.410224],[-86.240428,40.381686],[-86.272518,40.379786],[-86.273693,40.393882],[-86.305645,40.395148],[-86.307476,40.435126],[-86.375729,40.435919],[-86.372548,40.577419],[-86.161737,40.579305],[-85.865524,40.58069],[-85.865713,40.410954]]]},"id":18067},
{"type":"Feature","properties":{"name":"Harrison"},"geometry":{"type":"Polygon","coordinates":[[[-94.223141,40.38673],[-94.220875,40.471267],[-94.239704,40.47238],[-94.238392,40.570966],[-94.018059,40.574022],[-93.786304,40.578449],[-93.785015,40.466359],[-93.771679,40.465901],[-93.770412,40.263035],[-93.7735,40.133115],[-94.223613,40.138366],[-94.223141,40.38673]]]},"id":29081},
{"type":"Feature","properties":{"name":"Tippecanoe"},"geometry":{"type":"Polygon","coordinates":[[[-87.099343,40.228085],[-87.100223,40.381422],[-87.101721,40.480794],[-87.100296,40.576948],[-86.777025,40.576769],[-86.700217,40.574641],[-86.700551,40.443071],[-86.704229,40.225844],[-87.099343,40.228085]]]},"id":18157},
{"type":"Feature","properties":{"name":"Worth"},"geometry":{"type":"Polygon","coordinates":[[[-94.238392,40.570966],[-94.239704,40.47238],[-94.220875,40.471267],[-94.223141,40.38673],[-94.60838,40.390356],[-94.617452,40.390444],[-94.618581,40.473508],[-94.63983,40.474462],[-94.639876,40.575745],[-94.485231,40.574205],[-94.238392,40.570966]]]},"id":29227},
{"type":"Feature","properties":{"name":"Knox"},"geometry":{"type":"Polygon","coordinates":[[[-82.742755,40.274125],[-82.737865,40.347443],[-82.640898,40.343255],[-82.630027,40.528083],[-82.642639,40.526664],[-82.64132,40.550338],[-82.622123,40.552932],[-82.389343,40.550781],[-82.33174,40.558895],[-82.21738,40.570016],[-82.175248,40.574304],[-82.177634,40.453888],[-82.191403,40.231361],[-82.476132,40.241332],[-82.473943,40.261851],[-82.742755,40.274125]]]},"id":39083},
{"type":"Feature","properties":{"name":"Nemaha"},"geometry":{"type":"Polygon","coordinates":[[[-96.00356,40.263226],[-96.057868,40.26331],[-96.060701,40.527341],[-95.737036,40.532373],[-95.692066,40.52413],[-95.687413,40.56117],[-95.675694,40.565836],[-95.662944,40.558729],[-95.658061,40.530333],[-95.68497,40.512205],[-95.695362,40.485338],[-95.636818,40.39639],[-95.634185,40.3588],[-95.616202,40.346498],[-95.617933,40.331418],[-95.645553,40.322347],[-95.646827,40.30911],[-95.595532,40.309777],[-95.547137,40.266216],[-96.00356,40.263226]]]},"id":31127},
{"type":"Feature","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[-76.576923,40.19457],[-76.6803,40.47145],[-76.540769,40.556645],[-76.438204,40.495963],[-76.230805,40.36253],[-76.208465,40.36321],[-76.153194,40.318192],[-76.318259,40.255898],[-76.445678,40.236169],[-76.576923,40.19457]]]},"id":42075},
{"type":"Feature","properties":{"name":"Logan"},"geometry":{"type":"Polygon","coordinates":[[[-83.544673,40.226872],[-83.780016,40.240358],[-83.779841,40.258996],[-84.009186,40.270994],[-84.002857,40.479957],[-83.989673,40.481544],[-83.987369,40.529392],[-83.877586,40.528611],[-83.516536,40.509031],[-83.514972,40.497744],[-83.544673,40.226872]]]},"id":39091},
{"type":"Feature","properties":{"name":"Gage"},"geometry":{"type":"Polygon","coordinates":[[[-96.908288,39.996155],[-96.907693,40.343412],[-96.905128,40.524025],[-96.45621,40.527366],[-96.454045,40.258892],[-96.454038,39.994173],[-96.80142,39.994476],[-96.908288,39.996155]]]},"id":31067},
{"type":"Feature","properties":{"name":"Johnson"},"geometry":{"type":"Polygon","coordinates":[[[-96.454045,40.258892],[-96.45621,40.527366],[-96.060701,40.527341],[-96.057868,40.26331],[-96.454045,40.258892]]]},"id":31097},
{"type":"Feature","properties":{"name":"Morgan"},"geometry":{"type":"Polygon","coordinates":[[[-103.702995,39.993538],[-104.140788,39.99554],[-104.132083,40.511498],[-103.578206,40.515443],[-103.458443,40.51508],[-103.45611,40.429836],[-103.461642,39.993904],[-103.702995,39.993538]]]},"id":8087},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-83.499565,40.113627],[-83.4899,40.221307],[-83.544673,40.226872],[-83.514972,40.497744],[-83.421272,40.499896],[-83.24524,40.502561],[-83.24614,40.44618],[-83.249848,40.244758],[-83.169378,40.242039],[-83.17017,40.137986],[-83.171933,40.107019],[-83.205687,40.107308],[-83.499565,40.113627]]]},"id":39159},
{"type":"Feature","properties":{"name":"Vermilion"},"geometry":{"type":"Polygon","coordinates":[[[-87.535357,40.166232],[-87.535793,39.887339],[-87.580137,39.888026],[-87.567281,39.875586],[-87.621825,39.875505],[-87.622679,39.888666],[-87.943499,39.884438],[-87.946773,40.232285],[-87.934718,40.23259],[-87.938213,40.403615],[-87.94006,40.484826],[-87.537191,40.494646],[-87.535695,40.483282],[-87.535357,40.166232]]]},"id":17183},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-87.418715,40.141685],[-87.493897,40.142451],[-87.49331,40.163302],[-87.535357,40.166232],[-87.535695,40.483282],[-87.101721,40.480794],[-87.100223,40.381422],[-87.13856,40.354018],[-87.176631,40.352454],[-87.239596,40.326835],[-87.285091,40.279559],[-87.348652,40.230765],[-87.432624,40.201781],[-87.442459,40.173823],[-87.418715,40.141685]]]},"id":18171},
{"type":"Feature","properties":{"name":"Shelby"},"geometry":{"type":"Polygon","coordinates":[[[-84.020164,40.179527],[-84.248572,40.196125],[-84.424312,40.191131],[-84.426709,40.352861],[-84.425427,40.377027],[-84.331782,40.378496],[-84.329364,40.479563],[-84.002857,40.479957],[-84.009186,40.270994],[-84.020164,40.179527]]]},"id":39149},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-80.003834,39.980756],[-80.040525,39.982744],[-80.053221,40.001985],[-80.071234,40.002072],[-80.079367,40.01098],[-80.114549,39.987573],[-80.150103,39.99091],[-80.166293,40.006444],[-80.19318,40.002694],[-80.230726,40.01096],[-80.262366,40.005734],[-80.302024,40.021638],[-80.313087,40.012772],[-80.355012,40.009561],[-80.362848,39.995321],[-80.393359,39.992357],[-80.424549,39.976668],[-80.467267,39.978843],[-80.487204,39.952965],[-80.524651,39.95842],[-80.524962,40.022825],[-80.526045,40.162521],[-80.523565,40.403034],[-80.524358,40.478785],[-80.365356,40.479308],[-80.183297,40.332681],[-79.923035,40.25493],[-79.925812,40.248071],[-79.96824,40.237722],[-79.97555,40.222612],[-79.913925,40.199313],[-79.863989,40.200713],[-79.849042,40.185569],[-79.859136,40.163158],[-79.864973,40.157607],[-79.901107,40.158283],[-79.884535,40.130478],[-79.886664,40.122272],[-79.84676,40.097623],[-79.856366,40.078851],[-79.894499,40.086747],[-79.903228,40.077962],[-79.899207,40.065793],[-79.8803,40.057534],[-79.884039,40.043405],[-79.874509,40.027712],[-79.909713,40.020693],[-79.941102,39.989702],[-79.995212,40.00905],[-80.003834,39.980756]]]},"id":42125},
{"type":"Feature","properties":{"name":"Grand"},"geometry":{"type":"Polygon","coordinates":[[[-105.686587,39.845572],[-105.723354,39.808035],[-105.749654,39.79671],[-105.790213,39.8035],[-105.821747,39.789709],[-105.865946,39.797255],[-105.884776,39.791605],[-105.879115,39.747782],[-105.914997,39.688433],[-105.972091,39.682779],[-106.028604,39.687101],[-106.0572,39.722822],[-106.063021,39.767545],[-106.084148,39.807622],[-106.108662,39.825334],[-106.182174,39.849393],[-106.235506,39.903222],[-106.264193,39.91031],[-106.381674,39.907613],[-106.39379,39.918039],[-106.44239,39.917497],[-106.633374,39.918009],[-106.637079,40.330617],[-106.648615,40.331506],[-106.64699,40.417861],[-106.599251,40.36757],[-106.536451,40.359644],[-106.48891,40.396951],[-106.440691,40.346624],[-106.382362,40.341627],[-106.35105,40.351915],[-106.304502,40.342344],[-106.264286,40.346136],[-106.208994,40.322787],[-106.067539,40.338874],[-106.036616,40.35588],[-105.98166,40.356025],[-105.946166,40.348651],[-105.93112,40.359168],[-105.933478,40.3777],[-105.8998,40.399756],[-105.890759,40.45909],[-105.847636,40.476015],[-105.806618,40.457896],[-105.807145,40.416568],[-105.779427,40.367576],[-105.752181,40.346252],[-105.700856,40.325729],[-105.677059,40.269779],[-105.65868,40.254501],[-105.674763,40.199502],[-105.672153,40.165093],[-105.636683,40.13495],[-105.631357,40.115609],[-105.634775,40.081003],[-105.649622,40.056917],[-105.645258,40.033461],[-105.653963,40.017744],[-105.690341,40.00247],[-105.683795,39.931437],[-105.691958,39.886237],[-105.686587,39.845572]]]},"id":8049},
{"type":"Feature","properties":{"name":"Coshocton"},"geometry":{"type":"Polygon","coordinates":[[[-82.182476,40.159507],[-82.175732,40.231488],[-82.191403,40.231361],[-82.177634,40.453888],[-81.704012,40.442823],[-81.709512,40.361843],[-81.60735,40.36021],[-81.613934,40.212489],[-81.662764,40.212699],[-81.666625,40.144492],[-81.711197,40.144828],[-82.182476,40.159507]]]},"id":39031},
{"type":"Feature","properties":{"name":"Tehama"},"geometry":{"type":"Polygon","coordinates":[[[-122.928674,39.795924],[-122.949633,39.846263],[-122.940708,39.898012],[-122.919277,39.914923],[-122.910259,39.936697],[-122.933004,39.979234],[-122.950202,40.027032],[-122.94751,40.045327],[-122.961381,40.067387],[-122.967411,40.132522],[-122.97601,40.141654],[-122.964292,40.189006],[-122.971183,40.235472],[-122.992386,40.250826],[-123.023889,40.259317],[-123.023058,40.285257],[-122.982843,40.302617],[-122.906433,40.298948],[-122.849525,40.341581],[-122.738592,40.35985],[-122.670215,40.328407],[-122.632784,40.32872],[-122.50544,40.385212],[-122.452063,40.367088],[-122.391132,40.360619],[-122.333032,40.359452],[-122.224729,40.373968],[-122.196476,40.367869],[-122.088693,40.398597],[-121.925968,40.414578],[-121.838915,40.43247],[-121.748679,40.430441],[-121.68897,40.451289],[-121.646732,40.43423],[-121.566896,40.433963],[-121.553804,40.446693],[-121.499382,40.446823],[-121.472486,40.413269],[-121.465542,40.369934],[-121.443461,40.345291],[-121.379852,40.332078],[-121.342786,40.308389],[-121.342427,40.292516],[-121.361776,40.29321],[-121.366842,40.287133],[-121.349889,40.276368],[-121.355603,40.211717],[-121.386381,40.202477],[-121.396506,40.190778],[-121.420989,40.187195],[-121.431739,40.175923],[-121.424956,40.153924],[-121.441757,40.152878],[-121.439697,40.129346],[-121.448105,40.129048],[-121.447517,40.119538],[-121.462563,40.119458],[-121.462677,40.111741],[-121.483185,40.112374],[-121.483246,40.103745],[-121.586208,40.095043],[-121.582095,40.05888],[-121.595577,40.053395],[-121.600506,40.036419],[-121.61784,40.034874],[-121.616795,40.018574],[-121.624584,40.018288],[-121.625042,39.997391],[-121.637005,39.996495],[-121.63889,39.979176],[-121.703658,39.977223],[-121.737197,39.930116],[-121.752623,39.890947],[-121.766356,39.880895],[-122.063649,39.884234],[-122.065526,39.86827],[-122.040142,39.874286],[-122.033245,39.870025],[-122.049137,39.857127],[-122.054943,39.837367],[-122.052028,39.804347],[-122.040568,39.794822],[-122.928674,39.795924]]]},"id":6103},
{"type":"Feature","properties":{"name":"Monmouth"},"geometry":{"type":"Polygon","coordinates":[[[-74.55891,40.072497],[-74.594434,40.130479],[-74.61759,40.168209],[-74.592343,40.182144],[-74.591618,40.170334],[-74.569797,40.173909],[-74.546084,40.208744],[-74.487229,40.233208],[-74.482964,40.248531],[-74.452858,40.24781],[-74.405524,40.269344],[-74.403945,40.277923],[-74.252046,40.396161],[-74.245836,40.426404],[-74.224503,40.443585],[-74.121885,40.451459],[-73.978441,40.323616],[-74.039231,40.101842],[-74.091426,40.116086],[-74.090587,40.121937],[-74.11591,40.133511],[-74.16171,40.093446],[-74.181845,40.100327],[-74.232911,40.101666],[-74.249986,40.109818],[-74.265596,40.163752],[-74.420951,40.163107],[-74.527056,40.086718],[-74.55891,40.072497]]]},"id":34025},
{"type":"Feature","properties":{"name":"Plumas"},"geometry":{"type":"Polygon","coordinates":[[[-121.000608,39.629481],[-121.071533,39.594076],[-121.080375,39.59197],[-121.082718,39.612314],[-121.11068,39.610036],[-121.111252,39.62],[-121.1298,39.620293],[-121.13218,39.651528],[-121.148302,39.650989],[-121.156923,39.66568],[-121.167635,39.664867],[-121.167879,39.679382],[-121.184626,39.679274],[-121.185359,39.691954],[-121.203326,39.692263],[-121.205516,39.719416],[-121.226444,39.719164],[-121.227291,39.733656],[-121.242779,39.732225],[-121.245396,39.746206],[-121.262158,39.746091],[-121.264241,39.760995],[-121.280401,39.760895],[-121.293295,39.78632],[-121.313979,39.791512],[-121.313415,39.801972],[-121.330238,39.802753],[-121.331032,39.815884],[-121.348428,39.816189],[-121.35911,39.853942],[-121.40327,39.860114],[-121.405353,39.894084],[-121.418583,39.894526],[-121.418186,39.907698],[-121.402652,39.908698],[-121.411251,39.951059],[-121.402317,39.95228],[-121.401448,39.977274],[-121.411092,39.977846],[-121.409375,39.998785],[-121.41895,39.997995],[-121.417173,40.018026],[-121.405805,40.018877],[-121.397,40.04188],[-121.378399,40.042532],[-121.377896,40.063879],[-121.367039,40.063349],[-121.368603,40.07918],[-121.388944,40.087095],[-121.387807,40.098028],[-121.404562,40.09654],[-121.403845,40.153298],[-121.424956,40.153924],[-121.431739,40.175923],[-121.420989,40.187195],[-121.396506,40.190778],[-121.386381,40.202477],[-121.355603,40.211717],[-121.349889,40.276368],[-121.366842,40.287133],[-121.361776,40.29321],[-121.342427,40.292516],[-121.342786,40.308389],[-121.379852,40.332078],[-121.443461,40.345291],[-121.465542,40.369934],[-121.472486,40.413269],[-121.499382,40.446823],[-121.322265,40.448008],[-121.056746,40.446815],[-121.052143,40.259505],[-121.038303,40.259947],[-121.037448,40.234107],[-120.992868,40.234619],[-120.994463,40.220047],[-120.948685,40.220578],[-120.94799,40.20789],[-120.923927,40.208646],[-120.923682,40.193219],[-120.887495,40.192529],[-120.88674,40.200719],[-120.865636,40.20046],[-120.867765,40.239877],[-120.849035,40.239088],[-120.849309,40.255419],[-120.829419,40.255572],[-120.829137,40.272822],[-120.79446,40.278407],[-120.791905,40.298454],[-120.770725,40.297272],[-120.763729,40.313366],[-120.728137,40.313515],[-120.728846,40.303963],[-120.654701,40.305224],[-120.653747,40.298445],[-120.642906,40.298758],[-120.642287,40.286524],[-120.619376,40.286731],[-120.619566,40.278556],[-120.575467,40.277088],[-120.57391,40.258072],[-120.550426,40.25874],[-120.549983,40.249672],[-120.503137,40.241003],[-120.492936,40.217237],[-120.47847,40.21718],[-120.475914,40.201826],[-120.457198,40.200976],[-120.455298,40.186514],[-120.442069,40.186873],[-120.441283,40.170561],[-120.415036,40.163108],[-120.415135,40.152667],[-120.401806,40.150764],[-120.387912,40.137069],[-120.372821,40.136116],[-120.372592,40.118427],[-120.339288,40.113869],[-120.338434,40.108448],[-120.26438,40.107213],[-120.264067,40.100415],[-120.245443,40.1009],[-120.244352,40.076883],[-120.227536,40.07731],[-120.227864,40.057794],[-120.209789,40.056898],[-120.197459,40.00958],[-120.184298,40.01082],[-120.183772,39.999033],[-120.170557,39.998915],[-120.171633,39.982561],[-120.162599,39.981879],[-120.162614,39.968726],[-120.153665,39.969855],[-120.156282,39.961173],[-120.135033,39.955806],[-120.134003,39.945853],[-120.110191,39.936462],[-120.110191,39.908794],[-120.099342,39.9077],[-120.096938,39.879635],[-120.108878,39.878433],[-120.102667,39.762468],[-120.115225,39.762155],[-120.127242,39.735551],[-120.138556,39.734357],[-120.139907,39.710286],[-120.456315,39.70876],[-120.457719,39.700555],[-120.635985,39.700495],[-120.67015,39.678178],[-120.710961,39.704193],[-120.745463,39.711788],[-120.789623,39.709551],[-120.846587,39.767705],[-120.864716,39.770776],[-120.883591,39.754311],[-120.919611,39.745022],[-120.939028,39.673184],[-121.000608,39.629481]]]},"id":6063},
{"type":"Feature","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-83.17017,40.137986],[-83.169378,40.242039],[-83.249848,40.244758],[-83.24614,40.44618],[-83.019966,40.440361],[-83.019599,40.419933],[-82.920383,40.419685],[-82.924739,40.357724],[-82.737865,40.347443],[-82.742755,40.274125],[-82.756396,40.12324],[-83.17017,40.137986]]]},"id":39041},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-75.37123,40.066618],[-75.376356,40.076231],[-75.410897,40.066831],[-75.427421,40.097943],[-75.452326,40.089275],[-75.475793,40.10961],[-75.472381,40.124068],[-75.510232,40.125578],[-75.51293,40.158272],[-75.525299,40.146222],[-75.536736,40.145947],[-75.536238,40.164081],[-75.555067,40.179793],[-75.557637,40.196157],[-75.56879,40.206758],[-75.589979,40.202546],[-75.590222,40.215699],[-75.604274,40.23088],[-75.621289,40.225238],[-75.628185,40.238035],[-75.64565,40.238294],[-75.666249,40.257187],[-75.695204,40.25579],[-75.532144,40.444312],[-75.494155,40.420132],[-75.021465,40.134609],[-75.064001,40.104595],[-75.119447,40.046697],[-75.179019,40.081368],[-75.192546,40.072091],[-75.226177,40.091751],[-75.268875,40.053059],[-75.216574,40.01584],[-75.285457,39.983057],[-75.318029,40.01764],[-75.332038,40.011078],[-75.37123,40.066618]]]},"id":42091},
{"type":"Feature","properties":{"name":"Mason"},"geometry":{"type":"Polygon","coordinates":[[[-90.354082,40.127869],[-90.340448,40.144738],[-90.318192,40.144883],[-90.289467,40.158673],[-90.218497,40.160908],[-90.207778,40.172306],[-90.207945,40.189537],[-90.168493,40.219226],[-90.130704,40.235289],[-90.119481,40.260736],[-90.079998,40.296296],[-90.046878,40.378974],[-89.998132,40.399131],[-89.966317,40.426462],[-89.930786,40.443365],[-89.722985,40.439821],[-89.717195,40.324192],[-89.610457,40.325237],[-89.606001,40.136166],[-89.658951,40.165122],[-89.699204,40.144207],[-89.717859,40.145992],[-89.756312,40.132316],[-89.778582,40.136802],[-89.8026,40.128132],[-89.828457,40.126705],[-89.845357,40.14072],[-89.865758,40.130688],[-89.879667,40.144703],[-89.892835,40.133324],[-89.924155,40.14093],[-89.96566,40.140331],[-90.000367,40.114807],[-90.063402,40.102753],[-90.088504,40.084501],[-90.131046,40.069788],[-90.186941,40.070852],[-90.20188,40.061705],[-90.237876,40.056963],[-90.257843,40.069994],[-90.272194,40.063108],[-90.289658,40.067076],[-90.314179,40.109998],[-90.354082,40.127869]]]},"id":17125},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-86.703786,40.190906],[-86.704229,40.225844],[-86.700551,40.443071],[-86.375729,40.435919],[-86.307476,40.435126],[-86.305645,40.395148],[-86.273693,40.393882],[-86.272518,40.379786],[-86.240428,40.381686],[-86.243167,40.22885],[-86.244524,40.185782],[-86.703786,40.190906]]]},"id":18023},
{"type":"Feature","properties":{"name":"Yuma"},"geometry":{"type":"Polygon","coordinates":[[[-102.049443,39.568693],[-102.801894,39.565392],[-102.802423,39.991572],[-102.795839,39.992548],[-102.790074,40.34042],[-102.776844,40.342366],[-102.777832,40.431704],[-102.661274,40.432826],[-102.04762,40.431078],[-102.047545,40.342644],[-102.051536,39.998918],[-102.049443,39.568693]]]},"id":8125},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-103.706013,39.56405],[-103.706973,39.732259],[-103.702995,39.993538],[-103.461642,39.993904],[-103.45611,40.429836],[-102.777832,40.431704],[-102.776844,40.342366],[-102.790074,40.34042],[-102.795839,39.992548],[-102.802423,39.991572],[-102.801894,39.565392],[-103.143751,39.561365],[-103.706013,39.56405]]]},"id":8121},
{"type":"Feature","properties":{"name":"Harrison"},"geometry":{"type":"Polygon","coordinates":[[[-80.877795,40.153131],[-81.104705,40.164085],[-81.219587,40.161655],[-81.331148,40.164666],[-81.32927,40.208286],[-81.322075,40.299269],[-81.268393,40.299521],[-81.268118,40.431592],[-80.940052,40.421425],[-80.858947,40.418618],[-80.877795,40.153131]]]},"id":39067},
{"type":"Feature","properties":{"name":"Mercer"},"geometry":{"type":"Polygon","coordinates":[[[-74.72548,40.149307],[-74.738825,40.177726],[-74.842763,40.248453],[-74.88066,40.299592],[-74.92115,40.314034],[-74.932503,40.333774],[-74.851972,40.34164],[-74.866438,40.374602],[-74.802159,40.382323],[-74.810162,40.410166],[-74.751254,40.418425],[-74.728342,40.370742],[-74.670738,40.377182],[-74.651031,40.386722],[-74.629515,40.381244],[-74.623999,40.368412],[-74.632659,40.348194],[-74.647414,40.341275],[-74.630606,40.324105],[-74.549449,40.287756],[-74.521929,40.282572],[-74.485963,40.263118],[-74.482964,40.248531],[-74.487229,40.233208],[-74.546084,40.208744],[-74.569797,40.173909],[-74.591618,40.170334],[-74.592343,40.182144],[-74.61759,40.168209],[-74.594434,40.130479],[-74.608884,40.130357],[-74.679397,40.173232],[-74.698128,40.171382],[-74.72548,40.149307]]]},"id":34021},
{"type":"Feature","properties":{"name":"Tipton"},"geometry":{"type":"Polygon","coordinates":[[[-85.865955,40.228078],[-86.243167,40.22885],[-86.240428,40.381686],[-86.238513,40.410224],[-85.865713,40.410954],[-85.865308,40.395058],[-85.865955,40.228078]]]},"id":18159},
{"type":"Feature","properties":{"name":"Champaign"},"geometry":{"type":"Polygon","coordinates":[[[-88.466245,39.880755],[-88.464552,40.289744],[-88.464757,40.400401],[-87.938213,40.403615],[-87.934718,40.23259],[-87.946773,40.232285],[-87.943499,39.884438],[-88.466245,39.880755]]]},"id":17019},
{"type":"Feature","properties":{"name":"Brooke"},"geometry":{"type":"Polygon","coordinates":[[[-80.526045,40.162521],[-80.587396,40.175094],[-80.65257,40.178473],[-80.678557,40.194151],[-80.650113,40.24568],[-80.614688,40.276502],[-80.604517,40.306245],[-80.609247,40.373275],[-80.629245,40.388664],[-80.627848,40.398227],[-80.523565,40.403034],[-80.526045,40.162521]]]},"id":54009},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-85.866786,39.950868],[-85.865955,40.228078],[-85.865308,40.395058],[-85.572324,40.394923],[-85.58045,40.082029],[-85.584654,39.95011],[-85.866786,39.950868]]]},"id":18095},
{"type":"Feature","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-85.21457,40.315664],[-85.215856,40.082859],[-85.58045,40.082029],[-85.572324,40.394923],[-85.444338,40.393151],[-85.214769,40.392839],[-85.21457,40.315664]]]},"id":18035},
{"type":"Feature","properties":{"name":"Gentry"},"geometry":{"type":"Polygon","coordinates":[[[-94.619174,40.043898],[-94.619892,40.129685],[-94.60838,40.390356],[-94.223141,40.38673],[-94.223613,40.138366],[-94.226671,40.038834],[-94.619174,40.043898]]]},"id":29075},
{"type":"Feature","properties":{"name":"Sullivan"},"geometry":{"type":"Polygon","coordinates":[[[-92.854042,40.036194],[-93.370688,40.031336],[-93.374193,40.263118],[-93.371386,40.389371],[-93.355745,40.379411],[-92.858775,40.380897],[-92.861675,40.339981],[-92.86142,40.039627],[-92.854042,40.036194]]]},"id":29211},
{"type":"Feature","properties":{"name":"Fountain"},"geometry":{"type":"Polygon","coordinates":[[[-87.103518,39.959664],[-87.408882,39.963292],[-87.428948,39.954102],[-87.441597,39.973358],[-87.432663,39.991802],[-87.440925,40.017788],[-87.435508,40.059875],[-87.423011,40.07645],[-87.418715,40.141685],[-87.442459,40.173823],[-87.432624,40.201781],[-87.348652,40.230765],[-87.285091,40.279559],[-87.239596,40.326835],[-87.176631,40.352454],[-87.13856,40.354018],[-87.100223,40.381422],[-87.099343,40.228085],[-87.103518,39.959664]]]},"id":18045},
{"type":"Feature","properties":{"name":"Darke"},"geometry":{"type":"Polygon","coordinates":[[[-84.482792,39.918764],[-84.80615,39.917167],[-84.803564,40.013991],[-84.795388,40.319501],[-84.794556,40.353051],[-84.426709,40.352861],[-84.424312,40.191131],[-84.419733,39.919532],[-84.482792,39.918764]]]},"id":39037},
{"type":"Feature","properties":{"name":"Thayer"},"geometry":{"type":"Polygon","coordinates":[[[-97.361912,39.99738],[-97.816589,39.999729],[-97.816978,40.343246],[-97.364045,40.346015],[-97.361912,39.99738]]]},"id":31169},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-96.907693,40.343412],[-96.908288,39.996155],[-97.361912,39.99738],[-97.364045,40.346015],[-96.907693,40.343412]]]},"id":31095},
{"type":"Feature","properties":{"name":"Adair"},"geometry":{"type":"Polygon","coordinates":[[[-92.35123,40.040435],[-92.854042,40.036194],[-92.86142,40.039627],[-92.861675,40.339981],[-92.690329,40.341248],[-92.356175,40.345623],[-92.351422,40.302178],[-92.35123,40.040435]]]},"id":29001},
{"type":"Feature","properties":{"name":"Dundy"},"geometry":{"type":"Polygon","coordinates":[[[-101.407393,40.001004],[-102.051536,39.998918],[-102.047545,40.342644],[-101.341804,40.34328],[-101.322501,40.3428],[-101.322149,40.001821],[-101.407393,40.001004]]]},"id":31057},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-99.064747,39.998338],[-99.178201,39.999577],[-99.171931,40.340997],[-98.723509,40.343284],[-98.720632,39.998461],[-99.064747,39.998338]]]},"id":31061},
{"type":"Feature","properties":{"name":"Webster"},"geometry":{"type":"Polygon","coordinates":[[[-98.504479,39.99713],[-98.720632,39.998461],[-98.723509,40.343284],[-98.269119,40.342008],[-98.264166,39.998435],[-98.504479,39.99713]]]},"id":31181},
{"type":"Feature","properties":{"name":"Nuckolls"},"geometry":{"type":"Polygon","coordinates":[[[-98.264166,39.998435],[-98.269119,40.342008],[-97.816978,40.343246],[-97.816589,39.999729],[-97.929589,39.998453],[-98.264166,39.998435]]]},"id":31129},
{"type":"Feature","properties":{"name":"Hitchcock"},"geometry":{"type":"Polygon","coordinates":[[[-100.754856,40.000198],[-101.322149,40.001821],[-101.322501,40.3428],[-100.773619,40.340843],[-100.751913,40.33981],[-100.754856,40.000198]]]},"id":31087},
{"type":"Feature","properties":{"name":"Harlan"},"geometry":{"type":"Polygon","coordinates":[[[-99.171931,40.340997],[-99.178201,39.999577],[-99.627859,40.002988],[-99.629296,40.33952],[-99.171931,40.340997]]]},"id":31083},
{"type":"Feature","properties":{"name":"Furnas"},"geometry":{"type":"Polygon","coordinates":[[[-100.191112,40.000586],[-100.190341,40.338866],[-100.086546,40.340926],[-99.639535,40.340127],[-99.629296,40.33952],[-99.627859,40.002988],[-100.180911,40.000479],[-100.191112,40.000586]]]},"id":31065},
{"type":"Feature","properties":{"name":"Red Willow"},"geometry":{"type":"Polygon","coordinates":[[[-100.735049,39.999172],[-100.754856,40.000198],[-100.751913,40.33981],[-100.190341,40.338866],[-100.191112,40.000586],[-100.735049,39.999172]]]},"id":31145},
{"type":"Feature","properties":{"name":"Logan"},"geometry":{"type":"Polygon","coordinates":[[[-89.585323,39.978843],[-89.58125,40.094915],[-89.604093,40.095353],[-89.606001,40.136166],[-89.610457,40.325237],[-89.269118,40.329607],[-89.268654,40.28562],[-89.154742,40.285813],[-89.152851,40.05501],[-89.151704,39.919443],[-89.224864,39.91872],[-89.411952,39.918088],[-89.412533,39.931692],[-89.4953,39.933536],[-89.492899,39.980236],[-89.585323,39.978843]]]},"id":17107},
{"type":"Feature","properties":{"name":"Bedford"},"geometry":{"type":"Polygon","coordinates":[[[-78.384783,39.723749],[-78.817758,39.723116],[-78.756081,39.821678],[-78.763796,40.056015],[-78.748514,40.075664],[-78.735742,40.066722],[-78.661537,40.234299],[-78.658798,40.251103],[-78.647484,40.259369],[-78.647796,40.278866],[-78.637046,40.284858],[-78.637451,40.310702],[-78.621421,40.32672],[-78.53285,40.290741],[-78.506879,40.286869],[-78.451497,40.246942],[-78.446018,40.28825],[-78.43359,40.305572],[-78.297907,40.248915],[-78.268869,40.293534],[-78.236207,40.223895],[-78.13509,40.162778],[-78.170721,40.112265],[-78.202377,40.091234],[-78.205848,40.077158],[-78.184012,40.055969],[-78.208481,40.039058],[-78.214767,40.007736],[-78.301111,39.835838],[-78.338877,39.787083],[-78.354014,39.751164],[-78.384783,39.723749]]]},"id":42009},
{"type":"Feature","properties":{"name":"Cumberland"},"geometry":{"type":"Polygon","coordinates":[[[-77.461913,39.9599],[-77.463102,39.983474],[-77.479903,39.985744],[-77.515921,40.020655],[-77.556213,40.089108],[-77.567665,40.128094],[-77.610986,40.142574],[-77.628465,40.159785],[-77.633325,40.184717],[-77.615297,40.203325],[-77.599626,40.190645],[-77.57016,40.213789],[-77.541862,40.220148],[-77.441855,40.284986],[-77.376707,40.317135],[-77.364652,40.315308],[-77.365873,40.305333],[-77.414152,40.265928],[-77.417173,40.260031],[-77.409338,40.258665],[-77.342389,40.292158],[-77.331547,40.289422],[-77.324948,40.276266],[-77.309887,40.275335],[-77.273098,40.28525],[-77.052961,40.307792],[-77.00536,40.304894],[-76.96667,40.318344],[-76.911752,40.32354],[-76.918024,40.294091],[-76.907381,40.269555],[-76.885865,40.248598],[-76.84629,40.228446],[-76.860237,40.217635],[-76.901773,40.219199],[-76.918123,40.207938],[-76.909845,40.189308],[-76.925516,40.187568],[-76.913545,40.178898],[-76.916055,40.166214],[-76.970203,40.167358],[-76.978138,40.151974],[-77.003972,40.156616],[-77.026265,40.15171],[-77.142769,40.071839],[-77.189806,40.033425],[-77.399457,40.000213],[-77.461913,39.9599]]]},"id":42041},
{"type":"Feature","properties":{"name":"Randolph"},"geometry":{"type":"Polygon","coordinates":[[[-85.204532,40.010762],[-85.2122,40.013295],[-85.215856,40.082859],[-85.21457,40.315664],[-84.795388,40.319501],[-84.803564,40.013991],[-85.204532,40.010762]]]},"id":18135},
{"type":"Feature","properties":{"name":"Lancaster"},"geometry":{"type":"Polygon","coordinates":[[[-76.139223,39.722229],[-76.233122,39.721854],[-76.275078,39.786648],[-76.31785,39.806553],[-76.353839,39.840434],[-76.380276,39.87377],[-76.389256,39.913297],[-76.459647,39.938382],[-76.469688,39.948891],[-76.508911,40.019484],[-76.537293,40.052805],[-76.576379,40.049924],[-76.664408,40.074112],[-76.72282,40.118468],[-76.738231,40.139421],[-76.713527,40.142897],[-76.703182,40.154169],[-76.68153,40.153578],[-76.669345,40.166647],[-76.654941,40.163374],[-76.638462,40.183214],[-76.622203,40.183557],[-76.610034,40.194356],[-76.576923,40.19457],[-76.445678,40.236169],[-76.318259,40.255898],[-76.153194,40.318192],[-75.887033,40.140479],[-75.940048,40.109401],[-75.947058,40.036033],[-75.993699,39.96042],[-75.990662,39.93363],[-76.007706,39.921594],[-75.995536,39.872478],[-76.014282,39.864539],[-76.017539,39.851882],[-76.031334,39.851138],[-76.028609,39.837959],[-76.042655,39.82452],[-76.046035,39.805515],[-76.076797,39.763703],[-76.089394,39.762486],[-76.094521,39.744858],[-76.112397,39.748688],[-76.107972,39.730046],[-76.113999,39.727395],[-76.128748,39.738438],[-76.142679,39.729065],[-76.139223,39.722229]]]},"id":42071},
{"type":"Feature","properties":{"name":"Knox"},"geometry":{"type":"Polygon","coordinates":[[[-92.288904,39.952022],[-92.347178,39.953437],[-92.35123,40.040435],[-92.351422,40.302178],[-91.954626,40.303254],[-91.953085,40.258383],[-91.960606,39.951625],[-92.288904,39.952022]]]},"id":29103},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-77.464433,39.720073],[-77.475793,39.719623],[-78.095948,39.725461],[-78.053756,39.760106],[-77.987959,39.851051],[-77.928288,39.99136],[-77.866823,40.063193],[-77.801161,40.164929],[-77.707591,40.266234],[-77.674518,40.292586],[-77.659403,40.273563],[-77.670214,40.259037],[-77.640657,40.242295],[-77.64905,40.221883],[-77.614724,40.223275],[-77.615297,40.203325],[-77.633325,40.184717],[-77.628465,40.159785],[-77.610986,40.142574],[-77.567665,40.128094],[-77.556213,40.089108],[-77.515921,40.020655],[-77.479903,39.985744],[-77.463102,39.983474],[-77.461913,39.9599],[-77.477523,39.936325],[-77.464433,39.720073]]]},"id":42055},
{"type":"Feature","properties":{"name":"Piatt"},"geometry":{"type":"Polygon","coordinates":[[[-88.755085,40.059175],[-88.75523,40.102705],[-88.692094,40.103677],[-88.691048,40.143117],[-88.575472,40.289245],[-88.464552,40.289744],[-88.466245,39.880755],[-88.468746,39.789645],[-88.47591,39.791064],[-88.748835,39.794812],[-88.755085,40.059175]]]},"id":17147},
{"type":"Feature","properties":{"name":"De Witt"},"geometry":{"type":"Polygon","coordinates":[[[-89.152851,40.05501],[-89.154742,40.285813],[-88.575472,40.289245],[-88.691048,40.143117],[-88.692094,40.103677],[-88.75523,40.102705],[-88.755085,40.059175],[-89.152851,40.05501]]]},"id":17039},
{"type":"Feature","properties":{"name":"Somerset"},"geometry":{"type":"Polygon","coordinates":[[[-78.930173,39.722337],[-79.39661,39.719314],[-79.407856,39.737276],[-79.393679,39.766965],[-79.397059,39.781876],[-79.362634,39.793279],[-79.355287,39.810162],[-79.369989,39.82264],[-79.388644,39.825989],[-79.386652,39.841435],[-79.416995,39.855938],[-79.392259,39.917983],[-79.297477,40.036822],[-79.259711,40.089052],[-79.223516,40.109056],[-79.196965,40.10488],[-79.182248,40.118227],[-79.156857,40.16482],[-79.136127,40.179148],[-79.061984,40.284398],[-78.923934,40.286032],[-78.897665,40.265914],[-78.890547,40.2406],[-78.862325,40.245441],[-78.83263,40.236237],[-78.661537,40.234299],[-78.735742,40.066722],[-78.748514,40.075664],[-78.763796,40.056015],[-78.756081,39.821678],[-78.817758,39.723116],[-78.930173,39.722337]]]},"id":42111},
{"type":"Feature","properties":{"name":"Schuyler"},"geometry":{"type":"Polygon","coordinates":[[[-90.923244,40.10867],[-90.921383,40.196667],[-90.918301,40.284224],[-90.455288,40.276331],[-90.455402,40.194252],[-90.207945,40.189537],[-90.207778,40.172306],[-90.218497,40.160908],[-90.289467,40.158673],[-90.318192,40.144883],[-90.340448,40.144738],[-90.354082,40.127869],[-90.388857,40.11947],[-90.402774,40.078561],[-90.427898,40.069761],[-90.442272,40.020236],[-90.515103,39.989741],[-90.60565,39.983992],[-90.607168,40.004382],[-90.622343,40.015132],[-90.609816,40.020228],[-90.613539,40.027903],[-90.645384,40.028979],[-90.682303,40.045866],[-90.679793,40.076269],[-90.712325,40.080949],[-90.698928,40.106469],[-90.923244,40.10867]]]},"id":17169},
{"type":"Feature","properties":{"name":"Licking"},"geometry":{"type":"Polygon","coordinates":[[[-82.459739,39.918254],[-82.782053,39.932353],[-82.780398,39.966933],[-82.766146,39.969344],[-82.756396,40.12324],[-82.742755,40.274125],[-82.473943,40.261851],[-82.476132,40.241332],[-82.191403,40.231361],[-82.175732,40.231488],[-82.182476,40.159507],[-82.199085,39.944621],[-82.229695,39.94438],[-82.230398,39.9094],[-82.417005,39.916756],[-82.418287,39.926693],[-82.458,39.927856],[-82.459739,39.918254]]]},"id":39089},
{"type":"Feature","properties":{"name":"Champaign"},"geometry":{"type":"Polygon","coordinates":[[[-84.031881,40.037121],[-84.020164,40.179527],[-84.009186,40.270994],[-83.779841,40.258996],[-83.780016,40.240358],[-83.544673,40.226872],[-83.4899,40.221307],[-83.499565,40.113627],[-83.51055,40.007705],[-84.031881,40.037121]]]},"id":39021},
{"type":"Feature","properties":{"name":"Holt"},"geometry":{"type":"Polygon","coordinates":[[[-95.059959,40.134187],[-95.070847,40.072844],[-95.020134,40.039656],[-95.023689,40.007708],[-95.012,39.988692],[-95.005812,39.947184],[-95.015479,39.932223],[-94.965024,39.900824],[-95.021773,39.896979],[-95.033507,39.877844],[-95.063246,39.866538],[-95.100723,39.869865],[-95.150551,39.908055],[-95.193963,39.91018],[-95.207598,39.938176],[-95.240962,39.942106],[-95.308697,39.999408],[-95.345067,40.024974],[-95.371244,40.028751],[-95.390532,40.043751],[-95.413764,40.048111],[-95.403784,40.080379],[-95.384542,40.095363],[-95.392813,40.115416],[-95.422477,40.131744],[-95.460953,40.173995],[-95.466637,40.213256],[-95.476822,40.226855],[-95.547137,40.266216],[-95.187997,40.267015],[-95.086274,40.262928],[-95.075737,40.236141],[-95.085457,40.183022],[-95.059959,40.134187]]]},"id":29087},
{"type":"Feature","properties":{"name":"Richardson"},"geometry":{"type":"Polygon","coordinates":[[[-96.001254,39.995159],[-96.00356,40.263226],[-95.547137,40.266216],[-95.476822,40.226855],[-95.466637,40.213256],[-95.460953,40.173995],[-95.422477,40.131744],[-95.392813,40.115416],[-95.384542,40.095363],[-95.403784,40.080379],[-95.413764,40.048111],[-95.390532,40.043751],[-95.371244,40.028751],[-95.345067,40.024974],[-95.308697,39.999408],[-95.329701,39.992595],[-95.7807,39.993489],[-96.001254,39.995159]]]},"id":31147},
{"type":"Feature","properties":{"name":"Pawnee"},"geometry":{"type":"Polygon","coordinates":[[[-96.240599,39.994503],[-96.454038,39.994173],[-96.454045,40.258892],[-96.057868,40.26331],[-96.00356,40.263226],[-96.001254,39.995159],[-96.240599,39.994503]]]},"id":31133},
{"type":"Feature","properties":{"name":"Grundy"},"geometry":{"type":"Polygon","coordinates":[[[-93.370688,40.031336],[-93.368848,39.963783],[-93.768347,39.955837],[-93.7735,40.133115],[-93.770412,40.263035],[-93.374193,40.263118],[-93.370688,40.031336]]]},"id":29079},
{"type":"Feature","properties":{"name":"Boulder"},"geometry":{"type":"Polygon","coordinates":[[[-105.384804,39.908365],[-105.382858,39.927935],[-105.683795,39.931437],[-105.690341,40.00247],[-105.653963,40.017744],[-105.645258,40.033461],[-105.649622,40.056917],[-105.634775,40.081003],[-105.631357,40.115609],[-105.636683,40.13495],[-105.672153,40.165093],[-105.674763,40.199502],[-105.65868,40.254501],[-105.379883,40.250672],[-105.339872,40.257794],[-105.05411,40.258449],[-105.052006,39.997608],[-105.165256,39.908664],[-105.384804,39.908365]]]},"id":8013},
{"type":"Feature","properties":{"name":"Lewis"},"geometry":{"type":"Polygon","coordinates":[[[-91.848327,39.949688],[-91.960606,39.951625],[-91.953085,40.258383],[-91.499087,40.251422],[-91.506701,40.200504],[-91.516284,40.13459],[-91.50416,40.066757],[-91.487443,40.005798],[-91.447395,39.94611],[-91.848327,39.949688]]]},"id":29111},
{"type":"Feature","properties":{"name":"Chester"},"geometry":{"type":"Polygon","coordinates":[[[-75.791095,39.723866],[-76.139223,39.722229],[-76.142679,39.729065],[-76.128748,39.738438],[-76.113999,39.727395],[-76.107972,39.730046],[-76.112397,39.748688],[-76.094521,39.744858],[-76.089394,39.762486],[-76.076797,39.763703],[-76.046035,39.805515],[-76.042655,39.82452],[-76.028609,39.837959],[-76.031334,39.851138],[-76.017539,39.851882],[-76.014282,39.864539],[-75.995536,39.872478],[-76.007706,39.921594],[-75.990662,39.93363],[-75.993699,39.96042],[-75.947058,40.036033],[-75.940048,40.109401],[-75.887033,40.140479],[-75.70214,40.243644],[-75.695204,40.25579],[-75.666249,40.257187],[-75.64565,40.238294],[-75.628185,40.238035],[-75.621289,40.225238],[-75.604274,40.23088],[-75.590222,40.215699],[-75.589979,40.202546],[-75.56879,40.206758],[-75.557637,40.196157],[-75.555067,40.179793],[-75.536238,40.164081],[-75.536736,40.145947],[-75.525299,40.146222],[-75.51293,40.158272],[-75.510232,40.125578],[-75.472381,40.124068],[-75.475793,40.10961],[-75.452326,40.089275],[-75.427421,40.097943],[-75.410897,40.066831],[-75.376356,40.076231],[-75.37123,40.066618],[-75.428433,40.042177],[-75.414456,40.02698],[-75.459666,40.000514],[-75.446268,39.986236],[-75.520011,39.946151],[-75.533912,39.92052],[-75.556718,39.919971],[-75.579729,39.889488],[-75.613132,39.873214],[-75.602915,39.851299],[-75.583443,39.840119],[-75.643994,39.838307],[-75.694771,39.820457],[-75.745592,39.774929],[-75.774927,39.724553],[-75.791095,39.723866]]]},"id":42029},
{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"Polygon","coordinates":[[[-85.948125,39.932774],[-86.251213,39.932356],[-86.244524,40.185782],[-86.243167,40.22885],[-85.865955,40.228078],[-85.866786,39.950868],[-85.868182,39.935026],[-85.948125,39.932774]]]},"id":18057},
{"type":"Feature","properties":{"name":"York"},"geometry":{"type":"Polygon","coordinates":[[[-76.996812,39.720892],[-76.994278,39.825604],[-76.967039,39.865386],[-76.990829,39.890421],[-76.971975,39.927065],[-76.979047,39.944322],[-77.012945,39.987984],[-77.02413,40.020217],[-77.064322,40.026709],[-77.097183,40.056741],[-77.142769,40.071839],[-77.026265,40.15171],[-77.003972,40.156616],[-76.978138,40.151974],[-76.970203,40.167358],[-76.916055,40.166214],[-76.913545,40.178898],[-76.925516,40.187568],[-76.909845,40.189308],[-76.918123,40.207938],[-76.901773,40.219199],[-76.860237,40.217635],[-76.84629,40.228446],[-76.755872,40.178067],[-76.738231,40.139421],[-76.72282,40.118468],[-76.664408,40.074112],[-76.576379,40.049924],[-76.537293,40.052805],[-76.508911,40.019484],[-76.469688,39.948891],[-76.459647,39.938382],[-76.389256,39.913297],[-76.380276,39.87377],[-76.353839,39.840434],[-76.31785,39.806553],[-76.275078,39.786648],[-76.233122,39.721854],[-76.569834,39.720265],[-76.790492,39.721256],[-76.996812,39.720892]]]},"id":42133},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-86.711828,39.876296],[-87.020571,39.876417],[-87.10091,39.876164],[-87.103518,39.959664],[-87.099343,40.228085],[-86.704229,40.225844],[-86.703786,40.190906],[-86.709646,39.932489],[-86.711828,39.876296]]]},"id":18107},
{"type":"Feature","properties":{"name":"Rio Blanco"},"geometry":{"type":"Polygon","coordinates":[[[-109.051263,40.210511],[-107.436162,40.212418],[-107.035679,40.212929],[-107.035022,40.0876],[-107.30047,40.086544],[-107.303247,40.001927],[-107.316247,39.999054],[-107.32042,39.9171],[-107.427691,39.913898],[-107.432665,39.821449],[-107.928622,39.817889],[-107.934092,39.691292],[-108.547213,39.685979],[-108.548723,39.646345],[-108.894909,39.645437],[-108.897167,39.655763],[-109.052552,39.657382],[-109.051263,40.210511]]]},"id":8103},
{"type":"Feature","properties":{"name":"Guernsey"},"geometry":{"type":"Polygon","coordinates":[[[-81.229859,39.942644],[-81.253038,39.949667],[-81.374907,39.949599],[-81.376746,39.916869],[-81.450189,39.920936],[-81.453112,39.886814],[-81.57099,39.89212],[-81.573715,39.834404],[-81.691524,39.839599],[-81.684588,39.92651],[-81.728542,39.928665],[-81.711197,40.144828],[-81.666625,40.144492],[-81.662764,40.212699],[-81.613934,40.212489],[-81.32927,40.208286],[-81.331148,40.164666],[-81.219587,40.161655],[-81.229859,39.942644]]]},"id":39059},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-90.921672,39.847509],[-90.92245,39.765886],[-91.37357,39.761318],[-91.381863,39.803818],[-91.44934,39.863094],[-91.451141,39.885288],[-91.434203,39.901875],[-91.430541,39.921883],[-91.447395,39.94611],[-91.487443,40.005798],[-91.50416,40.066757],[-91.516284,40.13459],[-91.506701,40.200504],[-90.921383,40.196667],[-90.923244,40.10867],[-90.921672,39.847509]]]},"id":17001},
{"type":"Feature","properties":{"name":"Miami"},"geometry":{"type":"Polygon","coordinates":[[[-84.050008,39.879846],[-84.156358,39.886517],[-84.158357,39.920951],[-84.419733,39.919532],[-84.424312,40.191131],[-84.248572,40.196125],[-84.020164,40.179527],[-84.031881,40.037121],[-84.050008,39.879846]]]},"id":39109},
{"type":"Feature","properties":{"name":"Ohio"},"geometry":{"type":"Polygon","coordinates":[[[-80.524962,40.022825],[-80.738239,40.035664],[-80.702065,40.15409],[-80.70089,40.168181],[-80.678557,40.194151],[-80.65257,40.178473],[-80.587396,40.175094],[-80.526045,40.162521],[-80.524962,40.022825]]]},"id":54069},
{"type":"Feature","properties":{"name":"Boone"},"geometry":{"type":"Polygon","coordinates":[[[-86.339465,39.93143],[-86.709646,39.932489],[-86.703786,40.190906],[-86.244524,40.185782],[-86.251213,39.932356],[-86.339465,39.93143]]]},"id":18011},
{"type":"Feature","properties":{"name":"Burlington"},"geometry":{"type":"Polygon","coordinates":[[[-74.742974,39.726062],[-74.786905,39.751059],[-74.808726,39.775564],[-74.835445,39.781576],[-74.888371,39.77498],[-74.911832,39.788617],[-74.93209,39.875202],[-74.949761,39.884181],[-74.963792,39.911219],[-75.017368,39.940409],[-75.013447,39.967093],[-75.019841,39.973112],[-75.068046,39.985392],[-75.045675,40.007635],[-74.983485,40.034074],[-74.956202,40.058014],[-74.871924,40.078057],[-74.829022,40.116161],[-74.746294,40.124359],[-74.72548,40.149307],[-74.698128,40.171382],[-74.679397,40.173232],[-74.608884,40.130357],[-74.594434,40.130479],[-74.55891,40.072497],[-74.382754,39.754365],[-74.396404,39.590507],[-74.422796,39.559864],[-74.420102,39.552993],[-74.435591,39.539772],[-74.446959,39.553199],[-74.454718,39.538875],[-74.471359,39.540641],[-74.514543,39.564357],[-74.530588,39.566101],[-74.557246,39.585777],[-74.570408,39.585178],[-74.616872,39.618007],[-74.628988,39.61375],[-74.660331,39.621722],[-74.680007,39.683845],[-74.742974,39.726062]]]},"id":34005},
{"type":"Feature","properties":{"name":"Vermillion"},"geometry":{"type":"Polygon","coordinates":[[[-87.535793,39.887339],[-87.535357,40.166232],[-87.49331,40.163302],[-87.493897,40.142451],[-87.418715,40.141685],[-87.423011,40.07645],[-87.435508,40.059875],[-87.440925,40.017788],[-87.432663,39.991802],[-87.441597,39.973358],[-87.428948,39.954102],[-87.430039,39.93734],[-87.414399,39.918038],[-87.383621,39.903916],[-87.372017,39.870617],[-87.386941,39.831871],[-87.374978,39.790856],[-87.38701,39.768387],[-87.392978,39.68732],[-87.405162,39.658954],[-87.3941,39.607985],[-87.535598,39.609376],[-87.535793,39.887339]]]},"id":18165},
{"type":"Feature","properties":{"name":"Menard"},"geometry":{"type":"Polygon","coordinates":[[[-89.997709,39.906253],[-90.000367,40.114807],[-89.96566,40.140331],[-89.924155,40.14093],[-89.892835,40.133324],[-89.879667,40.144703],[-89.865758,40.130688],[-89.845357,40.14072],[-89.828457,40.126705],[-89.8026,40.128132],[-89.778582,40.136802],[-89.756312,40.132316],[-89.717859,40.145992],[-89.699204,40.144207],[-89.658951,40.165122],[-89.606001,40.136166],[-89.604093,40.095353],[-89.58125,40.094915],[-89.585323,39.978843],[-89.705939,39.976894],[-89.710576,39.920212],[-89.769935,39.919193],[-89.775291,39.908302],[-89.997709,39.906253]]]},"id":17129},
{"type":"Feature","properties":{"name":"Belmont"},"geometry":{"type":"Polygon","coordinates":[[[-81.234224,39.864928],[-81.229859,39.942644],[-81.219587,40.161655],[-81.104705,40.164085],[-80.877795,40.153131],[-80.702065,40.15409],[-80.738239,40.035664],[-80.738888,39.983476],[-80.76306,39.947015],[-80.758887,39.921267],[-80.768127,39.913313],[-80.796021,39.91984],[-80.80784,39.915903],[-80.812136,39.904901],[-80.790849,39.872348],[-80.798525,39.856723],[-80.825917,39.839667],[-81.234224,39.864928]]]},"id":39013},
{"type":"Feature","properties":{"name":"Ocean"},"geometry":{"type":"Polygon","coordinates":[[[-74.412389,39.542621],[-74.420102,39.552993],[-74.422796,39.559864],[-74.396404,39.590507],[-74.382754,39.754365],[-74.55891,40.072497],[-74.527056,40.086718],[-74.420951,40.163107],[-74.265596,40.163752],[-74.249986,40.109818],[-74.232911,40.101666],[-74.181845,40.100327],[-74.16171,40.093446],[-74.11591,40.133511],[-74.090587,40.121937],[-74.091426,40.116086],[-74.083773,40.088182],[-74.034295,40.091367],[-74.04979,40.056856],[-74.122181,40.051561],[-74.077333,40.042273],[-74.159229,39.878605],[-74.171427,39.718275],[-74.237676,39.624047],[-74.323342,39.572086],[-74.328851,39.523628],[-74.412389,39.542621]]]},"id":34029},
{"type":"Feature","properties":{"name":"Fulton"},"geometry":{"type":"Polygon","coordinates":[[[-78.384783,39.723749],[-78.354014,39.751164],[-78.338877,39.787083],[-78.301111,39.835838],[-78.214767,40.007736],[-78.208481,40.039058],[-78.184012,40.055969],[-78.205848,40.077158],[-78.202377,40.091234],[-78.170721,40.112265],[-78.13509,40.162778],[-78.086703,40.132181],[-77.922931,40.102006],[-77.866823,40.063193],[-77.928288,39.99136],[-77.987959,39.851051],[-78.053756,39.760106],[-78.095948,39.725461],[-78.33455,39.724096],[-78.384783,39.723749]]]},"id":42057},
{"type":"Feature","properties":{"name":"Muskingum"},"geometry":{"type":"Polygon","coordinates":[[[-82.074472,39.770389],[-82.074105,39.811706],[-82.167416,39.817798],[-82.160403,39.903846],[-82.230398,39.9094],[-82.229695,39.94438],[-82.199085,39.944621],[-82.182476,40.159507],[-81.711197,40.144828],[-81.728542,39.928665],[-81.684588,39.92651],[-81.691524,39.839599],[-81.696675,39.753204],[-82.074472,39.770389]]]},"id":39119},
{"type":"Feature","properties":{"name":"Butte"},"geometry":{"type":"Polygon","coordinates":[[[-121.614758,39.305176],[-121.896753,39.302581],[-121.882151,39.386217],[-121.869944,39.426179],[-121.86816,39.497055],[-121.833698,39.535156],[-121.941601,39.532294],[-121.967968,39.524897],[-121.989002,39.535406],[-121.993733,39.552015],[-121.972829,39.604139],[-121.980009,39.630182],[-121.962828,39.649931],[-121.98004,39.665136],[-121.943281,39.678853],[-121.931197,39.703386],[-121.951469,39.737084],[-121.983002,39.742646],[-122.005265,39.761276],[-122.004197,39.789013],[-122.040568,39.794822],[-122.052028,39.804347],[-122.054943,39.837367],[-122.049137,39.857127],[-122.033245,39.870025],[-122.040142,39.874286],[-122.065526,39.86827],[-122.063649,39.884234],[-121.766356,39.880895],[-121.752623,39.890947],[-121.737197,39.930116],[-121.703658,39.977223],[-121.63889,39.979176],[-121.637005,39.996495],[-121.625042,39.997391],[-121.624584,40.018288],[-121.616795,40.018574],[-121.61784,40.034874],[-121.600506,40.036419],[-121.595577,40.053395],[-121.582095,40.05888],[-121.586208,40.095043],[-121.483246,40.103745],[-121.483185,40.112374],[-121.462677,40.111741],[-121.462563,40.119458],[-121.447517,40.119538],[-121.448105,40.129048],[-121.439697,40.129346],[-121.441757,40.152878],[-121.424956,40.153924],[-121.403845,40.153298],[-121.404562,40.09654],[-121.387807,40.098028],[-121.388944,40.087095],[-121.368603,40.07918],[-121.367039,40.063349],[-121.377896,40.063879],[-121.378399,40.042532],[-121.397,40.04188],[-121.405805,40.018877],[-121.417173,40.018026],[-121.41895,39.997995],[-121.409375,39.998785],[-121.411092,39.977846],[-121.401448,39.977274],[-121.402317,39.95228],[-121.411251,39.951059],[-121.402652,39.908698],[-121.418186,39.907698],[-121.418583,39.894526],[-121.405353,39.894084],[-121.40327,39.860114],[-121.35911,39.853942],[-121.348428,39.816189],[-121.331032,39.815884],[-121.330238,39.802753],[-121.313415,39.801972],[-121.313979,39.791512],[-121.293295,39.78632],[-121.280401,39.760895],[-121.264241,39.760995],[-121.262158,39.746091],[-121.245396,39.746206],[-121.242779,39.732225],[-121.227291,39.733656],[-121.226444,39.719164],[-121.205516,39.719416],[-121.203326,39.692263],[-121.185359,39.691954],[-121.184626,39.679274],[-121.167879,39.679382],[-121.167635,39.664867],[-121.156923,39.66568],[-121.148302,39.650989],[-121.13218,39.651528],[-121.1298,39.620293],[-121.111252,39.62],[-121.11068,39.610036],[-121.082718,39.612314],[-121.080375,39.59197],[-121.071533,39.594076],[-121.071235,39.578199],[-121.09034,39.578031],[-121.089783,39.557634],[-121.129144,39.55679],[-121.128106,39.549111],[-121.138871,39.54921],[-121.140909,39.522374],[-121.152277,39.5229],[-121.15349,39.512879],[-121.18149,39.511947],[-121.180796,39.520591],[-121.230892,39.519812],[-121.231861,39.50571],[-121.27783,39.505961],[-121.276449,39.512816],[-121.302191,39.514197],[-121.313597,39.475234],[-121.33943,39.448474],[-121.336066,39.422275],[-121.360945,39.370133],[-121.391684,39.336835],[-121.470285,39.327237],[-121.470773,39.315877],[-121.494371,39.302773],[-121.55212,39.302948],[-121.600285,39.311611],[-121.614758,39.305176]]]},"id":6007},
{"type":"Feature","properties":{"name":"Daviess"},"geometry":{"type":"Polygon","coordinates":[[[-94.226671,40.038834],[-94.223613,40.138366],[-93.7735,40.133115],[-93.768347,39.955837],[-93.767618,39.782048],[-94.21419,39.785102],[-94.210359,40.037629],[-94.226671,40.038834]]]},"id":29061},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-83.242819,39.804478],[-83.250846,39.912205],[-83.232138,39.926236],[-83.263427,40.001565],[-83.251983,40.023892],[-83.261108,40.047551],[-83.212919,40.047021],[-83.205687,40.107308],[-83.171933,40.107019],[-83.17017,40.137986],[-82.756396,40.12324],[-82.766146,39.969344],[-82.780398,39.966933],[-82.782053,39.932353],[-82.807903,39.932624],[-82.810451,39.910266],[-82.794261,39.910495],[-82.80363,39.817923],[-82.823398,39.817542],[-82.826664,39.788794],[-83.242819,39.804478]]]},"id":39049},
{"type":"Feature","properties":{"name":"Fayette"},"geometry":{"type":"Polygon","coordinates":[[[-79.480971,39.720274],[-79.765132,39.721807],[-79.918269,39.721667],[-79.910592,39.742674],[-79.939188,39.756632],[-79.942148,39.773355],[-79.93847,39.788392],[-79.914115,39.794305],[-79.928123,39.818978],[-79.922392,39.844487],[-79.933508,39.854245],[-79.919628,39.887169],[-79.931927,39.896],[-79.932735,39.92002],[-79.967296,39.948371],[-80.010572,39.950236],[-80.015623,39.957392],[-80.003834,39.980756],[-79.995212,40.00905],[-79.941102,39.989702],[-79.909713,40.020693],[-79.874509,40.027712],[-79.884039,40.043405],[-79.8803,40.057534],[-79.899207,40.065793],[-79.903228,40.077962],[-79.894499,40.086747],[-79.856366,40.078851],[-79.84676,40.097623],[-79.886664,40.122272],[-79.884535,40.130478],[-79.805774,40.131943],[-79.777887,40.125191],[-79.75216,40.129738],[-79.725396,40.120232],[-79.719689,40.110814],[-79.690849,40.111771],[-79.683387,40.103738],[-79.668479,40.107621],[-79.65927,40.081475],[-79.629187,40.080628],[-79.615057,40.09084],[-79.600301,40.079751],[-79.54025,40.123821],[-79.520917,40.12096],[-79.513539,40.136497],[-79.478054,40.137058],[-79.456249,40.131504],[-79.424189,40.10252],[-79.405474,40.099629],[-79.356553,40.068162],[-79.34018,40.038927],[-79.297477,40.036822],[-79.392259,39.917983],[-79.416995,39.855938],[-79.386652,39.841435],[-79.388644,39.825989],[-79.369989,39.82264],[-79.355287,39.810162],[-79.362634,39.793279],[-79.397059,39.781876],[-79.393679,39.766965],[-79.407856,39.737276],[-79.39661,39.719314],[-79.480971,39.720274]]]},"id":42051},
{"type":"Feature","properties":{"name":"Philadelphia"},"geometry":{"type":"Polygon","coordinates":[[[-75.142901,39.881602],[-75.185605,39.877406],[-75.246996,39.850405],[-75.248888,39.866767],[-75.265635,39.887019],[-75.246079,39.937006],[-75.255624,39.95804],[-75.285457,39.983057],[-75.216574,40.01584],[-75.268875,40.053059],[-75.226177,40.091751],[-75.192546,40.072091],[-75.179019,40.081368],[-75.119447,40.046697],[-75.064001,40.104595],[-75.021465,40.134609],[-74.965753,40.11082],[-74.966791,40.081364],[-74.990924,40.044652],[-74.983485,40.034074],[-75.045675,40.007635],[-75.068046,39.985392],[-75.084587,39.975733],[-75.110963,39.97669],[-75.139865,39.955919],[-75.147159,39.93474],[-75.135805,39.896887],[-75.142901,39.881602]]]},"id":42101},
{"type":"Feature","properties":{"name":"Andrew"},"geometry":{"type":"Polygon","coordinates":[[[-94.888505,39.8174],[-94.898325,39.828333],[-94.923876,39.833132],[-94.936511,39.849386],[-94.938244,39.896082],[-94.965024,39.900824],[-95.015479,39.932223],[-95.005812,39.947184],[-95.012,39.988692],[-95.023689,40.007708],[-95.020134,40.039656],[-95.070847,40.072844],[-95.059959,40.134187],[-94.619892,40.129685],[-94.619174,40.043898],[-94.61718,39.813785],[-94.888505,39.8174]]]},"id":29003},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-90.585485,39.880789],[-90.542874,39.917875],[-90.515103,39.989741],[-90.442272,40.020236],[-90.427898,40.069761],[-90.402774,40.078561],[-90.388857,40.11947],[-90.354082,40.127869],[-90.314179,40.109998],[-90.289658,40.067076],[-90.272194,40.063108],[-90.257843,40.069994],[-90.237876,40.056963],[-90.20188,40.061705],[-90.186941,40.070852],[-90.131046,40.069788],[-90.088504,40.084501],[-90.063402,40.102753],[-90.000367,40.114807],[-89.997709,39.906253],[-89.998114,39.877238],[-90.585485,39.880789]]]},"id":17017},
{"type":"Feature","properties":{"name":"White Pine"},"geometry":{"type":"Polygon","coordinates":[[[-114.994171,38.680836],[-115.900252,39.15591],[-115.899573,39.161796],[-115.897303,39.42832],[-115.862756,39.466089],[-115.816253,39.540003],[-115.82486,39.560937],[-115.808319,39.587076],[-115.809143,39.609754],[-115.823458,39.720505],[-115.798929,39.756997],[-115.79854,39.815934],[-115.782984,39.850697],[-115.815449,39.952569],[-115.826292,40.023858],[-115.818281,40.036027],[-115.822196,40.126751],[-114.038108,40.111047],[-114.039845,39.908779],[-114.040105,39.538685],[-114.044268,38.678996],[-114.994171,38.680836]]]},"id":32033},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-83.655379,39.711749],[-83.647238,39.770751],[-83.592245,39.765715],[-83.51055,40.007705],[-83.499565,40.113627],[-83.205687,40.107308],[-83.212919,40.047021],[-83.261108,40.047551],[-83.251983,40.023892],[-83.263427,40.001565],[-83.232138,39.926236],[-83.250846,39.912205],[-83.242819,39.804478],[-83.251173,39.69146],[-83.655379,39.711749]]]},"id":39097},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-90.577168,39.845495],[-90.879038,39.842543],[-90.921672,39.847509],[-90.923244,40.10867],[-90.698928,40.106469],[-90.712325,40.080949],[-90.679793,40.076269],[-90.682303,40.045866],[-90.645384,40.028979],[-90.613539,40.027903],[-90.609816,40.020228],[-90.622343,40.015132],[-90.607168,40.004382],[-90.60565,39.983992],[-90.515103,39.989741],[-90.542874,39.917875],[-90.585485,39.880789],[-90.577168,39.845495]]]},"id":17009},
{"type":"Feature","properties":{"name":"Garfield"},"geometry":{"type":"Polygon","coordinates":[[[-109.051417,39.360966],[-109.053529,39.51817],[-109.052552,39.657382],[-108.897167,39.655763],[-108.894909,39.645437],[-108.548723,39.646345],[-108.547213,39.685979],[-107.934092,39.691292],[-107.928622,39.817889],[-107.432665,39.821449],[-107.427691,39.913898],[-107.32042,39.9171],[-107.316247,39.999054],[-107.303247,40.001927],[-107.30047,40.086544],[-107.035022,40.0876],[-107.030138,39.915238],[-107.097286,39.913624],[-107.110666,39.354915],[-107.427237,39.355698],[-109.051417,39.360966]]]},"id":8045},
{"type":"Feature","properties":{"name":"Henry"},"geometry":{"type":"Polygon","coordinates":[[[-85.204532,40.010762],[-85.204738,39.876889],[-85.220279,39.877869],[-85.225559,39.789101],[-85.307722,39.787792],[-85.601751,39.790015],[-85.597433,39.880629],[-85.581122,39.882846],[-85.584654,39.95011],[-85.58045,40.082029],[-85.215856,40.082859],[-85.2122,40.013295],[-85.204532,40.010762]]]},"id":18065},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-77.464433,39.720073],[-77.477523,39.936325],[-77.461913,39.9599],[-77.399457,40.000213],[-77.189806,40.033425],[-77.142769,40.071839],[-77.097183,40.056741],[-77.064322,40.026709],[-77.02413,40.020217],[-77.012945,39.987984],[-76.979047,39.944322],[-76.971975,39.927065],[-76.990829,39.890421],[-76.967039,39.865386],[-76.994278,39.825604],[-76.996812,39.720892],[-77.221051,39.720679],[-77.464433,39.720073]]]},"id":42001},
{"type":"Feature","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-75.420468,39.798983],[-75.469986,39.826547],[-75.583443,39.840119],[-75.602915,39.851299],[-75.613132,39.873214],[-75.579729,39.889488],[-75.556718,39.919971],[-75.533912,39.92052],[-75.520011,39.946151],[-75.446268,39.986236],[-75.459666,40.000514],[-75.414456,40.02698],[-75.428433,40.042177],[-75.37123,40.066618],[-75.332038,40.011078],[-75.318029,40.01764],[-75.285457,39.983057],[-75.255624,39.95804],[-75.246079,39.937006],[-75.265635,39.887019],[-75.248888,39.866767],[-75.246996,39.850405],[-75.25374,39.845538],[-75.345932,39.848517],[-75.420468,39.798983]]]},"id":42045},
{"type":"Feature","properties":{"name":"Macon"},"geometry":{"type":"Polygon","coordinates":[[[-89.032283,39.65656],[-89.146993,39.65694],[-89.149274,39.801562],[-89.191717,39.816181],[-89.223471,39.811722],[-89.224864,39.91872],[-89.151704,39.919443],[-89.152851,40.05501],[-88.755085,40.059175],[-88.748835,39.794812],[-88.761416,39.793977],[-88.763186,39.738225],[-88.81464,39.737157],[-88.815411,39.656016],[-89.032283,39.65656]]]},"id":17115},
{"type":"Feature","properties":{"name":"DeKalb"},"geometry":{"type":"Polygon","coordinates":[[[-94.21419,39.785102],[-94.216059,39.74055],[-94.616149,39.740276],[-94.61718,39.813785],[-94.619174,40.043898],[-94.226671,40.038834],[-94.210359,40.037629],[-94.21419,39.785102]]]},"id":29063},
{"type":"Feature","properties":{"name":"Macon"},"geometry":{"type":"Polygon","coordinates":[[[-92.8587,39.699463],[-92.854042,40.036194],[-92.35123,40.040435],[-92.347178,39.953437],[-92.288904,39.952022],[-92.300718,39.608877],[-92.703352,39.609191],[-92.690292,39.692077],[-92.8587,39.699463]]]},"id":29121},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-83.647238,39.770751],[-83.74247,39.783305],[-83.743104,39.790546],[-83.823215,39.794249],[-83.823727,39.820578],[-83.93599,39.827586],[-83.93673,39.842543],[-84.050229,39.849386],[-84.050008,39.879846],[-84.031881,40.037121],[-83.51055,40.007705],[-83.592245,39.765715],[-83.647238,39.770751]]]},"id":39023},
{"type":"Feature","properties":{"name":"Linn"},"geometry":{"type":"Polygon","coordinates":[[[-92.854042,40.036194],[-92.8587,39.699463],[-93.27292,39.703999],[-93.374065,39.704542],[-93.368848,39.963783],[-93.370688,40.031336],[-92.854042,40.036194]]]},"id":29115},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-80.524269,39.721209],[-80.832298,39.718834],[-80.856453,39.736336],[-80.870728,39.759994],[-80.819104,39.809001],[-80.825917,39.839667],[-80.798525,39.856723],[-80.790849,39.872348],[-80.812136,39.904901],[-80.80784,39.915903],[-80.796021,39.91984],[-80.768127,39.913313],[-80.758887,39.921267],[-80.76306,39.947015],[-80.738888,39.983476],[-80.738239,40.035664],[-80.524962,40.022825],[-80.524651,39.95842],[-80.524269,39.721209]]]},"id":54051},
{"type":"Feature","properties":{"name":"Greene"},"geometry":{"type":"Polygon","coordinates":[[[-79.918269,39.721667],[-80.429082,39.719843],[-80.524269,39.721209],[-80.524651,39.95842],[-80.487204,39.952965],[-80.467267,39.978843],[-80.424549,39.976668],[-80.393359,39.992357],[-80.362848,39.995321],[-80.355012,40.009561],[-80.313087,40.012772],[-80.302024,40.021638],[-80.262366,40.005734],[-80.230726,40.01096],[-80.19318,40.002694],[-80.166293,40.006444],[-80.150103,39.99091],[-80.114549,39.987573],[-80.079367,40.01098],[-80.071234,40.002072],[-80.053221,40.001985],[-80.040525,39.982744],[-80.003834,39.980756],[-80.015623,39.957392],[-80.010572,39.950236],[-79.967296,39.948371],[-79.932735,39.92002],[-79.931927,39.896],[-79.919628,39.887169],[-79.933508,39.854245],[-79.922392,39.844487],[-79.928123,39.818978],[-79.914115,39.794305],[-79.93847,39.788392],[-79.942148,39.773355],[-79.939188,39.756632],[-79.910592,39.742674],[-79.918269,39.721667]]]},"id":42059},
{"type":"Feature","properties":{"name":"Wayne"},"geometry":{"type":"Polygon","coordinates":[[[-84.808697,39.733299],[-85.037324,39.732622],[-85.037141,39.716276],[-85.188457,39.7184],[-85.189632,39.788781],[-85.225559,39.789101],[-85.220279,39.877869],[-85.204738,39.876889],[-85.204532,40.010762],[-84.803564,40.013991],[-84.80615,39.917167],[-84.808697,39.733299]]]},"id":18177},
{"type":"Feature","properties":{"name":"Juab"},"geometry":{"type":"Polygon","coordinates":[[[-112.008105,39.30198],[-112.068852,39.301679],[-112.067838,39.316613],[-112.182816,39.31567],[-112.191064,39.361823],[-112.207872,39.377906],[-112.185121,39.397452],[-112.197657,39.44196],[-112.185618,39.470543],[-112.198611,39.481484],[-112.192844,39.514392],[-112.199368,39.550955],[-114.040105,39.538685],[-114.039845,39.908779],[-113.602643,39.906336],[-113.578381,39.899324],[-113.487878,39.909983],[-113.464333,39.900702],[-113.434532,39.908934],[-112.34503,39.904137],[-112.331961,39.948136],[-112.305295,39.942601],[-112.234028,39.95762],[-112.221134,39.988912],[-112.17837,40.008162],[-112.152803,40.004],[-112.13611,39.984286],[-112.106591,39.967704],[-112.096642,39.955063],[-112.098404,39.929252],[-112.060019,39.902325],[-112.060698,39.88374],[-112.078376,39.862191],[-112.06761,39.826809],[-112.080763,39.792374],[-112.072691,39.778889],[-112.020985,39.781389],[-111.995785,39.807623],[-111.978793,39.801951],[-111.940393,39.853526],[-111.871802,39.889785],[-111.833028,39.928154],[-111.767939,39.890043],[-111.738671,39.86339],[-111.736511,39.85195],[-111.750932,39.84347],[-111.76404,39.811781],[-111.638429,39.807384],[-111.638384,39.791942],[-111.620423,39.791626],[-111.621301,39.779858],[-111.583556,39.779595],[-111.583838,39.720125],[-111.642053,39.718541],[-111.641275,39.704888],[-111.671588,39.699822],[-111.670367,39.692052],[-111.681842,39.690724],[-111.681651,39.677098],[-111.709263,39.675995],[-111.706908,39.447527],[-111.743455,39.44544],[-111.746537,39.370211],[-111.916343,39.370896],[-111.917106,39.360032],[-111.948723,39.359502],[-111.953378,39.327009],[-112.00764,39.326016],[-112.008105,39.30198]]]},"id":49023},
{"type":"Feature","properties":{"name":"Churchill"},"geometry":{"type":"Polygon","coordinates":[[[-118.733468,39.077077],[-118.735109,39.12103],[-118.781955,39.120366],[-118.783313,39.151623],[-118.80885,39.152615],[-118.809285,39.169838],[-118.834821,39.170372],[-118.835768,39.18441],[-118.853552,39.183239],[-118.854644,39.202717],[-118.87358,39.200169],[-118.873466,39.218758],[-118.894829,39.21798],[-118.896035,39.241535],[-118.909089,39.240883],[-118.91015,39.258549],[-118.925013,39.258774],[-118.925364,39.271915],[-118.946765,39.272037],[-118.949001,39.288776],[-118.964451,39.288532],[-118.966031,39.303016],[-118.984433,39.301818],[-118.984769,39.314055],[-119.002569,39.312407],[-119.004248,39.330061],[-119.017264,39.327586],[-119.0195,39.343874],[-119.036773,39.3445],[-119.035934,39.356752],[-119.049003,39.356085],[-119.047668,39.371976],[-119.071503,39.372941],[-119.071938,39.387898],[-119.087998,39.387627],[-119.088365,39.400319],[-119.108614,39.400429],[-119.111501,39.519625],[-119.078709,39.520174],[-119.08093,39.638481],[-119.070218,39.640019],[-119.071119,39.733863],[-119.113852,39.701862],[-119.116332,39.684589],[-119.132438,39.68341],[-119.163536,39.663833],[-119.167755,39.645168],[-119.191369,39.635689],[-119.187806,39.675655],[-119.155579,39.717479],[-119.16984,39.793863],[-119.199206,39.814211],[-119.210048,39.835786],[-119.187747,39.870641],[-119.211484,39.921471],[-119.196622,39.945312],[-119.208593,40.003154],[-118.670365,39.994215],[-117.534606,39.998272],[-117.494832,39.97667],[-117.473606,39.94275],[-117.463153,39.903799],[-117.462305,39.864809],[-117.481272,39.83346],[-117.488649,39.774039],[-117.466302,39.742393],[-117.456993,39.688931],[-117.465049,39.640397],[-117.447004,39.620061],[-117.464117,39.589174],[-117.458547,39.557917],[-117.48512,39.516566],[-117.508437,39.525088],[-117.554902,39.518088],[-117.5758,39.52162],[-117.585108,39.492568],[-117.641476,39.463278],[-117.626903,39.43162],[-117.632732,39.416633],[-117.670712,39.402835],[-117.67764,39.379226],[-117.700765,39.370486],[-117.730552,39.373942],[-117.741188,39.366175],[-117.741393,39.328093],[-117.706554,39.23175],[-117.731632,39.186275],[-117.760617,39.176586],[-117.772932,39.162457],[-117.781454,39.127503],[-117.765675,39.093152],[-117.849061,39.075387],[-118.733468,39.077077]]]},"id":32001},
{"type":"Feature","properties":{"name":"Norton"},"geometry":{"type":"Polygon","coordinates":[[[-100.16391,39.559143],[-100.179398,39.560665],[-100.180911,40.000479],[-99.627859,40.002988],[-99.625045,39.559482],[-100.16391,39.559143]]]},"id":20137},
{"type":"Feature","properties":{"name":"Phillips"},"geometry":{"type":"Polygon","coordinates":[[[-99.625045,39.559482],[-99.627859,40.002988],[-99.178201,39.999577],[-99.064747,39.998338],[-99.062178,39.561568],[-99.601812,39.557774],[-99.625045,39.559482]]]},"id":20147},
{"type":"Feature","properties":{"name":"Rawlins"},"geometry":{"type":"Polygon","coordinates":[[[-100.737845,39.566223],[-101.385283,39.565318],[-101.40676,39.567149],[-101.407393,40.001004],[-101.322149,40.001821],[-100.754856,40.000198],[-100.735049,39.999172],[-100.737845,39.566223]]]},"id":20153},
{"type":"Feature","properties":{"name":"Cheyenne"},"geometry":{"type":"Polygon","coordinates":[[[-102.048802,39.562804],[-102.049443,39.568693],[-102.051536,39.998918],[-101.407393,40.001004],[-101.40676,39.567149],[-102.048802,39.562804]]]},"id":20023},
{"type":"Feature","properties":{"name":"Decatur"},"geometry":{"type":"Polygon","coordinates":[[[-100.737845,39.566223],[-100.735049,39.999172],[-100.191112,40.000586],[-100.180911,40.000479],[-100.179398,39.560665],[-100.717574,39.564739],[-100.737845,39.566223]]]},"id":20039},
{"type":"Feature","properties":{"name":"Republic"},"geometry":{"type":"Polygon","coordinates":[[[-97.927812,39.648158],[-97.929589,39.998453],[-97.816589,39.999729],[-97.361912,39.99738],[-97.360938,39.649743],[-97.927812,39.648158]]]},"id":20157},
{"type":"Feature","properties":{"name":"Doniphan"},"geometry":{"type":"Polygon","coordinates":[[[-95.329912,39.647781],[-95.329701,39.992595],[-95.308697,39.999408],[-95.240962,39.942106],[-95.207598,39.938176],[-95.193963,39.91018],[-95.150551,39.908055],[-95.100723,39.869865],[-95.063246,39.866538],[-95.033507,39.877844],[-95.021773,39.896979],[-94.965024,39.900824],[-94.938244,39.896082],[-94.936511,39.849386],[-94.923876,39.833132],[-94.898325,39.828333],[-94.888505,39.8174],[-94.899324,39.793775],[-94.933268,39.782774],[-94.935114,39.775427],[-94.9218,39.757841],[-94.877068,39.760679],[-94.871185,39.754118],[-94.877861,39.739306],[-94.905678,39.726755],[-94.930856,39.727026],[-94.953142,39.736501],[-94.961786,39.732038],[-94.978571,39.684988],[-95.028292,39.661913],[-95.056017,39.62569],[-95.095729,39.621918],[-95.119267,39.646748],[-95.329912,39.647781]]]},"id":20043},
{"type":"Feature","properties":{"name":"Mendocino"},"geometry":{"type":"Polygon","coordinates":[[[-122.811567,38.844577],[-123.077293,38.850887],[-123.077964,38.837682],[-123.128854,38.837441],[-123.131173,38.808714],[-123.363004,38.806999],[-123.363256,38.776098],[-123.484701,38.777964],[-123.523887,38.757659],[-123.721901,38.924771],[-123.683448,39.041806],[-123.813718,39.347806],[-123.754652,39.551879],[-123.783532,39.687109],[-123.838108,39.826397],[-124.007639,39.998581],[-123.53674,39.997892],[-123.533688,39.977602],[-122.933004,39.979234],[-122.910259,39.936697],[-122.919277,39.914923],[-122.940708,39.898012],[-122.949633,39.846263],[-122.928674,39.795924],[-122.926323,39.745617],[-122.901733,39.745414],[-122.900779,39.711849],[-122.883765,39.709015],[-122.879766,39.579305],[-122.878644,39.528944],[-122.926451,39.528956],[-122.927641,39.514365],[-123.015054,39.516543],[-123.016679,39.507384],[-123.036432,39.507792],[-123.035753,39.499652],[-123.051218,39.4989],[-123.052468,39.449784],[-123.063768,39.449235],[-123.065736,39.408716],[-123.046532,39.407381],[-123.044555,39.37659],[-123.033859,39.377105],[-123.024405,39.328061],[-123.00974,39.316502],[-123.006917,39.275312],[-122.996647,39.273535],[-122.985088,39.23458],[-123.002911,39.234172],[-123.001896,39.221962],[-123.013127,39.220966],[-123.012005,39.214665],[-123.02982,39.214253],[-123.037549,39.178457],[-123.065939,39.176618],[-123.08686,39.071588],[-123.048971,39.051641],[-123.042486,39.016532],[-123.020055,39.01081],[-123.019231,39.000862],[-122.980007,39.000034],[-122.980587,38.985474],[-122.969218,38.984207],[-122.968761,38.949713],[-122.959712,38.947882],[-122.959117,38.933375],[-122.938967,38.92617],[-122.937716,38.903523],[-122.908799,38.904908],[-122.908799,38.897641],[-122.890953,38.896676],[-122.889077,38.880872],[-122.867843,38.881879],[-122.866157,38.868338],[-122.854987,38.869322],[-122.854438,38.862536],[-122.810659,38.855517],[-122.811567,38.844577]]]},"id":6045},
{"type":"Feature","properties":{"name":"Smith"},"geometry":{"type":"Polygon","coordinates":[[[-98.504698,39.56034],[-99.041326,39.560252],[-99.062178,39.561568],[-99.064747,39.998338],[-98.720632,39.998461],[-98.504479,39.99713],[-98.504698,39.56034]]]},"id":20183},
{"type":"Feature","properties":{"name":"Jewell"},"geometry":{"type":"Polygon","coordinates":[[[-97.929818,39.559301],[-98.486844,39.559005],[-98.504698,39.56034],[-98.504479,39.99713],[-98.264166,39.998435],[-97.929589,39.998453],[-97.927812,39.648158],[-97.929818,39.559301]]]},"id":20089},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-96.801448,39.562809],[-96.951445,39.562004],[-97.359861,39.564402],[-97.360938,39.649743],[-97.361912,39.99738],[-96.908288,39.996155],[-96.80142,39.994476],[-96.801448,39.562809]]]},"id":20201},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-104.882147,39.732825],[-104.880216,39.742857],[-104.842045,39.745695],[-104.850766,39.765872],[-104.825092,39.767466],[-104.824993,39.778357],[-104.735277,39.775238],[-104.736133,39.822284],[-104.622367,39.828272],[-104.598417,39.900123],[-104.731,39.896702],[-104.791732,39.806887],[-104.843517,39.803267],[-104.844784,39.791891],[-104.861478,39.790083],[-104.862027,39.801863],[-104.884886,39.803968],[-104.89292,39.783793],[-104.921036,39.78303],[-104.934563,39.790373],[-105.046552,39.789976],[-105.047016,39.908826],[-105.017312,39.919366],[-105.013518,39.978164],[-104.965467,39.994692],[-104.140788,39.99554],[-103.702995,39.993538],[-103.706973,39.732259],[-104.882147,39.732825]]]},"id":8001},
{"type":"Feature","properties":{"name":"Nemaha"},"geometry":{"type":"Polygon","coordinates":[[[-96.234647,39.559731],[-96.240599,39.994503],[-96.001254,39.995159],[-95.7807,39.993489],[-95.783734,39.64618],[-95.786236,39.561824],[-96.030379,39.558219],[-96.234647,39.559731]]]},"id":20131},
{"type":"Feature","properties":{"name":"Marshall"},"geometry":{"type":"Polygon","coordinates":[[[-96.801448,39.562809],[-96.80142,39.994476],[-96.454038,39.994173],[-96.240599,39.994503],[-96.234647,39.559731],[-96.578192,39.560114],[-96.801448,39.562809]]]},"id":20117},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-95.783734,39.64618],[-95.7807,39.993489],[-95.329701,39.992595],[-95.329912,39.647781],[-95.549689,39.646623],[-95.783734,39.64618]]]},"id":20013},
{"type":"Feature","properties":{"name":"Camden"},"geometry":{"type":"Polygon","coordinates":[[[-74.885727,39.600778],[-74.934753,39.682969],[-74.995713,39.700982],[-75.004754,39.716126],[-75.026026,39.723805],[-75.027872,39.739712],[-75.052769,39.764233],[-75.087134,39.774879],[-75.075369,39.786442],[-75.089133,39.804393],[-75.087302,39.823406],[-75.101509,39.846351],[-75.142901,39.881602],[-75.135805,39.896887],[-75.147159,39.93474],[-75.139865,39.955919],[-75.110963,39.97669],[-75.084587,39.975733],[-75.068046,39.985392],[-75.019841,39.973112],[-75.013447,39.967093],[-75.017368,39.940409],[-74.963792,39.911219],[-74.949761,39.884181],[-74.93209,39.875202],[-74.911832,39.788617],[-74.888371,39.77498],[-74.835445,39.781576],[-74.808726,39.775564],[-74.786905,39.751059],[-74.742974,39.726062],[-74.885727,39.600778]]]},"id":34007},
{"type":"Feature","properties":{"name":"Sangamon"},"geometry":{"type":"Polygon","coordinates":[[[-89.704061,39.528087],[-89.93009,39.527058],[-89.929083,39.558342],[-89.986156,39.705009],[-89.998114,39.877238],[-89.997709,39.906253],[-89.775291,39.908302],[-89.769935,39.919193],[-89.710576,39.920212],[-89.705939,39.976894],[-89.585323,39.978843],[-89.492899,39.980236],[-89.4953,39.933536],[-89.412533,39.931692],[-89.411952,39.918088],[-89.224864,39.91872],[-89.223471,39.811722],[-89.261162,39.820867],[-89.283402,39.793707],[-89.332551,39.764316],[-89.408574,39.742635],[-89.436086,39.748095],[-89.436736,39.686442],[-89.490533,39.684193],[-89.489344,39.646569],[-89.540714,39.6452],[-89.540051,39.528701],[-89.704061,39.528087]]]},"id":17167},
{"type":"Feature","properties":{"name":"Livingston"},"geometry":{"type":"Polygon","coordinates":[[[-93.287362,39.614643],[-93.765831,39.610576],[-93.767618,39.782048],[-93.768347,39.955837],[-93.368848,39.963783],[-93.374065,39.704542],[-93.27292,39.703999],[-93.286065,39.692261],[-93.290391,39.672169],[-93.281984,39.660176],[-93.292398,39.653507],[-93.271752,39.635983],[-93.268655,39.622467],[-93.287362,39.614643]]]},"id":29117},
{"type":"Feature","properties":{"name":"Parke"},"geometry":{"type":"Polygon","coordinates":[[[-87.214936,39.608019],[-87.3941,39.607985],[-87.405162,39.658954],[-87.392978,39.68732],[-87.38701,39.768387],[-87.374978,39.790856],[-87.386941,39.831871],[-87.372017,39.870617],[-87.383621,39.903916],[-87.414399,39.918038],[-87.430039,39.93734],[-87.428948,39.954102],[-87.408882,39.963292],[-87.103518,39.959664],[-87.10091,39.876164],[-87.020571,39.876417],[-87.02799,39.608549],[-87.214936,39.608019]]]},"id":18121},
{"type":"Feature","properties":{"name":"Shelby"},"geometry":{"type":"Polygon","coordinates":[[[-92.288904,39.952022],[-91.960606,39.951625],[-91.848327,39.949688],[-91.850881,39.661219],[-92.186877,39.663528],[-92.19079,39.608119],[-92.300718,39.608877],[-92.288904,39.952022]]]},"id":29205},
{"type":"Feature","properties":{"name":"Hancock"},"geometry":{"type":"Polygon","coordinates":[[[-85.644858,39.70106],[-85.963811,39.69958],[-85.962697,39.880556],[-85.946439,39.881914],[-85.948125,39.932774],[-85.868182,39.935026],[-85.866786,39.950868],[-85.584654,39.95011],[-85.581122,39.882846],[-85.597433,39.880629],[-85.601751,39.790015],[-85.64067,39.790312],[-85.644858,39.70106]]]},"id":18059},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-91.850881,39.661219],[-91.848327,39.949688],[-91.447395,39.94611],[-91.430541,39.921883],[-91.434203,39.901875],[-91.451141,39.885288],[-91.44934,39.863094],[-91.381863,39.803818],[-91.37357,39.761318],[-91.367237,39.724686],[-91.317812,39.685963],[-91.721955,39.686245],[-91.722924,39.659477],[-91.850881,39.661219]]]},"id":29127},
{"type":"Feature","properties":{"name":"Noble"},"geometry":{"type":"Polygon","coordinates":[[[-81.277791,39.598668],[-81.277768,39.586873],[-81.353607,39.586373],[-81.353546,39.596356],[-81.394777,39.59644],[-81.393121,39.610101],[-81.411562,39.608621],[-81.410586,39.623624],[-81.449467,39.624215],[-81.446705,39.639275],[-81.474782,39.638841],[-81.476239,39.57845],[-81.58822,39.583462],[-81.58426,39.661179],[-81.64175,39.662464],[-81.643786,39.749973],[-81.696675,39.753204],[-81.691524,39.839599],[-81.573715,39.834404],[-81.57099,39.89212],[-81.453112,39.886814],[-81.450189,39.920936],[-81.376746,39.916869],[-81.374907,39.949599],[-81.253038,39.949667],[-81.229859,39.942644],[-81.234224,39.864928],[-81.314038,39.866157],[-81.317328,39.702267],[-81.274777,39.700836],[-81.277791,39.598668]]]},"id":39121},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-86.335258,39.631958],[-86.339465,39.93143],[-86.251213,39.932356],[-85.948125,39.932774],[-85.946439,39.881914],[-85.962697,39.880556],[-85.963811,39.69958],[-85.96504,39.637921],[-86.258794,39.631359],[-86.335258,39.631958]]]},"id":18097},
{"type":"Feature","properties":{"name":"Fairfield"},"geometry":{"type":"Polygon","coordinates":[[[-82.730024,39.548152],[-82.848469,39.558119],[-82.832683,39.643698],[-82.841664,39.643767],[-82.826664,39.788794],[-82.823398,39.817542],[-82.80363,39.817923],[-82.794261,39.910495],[-82.810451,39.910266],[-82.807903,39.932624],[-82.782053,39.932353],[-82.459739,39.918254],[-82.468125,39.831211],[-82.392835,39.826455],[-82.399061,39.741777],[-82.361119,39.738715],[-82.370824,39.652091],[-82.487069,39.654774],[-82.493417,39.599595],[-82.608482,39.603569],[-82.612953,39.557083],[-82.726904,39.562808],[-82.730024,39.548152]]]},"id":39045},
{"type":"Feature","properties":{"name":"Hendricks"},"geometry":{"type":"Polygon","coordinates":[[[-86.646876,39.609513],[-86.640681,39.630235],[-86.695531,39.63329],[-86.697996,39.877349],[-86.711828,39.876296],[-86.709646,39.932489],[-86.339465,39.93143],[-86.335258,39.631958],[-86.473965,39.630398],[-86.473011,39.610417],[-86.646876,39.609513]]]},"id":18063},
{"type":"Feature","properties":{"name":"Gilpin"},"geometry":{"type":"Polygon","coordinates":[[[-105.390892,39.743926],[-105.472078,39.750453],[-105.555143,39.789992],[-105.568464,39.803172],[-105.56822,39.819972],[-105.589652,39.817458],[-105.634079,39.839598],[-105.686587,39.845572],[-105.691958,39.886237],[-105.683795,39.931437],[-105.382858,39.927935],[-105.384804,39.908365],[-105.390892,39.743926]]]},"id":8047},
{"type":"Feature","properties":{"name":"Perry"},"geometry":{"type":"Polygon","coordinates":[[[-82.152754,39.554189],[-82.263674,39.560448],[-82.261415,39.589585],[-82.379583,39.595919],[-82.370824,39.652091],[-82.361119,39.738715],[-82.399061,39.741777],[-82.392835,39.826455],[-82.468125,39.831211],[-82.459739,39.918254],[-82.458,39.927856],[-82.418287,39.926693],[-82.417005,39.916756],[-82.230398,39.9094],[-82.160403,39.903846],[-82.167416,39.817798],[-82.074105,39.811706],[-82.074472,39.770389],[-82.079332,39.724369],[-82.021164,39.722851],[-82.043132,39.549146],[-82.152754,39.554189]]]},"id":39127},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-84.482792,39.918764],[-84.419733,39.919532],[-84.158357,39.920951],[-84.156358,39.886517],[-84.050008,39.879846],[-84.050229,39.849386],[-84.052144,39.837469],[-84.087134,39.839273],[-84.106526,39.580138],[-84.284097,39.59152],[-84.362171,39.588166],[-84.475212,39.587355],[-84.482792,39.918764]]]},"id":39113},
{"type":"Feature","properties":{"name":"Preble"},"geometry":{"type":"Polygon","coordinates":[[[-84.475212,39.587355],[-84.476768,39.566363],[-84.811037,39.564051],[-84.808697,39.733299],[-84.80615,39.917167],[-84.482792,39.918764],[-84.475212,39.587355]]]},"id":39135},
{"type":"Feature","properties":{"name":"Summit"},"geometry":{"type":"Polygon","coordinates":[[[-106.197348,39.374981],[-106.242783,39.45904],[-106.247995,39.483805],[-106.240464,39.496343],[-106.253595,39.523531],[-106.241678,39.542139],[-106.215317,39.531789],[-106.202629,39.538622],[-106.204567,39.586656],[-106.17134,39.608781],[-106.174117,39.633188],[-106.187553,39.646757],[-106.228364,39.657926],[-106.228151,39.672914],[-106.25387,39.672849],[-106.263278,39.688378],[-106.286502,39.695661],[-106.337498,39.750897],[-106.367108,39.754743],[-106.420592,39.844808],[-106.426124,39.890443],[-106.44239,39.917497],[-106.39379,39.918039],[-106.381674,39.907613],[-106.264193,39.91031],[-106.235506,39.903222],[-106.182174,39.849393],[-106.108662,39.825334],[-106.084148,39.807622],[-106.063021,39.767545],[-106.0572,39.722822],[-106.028604,39.687101],[-105.972091,39.682779],[-105.914997,39.688433],[-105.907017,39.665571],[-105.891323,39.653414],[-105.852472,39.653864],[-105.820733,39.633181],[-105.77561,39.628378],[-105.774268,39.595751],[-105.822465,39.562331],[-105.813012,39.534071],[-105.83362,39.519289],[-105.85338,39.520418],[-105.860141,39.493864],[-105.87968,39.491366],[-105.900349,39.458419],[-105.927557,39.454734],[-105.95336,39.437934],[-105.955619,39.416526],[-106.027139,39.359043],[-106.054301,39.355328],[-106.094623,39.371097],[-106.129834,39.372062],[-106.197348,39.374981]]]},"id":8117},
{"type":"Feature","properties":{"name":"Eagle"},"geometry":{"type":"Polygon","coordinates":[[[-107.110666,39.354915],[-107.097286,39.913624],[-107.030138,39.915238],[-106.633374,39.918009],[-106.44239,39.917497],[-106.426124,39.890443],[-106.420592,39.844808],[-106.367108,39.754743],[-106.337498,39.750897],[-106.286502,39.695661],[-106.263278,39.688378],[-106.25387,39.672849],[-106.228151,39.672914],[-106.228364,39.657926],[-106.187553,39.646757],[-106.174117,39.633188],[-106.17134,39.608781],[-106.204567,39.586656],[-106.202629,39.538622],[-106.215317,39.531789],[-106.241678,39.542139],[-106.253595,39.523531],[-106.240464,39.496343],[-106.247995,39.483805],[-106.242783,39.45904],[-106.197348,39.374981],[-106.287827,39.346576],[-106.356135,39.352558],[-106.390254,39.372558],[-106.412563,39.367595],[-106.426022,39.355262],[-107.110666,39.354915]]]},"id":8037},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-105.391092,39.559261],[-105.390892,39.743926],[-105.384804,39.908365],[-105.165257,39.908664],[-105.167153,39.888386],[-105.085594,39.899134],[-105.047016,39.908826],[-105.046552,39.789976],[-105.059064,39.788714],[-105.059949,39.782339],[-105.046521,39.777277],[-105.04582,39.665698],[-105.073836,39.663993],[-105.063814,39.646931],[-105.110069,39.635641],[-105.096411,39.614699],[-105.044859,39.633972],[-105.041868,39.561019],[-105.070403,39.534351],[-105.084404,39.491764],[-105.130396,39.469116],[-105.109506,39.432976],[-105.151264,39.398198],[-105.152866,39.359136],[-105.204841,39.257807],[-105.243996,39.233049],[-105.262933,39.197096],[-105.315958,39.143313],[-105.32036,39.125487],[-105.386852,39.125693],[-105.391092,39.559261]]]},"id":8059},
{"type":"Feature","properties":{"name":"Edgar"},"geometry":{"type":"Polygon","coordinates":[[[-87.965221,39.484815],[-87.968647,39.688874],[-87.971157,39.795906],[-87.941767,39.798264],[-87.943499,39.884438],[-87.622679,39.888666],[-87.621825,39.875505],[-87.567281,39.875586],[-87.580137,39.888026],[-87.535793,39.887339],[-87.535598,39.609376],[-87.53859,39.477483],[-87.687573,39.478825],[-87.689122,39.488369],[-87.965221,39.484815]]]},"id":17045},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-87.968647,39.688874],[-88.05957,39.685871],[-88.058341,39.657749],[-88.474321,39.650511],[-88.47591,39.791064],[-88.468746,39.789645],[-88.466245,39.880755],[-87.943499,39.884438],[-87.941767,39.798264],[-87.971157,39.795906],[-87.968647,39.688874]]]},"id":17041},
{"type":"Feature","properties":{"name":"Gloucester"},"geometry":{"type":"Polygon","coordinates":[[[-75.063127,39.564454],[-75.197961,39.659965],[-75.233875,39.658352],[-75.254925,39.67324],[-75.283094,39.671024],[-75.325142,39.684005],[-75.364885,39.714614],[-75.408039,39.773383],[-75.427647,39.778243],[-75.411755,39.789771],[-75.420468,39.798983],[-75.345932,39.848517],[-75.25374,39.845538],[-75.246996,39.850405],[-75.185605,39.877406],[-75.142901,39.881602],[-75.101509,39.846351],[-75.087302,39.823406],[-75.089133,39.804393],[-75.075369,39.786442],[-75.087134,39.774879],[-75.052769,39.764233],[-75.027872,39.739712],[-75.026026,39.723805],[-75.004754,39.716126],[-74.995713,39.700982],[-74.934753,39.682969],[-74.885727,39.600778],[-74.988044,39.509462],[-75.063127,39.564454]]]},"id":34015},
{"type":"Feature","properties":{"name":"Morgan"},"geometry":{"type":"Polygon","coordinates":[[[-90.154915,39.525629],[-90.303412,39.524762],[-90.300506,39.63947],[-90.341729,39.640111],[-90.342057,39.66776],[-90.376123,39.667981],[-90.375986,39.755024],[-90.484882,39.755577],[-90.483577,39.791855],[-90.608724,39.793988],[-90.588612,39.810033],[-90.577168,39.845495],[-90.585485,39.880789],[-89.998114,39.877238],[-89.986156,39.705009],[-89.929083,39.558342],[-89.93009,39.527058],[-90.154915,39.525629]]]},"id":17137},
{"type":"Feature","properties":{"name":"Putnam"},"geometry":{"type":"Polygon","coordinates":[[[-87.02799,39.608549],[-87.020571,39.876417],[-86.711828,39.876296],[-86.697996,39.877349],[-86.695531,39.63329],[-86.640681,39.630235],[-86.646876,39.609513],[-86.6637,39.530988],[-86.69122,39.513921],[-86.690403,39.458123],[-86.951954,39.461462],[-87.028166,39.463898],[-87.02799,39.608549]]]},"id":18133},
{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"Polygon","coordinates":[[[-81.277791,39.598668],[-81.274777,39.700836],[-81.317328,39.702267],[-81.314038,39.866157],[-81.234224,39.864928],[-80.825917,39.839667],[-80.819104,39.809001],[-80.870728,39.759994],[-80.856453,39.736336],[-80.832298,39.718834],[-80.832787,39.7034],[-80.863414,39.680352],[-80.872746,39.662411],[-80.88111,39.624081],[-80.912591,39.607353],[-80.932611,39.606941],[-80.983646,39.581805],[-81.032569,39.544143],[-81.037383,39.532664],[-81.035025,39.56993],[-81.239612,39.57668],[-81.241687,39.570718],[-81.260174,39.570165],[-81.258083,39.598809],[-81.277791,39.598668]]]},"id":39111},
{"type":"Feature","properties":{"name":"Greene"},"geometry":{"type":"Polygon","coordinates":[[[-83.97525,39.570652],[-84.106526,39.580138],[-84.087134,39.839273],[-84.052144,39.837469],[-84.050229,39.849386],[-83.93673,39.842543],[-83.93599,39.827586],[-83.823727,39.820578],[-83.823215,39.794249],[-83.743104,39.790546],[-83.74247,39.783305],[-83.647238,39.770751],[-83.655379,39.711749],[-83.673415,39.551865],[-83.97525,39.570652]]]},"id":39057},
{"type":"Feature","properties":{"name":"Pike"},"geometry":{"type":"Polygon","coordinates":[[[-91.203389,39.600067],[-91.317812,39.685963],[-91.367237,39.724686],[-91.37357,39.761318],[-90.92245,39.765886],[-90.921672,39.847509],[-90.879038,39.842543],[-90.577168,39.845495],[-90.588612,39.810033],[-90.608724,39.793988],[-90.64681,39.704786],[-90.641034,39.679902],[-90.612385,39.643892],[-90.582539,39.565725],[-90.587894,39.525332],[-90.621447,39.419863],[-90.617457,39.393152],[-90.948024,39.400632],[-91.036475,39.444458],[-91.064522,39.47403],[-91.093751,39.528973],[-91.156329,39.552639],[-91.203389,39.600067]]]},"id":17149},
{"type":"Feature","properties":{"name":"Clear Creek"},"geometry":{"type":"Polygon","coordinates":[[[-105.391092,39.559261],[-105.822465,39.562331],[-105.774268,39.595751],[-105.77561,39.628378],[-105.820733,39.633181],[-105.852472,39.653864],[-105.891323,39.653414],[-105.907017,39.665571],[-105.914997,39.688433],[-105.879115,39.747782],[-105.884776,39.791605],[-105.865946,39.797255],[-105.821747,39.789709],[-105.790213,39.8035],[-105.749654,39.79671],[-105.723354,39.808035],[-105.686587,39.845572],[-105.634079,39.839598],[-105.589652,39.817458],[-105.56822,39.819972],[-105.568464,39.803172],[-105.555143,39.789992],[-105.472078,39.750453],[-105.390892,39.743926],[-105.391092,39.559261]]]},"id":8019},
{"type":"Feature","properties":{"name":"New Castle"},"geometry":{"type":"Polygon","coordinates":[[[-75.772354,39.383119],[-75.791095,39.723866],[-75.774927,39.724553],[-75.745592,39.774929],[-75.694771,39.820457],[-75.643994,39.838307],[-75.583443,39.840119],[-75.469986,39.826547],[-75.420468,39.798983],[-75.411755,39.789771],[-75.427647,39.778243],[-75.460394,39.763362],[-75.474768,39.741832],[-75.475974,39.720084],[-75.489281,39.714858],[-75.610375,39.612905],[-75.562643,39.566835],[-75.589836,39.46388],[-75.515217,39.367052],[-75.535039,39.352857],[-75.555319,39.351362],[-75.555609,39.340486],[-75.583091,39.31371],[-75.609879,39.312757],[-75.6645,39.293172],[-75.705922,39.30103],[-75.764319,39.29596],[-75.772354,39.383119]]]},"id":10003},
{"type":"Feature","properties":{"name":"Christian"},"geometry":{"type":"Polygon","coordinates":[[[-89.540051,39.528701],[-89.540714,39.6452],[-89.489344,39.646569],[-89.490533,39.684193],[-89.436736,39.686442],[-89.436086,39.748095],[-89.408574,39.742635],[-89.332551,39.764316],[-89.283402,39.793707],[-89.261162,39.820867],[-89.223471,39.811722],[-89.191717,39.816181],[-89.149274,39.801562],[-89.146993,39.65694],[-89.032283,39.65656],[-89.031893,39.34922],[-89.138975,39.35003],[-89.537576,39.349648],[-89.540051,39.528701]]]},"id":17021},
{"type":"Feature","properties":{"name":"Buchanan"},"geometry":{"type":"Polygon","coordinates":[[[-94.614674,39.534234],[-95.102037,39.532849],[-95.108988,39.560692],[-95.053613,39.586776],[-95.056017,39.62569],[-95.028292,39.661913],[-94.978571,39.684988],[-94.961786,39.732038],[-94.953142,39.736501],[-94.930856,39.727026],[-94.905678,39.726755],[-94.877861,39.739306],[-94.871185,39.754118],[-94.877068,39.760679],[-94.9218,39.757841],[-94.935114,39.775427],[-94.933268,39.782774],[-94.899324,39.793775],[-94.888505,39.8174],[-94.61718,39.813785],[-94.616149,39.740276],[-94.614674,39.534234]]]},"id":29021},
{"type":"Feature","properties":{"name":"Carbon"},"geometry":{"type":"Polygon","coordinates":[[[-110.011269,39.455799],[-111.07241,39.456231],[-111.085953,39.524094],[-111.110039,39.55112],[-111.123139,39.603057],[-111.163638,39.590422],[-111.216733,39.659196],[-111.225469,39.684579],[-111.244734,39.698185],[-111.243772,39.807593],[-110.852812,39.812652],[-110.528583,39.808137],[-110.52911,39.802259],[-109.973329,39.80868],[-109.884474,39.808665],[-109.863591,39.795203],[-109.870923,39.78789],[-109.886587,39.793326],[-109.90351,39.786105],[-109.924705,39.796397],[-109.916785,39.773219],[-109.920318,39.743415],[-109.942978,39.726508],[-109.944481,39.711139],[-109.959077,39.727416],[-109.979006,39.719901],[-109.965531,39.698233],[-109.997942,39.673232],[-109.97825,39.666217],[-109.981248,39.64775],[-110.000483,39.634734],[-109.992365,39.619735],[-110.020991,39.589977],[-110.016489,39.574722],[-110.028643,39.560402],[-110.02186,39.537754],[-110.040683,39.522438],[-110.009607,39.485248],[-110.011269,39.455799]]]},"id":49007},
{"type":"Feature","properties":{"name":"Sanpete"},"geometry":{"type":"Polygon","coordinates":[[[-112.006877,39.043669],[-112.008105,39.30198],[-112.00764,39.326016],[-111.953378,39.327009],[-111.948723,39.359502],[-111.917106,39.360032],[-111.916343,39.370896],[-111.746537,39.370211],[-111.743455,39.44544],[-111.706908,39.447527],[-111.709263,39.675995],[-111.681651,39.677098],[-111.681842,39.690724],[-111.670367,39.692052],[-111.671588,39.699822],[-111.641275,39.704888],[-111.642053,39.718541],[-111.583838,39.720125],[-111.583556,39.779595],[-111.621301,39.779858],[-111.620423,39.791626],[-111.638384,39.791942],[-111.638429,39.807384],[-111.521883,39.810063],[-111.518183,39.803548],[-111.499093,39.802255],[-111.459547,39.809595],[-111.39457,39.804438],[-111.243772,39.807593],[-111.244734,39.698185],[-111.244961,39.455684],[-111.298149,39.454948],[-111.295116,39.032511],[-111.846859,39.033043],[-111.844631,39.039306],[-112.006877,39.043669]]]},"id":49039},
{"type":"Feature","properties":{"name":"Pickaway"},"geometry":{"type":"Polygon","coordinates":[[[-83.264974,39.512342],[-83.251173,39.69146],[-83.242819,39.804478],[-82.826664,39.788794],[-82.841664,39.643767],[-82.832683,39.643698],[-82.848469,39.558119],[-82.730024,39.548152],[-82.737151,39.457053],[-83.001255,39.469297],[-82.991435,39.489255],[-83.004475,39.503663],[-83.264974,39.512342]]]},"id":39129},
{"type":"Feature","properties":{"name":"Denver"},"geometry":{"type":"Polygon","coordinates":[[[-105.044859,39.633972],[-105.096411,39.614699],[-105.110069,39.635641],[-105.063814,39.646931],[-105.073836,39.663993],[-105.04582,39.665698],[-105.046521,39.777277],[-105.059949,39.782339],[-105.059064,39.788714],[-105.046552,39.789976],[-104.934563,39.790373],[-104.921036,39.78303],[-104.89292,39.783793],[-104.884886,39.803968],[-104.862027,39.801863],[-104.861478,39.790083],[-104.844784,39.791891],[-104.843517,39.803267],[-104.791732,39.806887],[-104.731,39.896702],[-104.598417,39.900123],[-104.622367,39.828272],[-104.736133,39.822284],[-104.735277,39.775238],[-104.824993,39.778357],[-104.825092,39.767466],[-104.850766,39.765872],[-104.842045,39.745695],[-104.880216,39.742857],[-104.882147,39.732825],[-104.884215,39.725966],[-104.865224,39.716498],[-104.864912,39.696998],[-104.90192,39.697078],[-104.902245,39.668173],[-104.871716,39.674669],[-104.856268,39.652778],[-104.878104,39.646747],[-104.884995,39.627963],[-104.899621,39.633918],[-104.908212,39.625972],[-104.912217,39.634932],[-104.970248,39.66101],[-105.021802,39.651408],[-105.021757,39.626002],[-105.044859,39.633972]]]},"id":8031},
{"type":"Feature","properties":{"name":"Glenn"},"geometry":{"type":"Polygon","coordinates":[[[-121.882151,39.386217],[-122.003031,39.384599],[-122.00413,39.41769],[-122.126219,39.415454],[-122.126539,39.386391],[-122.72849,39.383794],[-122.73092,39.579858],[-122.879766,39.579305],[-122.883765,39.709015],[-122.900779,39.711849],[-122.901733,39.745414],[-122.926323,39.745617],[-122.928674,39.795924],[-122.040568,39.794822],[-122.004197,39.789013],[-122.005265,39.761276],[-121.983002,39.742646],[-121.951469,39.737084],[-121.931197,39.703386],[-121.943281,39.678853],[-121.98004,39.665136],[-121.962828,39.649931],[-121.980009,39.630182],[-121.972829,39.604139],[-121.993733,39.552015],[-121.989002,39.535406],[-121.967968,39.524897],[-121.941601,39.532294],[-121.833698,39.535156],[-121.86816,39.497055],[-121.869944,39.426179],[-121.882151,39.386217]]]},"id":6021},
{"type":"Feature","properties":{"name":"Moultrie"},"geometry":{"type":"Polygon","coordinates":[[[-88.472967,39.451485],[-88.590352,39.451036],[-88.590017,39.47778],[-88.604308,39.478337],[-88.604743,39.491486],[-88.62442,39.49117],[-88.62423,39.507035],[-88.646883,39.507196],[-88.648463,39.524884],[-88.720009,39.527167],[-88.720619,39.581568],[-88.813114,39.583469],[-88.815411,39.656016],[-88.81464,39.737157],[-88.763186,39.738225],[-88.761416,39.793977],[-88.748835,39.794812],[-88.47591,39.791064],[-88.474321,39.650511],[-88.472967,39.451485]]]},"id":17139},
{"type":"Feature","properties":{"name":"Scott"},"geometry":{"type":"Polygon","coordinates":[[[-90.587894,39.525332],[-90.582539,39.565725],[-90.612385,39.643892],[-90.641034,39.679902],[-90.64681,39.704786],[-90.608724,39.793988],[-90.483577,39.791855],[-90.484882,39.755577],[-90.375986,39.755024],[-90.376123,39.667981],[-90.342057,39.66776],[-90.341729,39.640111],[-90.300506,39.63947],[-90.303412,39.524762],[-90.587894,39.525332]]]},"id":17171},
{"type":"Feature","properties":{"name":"Rush"},"geometry":{"type":"Polygon","coordinates":[[[-85.306285,39.442436],[-85.643271,39.440147],[-85.644858,39.70106],[-85.64067,39.790312],[-85.601751,39.790015],[-85.307722,39.787792],[-85.306049,39.50822],[-85.306285,39.442436]]]},"id":18139},
{"type":"Feature","properties":{"name":"Fayette"},"geometry":{"type":"Polygon","coordinates":[[[-85.306049,39.50822],[-85.307722,39.787792],[-85.225559,39.789101],[-85.189632,39.788781],[-85.188457,39.7184],[-85.037141,39.716276],[-85.044662,39.517323],[-85.306049,39.50822]]]},"id":18041},
{"type":"Feature","properties":{"name":"Caldwell"},"geometry":{"type":"Polygon","coordinates":[[[-93.7657,39.527542],[-94.217612,39.526715],[-94.216059,39.74055],[-94.21419,39.785102],[-93.767618,39.782048],[-93.765831,39.610576],[-93.7657,39.527542]]]},"id":29025},
{"type":"Feature","properties":{"name":"Salem"},"geometry":{"type":"Polygon","coordinates":[[[-75.063127,39.564454],[-75.071208,39.555089],[-75.066707,39.511468],[-75.082357,39.453732],[-75.236028,39.551831],[-75.326892,39.487243],[-75.351528,39.480869],[-75.378492,39.455939],[-75.404632,39.458644],[-75.41793,39.452067],[-75.420898,39.431712],[-75.41288,39.420699],[-75.42334,39.409083],[-75.415672,39.374972],[-75.552763,39.490514],[-75.516689,39.566568],[-75.570234,39.617735],[-75.489281,39.714858],[-75.475974,39.720084],[-75.474768,39.741832],[-75.460394,39.763362],[-75.427647,39.778243],[-75.408039,39.773383],[-75.364885,39.714614],[-75.325142,39.684005],[-75.283094,39.671024],[-75.254925,39.67324],[-75.233875,39.658352],[-75.197961,39.659965],[-75.063127,39.564454]]]},"id":34033},
{"type":"Feature","properties":{"name":"Sierra"},"geometry":{"type":"Polygon","coordinates":[[[-121.014788,39.390381],[-121.021635,39.513568],[-121.03678,39.517615],[-121.035307,39.533995],[-120.998304,39.555602],[-121.000608,39.629481],[-120.939028,39.673184],[-120.919611,39.745022],[-120.883591,39.754311],[-120.864716,39.770776],[-120.846587,39.767705],[-120.789623,39.709551],[-120.745463,39.711788],[-120.710961,39.704193],[-120.67015,39.678178],[-120.635985,39.700495],[-120.457719,39.700555],[-120.456315,39.70876],[-120.139907,39.710286],[-120.01366,39.709758],[-120.014095,39.72018],[-119.996165,39.720611],[-119.996011,39.443501],[-120.491864,39.442407],[-120.514455,39.453569],[-120.551026,39.506058],[-120.580179,39.516567],[-120.636783,39.51493],[-120.685483,39.49853],[-120.704504,39.473929],[-120.751395,39.446668],[-120.967034,39.410512],[-120.999864,39.389953],[-121.014788,39.390381]]]},"id":6091},
{"type":"Feature","properties":{"name":"Morgan"},"geometry":{"type":"Polygon","coordinates":[[[-81.846775,39.452217],[-82.053562,39.458911],[-82.043132,39.549146],[-82.021164,39.722851],[-82.079332,39.724369],[-82.074472,39.770389],[-81.696675,39.753204],[-81.643786,39.749973],[-81.64175,39.662464],[-81.58426,39.661179],[-81.58822,39.583462],[-81.717742,39.581425],[-81.731048,39.563732],[-81.729995,39.535637],[-81.728408,39.528885],[-81.706229,39.527363],[-81.70822,39.479653],[-81.751198,39.480012],[-81.761231,39.488289],[-81.825488,39.495159],[-81.828326,39.452858],[-81.846775,39.452217]]]},"id":39115},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-94.21952,39.455388],[-94.610692,39.452685],[-94.614674,39.534234],[-94.616149,39.740276],[-94.216059,39.74055],[-94.217612,39.526715],[-94.21952,39.455388]]]},"id":29049},
{"type":"Feature","properties":{"name":"Lyon"},"geometry":{"type":"Polygon","coordinates":[[[-119.318825,38.527109],[-119.320153,38.661732],[-119.34263,38.664028],[-119.345705,38.741496],[-119.376971,38.74135],[-119.377841,38.731814],[-119.400875,38.732275],[-119.398242,38.813937],[-119.405887,38.81288],[-119.40337,38.826075],[-119.41106,38.82638],[-119.409023,38.854076],[-119.42442,38.855136],[-119.423977,38.877364],[-119.408557,38.87585],[-119.40887,38.957002],[-119.391733,38.957788],[-119.391871,38.980001],[-119.334449,38.980185],[-119.336509,38.989215],[-119.316954,38.988677],[-119.317024,39.083885],[-119.528017,39.081131],[-119.561536,39.140297],[-119.55367,39.186708],[-119.643992,39.188449],[-119.673313,39.210494],[-119.688162,39.258693],[-119.62202,39.270535],[-119.587671,39.29075],[-119.468534,39.337153],[-119.267017,39.628449],[-119.2203,39.624298],[-119.191369,39.635689],[-119.167755,39.645168],[-119.163536,39.663833],[-119.132438,39.68341],[-119.116332,39.684589],[-119.113852,39.701862],[-119.071119,39.733863],[-119.070218,39.640019],[-119.08093,39.638481],[-119.078709,39.520174],[-119.111501,39.519625],[-119.108614,39.400429],[-119.088365,39.400319],[-119.087998,39.387627],[-119.071938,39.387898],[-119.071503,39.372941],[-119.047668,39.371976],[-119.049003,39.356085],[-119.035934,39.356752],[-119.036773,39.3445],[-119.0195,39.343874],[-119.017264,39.327586],[-119.004248,39.330061],[-119.002569,39.312407],[-118.984769,39.314055],[-118.984433,39.301818],[-118.966031,39.303016],[-118.964451,39.288532],[-118.949001,39.288776],[-118.946765,39.272037],[-118.925364,39.271915],[-118.925013,39.258774],[-118.91015,39.258549],[-118.909089,39.240883],[-118.896035,39.241535],[-118.894829,39.21798],[-118.873466,39.218758],[-118.87358,39.200169],[-118.854644,39.202717],[-118.853552,39.183239],[-118.835768,39.18441],[-118.834821,39.170372],[-118.809285,39.169838],[-118.80885,39.152615],[-118.783313,39.151623],[-118.781955,39.120366],[-118.735109,39.12103],[-118.733468,39.077077],[-118.919562,39.075249],[-119.007339,38.948283],[-119.003035,38.856325],[-118.896022,38.854834],[-118.892748,38.774191],[-118.902186,38.774046],[-118.891576,38.410194],[-119.15245,38.411801],[-119.318825,38.527109]]]},"id":32019},
{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-84.811105,39.513163],[-85.019302,39.512333],[-85.044662,39.517323],[-85.037141,39.716276],[-85.037324,39.732622],[-84.808697,39.733299],[-84.811037,39.564051],[-84.811105,39.513163]]]},"id":18161},
{"type":"Feature","properties":{"name":"Arapahoe"},"geometry":{"type":"Polygon","coordinates":[[[-105.041868,39.561019],[-105.044859,39.633972],[-105.021757,39.626002],[-105.021802,39.651408],[-104.970248,39.66101],[-104.912217,39.634932],[-104.908212,39.625972],[-104.899621,39.633918],[-104.884995,39.627963],[-104.878104,39.646747],[-104.856268,39.652778],[-104.871716,39.674669],[-104.902245,39.668173],[-104.90192,39.697078],[-104.864912,39.696998],[-104.865224,39.716498],[-104.884215,39.725966],[-104.882147,39.732825],[-103.706973,39.732259],[-103.706013,39.56405],[-103.71732,39.562943],[-104.650596,39.556068],[-105.041868,39.561019]]]},"id":8005},
{"type":"Feature","properties":{"name":"Atlantic"},"geometry":{"type":"Polygon","coordinates":[[[-74.861376,39.320103],[-74.852861,39.373349],[-74.856577,39.418321],[-74.988044,39.509462],[-74.885727,39.600778],[-74.742974,39.726062],[-74.680007,39.683845],[-74.660331,39.621722],[-74.628988,39.61375],[-74.616872,39.618007],[-74.570408,39.585178],[-74.557246,39.585777],[-74.530588,39.566101],[-74.514543,39.564357],[-74.471359,39.540641],[-74.454718,39.538875],[-74.446959,39.553199],[-74.435591,39.539772],[-74.420102,39.552993],[-74.412389,39.542621],[-74.40112,39.502628],[-74.460418,39.426757],[-74.447501,39.381075],[-74.658234,39.287251],[-74.677255,39.281071],[-74.690043,39.288617],[-74.719417,39.282475],[-74.824608,39.300194],[-74.850473,39.308453],[-74.861376,39.320103]]]},"id":34001},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-77.679302,39.318781],[-77.727468,39.317797],[-77.750089,39.326818],[-77.754301,39.338594],[-77.74545,39.360372],[-77.756223,39.378476],[-77.737233,39.396195],[-77.740834,39.403439],[-77.756986,39.425164],[-77.802275,39.432316],[-77.804694,39.440018],[-77.795798,39.450916],[-77.80419,39.463139],[-77.785109,39.459103],[-77.799498,39.480827],[-77.771551,39.498115],[-77.825187,39.493907],[-77.847877,39.502006],[-77.825263,39.512038],[-77.828926,39.529254],[-77.835464,39.525611],[-77.843849,39.531932],[-77.864632,39.514651],[-77.869561,39.545912],[-77.889917,39.558092],[-77.885171,39.564451],[-77.852959,39.565454],[-77.839867,39.57274],[-77.842408,39.605375],[-77.855523,39.602166],[-77.888437,39.61657],[-77.890741,39.600701],[-77.903253,39.596124],[-77.938609,39.618218],[-77.947543,39.615014],[-77.935458,39.591939],[-77.94498,39.586011],[-77.964237,39.611325],[-77.995205,39.598969],[-78.026418,39.622868],[-78.094338,39.6756],[-78.182972,39.694642],[-78.204304,39.675938],[-78.227598,39.673989],[-78.22923,39.658566],[-78.257727,39.641168],[-78.273016,39.61841],[-78.347923,39.640591],[-78.33902,39.646092],[-78.35347,39.655513],[-78.352379,39.664134],[-78.331451,39.66246],[-78.331574,39.673343],[-78.310738,39.680732],[-78.313339,39.699302],[-78.33455,39.724096],[-78.095948,39.725461],[-77.475793,39.719623],[-77.5039,39.687443],[-77.49254,39.682454],[-77.491349,39.667947],[-77.521814,39.637121],[-77.548685,39.631674],[-77.574938,39.608542],[-77.593965,39.548241],[-77.618372,39.51513],[-77.623026,39.449396],[-77.679302,39.318781]]]},"id":24043},
{"type":"Feature","properties":{"name":"Allegany"},"geometry":{"type":"Polygon","coordinates":[[[-78.481278,39.519938],[-78.508783,39.52516],[-78.564189,39.521073],[-78.604366,39.535683],[-78.637082,39.529949],[-78.649144,39.537998],[-78.666425,39.53693],[-78.716315,39.559573],[-78.732719,39.576643],[-78.761452,39.581792],[-78.773743,39.601617],[-78.736251,39.608792],[-78.730499,39.621545],[-78.732383,39.626965],[-78.767616,39.626614],[-78.772705,39.644241],[-78.79815,39.630833],[-78.798471,39.615418],[-78.822413,39.585698],[-78.806551,39.566824],[-78.838115,39.563318],[-78.870815,39.52579],[-78.955391,39.460459],[-78.970437,39.438525],[-79.048855,39.483815],[-79.064411,39.485826],[-78.930173,39.722337],[-78.817758,39.723116],[-78.384783,39.723749],[-78.33455,39.724096],[-78.313339,39.699302],[-78.310738,39.680732],[-78.331574,39.673343],[-78.331451,39.66246],[-78.352379,39.664134],[-78.35347,39.655513],[-78.33902,39.646092],[-78.347923,39.640591],[-78.356781,39.63237],[-78.377671,39.631317],[-78.384636,39.614495],[-78.431894,39.620952],[-78.404,39.587613],[-78.450631,39.592705],[-78.461816,39.580834],[-78.420822,39.54941],[-78.44587,39.548319],[-78.455811,39.533735],[-78.481278,39.519938]]]},"id":24001},
{"type":"Feature","properties":{"name":"Cecil"},"geometry":{"type":"Polygon","coordinates":[[[-75.791095,39.723866],[-75.772354,39.383119],[-75.817079,39.379647],[-75.830035,39.385717],[-75.849399,39.379251],[-75.978465,39.394664],[-75.952303,39.471295],[-75.97443,39.524137],[-76.03108,39.570041],[-76.078179,39.542475],[-76.124773,39.601928],[-76.153064,39.621733],[-76.16151,39.649023],[-76.221082,39.692714],[-76.233122,39.721854],[-76.139223,39.722229],[-75.791095,39.723866]]]},"id":24015},
{"type":"Feature","properties":{"name":"Garrett"},"geometry":{"type":"Polygon","coordinates":[[[-79.064411,39.485826],[-79.07063,39.47085],[-79.104597,39.470873],[-79.096716,39.464628],[-79.104078,39.447307],[-79.131401,39.417031],[-79.158128,39.413961],[-79.163018,39.393496],[-79.260168,39.348642],[-79.279823,39.325244],[-79.295273,39.300541],[-79.346195,39.292092],[-79.384848,39.269301],[-79.449282,39.212093],[-79.461192,39.213265],[-79.489865,39.197396],[-79.480971,39.720274],[-79.39661,39.719314],[-78.930173,39.722337],[-79.064411,39.485826]]]},"id":24023},
{"type":"Feature","properties":{"name":"Harford"},"geometry":{"type":"Polygon","coordinates":[[[-76.36371,39.393388],[-76.400242,39.469556],[-76.436399,39.482563],[-76.442106,39.499836],[-76.519204,39.52993],[-76.535066,39.54819],[-76.571162,39.617819],[-76.569834,39.720265],[-76.233122,39.721854],[-76.221082,39.692714],[-76.16151,39.649023],[-76.153064,39.621733],[-76.124773,39.601928],[-76.078179,39.542475],[-76.1542,39.402046],[-76.226338,39.374998],[-76.36371,39.393388]]]},"id":24025},
{"type":"Feature","properties":{"name":"Monongalia"},"geometry":{"type":"Polygon","coordinates":[[[-79.945005,39.451801],[-79.972144,39.461242],[-79.990737,39.481729],[-80.016136,39.492101],[-80.0232,39.506471],[-80.043167,39.514679],[-80.045357,39.525974],[-80.080613,39.544296],[-80.156275,39.605745],[-80.344682,39.612486],[-80.36995,39.631865],[-80.403635,39.637438],[-80.407094,39.708562],[-80.429082,39.719843],[-79.918269,39.721667],[-79.765132,39.721807],[-79.769459,39.688174],[-79.792471,39.659641],[-79.793205,39.626527],[-79.909716,39.483771],[-79.907169,39.443013],[-79.945005,39.451801]]]},"id":54061},
{"type":"Feature","properties":{"name":"Preston"},"geometry":{"type":"Polygon","coordinates":[[[-79.819946,39.231574],[-79.853013,39.243646],[-79.871094,39.287737],[-79.906572,39.299748],[-79.907169,39.443013],[-79.909716,39.483771],[-79.793205,39.626527],[-79.792471,39.659641],[-79.769459,39.688174],[-79.765132,39.721807],[-79.480971,39.720274],[-79.489865,39.197396],[-79.532828,39.226169],[-79.692734,39.268791],[-79.819946,39.231574]]]},"id":54077},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-76.878765,39.331873],[-76.900654,39.346487],[-76.922704,39.341604],[-76.980315,39.354097],[-77.023818,39.343389],[-77.046356,39.353444],[-77.072548,39.351724],[-77.088547,39.36311],[-77.174303,39.347501],[-77.112856,39.491469],[-77.1532,39.530119],[-77.171679,39.532888],[-77.177523,39.559194],[-77.210261,39.577859],[-77.220424,39.575162],[-77.235286,39.5897],[-77.291966,39.599781],[-77.309789,39.63245],[-77.274563,39.628311],[-77.266713,39.655494],[-77.246952,39.669056],[-77.235516,39.691245],[-77.217564,39.696643],[-77.2253,39.704822],[-77.221051,39.720679],[-76.996812,39.720892],[-76.790492,39.721256],[-76.87805,39.485085],[-76.884336,39.44613],[-76.897611,39.426251],[-76.885816,39.413049],[-76.897496,39.368681],[-76.880978,39.351378],[-76.878765,39.331873]]]},"id":24013},
{"type":"Feature","properties":{"name":"Baltimore"},"geometry":{"type":"Polygon","coordinates":[[[-76.701695,39.208027],[-76.714033,39.220345],[-76.734786,39.223194],[-76.744758,39.235039],[-76.789116,39.254337],[-76.778725,39.284194],[-76.792169,39.307387],[-76.83671,39.312617],[-76.878765,39.331873],[-76.880978,39.351378],[-76.897496,39.368681],[-76.885816,39.413049],[-76.897611,39.426251],[-76.884336,39.44613],[-76.87805,39.485085],[-76.790492,39.721256],[-76.569834,39.720265],[-76.571162,39.617819],[-76.535066,39.54819],[-76.519204,39.52993],[-76.442106,39.499836],[-76.436399,39.482563],[-76.400242,39.469556],[-76.36371,39.393388],[-76.398721,39.231252],[-76.530981,39.242726],[-76.526756,39.367703],[-76.716583,39.369037],[-76.715178,39.278824],[-76.620005,39.235581],[-76.610635,39.224637],[-76.659908,39.227242],[-76.701695,39.208027]]]},"id":24005},
{"type":"Feature","properties":{"name":"Wetzel"},"geometry":{"type":"Polygon","coordinates":[[[-80.620898,39.451698],[-80.644825,39.467421],[-80.672147,39.464915],[-80.680982,39.47603],[-80.696982,39.473806],[-80.735337,39.491414],[-80.747757,39.515587],[-80.778191,39.52885],[-80.786292,39.549502],[-80.816215,39.564135],[-80.827293,39.558397],[-80.844557,39.596036],[-80.856635,39.598886],[-80.89158,39.5798],[-80.922731,39.594372],[-80.932611,39.606941],[-80.912591,39.607353],[-80.88111,39.624081],[-80.872746,39.662411],[-80.863414,39.680352],[-80.832787,39.7034],[-80.832298,39.718834],[-80.524269,39.721209],[-80.429082,39.719843],[-80.407094,39.708562],[-80.403635,39.637438],[-80.417795,39.633025],[-80.439524,39.638415],[-80.440884,39.612987],[-80.463544,39.597484],[-80.479765,39.599823],[-80.497094,39.556775],[-80.482591,39.538071],[-80.485919,39.517583],[-80.473087,39.495667],[-80.480496,39.487329],[-80.495358,39.486066],[-80.496556,39.471979],[-80.518629,39.457841],[-80.517813,39.43836],[-80.540092,39.429655],[-80.576829,39.438733],[-80.58999,39.453827],[-80.605585,39.442101],[-80.620898,39.451698]]]},"id":54103},
{"type":"Feature","properties":{"name":"Frederick"},"geometry":{"type":"Polygon","coordinates":[[[-77.679302,39.318781],[-77.623026,39.449396],[-77.618372,39.51513],[-77.593965,39.548241],[-77.574938,39.608542],[-77.548685,39.631674],[-77.521814,39.637121],[-77.491349,39.667947],[-77.49254,39.682454],[-77.5039,39.687443],[-77.475793,39.719623],[-77.464433,39.720073],[-77.221051,39.720679],[-77.2253,39.704822],[-77.217564,39.696643],[-77.235516,39.691245],[-77.246952,39.669056],[-77.266713,39.655494],[-77.274563,39.628311],[-77.309789,39.63245],[-77.291966,39.599781],[-77.235286,39.5897],[-77.220424,39.575162],[-77.210261,39.577859],[-77.177523,39.559194],[-77.171679,39.532888],[-77.1532,39.530119],[-77.112856,39.491469],[-77.174303,39.347501],[-77.461707,39.218735],[-77.464667,39.229161],[-77.493773,39.250015],[-77.541901,39.269042],[-77.568673,39.298495],[-77.616236,39.299819],[-77.679302,39.318781]]]},"id":24021},
{"type":"Feature","properties":{"name":"Fayette"},"geometry":{"type":"Polygon","coordinates":[[[-83.380408,39.374797],[-83.586468,39.371714],[-83.575345,39.544408],[-83.673415,39.551865],[-83.655379,39.711749],[-83.251173,39.69146],[-83.264974,39.512342],[-83.380408,39.374797]]]},"id":39047},
{"type":"Feature","properties":{"name":"Chariton"},"geometry":{"type":"Polygon","coordinates":[[[-92.703352,39.609191],[-92.71396,39.32454],[-92.794612,39.344653],[-92.860341,39.2218],[-92.869092,39.231089],[-92.919417,39.226994],[-92.937118,39.261884],[-92.964745,39.280167],[-92.970231,39.307682],[-93.061964,39.321875],[-93.102906,39.379213],[-93.121522,39.382303],[-93.133982,39.416872],[-93.170628,39.422601],[-93.194501,39.435052],[-93.220412,39.428841],[-93.225112,39.439134],[-93.246635,39.440304],[-93.234694,39.451547],[-93.234557,39.471967],[-93.257339,39.462662],[-93.286057,39.46452],[-93.274147,39.47622],[-93.281502,39.491421],[-93.273133,39.502564],[-93.294961,39.543186],[-93.266945,39.544034],[-93.274331,39.548344],[-93.274346,39.582825],[-93.287362,39.614643],[-93.268655,39.622467],[-93.271752,39.635983],[-93.292398,39.653507],[-93.281984,39.660176],[-93.290391,39.672169],[-93.286065,39.692261],[-93.27292,39.703999],[-92.8587,39.699463],[-92.690292,39.692077],[-92.703352,39.609191]]]},"id":29041},
{"type":"Feature","properties":{"name":"Shelby"},"geometry":{"type":"Polygon","coordinates":[[[-85.700838,39.343018],[-85.965408,39.338098],[-85.96504,39.637921],[-85.963811,39.69958],[-85.644858,39.70106],[-85.643271,39.440147],[-85.641159,39.345723],[-85.700838,39.343018]]]},"id":18145},
{"type":"Feature","properties":{"name":"Emery"},"geometry":{"type":"Polygon","coordinates":[[[-110.039706,38.498021],[-111.303659,38.499852],[-111.30427,38.507146],[-111.295116,39.032511],[-111.298149,39.454948],[-111.244961,39.455684],[-111.244734,39.698185],[-111.225469,39.684579],[-111.216733,39.659196],[-111.163638,39.590422],[-111.123139,39.603057],[-111.110039,39.55112],[-111.085953,39.524094],[-111.07241,39.456231],[-110.011269,39.455799],[-110.013938,39.354138],[-110.031646,39.325135],[-110.048073,39.315598],[-110.057182,39.295201],[-110.048522,39.28608],[-110.066475,39.266629],[-110.050382,39.217103],[-110.057629,39.209783],[-110.072897,39.212],[-110.068173,39.186739],[-110.093449,39.171332],[-110.110188,39.14545],[-110.095598,39.123733],[-110.130387,39.076585],[-110.14344,39.039136],[-110.149588,39.011759],[-110.135304,38.993243],[-110.144315,38.966933],[-110.132137,38.926269],[-110.165273,38.914471],[-110.172948,38.902169],[-110.159771,38.890992],[-110.154369,38.860246],[-110.134921,38.85917],[-110.141223,38.829981],[-110.116937,38.829996],[-110.119401,38.8165],[-110.103852,38.805636],[-110.112511,38.782943],[-110.072402,38.756614],[-110.080672,38.737991],[-110.102829,38.735146],[-110.111,38.723786],[-110.105842,38.715771],[-110.119568,38.701996],[-110.111129,38.697438],[-110.089225,38.703938],[-110.096274,38.6857],[-110.085791,38.677842],[-110.091742,38.658636],[-110.07208,38.66662],[-110.067617,38.651373],[-110.059095,38.654073],[-110.052983,38.643732],[-110.037747,38.64242],[-110.0387,38.613844],[-110.059262,38.615004],[-110.063183,38.604773],[-110.05431,38.598819],[-110.028491,38.60327],[-110.013187,38.615126],[-109.994387,38.60179],[-110.000407,38.582137],[-110.033557,38.593558],[-110.057461,38.578094],[-110.039119,38.56615],[-110.024775,38.568065],[-110.012766,38.557842],[-109.994142,38.561329],[-109.987161,38.554115],[-110.005434,38.541977],[-109.992799,38.519898],[-110.01491,38.510701],[-110.041896,38.512231],[-110.039706,38.498021]]]},"id":49015},
{"type":"Feature","properties":{"name":"Morgan"},"geometry":{"type":"Polygon","coordinates":[[[-78.229509,39.391113],[-78.276881,39.423465],[-78.347546,39.456998],[-78.448196,39.498431],[-78.481278,39.519938],[-78.455811,39.533735],[-78.44587,39.548319],[-78.420822,39.54941],[-78.461816,39.580834],[-78.450631,39.592705],[-78.404,39.587613],[-78.431894,39.620952],[-78.384636,39.614495],[-78.377671,39.631317],[-78.356781,39.63237],[-78.347923,39.640591],[-78.273016,39.61841],[-78.257727,39.641168],[-78.22923,39.658566],[-78.227598,39.673989],[-78.204304,39.675938],[-78.182972,39.694642],[-78.094338,39.6756],[-78.026418,39.622868],[-78.047766,39.602375],[-78.084739,39.597675],[-78.102524,39.582176],[-78.118767,39.597965],[-78.136643,39.593341],[-78.171876,39.531052],[-78.209451,39.409362],[-78.229509,39.391113]]]},"id":54065},
{"type":"Feature","properties":{"name":"Coles"},"geometry":{"type":"Polygon","coordinates":[[[-88.013882,39.37932],[-88.472241,39.376684],[-88.472967,39.451485],[-88.474321,39.650511],[-88.058341,39.657749],[-88.05957,39.685871],[-87.968647,39.688874],[-87.965221,39.484815],[-88.014089,39.485406],[-88.013882,39.37932]]]},"id":17029},
{"type":"Feature","properties":{"name":"Ralls"},"geometry":{"type":"Polygon","coordinates":[[[-91.444276,39.321342],[-91.713327,39.327284],[-91.723833,39.340246],[-91.715248,39.60429],[-91.722428,39.604618],[-91.722924,39.659477],[-91.721955,39.686245],[-91.317812,39.685963],[-91.203389,39.600067],[-91.465806,39.45702],[-91.444276,39.321342]]]},"id":29173},
{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"Polygon","coordinates":[[[-91.722924,39.659477],[-91.722428,39.604618],[-91.715248,39.60429],[-91.723833,39.340246],[-92.31441,39.347359],[-92.300718,39.608877],[-92.19079,39.608119],[-92.186877,39.663528],[-91.850881,39.661219],[-91.722924,39.659477]]]},"id":29137},
{"type":"Feature","properties":{"name":"Shelby"},"geometry":{"type":"Polygon","coordinates":[[[-88.810068,39.21447],[-89.142603,39.216779],[-89.138975,39.35003],[-89.031893,39.34922],[-89.032283,39.65656],[-88.815411,39.656016],[-88.813114,39.583469],[-88.720619,39.581568],[-88.720009,39.527167],[-88.648463,39.524884],[-88.646883,39.507196],[-88.62423,39.507035],[-88.62442,39.49117],[-88.604743,39.491486],[-88.604308,39.478337],[-88.590017,39.47778],[-88.590352,39.451036],[-88.472967,39.451485],[-88.472241,39.376684],[-88.47159,39.213041],[-88.810068,39.21447]]]},"id":17173},
{"type":"Feature","properties":{"name":"Hocking"},"geometry":{"type":"Polygon","coordinates":[[[-82.288691,39.379309],[-82.5142,39.391318],[-82.52167,39.361511],[-82.639459,39.367151],[-82.64097,39.35483],[-82.747398,39.359929],[-82.737151,39.457053],[-82.730024,39.548152],[-82.726904,39.562808],[-82.612953,39.557083],[-82.608482,39.603569],[-82.493417,39.599595],[-82.487069,39.654774],[-82.370824,39.652091],[-82.379583,39.595919],[-82.261415,39.589585],[-82.263674,39.560448],[-82.152754,39.554189],[-82.167098,39.461977],[-82.275408,39.466958],[-82.288691,39.379309]]]},"id":39073},
{"type":"Feature","properties":{"name":"Cloud"},"geometry":{"type":"Polygon","coordinates":[[[-97.361984,39.308566],[-97.922836,39.302806],[-97.922135,39.557721],[-97.929818,39.559301],[-97.927812,39.648158],[-97.360938,39.649743],[-97.359861,39.564402],[-97.361984,39.308566]]]},"id":20029},
{"type":"Feature","properties":{"name":"Atchison"},"geometry":{"type":"Polygon","coordinates":[[[-95.565312,39.413453],[-95.549689,39.646623],[-95.329912,39.647781],[-95.119267,39.646748],[-95.095729,39.621918],[-95.056017,39.62569],[-95.053613,39.586776],[-95.108988,39.560692],[-95.102037,39.532849],[-95.047599,39.485329],[-95.040511,39.462941],[-94.986204,39.439462],[-94.958494,39.411447],[-95.169741,39.413069],[-95.565312,39.413453]]]},"id":20005},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-95.586323,39.215075],[-96.030254,39.213143],[-96.030379,39.558219],[-95.786236,39.561824],[-95.783734,39.64618],[-95.549689,39.646623],[-95.565312,39.413453],[-95.582029,39.413339],[-95.586323,39.215075]]]},"id":20085},
{"type":"Feature","properties":{"name":"Mineral"},"geometry":{"type":"Polygon","coordinates":[[[-78.983072,39.241181],[-79.124283,39.312403],[-79.279823,39.325244],[-79.260168,39.348642],[-79.163018,39.393496],[-79.158128,39.413961],[-79.131401,39.417031],[-79.104078,39.447307],[-79.096716,39.464628],[-79.104597,39.470873],[-79.07063,39.47085],[-79.064411,39.485826],[-79.048855,39.483815],[-78.970437,39.438525],[-78.955391,39.460459],[-78.870815,39.52579],[-78.838115,39.563318],[-78.806551,39.566824],[-78.822413,39.585698],[-78.798471,39.615418],[-78.79815,39.630833],[-78.772705,39.644241],[-78.767616,39.626614],[-78.732383,39.626965],[-78.730499,39.621545],[-78.736251,39.608792],[-78.773743,39.601617],[-78.761452,39.581792],[-78.732719,39.576643],[-78.716315,39.559573],[-78.666425,39.53693],[-78.67922,39.516865],[-78.708723,39.498451],[-78.725462,39.4661],[-78.787491,39.435103],[-78.797006,39.401005],[-78.846438,39.337929],[-78.883755,39.329357],[-78.926238,39.281737],[-78.983072,39.241181]]]},"id":54057},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-81.375916,39.34569],[-81.433978,39.406023],[-81.447956,39.411028],[-81.465008,39.406858],[-81.540649,39.352709],[-81.557388,39.332655],[-81.572685,39.265918],[-81.667522,39.270495],[-81.689526,39.260226],[-81.697904,39.22002],[-81.723074,39.213268],[-81.72106,39.270503],[-81.815828,39.273608],[-81.813371,39.302279],[-81.835368,39.30197],[-81.833491,39.320185],[-81.854984,39.321249],[-81.846775,39.452217],[-81.828326,39.452858],[-81.825488,39.495159],[-81.761231,39.488289],[-81.751198,39.480012],[-81.70822,39.479653],[-81.706229,39.527363],[-81.728408,39.528885],[-81.729995,39.535637],[-81.731048,39.563732],[-81.717742,39.581425],[-81.58822,39.583462],[-81.476239,39.57845],[-81.474782,39.638841],[-81.446705,39.639275],[-81.449467,39.624215],[-81.410586,39.623624],[-81.411562,39.608621],[-81.393121,39.610101],[-81.394777,39.59644],[-81.353546,39.596356],[-81.353607,39.586373],[-81.277768,39.586873],[-81.277791,39.598668],[-81.258083,39.598809],[-81.260174,39.570165],[-81.241687,39.570718],[-81.239612,39.57668],[-81.035025,39.56993],[-81.037383,39.532664],[-81.098245,39.496451],[-81.11709,39.467784],[-81.180568,39.4378],[-81.200305,39.415896],[-81.224949,39.408358],[-81.237621,39.388472],[-81.284017,39.387072],[-81.338836,39.353644],[-81.375916,39.34569]]]},"id":39167},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-80.207523,39.395595],[-80.271254,39.426844],[-80.496556,39.471979],[-80.495358,39.486066],[-80.480496,39.487329],[-80.473087,39.495667],[-80.485919,39.517583],[-80.482591,39.538071],[-80.497094,39.556775],[-80.479765,39.599823],[-80.463544,39.597484],[-80.440884,39.612987],[-80.439524,39.638415],[-80.417795,39.633025],[-80.403635,39.637438],[-80.36995,39.631865],[-80.344682,39.612486],[-80.156275,39.605745],[-80.080613,39.544296],[-80.045357,39.525974],[-80.043167,39.514679],[-80.0232,39.506471],[-80.016136,39.492101],[-79.990737,39.481729],[-79.972144,39.461242],[-79.945005,39.451801],[-80.076117,39.384775],[-80.102523,39.390572],[-80.109176,39.409931],[-80.122421,39.397412],[-80.142838,39.40197],[-80.207523,39.395595]]]},"id":54049},
{"type":"Feature","properties":{"name":"Johnson"},"geometry":{"type":"Polygon","coordinates":[[[-86.259596,39.3343],[-86.258794,39.631359],[-85.96504,39.637921],[-85.965408,39.338098],[-86.098854,39.335461],[-86.259596,39.3343]]]},"id":18081},
{"type":"Feature","properties":{"name":"Morgan"},"geometry":{"type":"Polygon","coordinates":[[[-86.391153,39.333566],[-86.641153,39.331837],[-86.640978,39.456998],[-86.690403,39.458123],[-86.69122,39.513921],[-86.6637,39.530988],[-86.646876,39.609513],[-86.473011,39.610417],[-86.473965,39.630398],[-86.335258,39.631958],[-86.258794,39.631359],[-86.259596,39.3343],[-86.391153,39.333566]]]},"id":18109},
{"type":"Feature","properties":{"name":"Yuba"},"geometry":{"type":"Polygon","coordinates":[[[-121.280309,39.034453],[-121.311346,39.047899],[-121.361449,39.013025],[-121.409752,38.998159],[-121.458635,38.993238],[-121.537792,38.96995],[-121.56274,38.933189],[-121.57436,38.92958],[-121.598526,39.068447],[-121.589089,39.106914],[-121.620937,39.234159],[-121.614758,39.305176],[-121.600285,39.311611],[-121.55212,39.302948],[-121.494371,39.302773],[-121.470773,39.315877],[-121.470285,39.327237],[-121.391684,39.336835],[-121.360945,39.370133],[-121.336066,39.422275],[-121.33943,39.448474],[-121.313597,39.475234],[-121.302191,39.514197],[-121.276449,39.512816],[-121.27783,39.505961],[-121.231861,39.50571],[-121.230892,39.519812],[-121.180796,39.520591],[-121.18149,39.511947],[-121.15349,39.512879],[-121.152277,39.5229],[-121.140909,39.522374],[-121.138871,39.54921],[-121.128106,39.549111],[-121.129144,39.55679],[-121.089783,39.557634],[-121.09034,39.578031],[-121.071235,39.578199],[-121.071533,39.594076],[-121.000608,39.629481],[-120.998304,39.555602],[-121.035307,39.533995],[-121.03678,39.517615],[-121.021635,39.513568],[-121.014788,39.390381],[-121.085553,39.388083],[-121.127676,39.364012],[-121.150282,39.332408],[-121.173637,39.334803],[-121.181076,39.329562],[-121.196975,39.285472],[-121.256426,39.2644],[-121.259844,39.241596],[-121.275957,39.222443],[-121.280309,39.034453]]]},"id":6115},
{"type":"Feature","properties":{"name":"Storey"},"geometry":{"type":"Polygon","coordinates":[[[-119.688162,39.258693],[-119.682524,39.282848],[-119.659331,39.315086],[-119.658324,39.336422],[-119.642897,39.353981],[-119.657326,39.374081],[-119.649552,39.405533],[-119.655359,39.433979],[-119.686634,39.457798],[-119.679714,39.480167],[-119.684002,39.515449],[-119.654948,39.503822],[-119.637713,39.50555],[-119.613557,39.513767],[-119.58223,39.538448],[-119.549155,39.548199],[-119.524946,39.572723],[-119.508474,39.562626],[-119.467243,39.56118],[-119.444949,39.590183],[-119.361464,39.593601],[-119.267017,39.628449],[-119.468534,39.337153],[-119.587671,39.29075],[-119.62202,39.270535],[-119.688162,39.258693]]]},"id":32029},
{"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-78.033328,39.265639],[-78.229509,39.391113],[-78.209451,39.409362],[-78.171876,39.531052],[-78.136643,39.593341],[-78.118767,39.597965],[-78.102524,39.582176],[-78.084739,39.597675],[-78.047766,39.602375],[-78.026418,39.622868],[-77.995205,39.598969],[-77.964237,39.611325],[-77.94498,39.586011],[-77.935458,39.591939],[-77.947543,39.615014],[-77.938609,39.618218],[-77.903253,39.596124],[-77.890741,39.600701],[-77.888437,39.61657],[-77.855523,39.602166],[-77.842408,39.605375],[-77.839867,39.57274],[-77.852959,39.565454],[-77.885171,39.564451],[-77.889917,39.558092],[-77.869561,39.545912],[-77.864632,39.514651],[-77.843849,39.531932],[-77.835464,39.525611],[-77.828926,39.529254],[-77.825263,39.512038],[-77.847877,39.502006],[-77.825187,39.493907],[-77.848778,39.440807],[-77.961489,39.368371],[-77.96731,39.348405],[-77.978014,39.347909],[-78.012729,39.293375],[-78.028133,39.285609],[-78.033328,39.265639]]]},"id":54003},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-93.488424,39.284452],[-93.503759,39.27126],[-93.497327,39.23018],[-93.513929,39.218758],[-93.571144,39.221435],[-93.595879,39.238318],[-93.642267,39.249029],[-93.659426,39.247553],[-93.672816,39.232129],[-93.715641,39.212082],[-93.768201,39.206206],[-93.7657,39.527542],[-93.765831,39.610576],[-93.287362,39.614643],[-93.274346,39.582825],[-93.274331,39.548344],[-93.266945,39.544034],[-93.294961,39.543186],[-93.273133,39.502564],[-93.281502,39.491421],[-93.274147,39.47622],[-93.286057,39.46452],[-93.257339,39.462662],[-93.234557,39.471967],[-93.234694,39.451547],[-93.246635,39.440304],[-93.225112,39.439134],[-93.220412,39.428841],[-93.194501,39.435052],[-93.170628,39.422601],[-93.133982,39.416872],[-93.121522,39.382303],[-93.145312,39.381612],[-93.171581,39.406244],[-93.194234,39.406484],[-93.200048,39.368657],[-93.226241,39.333855],[-93.240867,39.328881],[-93.263328,39.337277],[-93.298249,39.310814],[-93.347727,39.301131],[-93.352114,39.294189],[-93.336557,39.25883],[-93.347139,39.245349],[-93.378985,39.229391],[-93.408092,39.228933],[-93.418522,39.234957],[-93.413509,39.263243],[-93.447545,39.265795],[-93.468877,39.285986],[-93.488424,39.284452]]]},"id":29033},
{"type":"Feature","properties":{"name":"Vigo"},"geometry":{"type":"Polygon","coordinates":[[[-87.53859,39.477483],[-87.535598,39.609376],[-87.3941,39.607985],[-87.214936,39.608019],[-87.217981,39.511945],[-87.254992,39.5108],[-87.255127,39.256892],[-87.60692,39.258202],[-87.615824,39.281456],[-87.610644,39.297699],[-87.625262,39.307441],[-87.597689,39.338306],[-87.540238,39.350562],[-87.53859,39.477483]]]},"id":18167},
{"type":"Feature","properties":{"name":"Randolph"},"geometry":{"type":"Polygon","coordinates":[[[-92.71396,39.32454],[-92.703352,39.609191],[-92.300718,39.608877],[-92.31441,39.347359],[-92.317141,39.249349],[-92.433078,39.250294],[-92.71396,39.32454]]]},"id":29175},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-87.254356,39.166657],[-87.255127,39.256892],[-87.254992,39.5108],[-87.217981,39.511945],[-87.214936,39.608019],[-87.02799,39.608549],[-87.028166,39.463898],[-86.951954,39.461462],[-86.952563,39.342672],[-87.063856,39.342171],[-87.067386,39.166314],[-87.254356,39.166657]]]},"id":18021},
{"type":"Feature","properties":{"name":"Tyler"},"geometry":{"type":"Polygon","coordinates":[[[-81.009895,39.347917],[-81.02861,39.463058],[-81.060128,39.473503],[-81.063294,39.465244],[-81.090272,39.468105],[-81.106699,39.462638],[-81.11709,39.467784],[-81.098245,39.496451],[-81.037383,39.532664],[-81.032569,39.544143],[-80.983646,39.581805],[-80.932611,39.606941],[-80.922731,39.594372],[-80.89158,39.5798],[-80.856635,39.598886],[-80.844557,39.596036],[-80.827293,39.558397],[-80.816215,39.564135],[-80.786292,39.549502],[-80.778191,39.52885],[-80.747757,39.515587],[-80.735337,39.491414],[-80.696982,39.473806],[-80.680982,39.47603],[-80.672147,39.464915],[-80.644825,39.467421],[-80.620898,39.451698],[-80.662419,39.433414],[-80.712364,39.430777],[-80.735291,39.397078],[-80.831264,39.346929],[-80.89462,39.301675],[-80.897977,39.322449],[-80.887738,39.345402],[-80.910535,39.386962],[-80.922918,39.384356],[-80.942007,39.397436],[-80.960181,39.341601],[-81.009895,39.347917]]]},"id":54095},
{"type":"Feature","properties":{"name":"Pike"},"geometry":{"type":"Polygon","coordinates":[[[-91.417674,39.147666],[-91.444276,39.321342],[-91.465806,39.45702],[-91.203389,39.600067],[-91.156329,39.552639],[-91.093751,39.528973],[-91.064522,39.47403],[-91.036475,39.444458],[-90.948024,39.400632],[-90.850624,39.3505],[-90.779469,39.29685],[-90.738208,39.247858],[-90.732462,39.224795],[-91.186905,39.226717],[-91.19327,39.143217],[-91.265073,39.143578],[-91.417674,39.147666]]]},"id":29163},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-84.258192,39.264364],[-84.271483,39.291814],[-84.348733,39.289403],[-84.329104,39.554982],[-84.360591,39.546437],[-84.362171,39.588166],[-84.284097,39.59152],[-84.106526,39.580138],[-83.97525,39.570652],[-84.005456,39.249219],[-84.258192,39.264364]]]},"id":39165},
{"type":"Feature","properties":{"name":"Butler"},"geometry":{"type":"Polygon","coordinates":[[[-84.812071,39.303029],[-84.812025,39.312333],[-84.811105,39.513163],[-84.811037,39.564051],[-84.476768,39.566363],[-84.475212,39.587355],[-84.362171,39.588166],[-84.360591,39.546437],[-84.329104,39.554982],[-84.348733,39.289403],[-84.641786,39.311557],[-84.666017,39.303347],[-84.812071,39.303029]]]},"id":39017},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-122.811567,38.844577],[-122.810659,38.855517],[-122.854438,38.862536],[-122.854987,38.869322],[-122.866157,38.868338],[-122.867843,38.881879],[-122.889077,38.880872],[-122.890953,38.896676],[-122.908799,38.897641],[-122.908799,38.904908],[-122.937716,38.903523],[-122.938967,38.92617],[-122.959117,38.933375],[-122.959712,38.947882],[-122.968761,38.949713],[-122.969218,38.984207],[-122.980587,38.985474],[-122.980007,39.000034],[-123.019231,39.000862],[-123.020055,39.01081],[-123.042486,39.016532],[-123.048971,39.051641],[-123.08686,39.071588],[-123.065939,39.176618],[-123.037549,39.178457],[-123.02982,39.214253],[-123.012005,39.214665],[-123.013127,39.220966],[-123.001896,39.221962],[-123.002911,39.234172],[-122.985088,39.23458],[-122.996647,39.273535],[-123.006917,39.275312],[-123.00974,39.316502],[-123.024405,39.328061],[-123.033859,39.377105],[-123.044555,39.37659],[-123.046532,39.407381],[-123.065736,39.408716],[-123.063768,39.449235],[-123.052468,39.449784],[-123.051218,39.4989],[-123.035753,39.499652],[-123.036432,39.507792],[-123.016679,39.507384],[-123.015054,39.516543],[-122.927641,39.514365],[-122.926451,39.528956],[-122.878644,39.528944],[-122.879766,39.579305],[-122.73092,39.579858],[-122.72849,39.383794],[-122.764845,39.383482],[-122.762755,39.372225],[-122.745657,39.367109],[-122.74262,39.351359],[-122.760915,39.334167],[-122.769437,39.306526],[-122.74081,39.276063],[-122.659539,39.21894],[-122.568037,39.204906],[-122.521664,39.205154],[-122.467363,39.171239],[-122.468484,39.146673],[-122.493448,39.131045],[-122.484008,39.053372],[-122.440259,39.023973],[-122.409314,39.022604],[-122.408635,38.973602],[-122.347523,38.924504],[-122.403378,38.918904],[-122.40978,38.901372],[-122.389722,38.87047],[-122.388349,38.851916],[-122.371252,38.812714],[-122.377012,38.802475],[-122.393248,38.798138],[-122.403449,38.768186],[-122.4599,38.708957],[-122.620107,38.672266],[-122.639128,38.696825],[-122.685448,38.715132],[-122.750736,38.808823],[-122.811681,38.838668],[-122.811567,38.844577]]]},"id":6033},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-83.980873,39.247323],[-84.005456,39.249219],[-83.97525,39.570652],[-83.673415,39.551865],[-83.575345,39.544408],[-83.586468,39.371714],[-83.779954,39.258084],[-83.802691,39.238763],[-83.814822,39.214071],[-83.831172,39.224142],[-83.828967,39.239702],[-83.861721,39.239843],[-83.980873,39.247323]]]},"id":39027},
{"type":"Feature","properties":{"name":"Kit Carson"},"geometry":{"type":"Polygon","coordinates":[[[-102.048973,39.037003],[-103.15955,39.028482],[-103.158505,39.112358],[-103.150807,39.112915],[-103.143751,39.561365],[-102.801894,39.565392],[-102.049443,39.568693],[-102.048802,39.562804],[-102.047875,39.126753],[-102.048973,39.037003]]]},"id":8063},
{"type":"Feature","properties":{"name":"Sherman"},"geometry":{"type":"Polygon","coordinates":[[[-101.47316,39.127958],[-102.047875,39.126753],[-102.048802,39.562804],[-101.40676,39.567149],[-101.385283,39.565318],[-101.387159,39.129271],[-101.47316,39.127958]]]},"id":20181},
{"type":"Feature","properties":{"name":"Thomas"},"geometry":{"type":"Polygon","coordinates":[[[-100.715739,39.129113],[-100.808278,39.128758],[-101.387159,39.129271],[-101.385283,39.565318],[-100.737845,39.566223],[-100.717574,39.564739],[-100.715739,39.129113]]]},"id":20193},
{"type":"Feature","properties":{"name":"Sheridan"},"geometry":{"type":"Polygon","coordinates":[[[-100.161809,39.125289],[-100.715739,39.129113],[-100.717574,39.564739],[-100.179398,39.560665],[-100.16391,39.559143],[-100.161809,39.125289]]]},"id":20179},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-97.361127,39.125702],[-97.361984,39.308566],[-97.359861,39.564402],[-96.951445,39.562004],[-96.949364,39.216125],[-96.957413,39.125661],[-97.361127,39.125702]]]},"id":20027},
{"type":"Feature","properties":{"name":"Cumberland"},"geometry":{"type":"Polygon","coordinates":[[[-74.916654,39.170639],[-75.014407,39.198364],[-75.119958,39.184692],[-75.415672,39.374972],[-75.42334,39.409083],[-75.41288,39.420699],[-75.420898,39.431712],[-75.41793,39.452067],[-75.404632,39.458644],[-75.378492,39.455939],[-75.351528,39.480869],[-75.326892,39.487243],[-75.236028,39.551831],[-75.082357,39.453732],[-75.066707,39.511468],[-75.071208,39.555089],[-75.063127,39.564454],[-74.988044,39.509462],[-74.856577,39.418321],[-74.852861,39.373349],[-74.861376,39.320103],[-74.882122,39.305043],[-74.902867,39.224308],[-74.935614,39.20549],[-74.916654,39.170639]]]},"id":34011},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-104.047998,38.51515],[-104.048158,38.857907],[-103.717271,38.862005],[-103.725269,39.123906],[-103.716998,39.124959],[-103.71732,39.562943],[-103.706013,39.56405],[-103.143751,39.561365],[-103.150807,39.112915],[-103.158505,39.112358],[-103.15955,39.028482],[-103.16394,38.676663],[-103.173957,38.676525],[-103.17417,38.608529],[-103.174969,38.515139],[-103.496092,38.512624],[-103.498885,38.507143],[-104.047998,38.51515]]]},"id":8073},
{"type":"Feature","properties":{"name":"Elbert"},"geometry":{"type":"Polygon","coordinates":[[[-104.048158,38.857907],[-104.049128,39.122223],[-104.652094,39.125632],[-104.650596,39.556068],[-103.71732,39.562943],[-103.716998,39.124959],[-103.725269,39.123906],[-103.717271,38.862005],[-104.048158,38.857907]]]},"id":8039},
{"type":"Feature","properties":{"name":"Riley"},"geometry":{"type":"Polygon","coordinates":[[[-96.578192,39.560114],[-96.707663,39.445779],[-96.713399,39.395162],[-96.633531,39.297665],[-96.596092,39.270325],[-96.58454,39.247631],[-96.572172,39.245777],[-96.571287,39.232582],[-96.555456,39.229229],[-96.547521,39.214844],[-96.521802,39.199746],[-96.525288,39.19217],[-96.547971,39.190808],[-96.544439,39.172963],[-96.52039,39.176995],[-96.505139,39.16549],[-96.486111,39.174257],[-96.458568,39.168603],[-96.445644,39.183511],[-96.404444,39.177747],[-96.38727,39.168416],[-96.391648,39.038779],[-96.491435,39.036944],[-96.493549,39.066531],[-96.69806,39.06962],[-96.700387,39.088316],[-96.739107,39.0771],[-96.749407,39.082941],[-96.840642,39.085489],[-96.844266,39.21405],[-96.949364,39.216125],[-96.951445,39.562004],[-96.801448,39.562809],[-96.578192,39.560114]]]},"id":20161},
{"type":"Feature","properties":{"name":"Park"},"geometry":{"type":"Polygon","coordinates":[[[-105.944528,38.693195],[-105.942285,38.74364],[-105.898522,38.801467],[-105.920213,38.837447],[-105.929316,38.880225],[-105.954967,38.873858],[-105.973805,38.910842],[-105.99909,38.927169],[-106.021315,38.932257],[-106.037909,38.92303],[-106.093788,38.935946],[-106.103425,38.94784],[-106.100472,38.976084],[-106.166384,39.005838],[-106.1823,39.022936],[-106.183101,39.053765],[-106.169467,39.081505],[-106.191021,39.112007],[-106.167743,39.137844],[-106.174038,39.207945],[-106.158253,39.221243],[-106.180943,39.250345],[-106.180303,39.29575],[-106.168408,39.314347],[-106.148953,39.317345],[-106.1367,39.330509],[-106.142865,39.361595],[-106.129834,39.372062],[-106.094623,39.371097],[-106.054301,39.355328],[-106.027139,39.359043],[-105.955619,39.416526],[-105.95336,39.437934],[-105.927557,39.454734],[-105.900349,39.458419],[-105.87968,39.491366],[-105.860141,39.493864],[-105.85338,39.520418],[-105.83362,39.519289],[-105.813012,39.534071],[-105.822465,39.562331],[-105.391092,39.559261],[-105.386852,39.125693],[-105.32036,39.125487],[-105.317141,38.691936],[-105.944528,38.693195]]]},"id":8093},
{"type":"Feature","properties":{"name":"Rooks"},"geometry":{"type":"Polygon","coordinates":[[[-99.5887,39.129136],[-99.602952,39.128446],[-99.601812,39.557774],[-99.062178,39.561568],[-99.041326,39.560252],[-99.041697,39.129043],[-99.5887,39.129136]]]},"id":20163},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-105.021758,39.124328],[-105.32036,39.125487],[-105.315958,39.143313],[-105.262933,39.197096],[-105.243996,39.233049],[-105.204841,39.257807],[-105.152866,39.359136],[-105.151264,39.398198],[-105.109506,39.432976],[-105.130396,39.469116],[-105.084404,39.491764],[-105.070403,39.534351],[-105.041868,39.561019],[-104.650596,39.556068],[-104.652094,39.125632],[-105.021758,39.124328]]]},"id":8035},
{"type":"Feature","properties":{"name":"Osborne"},"geometry":{"type":"Polygon","coordinates":[[[-99.041697,39.129043],[-99.041326,39.560252],[-98.504698,39.56034],[-98.486844,39.559005],[-98.488212,39.211641],[-98.489928,39.127337],[-99.027498,39.127857],[-99.041697,39.129043]]]},"id":20141},
{"type":"Feature","properties":{"name":"Pottawatomie"},"geometry":{"type":"Polygon","coordinates":[[[-96.578192,39.560114],[-96.234647,39.559731],[-96.030379,39.558219],[-96.030254,39.213143],[-96.032969,39.122008],[-96.059573,39.139521],[-96.097324,39.151155],[-96.094669,39.162843],[-96.07101,39.16136],[-96.066082,39.171587],[-96.074154,39.182836],[-96.107548,39.197454],[-96.125615,39.186433],[-96.231903,39.204598],[-96.245865,39.20065],[-96.269592,39.176682],[-96.316148,39.182267],[-96.342843,39.157956],[-96.361688,39.168721],[-96.38727,39.168416],[-96.404444,39.177747],[-96.445644,39.183511],[-96.458568,39.168603],[-96.486111,39.174257],[-96.505139,39.16549],[-96.52039,39.176995],[-96.544439,39.172963],[-96.547971,39.190808],[-96.525288,39.19217],[-96.521802,39.199746],[-96.547521,39.214844],[-96.555456,39.229229],[-96.571287,39.232582],[-96.572172,39.245777],[-96.58454,39.247631],[-96.596092,39.270325],[-96.633531,39.297665],[-96.713399,39.395162],[-96.707663,39.445779],[-96.578192,39.560114]]]},"id":20149},
{"type":"Feature","properties":{"name":"Graham"},"geometry":{"type":"Polygon","coordinates":[[[-100.161809,39.125289],[-100.16391,39.559143],[-99.625045,39.559482],[-99.601812,39.557774],[-99.602952,39.128446],[-100.149365,39.124701],[-100.161809,39.125289]]]},"id":20065},
{"type":"Feature","properties":{"name":"Mitchell"},"geometry":{"type":"Polygon","coordinates":[[[-98.488212,39.211641],[-98.486844,39.559005],[-97.929818,39.559301],[-97.922135,39.557721],[-97.922836,39.302806],[-97.924858,39.213508],[-98.488212,39.211641]]]},"id":20123},
{"type":"Feature","properties":{"name":"Athens"},"geometry":{"type":"Polygon","coordinates":[[[-82.264337,39.199613],[-82.257234,39.290649],[-82.297312,39.293651],[-82.288691,39.379309],[-82.275408,39.466958],[-82.167098,39.461977],[-82.152754,39.554189],[-82.043132,39.549146],[-82.053562,39.458911],[-81.846775,39.452217],[-81.854984,39.321249],[-81.833491,39.320185],[-81.835368,39.30197],[-81.813371,39.302279],[-81.815828,39.273608],[-81.72106,39.270503],[-81.723074,39.213268],[-81.75891,39.175751],[-82.264337,39.199613]]]},"id":39009},
{"type":"Feature","properties":{"name":"Millard"},"geometry":{"type":"Polygon","coordinates":[[[-112.517556,38.573128],[-113.127769,38.576553],[-113.127441,38.571552],[-113.563565,38.579028],[-114.04509,38.571095],[-114.044268,38.678996],[-114.040105,39.538685],[-112.199368,39.550955],[-112.192844,39.514392],[-112.198611,39.481484],[-112.185618,39.470543],[-112.197657,39.44196],[-112.185121,39.397452],[-112.207872,39.377906],[-112.191064,39.361823],[-112.182816,39.31567],[-112.067838,39.316613],[-112.068852,39.301679],[-112.008105,39.30198],[-112.006877,39.043669],[-112.013377,38.99219],[-112.063312,38.990104],[-112.064562,38.954301],[-112.125049,38.953515],[-112.129428,38.93236],[-112.149631,38.931337],[-112.153033,38.906962],[-112.167918,38.90573],[-112.170428,38.876785],[-112.185771,38.87738],[-112.187503,38.860203],[-112.222499,38.858837],[-112.220315,38.729873],[-112.277185,38.699841],[-112.283563,38.683293],[-112.303614,38.683606],[-112.302988,38.674958],[-112.357411,38.672932],[-112.359807,38.681644],[-112.464142,38.674179],[-112.474854,38.644169],[-112.484833,38.644989],[-112.485611,38.603726],[-112.500931,38.603833],[-112.502907,38.57169],[-112.517556,38.573128]]]},"id":49027},
{"type":"Feature","properties":{"name":"Hampshire"},"geometry":{"type":"Polygon","coordinates":[[[-78.347546,39.456998],[-78.350231,39.380828],[-78.365475,39.361687],[-78.343929,39.350956],[-78.340846,39.341458],[-78.413547,39.257541],[-78.399127,39.244953],[-78.423069,39.212143],[-78.424068,39.197629],[-78.402362,39.170595],[-78.430569,39.148626],[-78.44798,39.119036],[-78.48525,39.111945],[-78.501601,39.093684],[-78.562127,39.138056],[-78.594263,39.144575],[-78.617701,39.125781],[-78.650974,39.129107],[-78.687512,39.150973],[-78.755324,39.160735],[-78.88416,39.195177],[-78.983072,39.241181],[-78.926238,39.281737],[-78.883755,39.329357],[-78.846438,39.337929],[-78.797006,39.401005],[-78.787491,39.435103],[-78.725462,39.4661],[-78.708723,39.498451],[-78.67922,39.516865],[-78.666425,39.53693],[-78.649144,39.537998],[-78.637082,39.529949],[-78.604366,39.535683],[-78.564189,39.521073],[-78.508783,39.52516],[-78.481278,39.519938],[-78.448196,39.498431],[-78.347546,39.456998]]]},"id":54027},
{"type":"Feature","properties":{"name":"Platte"},"geometry":{"type":"Polygon","coordinates":[[[-94.790049,39.196883],[-94.820819,39.211005],[-94.833477,39.261766],[-94.881108,39.286046],[-94.907681,39.323028],[-94.911344,39.340122],[-94.898282,39.380641],[-94.925748,39.381266],[-94.958494,39.411447],[-94.986204,39.439462],[-95.040511,39.462941],[-95.047599,39.485329],[-95.102037,39.532849],[-94.614674,39.534234],[-94.610692,39.452685],[-94.612653,39.151649],[-94.646407,39.158428],[-94.675514,39.174922],[-94.730531,39.171256],[-94.790049,39.196883]]]},"id":29165},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-89.702561,38.996846],[-89.710703,39.354463],[-89.704165,39.354928],[-89.704061,39.528087],[-89.540051,39.528701],[-89.537576,39.349648],[-89.138975,39.35003],[-89.142603,39.216779],[-89.256025,39.216147],[-89.257841,39.025329],[-89.594258,39.028248],[-89.593037,38.998337],[-89.645727,38.996472],[-89.702561,38.996846]]]},"id":17135},
{"type":"Feature","properties":{"name":"Macoupin"},"geometry":{"type":"Polygon","coordinates":[[[-90.151941,38.998021],[-90.1525,39.258195],[-90.154915,39.525629],[-89.93009,39.527058],[-89.704061,39.528087],[-89.704165,39.354928],[-89.710703,39.354463],[-89.702561,38.996846],[-90.151941,38.998021]]]},"id":17117},
{"type":"Feature","properties":{"name":"Ray"},"geometry":{"type":"Polygon","coordinates":[[[-93.768201,39.206206],[-93.863669,39.212422],[-93.91362,39.183433],[-93.935951,39.179462],[-93.956307,39.152869],[-93.981934,39.144686],[-94.006341,39.155149],[-93.981797,39.190524],[-93.995171,39.205016],[-94.046426,39.188176],[-94.03721,39.154935],[-94.044969,39.146028],[-94.07287,39.13638],[-94.112467,39.142631],[-94.14921,39.178473],[-94.187052,39.184767],[-94.174197,39.206579],[-94.193759,39.214922],[-94.218165,39.206281],[-94.21952,39.455388],[-94.217612,39.526715],[-93.7657,39.527542],[-93.768201,39.206206]]]},"id":29177},
{"type":"Feature","properties":{"name":"Greene"},"geometry":{"type":"Polygon","coordinates":[[[-90.1525,39.258195],[-90.204725,39.252015],[-90.205663,39.22572],[-90.317308,39.225038],[-90.317963,39.177442],[-90.492428,39.175264],[-90.50649,39.162008],[-90.519292,39.185926],[-90.568549,39.185061],[-90.586837,39.177649],[-90.582434,39.160918],[-90.608474,39.117625],[-90.614395,39.15565],[-90.599853,39.214251],[-90.622957,39.363638],[-90.617457,39.393152],[-90.621447,39.419863],[-90.587894,39.525332],[-90.303412,39.524762],[-90.154915,39.525629],[-90.1525,39.258195]]]},"id":17061},
{"type":"Feature","properties":{"name":"Grand"},"geometry":{"type":"Polygon","coordinates":[[[-109.051417,39.360966],[-109.053948,38.494651],[-110.039706,38.498021],[-110.041896,38.512231],[-110.01491,38.510701],[-109.992799,38.519898],[-110.005434,38.541977],[-109.987161,38.554115],[-109.994142,38.561329],[-110.012766,38.557842],[-110.024775,38.568065],[-110.039119,38.56615],[-110.057461,38.578094],[-110.033557,38.593558],[-110.000407,38.582137],[-109.994387,38.60179],[-110.013187,38.615126],[-110.028491,38.60327],[-110.05431,38.598819],[-110.063183,38.604773],[-110.059262,38.615004],[-110.0387,38.613844],[-110.037747,38.64242],[-110.052983,38.643732],[-110.059095,38.654073],[-110.067617,38.651373],[-110.07208,38.66662],[-110.091742,38.658636],[-110.085791,38.677842],[-110.096274,38.6857],[-110.089225,38.703938],[-110.111129,38.697438],[-110.119568,38.701996],[-110.105842,38.715771],[-110.111,38.723786],[-110.102829,38.735146],[-110.080672,38.737991],[-110.072402,38.756614],[-110.112511,38.782943],[-110.103852,38.805636],[-110.119401,38.8165],[-110.116937,38.829996],[-110.141223,38.829981],[-110.134921,38.85917],[-110.154369,38.860246],[-110.159771,38.890992],[-110.172948,38.902169],[-110.165273,38.914471],[-110.132137,38.926269],[-110.144315,38.966933],[-110.135304,38.993243],[-110.149588,39.011759],[-110.14344,39.039136],[-110.130387,39.076585],[-110.095598,39.123733],[-110.110188,39.14545],[-110.093449,39.171332],[-110.068173,39.186739],[-110.072897,39.212],[-110.057629,39.209783],[-110.050382,39.217103],[-110.066475,39.266629],[-110.048522,39.28608],[-110.057182,39.295201],[-110.048073,39.315598],[-110.031646,39.325135],[-110.013938,39.354138],[-110.011269,39.455799],[-109.132061,39.445691],[-109.131718,39.454312],[-109.114299,39.45503],[-109.112132,39.49128],[-109.101435,39.490605],[-109.100993,39.500126],[-109.08787,39.499752],[-109.088709,39.508446],[-109.072916,39.510628],[-109.074007,39.517064],[-109.053529,39.51817],[-109.051417,39.360966]]]},"id":49019},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-85.077276,39.306567],[-85.224953,39.305372],[-85.306231,39.268659],[-85.306285,39.442436],[-85.306049,39.50822],[-85.044662,39.517323],[-85.019302,39.512333],[-84.811105,39.513163],[-84.812025,39.312333],[-85.077276,39.306567]]]},"id":18047},
{"type":"Feature","properties":{"name":"Nevada"},"geometry":{"type":"Polygon","coordinates":[[[-121.280309,39.034453],[-121.275957,39.222443],[-121.259844,39.241596],[-121.256426,39.2644],[-121.196975,39.285472],[-121.181076,39.329562],[-121.173637,39.334803],[-121.150282,39.332408],[-121.127676,39.364012],[-121.085553,39.388083],[-121.014788,39.390381],[-120.999864,39.389953],[-120.967034,39.410512],[-120.751395,39.446668],[-120.704504,39.473929],[-120.685483,39.49853],[-120.636783,39.51493],[-120.580179,39.516567],[-120.551026,39.506058],[-120.514455,39.453569],[-120.491864,39.442407],[-119.996011,39.443501],[-119.995304,39.311545],[-120.671776,39.311138],[-120.832906,39.207391],[-120.855337,39.182202],[-120.892852,39.172863],[-120.956056,39.122783],[-120.977946,39.099856],[-120.974886,39.076366],[-121.031299,39.013302],[-121.086782,39.00922],[-121.125388,39.031531],[-121.172005,39.017272],[-121.217509,39.014827],[-121.280309,39.034453]]]},"id":6057},
{"type":"Feature","properties":{"name":"Ross"},"geometry":{"type":"Polygon","coordinates":[[[-83.350873,39.194082],[-83.342595,39.238976],[-83.353559,39.242092],[-83.354291,39.251141],[-83.368902,39.24046],[-83.385832,39.243748],[-83.3823,39.266167],[-83.395903,39.272339],[-83.384802,39.289665],[-83.380408,39.374797],[-83.264974,39.512342],[-83.004475,39.503663],[-82.991435,39.489255],[-83.001255,39.469297],[-82.737151,39.457053],[-82.747398,39.359929],[-82.760864,39.200927],[-82.766204,39.159844],[-82.784699,39.160877],[-83.350873,39.194082]]]},"id":39141},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-77.83068,39.132181],[-78.033328,39.265639],[-78.028133,39.285609],[-78.012729,39.293375],[-77.978014,39.347909],[-77.96731,39.348405],[-77.961489,39.368371],[-77.848778,39.440807],[-77.825187,39.493907],[-77.771551,39.498115],[-77.799498,39.480827],[-77.785109,39.459103],[-77.80419,39.463139],[-77.795798,39.450916],[-77.804694,39.440018],[-77.802275,39.432316],[-77.756986,39.425164],[-77.740834,39.403439],[-77.737233,39.396195],[-77.756223,39.378476],[-77.74545,39.360372],[-77.754301,39.338594],[-77.750089,39.326818],[-77.727468,39.317797],[-77.759458,39.284643],[-77.768232,39.24655],[-77.805449,39.196606],[-77.820045,39.141725],[-77.83068,39.132181]]]},"id":54037},
{"type":"Feature","properties":{"name":"Clark"},"geometry":{"type":"Polygon","coordinates":[[[-88.010891,39.177552],[-88.013882,39.37932],[-88.014089,39.485406],[-87.965221,39.484815],[-87.689122,39.488369],[-87.687573,39.478825],[-87.53859,39.477483],[-87.540238,39.350562],[-87.597689,39.338306],[-87.625262,39.307441],[-87.610644,39.297699],[-87.615824,39.281456],[-87.60692,39.258202],[-87.584589,39.248792],[-87.588617,39.208505],[-87.594232,39.198167],[-87.60795,39.196107],[-87.644282,39.168547],[-87.665637,39.168863],[-87.665988,39.178388],[-87.955683,39.177789],[-88.010891,39.177552]]]},"id":17023},
{"type":"Feature","properties":{"name":"Pleasants"},"geometry":{"type":"Polygon","coordinates":[[[-81.009895,39.347917],[-81.036652,39.347162],[-81.049851,39.325014],[-81.100366,39.323564],[-81.127016,39.309182],[-81.173274,39.306015],[-81.190303,39.313221],[-81.221279,39.302318],[-81.244068,39.271896],[-81.253041,39.272335],[-81.273961,39.297107],[-81.325286,39.300075],[-81.329833,39.318538],[-81.35244,39.329634],[-81.36351,39.325209],[-81.375916,39.34569],[-81.338836,39.353644],[-81.284017,39.387072],[-81.237621,39.388472],[-81.224949,39.408358],[-81.200305,39.415896],[-81.180568,39.4378],[-81.11709,39.467784],[-81.106699,39.462638],[-81.090272,39.468105],[-81.063294,39.465244],[-81.060128,39.473503],[-81.02861,39.463058],[-81.009895,39.347917]]]},"id":54073},
{"type":"Feature","properties":{"name":"Harrison"},"geometry":{"type":"Polygon","coordinates":[[[-80.230718,39.110779],[-80.247404,39.097259],[-80.30088,39.099692],[-80.460485,39.130002],[-80.478239,39.143181],[-80.526229,39.141113],[-80.572267,39.163111],[-80.590083,39.163122],[-80.587351,39.182695],[-80.567049,39.180021],[-80.532952,39.202623],[-80.542329,39.213735],[-80.576548,39.221959],[-80.573329,39.230202],[-80.548548,39.234441],[-80.581554,39.255852],[-80.58681,39.28157],[-80.604656,39.295638],[-80.570482,39.317347],[-80.553842,39.345874],[-80.535843,39.356742],[-80.547829,39.372775],[-80.551483,39.403074],[-80.540092,39.429655],[-80.517813,39.43836],[-80.518629,39.457841],[-80.496556,39.471979],[-80.271254,39.426844],[-80.207523,39.395595],[-80.203276,39.281871],[-80.165449,39.23961],[-80.229971,39.169741],[-80.230718,39.110779]]]},"id":54033},
{"type":"Feature","properties":{"name":"Owen"},"geometry":{"type":"Polygon","coordinates":[[[-87.067386,39.166314],[-87.063856,39.342171],[-86.952563,39.342672],[-86.951954,39.461462],[-86.690403,39.458123],[-86.640978,39.456998],[-86.641153,39.331837],[-86.704144,39.334171],[-86.699885,39.167202],[-87.067386,39.166314]]]},"id":18119},
{"type":"Feature","properties":{"name":"Frederick"},"geometry":{"type":"Polygon","coordinates":[[[-78.154309,39.0407],[-78.167759,39.022046],[-78.310974,39.01085],[-78.318779,39.021592],[-78.313591,39.033868],[-78.33796,39.041413],[-78.336274,39.049126],[-78.348787,39.055386],[-78.327272,39.090888],[-78.344011,39.103011],[-78.353975,39.093425],[-78.392009,39.10041],[-78.396579,39.08678],[-78.434285,39.068371],[-78.455678,39.027867],[-78.536651,39.057133],[-78.501601,39.093684],[-78.48525,39.111945],[-78.44798,39.119036],[-78.430569,39.148626],[-78.402362,39.170595],[-78.424068,39.197629],[-78.423069,39.212143],[-78.399127,39.244953],[-78.413547,39.257541],[-78.340846,39.341458],[-78.343929,39.350956],[-78.365475,39.361687],[-78.350231,39.380828],[-78.347546,39.456998],[-78.276881,39.423465],[-78.229509,39.391113],[-78.033328,39.265639],[-78.099476,39.144774],[-78.108631,39.104388],[-78.150891,39.05613],[-78.154309,39.0407]],[[-78.13252,39.191747],[-78.182486,39.202817],[-78.204764,39.173231],[-78.205206,39.157816],[-78.162305,39.138563],[-78.139409,39.164972],[-78.13252,39.191747]]]},"id":51069},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-94.218165,39.206281],[-94.252498,39.231293],[-94.29913,39.234951],[-94.369963,39.165028],[-94.399124,39.19202],[-94.415405,39.195465],[-94.411827,39.160206],[-94.452859,39.125897],[-94.485613,39.144558],[-94.516391,39.151489],[-94.576634,39.120899],[-94.608137,39.112801],[-94.601224,39.141228],[-94.612653,39.151649],[-94.610692,39.452685],[-94.21952,39.455388],[-94.218165,39.206281]]]},"id":29047},
{"type":"Feature","properties":{"name":"Doddridge"},"geometry":{"type":"Polygon","coordinates":[[[-80.817407,39.109645],[-80.917127,39.274297],[-80.89462,39.301675],[-80.831264,39.346929],[-80.735291,39.397078],[-80.712364,39.430777],[-80.662419,39.433414],[-80.620898,39.451698],[-80.605585,39.442101],[-80.58999,39.453827],[-80.576829,39.438733],[-80.540092,39.429655],[-80.551483,39.403074],[-80.547829,39.372775],[-80.535843,39.356742],[-80.553842,39.345874],[-80.570482,39.317347],[-80.604656,39.295638],[-80.58681,39.28157],[-80.581554,39.255852],[-80.548548,39.234441],[-80.573329,39.230202],[-80.576548,39.221959],[-80.542329,39.213735],[-80.532952,39.202623],[-80.567049,39.180021],[-80.587351,39.182695],[-80.590083,39.163122],[-80.634273,39.141611],[-80.656148,39.139695],[-80.679029,39.120065],[-80.685903,39.100843],[-80.709776,39.090703],[-80.733046,39.093728],[-80.817407,39.109645]]]},"id":54017},
{"type":"Feature","properties":{"name":"Taylor"},"geometry":{"type":"Polygon","coordinates":[[[-80.165449,39.23961],[-80.203276,39.281871],[-80.207523,39.395595],[-80.142838,39.40197],[-80.122421,39.397412],[-80.109176,39.409931],[-80.102523,39.390572],[-80.076117,39.384775],[-79.945005,39.451801],[-79.907169,39.443013],[-79.906572,39.299748],[-79.921725,39.290387],[-79.951054,39.296161],[-80.002823,39.245255],[-80.128369,39.233141],[-80.165449,39.23961]]]},"id":54091},
{"type":"Feature","properties":{"name":"Decatur"},"geometry":{"type":"Polygon","coordinates":[[[-85.453741,39.194147],[-85.59086,39.130485],[-85.701361,39.128921],[-85.700838,39.343018],[-85.641159,39.345723],[-85.643271,39.440147],[-85.306285,39.442436],[-85.306231,39.268659],[-85.453741,39.194147]]]},"id":18031},
{"type":"Feature","properties":{"name":"Colusa"},"geometry":{"type":"Polygon","coordinates":[[[-122.347523,38.924504],[-122.408635,38.973602],[-122.409314,39.022604],[-122.440259,39.023973],[-122.484008,39.053372],[-122.493448,39.131045],[-122.468484,39.146673],[-122.467363,39.171239],[-122.521664,39.205154],[-122.568037,39.204906],[-122.659539,39.21894],[-122.74081,39.276063],[-122.769437,39.306526],[-122.760915,39.334167],[-122.74262,39.351359],[-122.745657,39.367109],[-122.762755,39.372225],[-122.764845,39.383482],[-122.72849,39.383794],[-122.126539,39.386391],[-122.126219,39.415454],[-122.00413,39.41769],[-122.003031,39.384599],[-121.882151,39.386217],[-121.896753,39.302581],[-121.932336,39.248077],[-121.922455,39.198995],[-121.92984,39.176462],[-121.915961,39.147059],[-121.931906,39.128272],[-121.898138,39.111908],[-121.872441,39.065266],[-121.836514,39.060315],[-121.818202,39.007928],[-121.798327,38.994177],[-121.813159,38.985434],[-121.815837,38.972171],[-121.830287,38.966617],[-121.833071,38.928387],[-122.347523,38.924504]]]},"id":6011},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-95.181706,39.037542],[-95.348213,39.034104],[-95.382744,39.053978],[-95.433358,39.066456],[-95.496104,39.05452],[-95.540447,39.063927],[-95.588979,39.058525],[-95.599195,39.093525],[-95.586934,39.14199],[-95.586323,39.215075],[-95.582029,39.413339],[-95.565312,39.413453],[-95.169741,39.413069],[-95.181706,39.037542]]]},"id":20087},
{"type":"Feature","properties":{"name":"Leavenworth"},"geometry":{"type":"Polygon","coordinates":[[[-94.904982,38.992238],[-94.916656,38.987862],[-94.93396,38.993325],[-94.95121,38.979699],[-95.017016,38.993606],[-95.037135,38.974216],[-95.051936,38.974533],[-95.074092,38.978862],[-95.100177,38.958862],[-95.127217,38.968433],[-95.15965,38.97055],[-95.179174,38.964282],[-95.181706,39.037542],[-95.169741,39.413069],[-94.958494,39.411447],[-94.925748,39.381266],[-94.898282,39.380641],[-94.911344,39.340122],[-94.907681,39.323028],[-94.881108,39.286046],[-94.833477,39.261766],[-94.820819,39.211005],[-94.790049,39.196883],[-94.902959,39.197497],[-94.904982,38.992238]]]},"id":20103},
{"type":"Feature","properties":{"name":"Wood"},"geometry":{"type":"Polygon","coordinates":[[[-81.75891,39.175751],[-81.723074,39.213268],[-81.697904,39.22002],[-81.689526,39.260226],[-81.667522,39.270495],[-81.572685,39.265918],[-81.557388,39.332655],[-81.540649,39.352709],[-81.465008,39.406858],[-81.447956,39.411028],[-81.433978,39.406023],[-81.375916,39.34569],[-81.36351,39.325209],[-81.35244,39.329634],[-81.329833,39.318538],[-81.325286,39.300075],[-81.273961,39.297107],[-81.253041,39.272335],[-81.244068,39.271896],[-81.267369,39.26192],[-81.310508,39.177594],[-81.39818,39.139948],[-81.420085,39.138807],[-81.587326,39.029983],[-81.753562,39.094721],[-81.744704,39.125875],[-81.75891,39.175751]]]},"id":54107},
{"type":"Feature","properties":{"name":"Saline"},"geometry":{"type":"Polygon","coordinates":[[[-93.502164,38.941042],[-93.488424,39.284452],[-93.468877,39.285986],[-93.447545,39.265795],[-93.413509,39.263243],[-93.418522,39.234957],[-93.408092,39.228933],[-93.378985,39.229391],[-93.347139,39.245349],[-93.336557,39.25883],[-93.352114,39.294189],[-93.347727,39.301131],[-93.298249,39.310814],[-93.263328,39.337277],[-93.240867,39.328881],[-93.226241,39.333855],[-93.200048,39.368657],[-93.194234,39.406484],[-93.171581,39.406244],[-93.145312,39.381612],[-93.121522,39.382303],[-93.102906,39.379213],[-93.061964,39.321875],[-92.970231,39.307682],[-92.964745,39.280167],[-92.937118,39.261884],[-92.919417,39.226994],[-92.869092,39.231089],[-92.860341,39.2218],[-92.862637,39.207224],[-92.915946,39.165859],[-92.924721,39.13795],[-92.949182,39.1155],[-92.950181,39.099146],[-92.914711,39.08924],[-92.938767,39.058641],[-93.053321,38.976042],[-93.055839,38.930612],[-93.502164,38.941042]]]},"id":29195},
{"type":"Feature","properties":{"name":"Calhoun"},"geometry":{"type":"Polygon","coordinates":[[[-90.608474,39.117625],[-90.611289,39.107627],[-90.57636,39.031783],[-90.575383,39.0055],[-90.550587,38.969905],[-90.53207,38.957824],[-90.488406,38.967242],[-90.469958,38.959228],[-90.530545,38.891659],[-90.570448,38.871377],[-90.627335,38.880845],[-90.669,38.935303],[-90.706194,39.037842],[-90.707712,39.058227],[-90.690522,39.093749],[-90.71686,39.144259],[-90.718317,39.195922],[-90.732462,39.224795],[-90.738208,39.247858],[-90.779469,39.29685],[-90.850624,39.3505],[-90.948024,39.400632],[-90.617457,39.393152],[-90.622957,39.363638],[-90.599853,39.214251],[-90.614395,39.15565],[-90.608474,39.117625]]]},"id":17013},
{"type":"Feature","properties":{"name":"Ritchie"},"geometry":{"type":"Polygon","coordinates":[[[-81.165074,39.038183],[-81.179257,39.0491],[-81.198537,39.043538],[-81.217718,39.047501],[-81.251327,39.032429],[-81.244086,39.053059],[-81.267768,39.063682],[-81.254943,39.079494],[-81.256796,39.10393],[-81.276442,39.116492],[-81.280135,39.130438],[-81.305618,39.129664],[-81.321266,39.145059],[-81.310508,39.177594],[-81.267369,39.26192],[-81.244068,39.271896],[-81.221279,39.302318],[-81.190303,39.313221],[-81.173274,39.306015],[-81.127016,39.309182],[-81.100366,39.323564],[-81.049851,39.325014],[-81.036652,39.347162],[-81.009895,39.347917],[-80.960181,39.341601],[-80.942007,39.397436],[-80.922918,39.384356],[-80.910535,39.386962],[-80.887738,39.345402],[-80.897977,39.322449],[-80.89462,39.301675],[-80.917127,39.274297],[-80.817407,39.109645],[-80.862224,39.078051],[-80.894596,39.072638],[-80.919331,39.043837],[-80.971167,39.036954],[-81.031456,39.008946],[-81.059625,39.0154],[-81.073648,39.011368],[-81.105677,39.024047],[-81.116389,39.048682],[-81.165074,39.038183]]]},"id":54085},
{"type":"Feature","properties":{"name":"Vinton"},"geometry":{"type":"Polygon","coordinates":[[[-82.434419,39.034582],[-82.42469,39.136178],[-82.538304,39.138431],[-82.537327,39.175688],[-82.659129,39.1834],[-82.655543,39.199891],[-82.760864,39.200927],[-82.747398,39.359929],[-82.64097,39.35483],[-82.639459,39.367151],[-82.52167,39.361511],[-82.5142,39.391318],[-82.288691,39.379309],[-82.297312,39.293651],[-82.257234,39.290649],[-82.264337,39.199613],[-82.303622,39.200371],[-82.322918,39.025806],[-82.434419,39.034582]]]},"id":39163},
{"type":"Feature","properties":{"name":"Kent"},"geometry":{"type":"Polygon","coordinates":[[[-76.110952,39.118706],[-76.221446,39.093029],[-76.238568,39.130935],[-76.218113,39.204962],[-76.112045,39.321407],[-76.037091,39.35848],[-75.849399,39.379251],[-75.830035,39.385717],[-75.817079,39.379647],[-75.772354,39.383119],[-75.764319,39.29596],[-75.761313,39.247864],[-75.784378,39.252262],[-75.810036,39.247627],[-75.858279,39.269127],[-75.876377,39.257122],[-75.889965,39.260475],[-75.903905,39.248412],[-75.939635,39.244784],[-75.974571,39.250205],[-75.984261,39.24171],[-76.002069,39.242377],[-76.058101,39.203147],[-76.059452,39.195003],[-76.037798,39.179336],[-76.039896,39.163494],[-76.074505,39.153923],[-76.075375,39.139881],[-76.110952,39.118706]]]},"id":24029},
{"type":"Feature","properties":{"name":"Cumberland"},"geometry":{"type":"Polygon","coordinates":[[[-88.010891,39.177552],[-88.364119,39.174482],[-88.469751,39.175402],[-88.47159,39.213041],[-88.472241,39.376684],[-88.013882,39.37932],[-88.010891,39.177552]]]},"id":17035},
{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-106.576262,39.051017],[-106.579818,39.084914],[-106.557593,39.149366],[-106.513158,39.159791],[-106.488522,39.198907],[-106.493512,39.236836],[-106.478207,39.256512],[-106.49735,39.292507],[-106.477628,39.30873],[-106.464322,39.305629],[-106.448849,39.314414],[-106.433658,39.310028],[-106.426022,39.355262],[-106.412563,39.367595],[-106.390254,39.372558],[-106.356135,39.352558],[-106.287827,39.346576],[-106.197348,39.374981],[-106.129834,39.372062],[-106.142865,39.361595],[-106.1367,39.330509],[-106.148953,39.317345],[-106.168408,39.314347],[-106.180303,39.29575],[-106.180943,39.250345],[-106.158253,39.221243],[-106.174038,39.207945],[-106.167743,39.137844],[-106.191021,39.112007],[-106.169467,39.081505],[-106.183101,39.053765],[-106.576262,39.051017]]]},"id":8065},
{"type":"Feature","properties":{"name":"Highland"},"geometry":{"type":"Polygon","coordinates":[[[-83.38329,39.051319],[-83.622105,39.017963],[-83.671973,39.018214],[-83.869847,39.020925],[-83.861721,39.239843],[-83.828967,39.239702],[-83.831172,39.224142],[-83.814822,39.214071],[-83.802691,39.238763],[-83.779954,39.258084],[-83.586468,39.371714],[-83.380408,39.374797],[-83.384802,39.289665],[-83.395903,39.272339],[-83.3823,39.266167],[-83.385832,39.243748],[-83.368902,39.24046],[-83.354291,39.251141],[-83.353559,39.242092],[-83.342595,39.238976],[-83.350873,39.194082],[-83.38329,39.051319]]]},"id":39071},
{"type":"Feature","properties":{"name":"Baltimore City"},"geometry":{"type":"Polygon","coordinates":[[[-76.576668,39.198228],[-76.610635,39.224637],[-76.620005,39.235581],[-76.715178,39.278824],[-76.716583,39.369037],[-76.526756,39.367703],[-76.530981,39.242726],[-76.603715,39.259461],[-76.564819,39.231553],[-76.576668,39.198228]]]},"id":24510},
{"type":"Feature","properties":{"name":"Kent"},"geometry":{"type":"Polygon","coordinates":[[[-75.724591,38.830283],[-75.752576,39.14166],[-75.761313,39.247864],[-75.764319,39.29596],[-75.705922,39.30103],[-75.6645,39.293172],[-75.609879,39.312757],[-75.583091,39.31371],[-75.555609,39.340486],[-75.555319,39.351362],[-75.535039,39.352857],[-75.515217,39.367052],[-75.402122,39.25775],[-75.397368,39.073149],[-75.324489,39.012499],[-75.307535,38.946024],[-75.390715,38.95516],[-75.405166,38.925936],[-75.486331,38.900534],[-75.510433,38.88415],[-75.523511,38.859877],[-75.557776,38.838206],[-75.724591,38.830283]]]},"id":10001},
{"type":"Feature","properties":{"name":"Howard"},"geometry":{"type":"Polygon","coordinates":[[[-76.843407,39.098257],[-76.859353,39.105592],[-76.872811,39.126512],[-76.889398,39.128862],[-76.952228,39.133687],[-76.950969,39.144105],[-76.975834,39.150559],[-76.969227,39.161408],[-77.006558,39.169266],[-77.001172,39.176495],[-77.014028,39.206916],[-77.047087,39.236956],[-77.096229,39.265681],[-77.112877,39.263468],[-77.140168,39.27352],[-77.14956,39.296213],[-77.169725,39.3076],[-77.182718,39.328031],[-77.174303,39.347501],[-77.088547,39.36311],[-77.072548,39.351724],[-77.046356,39.353444],[-77.023818,39.343389],[-76.980315,39.354097],[-76.922704,39.341604],[-76.900654,39.346487],[-76.878765,39.331873],[-76.83671,39.312617],[-76.792169,39.307387],[-76.778725,39.284194],[-76.789116,39.254337],[-76.744758,39.235039],[-76.734786,39.223194],[-76.714033,39.220345],[-76.701695,39.208027],[-76.712529,39.194497],[-76.762671,39.167607],[-76.804702,39.116178],[-76.843407,39.098257]]]},"id":24027},
{"type":"Feature","properties":{"name":"Mesa"},"geometry":{"type":"Polygon","coordinates":[[[-108.372251,38.67001],[-108.379271,38.500125],[-109.053948,38.494651],[-109.051417,39.360966],[-107.427237,39.355698],[-107.455283,39.312577],[-107.403891,39.281415],[-107.396749,39.252237],[-107.427283,39.247152],[-107.443289,39.231855],[-107.483039,39.223138],[-107.493995,39.211709],[-107.521347,39.197218],[-107.5318,39.17264],[-107.578203,39.165838],[-107.595789,39.148622],[-107.615954,39.148084],[-107.648013,39.12652],[-107.664356,39.10209],[-107.679951,39.096772],[-107.680836,39.086278],[-107.710423,39.077988],[-107.753545,39.047661],[-107.811706,39.074695],[-107.840409,39.076866],[-107.972235,39.049617],[-108.069269,38.993176],[-108.103358,38.937299],[-108.131489,38.927163],[-108.155935,38.902681],[-108.199218,38.883535],[-108.365813,38.83396],[-108.372251,38.67001]]]},"id":8077},
{"type":"Feature","properties":{"name":"Pitkin"},"geometry":{"type":"Polygon","coordinates":[[[-106.576262,39.051017],[-106.593925,39.032138],[-106.598319,38.993378],[-106.622925,39.005981],[-106.645333,39.03773],[-106.694964,39.05155],[-106.743122,39.036364],[-106.739811,39.023337],[-106.755681,39.013133],[-106.768758,38.988975],[-106.789244,38.977206],[-106.818893,38.977302],[-106.866853,39.000659],[-106.89226,38.991381],[-106.912623,38.994128],[-106.996054,39.030862],[-106.992498,39.062348],[-107.043204,39.112304],[-107.069213,39.118404],[-107.272411,39.118662],[-107.300343,39.155957],[-107.370748,39.188526],[-107.379751,39.233511],[-107.396749,39.252237],[-107.403891,39.281415],[-107.455283,39.312577],[-107.427237,39.355698],[-107.110666,39.354915],[-106.426022,39.355262],[-106.433658,39.310028],[-106.448849,39.314414],[-106.464322,39.305629],[-106.477628,39.30873],[-106.49735,39.292507],[-106.478207,39.256512],[-106.493512,39.236836],[-106.488522,39.198907],[-106.513158,39.159791],[-106.557593,39.149366],[-106.579818,39.084914],[-106.576262,39.051017]]]},"id":8097},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-77.007931,38.966667],[-77.042088,38.993541],[-77.122328,38.932171],[-77.151748,38.964889],[-77.243432,38.97599],[-77.255693,39.027682],[-77.324307,39.062696],[-77.346227,39.06862],[-77.432747,39.066884],[-77.459405,39.080944],[-77.478959,39.104065],[-77.512758,39.116759],[-77.516328,39.157549],[-77.478348,39.177038],[-77.461707,39.218735],[-77.174303,39.347501],[-77.182718,39.328031],[-77.169725,39.3076],[-77.14956,39.296213],[-77.140168,39.27352],[-77.112877,39.263468],[-77.096229,39.265681],[-77.047087,39.236956],[-77.014028,39.206916],[-77.001172,39.176495],[-77.006558,39.169266],[-76.969227,39.161408],[-76.975834,39.150559],[-76.950969,39.144105],[-76.952228,39.133687],[-76.889398,39.128862],[-77.007931,38.966667]]]},"id":24031},
{"type":"Feature","properties":{"name":"Audrain"},"geometry":{"type":"Polygon","coordinates":[[[-92.317141,39.249349],[-92.31441,39.347359],[-91.723833,39.340246],[-91.713327,39.327284],[-91.444276,39.321342],[-91.417674,39.147666],[-91.638445,39.148596],[-91.643636,39.062818],[-92.112064,39.067004],[-92.104705,39.242183],[-92.317141,39.249349]]]},"id":29007},
{"type":"Feature","properties":{"name":"Howard"},"geometry":{"type":"Polygon","coordinates":[[[-92.433078,39.250294],[-92.565835,39.002209],[-92.566377,38.968231],[-92.7177,38.980219],[-92.802701,38.9739],[-92.854468,38.979312],[-92.884696,39.005247],[-92.91594,39.014371],[-92.938767,39.058641],[-92.914711,39.08924],[-92.950181,39.099146],[-92.949182,39.1155],[-92.924721,39.13795],[-92.915946,39.165859],[-92.862637,39.207224],[-92.860341,39.2218],[-92.794612,39.344653],[-92.71396,39.32454],[-92.433078,39.250294]]]},"id":29089},
{"type":"Feature","properties":{"name":"Bartholomew"},"geometry":{"type":"Polygon","coordinates":[[[-85.808206,39.070449],[-85.860408,39.058383],[-85.867807,39.040912],[-86.093262,39.036867],[-86.094529,39.047788],[-86.098854,39.335461],[-85.965408,39.338098],[-85.700838,39.343018],[-85.701361,39.128921],[-85.807705,39.127135],[-85.808206,39.070449]]]},"id":18005},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-86.332914,39.045933],[-86.38269,39.046283],[-86.391153,39.333566],[-86.259596,39.3343],[-86.098854,39.335461],[-86.094529,39.047788],[-86.332914,39.045933]]]},"id":18013},
{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"Polygon","coordinates":[[[-86.329816,38.994607],[-86.700196,38.989912],[-86.699885,39.167202],[-86.704144,39.334171],[-86.641153,39.331837],[-86.391153,39.333566],[-86.38269,39.046283],[-86.332914,39.045933],[-86.329816,38.994607]]]},"id":18105},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-79.350506,38.948852],[-79.346874,38.968853],[-79.310442,39.027415],[-79.313357,39.049132],[-79.297098,39.062513],[-79.302309,39.08148],[-79.345226,39.090822],[-79.346875,39.108934],[-79.32793,39.133691],[-79.329631,39.154065],[-79.309855,39.170224],[-79.295884,39.205333],[-79.3353,39.214275],[-79.349507,39.212253],[-79.356946,39.20126],[-79.384474,39.209461],[-79.388251,39.194897],[-79.425675,39.195233],[-79.460406,39.184262],[-79.489865,39.197396],[-79.461192,39.213265],[-79.449282,39.212093],[-79.384848,39.269301],[-79.346195,39.292092],[-79.295273,39.300541],[-79.279823,39.325244],[-79.124283,39.312403],[-78.983072,39.241181],[-79.005732,39.188326],[-79.03172,39.15356],[-79.036946,39.120399],[-79.072783,39.07689],[-79.082519,39.006957],[-79.0539,38.942493],[-79.08493,38.87275],[-79.116227,38.844694],[-79.127816,38.808279],[-79.231748,38.882115],[-79.350506,38.948852]]]},"id":54023},
{"type":"Feature","properties":{"name":"Cape May"},"geometry":{"type":"Polygon","coordinates":[[[-74.916654,39.170639],[-74.935614,39.20549],[-74.902867,39.224308],[-74.882122,39.305043],[-74.861376,39.320103],[-74.850473,39.308453],[-74.824608,39.300194],[-74.719417,39.282475],[-74.690043,39.288617],[-74.677255,39.281071],[-74.658234,39.287251],[-74.622527,39.281632],[-74.624587,39.250829],[-74.802292,39.026374],[-74.879254,38.989844],[-74.876301,38.956682],[-74.968125,38.971739],[-74.890202,39.11386],[-74.916654,39.170639]]]},"id":34009},
{"type":"Feature","properties":{"name":"Loudoun"},"geometry":{"type":"Polygon","coordinates":[[[-77.657071,38.9408],[-77.961594,39.011651],[-77.935685,39.036675],[-77.914399,39.042641],[-77.889649,39.06765],[-77.863632,39.078151],[-77.853721,39.112628],[-77.83068,39.132181],[-77.820045,39.141725],[-77.805449,39.196606],[-77.768232,39.24655],[-77.759458,39.284643],[-77.727468,39.317797],[-77.679302,39.318781],[-77.616236,39.299819],[-77.568673,39.298495],[-77.541901,39.269042],[-77.493773,39.250015],[-77.464667,39.229161],[-77.461707,39.218735],[-77.478348,39.177038],[-77.516328,39.157549],[-77.512758,39.116759],[-77.478959,39.104065],[-77.459405,39.080944],[-77.432747,39.066884],[-77.346227,39.06862],[-77.324307,39.062696],[-77.538119,38.850703],[-77.548167,38.855685],[-77.555278,38.885141],[-77.58958,38.89464],[-77.626301,38.936306],[-77.657071,38.9408]]]},"id":51107},
{"type":"Feature","properties":{"name":"Dearborn"},"geometry":{"type":"Polygon","coordinates":[[[-84.811481,39.102586],[-84.827861,39.103688],[-84.886708,39.065045],[-84.889996,39.050649],[-84.876293,39.032895],[-84.900433,39.017],[-84.947698,39.010125],[-84.964773,38.993051],[-85.00363,38.98766],[-85.017417,38.975453],[-85.050803,38.972119],[-85.075027,38.943948],[-85.085502,38.947041],[-85.12796,38.930398],[-85.129426,38.94542],[-85.141755,38.947216],[-85.077276,39.306567],[-84.812025,39.312333],[-84.812071,39.303029],[-84.811481,39.102586]]]},"id":18029},
{"type":"Feature","properties":{"name":"Placer"},"geometry":{"type":"Polygon","coordinates":[[[-121.48297,38.734189],[-121.482054,38.757813],[-121.462599,38.758518],[-121.462838,38.926387],[-121.410194,38.927364],[-121.409752,38.998159],[-121.361449,39.013025],[-121.311346,39.047899],[-121.280309,39.034453],[-121.217509,39.014827],[-121.172005,39.017272],[-121.125388,39.031531],[-121.086782,39.00922],[-121.031299,39.013302],[-120.974886,39.076366],[-120.977946,39.099856],[-120.956056,39.122783],[-120.892852,39.172863],[-120.855337,39.182202],[-120.832906,39.207391],[-120.671776,39.311138],[-119.995304,39.311545],[-119.995527,39.158713],[-119.994541,39.106132],[-119.99515,39.063491],[-120.136291,39.06409],[-120.145339,39.040278],[-120.164345,39.041156],[-120.178551,39.027186],[-120.227762,39.027732],[-120.247523,39.019053],[-120.420915,39.026643],[-120.461848,38.965184],[-120.512997,38.932903],[-120.563055,38.915599],[-120.66227,38.95852],[-120.681199,38.981545],[-120.705637,38.984448],[-120.728945,39.000076],[-120.802252,38.996947],[-120.837601,38.970454],[-120.846673,38.951575],[-120.928449,38.952638],[-120.932959,38.937525],[-120.980408,38.917413],[-121.037471,38.911031],[-121.05112,38.87974],[-121.054263,38.840621],[-121.091473,38.808094],[-121.111752,38.748448],[-121.140904,38.710729],[-121.48297,38.734189]]]},"id":6061},
{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"Polygon","coordinates":[[[-84.515301,39.094195],[-84.593069,39.070266],[-84.622648,39.074935],[-84.667487,39.089625],[-84.742876,39.142064],[-84.789927,39.107034],[-84.811481,39.102586],[-84.812071,39.303029],[-84.666017,39.303347],[-84.641786,39.311557],[-84.348733,39.289403],[-84.271483,39.291814],[-84.258192,39.264364],[-84.316291,39.210752],[-84.310699,39.201967],[-84.279524,39.205946],[-84.269201,39.197421],[-84.291617,39.169841],[-84.313315,39.014074],[-84.345779,39.037812],[-84.391312,39.035744],[-84.41974,39.047337],[-84.425684,39.084724],[-84.444918,39.111827],[-84.492054,39.107363],[-84.515301,39.094195]]]},"id":39061},
{"type":"Feature","properties":{"name":"Ottawa"},"geometry":{"type":"Polygon","coordinates":[[[-97.925547,38.958619],[-97.924858,39.213508],[-97.922836,39.302806],[-97.361984,39.308566],[-97.361127,39.125702],[-97.363775,38.954299],[-97.925547,38.958619]]]},"id":20143},
{"type":"Feature","properties":{"name":"Ripley"},"geometry":{"type":"Polygon","coordinates":[[[-85.213228,38.92022],[-85.453216,38.916037],[-85.453741,39.194147],[-85.306231,39.268659],[-85.224953,39.305372],[-85.077276,39.306567],[-85.141755,38.947216],[-85.144448,38.931886],[-85.212076,38.929707],[-85.213228,38.92022]]]},"id":18137},
{"type":"Feature","properties":{"name":"Sutter"},"geometry":{"type":"Polygon","coordinates":[[[-121.593607,38.737386],[-121.587626,38.764378],[-121.607013,38.781357],[-121.655354,38.760942],[-121.681081,38.765871],[-121.68215,38.791695],[-121.718902,38.802552],[-121.725288,38.846324],[-121.740746,38.865698],[-121.751603,38.868914],[-121.770524,38.859564],[-121.794992,38.862704],[-121.808069,38.872633],[-121.809649,38.887548],[-121.784182,38.905324],[-121.799593,38.905637],[-121.799601,38.914712],[-121.821131,38.917962],[-121.833071,38.928387],[-121.830287,38.966617],[-121.815837,38.972171],[-121.813159,38.985434],[-121.798327,38.994177],[-121.818202,39.007928],[-121.836514,39.060315],[-121.872441,39.065266],[-121.898138,39.111908],[-121.931906,39.128272],[-121.915961,39.147059],[-121.92984,39.176462],[-121.922455,39.198995],[-121.932336,39.248077],[-121.896753,39.302581],[-121.614758,39.305176],[-121.620937,39.234159],[-121.589089,39.106914],[-121.598526,39.068447],[-121.57436,38.92958],[-121.56274,38.933189],[-121.537792,38.96995],[-121.458635,38.993238],[-121.409752,38.998159],[-121.410194,38.927364],[-121.462838,38.926387],[-121.462599,38.758518],[-121.482054,38.757813],[-121.48297,38.734189],[-121.593607,38.737386]]]},"id":6101},
{"type":"Feature","properties":{"name":"Barbour"},"geometry":{"type":"Polygon","coordinates":[[[-80.230718,39.110779],[-80.229971,39.169741],[-80.165449,39.23961],[-80.128369,39.233141],[-80.002823,39.245255],[-79.951054,39.296161],[-79.921725,39.290387],[-79.906572,39.299748],[-79.871094,39.287737],[-79.853013,39.243646],[-79.819946,39.231574],[-79.81343,39.213557],[-79.834068,39.190501],[-79.828696,39.171108],[-79.844146,39.134998],[-79.833411,39.1148],[-79.833106,39.105282],[-79.856285,39.088524],[-79.871445,39.062393],[-79.899285,38.972086],[-80.070761,38.949153],[-80.051284,38.984469],[-80.060638,39.031427],[-80.130175,39.037227],[-80.167362,39.081774],[-80.212888,39.093937],[-80.230718,39.110779]]]},"id":54001},
{"type":"Feature","properties":{"name":"Lafayette"},"geometry":{"type":"Polygon","coordinates":[[[-93.504423,38.928266],[-93.840521,38.935091],[-93.842314,38.905539],[-94.120424,38.913174],[-94.112467,39.142631],[-94.07287,39.13638],[-94.044969,39.146028],[-94.03721,39.154935],[-94.046426,39.188176],[-93.995171,39.205016],[-93.981797,39.190524],[-94.006341,39.155149],[-93.981934,39.144686],[-93.956307,39.152869],[-93.935951,39.179462],[-93.91362,39.183433],[-93.863669,39.212422],[-93.768201,39.206206],[-93.715641,39.212082],[-93.672816,39.232129],[-93.659426,39.247553],[-93.642267,39.249029],[-93.595879,39.238318],[-93.571144,39.221435],[-93.513929,39.218758],[-93.497327,39.23018],[-93.503759,39.27126],[-93.488424,39.284452],[-93.502164,38.941042],[-93.504423,38.928266]]]},"id":29107},
{"type":"Feature","properties":{"name":"Queen Anne's"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.095164,38.948245],[-76.113536,38.920829],[-76.199342,38.973467],[-76.110952,39.118706],[-76.075375,39.139881],[-76.074505,39.153923],[-76.039896,39.163494],[-76.037798,39.179336],[-76.059452,39.195003],[-76.058101,39.203147],[-76.002069,39.242377],[-75.984261,39.24171],[-75.974571,39.250205],[-75.939635,39.244784],[-75.903905,39.248412],[-75.889965,39.260475],[-75.876377,39.257122],[-75.858279,39.269127],[-75.810036,39.247627],[-75.784378,39.252262],[-75.761313,39.247864],[-75.752576,39.14166],[-75.758039,39.136751],[-75.798324,39.139123],[-75.837426,39.115625],[-75.853364,39.092718],[-75.853723,39.076856],[-75.882181,39.050032],[-75.89165,39.023859],[-75.919925,39.003825],[-75.947331,38.96836],[-75.949581,38.918071],[-76.095164,38.948245]]],[[[-76.292804,38.907837],[-76.294187,38.96768],[-76.338743,38.956774],[-76.31413,38.942038],[-76.322308,38.912201],[-76.342222,38.924171],[-76.329387,38.876004],[-76.375241,38.854219],[-76.356475,38.9583],[-76.29949,39.040707],[-76.247822,38.97901],[-76.246409,38.923694],[-76.273189,38.949343],[-76.292804,38.907837]]]]},"id":24035},
{"type":"Feature","properties":{"name":"Tucker"},"geometry":{"type":"Polygon","coordinates":[[[-79.346874,38.968853],[-79.370321,38.959888],[-79.410232,38.969707],[-79.456346,38.967628],[-79.489177,38.97753],[-79.516835,38.971644],[-79.784679,39.036364],[-79.773738,39.065581],[-79.779659,39.084062],[-79.802297,39.106313],[-79.833411,39.1148],[-79.844146,39.134998],[-79.828696,39.171108],[-79.834068,39.190501],[-79.81343,39.213557],[-79.819946,39.231574],[-79.692734,39.268791],[-79.532828,39.226169],[-79.489865,39.197396],[-79.460406,39.184262],[-79.425675,39.195233],[-79.388251,39.194897],[-79.384474,39.209461],[-79.356946,39.20126],[-79.349507,39.212253],[-79.3353,39.214275],[-79.295884,39.205333],[-79.309855,39.170224],[-79.329631,39.154065],[-79.32793,39.133691],[-79.346875,39.108934],[-79.345226,39.090822],[-79.302309,39.08148],[-79.297098,39.062513],[-79.313357,39.049132],[-79.310442,39.027415],[-79.346874,38.968853]]]},"id":54093},
{"type":"Feature","properties":{"name":"Clarke"},"geometry":{"type":"Polygon","coordinates":[[[-78.002824,38.979311],[-78.055804,39.019425],[-78.099589,39.014234],[-78.154309,39.0407],[-78.150891,39.05613],[-78.108631,39.104388],[-78.099476,39.144774],[-78.033328,39.265639],[-77.83068,39.132181],[-77.853721,39.112628],[-77.863632,39.078151],[-77.889649,39.06765],[-77.914399,39.042641],[-77.935685,39.036675],[-77.961594,39.011651],[-78.002824,38.979311]]]},"id":51043},
{"type":"Feature","properties":{"name":"Clermont"},"geometry":{"type":"Polygon","coordinates":[[[-84.228702,38.81269],[-84.235294,38.874556],[-84.261525,38.917477],[-84.290136,38.944538],[-84.313315,39.014074],[-84.291617,39.169841],[-84.269201,39.197421],[-84.279524,39.205946],[-84.310699,39.201967],[-84.316291,39.210752],[-84.258192,39.264364],[-84.005456,39.249219],[-83.980873,39.247323],[-84.053802,38.763735],[-84.088867,38.765505],[-84.176752,38.788499],[-84.228702,38.81269]]]},"id":39025},
{"type":"Feature","properties":{"name":"Carson City"},"geometry":{"type":"Polygon","coordinates":[[[-119.528017,39.081131],[-119.736852,39.083958],[-119.736654,39.094395],[-119.753904,39.095826],[-119.75379,39.108525],[-119.994541,39.106132],[-119.995527,39.158713],[-119.877444,39.160141],[-119.876041,39.169697],[-119.85406,39.169297],[-119.852488,39.189736],[-119.838213,39.189156],[-119.838237,39.205029],[-119.814486,39.205113],[-119.814799,39.213269],[-119.795175,39.212804],[-119.794481,39.225519],[-119.748314,39.230173],[-119.747452,39.238806],[-119.692755,39.238189],[-119.688162,39.258693],[-119.673313,39.210494],[-119.643992,39.188449],[-119.55367,39.186708],[-119.561536,39.140297],[-119.528017,39.081131]]]},"id":32510},
{"type":"Feature","properties":{"name":"Sullivan"},"geometry":{"type":"Polygon","coordinates":[[[-87.25286,38.908207],[-87.253043,38.902317],[-87.539222,38.904906],[-87.530204,38.931963],[-87.533492,38.963747],[-87.547928,38.977121],[-87.591882,38.994126],[-87.581772,38.995786],[-87.585343,39.062477],[-87.612032,39.084648],[-87.630892,39.089015],[-87.631693,39.103984],[-87.662288,39.113509],[-87.65948,39.130694],[-87.670352,39.146719],[-87.644282,39.168547],[-87.60795,39.196107],[-87.594232,39.198167],[-87.588617,39.208505],[-87.584589,39.248792],[-87.60692,39.258202],[-87.255127,39.256892],[-87.254356,39.166657],[-87.25286,38.908207]]]},"id":18153},
{"type":"Feature","properties":{"name":"Jersey"},"geometry":{"type":"Polygon","coordinates":[[[-90.151941,38.998021],[-90.279234,38.99774],[-90.279043,38.924765],[-90.319854,38.924956],[-90.413186,38.962378],[-90.469958,38.959228],[-90.488406,38.967242],[-90.53207,38.957824],[-90.550587,38.969905],[-90.575383,39.0055],[-90.57636,39.031783],[-90.611289,39.107627],[-90.608474,39.117625],[-90.582434,39.160918],[-90.586837,39.177649],[-90.568549,39.185061],[-90.519292,39.185926],[-90.50649,39.162008],[-90.492428,39.175264],[-90.317963,39.177442],[-90.317308,39.225038],[-90.205663,39.22572],[-90.204725,39.252015],[-90.1525,39.258195],[-90.151941,38.998021]]]},"id":17083},
{"type":"Feature","properties":{"name":"Gunnison"},"geometry":{"type":"Polygon","coordinates":[[[-106.998039,38.147761],[-107.563161,38.146988],[-107.581441,38.233279],[-107.634259,38.303315],[-107.498357,38.301402],[-107.497355,38.662942],[-107.493995,39.211709],[-107.483039,39.223138],[-107.443289,39.231855],[-107.427283,39.247152],[-107.396749,39.252237],[-107.379751,39.233511],[-107.370748,39.188526],[-107.300343,39.155957],[-107.272411,39.118662],[-107.069213,39.118404],[-107.043204,39.112304],[-106.992498,39.062348],[-106.996054,39.030862],[-106.912623,38.994128],[-106.89226,38.991381],[-106.866853,39.000659],[-106.818893,38.977302],[-106.789244,38.977206],[-106.768758,38.988975],[-106.755681,39.013133],[-106.739811,39.023337],[-106.743122,39.036364],[-106.694964,39.05155],[-106.645333,39.03773],[-106.622925,39.005981],[-106.598319,38.993378],[-106.556837,38.985089],[-106.52422,38.959183],[-106.508572,38.92986],[-106.473018,38.912229],[-106.420305,38.912065],[-106.319854,38.897406],[-106.332015,38.866526],[-106.372101,38.837725],[-106.37909,38.818393],[-106.41485,38.813796],[-106.420755,38.717349],[-106.440981,38.702018],[-106.442011,38.691085],[-106.422159,38.650577],[-106.384782,38.629825],[-106.348877,38.59539],[-106.353761,38.535748],[-106.34253,38.508507],[-106.296058,38.491265],[-106.284011,38.47812],[-106.250723,38.473055],[-106.239134,38.430392],[-106.237524,38.423647],[-106.994269,38.41896],[-106.998039,38.147761]]]},"id":8051},
{"type":"Feature","properties":{"name":"Boone"},"geometry":{"type":"Polygon","coordinates":[[[-92.395307,38.736044],[-92.409864,38.760641],[-92.392766,38.790973],[-92.393589,38.811809],[-92.433071,38.824031],[-92.474895,38.8643],[-92.50017,38.918107],[-92.566377,38.968231],[-92.565835,39.002209],[-92.433078,39.250294],[-92.317141,39.249349],[-92.104705,39.242183],[-92.112064,39.067004],[-92.137372,39.061935],[-92.155624,38.928694],[-92.170456,38.897539],[-92.158753,38.884641],[-92.163575,38.870935],[-92.143831,38.815591],[-92.18764,38.738017],[-92.219302,38.716466],[-92.225039,38.696385],[-92.199686,38.680623],[-92.193559,38.658536],[-92.219934,38.638462],[-92.266383,38.651031],[-92.292308,38.66632],[-92.355732,38.674845],[-92.349736,38.717604],[-92.395307,38.736044]]]},"id":29019},
{"type":"Feature","properties":{"name":"Brown"},"geometry":{"type":"Polygon","coordinates":[[[-83.91254,38.75796],[-83.962163,38.777647],[-84.053802,38.763735],[-83.980873,39.247323],[-83.861721,39.239843],[-83.869847,39.020925],[-83.671973,39.018214],[-83.712825,38.635553],[-83.770223,38.650819],[-83.790465,38.693845],[-83.837532,38.71188],[-83.857553,38.744918],[-83.91254,38.75796]]]},"id":39015},
{"type":"Feature","properties":{"name":"Hardy"},"geometry":{"type":"Polygon","coordinates":[[[-78.536651,39.057133],[-78.564179,39.035146],[-78.549202,39.023488],[-78.553208,39.013936],[-78.598696,38.967307],[-78.630848,38.979712],[-78.646969,38.950553],[-78.680227,38.921684],[-78.718986,38.904991],[-78.724143,38.930324],[-78.737732,38.929283],[-78.749253,38.911491],[-78.793055,38.880219],[-78.815861,38.833746],[-78.866561,38.763404],[-78.987453,38.846761],[-79.033743,38.79996],[-79.0548,38.790633],[-79.056555,38.762054],[-79.127816,38.808279],[-79.116227,38.844694],[-79.08493,38.87275],[-79.0539,38.942493],[-79.082519,39.006957],[-79.072783,39.07689],[-79.036946,39.120399],[-79.03172,39.15356],[-79.005732,39.188326],[-78.983072,39.241181],[-78.88416,39.195177],[-78.755324,39.160735],[-78.687512,39.150973],[-78.650974,39.129107],[-78.617701,39.125781],[-78.594263,39.144575],[-78.562127,39.138056],[-78.501601,39.093684],[-78.536651,39.057133]]]},"id":54031},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-94.61247,38.837109],[-94.609281,39.044668],[-94.608137,39.112801],[-94.576634,39.120899],[-94.516391,39.151489],[-94.485613,39.144558],[-94.452859,39.125897],[-94.411827,39.160206],[-94.415405,39.195465],[-94.399124,39.19202],[-94.369963,39.165028],[-94.29913,39.234951],[-94.252498,39.231293],[-94.218165,39.206281],[-94.193759,39.214922],[-94.174197,39.206579],[-94.187052,39.184767],[-94.14921,39.178473],[-94.112467,39.142631],[-94.120424,38.913174],[-94.125848,38.830839],[-94.61247,38.837109]]]},"id":29095},
{"type":"Feature","properties":{"name":"Anne Arundel"},"geometry":{"type":"Polygon","coordinates":[[[-76.843407,39.098257],[-76.804702,39.116178],[-76.762671,39.167607],[-76.712529,39.194497],[-76.701695,39.208027],[-76.659908,39.227242],[-76.610635,39.224637],[-76.576668,39.198228],[-76.607018,39.181093],[-76.594826,39.158796],[-76.563606,39.196374],[-76.423617,39.118465],[-76.471719,38.908351],[-76.548805,38.759089],[-76.524931,38.709751],[-76.625011,38.721622],[-76.628705,38.758356],[-76.636884,38.765669],[-76.688919,38.756502],[-76.694344,38.746565],[-76.716463,38.774354],[-76.70685,38.790158],[-76.714334,38.80788],[-76.671364,38.899611],[-76.692964,38.924684],[-76.677491,38.933191],[-76.695604,38.953256],[-76.698771,38.988628],[-76.726428,39.004215],[-76.757481,39.036132],[-76.795279,39.04859],[-76.813475,39.065916],[-76.837761,39.067858],[-76.832199,39.092306],[-76.843407,39.098257]]]},"id":24003},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-90.961748,38.87146],[-91.116686,38.874516],[-91.118494,38.929344],[-91.200819,38.933226],[-91.199255,38.993085],[-91.269196,38.996185],[-91.265073,39.143578],[-91.19327,39.143217],[-91.186905,39.226717],[-90.732462,39.224795],[-90.718317,39.195922],[-90.71686,39.144259],[-90.690522,39.093749],[-90.707712,39.058227],[-90.706194,39.037842],[-90.669,38.935303],[-90.694391,38.932343],[-90.695933,38.918275],[-90.710147,38.9195],[-90.707598,38.908643],[-90.734363,38.917447],[-90.732227,38.931066],[-90.78826,38.921884],[-90.805229,38.911283],[-90.813523,38.879464],[-90.880536,38.890522],[-90.939606,38.887584],[-90.958681,38.895519],[-90.961748,38.87146]]]},"id":29113},
{"type":"Feature","properties":{"name":"Fayette"},"geometry":{"type":"Polygon","coordinates":[[[-89.257841,39.025329],[-89.256025,39.216147],[-89.142603,39.216779],[-88.810068,39.21447],[-88.810511,38.917137],[-88.701087,38.917838],[-88.702643,38.830368],[-89.143324,38.825624],[-89.144918,38.741328],[-89.262912,38.742064],[-89.265005,39.007663],[-89.256124,39.008556],[-89.257841,39.025329]]]},"id":17051},
{"type":"Feature","properties":{"name":"Geary"},"geometry":{"type":"Polygon","coordinates":[[[-96.890502,38.860918],[-96.921142,38.862963],[-96.923392,38.968318],[-96.957657,38.960502],[-96.957413,39.125661],[-96.949364,39.216125],[-96.844266,39.21405],[-96.840642,39.085489],[-96.749407,39.082941],[-96.739107,39.0771],[-96.700387,39.088316],[-96.69806,39.06962],[-96.493549,39.066531],[-96.491435,39.036944],[-96.492116,38.863597],[-96.890502,38.860918]]]},"id":20061},
{"type":"Feature","properties":{"name":"Shawnee"},"geometry":{"type":"Polygon","coordinates":[[[-95.941116,38.863232],[-95.942825,39.088951],[-95.972741,39.109355],[-95.992662,39.112964],[-95.99344,39.126166],[-96.014918,39.117129],[-96.032969,39.122008],[-96.030254,39.213143],[-95.586323,39.215075],[-95.586934,39.14199],[-95.599195,39.093525],[-95.588979,39.058525],[-95.540447,39.063927],[-95.496104,39.05452],[-95.496624,38.861534],[-95.941116,38.863232]]]},"id":20177},
{"type":"Feature","properties":{"name":"Effingham"},"geometry":{"type":"Polygon","coordinates":[[[-88.365203,38.915218],[-88.701087,38.917838],[-88.810511,38.917137],[-88.810068,39.21447],[-88.47159,39.213041],[-88.469751,39.175402],[-88.364119,39.174482],[-88.365203,38.915218]]]},"id":17049},
{"type":"Feature","properties":{"name":"Lincoln"},"geometry":{"type":"Polygon","coordinates":[[[-97.926738,38.862043],[-98.482132,38.858237],[-98.481726,39.124869],[-98.489928,39.127337],[-98.488212,39.211641],[-97.924858,39.213508],[-97.925547,38.958619],[-97.926738,38.862043]]]},"id":20105},
{"type":"Feature","properties":{"name":"Delta"},"geometry":{"type":"Polygon","coordinates":[[[-108.372251,38.67001],[-108.365813,38.83396],[-108.199218,38.883535],[-108.155935,38.902681],[-108.131489,38.927163],[-108.103358,38.937299],[-108.069269,38.993176],[-107.972235,39.049617],[-107.840409,39.076866],[-107.811706,39.074695],[-107.753545,39.047661],[-107.710423,39.077988],[-107.680836,39.086278],[-107.679951,39.096772],[-107.664356,39.10209],[-107.648013,39.12652],[-107.615954,39.148084],[-107.595789,39.148622],[-107.578203,39.165838],[-107.5318,39.17264],[-107.521347,39.197218],[-107.493995,39.211709],[-107.497355,38.662942],[-108.372251,38.67001]]]},"id":8029},
{"type":"Feature","properties":{"name":"Wabaunsee"},"geometry":{"type":"Polygon","coordinates":[[[-95.94204,38.734786],[-96.351656,38.732561],[-96.379245,38.735067],[-96.381647,38.818683],[-96.492681,38.820957],[-96.492116,38.863597],[-96.491435,39.036944],[-96.391648,39.038779],[-96.38727,39.168416],[-96.361688,39.168721],[-96.342843,39.157956],[-96.316148,39.182267],[-96.269592,39.176682],[-96.245865,39.20065],[-96.231903,39.204598],[-96.125615,39.186433],[-96.107548,39.197454],[-96.074154,39.182836],[-96.066082,39.171587],[-96.07101,39.16136],[-96.094669,39.162843],[-96.097324,39.151155],[-96.059573,39.139521],[-96.032969,39.122008],[-96.014918,39.117129],[-95.99344,39.126166],[-95.992662,39.112964],[-95.972741,39.109355],[-95.942825,39.088951],[-95.941116,38.863232],[-95.94204,38.734786]]]},"id":20197},
{"type":"Feature","properties":{"name":"Winchester"},"geometry":{"type":"Polygon","coordinates":[[[-78.13252,39.191747],[-78.139409,39.164972],[-78.162305,39.138563],[-78.205206,39.157816],[-78.204764,39.173231],[-78.182486,39.202817],[-78.13252,39.191747]]]},"id":51840},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-82.64753,38.84436],[-82.76682,38.849326],[-82.760351,38.939935],[-82.809181,38.943296],[-82.784699,39.160877],[-82.766204,39.159844],[-82.760864,39.200927],[-82.655543,39.199891],[-82.659129,39.1834],[-82.537327,39.175688],[-82.538304,39.138431],[-82.42469,39.136178],[-82.434419,39.034582],[-82.45588,38.844922],[-82.56867,38.850338],[-82.569677,38.839402],[-82.64753,38.84436]]]},"id":39079},
{"type":"Feature","properties":{"name":"Meigs"},"geometry":{"type":"Polygon","coordinates":[[[-82.101207,38.952094],[-82.096049,39.001745],[-82.323262,39.013084],[-82.322918,39.025806],[-82.303622,39.200371],[-82.264337,39.199613],[-81.75891,39.175751],[-81.744704,39.125875],[-81.753562,39.094721],[-81.786361,39.077257],[-81.819566,39.077017],[-81.824273,39.066416],[-81.813462,39.044108],[-81.77568,39.01683],[-81.78173,38.968529],[-81.762297,38.930181],[-81.783225,38.923562],[-81.823777,38.948468],[-81.840913,38.93789],[-81.8668,38.88571],[-81.892695,38.873453],[-81.915249,38.884447],[-81.931851,38.894742],[-81.898608,38.932225],[-81.92783,38.984271],[-81.937733,38.991176],[-81.975187,38.993007],[-81.999679,39.015261],[-82.042886,39.014139],[-82.058504,38.989066],[-82.085017,38.977198],[-82.101207,38.952094]]]},"id":39105},
{"type":"Feature","properties":{"name":"Wyandotte"},"geometry":{"type":"Polygon","coordinates":[[[-94.904982,38.992238],[-94.902959,39.197497],[-94.790049,39.196883],[-94.730531,39.171256],[-94.675514,39.174922],[-94.646407,39.158428],[-94.612653,39.151649],[-94.601224,39.141228],[-94.608137,39.112801],[-94.609281,39.044668],[-94.868726,39.044827],[-94.884123,39.038834],[-94.904982,38.992238]]]},"id":20209},
{"type":"Feature","properties":{"name":"Jennings"},"geometry":{"type":"Polygon","coordinates":[[[-85.690091,38.811961],[-85.722357,38.827918],[-85.739501,38.827983],[-85.801988,38.808097],[-85.808206,39.070449],[-85.807705,39.127135],[-85.701361,39.128921],[-85.59086,39.130485],[-85.453741,39.194147],[-85.453216,38.916037],[-85.549845,38.913256],[-85.550043,38.887862],[-85.582652,38.88663],[-85.584651,38.860381],[-85.622044,38.857928],[-85.622821,38.832099],[-85.636494,38.830711],[-85.636455,38.820274],[-85.689214,38.817374],[-85.690091,38.811961]]]},"id":18079},
{"type":"Feature","properties":{"name":"Pike"},"geometry":{"type":"Polygon","coordinates":[[[-82.809181,38.943296],[-83.199834,38.959887],[-83.234015,39.010179],[-83.269287,39.013536],[-83.310465,39.038861],[-83.313364,39.0528],[-83.38329,39.051319],[-83.350873,39.194082],[-82.784699,39.160877],[-82.809181,38.943296]]]},"id":39131},
{"type":"Feature","properties":{"name":"Crawford"},"geometry":{"type":"Polygon","coordinates":[[[-87.955424,38.855487],[-87.955683,39.177789],[-87.665988,39.178388],[-87.665637,39.168863],[-87.644282,39.168547],[-87.670352,39.146719],[-87.65948,39.130694],[-87.662288,39.113509],[-87.631693,39.103984],[-87.630892,39.089015],[-87.612032,39.084648],[-87.585343,39.062477],[-87.581772,38.995786],[-87.591882,38.994126],[-87.547928,38.977121],[-87.533492,38.963747],[-87.530204,38.931963],[-87.539222,38.904906],[-87.559082,38.869857],[-87.550529,38.857936],[-87.917604,38.855464],[-87.955424,38.855487]]]},"id":17033},
{"type":"Feature","properties":{"name":"Jasper"},"geometry":{"type":"Polygon","coordinates":[[[-87.955424,38.855487],[-88.262158,38.853947],[-88.3655,38.858109],[-88.365203,38.915218],[-88.364119,39.174482],[-88.010891,39.177552],[-87.955683,39.177789],[-87.955424,38.855487]]]},"id":17079},
{"type":"Feature","properties":{"name":"Wirt"},"geometry":{"type":"Polygon","coordinates":[[[-81.280358,38.918152],[-81.352221,38.900517],[-81.451222,38.947295],[-81.492101,38.936912],[-81.50546,38.921512],[-81.515524,38.942961],[-81.533888,38.953707],[-81.537924,38.973081],[-81.526174,38.985711],[-81.536307,39.008065],[-81.587326,39.029983],[-81.420085,39.138807],[-81.39818,39.139948],[-81.310508,39.177594],[-81.321266,39.145059],[-81.305618,39.129664],[-81.280135,39.130438],[-81.276442,39.116492],[-81.256796,39.10393],[-81.254943,39.079494],[-81.267768,39.063682],[-81.244086,39.053059],[-81.251327,39.032429],[-81.217718,39.047501],[-81.198537,39.043538],[-81.179257,39.0491],[-81.165074,39.038183],[-81.28019,38.93766],[-81.280358,38.918152]]]},"id":54105},
{"type":"Feature","properties":{"name":"Greene"},"geometry":{"type":"Polygon","coordinates":[[[-87.25286,38.908207],[-87.254356,39.166657],[-87.067386,39.166314],[-86.699885,39.167202],[-86.700196,38.989912],[-86.699295,38.905551],[-86.917036,38.903932],[-87.107532,38.904526],[-87.25286,38.908207]]]},"id":18055},
{"type":"Feature","properties":{"name":"Lewis"},"geometry":{"type":"Polygon","coordinates":[[[-80.453582,38.741557],[-80.441665,38.768141],[-80.46373,38.773507],[-80.462158,38.793046],[-80.484071,38.794331],[-80.479043,38.830276],[-80.523937,38.858206],[-80.539669,38.852835],[-80.586081,38.859846],[-80.590071,38.884232],[-80.609695,38.90052],[-80.720639,39.014686],[-80.733046,39.093728],[-80.709776,39.090703],[-80.685903,39.100843],[-80.679029,39.120065],[-80.656148,39.139695],[-80.634273,39.141611],[-80.590083,39.163122],[-80.572267,39.163111],[-80.526229,39.141113],[-80.478239,39.143181],[-80.460485,39.130002],[-80.30088,39.099692],[-80.317549,39.009534],[-80.334029,38.991476],[-80.317098,38.95196],[-80.343802,38.938651],[-80.343886,38.925502],[-80.382933,38.880615],[-80.400946,38.82805],[-80.41374,38.763815],[-80.396588,38.733383],[-80.404019,38.727314],[-80.44065,38.728259],[-80.453582,38.741557]]]},"id":54041},
{"type":"Feature","properties":{"name":"Nye"},"geometry":{"type":"Polygon","coordinates":[[[-115.88137,36.838899],[-115.885769,36.001226],[-117.160424,36.959594],[-117.155079,37.992236],[-117.208358,38.041559],[-117.232323,38.042875],[-117.232376,38.060552],[-117.681458,38.457277],[-118.182828,38.897237],[-118.180937,38.999701],[-117.849061,39.075387],[-117.765675,39.093152],[-117.343877,39.157582],[-116.583191,39.159171],[-115.899573,39.161796],[-115.900252,39.15591],[-114.994171,38.680836],[-114.995666,38.046203],[-115.884105,38.044806],[-115.88137,36.838899]]]},"id":32023},
{"type":"Feature","properties":{"name":"Montgomery"},"geometry":{"type":"Polygon","coordinates":[[[-91.42515,38.713256],[-91.493909,38.704005],[-91.561622,38.678866],[-91.594162,38.682852],[-91.653712,38.704515],[-91.643636,39.062818],[-91.638445,39.148596],[-91.417674,39.147666],[-91.265073,39.143578],[-91.269196,38.996185],[-91.275546,38.843783],[-91.418671,38.848447],[-91.42515,38.713256]]]},"id":29139},
{"type":"Feature","properties":{"name":"Boone"},"geometry":{"type":"Polygon","coordinates":[[[-84.615605,38.799626],[-84.644224,38.804836],[-84.665777,38.782986],[-84.677748,38.780732],[-84.763245,38.838488],[-84.762742,38.846186],[-84.776666,38.850347],[-84.787446,38.866643],[-84.788667,38.884385],[-84.803224,38.897191],[-84.859744,38.902043],[-84.875254,38.909431],[-84.87588,38.927604],[-84.846316,38.954631],[-84.834444,38.982776],[-84.844226,39.005831],[-84.876293,39.032895],[-84.889996,39.050649],[-84.886708,39.065045],[-84.827861,39.103688],[-84.811481,39.102586],[-84.789927,39.107034],[-84.742876,39.142064],[-84.667487,39.089625],[-84.622648,39.074935],[-84.604939,38.896777],[-84.615605,38.799626]]]},"id":21015},
{"type":"Feature","properties":{"name":"Caroline"},"geometry":{"type":"Polygon","coordinates":[[[-75.724591,38.830283],[-75.710713,38.649666],[-75.763067,38.67852],[-75.802505,38.680882],[-75.808654,38.695469],[-75.83802,38.700852],[-75.897684,38.696202],[-75.922884,38.67613],[-75.957774,38.671129],[-76.017346,38.727159],[-75.98811,38.771683],[-75.965427,38.783642],[-75.95666,38.77945],[-75.901003,38.814102],[-75.907816,38.826427],[-75.92779,38.831672],[-75.922213,38.843837],[-75.93452,38.848529],[-75.928408,38.857971],[-75.952694,38.883205],[-75.949581,38.918071],[-75.947331,38.96836],[-75.919925,39.003825],[-75.89165,39.023859],[-75.882181,39.050032],[-75.853723,39.076856],[-75.853364,39.092718],[-75.837426,39.115625],[-75.798324,39.139123],[-75.758039,39.136751],[-75.752576,39.14166],[-75.724591,38.830283]]]},"id":24011},
{"type":"Feature","properties":{"name":"Logan"},"geometry":{"type":"Polygon","coordinates":[[[-101.12251,38.695454],[-101.47863,38.694666],[-101.47316,39.127958],[-101.387159,39.129271],[-100.808278,39.128758],[-100.814732,38.696395],[-101.12251,38.695454]]]},"id":20109},
{"type":"Feature","properties":{"name":"Trego"},"geometry":{"type":"Polygon","coordinates":[[[-99.595438,38.69132],[-100.150828,38.694552],[-100.149365,39.124701],[-99.602952,39.128446],[-99.5887,39.129136],[-99.595438,38.69132]]]},"id":20195},
{"type":"Feature","properties":{"name":"Ellis"},"geometry":{"type":"Polygon","coordinates":[[[-99.595438,38.69132],[-99.5887,39.129136],[-99.041697,39.129043],[-99.027498,39.127857],[-99.033963,38.693177],[-99.583109,38.689318],[-99.595438,38.69132]]]},"id":20051},
{"type":"Feature","properties":{"name":"Gove"},"geometry":{"type":"Polygon","coordinates":[[[-100.150828,38.694552],[-100.242834,38.693709],[-100.683259,38.694686],[-100.814732,38.696395],[-100.808278,39.128758],[-100.715739,39.129113],[-100.161809,39.125289],[-100.149365,39.124701],[-100.150828,38.694552]]]},"id":20063},
{"type":"Feature","properties":{"name":"Prince George's"},"geometry":{"type":"Polygon","coordinates":[[[-77.045147,38.788234],[-76.910905,38.8901],[-77.007931,38.966667],[-76.889398,39.128862],[-76.872811,39.126512],[-76.859353,39.105592],[-76.843407,39.098257],[-76.832199,39.092306],[-76.837761,39.067858],[-76.813475,39.065916],[-76.795279,39.04859],[-76.757481,39.036132],[-76.726428,39.004215],[-76.698771,38.988628],[-76.695604,38.953256],[-76.677491,38.933191],[-76.692964,38.924684],[-76.671364,38.899611],[-76.714334,38.80788],[-76.70685,38.790158],[-76.716463,38.774354],[-76.694344,38.746565],[-76.701264,38.707179],[-76.691398,38.63913],[-76.673681,38.590967],[-76.674344,38.532051],[-76.735871,38.555564],[-76.758723,38.623235],[-76.863249,38.660529],[-76.918114,38.653999],[-76.969308,38.663295],[-77.011836,38.648513],[-77.051479,38.621925],[-77.092848,38.704099],[-77.081579,38.715394],[-77.05682,38.712136],[-77.04617,38.718896],[-77.045147,38.788234]]]},"id":24033},
{"type":"Feature","properties":{"name":"Wallace"},"geometry":{"type":"Polygon","coordinates":[[[-101.563524,38.693293],[-102.047568,38.692551],[-102.048973,39.037003],[-102.047875,39.126753],[-101.47316,39.127958],[-101.47863,38.694666],[-101.563524,38.693293]]]},"id":20199},
{"type":"Feature","properties":{"name":"Russell"},"geometry":{"type":"Polygon","coordinates":[[[-99.033963,38.693177],[-99.027498,39.127857],[-98.489928,39.127337],[-98.481726,39.124869],[-98.482132,38.858237],[-98.482104,38.687732],[-99.025166,38.691643],[-99.033963,38.693177]]]},"id":20167},
{"type":"Feature","properties":{"name":"Dickinson"},"geometry":{"type":"Polygon","coordinates":[[[-97.363775,38.954299],[-97.361127,39.125702],[-96.957413,39.125661],[-96.957657,38.960502],[-96.923392,38.968318],[-96.921142,38.862963],[-96.890502,38.860918],[-96.890731,38.810562],[-96.919808,38.808914],[-96.924265,38.596728],[-97.363893,38.598181],[-97.363775,38.954299]]]},"id":20041},
{"type":"Feature","properties":{"name":"El Paso"},"geometry":{"type":"Polygon","coordinates":[[[-104.930781,38.517779],[-104.930463,38.649304],[-104.931988,38.794842],[-105.055564,38.796794],[-105.058832,38.863831],[-105.022286,38.866234],[-105.021758,39.124328],[-104.652094,39.125632],[-104.049128,39.122223],[-104.048158,38.857907],[-104.047998,38.51515],[-104.930781,38.517779]]]},"id":8041},
{"type":"Feature","properties":{"name":"Teller"},"geometry":{"type":"Polygon","coordinates":[[[-104.930463,38.649304],[-105.226989,38.647972],[-105.229728,38.69007],[-105.317141,38.691936],[-105.32036,39.125487],[-105.021758,39.124328],[-105.022286,38.866234],[-105.058832,38.863831],[-105.055564,38.796794],[-104.931988,38.794842],[-104.930463,38.649304]]]},"id":8119},
{"type":"Feature","properties":{"name":"Randolph"},"geometry":{"type":"Polygon","coordinates":[[[-79.629956,38.670093],[-79.633726,38.678188],[-79.670547,38.687064],[-79.683944,38.661895],[-79.706841,38.678264],[-79.739183,38.675414],[-79.754413,38.729539],[-79.779385,38.735429],[-79.801679,38.7128],[-79.847188,38.605403],[-79.865262,38.581482],[-79.867253,38.551976],[-80.02878,38.456735],[-80.115736,38.471694],[-80.247881,38.389014],[-80.18406,38.522816],[-80.281822,38.695212],[-80.235275,38.74386],[-80.132794,38.749713],[-80.126514,38.75574],[-80.099309,38.837022],[-80.107337,38.896248],[-80.092467,38.910614],[-80.098357,38.92636],[-80.088378,38.945159],[-80.070761,38.949153],[-79.899285,38.972086],[-79.871445,39.062393],[-79.856285,39.088524],[-79.833106,39.105282],[-79.833411,39.1148],[-79.802297,39.106313],[-79.779659,39.084062],[-79.773738,39.065581],[-79.784679,39.036364],[-79.516835,38.971644],[-79.489177,38.97753],[-79.456346,38.967628],[-79.410232,38.969707],[-79.370321,38.959888],[-79.346874,38.968853],[-79.350506,38.948852],[-79.385732,38.915226],[-79.455217,38.925487],[-79.449418,38.907894],[-79.469598,38.888535],[-79.490145,38.883221],[-79.520443,38.888172],[-79.520786,38.858246],[-79.534336,38.835355],[-79.510958,38.80174],[-79.513445,38.784925],[-79.545161,38.736803],[-79.600872,38.683738],[-79.599735,38.664718],[-79.629956,38.670093]]]},"id":54083},
{"type":"Feature","properties":{"name":"Campbell"},"geometry":{"type":"Polygon","coordinates":[[[-84.4141,38.806479],[-84.425109,38.818281],[-84.460144,38.824705],[-84.462556,38.849767],[-84.450249,38.865147],[-84.44426,38.900306],[-84.462694,38.941908],[-84.444123,38.953406],[-84.436143,38.974413],[-84.45994,38.973112],[-84.457125,38.996598],[-84.477061,39.016922],[-84.490344,39.056495],[-84.515301,39.094195],[-84.492054,39.107363],[-84.444918,39.111827],[-84.425684,39.084724],[-84.41974,39.047337],[-84.391312,39.035744],[-84.345779,39.037812],[-84.313315,39.014074],[-84.290136,38.944538],[-84.261525,38.917477],[-84.235294,38.874556],[-84.4141,38.806479]]]},"id":21037},
{"type":"Feature","properties":{"name":"Upshur"},"geometry":{"type":"Polygon","coordinates":[[[-80.281822,38.695212],[-80.315278,38.690828],[-80.344493,38.729153],[-80.396588,38.733383],[-80.41374,38.763815],[-80.400946,38.82805],[-80.382933,38.880615],[-80.343886,38.925502],[-80.343802,38.938651],[-80.317098,38.95196],[-80.334029,38.991476],[-80.317549,39.009534],[-80.30088,39.099692],[-80.247404,39.097259],[-80.230718,39.110779],[-80.212888,39.093937],[-80.167362,39.081774],[-80.130175,39.037227],[-80.060638,39.031427],[-80.051284,38.984469],[-80.070761,38.949153],[-80.088378,38.945159],[-80.098357,38.92636],[-80.092467,38.910614],[-80.107337,38.896248],[-80.099309,38.837022],[-80.126514,38.75574],[-80.132794,38.749713],[-80.235275,38.74386],[-80.281822,38.695212]]]},"id":54097},
{"type":"Feature","properties":{"name":"Gilmer"},"geometry":{"type":"Polygon","coordinates":[[[-80.985121,38.722265],[-80.997054,38.749593],[-81.043473,38.769134],[-81.053422,38.791526],[-81.014808,38.823924],[-81.00801,38.842257],[-81.013969,38.916923],[-81.0055,38.937572],[-81.012039,38.962786],[-81.034455,38.985277],[-81.031456,39.008946],[-80.971167,39.036954],[-80.919331,39.043837],[-80.894596,39.072638],[-80.862224,39.078051],[-80.817407,39.109645],[-80.733046,39.093728],[-80.720639,39.014686],[-80.609695,38.90052],[-80.63984,38.886158],[-80.654176,38.889423],[-80.663728,38.877838],[-80.674555,38.895701],[-80.985121,38.722265]]]},"id":54021},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-119.575687,38.70291],[-119.889342,38.922252],[-119.995255,38.994106],[-119.99515,39.063491],[-119.994541,39.106132],[-119.75379,39.108525],[-119.753904,39.095826],[-119.736654,39.094395],[-119.736852,39.083958],[-119.528017,39.081131],[-119.317024,39.083885],[-119.316954,38.988677],[-119.336509,38.989215],[-119.334449,38.980185],[-119.391871,38.980001],[-119.391733,38.957788],[-119.40887,38.957002],[-119.408557,38.87585],[-119.423977,38.877364],[-119.42442,38.855136],[-119.409023,38.854076],[-119.41106,38.82638],[-119.40337,38.826075],[-119.405887,38.81288],[-119.398242,38.813937],[-119.400875,38.732275],[-119.377841,38.731814],[-119.376971,38.74135],[-119.345705,38.741496],[-119.34263,38.664028],[-119.320153,38.661732],[-119.318825,38.527109],[-119.575687,38.70291]]]},"id":32005},
{"type":"Feature","properties":{"name":"Shenandoah"},"geometry":{"type":"Polygon","coordinates":[[[-78.64514,38.608816],[-78.866561,38.763404],[-78.815861,38.833746],[-78.793055,38.880219],[-78.749253,38.911491],[-78.737732,38.929283],[-78.724143,38.930324],[-78.718986,38.904991],[-78.680227,38.921684],[-78.646969,38.950553],[-78.630848,38.979712],[-78.598696,38.967307],[-78.553208,39.013936],[-78.549202,39.023488],[-78.564179,39.035146],[-78.536651,39.057133],[-78.455678,39.027867],[-78.434285,39.068371],[-78.396579,39.08678],[-78.392009,39.10041],[-78.353975,39.093425],[-78.344011,39.103011],[-78.327272,39.090888],[-78.348787,39.055386],[-78.336274,39.049126],[-78.33796,39.041413],[-78.313591,39.033868],[-78.318779,39.021592],[-78.310974,39.01085],[-78.326791,38.996614],[-78.312386,38.979029],[-78.325394,38.978037],[-78.326501,38.971232],[-78.304405,38.95325],[-78.301849,38.936497],[-78.33159,38.898679],[-78.34192,38.871416],[-78.389262,38.828025],[-78.440152,38.789124],[-78.480268,38.743036],[-78.514228,38.724177],[-78.552087,38.731565],[-78.588175,38.699073],[-78.624249,38.628949],[-78.64514,38.608816]]]},"id":51171},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-81.703411,38.628236],[-81.750944,38.685131],[-81.782614,38.68177],[-81.817413,38.711409],[-81.795715,38.733942],[-81.915249,38.884447],[-81.892695,38.873453],[-81.8668,38.88571],[-81.840913,38.93789],[-81.823777,38.948468],[-81.783225,38.923562],[-81.762297,38.930181],[-81.78173,38.968529],[-81.77568,39.01683],[-81.813462,39.044108],[-81.824273,39.066416],[-81.819566,39.077017],[-81.786361,39.077257],[-81.753562,39.094721],[-81.587326,39.029983],[-81.536307,39.008065],[-81.526174,38.985711],[-81.537924,38.973081],[-81.533888,38.953707],[-81.515524,38.942961],[-81.50546,38.921512],[-81.506017,38.910152],[-81.528486,38.898991],[-81.521437,38.803504],[-81.549262,38.666053],[-81.523886,38.612447],[-81.568787,38.582395],[-81.633302,38.556206],[-81.632044,38.565319],[-81.64744,38.566616],[-81.703411,38.628236]]]},"id":54035},
{"type":"Feature","properties":{"name":"Kenton"},"geometry":{"type":"Polygon","coordinates":[[[-84.539629,38.786615],[-84.600971,38.788606],[-84.615605,38.799626],[-84.604939,38.896777],[-84.622648,39.074935],[-84.593069,39.070266],[-84.515301,39.094195],[-84.490344,39.056495],[-84.477061,39.016922],[-84.457125,38.996598],[-84.45994,38.973112],[-84.436143,38.974413],[-84.444123,38.953406],[-84.462694,38.941908],[-84.44426,38.900306],[-84.450249,38.865147],[-84.462556,38.849767],[-84.460144,38.824705],[-84.425109,38.818281],[-84.4141,38.806479],[-84.539629,38.786615]]]},"id":21117},
{"type":"Feature","properties":{"name":"Mineral"},"geometry":{"type":"Polygon","coordinates":[[[-118.41742,37.886677],[-119.15245,38.411801],[-118.891576,38.410194],[-118.902186,38.774046],[-118.892748,38.774191],[-118.896022,38.854834],[-119.003035,38.856325],[-119.007339,38.948283],[-118.919562,39.075249],[-118.733468,39.077077],[-117.849061,39.075387],[-118.180937,38.999701],[-118.182828,38.897237],[-117.681458,38.457277],[-118.340414,37.88573],[-118.41742,37.886677]]]},"id":32021},
{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-86.284035,38.770763],[-86.294254,38.995057],[-86.329816,38.994607],[-86.332914,39.045933],[-86.094529,39.047788],[-86.093262,39.036867],[-85.867807,39.040912],[-85.860408,39.058383],[-85.808206,39.070449],[-85.801988,38.808097],[-85.815828,38.803065],[-85.821489,38.784636],[-85.843401,38.771682],[-85.858324,38.733116],[-85.874827,38.721805],[-85.89593,38.723304],[-85.908649,38.730049],[-85.918263,38.750739],[-85.936803,38.74583],[-85.953443,38.755835],[-85.976393,38.757399],[-85.997405,38.750285],[-86.006256,38.762781],[-86.047074,38.761206],[-86.092212,38.781049],[-86.160466,38.773839],[-86.204703,38.788178],[-86.252159,38.770386],[-86.284035,38.770763]]]},"id":18071},
{"type":"Feature","properties":{"name":"Callaway"},"geometry":{"type":"Polygon","coordinates":[[[-92.219934,38.638462],[-92.193559,38.658536],[-92.199686,38.680623],[-92.225039,38.696385],[-92.219302,38.716466],[-92.18764,38.738017],[-92.143831,38.815591],[-92.163575,38.870935],[-92.158753,38.884641],[-92.170456,38.897539],[-92.155624,38.928694],[-92.137372,39.061935],[-92.112064,39.067004],[-91.643636,39.062818],[-91.653712,38.704515],[-91.653735,38.703588],[-91.741111,38.706117],[-91.760734,38.692159],[-91.802208,38.679604],[-91.85573,38.675423],[-91.954525,38.597331],[-91.984914,38.590376],[-92.033521,38.565354],[-92.102286,38.562106],[-92.170715,38.581952],[-92.19854,38.601754],[-92.219934,38.638462]]]},"id":29027},
{"type":"Feature","properties":{"name":"Douglas"},"geometry":{"type":"Polygon","coordinates":[[[-95.0543,38.733891],[-95.495024,38.730212],[-95.496624,38.861534],[-95.496104,39.05452],[-95.433358,39.066456],[-95.382744,39.053978],[-95.348213,39.034104],[-95.181706,39.037542],[-95.179174,38.964282],[-95.15965,38.97055],[-95.127217,38.968433],[-95.100177,38.958862],[-95.074092,38.978862],[-95.051936,38.974533],[-95.0543,38.733891]]]},"id":20045},
{"type":"Feature","properties":{"name":"El Dorado"},"geometry":{"type":"Polygon","coordinates":[[[-121.016274,38.505268],[-121.112347,38.717127],[-121.124844,38.708548],[-121.140904,38.710729],[-121.111752,38.748448],[-121.091473,38.808094],[-121.054263,38.840621],[-121.05112,38.87974],[-121.037471,38.911031],[-120.980408,38.917413],[-120.932959,38.937525],[-120.928449,38.952638],[-120.846673,38.951575],[-120.837601,38.970454],[-120.802252,38.996947],[-120.728945,39.000076],[-120.705637,38.984448],[-120.681199,38.981545],[-120.66227,38.95852],[-120.563055,38.915599],[-120.512997,38.932903],[-120.461848,38.965184],[-120.420915,39.026643],[-120.247523,39.019053],[-120.227762,39.027732],[-120.178551,39.027186],[-120.164345,39.041156],[-120.145339,39.040278],[-120.136291,39.06409],[-119.99515,39.063491],[-119.995255,38.994106],[-119.889342,38.922252],[-119.892264,38.90631],[-119.873487,38.895411],[-119.873892,38.860483],[-119.898207,38.847677],[-119.90618,38.82527],[-119.948722,38.781187],[-120.06567,38.697174],[-120.107908,38.691585],[-120.135352,38.643731],[-120.208705,38.609198],[-120.232708,38.579096],[-120.253629,38.57265],[-120.281477,38.550147],[-120.322166,38.538626],[-120.364709,38.542005],[-120.425685,38.523999],[-120.454594,38.525463],[-120.505545,38.507698],[-120.583573,38.502731],[-120.648143,38.511268],[-120.723425,38.544848],[-120.789124,38.551466],[-120.801309,38.559256],[-120.868175,38.531775],[-120.875782,38.519744],[-120.89642,38.520454],[-120.919393,38.509746],[-120.938055,38.517318],[-121.016274,38.505268]]]},"id":6017},
{"type":"Feature","properties":{"name":"Fairfax"},"geometry":{"type":"Polygon","coordinates":[[[-77.045147,38.788234],[-77.04617,38.718896],[-77.05682,38.712136],[-77.081579,38.715394],[-77.092848,38.704099],[-77.124816,38.677916],[-77.129691,38.648242],[-77.196961,38.622818],[-77.194451,38.660883],[-77.227297,38.650839],[-77.270969,38.690507],[-77.313969,38.704175],[-77.328084,38.720059],[-77.358747,38.724176],[-77.380583,38.716043],[-77.384078,38.744599],[-77.398811,38.753678],[-77.405906,38.742352],[-77.413574,38.744172],[-77.427704,38.779076],[-77.448937,38.797218],[-77.496759,38.79179],[-77.494989,38.810825],[-77.50503,38.815811],[-77.509165,38.841189],[-77.529254,38.834392],[-77.538119,38.850703],[-77.324307,39.062696],[-77.255693,39.027682],[-77.243432,38.97599],[-77.151748,38.964889],[-77.122328,38.932171],[-77.177513,38.8938],[-77.198235,38.886148],[-77.195351,38.868917],[-77.154587,38.864732],[-77.146278,38.872865],[-77.113898,38.848295],[-77.14534,38.822554],[-77.141327,38.798068],[-77.096426,38.802916],[-77.045147,38.788234]],[[-77.291088,38.870023],[-77.296429,38.862779],[-77.344892,38.858316],[-77.352018,38.841101],[-77.291813,38.821528],[-77.281749,38.831026],[-77.265804,38.829188],[-77.263316,38.868158],[-77.291088,38.870023]]]},"id":51059},
{"type":"Feature","properties":{"name":"Cooper"},"geometry":{"type":"Polygon","coordinates":[[[-93.055839,38.930612],[-93.053321,38.976042],[-92.938767,39.058641],[-92.91594,39.014371],[-92.884696,39.005247],[-92.854468,38.979312],[-92.802701,38.9739],[-92.7177,38.980219],[-92.566377,38.968231],[-92.50017,38.918107],[-92.621033,38.687011],[-92.842823,38.687102],[-93.065081,38.696307],[-93.055839,38.930612]]]},"id":29053},
{"type":"Feature","properties":{"name":"Chaffee"},"geometry":{"type":"Polygon","coordinates":[[[-106.02104,38.451299],[-106.050422,38.460199],[-106.064582,38.451505],[-106.074409,38.429815],[-106.239134,38.430392],[-106.250723,38.473055],[-106.284011,38.47812],[-106.296058,38.491265],[-106.34253,38.508507],[-106.353761,38.535748],[-106.348877,38.59539],[-106.384782,38.629825],[-106.422159,38.650577],[-106.442011,38.691085],[-106.440981,38.702018],[-106.420755,38.717349],[-106.41485,38.813796],[-106.37909,38.818393],[-106.372101,38.837725],[-106.332015,38.866526],[-106.319854,38.897406],[-106.420305,38.912065],[-106.473018,38.912229],[-106.508572,38.92986],[-106.52422,38.959183],[-106.556837,38.985089],[-106.598319,38.993378],[-106.593925,39.032138],[-106.576262,39.051017],[-106.183101,39.053765],[-106.1823,39.022936],[-106.166384,39.005838],[-106.100472,38.976084],[-106.103425,38.94784],[-106.093788,38.935946],[-106.037909,38.92303],[-106.021315,38.932257],[-105.99909,38.927169],[-105.973805,38.910842],[-105.954967,38.873858],[-105.929316,38.880225],[-105.920213,38.837447],[-105.898522,38.801467],[-105.942285,38.74364],[-105.944528,38.693195],[-105.904663,38.668308],[-105.901535,38.645733],[-105.879462,38.612038],[-105.878578,38.577584],[-105.937685,38.502877],[-106.02104,38.451299]]]},"id":8015},
{"type":"Feature","properties":{"name":"Adams"},"geometry":{"type":"Polygon","coordinates":[[[-83.64319,38.635862],[-83.655756,38.623881],[-83.67853,38.620928],[-83.712825,38.635553],[-83.671973,39.018214],[-83.622105,39.017963],[-83.38329,39.051319],[-83.313364,39.0528],[-83.310465,39.038861],[-83.269287,39.013536],[-83.272755,38.609257],[-83.290044,38.596638],[-83.306531,38.596317],[-83.320326,38.606563],[-83.330023,38.631988],[-83.371422,38.654998],[-83.453616,38.663775],[-83.500073,38.690137],[-83.526556,38.696111],[-83.618379,38.677972],[-83.633241,38.664972],[-83.64319,38.635862]]]},"id":39001},
{"type":"Feature","properties":{"name":"Calhoun"},"geometry":{"type":"Polygon","coordinates":[[[-81.035033,38.668239],[-81.083375,38.619675],[-81.105524,38.638534],[-81.121714,38.632164],[-81.154163,38.644363],[-81.169812,38.674284],[-81.170057,38.725983],[-81.183439,38.757331],[-81.212989,38.780943],[-81.209884,38.789651],[-81.227745,38.792291],[-81.218932,38.827934],[-81.230102,38.849822],[-81.245071,38.853453],[-81.236702,38.86323],[-81.257141,38.892549],[-81.252739,38.899033],[-81.280358,38.918152],[-81.28019,38.93766],[-81.165074,39.038183],[-81.116389,39.048682],[-81.105677,39.024047],[-81.073648,39.011368],[-81.059625,39.0154],[-81.031456,39.008946],[-81.034455,38.985277],[-81.012039,38.962786],[-81.0055,38.937572],[-81.013969,38.916923],[-81.00801,38.842257],[-81.014808,38.823924],[-81.053422,38.791526],[-81.043473,38.769134],[-80.997054,38.749593],[-80.985121,38.722265],[-81.035033,38.668239]]]},"id":54013},
{"type":"Feature","properties":{"name":"Johnson"},"geometry":{"type":"Polygon","coordinates":[[[-94.613148,38.737222],[-95.0543,38.733891],[-95.051936,38.974533],[-95.037135,38.974216],[-95.017016,38.993606],[-94.95121,38.979699],[-94.93396,38.993325],[-94.916656,38.987862],[-94.904982,38.992238],[-94.884123,39.038834],[-94.868726,39.044827],[-94.609281,39.044668],[-94.61247,38.837109],[-94.613148,38.737222]]]},"id":20091},
{"type":"Feature","properties":{"name":"Sevier"},"geometry":{"type":"Polygon","coordinates":[[[-112.513969,38.506754],[-112.517556,38.573128],[-112.502907,38.57169],[-112.500931,38.603833],[-112.485611,38.603726],[-112.484833,38.644989],[-112.474854,38.644169],[-112.464142,38.674179],[-112.359807,38.681644],[-112.357411,38.672932],[-112.302988,38.674958],[-112.303614,38.683606],[-112.283563,38.683293],[-112.277185,38.699841],[-112.220315,38.729873],[-112.222499,38.858837],[-112.187503,38.860203],[-112.185771,38.87738],[-112.170428,38.876785],[-112.167918,38.90573],[-112.153033,38.906962],[-112.149631,38.931337],[-112.129428,38.93236],[-112.125049,38.953515],[-112.064562,38.954301],[-112.063312,38.990104],[-112.013377,38.99219],[-112.006877,39.043669],[-111.844631,39.039306],[-111.846859,39.033043],[-111.295116,39.032511],[-111.30427,38.507146],[-111.740031,38.509278],[-111.768695,38.495515],[-112.067164,38.496488],[-112.066371,38.508256],[-112.513969,38.506754]]]},"id":49041},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-78.389262,38.828025],[-78.34192,38.871416],[-78.33159,38.898679],[-78.301849,38.936497],[-78.304405,38.95325],[-78.326501,38.971232],[-78.325394,38.978037],[-78.312386,38.979029],[-78.326791,38.996614],[-78.310974,39.01085],[-78.167759,39.022046],[-78.154309,39.0407],[-78.099589,39.014234],[-78.055804,39.019425],[-78.002824,38.979311],[-78.042147,38.93518],[-78.066363,38.930088],[-78.075083,38.911012],[-78.063105,38.89158],[-78.067774,38.883402],[-78.090861,38.887823],[-78.107349,38.879587],[-78.12096,38.881785],[-78.141468,38.861739],[-78.168446,38.838932],[-78.208036,38.778887],[-78.256216,38.757751],[-78.278129,38.764869],[-78.279838,38.759418],[-78.292518,38.785627],[-78.328614,38.793092],[-78.389262,38.828025]]]},"id":51187},
{"type":"Feature","properties":{"name":"Cheyenne"},"geometry":{"type":"Polygon","coordinates":[[[-103.17417,38.608529],[-103.173957,38.676525],[-103.16394,38.676663],[-103.15955,39.028482],[-102.048973,39.037003],[-102.047568,38.692551],[-102.047584,38.615499],[-103.17417,38.608529]]]},"id":8017},
{"type":"Feature","properties":{"name":"Gallia"},"geometry":{"type":"Polygon","coordinates":[[[-82.101207,38.952094],[-82.139317,38.899398],[-82.1461,38.838788],[-82.197722,38.80462],[-82.21675,38.778939],[-82.183973,38.710303],[-82.188978,38.677894],[-82.173657,38.632191],[-82.184247,38.595032],[-82.213659,38.584835],[-82.270897,38.59489],[-82.289971,38.580081],[-82.362118,38.583609],[-82.35622,38.672334],[-82.477136,38.679775],[-82.472032,38.734896],[-82.491129,38.737757],[-82.490137,38.76639],[-82.575727,38.773344],[-82.569677,38.839402],[-82.56867,38.850338],[-82.45588,38.844922],[-82.434419,39.034582],[-82.322918,39.025806],[-82.323262,39.013084],[-82.096049,39.001745],[-82.101207,38.952094]]]},"id":39053},
{"type":"Feature","properties":{"name":"Ohio"},"geometry":{"type":"Polygon","coordinates":[[[-84.875254,38.909431],[-85.147042,38.908384],[-85.144448,38.931886],[-85.141755,38.947216],[-85.129426,38.94542],[-85.12796,38.930398],[-85.085502,38.947041],[-85.075027,38.943948],[-85.050803,38.972119],[-85.017417,38.975453],[-85.00363,38.98766],[-84.964773,38.993051],[-84.947698,39.010125],[-84.900433,39.017],[-84.876293,39.032895],[-84.844226,39.005831],[-84.834444,38.982776],[-84.846316,38.954631],[-84.87588,38.927604],[-84.875254,38.909431]]]},"id":18115},
{"type":"Feature","properties":{"name":"Bond"},"geometry":{"type":"Polygon","coordinates":[[[-89.605686,38.741342],[-89.607059,38.871869],[-89.644292,38.871835],[-89.645727,38.996472],[-89.593037,38.998337],[-89.594258,39.028248],[-89.257841,39.025329],[-89.256124,39.008556],[-89.265005,39.007663],[-89.262912,38.742064],[-89.605686,38.741342]]]},"id":17005},
{"type":"Feature","properties":{"name":"Mason"},"geometry":{"type":"Polygon","coordinates":[[[-82.055396,38.475987],[-82.213659,38.584835],[-82.184247,38.595032],[-82.173657,38.632191],[-82.188978,38.677894],[-82.183973,38.710303],[-82.21675,38.778939],[-82.197722,38.80462],[-82.1461,38.838788],[-82.139317,38.899398],[-82.101207,38.952094],[-82.085017,38.977198],[-82.058504,38.989066],[-82.042886,39.014139],[-81.999679,39.015261],[-81.975187,38.993007],[-81.937733,38.991176],[-81.92783,38.984271],[-81.898608,38.932225],[-81.931851,38.894742],[-81.915249,38.884447],[-81.795715,38.733942],[-81.817413,38.711409],[-81.782614,38.68177],[-81.961049,38.656393],[-82.059151,38.602446],[-82.055396,38.475987]]]},"id":54053},
{"type":"Feature","properties":{"name":"Scioto"},"geometry":{"type":"Polygon","coordinates":[[[-83.272755,38.609257],[-83.269287,39.013536],[-83.234015,39.010179],[-83.199834,38.959887],[-82.809181,38.943296],[-82.760351,38.939935],[-82.76682,38.849326],[-82.64753,38.84436],[-82.658867,38.745393],[-82.695551,38.746122],[-82.699701,38.688303],[-82.713052,38.676848],[-82.776943,38.678671],[-82.777889,38.650942],[-82.750124,38.601287],[-82.826992,38.571662],[-82.853857,38.600459],[-82.860029,38.652395],[-82.880012,38.683301],[-82.873191,38.719006],[-82.890312,38.742775],[-82.921304,38.746415],[-82.972483,38.719643],[-83.026943,38.714512],[-83.06088,38.685726],[-83.111243,38.664833],[-83.14315,38.61934],[-83.181939,38.609841],[-83.245014,38.624172],[-83.272755,38.609257]]]},"id":39145},
{"type":"Feature","properties":{"name":"Fauquier"},"geometry":{"type":"Polygon","coordinates":[[[-77.531493,38.565178],[-77.627846,38.469486],[-77.626603,38.431416],[-77.635567,38.416856],[-77.671808,38.418218],[-77.694155,38.428155],[-77.708217,38.416803],[-77.735226,38.412676],[-77.757603,38.429853],[-77.76299,38.456582],[-77.803205,38.517672],[-77.864051,38.570989],[-77.872413,38.594982],[-77.86135,38.619945],[-77.880881,38.638922],[-77.875052,38.650724],[-77.892242,38.669706],[-77.906951,38.666028],[-77.904098,38.681905],[-77.915397,38.699993],[-77.942497,38.695366],[-78.00219,38.716896],[-78.005883,38.738635],[-78.030832,38.762552],[-78.025094,38.785237],[-78.031114,38.801072],[-78.0506,38.801896],[-78.054819,38.812302],[-78.141468,38.861739],[-78.12096,38.881785],[-78.107349,38.879587],[-78.090861,38.887823],[-78.067774,38.883402],[-78.063105,38.89158],[-78.075083,38.911012],[-78.066363,38.930088],[-78.042147,38.93518],[-78.002824,38.979311],[-77.961594,39.011651],[-77.657071,38.9408],[-77.67764,38.885027],[-77.706586,38.87728],[-77.720655,38.840542],[-77.531493,38.565178]]]},"id":51061},
{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-90.121835,38.800559],[-90.113228,38.830516],[-90.13292,38.853079],[-90.244039,38.914557],[-90.279043,38.924765],[-90.279234,38.99774],[-90.151941,38.998021],[-89.702561,38.996846],[-89.645727,38.996472],[-89.644292,38.871835],[-89.607059,38.871869],[-89.605686,38.741342],[-89.604397,38.660212],[-89.714593,38.657805],[-90.183689,38.658822],[-90.202351,38.700414],[-90.196682,38.724015],[-90.163508,38.773147],[-90.135286,38.785533],[-90.121835,38.800559]]]},"id":17119},
{"type":"Feature","properties":{"name":"Warren"},"geometry":{"type":"Polygon","coordinates":[[[-90.968792,38.54637],[-91.013861,38.563047],[-91.060707,38.606885],[-91.089037,38.6097],[-91.14243,38.600388],[-91.205123,38.611778],[-91.225464,38.625091],[-91.248026,38.656958],[-91.296536,38.688447],[-91.334623,38.702393],[-91.375236,38.699062],[-91.42515,38.713256],[-91.418671,38.848447],[-91.275546,38.843783],[-91.269196,38.996185],[-91.199255,38.993085],[-91.200819,38.933226],[-91.118494,38.929344],[-91.116686,38.874516],[-90.961748,38.87146],[-90.968792,38.54637]]]},"id":29219},
{"type":"Feature","properties":{"name":"Lawrence"},"geometry":{"type":"Polygon","coordinates":[[[-86.284035,38.770763],[-86.296815,38.762028],[-86.306756,38.737343],[-86.318605,38.736286],[-86.317773,38.687741],[-86.694301,38.681898],[-86.699295,38.905551],[-86.700196,38.989912],[-86.329816,38.994607],[-86.294254,38.995057],[-86.284035,38.770763]]]},"id":18093},
{"type":"Feature","properties":{"name":"District of Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-77.007931,38.966667],[-76.910905,38.8901],[-77.045147,38.788234],[-77.034947,38.814029],[-77.044888,38.829478],[-77.040104,38.838526],[-77.038777,38.862543],[-77.067586,38.886213],[-77.078649,38.915711],[-77.122328,38.932171],[-77.042088,38.993541],[-77.007931,38.966667]]]},"id":11001},
{"type":"Feature","properties":{"name":"St. Charles"},"geometry":{"type":"Polygon","coordinates":[[[-90.737838,38.634571],[-90.783968,38.577442],[-90.802348,38.584499],[-90.82291,38.582015],[-90.912187,38.540683],[-90.968792,38.54637],[-90.961748,38.87146],[-90.958681,38.895519],[-90.939606,38.887584],[-90.880536,38.890522],[-90.813523,38.879464],[-90.805229,38.911283],[-90.78826,38.921884],[-90.732227,38.931066],[-90.734363,38.917447],[-90.707598,38.908643],[-90.710147,38.9195],[-90.695933,38.918275],[-90.694391,38.932343],[-90.669,38.935303],[-90.627335,38.880845],[-90.570448,38.871377],[-90.530545,38.891659],[-90.469958,38.959228],[-90.413186,38.962378],[-90.319854,38.924956],[-90.279043,38.924765],[-90.244039,38.914557],[-90.13292,38.853079],[-90.113228,38.830516],[-90.121835,38.800559],[-90.135019,38.8227],[-90.200008,38.825069],[-90.26058,38.855987],[-90.288077,38.885276],[-90.318275,38.889613],[-90.338241,38.878151],[-90.360177,38.833126],[-90.403208,38.82557],[-90.433406,38.831238],[-90.452243,38.826562],[-90.490316,38.75918],[-90.534072,38.723471],[-90.547775,38.69208],[-90.602457,38.682086],[-90.639773,38.69308],[-90.680218,38.678195],[-90.688741,38.658622],[-90.737838,38.634571]]]},"id":29183},
{"type":"Feature","properties":{"name":"Saline"},"geometry":{"type":"Polygon","coordinates":[[[-97.363775,38.954299],[-97.363893,38.598181],[-97.924733,38.601647],[-97.926738,38.862043],[-97.925547,38.958619],[-97.363775,38.954299]]]},"id":20169},
{"type":"Feature","properties":{"name":"Sussex"},"geometry":{"type":"Polygon","coordinates":[[[-75.067925,38.450075],[-75.092721,38.450564],[-75.349842,38.455323],[-75.698802,38.463183],[-75.707074,38.557591],[-75.710713,38.649666],[-75.724591,38.830283],[-75.557776,38.838206],[-75.523511,38.859877],[-75.510433,38.88415],[-75.486331,38.900534],[-75.405166,38.925936],[-75.390715,38.95516],[-75.307535,38.946024],[-75.190571,38.808782],[-75.082763,38.799924],[-75.045623,38.449602],[-75.067925,38.450075]]]},"id":10005},
{"type":"Feature","properties":{"name":"Pendleton"},"geometry":{"type":"Polygon","coordinates":[[[-79.231663,38.480496],[-79.272359,38.437307],[-79.317,38.412633],[-79.486348,38.462145],[-79.536514,38.553806],[-79.642407,38.592355],[-79.627567,38.60848],[-79.637112,38.632794],[-79.626973,38.648838],[-79.629956,38.670093],[-79.599735,38.664718],[-79.600872,38.683738],[-79.545161,38.736803],[-79.513445,38.784925],[-79.510958,38.80174],[-79.534336,38.835355],[-79.520786,38.858246],[-79.520443,38.888172],[-79.490145,38.883221],[-79.469598,38.888535],[-79.449418,38.907894],[-79.455217,38.925487],[-79.385732,38.915226],[-79.350506,38.948852],[-79.231748,38.882115],[-79.127816,38.808279],[-79.056555,38.762054],[-79.087234,38.707269],[-79.088547,38.659205],[-79.121064,38.663767],[-79.127427,38.658244],[-79.231663,38.480496]]]},"id":54071},
{"type":"Feature","properties":{"name":"Talbot"},"geometry":{"type":"Polygon","coordinates":[[[-75.957774,38.671129],[-75.958781,38.651197],[-75.981067,38.627902],[-75.988231,38.594901],[-76.031598,38.57204],[-76.027722,38.622123],[-76.046582,38.591976],[-76.075659,38.610901],[-76.123704,38.708095],[-76.173708,38.709213],[-76.222981,38.762908],[-76.266791,38.770004],[-76.337295,38.679494],[-76.350205,38.699143],[-76.272088,38.834116],[-76.194843,38.765372],[-76.165523,38.788725],[-76.114039,38.88557],[-76.075532,38.889663],[-76.102564,38.898132],[-76.095164,38.948245],[-75.949581,38.918071],[-75.952694,38.883205],[-75.928408,38.857971],[-75.93452,38.848529],[-75.922213,38.843837],[-75.92779,38.831672],[-75.907816,38.826427],[-75.901003,38.814102],[-75.95666,38.77945],[-75.965427,38.783642],[-75.98811,38.771683],[-76.017346,38.727159],[-75.957774,38.671129]]]},"id":24041},
{"type":"Feature","properties":{"name":"Roane"},"geometry":{"type":"Polygon","coordinates":[[[-81.197179,38.527423],[-81.215116,38.532778],[-81.266448,38.523508],[-81.29007,38.536394],[-81.470846,38.547485],[-81.516936,38.593168],[-81.523886,38.612447],[-81.549262,38.666053],[-81.521437,38.803504],[-81.528486,38.898991],[-81.506017,38.910152],[-81.50546,38.921512],[-81.492101,38.936912],[-81.451222,38.947295],[-81.352221,38.900517],[-81.280358,38.918152],[-81.252739,38.899033],[-81.257141,38.892549],[-81.236702,38.86323],[-81.245071,38.853453],[-81.230102,38.849822],[-81.218932,38.827934],[-81.227745,38.792291],[-81.209884,38.789651],[-81.212989,38.780943],[-81.183439,38.757331],[-81.170057,38.725983],[-81.169812,38.674284],[-81.154163,38.644363],[-81.121714,38.632164],[-81.105524,38.638534],[-81.083375,38.619675],[-81.139414,38.561342],[-81.197179,38.527423]]]},"id":54087},
{"type":"Feature","properties":{"name":"Pettis"},"geometry":{"type":"Polygon","coordinates":[[[-93.073062,38.533708],[-93.272964,38.539997],[-93.276054,38.508607],[-93.514095,38.513332],[-93.51585,38.555914],[-93.504423,38.928266],[-93.502164,38.941042],[-93.055839,38.930612],[-93.065081,38.696307],[-93.073062,38.533708]]]},"id":29159},
{"type":"Feature","properties":{"name":"Prince William"},"geometry":{"type":"Polygon","coordinates":[[[-77.531493,38.565178],[-77.720655,38.840542],[-77.706586,38.87728],[-77.67764,38.885027],[-77.657071,38.9408],[-77.626301,38.936306],[-77.58958,38.89464],[-77.555278,38.885141],[-77.548167,38.855685],[-77.538119,38.850703],[-77.529254,38.834392],[-77.509165,38.841189],[-77.50503,38.815811],[-77.494989,38.810825],[-77.496759,38.79179],[-77.448937,38.797218],[-77.427704,38.779076],[-77.413574,38.744172],[-77.405906,38.742352],[-77.398811,38.753678],[-77.384078,38.744599],[-77.380583,38.716043],[-77.358747,38.724176],[-77.328084,38.720059],[-77.313969,38.704175],[-77.270969,38.690507],[-77.227297,38.650839],[-77.303323,38.502033],[-77.375598,38.524326],[-77.430256,38.56924],[-77.484403,38.595996],[-77.531493,38.565178]],[[-77.475709,38.781216],[-77.495927,38.770608],[-77.526819,38.732332],[-77.524209,38.717917],[-77.505509,38.707957],[-77.51439,38.736376],[-77.507112,38.740629],[-77.493554,38.725317],[-77.489037,38.732542],[-77.471108,38.728216],[-77.45311,38.735216],[-77.44751,38.761117],[-77.459313,38.772614],[-77.437912,38.758214],[-77.431824,38.779266],[-77.440613,38.782616],[-77.445412,38.770516],[-77.459412,38.778313],[-77.45855,38.786808],[-77.473199,38.78825],[-77.475709,38.781216]]]},"id":51153},
{"type":"Feature","properties":{"name":"Johnson"},"geometry":{"type":"Polygon","coordinates":[[[-93.51585,38.555914],[-94.069617,38.566123],[-94.122757,38.56777],[-94.119904,38.653187],[-94.130585,38.654145],[-94.125848,38.830839],[-94.120424,38.913174],[-93.842314,38.905539],[-93.840521,38.935091],[-93.504423,38.928266],[-93.51585,38.555914]]]},"id":29101},
{"type":"Feature","properties":{"name":"Arlington"},"geometry":{"type":"Polygon","coordinates":[[[-77.122328,38.932171],[-77.078649,38.915711],[-77.067586,38.886213],[-77.038777,38.862543],[-77.040104,38.838526],[-77.086118,38.850924],[-77.106261,38.840567],[-77.113898,38.848295],[-77.146278,38.872865],[-77.177513,38.8938],[-77.122328,38.932171]]]},"id":51013},
{"type":"Feature","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[-85.025073,38.764291],[-85.068455,38.750425],[-85.119657,38.714139],[-85.160933,38.695177],[-85.205162,38.695817],[-85.213228,38.92022],[-85.212076,38.929707],[-85.144448,38.931886],[-85.147042,38.908384],[-84.875254,38.909431],[-84.859744,38.902043],[-84.803224,38.897191],[-84.788667,38.884385],[-84.787446,38.866643],[-84.824426,38.834463],[-84.81878,38.79341],[-84.975611,38.780641],[-85.025073,38.764291]]]},"id":18155},
{"type":"Feature","properties":{"name":"Yolo"},"geometry":{"type":"Polygon","coordinates":[[[-122.099617,38.506038],[-122.128144,38.593816],[-122.142976,38.611806],[-122.162767,38.616429],[-122.157625,38.643875],[-122.184634,38.65863],[-122.213687,38.701892],[-122.249775,38.784791],[-122.28085,38.830223],[-122.293995,38.840103],[-122.360387,38.841781],[-122.388349,38.851916],[-122.389722,38.87047],[-122.40978,38.901372],[-122.403378,38.918904],[-122.347523,38.924504],[-121.833071,38.928387],[-121.821131,38.917962],[-121.799601,38.914712],[-121.799593,38.905637],[-121.784182,38.905324],[-121.809649,38.887548],[-121.808069,38.872633],[-121.794992,38.862704],[-121.770524,38.859564],[-121.751603,38.868914],[-121.740746,38.865698],[-121.725288,38.846324],[-121.718902,38.802552],[-121.68215,38.791695],[-121.681081,38.765871],[-121.655354,38.760942],[-121.607013,38.781357],[-121.587626,38.764378],[-121.593607,38.737386],[-121.622576,38.681853],[-121.59282,38.649841],[-121.561653,38.641921],[-121.547317,38.601158],[-121.516173,38.602757],[-121.50186,38.590573],[-121.510947,38.537157],[-121.525016,38.526659],[-121.520774,38.515017],[-121.544212,38.503718],[-121.540648,38.48434],[-121.505926,38.465198],[-121.503019,38.456226],[-121.506712,38.439759],[-121.524351,38.430039],[-121.511503,38.402834],[-121.521917,38.362067],[-121.536207,38.346115],[-121.562101,38.337444],[-121.569181,38.319031],[-121.583853,38.318939],[-121.686752,38.320957],[-121.688495,38.522818],[-121.710079,38.537878],[-121.786955,38.524481],[-121.85891,38.534822],[-121.920946,38.528734],[-121.941913,38.525171],[-121.981182,38.496359],[-122.0165,38.487666],[-122.067412,38.508727],[-122.099617,38.506038]]]},"id":6113},
{"type":"Feature","properties":{"name":"Alpine"},"geometry":{"type":"Polygon","coordinates":[[[-120.01521,38.432239],[-120.04997,38.448162],[-120.071433,38.44128],[-120.06893,38.508002],[-120.06567,38.697174],[-119.948722,38.781187],[-119.90618,38.82527],[-119.898207,38.847677],[-119.873892,38.860483],[-119.873487,38.895411],[-119.892264,38.90631],[-119.889342,38.922252],[-119.575687,38.70291],[-119.607274,38.662349],[-119.615606,38.61502],[-119.554264,38.512026],[-119.546779,38.48271],[-119.556026,38.461211],[-119.555622,38.415882],[-119.562839,38.403942],[-119.612432,38.394287],[-119.609533,38.362156],[-119.628042,38.338185],[-119.655234,38.343495],[-119.683014,38.364654],[-119.690194,38.400317],[-119.709024,38.417136],[-119.740206,38.418257],[-119.789509,38.401282],[-119.839285,38.366588],[-119.868331,38.358662],[-120.01521,38.432239]]]},"id":6003},
{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-85.577804,38.602966],[-85.578087,38.674647],[-85.615213,38.675364],[-85.616151,38.702158],[-85.656283,38.702051],[-85.656321,38.723825],[-85.691913,38.731728],[-85.690091,38.811961],[-85.689214,38.817374],[-85.636455,38.820274],[-85.636494,38.830711],[-85.622821,38.832099],[-85.622044,38.857928],[-85.584651,38.860381],[-85.582652,38.88663],[-85.550043,38.887862],[-85.549845,38.913256],[-85.453216,38.916037],[-85.213228,38.92022],[-85.205162,38.695817],[-85.271394,38.744377],[-85.335009,38.737006],[-85.418187,38.738417],[-85.446691,38.724841],[-85.453679,38.694675],[-85.424405,38.58484],[-85.481115,38.582166],[-85.480619,38.591222],[-85.501821,38.591454],[-85.502943,38.603287],[-85.577804,38.602966]]]},"id":18077},
{"type":"Feature","properties":{"name":"Moniteau"},"geometry":{"type":"Polygon","coordinates":[[[-92.495891,38.425746],[-92.625952,38.429769],[-92.844082,38.598632],[-92.842823,38.687102],[-92.621033,38.687011],[-92.50017,38.918107],[-92.474895,38.8643],[-92.433071,38.824031],[-92.393589,38.811809],[-92.392766,38.790973],[-92.409864,38.760641],[-92.395307,38.736044],[-92.495891,38.425746]]]},"id":29135},
{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-88.70208,38.611448],[-88.702643,38.830368],[-88.701087,38.917838],[-88.365203,38.915218],[-88.3655,38.858109],[-88.262158,38.853947],[-88.261685,38.742438],[-88.288877,38.739535],[-88.277204,38.66146],[-88.294005,38.643492],[-88.286131,38.620753],[-88.265745,38.606952],[-88.70208,38.611448]]]},"id":17025},
{"type":"Feature","properties":{"name":"Knox"},"geometry":{"type":"Polygon","coordinates":[[[-87.253294,38.549155],[-87.275801,38.525081],[-87.302642,38.51287],[-87.365861,38.543898],[-87.377184,38.539107],[-87.372911,38.524073],[-87.380205,38.516039],[-87.398371,38.539015],[-87.425609,38.533129],[-87.43304,38.540964],[-87.450375,38.531279],[-87.479772,38.532217],[-87.504332,38.494539],[-87.527763,38.498087],[-87.537437,38.51003],[-87.547432,38.510187],[-87.556343,38.484941],[-87.585503,38.494013],[-87.599801,38.464315],[-87.616014,38.450963],[-87.63373,38.447606],[-87.671176,38.454515],[-87.680194,38.446489],[-87.678142,38.434217],[-87.729688,38.416837],[-87.748457,38.418012],[-87.738981,38.445527],[-87.758688,38.457143],[-87.756124,38.466173],[-87.692844,38.48158],[-87.679935,38.504053],[-87.65356,38.50049],[-87.651416,38.515417],[-87.672969,38.547472],[-87.65288,38.573919],[-87.64062,38.593225],[-87.619852,38.599256],[-87.628672,38.622964],[-87.625215,38.642858],[-87.588501,38.672216],[-87.543914,38.686021],[-87.508337,38.73668],[-87.508024,38.769768],[-87.519049,38.776745],[-87.507909,38.795605],[-87.550529,38.857936],[-87.559082,38.869857],[-87.539222,38.904906],[-87.253043,38.902317],[-87.25286,38.908207],[-87.107532,38.904526],[-87.11008,38.897374],[-87.132076,38.893719],[-87.130954,38.87375],[-87.142918,38.869443],[-87.139164,38.857583],[-87.148617,38.857762],[-87.162694,38.842614],[-87.188009,38.845811],[-87.199537,38.81746],[-87.22164,38.809709],[-87.249892,38.812947],[-87.249015,38.783914],[-87.266403,38.775163],[-87.247886,38.76304],[-87.247954,38.741731],[-87.270751,38.729452],[-87.270828,38.707693],[-87.286819,38.68622],[-87.280799,38.670698],[-87.247717,38.653777],[-87.245161,38.641036],[-87.260138,38.633151],[-87.253294,38.549155]]]},"id":18083},
{"type":"Feature","properties":{"name":"Martin"},"geometry":{"type":"Polygon","coordinates":[[[-86.934258,38.498953],[-86.935209,38.807738],[-86.914502,38.808665],[-86.917036,38.903932],[-86.699295,38.905551],[-86.694301,38.681898],[-86.693238,38.525445],[-86.845625,38.526096],[-86.896766,38.49454],[-86.934258,38.498953]]]},"id":18101},
{"type":"Feature","properties":{"name":"Daviess"},"geometry":{"type":"Polygon","coordinates":[[[-86.934258,38.498953],[-86.962816,38.489573],[-86.975886,38.502989],[-87.006191,38.511312],[-87.074522,38.508595],[-87.110687,38.536049],[-87.143769,38.53215],[-87.16176,38.521614],[-87.191379,38.552547],[-87.253294,38.549155],[-87.260138,38.633151],[-87.245161,38.641036],[-87.247717,38.653777],[-87.280799,38.670698],[-87.286819,38.68622],[-87.270828,38.707693],[-87.270751,38.729452],[-87.247954,38.741731],[-87.247886,38.76304],[-87.266403,38.775163],[-87.249015,38.783914],[-87.249892,38.812947],[-87.22164,38.809709],[-87.199537,38.81746],[-87.188009,38.845811],[-87.162694,38.842614],[-87.148617,38.857762],[-87.139164,38.857583],[-87.142918,38.869443],[-87.130954,38.87375],[-87.132076,38.893719],[-87.11008,38.897374],[-87.107532,38.904526],[-86.917036,38.903932],[-86.914502,38.808665],[-86.935209,38.807738],[-86.934258,38.498953]]]},"id":18027},
{"type":"Feature","properties":{"name":"Braxton"},"geometry":{"type":"Polygon","coordinates":[[[-80.656684,38.524308],[-80.662246,38.530518],[-80.705995,38.534829],[-80.743892,38.526581],[-80.792066,38.563849],[-80.88034,38.511576],[-80.908181,38.540742],[-80.919382,38.566281],[-80.941996,38.583793],[-80.970096,38.592528],[-80.982174,38.623479],[-81.035033,38.668239],[-80.985121,38.722265],[-80.674555,38.895701],[-80.663728,38.877838],[-80.654176,38.889423],[-80.63984,38.886158],[-80.609695,38.90052],[-80.590071,38.884232],[-80.586081,38.859846],[-80.539669,38.852835],[-80.523937,38.858206],[-80.479043,38.830276],[-80.484071,38.794331],[-80.462158,38.793046],[-80.46373,38.773507],[-80.441665,38.768141],[-80.453582,38.741557],[-80.504761,38.651447],[-80.656684,38.524308]]]},"id":54007},
{"type":"Feature","properties":{"name":"Falls Church"},"geometry":{"type":"Polygon","coordinates":[[[-77.146278,38.872865],[-77.154587,38.864732],[-77.195351,38.868917],[-77.198235,38.886148],[-77.177513,38.8938],[-77.146278,38.872865]]]},"id":51610},
{"type":"Feature","properties":{"name":"St. Louis"},"geometry":{"type":"Polygon","coordinates":[[[-90.739655,38.463669],[-90.737838,38.634571],[-90.688741,38.658622],[-90.680218,38.678195],[-90.639773,38.69308],[-90.602457,38.682086],[-90.547775,38.69208],[-90.534072,38.723471],[-90.490316,38.75918],[-90.452243,38.826562],[-90.433406,38.831238],[-90.403208,38.82557],[-90.360177,38.833126],[-90.338241,38.878151],[-90.318275,38.889613],[-90.288077,38.885276],[-90.26058,38.855987],[-90.200008,38.825069],[-90.135019,38.8227],[-90.121835,38.800559],[-90.171305,38.786705],[-90.19231,38.760754],[-90.239804,38.730111],[-90.302856,38.670343],[-90.316583,38.580058],[-90.261345,38.532821],[-90.2659,38.518741],[-90.301958,38.42741],[-90.339725,38.3909],[-90.350658,38.422097],[-90.338626,38.448925],[-90.407483,38.457047],[-90.42011,38.479615],[-90.409009,38.485589],[-90.40978,38.500088],[-90.593265,38.500863],[-90.614003,38.472577],[-90.658239,38.481686],[-90.669371,38.4426],[-90.684661,38.443359],[-90.690322,38.465973],[-90.739655,38.463669]]]},"id":29189},
{"type":"Feature","properties":{"name":"Pendleton"},"geometry":{"type":"Polygon","coordinates":[[[-84.21847,38.58033],[-84.394111,38.560108],[-84.420922,38.564395],[-84.429368,38.536148],[-84.45154,38.530704],[-84.483446,38.537906],[-84.539629,38.786615],[-84.4141,38.806479],[-84.235294,38.874556],[-84.228702,38.81269],[-84.240665,38.80059],[-84.215052,38.59932],[-84.207346,38.599896],[-84.203592,38.586571],[-84.21847,38.58033]]]},"id":21191},
{"type":"Feature","properties":{"name":"Fairfax City"},"geometry":{"type":"Polygon","coordinates":[[[-77.291088,38.870023],[-77.263316,38.868158],[-77.265804,38.829188],[-77.281749,38.831026],[-77.291813,38.821528],[-77.352018,38.841101],[-77.344892,38.858316],[-77.296429,38.862779],[-77.291088,38.870023]]]},"id":51600},
{"type":"Feature","properties":{"name":"Gallatin"},"geometry":{"type":"Polygon","coordinates":[[[-84.941363,38.666854],[-84.970431,38.683349],[-85.025073,38.764291],[-84.975611,38.780641],[-84.81878,38.79341],[-84.824426,38.834463],[-84.787446,38.866643],[-84.776666,38.850347],[-84.762742,38.846186],[-84.763245,38.838488],[-84.677748,38.780732],[-84.785485,38.769],[-84.789819,38.720158],[-84.809793,38.721825],[-84.878442,38.700817],[-84.9023,38.678112],[-84.941363,38.666854]]]},"id":21077},
{"type":"Feature","properties":{"name":"Morris"},"geometry":{"type":"Polygon","coordinates":[[[-96.815666,38.515965],[-96.921466,38.519037],[-96.924265,38.596728],[-96.919808,38.808914],[-96.890731,38.810562],[-96.890502,38.860918],[-96.492116,38.863597],[-96.492681,38.820957],[-96.381647,38.818683],[-96.379245,38.735067],[-96.351656,38.732561],[-96.352848,38.514744],[-96.815666,38.515965]]]},"id":20127},
{"type":"Feature","properties":{"name":"Osage"},"geometry":{"type":"Polygon","coordinates":[[[-95.943932,38.430694],[-95.952546,38.689861],[-95.942925,38.69215],[-95.94204,38.734786],[-95.941116,38.863232],[-95.496624,38.861534],[-95.495024,38.730212],[-95.496138,38.68803],[-95.509894,38.685974],[-95.504379,38.429585],[-95.943932,38.430694]]]},"id":20139},
{"type":"Feature","properties":{"name":"Ellsworth"},"geometry":{"type":"Polygon","coordinates":[[[-97.923628,38.515893],[-98.475683,38.515258],[-98.47558,38.68848],[-98.482104,38.687732],[-98.482132,38.858237],[-97.926738,38.862043],[-97.924733,38.601647],[-97.923628,38.515893]]]},"id":20053},
{"type":"Feature","properties":{"name":"Rappahannock"},"geometry":{"type":"Polygon","coordinates":[[[-78.23094,38.532195],[-78.340852,38.625316],[-78.322304,38.652636],[-78.321534,38.688443],[-78.331216,38.710587],[-78.326066,38.72422],[-78.317925,38.734699],[-78.286155,38.743061],[-78.279838,38.759418],[-78.278129,38.764869],[-78.256216,38.757751],[-78.208036,38.778887],[-78.168446,38.838932],[-78.141468,38.861739],[-78.054819,38.812302],[-78.0506,38.801896],[-78.031114,38.801072],[-78.025094,38.785237],[-78.030832,38.762552],[-78.005883,38.738635],[-78.00219,38.716896],[-77.942497,38.695366],[-78.096736,38.595009],[-78.166821,38.532107],[-78.187932,38.525191],[-78.215681,38.53591],[-78.23094,38.532195]]]},"id":51157},
{"type":"Feature","properties":{"name":"Lawrence"},"geometry":{"type":"Polygon","coordinates":[[[-87.550529,38.857936],[-87.507909,38.795605],[-87.519049,38.776745],[-87.508024,38.769768],[-87.508337,38.73668],[-87.543914,38.686021],[-87.588501,38.672216],[-87.625215,38.642858],[-87.628672,38.622964],[-87.619852,38.599256],[-87.64062,38.593225],[-87.65288,38.573919],[-87.916605,38.574862],[-87.917604,38.855464],[-87.550529,38.857936]]]},"id":17101},
{"type":"Feature","properties":{"name":"Richland"},"geometry":{"type":"Polygon","coordinates":[[[-87.95898,38.575401],[-88.149118,38.576267],[-88.148004,38.604358],[-88.265745,38.606952],[-88.286131,38.620753],[-88.294005,38.643492],[-88.277204,38.66146],[-88.288877,38.739535],[-88.261685,38.742438],[-88.262158,38.853947],[-87.955424,38.855487],[-87.917604,38.855464],[-87.916605,38.574862],[-87.95898,38.575401]]]},"id":17159},
{"type":"Feature","properties":{"name":"Napa"},"geometry":{"type":"Polygon","coordinates":[[[-122.273002,38.159418],[-122.315759,38.205934],[-122.338907,38.193582],[-122.285354,38.159312],[-122.398464,38.161337],[-122.405743,38.185205],[-122.376041,38.196046],[-122.341509,38.197099],[-122.356632,38.243652],[-122.375241,38.257362],[-122.394224,38.315996],[-122.448471,38.358094],[-122.449394,38.378483],[-122.462586,38.389698],[-122.46624,38.407241],[-122.482995,38.411036],[-122.487183,38.451254],[-122.527025,38.472169],[-122.545427,38.520829],[-122.62988,38.576931],[-122.636396,38.600242],[-122.614598,38.662073],[-122.620107,38.672266],[-122.4599,38.708957],[-122.403449,38.768186],[-122.393248,38.798138],[-122.377012,38.802475],[-122.371252,38.812714],[-122.388349,38.851916],[-122.360387,38.841781],[-122.293995,38.840103],[-122.28085,38.830223],[-122.249775,38.784791],[-122.213687,38.701892],[-122.184634,38.65863],[-122.157625,38.643875],[-122.162767,38.616429],[-122.142976,38.611806],[-122.128144,38.593816],[-122.099617,38.506038],[-122.123862,38.423337],[-122.072888,38.366896],[-122.056392,38.332176],[-122.067203,38.318565],[-122.197517,38.317212],[-122.202544,38.297029],[-122.187956,38.281759],[-122.208907,38.270884],[-122.191237,38.261649],[-122.200445,38.25082],[-122.186162,38.231453],[-122.205808,38.185682],[-122.188344,38.170991],[-122.187581,38.160127],[-122.273002,38.159418]]]},"id":6055},
{"type":"Feature","properties":{"name":"Sonoma"},"geometry":{"type":"Polygon","coordinates":[[[-122.528649,38.150672],[-122.564692,38.185362],[-122.634618,38.179446],[-122.710503,38.204996],[-122.72973,38.203192],[-122.895272,38.313866],[-122.935374,38.308305],[-122.965664,38.312287],[-122.994649,38.297227],[-123.048797,38.294141],[-123.121545,38.4336],[-123.297941,38.547334],[-123.523887,38.757659],[-123.484701,38.777964],[-123.363256,38.776098],[-123.363004,38.806999],[-123.131173,38.808714],[-123.128854,38.837441],[-123.077964,38.837682],[-123.077293,38.850887],[-122.811567,38.844577],[-122.811681,38.838668],[-122.750736,38.808823],[-122.685448,38.715132],[-122.639128,38.696825],[-122.620107,38.672266],[-122.614598,38.662073],[-122.636396,38.600242],[-122.62988,38.576931],[-122.545427,38.520829],[-122.527025,38.472169],[-122.487183,38.451254],[-122.482995,38.411036],[-122.46624,38.407241],[-122.462586,38.389698],[-122.449394,38.378483],[-122.448471,38.358094],[-122.394224,38.315996],[-122.375241,38.257362],[-122.356632,38.243652],[-122.341509,38.197099],[-122.376041,38.196046],[-122.405743,38.185205],[-122.398464,38.161337],[-122.429203,38.113807],[-122.488935,38.113414],[-122.528649,38.150672]]]},"id":6097},
{"type":"Feature","properties":{"name":"Alexandria"},"geometry":{"type":"Polygon","coordinates":[[[-77.045147,38.788234],[-77.096426,38.802916],[-77.141327,38.798068],[-77.14534,38.822554],[-77.113898,38.848295],[-77.106261,38.840567],[-77.086118,38.850924],[-77.040104,38.838526],[-77.044888,38.829478],[-77.034947,38.814029],[-77.045147,38.788234]]]},"id":51510},
{"type":"Feature","properties":{"name":"Rockingham"},"geometry":{"type":"Polygon","coordinates":[[[-78.658097,38.274193],[-78.668871,38.250977],[-78.724277,38.235024],[-78.751935,38.207098],[-78.889039,38.302622],[-78.913728,38.305514],[-79.231663,38.480496],[-79.127427,38.658244],[-79.121064,38.663767],[-79.088547,38.659205],[-79.087234,38.707269],[-79.056555,38.762054],[-79.0548,38.790633],[-79.033743,38.79996],[-78.987453,38.846761],[-78.866561,38.763404],[-78.64514,38.608816],[-78.685532,38.520955],[-78.682412,38.510106],[-78.659858,38.497179],[-78.632772,38.494711],[-78.625883,38.467578],[-78.562685,38.446838],[-78.551843,38.428349],[-78.528397,38.432171],[-78.48944,38.418439],[-78.560993,38.329463],[-78.608946,38.319068],[-78.655343,38.285099],[-78.658097,38.274193]],[[-78.834114,38.442836],[-78.881547,38.465429],[-78.913591,38.420192],[-78.903703,38.394466],[-78.865967,38.41801],[-78.837227,38.420139],[-78.834114,38.442836]]]},"id":51165},
{"type":"Feature","properties":{"name":"Lawrence"},"geometry":{"type":"Polygon","coordinates":[[[-82.586604,38.412519],[-82.613743,38.472669],[-82.66976,38.502141],[-82.695579,38.539143],[-82.741945,38.553066],[-82.802364,38.557289],[-82.826992,38.571662],[-82.750124,38.601287],[-82.777889,38.650942],[-82.776943,38.678671],[-82.713052,38.676848],[-82.699701,38.688303],[-82.695551,38.746122],[-82.658867,38.745393],[-82.64753,38.84436],[-82.569677,38.839402],[-82.575727,38.773344],[-82.490137,38.76639],[-82.491129,38.737757],[-82.472032,38.734896],[-82.477136,38.679775],[-82.35622,38.672334],[-82.362118,38.583609],[-82.289971,38.580081],[-82.314241,38.46523],[-82.329179,38.441952],[-82.394764,38.42847],[-82.414891,38.430393],[-82.494988,38.405833],[-82.547548,38.400511],[-82.575419,38.403902],[-82.586604,38.412519]]]},"id":39087},
{"type":"Feature","properties":{"name":"Cass"},"geometry":{"type":"Polygon","coordinates":[[[-94.618718,38.471474],[-94.613148,38.737222],[-94.61247,38.837109],[-94.125848,38.830839],[-94.130585,38.654145],[-94.119904,38.653187],[-94.122757,38.56777],[-94.069617,38.566123],[-94.071242,38.441283],[-94.101944,38.452391],[-94.117416,38.445913],[-94.13604,38.45202],[-94.172883,38.439283],[-94.205362,38.441221],[-94.236811,38.445459],[-94.24341,38.456551],[-94.275111,38.455323],[-94.31873,38.465424],[-94.618718,38.471474]]]},"id":29037},
{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-89.145495,38.501571],[-89.144918,38.741328],[-89.143324,38.825624],[-88.702643,38.830368],[-88.70208,38.611448],[-88.703577,38.474123],[-89.144451,38.474373],[-89.145495,38.501571]]]},"id":17121},
{"type":"Feature","properties":{"name":"Scott"},"geometry":{"type":"Polygon","coordinates":[[[-85.852981,38.556522],[-85.859451,38.568507],[-85.89245,38.568114],[-85.89593,38.723304],[-85.874827,38.721805],[-85.858324,38.733116],[-85.843401,38.771682],[-85.821489,38.784636],[-85.815828,38.803065],[-85.801988,38.808097],[-85.739501,38.827983],[-85.722357,38.827918],[-85.690091,38.811961],[-85.691913,38.731728],[-85.656321,38.723825],[-85.656283,38.702051],[-85.616151,38.702158],[-85.615213,38.675364],[-85.578087,38.674647],[-85.577804,38.602966],[-85.79849,38.597533],[-85.797956,38.584819],[-85.827643,38.568469],[-85.826399,38.558002],[-85.852981,38.556522]]]},"id":18143},
{"type":"Feature","properties":{"name":"Page"},"geometry":{"type":"Polygon","coordinates":[[[-78.454305,38.471748],[-78.48944,38.418439],[-78.528397,38.432171],[-78.551843,38.428349],[-78.562685,38.446838],[-78.625883,38.467578],[-78.632772,38.494711],[-78.659858,38.497179],[-78.682412,38.510106],[-78.685532,38.520955],[-78.64514,38.608816],[-78.624249,38.628949],[-78.588175,38.699073],[-78.552087,38.731565],[-78.514228,38.724177],[-78.480268,38.743036],[-78.440152,38.789124],[-78.389262,38.828025],[-78.328614,38.793092],[-78.292518,38.785627],[-78.279838,38.759418],[-78.286155,38.743061],[-78.317925,38.734699],[-78.326066,38.72422],[-78.331216,38.710587],[-78.321534,38.688443],[-78.322304,38.652636],[-78.340852,38.625316],[-78.357874,38.620212],[-78.386355,38.588738],[-78.39593,38.55377],[-78.446728,38.522566],[-78.454305,38.471748]]]},"id":51139},
{"type":"Feature","properties":{"name":"Bracken"},"geometry":{"type":"Polygon","coordinates":[[[-84.21847,38.58033],[-84.203592,38.586571],[-84.207346,38.599896],[-84.215052,38.59932],[-84.240665,38.80059],[-84.228702,38.81269],[-84.176752,38.788499],[-84.088867,38.765505],[-84.053802,38.763735],[-83.962163,38.777647],[-83.91254,38.75796],[-83.99921,38.591245],[-84.024746,38.581029],[-84.028317,38.588452],[-84.042241,38.583623],[-84.053151,38.595452],[-84.091719,38.600327],[-84.148048,38.547857],[-84.176637,38.55182],[-84.217798,38.544965],[-84.22684,38.550344],[-84.209635,38.568219],[-84.21847,38.58033]]]},"id":21023},
{"type":"Feature","properties":{"name":"Grant"},"geometry":{"type":"Polygon","coordinates":[[[-84.566334,38.488635],[-84.58656,38.476252],[-84.629247,38.489294],[-84.659613,38.510911],[-84.659208,38.525872],[-84.674712,38.531925],[-84.677451,38.552906],[-84.781266,38.615007],[-84.789819,38.720158],[-84.785485,38.769],[-84.677748,38.780732],[-84.665777,38.782986],[-84.644224,38.804836],[-84.615605,38.799626],[-84.600971,38.788606],[-84.539629,38.786615],[-84.483446,38.537906],[-84.49483,38.509322],[-84.540386,38.506171],[-84.566334,38.488635]]]},"id":21081},
{"type":"Feature","properties":{"name":"St. Louis City"},"geometry":{"type":"Polygon","coordinates":[[[-90.261345,38.532821],[-90.316583,38.580058],[-90.302856,38.670343],[-90.239804,38.730111],[-90.19231,38.760754],[-90.171305,38.786705],[-90.121835,38.800559],[-90.135286,38.785533],[-90.163508,38.773147],[-90.196682,38.724015],[-90.202351,38.700414],[-90.183689,38.658822],[-90.183819,38.610323],[-90.241057,38.562857],[-90.261345,38.532821]]]},"id":29510},
{"type":"Feature","properties":{"name":"Manassas Park"},"geometry":{"type":"Polygon","coordinates":[[[-77.475709,38.781216],[-77.473199,38.78825],[-77.45855,38.786808],[-77.459412,38.778313],[-77.445412,38.770516],[-77.440613,38.782616],[-77.431824,38.779266],[-77.437912,38.758214],[-77.459313,38.772614],[-77.475709,38.781216]]]},"id":51685},
{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-86.264384,38.414718],[-86.311367,38.415492],[-86.317773,38.687741],[-86.318605,38.736286],[-86.306756,38.737343],[-86.296815,38.762028],[-86.284035,38.770763],[-86.252159,38.770386],[-86.204703,38.788178],[-86.160466,38.773839],[-86.092212,38.781049],[-86.047074,38.761206],[-86.006256,38.762781],[-85.997405,38.750285],[-85.976393,38.757399],[-85.953443,38.755835],[-85.936803,38.74583],[-85.918263,38.750739],[-85.908649,38.730049],[-85.89593,38.723304],[-85.89245,38.568114],[-85.859451,38.568507],[-85.852981,38.556522],[-85.853042,38.543373],[-85.870209,38.54161],[-85.869812,38.513931],[-85.888779,38.511314],[-85.888878,38.497257],[-85.960788,38.494808],[-85.963114,38.483082],[-85.997432,38.479072],[-85.997202,38.410132],[-86.033023,38.410688],[-86.264384,38.414718]]]},"id":18175},
{"type":"Feature","properties":{"name":"Manassas"},"geometry":{"type":"Polygon","coordinates":[[[-77.475709,38.781216],[-77.459313,38.772614],[-77.44751,38.761117],[-77.45311,38.735216],[-77.471108,38.728216],[-77.489037,38.732542],[-77.493554,38.725317],[-77.507112,38.740629],[-77.51439,38.736376],[-77.505509,38.707957],[-77.524209,38.717917],[-77.526819,38.732332],[-77.495927,38.770608],[-77.475709,38.781216]]]},"id":51683},
{"type":"Feature","properties":{"name":"Calvert"},"geometry":{"type":"Polygon","coordinates":[[[-76.646938,38.450548],[-76.661365,38.483468],[-76.678876,38.49537],[-76.674344,38.532051],[-76.673681,38.590967],[-76.691398,38.63913],[-76.701264,38.707179],[-76.694344,38.746565],[-76.688919,38.756502],[-76.636884,38.765669],[-76.628705,38.758356],[-76.625011,38.721622],[-76.524931,38.709751],[-76.508571,38.522221],[-76.385482,38.391404],[-76.405129,38.346144],[-76.421136,38.320624],[-76.471599,38.335783],[-76.519757,38.410261],[-76.646938,38.450548]]]},"id":24009},
{"type":"Feature","properties":{"name":"Carroll"},"geometry":{"type":"Polygon","coordinates":[[[-85.079977,38.599296],[-85.174064,38.593104],[-85.222855,38.595256],[-85.229157,38.628595],[-85.335009,38.737006],[-85.271394,38.744377],[-85.205162,38.695817],[-85.160933,38.695177],[-85.119657,38.714139],[-85.068455,38.750425],[-85.025073,38.764291],[-84.970431,38.683349],[-84.941363,38.666854],[-84.957148,38.650192],[-85.016048,38.632381],[-85.079977,38.599296]]]},"id":21041},
{"type":"Feature","properties":{"name":"Mason"},"geometry":{"type":"Polygon","coordinates":[[[-83.647095,38.532349],[-83.867438,38.464523],[-83.934121,38.493434],[-83.953187,38.513819],[-83.977389,38.583459],[-83.99921,38.591245],[-83.91254,38.75796],[-83.857553,38.744918],[-83.837532,38.71188],[-83.790465,38.693845],[-83.770223,38.650819],[-83.712825,38.635553],[-83.67853,38.620928],[-83.655756,38.623881],[-83.64319,38.635862],[-83.631394,38.617876],[-83.647095,38.532349]]]},"id":21161},
{"type":"Feature","properties":{"name":"Greenup"},"geometry":{"type":"Polygon","coordinates":[[[-82.818506,38.380228],[-82.931853,38.409054],[-82.979873,38.405247],[-83.03438,38.441288],[-83.038523,38.46104],[-83.122442,38.48495],[-83.168586,38.510042],[-83.15055,38.534551],[-83.127333,38.543802],[-83.094968,38.576646],[-83.080655,38.598615],[-83.079793,38.628552],[-83.040463,38.66602],[-83.026943,38.714512],[-82.972483,38.719643],[-82.921304,38.746415],[-82.890312,38.742775],[-82.873191,38.719006],[-82.880012,38.683301],[-82.860029,38.652395],[-82.853857,38.600459],[-82.826992,38.571662],[-82.802364,38.557289],[-82.741945,38.553066],[-82.695579,38.539143],[-82.66976,38.502141],[-82.770646,38.439866],[-82.775911,38.421071],[-82.818506,38.380228]]]},"id":21089},
{"type":"Feature","properties":{"name":"Clinton"},"geometry":{"type":"Polygon","coordinates":[[[-89.144918,38.741328],[-89.145495,38.501571],[-89.265435,38.508655],[-89.297801,38.502369],[-89.357175,38.512874],[-89.398376,38.488441],[-89.43071,38.49345],[-89.45717,38.48621],[-89.48128,38.466274],[-89.524189,38.480324],[-89.542409,38.473518],[-89.572394,38.481209],[-89.618813,38.466217],[-89.626428,38.44944],[-89.6458,38.440807],[-89.664607,38.442142],[-89.669864,38.427635],[-89.709782,38.41896],[-89.714593,38.657805],[-89.604397,38.660212],[-89.605686,38.741342],[-89.262912,38.742064],[-89.144918,38.741328]]]},"id":17027},
{"type":"Feature","properties":{"name":"Webster"},"geometry":{"type":"Polygon","coordinates":[[[-80.440402,38.268028],[-80.613216,38.360358],[-80.628727,38.352252],[-80.66255,38.401269],[-80.642408,38.424912],[-80.679901,38.503309],[-80.656684,38.524308],[-80.504761,38.651447],[-80.453582,38.741557],[-80.44065,38.728259],[-80.404019,38.727314],[-80.396588,38.733383],[-80.344493,38.729153],[-80.315278,38.690828],[-80.281822,38.695212],[-80.18406,38.522816],[-80.247881,38.389014],[-80.32855,38.333229],[-80.355651,38.350741],[-80.363226,38.229044],[-80.440402,38.268028]]]},"id":54101},
{"type":"Feature","properties":{"name":"Trimble"},"geometry":{"type":"Polygon","coordinates":[[[-85.332393,38.493301],[-85.355708,38.518134],[-85.43237,38.537016],[-85.417462,38.561476],[-85.424405,38.58484],[-85.453679,38.694675],[-85.446691,38.724841],[-85.418187,38.738417],[-85.335009,38.737006],[-85.229157,38.628595],[-85.222855,38.595256],[-85.174064,38.593104],[-85.291109,38.505054],[-85.332393,38.493301]]]},"id":21223},
{"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.66522,38.169285],[-121.644758,38.18642],[-121.598126,38.199974],[-121.586324,38.236262],[-121.595197,38.274953],[-121.583853,38.318939],[-121.569181,38.319031],[-121.562101,38.337444],[-121.536207,38.346115],[-121.521917,38.362067],[-121.511503,38.402834],[-121.524351,38.430039],[-121.506712,38.439759],[-121.503019,38.456226],[-121.505926,38.465198],[-121.540648,38.48434],[-121.544212,38.503718],[-121.520774,38.515017],[-121.525016,38.526659],[-121.510947,38.537157],[-121.50186,38.590573],[-121.516173,38.602757],[-121.547317,38.601158],[-121.561653,38.641921],[-121.59282,38.649841],[-121.622576,38.681853],[-121.593607,38.737386],[-121.48297,38.734189],[-121.140904,38.710729],[-121.124844,38.708548],[-121.112347,38.717127],[-121.016274,38.505268],[-121.016159,38.299331],[-121.092455,38.288646],[-121.158558,38.253765],[-121.197346,38.244732],[-121.266814,38.249141],[-121.319023,38.229172],[-121.40014,38.232189],[-121.422014,38.254542],[-121.464854,38.254809],[-121.51501,38.192627],[-121.526729,38.154535],[-121.554149,38.137362],[-121.659581,38.096465],[-121.66522,38.169285]]]},"id":6067},
{"type":"Feature","properties":{"name":"Miami"},"geometry":{"type":"Polygon","coordinates":[[[-95.061229,38.387649],[-95.0543,38.733891],[-94.613148,38.737222],[-94.618718,38.471474],[-94.619054,38.392032],[-95.061229,38.387649]]]},"id":20121},
{"type":"Feature","properties":{"name":"Cole"},"geometry":{"type":"Polygon","coordinates":[[[-91.954525,38.597331],[-92.028974,38.553204],[-92.012683,38.507291],[-92.035098,38.475094],[-92.074909,38.470187],[-92.109715,38.456763],[-92.143636,38.468278],[-92.16773,38.467759],[-92.159627,38.438916],[-92.128192,38.414656],[-92.12456,38.395236],[-92.138171,38.381797],[-92.178515,38.376844],[-92.192683,38.362932],[-92.196291,38.33338],[-92.232135,38.334401],[-92.25584,38.324807],[-92.282604,38.334179],[-92.40892,38.337145],[-92.404046,38.421601],[-92.495891,38.425746],[-92.395307,38.736044],[-92.349736,38.717604],[-92.355732,38.674845],[-92.292308,38.66632],[-92.266383,38.651031],[-92.219934,38.638462],[-92.19854,38.601754],[-92.170715,38.581952],[-92.102286,38.562106],[-92.033521,38.565354],[-91.984914,38.590376],[-91.954525,38.597331]]]},"id":29051},
{"type":"Feature","properties":{"name":"Pocahontas"},"geometry":{"type":"Polygon","coordinates":[[[-80.363226,38.229044],[-80.355651,38.350741],[-80.32855,38.333229],[-80.247881,38.389014],[-80.115736,38.471694],[-80.02878,38.456735],[-79.867253,38.551976],[-79.865262,38.581482],[-79.847188,38.605403],[-79.801679,38.7128],[-79.779385,38.735429],[-79.754413,38.729539],[-79.739183,38.675414],[-79.706841,38.678264],[-79.683944,38.661895],[-79.670547,38.687064],[-79.633726,38.678188],[-79.629956,38.670093],[-79.626973,38.648838],[-79.637112,38.632794],[-79.627567,38.60848],[-79.642407,38.592355],[-79.66943,38.550177],[-79.665615,38.520778],[-79.692654,38.500354],[-79.684092,38.430238],[-79.720035,38.394686],[-79.73283,38.35184],[-79.764004,38.353991],[-79.800329,38.314327],[-79.802778,38.29887],[-79.786511,38.285118],[-79.793622,38.268666],[-79.831152,38.250279],[-79.916162,38.179265],[-79.91034,38.162606],[-79.935327,38.121309],[-79.928292,38.103311],[-79.957514,38.067365],[-80.104012,38.059349],[-80.162937,38.039493],[-80.259743,38.048685],[-80.370039,38.118248],[-80.363226,38.229044]]]},"id":54075},
{"type":"Feature","properties":{"name":"Lyon"},"geometry":{"type":"Polygon","coordinates":[[[-95.943932,38.430694],[-95.954461,38.1674],[-96.352797,38.163887],[-96.352848,38.514744],[-96.351656,38.732561],[-95.94204,38.734786],[-95.942925,38.69215],[-95.952546,38.689861],[-95.943932,38.430694]]]},"id":20111},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-95.061229,38.387649],[-95.501923,38.387685],[-95.504379,38.429585],[-95.509894,38.685974],[-95.496138,38.68803],[-95.495024,38.730212],[-95.0543,38.733891],[-95.061229,38.387649]]]},"id":20059},
{"type":"Feature","properties":{"name":"Owen"},"geometry":{"type":"Polygon","coordinates":[[[-84.880748,38.356496],[-84.87836,38.366391],[-84.906879,38.380166],[-84.893268,38.419132],[-84.930553,38.434135],[-84.922695,38.447002],[-84.934116,38.452418],[-84.956296,38.426921],[-84.968472,38.429637],[-84.965397,38.460379],[-84.997441,38.494222],[-84.99017,38.516645],[-85.020498,38.51185],[-85.03317,38.516393],[-85.02287,38.550049],[-85.009022,38.564518],[-85.042371,38.57798],[-85.06838,38.576649],[-85.079977,38.599296],[-85.016048,38.632381],[-84.957148,38.650192],[-84.941363,38.666854],[-84.9023,38.678112],[-84.878442,38.700817],[-84.809793,38.721825],[-84.789819,38.720158],[-84.781266,38.615007],[-84.677451,38.552906],[-84.674712,38.531925],[-84.659208,38.525872],[-84.659613,38.510911],[-84.629247,38.489294],[-84.58656,38.476252],[-84.630666,38.432619],[-84.753793,38.348032],[-84.806177,38.337339],[-84.880748,38.356496]]]},"id":21187},
{"type":"Feature","properties":{"name":"Lewis"},"geometry":{"type":"Polygon","coordinates":[[[-83.451684,38.393477],[-83.582861,38.437551],[-83.588812,38.487786],[-83.601874,38.501129],[-83.630707,38.508866],[-83.632668,38.521217],[-83.647095,38.532349],[-83.631394,38.617876],[-83.64319,38.635862],[-83.633241,38.664972],[-83.618379,38.677972],[-83.526556,38.696111],[-83.500073,38.690137],[-83.453616,38.663775],[-83.371422,38.654998],[-83.330023,38.631988],[-83.320326,38.606563],[-83.306531,38.596317],[-83.290044,38.596638],[-83.272755,38.609257],[-83.245014,38.624172],[-83.181939,38.609841],[-83.14315,38.61934],[-83.111243,38.664833],[-83.06088,38.685726],[-83.026943,38.714512],[-83.040463,38.66602],[-83.079793,38.628552],[-83.080655,38.598615],[-83.094968,38.576646],[-83.127333,38.543802],[-83.15055,38.534551],[-83.168586,38.510042],[-83.192681,38.497198],[-83.190407,38.475733],[-83.23604,38.431281],[-83.230507,38.351513],[-83.276552,38.335686],[-83.314525,38.338508],[-83.33984,38.331154],[-83.363507,38.336422],[-83.377439,38.366641],[-83.397742,38.377189],[-83.409637,38.396853],[-83.451684,38.393477]]]},"id":21135},
{"type":"Feature","properties":{"name":"Gasconade"},"geometry":{"type":"Polygon","coordinates":[[[-91.377425,38.210805],[-91.54035,38.213192],[-91.542905,38.157386],[-91.63832,38.157122],[-91.652389,38.157782],[-91.651568,38.289722],[-91.653735,38.703588],[-91.653712,38.704515],[-91.594162,38.682852],[-91.561622,38.678866],[-91.493909,38.704005],[-91.42515,38.713256],[-91.375236,38.699062],[-91.369777,38.416732],[-91.377425,38.210805]]]},"id":29073},
{"type":"Feature","properties":{"name":"Osage"},"geometry":{"type":"Polygon","coordinates":[[[-92.195817,38.288505],[-92.196291,38.33338],[-92.192683,38.362932],[-92.178515,38.376844],[-92.138171,38.381797],[-92.12456,38.395236],[-92.128192,38.414656],[-92.159627,38.438916],[-92.16773,38.467759],[-92.143636,38.468278],[-92.109715,38.456763],[-92.074909,38.470187],[-92.035098,38.475094],[-92.012683,38.507291],[-92.028974,38.553204],[-91.954525,38.597331],[-91.85573,38.675423],[-91.802208,38.679604],[-91.760734,38.692159],[-91.741111,38.706117],[-91.653735,38.703588],[-91.651568,38.289722],[-92.195817,38.288505]]]},"id":29151},
{"type":"Feature","properties":{"name":"Charles"},"geometry":{"type":"Polygon","coordinates":[[[-76.678876,38.49537],[-76.700041,38.495057],[-76.7181,38.511036],[-76.733368,38.513398],[-76.783411,38.508713],[-76.825122,38.449575],[-76.833004,38.422877],[-76.863873,38.391471],[-76.90827,38.299978],[-76.972725,38.331155],[-77.002092,38.426977],[-77.220626,38.390788],[-77.255577,38.413717],[-77.277459,38.487221],[-77.129691,38.648242],[-77.124816,38.677916],[-77.092848,38.704099],[-77.051479,38.621925],[-77.011836,38.648513],[-76.969308,38.663295],[-76.918114,38.653999],[-76.863249,38.660529],[-76.758723,38.623235],[-76.735871,38.555564],[-76.674344,38.532051],[-76.678876,38.49537]]]},"id":24017},
{"type":"Feature","properties":{"name":"Mono"},"geometry":{"type":"Polygon","coordinates":[[[-117.838686,37.457298],[-118.770954,37.453192],[-118.801678,37.476772],[-118.843357,37.473427],[-118.858631,37.481355],[-118.865514,37.501203],[-118.887097,37.505853],[-118.906812,37.527765],[-119.017206,37.5745],[-119.05172,37.646462],[-119.055338,37.67179],[-119.109215,37.725728],[-119.185647,37.73209],[-119.219429,37.713346],[-119.260622,37.728455],[-119.232067,37.765708],[-119.193798,37.790884],[-119.205205,37.821958],[-119.188718,37.835858],[-119.214339,37.854439],[-119.205855,37.882698],[-119.225624,37.900023],[-119.290752,37.930555],[-119.310072,37.95105],[-119.317046,37.987186],[-119.308128,38.019542],[-119.318001,38.05472],[-119.336159,38.074323],[-119.417386,38.108112],[-119.43614,38.091419],[-119.443815,38.093532],[-119.481331,38.130408],[-119.490853,38.152434],[-119.499093,38.153624],[-119.510141,38.134356],[-119.555743,38.14974],[-119.571605,38.184773],[-119.616819,38.187897],[-119.620061,38.213218],[-119.608365,38.230243],[-119.613332,38.254618],[-119.635595,38.270468],[-119.642004,38.285745],[-119.628042,38.338185],[-119.609533,38.362156],[-119.612432,38.394287],[-119.562839,38.403942],[-119.555622,38.415882],[-119.556026,38.461211],[-119.546779,38.48271],[-119.554264,38.512026],[-119.615606,38.61502],[-119.607274,38.662349],[-119.575687,38.70291],[-119.318825,38.527109],[-119.15245,38.411801],[-118.41742,37.886677],[-117.838686,37.457298]]]},"id":6051},
{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"Polygon","coordinates":[[[-90.782793,38.208033],[-91.102535,38.204273],[-91.344449,38.204054],[-91.37786,38.204908],[-91.377425,38.210805],[-91.369777,38.416732],[-91.375236,38.699062],[-91.334623,38.702393],[-91.296536,38.688447],[-91.248026,38.656958],[-91.225464,38.625091],[-91.205123,38.611778],[-91.14243,38.600388],[-91.089037,38.6097],[-91.060707,38.606885],[-91.013861,38.563047],[-90.968792,38.54637],[-90.912187,38.540683],[-90.82291,38.582015],[-90.802348,38.584499],[-90.783968,38.577442],[-90.737838,38.634571],[-90.739655,38.463669],[-90.740815,38.393402],[-90.782793,38.208033]]]},"id":29071},
{"type":"Feature","properties":{"name":"Dorchester"},"geometry":{"type":"Polygon","coordinates":[[[-75.872092,38.357351],[-75.886482,38.375582],[-75.949585,38.282177],[-75.994942,38.282647],[-76.020464,38.322018],[-76.06512,38.259057],[-76.293942,38.437058],[-76.291653,38.478851],[-76.191881,38.543463],[-76.250721,38.595202],[-76.031598,38.57204],[-75.988231,38.594901],[-75.981067,38.627902],[-75.958781,38.651197],[-75.957774,38.671129],[-75.922884,38.67613],[-75.897684,38.696202],[-75.83802,38.700852],[-75.808654,38.695469],[-75.802505,38.680882],[-75.763067,38.67852],[-75.710713,38.649666],[-75.707074,38.557591],[-75.719098,38.547338],[-75.74214,38.543592],[-75.761161,38.51077],[-75.81874,38.487998],[-75.815688,38.467101],[-75.829864,38.464122],[-75.837844,38.449272],[-75.82447,38.443199],[-75.821768,38.432735],[-75.841941,38.423943],[-75.850592,38.405022],[-75.840384,38.38902],[-75.868735,38.381692],[-75.872092,38.357351]]]},"id":24019},
{"type":"Feature","properties":{"name":"Culpeper"},"geometry":{"type":"Polygon","coordinates":[[[-77.708072,38.36468],[-77.745098,38.378665],[-77.750432,38.394968],[-77.755704,38.390425],[-77.762189,38.397211],[-77.788541,38.380382],[-77.782628,38.369971],[-77.818495,38.382575],[-77.884239,38.380572],[-77.894859,38.390513],[-77.912361,38.370513],[-77.951028,38.359047],[-77.978037,38.359852],[-77.981478,38.348053],[-78.001437,38.349785],[-78.032985,38.330167],[-78.038166,38.316999],[-78.09097,38.318116],[-78.099713,38.311731],[-78.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment