Created
March 2, 2016 20:03
-
-
Save jadiehm/80ac5bb6a3aaea0c73e3 to your computer and use it in GitHub Desktop.
New Hampshire Democratic results map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>New Hampshire 2016</title> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript" src="http://d3js.org/queue.v1.min.js"></script> | |
<script type="text/javascript" src="http://d3js.org/topojson.v1.min.js"></script> | |
</head> | |
<!-- CSS --> | |
<style> | |
path { | |
stroke:white; | |
fill: #d3d3d3; | |
stroke-width: 1px; | |
} | |
body { | |
font-family: 'Proxima Nova', sans-serif; | |
} | |
.precinct { | |
font: .75em; | |
font-weight: bold; | |
} | |
div.tooltip { | |
position: absolute; | |
left: 75px; | |
text-align: center; | |
height: 16px; | |
padding: 10px; | |
font-size: .85em; | |
background: #FFFFFF; | |
border: 1px solid #989898; | |
pointer-events: none; | |
} | |
.chart { | |
max-width: 300px; | |
} | |
h1{ | |
font-size: 1.25em; | |
} | |
.source{ | |
font-size: 0.75em; | |
} | |
.Sanders { | |
color: #cfdceb; | |
} | |
.Clinton { | |
color: #2f5491; | |
} | |
</style> | |
<body> | |
<div class="info"> | |
<h1>Democratic Primary Results</h1> | |
<p class="key"> | |
<span class="Clinton">■</span> Clinton | |
<span class="Sanders">■</span> Sanders | |
</p> | |
<div class="g-chart"></div> | |
<p class="source"> Source: ABC News analysis, Associated Press</p> | |
</div> | |
<script type="text/javascript"> | |
var width = 300, height = 520; | |
var div = d3.select(".g-chart").append("div") | |
.attr("class", "tooltip") | |
.style("opacity", 0); | |
var svg = d3.select(".g-chart").append("svg") | |
.attr("width", width) | |
.attr("height", height) | |
.style("margin", "-15px auto"); | |
//Tells the nap what projection to use | |
var projection = d3.geo.albersUsa() | |
.scale(10000) | |
.translate([-3000, 1575]); | |
//Tells the map how to draw the paths from the projection | |
var path = d3.geo.path() | |
.projection(projection); | |
queue() | |
.defer(d3.json, "nh_final2.json") | |
.defer(d3.csv, "nhmap.csv") | |
.await(ready); | |
function ready(error, nh, data) { | |
//array map lookup (matching values from json to csv) | |
var winnerById = {}; | |
data.forEach(function(d) { winnerById[d.id] = d.demwinner; }); | |
console.log(winnerById); | |
//Moves selction to front | |
d3.selection.prototype.moveToFront = function() { | |
return this.each(function(){ | |
this.parentNode.appendChild(this); | |
}); | |
}; | |
//Moves selction to back | |
d3.selection.prototype.moveToBack = function() { | |
return this.each(function() { | |
var firstChild = this.parentNode.firstChild; | |
if (firstChild) { | |
this.parentNode.insertBefore(this, firstChild); | |
} | |
}); | |
}; | |
svg.append("g") | |
.attr("arcs", "precinct") | |
.selectAll("path") | |
.data(topojson.feature(nh, nh.objects.nh).features) | |
.enter().append("path") | |
.attr("d", path) | |
.style("opacity", 1) | |
.style("fill", function(d){ | |
if (winnerById[d.id] === "Sanders") {return "#cfdceb";} | |
else if (winnerById[d.id] === "Clinton") {return "#2f5491";} | |
else {return "#d3d3d3";} | |
}) | |
.on("mouseover", function(d) { | |
var sel = d3.select(this); | |
sel.moveToFront(); | |
d3.select(this).transition().duration(300).style({'opacity': 1, 'stroke': 'black', 'stroke-width': 1.5}); | |
div.transition().duration(300) | |
.style("opacity", 1) | |
div.text(d.id + ": " + winnerById[d.id]) | |
.style("left", (d3.event.pageX) + "px") | |
.style("top", (d3.event.pageY -30) + "px"); | |
}) | |
.on("mouseout", function() { | |
var sel = d3.select(this); | |
sel.moveToBack(); | |
d3.select(this) | |
.transition().duration(300) | |
.style({'opacity': 1, 'stroke': 'white', 'stroke-width': 1}); | |
div.transition().duration(300) | |
.style("opacity", 0); | |
}) | |
}; | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"Topology","objects":{"nh":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"Clarksville","arcs":[[0,1,2,3,4,5,6]]},{"type":"Polygon","id":"Atkinson & Gilmanton","arcs":[[7,8,9,10,-3]]},{"type":"Polygon","id":"Stewartstown","arcs":[[-6,11,12,13]]},{"type":"Polygon","id":"Second College","arcs":[[14,15,16,-10]]},{"type":"Polygon","id":"Dixville","arcs":[[-5,17,18,19,20,21,22,-12]]},{"type":"Polygon","id":"Dixs Grant","arcs":[[-4,-11,-17,23,-18]]},{"type":"Polygon","id":"Colebrook","arcs":[[-13,-23,24,25]]},{"type":"Polygon","id":"Columbia","arcs":[[-25,-22,26,27,28,29]]},{"type":"Polygon","id":"Wentworths Location","arcs":[[-16,30,31,-19,-24]]},{"type":"Polygon","id":"Errol","arcs":[[-32,32,33,34,35]]},{"type":"Polygon","id":"Millsfield","arcs":[[-20,-36,36,37,38]]},{"type":"Polygon","id":"Ervings Location","arcs":[[-21,-39,39,-27]]},{"type":"Polygon","id":"Odell","arcs":[[-28,-40,-38,40,41,42]]},{"type":"Polygon","id":"Stratford","arcs":[[-29,-43,43,44,45]]},{"type":"Polygon","id":"Cambridge","arcs":[[-34,46,47,48,49]]},{"type":"Polygon","id":"Dummer","arcs":[[-35,-50,50,51,-41,-37]]},{"type":"Polygon","id":"Stark","arcs":[[-42,-52,52,53,54,55,-44]]},{"type":"Polygon","id":"Northumberland","arcs":[[-45,-56,56,57]]},{"type":"Polygon","id":"Success","arcs":[[58,59,60,61,62,-48]]},{"type":"Polygon","id":"Milan","arcs":[[-63,63,64,-53,-51,-49]]},{"type":"Polygon","id":"Kilkenny","arcs":[[65,66,67,68,-54,-65]]},{"type":"Polygon","id":"Lancaster","arcs":[[-55,-69,69,70,71,72,-57]]},{"type":"Polygon","id":"Berlin","arcs":[[-64,-62,73,74,-66]]},{"type":"Polygon","id":"Jefferson","arcs":[[-70,-68,75,76,77,78]]},{"type":"Polygon","id":"Gorham","arcs":[[-74,-61,79,80,81,82,83]]},{"type":"Polygon","id":"Randolph","arcs":[[-84,84,-76,-67,-75]]},{"type":"Polygon","id":"Whitefield","arcs":[[-71,-79,85,86,87]]},{"type":"Polygon","id":"Shelburne","arcs":[[-60,88,89,-80]]},{"type":"Polygon","id":"Dalton","arcs":[[-72,-88,90,91,92]]},{"type":"Polygon","id":"Littleton","arcs":[[-92,93,94,95,96,97]]},{"type":"Polygon","id":"Carroll","arcs":[[-78,98,99,100,101,102,-86]]},{"type":"Polygon","id":"Low & Burbanks","arcs":[[-85,103,104,105,-99,-77]]},{"type":"Polygon","id":"Beans Purchase","arcs":[[-81,-90,106,107,108,109,110,111]]},{"type":"Polygon","id":"Martins Location","arcs":[[-82,-112,112,113]]},{"type":"Polygon","id":"Thompson & Meserve","arcs":[[-83,-114,114,115,116,117,-104]]},{"type":"Polygon","id":"Monroe","arcs":[[118,119,120,-97]]},{"type":"Polygon","id":"Bethlehem","arcs":[[-87,-103,121,122,123,124,125,-94,-91]]},{"type":"Polygon","id":"Lyman","arcs":[[126,127,-119,-96]]},{"type":"Polygon","id":"Greens Grant","arcs":[[-113,-111,128,-115]]},{"type":"Polygon","id":"Chandlers Purchase","arcs":[[-118,129,130,131,132,-105]]},{"type":"Polygon","id":"Lisbon","arcs":[[133,134,-127,-95]]},{"type":"Polygon","id":"Crawfords Purchase","arcs":[[-133,135,-100,-106]]},{"type":"Polygon","id":"Pinkhams Grant","arcs":[[-116,-129,-110,136,137]]},{"type":"Polygon","id":"Chatham","arcs":[[138,139,140,141,-108]]},{"type":"Polygon","id":"Sargents Purchase","arcs":[[-117,-138,142,143,144,145,-130]]},{"type":"Polygon","id":"Beans Grant","arcs":[[-136,-132,146,147,-101]]},{"type":"Polygon","id":"Sugar Hill","arcs":[[148,149,150,-134,-126]]},{"type":"Polygon","id":"Franconia","arcs":[[151,152,-149,-125]]},{"type":"Polygon","id":"Cutts Grant","arcs":[[-146,153,154,-147,-131]]},{"type":"Polygon","id":"Jackson","arcs":[[-142,155,-143,-137,-109]]},{"type":"Polygon","id":"Bath","arcs":[[-128,156,157,158,-120]]},{"type":"Polygon","id":"Harts Location","arcs":[[-102,-148,-155,159,160,161,-122]]},{"type":"Polygon","id":"Landaff","arcs":[[-135,-151,162,163,-157]]},{"type":"Polygon","id":"Lincoln","arcs":[[164,165,166,167,168,-152,-124]]},{"type":"Polygon","id":"Easton","arcs":[[-150,-153,-169,169,170,-163]]},{"type":"Polygon","id":"Hadleys Purchase","arcs":[[-154,-145,171,-160]]},{"type":"Polygon","id":"Unorg. Terr.","arcs":[[-162,172,173,174,175,-166,-165,-123]]},{"type":"Polygon","id":"Haverhill","arcs":[[176,177,178,-158]]},{"type":"Polygon","id":"Bartlett","arcs":[[-156,-141,179,180,181,-173,-161,-172,-144]]},{"type":"Polygon","id":"Benton","arcs":[[-164,-171,182,183,-177]]},{"type":"Polygon","id":"Woodstock","arcs":[[-168,184,185,186,-183,-170]]},{"type":"Polygon","id":"Conway","arcs":[[187,188,189,190,191,-180,-140]]},{"type":"Polygon","id":"Hales Location","arcs":[[-192,192,-181]]},{"type":"Polygon","id":"Piermont","arcs":[[-178,193,194,195,196]]},{"type":"Polygon","id":"Thornton","arcs":[[-167,-176,197,198,199,200,-185]]},{"type":"Polygon","id":"Pittsburg","arcs":[[-8,-2,-1,201]]},{"type":"Polygon","id":"Albany","arcs":[[-193,-191,202,203,204,205,-174,-182]]},{"type":"Polygon","id":"Waterville Valley","arcs":[[-175,-206,206,-198]]},{"type":"Polygon","id":"Warren","arcs":[[-187,207,208,-194,-184]]},{"type":"Polygon","id":"Eaton","arcs":[[209,210,211,-189]]},{"type":"Polygon","id":"Madison","arcs":[[-190,-212,212,213,214,-203]]},{"type":"Polygon","id":"Orford","arcs":[[215,216,217,-196]]},{"type":"Polygon","id":"Ellsworth","arcs":[[-186,-201,218,219,220,-208]]},{"type":"Polygon","id":"Tamworth","arcs":[[-204,-215,221,222,223]]},{"type":"Polygon","id":"Wentworth","arcs":[[-209,-221,224,225,-216,-195]]},{"type":"Polygon","id":"Sandwich","arcs":[[-205,-224,226,227,228,-199,-207]]},{"type":"Polygon","id":"Rumney","arcs":[[229,230,231,-225,-220]]},{"type":"Polygon","id":"Campton","arcs":[[-200,-229,232,233,-230,-219]]},{"type":"Polygon","id":"Freedom","arcs":[[234,235,236,237,-238,237,238,239,-213,-211]]},{"type":"Polygon","id":"Lyme","arcs":[[240,241,242,243,-217]]},{"type":"Polygon","id":"Dorchester","arcs":[[-226,244,245,-241]]},{"type":"Polygon","id":"Ossipee","arcs":[[-240,-239,-238,237,-238,-237,246,247,248,249,250,-222,-214]]},{"type":"Polygon","id":"Groton","arcs":[[-232,251,252,253,254,-245]]},{"type":"Polygon","id":"Plymouth","arcs":[[-234,255,256,257,258,259,-252,-231]]},{"type":"Polygon","id":"Canterbury","arcs":[[260,261,262,263,264,265,266]]},{"type":"Polygon","id":"Sutton","arcs":[[267,268,269,270,271]]},{"type":"Polygon","id":"Loudon","arcs":[[272,273,274,275,-261,276]]},{"type":"Polygon","id":"Warner","arcs":[[277,278,279,280,281,282,-269,283]]},{"type":"Polygon","id":"Newbury","arcs":[[-271,284,285,286,287]]},{"type":"Polygon","id":"Boscawen","arcs":[[288,289,-265,-264,290,291,292]]},{"type":"Polygon","id":"Rochester","arcs":[[293,294,295,296,297,298,299]]},{"type":"Polygon","id":"Webster","arcs":[[300,-292,301,302,-280]]},{"type":"Polygon","id":"Strafford","arcs":[[-298,303,304,305,306,307]]},{"type":"Polygon","id":"Pittsfield","arcs":[[-273,308,-306,309,310,311]]},{"type":"Polygon","id":"Goshen","arcs":[[312,-286,313,314,315,316]]},{"type":"Polygon","id":"Charlestown","arcs":[[317,318,319,320,321,322]]},{"type":"Polygon","id":"Unity","arcs":[[323,324,-316,325,326,-319]]},{"type":"Polygon","id":"Chichester","arcs":[[327,328,-274,-312]]},{"type":"Polygon","id":"Concord","arcs":[[-263,-262,-276,329,330,331,332,333,334,335,336,337,338,339,-302,-291]]},{"type":"Polygon","id":"Barrington","arcs":[[340,341,342,343,344,-304,-297]]},{"type":"Polygon","id":"Somersworth","arcs":[[345,346,347,-295]]},{"type":"Polygon","id":"Bradford","arcs":[[-270,-283,348,349,350,-285]]},{"type":"Polygon","id":"Lempster","arcs":[[-326,-315,351,352,353]]},{"type":"Polygon","id":"Northwood","arcs":[[-310,-305,-345,354,355,356,357]]},{"type":"Polygon","id":"Acworth","arcs":[[-327,-354,358,359,360,-320]]},{"type":"Polygon","id":"Epsom","arcs":[[-311,-358,361,362,363,-328]]},{"type":"Polygon","id":"Hopkinton","arcs":[[-303,-340,364,365,366,367,-281]]},{"type":"Polygon","id":"Washington","arcs":[[-351,368,369,370,371,-352,-314]]},{"type":"Polygon","id":"Dover","arcs":[[-348,372,373,374,375,376,377,-341,-296]]},{"type":"Polygon","id":"Pembroke","arcs":[[-275,-329,-364,378,379,-380,380,381,382,383,384,-337,-336,-335,-334,-333,-332,-331,-330]]},{"type":"Polygon","id":"Rollinsford","arcs":[[-347,385,-373]]},{"type":"Polygon","id":"Henniker","arcs":[[-282,-368,386,387,388,-349]]},{"type":"Polygon","id":"Deerfield","arcs":[[389,390,391,392,-362,-357,-356]]},{"type":"Polygon","id":"Madbury","arcs":[[-378,-377,393,394,395,-342]]},{"type":"Polygon","id":"Langdon","arcs":[[-361,396,397,-321]]},{"type":"Polygon","id":"Hillsborough","arcs":[[-389,398,399,400,-369,-350]]},{"type":"Polygon","id":"Nottingham","arcs":[[-344,401,402,403,-390,-355]]},{"type":"Polygon","id":"Marlow","arcs":[[-353,-372,404,405,406,-359]]},{"type":"Polygon","id":"Effingham","arcs":[[-236,407,408,-247]]},{"type":"Polygon","id":"Holderness","arcs":[[-233,-228,409,410,411,-256]]},{"type":"Polygon","id":"Moultonborough","arcs":[[-223,-251,412,413,414,415,-410,-227]]},{"type":"Polygon","id":"Tuftonboro","arcs":[[-250,416,417,418,-413]]},{"type":"Polygon","id":"Hanover","arcs":[[-243,419,420,421]]},{"type":"Polygon","id":"Center Harbor","arcs":[[-416,422,423,-411]]},{"type":"Polygon","id":"Ashland","arcs":[[-258,-257,-412,424,425]]},{"type":"Polygon","id":"Canaan","arcs":[[-242,-246,426,427,428,-420]]},{"type":"Polygon","id":"Hebron","arcs":[[-253,-260,429,430,431]]},{"type":"Polygon","id":"Bridgewater","arcs":[[432,433,-430,-259,-426]]},{"type":"Polygon","id":"Orange","arcs":[[-255,434,435,-427]]},{"type":"Polygon","id":"Meredith","arcs":[[-423,-415,436,437,438,439]]},{"type":"Polygon","id":"Alexandria","arcs":[[-254,-432,440,441,442,443,-435]]},{"type":"Polygon","id":"Wakefield","arcs":[[444,445,446,447,448,-248,-409]]},{"type":"Polygon","id":"Lebanon","arcs":[[449,450,451,-421]]},{"type":"Polygon","id":"New Hampton","arcs":[[-424,-440,452,453,454,-433,-425]]},{"type":"Polygon","id":"Wolfeboro","arcs":[[-449,455,456,457,-418,-417,-249]]},{"type":"Polygon","id":"Bristol","arcs":[[-434,-455,458,-441,-431]]},{"type":"Polygon","id":"Enfield","arcs":[[-429,459,460,461,462,-450]]},{"type":"Polygon","id":"Gilford","arcs":[[-437,463,464,465,466]]},{"type":"Polygon","id":"Brookfield","arcs":[[-448,467,468,-456]]},{"type":"Polygon","id":"Laconia","arcs":[[-438,-467,469,470]]},{"type":"Polygon","id":"Grafton","arcs":[[-428,-436,-444,471,472,473,-460]]},{"type":"Polygon","id":"Alton","arcs":[[-414,-419,-458,474,475,476,-464]]},{"type":"Polygon","id":"Danbury","arcs":[[-443,477,478,479,-472]]},{"type":"Polygon","id":"Plainfield","arcs":[[-463,480,481,482,483,-451]]},{"type":"Polygon","id":"Sanbornton","arcs":[[-471,484,485,486,487,-453,-439]]},{"type":"Polygon","id":"Grantham","arcs":[[-462,488,489,-481]]},{"type":"Polygon","id":"New Durham","arcs":[[-457,-469,490,491,-475]]},{"type":"Polygon","id":"Hill","arcs":[[-454,-488,492,493,-478,-442,-459]]},{"type":"Polygon","id":"Springfield","arcs":[[-461,-474,494,495,496,497,-489]]},{"type":"Polygon","id":"Milton","arcs":[[-446,498,-300,499,500]]},{"type":"Polygon","id":"Wilmot","arcs":[[-473,-480,501,-284,-268,502,-495]]},{"type":"Polygon","id":"Middleton","arcs":[[-468,-447,-501,-491]]},{"type":"Polygon","id":"Belmont","arcs":[[-485,-470,-466,503,504,505]]},{"type":"Polygon","id":"Cornish","arcs":[[506,507,508,-483]]},{"type":"Polygon","id":"Franklin","arcs":[[-493,-487,509,510,-289,511,512]]},{"type":"Polygon","id":"Gilmanton","arcs":[[-465,-477,513,-277,-267,-504]]},{"type":"Polygon","id":"Andover","arcs":[[-494,-513,514,-278,-502,-479]]},{"type":"Polygon","id":"Tilton","arcs":[[-486,-506,515,516,-510]]},{"type":"Polygon","id":"Croydon","arcs":[[-490,-498,517,518,-507,-482]]},{"type":"Polygon","id":"New London","arcs":[[-496,-503,-272,-288,519]]},{"type":"Polygon","id":"Northfield","arcs":[[-517,-516,-505,-266,-290,-511]]},{"type":"Polygon","id":"Sunapee","arcs":[[-520,-287,-313,520,-518,-497]]},{"type":"Polygon","id":"Salisbury","arcs":[[-515,-512,-293,-301,-279]]},{"type":"Polygon","id":"Claremont","arcs":[[521,-324,-318,522,-508]]},{"type":"Polygon","id":"Newport","arcs":[[-519,-521,-317,-325,-522]]},{"type":"Polygon","id":"Farmington","arcs":[[-500,-299,-308,-492]]},{"type":"Polygon","id":"Barnstead","arcs":[[-307,-309,-514,-476]]},{"type":"Polygon","id":"Merrimack","arcs":[[523,524,525,526,527,528]]},{"type":"Polygon","id":"Seabrook","arcs":[[529,530,531,532,533,534,535]]},{"type":"Polygon","id":"Litchfield","arcs":[[536,537,538,-524,539]]},{"type":"Polygon","id":"South Hampton","arcs":[[-535,540,541,542,543]]},{"type":"Polygon","id":"Newton","arcs":[[544,-542,545,546,547]]},{"type":"Polygon","id":"Temple","arcs":[[548,549,550,551,552,553,554,555]]},{"type":"Polygon","id":"Plaistow","arcs":[[556,557,-547,558,559]]},{"type":"Polygon","id":"Wilton","arcs":[[560,561,562,563,-551]]},{"type":"Polygon","id":"Troy","arcs":[[564,565,566,567,568]]},{"type":"Polygon","id":"Jaffrey","arcs":[[569,570,571,572,573,-566,574]]},{"type":"Polygon","id":"Atkinson","arcs":[[575,-560,576,577,578]]},{"type":"Polygon","id":"Milford","arcs":[[579,580,581,582,-562,583,584]]},{"type":"Polygon","id":"Hinsdale","arcs":[[585,586,587]]},{"type":"Polygon","id":"Winchester","arcs":[[588,589,590,-586,591]]},{"type":"Polygon","id":"Salem","arcs":[[-578,592,593,594,595]]},{"type":"Polygon","id":"Windham","arcs":[[-595,596,597,598,599]]},{"type":"Polygon","id":"Sharon","arcs":[[600,-555,-554,601,602,-572]]},{"type":"Polygon","id":"Hudson","arcs":[[603,-598,604,605,606,-538]]},{"type":"Polygon","id":"Richmond","arcs":[[-568,607,608,-590,609]]},{"type":"Polygon","id":"Fitzwilliam","arcs":[[610,611,-608,-567,-574]]},{"type":"Polygon","id":"Nashua","arcs":[[-539,-607,612,613,-525]]},{"type":"Polygon","id":"Hollis","arcs":[[-526,-614,614,615,-581,616]]},{"type":"Polygon","id":"Mason","arcs":[[-583,617,618,619,620,-563]]},{"type":"Polygon","id":"Rindge","arcs":[[-603,621,622,-611,-573]]},{"type":"Polygon","id":"Brookline","arcs":[[-616,623,-618,-582]]},{"type":"Polygon","id":"Greenville","arcs":[[-621,624,-552,-564]]},{"type":"Polygon","id":"New Ipswich","arcs":[[-553,-625,-620,625,-622,-602]]},{"type":"Polygon","id":"Pelham","arcs":[[-597,-594,626,-605]]},{"type":"Polygon","id":"Bow","arcs":[[-365,-339,-338,-385,627,628,629]]},{"type":"Polygon","id":"Allenstown","arcs":[[-363,-393,630,-628,-384,-383,-382,-381,379,-380,-379]]},{"type":"Polygon","id":"Alstead","arcs":[[-360,-407,631,632,633,-397]]},{"type":"Polygon","id":"Lee","arcs":[[-396,634,635,636,-402,-343]]},{"type":"Polygon","id":"Walpole","arcs":[[-322,-398,-634,637,638,639]]},{"type":"Polygon","id":"Durham","arcs":[[-395,-394,-376,640,641,-635]]},{"type":"Polygon","id":"Windsor","arcs":[[-401,642,643,-370]]},{"type":"Polygon","id":"Dunbarton","arcs":[[-366,-630,644,645,646]]},{"type":"Polygon","id":"Weare","arcs":[[-647,647,648,649,650,-387,-367]]},{"type":"Polygon","id":"Stoddard","arcs":[[-644,651,652,653,654,-405,-371]]},{"type":"Polygon","id":"Newington","arcs":[[655,656,657,658,-641,-375]]},{"type":"Polygon","id":"Deering","arcs":[[-651,659,660,661,662,663,664,665,-399,-388]]},{"type":"Polygon","id":"Hooksett","arcs":[[-631,666,667,668,669,-645,-629]]},{"type":"Polygon","id":"Antrim","arcs":[[-400,-666,-665,-664,-663,-662,670,671,672,673,674,675,-652,-643]]},{"type":"Polygon","id":"Candia","arcs":[[676,677,678,-667,-392]]},{"type":"Polygon","id":"Portsmouth","arcs":[[679,680,681,682,683,-657]]},{"type":"Polygon","id":"Newmarket","arcs":[[-642,-659,684,685,686,687,688,-636]]},{"type":"Polygon","id":"Epping","arcs":[[-689,689,690,691,692,-403,-637]]},{"type":"Polygon","id":"Raymond","arcs":[[-404,-693,693,694,-677,-391]]},{"type":"Polygon","id":"Gilsum","arcs":[[-655,695,696,697,-632,-406]]},{"type":"Polygon","id":"Greenland","arcs":[[-658,-684,698,699,700,-685]]},{"type":"Polygon","id":"New Castle","arcs":[[680,701,702,-682,-681]]},{"type":"Polygon","id":"Surry","arcs":[[-698,703,704,-638,-633]]},{"type":"Polygon","id":"Goffstown","arcs":[[-646,-670,705,706,707,-648]]},{"type":"Polygon","id":"Stratham","arcs":[[-701,708,709,710,-686]]},{"type":"Polygon","id":"Rye","arcs":[[-703,711,712,-699,-683]]},{"type":"Polygon","id":"Sullivan","arcs":[[713,714,715,-696,-654]]},{"type":"Polygon","id":"Newfields","arcs":[[-711,716,-690,-688,-687]]},{"type":"Polygon","id":"Bennington","arcs":[[717,718,719,-674,-673,-672,-671,-661]]},{"type":"Polygon","id":"Manchester","arcs":[[720,721,-540,-529,722,-706,-669]]},{"type":"Polygon","id":"Auburn","arcs":[[-679,723,724,725,-721,-668]]},{"type":"Polygon","id":"Francestown","arcs":[[-660,-650,726,727,728,-718]]},{"type":"Polygon","id":"Brentwood","arcs":[[-691,729,730,731]]},{"type":"Polygon","id":"Exeter","arcs":[[-717,-710,732,733,734,735,736,-730]]},{"type":"Polygon","id":"New Boston","arcs":[[-649,-708,737,738,739,740,-727]]},{"type":"Polygon","id":"Nelson","arcs":[[-676,741,742,743,-714,-653]]},{"type":"Polygon","id":"Westmoreland","arcs":[[-705,744,745,746,-639]]},{"type":"Polygon","id":"Chester","arcs":[[-678,-695,747,748,749,-724]]},{"type":"Polygon","id":"Fremont","arcs":[[-692,-732,750,751,752,-748,-694]]},{"type":"Polygon","id":"Hancock","arcs":[[-720,753,754,755,756,-742,-675]]},{"type":"Polygon","id":"North Hampton","arcs":[[-700,-713,757,758,-709]]},{"type":"Polygon","id":"Keene","arcs":[[-697,-716,759,760,761,762,763,-745,-704]]},{"type":"Polygon","id":"Greenfield","arcs":[[-729,764,-549,765,-755,-754,-719]]},{"type":"Polygon","id":"Roxbury","arcs":[[-744,766,767,-761,-760,-715]]},{"type":"Polygon","id":"Bedford","arcs":[[-707,-723,-528,768,-738]]},{"type":"Polygon","id":"Harrisville","arcs":[[-743,-757,769,770,771,-767]]},{"type":"Polygon","id":"Hampton","arcs":[[-733,-759,772,-533,773]]},{"type":"Polygon","id":"Hampton Falls","arcs":[[-734,-774,-532,-531,-530,774]]},{"type":"Polygon","id":"Sandown","arcs":[[775,776,777,-749,-753]]},{"type":"Polygon","id":"Kensington","arcs":[[-735,-775,-536,-544,778]]},{"type":"Polygon","id":"Danville","arcs":[[779,780,-776,-752]]},{"type":"Polygon","id":"Kingston","arcs":[[-731,-737,781,-548,-558,782,-780,-751]]},{"type":"Polygon","id":"Lyndeborough","arcs":[[-741,783,-584,-561,-550,-765,-728]]},{"type":"Polygon","id":"East Kingston","arcs":[[-736,-779,-543,-545,-782]]},{"type":"Polygon","id":"Londonderry","arcs":[[-726,784,-599,-604,-537,-722]]},{"type":"Polygon","id":"Peterborough","arcs":[[-766,-556,-601,-571,785,-770,-756]]},{"type":"Polygon","id":"Amherst","arcs":[[-769,-527,-617,-580,786,-739]]},{"type":"Polygon","id":"Derry","arcs":[[-725,-750,-778,787,-579,-596,-600,-785]]},{"type":"Polygon","id":"Chesterfield","arcs":[[-764,788,-592,-588,789,-746]]},{"type":"Polygon","id":"Marlborough","arcs":[[-772,790,-575,-565,791,-762,-768]]},{"type":"Polygon","id":"Mont Vernon","arcs":[[-787,-585,-784,-740]]},{"type":"Polygon","id":"Dublin","arcs":[[-771,-786,-570,-791]]},{"type":"Polygon","id":"Swanzey","arcs":[[-792,-569,-610,-589,-789,-763]]},{"type":"Polygon","id":"Hampstead","arcs":[[-781,-783,-557,-576,-788,-777]]}]}},"arcs":[[[588,886],[0,4],[8,7],[5,0],[11,6],[11,0],[11,-3],[16,0]],[[650,900],[24,-4],[0,4],[72,-7],[-2,-6]],[[744,887],[-8,-21]],[[736,866],[-19,1]],[[717,867],[-35,5]],[[682,872],[-100,10],[-5,1]],[[577,883],[11,3]],[[744,887],[61,0]],[[805,887],[3,-15]],[[808,872],[-51,-2],[-1,-6]],[[756,864],[-20,2]],[[682,872],[-9,-22]],[[673,850],[-112,10]],[[561,860],[0,6],[-5,1],[-9,9],[9,7],[13,1],[8,-1]],[[808,872],[3,-42]],[[811,830],[-68,-3]],[[743,827],[13,37]],[[717,867],[3,-41]],[[720,826],[2,-12]],[[722,814],[-40,0],[-22,-1],[0,0]],[[660,813],[-13,0]],[[647,813],[5,13]],[[652,826],[3,4],[11,3],[7,17]],[[743,827],[-23,-1]],[[652,826],[-94,10]],[[558,836],[8,7],[6,3],[-9,7],[-2,7]],[[647,813],[-3,-10]],[[644,803],[-45,-3]],[[599,800],[-84,-6]],[[515,794],[3,5],[10,1],[4,7],[-3,3],[3,4],[5,0],[5,6],[-3,3],[8,9],[5,0],[6,4]],[[811,830],[2,-14]],[[813,816],[-26,0],[-39,0],[-26,-2]],[[813,816],[5,-46]],[[818,770],[-80,0]],[[738,770],[-13,0]],[[725,770],[-3,44]],[[725,770],[-62,-1]],[[663,769],[-1,30]],[[662,799],[-2,14]],[[662,799],[-20,1],[2,3]],[[663,769],[0,-16]],[[663,753],[-48,-1]],[[615,752],[-16,48]],[[615,752],[2,-3],[-42,-4]],[[575,745],[-6,2],[-32,-2]],[[537,745],[-9,2],[-7,5],[2,4],[-5,3],[0,7],[-16,13],[-3,8],[8,2],[8,5]],[[818,770],[3,-20],[0,-17]],[[821,733],[-30,0]],[[791,733],[-50,-1]],[[741,732],[-3,38]],[[741,732],[-22,-2],[-51,0]],[[668,730],[-5,23]],[[668,730],[-10,-13]],[[658,717],[-32,-10],[-19,-4],[-4,-6]],[[603,697],[-5,-1]],[[598,696],[-5,0],[0,7],[-11,0],[-2,20],[-1,22],[-4,0]],[[598,696],[-16,-4],[-53,14]],[[529,706],[-12,4],[3,6],[17,-1],[2,5],[9,3],[0,3],[-12,3],[4,1],[-3,15]],[[821,733],[3,-33],[3,-33]],[[827,667],[-76,-1]],[[751,666],[-2,6]],[[749,672],[8,10],[13,20]],[[770,702],[21,31]],[[770,702],[-94,-2],[-29,-1]],[[647,699],[11,18]],[[647,699],[-22,-30],[5,0]],[[630,669],[1,-14]],[[631,655],[-19,4],[-5,17]],[[607,676],[-4,21]],[[607,676],[-25,-3],[-29,-1],[-6,-3]],[[547,669],[-5,-2],[-40,-11]],[[502,656],[-19,11]],[[483,667],[5,9],[8,0],[-5,3],[8,6],[18,0],[6,8],[6,-1],[-11,5],[7,2],[4,7]],[[749,672],[-46,-2]],[[703,670],[-21,0],[-52,-1]],[[631,655],[0,-22]],[[631,633],[2,-6],[-10,-1],[-3,7],[-17,0]],[[603,633],[-45,-4],[-2,6]],[[556,635],[-9,34]],[[751,666],[1,-37]],[[752,629],[-17,0]],[[735,629],[-21,0]],[[714,629],[-8,0]],[[706,629],[-3,41]],[[706,629],[-13,0],[-1,4],[-61,0]],[[556,635],[-38,-3],[5,-16]],[[523,616],[-18,3],[-36,8]],[[469,627],[43,20],[-10,9]],[[827,667],[2,-38]],[[829,629],[-23,0],[-27,0],[-27,0]],[[469,627],[-5,-1]],[[464,626],[-35,27]],[[429,653],[11,0],[3,3],[13,0],[19,7],[-1,3],[9,1]],[[464,626],[0,0],[-53,-23]],[[411,603],[-36,7]],[[375,610],[-35,9]],[[340,619],[-29,8]],[[311,627],[27,0],[8,5],[11,0],[10,-3],[14,0],[21,6],[-2,4],[2,6],[14,7],[5,-2],[8,3]],[[603,633],[8,-30]],[[611,603],[-10,0],[16,-17]],[[617,586],[8,-4]],[[625,582],[-11,-2]],[[614,580],[-13,15],[-16,4],[-19,-3],[0,3],[-16,-1],[-21,-2],[-6,20]],[[706,629],[-64,-16]],[[642,613],[-4,-1]],[[638,612],[-27,-9]],[[829,629],[3,-21]],[[832,608],[-19,0],[1,-9],[-1,-10],[-29,0]],[[784,589],[-32,1],[-14,0],[-33,2]],[[705,592],[0,4],[11,3],[3,9]],[[719,608],[9,0],[-1,11]],[[727,619],[5,0],[3,10]],[[727,619],[-18,0]],[[709,619],[5,10]],[[709,619],[-1,-10]],[[708,609],[0,-1]],[[708,608],[-61,-6]],[[647,602],[-5,11]],[[340,619],[-8,-6],[-10,2],[-22,-19],[-8,-3],[0,-3]],[[292,590],[-6,-2],[1,-3],[-11,-6],[-3,4]],[[273,583],[1,7],[-3,2],[-1,8],[-5,3],[9,7],[10,5],[0,4],[6,3],[15,1],[6,4]],[[614,580],[-5,-1],[8,-16]],[[617,563],[-5,0]],[[612,563],[-49,9],[-15,3]],[[548,575],[-17,3],[-48,10],[-46,8]],[[437,596],[-26,7]],[[375,610],[-40,-31]],[[335,579],[-43,11]],[[719,608],[-11,1]],[[647,602],[5,-16]],[[652,586],[-3,-1]],[[649,585],[-8,20]],[[641,605],[-3,7]],[[411,603],[-25,-31]],[[386,572],[-48,7],[-3,0]],[[641,605],[-13,-13],[-11,-6]],[[705,592],[-7,-6]],[[698,586],[-3,3],[0,10],[11,3],[2,6]],[[832,608],[5,-82]],[[837,526],[-7,2],[-38,0]],[[792,528],[-6,1],[-2,17]],[[784,546],[0,43]],[[698,586],[-24,-34],[0,0]],[[674,552],[-1,-10]],[[673,542],[-5,0],[-8,24]],[[660,566],[6,6],[0,4],[5,7],[8,3],[2,4],[-10,-1],[-11,3],[-8,-6]],[[649,585],[-8,-13],[0,-3],[-5,-3]],[[636,566],[-5,2],[-6,14]],[[437,596],[-22,-30]],[[415,566],[-16,3]],[[399,569],[-13,3]],[[548,575],[-22,-33],[-78,17]],[[448,559],[-33,7]],[[660,566],[-3,-3],[-10,-1]],[[647,562],[-11,4]],[[784,546],[-5,2],[-22,-2],[-6,3],[-24,3],[-3,-3],[-13,3],[-37,0]],[[335,579],[14,-37]],[[349,542],[-17,4],[-34,9],[-19,4]],[[279,559],[-6,4],[-8,7],[0,5],[8,8]],[[647,562],[7,-16],[-2,-11],[5,-3],[12,1]],[[669,533],[-3,-7],[-9,-3],[-5,3]],[[652,526],[-11,0],[-8,10],[3,9],[-6,14],[-13,4]],[[399,569],[-21,-34]],[[378,535],[-29,7]],[[612,563],[-3,-5],[5,-6],[9,-4],[-3,-6],[-21,-4],[-6,-6],[-8,-2],[-10,-4],[-1,-7],[3,-3],[-3,-6]],[[574,510],[-5,-4],[-8,0],[-3,-4],[-8,-3],[-21,7],[-25,6],[-3,-3]],[[501,509],[-7,-1]],[[494,508],[-54,14],[-16,4]],[[424,526],[24,33]],[[424,526],[-11,3],[-2,-3]],[[411,526],[-33,9]],[[673,542],[-4,-9]],[[652,526],[-21,-18]],[[631,508],[2,-9]],[[633,499],[-35,-3],[-45,-4],[-40,-4]],[[513,488],[-12,21]],[[349,542],[-28,-44]],[[321,498],[-20,5],[-12,3],[1,-4],[-32,8]],[[258,510],[2,6],[14,9],[-1,4],[11,0],[-8,3],[6,0],[2,4],[-5,3],[-5,-3],[-3,3],[2,6],[8,1],[-2,13]],[[792,528],[-30,0],[-16,1],[3,-10]],[[749,519],[-13,0],[4,-11]],[[740,508],[-80,1],[-29,-1]],[[411,526],[-8,-16],[-8,-18]],[[395,492],[-39,4],[-26,2],[-9,0]],[[494,508],[-30,-39],[-19,3]],[[445,472],[-37,7]],[[408,479],[5,11],[-18,2]],[[837,526],[3,-57]],[[840,469],[-32,0],[0,16],[-17,0],[1,-16],[-11,0]],[[781,469],[-5,0],[0,16],[-16,0]],[[760,485],[-8,24]],[[752,509],[-3,10]],[[752,509],[-12,-1]],[[321,498],[3,-32]],[[324,466],[-5,0]],[[319,466],[-70,16],[0,0]],[[249,482],[1,4],[-9,0],[0,6],[-2,4],[7,3],[0,6],[4,0],[2,4],[5,-3],[1,4]],[[513,488],[18,-30],[3,0]],[[534,458],[2,-6]],[[536,452],[-48,-3],[-10,-1],[2,-2],[-13,0],[-8,7],[-11,0]],[[448,453],[-3,19]],[[588,886],[-19,0],[5,13],[-8,1],[6,4],[-1,5],[9,4],[8,0],[0,4],[8,3],[13,10],[-5,7],[7,4],[0,5],[14,14],[-5,4],[-16,6],[-5,3],[15,-3],[8,4],[9,-4],[5,6],[11,3],[-3,5],[13,2],[11,5],[6,0],[5,6],[16,-3],[3,-8],[8,-2],[7,-7],[20,2],[8,-6],[10,4],[8,-4],[6,1],[13,13],[1,6],[7,4],[6,2],[2,-12],[6,-41],[5,-59]],[[760,485],[-14,0],[-24,-16]],[[722,469],[-54,-3],[0,3],[-8,0],[2,-4],[-18,-2]],[[644,463],[-2,3]],[[642,466],[-9,33]],[[642,466],[-19,-1],[-89,-7]],[[408,479],[-14,-24]],[[394,455],[-70,10],[0,1]],[[840,469],[0,-17]],[[840,452],[-2,-3],[-46,-7]],[[792,442],[-3,7],[-3,0],[0,11],[-5,9]],[[792,442],[-14,1],[-40,-8]],[[738,435],[-3,-2]],[[735,433],[-10,26],[-3,10]],[[319,466],[2,-3],[-34,-27]],[[287,436],[-14,3],[-62,10]],[[211,449],[0,6],[4,0],[5,5],[16,8],[3,11],[5,0],[5,3]],[[448,453],[0,-10]],[[448,443],[-53,12]],[[395,455],[-1,0]],[[735,433],[-29,-5],[-21,-16]],[[685,412],[-27,3]],[[658,415],[-14,48]],[[395,455],[-20,-13],[-24,-19]],[[351,423],[-29,6],[-35,7]],[[658,415],[-20,0],[-88,-6]],[[550,409],[-2,12],[-3,0]],[[545,421],[-9,31]],[[448,443],[-10,-15],[-3,-5]],[[435,423],[-5,-4],[-4,-8],[-5,1]],[[421,412],[-40,7],[-30,4]],[[545,421],[-40,-3],[-27,-2]],[[478,416],[-6,-1],[-22,0],[-2,4],[-13,4]],[[840,452],[2,-33]],[[842,419],[-13,-1],[-10,0],[-9,4],[-8,-3],[-5,3],[-5,-1]],[[792,421],[-6,4],[-5,0],[0,-4],[-5,-5],[-9,0],[-8,3],[-3,3],[-12,6]],[[744,428],[2,0]],[[746,428],[-5,4]],[[741,432],[-3,3]],[[287,436],[-17,-38]],[[270,398],[-10,1]],[[260,399],[-76,9]],[[184,408],[7,3],[0,5],[5,2],[8,7],[-3,4],[3,6],[-3,7],[3,6],[7,1]],[[351,423],[-13,-38]],[[338,385],[-14,3],[-54,10]],[[792,421],[-3,-2],[-22,-17],[62,-27]],[[829,375],[-24,-16]],[[805,359],[-32,12],[-2,-2],[-17,6],[-5,-4],[-13,4]],[[736,375],[-31,36]],[[705,411],[-20,1]],[[421,412],[-3,-7],[8,-3],[-5,-7]],[[421,395],[-13,3],[-24,-19]],[[384,379],[-20,3]],[[364,382],[-26,3]],[[478,416],[-6,-4],[-3,-7],[5,-3]],[[474,402],[7,-7]],[[481,395],[2,-6]],[[483,389],[-40,-11]],[[443,378],[-11,14],[-11,3]],[[595,269],[0,-11],[-26,-16],[-13,-10]],[[556,232],[-3,3],[-30,-9]],[[523,226],[-2,-1]],[[521,225],[2,1]],[[523,226],[0,5],[-8,1],[3,4],[-8,0],[-1,6],[-7,-1],[-3,11],[-8,3]],[[491,255],[46,9],[37,8],[13,0]],[[587,272],[8,-3]],[[351,269],[13,-14]],[[364,255],[6,-7],[13,-20],[-40,-3]],[[343,225],[-16,-3]],[[327,222],[-32,40]],[[295,262],[38,6],[18,1]],[[650,248],[-17,-13]],[[633,235],[-35,-26]],[[598,209],[-5,3]],[[593,212],[-27,10],[-10,10]],[[595,269],[17,-5],[38,-16]],[[378,265],[11,3]],[[389,268],[2,-30],[25,6]],[[416,244],[21,-22],[14,-14]],[[451,208],[-35,-3]],[[416,205],[-25,-4],[-26,-3]],[[365,198],[-22,27]],[[364,255],[3,3],[11,4],[0,3]],[[327,222],[-43,-7],[-18,-1]],[[266,214],[-12,25],[4,6]],[[258,245],[16,17]],[[274,262],[21,0]],[[478,261],[11,1]],[[489,262],[2,-7]],[[521,225],[-33,-7]],[[488,218],[-10,11],[-3,-1],[-3,7],[-11,7],[1,3],[-9,9]],[[453,254],[25,7]],[[846,262],[5,-8],[13,-9],[11,0],[13,-13],[6,-3],[0,-4]],[[894,225],[-16,-11]],[[878,214],[-14,-12]],[[864,202],[-13,6],[-14,7],[-18,7],[-11,4]],[[808,226],[-8,5]],[[800,231],[21,13],[22,14]],[[843,258],[3,4]],[[416,244],[16,4],[21,6]],[[488,218],[-8,-3]],[[480,215],[-16,-4],[-13,-3]],[[808,226],[-40,-32]],[[768,194],[-30,11],[-32,16]],[[706,221],[5,4]],[[711,225],[25,17],[16,10]],[[752,252],[48,-21]],[[650,248],[32,-12],[29,-11]],[[706,221],[-8,-9]],[[698,212],[-54,6]],[[644,218],[14,8],[-25,9]],[[233,242],[19,3],[6,0]],[[266,214],[2,-3],[-35,1]],[[233,212],[-11,-1],[-3,13],[-2,0]],[[217,224],[-5,10]],[[212,234],[21,8]],[[83,245],[29,-1],[-2,-6]],[[110,238],[-3,-12],[13,-11]],[[120,215],[-11,0],[6,-21]],[[115,194],[-33,-2],[-7,-3],[7,-13],[-13,2]],[[69,178],[-11,0]],[[58,178],[-4,7],[5,0],[-1,6],[6,1],[-2,7],[5,5],[-1,8],[3,3],[8,3],[6,6],[2,7],[5,4],[-8,7],[1,3]],[[110,238],[8,0],[2,6],[21,0],[17,-2]],[[158,242],[5,0],[49,-8]],[[217,224],[-45,-6]],[[172,218],[-9,0],[-34,-3],[-9,0]],[[644,218],[-21,-26]],[[623,192],[-33,13],[8,4]],[[593,212],[0,-1]],[[593,211],[-3,-3]],[[590,208],[-2,-3]],[[588,205],[-1,-1]],[[587,204],[-7,-6]],[[580,198],[2,-6],[-10,0]],[[572,192],[2,-6]],[[574,186],[-5,-4],[6,0],[-3,-6]],[[572,176],[-4,3],[-8,0],[-5,3]],[[555,182],[-2,2],[-33,-9],[-7,4]],[[513,179],[-14,16],[-19,20]],[[864,202],[-3,-4]],[[861,198],[-11,-7],[-10,-9]],[[840,182],[-16,-14]],[[824,168],[-29,13],[-6,4],[-19,7]],[[770,192],[-2,2]],[[894,225],[8,-4],[10,-3],[3,-4],[8,0],[3,-5]],[[926,209],[-25,-7]],[[901,202],[-23,12]],[[365,198],[-16,-3]],[[349,195],[-54,-7]],[[295,188],[-16,13],[-3,13],[-10,0]],[[233,212],[-2,-26],[-16,-1]],[[215,185],[-33,-3]],[[182,182],[-10,36]],[[770,192],[-16,-13]],[[754,179],[-19,3],[-35,4],[0,2]],[[700,188],[-5,6],[5,2],[-13,3]],[[687,199],[11,13]],[[182,182],[-24,-1]],[[158,181],[-38,-3]],[[120,178],[-5,16]],[[687,199],[-19,-21],[0,0]],[[668,178],[-42,4]],[[626,182],[-12,3],[9,7]],[[513,179],[-14,-1]],[[499,178],[-19,-3]],[[480,175],[-35,-6]],[[445,169],[-29,36]],[[295,188],[-14,-3],[6,-7]],[[287,178],[-8,-13]],[[279,165],[-51,1],[-24,0]],[[204,166],[3,9],[8,10]],[[901,202],[9,-7],[8,-1],[8,1],[0,-3],[11,0]],[[937,192],[-6,-4],[3,-6],[-6,-11],[3,-6],[5,-3]],[[936,162],[-10,-1],[-5,3]],[[921,164],[-3,1]],[[918,165],[-3,0]],[[915,165],[-16,9],[-24,15],[-14,9]],[[626,182],[-9,-10],[-5,3],[-3,-6]],[[609,169],[-2,0]],[[609,169],[-2,-1]],[[607,168],[0,1]],[[607,169],[0,-1]],[[607,168],[-19,-3]],[[588,165],[2,3],[-10,7],[-8,1]],[[926,209],[11,-1],[5,-6],[-5,-4],[0,-6]],[[445,169],[-42,-5]],[[403,164],[-25,-3]],[[378,161],[-29,34]],[[754,179],[-11,-8],[9,-3],[-6,-6],[-8,4],[-11,-8],[9,0],[-11,-13]],[[725,145],[-11,2]],[[714,147],[-65,8]],[[649,155],[3,6],[6,4],[10,13]],[[918,165],[-3,0]],[[915,165],[-40,10],[-16,3]],[[859,178],[-19,4]],[[120,178],[1,-3],[-22,1],[2,-10]],[[101,166],[-32,2],[0,10]],[[378,161],[-24,-5],[-5,0]],[[349,156],[-40,-4]],[[309,152],[-22,26]],[[824,168],[-25,-21]],[[799,147],[-28,0],[-3,-8]],[[768,139],[-27,3],[-16,3]],[[204,166],[-8,-21]],[[196,145],[-27,-1]],[[169,144],[-11,37]],[[842,419],[1,-10],[5,-33]],[[848,376],[-10,5],[-9,-6]],[[550,409],[3,-3]],[[553,406],[5,-24],[-21,-1],[-11,0]],[[526,381],[-1,4],[-32,17],[-19,0]],[[705,411],[-12,-9],[-31,-23],[1,-4],[11,0],[0,-9],[-11,-1],[-6,-4],[1,-6],[-4,0]],[[654,355],[-2,1]],[[652,356],[-51,26]],[[601,382],[-48,24]],[[736,375],[-33,-24],[-5,1]],[[698,352],[-3,-10],[-11,-1]],[[684,341],[-30,14]],[[260,399],[-46,-31]],[[214,368],[-61,10],[-16,1]],[[137,379],[5,7],[11,7],[2,3],[22,5],[7,7]],[[601,382],[-11,-4],[-10,4],[-25,-11]],[[555,371],[-18,0],[-11,10]],[[526,381],[-37,-3]],[[489,378],[-4,5],[-2,6]],[[338,385],[-9,-3],[-31,-27]],[[298,355],[-8,-6]],[[290,349],[-57,14],[-19,5]],[[443,378],[-14,-5]],[[429,373],[-16,-4]],[[413,369],[-5,-3],[-16,5],[-6,2],[-2,6]],[[489,378],[-3,-9],[2,-7],[-2,-4]],[[486,358],[-11,-3],[-6,4],[-10,3],[-17,-4],[-10,4],[-3,7],[11,-1],[-11,5]],[[364,382],[-13,-13],[-2,-4],[7,-7],[-4,-3],[7,-2],[-5,-5]],[[354,348],[-56,7]],[[652,356],[-3,-1],[-8,6],[-8,0],[-2,-6],[-11,1],[-5,-4],[-19,1],[-1,-1]],[[595,352],[-10,4],[-10,-3],[-14,-8],[-11,0],[0,-6],[3,-4],[8,-3],[2,-4]],[[563,328],[-31,4],[-39,7]],[[493,339],[3,2],[36,18],[23,12]],[[413,369],[22,-31],[-6,-6]],[[429,332],[-10,-4],[-3,3],[-8,-2],[-8,-3],[-1,-3]],[[399,323],[-18,26],[-8,-4]],[[373,345],[-19,3]],[[848,376],[3,-43],[10,-2],[1,-9],[-5,0]],[[857,322],[-1,0],[-30,-21]],[[826,301],[-10,18]],[[816,319],[-14,39]],[[802,358],[3,1]],[[214,368],[-24,-29]],[[190,339],[-38,3],[-29,3]],[[123,345],[-2,4],[5,10],[7,2],[-2,4],[8,7],[-2,7]],[[493,339],[-35,-17]],[[458,322],[-4,4],[-8,6]],[[446,332],[7,6],[-8,4],[13,3],[3,-3],[19,4],[0,5],[8,2],[-2,5]],[[802,358],[-34,-23]],[[768,335],[-19,-13]],[[749,322],[-19,7],[-5,-3],[-11,6],[-16,3],[-14,6]],[[446,332],[-1,1],[-16,-1]],[[290,349],[-27,-21]],[[263,328],[-11,-10]],[[252,318],[-16,4],[8,6],[-16,4],[-19,3]],[[209,335],[-19,4]],[[652,356],[6,-18],[10,0],[1,-6],[-9,0],[8,-21]],[[668,311],[-40,-9],[-3,-3]],[[625,299],[-27,12],[-2,-2]],[[596,309],[2,6],[-5,0],[3,4],[-6,2],[6,11],[7,0],[3,14],[-11,6]],[[816,319],[-3,-3],[-13,2],[-9,-9],[-2,3],[-11,-1]],[[778,311],[-10,24]],[[596,309],[-6,0],[-21,10]],[[569,319],[-6,4],[0,5]],[[373,345],[-14,-10],[-21,-16]],[[338,319],[-3,-1]],[[335,318],[-70,5],[-2,5]],[[749,322],[-14,-10],[13,-46],[4,-14]],[[752,252],[-55,20],[-10,3]],[[687,275],[8,7],[-19,7],[-8,22]],[[399,323],[3,-5],[-8,-5],[6,-8],[-6,0],[6,-7]],[[400,298],[-25,-6]],[[375,292],[-7,7],[-9,-7],[-21,27]],[[209,335],[-10,-7],[-1,-16],[-13,-10]],[[185,302],[-6,2]],[[179,304],[0,8],[-7,3],[-9,0],[-10,-3],[-65,3]],[[88,315],[9,7],[0,13],[15,4],[11,6]],[[569,319],[-6,-7],[0,-4]],[[563,308],[-61,-13]],[[502,295],[-6,10],[-8,-3],[-16,7],[-5,4]],[[467,313],[0,6],[-9,3]],[[252,318],[-11,-9],[11,-1],[-11,-13]],[[241,295],[-8,7],[-8,-7],[-21,3],[-19,4]],[[778,311],[11,-30],[3,-3]],[[792,278],[-14,-10],[-26,-16]],[[467,313],[-22,-4]],[[445,309],[-13,-4],[-32,-7]],[[335,318],[-29,-24]],[[306,294],[-9,-12],[-23,3]],[[274,285],[-35,1]],[[239,286],[2,9]],[[857,322],[5,-7],[-1,-4],[-8,-13],[6,-3],[-3,-7],[3,-4],[-14,-10],[3,-6],[-2,-6]],[[843,258],[-24,10],[-27,10]],[[792,278],[34,23]],[[375,292],[-16,-4],[19,-23]],[[351,269],[-15,6],[8,7],[-20,4],[-18,8]],[[625,299],[-13,-8],[-25,-19]],[[587,272],[-42,17]],[[545,289],[8,6],[-3,6],[8,-2],[0,5],[5,4]],[[179,304],[-8,-6],[-13,0],[-3,-7],[1,-13]],[[156,278],[-17,0],[-19,0],[-32,1]],[[88,279],[3,7],[0,9],[5,3],[0,8],[-8,5],[0,4]],[[502,295],[-1,-3],[4,-7]],[[505,285],[-4,0],[3,-4],[-5,0],[3,-9],[-8,0],[0,-6],[-5,-4]],[[478,261],[-9,4],[-2,7],[-5,-1],[2,7],[3,1],[-1,6]],[[466,285],[-7,13],[-14,11]],[[687,275],[-27,-20],[-10,-7]],[[466,285],[-77,-17]],[[545,289],[-8,0]],[[537,289],[-22,-7],[-10,3]],[[239,286],[-4,-20]],[[235,266],[-79,12]],[[274,262],[2,12],[-6,4],[4,7]],[[233,242],[2,24]],[[156,278],[2,-36]],[[83,245],[8,6],[-11,4],[0,7],[5,3],[3,14]],[[593,79],[-5,-7],[-11,-7],[2,-8],[-2,-3],[5,-9],[3,-6]],[[585,39],[-2,-2],[-12,1],[0,3],[-10,-2],[-16,2],[-6,-4]],[[539,37],[-2,4]],[[537,41],[-11,34],[5,2]],[[531,77],[64,4]],[[595,81],[-2,-2]],[[881,79],[5,-1],[27,0]],[[913,78],[5,0]],[[918,78],[16,-3]],[[934,75],[3,-1]],[[937,74],[-1,-7],[-18,-5],[-19,9],[-16,1]],[[883,72],[0,5]],[[883,77],[-2,2]],[[599,74],[8,-26]],[[607,48],[4,-9],[-23,-1]],[[588,38],[-3,1]],[[593,79],[6,-5]],[[883,72],[-8,-1],[-21,-6],[-16,-1]],[[838,64],[-8,7],[2,4]],[[832,75],[18,2]],[[850,77],[14,1],[19,-1]],[[824,75],[8,0]],[[838,64],[-17,-3],[-8,-3],[-5,-7]],[[808,51],[-17,7],[3,3]],[[794,61],[6,4],[0,4],[8,6],[16,0]],[[365,69],[14,2]],[[379,71],[12,0],[1,-6]],[[392,65],[10,-30]],[[402,35],[-7,0]],[[395,35],[-30,0],[-11,0]],[[354,35],[-3,6],[8,4],[1,9]],[[360,54],[-1,4]],[[359,58],[1,3],[7,1],[-2,7]],[[765,62],[5,6]],[[770,68],[5,1],[14,-8],[5,0]],[[808,51],[-6,-10],[-27,4]],[[775,45],[1,4],[-3,6],[-8,7]],[[392,65],[51,3],[2,-10]],[[445,58],[6,-20]],[[451,38],[-21,0],[-17,-3]],[[413,35],[-11,0]],[[179,65],[8,2],[6,-6],[5,-3],[22,3],[5,-3]],[[225,58],[3,-14]],[[228,44],[-19,1],[0,-4],[-11,0],[0,-3],[-16,-1]],[[182,37],[0,4],[-11,1],[0,3]],[[171,45],[5,12],[3,0],[0,8]],[[225,67],[8,-2],[32,0],[40,0]],[[305,65],[3,-13]],[[308,52],[6,-17]],[[314,35],[-65,3]],[[249,38],[-19,0],[-2,6]],[[225,58],[-3,9],[3,0]],[[725,61],[7,4],[3,-4],[19,0],[6,-2],[5,3]],[[775,45],[-10,3],[-17,-6]],[[748,42],[-4,3],[-11,0],[3,6],[-9,8]],[[727,59],[-2,2]],[[478,65],[2,-6],[6,0],[8,-4],[2,-4],[9,-2],[4,-11],[1,0]],[[510,38],[2,-1],[-10,-2],[-3,-4],[-8,-2]],[[491,29],[0,9],[-27,-3],[2,-7],[-13,0]],[[453,28],[-2,10]],[[445,58],[21,3],[-2,3]],[[464,64],[14,1]],[[42,61],[9,-30],[5,-20]],[[56,11],[-11,8],[-3,6],[-7,4],[-12,-2],[1,4],[-16,10],[-3,10],[0,6],[-5,5]],[[0,62],[42,-1]],[[91,58],[21,0],[3,-13],[13,-1]],[[128,44],[-11,-6],[9,-29]],[[126,9],[-25,0],[-21,2],[-24,0]],[[42,61],[49,-3]],[[748,42],[-10,-7],[2,-20],[-23,3],[-11,-1]],[[706,17],[-8,5],[-14,2]],[[684,24],[19,17],[6,7],[-3,10]],[[706,58],[21,1]],[[684,24],[-37,4],[-5,4]],[[642,32],[0,6]],[[642,38],[8,4],[-1,13],[9,0]],[[658,55],[48,3],[0,0]],[[308,52],[51,6]],[[354,35],[-24,0]],[[330,35],[-16,0]],[[607,48],[21,0],[14,-10]],[[642,32],[-14,-31]],[[628,1],[-24,0]],[[604,1],[-3,4],[3,7],[-5,7],[2,3],[-10,9],[-3,7]],[[182,37],[8,-29]],[[190,8],[-40,0],[-24,1]],[[128,44],[11,-2],[5,5],[27,-2]],[[249,38],[8,-31]],[[257,7],[-22,1],[-45,0]],[[604,1],[-35,0],[-22,0]],[[547,1],[5,14],[1,0],[2,13],[-3,3],[-12,0],[-1,6]],[[547,1],[-51,1]],[[496,2],[-5,27]],[[510,38],[27,3]],[[453,28],[8,-24]],[[461,4],[-37,0],[-19,1]],[[405,5],[-3,6]],[[402,11],[16,1],[-5,23]],[[330,35],[8,-30]],[[338,5],[-37,0],[-44,2]],[[496,2],[-35,0],[0,2]],[[402,11],[-7,24]],[[405,5],[-49,0],[-18,0]],[[706,17],[-13,-6],[-14,-11],[-43,0],[-8,1]],[[588,165],[0,-3]],[[588,162],[-25,-17]],[[563,145],[-35,13],[3,7],[-3,3],[-29,10]],[[649,155],[-35,4],[-26,3]],[[169,144],[-35,-3]],[[134,141],[-27,-2]],[[107,139],[-6,27]],[[859,178],[-11,-31]],[[848,147],[-16,0]],[[832,147],[-33,0]],[[107,139],[5,-18],[-5,0]],[[107,121],[-54,3]],[[53,124],[0,7],[-5,4],[19,13],[-5,7],[5,3],[0,4],[-5,3],[0,3],[-4,0],[0,10]],[[921,164],[-8,0],[0,-15],[-8,-4]],[[905,145],[-32,4],[-25,-2]],[[309,152],[-31,-4]],[[278,148],[0,4],[3,13],[-2,0]],[[563,145],[-3,-4]],[[560,141],[-67,-4]],[[493,137],[-13,38]],[[493,137],[1,-9]],[[494,128],[-65,-7]],[[429,121],[-3,4],[-8,-1],[-2,7]],[[416,131],[-13,33]],[[278,148],[-8,-24]],[[270,124],[-53,1],[0,3],[-11,0],[0,-4]],[[206,124],[0,13],[-13,0]],[[193,137],[3,8]],[[936,162],[20,-10]],[[956,152],[-22,-5],[2,-8]],[[936,139],[-8,-1],[-12,0],[-14,7]],[[902,145],[3,0]],[[416,131],[-52,-3]],[[364,128],[-15,7]],[[349,135],[0,9]],[[349,144],[-3,4]],[[346,148],[2,1]],[[348,149],[0,5]],[[348,154],[1,2]],[[649,155],[-21,-24]],[[628,131],[-6,0],[4,-12]],[[626,119],[-30,5],[-3,8],[-8,-3],[-8,2],[-3,4],[-11,0]],[[563,135],[-3,6]],[[349,135],[-6,-1]],[[343,134],[-3,-2]],[[340,132],[-2,-7]],[[338,125],[-6,-1]],[[332,124],[-34,-3],[-30,-3]],[[268,118],[2,6]],[[714,147],[-16,-25]],[[698,122],[-16,2]],[[682,124],[-54,7]],[[956,152],[8,-1],[5,-6],[11,-1]],[[980,144],[0,-2]],[[980,142],[0,-4]],[[980,138],[-3,-1],[-22,-16],[-16,1]],[[939,122],[-3,17]],[[902,145],[-14,-7]],[[888,138],[-3,-3]],[[885,135],[-13,0],[-21,0]],[[851,135],[-21,0]],[[830,135],[2,12]],[[830,135],[-1,-7]],[[829,128],[0,-4],[-35,0]],[[794,124],[-37,0]],[[757,124],[11,15]],[[757,124],[-9,-15]],[[748,109],[-18,3],[-11,0],[-26,5],[5,5]],[[193,137],[-32,-2],[5,-18]],[[166,117],[-24,-5]],[[142,112],[-5,13],[-3,16]],[[939,122],[3,-4],[-5,-3]],[[937,115],[-29,3]],[[908,118],[5,7],[-6,3],[1,3],[-20,7]],[[980,142],[16,2],[3,-7],[-6,-2]],[[993,135],[-13,3]],[[142,112],[-38,-4]],[[104,108],[3,13]],[[563,135],[9,-26]],[[572,109],[-65,-5]],[[507,104],[-8,21],[-5,3]],[[908,118],[-9,-13]],[[899,105],[-27,9],[-2,5],[3,5]],[[873,124],[-1,4],[9,3],[4,4]],[[993,135],[-3,0],[0,-7],[-7,-3],[-6,-6],[-5,-8],[-8,-3],[-3,-4]],[[961,104],[-11,4],[-11,1],[8,6],[-10,0]],[[206,124],[-2,-13]],[[204,111],[-19,0],[-1,-6]],[[184,105],[-15,3],[-3,9]],[[873,124],[-8,-2],[-4,3],[-32,3]],[[364,128],[3,-9],[-5,2],[6,-10]],[[368,111],[-25,-2],[-8,2]],[[335,111],[-2,4],[-1,9]],[[626,119],[8,-24]],[[634,95],[2,-3],[-41,-3],[4,-15]],[[595,81],[-2,8],[-11,13],[-8,0],[-2,7]],[[682,124],[-5,-15],[2,-1],[-8,-17]],[[671,91],[-19,3]],[[652,94],[-18,1]],[[429,121],[8,-20]],[[437,101],[-26,-3],[-8,0]],[[403,98],[-6,1],[2,6],[-27,-3],[-4,9]],[[829,128],[9,-23],[-4,-1],[1,-5]],[[835,99],[-44,2]],[[791,101],[3,23]],[[899,105],[-8,-3]],[[891,102],[-13,-1]],[[878,101],[-5,-2],[-25,-1]],[[848,98],[-8,1]],[[840,99],[-5,0]],[[507,104],[3,-12]],[[510,92],[-16,-1]],[[494,91],[-33,-3],[-19,-1]],[[442,87],[-5,14]],[[268,118],[0,-14]],[[268,104],[-41,1],[0,-4],[-16,0]],[[211,101],[-7,1],[0,9]],[[104,108],[-11,-3],[9,-17]],[[102,88],[-86,3]],[[16,91],[-3,7],[8,4],[6,0],[18,3],[6,4],[-1,5],[9,3],[2,4],[-8,3]],[[748,109],[-7,-8]],[[741,101],[-24,1],[2,-17]],[[719,85],[-48,6]],[[791,101],[-2,0]],[[789,101],[-32,0]],[[757,101],[-16,0]],[[335,111],[3,-12],[-5,-1]],[[333,98],[-3,-4]],[[330,94],[-32,-5]],[[298,89],[-1,6],[-31,0],[2,9]],[[961,104],[-3,-6],[-5,-1]],[[953,97],[-27,2],[-27,6]],[[184,105],[-8,-1]],[[176,104],[0,-6],[-7,-3],[0,-8],[11,1]],[[180,88],[0,-6],[-6,-1]],[[174,81],[-6,1],[-56,0]],[[112,82],[-8,0],[-2,6]],[[403,98],[4,-4],[-5,-2],[0,-4],[-10,-3],[-3,-4],[2,-6],[-13,0],[1,-4]],[[365,69],[-8,26],[-27,-1]],[[211,101],[3,-2],[0,-8]],[[214,91],[-34,-3],[0,0]],[[531,77],[-6,17],[-15,-2]],[[298,89],[2,-4]],[[300,85],[-85,3]],[[215,88],[-1,3]],[[953,97],[-6,-8],[0,-5],[-5,0],[-5,-10]],[[934,75],[0,4],[-13,3],[-6,6],[-10,3],[-1,4],[-13,7]],[[881,79],[-3,22]],[[757,101],[2,-24]],[[759,77],[-10,0],[-30,5]],[[719,82],[0,3]],[[850,77],[0,11],[-2,10]],[[789,101],[-3,-24],[-5,-2]],[[781,75],[-22,2]],[[840,99],[-21,-7],[5,-17]],[[770,68],[11,7]],[[442,87],[4,-12],[10,0],[3,-10],[5,-1]],[[652,94],[5,-26],[1,-13]],[[305,65],[-5,20]],[[478,65],[2,6],[16,1],[-5,15],[3,4]],[[719,82],[6,-21]],[[112,82],[-21,-24]],[[0,62],[2,12],[11,3],[0,4],[5,3],[-2,7]],[[215,88],[5,-16],[3,0],[2,-5]],[[179,65],[1,10],[-6,0],[3,6],[-3,0]]],"transform":{"scale":[0.0018659588788149844,0.0026119080522640607],"translate":[-72.56294355019072,42.697190840280605]}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id | demwinner | gopwinner | |
---|---|---|---|
Acworth | Sanders | Trump | |
Albany | Sanders | Trump | |
Alexandria | Sanders | Trump | |
Allenstown | Sanders | Trump | |
Alstead | Sanders | Trump | |
Alton | Sanders | Trump | |
Amherst | Sanders | Trump | |
Andover | Sanders | Trump | |
Antrim | Sanders | Trump | |
Ashland | Sanders | Trump | |
Atkinson | Sanders | Trump | |
Atkinson & Gilmanton | |||
Auburn | Sanders | Trump | |
Barnstead | Sanders | Trump | |
Barrington | Sanders | Trump | |
Bartlett | Sanders | Kasich | |
Bath | Sanders | Trump | |
Beans Grant | |||
Beans Purchase | |||
Bedford | Clinton | Trump | |
Belmont | Sanders | Trump | |
Bennington | Sanders | Trump | |
Benton | Sanders | Trump | |
Berlin | Sanders | Trump | |
Bethlehem | Sanders | Trump | |
Boscawen | Sanders | Trump | |
Bow | Sanders | Trump | |
Bradford | Sanders | Trump | |
Brentwood | Sanders | Trump | |
Bridgewater | Sanders | Trump | |
Bristol | Sanders | Trump | |
Brookfield | Sanders | Trump | |
Brookline | Sanders | Trump | |
Cambridge | |||
Campton | Sanders | Trump | |
Canaan | Sanders | Trump | |
Candia | Sanders | Trump | |
Canterbury | Sanders | Trump | |
Carroll | Sanders | Trump | |
Center Harbor | Sanders | Trump | |
Chandlers Purchase | |||
Charlestown | Sanders | Trump | |
Chatham | Sanders | Trump | |
Chester | Sanders | Trump | |
Chesterfield | |||
Chichester | Sanders | Trump | |
Claremont | Sanders | Trump | |
Clarksville | Sanders | Trump | |
Colebrook | Sanders | Trump | |
Columbia | Sanders | Trump | |
Concord | Sanders | Trump | |
Conway | Sanders | Trump | |
Cornish | Sanders | Trump | |
Crawfords Purchase | |||
Croydon | Sanders | Trump | |
Cutts Grant | |||
Dalton | Sanders | Trump | |
Danbury | Sanders | Trump | |
Danville | Sanders | Trump | |
Deerfield | Sanders | Trump | |
Deering | Sanders | Trump | |
Derry | Sanders | Trump | |
Dixs Grant | |||
Dixville | Sanders | Kasich | |
Dorchester | |||
Dover | Sanders | Trump | |
Dublin | Sanders | Trump | |
Dummer | Sanders | Trump | |
Dunbarton | Sanders | Trump | |
Durham | |||
East Kingston | Sanders | Trump | |
Easton | Trump | ||
Eaton | Sanders | Trump | |
Effingham | Sanders | Trump | |
Ellsworth | Sanders | Trump | |
Enfield | Sanders | Trump | |
Epping | Sanders | Trump | |
Epsom | Sanders | Trump | |
Errol | Sanders | Trump | |
Ervings Location | |||
Exeter | Sanders | Trump | |
Farmington | Sanders | Trump | |
Fitzwilliam | Sanders | Trump | |
Francestown | Sanders | Trump | |
Franconia | Sanders | Trump | |
Franklin | Sanders | Trump | |
Freedom | |||
Fremont | |||
Gilford | Sanders | Trump | |
Gilmanton | Sanders | Trump | |
Gilsum | Sanders | Trump | |
Goffstown | Sanders | Trump | |
Gorham | Sanders | Trump | |
Goshen | Sanders | Trump | |
Grafton | Sanders | Trump | |
Grantham | Trump | ||
Greenfield | Sanders | Trump | |
Greenland | |||
Greens Grant | |||
Greenville | Sanders | Trump | |
Groton | Sanders | Trump | |
Hadleys Purchase | |||
Hales Location | |||
Hampstead | Sanders | Trump | |
Hampton | Sanders | Trump | |
Hampton Falls | Sanders | Trump | |
Hancock | Sanders | Kasich | |
Hanover | Sanders | Kasich | |
Harrisville | |||
Harts Location | Sanders | Kasich | |
Haverhill | Sanders | Trump | |
Hebron | Sanders | Trump | |
Henniker | Sanders | Trump | |
Hill | Sanders | Trump | |
Hillsborough | Sanders | Trump | |
Hinsdale | Sanders | Trump | |
Holderness | Sanders | Trump | |
Hollis | Sanders | Trump | |
Hooksett | Sanders | Trump | |
Hopkinton | Sanders | Trump | |
Hudson | Sanders | Trump | |
Jackson | Sanders | Kasich | |
Jaffrey | Sanders | Trump | |
Jefferson | Sanders | Trump | |
Keene | Sanders | Trump | |
Kensington | Sanders | Trump | |
Kilkenny | |||
Kingston | |||
Laconia | Sanders | Trump | |
Lancaster | Sanders | Trump | |
Landaff | |||
Langdon | |||
Lebanon | Sanders | Kasich | |
Lee | Sanders | Trump | |
Lempster | Sanders | Trump | |
Lincoln | Sanders | Trump | |
Lisbon | Sanders | Trump | |
Litchfield | Sanders | Trump | |
Littleton | Sanders | Trump | |
Londonderry | Sanders | Trump | |
Loudon | Sanders | Trump | |
Low & Burbanks | |||
Lyman | Sanders | Trump | |
Lyme | Sanders | Kasich | |
Lyndeborough | Sanders | Trump | |
Madbury | Sanders | Trump | |
Madison | Sanders | Trump | |
Manchester | Sanders | Trump | |
Marlborough | Sanders | Trump | |
Marlow | Sanders | Trump | |
Martins Location | |||
Mason | Sanders | Trump | |
Meredith | Sanders | Trump | |
Merrimack | Sanders | Trump | |
Middleton | Sanders | Trump | |
Milan | |||
Milford | Sanders | Trump | |
Millsfield | Clinton | Cruz | |
Milton | Sanders | Trump | |
Monroe | Sanders | Trump | |
Mont Vernon | Sanders | Trump | |
Moultonborough | Sanders | Trump | |
Nashua | Sanders | Trump | |
Nelson | Sanders | Trump | |
New Boston | Sanders | Trump | |
New Castle | |||
New Durham | Sanders | Trump | |
New Hampton | Sanders | Trump | |
New Ipswich | |||
New London | Sanders | Kasich | |
Newbury | Sanders | Trump | |
Newfields | Sanders | Trump | |
Newington | Sanders | Trump | |
Newmarket | Sanders | Trump | |
Newport | Sanders | Trump | |
Newton | Sanders | Trump | |
North Hampton | Sanders | Trump | |
Northfield | Sanders | Trump | |
Northumberland | Sanders | Trump | |
Northwood | Sanders | Trump | |
Nottingham | Sanders | Trump | |
Odell | |||
Orange | |||
Orford | Sanders | Kasich | |
Ossipee | Sanders | Trump | |
Pelham | Sanders | Trump | |
Pembroke | Sanders | Trump | |
Peterborough | Sanders | Kasich | |
Piermont | Sanders | Trump | |
Pinkhams Grant | |||
Pittsburg | |||
Pittsfield | Sanders | Trump | |
Plainfield | Sanders | Trump | |
Plaistow | Sanders | Trump | |
Plymouth | |||
Portsmouth | Sanders | Trump | |
Randolph | Sanders | Trump | |
Raymond | Sanders | Trump | |
Richmond | Sanders | Trump | |
Rindge | Sanders | Trump | |
Rochester | Sanders | Trump | |
Rollinsford | Sanders | Trump | |
Roxbury | Sanders | Trump | |
Rumney | Sanders | Trump | |
Rye | Sanders | Trump | |
Salem | Sanders | Trump | |
Salisbury | Sanders | Trump | |
Sanbornton | Sanders | Trump | |
Sandown | Sanders | Trump | |
Sandwich | Sanders | Trump | |
Sargents Purchase | |||
Seabrook | |||
Second College | |||
Sharon | Sanders | Kasich | |
Shelburne | Sanders | Trump | |
Somersworth | Sanders | Trump | |
South Hampton | |||
Springfield | Sanders | Trump | |
Stark | Sanders | Trump | |
Stewartstown | Sanders | Trump | |
Stoddard | |||
Strafford | Sanders | Trump | |
Stratford | Sanders | Trump | |
Stratham | Sanders | Trump | |
Success | |||
Sugar Hill | Sanders | Kasich | |
Sullivan | Sanders | Trump | |
Sunapee | Sanders | Trump | |
Surry | |||
Sutton | Sanders | Trump | |
Swanzey | Sanders | Trump | |
Tamworth | Sanders | Trump | |
Temple | Sanders | Trump | |
Thompson & Meserve | |||
Thornton | Sanders | Trump | |
Tilton | |||
Troy | Sanders | Trump | |
Tuftonboro | Sanders | Trump | |
Unity | |||
Unorg. Terr. | |||
Wakefield | Sanders | Trump | |
Walpole | Sanders | Trump | |
Warner | Sanders | Trump | |
Warren | Sanders | Bush | |
Washington | Sanders | Trump | |
Waterville Valley | Clinton | Trump | |
Weare | Sanders | Trump | |
Webster | Sanders | Trump | |
Wentworth | Sanders | Trump | |
Wentworths Location | Sanders | Trump | |
Westmoreland | Sanders | Trump | |
Whitefield | Sanders | Trump | |
Wilmot | Sanders | Trump | |
Wilton | Sanders | Trump | |
Winchester | Sanders | Trump | |
Windham | Clinton | Trump | |
Windsor | Sanders | Trump | |
Wolfeboro | Sanders | Trump | |
Woodstock | Sanders | Trump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment