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
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.196803,40.608580000000025],[-75.192291,40.602676000000024],[-75.190146,40.590358999999985],[-75.19079599999999,40.586838],[-75.195496,40.57862700000003],[-75.192352,40.57425699999998],[-75.183151,40.56735399999998],[-75.17516140184357,40.56518348846531],[-75.171623,40.56422200000003],[-75.16287099999998,40.564096000000006],[-75.157852,40.565424000000014],[-75.148757,40.57181900000001],[-75.140172,40.575370000000035],[-75.1363491270191,40.5756793367644],[-75.1172526394759,40.57319535189682],[-75.11120320505586,40.57124935910922],[-75.10153047459943,40.56813692714638],[-75.095834,40.56448100000002],[-75.09133,40.55984800000003],[-75.075138,40.54557900000001],[-75.0686374679456,40.54223679933594],[-75.067257,40.53924400000002],[-75.06633296329093,40.533660327896236],[-75.06508999999998,40.526147999999985],[-75.06600099999999,40.510716],[-75.06260495332647,40.49272751466962],[-75.06266172910793,40.48091169053573],[-75.062664,40.480439000000025],[-75.067715,40.47366900000005],[-75.067302,40.46495400000001],[-75.070419,40.45840700000002],[-75.070568,40.455165000000015],[-75.067425,40.44832299999999],[-75.06272775428266,40.431969343424534],[-75.0624798260382,40.43014396766017],[-75.061489,40.42284799999999],[-75.056102,40.416066000000015],[-75.04647299999999,40.413792000000015],[-75.036616,40.40679600000001],[-75.02477499999999,40.403455],[-75.01183908025017,40.40608465641031],[-75.00478417721517,40.407518106329114],[-74.99586,40.410384000000036],[-74.98866840164003,40.408580771070014],[-74.978062,40.402292000000024],[-74.96931108865466,40.399599879603045],[-74.96397938175453,40.39521321808991],[-74.961478,40.38893500000003],[-74.95900806075203,40.38501729935695],[-74.95555946171162,40.37954644453429],[-74.948901,40.36505500000002],[-74.945828,40.35507200000003],[-74.94377599999999,40.34256399999998],[-74.939711,40.33800600000003],[-74.93653626067662,40.33589000745625],[-74.92681,40.32940600000004],[-74.91741,40.32240600000002],[-74.90831,40.31690700000002],[-74.896409,40.315107000000005],[-74.887109,40.31030700000004],[-74.8809495653531,40.30585328021687],[-74.880609,40.30560700000004],[-74.86820869206618,40.29520660398501],[-74.860492,40.28458400000001],[-74.853108,40.26970700000002],[-74.84765880693955,40.2600215376371],[-74.842308,40.25050800000004],[-74.836307,40.24620800000004],[-74.823907,40.24150800000002],[-74.819507,40.23850800000003],[-74.795306,40.22940800000002],[-74.79455989904689,40.22899006084566],[-74.781206,40.221508000000014],[-74.770406,40.21450800000003],[-74.766905,40.207709000000015],[-74.760605,40.19890900000002],[-74.75582990810491,40.18725787468166],[-74.755605,40.18670900000003],[-74.751705,40.18330900000001],[-74.744105,40.18100900000003],[-74.737205,40.17760900000001],[-74.733804,40.17450900000002],[-74.72230399999998,40.16060900000001],[-74.72160115393609,40.15394089047938],[-74.72430399999999,40.14701],[-74.72524481379409,40.146342013171804],[-74.740335,40.13562500000002],[-74.743738,40.134454000000034],[-74.75313,40.13503300000003],[-74.762323,40.13288100000001],[-74.76948799999998,40.129145000000015],[-74.781555,40.12145400000003],[-74.78311745755931,40.12125095439271],[-74.788287,40.12057900000001],[-74.799421,40.122703000000016],[-74.815476,40.127694000000005],[-74.822531,40.12684400000001],[-74.826226,40.12406600000004],[-74.833103,40.11197200000004],[-74.83412403890942,40.107682515335235],[-74.8346616853469,40.10542358882352],[-74.842215,40.098502000000025],[-74.853745,40.09392600000002],[-74.858005,40.08960200000001],[-74.859721,40.08531100000001],[-74.865489,40.08213300000003],[-74.877533,40.07995700000002],[-74.8857782311581,40.077040668429845],[-74.885978,40.07697000000004],[-74.907318,40.07080000000001],[-74.914224,40.07035400000004],[-74.921898,40.071446000000016],[-74.935042,40.06783600000003],[-74.9498794733195,40.060685266948724],[-74.97431985055582,40.04889913461413],[-74.984893,40.05728700000002],[-74.980378,40.060349000000016],[-74.980296,40.06614700000003],[-74.973251,40.07148700000001],[-74.9726784218984,40.07264458033389],[-74.971028,40.07598100000001],[-74.963459,40.07741100000002],[-74.958841,40.08250300000003],[-74.958057,40.09042300000003],[-74.956164,40.095745000000015],[-74.961342,40.097496000000035],[-74.960886,40.10310400000003],[-74.965359,40.108024000000015],[-74.963129,40.114978000000015],[-74.96346892674003,40.11564565353396],[-74.964991,40.118635000000005],[-74.970119,40.117201],[-74.973219,40.119891000000045],[-74.981947,40.12024500000002],[-74.982958,40.12335300000003],[-74.988713,40.125685000000026],[-74.997885,40.12781600000004],[-75.015066,40.13799200000001],[-75.01839754981215,40.13997253977634],[-75.059812,40.16457500000003],[-75.07318451922838,40.17247596333464],[-75.126276,40.20381100000002],[-75.12806831767706,40.204909330852026],[-75.151741,40.219410000000025],[-75.157077,40.21735300000002],[-75.16909,40.209542000000035],[-75.181216,40.20546400000003],[-75.18312466921549,40.20272686108638],[-75.183605,40.20203800000002],[-75.1844,40.197010000000034],[-75.195455,40.18821000000002],[-75.226508,40.20720700000002],[-75.2312133551312,40.210042852127366],[-75.267427,40.23185400000002],[-75.27151,40.230557000000026],[-75.277991,40.22345400000003],[-75.280618,40.22650500000002],[-75.28279360484554,40.22779893775947],[-75.291932,40.23323300000003],[-75.290074,40.23516700000001],[-75.303445,40.243623],[-75.297319,40.249650000000024],[-75.3187523956216,40.26263324877816],[-75.335986,40.27306600000002],[-75.317678,40.29029200000003],[-75.3336662792774,40.29726054767411],[-75.334544,40.297643000000015],[-75.343422,40.30369400000002],[-75.333784,40.31328400000002],[-75.333037,40.31615100000002],[-75.339161,40.32110800000003],[-75.341643,40.32574900000002],[-75.337308,40.32802100000003],[-75.339341,40.33168900000002],[-75.346744,40.33627200000002],[-75.34784181951122,40.3369332999244],[-75.40242958129359,40.36978622442319],[-75.422234,40.38169100000001],[-75.425667,40.38443000000003],[-75.45694965737499,40.402664804639414],[-75.484057,40.41845100000001],[-75.4616647468877,40.439419985541306],[-75.4176997811231,40.48053992646226],[-75.409733,40.48798400000002],[-75.367911,40.514601000000006],[-75.36599132820477,40.51587796639417],[-75.338633,40.53406800000001],[-75.333048,40.53676700000003],[-75.31272464694216,40.55001738681018],[-75.308745,40.55261100000003],[-75.293528,40.561978000000025],[-75.258151,40.58200900000003],[-75.236848,40.59074800000002],[-75.196803,40.608580000000025]]]},"properties":{"district":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.97431985055582,40.04889913461413],[-74.983913,40.042711],[-74.98888385247234,40.03728916091808],[-75.0128408470955,40.02060497164281],[-75.0275,40.017079000000045],[-75.02805632881471,40.016902651381024],[-75.041267,40.012714000000024],[-75.04709000000014,40.00994099999988],[-75.05340500000044,40.00456799999934],[-75.05808900000005,39.99740399999973],[-75.05994699999853,39.99145100000338],[-75.06417500000077,39.98602699999936],[-75.07321111674148,39.97971382419764],[-75.07560499999961,39.97804100000023],[-75.085831,39.975102000000035],[-75.096372,39.97398100000002],[-75.108089,39.97033200000002],[-75.11949100000062,39.965371999999654],[-75.130591,39.95860800000001],[-75.1327186680606,39.955358526715735],[-75.134432348346,39.95274106193975],[-75.151669,39.954913000000026],[-75.149079,39.956561000000036],[-75.148181,39.961418000000016],[-75.161384,39.96247400000002],[-75.15725131241736,39.981485222059206],[-75.14582059839874,40.03401306600719],[-75.139427,40.06335800000002],[-75.11499769815887,40.04911996689699],[-75.109431,40.045874],[-75.10627,40.04954800000002],[-75.094056,40.05677100000001],[-75.087425,40.06359900000002],[-75.096733,40.06898900000003],[-75.08522960477359,40.080184639041214],[-75.081189,40.08411600000002],[-75.077805,40.08577000000003],[-75.058342,40.105892000000004],[-75.0388921919764,40.11948124264136],[-75.020571,40.13227400000001],[-75.015066,40.13799200000001],[-74.997885,40.12781600000004],[-74.988713,40.125685000000026],[-74.98497412374584,40.12417000988864],[-74.982958,40.12335300000003],[-74.981947,40.12024500000002],[-74.973219,40.119891000000045],[-74.970119,40.117201],[-74.964991,40.118635000000005],[-74.963129,40.114978000000015],[-74.965359,40.108024000000015],[-74.960886,40.10310400000003],[-74.961342,40.097496000000035],[-74.956164,40.095745000000015],[-74.958057,40.09042300000003],[-74.958841,40.08250300000003],[-74.963459,40.07741100000002],[-74.971028,40.07598100000001],[-74.973251,40.07148700000001],[-74.980296,40.06614700000003],[-74.980378,40.060349000000016],[-74.984893,40.05728700000002],[-74.97431985055582,40.04889913461413]]]},"properties":{"district":2}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.134432348346,39.95274106193975],[-75.13479821092838,39.950855993256596],[-75.1351640533458,39.948970923423495],[-75.1355298756007,39.94708585244058],[-75.13589567769552,39.94520078030801],[-75.13626145963272,39.9433157070259],[-75.136268,39.94328200000001],[-75.13624675316682,39.94141033028078],[-75.13622512069608,39.93950458388605],[-75.13620348943026,39.93759883748729],[-75.13618185936917,39.93569309108452],[-75.1361602305127,39.933787344677725],[-75.136151,39.93297400000005],[-75.13584093730628,39.93190774313997],[-75.13530004142014,39.93004760571698],[-75.13475917493017,39.92818746578087],[-75.1342183378329,39.92632732333193],[-75.13367753012483,39.92446717837047],[-75.13313675180245,39.92260703089681],[-75.13293140985013,39.92190067679223],[-75.13444891029246,39.922108002885366],[-75.1368954448326,39.92244221249329],[-75.13934200325447,39.922776370685376],[-75.1417885855549,39.923110477460526],[-75.14423519173074,39.92344453281764],[-75.14668182177883,39.92377853675558],[-75.14912847569602,39.92411248927328],[-75.15157515347913,39.92444639036957],[-75.15402185512502,39.92478024004337],[-75.15646858063052,39.925114038293586],[-75.15891532999247,39.925447785119076],[-75.1613621032077,39.92578148051876],[-75.16380890027308,39.926115124491496],[-75.163918,39.926130000000015],[-75.16351283632847,39.927924135981414],[-75.163091,39.929792000000035],[-75.16310404647172,39.92979371721318],[-75.1655535524324,39.93011610061253],[-75.16800308146392,39.93043843246864],[-75.168319,39.93048000000003],[-75.16868984322625,39.92884451486716],[-75.16911557412614,39.92696686743496],[-75.169435,39.925558000000024],[-75.17003951706852,39.92545084612722],[-75.17246082036677,39.9250216223808],[-75.17488209330358,39.924592348273904],[-75.17730333587625,39.92416302380793],[-75.17972454808206,39.92373364898427],[-75.18214572991829,39.92330422380434],[-75.18456688138222,39.92287474826952],[-75.18698800247115,39.92244522238123],[-75.18940909318233,39.922015646140856],[-75.19183015351308,39.921586019549785],[-75.19425118346066,39.92115634260943],[-75.19667218302234,39.920726615321186],[-75.19909315219545,39.92029683768645],[-75.20151409097723,39.91986700970664],[-75.2017,39.919834000000016],[-75.20393622040883,39.9202268451132],[-75.20635847918717,39.92065231872623],[-75.208526,39.92103300000003],[-75.20867772836486,39.92119621143043],[-75.21012037848088,39.92274799506026],[-75.21156309398985,39.92429976081154],[-75.212428,39.925230000000006],[-75.21202555343646,39.92592814966157],[-75.21102071516486,39.92767123831809],[-75.21001582572121,39.92941431830062],[-75.2090108851,39.93115738960818],[-75.2080058932957,39.93290045223981],[-75.20700085030279,39.93464350619452],[-75.20599575611578,39.936386551471344],[-75.205578,39.93711100000003],[-75.20685771365319,39.93763785504675],[-75.20904763914976,39.938539390674386],[-75.21065,39.93919900000004],[-75.21114345814057,39.93885497749063],[-75.21298247903212,39.93757282474752],[-75.214514,39.936505000000004],[-75.21484334992144,39.936699276728675],[-75.21681342196162,39.937861339119486],[-75.21878356090961,39.93902336816683],[-75.22075376676852,39.94018536386824],[-75.221545,39.94065200000001],[-75.22264478978119,39.9398841296065],[-75.224292,39.938734000000025],[-75.22452517654133,39.93881826001615],[-75.22677364806748,39.93963072671855],[-75.228709,39.94033000000001],[-75.22900717056926,39.94019511389983],[-75.23114796823077,39.939226623977696],[-75.23328870529424,39.938258094684734],[-75.233784,39.93803400000003],[-75.23569451602448,39.938035682785596],[-75.23818012977438,39.938037825182],[-75.23957,39.938039000000025],[-75.23968947707147,39.93887414083058],[-75.2399605128322,39.940768595928844],[-75.240149,39.942086000000025],[-75.24090077532719,39.94215512948965],[-75.24336886153637,39.9423820472045],[-75.2458369641142,39.94260891258731],[-75.246469,39.94266700000002],[-75.24740627515529,39.94388917619083],[-75.2486662428859,39.94553205227036],[-75.24992627113043,39.9471749147106],[-75.2511863598948,39.94881776351006],[-75.251376,39.94906500000002],[-75.25089937439012,39.950642236113694],[-75.25033828462446,39.95249888293477],[-75.24977716439648,39.95435552705088],[-75.2492160137026,39.95621216846172],[-75.249006,39.956907000000044],[-75.2498491415136,39.95790928038877],[-75.25085,39.959099000000016],[-75.2505277497005,39.959522418693844],[-75.24927485161224,39.96116859771889],[-75.24802189319523,39.96281476325595],[-75.247479,39.96352800000001],[-75.24869886645111,39.96406874214958],[-75.25085139411372,39.96502286212111],[-75.251603,39.96535600000003],[-75.25309500940654,39.9648755236896],[-75.25538742992777,39.96413723813094],[-75.256686,39.963719000000026],[-75.25749145109955,39.964268130654354],[-75.25934939912766,39.9655347649638],[-75.260491,39.96631300000003],[-75.26141477508845,39.96611622475497],[-75.26381057792221,39.965605850384456],[-75.265448,39.965257000000015],[-75.26611203432859,39.96558089486247],[-75.26820988535509,39.96660411493198],[-75.27030779918006,39.96762729718584],[-75.2724057758053,39.96865044162156],[-75.27450381523266,39.96967354823662],[-75.275606,39.97021099999999],[-75.27631504593697,39.970934251100346],[-75.27780885593388,39.97245792414954],[-75.27930273253338,39.97398157802376],[-75.280266,39.97496400000003],[-75.27951041179894,39.97531474323316],[-75.27738322922336,39.97630213342512],[-75.27525598518002,39.97728948473428],[-75.27312867966742,39.97827679715817],[-75.27100131268406,39.97926407069431],[-75.26887388422841,39.9802513053402],[-75.26674639429898,39.98123850109335],[-75.26461884289425,39.982225657951304],[-75.263687,39.982658000000015],[-75.26255115850152,39.98328235163772],[-75.26053011122737,39.984393229337634],[-75.25850899822926,39.985504071936184],[-75.25648781950457,39.98661487943084],[-75.25446657505064,39.987725651819055],[-75.25244526486483,39.98883638909834],[-75.25042388894452,39.98994709126615],[-75.25,39.99018000000003],[-75.24832349964807,39.990966596610136],[-75.24620210009208,39.991961874737505],[-75.2440806387114,39.99295711418948],[-75.24195911550444,39.99395231496353],[-75.23983753046963,39.9949474770572],[-75.23771588360538,39.99594260046798],[-75.23559417491012,39.99693768519337],[-75.23347240438228,39.99793273123092],[-75.23135057202025,39.99892773857809],[-75.22922867782248,39.9999227072324],[-75.22710672178738,40.000917637191385],[-75.22498470391338,40.00191252845252],[-75.2228626241989,40.00290738101332],[-75.22074048264234,40.0039021948713],[-75.21861827924216,40.00489697002398],[-75.21649601399677,40.00589170646882],[-75.2143736869046,40.00688640420338],[-75.21225129796404,40.00788106322515],[-75.21012884717355,40.00887568353162],[-75.20800633453155,40.00987026512031],[-75.207245,40.010227000000015],[-75.20661082169036,40.01134856028597],[-75.206286,40.011923000000024],[-75.20760444245893,40.01270927888445],[-75.20956783239046,40.01388012351232],[-75.21153128968811,40.01505093500697],[-75.212219,40.01546100000005],[-75.21324077110219,40.016420712836734],[-75.21481337957009,40.01789773711882],[-75.21638605611665,40.0193747401437],[-75.21795880074738,40.0208517219093],[-75.218056,40.02094300000003],[-75.22000842360325,40.021923577890945],[-75.22208951870473,40.02296871216591],[-75.22417067756463,40.024013809213955],[-75.22625190018493,40.02505886903253],[-75.22833318656774,40.02610389161914],[-75.23041453671507,40.027148876971246],[-75.232323,40.02810700000001],[-75.23247214267705,40.028216703603185],[-75.23426709718447,40.02953696026122],[-75.23606212117693,40.03085718922425],[-75.23785721465889,40.03217739048991],[-75.23965237763481,40.03349756405586],[-75.24144761010923,40.0348177099197],[-75.2432429120866,40.036137828079084],[-75.2450382835714,40.03745791853163],[-75.24617,40.038290000000025],[-75.24665337600351,40.03888949134364],[-75.24796101473925,40.040511184799335],[-75.249039,40.04184800000004],[-75.24936828830087,40.04206828131695],[-75.25124290294973,40.04332228216046],[-75.25311758655906,40.04457625279374],[-75.25499233913283,40.045830193214314],[-75.25686716067494,40.047084103419756],[-75.257655,40.047611000000025],[-75.25855673149235,40.04847383376626],[-75.26011205769765,40.04996200056834],[-75.26166745181852,40.05145014657377],[-75.26322291386056,40.052938271780505],[-75.264431,40.05409400000002],[-75.26407474939647,40.0544208684631],[-75.26247972194466,40.05588429253741],[-75.26088462598737,40.057347694739015],[-75.25928946151909,40.05881107506586],[-75.25769422853438,40.060274433515865],[-75.25609892702774,40.06173777008694],[-75.25450355699373,40.063201084777035],[-75.25290811842686,40.06466437758406],[-75.25131261132165,40.06612764850594],[-75.24971703567265,40.06759089754059],[-75.24812139147436,40.06905412468596],[-75.24652567872134,40.07051732993997],[-75.24492989740808,40.071980513300524],[-75.24333404752913,40.073443674765564],[-75.243133,40.07362800000004],[-75.24179993929421,40.074944851613715],[-75.24027467261295,40.07645149090196],[-75.23874933843862,40.07795811018643],[-75.23722393676552,40.079464709465135],[-75.23569846758792,40.08097128873616],[-75.23417293090017,40.08247784799751],[-75.23264732669656,40.08398438724726],[-75.2311216549714,40.08549090648344],[-75.22959591571899,40.086997405704125],[-75.22807010893362,40.08850388490733],[-75.22654423460962,40.09001034409111],[-75.22501829274128,40.09151678325351],[-75.22361,40.09290700000002],[-75.2234562043858,40.092818851509556],[-75.2214624842862,40.09167610483439],[-75.21946883113577,40.09053332398054],[-75.21747524493153,40.08939050895054],[-75.21548172567053,40.0882476597469],[-75.21348827334981,40.087104776372165],[-75.21149488796641,40.085961858828874],[-75.2095015695174,40.08481890711955],[-75.20750831799978,40.08367592124672],[-75.20551513341063,40.08253290121293],[-75.20352201574697,40.08138984702068],[-75.20152896500585,40.08024675867254],[-75.19953598118433,40.079103636171006],[-75.19754306427942,40.077960479518616],[-75.19555021428819,40.076817288717905],[-75.19355743120764,40.0756740637714],[-75.19156471503487,40.07453080468165],[-75.18957206576688,40.073387511451145],[-75.188461,40.07275000000003],[-75.18778719811226,40.073417107594004],[-75.1862641002241,40.07492501079891],[-75.18474093488591,40.07643289405706],[-75.18321770209204,40.077940757366505],[-75.18169440183674,40.07944860072528],[-75.18017103411434,40.080956424131436],[-75.17864759891913,40.082464227583046],[-75.17712409624542,40.08397201107814],[-75.176438,40.084651],[-75.17534343339331,40.084021638947796],[-75.1733521806964,40.08287663921587],[-75.17136099497671,40.0817316053916],[-75.1693698762313,40.080586537477544],[-75.16737882445719,40.07944143547623],[-75.16538783965139,40.07829629939017],[-75.16339692181091,40.07715112922189],[-75.16140607093281,40.07600592497394],[-75.1594152870141,40.07486068664884],[-75.15742457005179,40.073715414249115],[-75.15543392004292,40.0725701077773],[-75.15344333698451,40.07142476723591],[-75.15145282087357,40.07027939262749],[-75.14946237170713,40.06913398395457],[-75.14747198948223,40.06798854121966],[-75.14548167419585,40.0668430644253],[-75.14349142584507,40.06569755357401],[-75.14150124442686,40.06455200866832],[-75.13951112993827,40.06340642971077],[-75.139427,40.06335800000002],[-75.1398194210783,40.06155762836252],[-75.14022914176323,40.05967778566148],[-75.14063883984149,40.057797941517286],[-75.14104851531579,40.055918095930124],[-75.14145816818886,40.05403824890018],[-75.14186779846347,40.052158400427615],[-75.14227740614231,40.050278550512616],[-75.14268699122815,40.04839869915535],[-75.1430965537237,40.04651884635598],[-75.14350609363169,40.04463899211473],[-75.14391561095488,40.042759136431705],[-75.14432510569597,40.04087927930715],[-75.14473457785773,40.038999420741185],[-75.14514402744287,40.037119560734034],[-75.1455534544541,40.035239699285825],[-75.1459628588942,40.03335983639676],[-75.14637224076586,40.03147997206703],[-75.14678160007182,40.02960010629677],[-75.14719093681481,40.02772023908618],[-75.14760025099757,40.02584037043544],[-75.14800954262282,40.023960500344714],[-75.14841881169328,40.02208062881418],[-75.1488280582117,40.020200755844],[-75.14923728218079,40.01832088143438],[-75.14964648360328,40.01644100558548],[-75.15005566248192,40.01456112829746],[-75.15046481881939,40.01268124957051],[-75.15087395261845,40.0108013694048],[-75.15128306388182,40.00892148780052],[-75.15169215261223,40.00704160475782],[-75.1521012188124,40.00516172027691],[-75.15251026248504,40.003281834357935],[-75.15291928363291,40.00140194700107],[-75.1533282822587,39.9995220582065],[-75.15373725836514,39.997642167974405],[-75.15414621195495,39.99576227630495],[-75.15455514303088,39.99388238319832],[-75.15496405159563,39.99200248865467],[-75.1553729376519,39.990122592674204],[-75.15578180120247,39.98824269525707],[-75.15619064225001,39.986362796403455],[-75.15659946079727,39.98448289611353],[-75.15700825684694,39.98260299438748],[-75.15741703040177,39.98072309122547],[-75.15782578146447,39.97884318662767],[-75.15823451003776,39.976963280594276],[-75.15864321612433,39.975083373125436],[-75.15905189972696,39.97320346422134],[-75.1594605608483,39.97132355388216],[-75.15986919949113,39.96944364210807],[-75.16027781565813,39.967563728899236],[-75.16068640935201,39.96568381425585],[-75.16109498057551,39.96380389817808],[-75.161384,39.96247400000002],[-75.16066043200338,39.96241616734946],[-75.15818734906323,39.9622184664409],[-75.15571428042662,39.96202071298239],[-75.15324122609715,39.96182290697459],[-75.15076818607844,39.9616250484182],[-75.1482951603741,39.96142713731387],[-75.148181,39.961418000000016],[-75.14851378652492,39.959618143467324],[-75.1488626599298,39.95773117922451],[-75.149079,39.956561000000036],[-75.14980570714525,39.956098614846354],[-75.151669,39.954913000000026],[-75.15160520627227,39.95490496650676],[-75.14915187433266,39.95459599241168],[-75.14669856456145,39.95428696660529],[-75.14424527696194,39.9539778890886],[-75.14179201153736,39.95366875986267],[-75.13933876829101,39.95335957892854],[-75.134432348346,39.95274106193975]]]},"properties":{"district":3}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.484057,40.41845100000001],[-75.425667,40.38443000000003],[-75.422234,40.38169100000001],[-75.41427217831115,40.37690592419506],[-75.346744,40.33627200000002],[-75.34477619930853,40.335053893829496],[-75.339341,40.33168900000002],[-75.337308,40.32802100000003],[-75.341643,40.32574900000002],[-75.339161,40.32110800000003],[-75.333037,40.31615100000002],[-75.333784,40.31328400000002],[-75.343422,40.30369400000002],[-75.334544,40.297643000000015],[-75.317678,40.29029200000003],[-75.32052285813877,40.28761603790341],[-75.335986,40.27306600000002],[-75.297319,40.249650000000024],[-75.303445,40.243623],[-75.29994316663912,40.24140874640812],[-75.290074,40.23516700000001],[-75.291932,40.23323300000003],[-75.280618,40.22650500000002],[-75.277991,40.22345400000003],[-75.27151,40.230557000000026],[-75.267427,40.23185400000002],[-75.23792956632695,40.21408987817651],[-75.226508,40.20720700000002],[-75.195455,40.18821000000002],[-75.1844,40.197010000000034],[-75.183605,40.20203800000002],[-75.181216,40.20546400000003],[-75.17539522955742,40.207421756819166],[-75.16909,40.209542000000035],[-75.157077,40.21735300000002],[-75.151741,40.219410000000025],[-75.126276,40.20381100000002],[-75.104832217399,40.19116110442745],[-75.059812,40.16457500000003],[-75.03498977596837,40.14983314589446],[-75.015066,40.13799200000001],[-75.020571,40.13227400000001],[-75.058342,40.105892000000004],[-75.05988909855675,40.104293072535164],[-75.077805,40.08577000000003],[-75.081189,40.08411600000002],[-75.096733,40.06898900000003],[-75.087425,40.06359900000002],[-75.094056,40.05677100000001],[-75.09891726406568,40.053896528605016],[-75.10627,40.04954800000002],[-75.109431,40.045874],[-75.139427,40.06335800000002],[-75.16776211081734,40.0796618783693],[-75.176438,40.084651],[-75.188461,40.07275000000003],[-75.22361,40.09290700000002],[-75.23205263695468,40.0845716218735],[-75.243133,40.07362800000004],[-75.264431,40.05409400000002],[-75.257655,40.047611000000025],[-75.249039,40.04184800000004],[-75.24617,40.038290000000025],[-75.23960228302182,40.033460725247394],[-75.232323,40.02810700000001],[-75.218056,40.02094300000003],[-75.212219,40.01546100000005],[-75.206286,40.011923000000024],[-75.207245,40.010227000000015],[-75.2429044816577,39.9935088546289],[-75.25,39.99018000000003],[-75.250368,39.995739000000036],[-75.249139,40.00181900000002],[-75.255123,40.00358200000001],[-75.262774,40.00051100000002],[-75.267411,40.00337700000002],[-75.275335,40.016106000000015],[-75.276763,40.022224000000044],[-75.282903,40.02331300000001],[-75.287773,40.02933700000002],[-75.2874920334996,40.03040210145444],[-75.287123,40.03180100000003],[-75.293349,40.035715000000046],[-75.30234,40.03680900000002],[-75.304286,40.03973300000002],[-75.308665,40.035314000000014],[-75.314964,40.040458000000015],[-75.321187,40.03932700000002],[-75.338053,40.06046100000002],[-75.341382,40.05693400000001],[-75.34471071633148,40.055273271370766],[-75.349457,40.05290500000002],[-75.356534,40.062787000000014],[-75.361066,40.06554300000003],[-75.366687,40.072355000000016],[-75.392632,40.06097400000004],[-75.40327062599603,40.075349805643796],[-75.405647,40.07856000000003],[-75.420124,40.09720100000004],[-75.437864,40.089573000000016],[-75.440721,40.09432200000002],[-75.456186,40.08777600000002],[-75.456666,40.09445300000004],[-75.45793337960068,40.09501992486311],[-75.462926,40.097253000000016],[-75.461729,40.10303500000001],[-75.468961,40.10706100000001],[-75.471603,40.111853000000025],[-75.470361,40.11572700000004],[-75.463228,40.11921500000002],[-75.461288,40.12208500000001],[-75.463509,40.12614899999999],[-75.47245,40.12929800000002],[-75.481083,40.126796000000034],[-75.489159,40.12587400000001],[-75.493688,40.12649300000003],[-75.49665384019856,40.1280191249126],[-75.505624,40.132634000000024],[-75.510388,40.13829500000003],[-75.510753,40.141722000000016],[-75.508653,40.14653100000002],[-75.503301,40.151095000000026],[-75.500656,40.155619000000016],[-75.502718,40.159196000000016],[-75.508966,40.16009100000002],[-75.513214,40.15829600000001],[-75.518519,40.14850200000003],[-75.522174,40.147085000000025],[-75.525945,40.148611],[-75.52728196776692,40.15189397085915],[-75.527776,40.15310700000001],[-75.526615,40.158562000000025],[-75.528941,40.16839600000003],[-75.540986,40.17595100000001],[-75.549381,40.19003700000001],[-75.553391,40.20035400000001],[-75.557148,40.20721300000002],[-75.561125,40.20981500000002],[-75.56204442292845,40.20893234272493],[-75.564906,40.206185000000026],[-75.562537,40.20206600000003],[-75.562878,40.19736100000003],[-75.567015,40.19428000000003],[-75.573338,40.195303000000024],[-75.579735,40.201821000000024],[-75.581098,40.20640400000001],[-75.587757,40.21444900000003],[-75.594747,40.23037300000002],[-75.59664245536723,40.236473483812624],[-75.596674,40.23657500000002],[-75.604235,40.23786400000003],[-75.607468,40.23277300000001],[-75.603173,40.22700600000001],[-75.607416,40.22397000000003],[-75.612373,40.22299700000002],[-75.616278,40.22491100000002],[-75.618935,40.22944000000002],[-75.634496,40.23574600000002],[-75.640254,40.237054000000015],[-75.650057,40.24167600000003],[-75.6572601873729,40.24140558033746],[-75.657595,40.24139300000002],[-75.664036,40.24490000000002],[-75.671199,40.24457600000002],[-75.67667,40.242293000000025],[-75.685578,40.23657500000004],[-75.690554,40.236633000000026],[-75.692511,40.23894200000004],[-75.70055,40.243544000000014],[-75.712215,40.247225],[-75.720458,40.24846000000001],[-75.71669596337907,40.25992400253484],[-75.713628,40.26927000000001],[-75.710051,40.278308000000024],[-75.699629,40.29809300000003],[-75.69539,40.31070600000003],[-75.68525058584768,40.32247450148958],[-75.673774,40.33578900000004],[-75.683971,40.342228],[-75.662723,40.36711000000004],[-75.656033,40.376489000000014],[-75.6553952414495,40.377491161915835],[-75.640112,40.401497],[-75.641834,40.40724400000002],[-75.637749,40.41146600000002],[-75.634767,40.409854000000024],[-75.627883,40.420595],[-75.6104976346656,40.427538095902946],[-75.601219,40.431242000000026],[-75.562298,40.41203900000002],[-75.559753,40.40972300000003],[-75.529694,40.44699500000004],[-75.484057,40.41845100000001]]]},"properties":{"district":4}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.13293140985013,39.92190067679223],[-75.13160735874571,39.91927156895696],[-75.13028340930725,39.91664244606403],[-75.12895956151806,39.914013308116004],[-75.12827925241311,39.91266214206743],[-75.12855408367096,39.911308484083726],[-75.12911945003374,39.90852364986724],[-75.12968477043187,39.90573881290553],[-75.13025004487352,39.902953973199104],[-75.13074756215079,39.900502751397184],[-75.13097162284231,39.900212140546024],[-75.13284185858419,39.897786297299696],[-75.1347119619244,39.89536042401442],[-75.13658193288212,39.8929345206949],[-75.13845177147644,39.89050858734586],[-75.140221,39.888213],[-75.14037644062824,39.88811963723053],[-75.14326873160495,39.8863823476087],[-75.1461608759987,39.884644986149],[-75.147366,39.88392100000003],[-75.149496277503,39.88374637259995],[-75.15314838839203,39.883446901657884],[-75.15680046737258,39.883147316173044],[-75.16045251443309,39.88284761614766],[-75.162872,39.882649000000036],[-75.16411084642131,39.88261660511991],[-75.16778156104851,39.8825205411958],[-75.17145226538408,39.882424361558975],[-75.17512295941572,39.882328066210164],[-75.17879364313107,39.882231655150086],[-75.180112,39.88219700000002],[-75.18241549028546,39.88182595507538],[-75.18600992113221,39.88124686711635],[-75.189323,39.88071300000001],[-75.18955385687671,39.88058160184122],[-75.1925036701293,39.87890255476467],[-75.195361,39.87727600000003],[-75.19543552010651,39.87720881125658],[-75.19781585219067,39.87506256428161],[-75.19985699999978,39.873222000000204],[-75.20028411541492,39.87299021526539],[-75.20328249952908,39.87136297982974],[-75.20628074138497,39.869735667196395],[-75.20927884099078,39.86810827737347],[-75.21227679835472,39.86648081036907],[-75.21527461348504,39.86485326619132],[-75.21827228638992,39.863225644848335],[-75.22126981707757,39.86159794634824],[-75.221371,39.86154300000002],[-75.22458240934758,39.8603856310985],[-75.22790589696126,39.859187735636475],[-75.23122926854371,39.857989745334784],[-75.23455252409472,39.85679166020078],[-75.23471800000286,39.856731999999326],[-75.23804429583096,39.85592458399078],[-75.2415448170906,39.855074753859704],[-75.24377922284839,39.85453223567581],[-75.24506978995086,39.85429237069256],[-75.24863799512153,39.853629100420406],[-75.25220613132561,39.852965720829914],[-75.25577419855472,39.85230223192579],[-75.25934219680045,39.85163863371272],[-75.26291012605435,39.85097492619537],[-75.26647798630809,39.85031110937845],[-75.27004577755322,39.84964718326665],[-75.271159,39.84944000000001],[-75.27368274399443,39.849365468373705],[-75.27735109485077,39.84925703622449],[-75.28101943411245,39.849148488535874],[-75.28468776176716,39.849039825308715],[-75.28835607780266,39.848931046543775],[-75.29202438220668,39.848822152241894],[-75.2933759999993,39.84878200000002],[-75.29568007851431,39.84897963835489],[-75.29932845066918,39.849292491452694],[-75.3029768560718,39.84960523026479],[-75.30662529471067,39.84991785478884],[-75.30967399999999,39.850179],[-75.31027588256472,39.85014524422345],[-75.3139372274943,39.849939834877055],[-75.31759855050637,39.849734310432],[-75.32125985158895,39.8495286708898],[-75.32492113073005,39.849322916252014],[-75.3285823879177,39.84911704652016],[-75.3304320000045,39.849012999998834],[-75.33215347871813,39.84856790856792],[-75.33563246138955,39.84766831602483],[-75.33911135288248,39.84676861956669],[-75.341766,39.84608200000003],[-75.34250002748595,39.845723913497295],[-75.34559828640138,39.84421237292543],[-75.34869640890204,39.84270074994127],[-75.35179439499382,39.84118904455284],[-75.35440099999994,39.839917000000014],[-75.35482958922736,39.83961458382806],[-75.35753218885135,39.83770750906727],[-75.36023463838048,39.83580037160222],[-75.36293693782827,39.83389317144062],[-75.3656390872083,39.831985908590205],[-75.36834108653412,39.83007858305867],[-75.37104293581929,39.82817119485378],[-75.37183499999999,39.82761200000001],[-75.3738176277864,39.82632738680501],[-75.37662244565031,39.824509908493816],[-75.37942711512973,39.82269236265092],[-75.3822316362366,39.82087474928424],[-75.38503600898278,39.81905706840173],[-75.38784023338022,39.81723932001129],[-75.3906443094408,39.81542150412086],[-75.39344823717643,39.81360362073837],[-75.39366314718966,39.81346428038745],[-75.39634860309619,39.81187772617725],[-75.3992568412362,39.81015940088244],[-75.40216493398755,39.80844100299045],[-75.40373700000106,39.80751199999948],[-75.40515480586852,39.8068119080576],[-75.40824094502203,39.80528790842009],[-75.41132694736358,39.80376382703411],[-75.41441281289926,39.802239663907685],[-75.415062,39.80191900000003],[-75.41735125354042,39.803282656486004],[-75.42025056784024,39.80500957016462],[-75.423104,39.80670900000005],[-75.42315325446346,39.80673287390404],[-75.42625612065615,39.80823677447875],[-75.42935912260106,39.80974059240755],[-75.43246226030391,39.81124432768244],[-75.43556553377041,39.812747980295384],[-75.4386689430063,39.81425155023835],[-75.440507,39.81514200000002],[-75.44182726676219,39.81568259642834],[-75.44506528373428,39.81700833550552],[-75.44830342562673,39.818333984575865],[-75.45154169244174,39.81965954363165],[-75.45349,39.82045700000002],[-75.45482149473553,39.82092041754376],[-75.45816395387524,39.822083642763175],[-75.46150652617679,39.8232467720731],[-75.46484921163933,39.82440980546636],[-75.468187,39.825571000000025],[-75.46819214188912,39.82557249988297],[-75.47162286884522,39.82657317366479],[-75.47505369573521,39.82757374640225],[-75.47848462255547,39.82857421808885],[-75.481039,39.829319000000034],[-75.48193574155614,39.829529502989786],[-75.48544549618414,39.83035331134687],[-75.48895533498818,39.83117701394881],[-75.49246525796187,39.832000610790004],[-75.49597526509892,39.83282410186482],[-75.498345,39.83338000000003],[-75.4995125790127,39.83356574100585],[-75.5031065320202,39.834137395096356],[-75.50670054484593,39.83470893829492],[-75.5102946174805,39.83528037059745],[-75.51388874991449,39.83585169199986],[-75.51748294213851,39.83642290249804],[-75.52107719414317,39.83699400208793],[-75.523935,39.837448000000016],[-75.52468156641731,39.83751792342442],[-75.52832502154455,39.83785909879565],[-75.53196851286643,39.83820016019716],[-75.53561204037166,39.83854110762646],[-75.53925560404895,39.838881941081056],[-75.53971600000018,39.83892500000001],[-75.54292116013717,39.83900170685407],[-75.54658990290417,39.839089399840645],[-75.5502586550347,39.83917697726995],[-75.55392741651644,39.83926443914133],[-75.55759618733713,39.839351785454134],[-75.56126496748445,39.839439016207706],[-75.56358,39.839494000000045],[-75.56493255264722,39.8394396618427],[-75.56859807053259,39.83929232201822],[-75.57226357268283,39.83914486684018],[-75.57592905908578,39.838997296309685],[-75.57959452972928,39.838849610427815],[-75.580974,39.83879400000002],[-75.5832471544167,39.83858667870915],[-75.58689200516604,39.838254157706885],[-75.59053682061321,39.83792152264953],[-75.59418160074692,39.83758877353957],[-75.59488,39.83752500000003],[-75.59641910400781,39.839472867098706],[-75.597742,39.841147000000035],[-75.59717361755766,39.841888286284124],[-75.59531128213737,39.84431701881173],[-75.594865,39.84489900000001],[-75.59409167149369,39.846958147891186],[-75.59307456486903,39.849666209824825],[-75.59205737799398,39.85237426287549],[-75.591997,39.85253500000001],[-75.59528432643165,39.853347135748194],[-75.598737,39.85420000000001],[-75.59876405847116,39.85422692690822],[-75.60100659343642,39.85645846299838],[-75.601384,39.85683400000002],[-75.59977000682235,39.85882391377949],[-75.59782931498705,39.86121643629268],[-75.596406,39.862971000000016],[-75.59612184944396,39.86369014610058],[-75.59505611862579,39.8663872242206],[-75.59399030401214,39.86908429258699],[-75.59363,39.869996000000015],[-75.59507072469516,39.871498687110225],[-75.59724728821807,39.87376870120357],[-75.597914,39.87446400000003],[-75.5957938260942,39.87554796900937],[-75.59273737820659,39.87711049315212],[-75.58968079104471,39.87867293706796],[-75.58662406460162,39.88023530074882],[-75.58356719887043,39.88179758418658],[-75.5805101938442,39.88335978737312],[-75.57745304951607,39.88492191030035],[-75.57439576587907,39.886483952960155],[-75.57133834292632,39.88804591534446],[-75.571162,39.88813600000004],[-75.57292175154546,39.89042300467812],[-75.574253,39.892153000000015],[-75.57408873748761,39.89295250180473],[-75.57351671366752,39.8957365202785],[-75.573381,39.896397000000015],[-75.57098827771685,39.897515794393065],[-75.56785123317349,39.89898249080869],[-75.5647140543465,39.900449102699135],[-75.56157674123087,39.90191563005642],[-75.559291,39.902984000000025],[-75.55857365739739,39.90351553489578],[-75.55593103060751,39.90547355322515],[-75.555593,39.90572400000002],[-75.55280841605659,39.90693997297673],[-75.54961529191307,39.90833421231738],[-75.54642203779517,39.90972836407885],[-75.546416,39.90973100000005],[-75.54829269158567,39.912147855654055],[-75.55017307108173,39.91456925931503],[-75.550454,39.91493100000003],[-75.54773971290362,39.91611979509918],[-75.54454858828005,39.91751730031599],[-75.542494,39.91841700000001],[-75.5428614666622,39.91938047500465],[-75.54389321864983,39.92208551418414],[-75.544395,39.92340100000002],[-75.54379214983818,39.92477297971963],[-75.542734,39.92718100000001],[-75.54241583933609,39.92731284022047],[-75.5391823926331,39.92865264591406],[-75.536109,39.92992600000002],[-75.53601800497387,39.9298050766042],[-75.53418111913658,39.92736393030977],[-75.53234436429759,39.924922755032775],[-75.53050774043773,39.92248155077782],[-75.530238,39.92212300000004],[-75.52716210993297,39.9225885699704],[-75.52355662390372,39.92313418862223],[-75.523505,39.92314200000003],[-75.52536885749352,39.92552410129516],[-75.52725992196828,39.92794077454954],[-75.52915111996364,39.93035741708203],[-75.530475,39.93204900000001],[-75.52965137380787,39.93261125621333],[-75.52690603937539,39.93448527594788],[-75.526171,39.934987000000014],[-75.5249070868968,39.93316488109928],[-75.523959,39.93179800000003],[-75.52257244380027,39.932492983164195],[-75.51949579248053,39.93403498283808],[-75.518963,39.934302],[-75.5192511017474,39.93662184683903],[-75.519541,39.93895600000002],[-75.51987187442474,39.93935602389464],[-75.52184063637488,39.94173612139653],[-75.52380953529452,39.94411618559731],[-75.523816,39.94412400000003],[-75.52069685521185,39.945598050485756],[-75.51756730053599,39.94707687265844],[-75.51443761055893,39.9485556106838],[-75.51130778527543,39.950034264553736],[-75.50817782468027,39.95151283426022],[-75.50504772876819,39.9529913197952],[-75.502135,39.954367000000026],[-75.50191585978358,39.95446765499971],[-75.49876192364997,39.955916235455234],[-75.49560785390787,39.95736473044256],[-75.49245365055262,39.95881313995364],[-75.4892993135796,39.96026146398049],[-75.48614484298416,39.96170970251508],[-75.48299023876167,39.963157855549426],[-75.47983550090753,39.964605923075474],[-75.47668062941706,39.96605390508525],[-75.47352562428568,39.967501801570734],[-75.47037048550872,39.9689496125239],[-75.46721521308159,39.970397337936745],[-75.46405980699964,39.97184497780125],[-75.461954,39.97281100000003],[-75.46091035280722,39.973300239115005],[-75.45777297216947,39.97477087642078],[-75.45463545651043,39.976241429143315],[-75.45149780582506,39.97771189727455],[-75.44836002010827,39.97918228080645],[-75.445222099355,39.98065257973095],[-75.44208404356013,39.98212279404],[-75.4389458527186,39.983592923725574],[-75.435816,39.985059000000035],[-75.43581562497198,39.985066603810104],[-75.43567671197428,39.98788299156911],[-75.43563,39.988830000000014],[-75.43748820582815,39.9900435407039],[-75.44028788443474,39.99187179271077],[-75.4430877129213,39.99369997735536],[-75.4431,39.99370800000002],[-75.44676228749931,39.99366726953502],[-75.4504407129922,39.99362624351564],[-75.453771,39.99358900000002],[-75.45351021779919,39.9937657323484],[-75.45075468468595,39.99563306818625],[-75.44799900088215,39.997500338767836],[-75.44524316637485,39.99936754408529],[-75.44248718115111,40.00123468413071],[-75.43973104519796,40.003101758896186],[-75.43697475850247,40.00496876837386],[-75.43421832105169,40.00683571255582],[-75.43146173283266,40.00870259143418],[-75.42870499383244,40.01056940500105],[-75.42594810403808,40.01243615324852],[-75.42319106343663,40.014302836168724],[-75.4226,40.01470300000001],[-75.42046527692763,40.01619622231801],[-75.41774790869339,40.01809684924373],[-75.41503038908573,40.0199974126995],[-75.41231271809107,40.02189791267746],[-75.40959489569582,40.023798349169844],[-75.4068769218864,40.025698722168826],[-75.404392,40.02743600000002],[-75.40454741780196,40.027646485640986],[-75.40635902258771,40.03009986947848],[-75.40817075769802,40.03255322510377],[-75.40998262315209,40.03500655251234],[-75.41179461896915,40.03745985169974],[-75.41360674516842,40.03991312266148],[-75.414991,40.04178700000004],[-75.41423477560397,40.042115407701395],[-75.4110325811937,40.043505944158284],[-75.4078302561616,40.04489639246408],[-75.40462780050422,40.04628675261084],[-75.40142521421807,40.04767702459063],[-75.39822249729968,40.04906720839549],[-75.39501964974556,40.050457304017506],[-75.39181667155223,40.051847311448725],[-75.390838,40.052272000000016],[-75.38862861696224,40.05325728158689],[-75.3854470536473,40.05467598637601],[-75.38226535787054,40.05609460414026],[-75.37908352962789,40.057513134871655],[-75.37590156891532,40.05893157856217],[-75.3727194757288,40.06034993520381],[-75.36953725006427,40.0617682047886],[-75.36635489191771,40.06318638730853],[-75.36317240128506,40.064604482755584],[-75.361066,40.06554300000003],[-75.36009100057647,40.0649501170496],[-75.35720777382573,40.06319676064888],[-75.356534,40.062787000000014],[-75.35517752553459,40.06089313631175],[-75.35340748973732,40.05842169018137],[-75.35163758233261,40.055950217117854],[-75.34986780330131,40.05347871712555],[-75.349457,40.05290500000002],[-75.34708850551803,40.054086861560435],[-75.34400387658938,40.05562593525949],[-75.341382,40.05693400000001],[-75.34105844541824,40.057276818940615],[-75.33890211248226,40.05956142832132],[-75.338053,40.06046100000002],[-75.33688903873787,40.05900299381644],[-75.33496918693585,40.05659797897042],[-75.33304947064185,40.05419293243938],[-75.33112988983655,40.05178785422825],[-75.32921044450062,40.04938274434197],[-75.32729113461473,40.046977602785475],[-75.32537196015957,40.0445724295637],[-75.32345292111583,40.04216722468157],[-75.32153401746419,40.03976198814402],[-75.321187,40.03932700000002],[-75.3182530165657,40.03986028337802],[-75.314964,40.040458000000015],[-75.3147581802555,40.04028993752032],[-75.3122403163246,40.03823387469545],[-75.30972260422831,40.03617775737781],[-75.308665,40.035314000000014],[-75.30737475025948,40.036616112177995],[-75.30514974538093,40.03886142312422],[-75.304286,40.03973300000002],[-75.30326346534743,40.038196606070926],[-75.30234,40.03680900000002],[-75.3007133350199,40.03661112599395],[-75.29707783172238,40.03616880251968],[-75.29344237559152,40.035726365434904],[-75.293349,40.035715000000046],[-75.29057707416523,40.03397251428038],[-75.28773222219017,40.032184024522344],[-75.287123,40.03180100000003],[-75.28769570317928,40.02963002392619],[-75.287773,40.02933700000002],[-75.28604107861321,40.02719482606996],[-75.28410378800847,40.02479844567627],[-75.282903,40.02331300000001],[-75.28154001387452,40.023071289633506],[-75.2779545394327,40.02243536135562],[-75.276763,40.022224000000044],[-75.27633060419494,40.020371598368655],[-75.27568303082221,40.01759717595119],[-75.275335,40.016106000000015],[-75.274602376578,40.014929346042805],[-75.27301850805968,40.012385367432415],[-75.27143475760872,40.00984136726255],[-75.26985112520664,40.007297345536806],[-75.26826761083501,40.00475330225869],[-75.267411,40.00337700000002],[-75.26609661407888,40.002564658026735],[-75.26323322019729,40.00079485013768],[-75.262774,40.00051100000002],[-75.26003778307746,40.00160936715254],[-75.25677878893563,40.00291745650908],[-75.255123,40.00358200000001],[-75.25343359047024,40.00308430828134],[-75.24999953864672,40.00207255557283],[-75.249139,40.00181900000002],[-75.24956093690383,39.99973175461261],[-75.25012392558322,39.99694655054077],[-75.250368,39.995739000000036],[-75.25026244574921,39.99414459245459],[-75.25007611143265,39.99132981196804],[-75.25,39.99018000000003],[-75.25176820757957,39.98920842530611],[-75.2547574085229,39.98756582903148],[-75.25774646571385,39.98592315597566],[-75.26073537916092,39.984280406146794],[-75.263687,39.982658000000015],[-75.26372610893716,39.98263985510045],[-75.2668724305967,39.981180019735014],[-75.27001861781223,39.97972009930745],[-75.27316467058857,39.97826009382585],[-75.27631058893063,39.9768000032982],[-75.27945637284326,39.975339827732576],[-75.280266,39.97496400000003],[-75.27862534938572,39.97329070346799],[-75.27641621515255,39.971037445559695],[-75.275606,39.97021099999999],[-75.27364127921645,39.96925294178427],[-75.27053867780855,39.96773989577876],[-75.26743621374305,39.96622676706574],[-75.265448,39.965257000000015],[-75.26417562894447,39.96552807910066],[-75.26063261847585,39.96628283410454],[-75.260491,39.96631300000003],[-75.25785317897412,39.96451474040105],[-75.256686,39.963719000000026],[-75.25473605829367,39.96434702185569],[-75.251603,39.96535600000003],[-75.25136159010589,39.965248999618815],[-75.24817834918449,39.96383800997276],[-75.247479,39.96352800000001],[-75.24892485579998,39.96162843958923],[-75.25077769349791,39.95919400719402],[-75.25085,39.959099000000016],[-75.249006,39.956907000000044],[-75.24903550578013,39.956809380832794],[-75.24986536082899,39.9540637080567],[-75.25069514925126,39.95131802936438],[-75.251376,39.94906500000002],[-75.25104163191813,39.94862907818764],[-75.24917819563981,39.946199562715734],[-75.24731489170848,39.94377001741388],[-75.246469,39.94266700000002],[-75.24447612699912,39.94248383253521],[-75.24082622062028,39.94214827403575],[-75.240149,39.942086000000025],[-75.23982254121516,39.93980423071541],[-75.23957,39.938039000000025],[-75.2382102431598,39.93803785081188],[-75.23453442149325,39.93803466471188],[-75.233784,39.93803400000003],[-75.23126450667849,39.939173900444935],[-75.228709,39.94033000000001],[-75.22806789040985,39.940098362106276],[-75.22474273723589,39.93889687652566],[-75.224292,39.938734000000025],[-75.22194258919687,39.94037440743463],[-75.221545,39.94065200000001],[-75.21905757920405,39.9391849841052],[-75.2161440714804,39.93746652567273],[-75.214514,39.936505000000004],[-75.21331608061361,39.937340231753076],[-75.21065,39.93919900000004],[-75.21058624323445,39.93917275529198],[-75.20734765721646,39.937839557766964],[-75.205578,39.93711100000003],[-75.20625217080327,39.935941883590544],[-75.20773850550852,39.93336419449404],[-75.20922472826291,39.930786486420864],[-75.21071083908431,39.92820875937418],[-75.21219683799059,39.925631013357155],[-75.212428,39.925230000000006],[-75.21062632621654,39.92329219580799],[-75.208526,39.92103300000003],[-75.20847036887852,39.92102323007412],[-75.20488821078855,39.92039407038209],[-75.2017,39.919834000000016],[-75.20130632826175,39.919903899330784],[-75.1977261357682,39.920539521351934],[-75.19414587681332,39.921175033268476],[-75.19056555140587,39.92181043507588],[-75.18698515955464,39.92244572676961],[-75.18340470126842,39.923080908345156],[-75.179824176556,39.923715979798],[-75.17624358542615,39.9243509411236],[-75.17266292788769,39.92498579231743],[-75.169435,39.925558000000024],[-75.16937297351595,39.925831580106326],[-75.16874339881313,39.92860831856892],[-75.168319,39.93048000000003],[-75.1671382851551,39.93032464074475],[-75.16351584712594,39.92984791877281],[-75.163091,39.929792000000035],[-75.16364460738718,39.927340641036224],[-75.163918,39.926130000000015],[-75.16187700306949,39.92585169653819],[-75.15825862125705,39.925358212674965],[-75.15464029161274,39.92486461634596],[-75.1510220141468,39.92437090755481],[-75.14740378886944,39.923877086305076],[-75.14378561579088,39.92338315260036],[-75.14016749492131,39.922889106444245],[-75.13293140985013,39.92190067679223]]]},"properties":{"district":5}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.13563984137411,39.72165957785316],[-76.136451,39.725682000000035],[-76.128262,39.72765700000002],[-76.12258110531641,39.72363974996496],[-76.122252,39.72340700000004],[-76.118521,39.72643200000004],[-76.120304,39.729848000000025],[-76.119924,39.73636400000001],[-76.11749653552626,39.73665689282179],[-76.113616,39.73712500000002],[-76.108565,39.73483600000003],[-76.111177,39.72852100000003],[-76.10920761851901,39.72659451572714],[-76.10796,39.725374000000016],[-76.102479,39.724033000000006],[-76.09385741476244,39.73234170770927],[-76.09262,39.73353400000003],[-76.096188,39.73723600000002],[-76.10205,39.73988400000001],[-76.096877,39.74311100000003],[-76.09671702075367,39.7431111685803],[-76.09204,39.74311600000002],[-76.084334,39.748342000000015],[-76.082599,39.75305000000002],[-76.08278314920915,39.75321369692492],[-76.085794,39.755890000000015],[-76.081852,39.76135100000003],[-76.076461,39.76181300000004],[-76.07316615847024,39.76102421683947],[-76.067427,39.759650000000015],[-76.062468,39.765098000000016],[-76.06484230152456,39.770112576740814],[-76.064923,39.77028300000001],[-76.060524,39.77501100000003],[-76.058397,39.77986100000002],[-76.05222703666864,39.78263720805067],[-76.049678,39.783784000000026],[-76.048525,39.78924000000001],[-76.04200439465536,39.79648561453269],[-76.041365,39.79719600000002],[-76.045962,39.80071100000002],[-76.037557,39.803357000000034],[-76.0363092806173,39.807015044674465],[-76.034431,39.81252100000002],[-76.029925,39.81250500000003],[-76.032242,39.818976000000006],[-76.03285167099733,39.81955162820621],[-76.038178,39.82458000000002],[-76.037636,39.82691700000001],[-76.02807977954437,39.824425693291026],[-76.027034,39.82415300000002],[-76.023784,39.82713400000001],[-76.022826,39.83080000000002],[-76.016473,39.83148100000003],[-76.01710547111406,39.834649200901964],[-76.017809,39.838173000000026],[-76.022823,39.849844000000026],[-76.0223143378459,39.850486627824395],[-76.01991,39.853524000000014],[-76.015805,39.85375800000003],[-76.008575,39.85196500000001],[-76.00776101140278,39.85597598806621],[-76.004472,39.87217800000002],[-76.00431293982108,39.87234759246314],[-76.002432,39.87435300000003],[-75.991644,39.868713],[-75.9886573120502,39.87213339590841],[-75.986698,39.874377000000024],[-75.992347,39.88216000000002],[-75.99135674551646,39.88709857776476],[-75.991258,39.88759100000003],[-75.986823,39.89219200000004],[-75.993329,39.898996000000025],[-75.99432368340058,39.900787263507496],[-75.995989,39.90378600000002],[-75.997516,39.90989100000002],[-75.994896,39.916585000000026],[-75.99495110636028,39.916719992054965],[-75.997132,39.92206200000002],[-75.991467,39.92900300000002],[-75.98790177097312,39.92969537956549],[-75.987363,39.92980000000003],[-75.980966,39.93347900000003],[-75.9888,39.94084100000003],[-75.98897630141505,39.941371134473336],[-75.99104,39.94757600000002],[-75.994629,39.95242900000001],[-75.99205012979895,39.956609570623705],[-75.990394,39.959294000000035],[-75.986163,39.96388700000002],[-75.986699,39.967248000000026],[-75.98382306057813,39.97131802842189],[-75.97350176337841,39.985920149040474],[-75.967478,39.994439000000014],[-75.96305136968573,40.00046862070409],[-75.95242187204424,40.014942282601524],[-75.941787864994,40.029414972986444],[-75.93587,40.03746600000003],[-75.93475562033113,40.04478439857622],[-75.934332,40.047566000000025],[-75.9358019680011,40.06132610642592],[-75.936225,40.065285000000024],[-75.93613950629118,40.07791919382608],[-75.936135,40.07858500000002],[-75.93964839146733,40.09429739073603],[-75.942997,40.10926600000001],[-75.94132829413944,40.109889254132575],[-75.92181515977772,40.11717469738255],[-75.912548,40.12063300000002],[-75.90245779160036,40.12469802927981],[-75.890457,40.12953100000003],[-75.88350682914938,40.1327935465579],[-75.877787,40.13547800000003],[-75.875162,40.13807100000002],[-75.88331628095966,40.14339283180636],[-75.89984142179674,40.15417353404421],[-75.91637180958341,40.16495188647243],[-75.929574,40.17355600000002],[-75.93289228946307,40.17574139672952],[-75.94935798586336,40.186582079023744],[-75.954767,40.190142000000016],[-75.96602460819817,40.197243207778676],[-75.98279215448855,40.20781526180242],[-75.988851,40.21163400000003],[-75.9993466194379,40.21858200912189],[-76.007266,40.22382300000002],[-76.01593077559843,40.22932488365075],[-76.03265773004316,40.239941664373106],[-76.04938993063332,40.2505560363303],[-76.049762,40.250792000000025],[-76.0659411351613,40.26133675723748],[-76.069863,40.26389200000001],[-76.0826670548531,40.271961125243045],[-76.091764,40.27769200000002],[-76.084092,40.28024500000003],[-76.08291134285635,40.28106805831305],[-76.077071,40.28513900000004],[-76.0698803356962,40.29417608178971],[-76.068927,40.29537400000002],[-76.055464,40.30413300000002],[-76.05524841182302,40.305833967890436],[-76.055065,40.307281000000025],[-76.046141,40.30896300000001],[-76.042804,40.314124000000035],[-76.04230012162014,40.316481373622715],[-76.041108,40.32205800000002],[-76.034651,40.32653000000002],[-76.031285,40.32743600000003],[-76.0302094502633,40.32879143753005],[-76.022982,40.33789800000002],[-76.021779,40.34219700000003],[-76.01982129990508,40.342676572991806],[-76.014075,40.34408400000002],[-76.013579,40.34650500000003],[-76.00819,40.34710400000002],[-76.00585,40.35110400000002],[-76.0045169348495,40.35096274665191],[-76.001415,40.35063400000002],[-76.003612,40.355865000000016],[-75.996508,40.356524000000036],[-75.99473643603699,40.35950662503166],[-75.993209,40.36207800000001],[-75.994733,40.36632800000004],[-75.991207,40.36868900000004],[-75.984302,40.36690400000002],[-75.98399549505395,40.36698181298665],[-75.975351,40.36917600000002],[-75.974474,40.364027],[-75.968957,40.36427900000003],[-75.96873707167192,40.36407890725819],[-75.964674,40.36038200000002],[-75.966832,40.35715000000002],[-75.960708,40.35458300000002],[-75.95761252097601,40.35615019762639],[-75.941372,40.36437000000002],[-75.94354767192955,40.364931498862674],[-75.950572,40.366744000000025],[-75.949265,40.369780000000006],[-75.943258,40.37092100000003],[-75.94054244068799,40.36868807274371],[-75.939668,40.36796900000001],[-75.91917157364246,40.367412863749024],[-75.898635,40.36685200000002],[-75.89741752990675,40.36664973217639],[-75.87612337580164,40.36310970711776],[-75.864118,40.361112000000034],[-75.85499933537285,40.36315831016504],[-75.853356,40.36352700000002],[-75.84439,40.35818600000002],[-75.85201442585597,40.35499364257531],[-75.857921,40.35252000000003],[-75.85237,40.349612000000015],[-75.857128,40.346939000000035],[-75.85822843441103,40.34531023827016],[-75.861401,40.340614000000016],[-75.869093,40.34507800000002],[-75.87157318960263,40.34160345151434],[-75.87507,40.33670400000003],[-75.868031,40.33000400000003],[-75.86500827325261,40.330821920488106],[-75.859349,40.33235300000004],[-75.85498,40.328166000000024],[-75.853476,40.323493000000006],[-75.8550889080257,40.32208822626016],[-75.859322,40.31840100000001],[-75.863655,40.31762000000002],[-75.868953,40.31272500000003],[-75.86753430338109,40.31108489510855],[-75.864265,40.307305000000014],[-75.861353,40.30656800000001],[-75.85120664169634,40.30065470046047],[-75.849411,40.29960800000003],[-75.83172175536733,40.293325411232644],[-75.829953,40.29269700000002],[-75.822766,40.289222000000024],[-75.81210633455942,40.286338029490295],[-75.807916,40.285204000000014],[-75.793773,40.27999200000003],[-75.7940234158493,40.27877427078005],[-75.795478,40.27170000000003],[-75.785364,40.269977000000026],[-75.78404128533604,40.26881550765111],[-75.772678,40.25883500000005],[-75.76955,40.258339000000014],[-75.76833975261376,40.25854958842725],[-75.757357,40.26046000000003],[-75.746903,40.25977300000002],[-75.74689897052488,40.25977352445706],[-75.736527,40.26112300000001],[-75.732498,40.25589900000001],[-75.73030489781408,40.254021015037395],[-75.725723,40.25009700000002],[-75.720458,40.24846000000001],[-75.712215,40.247225],[-75.71148890245495,40.2469959189827],[-75.70055,40.243544000000014],[-75.69261453859541,40.239001279140844],[-75.692511,40.23894200000004],[-75.690554,40.236633000000026],[-75.685578,40.23657500000004],[-75.67667,40.242293000000025],[-75.67543546476828,40.24280819661329],[-75.671199,40.24457600000002],[-75.664036,40.24490000000002],[-75.657595,40.24139300000002],[-75.65575668287407,40.24146206145818],[-75.650057,40.24167600000003],[-75.640254,40.237054000000015],[-75.63591604982965,40.23606861285881],[-75.634496,40.23574600000002],[-75.618935,40.22944000000002],[-75.61785033807759,40.22759121566625],[-75.616278,40.22491100000002],[-75.612373,40.22299700000002],[-75.607416,40.22397000000003],[-75.603173,40.22700600000001],[-75.60432463424671,40.22855243899609],[-75.607468,40.23277300000001],[-75.604235,40.23786400000003],[-75.596674,40.23657500000002],[-75.59661970602825,40.23640027223642],[-75.594747,40.23037300000002],[-75.59041310335589,40.22050083121139],[-75.587757,40.21444900000003],[-75.581098,40.20640400000001],[-75.58089314153167,40.205715217140714],[-75.579735,40.201821000000024],[-75.573338,40.195303000000024],[-75.56761694535534,40.19437740505807],[-75.567015,40.19428000000003],[-75.562878,40.19736100000003],[-75.562537,40.20206600000003],[-75.564906,40.206185000000026],[-75.56285841905252,40.20815087121624],[-75.561125,40.20981500000002],[-75.557148,40.20721300000002],[-75.553391,40.20035400000001],[-75.55225606979877,40.19743436374683],[-75.549381,40.19003700000001],[-75.5445586183743,40.18194629801614],[-75.540986,40.17595100000001],[-75.53085100149619,40.16959420805111],[-75.528941,40.16839600000003],[-75.526615,40.158562000000025],[-75.52760754644214,40.15389854013867],[-75.527776,40.15310700000001],[-75.525945,40.148611],[-75.522174,40.147085000000025],[-75.518519,40.14850200000003],[-75.51616619849075,40.152846080267054],[-75.513214,40.15829600000001],[-75.508966,40.16009100000002],[-75.502718,40.159196000000016],[-75.5015890525558,40.15723763947314],[-75.500656,40.155619000000016],[-75.503301,40.151095000000026],[-75.508653,40.14653100000002],[-75.51020776153959,40.14297066515886],[-75.510753,40.141722000000016],[-75.510388,40.13829500000003],[-75.505624,40.132634000000024],[-75.50006771218638,40.12977561392299],[-75.493688,40.12649300000003],[-75.489159,40.12587400000001],[-75.481083,40.126796000000034],[-75.47990240040237,40.12713820788789],[-75.47245,40.12929800000002],[-75.463509,40.12614899999999],[-75.46200329319763,40.12339390574203],[-75.461288,40.12208500000001],[-75.463228,40.11921500000002],[-75.470361,40.11572700000004],[-75.471603,40.111853000000025],[-75.47084409724901,40.11047659457413],[-75.468961,40.10706100000001],[-75.461729,40.10303500000001],[-75.462926,40.097253000000016],[-75.46269567048753,40.09714998726895],[-75.456666,40.09445300000004],[-75.456186,40.08777600000002],[-75.45095221304983,40.08999171999993],[-75.440721,40.09432200000002],[-75.437864,40.089573000000016],[-75.43509103415118,40.09076563525647],[-75.420124,40.09720100000004],[-75.41780517506542,40.09421602242742],[-75.40671793585192,40.079939379138686],[-75.405647,40.07856000000003],[-75.3959854760256,40.06550625860126],[-75.392632,40.06097400000004],[-75.37971166590314,40.06664281573281],[-75.366687,40.072355000000016],[-75.36311578386076,40.06802728958081],[-75.361066,40.06554300000003],[-75.37649929038986,40.058665139448024],[-75.390838,40.052272000000016],[-75.39527591742245,40.05034608439482],[-75.41414568644784,40.04215409616851],[-75.414991,40.04178700000004],[-75.4047931627151,40.027979300138945],[-75.404392,40.02743600000002],[-75.41980364594491,40.016659006869894],[-75.4226,40.01470300000001],[-75.43600638357617,40.0056246709831],[-75.45224502531354,39.99462313323459],[-75.453771,39.99358900000002],[-75.4431,39.99370800000002],[-75.43627595158317,39.98925186062733],[-75.43563,39.988830000000014],[-75.435816,39.985059000000035],[-75.44938038470143,39.97870414860823],[-75.461954,39.97281100000003],[-75.46790101877606,39.97008268399161],[-75.48649031420851,39.961551101527235],[-75.502135,39.954367000000026],[-75.50505299722386,39.95298883139031],[-75.52349409421471,39.94427613356371],[-75.523816,39.94412400000003],[-75.519541,39.93895600000002],[-75.518963,39.934302],[-75.523959,39.93179800000003],[-75.5245377604981,39.93263242120468],[-75.526171,39.934987000000014],[-75.530475,39.93204900000001],[-75.52408644232429,39.92388513280088],[-75.523505,39.92314200000003],[-75.530238,39.92212300000004],[-75.536109,39.92992600000002],[-75.5377931098378,39.929228263172526],[-75.542734,39.92718100000001],[-75.544395,39.92340100000002],[-75.542494,39.91841700000001],[-75.54602456091845,39.916870938175045],[-75.550454,39.91493100000003],[-75.546416,39.90973100000005],[-75.55394094263751,39.90644543416227],[-75.555593,39.90572400000002],[-75.559291,39.902984000000025],[-75.57176264794312,39.89715372202443],[-75.573381,39.896397000000015],[-75.574253,39.892153000000015],[-75.571162,39.88813600000004],[-75.57787806470593,39.88470474742138],[-75.595889148608,39.87549923558524],[-75.597914,39.87446400000003],[-75.59363,39.869996000000015],[-75.596406,39.862971000000016],[-75.59768056566313,39.86139980912467],[-75.601384,39.85683400000002],[-75.598737,39.85420000000001],[-75.591997,39.85253500000001],[-75.59288692283401,39.85016578529738],[-75.594865,39.84489900000001],[-75.597742,39.841147000000035],[-75.59488,39.83752500000003],[-75.59812748350485,39.837071113058606],[-75.610364,39.83536000000003],[-75.61923256579875,39.833514532743834],[-75.634561,39.83032300000001],[-75.63994411521897,39.82878627322774],[-75.649635,39.82601900000003],[-75.65986791295843,39.82236657812706],[-75.6666,39.81996300000002],[-75.67895774895223,39.81459515617603],[-75.680468,39.81393900000001],[-75.69680264196126,39.80523058485603],[-75.700089,39.80347800000002],[-75.71331832107958,39.79454281554366],[-75.719502,39.790365000000016],[-75.72856521418481,39.78280416866396],[-75.732996,39.77910700000004],[-75.74225227651237,39.76996965533633],[-75.74439399999999,39.76785499999999],[-75.75306599999999,39.757631],[-75.7541419855538,39.756121414237704],[-75.760353,39.747406000000026],[-75.76401548360754,39.74136114596574],[-75.766363,39.737486000000025],[-75.77197312870315,39.72593387023853],[-75.77378600002537,39.72219999999995],[-75.79019462963846,39.72217665741406],[-75.8117851974903,39.72214242388301],[-75.83337574265346,39.722104191248036],[-75.85496626262382,39.72206195951896],[-75.8765567548973,39.72201572870673],[-75.89163039567418,39.721981081482305],[-75.89814723307792,39.721970113527114],[-75.91973772204359,39.72193117324265],[-75.94132818537358,39.72188823388952],[-75.96291862056385,39.72184129547878],[-75.98450902511037,39.72179035802255],[-76.00129200000235,39.721748000000034],[-76.00609855695903,39.7218183542049],[-76.01306699999999,39.72192],[-76.02768780084283,39.721895706547485],[-76.04927826558816,39.72185647890073],[-76.07086870451798,39.72181325219626],[-76.09245911512825,39.721766026445216],[-76.13563984137411,39.72165957785316]]]},"properties":{"district":6}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.04350062636784,41.03050913382868],[-75.046756,41.02976200000003],[-75.04848731060089,41.028950958792805],[-75.05310906666602,41.02678564902986],[-75.05773051877445,41.02462015466234],[-75.06235166694344,41.022454475716444],[-75.06697251119031,41.020288612218415],[-75.07053199999454,41.018620000003175],[-75.07173490410544,41.01836578384227],[-75.07697292611007,41.0172586359614],[-75.0822107720198,41.01615125096671],[-75.08744844180973,41.01504362887541],[-75.089787,41.014549],[-75.09161945678699,41.012746538355145],[-75.09492986915302,41.00948998989188],[-75.095556,41.00887400000006],[-75.09955286388131,41.00746746351294],[-75.10448186188961,41.00573262687387],[-75.109114,41.004102000000046],[-75.10927814545501,41.00388831814864],[-75.1105949999735,41.00217400003451],[-75.11298091644825,41.001049864739606],[-75.11759383679882,40.998876218285595],[-75.12220645290529,40.996702387957285],[-75.123423,40.99612900000003],[-75.12635051718942,40.99406776828999],[-75.13032650202722,40.99126799735478],[-75.130575,40.99109300000003],[-75.13144729293849,40.98730201578224],[-75.13237763072519,40.98325828104408],[-75.13308600000049,40.98017899999933],[-75.13371499062681,40.97932298960478],[-75.135521,40.97686500000001],[-75.13530304700627,40.97558207058865],[-75.13470099999857,40.97203799999838],[-75.1342267788719,40.9716456541922],[-75.13136399999999,40.969277],[-75.13018550221493,40.96939474176694],[-75.1247967386223,40.96993296599423],[-75.12260299999998,40.970152],[-75.12097076202197,40.968053712792425],[-75.11977,40.96651000000002],[-75.12056252136233,40.964274738177956],[-75.12064999999998,40.964028],[-75.11966163936991,40.96025221952286],[-75.11860781092955,40.95622585070809],[-75.11776699999639,40.953012999996915],[-75.117016055359,40.95240800561819],[-75.11329961727144,40.94941364294833],[-75.111683,40.94811100000001],[-75.1103211820807,40.94603279014119],[-75.10791101243146,40.94235437735055],[-75.10615299999999,40.939671],[-75.10582423334603,40.93858886595318],[-75.104809,40.935247000000004],[-75.10433136729635,40.93467591582674],[-75.10142960954406,40.93120615861277],[-75.09852815655253,40.92773632866623],[-75.09562700825887,40.92426642600364],[-75.09552800000046,40.92414800000056],[-75.09150328642505,40.92160499342669],[-75.08733668561163,40.918971982108964],[-75.08317041673807,40.91633882083832],[-75.07929,40.913886],[-75.07916604366234,40.913620750623735],[-75.07735761549189,40.90975070793268],[-75.07609199999999,40.907041999999976],[-75.07593238954318,40.9058162824533],[-75.07540055258283,40.90173174747543],[-75.07519800000131,40.90017600000729],[-75.07563735785625,40.897656790793235],[-75.07597999999992,40.89569200000044],[-75.07484499029907,40.893750659395984],[-75.07392500001123,40.89217700001576],[-75.07171032011595,40.890480088496474],[-75.06789747522667,40.88755834261373],[-75.06543999999998,40.885675000000006],[-75.06440033772982,40.88444609796003],[-75.06147544398473,40.88098851890698],[-75.058655,40.87765400000002],[-75.05852223594414,40.87754776585882],[-75.05479430343509,40.87456457556655],[-75.05366400000047,40.87366000000039],[-75.0527496957196,40.87088504328368],[-75.05143765161704,40.86690250836873],[-75.05102900000003,40.86566199999992],[-75.05209381171424,40.86295332460926],[-75.05329399999994,40.85990000000019],[-75.05422216773748,40.85930708309811],[-75.05836772615221,40.856658665008325],[-75.059239,40.85610200000002],[-75.06114277919295,40.85319775077273],[-75.06355293791758,40.84952060036379],[-75.064328,40.848338000000005],[-75.06794254224718,40.8478121552913],[-75.07082999999972,40.847392000000006],[-75.07299774090582,40.84831151309275],[-75.07668400000017,40.84987500000002],[-75.07788120980776,40.84981737938787],[-75.08329609844702,40.84955660991482],[-75.08871094444584,40.84929558725025],[-75.09096199999927,40.849187000000086],[-75.09370775783671,40.84798840553659],[-75.095784,40.84708200000003],[-75.09643807924434,40.84484516844418],[-75.09757199999841,40.84096699999545],[-75.0974918528627,40.84084934471214],[-75.0950067647017,40.83720102257237],[-75.09494,40.837103000000006],[-75.09117777775236,40.834301266968176],[-75.08731201388576,40.83142205231657],[-75.085517,40.830085],[-75.0849088960843,40.827935306692225],[-75.08392900000422,40.82447099999274],[-75.08430257592758,40.8239858569392],[-75.0870330677356,40.82043966126926],[-75.08976326759621,40.81689340123514],[-75.09051800016009,40.815912999905414],[-75.09361074084929,40.81408546000414],[-75.0944390000003,40.81359599999975],[-75.0970265626393,40.81092882739583],[-75.10023576068211,40.80762051568869],[-75.100277,40.807578000000035],[-75.10054898665435,40.80353171143249],[-75.1008,40.79979700000005],[-75.10106826099691,40.799494039101894],[-75.10408684780468,40.796084760775344],[-75.10710512458797,40.79267540379547],[-75.108505,40.79109400000002],[-75.11130668350879,40.790508170096025],[-75.11653195860738,40.78941536035976],[-75.116854,40.78934800000003],[-75.12130870620939,40.78748871179851],[-75.123088,40.78674600000001],[-75.12480484124882,40.78453372716162],[-75.1275507426236,40.7809950774037],[-75.13029635143546,40.777456362566284],[-75.13146500002279,40.77594999997735],[-75.1336872250523,40.77429944056256],[-75.1344,40.77377000000001],[-75.1388035960911,40.77406891254677],[-75.14420166790975,40.77443509727924],[-75.149378,40.774786000000034],[-75.14958926441302,40.77483931292395],[-75.15473113229478,40.77613672660797],[-75.15987320099848,40.77743391206423],[-75.163648,40.77838600000003],[-75.16508119289627,40.7782703242351],[-75.1704706390412,40.77783516932542],[-75.1715870000026,40.777744999997594],[-75.1738863430166,40.77499592568837],[-75.17561999998944,40.772923000014906],[-75.17596790859382,40.771293606942415],[-75.1768329419364,40.76724196405466],[-75.17747699999317,40.76422500004935],[-75.17838102191203,40.76343144632856],[-75.18192081016959,40.76032395708621],[-75.18303699999997,40.759344000000034],[-75.18631537467373,40.75802887859331],[-75.19110350945589,40.75610785607843],[-75.191796,40.75583000000004],[-75.1948076237821,40.753161628880456],[-75.19653499997068,40.75163100003259],[-75.19613656828149,40.74956237445662],[-75.19535441302706,40.74550110837037],[-75.19534899999998,40.74547299999999],[-75.19178714360338,40.742418448038705],[-75.1882007940727,40.73934249730852],[-75.18578,40.737266],[-75.18484861092224,40.73613436267192],[-75.18280399999988,40.73364999999972],[-75.18270824816572,40.73247582529103],[-75.18250000000013,40.72992199999986],[-75.18359315218589,40.72861718027999],[-75.186052,40.72568200000002],[-75.18631165699078,40.72508608477438],[-75.18800969676661,40.72118879014729],[-75.18941168651854,40.71797061871336],[-75.19006533668718,40.71745478937881],[-75.1938161494516,40.71449460217009],[-75.19442,40.714018000000024],[-75.19601068945882,40.710792514493576],[-75.19790642368297,40.70694804450481],[-75.19872,40.70529800000004],[-75.19956910718304,40.703045439878004],[-75.20105653483608,40.69909912444168],[-75.20254378626576,40.69515278991759],[-75.20392099999985,40.69149799999965],[-75.20377917856146,40.69121447771091],[-75.201859720798,40.68737693987327],[-75.20091999999998,40.68549800000002],[-75.19930315103615,40.68379956013277],[-75.196921,40.681297],[-75.19567433089199,40.68091994869049],[-75.19064742194928,40.679399395923866],[-75.19057999999883,40.67937900000012],[-75.18528430422697,40.679896012179704],[-75.184516,40.67997100000002],[-75.18025006583647,40.67859198000425],[-75.177587,40.677730999999994],[-75.17755132374343,40.67582241267503],[-75.177491,40.67259500000004],[-75.17808770923361,40.671844346517794],[-75.18088156467537,40.66832944220084],[-75.182756,40.66597099999999],[-75.18424435570564,40.665229999247124],[-75.18876765336493,40.662977787654015],[-75.19084627291804,40.66194270442531],[-75.19243139169699,40.66007878986922],[-75.19536416779145,40.6566298558816],[-75.197204,40.65446600000002],[-75.19783099758865,40.65301255857416],[-75.19951356928809,40.64911186389333],[-75.200468,40.646899],[-75.19870522710197,40.64573065662549],[-75.19463159830424,40.64303044841182],[-75.19349199999999,40.64227499999998],[-75.19195627032626,40.63955835023155],[-75.191059,40.637971000000014],[-75.19062144760599,40.635617253514944],[-75.18986603301802,40.631553221234725],[-75.18911071037779,40.62748918403303],[-75.18857900000022,40.62462800000063],[-75.18909836388902,40.62347897492889],[-75.19069029890998,40.619956764885124],[-75.19118842349268,40.619913560152725],[-75.1965605697265,40.61944746861398],[-75.197891,40.61933200000003],[-75.20119172175073,40.61752718569606],[-75.201812,40.61718800000001],[-75.19993610118067,40.61396454044841],[-75.19775152899177,40.61021024025986],[-75.196803,40.608580000000025],[-75.19944171314027,40.60740570188919],[-75.20410541381948,40.60532998222777],[-75.20876882481238,40.60325407500147],[-75.21343194613202,40.60117798023566],[-75.2180947777915,40.59910169795577],[-75.22275731980388,40.59702522818718],[-75.22741957218221,40.594948570955296],[-75.23208153493965,40.59287172628551],[-75.23674320808928,40.59079469420323],[-75.236848,40.59074800000002],[-75.24149661960234,40.58884155367199],[-75.24625186997926,40.586891071682395],[-75.25100684298329,40.58494039471045],[-75.25576153862202,40.58298952278093],[-75.258151,40.58200900000003],[-75.26030653117961,40.58078915694121],[-75.26463962665332,40.57833674615646],[-75.26897240444092,40.575884173482315],[-75.2733048645722,40.57343143894468],[-75.27763700707706,40.57097854256942],[-75.28196883198534,40.56852548438244],[-75.28630033932689,40.56607226440962],[-75.29063152913157,40.56361888267684],[-75.293528,40.561978000000025],[-75.29491838404707,40.5611223247218],[-75.2991160365769,40.55853875606889],[-75.3033133651201,40.555955035505995],[-75.30751036971218,40.55337116305867],[-75.308745,40.55261100000003],[-75.31163889259918,40.55072502747361],[-75.31573868060565,40.54805285796471],[-75.31983814144958,40.54538054355522],[-75.32393727517024,40.542708084270345],[-75.32803608180687,40.54003548013535],[-75.33213456139875,40.53736273117549],[-75.333048,40.53676700000003],[-75.33658943046262,40.535055629238336],[-75.338633,40.53406800000001],[-75.34087512327721,40.532577868835],[-75.34494000306428,40.52987604113896],[-75.34900455508524,40.52717407101368],[-75.3530687793805,40.52447195848423],[-75.3571326759905,40.52176970357568],[-75.36119624495572,40.519067306313126],[-75.36525948631659,40.516364766721615],[-75.367911,40.514601000000006],[-75.3693494510008,40.5136861199164],[-75.37348990653753,40.51105247860126],[-75.37763003685536,40.50841868952642],[-75.38176984199185,40.50578475271727],[-75.3859093219846,40.50315066819915],[-75.39004847687116,40.5005164359974],[-75.39418730668908,40.49788205613739],[-75.39832581147598,40.49524752864444],[-75.4024639912694,40.4926128535439],[-75.40660184610694,40.4899780308611],[-75.409733,40.48798400000002],[-75.41056168892595,40.48720978451961],[-75.41396838892376,40.48402677237604],[-75.41737476583458,40.480843660219705],[-75.4207808197152,40.477660448071326],[-75.4241865506225,40.47447713595164],[-75.42759195861325,40.471293723881374],[-75.43099704374427,40.46811021188126],[-75.4344018060724,40.464926599972],[-75.4378062456544,40.4617428881743],[-75.44121036254705,40.458559076508884],[-75.44461415680716,40.455375164996454],[-75.44801762849148,40.4521911536577],[-75.45142077765678,40.44900704251332],[-75.4548236043598,40.44582283158401],[-75.4582261086573,40.44263852089046],[-75.461628290606,40.43945411045333],[-75.46503015026263,40.43626960029332],[-75.46843168768395,40.433084990431084],[-75.47183290292661,40.42990028088731],[-75.47523379604735,40.426715471682634],[-75.47863436710284,40.42353056283773],[-75.4820346161498,40.42034555437325],[-75.484057,40.41845100000001],[-75.48574429739932,40.41950708366013],[-75.48990884100138,40.42211343503437],[-75.49407370731558,40.42471963697541],[-75.49823889637814,40.42732568945789],[-75.50240440822535,40.429931592456434],[-75.5065702428934,40.43253734594573],[-75.51073640041854,40.43514294990037],[-75.514902880837,40.437748404295014],[-75.51906968418504,40.4403537091043],[-75.52323681049886,40.44295886430283],[-75.5274042598147,40.445563869865225],[-75.529694,40.44699500000004],[-75.5315730854166,40.44816774910441],[-75.5357435182231,40.450770287720204],[-75.53991427405239,40.45337267645577],[-75.54408535294061,40.45597491528573],[-75.54825675492388,40.45857700418465],[-75.55242848003834,40.46117894312715],[-75.55660052832015,40.4637807320878],[-75.56077289980537,40.46638237104119],[-75.56494559453019,40.46898385996191],[-75.56911861253069,40.471585198824535],[-75.57329195384301,40.47418638760364],[-75.57746561850328,40.47678742627377],[-75.579503,40.478057000000035],[-75.58161692884173,40.47940909874557],[-75.5857469384024,40.48205044294198],[-75.58987727298435,40.484691640123806],[-75.59400793262542,40.48733269026576],[-75.59813891736343,40.48997359334254],[-75.6022702272362,40.49261434932885],[-75.60640186228159,40.49525495819937],[-75.61053382253739,40.49789541992878],[-75.61466610804143,40.50053573449179],[-75.61879871883156,40.503175901863074],[-75.62293165494556,40.5058159220173],[-75.62706491642129,40.50845579492915],[-75.63119850329655,40.511095520573285],[-75.63533241560916,40.51373509892438],[-75.63946665339694,40.5163745299571],[-75.6436012166977,40.51901381364608],[-75.6477361055493,40.521652949966004],[-75.6518713199895,40.5242919388915],[-75.65600686005614,40.526930780397244],[-75.66014272578705,40.52956947445783],[-75.66427891722002,40.53220802104794],[-75.66841543439286,40.53484642014221],[-75.66857,40.53494500000003],[-75.67255583233235,40.537481448456155],[-75.67669669395305,40.54011620385444],[-75.68083788130383,40.5427508114172],[-75.68497939442233,40.545385271119045],[-75.68912123334626,40.54801958293459],[-75.69326339811322,40.550653746838435],[-75.69740588876091,40.55328776280517],[-75.70154870532701,40.55592163080938],[-75.70569184784915,40.55855535082566],[-75.709835316365,40.561188922828585],[-75.71397911091223,40.563822346792755],[-75.71812323152851,40.56645562269272],[-75.72226767825146,40.56908875050308],[-75.72641245111878,40.57172173019838],[-75.73055755016809,40.574354561753196],[-75.73470297543706,40.576987245142085],[-75.738038,40.57910500000004],[-75.7388531363042,40.57961574783799],[-75.74302176206751,40.582227512509085],[-75.7471907133672,40.584839127321224],[-75.75135999024003,40.58745059224893],[-75.75552959272278,40.590061907266616],[-75.75969952085221,40.59267307234878],[-75.7638697746651,40.59528408746987],[-75.76804035419822,40.597894952604335],[-75.77221125948833,40.600505667726644],[-75.7763824905722,40.60311623281122],[-75.777416,40.603763000000015],[-75.778921,40.60446200000001],[-75.78069242393474,40.60557846016426],[-75.78485211987964,40.60819990302893],[-75.78901214216668,40.610821196655],[-75.7931724908331,40.613442341016935],[-75.79733316591613,40.616063336089226],[-75.801494167453,40.61868418184631],[-75.80565549548096,40.62130487826266],[-75.80981715003725,40.62392542531274],[-75.81397913115906,40.62654582297099],[-75.81814143888367,40.629166071211884],[-75.82230407324826,40.63178617000985],[-75.825604,40.63386300000003],[-75.82644300803366,40.63442738426548],[-75.83049040034909,40.63714976645445],[-75.83453812276139,40.639872007331924],[-75.83858617531206,40.642594106872764],[-75.84263455804262,40.64531606505188],[-75.84668327099459,40.64803788184414],[-75.849513,40.64994000000002],[-75.85074864446803,40.65074535520895],[-75.85485224741737,40.65341972391909],[-75.85895617933369,40.65609394735293],[-75.86306044025653,40.6587680254851],[-75.86716503022548,40.66144195829023],[-75.8712699492801,40.66411574574296],[-75.87537519745997,40.6667893878179],[-75.87948077480463,40.66946288448965],[-75.88358668135366,40.67213623573285],[-75.8876929171466,40.6748094415221],[-75.891473,40.67727000000003],[-75.89109969696102,40.67743221033222],[-75.88640388093796,40.67947250012433],[-75.88170777746936,40.68151259966048],[-75.87701138654374,40.68355250891535],[-75.87231470814963,40.68559222786358],[-75.86761774227551,40.68763175647981],[-75.86292048890998,40.68967109473868],[-75.85822294804153,40.691710242614825],[-75.854809,40.69319200000001],[-75.85333013210797,40.69316421545037],[-75.84791871772278,40.693062386280445],[-75.844663,40.69300100000003],[-75.84274875611219,40.69375371674224],[-75.83794324881501,40.6956431184583],[-75.83313746895885,40.697532320909936],[-75.82833141653882,40.69942132407256],[-75.82352509155005,40.701310127921545],[-75.81871849398769,40.70319873243232],[-75.81391162384683,40.70508713758027],[-75.80910448112266,40.706975343340815],[-75.807789,40.707492000000016],[-75.80516582007067,40.70971311954223],[-75.80155412171503,40.71277090560258],[-75.79794209161723,40.71582857909136],[-75.796518,40.71703400000001],[-75.79373777362466,40.718353405576096],[-75.78914789574578,40.72053135287667],[-75.78455771751274,40.72270911836869],[-75.77996723890783,40.72488670202629],[-75.779682,40.72502200000003],[-75.77807042584924,40.72867236244436],[-75.77769,40.729534000000015],[-75.7735236188388,40.730028020299706],[-75.76817257377022,40.73066227924014],[-75.765947,40.730926000000025],[-75.76338949835612,40.73233703407203],[-75.75901065086224,40.73475267767428],[-75.757761,40.73544200000003],[-75.75429615110897,40.73674965553039],[-75.7494474696633,40.73857931784469],[-75.744863,40.74030900000002],[-75.74477626696783,40.740522992100175],[-75.743585,40.74346200000004],[-75.74225586260161,40.74367742822831],[-75.739309,40.74415500000002],[-75.7377725585439,40.74555552340826],[-75.73430962920231,40.74871182103304],[-75.73084637111799,40.75186801514927],[-75.7286,40.75391500000002],[-75.72684448916434,40.75447344399719],[-75.72184886876394,40.75606239950698],[-75.71685300957371,40.7576511396077],[-75.71185691160119,40.759239664276976],[-75.70686057485398,40.76082797349245],[-75.702418,40.76224000000001],[-75.70205965294602,40.762605248199684],[-75.69882744606969,40.76589947032732],[-75.69559491874935,40.76919360227127],[-75.694621,40.770186000000024],[-75.69103013165824,40.771096306908554],[-75.68589084196222,40.7723989109979],[-75.68075135076847,40.77370128709271],[-75.67561165809508,40.77500343517355],[-75.672771,40.77572300000002],[-75.67041600225538,40.776159237102775],[-75.6651512851332,40.77713427345834],[-75.65988641348355,40.77810907055135],[-75.65462138733453,40.779083628366564],[-75.64935620671422,40.78005794688871],[-75.64409087165069,40.78103202610255],[-75.63882538217207,40.78200586599283],[-75.63355973830645,40.782979466544326],[-75.62829394008197,40.78395282774179],[-75.62302798752675,40.78492594956997],[-75.61776188066894,40.78589883201366],[-75.61249561953669,40.7868714750576],[-75.609303,40.78746100000002],[-75.60718237933796,40.78764538968409],[-75.602608,40.788043000000044],[-75.60202227458421,40.78847356223618],[-75.59813279490908,40.791332471988866],[-75.595453,40.79330200000002],[-75.59391489254845,40.79382544355886],[-75.58897007298394,40.7955080536516],[-75.58402500277616,40.79719045265025],[-75.579079681929,40.79887264053156],[-75.577488,40.79941400000002],[-75.57386951676372,40.799907721492914],[-75.56853363956714,40.80063555200407],[-75.565091,40.80110500000002],[-75.56316738800444,40.80112616862681],[-75.55774607529534,40.80118565618158],[-75.557532,40.80118800000003],[-75.55330550598703,40.803491316427305],[-75.551359,40.80455200000003],[-75.54846663908634,40.80521932083809],[-75.5432798887642,40.80641578500419],[-75.541549,40.80681500000002],[-75.53793626927065,40.80679033723812],[-75.53251415127224,40.80675311096635],[-75.528444,40.806725],[-75.52714671890215,40.8070132458592],[-75.52194379120608,40.80816912513718],[-75.519045,40.80881300000002],[-75.51664497103826,40.80887577285346],[-75.5112256785529,40.80901733130733],[-75.508018,40.80910100000003],[-75.50584760933022,40.80942792119476],[-75.50052926524593,40.8102288261804],[-75.49521079279259,40.8110294869639],[-75.48989219200263,40.81182990353249],[-75.485272,40.812525000000036],[-75.48458355246032,40.81266304784859],[-75.47934149733123,40.81371403435435],[-75.474193,40.81474600000003],[-75.47423037333894,40.81481370691832],[-75.47632091611968,40.81860077200744],[-75.47841169761372,40.82238779935913],[-75.48050271787785,40.82617478896401],[-75.482577,40.82993100000003],[-75.48259682177424,40.829960750003295],[-75.48503878441362,40.8336256002457],[-75.48748101703735,40.8372903989932],[-75.4899235197064,40.84095514623345],[-75.49236629248173,40.844619841954085],[-75.493581,40.84644200000001],[-75.49493421804881,40.84823372389996],[-75.49762593225364,40.85179734419442],[-75.50031793601991,40.85536090191644],[-75.50301022941005,40.85892439705143],[-75.5057028124866,40.86248782958478],[-75.50839568531202,40.86605119950189],[-75.51108884794883,40.86961450678813],[-75.513434,40.872717000000016],[-75.5138055823017,40.873167231820055],[-75.51667938163789,40.87664905560431],[-75.517953,40.87819200000002],[-75.51503940658422,40.878800514982146],[-75.50980700328239,40.879893110021825],[-75.50457442725693,40.880985468601814],[-75.49934167853286,40.88207759070519],[-75.49410875713522,40.883169476315054],[-75.48887566308905,40.88426112541448],[-75.48364239641946,40.88535253798657],[-75.47840895715144,40.886443714014405],[-75.47317534531014,40.8875346534811],[-75.46794156092062,40.88862535636974],[-75.46270760400799,40.88971582266341],[-75.45747347459736,40.89080605234524],[-75.45223917271385,40.891896045398305],[-75.44700469838257,40.89298580180574],[-75.4417700516287,40.894075321550645],[-75.43653523247733,40.89516460461612],[-75.43130024095366,40.89625365098529],[-75.42713,40.89712100000001],[-75.42607327992165,40.89736387594194],[-75.4208782602832,40.89855773010843],[-75.41568305313622,40.89975135115931],[-75.4104876585027,40.9009447390764],[-75.40529207640459,40.902137893841456],[-75.4000963068639,40.90333081543625],[-75.39490034990258,40.90452350384257],[-75.38970420554267,40.90571595904217],[-75.38450787380614,40.90690818101688],[-75.37931135471506,40.908100169748444],[-75.37411464829141,40.90929192521866],[-75.36891775455726,40.91048344740931],[-75.36372067353466,40.91167473630221],[-75.35852340524566,40.912865791879106],[-75.35332594971234,40.91405661412183],[-75.34812830695678,40.91524720301217],[-75.34293047700106,40.916437558531904],[-75.3377324598673,40.91762768066285],[-75.336805,40.91784000000001],[-75.33901417514342,40.92076977332379],[-75.34170338061308,40.92433574793956],[-75.34439287630704,40.9279016600766],[-75.347082662288,40.9314675097203],[-75.34977273861874,40.93503329685607],[-75.352463105362,40.93859902146927],[-75.35515376258058,40.942164683545315],[-75.355397,40.94248700000002],[-75.35200793209016,40.94520433974247],[-75.3482817407619,40.94819161096553],[-75.34455521227994,40.95117876222246],[-75.34082834659179,40.95416579348978],[-75.338451,40.95607100000002],[-75.33714090696986,40.95718023809184],[-75.3335231648629,40.960243060912724],[-75.32990508699255,40.96330577064197],[-75.32628667330378,40.96636836725687],[-75.32266792374158,40.96943085073468],[-75.31904883825088,40.97249322105271],[-75.31542941677668,40.97555547818822],[-75.31456,40.97629100000003],[-75.31167838673557,40.97852522661617],[-75.307885519994,40.981465643360174],[-75.30409231505266,40.98440593578607],[-75.3002987718606,40.987346103869854],[-75.29650489036695,40.99028614758757],[-75.29271067052076,40.99322606691521],[-75.28891611227111,40.99616586182883],[-75.28512121556706,40.999105532304384],[-75.28132598035768,41.00204507831791],[-75.27753040659205,41.00498449984541],[-75.27512,41.006851000000005],[-75.27411734727167,41.008143887894924],[-75.27137006966369,41.01168610804298],[-75.26862249663104,41.0152282629566],[-75.2658746281105,41.01877035262064],[-75.26312646403883,41.02231237701996],[-75.26037800435283,41.02585433613934],[-75.25762924898918,41.02939622996363],[-75.25488019788463,41.03293805847767],[-75.25213085097589,41.03647982166624],[-75.24938120819967,41.040021519514205],[-75.24663126949264,41.043563152006335],[-75.24388103479146,41.04710471912746],[-75.24113050403278,41.05064622086237],[-75.23837967715328,41.05418765719586],[-75.23562855408954,41.057729028112746],[-75.2328771347782,41.0612703335978],[-75.23012541915585,41.0648115736358],[-75.22737340715908,41.06835274821156],[-75.22462109872443,41.071893857309846],[-75.223483,41.073358],[-75.22043690674737,41.07263580789051],[-75.21524359820802,41.07140431529038],[-75.21005048423703,41.070172589546985],[-75.2048575648555,41.06894063067917],[-75.19966484008451,41.06770843870579],[-75.19447230994516,41.066476013645726],[-75.192922,41.06610800000001],[-75.1922529483846,41.06327369529325],[-75.19129920497431,41.05923292107563],[-75.19034557874228,41.055192138995984],[-75.18939206965763,41.05115134905639],[-75.1884386776895,41.047110551258925],[-75.1874854028071,41.04306974560568],[-75.18653224497957,41.039028932098724],[-75.18557920417614,41.03498811074015],[-75.18527,41.03367700000002],[-75.18341468022389,41.031283582141654],[-75.18296,41.03069700000003],[-75.1787104573104,41.03190234223009],[-75.17361756710132,41.033346628186166],[-75.1718,41.03386200000001],[-75.170457,41.03201800000003],[-75.1710011728529,41.03167395073469],[-75.17517088690767,41.02903747554561],[-75.176111,41.02844300000002],[-75.17391344815462,41.02573066326171],[-75.172466,41.02394400000003],[-75.1702854715179,41.0250995032611],[-75.16583347089427,41.02745844904333],[-75.163088,41.028913000000045],[-75.1610728506389,41.02931869408682],[-75.1558160949407,41.03037680642359],[-75.15055917029844,41.03143467991645],[-75.145587,41.032435000000035],[-75.14532926683071,41.03254307815484],[-75.14057363112121,41.03453714576857],[-75.13993,41.03480700000003],[-75.139571,41.03793100000003],[-75.14003032692332,41.03815597968956],[-75.14459407413659,41.040391133996096],[-75.1491581313166,41.04262610826702],[-75.150514,41.043290000000006],[-75.15195180032735,41.04596349671297],[-75.15399741787003,41.04976678506544],[-75.155345,41.05227200000004],[-75.15477439803502,41.05360505061545],[-75.153417,41.05677600000001],[-75.15244057809154,41.05654321501876],[-75.14725100753735,41.05530582356511],[-75.14206163223184,41.05406819932179],[-75.13687245219595,41.052830342307765],[-75.13168346745044,41.05159225254189],[-75.12649467801621,41.05035393004313],[-75.1213060839141,41.04911537483037],[-75.1161176851649,41.04787658692254],[-75.11092948178944,41.046637566338575],[-75.1057414738085,41.045398313097365],[-75.10055366124287,41.044158827217856],[-75.09536604411336,41.042919108718955],[-75.09017862244072,41.041679157619605],[-75.0849913962457,41.04043897393873],[-75.07980436554907,41.03919855769526],[-75.07461753037154,41.037957908908126],[-75.06943089073386,41.03671702759624],[-75.06424444665673,41.035475913778576],[-75.05905819816087,41.03423456747405],[-75.053872145267,41.032992988701594],[-75.04350062636784,41.03050913382868]]]},"properties":{"district":7}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.48314857372002,41.99920665856382],[-75.477144,41.99940700000001],[-75.37958900001745,41.99923200000002],[-75.35957899999998,41.999444999999994],[-75.34656799999998,41.995324000000004],[-75.34112499999962,41.9927719999994],[-75.337602,41.98670000000003],[-75.34245999999993,41.974303000000134],[-75.339488,41.970786],[-75.32931799999999,41.968232],[-75.32238399999999,41.961693000000025],[-75.32003999999984,41.96086699999949],[-75.318168,41.954236],[-75.310358,41.949012],[-75.30123299999998,41.9489],[-75.30159299999991,41.95281100000008],[-75.29371299999998,41.954593],[-75.289383,41.942890999999996],[-75.27909399999993,41.93891699999936],[-75.277243,41.933598],[-75.27655200000072,41.922208000007736],[-75.267562,41.907053999999974],[-75.26777299999998,41.901971000000195],[-75.272778,41.89711200000003],[-75.271293,41.887358000000056],[-75.26062299999998,41.88378300000001],[-75.257564,41.87710800000002],[-75.263249,41.87176500000002],[-75.26280199999998,41.866213],[-75.25782500000018,41.862154000000125],[-75.25119699999432,41.86204000000172],[-75.24334499999999,41.866875],[-75.238743,41.865698999999985],[-75.23161199999998,41.859459000000015],[-75.22373399999998,41.85745600000001],[-75.22012500000024,41.8605339999998],[-75.2149699999999,41.86744900000006],[-75.204002,41.869867],[-75.19783599999998,41.868807000000004],[-75.191441,41.865063000000006],[-75.19020299999964,41.86245399999968],[-75.18525400000009,41.859930000000034],[-75.182533,41.86184800000003],[-75.17913399999999,41.86993499999999],[-75.17663300000073,41.872370999999276],[-75.170565,41.871608],[-75.16805599310572,41.86705192434736],[-75.168406,41.85814600000003],[-75.16494299999998,41.852261000000006],[-75.15963800000009,41.849092000000056],[-75.15482899999947,41.84829200000009],[-75.140241,41.852078],[-75.13166,41.845449],[-75.11878899999999,41.845819000000006],[-75.11439899999995,41.84358299999991],[-75.11344100000001,41.83629799999986],[-75.114998,41.830300000000015],[-75.11333399999998,41.82278200000001],[-75.10002399999998,41.81834700000001],[-75.09353699999998,41.813375],[-75.08578899999998,41.81162600000001],[-75.07981799999999,41.81481500000001],[-75.07217199999998,41.81373200000001],[-75.072176,41.808318],[-75.07688899999991,41.79850900000011],[-75.08141499999965,41.7964830000001],[-75.08690799999944,41.7974489999999],[-75.092876,41.796386],[-75.10232900000008,41.786502999999655],[-75.10463999999999,41.77420300000006],[-75.09997499999999,41.76890100000003],[-75.09280999999999,41.76836099999999],[-75.07594199999998,41.771518],[-75.072664,41.768807],[-75.06075899999998,41.76463800000001],[-75.05343099999999,41.75253799999999],[-75.05280800000004,41.74472499999974],[-75.054818,41.735168000000016],[-75.05183100000009,41.7199210000013],[-75.04969900000017,41.7150930000006],[-75.0522260000004,41.71139600000008],[-75.061174,41.71293500000001],[-75.06663,41.712588000000025],[-75.06883,41.708161000000025],[-75.06727799999999,41.705434000000004],[-75.05982899999753,41.69971599999678],[-75.052736,41.68839300000001],[-75.051234,41.682439],[-75.05265299999981,41.678436000000204],[-75.058765,41.674412000000025],[-75.05843,41.66965300000002],[-75.053991,41.668194000000014],[-75.04991999999999,41.66255599999998],[-75.048683,41.656317000000044],[-75.049281,41.64186200000004],[-75.04819899999983,41.63201099999969],[-75.0435620000017,41.62364000000307],[-75.044224,41.61797800000006],[-75.048385,41.61598600000003],[-75.051856,41.61815700000003],[-75.06009799998662,41.61748200000413],[-75.06167499999997,41.61546799999998],[-75.05972500000011,41.610800999999945],[-75.06271599999991,41.60963900000006],[-75.070465,41.60984000000002],[-75.07461299999942,41.60571099999953],[-75.066955,41.59942800000002],[-75.06001199977618,41.59081299988455],[-75.05285799999999,41.58777200000003],[-75.04676,41.58325800000002],[-75.04358099999816,41.57387299999784],[-75.04049,41.56968800000002],[-75.03316499999725,41.56509299999916],[-75.02734299999999,41.563541],[-75.018524,41.55180200000001],[-75.016328,41.546500999999985],[-75.01762599999982,41.54273400000015],[-75.02479799999156,41.53980100000841],[-75.02301799999998,41.53314700000002],[-75.016616,41.53211000000001],[-75.00955200000143,41.5284610000008],[-75.0038500000002,41.52405200000017],[-75.00095077785105,41.51760869147521],[-75.003706,41.51111799999937],[-74.99961199999998,41.50740000000002],[-74.987645,41.508737999999994],[-74.98437199999998,41.50661100000002],[-74.982385,41.50098100000003],[-74.9824629999994,41.496467000004024],[-74.985595,41.48586300000002],[-74.981652,41.47994500000001],[-74.96650799999867,41.47688399999991],[-74.95701000000068,41.476511999999936],[-74.94808000000104,41.48062499999951],[-74.94563399999998,41.483213],[-74.93258499999999,41.48232299999999],[-74.926835,41.47832700000002],[-74.91252105939304,41.475606223355406],[-74.90918099999998,41.47243599999996],[-74.90688700000008,41.46113100000023],[-74.89506899999998,41.45819000000001],[-74.89035799999999,41.455324],[-74.88907499999999,41.45124500000012],[-74.895474,41.44512800000001],[-74.896173,41.44022900000002],[-74.890175,41.43817800000003],[-74.880174,41.439648000000005],[-74.86468799999999,41.44399300000003],[-74.85857799999998,41.444427000000005],[-74.848602,41.440179],[-74.83691500000026,41.43162500000018],[-74.832163,41.43055500000003],[-74.82603099999997,41.43173600000006],[-74.82288,41.436792],[-74.81799499999998,41.440504999999995],[-74.81212299999999,41.442982],[-74.80565499999999,41.442101],[-74.80122499999999,41.43810000000001],[-74.800095,41.432660999999996],[-74.79649899993777,41.425392999920305],[-74.79385599999948,41.42267099999984],[-74.78751700000163,41.42176299999992],[-74.77802899999999,41.42510400000001],[-74.77065,41.426230000000004],[-74.76367580936787,41.42360852182911],[-74.757926,41.423437000000014],[-74.75067999999999,41.427983999999995],[-74.740932,41.43116000000001],[-74.73668871722069,41.42922857353302],[-74.734732,41.4227],[-74.73868499999976,41.413463000000505],[-74.741086,41.41141299999999],[-74.740963,41.40512000000001],[-74.73610300002335,41.39839800002662],[-74.73038499999998,41.395660000000014],[-74.72089200003172,41.39469000000216],[-74.71341199999999,41.389814000000015],[-74.70845899999998,41.378902],[-74.69496799999999,41.37043100000001],[-74.69112899999999,41.367324],[-74.689767,41.361558],[-74.700595,41.354553000000045],[-74.708514,41.352734000000034],[-74.72092300000018,41.347383999999956],[-74.73037299999983,41.345983000000025],[-74.73562199942803,41.34651799994173],[-74.753931,41.346135000000025],[-74.760327,41.34032800000002],[-74.7635,41.33157000000001],[-74.771588,41.325079],[-74.785058,41.32392600000003],[-74.792116,41.32246500000002],[-74.795797,41.319314],[-74.79237699999999,41.314088000000005],[-74.79255800000021,41.3106279999999],[-74.804482,41.30453300000002],[-74.81203300011256,41.29815799993843],[-74.821884,41.293838000000015],[-74.830057,41.28720000000002],[-74.8340702648652,41.28110809511295],[-74.838361,41.27729400000001],[-74.841137,41.27098000000002],[-74.846319,41.26307700000004],[-74.84503100000006,41.258054999999764],[-74.84898799999986,41.251192000000145],[-74.85715200000006,41.2489749999999],[-74.861678,41.241575000000026],[-74.862049,41.237609],[-74.866182,41.23213200000002],[-74.86683900000021,41.22686400000034],[-74.85932300000005,41.22050699999976],[-74.86039799999818,41.21745400000384],[-74.86728699999998,41.20875399999999],[-74.87403400000096,41.19854299999817],[-74.87827500000097,41.19048899998654],[-74.878492,41.18750400000004],[-74.88213900000018,41.180835999999815],[-74.88942399999947,41.17360000000051],[-74.899701,41.16618100000004],[-74.9052559999999,41.155668000000134],[-74.92316899999993,41.13814600000013],[-74.93114100000109,41.13338699999966],[-74.94506699999998,41.129052],[-74.94791200000029,41.123559999999834],[-74.96429399999928,41.1142370000004],[-74.972917,41.113327000000034],[-74.982212,41.108245000000004],[-74.99169,41.092457000000024],[-74.99101300000684,41.08857800000473],[-74.984782,41.088544999999996],[-74.97529799999947,41.09407300000024],[-74.96943399999999,41.096074000000016],[-74.966759,41.09342500000002],[-74.968389,41.087796999999995],[-74.970987,41.08529300000002],[-74.9825900000156,41.07917199999803],[-74.989332,41.07831900000003],[-74.99961699999967,41.07394300000016],[-75.00637599999989,41.067546000000114],[-75.012873,41.06651600000002],[-75.015867,41.058210000000024],[-75.0191859999966,41.0529680000044],[-75.025729,41.046498000000035],[-75.02577700000303,41.039805999999146],[-75.03449600000134,41.03675499999892],[-75.04350062636784,41.03050913382868],[-75.153417,41.05677600000001],[-75.155345,41.05227200000004],[-75.150514,41.043290000000006],[-75.139571,41.03793100000003],[-75.13993,41.03480700000003],[-75.145587,41.032435000000035],[-75.163088,41.028913000000045],[-75.172466,41.02394400000003],[-75.176111,41.02844300000002],[-75.170457,41.03201800000003],[-75.1718,41.03386200000001],[-75.18296,41.03069700000003],[-75.18527,41.03367700000002],[-75.192922,41.06610800000001],[-75.223483,41.073358],[-75.27512,41.006851000000005],[-75.31456,40.97629100000003],[-75.338451,40.95607100000002],[-75.355397,40.94248700000002],[-75.336805,40.91784000000001],[-75.42713,40.89712100000001],[-75.517953,40.87819200000002],[-75.526413,40.88983600000002],[-75.560727,40.93424900000002],[-75.57459,40.95132300000003],[-75.546245,40.96460300000001],[-75.49599,40.98718100000001],[-75.508497,40.99817700000002],[-75.561947,41.04952300000002],[-75.569574,41.049963000000034],[-75.571186,41.05930400000003],[-75.574887,41.062691000000015],[-75.576484,41.067573000000024],[-75.580511,41.06776400000002],[-75.582965,41.07263500000002],[-75.587937,41.076424000000024],[-75.59602,41.08067700000003],[-75.600817,41.08448100000003],[-75.606066,41.08562400000002],[-75.604894,41.09414300000003],[-75.612694,41.09423700000002],[-75.615948,41.10475900000003],[-75.620037,41.108971000000025],[-75.62613,41.11059700000002],[-75.628242,41.10690100000002],[-75.632978,41.108534000000034],[-75.634322,41.11215000000002],[-75.637587,41.11339800000002],[-75.643969,41.11277300000002],[-75.646705,41.11419700000004],[-75.645745,41.11813400000002],[-75.649637,41.12234400000002],[-75.654614,41.117214000000025],[-75.657903,41.11853200000004],[-75.656303,41.12331500000001],[-75.661136,41.12917900000003],[-75.664933,41.13026700000003],[-75.667322,41.13402300000003],[-75.679255,41.13320600000001],[-75.685203,41.13013700000001],[-75.691311,41.131487000000035],[-75.700226,41.12768200000004],[-75.702814,41.122619000000014],[-75.709668,41.12198600000005],[-75.707895,41.11629800000002],[-75.716485,41.118201000000035],[-75.723654,41.10943400000003],[-75.728834,41.10799200000004],[-75.732499,41.10296800000003],[-75.740835,41.10222400000004],[-75.747369,41.10392900000003],[-75.754363,41.102305000000015],[-75.752843,41.097230000000025],[-75.755023,41.094063000000034],[-75.76147,41.09157300000002],[-75.767516,41.092168000000015],[-75.765416,41.08499600000002],[-75.771306,41.07781600000002],[-75.769949,41.06362300000003],[-75.770196,41.050219000000006],[-75.765472,41.04398600000002],[-75.761724,41.04186200000002],[-75.756397,41.031581000000024],[-75.7425,41.03171200000003],[-75.739786,41.029736000000014],[-75.738035,41.02433900000001],[-75.738333,41.016954000000005],[-75.73193,41.00822000000002],[-75.764672,40.99671000000002],[-75.801702,40.98291700000001],[-75.819575,40.982069000000024],[-75.849625,40.97160500000001],[-75.848024,40.96635700000002],[-75.868858,40.95934900000004],[-75.889227,40.95176500000003],[-75.949742,40.930213000000016],[-75.985994,40.91743900000002],[-75.988276,40.92309500000004],[-75.992794,40.92690200000003],[-75.98993,40.932503000000025],[-75.99685,40.95775100000004],[-76.003896,40.95663600000003],[-75.997824,40.962253000000025],[-75.999077,40.965504000000045],[-76.011402,40.963584000000026],[-76.013598,40.97141300000001],[-76.032904,40.96835100000001],[-76.036118,40.97853200000005],[-76.015198,40.98193900000002],[-76.021679,40.98863700000003],[-76.04605,41.020511000000035],[-76.046106,41.02566600000001],[-76.057567,41.02149200000004],[-76.061478,41.038598000000036],[-76.058801,41.05726400000004],[-76.04654,41.058781000000025],[-76.03994,41.05048200000002],[-76.027335,41.05508800000001],[-75.927643,41.08850400000002],[-75.956606,41.110168000000016],[-75.967339,41.13322700000002],[-75.976596,41.14772200000001],[-75.979906,41.146540000000016],[-75.991291,41.166088],[-75.986907,41.16669600000003],[-75.996797,41.18500400000003],[-76.009018,41.18644500000002],[-76.011853,41.18852500000002],[-76.012492,41.19523900000001],[-76.014386,41.19829500000002],[-76.024345,41.22038200000003],[-76.041283,41.21110500000004],[-76.076725,41.24997400000004],[-76.031019,41.27549200000002],[-76.029266,41.27670300000002],[-75.970791,41.309009000000046],[-75.977792,41.31605800000002],[-75.969719,41.31871700000001],[-75.952478,41.32960000000002],[-75.948885,41.33066100000001],[-75.954392,41.33539700000002],[-75.95699,41.33406400000002],[-75.965743,41.341174000000045],[-75.974992,41.33630100000003],[-75.984358,41.34571600000004],[-75.987789,41.34369000000003],[-75.984867,41.340895000000025],[-75.995544,41.33405700000002],[-76.009684,41.347944000000005],[-76.025545,41.383768000000025],[-76.00507,41.38455100000002],[-75.98327,41.391063],[-75.968839,41.394032000000024],[-75.929144,41.403473000000034],[-75.901405,41.40956300000002],[-75.839287,41.424633000000014],[-75.835225,41.426589000000014],[-75.825388,41.43817200000002],[-75.786848,41.486946000000025],[-75.772134,41.505869000000004],[-75.802502,41.523578000000036],[-75.791478,41.53881300000003],[-75.769564,41.56823000000002],[-75.774471,41.57418700000003],[-75.749835,41.60709000000003],[-75.729174,41.635791000000005],[-75.723014,41.63456200000003],[-75.719006,41.63575800000003],[-75.719887,41.64226300000002],[-75.652187,41.64219600000003],[-75.576761,41.64182600000002],[-75.554761,41.641451000000025],[-75.53131,41.641660000000016],[-75.50201,41.64144200000003],[-75.462238,41.64158300000001],[-75.470141,41.772106000000015],[-75.474466,41.85195500000004],[-75.476742,41.87754600000001],[-75.478467,41.91080000000003],[-75.480673,41.95835100000002],[-75.48314857372002,41.99920665856382]]]},"properties":{"district":8}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.091764,40.27769200000002],[-76.10683495202687,40.28729082075922],[-76.12191018476065,40.2968876856078],[-76.13698969999841,40.30648259332571],[-76.151475,40.31569500000003],[-76.15217260314203,40.31543017653999],[-76.16975467155673,40.30875361820434],[-76.175737,40.306481000000026],[-76.18728541502122,40.30200192364786],[-76.20478796499823,40.29521020228873],[-76.22228699626892,40.28841584411535],[-76.23978250902148,40.28161885029154],[-76.25727450344566,40.274819221980984],[-76.261063,40.273346000000025],[-76.27473536333191,40.26797583492171],[-76.29218505137356,40.2611184537655],[-76.307578,40.25506600000001],[-76.30985454613553,40.25476780773272],[-76.32919592438401,40.25223248136327],[-76.336204,40.25131300000004],[-76.34856084671867,40.24980898298442],[-76.36793860298192,40.24744763284855],[-76.368198,40.24741600000002],[-76.38725505244118,40.24481308493218],[-76.40656918299442,40.24217166300265],[-76.4258818055319,40.2395270307658],[-76.43541,40.23822100000004],[-76.44458158860705,40.23529666004989],[-76.46268328472921,40.229522109856944],[-76.470357,40.227073000000004],[-76.48085485469397,40.223881206168834],[-76.49907712220342,40.21833789626214],[-76.502044,40.21743500000002],[-76.51716599111454,40.2125493651664],[-76.53522639279224,40.20671088233378],[-76.55328368278747,40.20086959329405],[-76.566339,40.19664400000002],[-76.569532,40.196073000000034],[-76.5701531144474,40.19764530526564],[-76.57581876789207,40.21198396884596],[-76.579143,40.22039400000001],[-76.58136545968756,40.226349541408645],[-76.58674231078336,40.24075342211991],[-76.588471,40.24538300000002],[-76.591336,40.25208700000001],[-76.59246499636647,40.25507711103812],[-76.59790037628846,40.26946869086051],[-76.60333806983338,40.28386001626717],[-76.60877807912436,40.2982510870201],[-76.611141,40.30450000000002],[-76.61447252269971,40.312583976337024],[-76.62036291871553,40.32687211822834],[-76.62625577927714,40.34115996822244],[-76.626255,40.34115800000002],[-76.63193408410596,40.35549849070753],[-76.63627,40.36644300000004],[-76.63758783526924,40.369842871230134],[-76.64315700447321,40.38420676789328],[-76.64872854931204,40.39857039728554],[-76.65430247196254,40.412933759157006],[-76.65987877460394,40.42729685325751],[-76.66545745941775,40.44165967933663],[-76.665653,40.44216300000003],[-76.67093386407115,40.45604554144364],[-76.67640881254175,40.4704319915076],[-76.67804,40.474717000000005],[-76.66692046535262,40.48096616116423],[-76.65108039717789,40.48986440627555],[-76.63523612834936,40.498760488308854],[-76.624687,40.50468100000002],[-76.61941836915291,40.50768579329229],[-76.6036575375873,40.51667143871736],[-76.589258,40.52487700000002],[-76.5878865599172,40.52564890043718],[-76.5720489139458,40.53456048806159],[-76.55620705501347,40.54346991273474],[-76.54036098169617,40.55237717320005],[-76.535414,40.555157000000015],[-76.54598213479609,40.56161248029683],[-76.56134945250241,40.57099557308005],[-76.57672107997361,40.580376629035435],[-76.58448,40.58511000000004],[-76.59200230138264,40.58984382047736],[-76.60719136074097,40.59939883906318],[-76.62238476230854,40.60895186748354],[-76.63758250788727,40.618502904497625],[-76.641433,40.620922000000014],[-76.65292513823478,40.627921041694584],[-76.66831977058034,40.6372927312224],[-76.668823,40.63759900000002],[-76.6834411461821,40.646918988282074],[-76.691889,40.65230300000002],[-76.69874720534726,40.65637443416496],[-76.701624,40.65808200000002],[-76.700158,40.663766000000024],[-76.694542,40.663064000000006],[-76.69201683688728,40.66391765666685],[-76.67398019269035,40.670012889841146],[-76.662137,40.67401300000002],[-76.6560096992287,40.67621983504476],[-76.63816855403469,40.68264290242113],[-76.637557,40.68286300000002],[-76.62049440753482,40.68932864003551],[-76.60282276196756,40.69602110268571],[-76.600068,40.69706400000001],[-76.58456882988934,40.701729439771086],[-76.572395,40.70539200000003],[-76.56735215917779,40.70868918649956],[-76.565702,40.70976800000003],[-76.572816,40.71410900000002],[-76.566382,40.71489100000002],[-76.56576787274709,40.716278885643476],[-76.564111,40.720023000000026],[-76.567437,40.72088000000002],[-76.57846679986433,40.720555292069754],[-76.581392,40.72046900000003],[-76.581931,40.72411000000002],[-76.579591,40.72719700000002],[-76.57248134445935,40.728463657346765],[-76.572311,40.72849400000001],[-76.566808,40.73120300000001],[-76.57974466885199,40.7323672109907],[-76.585359,40.73287200000001],[-76.58132666373002,40.74311939489755],[-76.5779,40.751825000000025],[-76.5745619307062,40.75714783021154],[-76.574146,40.757811000000004],[-76.5929063164127,40.7568485627789],[-76.601066,40.75642900000003],[-76.603715,40.76031600000004],[-76.6095189478867,40.75999498254119],[-76.611181,40.75990300000002],[-76.61719225275073,40.772840358379725],[-76.62375943167103,40.786968062722536],[-76.629278,40.79883500000002],[-76.62626085210363,40.79956041578468],[-76.60740257229493,40.80409239044611],[-76.605535,40.804541],[-76.58836759880208,40.80817966625265],[-76.583367,40.80923900000002],[-76.584961,40.81299000000003],[-76.58354539767436,40.82001551005208],[-76.58332,40.82113400000002],[-76.585785,40.827063000000024],[-76.584298,40.833765000000014],[-76.58497296861694,40.83442517141458],[-76.588074,40.83745800000001],[-76.58415,40.83957200000002],[-76.58336323365114,40.84704679334029],[-76.583335,40.84731500000003],[-76.587868,40.85137000000004],[-76.58566538689598,40.86061904717457],[-76.5847,40.86467200000001],[-76.586364,40.86816400000001],[-76.58537279989318,40.87527193704941],[-76.584728,40.879895000000026],[-76.57115388648722,40.87873449800487],[-76.571113,40.87873100000002],[-76.55228535739721,40.883286673250865],[-76.551792,40.88340600000003],[-76.557378,40.88889400000003],[-76.560143,40.89524800000001],[-76.56018360099833,40.89621950508352],[-76.560294,40.898861000000025],[-76.564795,40.90423300000001],[-76.56651838535561,40.91006524443465],[-76.568111,40.91545400000002],[-76.565572,40.92114600000002],[-76.5626950419897,40.92382393747851],[-76.56167,40.92477800000003],[-76.55857,40.93049600000001],[-76.55713375688465,40.93798722845473],[-76.557013,40.938617000000036],[-76.563404,40.93958800000004],[-76.572515,40.93930800000002],[-76.57585527022597,40.93946864992903],[-76.589565,40.94012700000002],[-76.59550025870585,40.9411566263753],[-76.601436,40.94218600000001],[-76.61107777315318,40.94957815231937],[-76.62499778446009,40.960246007829724],[-76.62508,40.96030900000003],[-76.635059,40.964378000000025],[-76.64343497586057,40.964415585082534],[-76.645329,40.964424000000015],[-76.652451,40.96164300000001],[-76.65966034597413,40.9667910587786],[-76.661348,40.96799600000003],[-76.674862,40.96550200000002],[-76.67844536265187,40.965235416685786],[-76.682119,40.96496200000003],[-76.687145,40.96275300000001],[-76.69720858477243,40.96100195028296],[-76.71653437571804,40.95763657519427],[-76.734826,40.95444800000001],[-76.73588534556978,40.954452687970296],[-76.743018,40.954484000000036],[-76.75532152731837,40.95211069614399],[-76.767376,40.94978400000003],[-76.77475526852625,40.94950658752784],[-76.775701,40.94947100000003],[-76.79261,40.94664700000004],[-76.79282291603873,40.94781824743386],[-76.793245,40.95014000000002],[-76.790048,40.95162500000003],[-76.7905,40.956708000000006],[-76.785447,40.95890700000001],[-76.78549917141854,40.95920482310012],[-76.786543,40.965163000000025],[-76.784907,40.96692600000004],[-76.7828243575071,40.97355661800311],[-76.77824554068424,40.98812962013586],[-76.773712,41.00255200000003],[-76.77376745810656,41.00270084580508],[-76.775786,41.00811800000003],[-76.773768,41.014356000000014],[-76.77190417853167,41.016925227330184],[-76.770597,41.01872700000001],[-76.761963,41.02593200000001],[-76.7639299142547,41.028778727551334],[-76.764505,41.029611000000024],[-76.759677,41.03870600000002],[-76.75855867507317,41.04286303920907],[-76.756503,41.05050300000002],[-76.7522333614667,41.05692249645947],[-76.746505,41.06553300000002],[-76.7442892944265,41.07060946948503],[-76.73807792489039,41.0848361201761],[-76.734891,41.09213300000002],[-76.73445692433766,41.09942096106401],[-76.734196,41.10380100000003],[-76.735342,41.11009800000001],[-76.73514833716608,41.11433245928468],[-76.734946,41.118756000000026],[-76.733514,41.12768700000002],[-76.73473402171702,41.12894174173795],[-76.735835,41.130074000000015],[-76.733883,41.13328700000002],[-76.735804,41.137833000000036],[-76.73442427165668,41.142999338170995],[-76.731689,41.15323900000004],[-76.73149842989977,41.157769319794994],[-76.731275,41.16308000000002],[-76.732672,41.172040000000045],[-76.73182109313029,41.17198942952768],[-76.729997,41.17188100000003],[-76.71357744214937,41.16620766277163],[-76.69549828787103,41.159957062398426],[-76.678776,41.15417200000005],[-76.67728879059575,41.154234560297745],[-76.65742769589248,41.155068183563486],[-76.63756609707102,41.15589839536016],[-76.61770399617123,41.15672519550156],[-76.59784139523353,41.15754858380227],[-76.592607,41.15776500000001],[-76.58254642944442,41.16578389814307],[-76.56888203114416,41.17667072659738],[-76.55521309023112,41.18755593960167],[-76.5415396041274,41.19843953599924],[-76.52786157025422,41.2093215146325],[-76.521652,41.21426000000001],[-76.51463721425891,41.22050999109522],[-76.50178916979256,41.231953063171204],[-76.499652,41.233856000000024],[-76.48811756516346,41.24283828035013],[-76.478811,41.25008300000002],[-76.47440465382293,41.25370041756098],[-76.4609472321719,41.26474485281257],[-76.44748525782374,41.27578772053392],[-76.43401872811413,41.28682901958493],[-76.425944,41.293447000000015],[-76.4205905681501,41.29789810707969],[-76.407934,41.30841800000002],[-76.40687244132032,41.30842630885231],[-76.38693470039077,41.30858055008957],[-76.374368,41.308676000000006],[-76.3670002370368,41.30885250494864],[-76.34707129216046,41.30932757166605],[-76.32714205790283,41.309799201155606],[-76.310133,41.31019900000003],[-76.30928504903012,41.31229931019213],[-76.3034970564685,41.326631948204785],[-76.29770651700571,41.340964296139774],[-76.29191342828679,41.355296353723006],[-76.28611778795423,41.36962812068007],[-76.284768,41.37296500000003],[-76.2831,41.37651700000001],[-76.27281354588264,41.376802515051914],[-76.25286725268155,41.377353535260156],[-76.23292062256887,41.37790111119602],[-76.21297365764507,41.37844524273517],[-76.19302636001095,41.37898592975398],[-76.17307873176759,41.37952317212968],[-76.15313077501641,41.38005696974021],[-76.141824,41.38035800000002],[-76.13318258324576,41.3805892558502],[-76.11323418478496,41.3811206267184],[-76.09328546138744,41.38164855253164],[-76.07333641515554,41.382173033169984],[-76.05338704819184,41.382694068514276],[-76.052506,41.382717000000014],[-76.03345167771953,41.38346043569082],[-76.025545,41.383768000000025],[-76.02174642721972,41.37519225113948],[-76.01545311979793,41.36097907644771],[-76.009684,41.347944000000005],[-76.00867931691643,41.34695754576227],[-75.9965638068485,41.335058816041304],[-75.995544,41.33405700000002],[-75.984867,41.340895000000025],[-75.98748179633262,41.34339616320511],[-75.987789,41.34369000000003],[-75.984358,41.34571600000004],[-75.9753302779008,41.33664110827003],[-75.974992,41.33630100000003],[-75.965743,41.341174000000045],[-75.96025583568077,41.336717074324206],[-75.95699,41.33406400000002],[-75.954392,41.33539700000002],[-75.948885,41.33066100000001],[-75.9522494079727,41.329667506762604],[-75.952478,41.32960000000002],[-75.96755719608878,41.3200819313274],[-75.969719,41.31871700000001],[-75.977792,41.31605800000002],[-75.97282792104511,41.31106008750858],[-75.970791,41.309009000000046],[-75.98411198329099,41.30165490048936],[-76.00017383826442,41.292783402415836],[-76.01623132468451,41.28390967244555],[-76.029266,41.27670300000002],[-76.031019,41.27549200000002],[-76.032116245174,41.274879845165906],[-76.04811548296773,41.265951356838485],[-76.06411034543075,41.2570206542567],[-76.076725,41.24997400000004],[-76.07434564231427,41.24736636182225],[-76.06307901005665,41.23501529368334],[-76.05181663478342,41.22266312777765],[-76.041283,41.21110500000004],[-76.0402471405987,41.21167249050282],[-76.024345,41.22038200000003],[-76.02426790130455,41.22021107162198],[-76.01787182247482,41.20602762648503],[-76.014386,41.19829500000002],[-76.012492,41.19523900000001],[-76.01216541243251,41.19180770312457],[-76.011853,41.18852500000002],[-76.009018,41.18644500000002],[-75.99758839706811,41.185097356085365],[-75.996797,41.18500400000003],[-75.98960322781161,41.171688255212416],[-75.986907,41.16669600000003],[-75.991291,41.166088],[-75.98796600118807,41.16038031132217],[-75.97997800502081,41.146663672498484],[-75.979906,41.146540000000016],[-75.976596,41.14772200000001],[-75.96964107416282,41.13683235235903],[-75.967339,41.13322700000002],[-75.96251664278462,41.12286867549888],[-75.956606,41.110168000000016],[-75.9551752188716,41.109098297510585],[-75.94106727616588,41.098547887048994],[-75.927643,41.08850400000002],[-75.92851773042517,41.08821131821816],[-75.94667848898399,41.08213270748401],[-75.96483588763414,41.076051245988005],[-75.98298992614265,41.06996693486836],[-76.00114060427842,41.06387977526324],[-76.01928792181222,41.0577897683108],[-76.027335,41.05508800000001],[-76.03728182048181,41.051453494785164],[-76.03994,41.05048200000002],[-76.04654,41.058781000000025],[-76.05056136468569,41.05828360502519],[-76.058801,41.05726400000004],[-76.06003898660809,41.0486331768193],[-76.061478,41.038598000000036],[-76.06037747433281,41.03378541365532],[-76.057567,41.02149200000004],[-76.05458001536127,41.02257999509536],[-76.046106,41.02566600000001],[-76.04605,41.020511000000035],[-76.04424568926564,41.01815243613462],[-76.03432460671023,41.005180247152126],[-76.02440742942248,40.99220720789675],[-76.021679,40.98863700000003],[-76.015198,40.98193900000002],[-76.018514516121,40.981399152838875],[-76.036118,40.97853200000005],[-76.03569354508276,40.977187637746155],[-76.032904,40.96835100000001],[-76.02526593015764,40.96956284393732],[-76.013598,40.97141300000001],[-76.01195826976198,40.965567347196355],[-76.011402,40.963584000000026],[-75.999077,40.965504000000045],[-75.997824,40.962253000000025],[-75.99787537098894,40.962205483796915],[-76.003896,40.95663600000003],[-75.99685,40.95775100000004],[-75.99621879310418,40.95544882422098],[-75.99219865801972,40.94078249613598],[-75.98993,40.932503000000025],[-75.992794,40.92690200000003],[-75.99233636955249,40.92651641508231],[-75.988276,40.92309500000004],[-75.985994,40.91743900000002],[-75.98063459045629,40.91932850405116],[-75.9626705214353,40.9256592875806],[-75.949742,40.930213000000016],[-75.94471422428026,40.9320053487088],[-75.92678324099178,40.93839498432114],[-75.90884878909746,40.94478184175536],[-75.89091086865443,40.951165919848215],[-75.889227,40.95176500000003],[-75.873109395594,40.957766515635065],[-75.868858,40.95934900000004],[-75.85507063025152,40.96398728844529],[-75.848024,40.96635700000002],[-75.849625,40.97160500000001],[-75.84509460449655,40.973183284720086],[-75.82708050449935,40.97945647800564],[-75.819575,40.982069000000024],[-75.80802304023337,40.98261741073445],[-75.801702,40.98291700000001],[-75.78959033324938,40.98743031420329],[-75.77179624643995,40.99405771683546],[-75.764672,40.99671000000002],[-75.75388495653795,41.00050350427534],[-75.73589433901907,41.00682709793258],[-75.73193,41.00822000000002],[-75.738333,41.016954000000005],[-75.73826459615059,41.01864932244628],[-75.738035,41.02433900000001],[-75.739786,41.029736000000014],[-75.7425,41.03171200000003],[-75.7436709405331,41.03170102655214],[-75.756397,41.031581000000024],[-75.75899156306109,41.03658888493437],[-75.761724,41.04186200000002],[-75.765472,41.04398600000002],[-75.76927511611227,41.04900406349175],[-75.770196,41.050219000000006],[-75.769949,41.06362300000003],[-75.76996545994157,41.06379519300134],[-75.771306,41.07781600000002],[-75.77066404352982,41.0785986454859],[-75.765416,41.08499600000002],[-75.767516,41.092168000000015],[-75.76736974178756,41.09215361026871],[-75.76147,41.09157300000002],[-75.755023,41.094063000000034],[-75.752843,41.097230000000025],[-75.75327122992876,41.09865986222206],[-75.754363,41.102305000000015],[-75.747369,41.10392900000003],[-75.740835,41.10222400000004],[-75.740155784591,41.102284644066245],[-75.732499,41.10296800000003],[-75.728834,41.10799200000004],[-75.72455833698707,41.10918227341552],[-75.723654,41.10943400000003],[-75.716485,41.118201000000035],[-75.71145001909777,41.11708565786318],[-75.707895,41.11629800000002],[-75.709668,41.12198600000005],[-75.702814,41.122619000000014],[-75.70226969103585,41.12368392142253],[-75.700226,41.12768200000004],[-75.691311,41.131487000000035],[-75.6875209737477,41.130649366816904],[-75.685203,41.13013700000001],[-75.679255,41.13320600000001],[-75.66903745247502,41.133905627553396],[-75.667322,41.13402300000003],[-75.664933,41.13026700000003],[-75.661136,41.12917900000003],[-75.65661588617697,41.123694670483566],[-75.656303,41.12331500000001],[-75.657903,41.11853200000004],[-75.654614,41.117214000000025],[-75.649637,41.12234400000002],[-75.6493052255034,41.12198514367964],[-75.645745,41.11813400000002],[-75.646705,41.11419700000004],[-75.643969,41.11277300000002],[-75.63899887376853,41.11325976418781],[-75.637587,41.11339800000002],[-75.634322,41.11215000000002],[-75.632978,41.108534000000034],[-75.628242,41.10690100000002],[-75.62642244705314,41.11008524477661],[-75.62613,41.11059700000002],[-75.620037,41.108971000000025],[-75.615948,41.10475900000003],[-75.61464332453673,41.10054067116555],[-75.612694,41.09423700000002],[-75.604894,41.09414300000003],[-75.60525333762382,41.09153129306945],[-75.606066,41.08562400000002],[-75.600817,41.08448100000003],[-75.59631982082809,41.080914775334634],[-75.59602,41.08067700000003],[-75.587937,41.076424000000024],[-75.582965,41.07263500000002],[-75.58207525254961,41.07086900961645],[-75.580511,41.06776400000002],[-75.576484,41.067573000000024],[-75.574887,41.062691000000015],[-75.57186316211822,41.05992374529924],[-75.571186,41.05930400000003],[-75.569574,41.049963000000034],[-75.56328769544561,41.04960038128528],[-75.561947,41.04952300000002],[-75.55050844833575,41.03854352329496],[-75.53824345797705,41.026765448543095],[-75.52598285462142,41.014986074112436],[-75.5137266353631,41.003205401007044],[-75.508497,40.99817700000002],[-75.5010876030436,40.9916633556996],[-75.49599,40.98718100000001],[-75.50631661961688,40.98254461542763],[-75.5233659348571,40.974886471004886],[-75.54041129153758,40.96722581550816],[-75.546245,40.96460300000001],[-75.55733044164273,40.95941078961547],[-75.57418194844612,40.951514264606104],[-75.57459,40.95132300000003],[-75.56447401891789,40.93886495184562],[-75.560727,40.93424900000002],[-75.55434326117407,40.925991741402726],[-75.54434798731604,40.913058169669966],[-75.53435662350407,40.90012373529174],[-75.526413,40.88983600000002],[-75.52446064296213,40.88714927368575],[-75.517953,40.87819200000002],[-75.51462150629952,40.87415582951905],[-75.513434,40.872717000000016],[-75.50471921604786,40.861186164891464],[-75.49489518795833,40.84818204781563],[-75.493581,40.84644200000001],[-75.48586003858632,40.83485802000036],[-75.482577,40.82993100000003],[-75.47775740229146,40.821202726405055],[-75.474193,40.81474600000003],[-75.48438512046454,40.812702836666304],[-75.485272,40.812525000000036],[-75.50378070580723,40.80973921354671],[-75.508018,40.80910100000003],[-75.519045,40.80881300000002],[-75.52329956342948,40.807867953992364],[-75.528444,40.806725],[-75.541549,40.80681500000002],[-75.54281198415644,40.806523706307544],[-75.551359,40.80455200000003],[-75.557532,40.80118800000003],[-75.56077661823869,40.80115243360664],[-75.565091,40.80110500000002],[-75.577488,40.79941400000002],[-75.5801094175459,40.79852239269007],[-75.595453,40.79330200000002],[-75.59757826375439,40.79174004197267],[-75.602608,40.788043000000044],[-75.609303,40.78746100000002],[-75.61516378919431,40.78637871553223],[-75.6343804766739,40.78282773229313],[-75.65359510853379,40.7792735616632],[-75.672771,40.77572300000002],[-75.67280681473729,40.775713928328194],[-75.69156208509452,40.770961462081885],[-75.694621,40.770186000000024],[-75.702418,40.76224000000001],[-75.70562506549713,40.761220690496245],[-75.72385683324529,40.75542376185379],[-75.7286,40.75391500000002],[-75.7379496928067,40.74539406300101],[-75.739309,40.74415500000002],[-75.743585,40.74346200000004],[-75.744863,40.74030900000002],[-75.7528433639,40.737297900339364],[-75.757761,40.73544200000003],[-75.765947,40.730926000000025],[-75.77004322463671,40.730440580611315],[-75.77769,40.729534000000015],[-75.779682,40.72502200000003],[-75.78455220365002,40.7227117341723],[-75.796518,40.71703400000001],[-75.80028277446095,40.71384717760399],[-75.807789,40.707492000000016],[-75.81534039160651,40.704525870381886],[-75.83288008051206,40.6976334943621],[-75.844663,40.69300100000003],[-75.85114207013731,40.69312307210729],[-75.854809,40.69319200000001],[-75.86876793034797,40.687132347993355],[-75.88590652171948,40.679688579771714],[-75.891473,40.67727000000003],[-75.8813558888172,40.67068381380058],[-75.86637479727456,40.66092718944265],[-75.85139808798844,40.65116862952516],[-75.849513,40.64994000000002],[-75.8365987516672,40.641257715825645],[-75.825604,40.63386300000003],[-75.82172060761539,40.63141893897166],[-75.8065320061434,40.621856836675946],[-75.79134775307807,40.6122927452323],[-75.778921,40.60446200000001],[-75.777416,40.603763000000015],[-75.77601621273419,40.602887011992465],[-75.76079617322604,40.593359725747284],[-75.74558047089813,40.583830442415554],[-75.738038,40.57910500000004],[-75.73041059233374,40.57426122501151],[-75.71528585392127,40.564652721708654],[-75.70016545785306,40.55504224656227],[-75.68504940229896,40.54542980080768],[-75.66993768542868,40.53581538567949],[-75.66857,40.53494500000003],[-75.65484256286815,40.526187891409855],[-75.63975299685204,40.51655732772394],[-75.62466776565225,40.506924801872216],[-75.60958686743086,40.49729031508596],[-75.59451030034994,40.487653868595736],[-75.579503,40.478057000000035],[-75.57943736591766,40.47801610208988],[-75.5642077721841,40.46852388624753],[-75.54898248335337,40.45902967217593],[-75.53376149766984,40.44953346111017],[-75.529694,40.44699500000004],[-75.53723968911338,40.43764325166788],[-75.54753445560208,40.4248794460939],[-75.55782531563578,40.41211472776627],[-75.559753,40.40972300000003],[-75.562298,40.41203900000002],[-75.5723834931625,40.41701732658976],[-75.58889281142015,40.42516305358399],[-75.601219,40.431242000000026],[-75.60563705899256,40.42947851464678],[-75.62306044283895,40.42252136226916],[-75.627883,40.420595],[-75.63412181984593,40.410860827715055],[-75.634767,40.409854000000024],[-75.637749,40.41146600000002],[-75.641834,40.40724400000002],[-75.64013136084635,40.401561620454004],[-75.640112,40.401497],[-75.64865516048896,40.38808036332712],[-75.656033,40.376489000000014],[-75.65734641824889,40.37464789858148],[-75.662723,40.36711000000004],[-75.66730390434779,40.36174751473003],[-75.67802409035738,40.34919423934535],[-75.683971,40.342228],[-75.67723576512208,40.33797520520496],[-75.673774,40.33578900000004],[-75.68209503644331,40.32613603163387],[-75.69288112953328,40.31361843201701],[-75.69539,40.31070600000003],[-75.69913165982715,40.299573070645245],[-75.699629,40.29809300000003],[-75.70620353593874,40.2856134373718],[-75.710051,40.278308000000024],[-75.71274275913956,40.27150697184305],[-75.713628,40.26927000000001],[-75.71765294633025,40.2570081814329],[-75.720458,40.24846000000001],[-75.725723,40.25009700000002],[-75.7273147794054,40.25146029896042],[-75.732498,40.25589900000001],[-75.736527,40.26112300000001],[-75.7403637199955,40.26062392651526],[-75.746903,40.25977300000002],[-75.757357,40.26046000000003],[-75.75979466663753,40.260036075338334],[-75.76955,40.258339000000014],[-75.772678,40.25883500000005],[-75.77689225683278,40.2625369047653],[-75.785364,40.269977000000026],[-75.79191464745817,40.271093065155256],[-75.795478,40.27170000000003],[-75.793773,40.27999200000003],[-75.79825594337788,40.28164433455388],[-75.807916,40.285204000000014],[-75.81630916815067,40.28747525153778],[-75.822766,40.289222000000024],[-75.829953,40.29269700000002],[-75.83382842795639,40.2940738287983],[-75.849411,40.29960800000003],[-75.85135610051574,40.300741819033675],[-75.861353,40.30656800000001],[-75.864265,40.307305000000014],[-75.86646159415568,40.30984470958578],[-75.868953,40.31272500000003],[-75.863655,40.31762000000002],[-75.859322,40.31840100000001],[-75.85777968183291,40.31974449764744],[-75.853476,40.323493000000006],[-75.85498,40.328166000000024],[-75.85921332088166,40.332222983173466],[-75.859349,40.33235300000004],[-75.868031,40.33000400000003],[-75.87441760374232,40.33608309718719],[-75.87507,40.33670400000003],[-75.869093,40.34507800000002],[-75.86424012686334,40.342261796122536],[-75.861401,40.340614000000016],[-75.857128,40.346939000000035],[-75.85237,40.349612000000015],[-75.85306018035128,40.34997359258467],[-75.857921,40.35252000000003],[-75.84586590185208,40.35756810056725],[-75.84439,40.35818600000002],[-75.853356,40.36352700000002],[-75.85967879655371,40.362108302059475],[-75.864118,40.361112000000034],[-75.87880044340652,40.363554988571565],[-75.89800576025995,40.366747461228755],[-75.898635,40.36685200000002],[-75.91763639553528,40.367371063235126],[-75.93728171212497,40.367904438646306],[-75.939668,40.36796900000001],[-75.943258,40.37092100000003],[-75.949265,40.369780000000006],[-75.950572,40.366744000000025],[-75.94905296447115,40.3663520845589],[-75.941372,40.36437000000002],[-75.95099076436594,40.359502178498545],[-75.960708,40.35458300000002],[-75.966832,40.35715000000002],[-75.96637891087914,40.35782861291853],[-75.964674,40.36038200000002],[-75.968957,40.36427900000003],[-75.974474,40.364027],[-75.97495001113307,40.366821831989434],[-75.975351,40.36917600000002],[-75.984302,40.36690400000002],[-75.9910325734945,40.36864391551548],[-75.991207,40.36868900000004],[-75.994733,40.36632800000004],[-75.993209,40.36207800000001],[-75.996508,40.356524000000036],[-75.99749582147759,40.356432391883864],[-76.003612,40.355865000000016],[-76.001415,40.35063400000002],[-76.00585,40.35110400000002],[-76.00658597472265,40.3498459797811],[-76.00819,40.34710400000002],[-76.013579,40.34650500000003],[-76.014075,40.34408400000002],[-76.02078804249604,40.34243975740699],[-76.021779,40.34219700000003],[-76.022982,40.33789800000002],[-76.0296288233281,40.32952313288764],[-76.031285,40.32743600000003],[-76.034651,40.32653000000002],[-76.041108,40.32205800000002],[-76.04177599400694,40.31893330545638],[-76.042804,40.314124000000035],[-76.046141,40.30896300000001],[-76.05167924640067,40.307919239123436],[-76.055065,40.307281000000025],[-76.055464,40.30413300000002],[-76.06459687654974,40.29819158738177],[-76.068927,40.29537400000002],[-76.077071,40.28513900000004],[-76.084092,40.28024500000003],[-76.091764,40.27769200000002]]]},"properties":{"district":9}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.701624,40.65808200000002],[-76.69570989492252,40.65457141936801],[-76.691889,40.65230300000002],[-76.68985430070965,40.65100637500581],[-76.68410502910022,40.647342149893845],[-76.67835638881854,40.643677639684554],[-76.67260837976274,40.640012844446126],[-76.668823,40.63759900000002],[-76.66682373739378,40.63638220596299],[-76.66096783004868,40.63281772171227],[-76.65511254791919,40.62925294171242],[-76.64925789091177,40.62568786603228],[-76.64340385893277,40.62212249474062],[-76.641433,40.620922000000014],[-76.63759794216503,40.618512601783166],[-76.63181675920372,40.61487997046208],[-76.62603620488039,40.611247050919886],[-76.6202562790959,40.60761384322493],[-76.6144769817511,40.60398034744551],[-76.60869831274682,40.60034656364989],[-76.60292027198392,40.59671249190637],[-76.59714285936322,40.593078132283196],[-76.59136607478555,40.58944348484863],[-76.58558991815174,40.58580854967088],[-76.58448,40.58511000000004],[-76.57975563194296,40.58222801539329],[-76.57390799268343,40.57866019626522],[-76.56806097714656,40.57509208230874],[-76.56221458523872,40.57152367359247],[-76.55636881686632,40.56795497018501],[-76.55052367193572,40.564385972154916],[-76.54467915035328,40.560816679570756],[-76.53883525202536,40.55724709250108],[-76.535414,40.555157000000015],[-76.53791285372726,40.553752889815236],[-76.54394086767495,40.550365274479844],[-76.5499682717409,40.546977345893694],[-76.55599506600339,40.54358910412602],[-76.5620212505408,40.540200549245945],[-76.56804682543144,40.53681168132266],[-76.5740717907537,40.533422500425296],[-76.58009614658596,40.530033006623015],[-76.5861198930066,40.52664319998491],[-76.589258,40.52487700000002],[-76.59213057274978,40.5232403705583],[-76.5981270922472,40.51982340617206],[-76.60412300045394,40.51640613185199],[-76.61011829745071,40.51298854766707],[-76.61611298331822,40.50957065368631],[-76.62210705813716,40.506152449978714],[-76.624687,40.50468100000002],[-76.62812042260629,40.50275427229867],[-76.63414821856047,40.49937115112772],[-76.6401754065604,40.49598771681639],[-76.64620198668383,40.49260396943373],[-76.65222795900851,40.48921990904869],[-76.65825332361223,40.48583553573032],[-76.6642780805728,40.48245084954758],[-76.670302229968,40.47906585056945],[-76.67632577187565,40.47568053886489],[-76.67804,40.474717000000005],[-76.67654979125996,40.47080235464164],[-76.67446702079224,40.465330305642844],[-76.67238458966179,40.459858219267794],[-76.67030249775004,40.45438609552981],[-76.66822074493844,40.4489139344422],[-76.66613933110848,40.443441736018265],[-76.665653,40.44216300000003],[-76.66402664825138,40.43797653783131],[-76.66190467123815,40.43251344700641],[-76.65978303898392,40.42705031739197],[-76.65766175136854,40.42158714900175],[-76.65554080827192,40.41612394184956],[-76.65342020957402,40.410660695949176],[-76.65129995515488,40.40519741131436],[-76.64918004489452,40.39973408795889],[-76.6470604786731,40.39427072589653],[-76.64494125637071,40.38880732514104],[-76.64282237786762,40.38334388570617],[-76.64070384304405,40.377880407605645],[-76.63858565178032,40.37241689085325],[-76.63646780395676,40.366953335462675],[-76.63627,40.36644300000004],[-76.63431101289683,40.36149867957353],[-76.63215052341313,40.356044904452354],[-76.62999038340087,40.350591089138184],[-76.62783059273873,40.34513723364531],[-76.626255,40.34115800000002],[-76.62564883020929,40.33968857966422],[-76.62340719289301,40.3342540277572],[-76.62116591661808,40.32881943258659],[-76.61892500125985,40.32338479416766],[-76.61668444669367,40.3179501125157],[-76.614444252795,40.31251538764597],[-76.61220441943931,40.30708061957373],[-76.611141,40.30450000000002],[-76.61005394682375,40.30162535980424],[-76.60798428555754,40.29615157304766],[-76.60591495958786,40.29067774941922],[-76.60384596879778,40.28520388893207],[-76.60177731307034,40.2797299915993],[-76.59970899228865,40.274256057434016],[-76.59764100633589,40.26878208644931],[-76.59557335509525,40.26330807865829],[-76.59350603845,40.257834034074016],[-76.59143905628342,40.25235995270959],[-76.591336,40.25208700000001],[-76.5891367916282,40.246941053925724],[-76.588471,40.24538300000002],[-76.58701375631264,40.24148042012215],[-76.5849682843839,40.2360017422679],[-76.58292314342374,40.23052302841128],[-76.58087833331665,40.22504427856507],[-76.579143,40.22039400000001],[-76.57881697258254,40.21956927424406],[-76.57666119923874,40.21411545667141],[-76.5745057728595,40.20866159911395],[-76.57235069332454,40.20320770158585],[-76.57019596051364,40.19775376410124],[-76.569532,40.196073000000034],[-76.566339,40.19664400000002],[-76.5678823096438,40.19582337293751],[-76.57026,40.19455900000003],[-76.57481644091096,40.19471302064806],[-76.579051,40.19485600000002],[-76.5809155364991,40.19285134696077],[-76.582682,40.19095200000003],[-76.58700003837447,40.19027677236721],[-76.59430589280575,40.18913393292332],[-76.599865,40.18826400000003],[-76.6015531119176,40.18870192853477],[-76.606519,40.18999],[-76.60813736626213,40.1888368689383],[-76.612987,40.18538100000002],[-76.61334035521442,40.184811327079984],[-76.615948,40.18060700000003],[-76.61727916623173,40.18036952589197],[-76.623206,40.17931200000001],[-76.624301063851,40.17868296513254],[-76.627685,40.17673900000002],[-76.62924053443402,40.174582808906564],[-76.632102,40.170616000000024],[-76.63362862342326,40.170572092364004],[-76.634744,40.17054000000001],[-76.63972360729105,40.16754254942586],[-76.644103,40.16490600000001],[-76.64595715951802,40.165141718244655],[-76.653104,40.166050000000034],[-76.65322621994329,40.165919682496416],[-76.655065,40.16395900000002],[-76.65934492328883,40.16365728464265],[-76.662043,40.16346700000001],[-76.66590009258154,40.16135500411894],[-76.67195920109442,40.158036745009085],[-76.672742,40.157608000000025],[-76.670563,40.154487000000024],[-76.67232634572655,40.154029539311495],[-76.67641,40.15297000000004],[-76.67664618461802,40.150576110283026],[-76.676756,40.14946300000002],[-76.680612,40.14906300000002],[-76.68182887874958,40.15037241313397],[-76.683151,40.15179500000003],[-76.68740743625555,40.149551692225245],[-76.690135,40.14811400000003],[-76.68998471170315,40.15127623325889],[-76.689939,40.152238000000025],[-76.69199190857807,40.15670487430415],[-76.692316,40.15741000000002],[-76.695594,40.15409700000002],[-76.69570612492502,40.15330580119462],[-76.696158,40.15011700000003],[-76.69776502126216,40.14795177807371],[-76.699874,40.14511000000004],[-76.7027490019899,40.1440740247789],[-76.705696,40.14301200000001],[-76.70776450336409,40.14022277559423],[-76.710092,40.137084000000016],[-76.71068367091051,40.135044769233886],[-76.711198,40.13327200000003],[-76.71574182512475,40.131541896854934],[-76.715907,40.131479000000034],[-76.71850532411624,40.12629059310884],[-76.72116921842195,40.12097037115041],[-76.72162,40.12007000000003],[-76.7166969067495,40.117201990727786],[-76.710932,40.113843000000024],[-76.71081004526411,40.1137200402735],[-76.706844,40.10972100000003],[-76.7062107768081,40.109247055849636],[-76.70088753162729,40.1052624061157],[-76.697187,40.10249200000003],[-76.6958544878045,40.10108645498952],[-76.69148263278151,40.09647447065571],[-76.687529,40.09230300000002],[-76.68716458489196,40.09183550393878],[-76.68335084487515,40.08694252946448],[-76.680428,40.08319200000001],[-76.67979255635348,40.08195379708688],[-76.67707147964565,40.076651055040834],[-76.675504,40.073596000000016],[-76.67367746614988,40.07162686899234],[-76.671267,40.069028000000024],[-76.66896924996715,40.06723707213023],[-76.663825,40.063227000000026],[-76.66373271709176,40.06319582133161],[-76.65692337310301,40.0608949381822],[-76.653722,40.05981300000003],[-76.64989365778696,40.059088481624435],[-76.644508,40.05806900000003],[-76.64477058485595,40.056632462185064],[-76.645266,40.05392200000002],[-76.64858802695913,40.05240692408013],[-76.649831,40.05184000000003],[-76.65580430486432,40.052234280397535],[-76.656376,40.052272000000045],[-76.659448,40.04945600000002],[-76.65806398250928,40.048271904695596],[-76.655688,40.04623900000002],[-76.6555765322562,40.04327119049135],[-76.65556,40.042831000000014],[-76.66240206175601,40.04327101853628],[-76.663273,40.04332700000003],[-76.66510834289205,40.03849959691353],[-76.666777,40.03411000000003],[-76.6665344583287,40.03300033061262],[-76.666113,40.03107200000002],[-76.66387051118292,40.027747573432016],[-76.66045667464682,40.02268595165243],[-76.65704334460504,40.01762422971608],[-76.654922,40.01447800000001],[-76.65349541959169,40.01261948158522],[-76.64972612889807,40.00770835913771],[-76.649303,40.00715700000001],[-76.64473104100442,40.003508478539246],[-76.63958148169321,39.999398337467206],[-76.63443254228584,39.995287968526256],[-76.632148,39.99346400000001],[-76.63014610921726,39.99069088936759],[-76.627347,39.986813000000026],[-76.62645170814777,39.98574961991738],[-76.62242156485235,39.98096233466083],[-76.61839198625137,39.97617490985489],[-76.616092,39.973442000000006],[-76.61915324509852,39.97275369535278],[-76.6262860931835,39.97114954627784],[-76.63341860643149,39.96954496005636],[-76.637969,39.968521000000045],[-76.64055075077805,39.96910220928105],[-76.642971,39.96964700000004],[-76.64619032237762,39.96680491471774],[-76.647435,39.96570600000002],[-76.65258193023833,39.96414716543371],[-76.65949428841014,39.96205317128728],[-76.660353,39.961793000000014],[-76.65828730890298,39.957061808815716],[-76.658266,39.95701300000001],[-76.65182313136891,39.95427819415993],[-76.649062,39.95310600000003],[-76.64827517011625,39.94988464082326],[-76.647503,39.94672300000002],[-76.64664573595796,39.94433140358192],[-76.64467693566492,39.93883818487837],[-76.6427084514353,39.93334493288069],[-76.642056,39.931524000000024],[-76.63883553530125,39.928624780180726],[-76.637594,39.92750700000001],[-76.63506322657987,39.923750146800565],[-76.63165412558838,39.91868870526218],[-76.6305,39.916975000000036],[-76.62726747368744,39.914137571509755],[-76.62238075963356,39.909847522747164],[-76.620969,39.90860800000004],[-76.62346929554406,39.90503990637934],[-76.624577,39.90345900000003],[-76.62820047320089,39.90619755136358],[-76.631459,39.90866000000002],[-76.63280065622827,39.906729067390884],[-76.634489,39.90429900000003],[-76.63829831341047,39.90465000347958],[-76.6456717397347,39.90532905249124],[-76.646953,39.905447],[-76.648979,39.90714000000004],[-76.65211874225488,39.90710155849254],[-76.65954438560006,39.907010305354376],[-76.66697000911189,39.906918578612704],[-76.668066,39.906905000000044],[-76.67432683163126,39.906186994225024],[-76.67926,39.905621000000025],[-76.67836404885703,39.90388132717848],[-76.677113,39.901452000000035],[-76.68030636086785,39.899577314570244],[-76.683463,39.89772400000002],[-76.68688329659435,39.89737345466764],[-76.68839,39.89721900000003],[-76.69252318974401,39.89398309295849],[-76.692591,39.89393000000001],[-76.69970816016946,39.89259034015633],[-76.700597,39.89242300000003],[-76.704346,39.895285000000015],[-76.70552247511307,39.89553652184427],[-76.71267547321543,39.897065485365154],[-76.715654,39.89770200000001],[-76.71693311826309,39.8945253952354],[-76.717869,39.892201000000036],[-76.7220935722823,39.89258577178564],[-76.722755,39.89264600000001],[-76.723545,39.888990000000014],[-76.72539437245774,39.88941014996334],[-76.73251373671346,39.89102724156632],[-76.735626,39.89173400000002],[-76.73895863403672,39.89366888652743],[-76.74487998987316,39.89710624848799],[-76.745803,39.897642],[-76.744167,39.902118000000016],[-76.74434326180331,39.902203986744965],[-76.75060991174426,39.90526076673259],[-76.7568771208723,39.90831720939191],[-76.757334,39.90854],[-76.76256738588854,39.91197227439181],[-76.762814,39.91213400000002],[-76.761264,39.91649900000003],[-76.76015104785414,39.91614537265781],[-76.753529,39.914041000000026],[-76.75328210554862,39.91410237553995],[-76.747623,39.915509000000014],[-76.74789808407527,39.91662327829776],[-76.748832,39.92040600000001],[-76.75033954805599,39.92184623710768],[-76.751496,39.92295100000002],[-76.755647,39.92269000000003],[-76.75674022575919,39.9219997415332],[-76.76087,39.91939200000003],[-76.76294517009106,39.91948348495116],[-76.769427,39.91976900000004],[-76.77006013442606,39.91924086379983],[-76.77196,39.91765600000003],[-76.77628433103176,39.916407274966105],[-76.779405,39.91550600000003],[-76.780405,39.91294700000001],[-76.78099979598686,39.91284361299336],[-76.785076,39.91213500000003],[-76.78597262093366,39.914529175704125],[-76.786707,39.916490000000046],[-76.79001010452154,39.919126973365636],[-76.793801,39.92215300000004],[-76.79575398487827,39.92224265624786],[-76.798115,39.92235100000002],[-76.80036621958968,39.91887307067513],[-76.802117,39.91616800000001],[-76.80036077575222,39.91385479535145],[-76.796727,39.90906800000002],[-76.7968232627206,39.908928660632526],[-76.80030055296835,39.903894882798404],[-76.800842,39.90311100000003],[-76.80676409471026,39.90153181130868],[-76.807922,39.901223],[-76.811358,39.904429000000015],[-76.81190374983534,39.90399092849677],[-76.814217,39.90213400000002],[-76.81361971873281,39.899039414558345],[-76.813169,39.89670400000003],[-76.81675865454969,39.894821451950115],[-76.817097,39.89464400000002],[-76.82346182108745,39.896907810394374],[-76.827163,39.898224000000006],[-76.83049549749785,39.89799246380734],[-76.831754,39.89790500000004],[-76.83277144429353,39.902567493591974],[-76.83399772383542,39.908186131063346],[-76.83522420454712,39.91380475561653],[-76.835729,39.91611700000003],[-76.83568865558132,39.919469260298115],[-76.83562008804094,39.92516585667445],[-76.835579,39.92857900000003],[-76.83446127759223,39.93069559399847],[-76.83167256179568,39.93597587552624],[-76.829847,39.93943200000002],[-76.82924198794673,39.94134457532128],[-76.828556,39.94351300000002],[-76.83280121465249,39.94470339053091],[-76.835029,39.94532800000002],[-76.84005547741555,39.94576483317848],[-76.84743907899409,39.94640611187029],[-76.85482281894718,39.947046922180924],[-76.86220669717947,39.94768726409095],[-76.86959071359554,39.94832713758099],[-76.871471,39.94849000000001],[-76.87700618775864,39.94864432167392],[-76.88443241852123,39.94885095127624],[-76.889944,39.94900400000001],[-76.89164628339478,39.949678059915456],[-76.89824904130897,39.95229221894846],[-76.903253,39.95427300000001],[-76.90482102293312,39.95495043072452],[-76.91129564791457,39.95774728798136],[-76.91777080249251,39.960543785032854],[-76.92424648669456,39.96333992181382],[-76.93072270054826,39.96613569825906],[-76.932688,39.96698400000001],[-76.93565709383468,39.96373319067303],[-76.936892,39.962381000000015],[-76.94216987538483,39.96247029868028],[-76.94960069532232,39.9625956178755],[-76.95703154244781,39.96272046263922],[-76.961123,39.96278900000002],[-76.95956627996972,39.9605239086412],[-76.958853,39.95948600000002],[-76.95353922916539,39.95751764371952],[-76.94684792307926,39.955038506935885],[-76.94404,39.95399800000001],[-76.944632,39.95087400000001],[-76.94479642660286,39.950793951475944],[-76.948705,39.948891000000025],[-76.95036790344273,39.95061893757769],[-76.952673,39.95301400000003],[-76.9561605688001,39.953517533074894],[-76.95624,39.95352900000003],[-76.9588655982411,39.948265861984964],[-76.958878,39.948241000000024],[-76.96398295302797,39.94413803114913],[-76.964192,39.94397000000003],[-76.96418803371834,39.93850537087158],[-76.964187,39.93708100000001],[-76.966202,39.93519200000002],[-76.96730863832079,39.936815753744355],[-76.97075002718182,39.94186469223043],[-76.9741919239535,39.94691352895721],[-76.97763432879151,39.95196226389146],[-76.98107724185155,39.95701089699991],[-76.98452066328944,39.96205942824932],[-76.986105,39.964382000000015],[-76.98809484679892,39.967053285679235],[-76.99178053967579,39.972000532167236],[-76.992672,39.97319700000003],[-76.99520002695763,39.97705721377932],[-76.99853492632755,39.982148744101195],[-77.0018703227536,39.98724017883996],[-77.00520621639026,39.992331517964075],[-77.0085426073921,39.99742276144207],[-77.010547,40.00048100000004],[-77.01178966863517,40.002547024838954],[-77.01490207757932,40.007721018744405],[-77.01801495836021,40.012894929381766],[-77.018648,40.013947],[-77.02336021091023,40.016698863714204],[-77.026241,40.018381],[-77.0300430617974,40.01863102979369],[-77.033557,40.01886200000004],[-77.0371243745303,40.020091378160195],[-77.04069,40.021320000000024],[-77.04416408233169,40.02179518319898],[-77.05148739319147,40.02279650040421],[-77.056181,40.023438000000006],[-77.05822690949218,40.0247534923055],[-77.060063,40.02593400000004],[-77.06465133926875,40.0275347411234],[-77.068485,40.02887200000003],[-77.0700971581474,40.03101262567595],[-77.072354,40.034009000000026],[-77.07462324444323,40.03541946341125],[-77.078563,40.03786800000003],[-77.07928745495903,40.039592743880696],[-77.080812,40.043222000000036],[-77.0823106259489,40.04471705287253],[-77.08684131633086,40.049236424863594],[-77.089166,40.05155500000002],[-77.09186989786366,40.053402139671256],[-77.092628,40.05392000000004],[-77.09848569581241,40.05594343708262],[-77.104316,40.05795700000003],[-77.10499180144951,40.05856866403459],[-77.106307,40.05975900000003],[-77.11116073490894,40.0615816898748],[-77.1178434736689,40.064090722116525],[-77.123444,40.06619300000003],[-77.1244182956725,40.06673682316758],[-77.127916,40.06868900000003],[-77.13098562798982,40.06909454305519],[-77.137425,40.06994500000001],[-77.13808786754745,40.06946820424988],[-77.14351183133125,40.065566394285966],[-77.14893517381402,40.06166433141744],[-77.15435789511253,40.05776201570824],[-77.15977999534356,40.05385944722228],[-77.160685,40.05320800000002],[-77.16461813611693,40.04953928733374],[-77.1693387841297,40.04513530981687],[-77.17405882226346,40.04073114075711],[-77.178163,40.036901000000036],[-77.17845359248383,40.03760960633595],[-77.18068272775551,40.043044812448024],[-77.18291221846921,40.04847997583771],[-77.18514206474728,40.053915096489966],[-77.18737226671216,40.059350174389756],[-77.18960282448631,40.064785209522],[-77.19183373819222,40.070220201871656],[-77.19406500795245,40.07565515142367],[-77.19629663388959,40.08109005816293],[-77.19852861612631,40.086524922074375],[-77.20076095478531,40.09195974314292],[-77.20299364998935,40.097394521353465],[-77.2052267018612,40.10282925669092],[-77.20746011052375,40.10826394914017],[-77.20969387609986,40.11369859868611],[-77.21192799871253,40.11913320531362],[-77.21416247848468,40.12456776900758],[-77.21639731553941,40.13000228975284],[-77.21863250999982,40.13543676753429],[-77.219459,40.137446000000025],[-77.22125676390063,40.14076315464457],[-77.22410945677778,40.14602609595516],[-77.22696259171582,40.15128896725566],[-77.22981616885973,40.15655176852214],[-77.23267018835465,40.16181449973073],[-77.23552465034568,40.16707716085748],[-77.235856,40.16768800000004],[-77.23769258018885,40.17252408926032],[-77.23977064264977,40.1779951844823],[-77.24184904025036,40.183466242546196],[-77.242863,40.186135000000036],[-77.24362859519749,40.18899371697821],[-77.24512349448973,40.19457493159246],[-77.24661863986974,40.20015612697562],[-77.24811403142577,40.20573730312072],[-77.24851,40.20721500000002],[-77.24381995555143,40.209386262274904],[-77.241967,40.210244000000024],[-77.24038044138155,40.214100247736894],[-77.238633,40.21834700000002],[-77.23858832178173,40.21959191730911],[-77.238516,40.22160700000003],[-77.24228433203012,40.223902881654695],[-77.242818,40.22422800000003],[-77.238538,40.22726800000004],[-77.23776787761489,40.22686583851013],[-77.235658,40.225764000000034],[-77.23097975327626,40.22689017089241],[-77.22386329573222,40.228602847098095],[-77.218526,40.229887000000005],[-77.21825286252817,40.2312960906783],[-77.21716037311378,40.23693154875068],[-77.217087,40.23731000000004],[-77.214621,40.23912300000001],[-77.21454829251711,40.241823149463926],[-77.214466,40.244879],[-77.21174855700163,40.246512774526025],[-77.206771,40.24950500000001],[-77.20578144674394,40.24909194762083],[-77.20381,40.24826900000002],[-77.20093099665482,40.24494847572607],[-77.198654,40.242322000000016],[-77.19548107639012,40.24311149390214],[-77.194844,40.243270000000024],[-77.1942979495855,40.24843859458612],[-77.19421,40.24927100000002],[-77.18850634388885,40.25143575048363],[-77.188424,40.25146700000002],[-77.1898142871672,40.25699270341796],[-77.19122214809863,40.262587317363156],[-77.191588,40.26404100000002],[-77.19504302192458,40.267331772038474],[-77.197095,40.26928600000002],[-77.19817256821547,40.272371071922365],[-77.199748,40.27688100000001],[-77.20066857221445,40.27763370900981],[-77.203723,40.280131000000026],[-77.2040391671809,40.28239942677517],[-77.204687,40.28704700000002],[-77.20334699799724,40.287089720882356],[-77.1958852949552,40.28732732530623],[-77.18842353950538,40.28756445041252],[-77.182795,40.28774300000002],[-77.1809784147249,40.28794000159466],[-77.17358438159398,40.288741550683994],[-77.16619017313516,40.28954262909844],[-77.15879578944237,40.2903432368135],[-77.15140123060947,40.291143373804694],[-77.150397,40.291252000000014],[-77.14422852530953,40.29270118164749],[-77.13709036889,40.29437768764239],[-77.134849,40.294904000000024],[-77.12972555681279,40.2949538966436],[-77.129612,40.29495500000001],[-77.12268944980967,40.29685154996924],[-77.122644,40.29686400000002],[-77.11523643854586,40.29720440912368],[-77.111869,40.297359000000036],[-77.10782852194181,40.2978707060192],[-77.101744,40.29864100000003],[-77.10054715798813,40.29903129915664],[-77.096365,40.30039500000001],[-77.09346167830519,40.30064149812661],[-77.0860377688712,40.301271465459216],[-77.07861372103423,40.30190095827366],[-77.07466,40.30223600000001],[-77.07117006367862,40.302149071753306],[-77.063874,40.30196700000002],[-77.06371696336325,40.30201640594976],[-77.059659,40.303293000000025],[-77.05658885915145,40.30348351629763],[-77.04914340430688,40.30394519936455],[-77.041769,40.30440200000002],[-77.04169765405068,40.30440016890545],[-77.03423180007772,40.304208314891504],[-77.02676598856587,40.304015980985795],[-77.024519,40.30395800000003],[-77.0193298033695,40.30440228775735],[-77.01190624344096,40.305037463629716],[-77.005128,40.30561700000002],[-77.00449113169955,40.30571419922585],[-76.99716600941153,40.30683189264904],[-76.98984064474463,40.307949124077],[-76.98251503778145,40.30906589347618],[-76.97518918860469,40.31018220081306],[-76.974219,40.31033000000001],[-76.96808925061416,40.31193599471017],[-76.9610234563795,40.31378673709306],[-76.95395727487376,40.31563704958671],[-76.949282,40.31686100000003],[-76.94697169283874,40.31764404777047],[-76.94014401288656,40.319957824001115],[-76.93331586496959,40.322271198808735],[-76.92648724909867,40.32458417213296],[-76.91965816528467,40.3268967439134],[-76.91497,40.32848400000002],[-76.91586697621405,40.33013411476606],[-76.91727,40.33271500000004],[-76.91968779818669,40.334958040158966],[-76.92443275745002,40.3393594548189],[-76.92618,40.34098000000003],[-76.92734556287614,40.34446791434917],[-76.928521,40.34798500000002],[-76.92959551064283,40.34988335717756],[-76.93255662421173,40.35511420503605],[-76.932672,40.35531800000003],[-76.937547,40.357481000000035],[-76.93908974453497,40.35751722677655],[-76.9465622026404,40.357692404639586],[-76.9540346995223,40.357867101608655],[-76.96115,40.358033],[-76.96149758987295,40.35796962363806],[-76.96876823807932,40.35664369423292],[-76.970625,40.35630500000001],[-76.97615383322609,40.35679865849252],[-76.981996,40.35732000000004],[-76.9835876644725,40.35725643687049],[-76.9910533376316,40.356958002392254],[-76.998022,40.35667900000003],[-76.99850713048752,40.35676346338406],[-77.0057953692817,40.35803210887629],[-77.008191,40.35844900000002],[-77.011735875188,40.36115626814521],[-77.013028,40.36214300000003],[-77.01794720776856,40.36425630231048],[-77.019178,40.36478500000002],[-77.02165,40.36836800000003],[-77.02175008513696,40.368935306681166],[-77.02274626430976,40.37458136507054],[-77.023067,40.37639900000001],[-77.0259588346498,40.37957210566806],[-77.026841,40.38054000000003],[-77.02848716894773,40.38488105592626],[-77.029144,40.386613000000025],[-77.02872155646108,40.390493764474925],[-77.028645,40.391197000000005],[-77.02451127135144,40.39506999648109],[-77.021469,40.39792000000001],[-77.01928884415223,40.39907734210043],[-77.01315169860393,40.402334830251455],[-77.013125,40.40234900000002],[-77.011734,40.40741200000003],[-77.01196705771605,40.40787885319863],[-77.01462562484983,40.41320391199189],[-77.015847,40.41565000000002],[-77.015983716372,40.41872819105392],[-77.01623662717451,40.424421775517104],[-77.01627,40.425173000000036],[-77.00985949358746,40.425973338070186],[-77.003235,40.42680000000004],[-77.00284364128339,40.42730543854358],[-76.99904327903322,40.432213130699154],[-76.997915,40.43367000000001],[-76.99359499213051,40.43595769472382],[-76.98943,40.43816300000004],[-76.98828109977585,40.43977643401651],[-76.986813,40.44183800000002],[-76.9838421107108,40.44431256510827],[-76.980452,40.44713600000003],[-76.97840936516639,40.44817946644207],[-76.97219351120754,40.45135437370314],[-76.969496,40.45273200000002],[-76.96567718477911,40.454130162168866],[-76.961143,40.455790000000015],[-76.95945230438252,40.45714470030356],[-76.95429631591011,40.461275539494935],[-76.952809,40.462467000000025],[-76.95085118565619,40.466237052267765],[-76.949397,40.469037000000014],[-76.94900641635795,40.471706770949815],[-76.94876,40.47339100000001],[-76.94901341063347,40.47738856550494],[-76.94937417325363,40.48307879189616],[-76.949466,40.48452700000002],[-76.95176339949535,40.48839784975507],[-76.953083,40.49062100000003],[-76.95689560103928,40.492106015248226],[-76.96356329706477,40.49470263624339],[-76.966284,40.49576200000001],[-76.96909,40.49756200000004],[-76.96954211302177,40.49803010881769],[-76.9739770717274,40.502621537021206],[-76.978351,40.50714900000002],[-76.97840173164813,40.50721812551686],[-76.98205300450341,40.5121928147901],[-76.985104,40.51634900000002],[-76.98516450128253,40.51728509187452],[-76.98553229083372,40.52297506617111],[-76.985663,40.52499700000002],[-76.9836673093963,40.5283415361279],[-76.98153,40.531923000000035],[-76.98126098332489,40.53367528508228],[-76.980546,40.53833200000002],[-76.98082585240493,40.539317848097404],[-76.981989,40.54341500000002],[-76.98275618536273,40.54480295665984],[-76.98565966429514,40.550055231203665],[-76.98856359870996,40.55530743305454],[-76.99146798875687,40.56055956218758],[-76.991862,40.56127200000003],[-76.99235282657324,40.566181933341504],[-76.992488,40.56753400000003],[-76.99007367146163,40.57146843715394],[-76.988161,40.57458500000003],[-76.98613880255256,40.576240497786415],[-76.983673,40.57825900000003],[-76.98039379174236,40.579827452535945],[-76.97404637898535,40.58286296166057],[-76.96769839012426,40.585898123331205],[-76.965268,40.58706000000002],[-76.96226249237486,40.589734347543825],[-76.958755,40.59285500000001],[-76.95802958376477,40.59435088393799],[-76.95543686563047,40.59969675496771],[-76.953105,40.60450400000003],[-76.95312991709429,40.60507762334745],[-76.95337726555539,40.610771366694976],[-76.953551,40.61477000000002],[-76.95319003737755,40.61644375144842],[-76.95197745924257,40.622065745751144],[-76.950885,40.627130000000044],[-76.95030928881543,40.62748844190791],[-76.949221,40.62816600000002],[-76.94607131372096,40.624202592896715],[-76.94219515710238,40.619324268813386],[-76.93831956657077,40.61444581516462],[-76.936905,40.61266500000003],[-76.93251463978207,40.61125896509068],[-76.92599,40.60916900000002],[-76.92557270164392,40.60921921436322],[-76.91816105621871,40.61011081000602],[-76.91074921306519,40.611001931876956],[-76.903342,40.61189200000002],[-76.90333750006016,40.611890551445114],[-76.898869,40.61045200000004],[-76.89622298367657,40.610334225337745],[-76.890875,40.61009600000002],[-76.89105018607347,40.61172047112927],[-76.8914,40.61496400000002],[-76.88887476149316,40.616477648844835],[-76.886822,40.61770800000003],[-76.88196472574201,40.61728287899691],[-76.87450924241612,40.61662994972794],[-76.872387,40.616444000000016],[-76.869528,40.61838300000003],[-76.86947693506951,40.61954730656246],[-76.869299,40.62360400000002],[-76.86802239644013,40.62492455748319],[-76.86578,40.62724400000002],[-76.86212292423298,40.62674565717532],[-76.85473515929783,40.625738565777915],[-76.854599,40.625720000000015],[-76.84723381797635,40.62557744537498],[-76.840104,40.625439000000036],[-76.83976602580847,40.62556010821369],[-76.83297831792048,40.62799208461076],[-76.832705,40.62809000000003],[-76.82862622545424,40.632596773630425],[-76.827405,40.63394600000002],[-76.8220643985919,40.63370668128767],[-76.81457068147354,40.6333704612132],[-76.813202,40.63330900000002],[-76.810149,40.63484600000003],[-76.81008348739202,40.63672134491434],[-76.809902,40.64191600000001],[-76.809516336399,40.64232185895195],[-76.805656,40.646384000000026],[-76.80480551267655,40.646624856818505],[-76.802492,40.64728000000001],[-76.79902002271689,40.64450923912627],[-76.794052,40.64054400000002],[-76.79375986792586,40.64058633937574],[-76.7863854575997,40.64165486806283],[-76.785853,40.64173200000004],[-76.77979312280648,40.64433850941247],[-76.776718,40.64566100000001],[-76.77281823571208,40.64623879929712],[-76.76544903365956,40.647330254112646],[-76.761378,40.64793300000002],[-76.75802006097996,40.648034168719754],[-76.756232,40.648088000000016],[-76.7522305118918,40.65118815518045],[-76.749698,40.65315000000002],[-76.74607220434419,40.65421811724162],[-76.743927,40.65485000000001],[-76.73872054396318,40.65494524015747],[-76.734515,40.65502200000002],[-76.73132329876684,40.65437864363025],[-76.724788,40.65306100000003],[-76.72405313184652,40.65316238554614],[-76.721729,40.653483000000044],[-76.71930311565936,40.656926775081715],[-76.718273,40.65838900000003],[-76.71317339665201,40.659549544445404],[-76.713167,40.65955100000003],[-76.703924,40.65537000000001],[-76.701624,40.65808200000002]]]},"properties":{"district":10}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.999465,39.720111000000024],[-76.9994769969218,39.72996994599088],[-76.99948899727539,39.73982889198051],[-76.999497,39.74640200000003],[-76.99943051160098,39.74968744172287],[-76.99923097935904,39.75954519857239],[-76.999099,39.76606400000003],[-76.99912748458686,39.769403287698516],[-76.99921159711697,39.77926202605769],[-76.99929,39.788449000000014],[-76.99930611431385,39.78912066467709],[-76.99954264237692,39.798977939812424],[-76.99977923825509,39.80883521446741],[-76.999944,39.81569800000002],[-76.9998116248182,39.818691271491716],[-76.99937579000238,39.82854453781469],[-76.999374,39.828585000000025],[-76.998377,39.83211500000004],[-76.99081433398474,39.83430419910279],[-76.990663,39.83434800000002],[-76.983043,39.84135300000002],[-76.98266592083802,39.84188716378832],[-76.978543,39.84772700000003],[-76.97489481906138,39.849308171884005],[-76.974083,39.84966000000001],[-76.96484,39.85077200000002],[-76.96284498538199,39.85199598344096],[-76.954932,39.856850000000044],[-76.9564481779888,39.85857775000873],[-76.962105,39.86502300000002],[-76.96242277247558,39.86709620572064],[-76.963509,39.87418200000002],[-76.96700076829423,39.87369160863089],[-76.972536,39.87291400000002],[-76.97597445581654,39.87778548076524],[-76.977321,39.879693000000024],[-76.977835,39.88570700000002],[-76.97967048087614,39.88659054136638],[-76.98033,39.88690800000003],[-76.98387,39.89493000000003],[-76.98343298496611,39.895647765817],[-76.982237,39.897612000000024],[-76.983962,39.90190400000004],[-76.98175847337053,39.9046206006502],[-76.981428,39.90502800000003],[-76.975806,39.908389000000014],[-76.97339319547382,39.91183496539053],[-76.971298,39.91482700000002],[-76.967858,39.91550000000004],[-76.96844760673788,39.91921226187566],[-76.968777,39.921286000000016],[-76.97225,39.925714000000006],[-76.97166047959976,39.928277000179946],[-76.969596,39.937251000000025],[-76.9688325872271,39.936787888341456],[-76.966202,39.93519200000002],[-76.964187,39.93708100000001],[-76.96419051750097,39.9419275574962],[-76.964192,39.94397000000003],[-76.958878,39.948241000000024],[-76.95798617282877,39.95002880934817],[-76.95624,39.95352900000003],[-76.952673,39.95301400000003],[-76.95009473599681,39.95033509450772],[-76.948705,39.948891000000025],[-76.944632,39.95087400000001],[-76.94404,39.95399800000001],[-76.94545965259987,39.95452408038726],[-76.95703976011127,39.95881436969008],[-76.958853,39.95948600000002],[-76.961123,39.96278900000002],[-76.95514620496184,39.96268883227111],[-76.94228640926858,39.962472267664744],[-76.936892,39.962381000000015],[-76.932688,39.96698400000001],[-76.93256905235758,39.96693265898861],[-76.92136138951128,39.9620942379617],[-76.91015531292258,39.95725473782469],[-76.903253,39.95427300000001],[-76.89886498627739,39.952536054136075],[-76.889944,39.94900400000001],[-76.8871257899142,39.948925775034105],[-76.87427395439744,39.948568179676926],[-76.871471,39.94849000000001],[-76.86147924466898,39.947624199560735],[-76.84870081521534,39.94651564780523],[-76.83592280014145,39.94540569324906],[-76.835029,39.94532800000002],[-76.828556,39.94351300000002],[-76.82975043315375,39.93973727628652],[-76.829847,39.93943200000002],[-76.83451960907225,39.930585137104416],[-76.835579,39.92857900000003],[-76.8356716188964,39.920884757858566],[-76.835729,39.91611700000003],[-76.83463286998878,39.911095912561436],[-76.83251061736266,39.901372301376924],[-76.831754,39.89790500000004],[-76.827163,39.898224000000006],[-76.82384367474738,39.89704361053603],[-76.817097,39.89464400000002],[-76.813169,39.89670400000003],[-76.81326507271842,39.89720181757735],[-76.814217,39.90213400000002],[-76.811358,39.904429000000015],[-76.80995181434429,39.90311699054675],[-76.807922,39.901223],[-76.800842,39.90311100000003],[-76.79983073363334,39.904575049646425],[-76.796727,39.90906800000002],[-76.79985890869922,39.91319372933711],[-76.802117,39.91616800000001],[-76.79839664821175,39.92191590087053],[-76.798115,39.92235100000002],[-76.793801,39.92215300000004],[-76.78832776317083,39.91778394386018],[-76.786707,39.916490000000046],[-76.785076,39.91213500000003],[-76.78058314819407,39.91291603476176],[-76.780405,39.91294700000001],[-76.779405,39.91550600000003],[-76.77196,39.91765600000003],[-76.77112532477656,39.91835229714018],[-76.769427,39.91976900000004],[-76.76087,39.91939200000003],[-76.75950015207891,39.92025702725939],[-76.755647,39.92269000000003],[-76.751496,39.92295100000002],[-76.74918018050666,39.92073864160905],[-76.748832,39.92040600000001],[-76.747623,39.915509000000014],[-76.75314023085276,39.91413764391166],[-76.753529,39.914041000000026],[-76.761264,39.91649900000003],[-76.76233427243787,39.91348503637272],[-76.762814,39.91213400000002],[-76.757334,39.90854],[-76.75411245817752,39.90696899178602],[-76.744167,39.902118000000016],[-76.74445490295759,39.901330358464904],[-76.745803,39.897642],[-76.73953700232543,39.8940046592389],[-76.735626,39.89173400000002],[-76.72800770462588,39.89000380136992],[-76.723545,39.888990000000014],[-76.722755,39.89264600000001],[-76.71941324135825,39.89234166695241],[-76.717869,39.892201000000036],[-76.715654,39.89770200000001],[-76.71200221286489,39.8969215966495],[-76.704346,39.895285000000015],[-76.70087079162481,39.89263202568135],[-76.700597,39.89242300000003],[-76.692591,39.89393000000001],[-76.689637173771,39.896242625407076],[-76.68839,39.89721900000003],[-76.683463,39.89772400000002],[-76.67862021771253,39.900567200713596],[-76.677113,39.901452000000035],[-76.67926,39.905621000000025],[-76.67420548512857,39.90620091384812],[-76.668066,39.906905000000044],[-76.66142216845336,39.90698715436717],[-76.648979,39.90714000000004],[-76.64870328665835,39.90690961079793],[-76.646953,39.905447],[-76.63676228747141,39.90450848409801],[-76.634489,39.90429900000003],[-76.631459,39.90866000000002],[-76.6285236002571,39.90644174847047],[-76.624577,39.90345900000003],[-76.62111513083785,39.90839947295255],[-76.620969,39.90860800000004],[-76.62922292678714,39.915854056786245],[-76.6305,39.916975000000036],[-76.63550890856287,39.92441178152916],[-76.637594,39.92750700000001],[-76.642056,39.931524000000024],[-76.64243549126843,39.93258313800273],[-76.64584227423899,39.94208974742704],[-76.647503,39.94672300000002],[-76.64871627699098,39.95169061391622],[-76.649062,39.95310600000003],[-76.658266,39.95701300000001],[-76.65841260191297,39.95734879551465],[-76.660353,39.961793000000014],[-76.65407695303354,39.963694316600176],[-76.647435,39.96570600000002],[-76.64368408496344,39.969017501699106],[-76.642971,39.96964700000004],[-76.637969,39.968521000000045],[-76.63167172227472,39.96993800022738],[-76.61932784049283,39.972714435663605],[-76.616092,39.973442000000006],[-76.62123730583862,39.979555435146494],[-76.627347,39.986813000000026],[-76.62811916648852,39.98788281110908],[-76.632148,39.99346400000001],[-76.63529403622462,39.99597574456144],[-76.64420536269363,40.00308893944508],[-76.649303,40.00715700000001],[-76.65209515308727,40.01079512891167],[-76.654922,40.01447800000001],[-76.65826909347356,40.01944202470547],[-76.66417683778208,40.02820171565376],[-76.666113,40.03107200000002],[-76.666777,40.03411000000003],[-76.66548196462813,40.037516792590296],[-76.663273,40.04332700000003],[-76.6583168015169,40.043008341229935],[-76.65556,40.042831000000014],[-76.655688,40.04623900000002],[-76.659448,40.04945600000002],[-76.65943550934246,40.04946745040483],[-76.656376,40.052272000000045],[-76.649831,40.05184000000003],[-76.64851051175351,40.05244227826723],[-76.645266,40.05392200000002],[-76.644508,40.05806900000003],[-76.64803472247056,40.05873662487274],[-76.653722,40.05981300000003],[-76.66014634351984,40.06198405169634],[-76.663825,40.063227000000026],[-76.67003277524032,40.06806602954046],[-76.671267,40.069028000000024],[-76.675504,40.073596000000016],[-76.67689333050158,40.07630385299983],[-76.680428,40.08319200000001],[-76.68207383962346,40.08530396462876],[-76.687529,40.09230300000002],[-76.68884111594045,40.09368748270752],[-76.69640680363025,40.10166905124242],[-76.697187,40.10249200000003],[-76.705449114704,40.108676966602914],[-76.706844,40.10972100000003],[-76.710932,40.113843000000024],[-76.71425274563408,40.115777946924936],[-76.72162,40.12007000000003],[-76.72032181199313,40.12266287392595],[-76.715907,40.131479000000034],[-76.7154168446098,40.13166564499144],[-76.711198,40.13327200000003],[-76.710092,40.137084000000016],[-76.70857549631418,40.13912913880278],[-76.705696,40.14301200000001],[-76.699874,40.14511000000004],[-76.69956719166098,40.14552343109782],[-76.696158,40.15011700000003],[-76.695594,40.15409700000002],[-76.6951407037598,40.15455516096199],[-76.692316,40.15741000000002],[-76.689939,40.152238000000025],[-76.68997689879541,40.15144061748804],[-76.690135,40.14811400000003],[-76.683151,40.15179500000003],[-76.68311632272483,40.15175768861415],[-76.680612,40.14906300000002],[-76.676756,40.14946300000002],[-76.67641,40.15297000000004],[-76.67633293583415,40.15298999659642],[-76.670563,40.154487000000024],[-76.672742,40.157608000000025],[-76.67097205553175,40.15857739702742],[-76.662043,40.16346700000001],[-76.66013528516133,40.16360155015237],[-76.655065,40.16395900000002],[-76.653104,40.166050000000034],[-76.64872123948028,40.16549305621181],[-76.644103,40.16490600000001],[-76.6376462461961,40.16879306502875],[-76.634744,40.17054000000001],[-76.632102,40.170616000000024],[-76.62893343035446,40.17500851117236],[-76.627685,40.17673900000002],[-76.623206,40.17931200000001],[-76.61861573813198,40.18013107042585],[-76.615948,40.18060700000003],[-76.612987,40.18538100000002],[-76.61061024326828,40.18707475590197],[-76.606519,40.18999],[-76.599865,40.18826400000003],[-76.59958694677876,40.18830751880756],[-76.58694358671141,40.190285601044266],[-76.582682,40.19095200000003],[-76.579051,40.19485600000002],[-76.57676609646803,40.194778869761045],[-76.57026,40.19455900000003],[-76.566339,40.19664400000002],[-76.56485027153768,40.197125955010165],[-76.5529655911195,40.20097252463376],[-76.54107956226696,40.204817878773106],[-76.52919218506977,40.20866201712485],[-76.51730345961803,40.212504939385596],[-76.50541338600212,40.216346645251946],[-76.502044,40.21743500000002],[-76.49344851586099,40.22005054983411],[-76.4814533044925,40.22369921436803],[-76.470357,40.227073000000004],[-76.46946305565471,40.227358342614245],[-76.45754859062669,40.231160494792],[-76.44563278797045,40.23496142517004],[-76.43541,40.23822100000004],[-76.43360276121754,40.238468782355746],[-76.42089065357904,40.240210836619],[-76.40817789200803,40.241951500024626],[-76.39546447695302,40.243690772415434],[-76.3827504088627,40.24542865363429],[-76.370035688186,40.247165143524214],[-76.368198,40.24741600000002],[-76.35728616231289,40.248746146870594],[-76.34453027584428,40.25029971680358],[-76.336204,40.25131300000004],[-76.33178275473547,40.25189313328719],[-76.31905144213411,40.253562675986586],[-76.307578,40.25506600000001],[-76.30644295544856,40.255512402193226],[-76.29495887212437,40.2600280277288],[-76.28347325591665,40.26454251792393],[-76.27198610676149,40.26905587244562],[-76.261063,40.273346000000025],[-76.26049628256514,40.27356638975375],[-76.24898287204495,40.27804291025916],[-76.23746793706721,40.28251828949961],[-76.22595147757748,40.286992527143255],[-76.21443349352162,40.29146562285816],[-76.20291398484576,40.29593757631241],[-76.19139295149641,40.30040838717402],[-76.17987039342026,40.304878055111004],[-76.175737,40.306481000000026],[-76.16831570180756,40.30930019757819],[-76.15674238082289,40.313695246756296],[-76.151475,40.31569500000003],[-76.14606412761601,40.312254281798225],[-76.13613574831405,40.30593935959487],[-76.12620922536695,40.299623588862616],[-76.11628455826222,40.29330696994967],[-76.1063617464873,40.286989503204104],[-76.09644078952964,40.28067118897386],[-76.091764,40.27769200000002],[-76.08649738584828,40.27437435449312],[-76.07653415552849,40.26809658368234],[-76.069863,40.26389200000001],[-76.06661741290078,40.26177740089423],[-76.05679302493378,40.255375153658434],[-76.049762,40.250792000000025],[-76.04693835354306,40.24900119314903],[-76.03700458489368,40.242699721574404],[-76.02707266550877,40.23639740086085],[-76.01714259488075,40.23009423135577],[-76.007266,40.22382300000002],[-76.00721525383666,40.223789420841975],[-75.99745835472004,40.21733216927454],[-75.988851,40.21163400000003],[-75.98767943918513,40.210895652827595],[-75.97772332730025,40.204619933993946],[-75.96776905878032,40.19834336238717],[-75.95781663312485,40.19206593835459],[-75.954767,40.190142000000016],[-75.94798602029584,40.18567902594754],[-75.93821027227051,40.17924328310876],[-75.929574,40.17355600000002],[-75.92843118192356,40.17281134967878],[-75.91861449618793,40.16641374666589],[-75.90879966078865,40.16001531478756],[-75.8989866751974,40.153616054387776],[-75.88917553888592,40.14721596581037],[-75.87936625132586,40.14081504939902],[-75.875162,40.13807100000002],[-75.877787,40.13547800000003],[-75.88041104131976,40.13424653553743],[-75.890457,40.12953100000003],[-75.89143619810993,40.129136728522376],[-75.90284443273397,40.12454228875321],[-75.912548,40.12063300000002],[-75.91427812986323,40.119987435917714],[-75.9258641728096,40.115663351422924],[-75.93744874222119,40.11133811262628],[-75.942997,40.10926600000001],[-75.94186417143862,40.10420289296188],[-75.93969039120995,40.0944851751],[-75.93751723169845,40.08476741661658],[-75.936135,40.07858500000002],[-75.93615927423605,40.07499831889409],[-75.936225,40.065285000000024],[-75.93620950317256,40.065139982968496],[-75.93515961422177,40.055313833888455],[-75.934332,40.047566000000025],[-75.93464743869491,40.04549476910443],[-75.93587,40.03746600000003],[-75.93700762904928,40.03591847051714],[-75.94332258679229,40.027326683616245],[-75.94963595397762,40.01873455402398],[-75.95594773142658,40.01014208193095],[-75.96225791996001,40.00154926752766],[-75.967478,39.994439000000014],[-75.9685358593707,39.99294314379251],[-75.97466521108663,39.9842745118616],[-75.9807930075644,39.97560555717374],[-75.986699,39.967248000000026],[-75.98664288227056,39.96689612812499],[-75.986163,39.96388700000002],[-75.990394,39.959294000000035],[-75.99106603478525,39.95820472358289],[-75.994629,39.95242900000001],[-75.9923965176954,39.94941035987496],[-75.99104,39.94757600000002],[-75.9888,39.94084100000003],[-75.98814049271614,39.94022130953811],[-75.980966,39.93347900000003],[-75.98217333844507,39.93278470074982],[-75.987363,39.92980000000003],[-75.991467,39.92900300000002],[-75.99260035665866,39.92761449768205],[-75.997132,39.92206200000002],[-75.99584293778751,39.91890460157808],[-75.994896,39.916585000000026],[-75.997516,39.90989100000002],[-75.99740811243143,39.90945969806451],[-75.995989,39.90378600000002],[-75.9939036178991,39.90003080611672],[-75.993329,39.898996000000025],[-75.986823,39.89219200000004],[-75.98705209337952,39.89195435102649],[-75.991258,39.88759100000003],[-75.99213633937411,39.88321066282986],[-75.992347,39.88216000000002],[-75.98676961381014,39.874475679842426],[-75.986698,39.874377000000024],[-75.991644,39.868713],[-75.99479643454808,39.87036130186535],[-76.002432,39.87435300000003],[-76.004472,39.87217800000002],[-76.0044897779313,39.872090444879795],[-76.00646746610953,39.86234905060462],[-76.00844459282742,39.85260762275426],[-76.008575,39.85196500000001],[-76.015805,39.85375800000003],[-76.01991,39.853524000000014],[-76.02005593464699,39.85333965152674],[-76.022823,39.849844000000026],[-76.02046932064026,39.84436590275055],[-76.017809,39.838173000000026],[-76.01715028558453,39.8348736762139],[-76.016473,39.83148100000003],[-76.022826,39.83080000000002],[-76.023210495594,39.82932869007228],[-76.023784,39.82713400000001],[-76.027034,39.82415300000002],[-76.03163603982436,39.82535292305476],[-76.037636,39.82691700000001],[-76.038178,39.82458000000002],[-76.036025892049,39.822548399847456],[-76.032242,39.818976000000006],[-76.03042816989777,39.81391037827862],[-76.029925,39.81250500000003],[-76.034431,39.81252100000002],[-76.03606121963065,39.807742258118544],[-76.037557,39.803357000000034],[-76.04397148356577,39.80133771287706],[-76.045962,39.80071100000002],[-76.041365,39.79719600000002],[-76.0437511714331,39.79454480364561],[-76.048525,39.78924000000001],[-76.04923621818764,39.785874616676956],[-76.049678,39.783784000000026],[-76.05837067840862,39.779872844710766],[-76.058397,39.77986100000002],[-76.060524,39.77501100000003],[-76.06409427606741,39.7711737663174],[-76.064923,39.77028300000001],[-76.062468,39.765098000000016],[-76.06488909850054,39.76243829444955],[-76.067427,39.759650000000015],[-76.07544527645716,39.76156984822923],[-76.076461,39.76181300000004],[-76.081852,39.76135100000003],[-76.08492675271388,39.75709151584402],[-76.085794,39.755890000000015],[-76.082599,39.75305000000002],[-76.08427609233986,39.74849914581977],[-76.084334,39.748342000000015],[-76.09204,39.74311600000002],[-76.0943746377514,39.74311361175145],[-76.096877,39.74311100000003],[-76.10205,39.73988400000001],[-76.09889604341082,39.738459347318205],[-76.096188,39.73723600000002],[-76.09262,39.73353400000003],[-76.0949202596994,39.73131757611932],[-76.102479,39.724033000000006],[-76.10314689638079,39.724196426368074],[-76.10796,39.725374000000016],[-76.111177,39.72852100000003],[-76.11040010732496,39.73039941078786],[-76.108565,39.73483600000003],[-76.113616,39.73712500000002],[-76.11450862125209,39.737017335522104],[-76.119924,39.73636400000001],[-76.12025279929337,39.73072602926299],[-76.120304,39.729848000000025],[-76.118521,39.72643200000004],[-76.122252,39.72340700000004],[-76.12333303711459,39.72417152202393],[-76.128262,39.72765700000002],[-76.13410454769047,39.72624798114534],[-76.136451,39.725682000000035],[-76.13563984137411,39.72165957785316],[-76.14070649696498,39.72164622815106],[-76.153524259151,39.721611472379834],[-76.16634200815477,39.72157530713326],[-76.1791597434524,39.7215377324146],[-76.19197746451995,39.7214987482273],[-76.20479517083349,39.72145835457489],[-76.21761286186913,39.72141655146107],[-76.23043053710292,39.721373338889606],[-76.243248196011,39.72132871686443],[-76.2499325297385,39.72130488755253],[-76.25606590591615,39.7213078340487],[-76.26888368683285,39.72131294979602],[-76.28170146938929,39.72131665606498],[-76.29451925306154,39.721318952855235],[-76.30733703732561,39.72131984016657],[-76.32015482165755,39.72131931799891],[-76.33297260553341,39.721317386352325],[-76.3457903884292,39.72131404522695],[-76.358608169821,39.72130929462311],[-76.37097612613516,39.72130337458516],[-76.3714259479539,39.72130253095307],[-76.38424368638161,39.72127776205833],[-76.39706141533978,39.721251583696116],[-76.40987913430449,39.721223995868804],[-76.418784,39.72120399999999],[-76.42269684931276,39.72121126542361],[-76.43551458113905,39.7212341456592],[-76.44833232120882,39.72125561642722],[-76.46115006899812,39.72127567772571],[-76.47396782398302,39.72129432955285],[-76.48678558563957,39.72131157190694],[-76.49960335344382,39.721327404786415],[-76.5124211268718,39.72134182818984],[-76.52523890539956,39.72135484211591],[-76.53805668850316,39.72136644656342],[-76.55087447565865,39.721376641531336],[-76.55135999999878,39.72137699999999],[-76.56369129406059,39.721258290703204],[-76.569389,39.72120299999999],[-76.57650860430586,39.72120649778798],[-76.5893263663371,39.721211698839994],[-76.60214413003982,39.7212154904187],[-76.61496189489002,39.72121787252379],[-76.62777966036376,39.72121884515501],[-76.64059742593709,39.72121840831231],[-76.65341519108605,39.7212165619957],[-76.6662329552867,39.72121330620537],[-76.67905071801505,39.72120864094159],[-76.69186847874717,39.721202566204816],[-76.7046862369591,39.72119508199558],[-76.7063610000008,39.721194000000004],[-76.71750370948281,39.72113291971559],[-76.73032111466841,39.72106134190186],[-76.74313849298473,39.72098835469784],[-76.755955843908,39.720913958110145],[-76.7687731669144,39.72083815214557],[-76.78159046148023,39.720760936811],[-76.79169268411792,39.72069908461325],[-76.79440779910396,39.72069197477989],[-76.80722538549568,39.72065755647803],[-76.82004295883127,39.720621728748206],[-76.83286051858681,39.720584491593684],[-76.84567806423846,39.720545845017845],[-76.85849559526228,39.7205057890242],[-76.87131311113446,39.7204643236164],[-76.88413061133109,39.720421448798206],[-76.8901,39.720400999999995],[-76.89694790315963,39.720447405931544],[-76.90976504824363,39.720533182086456],[-76.92258222494975,39.720617548906695],[-76.9353994327543,39.720700506384595],[-76.936412,39.720707000000026],[-76.94821434870813,39.72051271363247],[-76.96102899110558,39.7203004088355],[-76.97384355434133,39.720086695268485],[-76.990903,39.71979999999999],[-76.999465,39.720111000000024]]]},"properties":{"district":11}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.48314857372002,41.99920665856382],[-75.480673,41.95835100000002],[-75.47961839633231,41.93562754868095],[-75.478467,41.91080000000003],[-75.476742,41.87754600000001],[-75.47625260881053,41.872045092003205],[-75.474466,41.85195500000004],[-75.472110416484,41.808490461143435],[-75.470141,41.772106000000015],[-75.46849189728485,41.74491381985751],[-75.46464211806867,41.68134467477633],[-75.462238,41.64158300000001],[-75.49412754358632,41.641471034266175],[-75.50201,41.64144200000003],[-75.53131,41.641660000000016],[-75.554761,41.641451000000025],[-75.576761,41.64182600000002],[-75.57926868078258,41.64183909380896],[-75.652187,41.64219600000003],[-75.66441785877245,41.642211044328654],[-75.719887,41.64226300000002],[-75.719006,41.63575800000003],[-75.723014,41.63456200000003],[-75.729174,41.635791000000005],[-75.73402673466101,41.62905250505903],[-75.749835,41.60709000000003],[-75.774471,41.57418700000003],[-75.77378161445739,41.57335017864576],[-75.769564,41.56823000000002],[-75.791478,41.53881300000003],[-75.802502,41.523578000000036],[-75.79553165651123,41.519514830042404],[-75.772134,41.505869000000004],[-75.786848,41.486946000000025],[-75.80013207559216,41.47014417881938],[-75.825388,41.43817200000002],[-75.835225,41.426589000000014],[-75.839287,41.424633000000014],[-75.85086932944571,41.42182615872939],[-75.901405,41.40956300000002],[-75.929144,41.403473000000034],[-75.93184211460597,41.40283180338209],[-75.968839,41.394032000000024],[-75.98327,41.391063],[-76.00507,41.38455100000002],[-76.0126437433913,41.384261791885336],[-76.025545,41.383768000000025],[-76.052506,41.382717000000014],[-76.09737360490773,41.381540644691015],[-76.141824,41.38035800000002],[-76.18212737496509,41.37927989622404],[-76.2668756624219,41.37696691125205],[-76.2831,41.37651700000001],[-76.284768,41.37296500000003],[-76.30321332923938,41.32733436418329],[-76.310133,41.31019900000003],[-76.3709795745768,41.30875723288063],[-76.374368,41.308676000000006],[-76.407934,41.30841800000002],[-76.425944,41.293447000000015],[-76.44005720840843,41.28187868473091],[-76.478811,41.25008300000002],[-76.49776174537266,41.23532825745284],[-76.499652,41.233856000000024],[-76.521652,41.21426000000001],[-76.55447125749619,41.18814654574871],[-76.592607,41.15776500000001],[-76.62156572012275,41.156564712242435],[-76.678776,41.15417200000005],[-76.70350894310175,41.16272712393389],[-76.729997,41.17188100000003],[-76.732672,41.172040000000045],[-76.731275,41.16308000000002],[-76.731689,41.15323900000004],[-76.735804,41.137833000000036],[-76.733883,41.13328700000002],[-76.73406024818595,41.13299526311025],[-76.735835,41.130074000000015],[-76.733514,41.12768700000002],[-76.734946,41.118756000000026],[-76.735342,41.11009800000001],[-76.734196,41.10380100000003],[-76.734891,41.09213300000002],[-76.74391969911679,41.07145617997358],[-76.746505,41.06553300000002],[-76.756503,41.05050300000002],[-76.759677,41.03870600000002],[-76.764505,41.029611000000024],[-76.761963,41.02593200000001],[-76.770597,41.01872700000001],[-76.77370714035081,41.01443989701471],[-76.773768,41.014356000000014],[-76.775786,41.00811800000003],[-76.773712,41.00255200000003],[-76.784907,40.96692600000004],[-76.786543,40.965163000000025],[-76.785447,40.95890700000001],[-76.7905,40.956708000000006],[-76.79033556020417,40.954858870691524],[-76.790048,40.95162500000003],[-76.793245,40.95014000000002],[-76.79261,40.94664700000004],[-76.775701,40.94947100000003],[-76.767376,40.94978400000003],[-76.743018,40.954484000000036],[-76.734826,40.95444800000001],[-76.72259173717916,40.956581017063534],[-76.687145,40.96275300000001],[-76.682119,40.96496200000003],[-76.674862,40.96550200000002],[-76.661348,40.96799600000003],[-76.652451,40.96164300000001],[-76.645329,40.964424000000015],[-76.6447196008483,40.96442129589637],[-76.635059,40.964378000000025],[-76.62508,40.96030900000003],[-76.601436,40.94218600000001],[-76.589565,40.94012700000002],[-76.572515,40.93930800000002],[-76.57221574053892,40.93931720829475],[-76.563404,40.93958800000004],[-76.557013,40.938617000000036],[-76.55857,40.93049600000001],[-76.56167,40.92477800000003],[-76.565572,40.92114600000002],[-76.568111,40.91545400000002],[-76.564795,40.90423300000001],[-76.560294,40.898861000000025],[-76.560143,40.89524800000001],[-76.55786642693411,40.89001650394866],[-76.557378,40.88889400000003],[-76.551792,40.88340600000003],[-76.571113,40.87873100000002],[-76.584728,40.879895000000026],[-76.586364,40.86816400000001],[-76.5847,40.86467200000001],[-76.587868,40.85137000000004],[-76.58717990875708,40.85075451061501],[-76.583335,40.84731500000003],[-76.58415,40.83957200000002],[-76.588074,40.83745800000001],[-76.584298,40.833765000000014],[-76.585785,40.827063000000024],[-76.58332,40.82113400000002],[-76.584961,40.81299000000003],[-76.583367,40.80923900000002],[-76.605535,40.804541],[-76.60608198846172,40.80440961164392],[-76.629278,40.79883500000002],[-76.611181,40.75990300000002],[-76.60599551923728,40.76018989909521],[-76.603715,40.76031600000004],[-76.601066,40.75642900000003],[-76.574146,40.757811000000004],[-76.5779,40.751825000000025],[-76.585359,40.73287200000001],[-76.57135696460797,40.73161254473144],[-76.566808,40.73120300000001],[-76.572311,40.72849400000001],[-76.579591,40.72719700000002],[-76.581931,40.72411000000002],[-76.581392,40.72046900000003],[-76.567437,40.72088000000002],[-76.564111,40.720023000000026],[-76.566382,40.71489100000002],[-76.572816,40.71410900000002],[-76.565702,40.70976800000003],[-76.572395,40.70539200000003],[-76.57861997212756,40.70351939475371],[-76.600068,40.69706400000001],[-76.637557,40.68286300000002],[-76.65466682912692,40.676703426137365],[-76.662137,40.67401300000002],[-76.694542,40.663064000000006],[-76.700158,40.663766000000024],[-76.701624,40.65808200000002],[-76.703924,40.65537000000001],[-76.713167,40.65955100000003],[-76.718273,40.65838900000003],[-76.72132545576478,40.65405589784948],[-76.721729,40.653483000000044],[-76.724788,40.65306100000003],[-76.734515,40.65502200000002],[-76.743927,40.65485000000001],[-76.749698,40.65315000000002],[-76.756232,40.648088000000016],[-76.761378,40.64793300000002],[-76.776718,40.64566100000001],[-76.785853,40.64173200000004],[-76.794052,40.64054400000002],[-76.79768253320897,40.64344178598646],[-76.802492,40.64728000000001],[-76.805656,40.646384000000026],[-76.809902,40.64191600000001],[-76.810149,40.63484600000003],[-76.813202,40.63330900000002],[-76.827405,40.63394600000002],[-76.832705,40.62809000000003],[-76.840104,40.625439000000036],[-76.854599,40.625720000000015],[-76.86146926839172,40.62665657179009],[-76.86578,40.62724400000002],[-76.869299,40.62360400000002],[-76.869528,40.61838300000003],[-76.872387,40.616444000000016],[-76.886822,40.61770800000003],[-76.8914,40.61496400000002],[-76.890875,40.61009600000002],[-76.898869,40.61045200000004],[-76.903342,40.61189200000002],[-76.92599,40.60916900000002],[-76.926164817224,40.609225003742935],[-76.936905,40.61266500000003],[-76.949221,40.62816600000002],[-76.950885,40.627130000000044],[-76.953551,40.61477000000002],[-76.953105,40.60450400000003],[-76.95868199112543,40.593005555148814],[-76.958755,40.59285500000001],[-76.965268,40.58706000000002],[-76.983673,40.57825900000003],[-76.988161,40.57458500000003],[-76.992488,40.56753400000003],[-76.991862,40.56127200000003],[-76.981989,40.54341500000002],[-76.98174004742076,40.542538115274844],[-76.980546,40.53833200000002],[-76.98153,40.531923000000035],[-76.985663,40.52499700000002],[-76.985104,40.51634900000002],[-76.978351,40.50714900000002],[-76.96909,40.49756200000004],[-76.966284,40.49576200000001],[-76.953083,40.49062100000003],[-76.9530215060325,40.49051740382015],[-76.949466,40.48452700000002],[-76.94876,40.47339100000001],[-76.949397,40.469037000000014],[-76.952809,40.462467000000025],[-76.961143,40.455790000000015],[-76.969496,40.45273200000002],[-76.980452,40.44713600000003],[-76.986813,40.44183800000002],[-76.98743171699053,40.440969189877364],[-76.98943,40.43816300000004],[-76.997915,40.43367000000001],[-77.003235,40.42680000000004],[-77.01627,40.425173000000036],[-77.015847,40.41565000000002],[-77.011734,40.40741200000003],[-77.013125,40.40234900000002],[-77.021469,40.39792000000001],[-77.024190046383,40.39537093558159],[-77.028645,40.391197000000005],[-77.029144,40.386613000000025],[-77.026841,40.38054000000003],[-77.023067,40.37639900000001],[-77.02165,40.36836800000003],[-77.019178,40.36478500000002],[-77.013028,40.36214300000003],[-77.008191,40.35844900000002],[-76.998022,40.35667900000003],[-76.98282625321902,40.35728684657027],[-76.981996,40.35732000000004],[-76.970625,40.35630500000001],[-76.96115,40.358033],[-76.937547,40.357481000000035],[-76.932672,40.35531800000003],[-76.928521,40.34798500000002],[-76.92618,40.34098000000003],[-76.91839701926918,40.33376058333231],[-76.91727,40.33271500000004],[-76.91497,40.32848400000002],[-76.949282,40.31686100000003],[-76.974219,40.31033000000001],[-76.9857538692333,40.30857220372711],[-77.005128,40.30561700000002],[-77.024519,40.30395800000003],[-77.041769,40.30440200000002],[-77.059659,40.303293000000025],[-77.063874,40.30196700000002],[-77.06827470613275,40.30207687367462],[-77.07466,40.30223600000001],[-77.096365,40.30039500000001],[-77.101744,40.29864100000003],[-77.111869,40.297359000000036],[-77.122644,40.29686400000002],[-77.129612,40.29495500000001],[-77.134849,40.294904000000024],[-77.14981212523381,40.291389423428896],[-77.150397,40.291252000000014],[-77.182795,40.28774300000002],[-77.204687,40.28704700000002],[-77.210802,40.285898000000024],[-77.230902,40.283571000000045],[-77.23244325133285,40.28367011366142],[-77.239163,40.28410200000001],[-77.241691,40.282847000000004],[-77.270057,40.27865200000001],[-77.291576,40.27280200000003],[-77.312235,40.26774000000002],[-77.31244632968362,40.26773373102453],[-77.317288,40.26759000000004],[-77.330491,40.275596000000014],[-77.330696,40.280588000000016],[-77.323924,40.28860500000002],[-77.322769,40.29200100000003],[-77.328561,40.29231100000001],[-77.340647,40.286915000000036],[-77.354299,40.27927800000002],[-77.35526020777148,40.27859268299934],[-77.360718,40.27470100000004],[-77.385114,40.26271200000002],[-77.402457,40.25695400000002],[-77.413859,40.25521500000003],[-77.420845,40.255368],[-77.423177,40.257930000000016],[-77.42112906203758,40.261648163514835],[-77.419795,40.26407000000002],[-77.411044,40.269315000000034],[-77.409304,40.274554000000016],[-77.402893,40.28012800000001],[-77.386967,40.29035100000003],[-77.364762,40.30254100000002],[-77.36217352472559,40.30473459539509],[-77.359873,40.30668400000002],[-77.357635,40.312476000000025],[-77.360082,40.31407500000004],[-77.366018,40.31356900000003],[-77.375693,40.31069100000001],[-77.394445,40.30350600000002],[-77.413778,40.29389200000004],[-77.42054570076976,40.29004729124505],[-77.426595,40.28661000000002],[-77.432441,40.28245500000002],[-77.457825,40.26612500000003],[-77.473596,40.25421600000003],[-77.48346954717492,40.24839697992817],[-77.497315,40.24023400000002],[-77.510109,40.23441600000002],[-77.515502,40.23050400000002],[-77.52675,40.22558700000002],[-77.52896,40.222999000000016],[-77.536868,40.219072000000025],[-77.55395115609993,40.21917848487139],[-77.555823,40.21919000000002],[-77.558085,40.21863800000001],[-77.578341,40.206626000000014],[-77.580439,40.20385600000004],[-77.589954,40.19651400000002],[-77.593549,40.19201000000002],[-77.605448,40.185362],[-77.61206913285004,40.1948356185022],[-77.614665,40.19854900000002],[-77.604768,40.206033000000026],[-77.604888,40.22492200000002],[-77.60277,40.227488000000044],[-77.609171,40.23275300000001],[-77.616167,40.232616],[-77.63065749909318,40.22349407334071],[-77.639893,40.217678000000035],[-77.642831,40.21814000000001],[-77.643394,40.223165000000016],[-77.647642,40.222477000000005],[-77.649951,40.226283000000016],[-77.648878,40.23331900000002],[-77.645402,40.238928000000016],[-77.64999,40.24795700000001],[-77.645023,40.25393200000001],[-77.649502,40.257551000000014],[-77.653447,40.25740700000003],[-77.65526744939255,40.256597475049645],[-77.665494,40.25204900000002],[-77.667711,40.25200100000003],[-77.671155,40.257569000000025],[-77.668976,40.26005800000001],[-77.656416,40.27039300000002],[-77.664275,40.27822700000002],[-77.664195,40.28047900000001],[-77.67181,40.28988500000001],[-77.67586,40.28469900000002],[-77.67624313086147,40.284353319701154],[-77.685163,40.27630400000003],[-77.698954,40.26577500000002],[-77.702857,40.263654000000024],[-77.71700180874079,40.29647751661361],[-77.72287,40.310085000000015],[-77.728033,40.32300900000002],[-77.7427706565169,40.35700021446762],[-77.75212,40.378545000000024],[-77.761732,40.368722000000005],[-77.79938816904536,40.36862241067139],[-77.810393,40.36859100000003],[-77.814698,40.36248900000003],[-77.818636,40.360542000000024],[-77.829837,40.36389500000003],[-77.838343,40.36903000000004],[-77.845221,40.36876600000001],[-77.852906,40.36479000000001],[-77.856914,40.36522800000001],[-77.861203,40.369842000000034],[-77.865195,40.37153000000003],[-77.86701607461644,40.3739209721552],[-77.872558,40.38119600000003],[-77.872533,40.38557000000002],[-77.870289,40.392261000000026],[-77.877701,40.39355000000001],[-77.887717,40.391358000000004],[-77.889116,40.398965000000025],[-77.913844,40.39867900000004],[-77.91329126923723,40.402355289193686],[-77.912416,40.408176000000005],[-77.90805,40.41401800000001],[-77.896369,40.41777800000001],[-77.888746,40.42866000000001],[-77.870182,40.44524400000002],[-77.86468414227366,40.45119985011211],[-77.844137,40.47344700000002],[-77.835874,40.48423200000002],[-77.828245,40.49155800000003],[-77.816513,40.500074000000026],[-77.81759110921692,40.50220344275251],[-77.841827,40.550035000000015],[-77.83382170064957,40.560815135177435],[-77.832545,40.56253400000003],[-77.8216,40.578931000000026],[-77.81944,40.58008400000002],[-77.811561,40.58918200000001],[-77.801329,40.59956900000001],[-77.78687728192077,40.61308712005066],[-77.779853,40.61965500000002],[-77.77248,40.62593200000003],[-77.758907,40.629589000000024],[-77.75162,40.63230000000003],[-77.735142,40.64474100000002],[-77.728193,40.64857300000001],[-77.72310050470055,40.652512496849525],[-77.720434,40.65457500000004],[-77.720737,40.65796800000003],[-77.710846,40.66200300000001],[-77.690614,40.675036000000034],[-77.68708,40.676750000000006],[-77.682708,40.68271700000002],[-77.685346,40.684904000000024],[-77.703787,40.67993600000001],[-77.7041486716327,40.68077140063108],[-77.708356,40.69048800000001],[-77.703066,40.692680000000024],[-77.699239,40.69806500000001],[-77.70117,40.70498200000003],[-77.676611,40.716452000000004],[-77.681334,40.72975800000001],[-77.68133841993938,40.72975571742137],[-77.695447,40.72246800000001],[-77.699407,40.72116500000001],[-77.71026,40.714632000000016],[-77.718677,40.72737200000002],[-77.74795810827042,40.72273301729958],[-77.768549,40.71946600000004],[-77.82319925760193,40.74311602542885],[-77.824506,40.743681000000024],[-77.85922,40.730819000000025],[-77.894282,40.716203000000014],[-77.89747618067074,40.71462870628742],[-77.94425,40.691557000000024],[-77.97064294273082,40.69894103974752],[-78.04941712874655,40.72093449631337],[-78.085263,40.73092000000002],[-78.04280618605056,40.74390469311137],[-78.030734,40.74759300000003],[-78.035272,40.75326400000002],[-78.03803,40.754096000000004],[-78.037768,40.75896700000003],[-78.043346,40.76536200000002],[-78.050197,40.768837000000005],[-78.048484,40.77246000000004],[-78.037225,40.78065100000002],[-78.033368,40.78149700000002],[-78.02795327492315,40.78765186978964],[-78.02772,40.78791700000002],[-78.033299,40.790725000000016],[-78.042505,40.792205000000024],[-78.028361,40.80403000000002],[-78.006105,40.816904000000044],[-77.998467,40.82091800000001],[-77.9920456216552,40.815981285030595],[-77.939424,40.775485000000025],[-77.93288103735851,40.780183261677884],[-77.882495,40.816329000000046],[-77.87215234930598,40.82417864159306],[-77.855975,40.836451000000025],[-77.848462,40.84099800000002],[-77.828965,40.83519300000003],[-77.801507027373,40.84545637688221],[-77.795809,40.847585000000024],[-77.777769,40.84918200000001],[-77.764264,40.832657000000026],[-77.751958,40.82682700000002],[-77.750845,40.82358900000002],[-77.73814323238649,40.82958328705461],[-77.729135,40.83383300000002],[-77.693361,40.86131800000001],[-77.67625118641699,40.87239155026422],[-77.6672,40.87824700000003],[-77.644831,40.88985300000004],[-77.636835,40.89602100000003],[-77.630601,40.904658000000005],[-77.622073,40.912678],[-77.61637887231313,40.91586129365128],[-77.559934,40.94738500000002],[-77.54812749378375,40.9531226849366],[-77.514275,40.96956200000001],[-77.5381991361974,40.9974684342351],[-77.559094,41.02181800000004],[-77.579952,41.04698200000001],[-77.57476968763467,41.05001576492847],[-77.561889,41.05755400000003],[-77.567014,41.06499600000002],[-77.573565,41.06868200000003],[-77.581428,41.06711500000002],[-77.583821,41.07009700000003],[-77.592001,41.07162700000003],[-77.591916,41.07443900000002],[-77.595262,41.07771100000002],[-77.61076151608825,41.08519654843463],[-77.61203,41.085809000000026],[-77.620948,41.08908700000002],[-77.621759,41.09118500000004],[-77.647666,41.09808000000002],[-77.650067,41.09755300000004],[-77.65897,41.10095500000002],[-77.660812,41.10675800000003],[-77.667092,41.10828100000003],[-77.672722,41.105200000000025],[-77.6805057804823,41.108097995745815],[-77.683751,41.10930600000001],[-77.690389,41.106249],[-77.69549,41.107600000000026],[-77.706225,41.11387200000002],[-77.712266,41.11034600000003],[-77.713941,41.10597500000002],[-77.717759,41.10495400000002],[-77.724784,41.10739300000002],[-77.725608,41.11014200000001],[-77.730237,41.111368000000006],[-77.736986,41.10790600000003],[-77.741911,41.10761400000003],[-77.74641070001273,41.111502414122235],[-77.759338,41.122670000000014],[-77.776813,41.14514700000002],[-77.785338,41.14152300000003],[-77.789563,41.14212700000004],[-77.78971780872291,41.154285112873296],[-77.790009,41.177142000000025],[-77.797615,41.17715100000003],[-77.79856,41.181950000000015],[-77.83862619449584,41.180306632975274],[-77.861939,41.17934400000001],[-77.892724,41.17825900000003],[-77.895213,41.182715000000044],[-77.89581663100336,41.20074090804716],[-77.897315,41.245443000000016],[-77.897776,41.25215000000002],[-77.9094698367339,41.24368937136303],[-77.913787,41.24056500000003],[-77.920167,41.22923900000003],[-77.923631,41.22642700000002],[-77.936261,41.225998000000004],[-77.939008,41.222707000000035],[-77.935615,41.21489100000002],[-77.935656,41.21174100000002],[-77.940833,41.209436000000004],[-77.950606,41.21379100000003],[-77.95553942696763,41.21737214665105],[-77.955615,41.217427000000015],[-77.959438,41.21749700000002],[-77.96565,41.20958400000003],[-77.973078,41.20418800000003],[-77.973588,41.18909300000003],[-77.970833,41.17831400000003],[-77.973012,41.17302100000003],[-77.984187,41.17023600000001],[-77.98540615603494,41.167126930477],[-77.986711,41.163799000000004],[-77.990272,41.161704],[-77.997908,41.16336900000004],[-78.001796,41.15813300000003],[-78.000329,41.150950000000016],[-78.003569,41.14485600000001],[-78.009105,41.14331600000002],[-78.012021,41.145071000000044],[-78.014476,41.15199600000001],[-78.017348,41.15318700000004],[-78.028594,41.15032500000002],[-78.03403276791123,41.15339208524842],[-78.034969,41.153920000000014],[-78.038203,41.153633000000035],[-78.061007,41.174539000000024],[-78.08301868273429,41.203369067349065],[-78.093381,41.21693100000004],[-78.06355493020708,41.259358896391845],[-78.062425,41.26096500000003],[-78.048922,41.28079200000002],[-78.043541,41.28798000000002],[-78.02408089408564,41.31565206133967],[-78.013264,41.33102200000004],[-77.988786,41.36745300000001],[-77.9887021773511,41.37289915642072],[-77.988462,41.388499000000024],[-77.98886906232335,41.43653121612127],[-77.989194,41.47482200000003],[-78.02301124741851,41.475332735080585],[-78.025036,41.47536300000003],[-78.050442,41.475462000000014],[-78.080471,41.50326200000002],[-78.08653656904181,41.50900293653065],[-78.102917,41.52450000000004],[-78.121332,41.541314000000035],[-78.13965485407442,41.55868141184422],[-78.141741,41.56065800000001],[-78.19286944345312,41.6083295095897],[-78.203422,41.61815700000003],[-78.203626,41.625064000000044],[-78.20390184047578,41.669186336537805],[-78.20430032512233,41.732819711761465],[-78.204372,41.744252000000024],[-78.20506212174705,41.79645111984521],[-78.205353,41.818427000000035],[-78.205697,41.858892000000026],[-78.20574316355047,41.86008281319069],[-78.20637,41.876248000000004],[-78.20645993262576,41.92371009844889],[-78.20658071845484,41.987344105800645],[-78.206604,41.999595000000014],[-78.13746809009147,42.00032165369909],[-78.12473099999796,42.00045099999998],[-78.05184902818613,41.99964976177289],[-78.031429,41.99941700000002],[-77.99750800000221,41.99875800000004],[-77.96623623111262,41.998718741453075],[-77.92966778223048,41.998662068148306],[-77.904659,41.998366],[-77.88061347529882,41.998426497455625],[-77.81718699999999,41.99856200000002],[-77.79498787238221,41.99849027009161],[-77.7767099999987,41.99842800000003],[-77.70936489507113,41.99890566460809],[-77.63527152296136,41.99938571022525],[-77.62374072743391,41.999390237912145],[-77.5847370000001,41.999397],[-77.5381164383862,41.99979865395649],[-77.505308,42.00006999999999],[-77.45249037161683,42.000050073279446],[-77.36686234285722,41.99996632485036],[-77.35090789923889,41.99994368772128],[-77.305328,41.99971500000002],[-77.28123556296273,41.99971786346147],[-77.23145951361337,41.99970782398166],[-77.19560861017735,41.99954150234193],[-77.171024,41.99942100000001],[-77.124693,41.999395],[-77.1099859679667,41.999654898590336],[-77.063676,42.000461],[-77.03110900000055,42.00040000000001],[-77.02437155661774,42.00049379923287],[-76.93875619149314,42.00165140895886],[-76.93720595731098,42.00167178299746],[-76.87077288373081,42.00177341647378],[-76.85312623081286,42.00173604129003],[-76.785577,42.00156800000002],[-76.7674965056685,42.001630334753926],[-76.749675,42.00168900000002],[-76.68187059200852,42.0011433516509],[-76.62467,42.000651999999995],[-76.59624664492846,42.000444379355855],[-76.55808568178021,42.000154601218775],[-76.51062723812967,41.999559164754174],[-76.445259,41.998706999999975],[-76.42501081148535,41.998626244380624],[-76.37465899998288,41.99840999999998],[-76.33938561857595,41.99840567465222],[-76.2537597417646,41.998350252993994],[-76.249657,41.99834599999999],[-76.190355,41.99852200000003],[-76.16813508219116,41.99867037920514],[-76.12374057142847,41.99895400000002],[-76.09097300016985,41.998779000000944],[-76.08251111108407,41.99880231959561],[-75.99688492277714,41.999003330721784],[-75.98025,41.99903500000004],[-75.91125973866957,41.998711477687486],[-75.890492,41.99860600000003],[-75.870677,41.99882800000001],[-75.83327099991496,41.99833099999957],[-75.82564239597852,41.99829463615223],[-75.742217,41.99786400000004],[-75.74001903084367,41.99788124665055],[-75.655588,41.99851200000002],[-75.65439773468819,41.99852398003135],[-75.61031600000534,41.998958999999964],[-75.48314857372002,41.99920665856382]]]},"properties":{"district":12}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.392459,39.72157800000003],[-79.389459,39.72707800000003],[-79.392659,39.732678000000035],[-79.409959,39.73497800000002],[-79.408859,39.74107700000001],[-79.404359,39.74297700000002],[-79.394058,39.74327700000004],[-79.393658,39.74567700000002],[-79.399858,39.75557700000002],[-79.398358,39.75847700000002],[-79.386258,39.76187700000002],[-79.378658,39.768877000000025],[-79.380258,39.77317700000003],[-79.391658,39.77797700000001],[-79.395358,39.782477000000014],[-79.392958,39.78427700000001],[-79.384558,39.78227700000003],[-79.382058,39.78347700000002],[-79.380058,39.79007700000003],[-79.370157,39.78577700000003],[-79.356757,39.78147700000003],[-79.352357,39.78447700000003],[-79.354357,39.78847700000003],[-79.362557,39.788477000000015],[-79.365257,39.79007700000003],[-79.368257,39.79587700000001],[-79.368849,39.80145800000001],[-79.363957,39.806777000000004],[-79.365505,39.81375300000002],[-79.365695,39.82054600000002],[-79.371601,39.82707600000002],[-79.375163,39.827976000000014],[-79.381233,39.82687600000001],[-79.38305,39.83002700000002],[-79.381956,39.83686100000002],[-79.389589,39.83963600000002],[-79.393658,39.84347600000001],[-79.409782,39.84929800000002],[-79.417558,39.853776000000025],[-79.398718,39.900628000000026],[-79.374757,39.93317500000002],[-79.343737,39.974301000000025],[-79.32525,39.999872000000046],[-79.296131,40.03675000000001],[-79.29359,40.04039800000003],[-79.31609,40.043840000000024],[-79.32368,40.04078000000002],[-79.33864,40.042150000000035],[-79.34278,40.04445000000001],[-79.34445,40.050889999999995],[-79.35181,40.06897000000002],[-79.355627,40.07435900000003],[-79.367463,40.08019800000003],[-79.37252,40.08137000000002],[-79.393711,40.09090100000002],[-79.397372,40.09513400000004],[-79.40131,40.102230000000034],[-79.41539,40.10460000000001],[-79.421063,40.109426000000006],[-79.401174,40.11944700000003],[-79.396562,40.13435100000001],[-79.402049,40.142339000000014],[-79.403239,40.149963000000035],[-79.398352,40.16165600000002],[-79.395877,40.170386000000036],[-79.39487,40.17744700000003],[-79.396965,40.18619900000004],[-79.38699,40.19764200000002],[-79.386333,40.20276800000002],[-79.383892,40.205747000000024],[-79.386793,40.20953500000001],[-79.39913,40.20895200000002],[-79.409939,40.210116000000035],[-79.408821,40.21391500000002],[-79.413641,40.21448900000003],[-79.41669,40.21875000000002],[-79.424477,40.22347200000001],[-79.426769,40.22666500000003],[-79.437346,40.23372400000003],[-79.455373,40.233726000000026],[-79.448596,40.23832000000002],[-79.439366,40.24307700000001],[-79.448127,40.24345200000003],[-79.446845,40.24903900000003],[-79.441093,40.25365100000003],[-79.44614,40.256554000000015],[-79.445592,40.26095100000001],[-79.434858,40.267835000000034],[-79.433081,40.27181000000002],[-79.424123,40.277953000000025],[-79.41695,40.279857000000035],[-79.415629,40.28259600000001],[-79.407753,40.28245100000004],[-79.370121,40.287669000000015],[-79.371431,40.295694000000026],[-79.365237,40.29732600000003],[-79.371104,40.30023000000003],[-79.368524,40.302712000000035],[-79.371118,40.31292000000001],[-79.371288,40.320672000000016],[-79.383952,40.325372000000044],[-79.387745,40.32848000000005],[-79.393985,40.323148000000025],[-79.403919,40.32411600000001],[-79.404502,40.327645000000004],[-79.398609,40.327064000000036],[-79.400036,40.33698000000002],[-79.391621,40.34280700000003],[-79.387951,40.34803700000002],[-79.382565,40.35274300000002],[-79.382405,40.35604500000002],[-79.387555,40.35650100000001],[-79.389184,40.35371400000001],[-79.394067,40.35236300000002],[-79.405031,40.356110000000015],[-79.406255,40.36194100000004],[-79.414495,40.37141300000002],[-79.414912,40.37456100000002],[-79.421782,40.37517100000004],[-79.426851,40.37974700000003],[-79.424603,40.386298000000025],[-79.428767,40.39230300000002],[-79.43398,40.395388000000004],[-79.433941,40.39956900000003],[-79.438647,40.40476600000004],[-79.43092,40.405403000000014],[-79.429226,40.408038000000005],[-79.435391,40.414628000000015],[-79.440326,40.41356100000003],[-79.444172,40.41557600000002],[-79.425557,40.42268900000001],[-79.390451,40.435526000000024],[-79.373473,40.44220300000003],[-79.373741,40.45385300000003],[-79.369591,40.456604000000006],[-79.366334,40.46596600000002],[-79.36707,40.47509000000002],[-79.365925,40.477474000000015],[-79.358595,40.47791600000002],[-79.358029,40.47087900000003],[-79.362275,40.46006100000002],[-79.360526,40.454095000000024],[-79.353851,40.45170100000001],[-79.347185,40.45273100000003],[-79.345926,40.45482500000002],[-79.345408,40.46721200000002],[-79.342093,40.47012400000002],[-79.33844,40.469998000000004],[-79.331732,40.46188900000001],[-79.330267,40.453851000000036],[-79.325409,40.45269900000002],[-79.322786,40.45603200000002],[-79.3161,40.45925300000001],[-79.30245,40.461333000000025],[-79.29974,40.46012700000003],[-79.298014,40.455023000000025],[-79.301677,40.45135600000002],[-79.299897,40.44491200000002],[-79.301751,40.43929100000003],[-79.299435,40.434515],[-79.289409,40.43667300000003],[-79.285483,40.441759000000026],[-79.282848,40.44276900000002],[-79.272605,40.43908200000003],[-79.269351,40.428517000000014],[-79.273542,40.42292500000004],[-79.272856,40.41841100000001],[-79.263281,40.41676300000003],[-79.254114,40.42228800000004],[-79.247568,40.432080000000006],[-79.240175,40.429991000000015],[-79.233203,40.43074100000002],[-79.214783,40.42445800000003],[-79.210876,40.421250000000036],[-79.206513,40.415032000000025],[-79.199233,40.410780000000024],[-79.191197,40.41522100000002],[-79.185372,40.41425000000001],[-79.173713,40.41062200000002],[-79.164369,40.41022400000003],[-79.155789,40.41176500000001],[-79.152051,40.408766000000014],[-79.154002,40.40170100000001],[-79.147892,40.39760000000004],[-79.135005,40.39830400000004],[-79.124749,40.39536100000003],[-79.117,40.394243000000024],[-79.114906,40.389879000000036],[-79.122503,40.38935400000001],[-79.128677,40.38505600000002],[-79.127116,40.37506800000002],[-79.121634,40.37057600000003],[-79.109309,40.37331800000002],[-79.102153,40.36886799999999],[-79.096769,40.37072500000001],[-79.096116,40.374035000000035],[-79.090527,40.38024300000002],[-79.088312,40.386553000000035],[-79.082965,40.389582000000026],[-79.074483,40.38582000000003],[-79.069885,40.38041400000004],[-79.064553,40.37900200000001],[-79.058481,40.380868000000014],[-79.057109,40.38429299999999],[-79.051885,40.38928600000002],[-79.042436,40.391382000000036],[-79.039835,40.39627300000004],[-79.036328,40.39599600000001],[-79.032246,40.40195700000003],[-79.027714,40.40613600000004],[-79.034262,40.409754000000014],[-79.033007,40.41677400000002],[-79.027837,40.41957400000002],[-79.016617,40.42027900000003],[-78.996637,40.41325600000003],[-78.98887,40.41197400000001],[-78.982324,40.40577900000001],[-78.974459,40.39490700000004],[-78.892962,40.39342800000002],[-78.865579,40.392546000000024],[-78.854753,40.39253200000003],[-78.86317,40.388257000000046],[-78.865723,40.385210000000036],[-78.868911,40.37706100000001],[-78.878164,40.37269800000003],[-78.881407,40.362804000000025],[-78.880506,40.36067400000002],[-78.881804,40.35252800000003],[-78.876197,40.353502000000006],[-78.869778,40.35058500000003],[-78.857435,40.35436400000004],[-78.860446,40.358973000000006],[-78.855577,40.364177000000026],[-78.857658,40.36969100000001],[-78.854838,40.37167800000003],[-78.854607,40.376588000000034],[-78.852446,40.37906800000003],[-78.843471,40.37812400000003],[-78.836527,40.37947400000001],[-78.830643,40.37451500000004],[-78.824894,40.373594000000004],[-78.819917,40.371191000000024],[-78.82477,40.36832200000001],[-78.828106,40.362580000000015],[-78.825002,40.36077900000001],[-78.820573,40.36292300000002],[-78.819483,40.36698000000002],[-78.80893,40.369397000000035],[-78.804472,40.36834900000001],[-78.800865,40.36200000000003],[-78.823023,40.342507000000026],[-78.838973,40.32949600000002],[-78.861466,40.31023400000001],[-78.871036,40.303586000000024],[-78.880995,40.30165000000002],[-78.885039,40.29080400000003],[-78.903884,40.27524200000002],[-78.896546,40.271650000000015],[-78.894414,40.26833900000003],[-78.897161,40.263732000000026],[-78.892568,40.25779600000001],[-78.890836,40.249539000000034],[-78.884862,40.24463100000002],[-78.879877,40.24724900000003],[-78.868662,40.248883000000035],[-78.864941,40.24470100000002],[-78.860247,40.242990000000034],[-78.85352,40.24572400000003],[-78.848041,40.24490100000002],[-78.791543,40.244176000000024],[-78.760311,40.243171],[-78.658409,40.24293300000003],[-78.643998,40.25944600000002],[-78.651868,40.28167800000001],[-78.642948,40.28339600000003],[-78.635385,40.30949800000002],[-78.625672,40.31931800000001],[-78.618093,40.33031900000004],[-78.618095,40.33209900000003],[-78.608869,40.34525800000001],[-78.602353,40.35297300000002],[-78.564085,40.37060900000003],[-78.553105,40.42983100000004],[-78.55973,40.43876500000002],[-78.548463,40.461854000000024],[-78.541978,40.46974000000004],[-78.540448,40.47638700000004],[-78.544311,40.48279100000001],[-78.544715,40.48668200000002],[-78.541455,40.497070000000036],[-78.53984,40.506154000000016],[-78.530635,40.51886400000003],[-78.522759,40.523280000000014],[-78.518455,40.528795000000024],[-78.512808,40.53095700000003],[-78.495938,40.54016000000002],[-78.485958,40.540847000000035],[-78.474087,40.55483300000003],[-78.449665,40.58845000000004],[-78.441075,40.60072300000003],[-78.447745,40.624331000000026],[-78.441636,40.63011100000001],[-78.440167,40.63876100000004],[-78.442156,40.64119200000003],[-78.436997,40.64675200000002],[-78.432457,40.64775600000003],[-78.424185,40.64754700000004],[-78.417124,40.64535000000002],[-78.408629,40.644349],[-78.38417,40.67584400000001],[-78.348389,40.723430000000015],[-78.359912,40.73259200000002],[-78.221735,40.73937500000001],[-78.131834,40.74301700000004],[-78.116208,40.73937800000003],[-78.085263,40.73092000000002],[-77.94425,40.691557000000024],[-77.894282,40.716203000000014],[-77.85922,40.730819000000025],[-77.824506,40.743681000000024],[-77.768549,40.71946600000004],[-77.718677,40.72737200000002],[-77.71026,40.714632000000016],[-77.699407,40.72116500000001],[-77.695447,40.72246800000001],[-77.681334,40.72975800000001],[-77.676611,40.716452000000004],[-77.70117,40.70498200000003],[-77.699239,40.69806500000001],[-77.703066,40.692680000000024],[-77.708356,40.69048800000001],[-77.703787,40.67993600000001],[-77.685346,40.684904000000024],[-77.682708,40.68271700000002],[-77.68708,40.676750000000006],[-77.690614,40.675036000000034],[-77.710846,40.66200300000001],[-77.720737,40.65796800000003],[-77.720434,40.65457500000004],[-77.728193,40.64857300000001],[-77.735142,40.64474100000002],[-77.75162,40.63230000000003],[-77.758907,40.629589000000024],[-77.77248,40.62593200000003],[-77.779853,40.61965500000002],[-77.801329,40.59956900000001],[-77.811561,40.58918200000001],[-77.81944,40.58008400000002],[-77.8216,40.578931000000026],[-77.832545,40.56253400000003],[-77.841827,40.550035000000015],[-77.816513,40.500074000000026],[-77.828245,40.49155800000003],[-77.835874,40.48423200000002],[-77.844137,40.47344700000002],[-77.870182,40.44524400000002],[-77.888746,40.42866000000001],[-77.896369,40.41777800000001],[-77.90805,40.41401800000001],[-77.912416,40.408176000000005],[-77.913844,40.39867900000004],[-77.889116,40.398965000000025],[-77.887717,40.391358000000004],[-77.877701,40.39355000000001],[-77.870289,40.392261000000026],[-77.872533,40.38557000000002],[-77.872558,40.38119600000003],[-77.865195,40.37153000000003],[-77.861203,40.369842000000034],[-77.856914,40.36522800000001],[-77.852906,40.36479000000001],[-77.845221,40.36876600000001],[-77.838343,40.36903000000004],[-77.829837,40.36389500000003],[-77.818636,40.360542000000024],[-77.814698,40.36248900000003],[-77.810393,40.36859100000003],[-77.761732,40.368722000000005],[-77.75212,40.378545000000024],[-77.728033,40.32300900000002],[-77.72287,40.310085000000015],[-77.702857,40.263654000000024],[-77.698954,40.26577500000002],[-77.685163,40.27630400000003],[-77.67586,40.28469900000002],[-77.67181,40.28988500000001],[-77.664195,40.28047900000001],[-77.664275,40.27822700000002],[-77.656416,40.27039300000002],[-77.668976,40.26005800000001],[-77.671155,40.257569000000025],[-77.667711,40.25200100000003],[-77.665494,40.25204900000002],[-77.653447,40.25740700000003],[-77.649502,40.257551000000014],[-77.645023,40.25393200000001],[-77.64999,40.24795700000001],[-77.645402,40.238928000000016],[-77.648878,40.23331900000002],[-77.649951,40.226283000000016],[-77.647642,40.222477000000005],[-77.643394,40.223165000000016],[-77.642831,40.21814000000001],[-77.639893,40.217678000000035],[-77.616167,40.232616],[-77.609171,40.23275300000001],[-77.60277,40.227488000000044],[-77.604888,40.22492200000002],[-77.604768,40.206033000000026],[-77.614665,40.19854900000002],[-77.605448,40.185362],[-77.593549,40.19201000000002],[-77.589954,40.19651400000002],[-77.580439,40.20385600000004],[-77.578341,40.206626000000014],[-77.558085,40.21863800000001],[-77.555823,40.21919000000002],[-77.536868,40.219072000000025],[-77.52896,40.222999000000016],[-77.52675,40.22558700000002],[-77.515502,40.23050400000002],[-77.510109,40.23441600000002],[-77.497315,40.24023400000002],[-77.473596,40.25421600000003],[-77.457825,40.26612500000003],[-77.432441,40.28245500000002],[-77.426595,40.28661000000002],[-77.413778,40.29389200000004],[-77.394445,40.30350600000002],[-77.375693,40.31069100000001],[-77.366018,40.31356900000003],[-77.360082,40.31407500000004],[-77.357635,40.312476000000025],[-77.359873,40.30668400000002],[-77.364762,40.30254100000002],[-77.386967,40.29035100000003],[-77.402893,40.28012800000001],[-77.409304,40.274554000000016],[-77.411044,40.269315000000034],[-77.419795,40.26407000000002],[-77.423177,40.257930000000016],[-77.420845,40.255368],[-77.413859,40.25521500000003],[-77.402457,40.25695400000002],[-77.385114,40.26271200000002],[-77.360718,40.27470100000004],[-77.354299,40.27927800000002],[-77.340647,40.286915000000036],[-77.328561,40.29231100000001],[-77.322769,40.29200100000003],[-77.323924,40.28860500000002],[-77.330696,40.280588000000016],[-77.330491,40.275596000000014],[-77.317288,40.26759000000004],[-77.312235,40.26774000000002],[-77.291576,40.27280200000003],[-77.270057,40.27865200000001],[-77.241691,40.282847000000004],[-77.239163,40.28410200000001],[-77.230902,40.283571000000045],[-77.210802,40.285898000000024],[-77.204687,40.28704700000002],[-77.203723,40.280131000000026],[-77.199748,40.27688100000001],[-77.197095,40.26928600000002],[-77.191588,40.26404100000002],[-77.188424,40.25146700000002],[-77.19421,40.24927100000002],[-77.194844,40.243270000000024],[-77.198654,40.242322000000016],[-77.20381,40.24826900000002],[-77.206771,40.24950500000001],[-77.214466,40.244879],[-77.214621,40.23912300000001],[-77.217087,40.23731000000004],[-77.218526,40.229887000000005],[-77.235658,40.225764000000034],[-77.238538,40.22726800000004],[-77.242818,40.22422800000003],[-77.238516,40.22160700000003],[-77.238633,40.21834700000002],[-77.241967,40.210244000000024],[-77.24851,40.20721500000002],[-77.242863,40.186135000000036],[-77.235856,40.16768800000004],[-77.219459,40.137446000000025],[-77.178163,40.036901000000036],[-77.160685,40.05320800000002],[-77.137425,40.06994500000001],[-77.127916,40.06868900000003],[-77.123444,40.06619300000003],[-77.106307,40.05975900000003],[-77.104316,40.05795700000003],[-77.092628,40.05392000000004],[-77.089166,40.05155500000002],[-77.080812,40.043222000000036],[-77.078563,40.03786800000003],[-77.072354,40.034009000000026],[-77.068485,40.02887200000003],[-77.060063,40.02593400000004],[-77.056181,40.023438000000006],[-77.04069,40.021320000000024],[-77.033557,40.01886200000004],[-77.026241,40.018381],[-77.018648,40.013947],[-77.010547,40.00048100000004],[-76.992672,39.97319700000003],[-76.986105,39.964382000000015],[-76.966202,39.93519200000002],[-76.969596,39.937251000000025],[-76.97225,39.925714000000006],[-76.968777,39.921286000000016],[-76.967858,39.91550000000004],[-76.971298,39.91482700000002],[-76.975806,39.908389000000014],[-76.981428,39.90502800000003],[-76.983962,39.90190400000004],[-76.982237,39.897612000000024],[-76.98387,39.89493000000003],[-76.98033,39.88690800000003],[-76.977835,39.88570700000002],[-76.977321,39.879693000000024],[-76.972536,39.87291400000002],[-76.963509,39.87418200000002],[-76.962105,39.86502300000002],[-76.954932,39.856850000000044],[-76.96484,39.85077200000002],[-76.974083,39.84966000000001],[-76.978543,39.84772700000003],[-76.983043,39.84135300000002],[-76.990663,39.83434800000002],[-76.998377,39.83211500000004],[-76.999374,39.828585000000025],[-76.999944,39.81569800000002],[-76.99929,39.788449000000014],[-76.999099,39.76606400000003],[-76.999497,39.74640200000003],[-76.999465,39.720111000000024],[-77.03044982032335,39.7199407442654],[-77.058204,39.72019999999999],[-77.21680599999999,39.71999799999999],[-77.46261647413759,39.72002449910722],[-77.53599012942219,39.72013977134027],[-77.60536914260439,39.720465255129874],[-77.768534,39.721358],[-77.80276000000016,39.72176200000001],[-77.874719,39.722218999999996],[-77.966442,39.722385000000045],[-78.075771,39.722300999999995],[-78.20208410025448,39.722415266436975],[-78.25,39.722698000000015],[-78.26307768787275,39.722565249349714],[-78.315138999998,39.722877],[-78.337111,39.722460999999996],[-78.408653,39.72279300000003],[-78.438839,39.722481],[-78.44540099969163,39.722829999983595],[-78.49610699999273,39.722870000000015],[-78.537702,39.722489999999986],[-78.546415,39.722868999999996],[-78.57593358521859,39.722561135159076],[-78.62474,39.722946000000015],[-78.7372969500617,39.72302884369445],[-78.85624099999937,39.722995999999995],[-78.931176,39.722775000000006],[-79.04554799999556,39.722882999999996],[-79.26304661539474,39.721972371054754],[-79.313456,39.721979000000026],[-79.392459,39.72157800000003]]]},"properties":{"district":13}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.51899534545389,40.47736329935195],[-80.466802,40.477341000000024],[-80.438175,40.47778300000002],[-80.393513,40.47728600000003],[-80.360873,40.477539],[-80.31071,40.437124000000004],[-80.287991,40.41848400000002],[-80.272086,40.40601900000002],[-80.227765,40.36973300000004],[-80.183466,40.33277700000001],[-80.18221,40.33221600000004],[-80.114378,40.311668999999995],[-80.068775,40.29846800000001],[-80.040329,40.28978500000002],[-79.957724,40.26557200000002],[-79.914139,40.25251800000003],[-79.916379,40.24999000000002],[-79.928347,40.243782000000024],[-79.934946,40.242058000000014],[-79.953788,40.24077400000004],[-79.964764,40.237670000000016],[-79.970652,40.23181400000003],[-79.97021,40.22637900000003],[-79.968335,40.22382000000003],[-79.956073,40.213582000000024],[-79.950382,40.211559],[-79.938683,40.20981400000002],[-79.927883,40.20682200000002],[-79.918346,40.20055500000004],[-79.912586,40.19776700000001],[-79.896448,40.194481000000025],[-79.888986,40.19482300000002],[-79.881913,40.19651900000002],[-79.870585,40.19741500000003],[-79.840423,40.207989000000026],[-79.805879,40.21936600000002],[-79.781761,40.22771100000001],[-79.803539,40.231788000000016],[-79.806311,40.233446000000015],[-79.806997,40.237524000000015],[-79.798463,40.24771500000002],[-79.796099,40.25336500000003],[-79.788015,40.26130000000002],[-79.788779,40.26531200000003],[-79.794853,40.271784],[-79.796515,40.279183000000025],[-79.794715,40.281683000000015],[-79.781199,40.28196600000003],[-79.774923,40.28648900000003],[-79.775963,40.28921000000002],[-79.782304,40.29467400000002],[-79.787853,40.29769300000004],[-79.786103,40.30703400000001],[-79.780145,40.33116200000001],[-79.771082,40.37541900000001],[-79.765943,40.38418800000003],[-79.765137,40.389468000000036],[-79.762068,40.392768000000025],[-79.753776,40.388538000000004],[-79.748077,40.39086600000004],[-79.744702,40.395900000000026],[-79.732528,40.39953600000001],[-79.732278,40.40522800000002],[-79.727665,40.412495000000014],[-79.722338,40.41491900000001],[-79.718097,40.41360700000003],[-79.715987,40.41731900000004],[-79.707042,40.42242600000005],[-79.704739,40.42723100000001],[-79.703655,40.449331000000015],[-79.702131,40.48963500000003],[-79.702264,40.51789100000003],[-79.701624,40.52544900000005],[-79.707902,40.53066300000003],[-79.714638,40.53316600000002],[-79.722387,40.54204300000004],[-79.729505,40.54391300000003],[-79.734894,40.54854000000002],[-79.742639,40.54871800000003],[-79.751096,40.551683000000025],[-79.756957,40.550155],[-79.765415,40.54985400000003],[-79.77187,40.56296700000004],[-79.77437,40.56976700000003],[-79.773331,40.58075800000004],[-79.770371,40.58636600000002],[-79.76377,40.59296600000001],[-79.749187,40.59897000000004],[-79.74117,40.60066600000001],[-79.728579,40.60477400000002],[-79.72127,40.607966000000005],[-79.713436,40.619287000000014],[-79.702691,40.62602300000002],[-79.69378,40.635276000000026],[-79.688777,40.644385000000014],[-79.690842,40.653329000000014],[-79.695226,40.66032100000003],[-79.695594,40.66419300000002],[-79.692587,40.66973200000003],[-79.680146,40.67194400000002],[-79.668345,40.68004900000003],[-79.662457,40.67832100000001],[-79.652953,40.67190500000003],[-79.644041,40.66884900000001],[-79.638137,40.665601000000024],[-79.636056,40.65448100000002],[-79.628616,40.64867300000001],[-79.622216,40.64569700000001],[-79.613128,40.643617000000006],[-79.609496,40.639809000000035],[-79.610135,40.63100900000003],[-79.608952,40.62595400000002],[-79.602103,40.62449700000002],[-79.596359,40.628321000000014],[-79.591479,40.63433700000002],[-79.586935,40.63673700000002],[-79.582823,40.63316900000004],[-79.588663,40.625521000000006],[-79.589559,40.61659300000001],[-79.583782,40.61041400000004],[-79.584375,40.60704100000003],[-79.581191,40.60252900000001],[-79.574678,40.602625000000025],[-79.570332,40.606721],[-79.566006,40.60795300000003],[-79.558502,40.604993000000015],[-79.551829,40.604705000000024],[-79.551158,40.602145000000036],[-79.556214,40.59980900000002],[-79.56639,40.592961000000024],[-79.570662,40.58374500000002],[-79.56111,40.56411300000003],[-79.557286,40.56096100000001],[-79.536213,40.55033300000002],[-79.526249,40.54236400000002],[-79.520992,40.54130500000002],[-79.511912,40.54268300000001],[-79.50538,40.535937000000025],[-79.498925,40.53215200000002],[-79.49795,40.52653300000001],[-79.49461,40.52488000000004],[-79.488697,40.52607300000002],[-79.485706,40.52837600000003],[-79.484729,40.53419800000004],[-79.479337,40.537038000000024],[-79.476918,40.53577900000003],[-79.477877,40.53152800000004],[-79.475739,40.52953800000003],[-79.464289,40.53408000000003],[-79.455033,40.534107000000006],[-79.451162,40.53153400000004],[-79.44964,40.52679200000002],[-79.456545,40.52323700000004],[-79.459738,40.51673700000002],[-79.454548,40.50701400000001],[-79.455297,40.49661600000002],[-79.452462,40.48943000000003],[-79.454011,40.485507000000034],[-79.451747,40.48230700000002],[-79.447537,40.48081100000002],[-79.43846,40.48673700000002],[-79.430628,40.48904600000001],[-79.423574,40.47332900000002],[-79.421315,40.47059800000002],[-79.415679,40.470575000000025],[-79.412306,40.47296900000001],[-79.406631,40.47430100000003],[-79.404308,40.47254300000002],[-79.400956,40.46553400000001],[-79.397926,40.46281500000002],[-79.395461,40.457132000000044],[-79.391102,40.454412000000026],[-79.381753,40.452697000000015],[-79.373741,40.45385300000003],[-79.373473,40.44220300000003],[-79.390451,40.435526000000024],[-79.425557,40.42268900000001],[-79.444172,40.41557600000002],[-79.440326,40.41356100000003],[-79.435391,40.414628000000015],[-79.429226,40.408038000000005],[-79.43092,40.405403000000014],[-79.438647,40.40476600000004],[-79.433941,40.39956900000003],[-79.43398,40.395388000000004],[-79.428767,40.39230300000002],[-79.424603,40.386298000000025],[-79.426851,40.37974700000003],[-79.421782,40.37517100000004],[-79.414912,40.37456100000002],[-79.414495,40.37141300000002],[-79.406255,40.36194100000004],[-79.405031,40.356110000000015],[-79.394067,40.35236300000002],[-79.389184,40.35371400000001],[-79.387555,40.35650100000001],[-79.382405,40.35604500000002],[-79.382565,40.35274300000002],[-79.387951,40.34803700000002],[-79.391621,40.34280700000003],[-79.400036,40.33698000000002],[-79.398609,40.327064000000036],[-79.404502,40.327645000000004],[-79.403919,40.32411600000001],[-79.393985,40.323148000000025],[-79.387745,40.32848000000005],[-79.383952,40.325372000000044],[-79.371288,40.320672000000016],[-79.371118,40.31292000000001],[-79.368524,40.302712000000035],[-79.371104,40.30023000000003],[-79.365237,40.29732600000003],[-79.371431,40.295694000000026],[-79.370121,40.287669000000015],[-79.407753,40.28245100000004],[-79.415629,40.28259600000001],[-79.41695,40.279857000000035],[-79.424123,40.277953000000025],[-79.433081,40.27181000000002],[-79.434858,40.267835000000034],[-79.445592,40.26095100000001],[-79.44614,40.256554000000015],[-79.441093,40.25365100000003],[-79.446845,40.24903900000003],[-79.448127,40.24345200000003],[-79.439366,40.24307700000001],[-79.448596,40.23832000000002],[-79.455373,40.233726000000026],[-79.437346,40.23372400000003],[-79.426769,40.22666500000003],[-79.424477,40.22347200000001],[-79.41669,40.21875000000002],[-79.413641,40.21448900000003],[-79.408821,40.21391500000002],[-79.409939,40.210116000000035],[-79.39913,40.20895200000002],[-79.386793,40.20953500000001],[-79.383892,40.205747000000024],[-79.386333,40.20276800000002],[-79.38699,40.19764200000002],[-79.396965,40.18619900000004],[-79.39487,40.17744700000003],[-79.395877,40.170386000000036],[-79.398352,40.16165600000002],[-79.403239,40.149963000000035],[-79.402049,40.142339000000014],[-79.396562,40.13435100000001],[-79.401174,40.11944700000003],[-79.421063,40.109426000000006],[-79.41539,40.10460000000001],[-79.40131,40.102230000000034],[-79.397372,40.09513400000004],[-79.393711,40.09090100000002],[-79.37252,40.08137000000002],[-79.367463,40.08019800000003],[-79.355627,40.07435900000003],[-79.35181,40.06897000000002],[-79.34445,40.050889999999995],[-79.34278,40.04445000000001],[-79.33864,40.042150000000035],[-79.32368,40.04078000000002],[-79.31609,40.043840000000024],[-79.29359,40.04039800000003],[-79.296131,40.03675000000001],[-79.32525,39.999872000000046],[-79.343737,39.974301000000025],[-79.374757,39.93317500000002],[-79.398718,39.900628000000026],[-79.417558,39.853776000000025],[-79.409782,39.84929800000002],[-79.393658,39.84347600000001],[-79.389589,39.83963600000002],[-79.381956,39.83686100000002],[-79.38305,39.83002700000002],[-79.381233,39.82687600000001],[-79.375163,39.827976000000014],[-79.371601,39.82707600000002],[-79.365695,39.82054600000002],[-79.365505,39.81375300000002],[-79.363957,39.806777000000004],[-79.368849,39.80145800000001],[-79.368257,39.79587700000001],[-79.365257,39.79007700000003],[-79.362557,39.788477000000015],[-79.354357,39.78847700000003],[-79.352357,39.78447700000003],[-79.356757,39.78147700000003],[-79.370157,39.78577700000003],[-79.380058,39.79007700000003],[-79.382058,39.78347700000002],[-79.384558,39.78227700000003],[-79.392958,39.78427700000001],[-79.395358,39.782477000000014],[-79.391658,39.77797700000001],[-79.380258,39.77317700000003],[-79.378658,39.768877000000025],[-79.386258,39.76187700000002],[-79.398358,39.75847700000002],[-79.399858,39.75557700000002],[-79.393658,39.74567700000002],[-79.394058,39.74327700000004],[-79.404359,39.74297700000002],[-79.408859,39.74107700000001],[-79.409959,39.73497800000002],[-79.392659,39.732678000000035],[-79.389459,39.72707800000003],[-79.392459,39.72157800000003],[-79.41545999971123,39.72157800000003],[-79.476662,39.72107800000001],[-79.54846500002772,39.72077800000041],[-79.583866,39.721277000000015],[-79.76377400000516,39.72077600000002],[-79.793755,39.72086600000001],[-79.8529040000076,39.72071300000004],[-80.080146,39.72140100000002],[-80.30721113464948,39.72127651572365],[-80.369772,39.72143000000003],[-80.42138800002442,39.72118900000006],[-80.519342,39.72140300000083],[-80.519307,39.79756700000002],[-80.518891,39.890964],[-80.51924192115803,39.936183680765936],[-80.519024,40.003018],[-80.51911999999999,40.016409999998615],[-80.518895,40.11770400000024],[-80.519104,40.159671999999986],[-80.51905302909272,40.202362983898254],[-80.51903895082431,40.34210221376657],[-80.51789099999999,40.36757900000001],[-80.517991,40.398868],[-80.51768899999999,40.46221700000001],[-80.51899534545389,40.47736329935195]]]},"properties":{"district":14}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.61083887596035,41.99899177686173],[-79.56975054256388,41.99876588294973],[-79.5521970000007,41.99838400000014],[-79.53114215495991,41.99849689110927],[-79.47252,41.998253999999996],[-79.32545674415127,41.99866611109673],[-79.249772,41.998806999999985],[-79.207032,41.99905599999999],[-79.17856999999447,41.999458000000004],[-79.06126499999999,41.999259],[-78.983065,41.998948999999996],[-78.874759,41.997559],[-78.749754,41.99810900000002],[-78.59665000000567,41.99987699999995],[-78.40599288470374,41.99965050782815],[-78.308128,41.99941500000001],[-78.271204,41.998968000000005],[-78.206604,41.999595000000014],[-78.20637,41.876248000000004],[-78.205697,41.858892000000026],[-78.205353,41.818427000000035],[-78.204372,41.744252000000024],[-78.203626,41.625064000000044],[-78.203422,41.61815700000003],[-78.141741,41.56065800000001],[-78.121332,41.541314000000035],[-78.102917,41.52450000000004],[-78.080471,41.50326200000002],[-78.050442,41.475462000000014],[-78.025036,41.47536300000003],[-77.989194,41.47482200000003],[-77.988462,41.388499000000024],[-77.988786,41.36745300000001],[-78.013264,41.33102200000004],[-78.043541,41.28798000000002],[-78.048922,41.28079200000002],[-78.062425,41.26096500000003],[-78.093381,41.21693100000004],[-78.061007,41.174539000000024],[-78.038203,41.153633000000035],[-78.034969,41.153920000000014],[-78.028594,41.15032500000002],[-78.017348,41.15318700000004],[-78.014476,41.15199600000001],[-78.012021,41.145071000000044],[-78.009105,41.14331600000002],[-78.003569,41.14485600000001],[-78.000329,41.150950000000016],[-78.001796,41.15813300000003],[-77.997908,41.16336900000004],[-77.990272,41.161704],[-77.986711,41.163799000000004],[-77.984187,41.17023600000001],[-77.973012,41.17302100000003],[-77.970833,41.17831400000003],[-77.973588,41.18909300000003],[-77.973078,41.20418800000003],[-77.96565,41.20958400000003],[-77.959438,41.21749700000002],[-77.955615,41.217427000000015],[-77.950606,41.21379100000003],[-77.940833,41.209436000000004],[-77.935656,41.21174100000002],[-77.935615,41.21489100000002],[-77.939008,41.222707000000035],[-77.936261,41.225998000000004],[-77.923631,41.22642700000002],[-77.920167,41.22923900000003],[-77.913787,41.24056500000003],[-77.897776,41.25215000000002],[-77.897315,41.245443000000016],[-77.895213,41.182715000000044],[-77.892724,41.17825900000003],[-77.861939,41.17934400000001],[-77.79856,41.181950000000015],[-77.797615,41.17715100000003],[-77.790009,41.177142000000025],[-77.789563,41.14212700000004],[-77.785338,41.14152300000003],[-77.776813,41.14514700000002],[-77.759338,41.122670000000014],[-77.741911,41.10761400000003],[-77.736986,41.10790600000003],[-77.730237,41.111368000000006],[-77.725608,41.11014200000001],[-77.724784,41.10739300000002],[-77.717759,41.10495400000002],[-77.713941,41.10597500000002],[-77.712266,41.11034600000003],[-77.706225,41.11387200000002],[-77.69549,41.107600000000026],[-77.690389,41.106249],[-77.683751,41.10930600000001],[-77.672722,41.105200000000025],[-77.667092,41.10828100000003],[-77.660812,41.10675800000003],[-77.65897,41.10095500000002],[-77.650067,41.09755300000004],[-77.647666,41.09808000000002],[-77.621759,41.09118500000004],[-77.620948,41.08908700000002],[-77.61203,41.085809000000026],[-77.595262,41.07771100000002],[-77.591916,41.07443900000002],[-77.592001,41.07162700000003],[-77.583821,41.07009700000003],[-77.581428,41.06711500000002],[-77.573565,41.06868200000003],[-77.567014,41.06499600000002],[-77.561889,41.05755400000003],[-77.579952,41.04698200000001],[-77.559094,41.02181800000004],[-77.514275,40.96956200000001],[-77.559934,40.94738500000002],[-77.622073,40.912678],[-77.630601,40.904658000000005],[-77.636835,40.89602100000003],[-77.644831,40.88985300000004],[-77.6672,40.87824700000003],[-77.693361,40.86131800000001],[-77.729135,40.83383300000002],[-77.750845,40.82358900000002],[-77.751958,40.82682700000002],[-77.764264,40.832657000000026],[-77.777769,40.84918200000001],[-77.795809,40.847585000000024],[-77.828965,40.83519300000003],[-77.848462,40.84099800000002],[-77.855975,40.836451000000025],[-77.882495,40.816329000000046],[-77.939424,40.775485000000025],[-77.998467,40.82091800000001],[-78.006105,40.816904000000044],[-78.028361,40.80403000000002],[-78.042505,40.792205000000024],[-78.033299,40.790725000000016],[-78.02772,40.78791700000002],[-78.033368,40.78149700000002],[-78.037225,40.78065100000002],[-78.048484,40.77246000000004],[-78.050197,40.768837000000005],[-78.043346,40.76536200000002],[-78.037768,40.75896700000003],[-78.03803,40.754096000000004],[-78.035272,40.75326400000002],[-78.030734,40.74759300000003],[-78.085263,40.73092000000002],[-78.116208,40.73937800000003],[-78.131834,40.74301700000004],[-78.221735,40.73937500000001],[-78.359912,40.73259200000002],[-78.348389,40.723430000000015],[-78.38417,40.67584400000001],[-78.408629,40.644349],[-78.417124,40.64535000000002],[-78.424185,40.64754700000004],[-78.432457,40.64775600000003],[-78.436997,40.64675200000002],[-78.442156,40.64119200000003],[-78.440167,40.63876100000004],[-78.441636,40.63011100000001],[-78.447745,40.624331000000026],[-78.441075,40.60072300000003],[-78.449665,40.58845000000004],[-78.474087,40.55483300000003],[-78.485958,40.540847000000035],[-78.495938,40.54016000000002],[-78.512808,40.53095700000003],[-78.518455,40.528795000000024],[-78.522759,40.523280000000014],[-78.530635,40.51886400000003],[-78.53984,40.506154000000016],[-78.541455,40.497070000000036],[-78.544715,40.48668200000002],[-78.544311,40.48279100000001],[-78.540448,40.47638700000004],[-78.541978,40.46974000000004],[-78.548463,40.461854000000024],[-78.55973,40.43876500000002],[-78.553105,40.42983100000004],[-78.564085,40.37060900000003],[-78.602353,40.35297300000002],[-78.608869,40.34525800000001],[-78.618095,40.33209900000003],[-78.618093,40.33031900000004],[-78.625672,40.31931800000001],[-78.635385,40.30949800000002],[-78.642948,40.28339600000003],[-78.651868,40.28167800000001],[-78.643998,40.25944600000002],[-78.658409,40.24293300000003],[-78.760311,40.243171],[-78.791543,40.244176000000024],[-78.848041,40.24490100000002],[-78.85352,40.24572400000003],[-78.860247,40.242990000000034],[-78.864941,40.24470100000002],[-78.868662,40.248883000000035],[-78.879877,40.24724900000003],[-78.884862,40.24463100000002],[-78.890836,40.249539000000034],[-78.892568,40.25779600000001],[-78.897161,40.263732000000026],[-78.894414,40.26833900000003],[-78.896546,40.271650000000015],[-78.903884,40.27524200000002],[-78.885039,40.29080400000003],[-78.880995,40.30165000000002],[-78.871036,40.303586000000024],[-78.861466,40.31023400000001],[-78.838973,40.32949600000002],[-78.823023,40.342507000000026],[-78.800865,40.36200000000003],[-78.804472,40.36834900000001],[-78.80893,40.369397000000035],[-78.819483,40.36698000000002],[-78.820573,40.36292300000002],[-78.825002,40.36077900000001],[-78.828106,40.362580000000015],[-78.82477,40.36832200000001],[-78.819917,40.371191000000024],[-78.824894,40.373594000000004],[-78.830643,40.37451500000004],[-78.836527,40.37947400000001],[-78.843471,40.37812400000003],[-78.852446,40.37906800000003],[-78.854607,40.376588000000034],[-78.854838,40.37167800000003],[-78.857658,40.36969100000001],[-78.855577,40.364177000000026],[-78.860446,40.358973000000006],[-78.857435,40.35436400000004],[-78.869778,40.35058500000003],[-78.876197,40.353502000000006],[-78.881804,40.35252800000003],[-78.880506,40.36067400000002],[-78.881407,40.362804000000025],[-78.878164,40.37269800000003],[-78.868911,40.37706100000001],[-78.865723,40.385210000000036],[-78.86317,40.388257000000046],[-78.854753,40.39253200000003],[-78.865579,40.392546000000024],[-78.892962,40.39342800000002],[-78.974459,40.39490700000004],[-78.982324,40.40577900000001],[-78.98887,40.41197400000001],[-78.996637,40.41325600000003],[-79.016617,40.42027900000003],[-79.027837,40.41957400000002],[-79.033007,40.41677400000002],[-79.034262,40.409754000000014],[-79.027714,40.40613600000004],[-79.032246,40.40195700000003],[-79.036328,40.39599600000001],[-79.039835,40.39627300000004],[-79.042436,40.391382000000036],[-79.051885,40.38928600000002],[-79.057109,40.38429299999999],[-79.058481,40.380868000000014],[-79.064553,40.37900200000001],[-79.069885,40.38041400000004],[-79.074483,40.38582000000003],[-79.082965,40.389582000000026],[-79.088312,40.386553000000035],[-79.090527,40.38024300000002],[-79.096116,40.374035000000035],[-79.096769,40.37072500000001],[-79.102153,40.36886799999999],[-79.109309,40.37331800000002],[-79.121634,40.37057600000003],[-79.127116,40.37506800000002],[-79.128677,40.38505600000002],[-79.122503,40.38935400000001],[-79.114906,40.389879000000036],[-79.117,40.394243000000024],[-79.124749,40.39536100000003],[-79.135005,40.39830400000004],[-79.147892,40.39760000000004],[-79.154002,40.40170100000001],[-79.152051,40.408766000000014],[-79.155789,40.41176500000001],[-79.164369,40.41022400000003],[-79.173713,40.41062200000002],[-79.185372,40.41425000000001],[-79.191197,40.41522100000002],[-79.199233,40.410780000000024],[-79.206513,40.415032000000025],[-79.210876,40.421250000000036],[-79.214783,40.42445800000003],[-79.233203,40.43074100000002],[-79.240175,40.429991000000015],[-79.247568,40.432080000000006],[-79.254114,40.42228800000004],[-79.263281,40.41676300000003],[-79.272856,40.41841100000001],[-79.273542,40.42292500000004],[-79.269351,40.428517000000014],[-79.272605,40.43908200000003],[-79.282848,40.44276900000002],[-79.285483,40.441759000000026],[-79.289409,40.43667300000003],[-79.299435,40.434515],[-79.301751,40.43929100000003],[-79.299897,40.44491200000002],[-79.301677,40.45135600000002],[-79.298014,40.455023000000025],[-79.29974,40.46012700000003],[-79.30245,40.461333000000025],[-79.3161,40.45925300000001],[-79.322786,40.45603200000002],[-79.325409,40.45269900000002],[-79.330267,40.453851000000036],[-79.331732,40.46188900000001],[-79.33844,40.469998000000004],[-79.342093,40.47012400000002],[-79.345408,40.46721200000002],[-79.345926,40.45482500000002],[-79.347185,40.45273100000003],[-79.353851,40.45170100000001],[-79.360526,40.454095000000024],[-79.362275,40.46006100000002],[-79.358029,40.47087900000003],[-79.358595,40.47791600000002],[-79.365925,40.477474000000015],[-79.36707,40.47509000000002],[-79.366334,40.46596600000002],[-79.369591,40.456604000000006],[-79.373741,40.45385300000003],[-79.381753,40.452697000000015],[-79.391102,40.454412000000026],[-79.395461,40.457132000000044],[-79.397926,40.46281500000002],[-79.400956,40.46553400000001],[-79.404308,40.47254300000002],[-79.406631,40.47430100000003],[-79.412306,40.47296900000001],[-79.415679,40.470575000000025],[-79.421315,40.47059800000002],[-79.423574,40.47332900000002],[-79.430628,40.48904600000001],[-79.43846,40.48673700000002],[-79.447537,40.48081100000002],[-79.451747,40.48230700000002],[-79.454011,40.485507000000034],[-79.452462,40.48943000000003],[-79.455297,40.49661600000002],[-79.454548,40.50701400000001],[-79.459738,40.51673700000002],[-79.456545,40.52323700000004],[-79.44964,40.52679200000002],[-79.451162,40.53153400000004],[-79.455033,40.534107000000006],[-79.464289,40.53408000000003],[-79.475739,40.52953800000003],[-79.477877,40.53152800000004],[-79.476918,40.53577900000003],[-79.479337,40.537038000000024],[-79.484729,40.53419800000004],[-79.485706,40.52837600000003],[-79.488697,40.52607300000002],[-79.49461,40.52488000000004],[-79.49795,40.52653300000001],[-79.498925,40.53215200000002],[-79.50538,40.535937000000025],[-79.511912,40.54268300000001],[-79.520992,40.54130500000002],[-79.526249,40.54236400000002],[-79.536213,40.55033300000002],[-79.557286,40.56096100000001],[-79.56111,40.56411300000003],[-79.570662,40.58374500000002],[-79.56639,40.592961000000024],[-79.556214,40.59980900000002],[-79.551158,40.602145000000036],[-79.551829,40.604705000000024],[-79.558502,40.604993000000015],[-79.566006,40.60795300000003],[-79.570332,40.606721],[-79.574678,40.602625000000025],[-79.581191,40.60252900000001],[-79.584375,40.60704100000003],[-79.583782,40.61041400000004],[-79.589559,40.61659300000001],[-79.588663,40.625521000000006],[-79.582823,40.63316900000004],[-79.586935,40.63673700000002],[-79.591479,40.63433700000002],[-79.596359,40.628321000000014],[-79.602103,40.62449700000002],[-79.608952,40.62595400000002],[-79.610135,40.63100900000003],[-79.609496,40.639809000000035],[-79.613128,40.643617000000006],[-79.622216,40.64569700000001],[-79.628616,40.64867300000001],[-79.636056,40.65448100000002],[-79.638137,40.665601000000024],[-79.644041,40.66884900000001],[-79.652953,40.67190500000003],[-79.662457,40.67832100000001],[-79.668345,40.68004900000003],[-79.680146,40.67194400000002],[-79.692587,40.66973200000003],[-79.707546,40.66985100000004],[-79.72992,40.669233000000034],[-79.744939,40.669649000000035],[-79.786358,40.67154300000003],[-79.784525,40.74252300000003],[-79.784431,40.766089000000036],[-79.790337,40.770110000000024],[-79.795989,40.763817000000024],[-79.803383,40.75768800000001],[-79.819816,40.757133000000024],[-79.821136,40.76135700000003],[-79.82458,40.76356500000003],[-79.833912,40.76316300000001],[-79.834992,40.77045500000003],[-79.839214,40.77040700000004],[-79.84526,40.764509000000004],[-79.852429,40.760692000000006],[-79.853048,40.76518400000002],[-79.86302,40.76981700000003],[-79.868007,40.767298000000004],[-79.875771,40.75967100000001],[-79.874679,40.79699200000002],[-79.874557,40.816107000000024],[-79.875043,40.849344000000016],[-79.87552,40.858500000000035],[-79.875938,40.886706000000025],[-79.878684,40.95849100000002],[-79.881549,41.100273],[-79.885546,41.172463000000015],[-79.906424,41.17212000000003],[-79.95929,41.17165700000001],[-79.999779,41.17186100000002],[-79.999204,41.19709200000001],[-79.999779,41.211829000000016],[-79.999777,41.34144000000001],[-79.999781,41.435203000000016],[-79.999814,41.49003400000003],[-79.998681,41.50095300000004],[-79.981779,41.50015600000002],[-79.981452,41.51290000000004],[-79.964488,41.51283300000002],[-79.958384,41.513507000000025],[-79.959179,41.525353000000024],[-79.942579,41.52525400000002],[-79.943579,41.53745400000002],[-79.92348,41.53755500000003],[-79.92548,41.549754000000014],[-79.909477,41.55005400000003],[-79.908635,41.56200800000002],[-79.892873,41.56231700000002],[-79.892988,41.574157000000014],[-79.870177,41.57425600000001],[-79.87318,41.58120200000002],[-79.850054,41.58705600000001],[-79.84948,41.59766200000002],[-79.829576,41.60205700000003],[-79.828876,41.62205700000002],[-79.798591,41.62135300000002],[-79.768345,41.62095500000002],[-79.768357,41.617711000000035],[-79.749775,41.61775800000002],[-79.688082,41.617363000000026],[-79.612866,41.617058000000014],[-79.612966,41.67446400000002],[-79.612566,41.695017000000036],[-79.612977,41.70119000000001],[-79.612673,41.72247000000003],[-79.612772,41.75005600000003],[-79.61233,41.83000000000002],[-79.611973,41.875056000000015],[-79.611473,41.88295600000002],[-79.610648,41.98953700000001],[-79.61083887596035,41.99899177686173]]]},"properties":{"district":15}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.5190191701787,40.85133939828014],[-80.51890778446057,40.87332752250644],[-80.51889899999999,40.875061],[-80.5191298556725,40.895315043400664],[-80.519311,40.91119899999999],[-80.51913276197263,40.917301252615125],[-80.519008,40.92157199999998],[-80.5189980345007,40.939288496212995],[-80.51898565869074,40.96127677981736],[-80.51897327463205,40.98326506342038],[-80.51896088231271,41.00525334702208],[-80.51895587457419,41.01413465594712],[-80.51895950495663,41.02724163152306],[-80.51896559853982,41.04922991663378],[-80.51897169619713,41.07121820174417],[-80.51897779793444,41.093206486854235],[-80.51898390375764,41.115194771963985],[-80.518985,41.119141],[-80.51904007263558,41.13718300977909],[-80.51910723194526,41.159171237214316],[-80.519144,41.17120300000001],[-80.51905333829473,41.181159257111155],[-80.51885301990772,41.20314702599533],[-80.518789,41.210171],[-80.51875187781955,41.225135120398186],[-80.51869729972842,41.247123367684694],[-80.518693,41.248855000000006],[-80.518996,41.26830000000002],[-80.51899160344972,41.26911030947951],[-80.51887225945211,41.29109841216298],[-80.518794,41.305508999999994],[-80.51912899999999,41.31240799999999],[-80.51912799703874,41.313081989691234],[-80.51909526500243,41.33507026154225],[-80.5190625108603,41.35705853338398],[-80.51902973458029,41.379046805216404],[-80.51899693613028,41.40103507703952],[-80.518992,41.404343],[-80.5190487395992,41.42302331209378],[-80.51911556850972,41.44501154060221],[-80.51916899999999,41.46258099999999],[-80.51916819963088,41.46699978051349],[-80.51916421529286,41.48898806590196],[-80.51916022824935,41.51097635129027],[-80.51915699999999,41.52876900000002],[-80.51922951778138,41.53296428549868],[-80.519339,41.539297000010656],[-80.51934438399638,41.55495204032633],[-80.51935195049359,41.576940325188644],[-80.51935952214455,41.59892861005044],[-80.51936466159619,41.61384518886149],[-80.51936709888282,41.62091689491178],[-80.51937468063382,41.64290517977264],[-80.51938226756094,41.66489346463301],[-80.51938985967176,41.68688174949286],[-80.51939745697382,41.70887003435223],[-80.51940505947469,41.73085831921108],[-80.519408,41.739359],[-80.51931959698119,41.75284644324318],[-80.519239,41.765138],[-80.5192452537356,41.77483458067746],[-80.51925944191929,41.79682286372353],[-80.51927363984194,41.81881114676784],[-80.5192878475178,41.84079942981042],[-80.51930206496111,41.86278771285123],[-80.51931629218613,41.88477599589028],[-80.51932016388282,41.89075711388677],[-80.51926339164591,41.90676422500994],[-80.51921899999999,41.919275000000006],[-80.51925184979291,41.92875243547198],[-80.51932810086919,41.95074064790877],[-80.51940440456896,41.972728860295085],[-80.51942105281691,41.97752432042435],[-80.505698,41.98211500000001],[-80.49890942922164,41.98537207458176],[-80.495003,41.987246],[-80.489165,41.987910000000014],[-80.47591299999999,41.992278],[-80.47168115783724,41.993482092308426],[-80.457365,41.997553999999994],[-80.44458529793737,42.00225279223456],[-80.44021,42.003860999999986],[-80.419956,42.009925],[-80.4171883986447,42.01049974181367],[-80.401482,42.013759999999984],[-80.3894732440992,42.01798428145169],[-80.388385,42.018367000000005],[-80.374042,42.024424999999994],[-80.37186899999999,42.02396600000001],[-80.3637005472796,42.027764008237945],[-80.36325099999999,42.027973],[-80.349169,42.030243000000006],[-80.33562971753786,42.03442310875763],[-80.329976,42.03616800000001],[-80.30916906758213,42.04425498589882],[-80.296758,42.049076],[-80.291315,42.05218100000002],[-80.2833940245285,42.05492563287527],[-80.26757099999999,42.060406000000015],[-80.25785045101976,42.06582511296589],[-80.257081,42.06625400000002],[-80.247384,42.070521000000014],[-80.240419,42.076252999999994],[-80.23358528875352,42.07733625553585],[-80.23320199999999,42.07739700000001],[-80.215201,42.08285999999999],[-80.20741694548937,42.08726230042475],[-80.206245,42.08792500000001],[-80.19809599999999,42.089760000000005],[-80.188085,42.094257000000006],[-80.18159405356839,42.09764939465929],[-80.16588399999999,42.10585700000001],[-80.158498,42.11052000000001],[-80.15805510331798,42.110945169869474],[-80.154084,42.114757000000004],[-80.14555469192766,42.13071991498545],[-80.13559599999999,42.14934700000001],[-80.13411209767959,42.150958068719305],[-80.12930999999999,42.15617100000002],[-80.11753,42.164865],[-80.11373993100372,42.16669656647691],[-80.108476,42.16924],[-80.09992,42.171882],[-80.088512,42.17318399999999],[-80.08594694907171,42.17303474905892],[-80.066169,42.171882],[-80.070448,42.16818299999999],[-80.07347176378592,42.16728969301621],[-80.078906,42.16568400000002],[-80.080028,42.16362500000001],[-80.071981,42.155356999999995],[-80.074732,42.152972000000005],[-80.07446519245813,42.15088303534919],[-80.073932,42.14670800000001],[-80.06107999999999,42.14485700000001],[-80.05174447638663,42.149040148199155],[-80.02635675986642,42.1604094902507],[-80.02130199999999,42.16267200000001],[-80.015266,42.166312999999995],[-80.012328,42.166270999999995],[-80.00132832147708,42.17146190090248],[-79.985846,42.178765],[-79.98526799999999,42.181025999999996],[-79.97792747039269,42.18375617563841],[-79.973523,42.18539399999999],[-79.95308496578365,42.19573468181405],[-79.93132399999999,42.206737],[-79.92802352347566,42.207097883682984],[-79.923924,42.20754600000003],[-79.918224,42.210865000000005],[-79.909461,42.21333500000001],[-79.907361,42.21540500000001],[-79.90213734197,42.21647773655698],[-79.90105,42.216701000000015],[-79.87810635663828,42.229300747208114],[-79.873218,42.231984000000004],[-79.870241,42.23024500000001],[-79.85113947233147,42.23415926736503],[-79.844661,42.235486],[-79.835026,42.239751000000005],[-79.83158,42.242656000000004],[-79.82518619098272,42.24363832731845],[-79.818983,42.244591],[-79.812759,42.249325000000006],[-79.80725699999999,42.251491999999985],[-79.80039820632147,42.25483604813059],[-79.787887,42.26093399999999],[-79.783309,42.264034999999986],[-79.777678,42.26535500000001],[-79.77533253291213,42.26449593094677],[-79.773823,42.263943],[-79.76195213782707,42.26985936255297],[-79.76202783998906,42.2597089271349],[-79.762152,42.243053999999994],[-79.76212589382979,42.23772093012904],[-79.7620183051877,42.215732788866646],[-79.76191079143766,42.193744647503785],[-79.76180335246988,42.171756506040595],[-79.761759,42.16267499999999],[-79.7619081087361,42.14976875329177],[-79.76212199999999,42.13124599999999],[-79.7620068615187,42.12778219906292],[-79.76170914774029,42.11882408594251],[-79.76172322609582,42.105796638764765],[-79.76174697502319,42.0838083602355],[-79.76177070749519,42.061820081701356],[-79.76179442353593,42.03983180316232],[-79.761816,42.01981400000003],[-79.76176880923569,42.017843835902674],[-79.761313,41.99880800000002],[-79.75734421888454,41.99881194036829],[-79.72775662778298,41.99883700774197],[-79.69816901690376,41.998854477463766],[-79.69476499999999,41.998856],[-79.67421534963168,41.99932299498388],[-79.66859445012341,41.99917426260692],[-79.657617,41.99888299999999],[-79.63901387601516,41.99892853382478],[-79.61083887596035,41.99899177686173],[-79.61081768301995,41.99794215249245],[-79.610648,41.98953700000001],[-79.61075328586166,41.97595503843],[-79.61092363862738,41.953967117681486],[-79.61109387389617,41.931979196681326],[-79.61126399183958,41.909991275429874],[-79.61143399262897,41.88800335392752],[-79.611473,41.88295600000002],[-79.611973,41.875056000000015],[-79.61204460452356,41.8660240759849],[-79.61221883868485,41.84403617336821],[-79.61233,41.83000000000002],[-79.61237401388111,41.82204819975349],[-79.6124956629683,41.80006010110818],[-79.61261722860219,41.778072002334625],[-79.6127387109044,41.75608390343299],[-79.612772,41.75005600000003],[-79.61271471177032,41.73409572624088],[-79.612673,41.72247000000003],[-79.61282105269225,41.71210807162765],[-79.612977,41.70119000000001],[-79.612566,41.695017000000036],[-79.6126611616608,41.690128546364974],[-79.612966,41.67446400000002],[-79.61295497833937,41.66814192048621],[-79.6129166617233,41.64615365353109],[-79.61287837125157,41.62416538656324],[-79.612866,41.617058000000014],[-79.63277056062478,41.617143483396944],[-79.66218200538623,41.61726351054075],[-79.688082,41.617363000000026],[-79.69159346069279,41.61738636809173],[-79.72100435493022,41.617577895772456],[-79.749775,41.61775800000002],[-79.75041543850864,41.61775642990876],[-79.768357,41.617711000000035],[-79.768345,41.62095500000002],[-79.7754754216284,41.621049542168365],[-79.798591,41.62135300000002],[-79.80488251733982,41.62149990691087],[-79.828876,41.62205700000002],[-79.82901750599342,41.61801497203036],[-79.829576,41.60205700000003],[-79.83730327558041,41.60035121990339],[-79.84948,41.59766200000002],[-79.850054,41.58705600000001],[-79.85243362527564,41.58645389642005],[-79.87318,41.58120200000002],[-79.87087401267637,41.575868344590916],[-79.870177,41.57425600000001],[-79.892988,41.574157000000014],[-79.8929566377984,41.57092848718299],[-79.892873,41.56231700000002],[-79.908635,41.56200800000002],[-79.90874607064957,41.56043136688248],[-79.909477,41.55005400000003],[-79.92496766722535,41.5497636388601],[-79.92548,41.549754000000014],[-79.92348,41.53755500000003],[-79.93592324924221,41.537492883775045],[-79.943579,41.53745400000002],[-79.942579,41.52525400000002],[-79.94796804266527,41.52528640118391],[-79.959179,41.525353000000024],[-79.958384,41.513507000000025],[-79.96067473602146,41.51325409778728],[-79.964488,41.51283300000002],[-79.981452,41.51290000000004],[-79.98161618049211,41.50650210674263],[-79.981779,41.50015600000002],[-79.998681,41.50095300000004],[-79.99898696635223,41.498004690851324],[-79.999814,41.49003400000003],[-79.99980557268154,41.47604044248354],[-79.99979233806003,41.45405215912903],[-79.999781,41.435203000000016],[-79.99978086589574,41.43206387545561],[-79.99977992691363,41.410075589875795],[-79.99977898856693,41.38808730429597],[-79.99977805085469,41.36609901871614],[-79.999777113776,41.34411073313631],[-79.999777,41.34144000000001],[-79.99977729858927,41.3221224475479],[-79.99977763824442,41.30013416195829],[-79.9997779776706,41.278145876368676],[-79.99977831686819,41.256157590779075],[-79.99977865583747,41.23416930518947],[-79.9997789945788,41.21218101959985],[-79.999779,41.211829000000016],[-79.999204,41.19709200000001],[-79.99936110652742,41.19020009620618],[-79.999779,41.17186100000002],[-79.99493479976525,41.17183733972122],[-79.9657244333934,41.1716903669462],[-79.95929,41.17165700000001],[-79.9365151656564,41.17185942623994],[-79.90730598214478,41.17211247393087],[-79.906424,41.17212000000003],[-79.885546,41.172463000000015],[-79.88523561620607,41.16686283790844],[-79.88401850720876,41.14489365639848],[-79.88280221345204,41.122924462086715],[-79.88158673376029,41.10095525499162],[-79.881549,41.100273],[-79.88111774081993,41.07897004114652],[-79.88067295265411,41.05698431280527],[-79.88022846171759,41.03499858275503],[-79.87978426758181,41.01301285099828],[-79.87934036981895,40.99102711753747],[-79.8788967680019,40.96904138237507],[-79.878684,40.95849100000002],[-79.87824629442572,40.94705909872858],[-79.87740518252994,40.92507999600096],[-79.87656462993141,40.903100887165905],[-79.875938,40.886706000000025],[-79.87585518669079,40.881119793677186],[-79.87552937521173,40.85913288844596],[-79.87552,40.858500000000035],[-79.875043,40.849344000000016],[-79.87486467606522,40.8371524947064],[-79.874557,40.816107000000024],[-79.87456301064643,40.815165507827714],[-79.874679,40.79699200000002],[-79.87479064183582,40.79317837074843],[-79.8754339284924,40.77119548101023],[-79.875771,40.75967100000001],[-79.868007,40.767298000000004],[-79.86709506558832,40.76775866050212],[-79.86302,40.76981700000003],[-79.853048,40.76518400000002],[-79.852429,40.760692000000006],[-79.84713445759613,40.76351106526082],[-79.84526,40.764509000000004],[-79.839214,40.77040700000004],[-79.834992,40.77045500000003],[-79.833912,40.76316300000001],[-79.83094548944658,40.76329087212504],[-79.82458,40.76356500000003],[-79.821136,40.76135700000003],[-79.819816,40.757133000000024],[-79.80741760147443,40.75755195410222],[-79.803383,40.75768800000001],[-79.795989,40.763817000000024],[-79.790337,40.770110000000024],[-79.78737559702945,40.768093877440876],[-79.784431,40.766089000000036],[-79.78450674987795,40.7470996514079],[-79.784525,40.74252300000003],[-79.78497491620841,40.72511472470804],[-79.78554275748337,40.70313065202786],[-79.78611022403203,40.68114657656725],[-79.786358,40.67154300000003],[-79.80267332897164,40.67199955389429],[-79.811838,40.67225500000003],[-79.828636,40.67107300000003],[-79.8315800317099,40.671213698443324],[-79.851548,40.67216600000001],[-79.86053132134244,40.672208649825826],[-79.875463,40.67227800000001],[-79.88951484966054,40.672621830349755],[-79.914708,40.67323400000004],[-79.91849200103913,40.67315845570946],[-79.9474731665713,40.67257577009069],[-79.96077,40.67230600000001],[-79.97642911761557,40.67304773915249],[-79.987842,40.67358700000004],[-80.0053954917429,40.673839068014466],[-80.021006,40.67406100000001],[-80.0343845262443,40.674092910939144],[-80.06337629765267,40.67415676418126],[-80.068355,40.67416700000002],[-80.071202,40.679282000000015],[-80.075643,40.68231500000001],[-80.07484450747724,40.69042038365238],[-80.074774,40.691136000000014],[-80.072411,40.69126200000004],[-80.073455,40.698608000000036],[-80.066638,40.69928400000001],[-80.06155362230874,40.70497527627717],[-80.061536,40.704995000000025],[-80.064751,40.706649000000034],[-80.070658,40.706497000000034],[-80.071375,40.71101700000004],[-80.074394,40.71296800000002],[-80.08128,40.71152100000001],[-80.08266609656773,40.71036459562974],[-80.084986,40.70842900000002],[-80.086037,40.704489000000024],[-80.104387,40.70393400000001],[-80.10442019007228,40.70250278881371],[-80.1045,40.69906100000002],[-80.113683,40.69856600000002],[-80.112155,40.70509200000003],[-80.114917,40.70830600000002],[-80.11518355906708,40.70938979747522],[-80.117042,40.71694500000003],[-80.130881,40.71613300000003],[-80.13544472952775,40.71766293262924],[-80.145527,40.721042000000025],[-80.151581,40.724070000000005],[-80.1520221132015,40.73219884811217],[-80.15321484282481,40.75416855673069],[-80.15440836097132,40.77613825306264],[-80.155014,40.78728100000002],[-80.1557227289747,40.79810381325739],[-80.15687,40.81561600000001],[-80.156534,40.817280000000025],[-80.15668013560247,40.82004905621657],[-80.15784006500964,40.84201981936788],[-80.158534,40.85515700000003],[-80.1702181114105,40.85492118964123],[-80.183092,40.85466000000001],[-80.19928286054342,40.85450007866326],[-80.2283509030165,40.85420728373716],[-80.253123,40.85395200000003],[-80.25741889088509,40.85398377571639],[-80.263707,40.85403000000003],[-80.28648370058714,40.85365814845372],[-80.3155469535792,40.853177151533814],[-80.331442,40.85291100000003],[-80.3446125526298,40.85282275812078],[-80.37368125363818,40.85262269735991],[-80.40274977589567,40.852415339858865],[-80.422539,40.85227000000002],[-80.43181786767924,40.852183995124996],[-80.46088521446515,40.851909758816056],[-80.5190191701787,40.85133939828014]]]},"properties":{"district":16}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.51899534545389,40.47736329935195],[-80.51897755809196,40.48606640942936],[-80.51895976611648,40.494769519504054],[-80.51894196952485,40.50347262957601],[-80.51892416831443,40.512175739645244],[-80.51890636248262,40.52087884971173],[-80.518906,40.52105600000019],[-80.5189252357935,40.52958195755327],[-80.51894487631239,40.538285065345306],[-80.5189645219349,40.54698817313404],[-80.5189841726639,40.555691280919426],[-80.51900382850232,40.56439438870149],[-80.51902348945305,40.573097496480216],[-80.51904315551899,40.58180060425561],[-80.519062,40.59013800000004],[-80.5190616009598,40.59050371244097],[-80.51905210342989,40.599206830046285],[-80.51904260342668,40.60790994765084],[-80.51903310094882,40.61661306525461],[-80.5190235959949,40.62531618285762],[-80.51901408856347,40.634019300459826],[-80.51900457865315,40.642722418061254],[-80.51899506626255,40.65142553566191],[-80.51898555139023,40.660128653261786],[-80.51897603403478,40.66883177086087],[-80.51896651419483,40.67753488845918],[-80.51895699186892,40.6862380060567],[-80.51894746705565,40.69494112365345],[-80.51893793975361,40.70364424124941],[-80.5189284099614,40.71234735884459],[-80.518922,40.7182],[-80.51892407631053,40.7210504769869],[-80.51893041683364,40.7297535962537],[-80.51893675901553,40.73845671552017],[-80.51894310285714,40.74715983478628],[-80.51894944835941,40.75586295405205],[-80.51895579552328,40.76456607331747],[-80.51896214434971,40.77326919258253],[-80.51896849483965,40.781972311847255],[-80.51897484699401,40.79067543111164],[-80.5189812008138,40.79937855037566],[-80.5189875562999,40.80808166963934],[-80.51899391345333,40.816784788902666],[-80.51900027227497,40.82548790816564],[-80.51900663276581,40.834191027428275],[-80.5190129949268,40.84289414669056],[-80.5190191701787,40.85133939828014],[-80.51867829001533,40.8513428277932],[-80.50717345109169,40.85145798657113],[-80.49566857237443,40.85157200236468],[-80.4841636542602,40.85168487516529],[-80.47265869714568,40.85179660496453],[-80.46115370142748,40.85190719175402],[-80.44964866750232,40.85201663552552],[-80.43814359576686,40.85212493627081],[-80.42663848661782,40.852232093981804],[-80.422539,40.85227000000002],[-80.41513314800918,40.852324787541],[-80.40362767215764,40.852408963939055],[-80.39212216726945,40.852491997221684],[-80.38061663374145,40.85257388738268],[-80.36911107197052,40.85265463441591],[-80.35760548235352,40.852734238315335],[-80.34609986528736,40.85281269907501],[-80.33459422116889,40.85289001668903],[-80.331442,40.85291100000003],[-80.3230902804829,40.853051116033704],[-80.31158693134763,40.85324311954476],[-80.30008351573662,40.853433980354374],[-80.2885800340458,40.85362369844829],[-80.27707648667119,40.85381227381229],[-80.26557287400884,40.853999706432276],[-80.263707,40.85403000000003],[-80.25406746355401,40.853958999649066],[-80.253123,40.85395200000003],[-80.24256220263919,40.85406148037371],[-80.23105694481532,40.85417965509434],[-80.21955164614508,40.85429668673144],[-80.20804630702519,40.85441257527618],[-80.19654092785234,40.85452732071994],[-80.18503550902331,40.8546409230541],[-80.183092,40.85466000000001],[-80.17353268979998,40.85485407940042],[-80.16203032956565,40.85508656037166],[-80.158534,40.85515700000003],[-80.15821424099332,40.84910415287486],[-80.15775494255189,40.84040797066122],[-80.15729576461209,40.83171178662649],[-80.1568367071054,40.82301560077173],[-80.156534,40.817280000000025],[-80.15687,40.81561600000001],[-80.15678625038645,40.81433794133474],[-80.15621673123056,40.805645502274274],[-80.1556473612465,40.79695306041431],[-80.15507814034953,40.78826061575646],[-80.155014,40.78728100000002],[-80.1545946049807,40.77956523029171],[-80.15412205886481,40.770869469689835],[-80.15364963641646,40.76217370716099],[-80.15317733756538,40.753477942706304],[-80.15270516224133,40.74478217632684],[-80.15223311037417,40.73608640802368],[-80.15176118189376,40.72739063779796],[-80.151581,40.724070000000005],[-80.14565652646226,40.72110679082172],[-80.145527,40.721042000000025],[-80.13516692644862,40.71756980980607],[-80.130881,40.71613300000003],[-80.12410522793682,40.716530775766394],[-80.117042,40.71694500000003],[-80.11623583843138,40.71366788977248],[-80.114917,40.70830600000002],[-80.11257765264398,40.70558384391977],[-80.112155,40.70509200000003],[-80.113683,40.69856600000002],[-80.1117251331187,40.698671598409994],[-80.1045,40.69906100000002],[-80.10442553997815,40.70227208620605],[-80.104387,40.70393400000001],[-80.09510662779111,40.70421505130048],[-80.086037,40.704489000000024],[-80.08556060577216,40.706274970704484],[-80.084986,40.70842900000002],[-80.08128,40.71152100000001],[-80.07832051946443,40.712142952751364],[-80.074394,40.71296800000002],[-80.071375,40.71101700000004],[-80.0709643340493,40.70842821913754],[-80.070658,40.706497000000034],[-80.064751,40.706649000000034],[-80.06226499416461,40.70537005587612],[-80.061536,40.704995000000025],[-80.066638,40.69928400000001],[-80.06812597253055,40.69913648228758],[-80.073455,40.698608000000036],[-80.0728009627298,40.69400612379279],[-80.072411,40.69126200000004],[-80.074774,40.691136000000014],[-80.07518143285289,40.68700054335512],[-80.075643,40.68231500000001],[-80.07171909873209,40.67963517774841],[-80.071202,40.679282000000015],[-80.068355,40.67416700000002],[-80.06489611209557,40.67415991147645],[-80.0534209540369,40.67413565544225],[-80.0419458045232,40.67411026336647],[-80.03047066394545,40.67408373525101],[-80.021006,40.67406100000001],[-80.01899587276228,40.674032540369105],[-80.0075227193897,40.67386943426602],[-79.99604962234649,40.67370519252459],[-79.987842,40.67358700000004],[-79.98458230226487,40.67343309419988],[-79.97312949974962,40.6728916205491],[-79.96167688344217,40.67234901530389],[-79.96077,40.67230600000001],[-79.95020753490446,40.67252041918],[-79.938736662042,40.67275218734564],[-79.92726570962895,40.67298282031763],[-79.91579467805471,40.673212318078896],[-79.914708,40.67323400000004],[-79.90432532767234,40.672982375593804],[-79.89285624901201,40.67270333879423],[-79.88138726654087,40.6724231671738],[-79.875463,40.67227800000001],[-79.86991557358365,40.6722524595584],[-79.85844091997315,40.67219878745426],[-79.851548,40.67216600000001],[-79.84697520570673,40.67194822283895],[-79.83552304891718,40.67140202140969],[-79.828636,40.67107300000003],[-79.82408158380842,40.67139371854166],[-79.81265582947164,40.672197510349015],[-79.811838,40.67225500000003],[-79.8011916718326,40.67195818756126],[-79.78972467107391,40.671637398538145],[-79.786358,40.67154300000003],[-79.77826683577908,40.67117418046289],[-79.76681293338153,40.6706511045677],[-79.75535921087467,40.67012689687359],[-79.744939,40.669649000000035],[-79.74390446368018,40.66962040772805],[-79.7324377072434,40.66930287221206],[-79.72992,40.669233000000034],[-79.72097097414282,40.66948070375046],[-79.70950413184586,40.66979708666231],[-79.707546,40.66985100000004],[-79.69803148476247,40.66977553479605],[-79.692587,40.66973200000003],[-79.69488280554631,40.66550313537066],[-79.695594,40.66419300000002],[-79.695226,40.66032100000003],[-79.69329837822161,40.6572468552743],[-79.690842,40.653329000000014],[-79.68984932884068,40.649029811892326],[-79.688777,40.644385000000014],[-79.69079874825597,40.6407043129419],[-79.69378,40.635276000000026],[-79.69597456541423,40.63299750975653],[-79.702691,40.62602300000002],[-79.70275647160818,40.625981963224554],[-79.71159739652659,40.62043978055776],[-79.713436,40.619287000000014],[-79.717659043032,40.613184776210026],[-79.72127,40.607966000000005],[-79.7244763461968,40.60656581282136],[-79.728579,40.60477400000002],[-79.7347625233256,40.60275676799007],[-79.74117,40.60066600000001],[-79.74549384160433,40.59975136888682],[-79.749187,40.59897000000004],[-79.75589312542294,40.596209367585494],[-79.76377,40.59296600000001],[-79.7652827488356,40.591453628588035],[-79.770371,40.58636600000002],[-79.77150498139606,40.58421768502639],[-79.773331,40.58075800000004],[-79.77380020957033,40.5757949426378],[-79.77437,40.56976700000003],[-79.77342816356929,40.56720537346031],[-79.77187,40.56296700000004],[-79.769885957193,40.55893710423465],[-79.76587341171455,40.55078542108353],[-79.765415,40.54985400000003],[-79.763775,40.54499700000001],[-79.7651223907463,40.54250474847534],[-79.766091,40.54071300000002],[-79.772762,40.53632700000001],[-79.77284133142362,40.53631098784175],[-79.783753,40.53410800000004],[-79.7839109015831,40.534132875494386],[-79.79512403817783,40.53589877342645],[-79.805012,40.537455000000016],[-79.80635998763395,40.53735915095584],[-79.81776178551178,40.536547785275665],[-79.821774,40.53626200000002],[-79.82877108357985,40.53438156507156],[-79.835272,40.53263400000002],[-79.8318082986569,40.53038520545501],[-79.828061,40.52795200000003],[-79.827926,40.524571000000016],[-79.82594062062923,40.5250199977448],[-79.820868,40.52616700000002],[-79.819068,40.52310000000002],[-79.81939928217123,40.52180220500036],[-79.820344,40.51810100000003],[-79.81402345129085,40.51698473129768],[-79.80884,40.51606900000003],[-79.80612,40.513460000000045],[-79.80437389885533,40.51340882700002],[-79.800868,40.513306000000014],[-79.798048,40.51024100000003],[-79.79528627988252,40.5111682717857],[-79.793911,40.51163000000004],[-79.791452,40.50628100000002],[-79.79221248218082,40.50447763556479],[-79.792626,40.50349700000003],[-79.787822,40.49913400000002],[-79.78852092430186,40.49722354537933],[-79.788865,40.49628300000003],[-79.783363,40.489876000000024],[-79.78338078757454,40.48980263570971],[-79.784069,40.48696400000002],[-79.77983658467184,40.48211934920165],[-79.77874,40.480864000000004],[-79.77780993569883,40.473702920536745],[-79.776787,40.46582500000002],[-79.77733653264538,40.46515840310785],[-79.779204,40.462893000000015],[-79.78623705450333,40.465671131341985],[-79.789265,40.46686700000003],[-79.79715135948489,40.46800966947268],[-79.797844,40.46811000000004],[-79.800217,40.464296000000026],[-79.80396475352855,40.46156680730669],[-79.805571,40.46039700000003],[-79.81476285602152,40.46089537538153],[-79.815162,40.46091700000001],[-79.8229085959449,40.45493407794678],[-79.826391,40.452244000000015],[-79.8276015695259,40.44740378614296],[-79.828364,40.44435500000004],[-79.835346,40.445070000000015],[-79.83553958154783,40.445257173121206],[-79.840227,40.44978900000003],[-79.84408090406792,40.44965445611641],[-79.844323,40.449646000000016],[-79.85446705559085,40.45324911805313],[-79.855472,40.453606000000015],[-79.858016,40.45940800000002],[-79.86028878022064,40.45919092828687],[-79.867028,40.45854700000002],[-79.868257,40.45638900000002],[-79.8695877249106,40.45700126320438],[-79.874504,40.459263000000014],[-79.879314,40.45911200000002],[-79.88014776133585,40.45932419251219],[-79.889992,40.46182900000001],[-79.88982519606066,40.46262431291352],[-79.88802241119926,40.471218684895845],[-79.886561,40.47818400000001],[-79.88574477325768,40.479712357809596],[-79.883772,40.48340600000002],[-79.88429222130294,40.48810569708713],[-79.884604,40.49092200000002],[-79.89220831061235,40.49196754068006],[-79.896912,40.492614000000025],[-79.897604,40.48787900000002],[-79.89793855697624,40.4877128398524],[-79.901679,40.48585500000002],[-79.90838778003041,40.4873084626755],[-79.91939368390106,40.48969192428016],[-79.927922,40.491538000000034],[-79.93049866599608,40.49152222584414],[-79.935572,40.49149100000003],[-79.9416062635305,40.48993820580035],[-79.95244561171916,40.48714795270754],[-79.953195,40.48695500000003],[-79.96096180798109,40.481410977194784],[-79.962997,40.47995800000005],[-79.96739670073748,40.474292628220034],[-79.969312,40.47182600000002],[-79.974678,40.46943600000001],[-79.97587016278334,40.470072517750694],[-79.97872,40.471594000000024],[-79.98346593552381,40.466733787034116],[-79.983868,40.46632200000002],[-79.9870346954786,40.47414984450451],[-79.988092,40.47676300000002],[-79.99556344285577,40.47858780674841],[-80.001683,40.48008200000003],[-80.003188,40.48237600000003],[-80.0032566119999,40.48362555363772],[-80.00373414798749,40.49232109294078],[-80.004034,40.49778000000002],[-80.0082859185846,40.49758036743045],[-80.009124,40.49754100000001],[-80.016984,40.49983400000002],[-80.01813141089121,40.49841834042519],[-80.02014,40.495940000000004],[-80.025485,40.49528200000004],[-80.02635746613116,40.493744707081056],[-80.027864,40.49109],[-80.03550059913199,40.49130712082015],[-80.040712,40.49145500000001],[-80.0454612234118,40.48839000659964],[-80.049903,40.48552300000003],[-80.053179,40.48217000000002],[-80.05310516415476,40.4820935492314],[-80.048476,40.47730000000002],[-80.04781056547367,40.47459157388762],[-80.047097,40.471687000000024],[-80.050265,40.469281000000024],[-80.0508358745019,40.4669787919323],[-80.051178,40.465599000000026],[-80.05835,40.463490000000014],[-80.06017781393093,40.46389742013385],[-80.060988,40.46407800000003],[-80.068156,40.46091100000003],[-80.07043764721867,40.46116386832377],[-80.072334,40.46137400000003],[-80.076498,40.46465700000002],[-80.07905195415006,40.462807264304985],[-80.083702,40.459439000000046],[-80.08870810954936,40.45970435605159],[-80.093856,40.45997700000001],[-80.095504,40.45823100000002],[-80.09498167457176,40.45563402889527],[-80.094024,40.45087200000003],[-80.091024,40.44905000000002],[-80.09073059179747,40.44811139223852],[-80.089237,40.44333300000003],[-80.0849538798422,40.441396762953985],[-80.082601,40.44033300000003],[-80.076352,40.44180800000002],[-80.07705916951963,40.44335806956798],[-80.078505,40.44652700000003],[-80.076534,40.448007000000025],[-80.07234397077245,40.44858988435367],[-80.06631,40.44942900000001],[-80.06219783931023,40.44688122341634],[-80.058497,40.44458800000001],[-80.061216,40.44063200000001],[-80.06068628779255,40.440178696592575],[-80.057596,40.43753400000002],[-80.05737313082673,40.432372930297674],[-80.057336,40.43151300000003],[-80.059706,40.42835100000003],[-80.06474935372974,40.43006008225382],[-80.06858,40.431358000000024],[-80.07267032897472,40.42681030232079],[-80.073882,40.425463000000036],[-80.080519,40.423723000000024],[-80.0788450472628,40.422557970272436],[-80.076213,40.42072600000001],[-80.078693,40.41649100000004],[-80.07733437611606,40.41562148475973],[-80.073862,40.41339900000002],[-80.071526,40.41581400000002],[-80.06871669112829,40.416512432234114],[-80.066168,40.417146000000024],[-80.067211,40.42245800000002],[-80.06626964648935,40.42353164914373],[-80.063787,40.42636300000004],[-80.057235,40.426439000000016],[-80.05688019545995,40.426592633473796],[-80.053773,40.42793800000003],[-80.047803,40.42573500000003],[-80.04677782296937,40.426243762448564],[-80.04315,40.42804400000003],[-80.03605621978622,40.428311663242475],[-80.034827,40.42835800000004],[-80.03918208493087,40.42133493267366],[-80.04406144636133,40.41346447382282],[-80.04893966650278,40.40559380991156],[-80.051202,40.40194300000002],[-80.04599313741693,40.39948553139477],[-80.045051,40.39904100000001],[-80.042078,40.39974600000002],[-80.03711024197591,40.403721482422256],[-80.036416,40.40427700000002],[-80.032666,40.40153500000002],[-80.03084987308367,40.39780590825921],[-80.027827,40.39159800000003],[-80.02558648110123,40.390405114083265],[-80.018159,40.386450000000046],[-80.01585287494763,40.38605519332585],[-80.014158,40.38576500000004],[-80.012579,40.38088900000002],[-80.00952055391478,40.38125123929899],[-80.007158,40.381531000000024],[-80.001728,40.379699000000016],[-80.00399783172126,40.37809584653162],[-80.005361,40.377133000000015],[-80.001586,40.37484100000002],[-80.0008585904838,40.371274268936915],[-80.00081,40.371036000000025],[-80.007897,40.36661400000004],[-80.00637187706398,40.36569288830366],[-80.004877,40.36479000000001],[-80.009643,40.36026700000001],[-80.01120901124159,40.36108937199739],[-80.012867,40.36196000000002],[-80.016409,40.35899700000003],[-80.02046850461157,40.35834718786781],[-80.028482,40.35706400000002],[-80.03139364038026,40.355993882046846],[-80.037838,40.35362500000003],[-80.04197229419783,40.35282449874965],[-80.05117,40.35104300000002],[-80.05098503131049,40.352507097726736],[-80.050922,40.353006000000015],[-80.05910286042537,40.358335808616395],[-80.064343,40.361749000000025],[-80.06878756691209,40.36240822539742],[-80.07999943181377,40.36407037427612],[-80.081414,40.36428000000002],[-80.089467,40.36182100000003],[-80.09066041233069,40.36222411905054],[-80.095418,40.36383100000002],[-80.10162641208704,40.363566734628854],[-80.107369,40.36332200000001],[-80.11188342238596,40.36593674633558],[-80.113355,40.36678900000002],[-80.119966,40.367855000000034],[-80.12153575997485,40.36963710164807],[-80.1245,40.37300200000004],[-80.129356,40.372062000000035],[-80.13026016901635,40.37253134807582],[-80.137157,40.37611100000002],[-80.14013341428064,40.376710666324904],[-80.15117849776034,40.37893518927261],[-80.152901,40.37928200000001],[-80.1611878167048,40.37552563499828],[-80.161412,40.37542400000003],[-80.15635753259448,40.36784139571204],[-80.156102,40.36745800000004],[-80.15808,40.35999500000001],[-80.1577207679524,40.35939503082984],[-80.155563,40.355791000000025],[-80.1507174338487,40.352816308102724],[-80.150155,40.35247100000004],[-80.155629,40.34852100000003],[-80.15878605315731,40.3484335110862],[-80.164102,40.34828600000003],[-80.16869038455792,40.345222575329515],[-80.169807,40.34447700000002],[-80.169546,40.33828100000001],[-80.1713441519168,40.33835268430168],[-80.175569,40.33852100000003],[-80.18006866995384,40.33424916010106],[-80.18221,40.33221600000004],[-80.183466,40.33277700000001],[-80.1878765685236,40.33645904646273],[-80.19557629182168,40.3428855923621],[-80.20327748225635,40.3493116276197],[-80.21098014032414,40.3557371520221],[-80.21868426652166,40.362162165355834],[-80.22638986134567,40.368586667407264],[-80.227765,40.36973300000004],[-80.23415622141805,40.37496900738553],[-80.24193693186832,40.381341780540204],[-80.24971911448003,40.38771403214091],[-80.25750276974303,40.39408576197142],[-80.26528789814726,40.40045696981535],[-80.272086,40.40601900000002],[-80.27309688397716,40.40681144804849],[-80.28106129784585,40.413053918434926],[-80.287991,40.41848400000002],[-80.2890021628759,40.419313931607256],[-80.29677711877099,40.42569439974634],[-80.30455354982728,40.43207434697188],[-80.31071,40.437124000000004],[-80.31234614595446,40.4384433088517],[-80.32019599823785,40.44477200867595],[-80.3280473288026,40.451100177446285],[-80.33590013813382,40.45742781494384],[-80.34375442671673,40.4637549209497],[-80.35161019503657,40.47008149524481],[-80.35946744357874,40.476407537610044],[-80.360873,40.477539],[-80.37026754142374,40.47746712200079],[-80.38170846006967,40.47737855969889],[-80.39314934833996,40.47728886933365],[-80.393513,40.47728600000003],[-80.40458961052751,40.47741086455104],[-80.41602989574517,40.47753871824161],[-80.42747022434312,40.47766544398546],[-80.438175,40.47778300000002],[-80.43891052264323,40.47777173202524],[-80.45034974247766,40.47759588617597],[-80.46178890219747,40.477418912599894],[-80.466802,40.477341000000024],[-80.47322935393727,40.47734501358559],[-80.48467084928701,40.47735127729768],[-80.49611234657938,40.47735641282967],[-80.51899534545389,40.47736329935195]]]},"properties":{"district":17}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.18221,40.33221600000004],[-80.17758062603257,40.336611316258356],[-80.175569,40.33852100000003],[-80.17139284418589,40.33835462505609],[-80.169546,40.33828100000001],[-80.16972396070335,40.3425058151516],[-80.169807,40.34447700000002],[-80.16619047475498,40.346891691493894],[-80.164102,40.34828600000003],[-80.15948556714308,40.34841411436217],[-80.155629,40.34852100000003],[-80.15306072850653,40.35037433644612],[-80.150155,40.35247100000004],[-80.15279868738956,40.35409404608078],[-80.155563,40.355791000000025],[-80.1571598310787,40.35845816202027],[-80.15808,40.35999500000001],[-80.15705453160888,40.36386430583777],[-80.156102,40.36745800000004],[-80.15727296688566,40.36921485358469],[-80.16062304353004,40.37424055119341],[-80.161412,40.37542400000003],[-80.15655084447285,40.377627671586346],[-80.152901,40.37928200000001],[-80.14985339536648,40.37866837169863],[-80.1426999310873,40.377227679649344],[-80.137157,40.37611100000002],[-80.13578047474557,40.37539660724846],[-80.12966595155052,40.37222289530195],[-80.129356,40.372062000000035],[-80.1245,40.37300200000004],[-80.12337803899473,40.371728438761934],[-80.119966,40.367855000000034],[-80.11871820498861,40.367653828937726],[-80.113355,40.36678900000002],[-80.1118296130397,40.36590558227512],[-80.107369,40.36332200000001],[-80.1055771536801,40.36339839465134],[-80.0981910303979,40.363713005315454],[-80.095418,40.36383100000002],[-80.0911940846802,40.362404381049544],[-80.089467,40.36182100000003],[-80.08435397271462,40.363382358850515],[-80.081414,40.36428000000002],[-80.07726135694348,40.36366456461932],[-80.06999992623746,40.36258801273435],[-80.064343,40.361749000000025],[-80.06310062407638,40.360939824809236],[-80.05747787114827,40.357277245394684],[-80.05185572908252,40.35361439372886],[-80.050922,40.353006000000015],[-80.05117,40.35104300000002],[-80.04770021662317,40.35171515713598],[-80.04053164142141,40.353103463501014],[-80.037838,40.35362500000003],[-80.0336791990659,40.355153793544325],[-80.028482,40.35706400000002],[-80.02689005687178,40.35731896314986],[-80.01965110283223,40.35847804324525],[-80.016409,40.35899700000003],[-80.01365861738653,40.3612978178828],[-80.012867,40.36196000000002],[-80.009643,40.36026700000001],[-80.00819906036904,40.36163740344955],[-80.004877,40.36479000000001],[-80.00651603673836,40.36577995676856],[-80.007897,40.36661400000004],[-80.00353677835542,40.36933472099692],[-80.00081,40.371036000000025],[-80.00140478338233,40.37395247032451],[-80.001586,40.37484100000002],[-80.005361,40.377133000000015],[-80.00434065301525,40.377853705693504],[-80.001728,40.379699000000016],[-80.0052359025865,40.38088255378936],[-80.007158,40.381531000000024],[-80.01239254715846,40.38091108570604],[-80.012579,40.38088900000002],[-80.014158,40.38576500000004],[-80.01476098607907,40.38586824527346],[-80.018159,40.386450000000046],[-80.02136954458962,40.38815972183062],[-80.0274349295345,40.39138926196672],[-80.027827,40.39159800000003],[-80.03023405290813,40.396541331447494],[-80.032666,40.40153500000002],[-80.03296019286988,40.401750126280675],[-80.036416,40.40427700000002],[-80.03821597759163,40.402836668931556],[-80.042078,40.39974600000002],[-80.04379599339718,40.39933861608423],[-80.045051,40.39904100000001],[-80.05022561323057,40.40148238582388],[-80.051202,40.40194300000002],[-80.04853326563016,40.406249587162954],[-80.04537391548952,40.4113470986893],[-80.04221408668525,40.41644452421266],[-80.03905377906662,40.421541863704476],[-80.03589299248281,40.42663911713619],[-80.034827,40.42835800000004],[-80.03972871135096,40.428173146807154],[-80.04315,40.42804400000003],[-80.04648347781988,40.426389833401494],[-80.047803,40.42573500000003],[-80.05304858473148,40.42767070633474],[-80.053773,40.42793800000003],[-80.057235,40.426439000000016],[-80.05985144142996,40.42640869493637],[-80.063787,40.42636300000004],[-80.06571264574379,40.4241669097444],[-80.067211,40.42245800000002],[-80.06651538751935,40.41891533918033],[-80.066168,40.417146000000024],[-80.07097210013751,40.41595171353671],[-80.071526,40.41581400000002],[-80.073862,40.41339900000002],[-80.07606750774671,40.41481065819918],[-80.078693,40.41649100000004],[-80.07707497815336,40.41925409973394],[-80.076213,40.42072600000001],[-80.08011516922734,40.423441949667236],[-80.080519,40.423723000000024],[-80.07403550670116,40.42542276096801],[-80.073882,40.425463000000036],[-80.06979064026518,40.43001206855368],[-80.06858,40.431358000000024],[-80.06377266436732,40.42972912748678],[-80.059706,40.42835100000003],[-80.05824243299755,40.430303698576125],[-80.057336,40.43151300000003],[-80.05751917698836,40.43575506862793],[-80.057596,40.43753400000002],[-80.06096351475986,40.44041593577789],[-80.061216,40.44063200000001],[-80.058497,40.44458800000001],[-80.05939669192735,40.445145518953304],[-80.06514045357258,40.44870441712921],[-80.06631,40.44942900000001],[-80.07211282784546,40.44862203446707],[-80.076534,40.448007000000025],[-80.078505,40.44652700000003],[-80.07845791536516,40.44642380621716],[-80.076352,40.44180800000002],[-80.07729388942379,40.441585704202545],[-80.082601,40.44033300000003],[-80.08419123486378,40.44105197165163],[-80.089237,40.44333300000003],[-80.08959280392759,40.44447137355762],[-80.091024,40.44905000000002],[-80.09197944863442,40.44963029494219],[-80.094024,40.45087200000003],[-80.09474879398562,40.45447609494045],[-80.095504,40.45823100000002],[-80.09409487999318,40.45972392183885],[-80.093856,40.45997700000001],[-80.08687416892072,40.45960717069455],[-80.083702,40.459439000000046],[-80.08063953643494,40.46165735677192],[-80.076498,40.46465700000002],[-80.07532406745369,40.46373149031805],[-80.072334,40.46137400000003],[-80.06926391165612,40.46103379246661],[-80.068156,40.46091100000003],[-80.06271764323397,40.463313868628326],[-80.060988,40.46407800000003],[-80.05835,40.463490000000014],[-80.05586918267035,40.464219574853],[-80.051178,40.465599000000026],[-80.05073690945237,40.46737790715956],[-80.050265,40.469281000000024],[-80.047097,40.471687000000024],[-80.04716812553293,40.47197652851483],[-80.048476,40.47730000000002],[-80.04864799714917,40.477478120445106],[-80.05303499793582,40.48202089784532],[-80.053179,40.48217000000002],[-80.049903,40.48552300000003],[-80.04862570007046,40.48634749354929],[-80.04297489109594,40.48999466329053],[-80.040712,40.49145500000001],[-80.03627119342251,40.49132900206116],[-80.0288646536988,40.491118478892886],[-80.027864,40.49109],[-80.025485,40.49528200000004],[-80.02508341705767,40.49533144615542],[-80.02014,40.495940000000004],[-80.0188784717012,40.497496588990636],[-80.016984,40.49983400000002],[-80.01343439796759,40.498798558952316],[-80.009124,40.49754100000001],[-80.00633361764852,40.49767204974696],[-80.004034,40.49778000000002],[-80.00382080306663,40.49389876923324],[-80.00351149435681,40.48826703326701],[-80.00320223755378,40.48263529647637],[-80.003188,40.48237600000003],[-80.001683,40.48008200000003],[-79.99816127597164,40.47922215913569],[-79.991105693293,40.477499126831866],[-79.988092,40.47676300000002],[-79.98684335454229,40.473676917661415],[-79.98466391582166,40.46828962675319],[-79.983868,40.46632200000002],[-79.98106348198334,40.46919420146319],[-79.97872,40.471594000000024],[-79.97587175836397,40.470073369644396],[-79.974678,40.46943600000001],[-79.96954246746144,40.47172335909319],[-79.969312,40.47182600000002],[-79.9656792498039,40.476504275446985],[-79.962997,40.47995800000005],[-79.9614389922487,40.481070311624165],[-79.95603532988464,40.484927711518814],[-79.953195,40.48695500000003],[-79.94986462697436,40.487812459861765],[-79.9428443992088,40.48961954923939],[-79.93582379340268,40.49142621383304],[-79.935572,40.49149100000003],[-79.92842630447798,40.491534917190194],[-79.927922,40.491538000000034],[-79.92127849620351,40.490099981504294],[-79.91415025757364,40.488556548208976],[-79.90702234685199,40.48701267700426],[-79.901679,40.48585500000002],[-79.90012566215994,40.48662655417012],[-79.897604,40.48787900000002],[-79.8971179902544,40.49120458493869],[-79.896912,40.492614000000025],[-79.89145330681322,40.491863756565095],[-79.884604,40.49092200000002],[-79.88456613024731,40.49057993445872],[-79.88394435778662,40.48496315931816],[-79.883772,40.48340600000002],[-79.88578791036768,40.47963158687101],[-79.886561,40.47818400000001],[-79.88740516743046,40.474160744086284],[-79.88857291059239,40.46859453890533],[-79.8897404602034,40.46302832197501],[-79.889992,40.46182900000001],[-79.88447986700912,40.46042659671966],[-79.879314,40.45911200000002],[-79.87735459146934,40.45917353572525],[-79.874504,40.459263000000014],[-79.87060599988443,40.457469751132095],[-79.868257,40.45638900000002],[-79.867028,40.45854700000002],[-79.86546830088479,40.458696064192075],[-79.8581178528949,40.45939827308112],[-79.858016,40.45940800000002],[-79.85570400882352,40.45413517716908],[-79.855472,40.453606000000015],[-79.84942397833458,40.45145800124327],[-79.844323,40.449646000000016],[-79.84254705791085,40.44970801971105],[-79.840227,40.44978900000003],[-79.83708214452386,40.44674862148411],[-79.835346,40.445070000000015],[-79.83078749313718,40.44460323001172],[-79.828364,40.44435500000004],[-79.8274364358563,40.44806408104866],[-79.826391,40.452244000000015],[-79.8251167762521,40.453228345981],[-79.81991817199099,40.45724385717113],[-79.815162,40.46091700000001],[-79.81453232274664,40.4608828850358],[-79.8071427174176,40.46048226944042],[-79.805571,40.46039700000003],[-79.80135739670871,40.46346557549322],[-79.800217,40.464296000000026],[-79.797844,40.46811000000004],[-79.79756515299938,40.468069608921724],[-79.79028686902066,40.46701509294382],[-79.789265,40.46686700000003],[-79.78361262578657,40.46463453081141],[-79.779204,40.462893000000015],[-79.77790693608276,40.4644664726738],[-79.776787,40.46582500000002],[-79.77730811631793,40.469838497963515],[-79.77803654351351,40.47544784088253],[-79.77874,40.480864000000004],[-79.7788812341932,40.4810256854242],[-79.7829825415196,40.4857204624884],[-79.784069,40.48696400000002],[-79.783363,40.489876000000024],[-79.78421316122915,40.49086609751114],[-79.78826594717468,40.49558548359743],[-79.788865,40.49628300000003],[-79.787822,40.49913400000002],[-79.78937895176301,40.50054810987467],[-79.792626,40.50349700000003],[-79.79190697242186,40.50520211638196],[-79.791452,40.50628100000002],[-79.79340641134027,40.51053245498557],[-79.793911,40.51163000000004],[-79.798048,40.51024100000003],[-79.79882877701935,40.51108964539479],[-79.800868,40.513306000000014],[-79.80472156279582,40.51341901809152],[-79.80612,40.513460000000045],[-79.80884,40.51606900000003],[-79.81043336402736,40.516350518012906],[-79.81765552694768,40.517626236851726],[-79.820344,40.51810100000003],[-79.81945736603527,40.521574656697155],[-79.819068,40.52310000000002],[-79.820868,40.52616700000002],[-79.82178159093827,40.52596044146454],[-79.827926,40.524571000000016],[-79.82795648523168,40.525334515522246],[-79.828061,40.52795200000003],[-79.8310799407414,40.52991228956001],[-79.835272,40.53263400000002],[-79.83347805189624,40.53311629152058],[-79.82648601523921,40.53499572499033],[-79.821774,40.53626200000002],[-79.81936582165015,40.536433548628466],[-79.81198141163358,40.536959266168694],[-79.805012,40.537455000000016],[-79.80460373147623,40.53739076237114],[-79.79734106182893,40.53624778146414],[-79.7900786400247,40.53510434585003],[-79.783753,40.53410800000004],[-79.78282862861963,40.53429466938121],[-79.77566069814264,40.535741890088374],[-79.772762,40.53632700000001],[-79.76942121261159,40.53852359605667],[-79.766091,40.54071300000002],[-79.76494578343028,40.54283142823431],[-79.763775,40.54499700000001],[-79.76485279046052,40.54818905042386],[-79.765415,40.54985400000003],[-79.76026460742156,40.55003736391763],[-79.756957,40.550155],[-79.75307229148446,40.55116780912037],[-79.751096,40.551683000000025],[-79.74625724687013,40.54998665460805],[-79.742639,40.54871800000003],[-79.73920734987225,40.54863919578695],[-79.734894,40.54854000000002],[-79.73283766443924,40.54677453350491],[-79.729505,40.54391300000003],[-79.7272471062009,40.543319877743876],[-79.722387,40.54204300000004],[-79.72112927323273,40.540602384615745],[-79.71702902074098,40.53590538103586],[-79.714638,40.53316600000002],[-79.7118610072685,40.532134179780165],[-79.707902,40.53066300000003],[-79.70587031669339,40.52897577383224],[-79.701624,40.52544900000005],[-79.70169633306021,40.52459487736863],[-79.70217265158557,40.518969872170224],[-79.702264,40.51789100000003],[-79.70224254978409,40.51333548742213],[-79.70221601311414,40.50769887702425],[-79.70218948090437,40.50206226662027],[-79.70216295315315,40.49642565621024],[-79.70213642985881,40.49078904579414],[-79.702131,40.48963500000003],[-79.70230051893901,40.485154261152665],[-79.70251364876853,40.47951994621024],[-79.70272674282624,40.473885630876396],[-79.70293980112527,40.468251315151285],[-79.70315282367874,40.46261699903504],[-79.70336581049976,40.45698268252782],[-79.70357876160143,40.45134836562977],[-79.703655,40.449331000000015],[-79.7038324092208,40.4457150726846],[-79.70410873094605,40.44008235046],[-79.70438500637104,40.43444962757765],[-79.70466123551273,40.42881690403776],[-79.704739,40.42723100000001],[-79.70656240878095,40.42342668381364],[-79.707042,40.42242600000005],[-79.71184606366575,40.419683381284514],[-79.715987,40.41731900000004],[-79.71687173948325,40.41576258393385],[-79.718097,40.41360700000003],[-79.72209766684335,40.414844655803556],[-79.722338,40.41491900000001],[-79.727665,40.412495000000014],[-79.72807316554847,40.41185207500327],[-79.73129469978235,40.40677716989232],[-79.732278,40.40522800000002],[-79.73244990502373,40.4013141698591],[-79.732528,40.39953600000001],[-79.737243695864,40.39812776452397],[-79.74413402989407,40.396069672358024],[-79.744702,40.395900000000026],[-79.74779024045475,40.3912937508659],[-79.748077,40.39086600000004],[-79.753776,40.388538000000004],[-79.75402777595805,40.388666455073036],[-79.76017656099583,40.39180321867634],[-79.762068,40.392768000000025],[-79.76502990394519,40.3895831638606],[-79.765137,40.389468000000036],[-79.765943,40.38418800000003],[-79.76603931002656,40.3840236832045],[-79.76905583673984,40.378876669985125],[-79.771082,40.37541900000001],[-79.77145657004766,40.3735910411349],[-79.77259763784359,40.368021837813615],[-79.77373851707982,40.362452623279964],[-79.77487920782426,40.35688339753803],[-79.77601971014477,40.35131416059185],[-79.77716002410921,40.345744912445504],[-79.7783001497854,40.34017565310303],[-79.77944008724113,40.3346063825685],[-79.780145,40.33116200000001],[-79.78066705521763,40.329048544348964],[-79.78203518826179,40.32350924104758],[-79.78340309679137,40.31796992163156],[-79.78477078088659,40.31243058610669],[-79.786103,40.30703400000001],[-79.78612994636345,40.306890187791744],[-79.78717538748175,40.30131021161738],[-79.787853,40.29769300000004],[-79.78573664375014,40.296541634096535],[-79.782304,40.29467400000002],[-79.78020042854565,40.292861501952984],[-79.775963,40.28921000000002],[-79.77568407528912,40.28848025881838],[-79.774923,40.28648900000003],[-79.7783177664181,40.284042570326875],[-79.781199,40.28196600000003],[-79.78462275238574,40.2818944619192],[-79.79200867370223,40.28173979156838],[-79.794715,40.281683000000015],[-79.796515,40.279183000000025],[-79.79635580707468,40.27847436569958],[-79.79510786107,40.27291871379192],[-79.794853,40.271784],[-79.79143033798682,40.26813725879533],[-79.788779,40.26531200000003],[-79.788371609775,40.26317272793233],[-79.788015,40.26130000000002],[-79.79102668639456,40.258344106675935],[-79.79556002465078,40.253894116650876],[-79.796099,40.25336500000003],[-79.7980785406265,40.248633931917674],[-79.798463,40.24771500000002],[-79.80175976212374,40.24377856164005],[-79.8057367095549,40.239029226686704],[-79.806997,40.237524000000015],[-79.80635458766004,40.233705126217146],[-79.806311,40.233446000000015],[-79.803539,40.231788000000016],[-79.80012057086923,40.23114834773028],[-79.79294982423707,40.22980620040344],[-79.78577936184384,40.22846361057967],[-79.781761,40.22771100000001],[-79.78471709557908,40.22668854955339],[-79.79144161464836,40.224362286653175],[-79.79816567185406,40.22203563463842],[-79.80488926718871,40.21970859356787],[-79.805879,40.21936600000002],[-79.81165983748599,40.217463073783314],[-79.8184381486984,40.215231298414004],[-79.82521601340403,40.2129991277],[-79.8319934315885,40.21076656169855],[-79.83877040323746,40.20853360046696],[-79.840423,40.207989000000026],[-79.84549524903683,40.20621158173445],[-79.85220296451739,40.203860579944724],[-79.85891021472759,40.20150919102965],[-79.86561699966185,40.19915741504835],[-79.870585,40.19741500000003],[-79.87248769486209,40.19726458316781],[-79.87982789662532,40.19668400812194],[-79.881913,40.19651900000002],[-79.88695358394058,40.19531039584445],[-79.888986,40.19482300000002],[-79.89422557099714,40.194582909304074],[-79.896448,40.194481000000025],[-79.90142683831306,40.195495058020576],[-79.90855721900517,40.196946904202974],[-79.912586,40.19776700000001],[-79.91529750954125,40.19907951006197],[-79.918346,40.20055500000004],[-79.92120434505091,40.2024334933855],[-79.9267989133617,40.206109717488104],[-79.927883,40.20682200000002],[-79.9334767845355,40.20837184376682],[-79.938683,40.20981400000002],[-79.94049148523034,40.21008383295676],[-79.9477355339742,40.211164369233465],[-79.950382,40.211559],[-79.95462903572174,40.213068746704955],[-79.956073,40.213582000000024],[-79.95997941181022,40.216844084835806],[-79.96496122778811,40.221003549602095],[-79.968335,40.22382000000003],[-79.96949865182899,40.22540817833919],[-79.97021,40.22637900000003],[-79.97057721970071,40.23089453443712],[-79.970652,40.23181400000003],[-79.96689114103813,40.23555457079022],[-79.964764,40.237670000000016],[-79.96111590065713,40.2387018248555],[-79.9541916421037,40.240659873887786],[-79.953788,40.24077400000004],[-79.94686178287488,40.24124635226043],[-79.93950672414645,40.24174749132075],[-79.934946,40.242058000000014],[-79.93229164848938,40.242751509471475],[-79.928347,40.243782000000024],[-79.92568780116741,40.24516157544795],[-79.91957992986656,40.24832985692834],[-79.916379,40.24999000000002],[-79.91440980005767,40.25221239512268],[-79.914139,40.25251800000003],[-79.92056355317673,40.25444354088011],[-79.92743846157792,40.25650354555933],[-79.93431378855269,40.25856314339556],[-79.9411895340743,40.26062233433442],[-79.94806569811608,40.262681118321424],[-79.95494228065122,40.26473949530217],[-79.957724,40.26557200000002],[-79.96182958788239,40.26677721810681],[-79.96872430958081,40.26880077889188],[-79.97561944381101,40.27082393045669],[-79.98251499054379,40.272846672747455],[-79.98941094974984,40.274869005710386],[-79.99630732139988,40.2768909292917],[-80.00320410546458,40.27891244343763],[-80.01010130191456,40.28093354809441],[-80.0169989107204,40.28295424320826],[-80.02389693185269,40.2849745287254],[-80.03079536528192,40.28699440459206],[-80.03769421097859,40.2890138707545],[-80.040329,40.28978500000002],[-80.04456932147515,40.291079920410354],[-80.05142993491525,40.29317459950149],[-80.05829097364206,40.295268873353],[-80.06515243763117,40.29736274190974],[-80.068775,40.29846800000001],[-80.07203647135177,40.299412885401345],[-80.07894568372228,40.30141417314685],[-80.08585530541271,40.30341504987269],[-80.09276533639216,40.30541551552545],[-80.0996757766298,40.307415570051646],[-80.10658662609463,40.309415213397855],[-80.11349788475572,40.31141444551063],[-80.114378,40.311668999999995],[-80.1203721082117,40.313486775974255],[-80.1272412904826,40.31556942659903],[-80.13411089646135,40.31765167091887],[-80.14098092612264,40.31973350887878],[-80.14785137944108,40.321814940423735],[-80.15472225639125,40.32389596549879],[-80.16159355694772,40.32597658404894],[-80.16846528108503,40.32805679601918],[-80.18221,40.33221600000004]]]},"properties":{"district":18}}]}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment