Skip to content

Instantly share code, notes, and snippets.

@dmcglone
Last active October 31, 2018 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmcglone/9a90fe35acc21a7e1a5e03ded7285a50 to your computer and use it in GitHub Desktop.
Save dmcglone/9a90fe35acc21a7e1a5e03ded7285a50 to your computer and use it in GitHub Desktop.
redistricting-morpher-us-pa-house
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke-width: 1px;
stroke: #444;
}
text {
font: bold 64px Libre Franklin, sans-serif;
text-anchor: middle;
}
</style>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-color.v1.min.js"></script>
<script src="https://d3js.org/d3-interpolate.v1.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="https://d3js.org/d3-array.v1.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<script src="https://d3js.org/d3-queue.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
var width = 960,
height = 500;
var colors = d3.schemeSet3;
d3.shuffle(colors);
var svg = d3.select("body").append("svg")
.attr("width",width)
.attr("height",height);
var projection = d3.geoConicConformal()
.parallels([39 + 56 / 60, 40 + 58 / 60])
.rotate([77 + 45 / 60, 0])
.scale(6000)
.translate([250,4800]);
var path = d3.geoPath(projection);
queue()
.defer(d3.json,"old.geojson")
.defer(d3.json,"new.geojson")
.await(function(err,oldDistricts,newDistricts){
var combined = oldDistricts.features.map(function(d,i){
return [d,newDistricts.features[i]].map(path);
});
var districts = svg.selectAll("path")
.data(combined)
.enter()
.append("path")
.attr("d",next)
.style("fill",function(d,i){
return colors[i % 8];
});
var label = svg.append("text")
.datum(["Old","New"])
.text(next)
.attr("x",250)
.attr("y",350);
morph();
function morph() {
districts.transition()
.duration(3200)
.attr("d",next)
.on("end",function(d,i){
if (i === combined.length - 1) {
morph();
}
});
label.transition()
.duration(0)
.delay(3200 / 2)
.on("end",function(){
label.text(next);
});
}
});
function next(d) {
return d.reverse()[1];
}
</script>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.278453,39.948017],[-75.282057,39.951509],[-75.279498,39.954961],[-75.284556,39.960142],[-75.287734,39.959333],[-75.29578,39.967839],[-75.276482,39.976959],[-75.263687,39.982658],[-75.249214,39.990547],[-75.244491,39.985667],[-75.23724,39.98484],[-75.239467,39.980914],[-75.237455,39.970141],[-75.239131,39.969753],[-75.240762,39.96196],[-75.238785,39.961715],[-75.240449,39.953733],[-75.238476,39.953485],[-75.240052,39.945917],[-75.229726,39.936743],[-75.223219,39.933389],[-75.223302,39.931315],[-75.206072,39.935371],[-75.211253,39.928519],[-75.212428,39.92523],[-75.208526,39.921033],[-75.2017,39.919834],[-75.169435,39.925558],[-75.160395,39.967064],[-75.165349,39.967149],[-75.166227,39.963112],[-75.176219,39.964409],[-75.186368,39.973537],[-75.167703,39.971211],[-75.159442,39.971467],[-75.157581,39.980223],[-75.150661,39.979325],[-75.148109,39.983604],[-75.143844,39.984683],[-75.142173,39.992343],[-75.147887,39.993078],[-75.137669,40.003645],[-75.134194,40.019619],[-75.125023,40.018435],[-75.125988,40.013862],[-75.112161,40.012085],[-75.11136,40.015867],[-75.098803,40.016345],[-75.094703,40.015052],[-75.095083,40.010308],[-75.088909,40.003697],[-75.08637,39.998895],[-75.077476,40.004139],[-75.078448,40.008586],[-75.072371,40.010089],[-75.07513,40.017492],[-75.084426,40.022417],[-75.084692,40.031634],[-75.078277,40.032301],[-75.073733,40.029784],[-75.069261,40.036809],[-75.063196,40.036585],[-75.059801,40.039152],[-75.067678,40.043527],[-75.061374,40.048585],[-75.04086,40.036757],[-75.021852,40.043677],[-75.020121,40.048812],[-75.014697,40.054118],[-75.010143,40.054607],[-75.008224,40.052113],[-75.001181,40.057232],[-74.990914,40.060105],[-74.980688,40.065007],[-74.980378,40.060349],[-74.984893,40.057287],[-74.97431985325996,40.04889913332002],[-74.983913,40.042711],[-74.98888390559182,40.03728910297348],[-75.01284084100945,40.020604974132496],[-75.0275,40.017079],[-75.041267,40.012714],[-75.04709,40.009941],[-75.053405,40.004568],[-75.058089,39.997404],[-75.059947,39.991451],[-75.064175,39.986027],[-75.075605,39.978041],[-75.085831,39.975102],[-75.096372,39.973981],[-75.108089,39.970332],[-75.119491,39.965372],[-75.130591,39.958608],[-75.135239,39.950677],[-75.136268,39.943282],[-75.136151,39.932974],[-75.13282,39.921612],[-75.12827925174409,39.91266214048602],[-75.13074756277436,39.90050274890257],[-75.140221,39.888213],[-75.147366,39.883921],[-75.162872,39.882649],[-75.180112,39.882197],[-75.189323,39.880713],[-75.195361,39.877276],[-75.199857,39.873222],[-75.221371,39.861543],[-75.234718,39.856732],[-75.24377920994745,39.85453223807346],[-75.271159,39.84944],[-75.293376,39.848782],[-75.309674,39.850179],[-75.330432,39.849013],[-75.341766,39.846082],[-75.354401,39.839917],[-75.371835,39.827612],[-75.389849,39.815948],[-75.398937,39.833812],[-75.403703,39.838322],[-75.418298,39.856151],[-75.410779,39.859634],[-75.405673,39.856346],[-75.400613,39.857522],[-75.397257,39.855775],[-75.392258,39.859774],[-75.38368,39.85843],[-75.38368,39.862331],[-75.376212,39.861518],[-75.375105,39.866218],[-75.376161,39.87358],[-75.382436,39.874037],[-75.385149,39.876124],[-75.383999,39.882178],[-75.390066,39.889997],[-75.39525,39.893905],[-75.392555,39.89573],[-75.392019,39.901006],[-75.384634,39.913523],[-75.378087,39.912663],[-75.380936,39.919011],[-75.367567,39.928513],[-75.366822,39.926054],[-75.360814,39.924151],[-75.360023,39.912278],[-75.357132,39.909853],[-75.351692,39.913328],[-75.343116,39.914288],[-75.337536,39.905407],[-75.340619,39.903507],[-75.337923,39.89663],[-75.348575,39.889414],[-75.355023,39.892645],[-75.357774,39.887421],[-75.351672,39.883886],[-75.350413,39.881246],[-75.355153,39.873941],[-75.361303,39.872321],[-75.362186,39.866818],[-75.367057,39.865701],[-75.362706,39.8603],[-75.359227,39.862887],[-75.35075,39.865978],[-75.348601,39.86302],[-75.340692,39.866871],[-75.334542,39.864318],[-75.330338,39.867931],[-75.319288,39.874313],[-75.312515,39.87323],[-75.31347,39.866342],[-75.309193,39.86702],[-75.293397,39.86697],[-75.271241,39.875304],[-75.262539,39.876578],[-75.265325,39.88163],[-75.272485,39.876715],[-75.276398,39.880686],[-75.28196,39.881573],[-75.287947,39.880454],[-75.28635,39.884826],[-75.288878,39.886443],[-75.292493,39.892627],[-75.299213,39.895389],[-75.300466,39.898877],[-75.285069,39.905804],[-75.288257,39.907881],[-75.292948,39.905709],[-75.299756,39.911276],[-75.28905,39.916992],[-75.275311,39.923225],[-75.28343,39.926336],[-75.282544,39.930741],[-75.284283,39.934973],[-75.289743,39.94311],[-75.278453,39.948017]]]},"properties":{"district":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.166227,39.963112],[-75.165349,39.967149],[-75.160395,39.967064],[-75.169435,39.925558],[-75.2017,39.919834],[-75.208526,39.921033],[-75.212428,39.92523],[-75.211253,39.928519],[-75.206072,39.935371],[-75.223302,39.931315],[-75.223219,39.933389],[-75.229726,39.936743],[-75.240052,39.945917],[-75.238476,39.953485],[-75.240449,39.953733],[-75.238785,39.961715],[-75.240762,39.96196],[-75.239131,39.969753],[-75.237455,39.970141],[-75.239467,39.980914],[-75.23724,39.98484],[-75.244491,39.985667],[-75.249214,39.990547],[-75.263687,39.982658],[-75.276482,39.976959],[-75.283928,39.987217],[-75.292825,39.996878],[-75.311432,40.01981],[-75.320699,40.016216],[-75.349457,40.052905],[-75.341382,40.056934],[-75.337501,40.060993],[-75.328784,40.064168],[-75.323163,40.061791],[-75.314965,40.064808],[-75.306212,40.065325],[-75.306087,40.068407],[-75.298797,40.068909],[-75.286266,40.072389],[-75.279804,40.070091],[-75.271456,40.059292],[-75.268759,40.058922],[-75.264431,40.054094],[-75.243133,40.073628],[-75.22361,40.092907],[-75.188461,40.07275],[-75.176438,40.084649],[-75.161957,40.07613],[-75.135193,40.061031],[-75.12632,40.055481],[-75.134194,40.019619],[-75.137669,40.003645],[-75.147887,39.993078],[-75.142173,39.992343],[-75.143844,39.984683],[-75.148109,39.983604],[-75.150661,39.979325],[-75.157581,39.980223],[-75.159442,39.971467],[-75.167703,39.971211],[-75.186368,39.973537],[-75.176219,39.964409],[-75.166227,39.963112]]]},"properties":{"district":2}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.48799999999994,41.12545700000004],[-79.47989099999995,41.126853000000054],[-79.472618,41.12516800000002],[-79.462426,41.125028],[-79.462815,41.129532],[-79.4657519999999,41.13544000000004],[-79.46277600000002,41.13793100000005],[-79.45626099999996,41.14694599999997],[-79.45376599999993,41.148602000000025],[-79.45316299999996,41.157651],[-79.460777,41.157339],[-79.46003,41.157635],[-79.45751999999997,41.158452000000025],[-79.45230799999996,41.16737699999999],[-79.45519300000001,41.171445999999996],[-79.453697,41.173857999999974],[-79.44804499999992,41.174836000000035],[-79.44655399999994,41.170319999999975],[-79.44147499999994,41.167982000000016],[-79.43955599999994,41.163846000000056],[-79.43281599999993,41.16309499999999],[-79.43311999999995,41.190499000000095],[-79.43134299999996,41.19001099999998],[-79.42730799999995,41.17646900000002],[-79.42315799999999,41.17597700000004],[-79.41750999999998,41.18002700000006],[-79.41644399999993,41.186247999999985],[-79.41320800000001,41.192067],[-79.40913099999995,41.195616000000044],[-79.41253999999998,41.20120999999999],[-79.41320099999993,41.206258999999996],[-79.40913600000002,41.215317999999996],[-79.404148,41.221979],[-79.390036,41.19644],[-79.3711449999999,41.160965000000004],[-79.361346,41.162574000000056],[-79.35648699999999,41.14524600000008],[-79.36340899999999,41.13637200000001],[-79.36498600000002,41.091595000000034],[-79.32086899999997,41.097837],[-79.27500099999992,41.10283300000002],[-79.237343,41.108415000000065],[-79.22608199999999,41.10965200000001],[-79.211173,41.11257500000001],[-79.21131999999992,41.07873700000002],[-79.21449399999997,41.07877500000003],[-79.21520100000001,41.048932999999984],[-79.21019700000001,41.049091000000054],[-79.21263799999997,40.96648300000004],[-79.21254499999999,40.960527000000035],[-79.21570600000001,40.94005000000002],[-79.21530299999998,40.913884],[-79.21520399999997,40.848640000000024],[-79.214901,40.788506000000034],[-79.215215,40.77594200000006],[-79.28984099999995,40.697271000000065],[-79.358475,40.624531],[-79.37782999999993,40.60395900000001],[-79.45017600000003,40.530149000000016],[-79.45503299999999,40.53410700000003],[-79.46428899999997,40.534080000000024],[-79.476383,40.529604],[-79.47691800000001,40.53577900000002],[-79.47933699999993,40.537038],[-79.48472899999993,40.53419800000006],[-79.48570600000001,40.52837600000002],[-79.490182,40.525704],[-79.49794999999999,40.52653299999999],[-79.498925,40.53215199999998],[-79.507256,40.537364],[-79.508283,40.538473],[-79.51191200000001,40.54268300000005],[-79.52099199999994,40.54130500000005],[-79.52624900000002,40.54236400000002],[-79.53621299999998,40.55033300000004],[-79.547093,40.555521],[-79.55728599999995,40.560961],[-79.56110999999993,40.5641130000001],[-79.570605,40.583535],[-79.56638999999997,40.59296099999998],[-79.55621399999998,40.59980900000002],[-79.55115800000003,40.60214499999999],[-79.55182899999997,40.604704999999996],[-79.558502,40.60499300000003],[-79.56600600000002,40.607953],[-79.57033199999998,40.606720999999986],[-79.57467800000002,40.602625000000046],[-79.581191,40.60252899999998],[-79.58437499999992,40.60704100000003],[-79.58378199999997,40.61041400000006],[-79.58955899999987,40.616593000000044],[-79.58866199999993,40.625521000000035],[-79.58282299999998,40.63316900000002],[-79.58693499999998,40.63673700000002],[-79.59147899999994,40.63433700000004],[-79.59635899999991,40.62832100000004],[-79.60210299999999,40.624497],[-79.60895199999992,40.62595399999997],[-79.609208,40.633345],[-79.60949599999992,40.63980900000002],[-79.61312799999997,40.64361699999996],[-79.62221599999998,40.64569700000001],[-79.62861599999995,40.64867300000001],[-79.63605599999998,40.65448099999998],[-79.638137,40.665601000000024],[-79.64404100000002,40.66884899999997],[-79.65295299999993,40.671904999999995],[-79.66245699999997,40.67832100000001],[-79.66834499999995,40.68004900000001],[-79.68014600000002,40.67194400000002],[-79.69258700000003,40.669732],[-79.70754599999992,40.669850999999994],[-79.73274399999994,40.66924000000001],[-79.79899299999998,40.671978999999986],[-79.81183800000001,40.67225500000005],[-79.82863599999999,40.671073],[-79.851548,40.67216600000001],[-79.87546299999997,40.672278],[-79.91470799999993,40.673234000000015],[-79.928591,40.672922],[-79.96076999999994,40.672306000000034],[-79.987758,40.673579],[-80.02100599999996,40.67406100000001],[-80.07139299999994,40.674173999999994],[-80.07143399999998,40.674934999999984],[-80.100239,40.674038],[-80.10871,40.673916],[-80.12510499999996,40.673669000000025],[-80.14845099999997,40.674290000000084],[-80.14979399999999,40.69269400000003],[-80.151504,40.722776],[-80.155014,40.78728100000005],[-80.155858,40.798371],[-80.15653399999997,40.81727999999999],[-80.15948699999997,40.872961000000046],[-80.16000599999994,40.88690900000001],[-80.16254699999996,40.93775100000006],[-80.17283699999993,40.934437000000024],[-80.178642,40.937279],[-80.18367799999997,40.93732500000006],[-80.19036099999997,40.930595000000025],[-80.188987,40.926781],[-80.18966599999997,40.924717000000015],[-80.20148499999989,40.92047899999998],[-80.20704600000003,40.921016000000066],[-80.21640799999993,40.91494],[-80.21757300000002,40.90977500000016],[-80.263986,40.909002],[-80.30738599999994,40.90805499999998],[-80.35433799999988,40.90747100000002],[-80.45254300000003,40.90523000000002],[-80.51914563239606,40.90245174278499],[-80.519008,40.92157199999997],[-80.5189558561957,41.0141347077031],[-80.51898500000001,41.119141000000035],[-80.51914399999998,41.17120300000005],[-80.51878899999997,41.21017100000001],[-80.51869299999998,41.24885500000003],[-80.51899599999992,41.26830000000002],[-80.51879400000001,41.30550900000003],[-80.51912899999995,41.31240799999999],[-80.51899199999995,41.40434300000001],[-80.51916899999999,41.46258100000001],[-80.51915699999999,41.528769000000025],[-80.51933899999996,41.53929700000004],[-80.5193647082891,41.61383688039423],[-80.51940799999997,41.739358999999986],[-80.51923899999996,41.76513800000004],[-80.51932017684668,41.8907553411357],[-80.51921899999996,41.919275],[-80.5194210528169,41.97752432042435],[-80.50569799999994,41.98211500000003],[-80.495003,41.987246],[-80.48916499999999,41.98791000000003],[-80.47591299999999,41.992278],[-80.45736499999991,41.99755400000001],[-80.44020999999995,42.003860999999986],[-80.41995600000001,42.009925],[-80.40148199999999,42.01376000000004],[-80.38838499999997,42.018367000000026],[-80.37404199999999,42.02442499999999],[-80.37186900000002,42.02396600000001],[-80.36325099999995,42.027973],[-80.34916899999992,42.03024300000007],[-80.32997600000002,42.03616800000001],[-80.296758,42.04907600000004],[-80.291315,42.05218100000004],[-80.267571,42.06040599999999],[-80.25708099999997,42.066254],[-80.24738399999994,42.070521],[-80.24041899999999,42.07625300000001],[-80.23320200000002,42.07739700000006],[-80.215201,42.082859999999975],[-80.20624499999992,42.087925000000055],[-80.19809599999999,42.08976000000015],[-80.188085,42.09425700000002],[-80.16588399999998,42.10585700000004],[-80.15849799999991,42.11051999999998],[-80.15408400000001,42.11475699999999],[-80.13559600000002,42.149346999999985],[-80.12930999999996,42.15617100000001],[-80.11752999999993,42.16486499999997],[-80.10847599999992,42.16924000000002],[-80.09991999999993,42.17188200000003],[-80.08851199999995,42.17318399999998],[-80.06616899999996,42.17188200000004],[-80.07044799999993,42.16818300000004],[-80.07890600000002,42.16568400000004],[-80.08002799999993,42.163625],[-80.07198100000001,42.15535700000002],[-80.07473199999997,42.152972000000005],[-80.073932,42.14670799999998],[-80.06107999999995,42.14485700000004],[-80.04139599999993,42.15363600000002],[-80.03140399999998,42.13824399999997],[-80.02198199999995,42.14167300000007],[-80.01548599999994,42.13239600000002],[-80.01271699999997,42.133429],[-80.00337599999999,42.11725600000001],[-80.04119,42.103538],[-80.06987800000003,42.093067],[-80.067604,42.091335],[-80.067803,42.088413],[-80.07201400000002,42.08514700000002],[-80.07695599999997,42.08614799999999],[-80.07917600000003,42.08949800000002],[-80.11231299999997,42.07719099999999],[-80.11658199999998,42.08368300000003],[-80.134242,42.07666],[-80.132709,42.074165],[-80.12584199999999,42.06311000000003],[-80.14789100000002,42.054290000000044],[-80.146647,42.048961],[-80.14257,42.040541000000005],[-80.176392,42.02867600000006],[-80.17754299999997,42.03050600000007],[-80.20231399999999,42.02188400000005],[-80.202472,42.005747],[-80.20385900000001,41.999154000000004],[-80.20432999999993,41.96977800000002],[-80.26454900000002,41.97028500000001],[-80.265096,41.949954],[-80.26595000000002,41.91495000000001],[-80.26615600000001,41.890542999999965],[-80.205966,41.88998300000011],[-80.20654499999999,41.84904499999998],[-80.176295,41.849193],[-80.125026,41.849290000000025],[-80.094574,41.849583],[-80.07114699999997,41.84943500000002],[-80.035233,41.85011],[-79.936327,41.85039100000001],[-79.886837,41.850741],[-79.826969,41.850875],[-79.824431,41.850876],[-79.803375,41.850916],[-79.747557,41.850778],[-79.712764,41.851256],[-79.693114,41.851299],[-79.690186,41.851277],[-79.680353,41.851524000000005],[-79.653791,41.850973],[-79.61207199999993,41.850055999999995],[-79.61232999999991,41.82999999999999],[-79.61277199999999,41.750056],[-79.61267299999997,41.72247000000006],[-79.61297699999993,41.70119000000005],[-79.61256599999994,41.695017],[-79.612966,41.67446400000001],[-79.612837,41.631728],[-79.61286599999998,41.617058000000036],[-79.64411699999994,41.61720600000001],[-79.644429,41.618405],[-79.64483,41.621749999999984],[-79.64974999999998,41.622780000000056],[-79.65013799999993,41.636196000000034],[-79.674348,41.63651],[-79.68049499999995,41.63651200000007],[-79.68060999999993,41.63987000000003],[-79.68725999999998,41.63995000000003],[-79.690052,41.632588],[-79.68865600000001,41.63178900000004],[-79.68808199999998,41.61736300000001],[-79.721444,41.617576],[-79.76835699999998,41.617711000000035],[-79.76834499999993,41.62095499999998],[-79.79859099999999,41.621353000000035],[-79.82887599999992,41.62205699999998],[-79.82957599999997,41.60205700000003],[-79.84947999999997,41.59766200000002],[-79.8500539999999,41.587055999999976],[-79.87317999999999,41.581202000000005],[-79.87017699999994,41.57425600000006],[-79.892988,41.574157000000014],[-79.89287299999992,41.562317],[-79.90863499999996,41.562008000000056],[-79.909477,41.55005400000003],[-79.92547999999998,41.54975400000003],[-79.92347999999993,41.537555000000054],[-79.94357900000001,41.53745399999997],[-79.942579,41.52525400000002],[-79.959179,41.525353000000024],[-79.958384,41.51350700000001],[-79.96448799999996,41.51283300000004],[-79.98145199999995,41.51290000000005],[-79.981722,41.511476],[-79.98177900000002,41.50015600000004],[-79.99868099999996,41.500953000000045],[-79.99981399999994,41.49003400000001],[-79.99978,41.38742],[-79.99978,41.293133],[-79.999779,41.21182900000006],[-79.99920399999999,41.19709200000001],[-79.99977899999995,41.17186099999999],[-79.95928999999994,41.17165700000003],[-79.90642400000003,41.17212000000008],[-79.86929300000001,41.172741000000016],[-79.83705,41.173014],[-79.80342899999997,41.17312300000003],[-79.76869399999997,41.17273500000005],[-79.71881899999994,41.17264600000002],[-79.69498399999995,41.172865],[-79.69234999999995,41.17202799999999],[-79.680207,41.161197],[-79.680522,41.155334],[-79.680754,41.154956],[-79.686,41.149058],[-79.685753,41.143407],[-79.67950299999995,41.13677499999999],[-79.67866499999997,41.13066799999997],[-79.67981799999995,41.12553099999999],[-79.67928799999994,41.11624200000001],[-79.670927,41.117767999999984],[-79.66574700000002,41.12355100000004],[-79.65764799999991,41.127209000000015],[-79.65144399999997,41.12811000000001],[-79.64797300000002,41.13948100000002],[-79.65101899999989,41.143433000000066],[-79.656087,41.13942100000004],[-79.66190699999996,41.13911900000002],[-79.664624,41.141173],[-79.66915499999999,41.14466199999998],[-79.66715099999992,41.146455999999986],[-79.65812199999995,41.14989700000001],[-79.64529999999999,41.15075300000004],[-79.63446599999997,41.154083],[-79.62980999999995,41.15203899999996],[-79.63423599999993,41.14497599999999],[-79.63031299999993,41.143160000000016],[-79.62221099999995,41.14186700000005],[-79.62319599999994,41.13290700000003],[-79.62067499999993,41.131142999999994],[-79.61622199999992,41.133385999999994],[-79.61500499999997,41.137301000000015],[-79.60867499999999,41.14378400000004],[-79.60699899999999,41.150955999999994],[-79.60485599999993,41.154493000000016],[-79.60566199999991,41.170519],[-79.53852599999996,41.16297000000004],[-79.5308559999999,41.160721000000024],[-79.52507599999996,41.15734500000004],[-79.514105,41.15663599999997],[-79.51333699999998,41.140913],[-79.50976099999997,41.14097400000003],[-79.51027099999996,41.11915299999998],[-79.502524,41.117961],[-79.49623399999999,41.116119000000026],[-79.49141299999992,41.12372900000001],[-79.48799999999994,41.12545700000004]]]},"properties":{"district":3}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.87848,40.255196],[-76.884916,40.247265],[-76.878707,40.243889],[-76.866473,40.231157],[-76.859023,40.226328],[-76.839468,40.221615],[-76.834785,40.217962],[-76.828859,40.20502],[-76.821638,40.201343],[-76.800585,40.200111],[-76.787668,40.19155],[-76.774014,40.184091],[-76.763034,40.178955],[-76.756379,40.177052],[-76.750844,40.173372],[-76.749112,40.167113],[-76.748259,40.155761],[-76.74579,40.145793],[-76.745568,40.139298],[-76.743537,40.13085],[-76.737236,40.125245],[-76.732652,40.122732],[-76.72162,40.12007],[-76.710932,40.113843],[-76.706844,40.109721],[-76.697187,40.102492],[-76.687529,40.092303],[-76.680428,40.083192],[-76.675504,40.073596],[-76.671267,40.069028],[-76.663825,40.063227],[-76.653722,40.059813],[-76.644508,40.058069],[-76.643618,40.059619],[-76.620598,40.054729],[-76.613366,40.054477],[-76.597588,40.051867],[-76.588482,40.049313],[-76.571217,40.045669],[-76.553895,40.046725],[-76.541455,40.051037],[-76.534524,40.051348],[-76.531552,40.046157],[-76.532168,40.038232],[-76.527868,40.02799],[-76.520327,40.020022],[-76.513638,40.015623],[-76.509586,40.009423],[-76.500611,40.000624],[-76.498454,39.99673],[-76.495352,39.976128],[-76.487389,39.962135],[-76.479207,39.954813],[-76.47358,39.947352],[-76.467577,39.943049],[-76.45975,39.94125],[-76.448969,39.934338],[-76.430401,39.928907],[-76.422156,39.925832],[-76.40567,39.915955],[-76.391674,39.912819],[-76.385786,39.906167],[-76.383777,39.893617],[-76.379642,39.888201],[-76.38008,39.881902],[-76.381709,39.87906],[-76.380692,39.873675],[-76.376657,39.865642],[-76.369641,39.860399],[-76.361674,39.857054],[-76.350759,39.84709],[-76.350543,39.837756],[-76.342401,39.828866],[-76.338255,39.822062],[-76.328353,39.814788],[-76.315702,39.810037],[-76.311074,39.80363],[-76.290182,39.785011],[-76.283265,39.780184],[-76.279839,39.77964],[-76.276113,39.77562],[-76.271598,39.765806],[-76.267475,39.759358],[-76.260577,39.752035],[-76.256564,39.75004],[-76.249584,39.73998],[-76.245573,39.737174],[-76.240582,39.730313],[-76.23869,39.725093],[-76.239805,39.721335],[-76.418784,39.721204],[-76.55136,39.721377],[-76.569389,39.721203],[-76.706361,39.721194],[-76.79189646187166,39.72069289671616],[-76.8901,39.720401],[-76.936412,39.720707],[-76.990903,39.7198],[-76.999465,39.720111],[-77.03044799878175,39.719940727029],[-77.058204,39.7202],[-77.216806,39.719998],[-77.45942705075412,39.72001722977033],[-77.461573,39.775118],[-77.463175,39.820473],[-77.466091,39.861116],[-77.469611,39.916169],[-77.471085,39.944077],[-77.403606,39.994478],[-77.360967,40.001993],[-77.276721,40.017202],[-77.229249,40.025046],[-77.18563,40.029501],[-77.162071,40.051697],[-77.140532,40.067709],[-77.042983,40.137845],[-77.031548,40.146642],[-77.028853,40.147838],[-77.022749,40.145814],[-77.019675,40.148309],[-77.012601,40.148421],[-77.019277,40.181423],[-77.006283,40.17741],[-76.999191,40.178779],[-76.9957,40.177292],[-76.987271,40.178493],[-76.976788,40.194153],[-76.968783,40.203048],[-76.973279,40.202839],[-76.977295,40.199642],[-76.984435,40.211185],[-76.987498,40.209886],[-76.986704,40.204434],[-76.991138,40.202523],[-77.001586,40.219374],[-77.007706,40.224303],[-77.011917,40.223896],[-77.013673,40.219173],[-77.025954,40.215724],[-77.031229,40.216541],[-77.032138,40.210804],[-77.03019,40.207062],[-77.043425,40.20265],[-77.062356,40.197593],[-77.077272,40.1963],[-77.087583,40.196177],[-77.10429,40.194864],[-77.106032,40.218873],[-77.102539,40.221936],[-77.104907,40.230486],[-77.108113,40.232718],[-77.101835,40.25017],[-77.098848,40.253379],[-77.100902,40.262096],[-77.095273,40.273655],[-77.095729,40.279141],[-77.083942,40.30122],[-77.07466,40.302236],[-77.063874,40.301967],[-77.059659,40.303293],[-77.041769,40.304402],[-77.024519,40.303958],[-77.005128,40.305617],[-76.974219,40.31033],[-76.949282,40.316861],[-76.91497,40.328484],[-76.916811,40.331676],[-76.904717,40.335011],[-76.902203,40.332683],[-76.899033,40.324342],[-76.888859,40.32624],[-76.882305,40.318627],[-76.88043,40.310379],[-76.878114,40.308608],[-76.879088,40.304124],[-76.877041,40.302279],[-76.880453,40.298433],[-76.8821,40.289589],[-76.881163,40.283053],[-76.876134,40.279484],[-76.869439,40.281091],[-76.86107,40.27785],[-76.85787,40.270954],[-76.850107,40.273216],[-76.838922,40.271996],[-76.841401,40.267762],[-76.839638,40.258495],[-76.851551,40.257618],[-76.85069,40.251208],[-76.856646,40.247971],[-76.861122,40.24979],[-76.863749,40.255569],[-76.87848,40.255196]]]},"properties":{"district":4}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.835874,40.484232],[-77.844137,40.473447],[-77.870182,40.445244],[-77.888746,40.42866],[-77.896369,40.417778],[-77.90805,40.414018],[-77.912416,40.408176],[-77.913844,40.398679],[-77.889116,40.398965],[-77.887717,40.391358],[-77.877701,40.39355],[-77.870289,40.392261],[-77.872533,40.38557],[-77.872558,40.381196],[-77.865195,40.37153],[-77.861203,40.369842],[-77.856914,40.365228],[-77.852906,40.36479],[-77.845221,40.368766],[-77.838343,40.36903],[-77.829837,40.363895],[-77.818636,40.360542],[-77.814698,40.362489],[-77.810393,40.368591],[-77.76172,40.368733],[-77.830825,40.292574],[-77.841904,40.280168],[-77.855957,40.263005],[-77.887887,40.273403],[-77.896135,40.279703],[-77.90061,40.281047],[-77.908676,40.287508],[-77.913571,40.285358],[-77.920815,40.291999],[-77.921675,40.294699],[-77.9616,40.313795],[-77.960614,40.324135],[-77.999777,40.328355],[-78.007353,40.329819],[-78.008629,40.326776],[-78.112972,40.348854],[-78.131541,40.337834],[-78.139233,40.346885],[-78.166372,40.371707],[-78.16757,40.375193],[-78.164305,40.379367],[-78.156155,40.386291],[-78.160648,40.390106],[-78.165481,40.388157],[-78.171397,40.392712],[-78.174937,40.393195],[-78.181379,40.384571],[-78.191046,40.39187],[-78.186282,40.399877],[-78.177947,40.408643],[-78.15941,40.433793],[-78.155447,40.438543],[-78.134233,40.473242],[-78.130081,40.48199],[-78.129448,40.489165],[-78.131741,40.496822],[-78.135633,40.498214],[-78.148898,40.487629],[-78.153373,40.488558],[-78.153626,40.496947],[-78.150476,40.510302],[-78.14924,40.525307],[-78.147328,40.533251],[-78.139947,40.546187],[-78.139364,40.550595],[-78.132745,40.561616],[-78.132422,40.56449],[-78.128638,40.567953],[-78.132991,40.57039],[-78.136162,40.569171],[-78.140989,40.557027],[-78.145135,40.553874],[-78.14514,40.549077],[-78.149884,40.546045],[-78.151479,40.540711],[-78.163553,40.536106],[-78.166433,40.531423],[-78.171747,40.534415],[-78.176818,40.534471],[-78.178307,40.537649],[-78.185595,40.543703],[-78.189145,40.551243],[-78.197083,40.558444],[-78.17828,40.583786],[-78.179295,40.592725],[-78.184212,40.595295],[-78.171675,40.612257],[-78.166371,40.617948],[-78.169732,40.621025],[-78.173427,40.628265],[-78.178722,40.626909],[-78.185273,40.631511],[-78.189172,40.632792],[-78.190296,40.637168],[-78.197219,40.639351],[-78.196082,40.642497],[-78.198356,40.64809],[-78.206152,40.655128],[-78.213695,40.665404],[-78.22197,40.674539],[-78.217141,40.682876],[-78.204871,40.695874],[-78.199865,40.698972],[-78.195243,40.697294],[-78.182585,40.705901],[-78.170042,40.712596],[-78.164057,40.713493],[-78.162411,40.711696],[-78.155389,40.714489],[-78.155867,40.717745],[-78.146377,40.720882],[-78.139076,40.724275],[-78.128083,40.731067],[-78.116521,40.739127],[-78.131834,40.743017],[-78.221735,40.739375],[-78.359912,40.732592],[-78.35043,40.724827],[-78.447958,40.72557],[-78.502347,40.72604],[-78.617111,40.725188],[-78.6582,40.724981],[-78.687852,40.72418],[-78.75774,40.724714],[-78.801697,40.724539],[-78.803291,40.72882],[-78.806274,40.729742],[-78.806598,40.780303],[-78.806406,40.861618],[-78.805167,40.90598],[-78.867471,40.906219],[-78.946421,40.908439],[-78.999755,40.909138],[-79.069929,40.909793],[-79.124724,40.910571],[-79.173787,40.91089],[-79.21531,40.911346],[-79.215706,40.94005],[-79.212545,40.960527],[-79.212638,40.966483],[-79.210197,41.049091],[-79.215201,41.048933],[-79.214494,41.078775],[-79.21132,41.078737],[-79.211173,41.112575],[-79.226082,41.109652],[-79.237343,41.108415],[-79.275001,41.102833],[-79.320869,41.097837],[-79.364986,41.091595],[-79.363409,41.136372],[-79.356487,41.145246],[-79.361346,41.162574],[-79.371145,41.160965],[-79.390036,41.19644],[-79.404148,41.221979],[-79.409136,41.215318],[-79.413201,41.206259],[-79.41254,41.20121],[-79.409131,41.195616],[-79.413208,41.192067],[-79.416444,41.186248],[-79.41751,41.180027],[-79.423158,41.175977],[-79.427308,41.176469],[-79.431343,41.190011],[-79.43312,41.190499],[-79.432816,41.163095],[-79.439556,41.163846],[-79.441475,41.167982],[-79.446554,41.17032],[-79.448045,41.174836],[-79.453697,41.173858],[-79.455193,41.171446],[-79.452308,41.167377],[-79.45752,41.158452],[-79.46003,41.157635],[-79.460777,41.157339],[-79.453163,41.157651],[-79.453766,41.148602],[-79.456261,41.146946],[-79.462776,41.137931],[-79.465752,41.13544],[-79.462815,41.129532],[-79.462426,41.125028],[-79.472618,41.125168],[-79.479891,41.126853],[-79.488,41.125457],[-79.491413,41.123729],[-79.496234,41.116119],[-79.502524,41.117961],[-79.510271,41.119153],[-79.509761,41.140974],[-79.513337,41.140913],[-79.514105,41.156636],[-79.525076,41.157345],[-79.530856,41.160721],[-79.538526,41.16297],[-79.605662,41.170519],[-79.604856,41.154493],[-79.606999,41.150956],[-79.608675,41.143784],[-79.615005,41.137301],[-79.616222,41.133386],[-79.620675,41.131143],[-79.623196,41.132907],[-79.622211,41.141867],[-79.630313,41.14316],[-79.634236,41.144976],[-79.62981,41.152039],[-79.634466,41.154083],[-79.6453,41.150753],[-79.658122,41.149897],[-79.667151,41.146456],[-79.669155,41.144662],[-79.664624,41.141173],[-79.661907,41.139119],[-79.656087,41.139421],[-79.651019,41.143433],[-79.647973,41.139481],[-79.651444,41.12811],[-79.657648,41.127209],[-79.665747,41.123551],[-79.670927,41.117768],[-79.679288,41.116242],[-79.679818,41.125531],[-79.678665,41.130668],[-79.679503,41.136775],[-79.685753,41.143407],[-79.686,41.149058],[-79.680754,41.154956],[-79.680522,41.155334],[-79.680207,41.161197],[-79.69235,41.172028],[-79.694984,41.172865],[-79.718819,41.172646],[-79.768694,41.172735],[-79.803429,41.173123],[-79.83705,41.173014],[-79.869293,41.172741],[-79.906424,41.17212],[-79.95929,41.171657],[-79.999779,41.171861],[-79.999204,41.197092],[-79.999779,41.211829],[-79.99978,41.293133],[-79.99978,41.38742],[-79.999814,41.490034],[-79.998681,41.500953],[-79.981779,41.500156],[-79.981722,41.511476],[-79.981452,41.5129],[-79.964488,41.512833],[-79.958384,41.513507],[-79.959179,41.525353],[-79.942579,41.525254],[-79.943579,41.537454],[-79.92348,41.537555],[-79.92548,41.549754],[-79.909477,41.550054],[-79.908635,41.562008],[-79.892873,41.562317],[-79.892988,41.574157],[-79.870177,41.574256],[-79.87318,41.581202],[-79.850054,41.587056],[-79.84948,41.597662],[-79.829576,41.602057],[-79.828876,41.622057],[-79.798591,41.621353],[-79.768345,41.620955],[-79.768357,41.617711],[-79.721444,41.617576],[-79.688082,41.617363],[-79.688656,41.631789],[-79.690052,41.632588],[-79.68726,41.63995],[-79.68061,41.63987],[-79.680495,41.636512],[-79.674348,41.63651],[-79.650138,41.636196],[-79.64975,41.62278],[-79.64483,41.62175],[-79.644429,41.618405],[-79.644117,41.617206],[-79.612866,41.617058],[-79.612837,41.631728],[-79.612966,41.674464],[-79.612566,41.695017],[-79.612977,41.70119],[-79.612673,41.72247],[-79.612772,41.750056],[-79.61233,41.83],[-79.612072,41.850056],[-79.653791,41.850973],[-79.680353,41.851524],[-79.690186,41.851277],[-79.693114,41.851299],[-79.712764,41.851256],[-79.747557,41.850778],[-79.803375,41.850916],[-79.824431,41.850876],[-79.826969,41.850875],[-79.886837,41.850741],[-79.936327,41.850391],[-80.035233,41.85011],[-80.071147,41.849435],[-80.094574,41.849583],[-80.125026,41.84929],[-80.176295,41.849193],[-80.206545,41.849045],[-80.205966,41.889983],[-80.266156,41.890543],[-80.26595,41.91495],[-80.265096,41.949954],[-80.264549,41.970285],[-80.20433,41.969778],[-80.203859,41.999154],[-80.202472,42.005747],[-80.202314,42.021884],[-80.177543,42.030506],[-80.176392,42.028676],[-80.14257,42.040541],[-80.146647,42.048961],[-80.147891,42.05429],[-80.125842,42.06311],[-80.132709,42.074165],[-80.134242,42.07666],[-80.116582,42.083683],[-80.112313,42.077191],[-80.079176,42.089498],[-80.076956,42.086148],[-80.072014,42.085147],[-80.067803,42.088413],[-80.067604,42.091335],[-80.069878,42.093067],[-80.04119,42.103538],[-80.003376,42.117256],[-80.012717,42.133429],[-80.015486,42.132396],[-80.021982,42.141673],[-80.031404,42.138244],[-80.041396,42.153636],[-80.021302,42.162672],[-80.015266,42.166313],[-80.01182372694666,42.16650590033337],[-79.985846,42.178765],[-79.98538477810361,42.18056919153585],[-79.976003,42.184269],[-79.9612529851795,42.19159980881807],[-79.955197,42.193707],[-79.94932953712109,42.197630334468215],[-79.937511,42.202999],[-79.93097231977231,42.20677544720326],[-79.923855,42.207322],[-79.918224,42.210865],[-79.902248,42.216031],[-79.889095,42.222817],[-79.873218,42.231984],[-79.870241,42.230245],[-79.843531,42.235703],[-79.835026,42.239751],[-79.83158,42.242656],[-79.818983,42.244591],[-79.812759,42.249325],[-79.809334,42.250425],[-79.787887,42.260934],[-79.783309,42.264035],[-79.777678,42.265355],[-79.773823,42.263943],[-79.76195248861737,42.26931211866045],[-79.762152,42.243054],[-79.761759,42.162675],[-79.762122,42.131246],[-79.76170914774029,42.11882408594251],[-79.761816,42.019814],[-79.761313,41.998808],[-79.694765,41.998856],[-79.67421534963168,41.99932299498387],[-79.657617,41.998883],[-79.62484476496732,41.99906551871742],[-79.56975054256314,41.99876588294971],[-79.552197,41.998384],[-79.53114215495975,41.99849689110925],[-79.47252,41.998254],[-79.25865884745205,41.99878493728051],[-79.207032,41.999056],[-79.17857,41.999458],[-79.061265,41.999259],[-78.983065,41.998949],[-78.874759,41.997559],[-78.749754,41.998109],[-78.59665,41.999877],[-78.308128,41.999415],[-78.271204,41.998968],[-78.124731,42.000451],[-78.031429,41.999417],[-77.997508,41.998758],[-77.92966778223064,41.9986620681483],[-77.904659,41.998366],[-77.817187,41.998562],[-77.77671,41.998428],[-77.63527152296133,41.99938571022521],[-77.610027,41.999368],[-77.609159,41.961249],[-77.607916,41.924291],[-77.606887,41.88254],[-77.474098,41.882046],[-77.473845,41.908495],[-77.351409,41.910876],[-77.349383,41.858441],[-77.347639,41.823905],[-77.39462,41.823366],[-77.394246,41.776366],[-77.401819,41.774446],[-77.422196,41.755927],[-77.428142,41.746985],[-77.430295,41.735],[-77.429665,41.731565],[-77.421885,41.725857],[-77.426414,41.721146],[-77.424183,41.712233],[-77.415748,41.712383],[-77.414886,41.704792],[-77.406486,41.704924],[-77.403691,41.707903],[-77.393687,41.708087],[-77.393546,41.689768],[-77.458987,41.689354],[-77.602566,41.687374],[-77.599278,41.542271],[-77.598972,41.509943],[-77.597282,41.441056],[-77.584671,41.441301],[-77.58054,41.435579],[-77.57574,41.421602],[-77.57093,41.415238],[-77.564435,41.412683],[-77.550449,41.395826],[-77.541899,41.381296],[-77.540008,41.368101],[-77.537438,41.364803],[-77.526537,41.358528],[-77.516145,41.355867],[-77.499193,41.353577],[-77.485567,41.345281],[-77.475987,41.338294],[-77.474533,41.334021],[-77.475029,41.326689],[-77.471862,41.314273],[-77.468245,41.310429],[-77.456424,41.304639],[-77.452906,41.300019],[-77.450054,41.293262],[-77.445158,41.287762],[-77.434252,41.28453],[-77.4294,41.28214],[-77.424945,41.273103],[-77.416125,41.270056],[-77.410667,41.266221],[-77.404407,41.25817],[-77.399043,41.253053],[-77.390824,41.247786],[-77.37035,41.233079],[-77.362729,41.23358],[-77.358047,41.230597],[-77.349627,41.228873],[-77.348555,41.223096],[-77.349765,41.219918],[-77.334303,41.220476],[-77.320891,41.218932],[-77.306364,41.208077],[-77.29901,41.200967],[-77.29058,41.1951],[-77.293651,41.191069],[-77.293059,41.186473],[-77.288306,41.18299],[-77.277411,41.180539],[-77.27245,41.175443],[-77.272018,41.172534],[-77.262231,41.162409],[-77.249691,41.150907],[-77.236104,41.13754],[-77.222752,41.125073],[-77.164278,41.068708],[-77.144111,41.06884],[-77.143804,41.042801],[-77.204027,40.99271],[-77.279236,40.90971],[-77.315887,40.88267],[-77.332782,40.870609],[-77.36418,40.846937],[-77.377769,40.844393],[-77.413857,40.833073],[-77.439033,40.82381],[-77.511092,40.793954],[-77.552535,40.777592],[-77.571938,40.769333],[-77.593355,40.761247],[-77.652574,40.744921],[-77.661988,40.737742],[-77.681334,40.729758],[-77.676611,40.716452],[-77.70117,40.704982],[-77.699239,40.698065],[-77.703066,40.69268],[-77.708356,40.690488],[-77.703787,40.679936],[-77.685346,40.684904],[-77.682708,40.682717],[-77.68708,40.67675],[-77.690614,40.675036],[-77.710846,40.662003],[-77.720737,40.657968],[-77.720434,40.654575],[-77.728193,40.648573],[-77.735142,40.644741],[-77.75162,40.6323],[-77.758907,40.629589],[-77.77248,40.625932],[-77.779853,40.619655],[-77.801329,40.599569],[-77.811561,40.589182],[-77.81944,40.580084],[-77.8216,40.578931],[-77.832545,40.562534],[-77.841827,40.550035],[-77.816513,40.500074],[-77.828245,40.491558],[-77.835874,40.484232]]]},"properties":{"district":5}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.771833,40.14875],[-75.767704,40.147188],[-75.758971,40.148732],[-75.754322,40.146544],[-75.746141,40.149926],[-75.740331,40.148222],[-75.730902,40.149227],[-75.728159,40.15123],[-75.720464,40.151795],[-75.712854,40.155178],[-75.707121,40.156528],[-75.700439,40.161841],[-75.693184,40.163734],[-75.693076,40.167597],[-75.697097,40.168767],[-75.696043,40.174364],[-75.697228,40.176891],[-75.704332,40.176942],[-75.709987,40.175521],[-75.712275,40.182092],[-75.715477,40.185298],[-75.707784,40.190627],[-75.710146,40.195866],[-75.717925,40.202187],[-75.729386,40.204435],[-75.7326,40.206051],[-75.743178,40.216721],[-75.729863,40.224489],[-75.695949,40.242365],[-75.678955,40.263778],[-75.638828,40.312772],[-75.653816,40.322254],[-75.673774,40.335789],[-75.683971,40.342228],[-75.662723,40.36711],[-75.676734,40.372063],[-75.72278,40.387076],[-75.721112,40.39267],[-75.738895,40.397141],[-75.739531,40.404565],[-75.759415,40.409675],[-75.796825,40.417846],[-75.79805,40.416684],[-75.804545,40.402456],[-75.823682,40.387541],[-75.812216,40.38085],[-75.819814,40.361403],[-75.815122,40.355143],[-75.813195,40.349524],[-75.805061,40.343414],[-75.79892,40.334955],[-75.784907,40.327381],[-75.780037,40.32626],[-75.790651,40.293069],[-75.796283,40.270919],[-75.800375,40.25321],[-75.805892,40.253939],[-75.807945,40.25164],[-75.812958,40.25467],[-75.826152,40.256748],[-75.819164,40.270528],[-75.825631,40.274308],[-75.83317,40.275818],[-75.840403,40.275872],[-75.845851,40.278374],[-75.848034,40.282258],[-75.860941,40.287708],[-75.87406,40.289681],[-75.878161,40.289604],[-75.888363,40.294182],[-75.891128,40.297044],[-75.895996,40.28396],[-75.922736,40.261684],[-75.927419,40.261177],[-75.933854,40.264019],[-75.935629,40.267204],[-75.947362,40.26749],[-75.946344,40.277899],[-75.948749,40.285255],[-75.946162,40.291819],[-75.951433,40.293328],[-75.956931,40.289013],[-75.965574,40.285682],[-75.968882,40.297772],[-75.972008,40.295045],[-75.976647,40.295063],[-75.978598,40.300594],[-75.9752,40.305693],[-75.969819,40.314159],[-75.965983,40.310697],[-75.960478,40.311192],[-75.960491,40.314301],[-75.956382,40.317927],[-75.951841,40.310546],[-75.940073,40.31502],[-75.936309,40.31204],[-75.93961,40.31015],[-75.934802,40.30612],[-75.924034,40.30784],[-75.924845,40.303692],[-75.918178,40.297403],[-75.917181,40.301815],[-75.922075,40.305565],[-75.920329,40.311162],[-75.91997,40.319307],[-75.916257,40.323013],[-75.910103,40.322732],[-75.897617,40.312146],[-75.892038,40.31372],[-75.875636,40.335917],[-75.882614,40.339669],[-75.889431,40.33952],[-75.891132,40.342677],[-75.896049,40.345292],[-75.906863,40.345795],[-75.907284,40.351217],[-75.90293,40.355856],[-75.896273,40.372607],[-75.89314,40.384463],[-75.898493,40.380978],[-75.907614,40.382019],[-75.908633,40.386327],[-75.904583,40.387757],[-75.899425,40.391821],[-75.902698,40.397292],[-75.914694,40.393395],[-75.914031,40.387779],[-75.920319,40.385582],[-75.924101,40.382163],[-75.92639,40.38691],[-75.931311,40.385666],[-75.933127,40.381756],[-75.932828,40.376052],[-75.927986,40.367695],[-75.940627,40.367572],[-75.94305,40.370943],[-75.949591,40.369754],[-75.950572,40.366744],[-75.941372,40.36437],[-75.960708,40.354583],[-75.95086,40.344627],[-75.953328,40.339222],[-75.954464,40.32769],[-75.958464,40.324753],[-75.958809,40.321447],[-75.968008,40.322539],[-75.973055,40.321633],[-75.97798,40.315311],[-75.981816,40.31302],[-75.988629,40.320932],[-75.978176,40.323676],[-75.980662,40.32783],[-75.986532,40.327866],[-75.989769,40.331633],[-75.994593,40.331389],[-75.99617,40.335181],[-76.002922,40.339391],[-76.005187,40.334685],[-76.011671,40.328858],[-76.025621,40.334769],[-76.031285,40.327436],[-76.034651,40.32653],[-76.041108,40.322058],[-76.042804,40.314124],[-76.046141,40.308963],[-76.055065,40.307281],[-76.055464,40.304133],[-76.068927,40.295374],[-76.077071,40.285139],[-76.084092,40.280245],[-76.091764,40.277692],[-76.151475,40.315695],[-76.175737,40.306481],[-76.261063,40.273346],[-76.307578,40.255066],[-76.368198,40.247416],[-76.43541,40.238221],[-76.466307,40.2284],[-76.475035,40.271251],[-76.477606,40.28666],[-76.456425,40.293468],[-76.424822,40.296631],[-76.408775,40.300144],[-76.416448,40.322549],[-76.424023,40.319915],[-76.436088,40.327737],[-76.440361,40.325847],[-76.442415,40.329525],[-76.438361,40.332923],[-76.439462,40.338251],[-76.42711,40.339096],[-76.42704,40.345552],[-76.441532,40.344499],[-76.449797,40.34856],[-76.449232,40.351411],[-76.443597,40.352324],[-76.439248,40.354991],[-76.431868,40.355802],[-76.421637,40.355548],[-76.402771,40.352196],[-76.402561,40.34973],[-76.393525,40.349641],[-76.391965,40.344692],[-76.374379,40.353819],[-76.348761,40.364321],[-76.350605,40.37728],[-76.353199,40.389401],[-76.370664,40.387859],[-76.341021,40.434358],[-76.307108,40.413438],[-76.181234,40.409669],[-76.173964,40.399392],[-76.168918,40.40153],[-76.169469,40.406767],[-76.167865,40.40889],[-76.168389,40.414992],[-76.165683,40.419389],[-76.159536,40.419907],[-76.155265,40.41749],[-76.153139,40.41117],[-76.145263,40.412027],[-76.140152,40.416052],[-76.139126,40.419341],[-76.131566,40.413401],[-76.130699,40.417377],[-76.119035,40.426461],[-76.112458,40.426227],[-76.115541,40.430308],[-76.116816,40.437888],[-76.11946,40.439067],[-76.120318,40.45185],[-76.11616,40.455047],[-76.117938,40.472943],[-76.113088,40.474382],[-76.106445,40.474205],[-76.106579,40.477937],[-76.072355,40.483503],[-76.042264,40.42964],[-75.991754,40.44073],[-75.980183,40.442758],[-75.97189,40.447418],[-75.977135,40.454469],[-75.974709,40.461446],[-75.976325,40.466516],[-75.958474,40.473062],[-75.948205,40.47765],[-75.924202,40.486002],[-75.896632,40.497124],[-75.892855,40.49436],[-75.889112,40.499472],[-75.884428,40.502601],[-75.882515,40.506697],[-75.883163,40.51635],[-75.874647,40.525838],[-75.861113,40.523205],[-75.857742,40.524097],[-75.858968,40.531857],[-75.855947,40.533982],[-75.851439,40.531697],[-75.845958,40.534126],[-75.843105,40.539247],[-75.836077,40.536371],[-75.825601,40.53603],[-75.823873,40.532874],[-75.811318,40.519115],[-75.818421,40.513125],[-75.805772,40.504581],[-75.750642,40.469823],[-75.742847,40.475361],[-75.726879,40.493048],[-75.706695,40.475897],[-75.689578,40.456979],[-75.615828,40.461044],[-75.636018,40.440996],[-75.627883,40.420595],[-75.601219,40.431242],[-75.594786,40.428021],[-75.592173,40.437585],[-75.571926,40.473348],[-75.49874,40.427706],[-75.490104,40.422192],[-75.496993,40.409522],[-75.499751,40.407794],[-75.496321,40.404183],[-75.485968,40.385793],[-75.472537,40.377364],[-75.478556,40.377045],[-75.481442,40.367803],[-75.484112,40.365355],[-75.492983,40.382394],[-75.500241,40.388413],[-75.507175,40.399596],[-75.509751,40.398442],[-75.533064,40.400922],[-75.531699,40.398611],[-75.534737,40.394895],[-75.54222,40.400798],[-75.541333,40.408365],[-75.547535,40.404683],[-75.558028,40.392493],[-75.535982,40.381736],[-75.545902,40.370733],[-75.496842,40.344359],[-75.531201,40.309224],[-75.549652,40.28901],[-75.535695,40.280511],[-75.479682,40.249596],[-75.465748,40.26019],[-75.470341,40.259454],[-75.471745,40.262332],[-75.470023,40.266514],[-75.466928,40.267766],[-75.464636,40.261013],[-75.459194,40.265055],[-75.444014,40.256323],[-75.449983,40.254305],[-75.450058,40.250865],[-75.456309,40.248156],[-75.45172,40.238915],[-75.452853,40.225073],[-75.449593,40.216083],[-75.44996,40.209282],[-75.453073,40.208463],[-75.45245,40.201643],[-75.410849,40.176201],[-75.376196,40.155902],[-75.36347,40.15102],[-75.37402,40.140548],[-75.365839,40.1355],[-75.373981,40.127203],[-75.376807,40.12894],[-75.387823,40.118161],[-75.393529,40.117204],[-75.416546,40.107859],[-75.424332,40.107906],[-75.433364,40.110287],[-75.443776,40.108962],[-75.461729,40.103035],[-75.462926,40.097253],[-75.456666,40.094453],[-75.456186,40.087776],[-75.440721,40.094322],[-75.437864,40.089573],[-75.420124,40.097201],[-75.405647,40.07856],[-75.392632,40.060974],[-75.366687,40.072355],[-75.361042,40.065515],[-75.414991,40.041787],[-75.404394,40.027434],[-75.4226,40.014703],[-75.453771,39.993589],[-75.4431,39.993708],[-75.43563,39.98883],[-75.435816,39.985059],[-75.461954,39.972811],[-75.502135,39.954367],[-75.523816,39.944124],[-75.519541,39.938956],[-75.518963,39.934302],[-75.523959,39.931798],[-75.526171,39.934987],[-75.530475,39.932049],[-75.523505,39.923142],[-75.530238,39.922123],[-75.536109,39.929926],[-75.542734,39.927181],[-75.544395,39.923401],[-75.542494,39.918417],[-75.550454,39.914931],[-75.546416,39.909731],[-75.555593,39.905724],[-75.562539,39.901638],[-75.570336,39.911766],[-75.587905,39.903643],[-75.594524,39.91188],[-75.596808,39.91082],[-75.610783,39.928709],[-75.612857,39.926027],[-75.620154,39.929422],[-75.626901,39.937757],[-75.631528,39.939961],[-75.634984,39.939204],[-75.642069,39.948817],[-75.64733,39.953069],[-75.649803,39.957683],[-75.657993,39.958176],[-75.655123,39.954291],[-75.676194,39.944655],[-75.667857,39.934435],[-75.679901,39.934135],[-75.679236,39.929945],[-75.681941,39.926518],[-75.685096,39.927286],[-75.684718,39.931745],[-75.689548,39.932849],[-75.692425,39.93673],[-75.702626,39.946432],[-75.693931,39.950723],[-75.695482,39.951987],[-75.697832,39.961758],[-75.702405,39.964686],[-75.709474,39.966071],[-75.726764,39.962709],[-75.735142,39.95783],[-75.741315,39.963177],[-75.743858,39.969204],[-75.743787,39.972951],[-75.739691,39.978381],[-75.724916,39.987296],[-75.723292,39.993648],[-75.724024,39.999126],[-75.738161,39.997279],[-75.761025,39.993508],[-75.764912,40.014109],[-75.779719,40.012821],[-75.783988,40.011174],[-75.784496,40.02285],[-75.789565,40.022435],[-75.785357,40.047809],[-75.774824,40.048565],[-75.774444,40.063217],[-75.730289,40.066802],[-75.730592,40.071583],[-75.738224,40.098646],[-75.750145,40.100019],[-75.757488,40.110029],[-75.759005,40.113545],[-75.764112,40.11907],[-75.765375,40.124248],[-75.77779,40.123446],[-75.782732,40.117224],[-75.800187,40.131177],[-75.800395,40.140805],[-75.810559,40.154835],[-75.799534,40.155659],[-75.785691,40.15423],[-75.781971,40.148668],[-75.771833,40.14875]]]},"properties":{"district":6}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.420179,40.246454],[-75.385776,40.226369],[-75.355244,40.255529],[-75.337428,40.273503],[-75.322256,40.264861],[-75.298663,40.250412],[-75.303445,40.243623],[-75.290074,40.235167],[-75.291932,40.233233],[-75.28345,40.228186],[-75.29227,40.21656],[-75.281287,40.211575],[-75.284498,40.20742],[-75.274789,40.203593],[-75.264153,40.213776],[-75.273039,40.219163],[-75.262477,40.228908],[-75.245484,40.218667],[-75.26024,40.204238],[-75.255503,40.202143],[-75.245748,40.195646],[-75.235158,40.206809],[-75.231737,40.20566],[-75.228353,40.20833],[-75.215675,40.200479],[-75.211593,40.204841],[-75.215111,40.210087],[-75.205506,40.221687],[-75.205491,40.223799],[-75.191707,40.237382],[-75.190307,40.23062],[-75.187705,40.225183],[-75.195073,40.217688],[-75.167923,40.20144],[-75.166376,40.199762],[-75.166517,40.192263],[-75.162748,40.188801],[-75.159286,40.192158],[-75.1584,40.195734],[-75.143435,40.186717],[-75.149311,40.179951],[-75.150335,40.187833],[-75.163532,40.184129],[-75.16296,40.182463],[-75.142836,40.170476],[-75.136813,40.176638],[-75.127808,40.171566],[-75.143155,40.156923],[-75.167507,40.171446],[-75.18035,40.158563],[-75.182216,40.16398],[-75.18756,40.161422],[-75.201637,40.169813],[-75.199976,40.171479],[-75.205366,40.178488],[-75.218713,40.165351],[-75.223748,40.171294],[-75.227816,40.185222],[-75.233359,40.179717],[-75.244301,40.186603],[-75.24623,40.183787],[-75.253383,40.187808],[-75.261005,40.179968],[-75.261848,40.176092],[-75.231341,40.159335],[-75.252357,40.150235],[-75.255884,40.146104],[-75.244247,40.138976],[-75.233397,40.150591],[-75.212655,40.138208],[-75.210038,40.139121],[-75.204284,40.144723],[-75.201841,40.15349],[-75.208311,40.157327],[-75.202731,40.162726],[-75.19244,40.156425],[-75.20186,40.147017],[-75.202947,40.142295],[-75.201244,40.137149],[-75.198288,40.136019],[-75.192677,40.14164],[-75.184591,40.136765],[-75.178664,40.143934],[-75.172508,40.13665],[-75.176162,40.131888],[-75.170256,40.126897],[-75.175894,40.119544],[-75.182074,40.118941],[-75.168559,40.110551],[-75.178261,40.101069],[-75.181387,40.10193],[-75.19465,40.109793],[-75.199267,40.108203],[-75.211139,40.107568],[-75.215876,40.108587],[-75.237735,40.086152],[-75.249067,40.084189],[-75.254253,40.087886],[-75.246288,40.093834],[-75.237047,40.096053],[-75.238674,40.10101],[-75.253586,40.101753],[-75.261356,40.103675],[-75.271917,40.109839],[-75.267244,40.114637],[-75.278282,40.112761],[-75.279254,40.118163],[-75.28406,40.126335],[-75.289033,40.122226],[-75.295839,40.126466],[-75.298658,40.119589],[-75.307197,40.115422],[-75.310448,40.109658],[-75.3177,40.107596],[-75.324773,40.108553],[-75.316659,40.124794],[-75.298153,40.143159],[-75.303781,40.146412],[-75.296355,40.149395],[-75.293836,40.154352],[-75.284325,40.163476],[-75.291056,40.167495],[-75.299853,40.164486],[-75.312918,40.161707],[-75.323322,40.15758],[-75.327028,40.159751],[-75.333314,40.153427],[-75.334788,40.149044],[-75.339296,40.145775],[-75.338321,40.143327],[-75.344533,40.141754],[-75.365128,40.120954],[-75.365732,40.1164],[-75.355662,40.115172],[-75.346892,40.111097],[-75.350844,40.109426],[-75.361128,40.113307],[-75.379144,40.118156],[-75.377501,40.113501],[-75.370468,40.103516],[-75.379385,40.102057],[-75.383547,40.099648],[-75.394417,40.098589],[-75.399686,40.096152],[-75.410896,40.095106],[-75.409605,40.091541],[-75.394059,40.08326],[-75.389664,40.081806],[-75.364586,40.076328],[-75.353814,40.075202],[-75.347673,40.073389],[-75.341776,40.068681],[-75.333766,40.066662],[-75.328784,40.064168],[-75.337501,40.060993],[-75.341382,40.056934],[-75.349457,40.052905],[-75.320699,40.016216],[-75.311432,40.01981],[-75.292825,39.996878],[-75.283928,39.987217],[-75.276482,39.976959],[-75.29578,39.967839],[-75.287734,39.959333],[-75.284556,39.960142],[-75.279498,39.954961],[-75.282057,39.951509],[-75.278453,39.948017],[-75.289743,39.94311],[-75.284283,39.934973],[-75.282544,39.930741],[-75.28343,39.926336],[-75.275311,39.923225],[-75.28905,39.916992],[-75.299756,39.911276],[-75.292948,39.905709],[-75.288257,39.907881],[-75.285069,39.905804],[-75.300466,39.898877],[-75.299213,39.895389],[-75.292493,39.892627],[-75.288878,39.886443],[-75.28635,39.884826],[-75.287947,39.880454],[-75.28196,39.881573],[-75.276398,39.880686],[-75.272485,39.876715],[-75.265325,39.88163],[-75.262539,39.876578],[-75.271241,39.875304],[-75.293397,39.86697],[-75.309193,39.86702],[-75.31347,39.866342],[-75.312515,39.87323],[-75.319288,39.874313],[-75.330338,39.867931],[-75.334542,39.864318],[-75.340692,39.866871],[-75.348601,39.86302],[-75.35075,39.865978],[-75.359227,39.862887],[-75.362706,39.8603],[-75.367057,39.865701],[-75.362186,39.866818],[-75.361303,39.872321],[-75.355153,39.873941],[-75.350413,39.881246],[-75.351672,39.883886],[-75.357774,39.887421],[-75.355023,39.892645],[-75.348575,39.889414],[-75.337923,39.89663],[-75.340619,39.903507],[-75.337536,39.905407],[-75.343116,39.914288],[-75.351692,39.913328],[-75.357132,39.909853],[-75.360023,39.912278],[-75.360814,39.924151],[-75.366822,39.926054],[-75.367567,39.928513],[-75.380936,39.919011],[-75.378087,39.912663],[-75.384634,39.913523],[-75.392019,39.901006],[-75.392555,39.89573],[-75.39525,39.893905],[-75.390066,39.889997],[-75.383999,39.882178],[-75.385149,39.876124],[-75.382436,39.874037],[-75.376161,39.87358],[-75.375105,39.866218],[-75.376212,39.861518],[-75.38368,39.862331],[-75.38368,39.85843],[-75.392258,39.859774],[-75.397257,39.855775],[-75.400613,39.857522],[-75.405673,39.856346],[-75.410779,39.859634],[-75.418298,39.856151],[-75.403703,39.838322],[-75.398937,39.833812],[-75.389849,39.815948],[-75.403737,39.807512],[-75.415062,39.801919],[-75.423104,39.806709],[-75.440507,39.815142],[-75.45349,39.820457],[-75.468187,39.825571],[-75.481039,39.829319],[-75.498345,39.83338],[-75.523935,39.837448],[-75.539716,39.838925],[-75.56358,39.839494],[-75.585185,39.838478],[-75.610364,39.83536],[-75.626124,39.832308],[-75.642344,39.828217],[-75.6666,39.819963],[-75.680468,39.813939],[-75.700089,39.803478],[-75.719502,39.790365],[-75.732996,39.779107],[-75.744394,39.767855],[-75.753066,39.757631],[-75.760353,39.747406],[-75.766363,39.737486],[-75.773786,39.7222],[-75.81208,39.722182],[-75.81685,39.729374],[-75.818238,39.739119],[-75.810219,39.739982],[-75.812281,39.754959],[-75.810271,39.755204],[-75.810515,39.763873],[-75.81213,39.766032],[-75.801175,39.767881],[-75.802538,39.774308],[-75.796511,39.774602],[-75.796954,39.777709],[-75.785066,39.778765],[-75.776489,39.78079],[-75.779289,39.801952],[-75.780919,39.819425],[-75.775261,39.82002],[-75.776204,39.830673],[-75.782725,39.830163],[-75.784984,39.848777],[-75.734095,39.85381],[-75.715119,39.855986],[-75.710598,39.854678],[-75.710751,39.851652],[-75.722217,39.850119],[-75.718312,39.834101],[-75.700425,39.838196],[-75.703342,39.852645],[-75.703526,39.856996],[-75.693017,39.857442],[-75.689957,39.858548],[-75.665699,39.861378],[-75.670777,39.8677],[-75.66743,39.869018],[-75.655695,39.868259],[-75.64329,39.85704],[-75.637066,39.849944],[-75.639665,39.870329],[-75.643592,39.872609],[-75.641812,39.881097],[-75.64465,39.88455],[-75.647584,39.891913],[-75.671063,39.884138],[-75.698098,39.897509],[-75.718923,39.901437],[-75.782386,39.914617],[-75.78764,39.916068],[-75.784427,39.923459],[-75.773102,39.95867],[-75.769002,39.958218],[-75.766171,39.965456],[-75.768516,39.985321],[-75.782235,39.984228],[-75.786943,39.988173],[-75.788458,39.997357],[-75.791473,40.00003],[-75.789429,40.003157],[-75.790152,40.008933],[-75.799119,40.007715],[-75.8145,40.004408],[-75.82511,40.005152],[-75.873441,39.994231],[-75.878213,39.987241],[-75.878258,39.982732],[-75.889928,39.982035],[-75.888307,39.975908],[-75.894631,39.969726],[-75.893464,39.964906],[-75.907076,39.962459],[-75.907815,39.969168],[-75.920318,39.9683],[-75.925745,39.963022],[-75.928992,39.963688],[-75.927216,39.949256],[-75.90614,39.953936],[-75.904792,39.955217],[-75.890431,39.958637],[-75.883405,39.95146],[-75.879557,39.949312],[-75.873511,39.949027],[-75.872127,39.943794],[-75.867012,39.94145],[-75.859413,39.942661],[-75.85376,39.932764],[-75.856644,39.931719],[-75.856649,39.927594],[-75.85222,39.923574],[-75.846531,39.922175],[-75.841949,39.909279],[-75.837312,39.907436],[-75.83532,39.90079],[-75.853072,39.889229],[-75.851942,39.879964],[-75.848035,39.85911],[-75.853512,39.858688],[-75.843606,39.800656],[-75.886145,39.798351],[-75.905417,39.796897],[-75.902935,39.808818],[-75.922936,39.809438],[-75.937857,39.819935],[-75.962412,39.826478],[-75.969466,39.832346],[-75.983725,39.833383],[-75.994511,39.836252],[-76.001422,39.836165],[-76.009568,39.832647],[-76.012552,39.83425],[-76.016473,39.831481],[-76.022826,39.8308],[-76.027034,39.824153],[-76.037636,39.826917],[-76.038178,39.82458],[-76.032242,39.818976],[-76.029925,39.812505],[-76.034438,39.812517],[-76.037557,39.803357],[-76.040275,39.801467],[-76.048287,39.803968],[-76.050668,39.801789],[-76.06191,39.807896],[-76.065587,39.807473],[-76.069643,39.810587],[-76.0689,39.813155],[-76.072598,39.816652],[-76.078223,39.81726],[-76.080297,39.820966],[-76.08876,39.823504],[-76.092235,39.830029],[-76.096584,39.826286],[-76.101063,39.832431],[-76.104414,39.834673],[-76.108057,39.842957],[-76.110313,39.850731],[-76.112511,39.853396],[-76.118487,39.854741],[-76.121642,39.862476],[-76.132332,39.868354],[-76.138166,39.869454],[-76.142609,39.867873],[-76.145055,39.871845],[-76.144382,39.878273],[-76.141489,39.880431],[-76.13897,39.888082],[-76.115099,39.88823],[-76.092756,39.889082],[-76.106179,39.920428],[-76.118042,39.951669],[-76.135859,39.944845],[-76.137046,39.944973],[-76.142368,39.960205],[-76.161338,40.010583],[-76.154396,40.00479],[-76.151973,40.009528],[-76.146428,40.011847],[-76.142078,40.008088],[-76.136298,40.010296],[-76.163593,40.028245],[-76.184057,40.04295],[-76.169017,40.04548],[-76.170181,40.055107],[-76.160557,40.05758],[-76.154493,40.06523],[-76.14759,40.064219],[-76.144246,40.065876],[-76.128204,40.065277],[-76.121031,40.068137],[-76.117273,40.067944],[-76.113465,40.071077],[-76.109121,40.069852],[-76.104314,40.072232],[-76.099612,40.071588],[-76.087395,40.065016],[-76.07001,40.059315],[-76.05934,40.05875],[-76.04658,40.053235],[-76.045668,40.059148],[-76.040806,40.062455],[-76.037435,40.070252],[-76.029635,40.071041],[-76.015922,40.076074],[-76.013569,40.080063],[-76.006864,40.07889],[-76.003239,40.080602],[-75.999815,40.086024],[-76.002546,40.089417],[-75.999881,40.093102],[-75.99564,40.095414],[-75.984127,40.097919],[-75.966592,40.098932],[-75.963981,40.103676],[-75.955249,40.104647],[-75.955459,40.107221],[-75.94778,40.107348],[-75.912548,40.120633],[-75.890457,40.129531],[-75.877787,40.135478],[-75.875162,40.138071],[-75.929574,40.173556],[-75.954767,40.190142],[-75.988851,40.211634],[-76.007266,40.223823],[-76.043993,40.247196],[-76.033159,40.253388],[-76.023614,40.27157],[-76.019761,40.28027],[-76.025853,40.282421],[-76.035991,40.279976],[-76.039522,40.283846],[-76.040411,40.291002],[-76.045279,40.295306],[-76.045526,40.300275],[-76.049264,40.304813],[-76.043082,40.309246],[-76.032985,40.31449],[-76.02272,40.310027],[-76.019584,40.309588],[-76.01779,40.314527],[-76.010624,40.310701],[-76.006165,40.317378],[-76.009311,40.32096],[-76.008816,40.324498],[-76.003715,40.325154],[-76.003314,40.321963],[-75.997209,40.322098],[-75.995201,40.31588],[-75.999226,40.308489],[-75.999227,40.302834],[-75.988928,40.307428],[-75.985726,40.310004],[-75.9752,40.305693],[-75.978598,40.300594],[-75.976647,40.295063],[-75.972008,40.295045],[-75.968882,40.297772],[-75.965574,40.285682],[-75.956931,40.289013],[-75.951433,40.293328],[-75.946162,40.291819],[-75.948749,40.285255],[-75.946344,40.277899],[-75.947362,40.26749],[-75.935629,40.267204],[-75.933854,40.264019],[-75.927419,40.261177],[-75.922736,40.261684],[-75.895996,40.28396],[-75.891128,40.297044],[-75.888363,40.294182],[-75.878161,40.289604],[-75.87406,40.289681],[-75.860941,40.287708],[-75.848034,40.282258],[-75.845851,40.278374],[-75.840403,40.275872],[-75.83317,40.275818],[-75.825631,40.274308],[-75.819164,40.270528],[-75.826152,40.256748],[-75.812958,40.25467],[-75.807945,40.25164],[-75.805892,40.253939],[-75.800375,40.25321],[-75.796283,40.270919],[-75.790651,40.293069],[-75.780037,40.32626],[-75.784907,40.327381],[-75.79892,40.334955],[-75.805061,40.343414],[-75.813195,40.349524],[-75.815122,40.355143],[-75.819814,40.361403],[-75.812216,40.38085],[-75.823682,40.387541],[-75.804545,40.402456],[-75.79805,40.416684],[-75.796825,40.417846],[-75.759415,40.409675],[-75.739531,40.404565],[-75.738895,40.397141],[-75.721112,40.39267],[-75.72278,40.387076],[-75.676734,40.372063],[-75.662723,40.36711],[-75.683971,40.342228],[-75.673774,40.335789],[-75.653816,40.322254],[-75.638828,40.312772],[-75.678955,40.263778],[-75.695949,40.242365],[-75.729863,40.224489],[-75.743178,40.216721],[-75.7326,40.206051],[-75.729386,40.204435],[-75.717925,40.202187],[-75.710146,40.195866],[-75.707784,40.190627],[-75.715477,40.185298],[-75.712275,40.182092],[-75.709987,40.175521],[-75.704332,40.176942],[-75.697228,40.176891],[-75.696043,40.174364],[-75.697097,40.168767],[-75.693076,40.167597],[-75.693184,40.163734],[-75.700439,40.161841],[-75.707121,40.156528],[-75.712854,40.155178],[-75.720464,40.151795],[-75.728159,40.15123],[-75.730902,40.149227],[-75.740331,40.148222],[-75.746141,40.149926],[-75.754322,40.146544],[-75.758971,40.148732],[-75.767704,40.147188],[-75.771833,40.14875],[-75.781971,40.148668],[-75.785691,40.15423],[-75.799534,40.155659],[-75.810559,40.154835],[-75.800395,40.140805],[-75.800187,40.131177],[-75.782732,40.117224],[-75.77779,40.123446],[-75.765375,40.124248],[-75.764112,40.11907],[-75.759005,40.113545],[-75.757488,40.110029],[-75.750145,40.100019],[-75.738224,40.098646],[-75.730592,40.071583],[-75.730289,40.066802],[-75.774444,40.063217],[-75.774824,40.048565],[-75.785357,40.047809],[-75.789565,40.022435],[-75.784496,40.02285],[-75.783988,40.011174],[-75.779719,40.012821],[-75.764912,40.014109],[-75.761025,39.993508],[-75.738161,39.997279],[-75.724024,39.999126],[-75.723292,39.993648],[-75.724916,39.987296],[-75.739691,39.978381],[-75.743787,39.972951],[-75.743858,39.969204],[-75.741315,39.963177],[-75.735142,39.95783],[-75.726764,39.962709],[-75.709474,39.966071],[-75.702405,39.964686],[-75.697832,39.961758],[-75.695482,39.951987],[-75.693931,39.950723],[-75.702626,39.946432],[-75.692425,39.93673],[-75.689548,39.932849],[-75.684718,39.931745],[-75.685096,39.927286],[-75.681941,39.926518],[-75.679236,39.929945],[-75.679901,39.934135],[-75.667857,39.934435],[-75.676194,39.944655],[-75.655123,39.954291],[-75.657993,39.958176],[-75.649803,39.957683],[-75.64733,39.953069],[-75.642069,39.948817],[-75.634984,39.939204],[-75.631528,39.939961],[-75.626901,39.937757],[-75.620154,39.929422],[-75.612857,39.926027],[-75.610783,39.928709],[-75.596808,39.91082],[-75.594524,39.91188],[-75.587905,39.903643],[-75.570336,39.911766],[-75.562539,39.901638],[-75.555593,39.905724],[-75.546416,39.909731],[-75.550454,39.914931],[-75.542494,39.918417],[-75.544395,39.923401],[-75.542734,39.927181],[-75.536109,39.929926],[-75.530238,39.922123],[-75.523505,39.923142],[-75.530475,39.932049],[-75.526171,39.934987],[-75.523959,39.931798],[-75.518963,39.934302],[-75.519541,39.938956],[-75.523816,39.944124],[-75.502135,39.954367],[-75.461954,39.972811],[-75.435816,39.985059],[-75.43563,39.98883],[-75.4431,39.993708],[-75.453771,39.993589],[-75.4226,40.014703],[-75.404394,40.027434],[-75.414991,40.041787],[-75.361042,40.065515],[-75.366687,40.072355],[-75.392632,40.060974],[-75.405647,40.07856],[-75.420124,40.097201],[-75.437864,40.089573],[-75.440721,40.094322],[-75.456186,40.087776],[-75.456666,40.094453],[-75.462926,40.097253],[-75.461729,40.103035],[-75.443776,40.108962],[-75.433364,40.110287],[-75.424332,40.107906],[-75.416546,40.107859],[-75.393529,40.117204],[-75.387823,40.118161],[-75.376807,40.12894],[-75.373981,40.127203],[-75.365839,40.1355],[-75.37402,40.140548],[-75.36347,40.15102],[-75.376196,40.155902],[-75.410849,40.176201],[-75.45245,40.201643],[-75.453073,40.208463],[-75.44996,40.209282],[-75.449593,40.216083],[-75.452853,40.225073],[-75.45172,40.238915],[-75.456309,40.248156],[-75.450058,40.250865],[-75.449983,40.254305],[-75.444014,40.256323],[-75.422713,40.244028],[-75.420179,40.246454]]]},"properties":{"district":7}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.409733,40.487984],[-75.40488927682564,40.49106857039741],[-75.39583194606158,40.49683513890729],[-75.38677305830662,40.5026010002293],[-75.37771261316684,40.50836615409771],[-75.36865061024827,40.51413060024672],[-75.367911,40.514601],[-75.35974356590388,40.5200334235456],[-75.35084886076439,40.525947923129294],[-75.34195258574168,40.53186174057979],[-75.338633,40.534068],[-75.333048,40.536767],[-75.33244741141414,40.53715869701517],[-75.3234766084224,40.54300843708371],[-75.31450423851228,40.548857483233604],[-75.308745,40.552611],[-75.30545459420729,40.554636838564385],[-75.29626774944751,40.56029185643461],[-75.293528,40.561978],[-75.286875222534,40.56574664423021],[-75.27739443653704,40.57111589712691],[-75.26791212908445,40.57648437485701],[-75.25842829986325,40.58185207714904],[-75.258151,40.582009],[-75.24804851708198,40.586154052657385],[-75.23764046482339,40.590423022952216],[-75.236848,40.590748],[-75.22742141457461,40.59494775025557],[-75.21721666399607,40.59949273178069],[-75.196803,40.60858],[-75.192291,40.602676],[-75.1919184931929,40.60053732318318],[-75.19036761134028,40.591631746740454],[-75.190146,40.590359],[-75.190796,40.586838],[-75.19297143423205,40.583037744385656],[-75.195496,40.578627],[-75.19286100233516,40.574964531855564],[-75.192352,40.574257],[-75.1846931088211,40.56851110899059],[-75.183151,40.567354],[-75.1740573279371,40.56488349347252],[-75.171623,40.564222],[-75.162871,40.564096],[-75.16241210414145,40.56421743254946],[-75.157852,40.565424],[-75.15271762410214,40.56903439005581],[-75.148757,40.571819],[-75.14311052009593,40.57415465853091],[-75.140172,40.57537],[-75.13634912701912,40.5756793367644],[-75.13177916983592,40.57508520036653],[-75.12012221571939,40.57356882595086],[-75.1172526394759,40.57319535189682],[-75.10904358050375,40.57055454340309],[-75.10153047459944,40.568136927146384],[-75.09872985778644,40.56633961069095],[-75.095834,40.564481],[-75.09133,40.559848],[-75.0910346283864,40.559587782105474],[-75.08331351740702,40.5527846163599],[-75.07559397527051,40.5459809367309],[-75.075138,40.545579],[-75.0686374679456,40.54223679933593],[-75.0675543558354,40.539888679553016],[-75.067257,40.539244],[-75.06589423759327,40.53100891383185],[-75.06509,40.526148],[-75.06533088391826,40.52206820791683],[-75.06586063811432,40.51309414142906],[-75.066001,40.510716],[-75.06476693960343,40.50418044534514],[-75.06308832857377,40.49528849510612],[-75.06260495332648,40.4927275146696],[-75.06263568816607,40.48633168663087],[-75.062664,40.480439],[-75.0646693807503,40.477751320472734],[-75.067715,40.473669],[-75.06751185511754,40.469382581510835],[-75.067302,40.464954],[-75.06933953410804,40.46067448251002],[-75.070419,40.458407],[-75.070568,40.455165],[-75.06912500236078,40.452023920485495],[-75.067425,40.448323],[-75.06600418184938,40.44337722181641],[-75.06348358829024,40.4346013609864],[-75.06272775428268,40.431969343424534],[-75.06187815587256,40.425713746938925],[-75.061489,40.422848],[-75.0573413570375,40.41762644015509],[-75.056102,40.416066],[-75.04712059613946,40.413944967212956],[-75.046473,40.413792],[-75.03833882177202,40.40801893701251],[-75.036616,40.406796],[-75.02776246891953,40.40429807517284],[-75.024775,40.403455],[-75.01645569457538,40.405146364840455],[-75.0050574926959,40.407462581865175],[-75.00478417721519,40.40751810632911],[-74.99586,40.410384],[-74.99412246278504,40.40994837776539],[-74.98866840164004,40.408580771070014],[-74.98389058052845,40.40574816022995],[-74.978062,40.402292],[-74.97397368514359,40.40103438437833],[-74.96931108865466,40.39959987960303],[-74.96471425162727,40.39581788074467],[-74.96397938175454,40.39521321808991],[-74.961478,40.388935],[-74.96056963113116,40.38749424742055],[-74.95555946171162,40.379546444534284],[-74.95548723600439,40.37938928833001],[-74.95159118276521,40.37091069738195],[-74.948901,40.365055],[-74.94806805889465,40.362349393482916],[-74.945828,40.355072],[-74.94558244352048,40.35357545268309],[-74.94412009376418,40.34466175553754],[-74.943776,40.342564],[-74.939711,40.338006],[-74.938370183425,40.33711236037272],[-74.92949917523072,40.33119894360856],[-74.92681,40.329406],[-74.92093617180154,40.325032131958324],[-74.91741,40.322406],[-74.91203921200913,40.31916070410175],[-74.90831,40.316907],[-74.90142124936523,40.31586525200724],[-74.896409,40.315107],[-74.89088438844459,40.31225575965541],[-74.887109,40.310307],[-74.88186892958043,40.30651810553418],[-74.880609,40.305607],[-74.87385235047614,40.29994061879733],[-74.86820869206619,40.29520660398504],[-74.86656610168608,40.29294577811132],[-74.86085828766102,40.28508830945263],[-74.860492,40.284584],[-74.85658950564488,40.27672227819056],[-74.853108,40.269707],[-74.8523418524965,40.26834542306171],[-74.847697799394,40.26009085406294],[-74.84305487938295,40.25183609947014],[-74.842308,40.250508],[-74.836307,40.246208],[-74.83483382059043,40.2456497209126],[-74.82429318043036,40.24165440465293],[-74.823907,40.241508],[-74.819507,40.238508],[-74.81462921014078,40.23667446790781],[-74.80407296322544,40.232705396543736],[-74.795306,40.229408],[-74.79369887748314,40.2285077348971],[-74.78421321046503,40.22319318910415],[-74.781206,40.221508],[-74.77508492881678,40.21753409949428],[-74.771404,40.215144],[-74.76884026779382,40.21022586099687],[-74.766989,40.206674],[-74.76339596150406,40.20230397001558],[-74.760605,40.198909],[-74.75865922780629,40.19416186311879],[-74.755605,40.186709],[-74.75459253514742,40.185826383664455],[-74.751705,40.183309],[-74.74484656396308,40.18123344941796],[-74.744105,40.181009],[-74.737205,40.177609],[-74.73543883808811,40.17599919716187],[-74.733804,40.174509],[-74.7288813037953,40.1685597946365],[-74.72259991558617,40.1609667575076],[-74.722304,40.160609],[-74.72160115393609,40.15394089047936],[-74.72230012063366,40.15214867637479],[-74.724304,40.14701],[-74.72777472264568,40.144545650663474],[-74.7363839161299,40.13843156608091],[-74.740335,40.135625],[-74.743738,40.134454],[-74.74635437415782,40.13461537201668],[-74.75313,40.135033],[-74.75786524540578,40.13392462872643],[-74.762323,40.132881],[-74.76817831352848,40.129827965073694],[-74.769488,40.129145],[-74.77729493022323,40.12416953167421],[-74.781555,40.121454],[-74.78766877007737,40.120659372389206],[-74.788287,40.120579],[-74.79907674177983,40.122637344846126],[-74.799421,40.122703],[-74.80997516588495,40.12598429400449],[-74.815476,40.127694],[-74.82121575903747,40.127002496842934],[-74.822531,40.126844],[-74.826226,40.124066],[-74.8283135309713,40.12039533304028],[-74.83299763073026,40.11215733957259],[-74.833103,40.111972],[-74.83466168534692,40.105423588823534],[-74.83644204753756,40.10379229929453],[-74.842215,40.098502],[-74.84464270653396,40.097538643545384],[-74.853745,40.093926],[-74.8546409500865,40.09301664821323],[-74.858005,40.089602],[-74.859721,40.085311],[-74.85995422765463,40.08518250966078],[-74.865489,40.082133],[-74.87027767022214,40.0812679927916],[-74.877533,40.079957],[-74.88142303388028,40.078581202133954],[-74.885978,40.07697],[-74.89226602612673,40.07515247613526],[-74.90324749972321,40.07197728571687],[-74.907318,40.0708],[-74.914224,40.070354],[-74.91467301773471,40.07041790953766],[-74.921898,40.071446],[-74.92602999634686,40.07031134839325],[-74.935042,40.067836],[-74.93687285362081,40.06695382674467],[-74.94680533676153,40.06216708702226],[-74.95673642423048,40.05737949925544],[-74.96666611621337,40.0525910637072],[-74.97431985325996,40.04889913332002],[-74.97618663183938,40.05038030215377],[-74.98433550080098,40.05684480145997],[-74.984893,40.057287],[-74.980378,40.060349],[-74.98062734194254,40.06409561395363],[-74.980688,40.065007],[-74.97372874290353,40.07107078483916],[-74.973251,40.071487],[-74.971028,40.075981],[-74.96643006658357,40.07684974666353],[-74.963459,40.077411],[-74.958841,40.082503],[-74.95879722161568,40.082945299746285],[-74.958057,40.090423],[-74.95754770485225,40.091854922579806],[-74.956164,40.095745],[-74.961342,40.097496],[-74.96129161838078,40.09811565104304],[-74.960886,40.103104],[-74.96386050224031,40.10637585140355],[-74.965359,40.108024],[-74.96318645650683,40.114798846837225],[-74.963129,40.114978],[-74.964991,40.118635],[-74.970119,40.117201],[-74.97072310849205,40.11772523345297],[-74.973219,40.119891],[-74.98118003722871,40.1202139190686],[-74.981947,40.120245],[-74.982958,40.123353],[-74.988713,40.125685],[-74.9889793055728,40.125746884866466],[-74.997885,40.127816],[-74.99981226689836,40.12896109599422],[-75.00909020135985,40.134472643729985],[-75.01836964076757,40.13998345096346],[-75.02765058545711,40.14549351742999],[-75.03693303576401,40.151002842864806],[-75.04621699202373,40.156511427003075],[-75.05550245457172,40.16201926957989],[-75.059812,40.164575],[-75.06479584895872,40.167520031331684],[-75.07409631283035,40.17301456065244],[-75.08339828269743,40.17850834569946],[-75.09270175889273,40.18400138620743],[-75.10200674174897,40.18949368191091],[-75.11131323159879,40.19498523254442],[-75.12062122877474,40.2004760378424],[-75.126276,40.203811],[-75.1298908935825,40.206004943125606],[-75.13910042635477,40.211593222340056],[-75.14831147792191,40.21718077159452],[-75.15752404863639,40.22276759062423],[-75.159776,40.224133],[-75.16667405960783,40.228414575625315],[-75.17580486865317,40.234080540624554],[-75.18493720566443,40.23974578799344],[-75.19407107101009,40.24541031746794],[-75.19768,40.247648],[-75.2033189677438,40.250965617036215],[-75.21264185226033,40.256449307479365],[-75.22196624788072,40.26193224968858],[-75.2312921549369,40.26741444339732],[-75.24061957376065,40.27289588833901],[-75.243171,40.274395],[-75.24843067622946,40.26924859649679],[-75.25566923584974,40.26216425667206],[-75.26290627956064,40.25507946593279],[-75.27014180796317,40.247994224486426],[-75.271693,40.246475],[-75.278336,40.250646],[-75.27787782151702,40.250991499778074],[-75.274803,40.25331],[-75.28044292446799,40.25702266254935],[-75.286986,40.261329],[-75.28896613945388,40.25947806898726],[-75.29640958947827,40.25251911252636],[-75.298663,40.250412],[-75.30506284483849,40.254332523963804],[-75.31424320184583,40.259954972003165],[-75.322256,40.264861],[-75.32345699271576,40.26554524044424],[-75.33289100714568,40.2709191593808],[-75.337428,40.273503],[-75.34111546884358,40.269783837144786],[-75.34821738692,40.262619395141286],[-75.355244,40.255529],[-75.35532040833547,40.255456066544745],[-75.36267014777866,40.24843960694942],[-75.37001836351386,40.24142268251789],[-75.37736505613438,40.234405293461926],[-75.38471022623328,40.22738743999318],[-75.385776,40.226369],[-75.39376501125837,40.231035077909176],[-75.40311154678024,40.23649252106221],[-75.41245958892209,40.2419492122685],[-75.420179,40.246454],[-75.42145812079961,40.24522942443507],[-75.422713,40.244028],[-75.43049397722362,40.24852017359058],[-75.43988184259224,40.25393856107114],[-75.444014,40.256323],[-75.44927663421541,40.259350707949125],[-75.45867719133345,40.2647577855317],[-75.459194,40.265055],[-75.464636,40.261013],[-75.46552116908249,40.263621169883585],[-75.466928,40.267766],[-75.470023,40.266514],[-75.47081990379165,40.2645787296696],[-75.471745,40.262332],[-75.470341,40.259454],[-75.4657792159876,40.26018499849688],[-75.465748,40.26019],[-75.47406475372102,40.25386738433967],[-75.479682,40.249596],[-75.48279326408023,40.25131463564624],[-75.49232889744414,40.25658097527716],[-75.5018660151278,40.261846532139415],[-75.51140461741818,40.267111305965244],[-75.52094470460214,40.272375296486835],[-75.5304862769665,40.27763850343628],[-75.535695,40.280511],[-75.5398744409155,40.28305643613482],[-75.5490779638835,40.28866052064847],[-75.549652,40.28901],[-75.5433434241686,40.2959230532235],[-75.53661381674323,40.303295544019456],[-75.531201,40.309224],[-75.52982249131307,40.31063454261186],[-75.52278226585108,40.3178371956379],[-75.51574053821109,40.32503942180273],[-75.50869730777877,40.332241220906454],[-75.50165257393954,40.33944259274909],[-75.496842,40.344359],[-75.49989696929161,40.346002518444756],[-75.50952712296804,40.35118231756095],[-75.51915875598158,40.35636131787887],[-75.5287918686023,40.36153951912945],[-75.5384264611001,40.366716921043555],[-75.545902,40.370733],[-75.54440546144072,40.372393205215324],[-75.5377295398429,40.37979799757607],[-75.535982,40.381736],[-75.54331283272148,40.38531381081089],[-75.55324383670046,40.39015929010486],[-75.558028,40.392493],[-75.5546765519812,40.396387050095676],[-75.54820936421326,40.403899734218264],[-75.547535,40.404683],[-75.541333,40.408365],[-75.54157332232704,40.406314978114935],[-75.54222,40.400798],[-75.53907871176601,40.39832016469542],[-75.534737,40.394895],[-75.53180663911182,40.39847934709706],[-75.531699,40.398611],[-75.533064,40.400922],[-75.52487848646525,40.40005179219351],[-75.51319606807476,40.398808787204224],[-75.509751,40.398442],[-75.507175,40.399596],[-75.5048995376107,40.395926640302555],[-75.500241,40.388413],[-75.49964251295617,40.38791673745034],[-75.492983,40.382394],[-75.49226449827617,40.38101428155359],[-75.48791672835172,40.372664081824894],[-75.484112,40.365355],[-75.48317237046464,40.36621653031448],[-75.481442,40.367803],[-75.47933974306734,40.37453543335403],[-75.478556,40.377045],[-75.472537,40.377364],[-75.47436780780549,40.37851319032402],[-75.48346943378148,40.384225232161846],[-75.485968,40.385793],[-75.48933955251768,40.39178308209982],[-75.49398767760549,40.40003928447698],[-75.496321,40.404183],[-75.499751,40.407794],[-75.49973283762559,40.40780537997633],[-75.496993,40.409522],[-75.49383766674913,40.4153258179603],[-75.490104,40.422192],[-75.48852206802711,40.42121340226164],[-75.484057,40.418451],[-75.48024385150897,40.42202301108335],[-75.472800861721,40.42899386453283],[-75.46535632888404,40.435964240584624],[-75.45791025240352,40.44293413902205],[-75.45046263168467,40.449903559628346],[-75.44301346613256,40.45687250218665],[-75.43556275515203,40.46384096647995],[-75.42811049814777,40.4708089522912],[-75.42065669452427,40.47777645940318],[-75.4132013436858,40.484743487598614],[-75.409733,40.487984]]]},"properties":{"district":8}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.049632,40.006626],[-80.047168,40.005123],[-80.044448,39.998803],[-80.0384,39.996457],[-80.031325,40.00008],[-80.012764,40.010936],[-79.997615,40.017994],[-79.996096,40.02353],[-80.003198,40.027146],[-80.007854,40.031337],[-80.010475,40.039424],[-80.007058,40.043381],[-80.01059,40.056136],[-80.019741,40.056551],[-80.017717,40.061988],[-80.011294,40.059473],[-80.005412,40.055615],[-80.003744,40.057298],[-80.003587,40.063936],[-79.988107,40.055885],[-79.981413,40.056999],[-79.975329,40.060789],[-79.966834,40.056874],[-79.959153,40.048955],[-79.962385,40.040626],[-79.952866,40.03912],[-79.944623,40.04186],[-79.934639,40.039454],[-79.934232,40.043365],[-79.936272,40.047865],[-79.931583,40.050469],[-79.934065,40.053691],[-79.931929,40.057032],[-79.93673,40.062121],[-79.941514,40.078601],[-79.944105,40.084385],[-79.941066,40.09395],[-79.945144,40.098574],[-79.947114,40.105745],[-79.976854,40.113675],[-79.989298,40.111958],[-79.989206,40.108578],[-79.995379,40.099407],[-80.003143,40.102193],[-80.003214,40.097615],[-80.015118,40.098296],[-80.013918,40.102632],[-80.015713,40.107654],[-80.015072,40.112552],[-80.021852,40.117756],[-80.026363,40.123503],[-80.026361,40.127855],[-80.019326,40.12748],[-80.015614,40.131927],[-80.007694,40.131463],[-80.00439,40.132748],[-79.992762,40.143],[-79.996491,40.147223],[-80.002566,40.162378],[-80.000399,40.166487],[-79.9954,40.169113],[-80.000473,40.18346],[-80.006429,40.182355],[-80.009215,40.177861],[-80.01274,40.182745],[-80.019639,40.186768],[-80.019679,40.19116],[-80.013367,40.195226],[-80.001241,40.196304],[-79.99312,40.19255],[-79.984297,40.207801],[-79.968252,40.210822],[-79.959532,40.216134],[-79.950382,40.211559],[-79.938683,40.209814],[-79.927883,40.206822],[-79.918346,40.200555],[-79.912586,40.197767],[-79.896448,40.194481],[-79.888986,40.194823],[-79.881913,40.196519],[-79.865817,40.197031],[-79.854456,40.191255],[-79.851367,40.183012],[-79.850376,40.177303],[-79.851352,40.172151],[-79.856008,40.165799],[-79.864153,40.161815],[-79.870668,40.162127],[-79.871463,40.160094],[-79.86249,40.15149],[-79.86237,40.14554],[-79.869064,40.137826],[-79.872098,40.140065],[-79.877321,40.137407],[-79.887654,40.141357],[-79.896347,40.147546],[-79.902074,40.148647],[-79.893241,40.140776],[-79.888777,40.132648],[-79.885497,40.129496],[-79.877385,40.126792],[-79.871629,40.132102],[-79.864413,40.134367],[-79.859597,40.137965],[-79.856565,40.132782],[-79.85791,40.12814],[-79.781016,40.127944],[-79.745832,40.128325],[-79.741174,40.126271],[-79.734851,40.121046],[-79.7276,40.120608],[-79.723359,40.122338],[-79.718499,40.116921],[-79.721805,40.115287],[-79.711267,40.108658],[-79.705399,40.107638],[-79.702095,40.110414],[-79.69865,40.109619],[-79.693287,40.112469],[-79.686137,40.11389],[-79.683794,40.10862],[-79.674178,40.105514],[-79.671751,40.106247],[-79.666187,40.102656],[-79.668602,40.098847],[-79.663866,40.096732],[-79.657254,40.096595],[-79.654285,40.093633],[-79.654083,40.089294],[-79.648122,40.087643],[-79.638994,40.082859],[-79.635697,40.085905],[-79.626998,40.088424],[-79.625853,40.091933],[-79.620727,40.09271],[-79.614664,40.091283],[-79.613096,40.093438],[-79.603674,40.090839],[-79.600442,40.084308],[-79.593021,40.082055],[-79.591944,40.085789],[-79.593314,40.09093],[-79.592026,40.09346],[-79.586039,40.097068],[-79.585166,40.102124],[-79.578966,40.105496],[-79.574933,40.103438],[-79.571722,40.105304],[-79.560968,40.106608],[-79.559117,40.111157],[-79.55315,40.112578],[-79.548519,40.110322],[-79.541284,40.112745],[-79.541071,40.120814],[-79.533991,40.128617],[-79.530865,40.128208],[-79.526977,40.123237],[-79.51347,40.135797],[-79.505188,40.140568],[-79.496673,40.14176],[-79.48959,40.141082],[-79.48565,40.143322],[-79.481017,40.143258],[-79.467834,40.136738],[-79.45798,40.13545],[-79.447723,40.13027],[-79.44772,40.12677],[-79.44213,40.11957],[-79.43756,40.11586],[-79.423474,40.111156],[-79.41539,40.1046],[-79.40131,40.10223],[-79.39737,40.09513],[-79.393712,40.090897],[-79.37252,40.08137],[-79.367463,40.080198],[-79.355627,40.074359],[-79.35167,40.068729],[-79.34445,40.05089],[-79.34278,40.04445],[-79.33864,40.04215],[-79.32368,40.04078],[-79.31609,40.04384],[-79.293682,40.040413],[-79.296131,40.03675],[-79.32525,39.999872],[-79.343737,39.974301],[-79.363739,39.947778],[-79.342497,39.948049],[-79.343417,39.940127],[-79.338267,39.937332],[-79.334988,39.930835],[-79.33803,39.929342],[-79.339811,39.925043],[-79.338237,39.920588],[-79.334937,39.917933],[-79.337949,39.914476],[-79.328786,39.907465],[-79.322538,39.901046],[-79.326183,39.898239],[-79.329409,39.892838],[-79.321769,39.888472],[-79.326528,39.879952],[-79.326554,39.875842],[-79.331695,39.873264],[-79.327503,39.870092],[-79.304845,39.855328],[-79.292939,39.829508],[-79.288024,39.829659],[-79.283812,39.825974],[-79.273402,39.827474],[-79.269525,39.832354],[-79.264534,39.833821],[-79.25937,39.828484],[-79.256755,39.829219],[-79.253726,39.839652],[-79.249037,39.837947],[-79.245213,39.832826],[-79.240306,39.832708],[-79.2369,39.837615],[-79.237706,39.839682],[-79.244301,39.842602],[-79.24404,39.844524],[-79.232342,39.847406],[-79.226683,39.852916],[-79.228244,39.859508],[-79.218507,39.858634],[-79.216219,39.854459],[-79.210404,39.851545],[-79.207111,39.851595],[-79.198478,39.846145],[-79.200906,39.838169],[-79.200392,39.83153],[-79.196112,39.828364],[-79.195428,39.825133],[-79.190677,39.824099],[-79.187139,39.81976],[-79.185302,39.8147],[-79.17066,39.807248],[-79.138661,39.876913],[-79.134846,39.888055],[-79.132797,39.891193],[-79.125386,39.892281],[-79.123208,39.888337],[-79.113751,39.880307],[-79.109412,39.878992],[-79.100881,39.881604],[-79.094302,39.881547],[-79.047394,39.934296],[-79.042597,39.960273],[-79.024709,39.962833],[-79.018029,39.965622],[-78.993705,39.965871],[-78.981289,39.976415],[-78.980485,39.986405],[-78.978006,40.003069],[-78.972459,40.021092],[-78.968907,40.024703],[-78.968745,40.029418],[-78.960268,40.042024],[-78.965216,40.053204],[-78.96019,40.058751],[-78.956975,40.058438],[-78.95136,40.066361],[-78.947309,40.069716],[-78.936317,40.072742],[-78.939099,40.076391],[-78.939074,40.083825],[-78.932048,40.081851],[-78.921962,40.082692],[-78.920225,40.087846],[-78.911631,40.084925],[-78.904969,40.084478],[-78.884593,40.081588],[-78.880358,40.078658],[-78.79173,40.044148],[-78.78239,40.038798],[-78.773967,40.043632],[-78.773948,40.047112],[-78.769086,40.053692],[-78.763206,40.057005],[-78.752016,40.074917],[-78.739847,40.069571],[-78.721151,40.111858],[-78.698671,40.16145],[-78.676956,40.211207],[-78.66141,40.231104],[-78.658409,40.242933],[-78.643998,40.259446],[-78.651868,40.281678],[-78.642948,40.283396],[-78.635385,40.309498],[-78.625672,40.319318],[-78.618093,40.330319],[-78.618095,40.332099],[-78.608869,40.345258],[-78.602353,40.352973],[-78.564085,40.370609],[-78.556958,40.409136],[-78.633106,40.446694],[-78.646125,40.441463],[-78.663084,40.431298],[-78.669936,40.428344],[-78.673687,40.42966],[-78.678037,40.427358],[-78.686886,40.428765],[-78.697426,40.433458],[-78.684304,40.473207],[-78.67538,40.483467],[-78.675296,40.497529],[-78.673374,40.505204],[-78.684323,40.51172],[-78.685446,40.518392],[-78.678539,40.525667],[-78.678701,40.535373],[-78.673073,40.549317],[-78.668677,40.550897],[-78.667115,40.558789],[-78.656107,40.561252],[-78.655517,40.563947],[-78.650137,40.566846],[-78.644479,40.578927],[-78.648483,40.582023],[-78.648937,40.586343],[-78.645075,40.588433],[-78.652673,40.598362],[-78.66144,40.60022],[-78.670066,40.598478],[-78.674306,40.600035],[-78.68159,40.600226],[-78.68853,40.595824],[-78.694754,40.59644],[-78.697448,40.602607],[-78.699825,40.602345],[-78.69976,40.609786],[-78.704895,40.612579],[-78.713755,40.611268],[-78.71291,40.598869],[-78.729046,40.586781],[-78.730777,40.583773],[-78.758535,40.565181],[-78.761118,40.566395],[-78.76332,40.571503],[-78.759916,40.610657],[-78.759691,40.636175],[-78.768373,40.634802],[-78.772381,40.636849],[-78.777801,40.642479],[-78.781325,40.642174],[-78.78546,40.646321],[-78.78829,40.654718],[-78.792811,40.657937],[-78.795353,40.661929],[-78.802913,40.661816],[-78.801116,40.657957],[-78.806356,40.656878],[-78.810418,40.660473],[-78.817237,40.661601],[-78.834641,40.661678],[-78.85061,40.626939],[-78.860105,40.604665],[-78.872078,40.581164],[-78.910203,40.506977],[-78.913761,40.499259],[-78.940349,40.453071],[-78.974649,40.395972],[-78.982324,40.405779],[-78.98887,40.411974],[-78.996637,40.413256],[-79.016617,40.420279],[-79.027837,40.419574],[-79.033007,40.416774],[-79.034262,40.409754],[-79.027714,40.406136],[-79.032246,40.401957],[-79.036328,40.395996],[-79.039835,40.396273],[-79.042436,40.391382],[-79.051885,40.389286],[-79.057109,40.384293],[-79.058481,40.380868],[-79.064553,40.379002],[-79.069885,40.380414],[-79.074483,40.38582],[-79.082965,40.389582],[-79.088312,40.386553],[-79.090527,40.380243],[-79.096116,40.374035],[-79.096769,40.370725],[-79.102153,40.368868],[-79.109309,40.373318],[-79.121634,40.370576],[-79.127116,40.375068],[-79.128677,40.385056],[-79.122503,40.389354],[-79.114906,40.389879],[-79.117,40.394243],[-79.124749,40.395361],[-79.135005,40.398304],[-79.147892,40.3976],[-79.154002,40.401701],[-79.152051,40.408766],[-79.155789,40.411765],[-79.164369,40.410224],[-79.173713,40.410622],[-79.185372,40.41425],[-79.191197,40.415221],[-79.199233,40.41078],[-79.206513,40.415032],[-79.210876,40.42125],[-79.214783,40.424458],[-79.233203,40.430741],[-79.240175,40.429991],[-79.247568,40.43208],[-79.254114,40.422288],[-79.263281,40.416763],[-79.272856,40.418411],[-79.273542,40.422925],[-79.269351,40.428517],[-79.272605,40.439082],[-79.282848,40.442769],[-79.289409,40.436673],[-79.299435,40.434515],[-79.301751,40.439291],[-79.299897,40.444912],[-79.301677,40.451356],[-79.298014,40.455023],[-79.29974,40.460127],[-79.30245,40.461333],[-79.3161,40.459253],[-79.322786,40.456032],[-79.325409,40.452699],[-79.330267,40.453851],[-79.331732,40.461889],[-79.33844,40.469998],[-79.342093,40.470124],[-79.345408,40.467212],[-79.345926,40.454825],[-79.347185,40.452731],[-79.353851,40.451701],[-79.360526,40.454095],[-79.362275,40.460061],[-79.358029,40.470879],[-79.358595,40.477916],[-79.365925,40.477474],[-79.36707,40.47509],[-79.366334,40.465966],[-79.369591,40.456604],[-79.374191,40.453693],[-79.381753,40.452697],[-79.391102,40.454412],[-79.395461,40.457132],[-79.397926,40.462815],[-79.400956,40.465534],[-79.404308,40.472543],[-79.406631,40.474301],[-79.41569,40.470572],[-79.421315,40.470598],[-79.423574,40.473329],[-79.430628,40.489046],[-79.43846,40.486737],[-79.447537,40.480811],[-79.451747,40.482307],[-79.454011,40.485507],[-79.452462,40.48943],[-79.455297,40.496616],[-79.454548,40.507014],[-79.459738,40.516737],[-79.456545,40.523237],[-79.44964,40.526792],[-79.450176,40.530149],[-79.37783,40.603959],[-79.358475,40.624531],[-79.289841,40.697271],[-79.215215,40.775942],[-79.214901,40.788506],[-79.215204,40.84864],[-79.21531,40.911346],[-79.173787,40.91089],[-79.124724,40.910571],[-79.069929,40.909793],[-78.999755,40.909138],[-78.946421,40.908439],[-78.867471,40.906219],[-78.805167,40.90598],[-78.806406,40.861618],[-78.806598,40.780303],[-78.806274,40.729742],[-78.803291,40.72882],[-78.801697,40.724539],[-78.75774,40.724714],[-78.687852,40.72418],[-78.6582,40.724981],[-78.617111,40.725188],[-78.502347,40.72604],[-78.447958,40.72557],[-78.35043,40.724827],[-78.359912,40.732592],[-78.221735,40.739375],[-78.131834,40.743017],[-78.116521,40.739127],[-78.128083,40.731067],[-78.139076,40.724275],[-78.146377,40.720882],[-78.155867,40.717745],[-78.155389,40.714489],[-78.162411,40.711696],[-78.164057,40.713493],[-78.170042,40.712596],[-78.182585,40.705901],[-78.195243,40.697294],[-78.199865,40.698972],[-78.204871,40.695874],[-78.217141,40.682876],[-78.22197,40.674539],[-78.213695,40.665404],[-78.206152,40.655128],[-78.198356,40.64809],[-78.196082,40.642497],[-78.197219,40.639351],[-78.190296,40.637168],[-78.189172,40.632792],[-78.185273,40.631511],[-78.178722,40.626909],[-78.173427,40.628265],[-78.169732,40.621025],[-78.166371,40.617948],[-78.171675,40.612257],[-78.184212,40.595295],[-78.179295,40.592725],[-78.17828,40.583786],[-78.197083,40.558444],[-78.189145,40.551243],[-78.185595,40.543703],[-78.178307,40.537649],[-78.176818,40.534471],[-78.171747,40.534415],[-78.166433,40.531423],[-78.163553,40.536106],[-78.151479,40.540711],[-78.149884,40.546045],[-78.14514,40.549077],[-78.145135,40.553874],[-78.140989,40.557027],[-78.136162,40.569171],[-78.132991,40.57039],[-78.128638,40.567953],[-78.132422,40.56449],[-78.132745,40.561616],[-78.139364,40.550595],[-78.139947,40.546187],[-78.147328,40.533251],[-78.14924,40.525307],[-78.150476,40.510302],[-78.153626,40.496947],[-78.153373,40.488558],[-78.148898,40.487629],[-78.135633,40.498214],[-78.131741,40.496822],[-78.129448,40.489165],[-78.130081,40.48199],[-78.134233,40.473242],[-78.155447,40.438543],[-78.15941,40.433793],[-78.177947,40.408643],[-78.186282,40.399877],[-78.191046,40.39187],[-78.181379,40.384571],[-78.174937,40.393195],[-78.171397,40.392712],[-78.165481,40.388157],[-78.160648,40.390106],[-78.156155,40.386291],[-78.164305,40.379367],[-78.16757,40.375193],[-78.166372,40.371707],[-78.139233,40.346885],[-78.131541,40.337834],[-78.112972,40.348854],[-78.008629,40.326776],[-78.007353,40.329819],[-77.999777,40.328355],[-77.960614,40.324135],[-77.9616,40.313795],[-77.921675,40.294699],[-77.920815,40.291999],[-77.913571,40.285358],[-77.908676,40.287508],[-77.90061,40.281047],[-77.896135,40.279703],[-77.887887,40.273403],[-77.855957,40.263005],[-77.841904,40.280168],[-77.830825,40.292574],[-77.76172,40.368733],[-77.75212,40.378545],[-77.728033,40.323009],[-77.72287,40.310085],[-77.702857,40.263654],[-77.698954,40.265775],[-77.685163,40.276304],[-77.67586,40.284699],[-77.67181,40.289885],[-77.664195,40.280479],[-77.664275,40.278227],[-77.656416,40.270393],[-77.671155,40.257569],[-77.667711,40.252001],[-77.665494,40.252049],[-77.653447,40.257407],[-77.649502,40.257551],[-77.645023,40.253932],[-77.64999,40.247957],[-77.645402,40.238928],[-77.648878,40.233319],[-77.649951,40.226283],[-77.647642,40.222477],[-77.643394,40.223165],[-77.642831,40.21814],[-77.639893,40.217678],[-77.616167,40.232616],[-77.609171,40.232753],[-77.60277,40.227488],[-77.604888,40.224922],[-77.604768,40.206033],[-77.614665,40.198549],[-77.627552,40.188665],[-77.616385,40.17248],[-77.613642,40.170161],[-77.612918,40.161234],[-77.608261,40.152738],[-77.604175,40.151412],[-77.593277,40.141974],[-77.592952,40.135393],[-77.590348,40.133945],[-77.582596,40.13443],[-77.574671,40.127729],[-77.569044,40.126313],[-77.562871,40.119286],[-77.561016,40.108358],[-77.557914,40.103097],[-77.561588,40.098335],[-77.560417,40.094256],[-77.553883,40.095883],[-77.548097,40.09013],[-77.543176,40.08979],[-77.542551,40.083907],[-77.53993,40.073937],[-77.541965,40.069875],[-77.534889,40.070272],[-77.531727,40.060063],[-77.530495,40.059232],[-77.532481,40.048749],[-77.522907,40.045752],[-77.519147,40.042445],[-77.518703,40.0382],[-77.512472,40.033768],[-77.507632,40.028386],[-77.509208,40.024934],[-77.500114,40.013446],[-77.499604,40.010248],[-77.495403,40.005145],[-77.489232,40.001333],[-77.484331,39.995584],[-77.478956,39.991755],[-77.474392,39.991937],[-77.470972,39.986845],[-77.465783,39.984436],[-77.459661,39.975477],[-77.454109,39.972432],[-77.471085,39.944077],[-77.469611,39.916169],[-77.466091,39.861116],[-77.463175,39.820473],[-77.461573,39.775118],[-77.45942705075412,39.72001722977033],[-77.53599010057337,39.72013977108879],[-77.6053635355735,39.72046505484191],[-77.768534,39.721358],[-77.80276,39.721762],[-77.874719,39.722219],[-77.966442,39.722385],[-78.075771,39.722301],[-78.20208410035812,39.722415266437025],[-78.25,39.722698],[-78.2630741356189,39.722565227269584],[-78.315139,39.722877],[-78.337111,39.722461],[-78.408653,39.722793],[-78.438839,39.722481],[-78.445401,39.72283],[-78.496107,39.72287],[-78.537702,39.72249],[-78.546415,39.722869],[-78.575933035587,39.72256113070764],[-78.62474,39.722946],[-78.74759790317876,39.722972535069644],[-78.856241,39.722996],[-78.931176,39.722775],[-79.045548,39.722883],[-79.26304689273836,39.72197236962984],[-79.313456,39.721979],[-79.392459,39.721578],[-79.41546,39.721578],[-79.476662,39.721078],[-79.548465,39.720778],[-79.583866,39.721277],[-79.763774,39.720776],[-79.793755,39.720866],[-79.852904,39.720713],[-79.99937444604029,39.7211564552894],[-80.041702,39.721294],[-80.03513,39.729871],[-80.035277,39.732936],[-80.039216,39.738063],[-80.045263,39.742024],[-80.044963,39.749598],[-80.042087,39.751622],[-80.043243,39.757039],[-80.052938,39.765348],[-80.060192,39.767835],[-80.065326,39.774477],[-80.073231,39.780421],[-80.07479,39.787217],[-80.069337,39.796815],[-80.072418,39.80106],[-80.066772,39.81232],[-80.066251,39.817248],[-80.06726,39.824638],[-80.07296,39.839582],[-80.080145,39.845737],[-80.083342,39.851449],[-80.092559,39.858777],[-80.092413,39.863423],[-80.099118,39.868086],[-80.107285,39.870467],[-80.107323,39.87904],[-80.10092,39.884304],[-80.109345,39.893308],[-80.112302,39.902837],[-80.11654,39.909366],[-80.111068,39.911398],[-80.109963,39.916118],[-80.105083,39.916166],[-80.097515,39.91135],[-80.089642,39.909382],[-80.088118,39.913767],[-80.096813,39.916957],[-80.099235,39.925947],[-80.094369,39.927581],[-80.086549,39.927972],[-80.083603,39.92939],[-80.087464,39.934949],[-80.088109,39.939041],[-80.096745,39.948543],[-80.096234,39.953013],[-80.088804,39.961965],[-80.07895,39.962943],[-80.079759,39.968099],[-80.082912,39.976557],[-80.082605,39.979211],[-80.085588,39.986567],[-80.077242,39.997014],[-80.067992,40.002914],[-80.066267,40.005755],[-80.060314,40.009453],[-80.054801,40.00429],[-80.049632,40.006626]]]},"properties":{"district":9}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.027343,41.563541],[-75.018524,41.551802],[-75.016328,41.546501],[-75.017626,41.542734],[-75.024798,41.539801],[-75.023018,41.533147],[-75.016616,41.53211],[-75.009552,41.528461],[-75.00385,41.524052],[-75.00095077781822,41.5176086915362],[-75.003706,41.511118],[-74.999612,41.5074],[-74.987645,41.508738],[-74.984372,41.506611],[-74.982385,41.500981],[-74.982463,41.496467],[-74.985595,41.485863],[-74.981652,41.479945],[-74.966508,41.476884],[-74.95701,41.476512],[-74.94808,41.480625],[-74.945634,41.483213],[-74.932585,41.482323],[-74.926835,41.478327],[-74.91252105939304,41.475606223355385],[-74.909181,41.472436],[-74.906887,41.461131],[-74.895069,41.45819],[-74.890358,41.455324],[-74.889075,41.451245],[-74.895474,41.445128],[-74.896173,41.440229],[-74.890175,41.438178],[-74.880174,41.439648],[-74.864688,41.443993],[-74.858578,41.444427],[-74.848602,41.440179],[-74.836915,41.431625],[-74.832163,41.430555],[-74.826031,41.431736],[-74.82288,41.436792],[-74.817995,41.440505],[-74.812123,41.442982],[-74.805655,41.442101],[-74.801225,41.4381],[-74.800095,41.432661],[-74.796499,41.425393],[-74.793856,41.422671],[-74.787517,41.421763],[-74.778029,41.425104],[-74.77065,41.42623],[-74.76367580525809,41.42360852093477],[-74.757926,41.423437],[-74.75068,41.427984],[-74.740932,41.43116],[-74.7366887172207,41.42922857353302],[-74.734732,41.4227],[-74.738685,41.413463],[-74.741086,41.411413],[-74.740963,41.40512],[-74.736103,41.398398],[-74.730385,41.39566],[-74.720892,41.39469],[-74.713412,41.389814],[-74.708459,41.378902],[-74.694968,41.370431],[-74.691129,41.367324],[-74.689767,41.361558],[-74.700595,41.354553],[-74.708514,41.352734],[-74.720923,41.347384],[-74.730373,41.345983],[-74.735622,41.346518],[-74.753931,41.346135],[-74.760327,41.340328],[-74.7635,41.33157],[-74.771588,41.325079],[-74.785058,41.323926],[-74.792116,41.322465],[-74.795797,41.319314],[-74.792377,41.314088],[-74.792558,41.310628],[-74.804482,41.304533],[-74.812033,41.298158],[-74.821884,41.293838],[-74.830057,41.2872],[-74.83407026474111,41.281108095223345],[-74.838361,41.277294],[-74.841137,41.27098],[-74.846319,41.263077],[-74.845031,41.258055],[-74.848988,41.251192],[-74.857152,41.248975],[-74.861678,41.241575],[-74.862049,41.237609],[-74.866182,41.232132],[-74.866839,41.226864],[-74.859323,41.220507],[-74.860398,41.217454],[-74.867287,41.208754],[-74.874034,41.198543],[-74.878275,41.190489],[-74.878492,41.187504],[-74.882139,41.180836],[-74.889424,41.1736],[-74.899701,41.166181],[-74.905256,41.155668],[-74.923169,41.138146],[-74.931141,41.133387],[-74.945067,41.129052],[-74.947912,41.12356],[-74.964294,41.114237],[-74.972917,41.113327],[-74.982212,41.108245],[-74.991718,41.092284],[-75.000313,41.089485],[-75.003177,41.091773],[-75.012602,41.083801],[-75.018547,41.084888],[-75.025001,41.083517],[-75.025836,41.080595],[-75.032593,41.085267],[-75.033871,41.08756],[-75.039216,41.088797],[-75.076811,41.141122],[-75.105993,41.144201],[-75.156507,41.150341],[-75.184651,41.152713],[-75.187117,41.145075],[-75.188504,41.114893],[-75.185798,41.106827],[-75.179603,41.063032],[-75.223483,41.073358],[-75.225466,41.070807],[-75.218124,41.067025],[-75.215098,41.062569],[-75.214087,41.057904],[-75.216707,41.052907],[-75.220107,41.050052],[-75.215804,41.046308],[-75.214328,41.042885],[-75.208735,41.038232],[-75.210865,41.03484],[-75.207689,41.0304],[-75.206747,41.025535],[-75.208374,41.019869],[-75.20733,41.011583],[-75.192837,40.995746],[-75.191169,41.003158],[-75.194318,41.006029],[-75.189901,41.014347],[-75.183916,41.017732],[-75.178143,41.024624],[-75.17284,41.01894],[-75.178622,41.015137],[-75.174925,41.010053],[-75.169538,41.01288],[-75.163329,41.008556],[-75.161748,41.00015],[-75.166648,40.999252],[-75.162312,40.993571],[-75.163706,40.987943],[-75.1809,40.984156],[-75.179355,40.979432],[-75.197369,40.975203],[-75.202491,40.974765],[-75.214706,40.9762],[-75.215792,40.984711],[-75.208794,40.987698],[-75.215777,40.989757],[-75.224654,40.987235],[-75.231056,40.986505],[-75.239568,40.991512],[-75.251126,40.995111],[-75.257586,40.999178],[-75.25847,41.002835],[-75.256486,41.007316],[-75.249968,41.015187],[-75.254462,41.020795],[-75.261555,41.017798],[-75.265374,41.019409],[-75.27512,41.006851],[-75.31456,40.976291],[-75.338451,40.956071],[-75.355397,40.942487],[-75.416087,41.022092],[-75.378378,41.111555],[-75.3785,41.121357],[-75.364794,41.139367],[-75.341217,41.135126],[-75.307348,41.24223],[-75.359027,41.239217],[-75.374627,41.237783],[-75.459058,41.234204],[-75.505607,41.232539],[-75.516491,41.21938],[-75.525584,41.223017],[-75.530072,41.226588],[-75.532449,41.225316],[-75.539846,41.225461],[-75.549144,41.2174],[-75.552367,41.212442],[-75.55717,41.209235],[-75.562617,41.215083],[-75.564994,41.223158],[-75.599537,41.245879],[-75.607037,41.244381],[-75.628802,41.269705],[-75.602463,41.270612],[-75.569994,41.272126],[-75.553248,41.272597],[-75.557128,41.333019],[-75.558005,41.34431],[-75.604491,41.34258],[-75.652043,41.36614],[-75.637154,41.383468],[-75.633933,41.38238],[-75.624872,41.392721],[-75.582241,41.394077],[-75.560303,41.41279],[-75.617415,41.440371],[-75.615973,41.44391],[-75.607418,41.442826],[-75.597855,41.437967],[-75.58558,41.440004],[-75.57599,41.438313],[-75.606256,41.458658],[-75.603619,41.464816],[-75.604598,41.467605],[-75.590603,41.474028],[-75.582806,41.47505],[-75.573786,41.468499],[-75.579798,41.463289],[-75.535823,41.433912],[-75.513973,41.452513],[-75.532663,41.465187],[-75.525113,41.471558],[-75.541679,41.482824],[-75.541582,41.493087],[-75.539073,41.496995],[-75.542153,41.504909],[-75.540035,41.510431],[-75.542332,41.512626],[-75.544105,41.522469],[-75.535449,41.526917],[-75.534847,41.528928],[-75.501526,41.531646],[-75.532112,41.5514],[-75.530744,41.557692],[-75.49988,41.559617],[-75.492206,41.559232],[-75.484522,41.573164],[-75.48864,41.575038],[-75.481442,41.586382],[-75.498484,41.584991],[-75.555797,41.582168],[-75.570982,41.544944],[-75.570421,41.544599],[-75.584483,41.527343],[-75.585318,41.523358],[-75.605249,41.507844],[-75.63207,41.487445],[-75.662199,41.47592],[-75.662269,41.462546],[-75.67673,41.469569],[-75.684638,41.459923],[-75.725874,41.412387],[-75.755155,41.379723],[-75.756258,41.361431],[-75.760518,41.360942],[-75.76786,41.365841],[-75.795286,41.378127],[-75.797686,41.381535],[-75.80655,41.385183],[-75.819575,41.387518],[-75.828999,41.393198],[-75.832631,41.399934],[-75.831223,41.417806],[-75.834695,41.427246],[-75.825388,41.438172],[-75.786848,41.486946],[-75.772134,41.505869],[-75.802502,41.523578],[-75.791478,41.538813],[-75.769564,41.56823],[-75.774471,41.574187],[-75.749835,41.60709],[-75.729174,41.635791],[-75.723014,41.634562],[-75.719009,41.635757],[-75.719887,41.642263],[-75.767924,41.643409],[-75.79222,41.64205],[-75.797336,41.642615],[-75.831888,41.643142],[-75.868724,41.644356],[-75.879009,41.643462],[-75.972729,41.644317],[-75.986304,41.644801],[-76.014304,41.644269],[-76.087759,41.644724],[-76.114224,41.643385],[-76.115172,41.651825],[-76.163435,41.649255],[-76.197998,41.647823],[-76.206856,41.601647],[-76.223866,41.524544],[-76.228131,41.511137],[-76.276784,41.391568],[-76.284768,41.372965],[-76.310133,41.310199],[-76.374368,41.308676],[-76.407934,41.308418],[-76.425944,41.293447],[-76.478811,41.250083],[-76.499652,41.233856],[-76.521652,41.21426],[-76.592607,41.157765],[-76.678776,41.154172],[-76.729997,41.171881],[-76.732672,41.17204],[-76.731275,41.16308],[-76.731689,41.153239],[-76.735804,41.137833],[-76.733883,41.133287],[-76.735835,41.130074],[-76.733514,41.127687],[-76.735342,41.110098],[-76.734196,41.103801],[-76.734891,41.092133],[-76.746505,41.065533],[-76.756503,41.050503],[-76.759677,41.038706],[-76.764505,41.029611],[-76.761963,41.025932],[-76.770597,41.018727],[-76.773768,41.014356],[-76.775786,41.008118],[-76.773712,41.002552],[-76.784907,40.966926],[-76.786543,40.965163],[-76.785447,40.958907],[-76.7905,40.956708],[-76.790048,40.951625],[-76.793245,40.95014],[-76.79261,40.946647],[-76.775701,40.949471],[-76.767376,40.949784],[-76.743018,40.954484],[-76.734826,40.954448],[-76.687145,40.962753],[-76.682119,40.964962],[-76.674862,40.965502],[-76.661348,40.967996],[-76.65147,40.960134],[-76.656204,40.955807],[-76.654402,40.94981],[-76.656094,40.943133],[-76.660393,40.946906],[-76.666016,40.948831],[-76.674049,40.941141],[-76.68157,40.936384],[-76.691262,40.932457],[-76.70243,40.930452],[-76.713561,40.926979],[-76.722642,40.919055],[-76.732944,40.913054],[-76.744236,40.910707],[-76.758195,40.906202],[-76.767555,40.900668],[-76.778555,40.895887],[-76.791682,40.885976],[-76.79698,40.880605],[-76.806246,40.862535],[-76.812812,40.847106],[-76.818026,40.843293],[-76.829685,40.831029],[-76.840626,40.821324],[-76.848738,40.810632],[-76.848845,40.80644],[-76.852163,40.800839],[-76.856094,40.791211],[-76.859252,40.777043],[-76.856445,40.75581],[-76.857521,40.749612],[-76.855362,40.728821],[-76.856492,40.72263],[-76.861184,40.711598],[-76.865257,40.704606],[-76.874711,40.692692],[-76.880067,40.687173],[-76.886171,40.683068],[-76.890093,40.682015],[-76.903849,40.674096],[-76.910189,40.669255],[-76.917331,40.661713],[-76.920108,40.65587],[-76.927625,40.645707],[-76.934941,40.640451],[-76.939749,40.638378],[-76.947365,40.629517],[-76.950885,40.62713],[-76.953551,40.61477],[-76.953105,40.604504],[-76.958755,40.592855],[-76.965268,40.58706],[-76.983673,40.578259],[-76.988161,40.574585],[-76.992488,40.567534],[-76.991862,40.561272],[-76.981989,40.543415],[-76.980546,40.538332],[-76.98153,40.531923],[-76.985663,40.524997],[-76.985104,40.516349],[-76.978351,40.507149],[-76.96909,40.497562],[-76.966284,40.495762],[-76.953083,40.490621],[-76.949466,40.484527],[-76.94876,40.473391],[-76.949397,40.469037],[-76.952809,40.462467],[-76.961143,40.45579],[-76.969496,40.452732],[-76.980452,40.447136],[-76.986813,40.441838],[-76.98943,40.438163],[-76.997915,40.43367],[-77.003235,40.4268],[-77.014529,40.427058],[-77.017706,40.440589],[-77.02423,40.451077],[-77.026749,40.457302],[-77.035212,40.454007],[-77.038097,40.454022],[-77.04785,40.449474],[-77.048968,40.444598],[-77.057877,40.44093],[-77.064408,40.441865],[-77.072144,40.439574],[-77.083177,40.434473],[-77.11259,40.424431],[-77.120011,40.422372],[-77.123822,40.418847],[-77.130685,40.417614],[-77.139163,40.411428],[-77.143569,40.409565],[-77.150645,40.404061],[-77.155753,40.402565],[-77.172251,40.393484],[-77.17668,40.391752],[-77.198127,40.379326],[-77.209072,40.380323],[-77.219788,40.375447],[-77.249704,40.386154],[-77.2537,40.387205],[-77.266106,40.404619],[-77.308876,40.395047],[-77.303779,40.375079],[-77.287998,40.32453],[-77.280548,40.275923],[-77.312235,40.26774],[-77.317288,40.26759],[-77.330491,40.275596],[-77.330696,40.280588],[-77.323924,40.288605],[-77.322769,40.292001],[-77.328561,40.292311],[-77.340647,40.286915],[-77.354299,40.279278],[-77.360718,40.274701],[-77.385114,40.262712],[-77.402457,40.256954],[-77.413859,40.255215],[-77.420845,40.255368],[-77.423177,40.25793],[-77.419795,40.26407],[-77.411044,40.269315],[-77.409304,40.274554],[-77.402893,40.280128],[-77.386967,40.290351],[-77.364762,40.302541],[-77.359873,40.306684],[-77.357635,40.312476],[-77.360082,40.314075],[-77.366018,40.313569],[-77.375693,40.310691],[-77.394445,40.303506],[-77.413778,40.293892],[-77.426595,40.28661],[-77.432441,40.282455],[-77.457825,40.266125],[-77.473596,40.254216],[-77.497315,40.240234],[-77.510109,40.234416],[-77.515502,40.230504],[-77.52675,40.225587],[-77.52896,40.222999],[-77.536868,40.219072],[-77.555823,40.21919],[-77.558085,40.218638],[-77.578341,40.206626],[-77.580439,40.203856],[-77.589954,40.196514],[-77.593549,40.19201],[-77.605448,40.185362],[-77.614665,40.198549],[-77.604768,40.206033],[-77.604888,40.224922],[-77.60277,40.227488],[-77.609171,40.232753],[-77.616167,40.232616],[-77.639893,40.217678],[-77.642831,40.21814],[-77.643394,40.223165],[-77.647642,40.222477],[-77.649951,40.226283],[-77.648878,40.233319],[-77.645402,40.238928],[-77.64999,40.247957],[-77.645023,40.253932],[-77.649502,40.257551],[-77.653447,40.257407],[-77.665494,40.252049],[-77.667711,40.252001],[-77.671155,40.257569],[-77.656416,40.270393],[-77.664275,40.278227],[-77.664195,40.280479],[-77.67181,40.289885],[-77.67586,40.284699],[-77.685163,40.276304],[-77.698954,40.265775],[-77.702857,40.263654],[-77.72287,40.310085],[-77.728033,40.323009],[-77.75212,40.378545],[-77.76172,40.368733],[-77.810393,40.368591],[-77.814698,40.362489],[-77.818636,40.360542],[-77.829837,40.363895],[-77.838343,40.36903],[-77.845221,40.368766],[-77.852906,40.36479],[-77.856914,40.365228],[-77.861203,40.369842],[-77.865195,40.37153],[-77.872558,40.381196],[-77.872533,40.38557],[-77.870289,40.392261],[-77.877701,40.39355],[-77.887717,40.391358],[-77.889116,40.398965],[-77.913844,40.398679],[-77.912416,40.408176],[-77.90805,40.414018],[-77.896369,40.417778],[-77.888746,40.42866],[-77.870182,40.445244],[-77.844137,40.473447],[-77.835874,40.484232],[-77.828245,40.491558],[-77.816513,40.500074],[-77.841827,40.550035],[-77.832545,40.562534],[-77.8216,40.578931],[-77.81944,40.580084],[-77.811561,40.589182],[-77.801329,40.599569],[-77.779853,40.619655],[-77.77248,40.625932],[-77.758907,40.629589],[-77.75162,40.6323],[-77.735142,40.644741],[-77.728193,40.648573],[-77.720434,40.654575],[-77.720737,40.657968],[-77.710846,40.662003],[-77.690614,40.675036],[-77.68708,40.67675],[-77.682708,40.682717],[-77.685346,40.684904],[-77.703787,40.679936],[-77.708356,40.690488],[-77.703066,40.69268],[-77.699239,40.698065],[-77.70117,40.704982],[-77.676611,40.716452],[-77.681334,40.729758],[-77.661988,40.737742],[-77.652574,40.744921],[-77.593355,40.761247],[-77.571938,40.769333],[-77.552535,40.777592],[-77.511092,40.793954],[-77.439033,40.82381],[-77.413857,40.833073],[-77.377769,40.844393],[-77.36418,40.846937],[-77.332782,40.870609],[-77.315887,40.88267],[-77.279236,40.90971],[-77.204027,40.99271],[-77.143804,41.042801],[-77.144111,41.06884],[-77.164278,41.068708],[-77.222752,41.125073],[-77.236104,41.13754],[-77.249691,41.150907],[-77.262231,41.162409],[-77.272018,41.172534],[-77.27245,41.175443],[-77.277411,41.180539],[-77.288306,41.18299],[-77.293059,41.186473],[-77.293651,41.191069],[-77.29058,41.1951],[-77.29901,41.200967],[-77.306364,41.208077],[-77.320891,41.218932],[-77.334303,41.220476],[-77.349765,41.219918],[-77.348555,41.223096],[-77.349627,41.228873],[-77.358047,41.230597],[-77.362729,41.23358],[-77.37035,41.233079],[-77.390824,41.247786],[-77.399043,41.253053],[-77.404407,41.25817],[-77.410667,41.266221],[-77.416125,41.270056],[-77.424945,41.273103],[-77.4294,41.28214],[-77.434252,41.28453],[-77.445158,41.287762],[-77.450054,41.293262],[-77.452906,41.300019],[-77.456424,41.304639],[-77.468245,41.310429],[-77.471862,41.314273],[-77.475029,41.326689],[-77.474533,41.334021],[-77.475987,41.338294],[-77.485567,41.345281],[-77.499193,41.353577],[-77.516145,41.355867],[-77.526537,41.358528],[-77.537438,41.364803],[-77.540008,41.368101],[-77.541899,41.381296],[-77.550449,41.395826],[-77.564435,41.412683],[-77.57093,41.415238],[-77.57574,41.421602],[-77.58054,41.435579],[-77.584671,41.441301],[-77.597282,41.441056],[-77.598972,41.509943],[-77.599278,41.542271],[-77.602566,41.687374],[-77.458987,41.689354],[-77.393546,41.689768],[-77.393687,41.708087],[-77.403691,41.707903],[-77.406486,41.704924],[-77.414886,41.704792],[-77.415748,41.712383],[-77.424183,41.712233],[-77.426414,41.721146],[-77.421885,41.725857],[-77.429665,41.731565],[-77.430295,41.735],[-77.428142,41.746985],[-77.422196,41.755927],[-77.401819,41.774446],[-77.394246,41.776366],[-77.39462,41.823366],[-77.347639,41.823905],[-77.349383,41.858441],[-77.351409,41.910876],[-77.473845,41.908495],[-77.474098,41.882046],[-77.606887,41.88254],[-77.607916,41.924291],[-77.609159,41.961249],[-77.610027,41.999368],[-77.584738,41.999389],[-77.505308,42.00007],[-77.30546115892129,41.999715582497466],[-77.124693,41.999395],[-77.063676,42.000461],[-77.031109,42.0004],[-76.93720595731098,42.00167178299744],[-76.87077288373081,42.00177341647377],[-76.785577,42.001568],[-76.749675,42.001689],[-76.62467,42.000652],[-76.55808568178021,42.00015460121875],[-76.445259,41.998707],[-76.374659,41.99841],[-76.249657,41.998346],[-76.190355,41.998522],[-76.12374057142847,41.998954],[-76.090973,41.998779],[-75.98025,41.999035],[-75.890492,41.998606],[-75.870677,41.998828],[-75.833271,41.998331],[-75.742217,41.997864],[-75.655588,41.998512],[-75.610316,41.998959],[-75.483887,41.999182],[-75.477144,41.999407],[-75.379589,41.999232],[-75.359579,41.999445],[-75.346568,41.995324],[-75.341125,41.992772],[-75.337602,41.9867],[-75.34246,41.974303],[-75.339488,41.970786],[-75.329318,41.968232],[-75.322384,41.961693],[-75.32004,41.960867],[-75.318168,41.954236],[-75.310358,41.949012],[-75.301233,41.9489],[-75.301593,41.952811],[-75.293713,41.954593],[-75.289383,41.942891],[-75.279094,41.938917],[-75.277243,41.933598],[-75.276552,41.922208],[-75.267562,41.907054],[-75.267773,41.901971],[-75.272778,41.897112],[-75.271293,41.887358],[-75.260623,41.883783],[-75.257564,41.877108],[-75.263249,41.871765],[-75.262802,41.866213],[-75.257825,41.862154],[-75.251197,41.86204],[-75.243345,41.866875],[-75.238743,41.865699],[-75.231612,41.859459],[-75.223734,41.857456],[-75.21497,41.867449],[-75.204002,41.869867],[-75.197836,41.868807],[-75.191441,41.865063],[-75.190203,41.862454],[-75.185254,41.85993],[-75.182533,41.861848],[-75.179134,41.869935],[-75.176633,41.872371],[-75.170565,41.871608],[-75.16805599310572,41.867051924347365],[-75.168406,41.858146],[-75.164943,41.852261],[-75.15960535067302,41.84908301001923],[-75.154829,41.848292],[-75.140241,41.852078],[-75.13166,41.845449],[-75.118789,41.845819],[-75.114399,41.843583],[-75.113441,41.836298],[-75.114998,41.8303],[-75.113334,41.822782],[-75.100024,41.818347],[-75.093537,41.813375],[-75.085789,41.811626],[-75.079818,41.814815],[-75.072172,41.813732],[-75.072176,41.808318],[-75.076889,41.798509],[-75.081415,41.796483],[-75.086908,41.797449],[-75.092876,41.796386],[-75.102329,41.786503],[-75.10464,41.774203],[-75.099975,41.768901],[-75.09281,41.768361],[-75.075942,41.771518],[-75.072664,41.768807],[-75.060759,41.764638],[-75.053431,41.752538],[-75.052808,41.744725],[-75.054818,41.735168],[-75.051831,41.719921],[-75.049699,41.715093],[-75.052226,41.711396],[-75.061174,41.712935],[-75.06663,41.712588],[-75.06883,41.708161],[-75.067278,41.705434],[-75.059829,41.699716],[-75.052736,41.688393],[-75.051234,41.682439],[-75.052653,41.678436],[-75.058765,41.674412],[-75.05843,41.669653],[-75.053991,41.668194],[-75.04992,41.662556],[-75.048683,41.656317],[-75.049281,41.641862],[-75.048199,41.632011],[-75.043562,41.62364],[-75.044224,41.617978],[-75.048385,41.615986],[-75.051856,41.618157],[-75.060098,41.617482],[-75.061675,41.615468],[-75.059725,41.610801],[-75.062716,41.609639],[-75.070465,41.60984],[-75.074613,41.605711],[-75.066955,41.599428],[-75.060012,41.590813],[-75.052858,41.587772],[-75.04676,41.583258],[-75.043581,41.573873],[-75.04049,41.569688],[-75.033165,41.565093],[-75.027343,41.563541]]]},"properties":{"district":10}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.101835,40.25017],[-77.108113,40.232718],[-77.104907,40.230486],[-77.102539,40.221936],[-77.106032,40.218873],[-77.10429,40.194864],[-77.087583,40.196177],[-77.077272,40.1963],[-77.062356,40.197593],[-77.043425,40.20265],[-77.03019,40.207062],[-77.032138,40.210804],[-77.031229,40.216541],[-77.025954,40.215724],[-77.013673,40.219173],[-77.011917,40.223896],[-77.007706,40.224303],[-77.001586,40.219374],[-76.991138,40.202523],[-76.986704,40.204434],[-76.987498,40.209886],[-76.984435,40.211185],[-76.977295,40.199642],[-76.973279,40.202839],[-76.968783,40.203048],[-76.976788,40.194153],[-76.987271,40.178493],[-76.9957,40.177292],[-76.999191,40.178779],[-77.006283,40.17741],[-77.019277,40.181423],[-77.012601,40.148421],[-77.019675,40.148309],[-77.022749,40.145814],[-77.028853,40.147838],[-77.031548,40.146642],[-77.042983,40.137845],[-77.140532,40.067709],[-77.162071,40.051697],[-77.18563,40.029501],[-77.229249,40.025046],[-77.276721,40.017202],[-77.360967,40.001993],[-77.403606,39.994478],[-77.471085,39.944077],[-77.454109,39.972432],[-77.459661,39.975477],[-77.465783,39.984436],[-77.470972,39.986845],[-77.474392,39.991937],[-77.478956,39.991755],[-77.484331,39.995584],[-77.489232,40.001333],[-77.495403,40.005145],[-77.499604,40.010248],[-77.500114,40.013446],[-77.509208,40.024934],[-77.507632,40.028386],[-77.512472,40.033768],[-77.518703,40.0382],[-77.519147,40.042445],[-77.522907,40.045752],[-77.532481,40.048749],[-77.530495,40.059232],[-77.531727,40.060063],[-77.534889,40.070272],[-77.541965,40.069875],[-77.53993,40.073937],[-77.542551,40.083907],[-77.543176,40.08979],[-77.548097,40.09013],[-77.553883,40.095883],[-77.560417,40.094256],[-77.561588,40.098335],[-77.557914,40.103097],[-77.561016,40.108358],[-77.562871,40.119286],[-77.569044,40.126313],[-77.574671,40.127729],[-77.582596,40.13443],[-77.590348,40.133945],[-77.592952,40.135393],[-77.593277,40.141974],[-77.604175,40.151412],[-77.608261,40.152738],[-77.612918,40.161234],[-77.613642,40.170161],[-77.616385,40.17248],[-77.627552,40.188665],[-77.614665,40.198549],[-77.605448,40.185362],[-77.593549,40.19201],[-77.589954,40.196514],[-77.580439,40.203856],[-77.578341,40.206626],[-77.558085,40.218638],[-77.555823,40.21919],[-77.536868,40.219072],[-77.52896,40.222999],[-77.52675,40.225587],[-77.515502,40.230504],[-77.510109,40.234416],[-77.497315,40.240234],[-77.473596,40.254216],[-77.457825,40.266125],[-77.432441,40.282455],[-77.426595,40.28661],[-77.413778,40.293892],[-77.394445,40.303506],[-77.375693,40.310691],[-77.366018,40.313569],[-77.360082,40.314075],[-77.357635,40.312476],[-77.359873,40.306684],[-77.364762,40.302541],[-77.386967,40.290351],[-77.402893,40.280128],[-77.409304,40.274554],[-77.411044,40.269315],[-77.419795,40.26407],[-77.423177,40.25793],[-77.420845,40.255368],[-77.413859,40.255215],[-77.402457,40.256954],[-77.385114,40.262712],[-77.360718,40.274701],[-77.354299,40.279278],[-77.340647,40.286915],[-77.328561,40.292311],[-77.322769,40.292001],[-77.323924,40.288605],[-77.330696,40.280588],[-77.330491,40.275596],[-77.317288,40.26759],[-77.312235,40.26774],[-77.280548,40.275923],[-77.287998,40.32453],[-77.303779,40.375079],[-77.308876,40.395047],[-77.266106,40.404619],[-77.2537,40.387205],[-77.249704,40.386154],[-77.219788,40.375447],[-77.209072,40.380323],[-77.198127,40.379326],[-77.17668,40.391752],[-77.172251,40.393484],[-77.155753,40.402565],[-77.150645,40.404061],[-77.143569,40.409565],[-77.139163,40.411428],[-77.130685,40.417614],[-77.123822,40.418847],[-77.120011,40.422372],[-77.11259,40.424431],[-77.083177,40.434473],[-77.072144,40.439574],[-77.064408,40.441865],[-77.057877,40.44093],[-77.048968,40.444598],[-77.04785,40.449474],[-77.038097,40.454022],[-77.035212,40.454007],[-77.026749,40.457302],[-77.02423,40.451077],[-77.017706,40.440589],[-77.014529,40.427058],[-77.003235,40.4268],[-76.997915,40.43367],[-76.98943,40.438163],[-76.986813,40.441838],[-76.980452,40.447136],[-76.969496,40.452732],[-76.961143,40.45579],[-76.952809,40.462467],[-76.949397,40.469037],[-76.94876,40.473391],[-76.949466,40.484527],[-76.953083,40.490621],[-76.966284,40.495762],[-76.96909,40.497562],[-76.978351,40.507149],[-76.985104,40.516349],[-76.985663,40.524997],[-76.98153,40.531923],[-76.980546,40.538332],[-76.981989,40.543415],[-76.991862,40.561272],[-76.992488,40.567534],[-76.988161,40.574585],[-76.983673,40.578259],[-76.965268,40.58706],[-76.958755,40.592855],[-76.953105,40.604504],[-76.953551,40.61477],[-76.950885,40.62713],[-76.947365,40.629517],[-76.939749,40.638378],[-76.934941,40.640451],[-76.927625,40.645707],[-76.920108,40.65587],[-76.917331,40.661713],[-76.910189,40.669255],[-76.903849,40.674096],[-76.890093,40.682015],[-76.886171,40.683068],[-76.880067,40.687173],[-76.874711,40.692692],[-76.865257,40.704606],[-76.861184,40.711598],[-76.856492,40.72263],[-76.855362,40.728821],[-76.857521,40.749612],[-76.856445,40.75581],[-76.859252,40.777043],[-76.856094,40.791211],[-76.852163,40.800839],[-76.848845,40.80644],[-76.848738,40.810632],[-76.840626,40.821324],[-76.829685,40.831029],[-76.818026,40.843293],[-76.812812,40.847106],[-76.806246,40.862535],[-76.79698,40.880605],[-76.791682,40.885976],[-76.778555,40.895887],[-76.767555,40.900668],[-76.758195,40.906202],[-76.744236,40.910707],[-76.732944,40.913054],[-76.722642,40.919055],[-76.713561,40.926979],[-76.70243,40.930452],[-76.691262,40.932457],[-76.68157,40.936384],[-76.674049,40.941141],[-76.666016,40.948831],[-76.660393,40.946906],[-76.656094,40.943133],[-76.654402,40.94981],[-76.656204,40.955807],[-76.65147,40.960134],[-76.661348,40.967996],[-76.674862,40.965502],[-76.682119,40.964962],[-76.687145,40.962753],[-76.734826,40.954448],[-76.743018,40.954484],[-76.767376,40.949784],[-76.775701,40.949471],[-76.79261,40.946647],[-76.793245,40.95014],[-76.790048,40.951625],[-76.7905,40.956708],[-76.785447,40.958907],[-76.786543,40.965163],[-76.784907,40.966926],[-76.773712,41.002552],[-76.775786,41.008118],[-76.773768,41.014356],[-76.770597,41.018727],[-76.761963,41.025932],[-76.764505,41.029611],[-76.759677,41.038706],[-76.756503,41.050503],[-76.746505,41.065533],[-76.734891,41.092133],[-76.734196,41.103801],[-76.735342,41.110098],[-76.733514,41.127687],[-76.735835,41.130074],[-76.733883,41.133287],[-76.735804,41.137833],[-76.731689,41.153239],[-76.731275,41.16308],[-76.732672,41.17204],[-76.729997,41.171881],[-76.678776,41.154172],[-76.592607,41.157765],[-76.521652,41.21426],[-76.499652,41.233856],[-76.478811,41.250083],[-76.425944,41.293447],[-76.407934,41.308418],[-76.374368,41.308676],[-76.310133,41.310199],[-76.284768,41.372965],[-76.276784,41.391568],[-76.228131,41.511137],[-76.223866,41.524544],[-76.206856,41.601647],[-76.197998,41.647823],[-76.163435,41.649255],[-76.115172,41.651825],[-76.114224,41.643385],[-76.087759,41.644724],[-76.014304,41.644269],[-75.986304,41.644801],[-75.972729,41.644317],[-75.879009,41.643462],[-75.868724,41.644356],[-75.831888,41.643142],[-75.797336,41.642615],[-75.79222,41.64205],[-75.767924,41.643409],[-75.719887,41.642263],[-75.719009,41.635757],[-75.723014,41.634562],[-75.729174,41.635791],[-75.749835,41.60709],[-75.774471,41.574187],[-75.769564,41.56823],[-75.791478,41.538813],[-75.802502,41.523578],[-75.772134,41.505869],[-75.786848,41.486946],[-75.825388,41.438172],[-75.834695,41.427246],[-75.831223,41.417806],[-75.832631,41.399934],[-75.828999,41.393198],[-75.819575,41.387518],[-75.80655,41.385183],[-75.797686,41.381535],[-75.795286,41.378127],[-75.796438,41.373135],[-75.802326,41.367327],[-75.807014,41.359823],[-75.80615,41.355471],[-75.810019,41.352941],[-75.814906,41.35319],[-75.822611,41.349089],[-75.825193,41.351456],[-75.838437,41.344492],[-75.838716,41.340474],[-75.843942,41.337456],[-75.846447,41.339832],[-75.85174,41.337079],[-75.857825,41.343062],[-75.881414,41.321784],[-75.859545,41.299274],[-75.849087,41.294549],[-75.868326,41.284296],[-75.870367,41.279255],[-75.865094,41.27084],[-75.864979,41.26846],[-75.87023,41.26144],[-75.877964,41.255496],[-75.879549,41.256686],[-75.886774,41.250903],[-75.890432,41.254608],[-75.902049,41.248492],[-75.911214,41.250107],[-75.920881,41.243925],[-75.928142,41.24097],[-75.882592,41.215388],[-75.875319,41.217353],[-75.868157,41.221863],[-75.865144,41.225314],[-75.854082,41.230264],[-75.845077,41.232101],[-75.834531,41.23576],[-75.826409,41.239787],[-75.808801,41.229961],[-75.779074,41.25418],[-75.734931,41.25505],[-75.652922,41.258314],[-75.650308,41.213024],[-75.649257,41.190951],[-75.648533,41.187244],[-75.643751,41.182228],[-75.643392,41.176172],[-75.639497,41.176214],[-75.636694,41.172051],[-75.631581,41.169347],[-75.614481,41.171653],[-75.611707,41.164104],[-75.604862,41.163694],[-75.600926,41.159491],[-75.604296,41.156591],[-75.603002,41.151914],[-75.609241,41.149944],[-75.615557,41.150001],[-75.614024,41.14537],[-75.616384,41.14288],[-75.628152,41.137159],[-75.628422,41.134185],[-75.625172,41.130735],[-75.628068,41.128287],[-75.63283,41.127945],[-75.634978,41.123192],[-75.641159,41.126908],[-75.648471,41.125426],[-75.645745,41.118134],[-75.646705,41.114197],[-75.643969,41.112773],[-75.637587,41.113398],[-75.632978,41.108534],[-75.628242,41.106901],[-75.62613,41.110597],[-75.620037,41.108971],[-75.615948,41.104759],[-75.612694,41.094237],[-75.604894,41.094143],[-75.606066,41.085624],[-75.600817,41.084481],[-75.59602,41.080677],[-75.587937,41.076424],[-75.582965,41.072635],[-75.580511,41.067764],[-75.576484,41.067573],[-75.574887,41.062691],[-75.571186,41.059304],[-75.569574,41.049963],[-75.561947,41.049523],[-75.508497,40.998177],[-75.49599,40.987181],[-75.546245,40.964603],[-75.57459,40.951323],[-75.556438,40.928693],[-75.633005,40.894565],[-75.677168,40.875449],[-75.690063,40.869129],[-75.699116,40.889029],[-75.707597,40.912399],[-75.712745,40.915594],[-75.721575,40.913483],[-75.730165,40.910114],[-75.736944,40.910675],[-75.739783,40.906161],[-75.747122,40.907918],[-75.74771,40.905634],[-75.741086,40.901107],[-75.744017,40.895362],[-75.753875,40.894889],[-75.755371,40.89345],[-75.758115,40.883177],[-75.762184,40.884013],[-75.79162,40.898809],[-75.798954,40.904121],[-75.926429,40.851726],[-75.955343,40.876478],[-75.997348,40.912985],[-76.02815,40.901986],[-76.039411,40.904886],[-76.092421,40.919476],[-76.207827,40.94974],[-76.249661,40.915792],[-76.284611,40.883588],[-76.30717,40.801809],[-76.388196,40.772607],[-76.415885,40.762863],[-76.504109,40.730559],[-76.564191,40.708174],[-76.600068,40.697064],[-76.637557,40.682863],[-76.662137,40.674013],[-76.694542,40.663064],[-76.700158,40.663766],[-76.701624,40.658082],[-76.691889,40.652303],[-76.668823,40.637599],[-76.641433,40.620922],[-76.58448,40.58511],[-76.535414,40.555157],[-76.589258,40.524877],[-76.624687,40.504681],[-76.683086,40.4718],[-76.696189,40.465447],[-76.70433,40.462297],[-76.718559,40.455511],[-76.749258,40.444198],[-76.718866,40.373599],[-76.733637,40.370343],[-76.749947,40.362966],[-76.757733,40.361526],[-76.758399,40.364686],[-76.764724,40.376859],[-76.769155,40.373206],[-76.779882,40.370769],[-76.786163,40.368183],[-76.779453,40.358896],[-76.773244,40.355537],[-76.772678,40.35346],[-76.76363,40.351436],[-76.762995,40.345528],[-76.758808,40.339942],[-76.758549,40.331514],[-76.763792,40.323588],[-76.759625,40.321824],[-76.756837,40.309875],[-76.750226,40.307648],[-76.749691,40.304786],[-76.744445,40.300501],[-76.744266,40.292495],[-76.742684,40.2875],[-76.743697,40.281163],[-76.747347,40.282545],[-76.748427,40.276108],[-76.746847,40.269942],[-76.73915,40.270331],[-76.738315,40.263894],[-76.727668,40.266057],[-76.725706,40.261828],[-76.734719,40.255595],[-76.736163,40.249895],[-76.730247,40.250598],[-76.726755,40.255827],[-76.723246,40.257017],[-76.718356,40.253896],[-76.71733,40.249291],[-76.72334,40.248294],[-76.727429,40.241182],[-76.72563,40.234995],[-76.726871,40.226052],[-76.726461,40.220918],[-76.718047,40.209597],[-76.723039,40.209642],[-76.723076,40.21335],[-76.725638,40.217309],[-76.734346,40.21617],[-76.735704,40.214283],[-76.735421,40.20673],[-76.741273,40.204569],[-76.735935,40.19788],[-76.741586,40.1966],[-76.745086,40.18766],[-76.733642,40.184771],[-76.756379,40.177052],[-76.763034,40.178955],[-76.774014,40.184091],[-76.787668,40.19155],[-76.800585,40.200111],[-76.821638,40.201343],[-76.828859,40.20502],[-76.834785,40.217962],[-76.839468,40.221615],[-76.859023,40.226328],[-76.866473,40.231157],[-76.878707,40.243889],[-76.884916,40.247265],[-76.87848,40.255196],[-76.863749,40.255569],[-76.861122,40.24979],[-76.856646,40.247971],[-76.85069,40.251208],[-76.851551,40.257618],[-76.839638,40.258495],[-76.841401,40.267762],[-76.838922,40.271996],[-76.850107,40.273216],[-76.85787,40.270954],[-76.86107,40.27785],[-76.869439,40.281091],[-76.876134,40.279484],[-76.881163,40.283053],[-76.8821,40.289589],[-76.880453,40.298433],[-76.877041,40.302279],[-76.879088,40.304124],[-76.878114,40.308608],[-76.88043,40.310379],[-76.882305,40.318627],[-76.888859,40.32624],[-76.899033,40.324342],[-76.902203,40.332683],[-76.904717,40.335011],[-76.916811,40.331676],[-76.91497,40.328484],[-76.949282,40.316861],[-76.974219,40.31033],[-77.005128,40.305617],[-77.024519,40.303958],[-77.041769,40.304402],[-77.059659,40.303293],[-77.063874,40.301967],[-77.07466,40.302236],[-77.083942,40.30122],[-77.095729,40.279141],[-77.095273,40.273655],[-77.100902,40.262096],[-77.098848,40.253379],[-77.101835,40.25017]]]},"properties":{"district":11}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.484729,40.534198],[-79.479337,40.537038],[-79.476918,40.535779],[-79.476383,40.529604],[-79.464289,40.53408],[-79.455033,40.534107],[-79.450176,40.530149],[-79.44964,40.526792],[-79.456545,40.523237],[-79.459738,40.516737],[-79.454548,40.507014],[-79.455297,40.496616],[-79.452462,40.48943],[-79.454011,40.485507],[-79.451747,40.482307],[-79.447537,40.480811],[-79.43846,40.486737],[-79.430628,40.489046],[-79.423574,40.473329],[-79.421315,40.470598],[-79.41569,40.470572],[-79.406631,40.474301],[-79.404308,40.472543],[-79.400956,40.465534],[-79.397926,40.462815],[-79.395461,40.457132],[-79.391102,40.454412],[-79.381753,40.452697],[-79.374191,40.453693],[-79.369591,40.456604],[-79.366334,40.465966],[-79.36707,40.47509],[-79.365925,40.477474],[-79.358595,40.477916],[-79.358029,40.470879],[-79.362275,40.460061],[-79.360526,40.454095],[-79.353851,40.451701],[-79.347185,40.452731],[-79.345926,40.454825],[-79.345408,40.467212],[-79.342093,40.470124],[-79.33844,40.469998],[-79.331732,40.461889],[-79.330267,40.453851],[-79.325409,40.452699],[-79.322786,40.456032],[-79.3161,40.459253],[-79.30245,40.461333],[-79.29974,40.460127],[-79.298014,40.455023],[-79.301677,40.451356],[-79.299897,40.444912],[-79.301751,40.439291],[-79.299435,40.434515],[-79.289409,40.436673],[-79.282848,40.442769],[-79.272605,40.439082],[-79.269351,40.428517],[-79.273542,40.422925],[-79.272856,40.418411],[-79.263281,40.416763],[-79.254114,40.422288],[-79.247568,40.43208],[-79.240175,40.429991],[-79.233203,40.430741],[-79.214783,40.424458],[-79.210876,40.42125],[-79.206513,40.415032],[-79.199233,40.41078],[-79.191197,40.415221],[-79.185372,40.41425],[-79.173713,40.410622],[-79.164369,40.410224],[-79.155789,40.411765],[-79.152051,40.408766],[-79.154002,40.401701],[-79.147892,40.3976],[-79.135005,40.398304],[-79.124749,40.395361],[-79.117,40.394243],[-79.114906,40.389879],[-79.122503,40.389354],[-79.128677,40.385056],[-79.127116,40.375068],[-79.121634,40.370576],[-79.109309,40.373318],[-79.102153,40.368868],[-79.096769,40.370725],[-79.096116,40.374035],[-79.090527,40.380243],[-79.088312,40.386553],[-79.082965,40.389582],[-79.074483,40.38582],[-79.069885,40.380414],[-79.064553,40.379002],[-79.058481,40.380868],[-79.057109,40.384293],[-79.051885,40.389286],[-79.042436,40.391382],[-79.039835,40.396273],[-79.036328,40.395996],[-79.032246,40.401957],[-79.027714,40.406136],[-79.034262,40.409754],[-79.033007,40.416774],[-79.027837,40.419574],[-79.016617,40.420279],[-78.996637,40.413256],[-78.98887,40.411974],[-78.982324,40.405779],[-78.974649,40.395972],[-78.940349,40.453071],[-78.913761,40.499259],[-78.910203,40.506977],[-78.872078,40.581164],[-78.860105,40.604665],[-78.85061,40.626939],[-78.834641,40.661678],[-78.817237,40.661601],[-78.810418,40.660473],[-78.806356,40.656878],[-78.801116,40.657957],[-78.802913,40.661816],[-78.795353,40.661929],[-78.792811,40.657937],[-78.78829,40.654718],[-78.78546,40.646321],[-78.781325,40.642174],[-78.777801,40.642479],[-78.772381,40.636849],[-78.768373,40.634802],[-78.759691,40.636175],[-78.759916,40.610657],[-78.76332,40.571503],[-78.761118,40.566395],[-78.758535,40.565181],[-78.730777,40.583773],[-78.729046,40.586781],[-78.71291,40.598869],[-78.713755,40.611268],[-78.704895,40.612579],[-78.69976,40.609786],[-78.699825,40.602345],[-78.697448,40.602607],[-78.694754,40.59644],[-78.68853,40.595824],[-78.68159,40.600226],[-78.674306,40.600035],[-78.670066,40.598478],[-78.66144,40.60022],[-78.652673,40.598362],[-78.645075,40.588433],[-78.648937,40.586343],[-78.648483,40.582023],[-78.644479,40.578927],[-78.650137,40.566846],[-78.655517,40.563947],[-78.656107,40.561252],[-78.667115,40.558789],[-78.668677,40.550897],[-78.673073,40.549317],[-78.678701,40.535373],[-78.678539,40.525667],[-78.685446,40.518392],[-78.684323,40.51172],[-78.673374,40.505204],[-78.675296,40.497529],[-78.67538,40.483467],[-78.684304,40.473207],[-78.697426,40.433458],[-78.686886,40.428765],[-78.678037,40.427358],[-78.673687,40.42966],[-78.669936,40.428344],[-78.663084,40.431298],[-78.646125,40.441463],[-78.633106,40.446694],[-78.556958,40.409136],[-78.564085,40.370609],[-78.602353,40.352973],[-78.608869,40.345258],[-78.618095,40.332099],[-78.618093,40.330319],[-78.625672,40.319318],[-78.635385,40.309498],[-78.642948,40.283396],[-78.651868,40.281678],[-78.643998,40.259446],[-78.658409,40.242933],[-78.66141,40.231104],[-78.676956,40.211207],[-78.698671,40.16145],[-78.721151,40.111858],[-78.739847,40.069571],[-78.752016,40.074917],[-78.763206,40.057005],[-78.769086,40.053692],[-78.773948,40.047112],[-78.773967,40.043632],[-78.78239,40.038798],[-78.79173,40.044148],[-78.880358,40.078658],[-78.884593,40.081588],[-78.904969,40.084478],[-78.911631,40.084925],[-78.920225,40.087846],[-78.921962,40.082692],[-78.932048,40.081851],[-78.939074,40.083825],[-78.939099,40.076391],[-78.936317,40.072742],[-78.947309,40.069716],[-78.95136,40.066361],[-78.956975,40.058438],[-78.96019,40.058751],[-78.965216,40.053204],[-78.960268,40.042024],[-78.968745,40.029418],[-78.968907,40.024703],[-78.972459,40.021092],[-78.978006,40.003069],[-78.980485,39.986405],[-78.981289,39.976415],[-78.993705,39.965871],[-79.018029,39.965622],[-79.024709,39.962833],[-79.042597,39.960273],[-79.047394,39.934296],[-79.094302,39.881547],[-79.100881,39.881604],[-79.109412,39.878992],[-79.113751,39.880307],[-79.123208,39.888337],[-79.125386,39.892281],[-79.132797,39.891193],[-79.134846,39.888055],[-79.138661,39.876913],[-79.17066,39.807248],[-79.185302,39.8147],[-79.187139,39.81976],[-79.190677,39.824099],[-79.195428,39.825133],[-79.196112,39.828364],[-79.200392,39.83153],[-79.200906,39.838169],[-79.198478,39.846145],[-79.207111,39.851595],[-79.210404,39.851545],[-79.216219,39.854459],[-79.218507,39.858634],[-79.228244,39.859508],[-79.226683,39.852916],[-79.232342,39.847406],[-79.24404,39.844524],[-79.244301,39.842602],[-79.237706,39.839682],[-79.2369,39.837615],[-79.240306,39.832708],[-79.245213,39.832826],[-79.249037,39.837947],[-79.253726,39.839652],[-79.256755,39.829219],[-79.25937,39.828484],[-79.264534,39.833821],[-79.269525,39.832354],[-79.273402,39.827474],[-79.283812,39.825974],[-79.288024,39.829659],[-79.292939,39.829508],[-79.304845,39.855328],[-79.327503,39.870092],[-79.331695,39.873264],[-79.326554,39.875842],[-79.326528,39.879952],[-79.321769,39.888472],[-79.329409,39.892838],[-79.326183,39.898239],[-79.322538,39.901046],[-79.328786,39.907465],[-79.337949,39.914476],[-79.334937,39.917933],[-79.338237,39.920588],[-79.339811,39.925043],[-79.33803,39.929342],[-79.334988,39.930835],[-79.338267,39.937332],[-79.343417,39.940127],[-79.342497,39.948049],[-79.363739,39.947778],[-79.343737,39.974301],[-79.32525,39.999872],[-79.296131,40.03675],[-79.293682,40.040413],[-79.288578,40.041775],[-79.28431,40.048246],[-79.278101,40.050479],[-79.278766,40.055537],[-79.271351,40.064238],[-79.267166,40.06601],[-79.267739,40.074268],[-79.264387,40.078668],[-79.258671,40.080273],[-79.256137,40.08834],[-79.246398,40.09371],[-79.243013,40.09227],[-79.23662,40.096541],[-79.226672,40.09825],[-79.22262,40.104171],[-79.220864,40.112737],[-79.213791,40.117991],[-79.210774,40.118903],[-79.205189,40.11656],[-79.196564,40.118454],[-79.196872,40.115951],[-79.192161,40.110267],[-79.185222,40.109848],[-79.180987,40.115714],[-79.174249,40.120604],[-79.171956,40.126351],[-79.167626,40.128783],[-79.165825,40.138691],[-79.162123,40.14331],[-79.163195,40.146297],[-79.162754,40.154062],[-79.160494,40.156884],[-79.160925,40.161141],[-79.149768,40.160373],[-79.140702,40.163307],[-79.141065,40.173058],[-79.143306,40.179889],[-79.134393,40.178722],[-79.129653,40.180924],[-79.125963,40.184999],[-79.127549,40.186769],[-79.123814,40.193949],[-79.1257,40.200701],[-79.121942,40.203138],[-79.116239,40.203753],[-79.114286,40.210258],[-79.107929,40.213026],[-79.103003,40.218231],[-79.09867,40.226097],[-79.100153,40.231149],[-79.095946,40.23261],[-79.094907,40.236485],[-79.088656,40.241259],[-79.138594,40.268451],[-79.142699,40.270917],[-79.253949,40.33176],[-79.258212,40.328426],[-79.262938,40.328974],[-79.269703,40.324181],[-79.270337,40.318399],[-79.279615,40.311589],[-79.282602,40.302957],[-79.281974,40.298364],[-79.286476,40.296894],[-79.285349,40.293379],[-79.290017,40.290513],[-79.289756,40.28776],[-79.295528,40.282053],[-79.300644,40.282453],[-79.314414,40.285975],[-79.322017,40.286432],[-79.328876,40.291959],[-79.347808,40.292084],[-79.354619,40.290947],[-79.356936,40.294967],[-79.364114,40.295748],[-79.370056,40.292017],[-79.371431,40.295694],[-79.365237,40.297326],[-79.371104,40.30023],[-79.368524,40.302712],[-79.371118,40.31292],[-79.371288,40.320672],[-79.383952,40.325372],[-79.387745,40.32848],[-79.393985,40.323148],[-79.403919,40.324116],[-79.404502,40.327645],[-79.398609,40.327064],[-79.400036,40.33698],[-79.391621,40.342807],[-79.387951,40.348037],[-79.382565,40.352743],[-79.382405,40.356045],[-79.387555,40.356501],[-79.389184,40.353714],[-79.394067,40.352363],[-79.405031,40.35611],[-79.406255,40.361941],[-79.414495,40.371413],[-79.414912,40.374561],[-79.421782,40.375171],[-79.427067,40.380104],[-79.430211,40.376175],[-79.435872,40.374793],[-79.439222,40.368692],[-79.447308,40.367221],[-79.449242,40.363882],[-79.458365,40.360133],[-79.465141,40.362306],[-79.480811,40.36105],[-79.48754,40.356325],[-79.504393,40.351246],[-79.514801,40.349379],[-79.524595,40.354107],[-79.571005,40.375162],[-79.578234,40.374657],[-79.588457,40.387302],[-79.596007,40.398733],[-79.60482,40.40203],[-79.609555,40.405701],[-79.624332,40.402298],[-79.655689,40.399372],[-79.672165,40.401075],[-79.677273,40.403342],[-79.687844,40.402195],[-79.691365,40.397601],[-79.694174,40.396962],[-79.701447,40.401348],[-79.708211,40.403114],[-79.7104,40.405565],[-79.716394,40.405921],[-79.725677,40.41191],[-79.722338,40.414919],[-79.718097,40.413607],[-79.715987,40.417319],[-79.707042,40.422426],[-79.704739,40.427231],[-79.704503,40.434025],[-79.713143,40.436888],[-79.721818,40.427889],[-79.725215,40.427612],[-79.730806,40.433402],[-79.741226,40.43831],[-79.750926,40.438791],[-79.753495,40.443709],[-79.754575,40.452846],[-79.757887,40.457839],[-79.762074,40.461814],[-79.768098,40.462016],[-79.773906,40.459653],[-79.779424,40.460972],[-79.776787,40.465825],[-79.77874,40.480864],[-79.784069,40.486964],[-79.783363,40.489876],[-79.788865,40.496283],[-79.787822,40.499134],[-79.792626,40.503497],[-79.791452,40.506281],[-79.793911,40.51163],[-79.798048,40.510241],[-79.800868,40.513306],[-79.80612,40.51346],[-79.80884,40.516069],[-79.820344,40.518101],[-79.819068,40.5231],[-79.820868,40.526167],[-79.827926,40.524571],[-79.828061,40.527952],[-79.833222,40.529883],[-79.835272,40.532634],[-79.822086,40.536206],[-79.805012,40.537455],[-79.783753,40.534108],[-79.772762,40.536327],[-79.766091,40.540713],[-79.763775,40.544997],[-79.765946,40.550915],[-79.761273,40.552701],[-79.75328,40.5531],[-79.74786,40.55146],[-79.743228,40.556437],[-79.734292,40.556402],[-79.73032,40.5706],[-79.73272,40.57083],[-79.7356,40.57712],[-79.74172,40.580573],[-79.737389,40.582253],[-79.739693,40.585438],[-79.74414,40.58361],[-79.74782,40.58967],[-79.749187,40.59897],[-79.74117,40.600666],[-79.728579,40.604774],[-79.72127,40.607966],[-79.712477,40.620076],[-79.715166,40.624249],[-79.721358,40.626701],[-79.733324,40.617719],[-79.743432,40.613567],[-79.751053,40.608855],[-79.755857,40.60903],[-79.756666,40.61181],[-79.76226,40.616134],[-79.765862,40.616422],[-79.766827,40.609072],[-79.770852,40.606185],[-79.789116,40.605965],[-79.788472,40.59014],[-79.796437,40.590122],[-79.796102,40.583532],[-79.788122,40.583363],[-79.787578,40.571856],[-79.78018,40.571933],[-79.775699,40.562828],[-79.811297,40.561932],[-79.811443,40.566534],[-79.822175,40.566339],[-79.823584,40.561673],[-79.869,40.560554],[-79.8677,40.535942],[-79.855506,40.536414],[-79.85488,40.520812],[-79.850494,40.520508],[-79.850546,40.514188],[-79.848853,40.503658],[-79.851113,40.493601],[-79.856864,40.498169],[-79.865968,40.495515],[-79.865498,40.485069],[-79.874238,40.48355],[-79.888213,40.483682],[-79.884556,40.486774],[-79.884604,40.490922],[-79.896912,40.492614],[-79.897604,40.487879],[-79.901679,40.485855],[-79.915182,40.488835],[-79.913728,40.493278],[-79.908806,40.495061],[-79.927363,40.497671],[-79.940458,40.496389],[-79.940547,40.501483],[-79.944788,40.504172],[-79.943228,40.507316],[-79.952451,40.508127],[-79.9562,40.505376],[-79.948027,40.498017],[-79.955589,40.493384],[-79.951054,40.487655],[-79.958568,40.483799],[-79.964756,40.477917],[-79.972885,40.482014],[-79.969842,40.483604],[-79.97108,40.495511],[-79.976137,40.495217],[-79.975153,40.483371],[-79.982652,40.483063],[-79.982543,40.476977],[-79.975789,40.477476],[-79.972793,40.474787],[-79.97872,40.471594],[-79.983868,40.466322],[-79.988092,40.476763],[-80.001683,40.480082],[-80.003188,40.482376],[-80.004034,40.49778],[-80.009124,40.497541],[-80.016984,40.499834],[-80.02014,40.49594],[-80.025485,40.495282],[-80.027864,40.49109],[-80.03749,40.490065],[-80.044539,40.492125],[-80.046014,40.494865],[-80.051321,40.496462],[-80.047948,40.502249],[-80.058289,40.508183],[-80.061592,40.505803],[-80.068495,40.509],[-80.068888,40.515387],[-80.079054,40.515165],[-80.077959,40.510987],[-80.087691,40.510764],[-80.087108,40.51706],[-80.096306,40.516402],[-80.099069,40.514623],[-80.107481,40.516823],[-80.108363,40.510521],[-80.120288,40.51314],[-80.120814,40.525995],[-80.150433,40.525187],[-80.152511,40.521677],[-80.16148,40.523803],[-80.171257,40.527397],[-80.186811,40.532356],[-80.190825,40.534488],[-80.195247,40.540459],[-80.180552,40.549151],[-80.181422,40.564372],[-80.207978,40.588038],[-80.214259,40.58086],[-80.218864,40.582048],[-80.227057,40.574183],[-80.246877,40.55937],[-80.272578,40.541045],[-80.2746,40.539167],[-80.330004,40.499729],[-80.360873,40.477539],[-80.393513,40.477286],[-80.438175,40.477783],[-80.466802,40.477341],[-80.5189953454551,40.47736329870129],[-80.51890690300407,40.521043495903534],[-80.519062,40.590138],[-80.518922,40.7182],[-80.5190191701796,40.851339398102816],[-80.518899,40.875061],[-80.51914563239609,40.902451742784976],[-80.452543,40.90523],[-80.354338,40.907471],[-80.307386,40.908055],[-80.263986,40.909002],[-80.217573,40.909775],[-80.216408,40.91494],[-80.207046,40.921016],[-80.201485,40.920479],[-80.189666,40.924717],[-80.188987,40.926781],[-80.190361,40.930595],[-80.183678,40.937325],[-80.178642,40.937279],[-80.172837,40.934437],[-80.162547,40.937751],[-80.160006,40.886909],[-80.159487,40.872961],[-80.156534,40.81728],[-80.155858,40.798371],[-80.155014,40.787281],[-80.151504,40.722776],[-80.149794,40.692694],[-80.148451,40.67429],[-80.125105,40.673669],[-80.10871,40.673916],[-80.100239,40.674038],[-80.071434,40.674935],[-80.071393,40.674174],[-80.021006,40.674061],[-79.987758,40.673579],[-79.96077,40.672306],[-79.928591,40.672922],[-79.914708,40.673234],[-79.875463,40.672278],[-79.851548,40.672166],[-79.828636,40.671073],[-79.811838,40.672255],[-79.798993,40.671979],[-79.732744,40.66924],[-79.707546,40.669851],[-79.692587,40.669732],[-79.680146,40.671944],[-79.668345,40.680049],[-79.662457,40.678321],[-79.652953,40.671905],[-79.644041,40.668849],[-79.638137,40.665601],[-79.636056,40.654481],[-79.628616,40.648673],[-79.622216,40.645697],[-79.613128,40.643617],[-79.609496,40.639809],[-79.609208,40.633345],[-79.608952,40.625954],[-79.602103,40.624497],[-79.596359,40.628321],[-79.591479,40.634337],[-79.586935,40.636737],[-79.582823,40.633169],[-79.588662,40.625521],[-79.589559,40.616593],[-79.583782,40.610414],[-79.584375,40.607041],[-79.581191,40.602529],[-79.574678,40.602625],[-79.570332,40.606721],[-79.566006,40.607953],[-79.558502,40.604993],[-79.551829,40.604705],[-79.551158,40.602145],[-79.556214,40.599809],[-79.56639,40.592961],[-79.570605,40.583535],[-79.56111,40.564113],[-79.557286,40.560961],[-79.547093,40.555521],[-79.536213,40.550333],[-79.526249,40.542364],[-79.520992,40.541305],[-79.511912,40.542683],[-79.508283,40.538473],[-79.507256,40.537364],[-79.498925,40.532152],[-79.49795,40.526533],[-79.490182,40.525704],[-79.485706,40.528376],[-79.484729,40.534198]]]},"properties":{"district":12}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.22434191156661,40.09218449202475],[-75.22941420464838,40.087176819566004],[-75.23448575148691,40.08216892591262],[-75.23955655229145,40.07716081113639],[-75.243133,40.073628],[-75.24469586342259,40.072195093617744],[-75.25000024303868,40.067331183728506],[-75.25530386519941,40.06246703196775],[-75.26060673010578,40.05760263841167],[-75.264431,40.054094],[-75.26573622482249,40.05555010227893],[-75.268759,40.058922],[-75.271456,40.059292],[-75.27155495786057,40.05942003577242],[-75.27576958822921,40.06487257406924],[-75.279804,40.070091],[-75.28012614302652,40.07020557185904],[-75.286266,40.072389],[-75.28768383214442,40.071995337601464],[-75.29546591401288,40.06983424658511],[-75.298797,40.068909],[-75.303512650714,40.068584326466976],[-75.306087,40.068407],[-75.306212,40.065325],[-75.30787134069098,40.065227041475666],[-75.314965,40.064808],[-75.31601328822283,40.06442225966072],[-75.323163,40.061791],[-75.3234643620181,40.06191845061499],[-75.328784,40.064168],[-75.33062514880882,40.0650897292164],[-75.333766,40.066662],[-75.33806388280533,40.06774540748264],[-75.341776,40.068681],[-75.34479998397593,40.07109538294953],[-75.347673,40.073389],[-75.35152340371407,40.0745257992333],[-75.353814,40.075202],[-75.35958442205961,40.07580531244499],[-75.364586,40.076328],[-75.36769304752472,40.077007040039696],[-75.37565432761258,40.07874652387208],[-75.38361601440508,40.08048546270557],[-75.389664,40.081806],[-75.39149100713217,40.08241045737642],[-75.394059,40.08326],[-75.39855812446594,40.08565700195858],[-75.40535385383254,40.08927691786954],[-75.409605,40.091541],[-75.41043295561131,40.0938273821365],[-75.410896,40.095106],[-75.40439697478209,40.09571255664123],[-75.399686,40.096152],[-75.39666024801129,40.09755151106354],[-75.394417,40.098589],[-75.38880175850191,40.09913619085027],[-75.383547,40.099648],[-75.38116672081136,40.101025764385184],[-75.379385,40.102057],[-75.3734706740797,40.103024785657894],[-75.370468,40.103516],[-75.37293984687905,40.10702575142538],[-75.37686847571645,40.112603120170164],[-75.377501,40.113501],[-75.379144,40.118156],[-75.37853495953338,40.11799213385353],[-75.37072042032712,40.1158892300545],[-75.36290636447758,40.11378580110371],[-75.361128,40.113307],[-75.35539009212592,40.111141781677084],[-75.350844,40.109426],[-75.34803131679926,40.11061529184505],[-75.346892,40.111097],[-75.35285881213437,40.11386961754478],[-75.355662,40.115172],[-75.3606036180794,40.11577472692953],[-75.365732,40.1164],[-75.36542009697689,40.11875174273128],[-75.365128,40.120954],[-75.36187502231604,40.124240446723434],[-75.3568744071099,40.12929171489186],[-75.35187304861553,40.1343427679549],[-75.34687094662108,40.13939360584209],[-75.344533,40.141754],[-75.34034261122913,40.142815132891855],[-75.338321,40.143327],[-75.339296,40.145775],[-75.33725708892074,40.14725358775768],[-75.334788,40.149044],[-75.33357188504365,40.152660210327575],[-75.333314,40.153427],[-75.3289264667987,40.15784121660611],[-75.327028,40.159751],[-75.323322,40.15758],[-75.32289451158069,40.157749601921786],[-75.3155371638512,40.160668179817094],[-75.312918,40.161707],[-75.30777472868027,40.16280120554152],[-75.299853,40.164486],[-75.29979170252925,40.16450696992962],[-75.2922249313023,40.16709522260957],[-75.291056,40.167495],[-75.28553249269007,40.16419704323291],[-75.284325,40.163476],[-75.28853570027708,40.159437030450405],[-75.29370057441645,40.15448193782452],[-75.293836,40.154352],[-75.296355,40.149395],[-75.29734090952634,40.14899900574651],[-75.303781,40.146412],[-75.302973180023,40.145945113652324],[-75.298153,40.143159],[-75.29952298960575,40.14179988967797],[-75.30458089968288,40.13678153435408],[-75.30963806273431,40.131762959022716],[-75.31469447897038,40.126744163755475],[-75.316659,40.124794],[-75.3184671377186,40.12117554838763],[-75.32142390359299,40.11525756747334],[-75.32438015489087,40.10933951138611],[-75.324773,40.108553],[-75.31770047728237,40.10759606459328],[-75.3177,40.107596],[-75.310448,40.109658],[-75.3102318214214,40.11004131623596],[-75.307197,40.115422],[-75.30667308617494,40.11567770074732],[-75.29968955626511,40.11908566483038],[-75.298658,40.119589],[-75.29654603594592,40.1247413105275],[-75.295839,40.126466],[-75.29124823575586,40.12360614874977],[-75.289033,40.122226],[-75.2853465342194,40.12527205392571],[-75.28406,40.126335],[-75.28143868305624,40.12187804759555],[-75.279254,40.118163],[-75.2788508025708,40.11592228980916],[-75.278282,40.112761],[-75.27426874164402,40.11344321987233],[-75.267244,40.114637],[-75.26789383351287,40.11396983558842],[-75.271917,40.109839],[-75.2706858460409,40.10912053546654],[-75.2641010033666,40.10527733971875],[-75.261356,40.103675],[-75.25676073415106,40.102538383317956],[-75.253586,40.101753],[-75.24865068111227,40.10150730806386],[-75.24038586372008,40.10109539269629],[-75.238674,40.10101],[-75.2370749579288,40.09613818604087],[-75.237047,40.096053],[-75.24483893618171,40.094182015327156],[-75.246288,40.093834],[-75.25112725902022,40.0902203895156],[-75.254253,40.087886],[-75.25139043350126,40.08584540945627],[-75.249067,40.084189],[-75.24408849094743,40.08505155844565],[-75.237735,40.086152],[-75.23667970160066,40.08723554054788],[-75.23173163543854,40.09231544032402],[-75.22678283059763,40.09739512953861],[-75.22183328686536,40.10247460812231],[-75.21688300402904,40.10755387600573],[-75.215876,40.108587],[-75.211139,40.107568],[-75.20946557467224,40.10765758093162],[-75.20120261263222,40.10809955301402],[-75.199267,40.108203],[-75.19465,40.109793],[-75.19363868618815,40.10919355757282],[-75.18709186092828,40.105312548079525],[-75.181387,40.10193],[-75.18038554253415,40.101654178226184],[-75.178261,40.101069],[-75.1745482924864,40.10469792697323],[-75.16944329669094,40.109686898394045],[-75.168559,40.110551],[-75.17387626039284,40.11385234564746],[-75.18030813658342,40.117844973405624],[-75.182074,40.118941],[-75.17611214551157,40.119522720702875],[-75.175894,40.119544],[-75.1718149038173,40.124864086085296],[-75.170256,40.126897],[-75.17374705780936,40.129847322858005],[-75.176162,40.131888],[-75.17379053933149,40.13497864620844],[-75.172508,40.13665],[-75.17562947225274,40.14034367384893],[-75.178664,40.143934],[-75.18010426861254,40.14219209072708],[-75.18453165572296,40.13683678883754],[-75.184591,40.136765],[-75.19101063490412,40.140635461894654],[-75.192677,40.14164],[-75.1964170452434,40.13789342264316],[-75.198288,40.136019],[-75.201244,40.137149],[-75.20170940908329,40.138555418779454],[-75.202947,40.142295],[-75.20238525903919,40.14473532317416],[-75.20186,40.147017],[-75.19866504414811,40.150208263487286],[-75.19362752451227,40.15523917387793],[-75.19244,40.156425],[-75.19738417670065,40.159452492918504],[-75.202731,40.162726],[-75.203622773946,40.16186322839953],[-75.208311,40.157327],[-75.2077376385746,40.15698700302646],[-75.201841,40.15349],[-75.2020129448306,40.15287303096333],[-75.20373960987172,40.146676810018484],[-75.204284,40.144723],[-75.20778826933793,40.14131144475896],[-75.210038,40.139121],[-75.212655,40.138208],[-75.21404779429282,40.139039757248035],[-75.22057880887309,40.14293949354774],[-75.22711057324513,40.14683886291467],[-75.233397,40.150591],[-75.23357844994219,40.15039679756166],[-75.23839501447917,40.14524121013928],[-75.24321084796682,40.14008542319519],[-75.244247,40.138976],[-75.24932241587399,40.142085166565664],[-75.25579002959127,40.146046451054175],[-75.255884,40.146104],[-75.252357,40.150235],[-75.25086557372212,40.15088099834045],[-75.24365416089438,40.154004115915946],[-75.23644208480017,40.15712678610307],[-75.231341,40.159335],[-75.23331132675388,40.160417760330716],[-75.24004202808545,40.16411599307213],[-75.24677346275016,40.16781383605275],[-75.2535056308466,40.17151128917909],[-75.26023853247338,40.1752083523576],[-75.261848,40.176092],[-75.261005,40.179968],[-75.26030907621649,40.18068392410092],[-75.25536473230177,40.18576980975039],[-75.253383,40.187808],[-75.24938044657792,40.185558110568266],[-75.24623,40.183787],[-75.244301,40.186603],[-75.24413059155575,40.18649577747181],[-75.23772987437488,40.182467962123546],[-75.233359,40.179717],[-75.23175603474729,40.18130909512735],[-75.227816,40.185222],[-75.22741728076075,40.18385712590726],[-75.2256112173319,40.17767400245393],[-75.22380548302499,40.1714908509429],[-75.223748,40.171294],[-75.21938587354676,40.16614529084426],[-75.218713,40.165351],[-75.21438869357921,40.169607993128785],[-75.20930443371749,40.1746122214131],[-75.205366,40.178488],[-75.20441885758765,40.177256486374674],[-75.20021850078497,40.1717943774776],[-75.199976,40.171479],[-75.201637,40.169813],[-75.19763832059105,40.16742985660802],[-75.19110158230541,40.16353341760972],[-75.18756,40.161422],[-75.1843412809625,40.162962749235035],[-75.182216,40.16398],[-75.18074398036724,40.15970679991092],[-75.18035,40.158563],[-75.17626465786245,40.16266175032744],[-75.17124083116109,40.16770119011783],[-75.167507,40.171446],[-75.16582789709356,40.17044498294221],[-75.1592916301508,40.1665477978925],[-75.15275611372363,40.162650245352275],[-75.14622134769303,40.15875232541442],[-75.143155,40.156923],[-75.14040504033608,40.15954742665688],[-75.13522294141015,40.16449223965493],[-75.13004008751574,40.16943682160305],[-75.127808,40.171566],[-75.13160782186392,40.17370639925099],[-75.136813,40.176638],[-75.13790505889502,40.17552084456524],[-75.142836,40.170476],[-75.14287593072301,40.17049979265541],[-75.14941432014844,40.17439527121741],[-75.1559534602283,40.178290381948585],[-75.16249335108147,40.18218512475595],[-75.16296,40.182463],[-75.163532,40.184129],[-75.1584198182977,40.1855640610672],[-75.15063569294882,40.18774862574002],[-75.150335,40.187833],[-75.14954759200171,40.1817722749881],[-75.149311,40.179951],[-75.14605105013858,40.18370491690043],[-75.143435,40.186717],[-75.14623079661645,40.18840190572179],[-75.15274213060528,40.19232541998666],[-75.1584,40.195734],[-75.15860230214619,40.19491751861135],[-75.159286,40.192158],[-75.16214299162358,40.189387690301544],[-75.162748,40.188801],[-75.166517,40.192263],[-75.16649659239924,40.193348468613436],[-75.16637748489059,40.19968303563108],[-75.166376,40.199762],[-75.167923,40.20144],[-75.1722550504821,40.20403347646119],[-75.1787839001131,40.207941434717505],[-75.18531350259866,40.2118490261426],[-75.19184385805906,40.215756250643416],[-75.195073,40.217688],[-75.19255507402055,40.220249565784115],[-75.187705,40.225183],[-75.18777985369016,40.2253394232747],[-75.190307,40.23062],[-75.19045283559734,40.23132444973258],[-75.191707,40.237382],[-75.1918694567359,40.23722195347579],[-75.19695224763083,40.232214074083956],[-75.20203428685682,40.227205972389235],[-75.205491,40.223799],[-75.20550538602973,40.2217734495996],[-75.205506,40.221687],[-75.2098796418053,40.216405524818796],[-75.21431309639082,40.2110508131374],[-75.215111,40.210087],[-75.21201021629702,40.20546319601592],[-75.211593,40.204841],[-75.215675,40.200479],[-75.21595419238774,40.200651927633565],[-75.22239695765454,40.20464204974534],[-75.228353,40.20833],[-75.2287894662266,40.207985642401894],[-75.231737,40.20566],[-75.235158,40.206809],[-75.23534574804155,40.206611133761584],[-75.2402129150972,40.2014811542637],[-75.24507934562672,40.19635097096164],[-75.245748,40.195646],[-75.25114017975265,40.19923754079838],[-75.255503,40.202143],[-75.25767182334674,40.203102230431114],[-75.26024,40.204238],[-75.2569612373207,40.20744479658729],[-75.25185533367612,40.21243784164873],[-75.24674867763062,40.21743066234076],[-75.245484,40.218667],[-75.25038360374431,40.221620367442476],[-75.25689649157046,40.225545466719865],[-75.262477,40.228908],[-75.26323488987539,40.228208860348744],[-75.26852508535953,40.22332821136168],[-75.273039,40.219163],[-75.27208620695951,40.21858545747975],[-75.26558850417491,40.21464635622187],[-75.264153,40.213776],[-75.26818338502697,40.209917748489445],[-75.27335611113112,40.20496509549605],[-75.274789,40.203593],[-75.28011800462443,40.205693689576734],[-75.284498,40.20742],[-75.28278699041076,40.20963410273739],[-75.281287,40.211575],[-75.28588131178248,40.213660496791796],[-75.29227,40.21656],[-75.29183677143293,40.21713116498308],[-75.2876782452844,40.22261315974215],[-75.28351904607756,40.228095005657856],[-75.28345,40.228186],[-75.28988628634043,40.23201587521078],[-75.291932,40.233233],[-75.290074,40.235167],[-75.29204780035163,40.23641548755235],[-75.29843851325855,40.240457258108144],[-75.303445,40.243623],[-75.298663,40.250412],[-75.29341408382965,40.25531987040246],[-75.28816440622596,40.2602275036316],[-75.286986,40.261329],[-75.28211036679492,40.258120179887094],[-75.27582435359203,40.25398238951938],[-75.274803,40.25331],[-75.278336,40.250646],[-75.27680268363241,40.24968334224767],[-75.271693,40.246475],[-75.27065801403202,40.247488666457215],[-75.26555547973237,40.252485515927475],[-75.26045219188786,40.25748214127167],[-75.25534815028773,40.26247854241706],[-75.25024335472114,40.26747471929087],[-75.24513780497726,40.272470671820294],[-75.243171,40.274395],[-75.23912638140224,40.27201849395026],[-75.23254834678126,40.268152765169894],[-75.22597106407575,40.26428666396461],[-75.21939453316931,40.26042019042799],[-75.21281875394553,40.25655334465347],[-75.20624372628801,40.25268612673457],[-75.19966945008028,40.248818536764716],[-75.19768,40.247648],[-75.19318739484675,40.244862362726984],[-75.18674579332628,40.24086754816527],[-75.18030495197505,40.23687237652535],[-75.17386487066373,40.23287684789986],[-75.16742554926311,40.228880962381396],[-75.16098698764391,40.22488472006253],[-75.159776,40.224133],[-75.15450062306302,40.220934263685315],[-75.14800376383737,40.21699413470627],[-75.14150766016947,40.2130536425468],[-75.13501231193571,40.20911278729979],[-75.12851771901246,40.20517156905809],[-75.126276,40.203811],[-75.12197701297971,40.201275681140224],[-75.11541235016547,40.197403511848606],[-75.1088484371083,40.19353097179847],[-75.10228527369159,40.18965806108298],[-75.09572285979864,40.1857847797953],[-75.08916119531278,40.18191112802856],[-75.08260028011735,40.17803710587585],[-75.0760401140956,40.17416271343027],[-75.06948069713084,40.170287950784896],[-75.06292202910635,40.16641281803277],[-75.059812,40.164575],[-75.05636855549507,40.16253292986743],[-75.04981984081606,40.15864871706316],[-75.04327187536977,40.15476413538448],[-75.03672465903861,40.15087918492438],[-75.0301781917049,40.146993865775734],[-75.02363247325097,40.14310817803145],[-75.01708750355913,40.1392221217844],[-75.0105432825117,40.135335697127445],[-75.00399980999097,40.13144890415344],[-74.997885,40.127816],[-74.99736647141381,40.12769554919801],[-74.98943892224617,40.125853690231025],[-74.988713,40.125685],[-74.982958,40.123353],[-74.98271339904895,40.12260107853945],[-74.981947,40.120245],[-74.97684448369988,40.120038126425605],[-74.973219,40.119891],[-74.97014198709438,40.11722094795321],[-74.970119,40.117201],[-74.964991,40.118635],[-74.96397886059869,40.11664719331432],[-74.963129,40.114978],[-74.96454426442898,40.11056482953485],[-74.965359,40.108024],[-74.96258290688937,40.10497058780418],[-74.960886,40.103104],[-74.96121563966572,40.099050103198316],[-74.961342,40.097496],[-74.956164,40.095745],[-74.9563175604077,40.09531331083281],[-74.958057,40.090423],[-74.95818208425405,40.08915951767033],[-74.95880740778155,40.08284238786127],[-74.958841,40.082503],[-74.96330774266477,40.07757779763502],[-74.963459,40.077411],[-74.971028,40.075981],[-74.97110507944969,40.075825187403716],[-74.973251,40.071487],[-74.9747141487863,40.07021226553478],[-74.98017700631374,40.065452293209724],[-74.980688,40.065007],[-74.98704710661974,40.06195884709664],[-74.990914,40.060105],[-74.99440268978343,40.0591288937262],[-75.001181,40.057232],[-75.00194962601776,40.0566734046138],[-75.00795150209495,40.052311079420335],[-75.008224,40.052113],[-75.010143,40.054607],[-75.0142224806795,40.05416896164534],[-75.014697,40.054118],[-75.01950202955608,40.04941755918519],[-75.020121,40.048812],[-75.021852,40.043677],[-75.02216238183242,40.04356403946944],[-75.02963584925197,40.040843778662385],[-75.03710872031877,40.038123037771385],[-75.04086,40.036757],[-75.04415128173301,40.03865521336412],[-75.05076105352816,40.042466731750004],[-75.05737156435299,40.04627787452918],[-75.061374,40.048585],[-75.06362829679,40.046776395569026],[-75.067678,40.043527],[-75.06572815347425,40.04244412893183],[-75.059801,40.039152],[-75.06047853521096,40.03863973089395],[-75.063196,40.036585],[-75.06764606151879,40.03674938614792],[-75.069261,40.036809],[-75.07217795053285,40.0322269882937],[-75.073733,40.029784],[-75.07756083834641,40.03190432981714],[-75.078277,40.032301],[-75.084692,40.031634],[-75.0846717578828,40.03093269060424],[-75.084488965887,40.0245990167228],[-75.084426,40.022417],[-75.07996643484886,40.020054513775555],[-75.07513,40.017492],[-75.0744736600805,40.01573104806011],[-75.072371,40.010089],[-75.07295226209004,40.00994525537211],[-75.078448,40.008586],[-75.07803585141774,40.00670044957389],[-75.077476,40.004139],[-75.08134320056723,40.00185903861779],[-75.08637,39.998895],[-75.08709321962212,40.00026289666307],[-75.088909,40.003697],[-75.0909066244966,40.005836193720455],[-75.095083,40.010308],[-75.09501608246192,40.011143460565634],[-75.094703,40.015052],[-75.09762397585195,40.01597319586192],[-75.098803,40.016345],[-75.10579132934667,40.01607914740506],[-75.11136,40.015867],[-75.1117917403568,40.013828548355086],[-75.112161,40.012085],[-75.11804405059931,40.012841282220684],[-75.125988,40.013862],[-75.12595342847335,40.01402584035176],[-75.125023,40.018435],[-75.12742930743536,40.01874573449225],[-75.134194,40.019619],[-75.13395993898116,40.02068557867464],[-75.13258875284063,40.02693317563119],[-75.13121731552069,40.03318075642396],[-75.12984562692029,40.039428321046394],[-75.1284736869384,40.04567586949197],[-75.12710149547394,40.05192340175413],[-75.12632,40.055481],[-75.12907935614096,40.057207127517515],[-75.135193,40.061031],[-75.13550032029788,40.06120444872154],[-75.1421626798017,40.06496420587017],[-75.14882577468332,40.068723581359905],[-75.1554896050472,40.07248257509776],[-75.161957,40.07613],[-75.16215115956302,40.076244247787066],[-75.16871467089935,40.080105947049574],[-75.1752789267485,40.08396727585922],[-75.176438,40.084649],[-75.18060853817312,40.08052208680683],[-75.18567264344753,40.07551007976458],[-75.188461,40.07275],[-75.19143723585094,40.07445766498594],[-75.1980615607755,40.078257901166765],[-75.20468662510126,40.08205776000303],[-75.2113124289369,40.08585724140182],[-75.21793897239102,40.08965634527021],[-75.22361,40.092907],[-75.22434191156661,40.09218449202475]]]},"properties":{"district":13}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.045051,40.399041],[-80.05922980793498,40.40565003129556],[-80.074716,40.412865],[-80.078693,40.416491],[-80.075648,40.420827],[-80.084326,40.420239],[-80.08571253385314,40.42541467124332],[-80.086417,40.428044],[-80.075835,40.434462],[-80.078409,40.438768],[-80.089237,40.443333],[-80.090621,40.451419],[-80.09073566227546,40.451392177678144],[-80.104476,40.448177],[-80.112671,40.454359],[-80.113618,40.460245],[-80.112189,40.463719],[-80.11512455829823,40.469384080384195],[-80.120824,40.48038],[-80.124635,40.482271],[-80.131888,40.481278],[-80.139573,40.484654],[-80.143639,40.484567],[-80.14577874831082,40.48892262770999],[-80.14634,40.490065],[-80.151978,40.495035],[-80.153396,40.499224],[-80.141012,40.500004],[-80.141603,40.50285],[-80.146448,40.506752],[-80.1503,40.503551],[-80.161124,40.506225],[-80.173444,40.511915],[-80.176859,40.519684],[-80.171257,40.527397],[-80.16148,40.523803],[-80.152511,40.521677],[-80.150433,40.525187],[-80.12922099637707,40.525766429547026],[-80.120814,40.525995],[-80.120288,40.51314],[-80.108363,40.510521],[-80.107481,40.516823],[-80.10704612425012,40.516709284937],[-80.099069,40.514623],[-80.096306,40.516402],[-80.087108,40.51706],[-80.087691,40.510764],[-80.077959,40.510987],[-80.079054,40.515165],[-80.07745477467563,40.515199982224026],[-80.068888,40.515387],[-80.068495,40.509],[-80.061592,40.505803],[-80.058289,40.508183],[-80.047948,40.502249],[-80.04955420785339,40.49949339264705],[-80.051321,40.496462],[-80.046014,40.494865],[-80.044539,40.492125],[-80.03749,40.490065],[-80.027864,40.49109],[-80.025485,40.495282],[-80.02014,40.49594],[-80.01810838360174,40.49844675187324],[-80.016984,40.499834],[-80.009124,40.497541],[-80.004034,40.49778],[-80.003188,40.482376],[-80.001683,40.480082],[-79.99481166706076,40.478404221141304],[-79.988092,40.476763],[-79.983868,40.466322],[-79.97872,40.471594],[-79.972793,40.474787],[-79.975789,40.477476],[-79.98032921795192,40.47714060309169],[-79.982543,40.476977],[-79.982652,40.483063],[-79.975153,40.483371],[-79.976137,40.495217],[-79.97108,40.495511],[-79.97044118221439,40.48936742314579],[-79.969842,40.483604],[-79.972885,40.482014],[-79.964756,40.477917],[-79.958568,40.483799],[-79.951054,40.487655],[-79.95440780135068,40.491891920086154],[-79.955589,40.493384],[-79.948027,40.498017],[-79.9562,40.505376],[-79.952451,40.508127],[-79.943228,40.507316],[-79.944788,40.504172],[-79.94252502781363,40.50273721183182],[-79.940547,40.501483],[-79.940458,40.496389],[-79.927363,40.497671],[-79.908806,40.495061],[-79.91347841289563,40.49336842051384],[-79.913728,40.493278],[-79.915182,40.488835],[-79.901679,40.485855],[-79.897604,40.487879],[-79.896912,40.492614],[-79.884604,40.490922],[-79.8845817834279,40.489002181638206],[-79.884556,40.486774],[-79.888213,40.483682],[-79.874238,40.48355],[-79.865498,40.485069],[-79.865968,40.495515],[-79.86462787267254,40.49590573222002],[-79.856864,40.498169],[-79.851113,40.493601],[-79.848853,40.503658],[-79.850546,40.514188],[-79.85053019041382,40.51610959884615],[-79.850494,40.520508],[-79.85488,40.520812],[-79.855506,40.536414],[-79.8677,40.535942],[-79.86784480566931,40.53868440156934],[-79.869,40.560554],[-79.85124953023464,40.56099347345114],[-79.823584,40.561673],[-79.822175,40.566339],[-79.811443,40.566534],[-79.811398316161,40.565125608130856],[-79.811297,40.561932],[-79.775699,40.562828],[-79.77806212176473,40.567629987025185],[-79.78018,40.571933],[-79.787578,40.571856],[-79.788122,40.583363],[-79.796102,40.583532],[-79.796437,40.590122],[-79.79512853095505,40.59012499454744],[-79.788472,40.59014],[-79.789116,40.605965],[-79.770852,40.606185],[-79.77025414234292,40.606613848225216],[-79.766827,40.609072],[-79.765862,40.616422],[-79.76226,40.616134],[-79.756666,40.61181],[-79.755857,40.60903],[-79.751053,40.608855],[-79.743432,40.613567],[-79.74152705242227,40.614349590264744],[-79.733324,40.617719],[-79.721358,40.626701],[-79.715166,40.624249],[-79.712477,40.620076],[-79.71602555938298,40.61518941941642],[-79.72127,40.607966],[-79.728579,40.604774],[-79.74117,40.600666],[-79.749187,40.59897],[-79.74860169461866,40.594988358157096],[-79.74782,40.58967],[-79.74414,40.58361],[-79.739693,40.585438],[-79.737389,40.582253],[-79.74172,40.580573],[-79.7356,40.57712],[-79.73283363207969,40.57107819938419],[-79.73272,40.57083],[-79.73032,40.5706],[-79.734292,40.556402],[-79.743228,40.556437],[-79.74786,40.55146],[-79.75328,40.5531],[-79.755179831591,40.5530052132501],[-79.761273,40.552701],[-79.765946,40.550915],[-79.763775,40.544997],[-79.766091,40.540713],[-79.772762,40.536327],[-79.783753,40.534108],[-79.78458255594036,40.534238683948175],[-79.805012,40.537455],[-79.822086,40.536206],[-79.83012691686307,40.53402799255808],[-79.835272,40.532634],[-79.833222,40.529883],[-79.828061,40.527952],[-79.827926,40.524571],[-79.820868,40.526167],[-79.819068,40.5231],[-79.820344,40.518101],[-79.81231798887148,40.516683465133625],[-79.80884,40.516069],[-79.80612,40.51346],[-79.800868,40.513306],[-79.798048,40.510241],[-79.793911,40.51163],[-79.791452,40.506281],[-79.792626,40.503497],[-79.787822,40.499134],[-79.788865,40.496283],[-79.78820201616023,40.495511043494915],[-79.783363,40.489876],[-79.784069,40.486964],[-79.77874,40.480864],[-79.776787,40.465825],[-79.77842022541276,40.46281938516317],[-79.779424,40.460972],[-79.773906,40.459653],[-79.768098,40.462016],[-79.762074,40.461814],[-79.757887,40.457839],[-79.759869,40.456162],[-79.762244,40.449183],[-79.767043,40.446652],[-79.76701854180195,40.44627333110727],[-79.766712,40.441527],[-79.76155,40.438914],[-79.760232,40.433285],[-79.76231,40.429398],[-79.757816,40.428317],[-79.754431,40.425395],[-79.756368,40.419669],[-79.75374439849001,40.41800646165599],[-79.752202,40.417029],[-79.752626,40.412774],[-79.748661,40.407185],[-79.751,40.403359],[-79.75013,40.398674],[-79.744008,40.399948],[-79.744702,40.3959],[-79.7479054449804,40.39112190436677],[-79.748077,40.390866],[-79.753776,40.388538],[-79.762068,40.392768],[-79.765137,40.389468],[-79.765943,40.384188],[-79.771082,40.375419],[-79.77181141550558,40.3718592486733],[-79.77897009823178,40.33690267036108],[-79.780145,40.331162],[-79.783806,40.315441],[-79.787676,40.315054],[-79.793563,40.320197],[-79.796214,40.318319],[-79.79756042662592,40.31849298807783],[-79.810506,40.320165],[-79.818472,40.318875],[-79.827068,40.313444],[-79.8358,40.312593],[-79.835747,40.308922],[-79.83589337015634,40.308682964974544],[-79.839537,40.302732],[-79.829311,40.298341],[-79.834151,40.291347],[-79.838394,40.289613],[-79.841262,40.285437],[-79.84571594643702,40.284349948065284],[-79.846277,40.284213],[-79.851501,40.279516],[-79.861875,40.277403],[-79.866966,40.278914],[-79.873096,40.276899],[-79.880129,40.285376],[-79.88136391437378,40.28449962092122],[-79.883708,40.282836],[-79.888347,40.283189],[-79.892702,40.28091],[-79.897918,40.281],[-79.900475,40.283211],[-79.90037,40.29563],[-79.89264612312793,40.296789088171316],[-79.883666,40.298136],[-79.889186,40.300709],[-79.895365,40.29889],[-79.899632,40.301915],[-79.894698,40.30558],[-79.900743,40.312036],[-79.9007927048486,40.31282048949541],[-79.901255,40.320116],[-79.931436,40.326585],[-79.93583292183787,40.329071371647004],[-79.964,40.344991],[-79.966729,40.341554],[-79.97172080460378,40.3389090256984],[-79.974742,40.337308],[-79.980922,40.335982],[-79.986659,40.331191],[-80.005578,40.342965],[-80.00713388057878,40.34525333163477],[-80.010669,40.350452],[-80.005369,40.352851],[-80.004122,40.348162],[-79.997117,40.350727],[-79.990771,40.349862],[-79.985289,40.345463],[-79.98123661746885,40.34489951694373],[-79.977753,40.344415],[-79.973103,40.345575],[-79.97416,40.350374],[-79.969455,40.357692],[-79.965268,40.35778],[-79.967958,40.362807],[-79.958908,40.364305],[-79.95911824036779,40.36450891290223],[-79.964472,40.369701],[-79.982341,40.360872],[-79.989981,40.364353],[-79.985363,40.368715],[-79.98537494450052,40.36887762037051],[-79.986032,40.377822],[-79.990873,40.378946],[-79.994945,40.375666],[-79.999123,40.377344],[-80.001439,40.374887],[-80.00786,40.374996],[-80.007899,40.378237],[-80.01198456335052,40.3793177037484],[-80.013188,40.379636],[-80.016823,40.376845],[-80.023451,40.377457],[-80.020169,40.383733],[-80.020219,40.386701],[-80.027827,40.391598],[-80.033625,40.389801],[-80.03500455461409,40.38665882326335],[-80.036271,40.383774],[-80.038864,40.383017],[-80.042287,40.389501],[-80.04625,40.393789],[-80.045051,40.399041]]]},"properties":{"district":14}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.844663,40.693001],[-75.80917542672282,40.70694747872602],[-75.807789,40.707492],[-75.796518,40.717034],[-75.779682,40.725022],[-75.77769,40.729534],[-75.765947,40.730926],[-75.757761,40.735442],[-75.75759688297742,40.735503942282826],[-75.744863,40.740309],[-75.743585,40.743462],[-75.739309,40.744155],[-75.7286,40.753915],[-75.7035968471238,40.761865338075616],[-75.702418,40.76224],[-75.694621,40.770186],[-75.672771,40.775723],[-75.64415839279742,40.781019536485644],[-75.609303,40.787461],[-75.602608,40.788043],[-75.595453,40.793302],[-75.58243681747747,40.79773071806851],[-75.577488,40.799414],[-75.565091,40.801105],[-75.557532,40.801188],[-75.551359,40.804552],[-75.541549,40.806815],[-75.528444,40.806725],[-75.519045,40.808813],[-75.51851390211303,40.80882689518141],[-75.508018,40.809101],[-75.485272,40.812525],[-75.474193,40.814746],[-75.45270563254645,40.81719810995465],[-75.44245,40.818367],[-75.42049,40.823451],[-75.416759,40.826102],[-75.3888412462695,40.83021624257609],[-75.383266,40.831037],[-75.341752,40.845317],[-75.3286872556204,40.85180594958619],[-75.320931,40.855657],[-75.300594,40.859563],[-75.293485,40.860237],[-75.30404332977723,40.83939946373046],[-75.305206,40.837104],[-75.289804,40.837881],[-75.280979,40.84672],[-75.273997,40.846554],[-75.272535,40.842809],[-75.265464,40.836876],[-75.264421,40.841463],[-75.25970052067088,40.84127528092798],[-75.258839,40.841241],[-75.259504,40.837983],[-75.263657,40.835244],[-75.25242,40.821158],[-75.229025,40.826661],[-75.227611848235,40.8192255558625],[-75.219877,40.778498],[-75.22870205657362,40.771780513700214],[-75.236579,40.765783],[-75.250168,40.759081],[-75.259222,40.759773],[-75.26583,40.758232],[-75.26825,40.762015],[-75.274631,40.75863],[-75.2846542794754,40.75772623101064],[-75.326936,40.753904],[-75.322879,40.749485],[-75.321464,40.741077],[-75.325241,40.741298],[-75.3262353599733,40.739844265294984],[-75.330709,40.733303],[-75.323463,40.731592],[-75.311451,40.732684],[-75.30478,40.730455],[-75.297526,40.73094],[-75.297865,40.73387],[-75.283764,40.735105],[-75.28319795148899,40.73153524980899],[-75.277,40.692423],[-75.29167469175823,40.690914732308315],[-75.308918,40.68914],[-75.35768987255824,40.68339158312765],[-75.374807,40.681369],[-75.373046,40.66778],[-75.361926,40.672575],[-75.34445017567762,40.66768459174464],[-75.342712,40.667198],[-75.33807,40.653768],[-75.336261,40.652066],[-75.344498,40.645125],[-75.342292,40.629714],[-75.350192,40.629146],[-75.34990541693587,40.62687422618046],[-75.349391,40.622796],[-75.347004,40.620342],[-75.364209,40.617064],[-75.358449,40.609611],[-75.353042,40.608801],[-75.344868,40.609484],[-75.34576353388428,40.62040500143886],[-75.345776,40.620557],[-75.335624,40.620602],[-75.333369,40.623471],[-75.332554,40.631009],[-75.326693,40.633636],[-75.310823,40.630434],[-75.30182,40.634717],[-75.296602,40.639243],[-75.2964175295384,40.63930759512174],[-75.291861,40.640903],[-75.274066,40.641764],[-75.267956,40.645148],[-75.253096,40.650249],[-75.246363,40.654987],[-75.244036,40.650889],[-75.240631,40.649218],[-75.24015818558574,40.64977557079745],[-75.234093,40.656927],[-75.232639,40.66265],[-75.226356,40.667937],[-75.227189,40.672836],[-75.199323,40.675438],[-75.19666458105529,40.677575360056345],[-75.194482,40.67933],[-75.190158,40.679414],[-75.184516,40.679971],[-75.177587,40.677731],[-75.177491,40.672595],[-75.182756,40.665971],[-75.19084627371389,40.66194270373501],[-75.200452,40.649219],[-75.200468,40.646899],[-75.195351,40.643044],[-75.19083512960502,40.63607116200627],[-75.188579,40.624628],[-75.19069029885057,40.61995676489028],[-75.197891,40.619332],[-75.201812,40.617188],[-75.196803,40.60858],[-75.236848,40.590748],[-75.2546594606428,40.583441737571455],[-75.258151,40.582009],[-75.293528,40.561978],[-75.3079392251899,40.55310711977355],[-75.308745,40.552611],[-75.333048,40.536767],[-75.338633,40.534068],[-75.35890509800782,40.52059103318583],[-75.367911,40.514601],[-75.40977858585617,40.48794141132502],[-75.409733,40.487984],[-75.4517750953534,40.448675506805095],[-75.484057,40.418451],[-75.490104,40.422192],[-75.49587855898692,40.42587916973308],[-75.49874,40.427706],[-75.54729122942432,40.45799675051988],[-75.571926,40.473348],[-75.5856526718217,40.44910663065168],[-75.592173,40.437585],[-75.594786,40.428021],[-75.601219,40.431242],[-75.62733232000214,40.42081498390359],[-75.627883,40.420595],[-75.636018,40.440996],[-75.615828,40.461044],[-75.62050849953285,40.46078742467729],[-75.68686612165737,40.457129313839296],[-75.689578,40.456979],[-75.706695,40.475897],[-75.726879,40.493048],[-75.72879084318693,40.49093094849379],[-75.742847,40.475361],[-75.750642,40.469823],[-75.77454561208695,40.48490122977263],[-75.805772,40.504581],[-75.818421,40.513125],[-75.8123295322725,40.51826206103624],[-75.811318,40.519115],[-75.823873,40.532874],[-75.825601,40.53603],[-75.836077,40.536371],[-75.843105,40.539247],[-75.845958,40.534126],[-75.851439,40.531697],[-75.855947,40.533982],[-75.8566941881698,40.5334564406361],[-75.858968,40.531857],[-75.857742,40.524097],[-75.861113,40.523205],[-75.874647,40.525838],[-75.883163,40.51635],[-75.882515,40.506697],[-75.884428,40.502601],[-75.88602940027152,40.50153128864533],[-75.889112,40.499472],[-75.892855,40.49436],[-75.896632,40.497124],[-75.924202,40.486002],[-75.9408573776451,40.4802074010847],[-75.948205,40.47765],[-75.958474,40.473062],[-75.976325,40.466516],[-75.974709,40.461446],[-75.977135,40.454469],[-75.97201637377273,40.44758790797585],[-75.97189,40.447418],[-75.980183,40.442758],[-75.991754,40.44073],[-76.034100223316,40.43143418002831],[-76.042264,40.42964],[-76.06496060234002,40.47027572671483],[-76.072355,40.483503],[-76.106579,40.477937],[-76.106445,40.474205],[-76.113088,40.474382],[-76.1141150699562,40.47407728935147],[-76.117938,40.472943],[-76.11616,40.455047],[-76.120318,40.45185],[-76.11946,40.439067],[-76.116816,40.437888],[-76.115541,40.430308],[-76.11404676201502,40.42833013331046],[-76.112458,40.426227],[-76.119035,40.426461],[-76.130699,40.417377],[-76.131566,40.413401],[-76.139126,40.419341],[-76.140152,40.416052],[-76.145263,40.412027],[-76.153139,40.41117],[-76.15416291007891,40.414213949720505],[-76.155265,40.41749],[-76.159536,40.419907],[-76.165683,40.419389],[-76.168389,40.414992],[-76.167865,40.40889],[-76.169469,40.406767],[-76.168918,40.40153],[-76.173964,40.399392],[-76.181234,40.409669],[-76.18613634187615,40.40981835156919],[-76.25256820553079,40.41182174473434],[-76.307108,40.413438],[-76.31635666891157,40.41914552356413],[-76.341021,40.434358],[-76.35619947087439,40.41055751693],[-76.370664,40.387859],[-76.353199,40.389401],[-76.35066430760361,40.37755717638517],[-76.350605,40.37728],[-76.348761,40.364321],[-76.374379,40.353819],[-76.39079866913912,40.345297475784086],[-76.391965,40.344692],[-76.393525,40.349641],[-76.402561,40.34973],[-76.402771,40.352196],[-76.421637,40.355548],[-76.431868,40.355802],[-76.439248,40.354991],[-76.443597,40.352324],[-76.44693304813592,40.3517835192492],[-76.449232,40.351411],[-76.449797,40.34856],[-76.441532,40.344499],[-76.42704,40.345552],[-76.42711,40.339096],[-76.439462,40.338251],[-76.438361,40.332923],[-76.442415,40.329525],[-76.44166405081609,40.32818036175138],[-76.440361,40.325847],[-76.436088,40.327737],[-76.424023,40.319915],[-76.416448,40.322549],[-76.408775,40.300144],[-76.41222976712176,40.29938790249364],[-76.424822,40.296631],[-76.456425,40.293468],[-76.47614048119763,40.287131215805346],[-76.477606,40.28666],[-76.475035,40.271251],[-76.46821611631239,40.23777769267716],[-76.466307,40.2284],[-76.502044,40.217435],[-76.51618413988962,40.21286666420838],[-76.566339,40.196644],[-76.57026,40.194559],[-76.57728796799724,40.19479649026654],[-76.579051,40.194856],[-76.582682,40.190952],[-76.599865,40.188264],[-76.606519,40.18999],[-76.612987,40.185381],[-76.615948,40.180607],[-76.623206,40.179312],[-76.627685,40.176739],[-76.63002400175452,40.173496752437664],[-76.632102,40.170616],[-76.634744,40.17054],[-76.644103,40.164906],[-76.653104,40.16605],[-76.655065,40.163959],[-76.662043,40.163467],[-76.672742,40.157608],[-76.670563,40.154487],[-76.67641,40.15297],[-76.67670427650812,40.149987284031965],[-76.676756,40.149463],[-76.680612,40.149063],[-76.683151,40.151795],[-76.690135,40.148114],[-76.689939,40.152238],[-76.692316,40.15741],[-76.695594,40.154097],[-76.696158,40.150117],[-76.699874,40.14511],[-76.705696,40.143012],[-76.710092,40.137084],[-76.71066692530084,40.135102485748334],[-76.711198,40.133272],[-76.715907,40.131479],[-76.72162,40.12007],[-76.732652,40.122732],[-76.737236,40.125245],[-76.743537,40.13085],[-76.745568,40.139298],[-76.74568309970026,40.14266559900689],[-76.74579,40.145793],[-76.748259,40.155761],[-76.749112,40.167113],[-76.750844,40.173372],[-76.756379,40.177052],[-76.73966478246143,40.182726925407515],[-76.733642,40.184771],[-76.745086,40.18766],[-76.741586,40.1966],[-76.735935,40.19788],[-76.741273,40.204569],[-76.735421,40.20673],[-76.735704,40.214283],[-76.734346,40.21617],[-76.73429593757834,40.21617655010235],[-76.725638,40.217309],[-76.723076,40.21335],[-76.723039,40.209642],[-76.718047,40.209597],[-76.726461,40.220918],[-76.726871,40.226052],[-76.72563,40.234995],[-76.72699928947758,40.23970427373956],[-76.727429,40.241182],[-76.72334,40.248294],[-76.71733,40.249291],[-76.718356,40.253896],[-76.723246,40.257017],[-76.726755,40.255827],[-76.730247,40.250598],[-76.736163,40.249895],[-76.734719,40.255595],[-76.7270126478098,40.26092449353952],[-76.725706,40.261828],[-76.727668,40.266057],[-76.738315,40.263894],[-76.73915,40.270331],[-76.746847,40.269942],[-76.748427,40.276108],[-76.747347,40.282545],[-76.743697,40.281163],[-76.742684,40.2875],[-76.74322700078291,40.289214553986454],[-76.744266,40.292495],[-76.744445,40.300501],[-76.749691,40.304786],[-76.750226,40.307648],[-76.756837,40.309875],[-76.759625,40.321824],[-76.763792,40.323588],[-76.758549,40.331514],[-76.75855907618157,40.33184192376775],[-76.758808,40.339942],[-76.762995,40.345528],[-76.76363,40.351436],[-76.772678,40.35346],[-76.773244,40.355537],[-76.779453,40.358896],[-76.786163,40.368183],[-76.78102775827954,40.37029731096728],[-76.779882,40.370769],[-76.769155,40.373206],[-76.764724,40.376859],[-76.758399,40.364686],[-76.757733,40.361526],[-76.749947,40.362966],[-76.73445102785553,40.36997490845274],[-76.733637,40.370343],[-76.718866,40.373599],[-76.73447876729033,40.409886122701664],[-76.749258,40.444198],[-76.73209480514703,40.45052434163863],[-76.718559,40.455511],[-76.70433,40.462297],[-76.696189,40.465447],[-76.683086,40.4718],[-76.67502451307072,40.47634260941805],[-76.624687,40.504681],[-76.62153902301995,40.5064764080559],[-76.589258,40.524877],[-76.56816287641983,40.53674640617966],[-76.535414,40.555157],[-76.51550360095551,40.54259154849571],[-76.499684,40.532602],[-76.4639144566964,40.510578737060065],[-76.440181,40.495952],[-76.4186,40.495615],[-76.405874,40.498729],[-76.40492985657583,40.49910766907951],[-76.399498,40.501286],[-76.384348,40.505739],[-76.378157,40.506012],[-76.369222,40.509597],[-76.3524,40.511157],[-76.3422911086403,40.51434706604991],[-76.339109,40.515351],[-76.330435,40.51591],[-76.322544,40.51416],[-76.314579,40.51591],[-76.302326,40.514658],[-76.282109,40.516137],[-76.27694996524437,40.51688788696139],[-76.272152,40.517586],[-76.262998,40.516697],[-76.256008,40.517067],[-76.234321,40.522074],[-76.231123,40.524216],[-76.219407,40.528699],[-76.21403717128541,40.5293044782829],[-76.196634,40.531265],[-76.185638,40.535555],[-76.171624,40.534947],[-76.163599,40.539989],[-76.160137,40.54045],[-76.155096,40.545229],[-76.1545360383339,40.54544860543434],[-76.14427,40.549474],[-76.137604,40.551129],[-76.134745,40.553482],[-76.105865,40.562198],[-76.0933268212733,40.56404928589796],[-76.07944,40.566098],[-76.065339,40.579678],[-76.058024,40.579629],[-76.054228,40.574086],[-76.050942,40.575168],[-76.047225,40.579891],[-76.04724883410324,40.582444007989665],[-76.047251,40.582676],[-76.039509,40.583094],[-76.036692,40.579328],[-76.031535,40.576996],[-76.026509,40.578595],[-76.021201,40.573755],[-76.01708,40.574455],[-76.012226,40.577713],[-76.00713970647455,40.594309468232424],[-75.993212,40.639712],[-75.98846631824918,40.64146423530978],[-75.92845721502783,40.663596548069286],[-75.893661,40.676409],[-75.86927474348995,40.686945704359196],[-75.854809,40.693192],[-75.844663,40.693001]]]},"properties":{"district":15}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.328353,39.814788],[-76.338255,39.822062],[-76.342401,39.828866],[-76.350543,39.837756],[-76.350759,39.84709],[-76.361674,39.857054],[-76.369641,39.860399],[-76.376657,39.865642],[-76.380692,39.873675],[-76.381709,39.87906],[-76.38008,39.881902],[-76.379642,39.888201],[-76.383777,39.893617],[-76.385786,39.906167],[-76.391674,39.912819],[-76.40567,39.915955],[-76.422156,39.925832],[-76.430401,39.928907],[-76.448969,39.934338],[-76.45975,39.94125],[-76.467577,39.943049],[-76.47358,39.947352],[-76.479207,39.954813],[-76.487389,39.962135],[-76.495352,39.976128],[-76.498454,39.99673],[-76.500611,40.000624],[-76.509586,40.009423],[-76.513638,40.015623],[-76.520327,40.020022],[-76.527868,40.02799],[-76.532168,40.038232],[-76.531552,40.046157],[-76.534524,40.051348],[-76.541455,40.051037],[-76.553895,40.046725],[-76.571217,40.045669],[-76.588482,40.049313],[-76.597588,40.051867],[-76.613366,40.054477],[-76.620598,40.054729],[-76.643618,40.059619],[-76.644508,40.058069],[-76.653722,40.059813],[-76.663825,40.063227],[-76.671267,40.069028],[-76.675504,40.073596],[-76.680428,40.083192],[-76.687529,40.092303],[-76.697187,40.102492],[-76.706844,40.109721],[-76.710932,40.113843],[-76.72162,40.12007],[-76.715907,40.131479],[-76.711198,40.133272],[-76.710092,40.137084],[-76.705696,40.143012],[-76.699874,40.14511],[-76.696158,40.150117],[-76.695594,40.154097],[-76.692316,40.15741],[-76.689939,40.152238],[-76.690135,40.148114],[-76.683151,40.151795],[-76.680612,40.149063],[-76.676756,40.149463],[-76.67641,40.15297],[-76.670563,40.154487],[-76.672742,40.157608],[-76.662043,40.163467],[-76.655065,40.163959],[-76.653104,40.16605],[-76.644103,40.164906],[-76.634744,40.17054],[-76.632102,40.170616],[-76.627685,40.176739],[-76.623206,40.179312],[-76.615948,40.180607],[-76.612987,40.185381],[-76.606519,40.18999],[-76.599865,40.188264],[-76.582682,40.190952],[-76.579051,40.194856],[-76.57026,40.194559],[-76.566339,40.196644],[-76.502044,40.217435],[-76.466307,40.2284],[-76.43541,40.238221],[-76.368198,40.247416],[-76.307578,40.255066],[-76.261063,40.273346],[-76.175737,40.306481],[-76.151475,40.315695],[-76.091764,40.277692],[-76.084092,40.280245],[-76.077071,40.285139],[-76.068927,40.295374],[-76.055464,40.304133],[-76.055065,40.307281],[-76.046141,40.308963],[-76.042804,40.314124],[-76.041108,40.322058],[-76.034651,40.32653],[-76.031285,40.327436],[-76.025621,40.334769],[-76.011671,40.328858],[-76.005187,40.334685],[-76.002922,40.339391],[-75.99617,40.335181],[-75.994593,40.331389],[-75.989769,40.331633],[-75.986532,40.327866],[-75.980662,40.32783],[-75.978176,40.323676],[-75.988629,40.320932],[-75.981816,40.31302],[-75.97798,40.315311],[-75.973055,40.321633],[-75.968008,40.322539],[-75.958809,40.321447],[-75.958464,40.324753],[-75.954464,40.32769],[-75.953328,40.339222],[-75.95086,40.344627],[-75.960708,40.354583],[-75.941372,40.36437],[-75.950572,40.366744],[-75.949591,40.369754],[-75.94305,40.370943],[-75.940627,40.367572],[-75.927986,40.367695],[-75.932828,40.376052],[-75.933127,40.381756],[-75.931311,40.385666],[-75.92639,40.38691],[-75.924101,40.382163],[-75.920319,40.385582],[-75.914031,40.387779],[-75.914694,40.393395],[-75.902698,40.397292],[-75.899425,40.391821],[-75.904583,40.387757],[-75.908633,40.386327],[-75.907614,40.382019],[-75.898493,40.380978],[-75.89314,40.384463],[-75.896273,40.372607],[-75.90293,40.355856],[-75.907284,40.351217],[-75.906863,40.345795],[-75.896049,40.345292],[-75.891132,40.342677],[-75.889431,40.33952],[-75.882614,40.339669],[-75.875636,40.335917],[-75.892038,40.31372],[-75.897617,40.312146],[-75.910103,40.322732],[-75.916257,40.323013],[-75.91997,40.319307],[-75.920329,40.311162],[-75.922075,40.305565],[-75.917181,40.301815],[-75.918178,40.297403],[-75.924845,40.303692],[-75.924034,40.30784],[-75.934802,40.30612],[-75.93961,40.31015],[-75.936309,40.31204],[-75.940073,40.31502],[-75.951841,40.310546],[-75.956382,40.317927],[-75.960491,40.314301],[-75.960478,40.311192],[-75.965983,40.310697],[-75.969819,40.314159],[-75.9752,40.305693],[-75.985726,40.310004],[-75.988928,40.307428],[-75.999227,40.302834],[-75.999226,40.308489],[-75.995201,40.31588],[-75.997209,40.322098],[-76.003314,40.321963],[-76.003715,40.325154],[-76.008816,40.324498],[-76.009311,40.32096],[-76.006165,40.317378],[-76.010624,40.310701],[-76.01779,40.314527],[-76.019584,40.309588],[-76.02272,40.310027],[-76.032985,40.31449],[-76.043082,40.309246],[-76.049264,40.304813],[-76.045526,40.300275],[-76.045279,40.295306],[-76.040411,40.291002],[-76.039522,40.283846],[-76.035991,40.279976],[-76.025853,40.282421],[-76.019761,40.28027],[-76.023614,40.27157],[-76.033159,40.253388],[-76.043993,40.247196],[-76.007266,40.223823],[-75.988851,40.211634],[-75.954767,40.190142],[-75.929574,40.173556],[-75.875162,40.138071],[-75.877787,40.135478],[-75.890457,40.129531],[-75.912548,40.120633],[-75.94778,40.107348],[-75.955459,40.107221],[-75.955249,40.104647],[-75.963981,40.103676],[-75.966592,40.098932],[-75.984127,40.097919],[-75.99564,40.095414],[-75.999881,40.093102],[-76.002546,40.089417],[-75.999815,40.086024],[-76.003239,40.080602],[-76.006864,40.07889],[-76.013569,40.080063],[-76.015922,40.076074],[-76.029635,40.071041],[-76.037435,40.070252],[-76.040806,40.062455],[-76.045668,40.059148],[-76.04658,40.053235],[-76.05934,40.05875],[-76.07001,40.059315],[-76.087395,40.065016],[-76.099612,40.071588],[-76.104314,40.072232],[-76.109121,40.069852],[-76.113465,40.071077],[-76.117273,40.067944],[-76.121031,40.068137],[-76.128204,40.065277],[-76.144246,40.065876],[-76.14759,40.064219],[-76.154493,40.06523],[-76.160557,40.05758],[-76.170181,40.055107],[-76.169017,40.04548],[-76.184057,40.04295],[-76.163593,40.028245],[-76.136298,40.010296],[-76.142078,40.008088],[-76.146428,40.011847],[-76.151973,40.009528],[-76.154396,40.00479],[-76.161338,40.010583],[-76.142368,39.960205],[-76.137046,39.944973],[-76.135859,39.944845],[-76.118042,39.951669],[-76.106179,39.920428],[-76.092756,39.889082],[-76.115099,39.88823],[-76.13897,39.888082],[-76.141489,39.880431],[-76.144382,39.878273],[-76.145055,39.871845],[-76.142609,39.867873],[-76.138166,39.869454],[-76.132332,39.868354],[-76.121642,39.862476],[-76.118487,39.854741],[-76.112511,39.853396],[-76.110313,39.850731],[-76.108057,39.842957],[-76.104414,39.834673],[-76.101063,39.832431],[-76.096584,39.826286],[-76.092235,39.830029],[-76.08876,39.823504],[-76.080297,39.820966],[-76.078223,39.81726],[-76.072598,39.816652],[-76.0689,39.813155],[-76.069643,39.810587],[-76.065587,39.807473],[-76.06191,39.807896],[-76.050668,39.801789],[-76.048287,39.803968],[-76.040275,39.801467],[-76.037557,39.803357],[-76.034438,39.812517],[-76.029925,39.812505],[-76.032242,39.818976],[-76.038178,39.82458],[-76.037636,39.826917],[-76.027034,39.824153],[-76.022826,39.8308],[-76.016473,39.831481],[-76.012552,39.83425],[-76.009568,39.832647],[-76.001422,39.836165],[-75.994511,39.836252],[-75.983725,39.833383],[-75.969466,39.832346],[-75.962412,39.826478],[-75.937857,39.819935],[-75.922936,39.809438],[-75.902935,39.808818],[-75.905417,39.796897],[-75.886145,39.798351],[-75.843606,39.800656],[-75.853512,39.858688],[-75.848035,39.85911],[-75.851942,39.879964],[-75.853072,39.889229],[-75.83532,39.90079],[-75.837312,39.907436],[-75.841949,39.909279],[-75.846531,39.922175],[-75.85222,39.923574],[-75.856649,39.927594],[-75.856644,39.931719],[-75.85376,39.932764],[-75.859413,39.942661],[-75.867012,39.94145],[-75.872127,39.943794],[-75.873511,39.949027],[-75.879557,39.949312],[-75.883405,39.95146],[-75.890431,39.958637],[-75.904792,39.955217],[-75.90614,39.953936],[-75.927216,39.949256],[-75.928992,39.963688],[-75.925745,39.963022],[-75.920318,39.9683],[-75.907815,39.969168],[-75.907076,39.962459],[-75.893464,39.964906],[-75.894631,39.969726],[-75.888307,39.975908],[-75.889928,39.982035],[-75.878258,39.982732],[-75.878213,39.987241],[-75.873441,39.994231],[-75.82511,40.005152],[-75.8145,40.004408],[-75.799119,40.007715],[-75.790152,40.008933],[-75.789429,40.003157],[-75.791473,40.00003],[-75.788458,39.997357],[-75.786943,39.988173],[-75.782235,39.984228],[-75.768516,39.985321],[-75.766171,39.965456],[-75.769002,39.958218],[-75.773102,39.95867],[-75.784427,39.923459],[-75.78764,39.916068],[-75.782386,39.914617],[-75.718923,39.901437],[-75.698098,39.897509],[-75.671063,39.884138],[-75.647584,39.891913],[-75.64465,39.88455],[-75.641812,39.881097],[-75.643592,39.872609],[-75.639665,39.870329],[-75.637066,39.849944],[-75.64329,39.85704],[-75.655695,39.868259],[-75.66743,39.869018],[-75.670777,39.8677],[-75.665699,39.861378],[-75.689957,39.858548],[-75.693017,39.857442],[-75.703526,39.856996],[-75.703342,39.852645],[-75.700425,39.838196],[-75.718312,39.834101],[-75.722217,39.850119],[-75.710751,39.851652],[-75.710598,39.854678],[-75.715119,39.855986],[-75.734095,39.85381],[-75.784984,39.848777],[-75.782725,39.830163],[-75.776204,39.830673],[-75.775261,39.82002],[-75.780919,39.819425],[-75.779289,39.801952],[-75.776489,39.78079],[-75.785066,39.778765],[-75.796954,39.777709],[-75.796511,39.774602],[-75.802538,39.774308],[-75.801175,39.767881],[-75.81213,39.766032],[-75.810515,39.763873],[-75.810271,39.755204],[-75.812281,39.754959],[-75.810219,39.739982],[-75.818238,39.739119],[-75.81685,39.729374],[-75.81208,39.722182],[-75.88389982309575,39.72196149136872],[-76.001292,39.721748],[-76.013067,39.72192],[-76.239805,39.721335],[-76.23869,39.725093],[-76.240582,39.730313],[-76.245573,39.737174],[-76.249584,39.73998],[-76.256564,39.75004],[-76.260577,39.752035],[-76.267475,39.759358],[-76.271598,39.765806],[-76.276113,39.77562],[-76.279839,39.77964],[-76.283265,39.780184],[-76.290182,39.785011],[-76.311074,39.80363],[-76.315702,39.810037],[-76.328353,39.814788]]]},"properties":{"district":16}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.646705,41.114197],[-75.645745,41.118134],[-75.648471,41.125426],[-75.641159,41.126908],[-75.634978,41.123192],[-75.63283,41.127945],[-75.628068,41.128287],[-75.625172,41.130735],[-75.628422,41.134185],[-75.628152,41.137159],[-75.616384,41.14288],[-75.614024,41.14537],[-75.615557,41.150001],[-75.609241,41.149944],[-75.603002,41.151914],[-75.604296,41.156591],[-75.600926,41.159491],[-75.604862,41.163694],[-75.611707,41.164104],[-75.614481,41.171653],[-75.631581,41.169347],[-75.636694,41.172051],[-75.639497,41.176214],[-75.643392,41.176172],[-75.643751,41.182228],[-75.648533,41.187244],[-75.649257,41.190951],[-75.650308,41.213024],[-75.652922,41.258314],[-75.734931,41.25505],[-75.779074,41.25418],[-75.808801,41.229961],[-75.826409,41.239787],[-75.834531,41.23576],[-75.845077,41.232101],[-75.854082,41.230264],[-75.865144,41.225314],[-75.868157,41.221863],[-75.875319,41.217353],[-75.882592,41.215388],[-75.928142,41.24097],[-75.920881,41.243925],[-75.911214,41.250107],[-75.902049,41.248492],[-75.890432,41.254608],[-75.886774,41.250903],[-75.879549,41.256686],[-75.877964,41.255496],[-75.87023,41.26144],[-75.864979,41.26846],[-75.865094,41.27084],[-75.870367,41.279255],[-75.868326,41.284296],[-75.849087,41.294549],[-75.859545,41.299274],[-75.881414,41.321784],[-75.857825,41.343062],[-75.85174,41.337079],[-75.846447,41.339832],[-75.843942,41.337456],[-75.838716,41.340474],[-75.838437,41.344492],[-75.825193,41.351456],[-75.822611,41.349089],[-75.814906,41.35319],[-75.810019,41.352941],[-75.80615,41.355471],[-75.807014,41.359823],[-75.802326,41.367327],[-75.796438,41.373135],[-75.795286,41.378127],[-75.76786,41.365841],[-75.760518,41.360942],[-75.756258,41.361431],[-75.755155,41.379723],[-75.725874,41.412387],[-75.684638,41.459923],[-75.67673,41.469569],[-75.662269,41.462546],[-75.662199,41.47592],[-75.63207,41.487445],[-75.605249,41.507844],[-75.585318,41.523358],[-75.584483,41.527343],[-75.570421,41.544599],[-75.570982,41.544944],[-75.555797,41.582168],[-75.498484,41.584991],[-75.481442,41.586382],[-75.48864,41.575038],[-75.484522,41.573164],[-75.492206,41.559232],[-75.49988,41.559617],[-75.530744,41.557692],[-75.532112,41.5514],[-75.501526,41.531646],[-75.534847,41.528928],[-75.535449,41.526917],[-75.544105,41.522469],[-75.542332,41.512626],[-75.540035,41.510431],[-75.542153,41.504909],[-75.539073,41.496995],[-75.541582,41.493087],[-75.541679,41.482824],[-75.525113,41.471558],[-75.532663,41.465187],[-75.513973,41.452513],[-75.535823,41.433912],[-75.579798,41.463289],[-75.573786,41.468499],[-75.582806,41.47505],[-75.590603,41.474028],[-75.604598,41.467605],[-75.603619,41.464816],[-75.606256,41.458658],[-75.57599,41.438313],[-75.58558,41.440004],[-75.597855,41.437967],[-75.607418,41.442826],[-75.615973,41.44391],[-75.617415,41.440371],[-75.560303,41.41279],[-75.582241,41.394077],[-75.624872,41.392721],[-75.633933,41.38238],[-75.637154,41.383468],[-75.652043,41.36614],[-75.604491,41.34258],[-75.558005,41.34431],[-75.557128,41.333019],[-75.553248,41.272597],[-75.569994,41.272126],[-75.602463,41.270612],[-75.628802,41.269705],[-75.607037,41.244381],[-75.599537,41.245879],[-75.564994,41.223158],[-75.562617,41.215083],[-75.55717,41.209235],[-75.552367,41.212442],[-75.549144,41.2174],[-75.539846,41.225461],[-75.532449,41.225316],[-75.530072,41.226588],[-75.525584,41.223017],[-75.516491,41.21938],[-75.505607,41.232539],[-75.459058,41.234204],[-75.374627,41.237783],[-75.359027,41.239217],[-75.307348,41.24223],[-75.341217,41.135126],[-75.364794,41.139367],[-75.3785,41.121357],[-75.378378,41.111555],[-75.416087,41.022092],[-75.355397,40.942487],[-75.338451,40.956071],[-75.31456,40.976291],[-75.27512,41.006851],[-75.265374,41.019409],[-75.261555,41.017798],[-75.254462,41.020795],[-75.249968,41.015187],[-75.256486,41.007316],[-75.25847,41.002835],[-75.257586,40.999178],[-75.251126,40.995111],[-75.239568,40.991512],[-75.231056,40.986505],[-75.224654,40.987235],[-75.215777,40.989757],[-75.208794,40.987698],[-75.215792,40.984711],[-75.214706,40.9762],[-75.202491,40.974765],[-75.197369,40.975203],[-75.179355,40.979432],[-75.1809,40.984156],[-75.163706,40.987943],[-75.162312,40.993571],[-75.166648,40.999252],[-75.161748,41.00015],[-75.163329,41.008556],[-75.169538,41.01288],[-75.174925,41.010053],[-75.178622,41.015137],[-75.17284,41.01894],[-75.178143,41.024624],[-75.183916,41.017732],[-75.189901,41.014347],[-75.194318,41.006029],[-75.191169,41.003158],[-75.192837,40.995746],[-75.20733,41.011583],[-75.208374,41.019869],[-75.206747,41.025535],[-75.207689,41.0304],[-75.210865,41.03484],[-75.208735,41.038232],[-75.214328,41.042885],[-75.215804,41.046308],[-75.220107,41.050052],[-75.216707,41.052907],[-75.214087,41.057904],[-75.215098,41.062569],[-75.218124,41.067025],[-75.225466,41.070807],[-75.223483,41.073358],[-75.179603,41.063032],[-75.185798,41.106827],[-75.188504,41.114893],[-75.187117,41.145075],[-75.184651,41.152713],[-75.156507,41.150341],[-75.105993,41.144201],[-75.076811,41.141122],[-75.039216,41.088797],[-75.033871,41.08756],[-75.032593,41.085267],[-75.025836,41.080595],[-75.025001,41.083517],[-75.018547,41.084888],[-75.012602,41.083801],[-75.003177,41.091773],[-75.000313,41.089485],[-74.991718,41.092284],[-74.988263,41.088222],[-74.981314,41.08986],[-74.975298,41.094073],[-74.969434,41.096074],[-74.966759,41.093425],[-74.968389,41.087797],[-74.970987,41.085293],[-74.98259,41.079172],[-74.994847,41.076556],[-75.00078,41.07321],[-75.00700405437797,41.06754193724337],[-75.013469,41.065941],[-75.017129,41.056623],[-75.02739,41.044106],[-75.026847,41.039731],[-75.036351,41.035975],[-75.042702,41.031257],[-75.047557,41.029689],[-75.070532,41.01862],[-75.089787,41.014549],[-75.095556,41.008874],[-75.109114,41.004102],[-75.110595,41.002174],[-75.123423,40.996129],[-75.130575,40.991093],[-75.133086,40.980179],[-75.135521,40.976865],[-75.134701,40.972038],[-75.131364,40.969277],[-75.122603,40.970152],[-75.11977,40.96651],[-75.120786,40.96278],[-75.117767,40.953013],[-75.111683,40.948111],[-75.106153,40.939671],[-75.104809,40.935247],[-75.095528,40.924148],[-75.07925591766254,40.91382701866224],[-75.076092,40.907042],[-75.075198,40.900176],[-75.07598,40.895692],[-75.073925,40.892177],[-75.06544,40.885675],[-75.058655,40.877654],[-75.053664,40.87366],[-75.050839,40.868067],[-75.05173175235917,40.86387424764082],[-75.058462,40.860706],[-75.063925,40.855424],[-75.064328,40.848338],[-75.07083,40.847392],[-75.076684,40.849875],[-75.090962,40.849187],[-75.095784,40.847082],[-75.097572,40.840967],[-75.09494,40.837103],[-75.085517,40.830085],[-75.083929,40.824471],[-75.090518,40.815913],[-75.094439,40.813596],[-75.100277,40.807578],[-75.1008,40.799797],[-75.108505,40.791094],[-75.116854,40.789348],[-75.123088,40.786746],[-75.131465,40.77595],[-75.1344,40.77377],[-75.149378,40.774786],[-75.163648,40.778386],[-75.171587,40.777745],[-75.17562,40.772923],[-75.177477,40.764225],[-75.183037,40.759344],[-75.191796,40.75583],[-75.196535,40.751631],[-75.195349,40.745473],[-75.18578,40.737266],[-75.182804,40.73365],[-75.1825,40.729922],[-75.186052,40.725682],[-75.18941168652375,40.7179706187031],[-75.19442,40.714018],[-75.19872,40.705298],[-75.203921,40.691498],[-75.20092,40.685498],[-75.196921,40.681297],[-75.190158,40.679414],[-75.194482,40.67933],[-75.199323,40.675438],[-75.227189,40.672836],[-75.226356,40.667937],[-75.232639,40.66265],[-75.234093,40.656927],[-75.240631,40.649218],[-75.244036,40.650889],[-75.246363,40.654987],[-75.253096,40.650249],[-75.267956,40.645148],[-75.274066,40.641764],[-75.291861,40.640903],[-75.296602,40.639243],[-75.30182,40.634717],[-75.310823,40.630434],[-75.326693,40.633636],[-75.332554,40.631009],[-75.333369,40.623471],[-75.335624,40.620602],[-75.345776,40.620557],[-75.344868,40.609484],[-75.353042,40.608801],[-75.358449,40.609611],[-75.364209,40.617064],[-75.347004,40.620342],[-75.349391,40.622796],[-75.350192,40.629146],[-75.342292,40.629714],[-75.344498,40.645125],[-75.336261,40.652066],[-75.33807,40.653768],[-75.342712,40.667198],[-75.361926,40.672575],[-75.373046,40.66778],[-75.374807,40.681369],[-75.308918,40.68914],[-75.277,40.692423],[-75.283764,40.735105],[-75.297865,40.73387],[-75.297526,40.73094],[-75.30478,40.730455],[-75.311451,40.732684],[-75.323463,40.731592],[-75.330709,40.733303],[-75.325241,40.741298],[-75.321464,40.741077],[-75.322879,40.749485],[-75.326936,40.753904],[-75.274631,40.75863],[-75.26825,40.762015],[-75.26583,40.758232],[-75.259222,40.759773],[-75.250168,40.759081],[-75.236579,40.765783],[-75.219877,40.778498],[-75.229025,40.826661],[-75.25242,40.821158],[-75.263657,40.835244],[-75.259504,40.837983],[-75.258839,40.841241],[-75.264421,40.841463],[-75.265464,40.836876],[-75.272535,40.842809],[-75.273997,40.846554],[-75.280979,40.84672],[-75.289804,40.837881],[-75.305206,40.837104],[-75.293485,40.860237],[-75.300594,40.859563],[-75.320931,40.855657],[-75.341752,40.845317],[-75.383266,40.831037],[-75.416759,40.826102],[-75.42049,40.823451],[-75.44245,40.818367],[-75.474193,40.814746],[-75.485272,40.812525],[-75.508018,40.809101],[-75.519045,40.808813],[-75.528444,40.806725],[-75.541549,40.806815],[-75.551359,40.804552],[-75.557532,40.801188],[-75.565091,40.801105],[-75.577488,40.799414],[-75.595453,40.793302],[-75.602608,40.788043],[-75.609303,40.787461],[-75.672771,40.775723],[-75.694621,40.770186],[-75.702418,40.76224],[-75.7286,40.753915],[-75.739309,40.744155],[-75.743585,40.743462],[-75.744863,40.740309],[-75.757761,40.735442],[-75.765947,40.730926],[-75.77769,40.729534],[-75.779682,40.725022],[-75.796518,40.717034],[-75.807789,40.707492],[-75.844663,40.693001],[-75.854809,40.693192],[-75.893661,40.676409],[-75.993212,40.639712],[-76.012226,40.577713],[-76.01708,40.574455],[-76.021201,40.573755],[-76.026509,40.578595],[-76.031535,40.576996],[-76.036692,40.579328],[-76.039509,40.583094],[-76.047251,40.582676],[-76.047225,40.579891],[-76.050942,40.575168],[-76.054228,40.574086],[-76.058024,40.579629],[-76.065339,40.579678],[-76.07944,40.566098],[-76.105865,40.562198],[-76.134745,40.553482],[-76.137604,40.551129],[-76.14427,40.549474],[-76.155096,40.545229],[-76.160137,40.54045],[-76.163599,40.539989],[-76.171624,40.534947],[-76.185638,40.535555],[-76.196634,40.531265],[-76.219407,40.528699],[-76.231123,40.524216],[-76.234321,40.522074],[-76.256008,40.517067],[-76.262998,40.516697],[-76.272152,40.517586],[-76.282109,40.516137],[-76.302326,40.514658],[-76.314579,40.51591],[-76.322544,40.51416],[-76.330435,40.51591],[-76.339109,40.515351],[-76.3524,40.511157],[-76.369222,40.509597],[-76.378157,40.506012],[-76.384348,40.505739],[-76.399498,40.501286],[-76.405874,40.498729],[-76.4186,40.495615],[-76.440181,40.495952],[-76.499684,40.532602],[-76.535414,40.555157],[-76.58448,40.58511],[-76.641433,40.620922],[-76.668823,40.637599],[-76.691889,40.652303],[-76.701624,40.658082],[-76.700158,40.663766],[-76.694542,40.663064],[-76.662137,40.674013],[-76.637557,40.682863],[-76.600068,40.697064],[-76.564191,40.708174],[-76.504109,40.730559],[-76.415885,40.762863],[-76.388196,40.772607],[-76.30717,40.801809],[-76.284611,40.883588],[-76.249661,40.915792],[-76.207827,40.94974],[-76.092421,40.919476],[-76.039411,40.904886],[-76.02815,40.901986],[-75.997348,40.912985],[-75.955343,40.876478],[-75.926429,40.851726],[-75.798954,40.904121],[-75.79162,40.898809],[-75.762184,40.884013],[-75.758115,40.883177],[-75.755371,40.89345],[-75.753875,40.894889],[-75.744017,40.895362],[-75.741086,40.901107],[-75.74771,40.905634],[-75.747122,40.907918],[-75.739783,40.906161],[-75.736944,40.910675],[-75.730165,40.910114],[-75.721575,40.913483],[-75.712745,40.915594],[-75.707597,40.912399],[-75.699116,40.889029],[-75.690063,40.869129],[-75.677168,40.875449],[-75.633005,40.894565],[-75.556438,40.928693],[-75.57459,40.951323],[-75.546245,40.964603],[-75.49599,40.987181],[-75.508497,40.998177],[-75.561947,41.049523],[-75.569574,41.049963],[-75.571186,41.059304],[-75.574887,41.062691],[-75.576484,41.067573],[-75.580511,41.067764],[-75.582965,41.072635],[-75.587937,41.076424],[-75.59602,41.080677],[-75.600817,41.084481],[-75.606066,41.085624],[-75.604894,41.094143],[-75.612694,41.094237],[-75.615948,41.104759],[-75.620037,41.108971],[-75.62613,41.110597],[-75.628242,41.106901],[-75.632978,41.108534],[-75.637587,41.113398],[-75.643969,41.112773],[-75.646705,41.114197]]]},"properties":{"district":17}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.003143,40.102193],[-79.995379,40.099407],[-79.989206,40.108578],[-79.989298,40.111958],[-79.976854,40.113675],[-79.947114,40.105745],[-79.945144,40.098574],[-79.941066,40.09395],[-79.944105,40.084385],[-79.941514,40.078601],[-79.93673,40.062121],[-79.931929,40.057032],[-79.934065,40.053691],[-79.931583,40.050469],[-79.936272,40.047865],[-79.934232,40.043365],[-79.934639,40.039454],[-79.944623,40.04186],[-79.952866,40.03912],[-79.962385,40.040626],[-79.959153,40.048955],[-79.966834,40.056874],[-79.975329,40.060789],[-79.981413,40.056999],[-79.988107,40.055885],[-80.003587,40.063936],[-80.003744,40.057298],[-80.005412,40.055615],[-80.011294,40.059473],[-80.017717,40.061988],[-80.019741,40.056551],[-80.01059,40.056136],[-80.007058,40.043381],[-80.010475,40.039424],[-80.007854,40.031337],[-80.003198,40.027146],[-79.996096,40.02353],[-79.997615,40.017994],[-80.012764,40.010936],[-80.031325,40.00008],[-80.0384,39.996457],[-80.044448,39.998803],[-80.047168,40.005123],[-80.049632,40.006626],[-80.054801,40.00429],[-80.060314,40.009453],[-80.066267,40.005755],[-80.067992,40.002914],[-80.077242,39.997014],[-80.085588,39.986567],[-80.082605,39.979211],[-80.082912,39.976557],[-80.079759,39.968099],[-80.07895,39.962943],[-80.088804,39.961965],[-80.096234,39.953013],[-80.096745,39.948543],[-80.088109,39.939041],[-80.087464,39.934949],[-80.083603,39.92939],[-80.086549,39.927972],[-80.094369,39.927581],[-80.099235,39.925947],[-80.096813,39.916957],[-80.088118,39.913767],[-80.089642,39.909382],[-80.097515,39.91135],[-80.105083,39.916166],[-80.109963,39.916118],[-80.111068,39.911398],[-80.11654,39.909366],[-80.112302,39.902837],[-80.109345,39.893308],[-80.10092,39.884304],[-80.107323,39.87904],[-80.107285,39.870467],[-80.099118,39.868086],[-80.092413,39.863423],[-80.092559,39.858777],[-80.083342,39.851449],[-80.080145,39.845737],[-80.07296,39.839582],[-80.06726,39.824638],[-80.066251,39.817248],[-80.066772,39.81232],[-80.072418,39.80106],[-80.069337,39.796815],[-80.07479,39.787217],[-80.073231,39.780421],[-80.065326,39.774477],[-80.060192,39.767835],[-80.052938,39.765348],[-80.043243,39.757039],[-80.042087,39.751622],[-80.044963,39.749598],[-80.045263,39.742024],[-80.039216,39.738063],[-80.035277,39.732936],[-80.03513,39.729871],[-80.041702,39.721294],[-80.080146,39.721401],[-80.3070276863396,39.72127436762487],[-80.369772,39.72143],[-80.421388,39.721189],[-80.519342,39.721403],[-80.519307,39.797567],[-80.518891,39.890964],[-80.51924192115803,39.93618368076595],[-80.519024,40.003018],[-80.51912,40.01641],[-80.518895,40.117704],[-80.519104,40.159672],[-80.51905302909363,40.202362974805375],[-80.51903895082438,40.342102213765045],[-80.517891,40.367579],[-80.517991,40.398868],[-80.517689,40.462217],[-80.5189953454551,40.47736329870129],[-80.466802,40.477341],[-80.438175,40.477783],[-80.393513,40.477286],[-80.360873,40.477539],[-80.330004,40.499729],[-80.2746,40.539167],[-80.272578,40.541045],[-80.246877,40.55937],[-80.227057,40.574183],[-80.218864,40.582048],[-80.214259,40.58086],[-80.207978,40.588038],[-80.181422,40.564372],[-80.180552,40.549151],[-80.195247,40.540459],[-80.190825,40.534488],[-80.186811,40.532356],[-80.171257,40.527397],[-80.176859,40.519684],[-80.173444,40.511915],[-80.161124,40.506225],[-80.1503,40.503551],[-80.146448,40.506752],[-80.141603,40.50285],[-80.141012,40.500004],[-80.153396,40.499224],[-80.151978,40.495035],[-80.14634,40.490065],[-80.143639,40.484567],[-80.139573,40.484654],[-80.131888,40.481278],[-80.124635,40.482271],[-80.120824,40.48038],[-80.112189,40.463719],[-80.113618,40.460245],[-80.112671,40.454359],[-80.104476,40.448177],[-80.090621,40.451419],[-80.089237,40.443333],[-80.078409,40.438768],[-80.075835,40.434462],[-80.086417,40.428044],[-80.084326,40.420239],[-80.075648,40.420827],[-80.078693,40.416491],[-80.074716,40.412865],[-80.045051,40.399041],[-80.04625,40.393789],[-80.042287,40.389501],[-80.038864,40.383017],[-80.036271,40.383774],[-80.033625,40.389801],[-80.027827,40.391598],[-80.020219,40.386701],[-80.020169,40.383733],[-80.023451,40.377457],[-80.016823,40.376845],[-80.013188,40.379636],[-80.007899,40.378237],[-80.00786,40.374996],[-80.001439,40.374887],[-79.999123,40.377344],[-79.994945,40.375666],[-79.990873,40.378946],[-79.986032,40.377822],[-79.985363,40.368715],[-79.989981,40.364353],[-79.982341,40.360872],[-79.964472,40.369701],[-79.958908,40.364305],[-79.967958,40.362807],[-79.965268,40.35778],[-79.969455,40.357692],[-79.97416,40.350374],[-79.973103,40.345575],[-79.977753,40.344415],[-79.985289,40.345463],[-79.990771,40.349862],[-79.997117,40.350727],[-80.004122,40.348162],[-80.005369,40.352851],[-80.010669,40.350452],[-80.005578,40.342965],[-79.986659,40.331191],[-79.980922,40.335982],[-79.974742,40.337308],[-79.966729,40.341554],[-79.964,40.344991],[-79.931436,40.326585],[-79.901255,40.320116],[-79.900743,40.312036],[-79.894698,40.30558],[-79.899632,40.301915],[-79.895365,40.29889],[-79.889186,40.300709],[-79.883666,40.298136],[-79.90037,40.29563],[-79.900475,40.283211],[-79.897918,40.281],[-79.892702,40.28091],[-79.888347,40.283189],[-79.883708,40.282836],[-79.880129,40.285376],[-79.873096,40.276899],[-79.866966,40.278914],[-79.861875,40.277403],[-79.851501,40.279516],[-79.846277,40.284213],[-79.841262,40.285437],[-79.838394,40.289613],[-79.834151,40.291347],[-79.829311,40.298341],[-79.839537,40.302732],[-79.835747,40.308922],[-79.8358,40.312593],[-79.827068,40.313444],[-79.818472,40.318875],[-79.810506,40.320165],[-79.796214,40.318319],[-79.793563,40.320197],[-79.787676,40.315054],[-79.783806,40.315441],[-79.780145,40.331162],[-79.771082,40.375419],[-79.765943,40.384188],[-79.765137,40.389468],[-79.762068,40.392768],[-79.753776,40.388538],[-79.748077,40.390866],[-79.744702,40.3959],[-79.744008,40.399948],[-79.75013,40.398674],[-79.751,40.403359],[-79.748661,40.407185],[-79.752626,40.412774],[-79.752202,40.417029],[-79.756368,40.419669],[-79.754431,40.425395],[-79.757816,40.428317],[-79.76231,40.429398],[-79.760232,40.433285],[-79.76155,40.438914],[-79.766712,40.441527],[-79.767043,40.446652],[-79.762244,40.449183],[-79.759869,40.456162],[-79.757887,40.457839],[-79.754575,40.452846],[-79.753495,40.443709],[-79.750926,40.438791],[-79.741226,40.43831],[-79.730806,40.433402],[-79.725215,40.427612],[-79.721818,40.427889],[-79.713143,40.436888],[-79.704503,40.434025],[-79.704739,40.427231],[-79.707042,40.422426],[-79.715987,40.417319],[-79.718097,40.413607],[-79.722338,40.414919],[-79.725677,40.41191],[-79.716394,40.405921],[-79.7104,40.405565],[-79.708211,40.403114],[-79.701447,40.401348],[-79.694174,40.396962],[-79.691365,40.397601],[-79.687844,40.402195],[-79.677273,40.403342],[-79.672165,40.401075],[-79.655689,40.399372],[-79.624332,40.402298],[-79.609555,40.405701],[-79.60482,40.40203],[-79.596007,40.398733],[-79.588457,40.387302],[-79.578234,40.374657],[-79.571005,40.375162],[-79.524595,40.354107],[-79.514801,40.349379],[-79.504393,40.351246],[-79.48754,40.356325],[-79.480811,40.36105],[-79.465141,40.362306],[-79.458365,40.360133],[-79.449242,40.363882],[-79.447308,40.367221],[-79.439222,40.368692],[-79.435872,40.374793],[-79.430211,40.376175],[-79.427067,40.380104],[-79.421782,40.375171],[-79.414912,40.374561],[-79.414495,40.371413],[-79.406255,40.361941],[-79.405031,40.35611],[-79.394067,40.352363],[-79.389184,40.353714],[-79.387555,40.356501],[-79.382405,40.356045],[-79.382565,40.352743],[-79.387951,40.348037],[-79.391621,40.342807],[-79.400036,40.33698],[-79.398609,40.327064],[-79.404502,40.327645],[-79.403919,40.324116],[-79.393985,40.323148],[-79.387745,40.32848],[-79.383952,40.325372],[-79.371288,40.320672],[-79.371118,40.31292],[-79.368524,40.302712],[-79.371104,40.30023],[-79.365237,40.297326],[-79.371431,40.295694],[-79.370056,40.292017],[-79.364114,40.295748],[-79.356936,40.294967],[-79.354619,40.290947],[-79.347808,40.292084],[-79.328876,40.291959],[-79.322017,40.286432],[-79.314414,40.285975],[-79.300644,40.282453],[-79.295528,40.282053],[-79.289756,40.28776],[-79.290017,40.290513],[-79.285349,40.293379],[-79.286476,40.296894],[-79.281974,40.298364],[-79.282602,40.302957],[-79.279615,40.311589],[-79.270337,40.318399],[-79.269703,40.324181],[-79.262938,40.328974],[-79.258212,40.328426],[-79.253949,40.33176],[-79.142699,40.270917],[-79.138594,40.268451],[-79.088656,40.241259],[-79.094907,40.236485],[-79.095946,40.23261],[-79.100153,40.231149],[-79.09867,40.226097],[-79.103003,40.218231],[-79.107929,40.213026],[-79.114286,40.210258],[-79.116239,40.203753],[-79.121942,40.203138],[-79.1257,40.200701],[-79.123814,40.193949],[-79.127549,40.186769],[-79.125963,40.184999],[-79.129653,40.180924],[-79.134393,40.178722],[-79.143306,40.179889],[-79.141065,40.173058],[-79.140702,40.163307],[-79.149768,40.160373],[-79.160925,40.161141],[-79.160494,40.156884],[-79.162754,40.154062],[-79.163195,40.146297],[-79.162123,40.14331],[-79.165825,40.138691],[-79.167626,40.128783],[-79.171956,40.126351],[-79.174249,40.120604],[-79.180987,40.115714],[-79.185222,40.109848],[-79.192161,40.110267],[-79.196872,40.115951],[-79.196564,40.118454],[-79.205189,40.11656],[-79.210774,40.118903],[-79.213791,40.117991],[-79.220864,40.112737],[-79.22262,40.104171],[-79.226672,40.09825],[-79.23662,40.096541],[-79.243013,40.09227],[-79.246398,40.09371],[-79.256137,40.08834],[-79.258671,40.080273],[-79.264387,40.078668],[-79.267739,40.074268],[-79.267166,40.06601],[-79.271351,40.064238],[-79.278766,40.055537],[-79.278101,40.050479],[-79.28431,40.048246],[-79.288578,40.041775],[-79.293682,40.040413],[-79.31609,40.04384],[-79.32368,40.04078],[-79.33864,40.04215],[-79.34278,40.04445],[-79.34445,40.05089],[-79.35167,40.068729],[-79.355627,40.074359],[-79.367463,40.080198],[-79.37252,40.08137],[-79.393712,40.090897],[-79.39737,40.09513],[-79.40131,40.10223],[-79.41539,40.1046],[-79.423474,40.111156],[-79.43756,40.11586],[-79.44213,40.11957],[-79.44772,40.12677],[-79.447723,40.13027],[-79.45798,40.13545],[-79.467834,40.136738],[-79.481017,40.143258],[-79.48565,40.143322],[-79.48959,40.141082],[-79.496673,40.14176],[-79.505188,40.140568],[-79.51347,40.135797],[-79.526977,40.123237],[-79.530865,40.128208],[-79.533991,40.128617],[-79.541071,40.120814],[-79.541284,40.112745],[-79.548519,40.110322],[-79.55315,40.112578],[-79.559117,40.111157],[-79.560968,40.106608],[-79.571722,40.105304],[-79.574933,40.103438],[-79.578966,40.105496],[-79.585166,40.102124],[-79.586039,40.097068],[-79.592026,40.09346],[-79.593314,40.09093],[-79.591944,40.085789],[-79.593021,40.082055],[-79.600442,40.084308],[-79.603674,40.090839],[-79.613096,40.093438],[-79.614664,40.091283],[-79.620727,40.09271],[-79.625853,40.091933],[-79.626998,40.088424],[-79.635697,40.085905],[-79.638994,40.082859],[-79.648122,40.087643],[-79.654083,40.089294],[-79.654285,40.093633],[-79.657254,40.096595],[-79.663866,40.096732],[-79.668602,40.098847],[-79.666187,40.102656],[-79.671751,40.106247],[-79.674178,40.105514],[-79.683794,40.10862],[-79.686137,40.11389],[-79.693287,40.112469],[-79.69865,40.109619],[-79.702095,40.110414],[-79.705399,40.107638],[-79.711267,40.108658],[-79.721805,40.115287],[-79.718499,40.116921],[-79.723359,40.122338],[-79.7276,40.120608],[-79.734851,40.121046],[-79.741174,40.126271],[-79.745832,40.128325],[-79.781016,40.127944],[-79.85791,40.12814],[-79.856565,40.132782],[-79.859597,40.137965],[-79.864413,40.134367],[-79.871629,40.132102],[-79.877385,40.126792],[-79.885497,40.129496],[-79.888777,40.132648],[-79.893241,40.140776],[-79.902074,40.148647],[-79.896347,40.147546],[-79.887654,40.141357],[-79.877321,40.137407],[-79.872098,40.140065],[-79.869064,40.137826],[-79.86237,40.14554],[-79.86249,40.15149],[-79.871463,40.160094],[-79.870668,40.162127],[-79.864153,40.161815],[-79.856008,40.165799],[-79.851352,40.172151],[-79.850376,40.177303],[-79.851367,40.183012],[-79.854456,40.191255],[-79.865817,40.197031],[-79.881913,40.196519],[-79.888986,40.194823],[-79.896448,40.194481],[-79.912586,40.197767],[-79.918346,40.200555],[-79.927883,40.206822],[-79.938683,40.209814],[-79.950382,40.211559],[-79.959532,40.216134],[-79.968252,40.210822],[-79.984297,40.207801],[-79.99312,40.19255],[-80.001241,40.196304],[-80.013367,40.195226],[-80.019679,40.19116],[-80.019639,40.186768],[-80.01274,40.182745],[-80.009215,40.177861],[-80.006429,40.182355],[-80.000473,40.18346],[-79.9954,40.169113],[-80.000399,40.166487],[-80.002566,40.162378],[-79.996491,40.147223],[-79.992762,40.143],[-80.00439,40.132748],[-80.007694,40.131463],[-80.015614,40.131927],[-80.019326,40.12748],[-80.026361,40.127855],[-80.026363,40.123503],[-80.021852,40.117756],[-80.015072,40.112552],[-80.015713,40.107654],[-80.013918,40.102632],[-80.015118,40.098296],[-80.003214,40.097615],[-80.003143,40.102193]]]},"properties":{"district":18}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment