diff --git a/scripts/build_viz.py b/scripts/build_viz.py index 476c6b76f5..629ded3531 100644 --- a/scripts/build_viz.py +++ b/scripts/build_viz.py @@ -102,20 +102,43 @@ def main(): "oh": oh_count.get(key, 0), } - # ---- county_detail.json (only counties with resolved officials) ---- - county_detail = {} - keys_with_people = set(county_roster) | set(muni_roster) - for key in keys_with_people: - cf = slug_to_fips.get(key) - if cf is None: + # ---- district representation per county (fips -> {cd, ss, sh}) ---- + rep_by_node = defaultdict(list) # district node id -> current rep name(s) + for rec in officeholders: + if not rec.get("is_current"): continue - county = [{"n": n, "r": r} for n, r in sorted(county_roster.get(key, []))] + nid = build.person_district_node(rec) + if nid: + rep_by_node[nid].append(rec.get("full_name") or "?") + KEYMAP = {"CD": "cd", "SS": "ss", "SH": "sh"} + districts_by_fips = defaultdict(lambda: {"cd": [], "ss": [], "sh": []}) + for e in sorted(build.load("county_district_edges.jsonl"), + key=lambda x: (x["county_geoid"], build.DTYPE_RANK[x["type"]], -x["area_weight"])): + dt = e["type"] + ident = build.cd_ident(e["district_label"]) if dt == "CD" else build.leg_ident(e["district_label"]) + reps = sorted(set(rep_by_node.get(build.edge_node_id(e), []))) + districts_by_fips[build.canonical_fips(e["county_geoid"])][KEYMAP[dt]].append( + {"d": build.district_title(dt, e["district_state"], ident), + "w": round(e["area_weight"], 3), "rep": ", ".join(reps) or None}) + + # ---- county_detail.json (any county with officials OR districts) ---- + fips_to_key = {cf: key for key, cf in slug_to_fips.items()} + fips_with_people = {slug_to_fips[k] for k in (set(county_roster) | set(muni_roster)) + if k in slug_to_fips} + county_detail = {} + for cf in sorted(fips_with_people | set(districts_by_fips)): + key = fips_to_key.get(cf) + county = [{"n": n, "r": r} for n, r in sorted(county_roster.get(key, []))] if key else [] munis = [] - for city in sorted(muni_roster.get(key, {})): - people = [{"n": n, "r": r} for n, r in sorted(muni_roster[key][city])] - munis.append({"m": city, "p": people}) - county_detail[cf] = {"slug": key[1], "county": county, "munis": munis} - county_detail = {k: county_detail[k] for k in sorted(county_detail)} + if key: + for city in sorted(muni_roster.get(key, {})): + munis.append({"m": city, "p": [{"n": n, "r": r} + for n, r in sorted(muni_roster[key][city])]}) + entry = {"slug": (county_meta.get(cf) or {}).get("slug") or (key[1] if key else ""), + "county": county, "munis": munis} + if cf in districts_by_fips: + entry["districts"] = districts_by_fips[cf] + county_detail[cf] = entry totals = { "people": len(officeholders), @@ -138,7 +161,8 @@ def main(): total_oh = sum(oh_count.values()) print(f"county_data.json: {len(county_data)} counties, " f"{sum(1 for v in county_data.values() if v['oh'])} with officeholders") - print(f"county_detail.json: {len(county_detail)} counties with rosters") + print(f"county_detail.json: {len(county_detail)} counties " + f"({len(districts_by_fips)} with district representation)") print(f"officials mapped: {total_oh - unresolved}/{total_oh} " f"(county-unresolvable, tree-only: {unresolved})") print(f"board.html injected: totals={totals}") diff --git a/viz/board.html b/viz/board.html index 6eb0376163..f1d869c8f7 100644 --- a/viz/board.html +++ b/viz/board.html @@ -145,7 +145,7 @@ const COUNTIES = {"type":"FeatureCollection","features":[{"type":"Feature","id": const STATES = {"type":"FeatureCollection","features":[{"type":"Feature","id":"01","properties":{"name":"Alabama"},"geometry":{"type":"Polygon","coordinates":[[[-87.36,35.0],[-85.61,34.98],[-85.43,34.12],[-85.19,32.86],[-85.07,32.58],[-84.96,32.42],[-85.0,32.32],[-84.89,32.26],[-85.06,32.14],[-85.05,32.01],[-85.14,31.84],[-85.04,31.54],[-85.11,31.28],[-85.0,31.0],[-85.5,31.0],[-87.6,31.0],[-87.63,30.87],[-87.41,30.67],[-87.45,30.51],[-87.37,30.43],[-87.52,30.28],[-87.66,30.25],[-87.91,30.41],[-87.93,30.66],[-88.01,30.68],[-88.1,30.5],[-88.14,30.32],[-88.39,30.37],[-88.47,31.9],[-88.24,33.8],[-88.1,34.89],[-88.2,35.0],[-87.36,35.0]]]}},{"type":"Feature","id":"02","properties":{"name":"Alaska"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-131.6,55.12],[-131.57,55.28],[-131.36,55.18],[-131.39,55.01],[-131.65,55.04],[-131.6,55.12]]],[[[-131.83,55.42],[-131.65,55.3],[-131.75,55.13],[-131.83,55.19],[-131.83,55.42]]],[[[-132.98,56.44],[-132.74,56.46],[-132.63,56.42],[-132.66,56.27],[-132.88,56.24],[-133.07,56.33],[-132.98,56.44]]],[[[-133.6,56.35],[-133.16,56.32],[-133.05,56.13],[-132.62,55.91],[-132.47,55.78],[-132.46,55.67],[-132.36,55.65],[-132.34,55.51],[-132.17,55.36],[-132.14,55.24],[-132.03,55.28],[-131.98,55.18],[-131.96,54.79],[-132.03,54.7],[-132.31,54.72],[-132.38,54.91],[-132.48,54.9],[-132.69,55.05],[-132.75,55.0],[-132.92,55.05],[-132.89,54.9],[-132.73,54.94],[-132.63,54.88],[-132.68,54.68],[-132.87,54.7],[-133.16,54.96],[-133.24,55.09],[-133.22,55.23],[-133.45,55.22],[-133.45,55.32],[-133.28,55.33],[-133.1,55.42],[-133.18,55.59],[-133.39,55.62],[-133.42,55.88],[-133.5,56.02],[-133.64,55.92],[-133.69,56.07],[-133.55,56.14],[-133.67,56.31],[-133.6,56.35]]],[[[-133.74,55.56],[-133.55,55.49],[-133.41,55.57],[-133.28,55.53],[-133.42,55.39],[-133.63,55.43],[-133.74,55.56]]],[[[-133.91,56.93],[-134.05,57.03],[-133.89,57.09],[-133.34,57.0],[-133.1,57.01],[-132.93,56.82],[-132.62,56.67],[-132.65,56.55],[-132.82,56.49],[-133.04,56.52],[-133.2,56.45],[-133.42,56.49],[-133.66,56.45],[-133.71,56.68],[-133.69,56.84],[-133.87,56.84],[-133.91,56.93]]],[[[-134.12,56.48],[-134.25,56.56],[-134.4,56.72],[-134.42,56.85],[-134.3,56.91],[-134.17,56.85],[-134.14,56.95],[-133.75,56.77],[-133.71,56.6],[-133.85,56.58],[-133.94,56.38],[-133.84,56.32],[-133.96,56.09],[-134.11,56.14],[-134.13,56.0],[-134.23,56.07],[-134.29,56.35],[-134.12,56.48]]],[[[-134.64,56.28],[-134.67,56.17],[-134.81,56.23],[-135.18,56.68],[-135.41,56.81],[-135.33,56.91],[-135.43,57.17],[-135.69,57.37],[-135.42,57.57],[-135.3,57.48],[-135.06,57.42],[-134.85,57.41],[-134.84,57.25],[-134.64,56.73],[-134.64,56.28]]],[[[-134.71,58.22],[-134.37,58.15],[-134.18,58.16],[-134.19,58.08],[-133.9,57.81],[-134.1,57.85],[-134.15,57.76],[-133.94,57.62],[-133.87,57.36],[-134.08,57.3],[-134.15,57.21],[-134.5,57.03],[-134.6,57.03],[-134.65,57.23],[-134.58,57.34],[-134.61,57.51],[-134.73,57.72],[-134.71,57.83],[-134.78,58.1],[-134.92,58.21],[-134.95,58.41],[-134.71,58.22]]],[[[-135.86,57.33],[-135.72,57.33],[-135.57,57.15],[-135.63,57.02],[-135.86,57.0],[-135.82,57.19],[-135.86,57.33]]],[[[-136.28,58.21],[-135.98,58.2],[-135.78,58.29],[-135.5,58.17],[-135.65,58.04],[-135.59,57.99],[-135.45,58.14],[-135.11,58.09],[-134.92,57.98],[-135.03,57.78],[-134.94,57.76],[-134.82,57.5],[-135.09,57.46],[-135.57,57.68],[-135.56,57.46],[-135.71,57.37],[-135.89,57.41],[-136.0,57.54],[-136.21,57.64],[-136.37,57.83],[-136.57,57.92],[-136.56,58.08],[-136.42,58.13],[-136.38,58.27],[-136.28,58.21]]],[[[-147.08,60.2],[-147.5,59.95],[-147.53,59.85],[-147.87,59.78],[-147.8,59.94],[-147.44,60.1],[-147.21,60.27],[-147.08,60.2]]],[[[-147.56,60.58],[-147.62,60.37],[-147.76,60.16],[-147.96,60.23],[-147.79,60.47],[-147.56,60.58]]],[[[-147.79,70.25],[-147.68,70.2],[-147.16,70.16],[-146.89,70.19],[-146.51,70.19],[-146.1,70.15],[-145.86,70.17],[-145.62,70.09],[-145.2,69.99],[-144.62,69.97],[-144.46,70.03],[-144.08,70.06],[-143.91,70.13],[-143.5,70.14],[-143.5,70.09],[-143.26,70.12],[-142.75,70.04],[-142.4,69.92],[-142.08,69.86],[-142.01,69.8],[-141.71,69.79],[-141.43,69.7],[-141.38,69.64],[-141.21,69.69],[-141.0,69.65],[-141.0,60.3],[-140.53,60.22],[-140.47,60.31],[-139.99,60.18],[-139.7,60.34],[-139.09,60.36],[-139.2,60.09],[-139.04,60.0],[-138.7,59.91],[-138.62,59.77],[-137.6,59.24],[-137.45,58.91],[-137.26,59.0],[-136.83,59.16],[-136.58,59.16],[-136.47,59.29],[-136.48,59.47],[-136.3,59.47],[-136.26,59.63],[-135.94,59.66],[-135.48,59.8],[-135.03,59.56],[-135.07,59.42],[-134.96,59.28],[-134.7,59.25],[-134.38,59.03],[-134.4,58.97],[-134.25,58.86],[-133.84,58.73],[-133.17,58.15],[-133.07,58.0],[-132.87,57.84],[-132.56,57.51],[-132.25,57.22],[-132.37,57.09],[-132.05,57.05],[-132.13,56.88],[-131.87,56.8],[-131.84,56.6],[-131.58,56.61],[-131.09,56.41],[-130.78,56.37],[-130.62,56.27],[-130.47,56.24],[-130.42,56.14],[-130.1,56.12],[-130.0,55.99],[-130.15,55.77],[-130.13,55.58],[-129.99,55.28],[-130.1,55.2],[-130.34,54.92],[-130.69,54.72],[-130.79,54.82],[-130.92,54.79],[-131.01,55.0],[-130.98,55.09],[-131.09,55.19],[-130.86,55.3],[-130.93,55.34],[-131.16,55.2],[-131.28,55.29],[-131.43,55.24],[-131.84,55.46],[-131.7,55.7],[-131.96,55.62],[-131.97,55.5],[-132.18,55.59],[-132.23,55.7],[-132.08,55.83],[-132.13,55.96],[-132.32,55.85],[-132.52,56.08],[-132.64,56.03],[-132.72,56.22],[-132.53,56.34],[-132.34,56.34],[-132.4,56.49],[-132.3,56.68],[-132.45,56.67],[-132.77,56.84],[-132.99,57.03],[-133.52,57.18],[-133.51,57.58],[-133.68,57.63],[-133.64,57.79],[-133.81,57.84],[-134.07,58.05],[-134.14,58.17],[-134.59,58.21],[-135.07,58.5],[-135.28,59.19],[-135.38,59.03],[-135.34,58.89],[-135.14,58.62],[-135.19,58.57],[-135.06,58.35],[-135.09,58.2],[-135.28,58.23],[-135.43,58.4],[-135.63,58.43],[-135.92,58.38],[-135.91,58.62],[-136.09,58.81],[-136.25,58.76],[-136.88,58.96],[-136.93,58.9],[-136.59,58.84],[-136.32,58.67],[-136.21,58.67],[-136.18,58.54],[-136.04,58.38],[-136.39,58.3],[-136.59,58.35],[-136.6,58.21],[-136.86,58.32],[-136.95,58.39],[-137.11,58.39],[-137.57,58.59],[-137.9,58.77],[-137.93,58.87],[-138.12,59.02],[-138.63,59.13],[-138.92,59.25],[-139.42,59.38],[-139.75,59.51],[-139.72,59.64],[-139.63,59.6],[-139.52,59.69],[-139.63,59.88],[-139.49,59.99],[-139.56,60.04],[-139.8,59.83],[-140.32,59.7],[-140.93,59.75],[-141.44,59.87],[-141.47,59.97],[-141.71,59.95],[-141.96,60.02],[-142.54,60.09],[-142.87,60.09],[-143.62,60.04],[-143.89,60.0],[-144.23,60.14],[-144.65,60.21],[-144.78,60.29],[-144.83,60.44],[-145.12,60.43],[-145.22,60.3],[-145.74,60.47],[-145.82,60.55],[-146.35,60.41],[-146.61,60.24],[-146.72,60.4],[-146.61,60.48],[-146.46,60.46],[-145.95,60.58],[-146.02,60.67],[-146.25,60.62],[-146.35,60.74],[-146.56,60.75],[-146.78,61.04],[-146.87,60.97],[-147.17,60.93],[-147.27,60.97],[-147.38,60.88],[-147.76,60.91],[-147.78,60.81],[-148.03,60.78],[-148.15,60.82],[-148.07,61.01],[-148.18,61.0],[-148.35,60.8],[-148.11,60.74],[-148.09,60.59],[-147.94,60.44],[-148.03,60.28],[-148.22,60.33],[-148.27,60.25],[-148.09,60.22],[-147.98,60.0],[-148.25,59.95],[-148.4,60.0],[-148.63,59.94],[-148.76,59.99],[-149.07,59.98],[-149.06,60.06],[-149.21,60.01],[-149.29,59.91],[-149.42,60.0],[-149.58,59.87],[-149.51,59.81],[-149.74,59.73],[-149.95,59.72],[-150.03,59.62],[-150.26,59.52],[-150.41,59.55],[-150.58,59.45],[-150.72,59.45],[-151.0,59.23],[-151.31,59.21],[-151.41,59.28],[-151.59,59.16],[-151.98,59.25],[-151.89,59.42],[-151.64,59.48],[-151.47,59.47],[-151.42,59.54],[-151.13,59.67],[-151.12,59.78],[-151.5,59.63],[-151.83,59.72],[-151.87,59.78],[-151.7,60.03],[-151.42,60.21],[-151.38,60.36],[-151.3,60.39],[-151.26,60.55],[-151.41,60.72],[-151.06,60.79],[-150.4,61.04],[-150.25,60.94],[-150.04,60.91],[-149.74,61.02],[-150.08,61.15],[-150.21,61.26],[-150.47,61.25],[-150.66,61.3],[-150.71,61.25],[-151.02,61.18],[-151.17,61.04],[-151.48,61.01],[-151.8,60.85],[-151.83,60.75],[-152.08,60.69],[-152.13,60.58],[-152.31,60.51],[-152.39,60.3],[-152.73,60.17],[-152.57,60.07],[-152.71,59.92],[-153.02,59.89],[-153.05,59.69],[-153.34,59.62],[-153.44,59.7],[-153.59,59.55],[-153.76,59.54],[-153.73,59.43],[-154.12,59.37],[-154.19,59.07],[-153.75,59.05],[-153.4,58.97],[-153.3,58.87],[-153.44,58.71],[-153.68,58.61],[-153.9,58.61],[-153.92,58.52],[-154.06,58.49],[-154.0,58.38],[-154.15,58.21],[-154.46,58.06],[-154.64,58.06],[-154.82,58.0],[-154.99,58.02],[-155.12,57.95],[-155.08,57.87],[-155.33,57.83],[-155.38,57.71],[-155.55,57.78],[-155.73,57.55],[-156.05,57.57],[-156.02,57.44],[-156.21,57.47],[-156.34,57.42],[-156.34,57.25],[-156.55,56.99],[-156.88,56.95],[-157.16,56.83],[-157.2,56.77],[-157.38,56.86],[-157.67,56.61],[-157.75,56.68],[-157.92,56.66],[-157.96,56.52],[-158.13,56.46],[-158.33,56.48],[-158.49,56.34],[-158.21,56.3],[-158.51,55.98],[-159.38,55.87],[-159.62,55.59],[-159.68,55.66],[-159.64,55.83],[-159.81,55.86],[-160.03,55.79],[-160.06,55.72],[-160.39,55.6],[-160.54,55.47],[-160.58,55.57],[-160.67,55.46],[-160.87,55.53],[-161.23,55.36],[-161.51,55.36],[-161.47,55.5],[-161.59,55.62],[-161.7,55.52],[-161.69,55.41],[-162.05,55.07],[-162.18,55.16],[-162.22,55.03],[-162.47,55.05],[-162.51,55.25],[-162.66,55.29],[-162.72,55.22],[-162.58,55.13],[-162.65,55.0],[-162.85,54.93],[-163.0,55.08],[-163.19,55.09],[-163.22,55.03],[-163.03,54.94],[-163.37,54.8],[-163.14,54.76],[-163.14,54.7],[-163.33,54.75],[-163.59,54.61],[-164.09,54.62],[-164.33,54.53],[-164.35,54.47],[-164.64,54.39],[-164.85,54.42],[-164.92,54.6],[-164.71,54.66],[-164.55,54.89],[-164.34,54.89],[-163.89,55.04],[-163.53,55.05],[-163.4,54.9],[-163.29,55.01],[-163.31,55.13],[-163.1,55.18],[-162.88,55.18],[-162.58,55.45],[-162.25,55.68],[-161.81,55.89],[-161.29,55.98],[-161.08,55.94],[-160.87,56.0],[-160.82,55.91],[-160.93,55.81],[-160.81,55.74],[-160.77,55.86],[-160.51,55.87],[-160.44,55.79],[-160.28,55.76],[-160.27,55.86],[-160.54,55.94],[-160.56,55.99],[-160.38,56.25],[-160.15,56.4],[-159.83,56.54],[-159.33,56.67],[-158.96,56.85],[-158.78,56.78],[-158.64,56.81],[-158.7,56.92],[-158.66,57.03],[-158.38,57.27],[-158.0,57.41],[-157.69,57.61],[-157.71,57.72],[-157.46,58.5],[-157.07,58.7],[-157.12,58.87],[-158.04,58.63],[-158.33,58.66],[-158.4,58.76],[-158.56,58.8],[-158.62,58.91],[-158.77,58.86],[-158.86,58.69],[-158.7,58.48],[-158.89,58.39],[-159.06,58.42],[-159.39,58.76],[-159.62,58.93],[-159.73,58.93],[-159.81,58.8],[-159.91,58.78],[-160.06,58.89],[-160.24,58.9],[-160.32,59.07],[-160.85,58.88],[-161.34,58.74],[-161.38,58.67],[-161.75,58.55],[-161.94,58.66],[-161.77,58.78],[-161.83,59.06],[-161.96,59.36],[-161.7,59.49],[-161.91,59.74],[-162.09,59.88],[-162.24,60.09],[-162.45,60.18],[-162.5,60.0],[-162.76,59.96],[-163.17,59.84],[-163.66,59.8],[-163.93,59.81],[-164.16,59.87],[-164.19,60.02],[-164.39,60.08],[-164.7,60.29],[-164.96,60.34],[-165.27,60.58],[-165.06,60.69],[-165.02,60.89],[-165.18,60.85],[-165.2,60.97],[-165.12,61.08],[-165.32,61.17],[-165.34,61.07],[-165.59,61.11],[-165.62,61.28],[-165.82,61.3],[-165.92,61.42],[-165.91,61.56],[-166.11,61.49],[-166.14,61.63],[-165.9,61.66],[-166.1,61.82],[-165.76,61.83],[-165.76,62.01],[-165.67,62.14],[-165.04,62.54],[-164.91,62.66],[-164.82,62.64],[-164.87,62.81],[-164.63,63.1],[-164.43,63.21],[-164.04,63.26],[-163.74,63.21],[-163.31,63.04],[-163.04,63.06],[-162.66,63.23],[-162.27,63.49],[-162.08,63.51],[-162.03,63.45],[-161.56,63.45],[-161.14,63.5],[-160.77,63.77],[-160.77,63.84],[-160.95,64.09],[-160.97,64.24],[-161.26,64.4],[-161.38,64.53],[-161.08,64.5],[-160.8,64.61],[-160.78,64.72],[-161.15,64.92],[-161.41,64.76],[-161.66,64.79],[-161.9,64.7],[-162.17,64.68],[-162.24,64.62],[-162.54,64.53],[-162.63,64.39],[-162.79,64.33],[-162.86,64.5],[-163.04,64.54],[-163.18,64.4],[-163.25,64.47],[-163.6,64.57],[-164.31,64.56],[-164.81,64.45],[-165.0,64.43],[-165.41,64.5],[-166.19,64.58],[-166.39,64.64],[-166.49,64.73],[-166.41,64.87],[-166.69,64.99],[-166.64,65.11],[-166.46,65.18],[-166.52,65.34],[-166.8,65.34],[-167.03,65.38],[-167.48,65.42],[-167.71,65.5],[-168.07,65.58],[-168.11,65.68],[-167.54,65.82],[-166.83,66.05],[-166.33,66.19],[-166.05,66.11],[-165.76,66.09],[-165.69,66.2],[-165.87,66.22],[-165.88,66.31],[-165.19,66.47],[-164.4,66.58],[-163.98,66.59],[-163.75,66.55],[-163.87,66.39],[-163.83,66.28],[-163.92,66.19],[-163.77,66.06],[-163.49,66.08],[-163.15,66.06],[-162.75,66.09],[-162.63,66.04],[-162.37,66.03],[-162.14,66.08],[-161.84,66.02],[-161.55,66.24],[-161.34,66.25],[-161.2,66.21],[-161.13,66.33],[-161.53,66.39],[-161.91,66.35],[-161.87,66.51],[-162.17,66.69],[-162.5,66.74],[-162.6,66.9],[-162.34,66.94],[-162.01,66.78],[-162.08,66.65],[-161.92,66.55],[-161.57,66.44],[-161.49,66.56],[-161.88,66.72],[-161.71,67.0],[-161.85,67.05],[-162.24,66.99],[-162.64,67.01],[-162.7,67.06],[-162.9,67.01],[-163.74,67.13],[-163.76,67.25],[-164.01,67.53],[-164.21,67.64],[-164.53,67.73],[-165.19,67.97],[-165.49,68.06],[-165.79,68.08],[-166.24,68.25],[-166.68,68.34],[-166.7,68.37],[-166.38,68.42],[-166.23,68.58],[-166.22,68.88],[-165.33,68.86],[-164.26,68.93],[-163.98,68.99],[-163.53,69.14],[-163.11,69.37],[-163.02,69.61],[-162.84,69.81],[-162.47,69.98],[-162.31,70.11],[-161.85,70.31],[-161.78,70.26],[-161.4,70.24],[-160.84,70.34],[-160.49,70.45],[-159.65,70.79],[-159.33,70.81],[-159.3,70.76],[-158.98,70.8],[-158.66,70.79],[-158.03,70.83],[-157.42,70.98],[-156.81,71.29],[-156.57,71.35],[-156.52,71.3],[-155.59,71.17],[-155.51,71.08],[-155.83,70.97],[-155.98,70.96],[-155.97,70.81],[-155.5,70.86],[-155.48,70.94],[-155.26,71.02],[-155.19,70.97],[-155.03,71.15],[-154.57,70.99],[-154.64,70.87],[-154.35,70.84],[-154.18,70.77],[-153.93,70.88],[-153.49,70.89],[-153.24,70.92],[-152.59,70.89],[-152.26,70.84],[-152.42,70.61],[-151.82,70.55],[-151.77,70.49],[-151.19,70.38],[-151.18,70.43],[-150.76,70.5],[-150.35,70.49],[-150.35,70.44],[-150.11,70.43],[-149.87,70.51],[-149.46,70.52],[-149.18,70.49],[-148.79,70.4],[-148.61,70.42],[-148.35,70.31],[-148.2,70.35],[-147.96,70.32],[-147.79,70.25]]],[[[-152.94,58.03],[-152.95,57.98],[-153.29,58.05],[-153.04,58.31],[-152.82,58.33],[-152.67,58.56],[-152.5,58.35],[-152.35,58.43],[-152.08,58.31],[-152.08,58.15],[-152.48,58.13],[-152.66,58.06],[-152.94,58.03]]],[[[-153.96,57.54],[-153.67,57.67],[-153.93,57.7],[-153.94,57.81],[-153.72,57.89],[-153.57,57.84],[-153.55,57.72],[-153.46,57.8],[-153.46,57.97],[-153.27,57.89],[-153.24,58.0],[-153.07,57.93],[-152.87,57.93],[-152.72,57.99],[-152.47,57.89],[-152.47,57.6],[-152.15,57.62],[-152.36,57.43],[-152.74,57.51],[-152.6,57.38],[-152.71,57.28],[-152.91,57.33],[-152.91,57.13],[-153.21,57.07],[-153.31,56.99],[-153.5,57.07],[-153.7,56.86],[-153.85,56.84],[-154.01,56.74],[-154.07,56.97],[-154.3,56.85],[-154.31,56.92],[-154.52,56.99],[-154.54,57.19],[-154.74,57.28],[-154.63,57.51],[-154.23,57.66],[-153.98,57.65],[-153.96,57.54]]],[[[-154.53,56.6],[-154.74,56.4],[-154.81,56.43],[-154.53,56.6]]],[[[-155.63,55.92],[-155.48,55.91],[-155.53,55.7],[-155.79,55.73],[-155.84,55.8],[-155.63,55.92]]],[[[-159.89,55.28],[-159.95,55.07],[-160.26,54.89],[-160.11,55.16],[-160.0,55.13],[-159.89,55.28]]],[[[-160.52,55.36],[-160.33,55.36],[-160.34,55.25],[-160.53,55.13],[-160.69,55.21],[-160.79,55.13],[-160.85,55.32],[-160.8,55.38],[-160.52,55.36]]],[[[-162.26,54.98],[-162.24,54.89],[-162.35,54.84],[-162.44,54.93],[-162.26,54.98]]],[[[-162.41,63.63],[-162.56,63.54],[-162.61,63.62],[-162.41,63.63]]],[[[-162.8,54.49],[-162.59,54.45],[-162.61,54.37],[-162.78,54.37],[-162.8,54.49]]],[[[-165.55,54.3],[-165.48,54.18],[-165.63,54.13],[-165.69,54.25],[-165.55,54.3]]],[[[-165.74,54.15],[-166.05,54.05],[-166.11,54.12],[-165.98,54.22],[-165.74,54.15]]],[[[-166.36,60.36],[-166.13,60.4],[-166.09,60.33],[-165.88,60.34],[-165.69,60.28],[-165.65,59.99],[-165.75,59.9],[-166.01,59.84],[-166.06,59.75],[-166.44,59.86],[-166.62,59.85],[-166.99,59.99],[-167.12,59.99],[-167.34,60.08],[-167.42,60.21],[-167.31,60.24],[-166.94,60.21],[-166.76,60.31],[-166.58,60.32],[-166.5,60.39],[-166.36,60.36]]],[[[-166.38,54.01],[-166.21,53.94],[-166.54,53.75],[-166.54,53.72],[-166.12,53.85],[-166.11,53.78],[-166.28,53.68],[-166.56,53.62],[-166.58,53.53],[-166.88,53.43],[-167.14,53.43],[-167.31,53.33],[-167.62,53.25],[-167.79,53.34],[-167.46,53.44],[-167.35,53.43],[-167.1,53.51],[-167.16,53.61],[-167.02,53.72],[-166.81,53.67],[-166.79,53.73],[-167.02,53.75],[-167.14,53.83],[-167.03,53.95],[-166.64,54.02],[-166.56,53.88],[-166.38,54.01]]],[[[-168.79,53.16],[-168.41,53.35],[-168.38,53.43],[-168.24,53.52],[-168.01,53.57],[-167.89,53.52],[-167.84,53.39],[-168.27,53.24],[-168.5,53.04],[-168.69,52.97],[-168.79,53.16]]],[[[-169.75,52.89],[-169.71,52.8],[-169.96,52.79],[-169.99,52.86],[-169.75,52.89]]],[[[-170.15,57.22],[-170.29,57.13],[-170.31,57.22],[-170.15,57.22]]],[[[-170.67,52.7],[-170.6,52.6],[-170.79,52.54],[-170.82,52.64],[-170.67,52.7]]],[[[-171.74,63.72],[-170.95,63.57],[-170.49,63.7],[-170.28,63.68],[-170.09,63.61],[-170.04,63.49],[-169.65,63.43],[-169.52,63.37],[-169.0,63.34],[-168.69,63.3],[-168.86,63.15],[-169.11,63.18],[-169.38,63.15],[-169.51,63.09],[-169.64,62.94],[-169.83,63.08],[-170.06,63.17],[-170.26,63.18],[-170.36,63.28],[-170.87,63.42],[-171.1,63.42],[-171.46,63.31],[-171.74,63.37],[-171.85,63.49],[-171.74,63.72]]],[[[-172.43,52.39],[-172.42,52.27],[-172.61,52.25],[-172.57,52.35],[-172.43,52.39]]],[[[-173.63,52.15],[-173.5,52.11],[-173.12,52.11],[-173.11,52.08],[-173.55,52.03],[-173.63,52.15]]],[[[-174.32,52.28],[-174.33,52.38],[-174.19,52.42],[-173.98,52.32],[-174.06,52.23],[-174.18,52.23],[-174.14,52.13],[-174.33,52.12],[-174.74,52.01],[-174.97,52.04],[-174.9,52.12],[-174.66,52.11],[-174.32,52.28]]],[[[-176.47,51.85],[-176.29,51.87],[-176.29,51.74],[-176.52,51.76],[-176.8,51.61],[-176.91,51.81],[-176.79,51.81],[-176.78,51.96],[-176.63,51.97],[-176.63,51.86],[-176.47,51.85]]],[[[-177.15,51.95],[-177.04,51.9],[-177.12,51.73],[-177.27,51.68],[-177.28,51.78],[-177.15,51.95]]],[[[-178.12,51.92],[-177.95,51.91],[-177.8,51.79],[-177.96,51.65],[-178.12,51.92]]],[[[-187.11,52.99],[-187.29,52.93],[-187.31,52.82],[-188.91,52.76],[-188.64,52.93],[-188.64,53.0],[-187.11,52.99]]]]}},{"type":"Feature","id":"04","properties":{"name":"Arizona"},"geometry":{"type":"Polygon","coordinates":[[[-109.04,37.0],[-109.05,31.33],[-111.07,31.33],[-112.25,31.7],[-114.81,32.49],[-114.72,32.72],[-114.53,32.76],[-114.47,32.84],[-114.53,33.03],[-114.66,33.03],[-114.73,33.41],[-114.53,33.55],[-114.5,33.7],[-114.54,33.93],[-114.42,34.11],[-114.26,34.17],[-114.14,34.31],[-114.33,34.45],[-114.47,34.71],[-114.63,34.88],[-114.63,35.0],[-114.57,35.14],[-114.6,35.32],[-114.68,35.52],[-114.74,36.1],[-114.37,36.14],[-114.25,36.02],[-114.15,36.02],[-114.05,36.2],[-114.05,37.0],[-110.5,37.01],[-109.04,37.0]]]}},{"type":"Feature","id":"05","properties":{"name":"Arkansas"},"geometry":{"type":"Polygon","coordinates":[[[-94.47,36.5],[-90.15,36.5],[-90.06,36.3],[-90.22,36.18],[-90.38,36.0],[-89.73,36.0],[-89.76,35.81],[-89.91,35.76],[-89.94,35.6],[-90.13,35.44],[-90.11,35.2],[-90.21,35.02],[-90.31,35.0],[-90.25,34.91],[-90.41,34.83],[-90.48,34.66],[-90.58,34.62],[-90.57,34.42],[-90.75,34.37],[-90.74,34.3],[-90.95,34.14],[-90.89,34.03],[-91.07,33.87],[-91.23,33.56],[-91.06,33.43],[-91.14,33.35],[-91.09,33.14],[-91.17,33.0],[-93.61,33.02],[-94.04,33.02],[-94.04,33.55],[-94.18,33.59],[-94.38,33.54],[-94.48,33.64],[-94.43,35.4],[-94.62,36.5],[-94.47,36.5]]]}},{"type":"Feature","id":"06","properties":{"name":"California"},"geometry":{"type":"Polygon","coordinates":[[[-123.23,42.01],[-122.38,42.01],[-121.04,41.99],[-120.0,41.99],[-120.0,40.27],[-120.0,39.0],[-118.72,38.1],[-117.5,37.22],[-116.54,36.5],[-115.85,35.97],[-114.63,35.0],[-114.63,34.88],[-114.47,34.71],[-114.33,34.45],[-114.14,34.31],[-114.26,34.17],[-114.42,34.11],[-114.54,33.93],[-114.5,33.7],[-114.53,33.55],[-114.73,33.41],[-114.66,33.03],[-114.53,33.03],[-114.47,32.84],[-114.53,32.76],[-114.72,32.72],[-116.05,32.62],[-117.13,32.54],[-117.25,32.67],[-117.25,32.88],[-117.33,33.12],[-117.47,33.3],[-117.78,33.54],[-118.18,33.76],[-118.26,33.7],[-118.41,33.74],[-118.39,33.84],[-118.57,34.04],[-118.8,34.0],[-119.22,34.15],[-119.28,34.27],[-119.56,34.41],[-119.88,34.41],[-120.14,34.48],[-120.47,34.45],[-120.65,34.58],[-120.61,34.86],[-120.67,34.9],[-120.63,35.1],[-120.89,35.25],[-120.91,35.45],[-121.0,35.46],[-121.17,35.64],[-121.28,35.67],[-121.33,35.78],[-121.72,36.2],[-121.9,36.32],[-121.94,36.64],[-121.86,36.61],[-121.79,36.8],[-121.93,36.98],[-122.11,36.96],[-122.33,37.12],[-122.42,37.24],[-122.4,37.36],[-122.52,37.52],[-122.52,37.78],[-122.33,37.78],[-122.41,38.15],[-122.49,38.11],[-122.5,37.93],[-122.7,37.89],[-122.94,38.03],[-122.98,38.27],[-123.13,38.45],[-123.33,38.57],[-123.44,38.7],[-123.74,38.96],[-123.69,39.03],[-123.83,39.37],[-123.77,39.55],[-123.85,39.83],[-124.11,40.11],[-124.36,40.26],[-124.41,40.44],[-124.16,40.88],[-124.11,41.03],[-124.16,41.14],[-124.07,41.44],[-124.15,41.72],[-124.26,41.78],[-124.21,42.0],[-123.23,42.01]]]}},{"type":"Feature","id":"08","properties":{"name":"Colorado"},"geometry":{"type":"Polygon","coordinates":[[[-107.92,41.0],[-105.73,41.0],[-104.05,41.0],[-102.05,41.0],[-102.05,40.0],[-102.04,36.99],[-103.0,37.0],[-104.34,36.99],[-106.87,36.99],[-107.42,37.0],[-109.04,37.0],[-109.04,38.17],[-109.06,38.28],[-109.05,39.12],[-109.05,41.0],[-107.92,41.0]]]}},{"type":"Feature","id":"09","properties":{"name":"Connecticut"},"geometry":{"type":"Polygon","coordinates":[[[-73.05,42.04],[-71.8,42.02],[-71.8,42.01],[-71.8,41.41],[-71.86,41.32],[-71.95,41.34],[-72.39,41.26],[-72.91,41.28],[-73.13,41.15],[-73.37,41.1],[-73.66,40.99],[-73.73,41.1],[-73.48,41.21],[-73.55,41.29],[-73.49,42.05],[-73.05,42.04]]]}},{"type":"Feature","id":"10","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-75.41,39.8],[-75.51,39.68],[-75.61,39.62],[-75.59,39.46],[-75.44,39.31],[-75.4,39.06],[-75.19,38.81],[-75.09,38.8],[-75.05,38.45],[-75.69,38.46],[-75.79,39.72],[-75.62,39.83],[-75.41,39.8]]]}},{"type":"Feature","id":"11","properties":{"name":"District of Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-77.03,38.99],[-76.91,38.9],[-77.04,38.79],[-77.12,38.93],[-77.03,38.99]]]}},{"type":"Feature","id":"12","properties":{"name":"Florida"},"geometry":{"type":"Polygon","coordinates":[[[-85.5,31.0],[-85.0,31.0],[-84.87,30.71],[-83.5,30.65],[-82.22,30.57],[-82.17,30.36],[-82.05,30.36],[-82.0,30.57],[-82.04,30.75],[-81.95,30.83],[-81.72,30.75],[-81.44,30.71],[-81.38,30.27],[-81.26,29.79],[-80.97,29.15],[-80.52,28.46],[-80.59,28.41],[-80.57,28.09],[-80.38,27.74],[-80.09,27.02],[-80.03,26.8],[-80.04,26.57],[-80.15,25.74],[-80.24,25.72],[-80.34,25.47],[-80.31,25.38],[-80.5,25.2],[-80.57,25.24],[-80.76,25.16],[-81.08,25.12],[-81.17,25.23],[-81.13,25.38],[-81.35,25.82],[-81.53,25.9],[-81.68,25.84],[-81.8,26.09],[-81.83,26.29],[-82.04,26.52],[-82.09,26.66],[-82.06,26.88],[-82.17,26.92],[-82.14,26.79],[-82.25,26.76],[-82.57,27.3],[-82.69,27.44],[-82.39,27.84],[-82.59,27.82],[-82.72,27.69],[-82.85,27.89],[-82.68,28.43],[-82.64,28.89],[-82.76,29.0],[-82.8,29.15],[-82.99,29.18],[-83.22,29.42],[-83.4,29.52],[-83.41,29.67],[-83.54,29.72],[-83.64,29.89],[-84.02,30.11],[-84.36,30.06],[-84.34,29.9],[-84.45,29.93],[-84.87,29.74],[-85.31,29.7],[-85.3,29.81],[-85.4,29.94],[-85.92,30.24],[-86.3,30.36],[-86.63,30.39],[-86.91,30.37],[-87.52,30.28],[-87.37,30.43],[-87.45,30.51],[-87.41,30.67],[-87.63,30.87],[-87.6,31.0],[-85.5,31.0]]]}},{"type":"Feature","id":"13","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[-83.11,35.0],[-83.32,34.79],[-83.34,34.68],[-83.0,34.47],[-82.9,34.49],[-82.75,34.27],[-82.72,34.15],[-82.56,33.94],[-82.33,33.82],[-82.19,33.63],[-81.93,33.46],[-81.94,33.35],[-81.76,33.16],[-81.49,33.01],[-81.43,32.84],[-81.42,32.63],[-81.28,32.56],[-81.12,32.29],[-81.12,32.12],[-80.89,32.03],[-81.13,31.69],[-81.18,31.52],[-81.28,31.36],[-81.29,31.21],[-81.4,31.13],[-81.44,30.71],[-81.72,30.75],[-81.95,30.83],[-82.04,30.75],[-82.0,30.57],[-82.05,30.36],[-82.17,30.36],[-82.22,30.57],[-83.5,30.65],[-84.87,30.71],[-85.0,31.0],[-85.11,31.28],[-85.04,31.54],[-85.14,31.84],[-85.05,32.01],[-85.06,32.14],[-84.89,32.26],[-85.0,32.32],[-84.96,32.42],[-85.07,32.58],[-85.19,32.86],[-85.43,34.12],[-85.61,34.98],[-84.32,34.99],[-83.62,34.98],[-83.11,35.0]]]}},{"type":"Feature","id":"15","properties":{"name":"Hawaii"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.63,18.95],[-155.88,19.04],[-155.92,19.12],[-155.89,19.35],[-156.06,19.73],[-155.93,19.86],[-155.83,20.03],[-155.9,20.15],[-155.88,20.27],[-155.6,20.13],[-155.28,20.02],[-155.09,19.87],[-155.09,19.74],[-154.81,19.52],[-154.98,19.35],[-155.29,19.27],[-155.51,19.13],[-155.63,18.95]]],[[[-156.59,21.03],[-156.47,20.89],[-156.32,20.95],[-156.0,20.79],[-156.05,20.65],[-156.38,20.58],[-156.44,20.61],[-156.46,20.78],[-156.63,20.82],[-156.7,20.92],[-156.59,21.03]]],[[[-156.98,21.21],[-157.08,21.11],[-157.31,21.11],[-157.24,21.22],[-156.98,21.21]]],[[[-157.95,21.7],[-157.84,21.46],[-157.9,21.32],[-158.11,21.3],[-158.25,21.58],[-158.13,21.59],[-157.95,21.7]]],[[[-159.47,22.23],[-159.35,22.22],[-159.3,22.11],[-159.33,21.97],[-159.45,21.87],[-159.76,21.99],[-159.73,22.15],[-159.47,22.23]]]]}},{"type":"Feature","id":"16","properties":{"name":"Idaho"},"geometry":{"type":"Polygon","coordinates":[[[-116.05,49.0],[-116.05,47.98],[-115.72,47.7],[-115.72,47.42],[-115.53,47.3],[-115.33,47.26],[-115.3,47.19],[-114.93,46.92],[-114.89,46.81],[-114.62,46.7],[-114.61,46.64],[-114.32,46.65],[-114.47,46.27],[-114.49,46.04],[-114.39,45.88],[-114.57,45.77],[-114.5,45.67],[-114.55,45.56],[-114.33,45.46],[-114.09,45.59],[-113.99,45.7],[-113.81,45.6],[-113.83,45.52],[-113.74,45.33],[-113.57,45.13],[-113.45,45.06],[-113.46,44.87],[-113.34,44.78],[-113.13,44.77],[-113.0,44.45],[-112.89,44.39],[-112.78,44.49],[-112.47,44.48],[-112.24,44.57],[-112.1,44.52],[-111.87,44.56],[-111.82,44.51],[-111.62,44.55],[-111.39,44.76],[-111.23,44.58],[-111.05,44.48],[-111.05,42.0],[-112.16,41.99],[-114.04,41.99],[-117.03,42.0],[-117.03,43.83],[-116.9,44.16],[-116.98,44.24],[-117.17,44.26],[-117.24,44.39],[-117.04,44.75],[-116.94,44.78],[-116.83,44.93],[-116.85,45.02],[-116.73,45.14],[-116.67,45.32],[-116.46,45.62],[-116.55,45.75],[-116.78,45.82],[-116.92,45.99],[-116.92,46.17],[-117.06,46.34],[-117.04,46.43],[-117.04,47.76],[-117.03,49.0],[-116.05,49.0]]]}},{"type":"Feature","id":"17","properties":{"name":"Illinois"},"geometry":{"type":"Polygon","coordinates":[[[-90.64,42.51],[-88.79,42.49],[-87.8,42.49],[-87.84,42.3],[-87.68,42.08],[-87.52,41.71],[-87.53,39.35],[-87.64,39.17],[-87.51,38.96],[-87.5,38.78],[-87.62,38.64],[-87.66,38.51],[-87.84,38.29],[-87.95,38.28],[-87.92,38.15],[-88.0,38.1],[-88.06,37.87],[-88.03,37.8],[-88.16,37.66],[-88.07,37.48],[-88.48,37.39],[-88.52,37.28],[-88.42,37.15],[-88.55,37.07],[-88.92,37.23],[-89.03,37.21],[-89.18,37.04],[-89.13,36.98],[-89.29,36.99],[-89.52,37.28],[-89.44,37.34],[-89.52,37.54],[-89.52,37.69],[-89.84,37.9],[-89.95,37.88],[-90.06,38.01],[-90.36,38.22],[-90.35,38.38],[-90.18,38.63],[-90.21,38.73],[-90.11,38.85],[-90.25,38.92],[-90.47,38.96],[-90.58,38.87],[-90.66,38.93],[-90.73,39.26],[-91.06,39.47],[-91.37,39.73],[-91.49,40.03],[-91.5,40.24],[-91.42,40.38],[-91.4,40.56],[-91.12,40.67],[-91.09,40.82],[-90.96,40.92],[-90.95,41.1],[-91.11,41.24],[-91.05,41.41],[-90.66,41.46],[-90.34,41.59],[-90.31,41.74],[-90.18,41.81],[-90.14,42.0],[-90.17,42.13],[-90.39,42.23],[-90.42,42.33],[-90.64,42.51]]]}},{"type":"Feature","id":"18","properties":{"name":"Indiana"},"geometry":{"type":"Polygon","coordinates":[[[-85.99,41.76],[-84.81,41.76],[-84.81,41.69],[-84.8,40.5],[-84.82,39.1],[-84.89,39.06],[-84.81,38.79],[-84.99,38.78],[-85.17,38.69],[-85.43,38.73],[-85.42,38.53],[-85.59,38.45],[-85.66,38.33],[-85.83,38.28],[-85.92,38.02],[-86.04,37.96],[-86.26,38.05],[-86.3,38.17],[-86.52,38.04],[-86.5,37.93],[-86.73,37.89],[-86.8,37.99],[-87.05,37.89],[-87.13,37.79],[-87.38,37.94],[-87.51,37.9],[-87.6,37.98],[-87.68,37.9],[-87.93,37.89],[-88.03,37.8],[-88.06,37.87],[-88.0,38.1],[-87.92,38.15],[-87.95,38.28],[-87.84,38.29],[-87.66,38.51],[-87.62,38.64],[-87.5,38.78],[-87.51,38.96],[-87.64,39.17],[-87.53,39.35],[-87.52,41.71],[-87.42,41.65],[-87.12,41.65],[-86.82,41.76],[-85.99,41.76]]]}},{"type":"Feature","id":"19","properties":{"name":"Iowa"},"geometry":{"type":"Polygon","coordinates":[[[-91.37,43.5],[-91.22,43.5],[-91.2,43.35],[-91.06,43.26],[-91.18,43.13],[-91.14,42.91],[-91.07,42.75],[-90.71,42.64],[-90.64,42.51],[-90.42,42.33],[-90.39,42.23],[-90.17,42.13],[-90.14,42.0],[-90.18,41.81],[-90.31,41.74],[-90.34,41.59],[-90.66,41.46],[-91.05,41.41],[-91.11,41.24],[-90.95,41.1],[-90.96,40.92],[-91.09,40.82],[-91.12,40.67],[-91.4,40.56],[-91.42,40.38],[-91.53,40.41],[-91.73,40.62],[-91.83,40.61],[-93.26,40.58],[-94.63,40.57],[-95.77,40.59],[-95.88,40.72],[-95.83,40.98],[-95.92,41.2],[-95.92,41.45],[-96.09,41.54],[-96.12,41.68],[-96.06,41.8],[-96.13,41.97],[-96.27,42.04],[-96.45,42.49],[-96.63,42.71],[-96.54,42.85],[-96.51,43.05],[-96.44,43.12],[-96.56,43.22],[-96.53,43.4],[-96.58,43.48],[-96.45,43.5],[-91.37,43.5]]]}},{"type":"Feature","id":"20","properties":{"name":"Kansas"},"geometry":{"type":"Polygon","coordinates":[[[-101.91,40.0],[-95.31,40.0],[-95.21,39.91],[-94.89,39.83],[-95.11,39.54],[-94.98,39.44],[-94.82,39.21],[-94.61,39.16],[-94.62,37.0],[-100.09,37.0],[-102.04,36.99],[-102.05,40.0],[-101.91,40.0]]]}},{"type":"Feature","id":"21","properties":{"name":"Kentucky"},"geometry":{"type":"Polygon","coordinates":[[[-83.9,38.77],[-83.68,38.63],[-83.52,38.7],[-83.14,38.63],[-83.03,38.73],[-82.89,38.76],[-82.85,38.59],[-82.73,38.56],[-82.59,38.42],[-82.62,38.12],[-82.5,37.93],[-82.34,37.78],[-82.29,37.67],[-82.1,37.55],[-81.97,37.54],[-82.35,37.27],[-82.72,37.12],[-82.72,37.04],[-82.87,36.98],[-82.88,36.89],[-83.07,36.85],[-83.14,36.74],[-83.67,36.6],[-83.69,36.58],[-84.54,36.59],[-85.29,36.63],[-85.49,36.62],[-86.59,36.66],[-87.85,36.63],[-88.07,36.68],[-88.06,36.5],[-89.3,36.51],[-89.42,36.5],[-89.36,36.62],[-89.22,36.58],[-89.13,36.98],[-89.18,37.04],[-89.03,37.21],[-88.92,37.23],[-88.55,37.07],[-88.42,37.15],[-88.52,37.28],[-88.48,37.39],[-88.07,37.48],[-88.16,37.66],[-88.03,37.8],[-87.93,37.89],[-87.68,37.9],[-87.6,37.98],[-87.51,37.9],[-87.38,37.94],[-87.13,37.79],[-87.05,37.89],[-86.8,37.99],[-86.73,37.89],[-86.5,37.93],[-86.52,38.04],[-86.3,38.17],[-86.26,38.05],[-86.04,37.96],[-85.92,38.02],[-85.83,38.28],[-85.66,38.33],[-85.59,38.45],[-85.42,38.53],[-85.43,38.73],[-85.17,38.69],[-84.99,38.78],[-84.81,38.79],[-84.89,39.06],[-84.82,39.1],[-84.44,39.1],[-84.23,38.9],[-84.22,38.81],[-83.9,38.77]]]}},{"type":"Feature","id":"22","properties":{"name":"Louisiana"},"geometry":{"type":"Polygon","coordinates":[[[-93.61,33.02],[-91.17,33.0],[-91.07,32.89],[-91.14,32.84],[-91.16,32.64],[-91.01,32.52],[-90.98,32.22],[-91.11,31.99],[-91.34,31.85],[-91.4,31.62],[-91.5,31.64],[-91.52,31.28],[-91.64,31.27],[-91.57,31.07],[-91.64,31.0],[-89.75,31.0],[-89.85,30.67],[-89.68,30.45],[-89.64,30.29],[-89.52,30.18],[-89.82,30.05],[-89.84,29.95],[-89.6,29.88],[-89.5,30.04],[-89.29,29.88],[-89.3,29.75],[-89.42,29.7],[-89.65,29.75],[-89.62,29.66],[-89.7,29.51],[-89.51,29.39],[-89.2,29.35],[-89.09,29.2],[-89.0,29.18],[-89.16,29.01],[-89.34,29.04],[-89.48,29.22],[-89.85,29.31],[-89.85,29.48],[-90.03,29.43],[-90.02,29.28],[-90.1,29.15],[-90.23,29.13],[-90.33,29.28],[-90.56,29.28],[-90.64,29.13],[-90.8,29.09],[-90.96,29.18],[-91.09,29.19],[-91.22,29.44],[-91.44,29.55],[-91.53,29.53],[-91.62,29.74],[-91.88,29.71],[-91.89,29.84],[-92.15,29.72],[-92.11,29.62],[-92.31,29.54],[-92.62,29.58],[-92.97,29.72],[-93.22,29.78],[-93.77,29.73],[-93.84,29.69],[-93.93,29.79],[-93.69,30.14],[-93.77,30.34],[-93.7,30.44],[-93.73,30.58],[-93.63,30.68],[-93.53,30.94],[-93.54,31.15],[-93.82,31.56],[-93.82,31.77],[-94.04,31.99],[-94.04,33.02],[-93.61,33.02]]]}},{"type":"Feature","id":"23","properties":{"name":"Maine"},"geometry":{"type":"Polygon","coordinates":[[[-70.7,43.06],[-70.82,43.13],[-70.81,43.23],[-70.97,43.34],[-71.03,44.66],[-71.08,45.3],[-70.65,45.44],[-70.72,45.51],[-70.56,45.66],[-70.39,45.74],[-70.42,45.8],[-70.26,45.89],[-70.31,46.06],[-70.21,46.33],[-70.06,46.41],[-70.0,46.69],[-69.22,47.46],[-69.04,47.43],[-69.03,47.24],[-68.9,47.18],[-68.58,47.29],[-68.38,47.29],[-68.23,47.36],[-67.95,47.2],[-67.79,47.07],[-67.78,45.94],[-67.8,45.68],[-67.46,45.6],[-67.5,45.49],[-67.42,45.38],[-67.49,45.28],[-67.35,45.13],[-67.16,45.16],[-66.98,44.8],[-67.19,44.65],[-67.31,44.71],[-67.41,44.6],[-67.55,44.62],[-67.57,44.53],[-67.75,44.54],[-68.05,44.33],[-68.12,44.48],[-68.22,44.49],[-68.17,44.33],[-68.4,44.25],[-68.46,44.38],[-68.57,44.31],[-68.83,44.31],[-68.83,44.46],[-68.98,44.43],[-68.96,44.32],[-69.1,44.1],[-69.07,44.04],[-69.26,43.92],[-69.44,43.97],[-69.55,43.84],[-69.71,43.83],[-69.83,43.72],[-69.99,43.74],[-70.03,43.85],[-70.25,43.68],[-70.19,43.57],[-70.36,43.53],[-70.37,43.44],[-70.56,43.32],[-70.7,43.06]]]}},{"type":"Feature","id":"24","properties":{"name":"Maryland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.0,37.95],[-76.02,37.95],[-76.04,37.95],[-76.0,37.95]]],[[[-79.48,39.72],[-75.79,39.72],[-75.69,38.46],[-75.05,38.45],[-75.24,38.03],[-75.4,38.01],[-75.67,37.95],[-75.89,37.91],[-75.88,38.07],[-75.96,38.14],[-75.85,38.21],[-76.0,38.38],[-76.05,38.3],[-76.26,38.32],[-76.33,38.5],[-76.26,38.5],[-76.26,38.74],[-76.19,38.83],[-76.28,39.15],[-76.17,39.33],[-76.0,39.37],[-75.97,39.56],[-76.1,39.54],[-76.1,39.44],[-76.37,39.31],[-76.44,39.2],[-76.46,38.91],[-76.56,38.77],[-76.52,38.54],[-76.38,38.38],[-76.4,38.26],[-76.32,38.14],[-76.36,38.06],[-76.59,38.22],[-76.92,38.29],[-77.02,38.45],[-77.2,38.36],[-77.28,38.48],[-77.13,38.63],[-77.04,38.79],[-76.91,38.9],[-77.03,38.99],[-77.12,38.93],[-77.25,39.03],[-77.46,39.08],[-77.46,39.22],[-77.57,39.31],[-77.72,39.32],[-77.83,39.6],[-78.0,39.6],[-78.17,39.7],[-78.27,39.62],[-78.43,39.62],[-78.47,39.51],[-78.77,39.59],[-78.96,39.44],[-79.09,39.47],[-79.29,39.3],[-79.49,39.21],[-79.48,39.72]]]]}},{"type":"Feature","id":"25","properties":{"name":"Massachusetts"},"geometry":{"type":"Polygon","coordinates":[[[-70.92,42.89],[-70.82,42.87],[-70.78,42.7],[-70.82,42.55],[-70.98,42.42],[-70.99,42.27],[-70.77,42.25],[-70.64,42.09],[-70.66,41.96],[-70.55,41.93],[-70.54,41.81],[-70.26,41.72],[-69.94,41.81],[-70.01,41.67],[-70.48,41.55],[-70.66,41.55],[-70.76,41.64],[-70.93,41.61],[-70.93,41.54],[-71.12,41.5],[-71.2,41.68],[-71.22,41.71],[-71.33,41.78],[-71.38,42.02],[-71.53,42.02],[-71.8,42.01],[-71.8,42.02],[-73.05,42.04],[-73.49,42.05],[-73.51,42.09],[-73.27,42.75],[-72.46,42.73],[-71.3,42.7],[-71.19,42.79],[-70.92,42.89]]]}},{"type":"Feature","id":"26","properties":{"name":"Michigan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.45,41.73],[-84.81,41.69],[-84.81,41.76],[-85.99,41.76],[-86.82,41.76],[-86.62,41.89],[-86.48,42.12],[-86.36,42.25],[-86.26,42.44],[-86.21,42.72],[-86.23,43.01],[-86.53,43.59],[-86.43,43.81],[-86.5,44.08],[-86.27,44.34],[-86.22,44.57],[-86.25,44.69],[-86.09,44.74],[-86.07,44.9],[-85.81,44.95],[-85.61,45.13],[-85.63,44.77],[-85.53,44.75],[-85.39,44.93],[-85.39,45.24],[-85.31,45.31],[-85.03,45.36],[-85.12,45.58],[-84.94,45.76],[-84.71,45.77],[-84.46,45.65],[-84.22,45.64],[-84.09,45.49],[-83.91,45.48],[-83.6,45.35],[-83.49,45.36],[-83.32,45.14],[-83.45,45.03],[-83.32,44.88],[-83.27,44.71],[-83.33,44.34],[-83.54,44.25],[-83.59,44.05],[-83.83,43.99],[-83.96,43.76],[-83.91,43.67],[-83.67,43.59],[-83.48,43.72],[-83.26,43.97],[-82.92,44.07],[-82.75,43.99],[-82.64,43.85],[-82.54,43.44],[-82.52,43.23],[-82.41,42.98],[-82.52,42.61],[-82.68,42.56],[-82.69,42.69],[-82.8,42.65],[-82.92,42.35],[-83.13,42.24],[-83.19,42.01],[-83.44,41.81],[-83.45,41.73]]],[[[-85.51,45.73],[-85.49,45.61],[-85.62,45.59],[-85.57,45.76],[-85.51,45.73]]],[[[-87.59,45.09],[-87.74,45.2],[-87.65,45.34],[-87.89,45.36],[-87.79,45.5],[-87.78,45.68],[-87.99,45.8],[-88.1,45.92],[-88.53,46.02],[-88.66,45.99],[-89.09,46.14],[-90.12,46.34],[-90.23,46.51],[-90.42,46.57],[-90.03,46.67],[-89.85,46.79],[-89.41,46.84],[-89.13,46.99],[-89.0,47.0],[-88.89,47.1],[-88.58,47.25],[-88.42,47.37],[-88.18,47.46],[-87.96,47.38],[-88.35,47.08],[-88.44,46.97],[-88.44,46.79],[-88.25,46.93],[-87.9,46.91],[-87.63,46.81],[-87.39,46.54],[-87.26,46.49],[-87.01,46.53],[-86.95,46.47],[-86.7,46.44],[-86.16,46.67],[-85.88,46.69],[-85.51,46.68],[-85.26,46.76],[-85.06,46.76],[-85.03,46.48],[-84.83,46.44],[-84.63,46.49],[-84.55,46.42],[-84.42,46.5],[-84.13,46.53],[-84.12,46.18],[-83.99,46.03],[-83.79,45.99],[-83.77,46.09],[-83.58,46.09],[-83.48,45.99],[-83.56,45.91],[-84.11,45.98],[-84.37,45.93],[-84.66,46.05],[-84.74,45.94],[-84.7,45.85],[-84.83,45.87],[-85.02,46.01],[-85.34,46.09],[-85.5,46.1],[-85.66,45.97],[-85.92,45.93],[-86.21,45.96],[-86.32,45.91],[-86.35,45.8],[-86.66,45.7],[-86.65,45.84],[-86.78,45.86],[-86.84,45.73],[-87.07,45.72],[-87.17,45.66],[-87.33,45.42],[-87.61,45.12],[-87.59,45.09]]],[[[-88.81,47.98],[-89.06,47.85],[-89.19,47.83],[-89.18,47.94],[-88.55,48.17],[-88.67,48.01],[-88.81,47.98]]]]}},{"type":"Feature","id":"27","properties":{"name":"Minnesota"},"geometry":{"type":"Polygon","coordinates":[[[-92.02,46.7],[-92.09,46.75],[-92.29,46.67],[-92.29,46.08],[-92.35,46.02],[-92.64,45.93],[-92.87,45.72],[-92.89,45.58],[-92.77,45.57],[-92.64,45.44],[-92.76,45.29],[-92.74,45.12],[-92.81,44.75],[-92.55,44.57],[-92.34,44.55],[-92.23,44.44],[-91.93,44.33],[-91.88,44.2],[-91.59,44.03],[-91.43,43.99],[-91.24,43.77],[-91.27,43.62],[-91.22,43.5],[-91.37,43.5],[-96.45,43.5],[-96.45,45.3],[-96.68,45.41],[-96.86,45.6],[-96.58,45.82],[-96.56,45.93],[-96.6,46.33],[-96.72,46.44],[-96.8,46.66],[-96.78,46.92],[-96.82,46.97],[-96.86,47.61],[-97.05,47.95],[-97.13,48.14],[-97.16,48.55],[-97.1,48.68],[-97.23,49.0],[-95.15,49.0],[-95.15,49.38],[-94.96,49.37],[-94.82,49.3],[-94.69,48.78],[-94.59,48.72],[-94.26,48.7],[-94.22,48.65],[-93.84,48.63],[-93.8,48.52],[-93.47,48.55],[-93.47,48.59],[-93.21,48.64],[-92.98,48.62],[-92.73,48.54],[-92.66,48.44],[-92.51,48.45],[-92.37,48.22],[-92.31,48.32],[-92.05,48.36],[-92.01,48.27],[-91.71,48.2],[-91.71,48.11],[-91.57,48.04],[-91.26,48.08],[-91.08,48.18],[-90.84,48.24],[-90.75,48.09],[-90.58,48.12],[-90.38,48.09],[-90.14,48.11],[-89.87,47.99],[-89.62,48.01],[-89.64,47.95],[-89.97,47.83],[-90.44,47.73],[-90.74,47.63],[-91.17,47.37],[-91.36,47.21],[-91.64,47.03],[-92.09,46.79],[-92.02,46.7]]]}},{"type":"Feature","id":"28","properties":{"name":"Mississippi"},"geometry":{"type":"Polygon","coordinates":[[[-88.47,35.0],[-88.2,35.0],[-88.1,34.89],[-88.24,33.8],[-88.47,31.9],[-88.39,30.37],[-88.5,30.32],[-88.75,30.35],[-88.84,30.41],[-89.08,30.37],[-89.42,30.25],[-89.52,30.18],[-89.64,30.29],[-89.68,30.45],[-89.85,30.67],[-89.75,31.0],[-91.64,31.0],[-91.57,31.07],[-91.64,31.27],[-91.52,31.28],[-91.5,31.64],[-91.4,31.62],[-91.34,31.85],[-91.11,31.99],[-90.98,32.22],[-91.01,32.52],[-91.16,32.64],[-91.14,32.84],[-91.07,32.89],[-91.17,33.0],[-91.09,33.14],[-91.14,33.35],[-91.06,33.43],[-91.23,33.56],[-91.07,33.87],[-90.89,34.03],[-90.95,34.14],[-90.74,34.3],[-90.75,34.37],[-90.57,34.42],[-90.58,34.62],[-90.48,34.66],[-90.41,34.83],[-90.25,34.91],[-90.31,35.0],[-88.47,35.0]]]}},{"type":"Feature","id":"29","properties":{"name":"Missouri"},"geometry":{"type":"Polygon","coordinates":[[[-91.83,40.61],[-91.73,40.62],[-91.53,40.41],[-91.42,40.38],[-91.5,40.24],[-91.49,40.03],[-91.37,39.73],[-91.06,39.47],[-90.73,39.26],[-90.66,38.93],[-90.58,38.87],[-90.47,38.96],[-90.25,38.92],[-90.11,38.85],[-90.21,38.73],[-90.18,38.63],[-90.35,38.38],[-90.36,38.22],[-90.06,38.01],[-89.95,37.88],[-89.84,37.9],[-89.52,37.69],[-89.52,37.54],[-89.44,37.34],[-89.52,37.28],[-89.29,36.99],[-89.13,36.98],[-89.22,36.58],[-89.36,36.62],[-89.42,36.5],[-89.48,36.5],[-89.54,36.5],[-89.53,36.25],[-89.73,36.0],[-90.38,36.0],[-90.22,36.18],[-90.06,36.3],[-90.15,36.5],[-94.47,36.5],[-94.62,36.5],[-94.62,37.0],[-94.61,39.16],[-94.82,39.21],[-94.98,39.44],[-95.11,39.54],[-94.89,39.83],[-95.21,39.91],[-95.31,40.0],[-95.55,40.27],[-95.77,40.59],[-94.63,40.57],[-93.26,40.58],[-91.83,40.61]]]}},{"type":"Feature","id":"30","properties":{"name":"Montana"},"geometry":{"type":"Polygon","coordinates":[[[-104.05,49.0],[-104.04,47.86],[-104.05,45.94],[-104.04,45.0],[-104.06,45.0],[-105.92,45.0],[-109.08,45.0],[-111.05,45.0],[-111.05,44.48],[-111.23,44.58],[-111.39,44.76],[-111.62,44.55],[-111.82,44.51],[-111.87,44.56],[-112.1,44.52],[-112.24,44.57],[-112.47,44.48],[-112.78,44.49],[-112.89,44.39],[-113.0,44.45],[-113.13,44.77],[-113.34,44.78],[-113.46,44.87],[-113.45,45.06],[-113.57,45.13],[-113.74,45.33],[-113.83,45.52],[-113.81,45.6],[-113.99,45.7],[-114.09,45.59],[-114.33,45.46],[-114.55,45.56],[-114.5,45.67],[-114.57,45.77],[-114.39,45.88],[-114.49,46.04],[-114.47,46.27],[-114.32,46.65],[-114.61,46.64],[-114.62,46.7],[-114.89,46.81],[-114.93,46.92],[-115.3,47.19],[-115.33,47.26],[-115.53,47.3],[-115.72,47.42],[-115.72,47.7],[-116.05,47.98],[-116.05,49.0],[-111.5,48.99],[-109.45,49.0],[-104.05,49.0]]]}},{"type":"Feature","id":"31","properties":{"name":"Nebraska"},"geometry":{"type":"Polygon","coordinates":[[[-103.33,43.0],[-101.63,43.0],[-98.5,43.0],[-98.47,42.95],[-97.95,42.77],[-97.83,42.87],[-97.69,42.84],[-97.22,42.84],[-96.69,42.66],[-96.63,42.52],[-96.45,42.49],[-96.27,42.04],[-96.13,41.97],[-96.06,41.8],[-96.12,41.68],[-96.09,41.54],[-95.92,41.45],[-95.92,41.2],[-95.83,40.98],[-95.88,40.72],[-95.77,40.59],[-95.55,40.27],[-95.31,40.0],[-101.91,40.0],[-102.05,40.0],[-102.05,41.0],[-104.05,41.0],[-104.05,43.0],[-103.33,43.0]]]}},{"type":"Feature","id":"32","properties":{"name":"Nevada"},"geometry":{"type":"Polygon","coordinates":[[[-117.03,42.0],[-114.04,41.99],[-114.05,37.0],[-114.05,36.2],[-114.15,36.02],[-114.25,36.02],[-114.37,36.14],[-114.74,36.1],[-114.68,35.52],[-114.6,35.32],[-114.57,35.14],[-114.63,35.0],[-115.85,35.97],[-116.54,36.5],[-117.5,37.22],[-118.72,38.1],[-120.0,39.0],[-120.0,40.27],[-120.0,41.99],[-118.7,41.99],[-117.03,42.0]]]}},{"type":"Feature","id":"33","properties":{"name":"New Hampshire"},"geometry":{"type":"Polygon","coordinates":[[[-71.08,45.3],[-71.03,44.66],[-70.97,43.34],[-70.81,43.23],[-70.82,43.13],[-70.7,43.06],[-70.82,42.87],[-70.92,42.89],[-71.19,42.79],[-71.3,42.7],[-72.46,42.73],[-72.54,42.81],[-72.53,42.95],[-72.45,43.01],[-72.46,43.15],[-72.38,43.57],[-72.2,43.77],[-72.12,43.99],[-72.03,44.08],[-72.03,44.32],[-71.7,44.42],[-71.54,44.59],[-71.63,44.75],[-71.49,44.91],[-71.5,45.01],[-71.36,45.27],[-71.13,45.24],[-71.08,45.3]]]}},{"type":"Feature","id":"34","properties":{"name":"New Jersey"},"geometry":{"type":"Polygon","coordinates":[[[-74.24,41.14],[-73.9,41.0],[-74.02,40.71],[-74.19,40.64],[-74.28,40.49],[-74.0,40.41],[-73.98,40.3],[-74.1,39.76],[-74.41,39.36],[-74.61,39.25],[-74.8,38.99],[-74.89,39.16],[-75.18,39.24],[-75.53,39.46],[-75.56,39.61],[-75.56,39.63],[-75.51,39.68],[-75.41,39.8],[-75.15,39.89],[-75.13,39.96],[-74.82,40.13],[-74.77,40.22],[-75.06,40.42],[-75.07,40.54],[-75.19,40.58],[-75.21,40.69],[-75.05,40.87],[-75.14,40.97],[-74.88,41.18],[-74.83,41.29],[-74.7,41.36],[-74.24,41.14]]]}},{"type":"Feature","id":"35","properties":{"name":"New Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-107.42,37.0],[-106.87,36.99],[-104.34,36.99],[-103.0,37.0],[-103.0,36.5],[-103.04,36.5],[-103.05,34.02],[-103.07,33.0],[-103.07,32.0],[-106.62,32.0],[-106.64,31.9],[-106.53,31.79],[-108.21,31.79],[-108.21,31.33],[-109.05,31.33],[-109.04,37.0],[-107.42,37.0]]]}},{"type":"Feature","id":"36","properties":{"name":"New York"},"geometry":{"type":"Polygon","coordinates":[[[-73.34,45.01],[-73.33,44.8],[-73.39,44.62],[-73.3,44.44],[-73.32,44.25],[-73.44,44.04],[-73.35,43.77],[-73.4,43.69],[-73.25,43.52],[-73.28,42.83],[-73.27,42.75],[-73.51,42.09],[-73.49,42.05],[-73.55,41.29],[-73.48,41.21],[-73.73,41.1],[-73.66,40.99],[-73.23,40.91],[-73.14,40.97],[-72.77,40.97],[-72.59,41.0],[-72.28,41.16],[-72.26,41.04],[-72.1,40.99],[-72.47,40.84],[-73.24,40.63],[-73.56,40.58],[-73.78,40.59],[-73.94,40.54],[-74.02,40.71],[-73.9,41.0],[-74.24,41.14],[-74.7,41.36],[-74.74,41.43],[-74.89,41.44],[-75.08,41.61],[-75.05,41.75],[-75.17,41.87],[-75.25,41.86],[-75.36,42.0],[-79.76,42.0],[-79.76,42.25],[-79.76,42.27],[-79.15,42.55],[-79.05,42.69],[-78.85,42.78],[-78.93,42.95],[-79.01,42.99],[-79.07,43.26],[-78.49,43.38],[-77.97,43.37],[-77.76,43.34],[-77.53,43.23],[-77.39,43.28],[-76.96,43.27],[-76.7,43.34],[-76.42,43.52],[-76.24,43.53],[-76.23,43.8],[-76.14,43.96],[-76.36,44.07],[-76.31,44.2],[-75.91,44.37],[-75.77,44.52],[-75.28,44.85],[-74.83,45.02],[-74.15,44.99],[-73.34,45.01]]]}},{"type":"Feature","id":"37","properties":{"name":"North Carolina"},"geometry":{"type":"Polygon","coordinates":[[[-80.98,36.56],[-80.29,36.55],[-79.51,36.54],[-75.87,36.55],[-75.75,36.15],[-76.03,36.19],[-76.07,36.14],[-76.41,36.08],[-76.46,36.02],[-76.69,36.01],[-76.67,35.94],[-76.4,35.99],[-76.36,35.94],[-76.06,35.99],[-75.96,35.9],[-75.78,35.94],[-75.72,35.7],[-75.78,35.58],[-75.9,35.57],[-76.15,35.32],[-76.48,35.31],[-76.54,35.14],[-76.39,34.97],[-76.28,34.94],[-76.49,34.66],[-76.67,34.69],[-76.99,34.67],[-77.21,34.61],[-77.56,34.41],[-77.83,34.16],[-77.97,33.85],[-78.18,33.92],[-78.54,33.85],[-79.67,34.8],[-80.8,34.82],[-80.78,34.94],[-80.94,35.1],[-81.04,35.05],[-81.04,35.15],[-82.28,35.2],[-82.55,35.16],[-82.76,35.07],[-83.11,35.0],[-83.62,34.98],[-84.32,34.99],[-84.29,35.23],[-84.09,35.25],[-84.02,35.41],[-83.77,35.56],[-83.5,35.56],[-83.25,35.72],[-82.99,35.77],[-82.78,36.0],[-82.64,36.06],[-82.61,35.97],[-82.22,36.16],[-82.04,36.12],[-81.91,36.3],[-81.72,36.35],[-81.68,36.59],[-80.98,36.56]]]}},{"type":"Feature","id":"38","properties":{"name":"North Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-97.23,49.0],[-97.1,48.68],[-97.16,48.55],[-97.13,48.14],[-97.05,47.95],[-96.86,47.61],[-96.82,46.97],[-96.78,46.92],[-96.8,46.66],[-96.72,46.44],[-96.6,46.33],[-96.56,45.93],[-104.05,45.94],[-104.04,47.86],[-104.05,49.0],[-97.23,49.0]]]}},{"type":"Feature","id":"39","properties":{"name":"Ohio"},"geometry":{"type":"Polygon","coordinates":[[[-80.52,41.98],[-80.52,40.64],[-80.67,40.58],[-80.59,40.47],[-80.6,40.32],[-80.74,40.08],[-80.83,39.71],[-81.22,39.39],[-81.35,39.34],[-81.45,39.41],[-81.57,39.27],[-81.69,39.27],[-81.81,39.08],[-81.78,38.97],[-81.89,38.87],[-82.04,39.03],[-82.22,38.79],[-82.17,38.63],[-82.29,38.58],[-82.33,38.45],[-82.59,38.42],[-82.73,38.56],[-82.85,38.59],[-82.89,38.76],[-83.03,38.73],[-83.14,38.63],[-83.52,38.7],[-83.68,38.63],[-83.9,38.77],[-84.22,38.81],[-84.23,38.9],[-84.44,39.1],[-84.82,39.1],[-84.8,40.5],[-84.81,41.69],[-83.45,41.73],[-83.06,41.59],[-82.93,41.51],[-82.83,41.59],[-82.62,41.43],[-82.48,41.38],[-82.01,41.51],[-81.74,41.49],[-81.44,41.67],[-81.01,41.85],[-80.52,41.98],[-80.52,41.98]]]}},{"type":"Feature","id":"40","properties":{"name":"Oklahoma"},"geometry":{"type":"Polygon","coordinates":[[[-100.09,37.0],[-94.62,37.0],[-94.62,36.5],[-94.43,35.4],[-94.48,33.64],[-94.87,33.75],[-94.97,33.86],[-95.22,33.96],[-95.29,33.87],[-95.55,33.88],[-95.6,33.93],[-95.84,33.84],[-95.94,33.89],[-96.15,33.84],[-96.35,33.69],[-96.42,33.77],[-96.63,33.85],[-96.85,33.85],[-96.92,33.96],[-97.17,33.74],[-97.26,33.86],[-97.37,33.82],[-97.46,33.91],[-97.69,33.98],[-97.87,33.85],[-97.95,33.99],[-98.09,34.0],[-98.17,34.11],[-98.36,34.16],[-98.49,34.06],[-98.57,34.15],[-98.77,34.14],[-98.99,34.22],[-99.19,34.21],[-99.26,34.4],[-99.58,34.41],[-99.7,34.38],[-99.92,34.57],[-100.0,34.56],[-100.0,36.5],[-101.81,36.5],[-103.0,36.5],[-103.0,37.0],[-102.04,36.99],[-100.09,37.0]]]}},{"type":"Feature","id":"41","properties":{"name":"Oregon"},"geometry":{"type":"Polygon","coordinates":[[[-123.21,46.17],[-123.12,46.19],[-122.91,46.08],[-122.81,45.96],[-122.76,45.66],[-122.25,45.55],[-121.81,45.71],[-121.53,45.73],[-121.22,45.67],[-121.19,45.6],[-120.64,45.75],[-120.51,45.7],[-120.21,45.73],[-119.96,45.82],[-119.53,45.91],[-119.13,45.93],[-118.99,46.0],[-116.92,45.99],[-116.78,45.82],[-116.55,45.75],[-116.46,45.62],[-116.67,45.32],[-116.73,45.14],[-116.85,45.02],[-116.83,44.93],[-116.94,44.78],[-117.04,44.75],[-117.24,44.39],[-117.17,44.26],[-116.98,44.24],[-116.9,44.16],[-117.03,43.83],[-117.03,42.0],[-118.7,41.99],[-120.0,41.99],[-121.04,41.99],[-122.38,42.01],[-123.23,42.01],[-124.21,42.0],[-124.36,42.12],[-124.43,42.44],[-124.42,42.66],[-124.55,42.84],[-124.45,43.0],[-124.38,43.27],[-124.24,43.56],[-124.17,43.81],[-124.06,44.66],[-124.08,44.77],[-123.98,45.14],[-123.94,45.66],[-124.0,45.94],[-123.94,46.11],[-123.55,46.26],[-123.37,46.15],[-123.21,46.17]]]}},{"type":"Feature","id":"42","properties":{"name":"Pennsylvania"},"geometry":{"type":"Polygon","coordinates":[[[-79.76,42.25],[-79.76,42.0],[-75.36,42.0],[-75.25,41.86],[-75.17,41.87],[-75.05,41.75],[-75.08,41.61],[-74.89,41.44],[-74.74,41.43],[-74.7,41.36],[-74.83,41.29],[-74.88,41.18],[-75.14,40.97],[-75.05,40.87],[-75.21,40.69],[-75.19,40.58],[-75.07,40.54],[-75.06,40.42],[-74.77,40.22],[-74.82,40.13],[-75.13,39.96],[-75.15,39.89],[-75.41,39.8],[-75.62,39.83],[-75.79,39.72],[-79.48,39.72],[-80.52,39.72],[-80.52,40.64],[-80.52,41.98],[-80.52,41.98],[-80.33,42.03],[-79.76,42.27],[-79.76,42.25]]]}},{"type":"Feature","id":"44","properties":{"name":"Rhode Island"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.2,41.68],[-71.12,41.5],[-71.32,41.48],[-71.2,41.68]]],[[[-71.53,42.02],[-71.38,42.02],[-71.33,41.78],[-71.22,41.71],[-71.34,41.73],[-71.45,41.58],[-71.48,41.37],[-71.86,41.32],[-71.8,41.41],[-71.8,42.01],[-71.53,42.02]]]]}},{"type":"Feature","id":"45","properties":{"name":"South Carolina"},"geometry":{"type":"Polygon","coordinates":[[[-82.76,35.07],[-82.55,35.16],[-82.28,35.2],[-81.04,35.15],[-81.04,35.05],[-80.94,35.1],[-80.78,34.94],[-80.8,34.82],[-79.67,34.8],[-78.54,33.85],[-78.72,33.8],[-78.94,33.64],[-79.15,33.38],[-79.19,33.17],[-79.36,33.01],[-79.58,33.01],[-79.63,32.89],[-79.87,32.76],[-80.0,32.61],[-80.21,32.55],[-80.43,32.4],[-80.45,32.33],[-80.66,32.25],[-80.89,32.03],[-81.12,32.12],[-81.12,32.29],[-81.28,32.56],[-81.42,32.63],[-81.43,32.84],[-81.49,33.01],[-81.76,33.16],[-81.94,33.35],[-81.93,33.46],[-82.19,33.63],[-82.33,33.82],[-82.56,33.94],[-82.72,34.15],[-82.75,34.27],[-82.9,34.49],[-83.0,34.47],[-83.34,34.68],[-83.32,34.79],[-83.11,35.0],[-82.76,35.07]]]}},{"type":"Feature","id":"46","properties":{"name":"South Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-104.05,45.94],[-96.56,45.93],[-96.58,45.82],[-96.86,45.6],[-96.68,45.41],[-96.45,45.3],[-96.45,43.5],[-96.58,43.48],[-96.53,43.4],[-96.56,43.22],[-96.44,43.12],[-96.51,43.05],[-96.54,42.85],[-96.63,42.71],[-96.45,42.49],[-96.63,42.52],[-96.69,42.66],[-97.22,42.84],[-97.69,42.84],[-97.83,42.87],[-97.95,42.77],[-98.47,42.95],[-98.5,43.0],[-101.63,43.0],[-103.33,43.0],[-104.05,43.0],[-104.06,45.0],[-104.04,45.0],[-104.05,45.94]]]}},{"type":"Feature","id":"47","properties":{"name":"Tennessee"},"geometry":{"type":"Polygon","coordinates":[[[-88.06,36.5],[-88.07,36.68],[-87.85,36.63],[-86.59,36.66],[-85.49,36.62],[-85.29,36.63],[-84.54,36.59],[-83.69,36.58],[-83.67,36.6],[-81.68,36.59],[-81.72,36.35],[-81.91,36.3],[-82.04,36.12],[-82.22,36.16],[-82.61,35.97],[-82.64,36.06],[-82.78,36.0],[-82.99,35.77],[-83.25,35.72],[-83.5,35.56],[-83.77,35.56],[-84.02,35.41],[-84.09,35.25],[-84.29,35.23],[-84.32,34.99],[-85.61,34.98],[-87.36,35.0],[-88.2,35.0],[-88.47,35.0],[-90.31,35.0],[-90.21,35.02],[-90.11,35.2],[-90.13,35.44],[-89.94,35.6],[-89.91,35.76],[-89.76,35.81],[-89.73,36.0],[-89.53,36.25],[-89.54,36.5],[-89.48,36.5],[-89.42,36.5],[-89.3,36.51],[-88.06,36.5]]]}},{"type":"Feature","id":"48","properties":{"name":"Texas"},"geometry":{"type":"Polygon","coordinates":[[[-101.81,36.5],[-100.0,36.5],[-100.0,34.56],[-99.92,34.57],[-99.7,34.38],[-99.58,34.41],[-99.26,34.4],[-99.19,34.21],[-98.99,34.22],[-98.77,34.14],[-98.57,34.15],[-98.49,34.06],[-98.36,34.16],[-98.17,34.11],[-98.09,34.0],[-97.95,33.99],[-97.87,33.85],[-97.69,33.98],[-97.46,33.91],[-97.37,33.82],[-97.26,33.86],[-97.17,33.74],[-96.92,33.96],[-96.85,33.85],[-96.63,33.85],[-96.42,33.77],[-96.35,33.69],[-96.15,33.84],[-95.94,33.89],[-95.84,33.84],[-95.6,33.93],[-95.55,33.88],[-95.29,33.87],[-95.22,33.96],[-94.97,33.86],[-94.87,33.75],[-94.48,33.64],[-94.38,33.54],[-94.18,33.59],[-94.04,33.55],[-94.04,33.02],[-94.04,31.99],[-93.82,31.77],[-93.82,31.56],[-93.54,31.15],[-93.53,30.94],[-93.63,30.68],[-93.73,30.58],[-93.7,30.44],[-93.77,30.34],[-93.69,30.14],[-93.93,29.79],[-93.84,29.69],[-94.0,29.68],[-94.52,29.55],[-94.71,29.62],[-94.74,29.79],[-94.87,29.67],[-94.97,29.7],[-95.02,29.56],[-94.91,29.5],[-94.9,29.31],[-95.08,29.11],[-95.38,28.87],[-95.98,28.6],[-96.05,28.65],[-96.23,28.58],[-96.23,28.64],[-96.48,28.6],[-96.59,28.73],[-96.67,28.7],[-96.4,28.44],[-96.59,28.36],[-96.77,28.41],[-96.8,28.23],[-97.03,28.04],[-97.26,27.7],[-97.4,27.33],[-97.51,27.36],[-97.54,27.23],[-97.43,27.26],[-97.48,27.0],[-97.56,26.99],[-97.56,26.84],[-97.47,26.76],[-97.44,26.46],[-97.33,26.35],[-97.31,26.16],[-97.22,25.99],[-97.52,25.89],[-97.65,26.02],[-97.89,26.07],[-98.2,26.06],[-98.47,26.22],[-98.67,26.24],[-98.82,26.37],[-99.03,26.41],[-99.17,26.54],[-99.27,26.84],[-99.45,27.02],[-99.42,27.18],[-99.51,27.34],[-99.48,27.48],[-99.61,27.64],[-99.71,27.66],[-99.88,27.8],[-99.93,27.98],[-100.08,28.14],[-100.3,28.28],[-100.4,28.58],[-100.5,28.66],[-100.63,28.91],[-100.67,29.1],[-100.8,29.25],[-101.01,29.37],[-101.06,29.46],[-101.26,29.54],[-101.41,29.75],[-101.85,29.8],[-102.11,29.79],[-102.34,29.87],[-102.39,29.77],[-102.63,29.73],[-102.81,29.52],[-102.92,29.19],[-102.98,29.18],[-103.12,28.99],[-103.28,28.98],[-103.53,29.14],[-104.15,29.38],[-104.27,29.51],[-104.51,29.64],[-104.68,29.92],[-104.69,30.18],[-104.86,30.39],[-104.9,30.57],[-105.01,30.68],[-105.39,30.86],[-105.6,31.09],[-105.77,31.17],[-105.95,31.36],[-106.2,31.47],[-106.38,31.73],[-106.53,31.79],[-106.64,31.9],[-106.62,32.0],[-103.07,32.0],[-103.07,33.0],[-103.05,34.02],[-103.04,36.5],[-103.0,36.5],[-101.81,36.5]]]}},{"type":"Feature","id":"49","properties":{"name":"Utah"},"geometry":{"type":"Polygon","coordinates":[[[-112.16,41.99],[-111.05,42.0],[-111.05,41.0],[-109.05,41.0],[-109.05,39.12],[-109.06,38.28],[-109.04,38.17],[-109.04,37.0],[-110.5,37.01],[-114.05,37.0],[-114.04,41.99],[-112.16,41.99]]]}},{"type":"Feature","id":"50","properties":{"name":"Vermont"},"geometry":{"type":"Polygon","coordinates":[[[-71.5,45.01],[-71.49,44.91],[-71.63,44.75],[-71.54,44.59],[-71.7,44.42],[-72.03,44.32],[-72.03,44.08],[-72.12,43.99],[-72.2,43.77],[-72.38,43.57],[-72.46,43.15],[-72.45,43.01],[-72.53,42.95],[-72.54,42.81],[-72.46,42.73],[-73.27,42.75],[-73.28,42.83],[-73.25,43.52],[-73.4,43.69],[-73.35,43.77],[-73.44,44.04],[-73.32,44.25],[-73.3,44.44],[-73.39,44.62],[-73.33,44.8],[-73.34,45.01],[-72.31,45.0],[-71.5,45.01]]]}},{"type":"Feature","id":"51","properties":{"name":"Virginia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.4,38.01],[-75.24,38.03],[-75.38,37.86],[-75.51,37.8],[-75.59,37.57],[-75.8,37.2],[-75.97,37.12],[-76.03,37.26],[-75.94,37.56],[-75.67,37.95],[-75.4,38.01]]],[[[-76.02,37.95],[-76.0,37.95],[-76.04,37.95],[-76.02,37.95]]],[[[-78.35,39.47],[-77.83,39.13],[-77.72,39.32],[-77.57,39.31],[-77.46,39.22],[-77.46,39.08],[-77.25,39.03],[-77.12,38.93],[-77.04,38.79],[-77.13,38.63],[-77.25,38.59],[-77.33,38.45],[-77.28,38.34],[-77.01,38.38],[-76.96,38.22],[-76.61,38.15],[-76.52,38.02],[-76.24,37.89],[-76.36,37.61],[-76.25,37.39],[-76.38,37.28],[-76.4,37.16],[-76.27,37.08],[-76.41,36.96],[-76.62,37.12],[-76.67,37.07],[-76.49,36.95],[-76.0,36.92],[-75.87,36.55],[-79.51,36.54],[-80.29,36.55],[-80.98,36.56],[-81.68,36.59],[-83.67,36.6],[-83.14,36.74],[-83.07,36.85],[-82.88,36.89],[-82.87,36.98],[-82.72,37.04],[-82.72,37.12],[-82.35,37.27],[-81.97,37.54],[-81.99,37.45],[-81.85,37.28],[-81.68,37.2],[-81.55,37.21],[-81.36,37.34],[-81.22,37.24],[-80.97,37.29],[-80.51,37.48],[-80.47,37.42],[-80.3,37.51],[-80.29,37.69],[-80.19,37.85],[-80.0,38.0],[-79.92,38.18],[-79.72,38.36],[-79.65,38.59],[-79.48,38.46],[-79.31,38.41],[-79.21,38.49],[-79.0,38.85],[-78.87,38.76],[-78.4,39.17],[-78.35,39.47]]]]}},{"type":"Feature","id":"53","properties":{"name":"Washington"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.03,49.0],[-117.04,47.76],[-117.04,46.43],[-117.06,46.34],[-116.92,46.17],[-116.92,45.99],[-118.99,46.0],[-119.13,45.93],[-119.53,45.91],[-119.96,45.82],[-120.21,45.73],[-120.51,45.7],[-120.64,45.75],[-121.19,45.6],[-121.22,45.67],[-121.53,45.73],[-121.81,45.71],[-122.25,45.55],[-122.76,45.66],[-122.81,45.96],[-122.91,46.08],[-123.12,46.19],[-123.21,46.17],[-123.37,46.15],[-123.55,46.26],[-123.73,46.3],[-123.87,46.24],[-124.07,46.33],[-124.03,46.46],[-123.9,46.54],[-124.1,46.74],[-124.24,47.29],[-124.32,47.36],[-124.43,47.74],[-124.62,47.89],[-124.71,48.18],[-124.6,48.38],[-124.39,48.29],[-123.98,48.16],[-123.7,48.17],[-123.42,48.12],[-123.16,48.17],[-123.04,48.08],[-122.8,48.09],[-122.64,47.87],[-122.52,47.88],[-122.49,47.59],[-122.42,47.32],[-122.32,47.35],[-122.42,47.58],[-122.39,47.8],[-122.23,48.03],[-122.36,48.12],[-122.37,48.29],[-122.47,48.47],[-122.42,48.6],[-122.49,48.75],[-122.65,48.78],[-122.8,48.89],[-122.76,49.0],[-117.03,49.0]]],[[[-122.72,48.31],[-122.59,48.35],[-122.61,48.15],[-122.77,48.23],[-122.72,48.31]]],[[[-123.03,48.58],[-122.92,48.72],[-122.77,48.56],[-122.81,48.42],[-123.04,48.46],[-123.03,48.58]]]]}},{"type":"Feature","id":"54","properties":{"name":"West Virginia"},"geometry":{"type":"Polygon","coordinates":[[[-80.52,40.64],[-80.52,39.72],[-79.48,39.72],[-79.49,39.21],[-79.29,39.3],[-79.09,39.47],[-78.96,39.44],[-78.77,39.59],[-78.47,39.51],[-78.43,39.62],[-78.27,39.62],[-78.17,39.7],[-78.0,39.6],[-77.83,39.6],[-77.72,39.32],[-77.83,39.13],[-78.35,39.47],[-78.4,39.17],[-78.87,38.76],[-79.0,38.85],[-79.21,38.49],[-79.31,38.41],[-79.48,38.46],[-79.65,38.59],[-79.72,38.36],[-79.92,38.18],[-80.0,38.0],[-80.19,37.85],[-80.29,37.69],[-80.3,37.51],[-80.47,37.42],[-80.51,37.48],[-80.97,37.29],[-81.22,37.24],[-81.36,37.34],[-81.55,37.21],[-81.68,37.2],[-81.85,37.28],[-81.99,37.45],[-81.97,37.54],[-82.1,37.55],[-82.29,37.67],[-82.34,37.78],[-82.5,37.93],[-82.62,38.12],[-82.59,38.42],[-82.33,38.45],[-82.29,38.58],[-82.17,38.63],[-82.22,38.79],[-82.04,39.03],[-81.89,38.87],[-81.78,38.97],[-81.81,39.08],[-81.69,39.27],[-81.57,39.27],[-81.45,39.41],[-81.35,39.34],[-81.22,39.39],[-80.83,39.71],[-80.74,40.08],[-80.6,40.32],[-80.59,40.47],[-80.67,40.58],[-80.52,40.64]]]}},{"type":"Feature","id":"55","properties":{"name":"Wisconsin"},"geometry":{"type":"Polygon","coordinates":[[[-90.42,46.57],[-90.23,46.51],[-90.12,46.34],[-89.09,46.14],[-88.66,45.99],[-88.53,46.02],[-88.1,45.92],[-87.99,45.8],[-87.78,45.68],[-87.79,45.5],[-87.89,45.36],[-87.65,45.34],[-87.74,45.2],[-87.59,45.09],[-87.63,44.98],[-87.82,44.95],[-87.98,44.72],[-88.04,44.56],[-87.93,44.54],[-87.78,44.64],[-87.61,44.84],[-87.4,44.91],[-87.24,45.17],[-87.03,45.22],[-87.05,45.09],[-87.19,44.97],[-87.47,44.55],[-87.55,44.32],[-87.54,44.16],[-87.64,44.1],[-87.74,43.88],[-87.7,43.69],[-87.79,43.56],[-87.91,43.25],[-87.89,43.0],[-87.77,42.78],[-87.8,42.49],[-88.79,42.49],[-90.64,42.51],[-90.71,42.64],[-91.07,42.75],[-91.14,42.91],[-91.18,43.13],[-91.06,43.26],[-91.2,43.35],[-91.22,43.5],[-91.27,43.62],[-91.24,43.77],[-91.43,43.99],[-91.59,44.03],[-91.88,44.2],[-91.93,44.33],[-92.23,44.44],[-92.34,44.55],[-92.55,44.57],[-92.81,44.75],[-92.74,45.12],[-92.76,45.29],[-92.64,45.44],[-92.77,45.57],[-92.89,45.58],[-92.87,45.72],[-92.64,45.93],[-92.35,46.02],[-92.29,46.08],[-92.29,46.67],[-92.09,46.75],[-92.02,46.7],[-91.79,46.69],[-91.09,46.86],[-90.84,46.96],[-90.75,46.89],[-90.89,46.76],[-90.56,46.59],[-90.42,46.57]]]}},{"type":"Feature","id":"56","properties":{"name":"Wyoming"},"geometry":{"type":"Polygon","coordinates":[[[-109.08,45.0],[-105.92,45.0],[-104.06,45.0],[-104.05,43.0],[-104.05,41.0],[-105.73,41.0],[-107.92,41.0],[-109.05,41.0],[-111.05,41.0],[-111.05,42.0],[-111.05,44.48],[-111.05,45.0],[-109.08,45.0]]]}},{"type":"Feature","id":"72","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.45,17.98],[-66.77,18.01],[-66.92,17.93],[-66.98,17.97],[-67.21,17.96],[-67.16,18.19],[-67.27,18.36],[-67.09,18.52],[-66.96,18.49],[-66.41,18.49],[-65.84,18.43],[-65.63,18.37],[-65.63,18.2],[-65.73,18.19],[-65.83,18.02],[-66.23,17.93],[-66.45,17.98]]]}}]}; const D = {"01001":{"home":77.06,"income":72481,"name":"Autauga County","oh":1,"pop":59947,"poverty":11.29,"state":"AL","unemp":2.4},"01003":{"home":77.6,"income":78775,"name":"Baldwin County","oh":6,"pop":246989,"poverty":10.09,"state":"AL","unemp":3.03},"01005":{"home":68.24,"income":46042,"name":"Barbour County","oh":0,"pop":24643,"poverty":21.38,"state":"AL","unemp":7.79},"01007":{"home":79.18,"income":52541,"name":"Bibb County","oh":0,"pop":22130,"poverty":22.46,"state":"AL","unemp":12.08},"01009":{"home":80.98,"income":64190,"name":"Blount County","oh":1,"pop":59518,"poverty":12.86,"state":"AL","unemp":5.0},"01011":{"home":66.65,"income":31310,"name":"Bullock County","oh":0,"pop":10058,"poverty":33.27,"state":"AL","unemp":7.22},"01013":{"home":65.84,"income":44755,"name":"Butler County","oh":0,"pop":18630,"poverty":22.41,"state":"AL","unemp":6.47},"01015":{"home":70.32,"income":55029,"name":"Calhoun County","oh":0,"pop":116090,"poverty":17.89,"state":"AL","unemp":5.97},"01017":{"home":71.78,"income":49656,"name":"Chambers County","oh":0,"pop":34192,"poverty":15.74,"state":"AL","unemp":5.14},"01019":{"home":81.08,"income":53863,"name":"Cherokee County","oh":0,"pop":25443,"poverty":14.75,"state":"AL","unemp":3.88},"01021":{"home":76.86,"income":65603,"name":"Chilton County","oh":1,"pop":45992,"poverty":14.02,"state":"AL","unemp":5.47},"01023":{"home":82.38,"income":47813,"name":"Choctaw County","oh":0,"pop":12380,"poverty":16.49,"state":"AL","unemp":5.03},"01025":{"home":70.78,"income":49249,"name":"Clarke County","oh":0,"pop":22543,"poverty":20.06,"state":"AL","unemp":9.19},"01027":{"home":79.43,"income":55250,"name":"Clay County","oh":0,"pop":14192,"poverty":17.55,"state":"AL","unemp":2.4},"01029":{"home":78.55,"income":55345,"name":"Cleburne County","oh":0,"pop":15426,"poverty":13.68,"state":"AL","unemp":2.57},"01031":{"home":72.26,"income":68353,"name":"Coffee County","oh":1,"pop":54920,"poverty":16.71,"state":"AL","unemp":5.09},"01033":{"home":71.29,"income":60628,"name":"Colbert County","oh":0,"pop":58022,"poverty":17.36,"state":"AL","unemp":3.14},"01035":{"home":74.33,"income":41327,"name":"Conecuh County","oh":0,"pop":11275,"poverty":27.85,"state":"AL","unemp":8.7},"01037":{"home":81.58,"income":57355,"name":"Coosa County","oh":0,"pop":10300,"poverty":13.13,"state":"AL","unemp":6.2},"01039":{"home":76.27,"income":52456,"name":"Covington County","oh":0,"pop":37628,"poverty":19.19,"state":"AL","unemp":5.17},"01041":{"home":73.21,"income":48560,"name":"Crenshaw County","oh":0,"pop":13122,"poverty":17.9,"state":"AL","unemp":5.42},"01043":{"home":76.63,"income":62656,"name":"Cullman County","oh":1,"pop":90566,"poverty":15.31,"state":"AL","unemp":3.77},"01045":{"home":61.89,"income":54963,"name":"Dale County","oh":0,"pop":49599,"poverty":18.72,"state":"AL","unemp":6.6},"01047":{"home":63.82,"income":35627,"name":"Dallas County","oh":0,"pop":36858,"poverty":31.04,"state":"AL","unemp":10.95},"01049":{"home":78.26,"income":51204,"name":"DeKalb County","oh":0,"pop":72269,"poverty":22.36,"state":"AL","unemp":4.14},"01051":{"home":76.97,"income":78243,"name":"Elmore County","oh":1,"pop":89526,"poverty":10.32,"state":"AL","unemp":4.65},"01053":{"home":70.95,"income":48225,"name":"Escambia County","oh":0,"pop":36629,"poverty":20.02,"state":"AL","unemp":10.05},"01055":{"home":73.91,"income":54563,"name":"Etowah County","oh":2,"pop":103105,"poverty":16.94,"state":"AL","unemp":5.9},"01057":{"home":78.42,"income":49488,"name":"Fayette County","oh":0,"pop":16053,"poverty":21.81,"state":"AL","unemp":8.44},"01059":{"home":72.37,"income":53338,"name":"Franklin County","oh":0,"pop":31966,"poverty":19.14,"state":"AL","unemp":3.63},"01061":{"home":78.11,"income":52771,"name":"Geneva County","oh":0,"pop":26887,"poverty":19.18,"state":"AL","unemp":5.63},"01063":{"home":61.61,"income":29200,"name":"Greene County","oh":0,"pop":7424,"poverty":40.14,"state":"AL","unemp":4.04},"01065":{"home":74.39,"income":39250,"name":"Hale County","oh":0,"pop":14829,"poverty":24.58,"state":"AL","unemp":6.0},"01067":{"home":79.5,"income":59931,"name":"Henry County","oh":0,"pop":17647,"poverty":18.35,"state":"AL","unemp":3.61},"01069":{"home":63.79,"income":58626,"name":"Houston County","oh":1,"pop":108140,"poverty":17.51,"state":"AL","unemp":4.5},"01071":{"home":75.13,"income":51908,"name":"Jackson County","oh":0,"pop":53053,"poverty":17.26,"state":"AL","unemp":4.47},"01073":{"home":63.89,"income":66388,"name":"Jefferson County","oh":5,"pop":667755,"poverty":15.7,"state":"AL","unemp":4.73},"01075":{"home":75.68,"income":50000,"name":"Lamar County","oh":0,"pop":13693,"poverty":18.0,"state":"AL","unemp":5.47},"01077":{"home":68.9,"income":62649,"name":"Lauderdale County","oh":1,"pop":95830,"poverty":12.16,"state":"AL","unemp":4.06},"01079":{"home":81.67,"income":66071,"name":"Lawrence County","oh":0,"pop":33276,"poverty":13.31,"state":"AL","unemp":1.96},"01081":{"home":66.34,"income":65824,"name":"Lee County","oh":2,"pop":181134,"poverty":18.94,"state":"AL","unemp":3.55},"01083":{"home":77.59,"income":83629,"name":"Limestone County","oh":1,"pop":111233,"poverty":9.96,"state":"AL","unemp":3.29},"01085":{"home":77.52,"income":37052,"name":"Lowndes County","oh":0,"pop":9833,"poverty":29.95,"state":"AL","unemp":6.84},"01087":{"home":61.54,"income":43707,"name":"Macon County","oh":0,"pop":18691,"poverty":24.32,"state":"AL","unemp":8.29},"01089":{"home":68.31,"income":86499,"name":"Madison County","oh":2,"pop":405718,"poverty":10.13,"state":"AL","unemp":3.61},"01091":{"home":70.25,"income":43825,"name":"Marengo County","oh":0,"pop":18851,"poverty":21.85,"state":"AL","unemp":4.09},"01093":{"home":76.77,"income":50088,"name":"Marion County","oh":0,"pop":29184,"poverty":16.21,"state":"AL","unemp":5.02},"01095":{"home":75.77,"income":62571,"name":"Marshall County","oh":2,"pop":99748,"poverty":16.64,"state":"AL","unemp":3.91},"01097":{"home":66.03,"income":58880,"name":"Mobile County","oh":4,"pop":412590,"poverty":16.23,"state":"AL","unemp":5.26},"01099":{"home":71.71,"income":42292,"name":"Monroe County","oh":0,"pop":19388,"poverty":20.09,"state":"AL","unemp":10.37},"01101":{"home":58.71,"income":61159,"name":"Montgomery County","oh":1,"pop":225894,"poverty":20.7,"state":"AL","unemp":3.44},"01103":{"home":71.7,"income":68686,"name":"Morgan County","oh":1,"pop":126084,"poverty":16.84,"state":"AL","unemp":4.58},"01105":{"home":77.53,"income":37654,"name":"Perry County","oh":0,"pop":8031,"poverty":31.36,"state":"AL","unemp":16.46},"01107":{"home":75.81,"income":46274,"name":"Pickens County","oh":0,"pop":18721,"poverty":20.0,"state":"AL","unemp":4.72},"01109":{"home":61.33,"income":48677,"name":"Pike County","oh":0,"pop":32987,"poverty":23.31,"state":"AL","unemp":3.66},"01111":{"home":77.21,"income":52338,"name":"Randolph County","oh":0,"pop":22510,"poverty":19.91,"state":"AL","unemp":3.77},"01113":{"home":61.31,"income":51197,"name":"Russell County","oh":1,"pop":58811,"poverty":22.17,"state":"AL","unemp":6.24},"01115":{"home":82.61,"income":77463,"name":"St. Clair County","oh":0,"pop":94166,"poverty":11.35,"state":"AL","unemp":4.56},"01117":{"home":80.99,"income":102265,"name":"Shelby County","oh":1,"pop":235969,"poverty":6.34,"state":"AL","unemp":2.74},"01119":{"home":66.85,"income":33310,"name":"Sumter County","oh":0,"pop":11878,"poverty":26.46,"state":"AL","unemp":12.11},"01121":{"home":71.96,"income":57776,"name":"Talladega County","oh":0,"pop":81021,"poverty":17.81,"state":"AL","unemp":6.83},"01123":{"home":76.07,"income":59356,"name":"Tallapoosa County","oh":1,"pop":40938,"poverty":16.32,"state":"AL","unemp":4.94},"01125":{"home":61.42,"income":68404,"name":"Tuscaloosa County","oh":2,"pop":241212,"poverty":15.62,"state":"AL","unemp":6.61},"01127":{"home":76.14,"income":56509,"name":"Walker County","oh":0,"pop":64841,"poverty":18.46,"state":"AL","unemp":4.88},"01129":{"home":85.8,"income":61042,"name":"Washington County","oh":0,"pop":15143,"poverty":17.11,"state":"AL","unemp":4.86},"01131":{"home":77.41,"income":40640,"name":"Wilcox County","oh":0,"pop":10172,"poverty":28.2,"state":"AL","unemp":11.76},"01133":{"home":75.8,"income":57256,"name":"Winston County","oh":0,"pop":23682,"poverty":18.66,"state":"AL","unemp":3.58},"02013":{"home":64.21,"income":65365,"name":"Aleutians East Borough","oh":0,"pop":3491,"poverty":13.22,"state":"AK","unemp":8.35},"02016":{"home":33.47,"income":135500,"name":"Aleutians West Census Area","oh":0,"pop":5235,"poverty":11.31,"state":"AK","unemp":4.31},"02020":{"home":61.96,"income":105356,"name":"Anchorage Municipality","oh":0,"pop":289600,"poverty":8.33,"state":"AK","unemp":4.84},"02050":{"home":61.56,"income":73996,"name":"Bethel Census Area","oh":0,"pop":18394,"poverty":25.61,"state":"AK","unemp":15.94},"02060":{"home":53.61,"income":95625,"name":"Bristol Bay Borough","oh":0,"pop":918,"poverty":9.25,"state":"AK","unemp":4.36},"02068":{"home":64.96,"income":80781,"name":"Denali Borough","oh":0,"pop":1969,"poverty":8.26,"state":"AK","unemp":0.91},"02070":{"home":61.37,"income":78533,"name":"Dillingham Census Area","oh":0,"pop":4724,"poverty":19.46,"state":"AK","unemp":10.54},"02090":{"home":64.68,"income":92121,"name":"Fairbanks North Star Borough","oh":1,"pop":94951,"poverty":4.98,"state":"AK","unemp":5.68},"02100":{"home":78.47,"income":86927,"name":"Haines Borough","oh":0,"pop":2086,"poverty":5.45,"state":"AK","unemp":4.67},"02105":{"home":71.97,"income":61406,"name":"Hoonah-Angoon Census Area","oh":0,"pop":2311,"poverty":14.25,"state":"AK","unemp":15.85},"02110":{"home":63.61,"income":101661,"name":"Juneau City and Borough","oh":0,"pop":31794,"poverty":8.91,"state":"AK","unemp":4.01},"02122":{"home":77.02,"income":80538,"name":"Kenai Peninsula Borough","oh":0,"pop":60413,"poverty":11.81,"state":"AK","unemp":6.99},"02130":{"home":68.61,"income":92885,"name":"Ketchikan Gateway Borough","oh":0,"pop":13768,"poverty":8.69,"state":"AK","unemp":3.12},"02150":{"home":61.08,"income":86250,"name":"Kodiak Island Borough","oh":0,"pop":12771,"poverty":8.7,"state":"AK","unemp":5.01},"02164":{"home":65.43,"income":65625,"name":"Lake and Peninsula Borough","oh":0,"pop":1013,"poverty":12.8,"state":"AK","unemp":8.59},"02170":{"home":80.05,"income":96643,"name":"Matanuska-Susitna Borough","oh":0,"pop":117613,"poverty":9.0,"state":"AK","unemp":4.79},"02180":{"home":66.83,"income":78681,"name":"Nome Census Area","oh":0,"pop":9866,"poverty":21.51,"state":"AK","unemp":16.88},"02185":{"home":49.15,"income":95694,"name":"North Slope Borough","oh":0,"pop":10810,"poverty":11.07,"state":"AK","unemp":7.6},"02188":{"home":64.38,"income":84018,"name":"Northwest Arctic Borough","oh":0,"pop":7441,"poverty":17.86,"state":"AK","unemp":16.66},"02195":{"home":65.72,"income":75125,"name":"Petersburg Borough","oh":0,"pop":3409,"poverty":6.97,"state":"AK","unemp":3.77},"02198":{"home":70.57,"income":61156,"name":"Prince of Wales-Hyder Census Area","oh":0,"pop":5715,"poverty":12.7,"state":"AK","unemp":7.65},"02220":{"home":61.72,"income":101727,"name":"Sitka City and Borough","oh":0,"pop":8368,"poverty":7.48,"state":"AK","unemp":6.78},"02230":{"home":70.89,"income":81136,"name":"Skagway Municipality","oh":0,"pop":1244,"poverty":5.87,"state":"AK","unemp":9.14},"02240":{"home":74.69,"income":73882,"name":"Southeast Fairbanks Census Area","oh":0,"pop":7068,"poverty":12.7,"state":"AK","unemp":6.47},"02275":{"home":59.12,"income":63750,"name":"Wrangell City and Borough","oh":0,"pop":2088,"poverty":12.09,"state":"AK","unemp":4.33},"02282":{"home":56.31,"income":85000,"name":"Yakutat City and Borough","oh":0,"pop":527,"poverty":11.88,"state":"AK","unemp":0.9},"02290":{"home":69.9,"income":55741,"name":"Yukon-Koyukuk Census Area","oh":0,"pop":5195,"poverty":16.02,"state":"AK","unemp":5.39},"04001":{"home":79.44,"income":41438,"name":"Apache County","oh":0,"pop":65341,"poverty":30.53,"state":"AZ","unemp":10.69},"04003":{"home":72.71,"income":60723,"name":"Cochise County","oh":1,"pop":125773,"poverty":13.33,"state":"AZ","unemp":5.39},"04005":{"home":62.84,"income":75164,"name":"Coconino County","oh":1,"pop":145161,"poverty":14.99,"state":"AZ","unemp":3.02},"04007":{"home":77.52,"income":61986,"name":"Gila County","oh":0,"pop":53795,"poverty":16.89,"state":"AZ","unemp":7.05},"04009":{"home":73.14,"income":67325,"name":"Graham County","oh":1,"pop":39232,"poverty":17.26,"state":"AZ","unemp":7.7},"04011":{"home":53.02,"income":71164,"name":"Greenlee County","oh":0,"pop":9409,"poverty":8.19,"state":"AZ","unemp":2.33},"04012":{"home":72.1,"income":49478,"name":"La Paz County","oh":0,"pop":16664,"poverty":17.45,"state":"AZ","unemp":10.04},"04013":{"home":65.17,"income":89300,"name":"Maricopa County","oh":12,"pop":4559748,"poverty":10.98,"state":"AZ","unemp":4.54},"04015":{"home":74.07,"income":57684,"name":"Mohave County","oh":1,"pop":220517,"poverty":16.09,"state":"AZ","unemp":7.25},"04017":{"home":73.19,"income":54606,"name":"Navajo County","oh":1,"pop":108415,"poverty":24.72,"state":"AZ","unemp":8.85},"04019":{"home":65.24,"income":70315,"name":"Pima County","oh":1,"pop":1060490,"poverty":14.32,"state":"AZ","unemp":5.5},"04021":{"home":81.72,"income":80266,"name":"Pinal County","oh":0,"pop":469006,"poverty":11.1,"state":"AZ","unemp":5.96},"04023":{"home":69.25,"income":55217,"name":"Santa Cruz County","oh":1,"pop":48926,"poverty":20.18,"state":"AZ","unemp":12.18},"04025":{"home":75.07,"income":69613,"name":"Yavapai County","oh":1,"pop":245480,"poverty":12.04,"state":"AZ","unemp":4.28},"04027":{"home":70.97,"income":62876,"name":"Yuma County","oh":0,"pop":211741,"poverty":15.6,"state":"AZ","unemp":6.93},"05001":{"home":64.58,"income":53164,"name":"Arkansas County","oh":0,"pop":16515,"poverty":19.02,"state":"AR","unemp":8.14},"05003":{"home":70.83,"income":44266,"name":"Ashley County","oh":0,"pop":18429,"poverty":22.15,"state":"AR","unemp":5.48},"05005":{"home":75.2,"income":48452,"name":"Baxter County","oh":0,"pop":42407,"poverty":15.49,"state":"AR","unemp":6.34},"05007":{"home":67.01,"income":93506,"name":"Benton County","oh":1,"pop":303632,"poverty":7.56,"state":"AR","unemp":3.08},"05009":{"home":70.81,"income":55143,"name":"Boone County","oh":0,"pop":38138,"poverty":11.71,"state":"AR","unemp":2.53},"05011":{"home":65.96,"income":41476,"name":"Bradley County","oh":0,"pop":10208,"poverty":19.86,"state":"AR","unemp":6.62},"05013":{"home":87.81,"income":66809,"name":"Calhoun County","oh":0,"pop":4704,"poverty":10.17,"state":"AR","unemp":5.59},"05015":{"home":77.48,"income":54230,"name":"Carroll County","oh":0,"pop":28626,"poverty":17.18,"state":"AR","unemp":4.71},"05017":{"home":69.23,"income":39045,"name":"Chicot County","oh":0,"pop":9765,"poverty":22.64,"state":"AR","unemp":9.06},"05019":{"home":64.99,"income":52034,"name":"Clark County","oh":0,"pop":21125,"poverty":21.55,"state":"AR","unemp":3.81},"05021":{"home":74.72,"income":51481,"name":"Clay County","oh":1,"pop":14280,"poverty":17.19,"state":"AR","unemp":6.3},"05023":{"home":80.59,"income":55798,"name":"Cleburne County","oh":0,"pop":25226,"poverty":13.88,"state":"AR","unemp":6.43},"05025":{"home":82.63,"income":54794,"name":"Cleveland County","oh":0,"pop":7453,"poverty":15.78,"state":"AR","unemp":2.18},"05027":{"home":70.73,"income":55334,"name":"Columbia County","oh":1,"pop":22349,"poverty":21.13,"state":"AR","unemp":3.21},"05029":{"home":74.08,"income":54187,"name":"Conway County","oh":0,"pop":21054,"poverty":19.71,"state":"AR","unemp":6.41},"05031":{"home":60.11,"income":59548,"name":"Craighead County","oh":1,"pop":113249,"poverty":20.12,"state":"AR","unemp":5.57},"05033":{"home":75.47,"income":64132,"name":"Crawford County","oh":1,"pop":61139,"poverty":14.66,"state":"AR","unemp":4.06},"05035":{"home":57.35,"income":55358,"name":"Crittenden County","oh":1,"pop":47266,"poverty":20.99,"state":"AR","unemp":10.23},"05037":{"home":67.53,"income":50863,"name":"Cross County","oh":0,"pop":16543,"poverty":19.72,"state":"AR","unemp":10.71},"05039":{"home":72.63,"income":42500,"name":"Dallas County","oh":0,"pop":6242,"poverty":13.92,"state":"AR","unemp":8.25},"05041":{"home":56.81,"income":37662,"name":"Desha County","oh":0,"pop":10786,"poverty":28.33,"state":"AR","unemp":7.99},"05043":{"home":63.72,"income":42824,"name":"Drew County","oh":0,"pop":17046,"poverty":22.4,"state":"AR","unemp":5.89},"05045":{"home":62.3,"income":67289,"name":"Faulkner County","oh":0,"pop":127717,"poverty":14.51,"state":"AR","unemp":3.39},"05047":{"home":77.95,"income":55886,"name":"Franklin County","oh":0,"pop":17326,"poverty":17.98,"state":"AR","unemp":4.87},"05049":{"home":84.7,"income":42241,"name":"Fulton County","oh":0,"pop":12302,"poverty":18.01,"state":"AR","unemp":4.6},"05051":{"home":69.38,"income":57181,"name":"Garland County","oh":0,"pop":100035,"poverty":15.8,"state":"AR","unemp":5.69},"05053":{"home":80.74,"income":71549,"name":"Grant County","oh":0,"pop":18242,"poverty":13.09,"state":"AR","unemp":4.54},"05055":{"home":66.19,"income":57839,"name":"Greene County","oh":0,"pop":46432,"poverty":17.41,"state":"AR","unemp":5.88},"05057":{"home":71.75,"income":46787,"name":"Hempstead County","oh":1,"pop":19508,"poverty":20.22,"state":"AR","unemp":5.58},"05059":{"home":76.47,"income":55405,"name":"Hot Spring County","oh":0,"pop":33180,"poverty":15.1,"state":"AR","unemp":3.72},"05061":{"home":72.54,"income":45603,"name":"Howard County","oh":0,"pop":12583,"poverty":22.52,"state":"AR","unemp":5.38},"05063":{"home":69.19,"income":56609,"name":"Independence County","oh":1,"pop":38175,"poverty":20.39,"state":"AR","unemp":3.88},"05065":{"home":75.42,"income":49405,"name":"Izard County","oh":0,"pop":14009,"poverty":22.28,"state":"AR","unemp":7.17},"05067":{"home":65.47,"income":44218,"name":"Jackson County","oh":0,"pop":16712,"poverty":21.66,"state":"AR","unemp":9.78},"05069":{"home":61.79,"income":51096,"name":"Jefferson County","oh":0,"pop":64802,"poverty":18.55,"state":"AR","unemp":8.13},"05071":{"home":74.07,"income":45995,"name":"Johnson County","oh":0,"pop":26003,"poverty":19.79,"state":"AR","unemp":4.61},"05073":{"home":79.25,"income":41278,"name":"Lafayette County","oh":0,"pop":6136,"poverty":22.26,"state":"AR","unemp":5.3},"05075":{"home":66.55,"income":44882,"name":"Lawrence County","oh":0,"pop":16238,"poverty":20.1,"state":"AR","unemp":5.79},"05077":{"home":58.96,"income":34375,"name":"Lee County","oh":0,"pop":8359,"poverty":39.44,"state":"AR","unemp":19.1},"05079":{"home":76.09,"income":51778,"name":"Lincoln County","oh":0,"pop":12950,"poverty":15.35,"state":"AR","unemp":2.69},"05081":{"home":80.06,"income":53344,"name":"Little River County","oh":0,"pop":11821,"poverty":15.53,"state":"AR","unemp":7.32},"05083":{"home":78.39,"income":58555,"name":"Logan County","oh":0,"pop":21277,"poverty":13.93,"state":"AR","unemp":5.64},"05085":{"home":74.96,"income":72828,"name":"Lonoke County","oh":1,"pop":75272,"poverty":10.4,"state":"AR","unemp":4.44},"05087":{"home":79.51,"income":56798,"name":"Madison County","oh":0,"pop":17329,"poverty":14.06,"state":"AR","unemp":5.3},"05089":{"home":81.34,"income":48619,"name":"Marion County","oh":0,"pop":17228,"poverty":17.98,"state":"AR","unemp":4.95},"05091":{"home":64.37,"income":48836,"name":"Miller County","oh":0,"pop":42360,"poverty":24.57,"state":"AR","unemp":7.1},"05093":{"home":59.95,"income":52548,"name":"Mississippi County","oh":0,"pop":39126,"poverty":21.13,"state":"AR","unemp":6.9},"05095":{"home":62.58,"income":43214,"name":"Monroe County","oh":0,"pop":6589,"poverty":20.57,"state":"AR","unemp":9.83},"05097":{"home":80.57,"income":48906,"name":"Montgomery County","oh":0,"pop":8553,"poverty":22.39,"state":"AR","unemp":5.78},"05099":{"home":76.01,"income":53886,"name":"Nevada County","oh":0,"pop":8159,"poverty":20.25,"state":"AR","unemp":4.62},"05101":{"home":76.53,"income":48986,"name":"Newton County","oh":0,"pop":7112,"poverty":15.87,"state":"AR","unemp":4.09},"05103":{"home":70.93,"income":49268,"name":"Ouachita County","oh":0,"pop":22085,"poverty":18.87,"state":"AR","unemp":5.16},"05105":{"home":80.39,"income":55764,"name":"Perry County","oh":0,"pop":10101,"poverty":14.24,"state":"AR","unemp":4.13},"05107":{"home":51.19,"income":40134,"name":"Phillips County","oh":0,"pop":15450,"poverty":29.35,"state":"AR","unemp":14.51},"05109":{"home":74.99,"income":49269,"name":"Pike County","oh":0,"pop":10115,"poverty":20.66,"state":"AR","unemp":3.88},"05111":{"home":64.44,"income":46707,"name":"Poinsett County","oh":0,"pop":22543,"poverty":20.1,"state":"AR","unemp":6.38},"05113":{"home":78.91,"income":49191,"name":"Polk County","oh":0,"pop":19361,"poverty":15.89,"state":"AR","unemp":7.26},"05115":{"home":70.38,"income":57344,"name":"Pope County","oh":0,"pop":64131,"poverty":16.9,"state":"AR","unemp":5.15},"05117":{"home":75.77,"income":51646,"name":"Prairie County","oh":0,"pop":8064,"poverty":11.84,"state":"AR","unemp":3.04},"05119":{"home":57.0,"income":62873,"name":"Pulaski County","oh":1,"pop":399818,"poverty":16.7,"state":"AR","unemp":4.75},"05121":{"home":73.55,"income":50911,"name":"Randolph County","oh":0,"pop":18838,"poverty":22.39,"state":"AR","unemp":5.27},"05123":{"home":55.49,"income":42574,"name":"St. Francis County","oh":1,"pop":22400,"poverty":28.47,"state":"AR","unemp":9.23},"05125":{"home":78.22,"income":79046,"name":"Saline County","oh":1,"pop":127479,"poverty":8.82,"state":"AR","unemp":3.9},"05127":{"home":78.09,"income":43270,"name":"Scott County","oh":0,"pop":9816,"poverty":18.73,"state":"AR","unemp":6.17},"05129":{"home":79.39,"income":44426,"name":"Searcy County","oh":0,"pop":7859,"poverty":23.03,"state":"AR","unemp":3.67},"05131":{"home":61.39,"income":57790,"name":"Sebastian County","oh":1,"pop":128900,"poverty":15.97,"state":"AR","unemp":5.46},"05133":{"home":67.63,"income":53527,"name":"Sevier County","oh":1,"pop":15712,"poverty":17.28,"state":"AR","unemp":4.9},"05135":{"home":78.84,"income":44637,"name":"Sharp County","oh":0,"pop":17773,"poverty":16.46,"state":"AR","unemp":8.14},"05137":{"home":75.94,"income":40943,"name":"Stone County","oh":0,"pop":12568,"poverty":19.35,"state":"AR","unemp":3.23},"05139":{"home":72.69,"income":55259,"name":"Union County","oh":0,"pop":37900,"poverty":19.55,"state":"AR","unemp":5.48},"05141":{"home":77.88,"income":50354,"name":"Van Buren County","oh":0,"pop":15998,"poverty":19.12,"state":"AR","unemp":3.78},"05143":{"home":55.62,"income":70639,"name":"Washington County","oh":1,"pop":256765,"poverty":14.59,"state":"AR","unemp":3.43},"05145":{"home":69.13,"income":55249,"name":"White County","oh":0,"pop":77838,"poverty":17.55,"state":"AR","unemp":5.81},"05147":{"home":64.75,"income":48158,"name":"Woodruff County","oh":0,"pop":6026,"poverty":24.05,"state":"AR","unemp":4.98},"05149":{"home":67.55,"income":55934,"name":"Yell County","oh":0,"pop":20134,"poverty":15.64,"state":"AR","unemp":3.38},"06001":{"home":54.41,"income":129367,"name":"Alameda County","oh":3,"pop":1649473,"poverty":9.22,"state":"CA","unemp":5.38},"06003":{"home":78.16,"income":105521,"name":"Alpine County","oh":0,"pop":1616,"poverty":9.96,"state":"CA","unemp":4.42},"06005":{"home":80.42,"income":88044,"name":"Amador County","oh":0,"pop":41428,"poverty":8.19,"state":"CA","unemp":5.4},"06007":{"home":57.28,"income":67928,"name":"Butte County","oh":2,"pop":207929,"poverty":19.25,"state":"CA","unemp":7.46},"06009":{"home":83.96,"income":78647,"name":"Calaveras County","oh":0,"pop":46248,"poverty":13.0,"state":"CA","unemp":4.52},"06011":{"home":62.22,"income":75672,"name":"Colusa County","oh":0,"pop":21984,"poverty":11.39,"state":"CA","unemp":9.78},"06013":{"home":68.0,"income":127229,"name":"Contra Costa County","oh":7,"pop":1165012,"poverty":8.36,"state":"CA","unemp":6.49},"06015":{"home":70.08,"income":67058,"name":"Del Norte County","oh":0,"pop":27107,"poverty":12.95,"state":"CA","unemp":6.4},"06017":{"home":77.24,"income":108845,"name":"El Dorado County","oh":0,"pop":192662,"poverty":7.99,"state":"CA","unemp":4.49},"06019":{"home":55.55,"income":74201,"name":"Fresno County","oh":2,"pop":1016725,"poverty":18.31,"state":"CA","unemp":8.69},"06021":{"home":61.18,"income":67139,"name":"Glenn County","oh":0,"pop":28494,"poverty":15.95,"state":"CA","unemp":8.02},"06023":{"home":56.54,"income":61160,"name":"Humboldt County","oh":0,"pop":134541,"poverty":18.67,"state":"CA","unemp":9.02},"06025":{"home":56.82,"income":57681,"name":"Imperial County","oh":2,"pop":180202,"poverty":19.53,"state":"CA","unemp":12.52},"06027":{"home":66.41,"income":73991,"name":"Inyo County","oh":0,"pop":18739,"poverty":10.88,"state":"CA","unemp":2.48},"06029":{"home":60.06,"income":70210,"name":"Kern County","oh":2,"pop":915075,"poverty":19.11,"state":"CA","unemp":8.63},"06031":{"home":54.19,"income":70995,"name":"Kings County","oh":0,"pop":153298,"poverty":15.98,"state":"CA","unemp":10.8},"06033":{"home":72.16,"income":60621,"name":"Lake County","oh":0,"pop":68152,"poverty":16.97,"state":"CA","unemp":11.06},"06035":{"home":68.18,"income":67403,"name":"Lassen County","oh":0,"pop":30356,"poverty":13.96,"state":"CA","unemp":8.32},"06037":{"home":45.9,"income":90112,"name":"Los Angeles County","oh":26,"pop":9808667,"poverty":13.74,"state":"CA","unemp":7.27},"06039":{"home":67.46,"income":76627,"name":"Madera County","oh":0,"pop":160940,"poverty":19.2,"state":"CA","unemp":10.12},"06041":{"home":64.66,"income":149091,"name":"Marin County","oh":1,"pop":257969,"poverty":8.31,"state":"CA","unemp":6.09},"06043":{"home":74.73,"income":68412,"name":"Mariposa County","oh":0,"pop":17082,"poverty":14.04,"state":"CA","unemp":5.96},"06045":{"home":61.71,"income":68092,"name":"Mendocino County","oh":0,"pop":90244,"poverty":15.36,"state":"CA","unemp":9.02},"06047":{"home":54.0,"income":65510,"name":"Merced County","oh":0,"pop":290201,"poverty":19.09,"state":"CA","unemp":10.56},"06049":{"home":77.44,"income":59455,"name":"Modoc County","oh":0,"pop":8600,"poverty":17.9,"state":"CA","unemp":7.6},"06051":{"home":65.42,"income":99415,"name":"Mono County","oh":0,"pop":13148,"poverty":8.55,"state":"CA","unemp":3.07},"06053":{"home":52.07,"income":97230,"name":"Monterey County","oh":1,"pop":437613,"poverty":12.73,"state":"CA","unemp":5.2},"06055":{"home":63.41,"income":111471,"name":"Napa County","oh":1,"pop":134869,"poverty":8.46,"state":"CA","unemp":5.2},"06057":{"home":75.45,"income":89882,"name":"Nevada County","oh":0,"pop":102481,"poverty":11.01,"state":"CA","unemp":5.44},"06059":{"home":56.39,"income":116289,"name":"Orange County","oh":9,"pop":3165820,"poverty":9.5,"state":"CA","unemp":5.4},"06061":{"home":74.77,"income":115998,"name":"Placer County","oh":0,"pop":419156,"poverty":6.76,"state":"CA","unemp":4.8},"06063":{"home":74.57,"income":66031,"name":"Plumas County","oh":0,"pop":19423,"poverty":10.6,"state":"CA","unemp":9.15},"06065":{"home":69.13,"income":93074,"name":"Riverside County","oh":8,"pop":2478600,"poverty":10.62,"state":"CA","unemp":6.5},"06067":{"home":59.02,"income":92175,"name":"Sacramento County","oh":2,"pop":1594006,"poverty":12.5,"state":"CA","unemp":6.71},"06069":{"home":67.94,"income":114394,"name":"San Benito County","oh":0,"pop":67290,"poverty":6.67,"state":"CA","unemp":5.38},"06071":{"home":62.06,"income":85478,"name":"San Bernardino County","oh":10,"pop":2197104,"poverty":13.35,"state":"CA","unemp":7.11},"06073":{"home":54.57,"income":106268,"name":"San Diego County","oh":9,"pop":3288774,"poverty":10.28,"state":"CA","unemp":6.11},"06075":{"home":38.21,"income":140970,"name":"San Francisco County","oh":0,"pop":830235,"poverty":11.15,"state":"CA","unemp":6.09},"06077":{"home":61.99,"income":92179,"name":"San Joaquin County","oh":0,"pop":797334,"poverty":12.41,"state":"CA","unemp":7.57},"06079":{"home":62.09,"income":97446,"name":"San Luis Obispo County","oh":2,"pop":281555,"poverty":12.91,"state":"CA","unemp":5.48},"06081":{"home":58.47,"income":158855,"name":"San Mateo County","oh":4,"pop":742340,"poverty":6.71,"state":"CA","unemp":4.78},"06083":{"home":52.37,"income":98161,"name":"Santa Barbara County","oh":2,"pop":443701,"poverty":14.74,"state":"CA","unemp":6.42},"06085":{"home":55.08,"income":164281,"name":"Santa Clara County","oh":5,"pop":1902047,"poverty":7.11,"state":"CA","unemp":4.87},"06087":{"home":59.94,"income":111093,"name":"Santa Cruz County","oh":0,"pop":264926,"poverty":11.62,"state":"CA","unemp":6.12},"06089":{"home":65.55,"income":72636,"name":"Shasta County","oh":2,"pop":181436,"poverty":13.29,"state":"CA","unemp":6.32},"06091":{"home":72.11,"income":63355,"name":"Sierra County","oh":0,"pop":2746,"poverty":4.44,"state":"CA","unemp":12.63},"06093":{"home":69.2,"income":59095,"name":"Siskiyou County","oh":0,"pop":43466,"poverty":16.38,"state":"CA","unemp":7.89},"06095":{"home":63.02,"income":100401,"name":"Solano County","oh":3,"pop":451918,"poverty":9.99,"state":"CA","unemp":6.46},"06097":{"home":62.62,"income":104674,"name":"Sonoma County","oh":2,"pop":485040,"poverty":8.89,"state":"CA","unemp":5.71},"06099":{"home":61.18,"income":81468,"name":"Stanislaus County","oh":1,"pop":553990,"poverty":13.53,"state":"CA","unemp":7.98},"06101":{"home":61.33,"income":79704,"name":"Sutter County","oh":0,"pop":98857,"poverty":14.43,"state":"CA","unemp":7.16},"06103":{"home":67.13,"income":63784,"name":"Tehama County","oh":0,"pop":65167,"poverty":15.56,"state":"CA","unemp":5.85},"06105":{"home":71.73,"income":53002,"name":"Trinity County","oh":0,"pop":15860,"poverty":20.7,"state":"CA","unemp":8.39},"06107":{"home":58.45,"income":71300,"name":"Tulare County","oh":1,"pop":478693,"poverty":17.89,"state":"CA","unemp":9.31},"06109":{"home":73.91,"income":77404,"name":"Tuolumne County","oh":0,"pop":54498,"poverty":10.44,"state":"CA","unemp":8.22},"06111":{"home":64.57,"income":109797,"name":"Ventura County","oh":5,"pop":837469,"poverty":9.34,"state":"CA","unemp":5.73},"06113":{"home":54.29,"income":91752,"name":"Yolo County","oh":1,"pop":220564,"poverty":16.69,"state":"CA","unemp":6.12},"06115":{"home":63.5,"income":76373,"name":"Yuba County","oh":0,"pop":84507,"poverty":14.18,"state":"CA","unemp":6.83},"08001":{"home":68.57,"income":94571,"name":"Adams County","oh":2,"pop":530225,"poverty":9.81,"state":"CO","unemp":4.63},"08003":{"home":55.94,"income":55397,"name":"Alamosa County","oh":0,"pop":16581,"poverty":17.22,"state":"CO","unemp":3.66},"08005":{"home":64.74,"income":101087,"name":"Arapahoe County","oh":3,"pop":659844,"poverty":8.64,"state":"CO","unemp":4.97},"08007":{"home":80.07,"income":83065,"name":"Archuleta County","oh":0,"pop":13900,"poverty":8.19,"state":"CO","unemp":1.34},"08009":{"home":71.51,"income":46215,"name":"Baca County","oh":0,"pop":3428,"poverty":24.62,"state":"CO","unemp":0.58},"08011":{"home":65.17,"income":50179,"name":"Bent County","oh":0,"pop":5549,"poverty":28.36,"state":"CO","unemp":5.77},"08013":{"home":61.97,"income":103994,"name":"Boulder County","oh":2,"pop":328961,"poverty":11.16,"state":"CO","unemp":4.83},"08014":{"home":62.74,"income":123874,"name":"Broomfield County","oh":0,"pop":76304,"poverty":6.17,"state":"CO","unemp":3.79},"08015":{"home":74.13,"income":84132,"name":"Chaffee County","oh":0,"pop":20178,"poverty":8.28,"state":"CO","unemp":4.79},"08017":{"home":72.61,"income":70865,"name":"Cheyenne County","oh":0,"pop":1741,"poverty":8.23,"state":"CO","unemp":0.41},"08019":{"home":81.61,"income":94577,"name":"Clear Creek County","oh":0,"pop":9262,"poverty":6.39,"state":"CO","unemp":4.8},"08021":{"home":76.52,"income":50978,"name":"Conejos County","oh":0,"pop":7530,"poverty":11.68,"state":"CO","unemp":4.77},"08023":{"home":79.04,"income":36861,"name":"Costilla County","oh":0,"pop":3607,"poverty":21.0,"state":"CO","unemp":3.52},"08025":{"home":69.48,"income":48826,"name":"Crowley County","oh":0,"pop":5647,"poverty":19.41,"state":"CO","unemp":3.91},"08027":{"home":85.33,"income":72674,"name":"Custer County","oh":0,"pop":5247,"poverty":12.7,"state":"CO","unemp":3.73},"08029":{"home":77.94,"income":57774,"name":"Delta County","oh":0,"pop":31598,"poverty":13.99,"state":"CO","unemp":3.15},"08031":{"home":48.76,"income":94718,"name":"Denver County","oh":0,"pop":718877,"poverty":11.24,"state":"CO","unemp":4.88},"08033":{"home":81.34,"income":64907,"name":"Dolores County","oh":0,"pop":2432,"poverty":21.63,"state":"CO","unemp":2.48},"08035":{"home":77.39,"income":149594,"name":"Douglas County","oh":0,"pop":377150,"poverty":3.77,"state":"CO","unemp":3.58},"08037":{"home":65.94,"income":104096,"name":"Eagle County","oh":0,"pop":55135,"poverty":8.69,"state":"CO","unemp":4.73},"08039":{"home":95.03,"income":132685,"name":"Elbert County","oh":0,"pop":27874,"poverty":5.28,"state":"CO","unemp":3.39},"08041":{"home":66.24,"income":90363,"name":"El Paso County","oh":1,"pop":742999,"poverty":8.52,"state":"CO","unemp":5.42},"08043":{"home":75.63,"income":62664,"name":"Fremont County","oh":0,"pop":49634,"poverty":13.35,"state":"CO","unemp":4.26},"08045":{"home":69.61,"income":91131,"name":"Garfield County","oh":0,"pop":62479,"poverty":8.21,"state":"CO","unemp":3.37},"08047":{"home":87.51,"income":95361,"name":"Gilpin County","oh":0,"pop":5901,"poverty":11.18,"state":"CO","unemp":3.1},"08049":{"home":73.43,"income":88612,"name":"Grand County","oh":0,"pop":15895,"poverty":7.57,"state":"CO","unemp":4.12},"08051":{"home":66.79,"income":84527,"name":"Gunnison County","oh":1,"pop":17241,"poverty":11.27,"state":"CO","unemp":4.67},"08053":{"home":76.13,"income":75972,"name":"Hinsdale County","oh":0,"pop":1005,"poverty":4.08,"state":"CO","unemp":0.0},"08055":{"home":75.1,"income":52526,"name":"Huerfano County","oh":0,"pop":6972,"poverty":17.33,"state":"CO","unemp":7.96},"08057":{"home":71.12,"income":47667,"name":"Jackson County","oh":0,"pop":1372,"poverty":14.64,"state":"CO","unemp":9.23},"08059":{"home":70.73,"income":110656,"name":"Jefferson County","oh":1,"pop":579377,"poverty":6.68,"state":"CO","unemp":3.92},"08061":{"home":68.72,"income":58618,"name":"Kiowa County","oh":0,"pop":1376,"poverty":11.81,"state":"CO","unemp":0.14},"08063":{"home":72.62,"income":70259,"name":"Kit Carson County","oh":0,"pop":7023,"poverty":9.83,"state":"CO","unemp":2.42},"08065":{"home":75.63,"income":96575,"name":"Lake County","oh":0,"pop":7380,"poverty":7.91,"state":"CO","unemp":2.2},"08067":{"home":70.93,"income":86056,"name":"La Plata County","oh":0,"pop":56331,"poverty":11.7,"state":"CO","unemp":3.82},"08069":{"home":64.02,"income":93765,"name":"Larimer County","oh":1,"pop":367368,"poverty":11.2,"state":"CO","unemp":4.75},"08071":{"home":68.57,"income":52074,"name":"Las Animas County","oh":0,"pop":14413,"poverty":18.71,"state":"CO","unemp":5.64},"08073":{"home":71.74,"income":62861,"name":"Lincoln County","oh":0,"pop":5550,"poverty":9.82,"state":"CO","unemp":1.4},"08075":{"home":66.31,"income":51829,"name":"Logan County","oh":0,"pop":20892,"poverty":15.77,"state":"CO","unemp":5.44},"08077":{"home":72.47,"income":73658,"name":"Mesa County","oh":0,"pop":158601,"poverty":10.72,"state":"CO","unemp":5.42},"08079":{"home":69.69,"income":56250,"name":"Mineral County","oh":0,"pop":729,"poverty":10.01,"state":"CO","unemp":9.09},"08081":{"home":69.35,"income":73849,"name":"Moffat County","oh":0,"pop":13207,"poverty":8.39,"state":"CO","unemp":4.54},"08083":{"home":76.24,"income":65244,"name":"Montezuma County","oh":0,"pop":26412,"poverty":13.25,"state":"CO","unemp":3.86},"08085":{"home":75.39,"income":72120,"name":"Montrose County","oh":0,"pop":43807,"poverty":11.52,"state":"CO","unemp":4.4},"08087":{"home":67.33,"income":73278,"name":"Morgan County","oh":0,"pop":29520,"poverty":14.33,"state":"CO","unemp":5.31},"08089":{"home":68.95,"income":54037,"name":"Otero County","oh":0,"pop":18321,"poverty":22.09,"state":"CO","unemp":6.73},"08091":{"home":82.54,"income":91020,"name":"Ouray County","oh":0,"pop":5087,"poverty":4.25,"state":"CO","unemp":3.52},"08093":{"home":86.23,"income":103670,"name":"Park County","oh":0,"pop":17907,"poverty":4.96,"state":"CO","unemp":3.32},"08095":{"home":71.88,"income":64674,"name":"Phillips County","oh":0,"pop":4496,"poverty":16.84,"state":"CO","unemp":2.92},"08097":{"home":62.83,"income":102645,"name":"Pitkin County","oh":0,"pop":16985,"poverty":7.8,"state":"CO","unemp":2.51},"08099":{"home":67.1,"income":53508,"name":"Prowers County","oh":0,"pop":11910,"poverty":18.16,"state":"CO","unemp":4.14},"08101":{"home":68.88,"income":64010,"name":"Pueblo County","oh":1,"pop":169356,"poverty":14.6,"state":"CO","unemp":4.78},"08103":{"home":74.3,"income":65473,"name":"Rio Blanco County","oh":0,"pop":6544,"poverty":8.5,"state":"CO","unemp":2.43},"08105":{"home":67.1,"income":64411,"name":"Rio Grande County","oh":0,"pop":11321,"poverty":18.01,"state":"CO","unemp":10.15},"08107":{"home":76.0,"income":106489,"name":"Routt County","oh":0,"pop":25084,"poverty":5.15,"state":"CO","unemp":2.41},"08109":{"home":76.92,"income":50082,"name":"Saguache County","oh":0,"pop":6580,"poverty":17.77,"state":"CO","unemp":10.33},"08111":{"home":52.88,"income":77824,"name":"San Juan County","oh":0,"pop":724,"poverty":21.27,"state":"CO","unemp":9.41},"08113":{"home":62.97,"income":79024,"name":"San Miguel County","oh":0,"pop":7968,"poverty":9.26,"state":"CO","unemp":2.69},"08115":{"home":71.82,"income":52386,"name":"Sedgwick County","oh":0,"pop":2304,"poverty":13.05,"state":"CO","unemp":2.94},"08117":{"home":72.06,"income":109773,"name":"Summit County","oh":0,"pop":31017,"poverty":7.69,"state":"CO","unemp":4.97},"08119":{"home":80.99,"income":85361,"name":"Teller County","oh":0,"pop":24825,"poverty":7.61,"state":"CO","unemp":3.72},"08121":{"home":73.62,"income":67167,"name":"Washington County","oh":0,"pop":4831,"poverty":8.08,"state":"CO","unemp":3.1},"08123":{"home":76.32,"income":101563,"name":"Weld County","oh":1,"pop":369745,"poverty":9.81,"state":"CO","unemp":3.86},"08125":{"home":68.93,"income":60545,"name":"Yuma County","oh":0,"pop":9979,"poverty":17.93,"state":"CO","unemp":4.46},"10001":{"home":76.79,"income":81117,"name":"Kent County","oh":1,"pop":192690,"poverty":9.04,"state":"DE","unemp":5.63},"10003":{"home":68.49,"income":89846,"name":"New Castle County","oh":3,"pop":588093,"poverty":9.99,"state":"DE","unemp":5.05},"10005":{"home":82.19,"income":85258,"name":"Sussex County","oh":2,"pop":271134,"poverty":9.14,"state":"DE","unemp":4.86},"11001":{"home":40.9,"income":109707,"name":"District of Columbia","oh":0,"pop":702250,"poverty":17.31,"state":"DC","unemp":5.63},"12001":{"home":53.7,"income":65033,"name":"Alachua County","oh":67,"pop":291782,"poverty":23.89,"state":"FL","unemp":4.3},"12003":{"home":85.1,"income":79836,"name":"Baker County","oh":25,"pop":28430,"poverty":11.76,"state":"FL","unemp":4.5},"12005":{"home":65.59,"income":78061,"name":"Bay County","oh":50,"pop":199718,"poverty":10.7,"state":"FL","unemp":5.5},"12007":{"home":73.3,"income":63050,"name":"Bradford County","oh":35,"pop":27885,"poverty":16.77,"state":"FL","unemp":4.72},"12009":{"home":76.7,"income":78196,"name":"Brevard County","oh":102,"pop":658447,"poverty":9.96,"state":"FL","unemp":5.08},"12011":{"home":63.58,"income":77633,"name":"Broward County","oh":183,"pop":1977129,"poverty":12.24,"state":"FL","unemp":5.43},"12013":{"home":78.77,"income":50517,"name":"Calhoun County","oh":27,"pop":13492,"poverty":20.75,"state":"FL","unemp":8.01},"12015":{"home":83.8,"income":69952,"name":"Charlotte County","oh":21,"pop":201064,"poverty":8.99,"state":"FL","unemp":5.37},"12017":{"home":85.23,"income":56546,"name":"Citrus County","oh":28,"pop":162472,"poverty":15.59,"state":"FL","unemp":6.35},"12019":{"home":75.89,"income":87820,"name":"Clay County","oh":35,"pop":227584,"poverty":9.22,"state":"FL","unemp":3.78},"12021":{"home":76.6,"income":90045,"name":"Collier County","oh":43,"pop":398291,"poverty":10.69,"state":"FL","unemp":3.92},"12023":{"home":72.5,"income":59205,"name":"Columbia County","oh":26,"pop":71789,"poverty":16.67,"state":"FL","unemp":5.33},"12027":{"home":72.52,"income":54417,"name":"DeSoto County","oh":22,"pop":35386,"poverty":24.06,"state":"FL","unemp":9.5},"12029":{"home":84.73,"income":50110,"name":"Dixie County","oh":26,"pop":17058,"poverty":20.91,"state":"FL","unemp":3.27},"12031":{"home":58.23,"income":71277,"name":"Duval County","oh":96,"pop":1023153,"poverty":14.15,"state":"FL","unemp":4.48},"12033":{"home":64.78,"income":67500,"name":"Escambia County","oh":30,"pop":325923,"poverty":14.71,"state":"FL","unemp":5.87},"12035":{"home":82.95,"income":77363,"name":"Flagler County","oh":39,"pop":126528,"poverty":10.27,"state":"FL","unemp":4.36},"12037":{"home":80.89,"income":64105,"name":"Franklin County","oh":26,"pop":12553,"poverty":16.49,"state":"FL","unemp":8.47},"12039":{"home":70.69,"income":48801,"name":"Gadsden County","oh":51,"pop":43710,"poverty":27.91,"state":"FL","unemp":5.03},"12041":{"home":85.72,"income":63523,"name":"Gilchrist County","oh":25,"pop":19040,"poverty":11.5,"state":"FL","unemp":3.47},"12043":{"home":85.09,"income":45870,"name":"Glades County","oh":21,"pop":12563,"poverty":17.21,"state":"FL","unemp":7.13},"12045":{"home":80.79,"income":61179,"name":"Gulf County","oh":25,"pop":15131,"poverty":12.47,"state":"FL","unemp":2.63},"12047":{"home":79.79,"income":50144,"name":"Hamilton County","oh":32,"pop":13616,"poverty":20.13,"state":"FL","unemp":6.71},"12049":{"home":71.4,"income":60489,"name":"Hardee County","oh":31,"pop":25675,"poverty":25.33,"state":"FL","unemp":5.91},"12051":{"home":73.57,"income":56393,"name":"Hendry County","oh":28,"pop":42382,"poverty":22.53,"state":"FL","unemp":4.39},"12053":{"home":82.54,"income":66058,"name":"Hernando County","oh":23,"pop":207018,"poverty":11.74,"state":"FL","unemp":5.32},"12055":{"home":78.6,"income":54897,"name":"Highlands County","oh":31,"pop":105702,"poverty":15.26,"state":"FL","unemp":6.36},"12057":{"home":61.48,"income":79540,"name":"Hillsborough County","oh":43,"pop":1522748,"poverty":12.71,"state":"FL","unemp":4.51},"12059":{"home":76.39,"income":49343,"name":"Holmes County","oh":39,"pop":19513,"poverty":13.96,"state":"FL","unemp":4.48},"12061":{"home":80.12,"income":73491,"name":"Indian River County","oh":38,"pop":166936,"poverty":11.06,"state":"FL","unemp":4.49},"12063":{"home":75.93,"income":49149,"name":"Jackson County","oh":66,"pop":48250,"poverty":19.46,"state":"FL","unemp":4.52},"12065":{"home":75.87,"income":61212,"name":"Jefferson County","oh":21,"pop":15091,"poverty":20.97,"state":"FL","unemp":7.42},"12067":{"home":77.17,"income":62757,"name":"Lafayette County","oh":21,"pop":8161,"poverty":17.5,"state":"FL","unemp":10.87},"12069":{"home":77.6,"income":73161,"name":"Lake County","oh":84,"pop":412924,"poverty":8.85,"state":"FL","unemp":5.0},"12071":{"home":74.33,"income":76107,"name":"Lee County","oh":51,"pop":817666,"poverty":12.0,"state":"FL","unemp":4.01},"12073":{"home":52.57,"income":66287,"name":"Leon County","oh":27,"pop":297542,"poverty":18.67,"state":"FL","unemp":5.69},"12075":{"home":81.45,"income":56750,"name":"Levy County","oh":54,"pop":45391,"poverty":17.39,"state":"FL","unemp":4.08},"12077":{"home":80.06,"income":58671,"name":"Liberty County","oh":24,"pop":7687,"poverty":17.55,"state":"FL","unemp":6.58},"12079":{"home":73.41,"income":48485,"name":"Madison County","oh":36,"pop":18089,"poverty":21.0,"state":"FL","unemp":5.81},"12081":{"home":74.33,"income":78457,"name":"Manatee County","oh":43,"pop":429792,"poverty":9.77,"state":"FL","unemp":4.57},"12083":{"home":77.47,"income":61010,"name":"Marion County","oh":42,"pop":400078,"poverty":14.41,"state":"FL","unemp":4.84},"12085":{"home":79.64,"income":82943,"name":"Martin County","oh":38,"pop":162176,"poverty":11.31,"state":"FL","unemp":4.89},"12086":{"home":52.23,"income":71753,"name":"Miami-Dade County","oh":223,"pop":2738356,"poverty":14.72,"state":"FL","unemp":4.6},"12087":{"home":65.79,"income":87738,"name":"Monroe County","oh":40,"pop":81860,"poverty":10.65,"state":"FL","unemp":2.93},"12089":{"home":82.72,"income":89804,"name":"Nassau County","oh":35,"pop":97859,"poverty":9.68,"state":"FL","unemp":4.48},"12091":{"home":68.4,"income":81998,"name":"Okaloosa County","oh":68,"pop":216599,"poverty":9.32,"state":"FL","unemp":3.81},"12093":{"home":73.85,"income":57984,"name":"Okeechobee County","oh":21,"pop":40816,"poverty":17.99,"state":"FL","unemp":4.43},"12095":{"home":56.8,"income":79719,"name":"Orange County","oh":97,"pop":1471937,"poverty":13.0,"state":"FL","unemp":5.51},"12097":{"home":65.33,"income":72637,"name":"Osceola County","oh":26,"pop":427415,"poverty":12.81,"state":"FL","unemp":5.36},"12099":{"home":70.08,"income":83581,"name":"Palm Beach County","oh":210,"pop":1533806,"poverty":11.33,"state":"FL","unemp":5.46},"12101":{"home":75.72,"income":70492,"name":"Pasco County","oh":47,"pop":611444,"poverty":11.1,"state":"FL","unemp":4.9},"12103":{"home":69.53,"income":72646,"name":"Pinellas County","oh":152,"pop":963481,"poverty":11.54,"state":"FL","unemp":4.43},"12105":{"home":70.47,"income":65978,"name":"Polk County","oh":108,"pop":790694,"poverty":14.47,"state":"FL","unemp":4.83},"12107":{"home":75.35,"income":47934,"name":"Putnam County","oh":45,"pop":75164,"poverty":23.42,"state":"FL","unemp":7.38},"12109":{"home":82.23,"income":109839,"name":"St. Johns County","oh":28,"pop":306934,"poverty":6.54,"state":"FL","unemp":3.31},"12111":{"home":78.56,"income":71457,"name":"St. Lucie County","oh":33,"pop":360500,"poverty":12.28,"state":"FL","unemp":6.06},"12113":{"home":80.62,"income":91922,"name":"Santa Rosa County","oh":34,"pop":198472,"poverty":8.76,"state":"FL","unemp":4.48},"12115":{"home":76.71,"income":83416,"name":"Sarasota County","oh":39,"pop":459547,"poverty":8.59,"state":"FL","unemp":3.74},"12117":{"home":66.2,"income":85761,"name":"Seminole County","oh":52,"pop":481470,"poverty":9.03,"state":"FL","unemp":4.15},"12119":{"home":87.61,"income":76508,"name":"Sumter County","oh":46,"pop":143408,"poverty":9.71,"state":"FL","unemp":5.45},"12121":{"home":74.93,"income":56658,"name":"Suwannee County","oh":27,"pop":45342,"poverty":14.97,"state":"FL","unemp":6.28},"12123":{"home":76.0,"income":49073,"name":"Taylor County","oh":22,"pop":21503,"poverty":17.34,"state":"FL","unemp":5.39},"12125":{"home":74.75,"income":64146,"name":"Union County","oh":30,"pop":15701,"poverty":19.54,"state":"FL","unemp":4.76},"12127":{"home":73.71,"income":70044,"name":"Volusia County","oh":100,"pop":579622,"poverty":11.76,"state":"FL","unemp":4.13},"12129":{"home":81.88,"income":81895,"name":"Wakulla County","oh":27,"pop":35387,"poverty":6.69,"state":"FL","unemp":3.27},"12131":{"home":78.59,"income":81986,"name":"Walton County","oh":33,"pop":82948,"poverty":12.47,"state":"FL","unemp":4.85},"12133":{"home":79.95,"income":58210,"name":"Washington County","oh":44,"pop":25529,"poverty":17.29,"state":"FL","unemp":3.57},"13001":{"home":72.51,"income":46651,"name":"Appling County","oh":0,"pop":18493,"poverty":22.48,"state":"GA","unemp":3.14},"13003":{"home":61.89,"income":42347,"name":"Atkinson County","oh":0,"pop":8337,"poverty":24.97,"state":"GA","unemp":4.78},"13005":{"home":68.65,"income":44694,"name":"Bacon County","oh":0,"pop":11109,"poverty":24.47,"state":"GA","unemp":2.64},"13007":{"home":76.71,"income":46012,"name":"Baker County","oh":0,"pop":2790,"poverty":26.27,"state":"GA","unemp":6.72},"13009":{"home":61.06,"income":54403,"name":"Baldwin County","oh":0,"pop":43642,"poverty":21.71,"state":"GA","unemp":6.16},"13011":{"home":78.72,"income":77063,"name":"Banks County","oh":0,"pop":19264,"poverty":11.27,"state":"GA","unemp":2.91},"13013":{"home":78.5,"income":80653,"name":"Barrow County","oh":0,"pop":89886,"poverty":9.55,"state":"GA","unemp":3.75},"13015":{"home":72.85,"income":82243,"name":"Bartow County","oh":1,"pop":113113,"poverty":10.32,"state":"GA","unemp":4.73},"13017":{"home":63.27,"income":41758,"name":"Ben Hill County","oh":1,"pop":17089,"poverty":25.15,"state":"GA","unemp":3.11},"13019":{"home":70.96,"income":52876,"name":"Berrien County","oh":0,"pop":18352,"poverty":20.58,"state":"GA","unemp":3.67},"13021":{"home":51.4,"income":51234,"name":"Bibb County","oh":0,"pop":156578,"poverty":24.73,"state":"GA","unemp":8.13},"13023":{"home":72.95,"income":62008,"name":"Bleckley County","oh":0,"pop":12430,"poverty":19.32,"state":"GA","unemp":5.89},"13025":{"home":79.89,"income":58239,"name":"Brantley County","oh":0,"pop":18315,"poverty":17.08,"state":"GA","unemp":2.8},"13027":{"home":71.71,"income":46807,"name":"Brooks County","oh":0,"pop":16293,"poverty":25.43,"state":"GA","unemp":5.01},"13029":{"home":77.72,"income":103408,"name":"Bryan County","oh":0,"pop":48263,"poverty":6.7,"state":"GA","unemp":5.34},"13031":{"home":53.11,"income":58810,"name":"Bulloch County","oh":1,"pop":82683,"poverty":23.01,"state":"GA","unemp":8.24},"13033":{"home":70.0,"income":53014,"name":"Burke County","oh":0,"pop":24470,"poverty":18.34,"state":"GA","unemp":4.97},"13035":{"home":74.29,"income":69241,"name":"Butts County","oh":0,"pop":26496,"poverty":10.41,"state":"GA","unemp":3.24},"13037":{"home":59.45,"income":46940,"name":"Calhoun County","oh":0,"pop":5498,"poverty":22.83,"state":"GA","unemp":5.99},"13039":{"home":67.79,"income":74378,"name":"Camden County","oh":0,"pop":56970,"poverty":12.87,"state":"GA","unemp":5.38},"13043":{"home":62.04,"income":49581,"name":"Candler County","oh":0,"pop":11043,"poverty":16.25,"state":"GA","unemp":2.46},"13045":{"home":71.28,"income":73714,"name":"Carroll County","oh":1,"pop":124569,"poverty":15.37,"state":"GA","unemp":5.9},"13047":{"home":74.25,"income":74639,"name":"Catoosa County","oh":0,"pop":68634,"poverty":9.85,"state":"GA","unemp":4.26},"13049":{"home":80.14,"income":61276,"name":"Charlton County","oh":0,"pop":12818,"poverty":18.08,"state":"GA","unemp":13.96},"13051":{"home":56.75,"income":71097,"name":"Chatham County","oh":1,"pop":300879,"poverty":14.33,"state":"GA","unemp":5.94},"13053":{"home":39.28,"income":61042,"name":"Chattahoochee County","oh":0,"pop":8887,"poverty":13.95,"state":"GA","unemp":9.05},"13055":{"home":66.79,"income":50285,"name":"Chattooga County","oh":0,"pop":25036,"poverty":21.2,"state":"GA","unemp":5.39},"13057":{"home":77.29,"income":108115,"name":"Cherokee County","oh":2,"pop":281032,"poverty":6.98,"state":"GA","unemp":3.25},"13059":{"home":41.43,"income":53625,"name":"Clarke County","oh":0,"pop":129609,"poverty":26.05,"state":"GA","unemp":5.25},"13061":{"home":78.31,"income":49147,"name":"Clay County","oh":0,"pop":2850,"poverty":21.02,"state":"GA","unemp":4.5},"13063":{"home":54.54,"income":59806,"name":"Clayton County","oh":0,"pop":298924,"poverty":17.95,"state":"GA","unemp":7.2},"13065":{"home":70.84,"income":45847,"name":"Clinch County","oh":0,"pop":6759,"poverty":26.09,"state":"GA","unemp":2.14},"13067":{"home":67.02,"income":102738,"name":"Cobb County","oh":5,"pop":775208,"poverty":8.74,"state":"GA","unemp":4.53},"13069":{"home":64.66,"income":50683,"name":"Coffee County","oh":0,"pop":43347,"poverty":23.15,"state":"GA","unemp":4.37},"13071":{"home":63.73,"income":49341,"name":"Colquitt County","oh":0,"pop":46224,"poverty":22.87,"state":"GA","unemp":4.27},"13073":{"home":78.14,"income":95592,"name":"Columbia County","oh":0,"pop":162434,"poverty":7.47,"state":"GA","unemp":4.8},"13075":{"home":66.02,"income":53651,"name":"Cook County","oh":0,"pop":17532,"poverty":17.73,"state":"GA","unemp":3.64},"13077":{"home":78.41,"income":95548,"name":"Coweta County","oh":1,"pop":152852,"poverty":7.42,"state":"GA","unemp":3.09},"13079":{"home":81.38,"income":67116,"name":"Crawford County","oh":0,"pop":12225,"poverty":11.6,"state":"GA","unemp":2.4},"13081":{"home":55.5,"income":45105,"name":"Crisp County","oh":0,"pop":19790,"poverty":23.34,"state":"GA","unemp":7.46},"13083":{"home":79.96,"income":64568,"name":"Dade County","oh":0,"pop":16165,"poverty":8.17,"state":"GA","unemp":3.19},"13085":{"home":78.66,"income":92991,"name":"Dawson County","oh":0,"pop":30242,"poverty":8.54,"state":"GA","unemp":3.52},"13087":{"home":62.12,"income":53317,"name":"Decatur County","oh":0,"pop":29195,"poverty":22.04,"state":"GA","unemp":6.34},"13089":{"home":58.79,"income":80644,"name":"DeKalb County","oh":5,"pop":765351,"poverty":13.69,"state":"GA","unemp":6.39},"13091":{"home":70.56,"income":51587,"name":"Dodge County","oh":0,"pop":19805,"poverty":21.55,"state":"GA","unemp":6.08},"13093":{"home":64.7,"income":60987,"name":"Dooly County","oh":0,"pop":10984,"poverty":15.73,"state":"GA","unemp":3.57},"13095":{"home":45.33,"income":49044,"name":"Dougherty County","oh":1,"pop":83091,"poverty":25.03,"state":"GA","unemp":10.2},"13097":{"home":66.92,"income":82984,"name":"Douglas County","oh":1,"pop":147888,"poverty":10.86,"state":"GA","unemp":6.22},"13099":{"home":66.63,"income":54083,"name":"Early County","oh":0,"pop":10603,"poverty":23.62,"state":"GA","unemp":6.74},"13101":{"home":75.9,"income":59489,"name":"Echols County","oh":0,"pop":3709,"poverty":14.21,"state":"GA","unemp":1.71},"13103":{"home":78.35,"income":88438,"name":"Effingham County","oh":0,"pop":69143,"poverty":6.84,"state":"GA","unemp":5.52},"13105":{"home":70.93,"income":58450,"name":"Elbert County","oh":0,"pop":19849,"poverty":17.98,"state":"GA","unemp":4.59},"13107":{"home":60.78,"income":52772,"name":"Emanuel County","oh":0,"pop":23026,"poverty":25.69,"state":"GA","unemp":8.85},"13109":{"home":65.39,"income":53259,"name":"Evans County","oh":0,"pop":10757,"poverty":19.15,"state":"GA","unemp":4.29},"13111":{"home":78.57,"income":57073,"name":"Fannin County","oh":0,"pop":25742,"poverty":13.7,"state":"GA","unemp":3.69},"13113":{"home":80.11,"income":111978,"name":"Fayette County","oh":1,"pop":122244,"poverty":5.58,"state":"GA","unemp":3.8},"13115":{"home":63.58,"income":65565,"name":"Floyd County","oh":1,"pop":99693,"poverty":16.02,"state":"GA","unemp":4.25},"13117":{"home":84.43,"income":143784,"name":"Forsyth County","oh":0,"pop":267287,"poverty":4.34,"state":"GA","unemp":3.51},"13119":{"home":77.15,"income":53046,"name":"Franklin County","oh":0,"pop":24234,"poverty":19.52,"state":"GA","unemp":5.9},"13121":{"home":54.31,"income":95292,"name":"Fulton County","oh":7,"pop":1076561,"poverty":12.34,"state":"GA","unemp":5.36},"13123":{"home":80.72,"income":74499,"name":"Gilmer County","oh":0,"pop":32426,"poverty":15.97,"state":"GA","unemp":2.73},"13125":{"home":67.57,"income":54934,"name":"Glascock County","oh":0,"pop":2932,"poverty":12.56,"state":"GA","unemp":1.57},"13127":{"home":66.67,"income":69799,"name":"Glynn County","oh":1,"pop":85447,"poverty":16.06,"state":"GA","unemp":3.73},"13129":{"home":73.9,"income":63650,"name":"Gordon County","oh":0,"pop":59100,"poverty":11.96,"state":"GA","unemp":3.66},"13131":{"home":66.11,"income":58980,"name":"Grady County","oh":0,"pop":26108,"poverty":20.3,"state":"GA","unemp":3.71},"13133":{"home":77.95,"income":86272,"name":"Greene County","oh":0,"pop":20109,"poverty":9.8,"state":"GA","unemp":3.43},"13135":{"home":66.27,"income":87890,"name":"Gwinnett County","oh":5,"pop":979864,"poverty":10.82,"state":"GA","unemp":4.21},"13137":{"home":72.8,"income":67309,"name":"Habersham County","oh":0,"pop":47793,"poverty":14.08,"state":"GA","unemp":2.7},"13139":{"home":68.55,"income":80901,"name":"Hall County","oh":1,"pop":212705,"poverty":11.8,"state":"GA","unemp":3.48},"13141":{"home":79.26,"income":40082,"name":"Hancock County","oh":0,"pop":8650,"poverty":30.64,"state":"GA","unemp":6.32},"13143":{"home":71.61,"income":72127,"name":"Haralson County","oh":0,"pop":31285,"poverty":15.35,"state":"GA","unemp":4.45},"13145":{"home":88.82,"income":97302,"name":"Harris County","oh":1,"pop":36086,"poverty":8.98,"state":"GA","unemp":5.9},"13147":{"home":77.77,"income":59385,"name":"Hart County","oh":0,"pop":26939,"poverty":11.85,"state":"GA","unemp":3.41},"13149":{"home":72.29,"income":65868,"name":"Heard County","oh":0,"pop":11773,"poverty":17.92,"state":"GA","unemp":4.28},"13151":{"home":74.86,"income":83146,"name":"Henry County","oh":2,"pop":249960,"poverty":9.21,"state":"GA","unemp":6.2},"13153":{"home":66.93,"income":80698,"name":"Houston County","oh":1,"pop":169649,"poverty":11.06,"state":"GA","unemp":5.1},"13155":{"home":70.44,"income":51384,"name":"Irwin County","oh":0,"pop":9285,"poverty":22.42,"state":"GA","unemp":4.03},"13157":{"home":79.33,"income":89544,"name":"Jackson County","oh":0,"pop":84757,"poverty":7.31,"state":"GA","unemp":3.4},"13159":{"home":85.6,"income":60134,"name":"Jasper County","oh":0,"pop":15929,"poverty":15.97,"state":"GA","unemp":7.2},"13161":{"home":71.32,"income":40283,"name":"Jeff Davis County","oh":0,"pop":14924,"poverty":21.82,"state":"GA","unemp":6.7},"13163":{"home":68.14,"income":53014,"name":"Jefferson County","oh":0,"pop":15341,"poverty":16.93,"state":"GA","unemp":5.82},"13165":{"home":82.25,"income":44389,"name":"Jenkins County","oh":0,"pop":8711,"poverty":22.85,"state":"GA","unemp":3.86},"13167":{"home":75.94,"income":51028,"name":"Johnson County","oh":0,"pop":9190,"poverty":24.24,"state":"GA","unemp":7.44},"13169":{"home":83.56,"income":75500,"name":"Jones County","oh":0,"pop":28673,"poverty":12.06,"state":"GA","unemp":3.82},"13171":{"home":75.66,"income":67062,"name":"Lamar County","oh":0,"pop":19571,"poverty":9.59,"state":"GA","unemp":4.05},"13173":{"home":73.21,"income":47186,"name":"Lanier County","oh":0,"pop":10221,"poverty":26.15,"state":"GA","unemp":3.99},"13175":{"home":64.27,"income":55010,"name":"Laurens County","oh":0,"pop":49798,"poverty":22.61,"state":"GA","unemp":5.17},"13177":{"home":74.16,"income":89168,"name":"Lee County","oh":0,"pop":33626,"poverty":5.67,"state":"GA","unemp":3.26},"13179":{"home":50.86,"income":60456,"name":"Liberty County","oh":1,"pop":67397,"poverty":15.32,"state":"GA","unemp":7.94},"13181":{"home":76.58,"income":56907,"name":"Lincoln County","oh":0,"pop":7854,"poverty":17.01,"state":"GA","unemp":2.84},"13183":{"home":65.19,"income":68808,"name":"Long County","oh":0,"pop":18374,"poverty":17.35,"state":"GA","unemp":6.8},"13185":{"home":56.87,"income":58541,"name":"Lowndes County","oh":1,"pop":119965,"poverty":19.18,"state":"GA","unemp":5.09},"13187":{"home":76.34,"income":77448,"name":"Lumpkin County","oh":0,"pop":34505,"poverty":14.15,"state":"GA","unemp":5.71},"13189":{"home":65.03,"income":56733,"name":"McDuffie County","oh":0,"pop":21718,"poverty":20.32,"state":"GA","unemp":1.95},"13191":{"home":80.03,"income":50273,"name":"McIntosh County","oh":0,"pop":11312,"poverty":22.99,"state":"GA","unemp":3.17},"13193":{"home":65.38,"income":41031,"name":"Macon County","oh":0,"pop":11864,"poverty":25.1,"state":"GA","unemp":7.16},"13195":{"home":76.93,"income":61963,"name":"Madison County","oh":0,"pop":31528,"poverty":17.24,"state":"GA","unemp":3.92},"13197":{"home":78.86,"income":51667,"name":"Marion County","oh":0,"pop":7509,"poverty":20.92,"state":"GA","unemp":4.85},"13199":{"home":73.02,"income":57340,"name":"Meriwether County","oh":0,"pop":20929,"poverty":18.93,"state":"GA","unemp":6.59},"13201":{"home":70.46,"income":51425,"name":"Miller County","oh":0,"pop":5850,"poverty":23.77,"state":"GA","unemp":3.91},"13205":{"home":65.17,"income":57613,"name":"Mitchell County","oh":0,"pop":21058,"poverty":23.44,"state":"GA","unemp":5.95},"13207":{"home":83.77,"income":83183,"name":"Monroe County","oh":0,"pop":29664,"poverty":12.32,"state":"GA","unemp":2.69},"13209":{"home":76.2,"income":51941,"name":"Montgomery County","oh":0,"pop":8640,"poverty":20.56,"state":"GA","unemp":7.52},"13211":{"home":78.23,"income":78111,"name":"Morgan County","oh":0,"pop":21078,"poverty":8.83,"state":"GA","unemp":2.45},"13213":{"home":73.83,"income":69253,"name":"Murray County","oh":0,"pop":40562,"poverty":14.4,"state":"GA","unemp":4.54},"13215":{"home":50.84,"income":58073,"name":"Muscogee County","oh":1,"pop":203711,"poverty":19.05,"state":"GA","unemp":6.26},"13217":{"home":73.77,"income":77179,"name":"Newton County","oh":0,"pop":118152,"poverty":12.29,"state":"GA","unemp":6.64},"13219":{"home":81.27,"income":121217,"name":"Oconee County","oh":0,"pop":43551,"poverty":6.21,"state":"GA","unemp":3.0},"13221":{"home":83.83,"income":75034,"name":"Oglethorpe County","oh":0,"pop":15509,"poverty":11.6,"state":"GA","unemp":3.06},"13223":{"home":80.77,"income":98031,"name":"Paulding County","oh":0,"pop":178909,"poverty":6.65,"state":"GA","unemp":4.51},"13225":{"home":69.56,"income":71293,"name":"Peach County","oh":0,"pop":28560,"poverty":17.34,"state":"GA","unemp":6.62},"13227":{"home":81.21,"income":78930,"name":"Pickens County","oh":0,"pop":34951,"poverty":11.96,"state":"GA","unemp":3.02},"13229":{"home":76.46,"income":60517,"name":"Pierce County","oh":0,"pop":20202,"poverty":13.83,"state":"GA","unemp":2.58},"13231":{"home":84.65,"income":86719,"name":"Pike County","oh":0,"pop":19903,"poverty":9.25,"state":"GA","unemp":3.39},"13233":{"home":66.03,"income":58515,"name":"Polk County","oh":0,"pop":43785,"poverty":16.35,"state":"GA","unemp":5.9},"13235":{"home":70.77,"income":50406,"name":"Pulaski County","oh":0,"pop":9939,"poverty":16.54,"state":"GA","unemp":3.17},"13237":{"home":80.92,"income":72096,"name":"Putnam County","oh":1,"pop":22855,"poverty":17.65,"state":"GA","unemp":3.72},"13239":{"home":84.25,"income":40179,"name":"Quitman County","oh":0,"pop":2264,"poverty":15.68,"state":"GA","unemp":28.63},"13241":{"home":77.12,"income":67493,"name":"Rabun County","oh":0,"pop":17312,"poverty":13.13,"state":"GA","unemp":1.33},"13243":{"home":51.53,"income":28380,"name":"Randolph County","oh":0,"pop":6196,"poverty":30.04,"state":"GA","unemp":10.94},"13245":{"home":51.22,"income":55637,"name":"Richmond County","oh":0,"pop":206069,"poverty":20.03,"state":"GA","unemp":8.53},"13247":{"home":69.59,"income":77247,"name":"Rockdale County","oh":0,"pop":95281,"poverty":10.76,"state":"GA","unemp":5.89},"13249":{"home":80.05,"income":56875,"name":"Schley County","oh":0,"pop":4513,"poverty":13.89,"state":"GA","unemp":7.61},"13251":{"home":69.85,"income":52792,"name":"Screven County","oh":0,"pop":14130,"poverty":17.18,"state":"GA","unemp":4.61},"13253":{"home":80.2,"income":49495,"name":"Seminole County","oh":0,"pop":9156,"poverty":20.11,"state":"GA","unemp":5.97},"13255":{"home":62.75,"income":62071,"name":"Spalding County","oh":1,"pop":68892,"poverty":18.94,"state":"GA","unemp":7.3},"13257":{"home":73.62,"income":54754,"name":"Stephens County","oh":0,"pop":27012,"poverty":15.75,"state":"GA","unemp":5.36},"13259":{"home":58.95,"income":33250,"name":"Stewart County","oh":0,"pop":4869,"poverty":26.43,"state":"GA","unemp":5.49},"13261":{"home":56.62,"income":42653,"name":"Sumter County","oh":0,"pop":29061,"poverty":23.75,"state":"GA","unemp":4.71},"13263":{"home":79.56,"income":41597,"name":"Talbot County","oh":0,"pop":5742,"poverty":25.23,"state":"GA","unemp":3.3},"13265":{"home":82.14,"income":52500,"name":"Taliaferro County","oh":0,"pop":1558,"poverty":20.36,"state":"GA","unemp":4.95},"13267":{"home":71.02,"income":50747,"name":"Tattnall County","oh":0,"pop":24208,"poverty":23.35,"state":"GA","unemp":6.68},"13269":{"home":62.88,"income":41788,"name":"Taylor County","oh":0,"pop":7786,"poverty":32.06,"state":"GA","unemp":2.55},"13271":{"home":64.94,"income":50929,"name":"Telfair County","oh":0,"pop":11831,"poverty":24.11,"state":"GA","unemp":5.25},"13273":{"home":61.6,"income":46171,"name":"Terrell County","oh":0,"pop":8850,"poverty":33.27,"state":"GA","unemp":4.1},"13275":{"home":63.77,"income":60736,"name":"Thomas County","oh":0,"pop":45777,"poverty":17.95,"state":"GA","unemp":5.63},"13277":{"home":61.04,"income":53255,"name":"Tift County","oh":0,"pop":41438,"poverty":20.8,"state":"GA","unemp":2.82},"13279":{"home":60.51,"income":52621,"name":"Toombs County","oh":0,"pop":27102,"poverty":22.49,"state":"GA","unemp":4.39},"13281":{"home":82.29,"income":59135,"name":"Towns County","oh":0,"pop":12913,"poverty":13.29,"state":"GA","unemp":4.64},"13283":{"home":65.33,"income":55518,"name":"Treutlen County","oh":0,"pop":6376,"poverty":13.79,"state":"GA","unemp":7.73},"13285":{"home":60.58,"income":56776,"name":"Troup County","oh":1,"pop":70330,"poverty":16.9,"state":"GA","unemp":5.3},"13287":{"home":63.79,"income":36799,"name":"Turner County","oh":0,"pop":8939,"poverty":20.27,"state":"GA","unemp":12.21},"13289":{"home":88.16,"income":56324,"name":"Twiggs County","oh":0,"pop":7803,"poverty":18.17,"state":"GA","unemp":3.76},"13291":{"home":84.4,"income":66176,"name":"Union County","oh":0,"pop":26304,"poverty":10.89,"state":"GA","unemp":2.64},"13293":{"home":60.99,"income":55429,"name":"Upson County","oh":0,"pop":28029,"poverty":19.33,"state":"GA","unemp":3.89},"13295":{"home":77.17,"income":59469,"name":"Walker County","oh":0,"pop":68762,"poverty":13.29,"state":"GA","unemp":3.86},"13297":{"home":79.27,"income":84945,"name":"Walton County","oh":1,"pop":103313,"poverty":11.93,"state":"GA","unemp":5.33},"13299":{"home":63.07,"income":47448,"name":"Ware County","oh":0,"pop":35976,"poverty":21.53,"state":"GA","unemp":5.87},"13301":{"home":72.2,"income":44289,"name":"Warren County","oh":1,"pop":5170,"poverty":21.45,"state":"GA","unemp":10.02},"13303":{"home":64.5,"income":46023,"name":"Washington County","oh":0,"pop":19849,"poverty":17.17,"state":"GA","unemp":8.0},"13305":{"home":67.33,"income":53427,"name":"Wayne County","oh":0,"pop":30949,"poverty":21.3,"state":"GA","unemp":7.19},"13307":{"home":76.99,"income":46792,"name":"Webster County","oh":0,"pop":2381,"poverty":22.32,"state":"GA","unemp":4.16},"13309":{"home":65.57,"income":40539,"name":"Wheeler County","oh":0,"pop":7335,"poverty":32.73,"state":"GA","unemp":5.04},"13311":{"home":78.82,"income":70666,"name":"White County","oh":0,"pop":28810,"poverty":12.4,"state":"GA","unemp":3.78},"13313":{"home":67.0,"income":67070,"name":"Whitfield County","oh":1,"pop":103598,"poverty":14.84,"state":"GA","unemp":5.19},"13315":{"home":74.67,"income":54138,"name":"Wilcox County","oh":0,"pop":8798,"poverty":21.9,"state":"GA","unemp":5.54},"13317":{"home":66.08,"income":52043,"name":"Wilkes County","oh":0,"pop":9549,"poverty":17.81,"state":"GA","unemp":1.55},"13319":{"home":80.51,"income":45465,"name":"Wilkinson County","oh":0,"pop":8747,"poverty":21.6,"state":"GA","unemp":4.81},"13321":{"home":73.7,"income":58694,"name":"Worth County","oh":0,"pop":20451,"poverty":24.04,"state":"GA","unemp":6.9},"15001":{"home":73.98,"income":78639,"name":"Hawaii County","oh":0,"pop":205769,"poverty":14.94,"state":"HI","unemp":6.0},"15003":{"home":59.79,"income":106195,"name":"Honolulu County","oh":1,"pop":1001146,"poverty":9.23,"state":"HI","unemp":4.69},"15005":{"home":0.0,"income":73750,"name":"Kalawao County","oh":0,"pop":67,"poverty":22.73,"state":"HI","unemp":0.0},"15007":{"home":68.59,"income":97668,"name":"Kauai County","oh":0,"pop":73731,"poverty":9.09,"state":"HI","unemp":3.85},"15009":{"home":65.61,"income":97161,"name":"Maui County","oh":0,"pop":164522,"poverty":9.17,"state":"HI","unemp":5.49},"16001":{"home":70.8,"income":91502,"name":"Ada County","oh":2,"pop":518935,"poverty":8.34,"state":"ID","unemp":3.14},"16003":{"home":84.74,"income":61808,"name":"Adams County","oh":0,"pop":4744,"poverty":17.92,"state":"ID","unemp":7.45},"16005":{"home":69.52,"income":66499,"name":"Bannock County","oh":1,"pop":89454,"poverty":12.3,"state":"ID","unemp":4.33},"16007":{"home":89.51,"income":75260,"name":"Bear Lake County","oh":0,"pop":6650,"poverty":7.02,"state":"ID","unemp":2.62},"16009":{"home":73.18,"income":59794,"name":"Benewah County","oh":0,"pop":10142,"poverty":12.89,"state":"ID","unemp":3.7},"16011":{"home":80.5,"income":77878,"name":"Bingham County","oh":0,"pop":49664,"poverty":11.71,"state":"ID","unemp":5.44},"16013":{"home":73.54,"income":92566,"name":"Blaine County","oh":0,"pop":24951,"poverty":6.64,"state":"ID","unemp":2.06},"16015":{"home":90.29,"income":78774,"name":"Boise County","oh":0,"pop":8273,"poverty":7.72,"state":"ID","unemp":3.4},"16017":{"home":78.28,"income":66979,"name":"Bonner County","oh":0,"pop":51049,"poverty":11.12,"state":"ID","unemp":4.82},"16019":{"home":71.74,"income":79068,"name":"Bonneville County","oh":0,"pop":129523,"poverty":9.77,"state":"ID","unemp":4.57},"16021":{"home":75.29,"income":67237,"name":"Boundary County","oh":0,"pop":13172,"poverty":13.65,"state":"ID","unemp":2.59},"16023":{"home":77.54,"income":53015,"name":"Butte County","oh":0,"pop":2684,"poverty":19.25,"state":"ID","unemp":4.37},"16025":{"home":80.0,"income":57955,"name":"Camas County","oh":0,"pop":1124,"poverty":5.87,"state":"ID","unemp":0.0},"16027":{"home":75.54,"income":76488,"name":"Canyon County","oh":1,"pop":250790,"poverty":10.51,"state":"ID","unemp":3.66},"16029":{"home":81.65,"income":68782,"name":"Caribou County","oh":0,"pop":7162,"poverty":9.21,"state":"ID","unemp":1.91},"16031":{"home":68.63,"income":70830,"name":"Cassia County","oh":0,"pop":25483,"poverty":12.41,"state":"ID","unemp":2.41},"16033":{"home":61.29,"income":55208,"name":"Clark County","oh":0,"pop":849,"poverty":11.74,"state":"ID","unemp":2.08},"16035":{"home":82.87,"income":60000,"name":"Clearwater County","oh":0,"pop":9012,"poverty":13.23,"state":"ID","unemp":4.51},"16037":{"home":76.79,"income":67574,"name":"Custer County","oh":0,"pop":4470,"poverty":15.78,"state":"ID","unemp":2.04},"16039":{"home":65.59,"income":65359,"name":"Elmore County","oh":0,"pop":29321,"poverty":10.49,"state":"ID","unemp":6.05},"16041":{"home":78.14,"income":71950,"name":"Franklin County","oh":0,"pop":15056,"poverty":7.88,"state":"ID","unemp":2.4},"16043":{"home":82.64,"income":72683,"name":"Fremont County","oh":0,"pop":13943,"poverty":10.07,"state":"ID","unemp":3.86},"16045":{"home":76.03,"income":64605,"name":"Gem County","oh":0,"pop":20614,"poverty":11.98,"state":"ID","unemp":2.95},"16047":{"home":70.83,"income":63559,"name":"Gooding County","oh":0,"pop":15931,"poverty":13.0,"state":"ID","unemp":3.84},"16049":{"home":80.93,"income":66325,"name":"Idaho County","oh":0,"pop":17432,"poverty":11.11,"state":"ID","unemp":3.69},"16051":{"home":83.03,"income":86679,"name":"Jefferson County","oh":0,"pop":33154,"poverty":9.68,"state":"ID","unemp":2.69},"16053":{"home":75.24,"income":71724,"name":"Jerome County","oh":0,"pop":25173,"poverty":12.59,"state":"ID","unemp":3.62},"16055":{"home":71.28,"income":81861,"name":"Kootenai County","oh":0,"pop":181996,"poverty":9.04,"state":"ID","unemp":3.27},"16057":{"home":58.69,"income":65424,"name":"Latah County","oh":0,"pop":41049,"poverty":17.64,"state":"ID","unemp":6.77},"16059":{"home":79.27,"income":53202,"name":"Lemhi County","oh":0,"pop":8249,"poverty":12.84,"state":"ID","unemp":2.03},"16061":{"home":76.43,"income":51615,"name":"Lewis County","oh":0,"pop":3682,"poverty":15.31,"state":"ID","unemp":2.42},"16063":{"home":78.9,"income":71453,"name":"Lincoln County","oh":0,"pop":5358,"poverty":10.47,"state":"ID","unemp":4.92},"16065":{"home":40.24,"income":60160,"name":"Madison County","oh":0,"pop":54618,"poverty":24.48,"state":"ID","unemp":8.27},"16067":{"home":69.17,"income":70377,"name":"Minidoka County","oh":0,"pop":22208,"poverty":14.54,"state":"ID","unemp":3.43},"16069":{"home":70.43,"income":72599,"name":"Nez Perce County","oh":0,"pop":42697,"poverty":12.25,"state":"ID","unemp":2.59},"16071":{"home":88.29,"income":74954,"name":"Oneida County","oh":0,"pop":4768,"poverty":10.81,"state":"ID","unemp":1.45},"16073":{"home":72.62,"income":64406,"name":"Owyhee County","oh":0,"pop":12503,"poverty":12.24,"state":"ID","unemp":2.05},"16075":{"home":74.5,"income":67673,"name":"Payette County","oh":0,"pop":26771,"poverty":10.19,"state":"ID","unemp":3.2},"16077":{"home":73.68,"income":61146,"name":"Power County","oh":0,"pop":8133,"poverty":9.47,"state":"ID","unemp":5.62},"16079":{"home":73.99,"income":55527,"name":"Shoshone County","oh":1,"pop":13785,"poverty":13.08,"state":"ID","unemp":5.27},"16081":{"home":80.82,"income":99805,"name":"Teton County","oh":0,"pop":12425,"poverty":9.12,"state":"ID","unemp":1.21},"16083":{"home":70.46,"income":67409,"name":"Twin Falls County","oh":1,"pop":93734,"poverty":11.48,"state":"ID","unemp":3.04},"16085":{"home":81.89,"income":76078,"name":"Valley County","oh":0,"pop":12389,"poverty":11.69,"state":"ID","unemp":4.77},"16087":{"home":74.58,"income":54000,"name":"Washington County","oh":1,"pop":11142,"poverty":15.28,"state":"ID","unemp":5.24},"17001":{"home":72.14,"income":66220,"name":"Adams County","oh":0,"pop":64754,"poverty":12.84,"state":"IL","unemp":3.88},"17003":{"home":77.57,"income":47043,"name":"Alexander County","oh":0,"pop":4875,"poverty":19.02,"state":"IL","unemp":6.48},"17005":{"home":76.61,"income":65959,"name":"Bond County","oh":0,"pop":16716,"poverty":10.88,"state":"IL","unemp":4.54},"17007":{"home":81.78,"income":84571,"name":"Boone County","oh":1,"pop":53230,"poverty":9.93,"state":"IL","unemp":7.36},"17009":{"home":71.78,"income":67917,"name":"Brown County","oh":0,"pop":6322,"poverty":9.25,"state":"IL","unemp":3.06},"17011":{"home":76.06,"income":69257,"name":"Bureau County","oh":1,"pop":32866,"poverty":10.76,"state":"IL","unemp":4.26},"17013":{"home":88.7,"income":93203,"name":"Calhoun County","oh":0,"pop":4330,"poverty":6.31,"state":"IL","unemp":3.24},"17015":{"home":77.18,"income":60758,"name":"Carroll County","oh":0,"pop":15576,"poverty":14.2,"state":"IL","unemp":3.07},"17017":{"home":75.94,"income":68125,"name":"Cass County","oh":0,"pop":12784,"poverty":11.09,"state":"IL","unemp":4.21},"17019":{"home":54.02,"income":63683,"name":"Champaign County","oh":0,"pop":208741,"poverty":19.07,"state":"IL","unemp":4.3},"17021":{"home":75.2,"income":62611,"name":"Christian County","oh":0,"pop":33538,"poverty":10.19,"state":"IL","unemp":4.57},"17023":{"home":80.29,"income":72927,"name":"Clark County","oh":0,"pop":15266,"poverty":9.15,"state":"IL","unemp":3.72},"17025":{"home":79.29,"income":60417,"name":"Clay County","oh":0,"pop":13052,"poverty":17.51,"state":"IL","unemp":4.84},"17027":{"home":80.29,"income":86588,"name":"Clinton County","oh":0,"pop":36954,"poverty":7.37,"state":"IL","unemp":3.42},"17029":{"home":60.38,"income":56478,"name":"Coles County","oh":0,"pop":46777,"poverty":18.7,"state":"IL","unemp":6.12},"17031":{"home":57.74,"income":83498,"name":"Cook County","oh":1,"pop":5182090,"poverty":13.49,"state":"IL","unemp":7.01},"17033":{"home":81.94,"income":71674,"name":"Crawford County","oh":0,"pop":18511,"poverty":12.09,"state":"IL","unemp":3.01},"17035":{"home":84.15,"income":73327,"name":"Cumberland County","oh":0,"pop":10334,"poverty":9.09,"state":"IL","unemp":1.35},"17037":{"home":61.39,"income":70724,"name":"DeKalb County","oh":0,"pop":100703,"poverty":14.8,"state":"IL","unemp":6.8},"17039":{"home":78.53,"income":71678,"name":"De Witt County","oh":0,"pop":15373,"poverty":9.97,"state":"IL","unemp":3.97},"17041":{"home":76.9,"income":77320,"name":"Douglas County","oh":0,"pop":19751,"poverty":8.47,"state":"IL","unemp":2.53},"17043":{"home":73.12,"income":112096,"name":"DuPage County","oh":1,"pop":930024,"poverty":6.56,"state":"IL","unemp":4.93},"17045":{"home":72.67,"income":59941,"name":"Edgar County","oh":0,"pop":16535,"poverty":12.0,"state":"IL","unemp":4.37},"17047":{"home":79.33,"income":60519,"name":"Edwards County","oh":0,"pop":6075,"poverty":16.49,"state":"IL","unemp":5.57},"17049":{"home":78.25,"income":80404,"name":"Effingham County","oh":0,"pop":34522,"poverty":10.11,"state":"IL","unemp":2.08},"17051":{"home":80.61,"income":60944,"name":"Fayette County","oh":0,"pop":21315,"poverty":15.47,"state":"IL","unemp":3.77},"17053":{"home":72.29,"income":62439,"name":"Ford County","oh":0,"pop":13406,"poverty":12.42,"state":"IL","unemp":5.46},"17055":{"home":74.13,"income":56740,"name":"Franklin County","oh":0,"pop":37323,"poverty":17.51,"state":"IL","unemp":7.66},"17057":{"home":76.59,"income":60599,"name":"Fulton County","oh":0,"pop":33020,"poverty":13.16,"state":"IL","unemp":6.69},"17059":{"home":77.41,"income":59219,"name":"Gallatin County","oh":0,"pop":4819,"poverty":13.58,"state":"IL","unemp":9.16},"17061":{"home":78.23,"income":62192,"name":"Greene County","oh":0,"pop":11683,"poverty":14.26,"state":"IL","unemp":4.86},"17063":{"home":74.38,"income":92235,"name":"Grundy County","oh":0,"pop":53219,"poverty":5.99,"state":"IL","unemp":4.58},"17065":{"home":76.38,"income":65746,"name":"Hamilton County","oh":0,"pop":7916,"poverty":12.08,"state":"IL","unemp":5.13},"17067":{"home":81.32,"income":65865,"name":"Hancock County","oh":0,"pop":17281,"poverty":12.27,"state":"IL","unemp":4.23},"17069":{"home":79.55,"income":54271,"name":"Hardin County","oh":0,"pop":3605,"poverty":10.96,"state":"IL","unemp":2.76},"17071":{"home":81.1,"income":62227,"name":"Henderson County","oh":0,"pop":6193,"poverty":13.94,"state":"IL","unemp":7.8},"17073":{"home":79.95,"income":71911,"name":"Henry County","oh":0,"pop":48643,"poverty":8.91,"state":"IL","unemp":4.83},"17075":{"home":80.0,"income":66255,"name":"Iroquois County","oh":0,"pop":26449,"poverty":12.5,"state":"IL","unemp":4.47},"17077":{"home":49.98,"income":48763,"name":"Jackson County","oh":0,"pop":53064,"poverty":20.99,"state":"IL","unemp":7.47},"17079":{"home":85.2,"income":74755,"name":"Jasper County","oh":0,"pop":9180,"poverty":11.06,"state":"IL","unemp":4.18},"17081":{"home":71.68,"income":63118,"name":"Jefferson County","oh":0,"pop":36550,"poverty":13.53,"state":"IL","unemp":5.78},"17083":{"home":80.54,"income":80361,"name":"Jersey County","oh":0,"pop":21274,"poverty":8.83,"state":"IL","unemp":3.4},"17085":{"home":80.38,"income":73993,"name":"Jo Daviess County","oh":0,"pop":21851,"poverty":7.84,"state":"IL","unemp":3.59},"17087":{"home":81.98,"income":62528,"name":"Johnson County","oh":0,"pop":13376,"poverty":17.58,"state":"IL","unemp":3.48},"17089":{"home":75.96,"income":103163,"name":"Kane County","oh":2,"pop":517255,"poverty":7.91,"state":"IL","unemp":4.79},"17091":{"home":69.86,"income":71281,"name":"Kankakee County","oh":0,"pop":106635,"poverty":12.2,"state":"IL","unemp":4.94},"17093":{"home":84.03,"income":111601,"name":"Kendall County","oh":0,"pop":137675,"poverty":5.42,"state":"IL","unemp":4.34},"17095":{"home":70.82,"income":57030,"name":"Knox County","oh":0,"pop":49046,"poverty":14.57,"state":"IL","unemp":5.1},"17097":{"home":74.83,"income":110416,"name":"Lake County","oh":2,"pop":714223,"poverty":8.34,"state":"IL","unemp":5.19},"17099":{"home":74.45,"income":73045,"name":"LaSalle County","oh":1,"pop":108714,"poverty":13.91,"state":"IL","unemp":5.35},"17101":{"home":71.84,"income":55324,"name":"Lawrence County","oh":0,"pop":15031,"poverty":14.49,"state":"IL","unemp":8.1},"17103":{"home":73.64,"income":70292,"name":"Lee County","oh":0,"pop":33869,"poverty":11.82,"state":"IL","unemp":5.21},"17105":{"home":74.31,"income":73790,"name":"Livingston County","oh":0,"pop":35565,"poverty":10.52,"state":"IL","unemp":3.46},"17107":{"home":68.49,"income":66358,"name":"Logan County","oh":0,"pop":27713,"poverty":13.13,"state":"IL","unemp":3.98},"17109":{"home":63.45,"income":52795,"name":"McDonough County","oh":0,"pop":26920,"poverty":17.2,"state":"IL","unemp":7.87},"17111":{"home":82.71,"income":104802,"name":"McHenry County","oh":0,"pop":312591,"poverty":6.23,"state":"IL","unemp":4.69},"17113":{"home":65.09,"income":79905,"name":"McLean County","oh":1,"pop":171556,"poverty":12.91,"state":"IL","unemp":3.07},"17115":{"home":70.15,"income":62666,"name":"Macon County","oh":1,"pop":101849,"poverty":14.99,"state":"IL","unemp":6.77},"17117":{"home":78.49,"income":70805,"name":"Macoupin County","oh":0,"pop":44350,"poverty":13.06,"state":"IL","unemp":3.67},"17119":{"home":74.2,"income":75793,"name":"Madison County","oh":0,"pop":264238,"poverty":11.06,"state":"IL","unemp":4.59},"17121":{"home":74.65,"income":61240,"name":"Marion County","oh":0,"pop":37000,"poverty":15.37,"state":"IL","unemp":5.87},"17123":{"home":79.23,"income":71585,"name":"Marshall County","oh":0,"pop":11647,"poverty":11.43,"state":"IL","unemp":3.82},"17125":{"home":81.82,"income":62845,"name":"Mason County","oh":0,"pop":12745,"poverty":14.83,"state":"IL","unemp":4.86},"17127":{"home":76.36,"income":65116,"name":"Massac County","oh":0,"pop":13865,"poverty":16.27,"state":"IL","unemp":3.85},"17129":{"home":79.46,"income":82176,"name":"Menard County","oh":0,"pop":12095,"poverty":10.12,"state":"IL","unemp":3.52},"17131":{"home":83.76,"income":74182,"name":"Mercer County","oh":0,"pop":15495,"poverty":8.92,"state":"IL","unemp":3.15},"17133":{"home":84.66,"income":102880,"name":"Monroe County","oh":0,"pop":35036,"poverty":5.02,"state":"IL","unemp":1.92},"17135":{"home":77.37,"income":63620,"name":"Montgomery County","oh":1,"pop":27942,"poverty":12.6,"state":"IL","unemp":4.73},"17137":{"home":72.75,"income":66306,"name":"Morgan County","oh":0,"pop":33021,"poverty":13.42,"state":"IL","unemp":5.38},"17139":{"home":75.98,"income":71784,"name":"Moultrie County","oh":0,"pop":14424,"poverty":9.16,"state":"IL","unemp":2.19},"17141":{"home":75.37,"income":82132,"name":"Ogle County","oh":0,"pop":51495,"poverty":8.36,"state":"IL","unemp":5.04},"17143":{"home":67.0,"income":65108,"name":"Peoria County","oh":1,"pop":179645,"poverty":15.67,"state":"IL","unemp":6.17},"17145":{"home":80.94,"income":62118,"name":"Perry County","oh":0,"pop":20639,"poverty":16.94,"state":"IL","unemp":4.56},"17147":{"home":84.85,"income":94811,"name":"Piatt County","oh":0,"pop":16695,"poverty":6.14,"state":"IL","unemp":2.78},"17149":{"home":77.65,"income":59777,"name":"Pike County","oh":0,"pop":14469,"poverty":14.85,"state":"IL","unemp":3.94},"17151":{"home":86.28,"income":60050,"name":"Pope County","oh":0,"pop":3739,"poverty":13.31,"state":"IL","unemp":2.79},"17153":{"home":68.25,"income":42463,"name":"Pulaski County","oh":0,"pop":5015,"poverty":24.98,"state":"IL","unemp":4.28},"17155":{"home":81.46,"income":75590,"name":"Putnam County","oh":0,"pop":5601,"poverty":8.09,"state":"IL","unemp":4.17},"17157":{"home":76.58,"income":68131,"name":"Randolph County","oh":0,"pop":30058,"poverty":14.63,"state":"IL","unemp":5.04},"17159":{"home":73.75,"income":62455,"name":"Richland County","oh":0,"pop":15598,"poverty":12.08,"state":"IL","unemp":3.12},"17161":{"home":69.66,"income":67159,"name":"Rock Island County","oh":0,"pop":142757,"poverty":15.5,"state":"IL","unemp":5.6},"17163":{"home":68.44,"income":73854,"name":"St. Clair County","oh":0,"pop":253694,"poverty":13.58,"state":"IL","unemp":5.96},"17165":{"home":72.55,"income":53117,"name":"Saline County","oh":0,"pop":23213,"poverty":18.94,"state":"IL","unemp":7.73},"17167":{"home":71.31,"income":75357,"name":"Sangamon County","oh":1,"pop":194947,"poverty":13.11,"state":"IL","unemp":5.43},"17169":{"home":79.44,"income":65948,"name":"Schuyler County","oh":0,"pop":6787,"poverty":20.77,"state":"IL","unemp":4.95},"17171":{"home":78.98,"income":66705,"name":"Scott County","oh":0,"pop":4937,"poverty":11.46,"state":"IL","unemp":2.72},"17173":{"home":78.44,"income":72095,"name":"Shelby County","oh":0,"pop":20720,"poverty":9.15,"state":"IL","unemp":3.02},"17175":{"home":80.13,"income":62878,"name":"Stark County","oh":0,"pop":5308,"poverty":11.05,"state":"IL","unemp":2.33},"17177":{"home":70.91,"income":64043,"name":"Stephenson County","oh":0,"pop":43768,"poverty":13.93,"state":"IL","unemp":4.35},"17179":{"home":78.35,"income":77982,"name":"Tazewell County","oh":1,"pop":130290,"poverty":9.02,"state":"IL","unemp":3.58},"17181":{"home":77.45,"income":55728,"name":"Union County","oh":0,"pop":16997,"poverty":20.22,"state":"IL","unemp":3.94},"17183":{"home":70.23,"income":56877,"name":"Vermilion County","oh":0,"pop":72386,"poverty":17.67,"state":"IL","unemp":6.14},"17185":{"home":76.33,"income":57086,"name":"Wabash County","oh":0,"pop":11119,"poverty":16.69,"state":"IL","unemp":4.37},"17187":{"home":75.16,"income":67385,"name":"Warren County","oh":0,"pop":16447,"poverty":14.63,"state":"IL","unemp":3.59},"17189":{"home":84.11,"income":78224,"name":"Washington County","oh":0,"pop":13627,"poverty":7.53,"state":"IL","unemp":4.35},"17191":{"home":78.39,"income":55521,"name":"Wayne County","oh":0,"pop":15973,"poverty":16.12,"state":"IL","unemp":3.42},"17193":{"home":77.08,"income":54813,"name":"White County","oh":0,"pop":13619,"poverty":16.37,"state":"IL","unemp":3.96},"17195":{"home":76.93,"income":67500,"name":"Whiteside County","oh":0,"pop":54947,"poverty":11.98,"state":"IL","unemp":4.35},"17197":{"home":82.76,"income":109984,"name":"Will County","oh":1,"pop":701462,"poverty":7.33,"state":"IL","unemp":4.93},"17199":{"home":70.65,"income":65604,"name":"Williamson County","oh":0,"pop":66876,"poverty":13.75,"state":"IL","unemp":5.01},"17201":{"home":65.86,"income":65837,"name":"Winnebago County","oh":2,"pop":283292,"poverty":15.62,"state":"IL","unemp":7.26},"17203":{"home":85.66,"income":91483,"name":"Woodford County","oh":0,"pop":38312,"poverty":7.03,"state":"IL","unemp":3.51},"18001":{"home":83.45,"income":65289,"name":"Adams County","oh":0,"pop":36227,"poverty":11.16,"state":"IN","unemp":2.8},"18003":{"home":68.87,"income":70737,"name":"Allen County","oh":1,"pop":392378,"poverty":12.51,"state":"IN","unemp":4.69},"18005":{"home":69.32,"income":79901,"name":"Bartholomew County","oh":0,"pop":83536,"poverty":10.47,"state":"IN","unemp":4.12},"18007":{"home":79.76,"income":65875,"name":"Benton County","oh":0,"pop":8735,"poverty":13.9,"state":"IN","unemp":3.91},"18009":{"home":73.86,"income":51326,"name":"Blackford County","oh":0,"pop":11950,"poverty":16.18,"state":"IN","unemp":3.71},"18011":{"home":78.78,"income":111250,"name":"Boone County","oh":0,"pop":74718,"poverty":4.51,"state":"IN","unemp":2.78},"18013":{"home":86.61,"income":78528,"name":"Brown County","oh":0,"pop":15606,"poverty":7.78,"state":"IN","unemp":2.15},"18015":{"home":82.19,"income":65645,"name":"Carroll County","oh":0,"pop":20535,"poverty":8.75,"state":"IN","unemp":3.07},"18017":{"home":74.26,"income":56403,"name":"Cass County","oh":0,"pop":37680,"poverty":13.24,"state":"IN","unemp":4.58},"18019":{"home":74.74,"income":74214,"name":"Clark County","oh":0,"pop":124354,"poverty":10.2,"state":"IN","unemp":4.01},"18021":{"home":80.86,"income":70010,"name":"Clay County","oh":0,"pop":26409,"poverty":11.71,"state":"IN","unemp":3.23},"18023":{"home":74.19,"income":65019,"name":"Clinton County","oh":0,"pop":32944,"poverty":9.85,"state":"IN","unemp":2.61},"18025":{"home":81.34,"income":49640,"name":"Crawford County","oh":0,"pop":10499,"poverty":22.89,"state":"IN","unemp":3.49},"18027":{"home":72.39,"income":68503,"name":"Daviess County","oh":0,"pop":33658,"poverty":11.67,"state":"IN","unemp":1.55},"18029":{"home":85.23,"income":84735,"name":"Dearborn County","oh":0,"pop":51094,"poverty":7.64,"state":"IN","unemp":1.93},"18031":{"home":76.09,"income":69783,"name":"Decatur County","oh":0,"pop":26422,"poverty":10.2,"state":"IN","unemp":2.65},"18033":{"home":82.06,"income":74331,"name":"DeKalb County","oh":0,"pop":43807,"poverty":9.52,"state":"IN","unemp":4.52},"18035":{"home":66.48,"income":58127,"name":"Delaware County","oh":0,"pop":112280,"poverty":19.65,"state":"IN","unemp":5.77},"18037":{"home":74.72,"income":75979,"name":"Dubois County","oh":0,"pop":43614,"poverty":11.02,"state":"IN","unemp":2.28},"18039":{"home":71.57,"income":68561,"name":"Elkhart County","oh":0,"pop":207132,"poverty":12.4,"state":"IN","unemp":3.6},"18041":{"home":72.09,"income":59321,"name":"Fayette County","oh":0,"pop":23334,"poverty":17.86,"state":"IN","unemp":3.41},"18043":{"home":73.19,"income":79704,"name":"Floyd County","oh":1,"pop":80918,"poverty":10.35,"state":"IN","unemp":4.13},"18045":{"home":74.64,"income":62542,"name":"Fountain County","oh":0,"pop":16617,"poverty":12.37,"state":"IN","unemp":4.74},"18047":{"home":81.52,"income":78074,"name":"Franklin County","oh":0,"pop":23020,"poverty":6.9,"state":"IN","unemp":3.93},"18049":{"home":80.08,"income":61360,"name":"Fulton County","oh":0,"pop":20312,"poverty":15.26,"state":"IN","unemp":6.81},"18051":{"home":76.7,"income":67573,"name":"Gibson County","oh":0,"pop":33000,"poverty":10.79,"state":"IN","unemp":2.33},"18053":{"home":72.72,"income":53522,"name":"Grant County","oh":0,"pop":66295,"poverty":19.83,"state":"IN","unemp":6.27},"18055":{"home":77.0,"income":62094,"name":"Greene County","oh":0,"pop":31021,"poverty":12.75,"state":"IN","unemp":6.04},"18057":{"home":76.08,"income":121530,"name":"Hamilton County","oh":1,"pop":365056,"poverty":4.39,"state":"IN","unemp":2.78},"18059":{"home":79.52,"income":93186,"name":"Hancock County","oh":0,"pop":84037,"poverty":4.74,"state":"IN","unemp":2.73},"18061":{"home":83.64,"income":74475,"name":"Harrison County","oh":0,"pop":39859,"poverty":7.17,"state":"IN","unemp":3.51},"18063":{"home":78.23,"income":101144,"name":"Hendricks County","oh":0,"pop":183344,"poverty":5.33,"state":"IN","unemp":2.56},"18065":{"home":76.19,"income":63150,"name":"Henry County","oh":0,"pop":48970,"poverty":13.63,"state":"IN","unemp":3.72},"18067":{"home":70.57,"income":64027,"name":"Howard County","oh":0,"pop":83752,"poverty":13.41,"state":"IN","unemp":5.83},"18069":{"home":77.39,"income":66301,"name":"Huntington County","oh":0,"pop":36798,"poverty":9.86,"state":"IN","unemp":3.5},"18071":{"home":73.17,"income":70262,"name":"Jackson County","oh":0,"pop":46660,"poverty":12.29,"state":"IN","unemp":2.64},"18073":{"home":83.57,"income":77314,"name":"Jasper County","oh":0,"pop":33234,"poverty":8.39,"state":"IN","unemp":4.89},"18075":{"home":79.92,"income":54969,"name":"Jay County","oh":0,"pop":20229,"poverty":14.38,"state":"IN","unemp":4.41},"18077":{"home":71.84,"income":64577,"name":"Jefferson County","oh":0,"pop":32998,"poverty":12.34,"state":"IN","unemp":4.39},"18079":{"home":78.77,"income":69322,"name":"Jennings County","oh":0,"pop":27562,"poverty":12.6,"state":"IN","unemp":4.6},"18081":{"home":72.73,"income":90454,"name":"Johnson County","oh":0,"pop":166315,"poverty":7.44,"state":"IN","unemp":3.0},"18083":{"home":67.8,"income":61237,"name":"Knox County","oh":0,"pop":36007,"poverty":13.69,"state":"IN","unemp":3.12},"18085":{"home":76.98,"income":75317,"name":"Kosciusko County","oh":0,"pop":80442,"poverty":9.85,"state":"IN","unemp":2.77},"18087":{"home":83.02,"income":84487,"name":"LaGrange County","oh":0,"pop":40805,"poverty":5.94,"state":"IN","unemp":4.24},"18089":{"home":71.67,"income":71493,"name":"Lake County","oh":0,"pop":500379,"poverty":14.29,"state":"IN","unemp":6.08},"18091":{"home":74.75,"income":71055,"name":"LaPorte County","oh":0,"pop":111917,"poverty":13.62,"state":"IN","unemp":4.8},"18093":{"home":80.68,"income":66468,"name":"Lawrence County","oh":0,"pop":45102,"poverty":12.24,"state":"IN","unemp":3.53},"18095":{"home":70.16,"income":63037,"name":"Madison County","oh":0,"pop":131900,"poverty":13.37,"state":"IN","unemp":5.93},"18097":{"home":56.55,"income":66346,"name":"Marion County","oh":1,"pop":975809,"poverty":15.35,"state":"IN","unemp":5.03},"18099":{"home":76.37,"income":71808,"name":"Marshall County","oh":0,"pop":46284,"poverty":11.68,"state":"IN","unemp":2.57},"18101":{"home":78.51,"income":68594,"name":"Martin County","oh":0,"pop":9830,"poverty":16.28,"state":"IN","unemp":2.39},"18103":{"home":76.16,"income":61139,"name":"Miami County","oh":0,"pop":35712,"poverty":15.11,"state":"IN","unemp":6.56},"18105":{"home":53.97,"income":65868,"name":"Monroe County","oh":0,"pop":140965,"poverty":19.68,"state":"IN","unemp":5.51},"18107":{"home":80.27,"income":71479,"name":"Montgomery County","oh":0,"pop":38312,"poverty":10.53,"state":"IN","unemp":3.31},"18109":{"home":82.13,"income":79429,"name":"Morgan County","oh":0,"pop":72659,"poverty":9.28,"state":"IN","unemp":4.18},"18111":{"home":81.1,"income":75481,"name":"Newton County","oh":0,"pop":13922,"poverty":14.04,"state":"IN","unemp":6.52},"18113":{"home":77.15,"income":71723,"name":"Noble County","oh":0,"pop":47495,"poverty":9.15,"state":"IN","unemp":3.16},"18115":{"home":81.33,"income":70392,"name":"Ohio County","oh":0,"pop":5999,"poverty":8.1,"state":"IN","unemp":1.35},"18117":{"home":78.7,"income":65873,"name":"Orange County","oh":0,"pop":19767,"poverty":13.42,"state":"IN","unemp":3.12},"18119":{"home":81.36,"income":62464,"name":"Owen County","oh":0,"pop":21604,"poverty":12.34,"state":"IN","unemp":2.99},"18121":{"home":82.43,"income":68485,"name":"Parke County","oh":0,"pop":16406,"poverty":16.16,"state":"IN","unemp":4.36},"18123":{"home":75.5,"income":61151,"name":"Perry County","oh":0,"pop":19270,"poverty":14.96,"state":"IN","unemp":4.49},"18125":{"home":86.66,"income":71334,"name":"Pike County","oh":0,"pop":12154,"poverty":10.68,"state":"IN","unemp":3.17},"18127":{"home":77.73,"income":87972,"name":"Porter County","oh":0,"pop":174818,"poverty":9.58,"state":"IN","unemp":4.69},"18129":{"home":82.29,"income":78129,"name":"Posey County","oh":0,"pop":25116,"poverty":10.15,"state":"IN","unemp":1.83},"18131":{"home":74.59,"income":62792,"name":"Pulaski County","oh":0,"pop":12441,"poverty":12.12,"state":"IN","unemp":1.83},"18133":{"home":75.4,"income":78378,"name":"Putnam County","oh":0,"pop":37280,"poverty":8.69,"state":"IN","unemp":3.09},"18135":{"home":77.28,"income":60791,"name":"Randolph County","oh":0,"pop":24387,"poverty":15.85,"state":"IN","unemp":4.53},"18137":{"home":76.85,"income":70573,"name":"Ripley County","oh":0,"pop":29095,"poverty":10.11,"state":"IN","unemp":3.03},"18139":{"home":74.86,"income":66473,"name":"Rush County","oh":0,"pop":16739,"poverty":11.87,"state":"IN","unemp":4.3},"18141":{"home":69.02,"income":66868,"name":"St. Joseph County","oh":1,"pop":273040,"poverty":14.22,"state":"IN","unemp":5.21},"18143":{"home":70.92,"income":56352,"name":"Scott County","oh":0,"pop":24526,"poverty":16.56,"state":"IN","unemp":3.3},"18145":{"home":72.46,"income":72190,"name":"Shelby County","oh":0,"pop":45265,"poverty":13.04,"state":"IN","unemp":3.56},"18147":{"home":81.34,"income":74506,"name":"Spencer County","oh":0,"pop":19955,"poverty":7.47,"state":"IN","unemp":3.33},"18149":{"home":82.97,"income":63960,"name":"Starke County","oh":0,"pop":23365,"poverty":13.37,"state":"IN","unemp":3.37},"18151":{"home":79.47,"income":74911,"name":"Steuben County","oh":0,"pop":34726,"poverty":9.34,"state":"IN","unemp":7.24},"18153":{"home":76.39,"income":56204,"name":"Sullivan County","oh":0,"pop":20780,"poverty":13.85,"state":"IN","unemp":4.45},"18155":{"home":78.53,"income":65343,"name":"Switzerland County","oh":0,"pop":9909,"poverty":12.62,"state":"IN","unemp":4.18},"18157":{"home":53.38,"income":60636,"name":"Tippecanoe County","oh":0,"pop":189071,"poverty":19.21,"state":"IN","unemp":3.25},"18159":{"home":81.38,"income":76156,"name":"Tipton County","oh":1,"pop":15346,"poverty":11.19,"state":"IN","unemp":2.29},"18161":{"home":79.83,"income":76424,"name":"Union County","oh":0,"pop":6985,"poverty":8.47,"state":"IN","unemp":4.25},"18163":{"home":65.04,"income":61648,"name":"Vanderburgh County","oh":1,"pop":180117,"poverty":14.27,"state":"IN","unemp":4.16},"18165":{"home":75.22,"income":60200,"name":"Vermillion County","oh":0,"pop":15421,"poverty":15.3,"state":"IN","unemp":4.59},"18167":{"home":61.7,"income":52976,"name":"Vigo County","oh":0,"pop":106109,"poverty":19.15,"state":"IN","unemp":5.72},"18169":{"home":80.48,"income":66806,"name":"Wabash County","oh":0,"pop":30844,"poverty":11.09,"state":"IN","unemp":3.44},"18171":{"home":82.38,"income":82425,"name":"Warren County","oh":0,"pop":8464,"poverty":10.98,"state":"IN","unemp":4.39},"18173":{"home":82.41,"income":89844,"name":"Warrick County","oh":0,"pop":65261,"poverty":7.0,"state":"IN","unemp":3.12},"18175":{"home":82.06,"income":64641,"name":"Washington County","oh":0,"pop":28212,"poverty":14.45,"state":"IN","unemp":3.18},"18177":{"home":69.22,"income":55692,"name":"Wayne County","oh":0,"pop":66397,"poverty":17.89,"state":"IN","unemp":5.42},"18179":{"home":75.62,"income":71957,"name":"Wells County","oh":0,"pop":28420,"poverty":7.16,"state":"IN","unemp":2.61},"18181":{"home":81.0,"income":67303,"name":"White County","oh":0,"pop":24717,"poverty":10.18,"state":"IN","unemp":3.49},"18183":{"home":81.84,"income":78083,"name":"Whitley County","oh":0,"pop":34618,"poverty":9.92,"state":"IN","unemp":3.28},"19001":{"home":73.95,"income":68092,"name":"Adair County","oh":1,"pop":7460,"poverty":9.53,"state":"IA","unemp":3.96},"19003":{"home":77.14,"income":71875,"name":"Adams County","oh":0,"pop":3622,"poverty":9.09,"state":"IA","unemp":3.93},"19005":{"home":79.56,"income":70694,"name":"Allamakee County","oh":0,"pop":14092,"poverty":10.1,"state":"IA","unemp":2.46},"19007":{"home":68.78,"income":54934,"name":"Appanoose County","oh":0,"pop":12184,"poverty":17.5,"state":"IA","unemp":3.85},"19009":{"home":76.16,"income":58229,"name":"Audubon County","oh":0,"pop":5599,"poverty":11.76,"state":"IA","unemp":1.3},"19011":{"home":84.99,"income":86962,"name":"Benton County","oh":0,"pop":25724,"poverty":7.38,"state":"IA","unemp":2.01},"19013":{"home":66.23,"income":66417,"name":"Black Hawk County","oh":2,"pop":131049,"poverty":14.95,"state":"IA","unemp":4.56},"19015":{"home":80.0,"income":83531,"name":"Boone County","oh":0,"pop":26668,"poverty":6.16,"state":"IA","unemp":1.51},"19017":{"home":79.66,"income":86784,"name":"Bremer County","oh":1,"pop":25204,"poverty":7.33,"state":"IA","unemp":3.3},"19019":{"home":82.13,"income":78236,"name":"Buchanan County","oh":0,"pop":20694,"poverty":8.6,"state":"IA","unemp":2.84},"19021":{"home":73.22,"income":71719,"name":"Buena Vista County","oh":0,"pop":20753,"poverty":7.79,"state":"IA","unemp":5.55},"19023":{"home":84.1,"income":73715,"name":"Butler County","oh":1,"pop":14268,"poverty":9.22,"state":"IA","unemp":3.13},"19025":{"home":80.52,"income":64964,"name":"Calhoun County","oh":0,"pop":9803,"poverty":9.26,"state":"IA","unemp":2.57},"19027":{"home":77.08,"income":72930,"name":"Carroll County","oh":1,"pop":20594,"poverty":7.93,"state":"IA","unemp":1.8},"19029":{"home":71.56,"income":63013,"name":"Cass County","oh":0,"pop":13096,"poverty":14.25,"state":"IA","unemp":1.4},"19031":{"home":81.47,"income":80602,"name":"Cedar County","oh":1,"pop":18349,"poverty":7.34,"state":"IA","unemp":2.25},"19033":{"home":70.35,"income":68189,"name":"Cerro Gordo County","oh":1,"pop":42632,"poverty":10.56,"state":"IA","unemp":2.61},"19035":{"home":75.52,"income":71269,"name":"Cherokee County","oh":0,"pop":11600,"poverty":12.1,"state":"IA","unemp":2.49},"19037":{"home":80.93,"income":75675,"name":"Chickasaw County","oh":2,"pop":11807,"poverty":8.82,"state":"IA","unemp":1.58},"19039":{"home":72.32,"income":71641,"name":"Clarke County","oh":0,"pop":9662,"poverty":9.72,"state":"IA","unemp":4.24},"19041":{"home":73.33,"income":65428,"name":"Clay County","oh":2,"pop":16461,"poverty":11.41,"state":"IA","unemp":3.51},"19043":{"home":77.99,"income":67242,"name":"Clayton County","oh":2,"pop":17013,"poverty":10.91,"state":"IA","unemp":2.52},"19045":{"home":74.55,"income":66981,"name":"Clinton County","oh":12,"pop":46268,"poverty":13.19,"state":"IA","unemp":3.37},"19047":{"home":75.98,"income":67027,"name":"Crawford County","oh":2,"pop":16277,"poverty":14.77,"state":"IA","unemp":3.82},"19049":{"home":69.05,"income":102379,"name":"Dallas County","oh":3,"pop":107968,"poverty":6.26,"state":"IA","unemp":2.29},"19051":{"home":83.26,"income":77194,"name":"Davis County","oh":2,"pop":9157,"poverty":7.16,"state":"IA","unemp":2.72},"19053":{"home":69.72,"income":59044,"name":"Decatur County","oh":2,"pop":7759,"poverty":14.56,"state":"IA","unemp":1.94},"19055":{"home":79.59,"income":74989,"name":"Delaware County","oh":2,"pop":17558,"poverty":7.76,"state":"IA","unemp":2.05},"19057":{"home":74.65,"income":62928,"name":"Des Moines County","oh":4,"pop":38487,"poverty":12.84,"state":"IA","unemp":3.11},"19059":{"home":77.46,"income":75432,"name":"Dickinson County","oh":5,"pop":17990,"poverty":7.57,"state":"IA","unemp":2.96},"19061":{"home":73.34,"income":77630,"name":"Dubuque County","oh":3,"pop":99030,"poverty":9.65,"state":"IA","unemp":3.66},"19063":{"home":79.4,"income":63730,"name":"Emmet County","oh":1,"pop":9262,"poverty":9.95,"state":"IA","unemp":1.67},"19065":{"home":76.54,"income":60165,"name":"Fayette County","oh":2,"pop":19288,"poverty":11.99,"state":"IA","unemp":3.2},"19067":{"home":76.61,"income":68557,"name":"Floyd County","oh":2,"pop":15328,"poverty":11.59,"state":"IA","unemp":3.27},"19069":{"home":72.42,"income":59894,"name":"Franklin County","oh":0,"pop":9956,"poverty":13.6,"state":"IA","unemp":3.79},"19071":{"home":78.32,"income":71621,"name":"Fremont County","oh":0,"pop":6514,"poverty":7.67,"state":"IA","unemp":0.8},"19073":{"home":76.42,"income":63409,"name":"Greene County","oh":0,"pop":8688,"poverty":9.76,"state":"IA","unemp":2.3},"19075":{"home":84.48,"income":87205,"name":"Grundy County","oh":0,"pop":12384,"poverty":6.52,"state":"IA","unemp":1.96},"19077":{"home":84.0,"income":77711,"name":"Guthrie County","oh":2,"pop":10688,"poverty":9.88,"state":"IA","unemp":3.22},"19079":{"home":73.38,"income":72432,"name":"Hamilton County","oh":0,"pop":14886,"poverty":7.4,"state":"IA","unemp":4.85},"19081":{"home":82.45,"income":70601,"name":"Hancock County","oh":1,"pop":10671,"poverty":12.15,"state":"IA","unemp":1.88},"19083":{"home":73.56,"income":65069,"name":"Hardin County","oh":0,"pop":16639,"poverty":9.68,"state":"IA","unemp":4.29},"19085":{"home":77.14,"income":79535,"name":"Harrison County","oh":0,"pop":14632,"poverty":7.09,"state":"IA","unemp":2.29},"19087":{"home":74.14,"income":67436,"name":"Henry County","oh":1,"pop":20004,"poverty":11.97,"state":"IA","unemp":1.48},"19089":{"home":77.42,"income":67446,"name":"Howard County","oh":0,"pop":9445,"poverty":8.93,"state":"IA","unemp":1.85},"19091":{"home":77.15,"income":71946,"name":"Humboldt County","oh":1,"pop":9591,"poverty":12.87,"state":"IA","unemp":5.04},"19093":{"home":72.92,"income":63073,"name":"Ida County","oh":3,"pop":6911,"poverty":11.3,"state":"IA","unemp":2.4},"19095":{"home":76.6,"income":71223,"name":"Iowa County","oh":1,"pop":16507,"poverty":8.85,"state":"IA","unemp":1.91},"19097":{"home":80.72,"income":74186,"name":"Jackson County","oh":1,"pop":19390,"poverty":9.65,"state":"IA","unemp":5.1},"19099":{"home":72.35,"income":71311,"name":"Jasper County","oh":7,"pop":37954,"poverty":8.3,"state":"IA","unemp":5.68},"19101":{"home":67.69,"income":61620,"name":"Jefferson County","oh":0,"pop":15705,"poverty":15.19,"state":"IA","unemp":7.95},"19103":{"home":59.37,"income":74935,"name":"Johnson County","oh":3,"pop":156639,"poverty":17.07,"state":"IA","unemp":3.77},"19105":{"home":80.58,"income":73531,"name":"Jones County","oh":1,"pop":20896,"poverty":12.0,"state":"IA","unemp":3.56},"19107":{"home":81.27,"income":62329,"name":"Keokuk County","oh":0,"pop":9924,"poverty":12.13,"state":"IA","unemp":4.51},"19109":{"home":78.62,"income":67697,"name":"Kossuth County","oh":0,"pop":14516,"poverty":8.23,"state":"IA","unemp":1.92},"19111":{"home":76.34,"income":62382,"name":"Lee County","oh":2,"pop":32893,"poverty":13.09,"state":"IA","unemp":4.45},"19113":{"home":73.51,"income":77649,"name":"Linn County","oh":2,"pop":230004,"poverty":9.41,"state":"IA","unemp":3.45},"19115":{"home":80.27,"income":77354,"name":"Louisa County","oh":1,"pop":10678,"poverty":9.77,"state":"IA","unemp":2.97},"19117":{"home":78.78,"income":61793,"name":"Lucas County","oh":1,"pop":8716,"poverty":14.95,"state":"IA","unemp":5.16},"19119":{"home":80.91,"income":76746,"name":"Lyon County","oh":0,"pop":12162,"poverty":5.33,"state":"IA","unemp":2.34},"19121":{"home":80.14,"income":90855,"name":"Madison County","oh":2,"pop":16926,"poverty":7.04,"state":"IA","unemp":3.46},"19123":{"home":67.96,"income":70940,"name":"Mahaska County","oh":1,"pop":22021,"poverty":12.64,"state":"IA","unemp":3.51},"19125":{"home":77.7,"income":78680,"name":"Marion County","oh":3,"pop":33642,"poverty":8.17,"state":"IA","unemp":2.18},"19127":{"home":75.0,"income":73315,"name":"Marshall County","oh":3,"pop":40114,"poverty":11.15,"state":"IA","unemp":4.28},"19129":{"home":83.54,"income":90753,"name":"Mills County","oh":0,"pop":14568,"poverty":8.22,"state":"IA","unemp":1.98},"19131":{"home":79.99,"income":71365,"name":"Mitchell County","oh":0,"pop":10575,"poverty":9.47,"state":"IA","unemp":1.2},"19133":{"home":75.68,"income":68377,"name":"Monona County","oh":0,"pop":8557,"poverty":10.64,"state":"IA","unemp":1.62},"19135":{"home":81.29,"income":70996,"name":"Monroe County","oh":0,"pop":7513,"poverty":9.18,"state":"IA","unemp":3.13},"19137":{"home":69.14,"income":63666,"name":"Montgomery County","oh":0,"pop":10214,"poverty":15.27,"state":"IA","unemp":2.63},"19139":{"home":73.91,"income":69396,"name":"Muscatine County","oh":0,"pop":42559,"poverty":13.68,"state":"IA","unemp":3.2},"19141":{"home":76.11,"income":68356,"name":"O'Brien County","oh":1,"pop":14126,"poverty":13.32,"state":"IA","unemp":1.0},"19143":{"home":77.87,"income":69239,"name":"Osceola County","oh":0,"pop":6100,"poverty":15.97,"state":"IA","unemp":3.39},"19145":{"home":70.54,"income":57953,"name":"Page County","oh":1,"pop":15131,"poverty":13.76,"state":"IA","unemp":5.01},"19147":{"home":77.08,"income":72781,"name":"Palo Alto County","oh":0,"pop":8863,"poverty":11.61,"state":"IA","unemp":2.2},"19149":{"home":73.61,"income":83251,"name":"Plymouth County","oh":5,"pop":25747,"poverty":6.9,"state":"IA","unemp":2.2},"19151":{"home":77.27,"income":61875,"name":"Pocahontas County","oh":4,"pop":7046,"poverty":10.33,"state":"IA","unemp":5.4},"19153":{"home":67.35,"income":83576,"name":"Polk County","oh":10,"pop":503175,"poverty":10.31,"state":"IA","unemp":4.35},"19155":{"home":69.9,"income":73602,"name":"Pottawattamie County","oh":5,"pop":93424,"poverty":12.12,"state":"IA","unemp":3.81},"19157":{"home":71.21,"income":67391,"name":"Poweshiek County","oh":3,"pop":18545,"poverty":10.75,"state":"IA","unemp":3.64},"19159":{"home":78.46,"income":73346,"name":"Ringgold County","oh":0,"pop":4645,"poverty":8.75,"state":"IA","unemp":3.26},"19161":{"home":78.01,"income":73838,"name":"Sac County","oh":4,"pop":9689,"poverty":9.16,"state":"IA","unemp":4.43},"19163":{"home":69.98,"income":78277,"name":"Scott County","oh":7,"pop":174608,"poverty":11.5,"state":"IA","unemp":3.65},"19165":{"home":77.8,"income":72738,"name":"Shelby County","oh":1,"pop":11778,"poverty":7.63,"state":"IA","unemp":3.19},"19167":{"home":76.13,"income":86098,"name":"Sioux County","oh":5,"pop":36212,"poverty":6.67,"state":"IA","unemp":1.52},"19169":{"home":55.52,"income":69685,"name":"Story County","oh":8,"pop":100466,"poverty":18.24,"state":"IA","unemp":4.76},"19171":{"home":75.95,"income":70781,"name":"Tama County","oh":4,"pop":16868,"poverty":14.8,"state":"IA","unemp":3.84},"19173":{"home":77.89,"income":67740,"name":"Taylor County","oh":2,"pop":5868,"poverty":11.01,"state":"IA","unemp":2.95},"19175":{"home":72.13,"income":57772,"name":"Union County","oh":1,"pop":11993,"poverty":12.37,"state":"IA","unemp":4.03},"19177":{"home":81.63,"income":61161,"name":"Van Buren County","oh":1,"pop":7241,"poverty":15.1,"state":"IA","unemp":4.1},"19179":{"home":68.41,"income":64766,"name":"Wapello County","oh":1,"pop":35362,"poverty":15.84,"state":"IA","unemp":4.29},"19181":{"home":82.34,"income":94588,"name":"Warren County","oh":2,"pop":54409,"poverty":5.14,"state":"IA","unemp":3.4},"19183":{"home":74.02,"income":75647,"name":"Washington County","oh":4,"pop":22561,"poverty":8.2,"state":"IA","unemp":2.21},"19185":{"home":80.9,"income":61964,"name":"Wayne County","oh":1,"pop":6532,"poverty":10.14,"state":"IA","unemp":2.92},"19187":{"home":70.34,"income":68975,"name":"Webster County","oh":4,"pop":36886,"poverty":12.86,"state":"IA","unemp":4.82},"19189":{"home":70.61,"income":67642,"name":"Winnebago County","oh":2,"pop":10583,"poverty":11.18,"state":"IA","unemp":3.01},"19191":{"home":74.2,"income":79066,"name":"Winneshiek County","oh":3,"pop":19873,"poverty":8.4,"state":"IA","unemp":2.32},"19193":{"home":68.19,"income":73658,"name":"Woodbury County","oh":5,"pop":106247,"poverty":13.95,"state":"IA","unemp":4.11},"19195":{"home":83.2,"income":78008,"name":"Worth County","oh":1,"pop":7350,"poverty":8.17,"state":"IA","unemp":3.55},"19197":{"home":77.0,"income":67190,"name":"Wright County","oh":3,"pop":12791,"poverty":16.75,"state":"IA","unemp":1.84},"20001":{"home":75.43,"income":60689,"name":"Allen County","oh":0,"pop":12483,"poverty":9.92,"state":"KS","unemp":7.91},"20003":{"home":78.9,"income":70614,"name":"Anderson County","oh":0,"pop":7834,"poverty":11.04,"state":"KS","unemp":4.1},"20005":{"home":71.91,"income":61112,"name":"Atchison County","oh":0,"pop":16208,"poverty":12.98,"state":"KS","unemp":4.59},"20007":{"home":80.96,"income":61926,"name":"Barber County","oh":0,"pop":4069,"poverty":11.78,"state":"KS","unemp":1.25},"20009":{"home":65.16,"income":58851,"name":"Barton County","oh":0,"pop":25097,"poverty":15.4,"state":"KS","unemp":3.89},"20011":{"home":74.04,"income":59238,"name":"Bourbon County","oh":0,"pop":14394,"poverty":13.64,"state":"KS","unemp":5.28},"20013":{"home":76.33,"income":62233,"name":"Brown County","oh":0,"pop":9343,"poverty":13.76,"state":"KS","unemp":5.18},"20015":{"home":77.56,"income":81610,"name":"Butler County","oh":1,"pop":68287,"poverty":8.55,"state":"KS","unemp":3.4},"20017":{"home":73.32,"income":56484,"name":"Chase County","oh":0,"pop":2561,"poverty":8.35,"state":"KS","unemp":0.94},"20019":{"home":82.01,"income":56438,"name":"Chautauqua County","oh":0,"pop":3370,"poverty":14.92,"state":"KS","unemp":3.62},"20021":{"home":75.53,"income":57668,"name":"Cherokee County","oh":0,"pop":19151,"poverty":14.11,"state":"KS","unemp":3.26},"20023":{"home":77.85,"income":55429,"name":"Cheyenne County","oh":0,"pop":2628,"poverty":17.01,"state":"KS","unemp":2.45},"20025":{"home":73.6,"income":63043,"name":"Clark County","oh":0,"pop":1974,"poverty":9.87,"state":"KS","unemp":2.79},"20027":{"home":78.0,"income":66176,"name":"Clay County","oh":0,"pop":8048,"poverty":13.35,"state":"KS","unemp":1.03},"20029":{"home":73.97,"income":58770,"name":"Cloud County","oh":0,"pop":8898,"poverty":9.95,"state":"KS","unemp":2.49},"20031":{"home":75.91,"income":70346,"name":"Coffey County","oh":1,"pop":8308,"poverty":10.74,"state":"KS","unemp":6.4},"20033":{"home":73.42,"income":54545,"name":"Comanche County","oh":1,"pop":1729,"poverty":9.23,"state":"KS","unemp":1.69},"20035":{"home":68.1,"income":57878,"name":"Cowley County","oh":1,"pop":34411,"poverty":14.26,"state":"KS","unemp":3.85},"20037":{"home":60.79,"income":52844,"name":"Crawford County","oh":1,"pop":39008,"poverty":20.61,"state":"KS","unemp":4.07},"20039":{"home":77.69,"income":53870,"name":"Decatur County","oh":0,"pop":2726,"poverty":12.73,"state":"KS","unemp":4.11},"20041":{"home":78.57,"income":68417,"name":"Dickinson County","oh":0,"pop":18445,"poverty":8.14,"state":"KS","unemp":2.76},"20043":{"home":81.06,"income":74028,"name":"Doniphan County","oh":0,"pop":7503,"poverty":9.65,"state":"KS","unemp":1.64},"20045":{"home":50.09,"income":69746,"name":"Douglas County","oh":1,"pop":120302,"poverty":14.73,"state":"KS","unemp":4.22},"20047":{"home":79.17,"income":52692,"name":"Edwards County","oh":0,"pop":2779,"poverty":18.87,"state":"KS","unemp":6.79},"20049":{"home":78.78,"income":64609,"name":"Elk County","oh":0,"pop":2453,"poverty":10.37,"state":"KS","unemp":2.03},"20051":{"home":63.19,"income":63084,"name":"Ellis County","oh":1,"pop":28920,"poverty":18.35,"state":"KS","unemp":3.25},"20053":{"home":80.23,"income":65560,"name":"Ellsworth County","oh":0,"pop":6360,"poverty":10.37,"state":"KS","unemp":2.56},"20055":{"home":64.93,"income":73009,"name":"Finney County","oh":1,"pop":38084,"poverty":11.08,"state":"KS","unemp":4.06},"20057":{"home":62.49,"income":70781,"name":"Ford County","oh":0,"pop":34074,"poverty":13.97,"state":"KS","unemp":5.06},"20059":{"home":72.23,"income":77207,"name":"Franklin County","oh":1,"pop":26106,"poverty":8.67,"state":"KS","unemp":2.98},"20061":{"home":43.52,"income":59317,"name":"Geary County","oh":1,"pop":35815,"poverty":18.01,"state":"KS","unemp":6.93},"20063":{"home":79.37,"income":66029,"name":"Gove County","oh":0,"pop":2799,"poverty":5.06,"state":"KS","unemp":2.61},"20065":{"home":78.84,"income":50650,"name":"Graham County","oh":0,"pop":2389,"poverty":14.83,"state":"KS","unemp":5.02},"20067":{"home":76.67,"income":66476,"name":"Grant County","oh":1,"pop":7229,"poverty":9.3,"state":"KS","unemp":0.69},"20069":{"home":77.06,"income":79122,"name":"Gray County","oh":0,"pop":5701,"poverty":8.52,"state":"KS","unemp":2.65},"20071":{"home":75.05,"income":80565,"name":"Greeley County","oh":0,"pop":1304,"poverty":7.11,"state":"KS","unemp":0.15},"20073":{"home":80.46,"income":60042,"name":"Greenwood County","oh":0,"pop":5919,"poverty":13.89,"state":"KS","unemp":3.38},"20075":{"home":77.15,"income":70250,"name":"Hamilton County","oh":0,"pop":2471,"poverty":7.03,"state":"KS","unemp":3.06},"20077":{"home":75.11,"income":53488,"name":"Harper County","oh":0,"pop":5400,"poverty":17.3,"state":"KS","unemp":1.97},"20079":{"home":69.85,"income":74368,"name":"Harvey County","oh":0,"pop":33756,"poverty":8.23,"state":"KS","unemp":4.81},"20081":{"home":76.27,"income":66162,"name":"Haskell County","oh":0,"pop":3641,"poverty":11.2,"state":"KS","unemp":3.64},"20083":{"home":79.05,"income":59955,"name":"Hodgeman County","oh":0,"pop":1652,"poverty":6.33,"state":"KS","unemp":0.63},"20085":{"home":77.1,"income":75215,"name":"Jackson County","oh":0,"pop":13341,"poverty":6.08,"state":"KS","unemp":1.79},"20087":{"home":85.7,"income":81278,"name":"Jefferson County","oh":0,"pop":18349,"poverty":5.64,"state":"KS","unemp":2.4},"20089":{"home":74.11,"income":52634,"name":"Jewell County","oh":0,"pop":2916,"poverty":10.59,"state":"KS","unemp":1.35},"20091":{"home":68.53,"income":109208,"name":"Johnson County","oh":4,"pop":620631,"poverty":5.41,"state":"KS","unemp":3.2},"20093":{"home":71.69,"income":89135,"name":"Kearny County","oh":0,"pop":3864,"poverty":4.51,"state":"KS","unemp":2.21},"20095":{"home":66.27,"income":59842,"name":"Kingman County","oh":0,"pop":7186,"poverty":10.33,"state":"KS","unemp":2.22},"20097":{"home":72.98,"income":75539,"name":"Kiowa County","oh":1,"pop":2422,"poverty":5.85,"state":"KS","unemp":2.2},"20099":{"home":74.0,"income":56325,"name":"Labette County","oh":1,"pop":19869,"poverty":16.05,"state":"KS","unemp":3.1},"20101":{"home":88.86,"income":54526,"name":"Lane County","oh":0,"pop":1461,"poverty":6.95,"state":"KS","unemp":0.45},"20103":{"home":69.32,"income":89218,"name":"Leavenworth County","oh":2,"pop":83123,"poverty":8.77,"state":"KS","unemp":4.08},"20105":{"home":80.44,"income":57500,"name":"Lincoln County","oh":0,"pop":2923,"poverty":11.34,"state":"KS","unemp":2.41},"20107":{"home":81.14,"income":59069,"name":"Linn County","oh":0,"pop":9767,"poverty":8.4,"state":"KS","unemp":4.38},"20109":{"home":64.87,"income":75662,"name":"Logan County","oh":0,"pop":2707,"poverty":15.03,"state":"KS","unemp":1.83},"20111":{"home":57.87,"income":59912,"name":"Lyon County","oh":1,"pop":32186,"poverty":14.63,"state":"KS","unemp":1.99},"20113":{"home":75.47,"income":78851,"name":"McPherson County","oh":0,"pop":30205,"poverty":9.46,"state":"KS","unemp":1.85},"20115":{"home":81.31,"income":64695,"name":"Marion County","oh":0,"pop":11754,"poverty":9.15,"state":"KS","unemp":3.43},"20117":{"home":79.98,"income":68419,"name":"Marshall County","oh":0,"pop":9993,"poverty":11.34,"state":"KS","unemp":2.04},"20119":{"home":73.97,"income":71852,"name":"Meade County","oh":0,"pop":3903,"poverty":11.04,"state":"KS","unemp":1.53},"20121":{"home":78.21,"income":89000,"name":"Miami County","oh":0,"pop":34938,"poverty":7.9,"state":"KS","unemp":3.69},"20123":{"home":69.03,"income":64246,"name":"Mitchell County","oh":0,"pop":5779,"poverty":12.2,"state":"KS","unemp":0.14},"20125":{"home":72.92,"income":55697,"name":"Montgomery County","oh":0,"pop":30940,"poverty":15.92,"state":"KS","unemp":4.35},"20127":{"home":80.12,"income":58686,"name":"Morris County","oh":1,"pop":5340,"poverty":12.06,"state":"KS","unemp":2.49},"20129":{"home":85.39,"income":66447,"name":"Morton County","oh":0,"pop":2611,"poverty":14.77,"state":"KS","unemp":1.64},"20131":{"home":78.0,"income":77348,"name":"Nemaha County","oh":1,"pop":10160,"poverty":9.3,"state":"KS","unemp":1.51},"20133":{"home":77.18,"income":56618,"name":"Neosho County","oh":0,"pop":15656,"poverty":13.14,"state":"KS","unemp":3.24},"20135":{"home":81.57,"income":68616,"name":"Ness County","oh":0,"pop":2653,"poverty":11.23,"state":"KS","unemp":0.81},"20137":{"home":76.2,"income":54050,"name":"Norton County","oh":0,"pop":5359,"poverty":7.2,"state":"KS","unemp":1.68},"20139":{"home":82.35,"income":74467,"name":"Osage County","oh":0,"pop":15744,"poverty":9.71,"state":"KS","unemp":1.93},"20141":{"home":77.2,"income":63011,"name":"Osborne County","oh":0,"pop":3452,"poverty":8.44,"state":"KS","unemp":1.64},"20143":{"home":77.16,"income":74018,"name":"Ottawa County","oh":0,"pop":5819,"poverty":10.41,"state":"KS","unemp":2.87},"20145":{"home":66.16,"income":63517,"name":"Pawnee County","oh":0,"pop":6144,"poverty":11.52,"state":"KS","unemp":1.22},"20147":{"home":78.0,"income":62123,"name":"Phillips County","oh":0,"pop":4813,"poverty":15.36,"state":"KS","unemp":3.22},"20149":{"home":82.22,"income":92325,"name":"Pottawatomie County","oh":0,"pop":26204,"poverty":6.66,"state":"KS","unemp":2.14},"20151":{"home":73.24,"income":66022,"name":"Pratt County","oh":0,"pop":9127,"poverty":12.3,"state":"KS","unemp":3.6},"20153":{"home":70.68,"income":67742,"name":"Rawlins County","oh":0,"pop":2516,"poverty":6.75,"state":"KS","unemp":1.33},"20155":{"home":69.19,"income":60645,"name":"Reno County","oh":0,"pop":61553,"poverty":12.52,"state":"KS","unemp":3.89},"20157":{"home":78.16,"income":56833,"name":"Republic County","oh":0,"pop":4646,"poverty":10.63,"state":"KS","unemp":1.8},"20159":{"home":77.41,"income":63925,"name":"Rice County","oh":0,"pop":9350,"poverty":7.74,"state":"KS","unemp":4.38},"20161":{"home":46.08,"income":61098,"name":"Riley County","oh":1,"pop":71946,"poverty":19.87,"state":"KS","unemp":3.79},"20163":{"home":74.3,"income":62500,"name":"Rooks County","oh":0,"pop":4813,"poverty":5.53,"state":"KS","unemp":2.0},"20165":{"home":77.58,"income":59970,"name":"Rush County","oh":1,"pop":2947,"poverty":11.14,"state":"KS","unemp":3.6},"20167":{"home":75.06,"income":62392,"name":"Russell County","oh":0,"pop":6679,"poverty":14.69,"state":"KS","unemp":1.84},"20169":{"home":67.14,"income":65422,"name":"Saline County","oh":0,"pop":53668,"poverty":11.86,"state":"KS","unemp":4.82},"20171":{"home":67.19,"income":68839,"name":"Scott County","oh":0,"pop":5027,"poverty":6.46,"state":"KS","unemp":2.73},"20173":{"home":63.06,"income":69365,"name":"Sedgwick County","oh":1,"pop":528226,"poverty":13.93,"state":"KS","unemp":5.0},"20175":{"home":61.8,"income":63827,"name":"Seward County","oh":0,"pop":21486,"poverty":12.21,"state":"KS","unemp":4.94},"20177":{"home":66.78,"income":67104,"name":"Shawnee County","oh":1,"pop":178025,"poverty":12.73,"state":"KS","unemp":4.15},"20179":{"home":76.8,"income":73750,"name":"Sheridan County","oh":0,"pop":2426,"poverty":8.93,"state":"KS","unemp":0.69},"20181":{"home":65.54,"income":61750,"name":"Sherman County","oh":0,"pop":5858,"poverty":10.19,"state":"KS","unemp":0.6},"20183":{"home":84.79,"income":59135,"name":"Smith County","oh":0,"pop":3552,"poverty":7.27,"state":"KS","unemp":0.62},"20185":{"home":82.33,"income":64226,"name":"Stafford County","oh":0,"pop":3978,"poverty":10.49,"state":"KS","unemp":2.49},"20187":{"home":76.52,"income":71700,"name":"Stanton County","oh":0,"pop":2038,"poverty":1.49,"state":"KS","unemp":1.75},"20189":{"home":74.47,"income":64178,"name":"Stevens County","oh":0,"pop":5162,"poverty":14.25,"state":"KS","unemp":3.11},"20191":{"home":75.06,"income":63951,"name":"Sumner County","oh":0,"pop":22353,"poverty":10.64,"state":"KS","unemp":5.94},"20193":{"home":75.25,"income":71325,"name":"Thomas County","oh":0,"pop":7885,"poverty":6.49,"state":"KS","unemp":0.57},"20195":{"home":82.22,"income":81528,"name":"Trego County","oh":0,"pop":2777,"poverty":5.52,"state":"KS","unemp":1.0},"20197":{"home":81.07,"income":76908,"name":"Wabaunsee County","oh":0,"pop":7009,"poverty":8.49,"state":"KS","unemp":4.35},"20199":{"home":74.79,"income":63207,"name":"Wallace County","oh":0,"pop":1417,"poverty":12.28,"state":"KS","unemp":1.33},"20201":{"home":78.47,"income":65482,"name":"Washington County","oh":0,"pop":5533,"poverty":9.28,"state":"KS","unemp":1.09},"20203":{"home":78.03,"income":79063,"name":"Wichita County","oh":0,"pop":2091,"poverty":16.53,"state":"KS","unemp":0.78},"20205":{"home":77.74,"income":60677,"name":"Wilson County","oh":0,"pop":8505,"poverty":15.48,"state":"KS","unemp":2.96},"20207":{"home":84.61,"income":50326,"name":"Woodson County","oh":0,"pop":3109,"poverty":12.36,"state":"KS","unemp":1.6},"20209":{"home":61.97,"income":63631,"name":"Wyandotte County","oh":1,"pop":167654,"poverty":15.76,"state":"KS","unemp":5.75},"21001":{"home":77.21,"income":53553,"name":"Adair County","oh":1,"pop":19089,"poverty":18.39,"state":"KY","unemp":6.82},"21003":{"home":74.46,"income":61403,"name":"Allen County","oh":0,"pop":21293,"poverty":13.45,"state":"KY","unemp":6.87},"21005":{"home":77.61,"income":74488,"name":"Anderson County","oh":1,"pop":24353,"poverty":11.47,"state":"KY","unemp":2.23},"21007":{"home":75.97,"income":66164,"name":"Ballard County","oh":0,"pop":7654,"poverty":15.01,"state":"KY","unemp":1.62},"21009":{"home":65.18,"income":50628,"name":"Barren County","oh":1,"pop":44938,"poverty":19.39,"state":"KY","unemp":4.15},"21011":{"home":74.71,"income":56541,"name":"Bath County","oh":0,"pop":12851,"poverty":25.31,"state":"KY","unemp":2.55},"21013":{"home":58.83,"income":31354,"name":"Bell County","oh":1,"pop":23509,"poverty":28.82,"state":"KY","unemp":10.11},"21015":{"home":76.27,"income":99414,"name":"Boone County","oh":2,"pop":139841,"poverty":6.3,"state":"KY","unemp":3.14},"21017":{"home":63.7,"income":61354,"name":"Bourbon County","oh":1,"pop":20240,"poverty":14.24,"state":"KY","unemp":4.18},"21019":{"home":70.17,"income":61118,"name":"Boyd County","oh":1,"pop":47911,"poverty":16.95,"state":"KY","unemp":6.4},"21021":{"home":67.95,"income":61159,"name":"Boyle County","oh":2,"pop":30941,"poverty":15.64,"state":"KY","unemp":5.8},"21023":{"home":78.54,"income":66319,"name":"Bracken County","oh":0,"pop":8444,"poverty":19.52,"state":"KY","unemp":4.76},"21025":{"home":76.59,"income":34808,"name":"Breathitt County","oh":0,"pop":13276,"poverty":33.13,"state":"KY","unemp":9.32},"21027":{"home":81.41,"income":55843,"name":"Breckinridge County","oh":1,"pop":20881,"poverty":21.36,"state":"KY","unemp":4.5},"21029":{"home":84.93,"income":80558,"name":"Bullitt County","oh":1,"pop":84027,"poverty":9.69,"state":"KY","unemp":4.26},"21031":{"home":73.72,"income":56092,"name":"Butler County","oh":0,"pop":12393,"poverty":20.52,"state":"KY","unemp":4.36},"21033":{"home":70.21,"income":59583,"name":"Caldwell County","oh":0,"pop":12618,"poverty":15.15,"state":"KY","unemp":4.38},"21035":{"home":63.9,"income":52706,"name":"Calloway County","oh":1,"pop":38224,"poverty":17.2,"state":"KY","unemp":4.45},"21037":{"home":71.08,"income":77567,"name":"Campbell County","oh":2,"pop":93426,"poverty":11.1,"state":"KY","unemp":3.98},"21039":{"home":80.38,"income":62439,"name":"Carlisle County","oh":0,"pop":4762,"poverty":15.08,"state":"KY","unemp":3.7},"21041":{"home":65.75,"income":56466,"name":"Carroll County","oh":1,"pop":10954,"poverty":23.13,"state":"KY","unemp":6.07},"21043":{"home":80.04,"income":51235,"name":"Carter County","oh":1,"pop":26341,"poverty":19.18,"state":"KY","unemp":5.31},"21045":{"home":79.71,"income":45510,"name":"Casey County","oh":0,"pop":15914,"poverty":21.73,"state":"KY","unemp":8.89},"21047":{"home":50.04,"income":55494,"name":"Christian County","oh":1,"pop":72069,"poverty":17.12,"state":"KY","unemp":6.32},"21049":{"home":70.67,"income":64348,"name":"Clark County","oh":1,"pop":37192,"poverty":14.58,"state":"KY","unemp":4.41},"21051":{"home":76.36,"income":40900,"name":"Clay County","oh":0,"pop":19921,"poverty":32.35,"state":"KY","unemp":9.3},"21053":{"home":71.15,"income":44844,"name":"Clinton County","oh":0,"pop":9202,"poverty":17.47,"state":"KY","unemp":4.99},"21055":{"home":78.21,"income":46656,"name":"Crittenden County","oh":0,"pop":8979,"poverty":17.72,"state":"KY","unemp":3.4},"21057":{"home":75.51,"income":40000,"name":"Cumberland County","oh":0,"pop":5948,"poverty":24.8,"state":"KY","unemp":4.01},"21059":{"home":68.06,"income":68214,"name":"Daviess County","oh":1,"pop":103648,"poverty":14.72,"state":"KY","unemp":4.45},"21061":{"home":80.13,"income":54937,"name":"Edmonson County","oh":0,"pop":12355,"poverty":15.32,"state":"KY","unemp":7.66},"21063":{"home":81.68,"income":45776,"name":"Elliott County","oh":0,"pop":7307,"poverty":25.12,"state":"KY","unemp":6.53},"21065":{"home":70.41,"income":46051,"name":"Estill County","oh":0,"pop":14035,"poverty":20.74,"state":"KY","unemp":7.02},"21067":{"home":53.77,"income":69479,"name":"Fayette County","oh":1,"pop":323725,"poverty":14.93,"state":"KY","unemp":4.85},"21069":{"home":74.83,"income":49307,"name":"Fleming County","oh":0,"pop":15323,"poverty":21.18,"state":"KY","unemp":7.48},"21071":{"home":72.18,"income":41279,"name":"Floyd County","oh":1,"pop":35224,"poverty":28.05,"state":"KY","unemp":7.67},"21073":{"home":64.47,"income":65298,"name":"Franklin County","oh":1,"pop":51842,"poverty":13.63,"state":"KY","unemp":5.91},"21075":{"home":61.8,"income":38217,"name":"Fulton County","oh":1,"pop":6409,"poverty":22.59,"state":"KY","unemp":3.34},"21077":{"home":75.07,"income":63346,"name":"Gallatin County","oh":0,"pop":8769,"poverty":13.81,"state":"KY","unemp":4.61},"21079":{"home":79.9,"income":63087,"name":"Garrard County","oh":0,"pop":17568,"poverty":15.93,"state":"KY","unemp":5.15},"21081":{"home":75.13,"income":69178,"name":"Grant County","oh":0,"pop":25418,"poverty":11.73,"state":"KY","unemp":4.91},"21083":{"home":76.07,"income":50772,"name":"Graves County","oh":1,"pop":36630,"poverty":19.85,"state":"KY","unemp":3.42},"21085":{"home":74.57,"income":50757,"name":"Grayson County","oh":0,"pop":26707,"poverty":20.07,"state":"KY","unemp":6.64},"21087":{"home":77.61,"income":46798,"name":"Green County","oh":1,"pop":11369,"poverty":20.42,"state":"KY","unemp":7.18},"21089":{"home":80.31,"income":60751,"name":"Greenup County","oh":1,"pop":35501,"poverty":15.43,"state":"KY","unemp":6.77},"21091":{"home":77.16,"income":65464,"name":"Hancock County","oh":0,"pop":9034,"poverty":16.25,"state":"KY","unemp":4.38},"21093":{"home":62.57,"income":67647,"name":"Hardin County","oh":2,"pop":111942,"poverty":13.06,"state":"KY","unemp":6.59},"21095":{"home":71.57,"income":41693,"name":"Harlan County","oh":0,"pop":25772,"poverty":27.37,"state":"KY","unemp":9.53},"21097":{"home":71.42,"income":66442,"name":"Harrison County","oh":1,"pop":19140,"poverty":17.14,"state":"KY","unemp":3.23},"21099":{"home":72.44,"income":52285,"name":"Hart County","oh":0,"pop":19603,"poverty":19.31,"state":"KY","unemp":3.75},"21101":{"home":64.87,"income":58851,"name":"Henderson County","oh":1,"pop":44280,"poverty":14.63,"state":"KY","unemp":2.48},"21103":{"home":76.26,"income":63347,"name":"Henry County","oh":0,"pop":15856,"poverty":16.42,"state":"KY","unemp":4.96},"21105":{"home":70.83,"income":60867,"name":"Hickman County","oh":0,"pop":4439,"poverty":20.48,"state":"KY","unemp":3.06},"21107":{"home":70.71,"income":56815,"name":"Hopkins County","oh":1,"pop":45119,"poverty":19.98,"state":"KY","unemp":6.21},"21109":{"home":77.39,"income":40000,"name":"Jackson County","oh":0,"pop":13086,"poverty":19.46,"state":"KY","unemp":3.97},"21111":{"home":62.13,"income":69866,"name":"Jefferson County","oh":5,"pop":783022,"poverty":14.29,"state":"KY","unemp":5.17},"21113":{"home":66.75,"income":74576,"name":"Jessamine County","oh":1,"pop":54588,"poverty":11.27,"state":"KY","unemp":3.13},"21115":{"home":68.29,"income":44904,"name":"Johnson County","oh":0,"pop":22334,"poverty":22.79,"state":"KY","unemp":4.23},"21117":{"home":70.74,"income":80548,"name":"Kenton County","oh":3,"pop":171288,"poverty":11.85,"state":"KY","unemp":4.33},"21119":{"home":72.74,"income":41761,"name":"Knott County","oh":1,"pop":13830,"poverty":23.31,"state":"KY","unemp":9.27},"21121":{"home":65.32,"income":32527,"name":"Knox County","oh":1,"pop":29865,"poverty":36.9,"state":"KY","unemp":8.14},"21123":{"home":79.39,"income":67067,"name":"Larue County","oh":0,"pop":15107,"poverty":17.91,"state":"KY","unemp":1.52},"21125":{"home":71.62,"income":57771,"name":"Laurel County","oh":0,"pop":62983,"poverty":20.46,"state":"KY","unemp":3.5},"21127":{"home":77.8,"income":46772,"name":"Lawrence County","oh":1,"pop":16077,"poverty":21.78,"state":"KY","unemp":7.73},"21129":{"home":77.73,"income":37568,"name":"Lee County","oh":0,"pop":7339,"poverty":27.36,"state":"KY","unemp":4.72},"21131":{"home":85.54,"income":35934,"name":"Leslie County","oh":0,"pop":10079,"poverty":30.28,"state":"KY","unemp":3.78},"21133":{"home":74.13,"income":41793,"name":"Letcher County","oh":0,"pop":20808,"poverty":24.35,"state":"KY","unemp":6.15},"21135":{"home":79.18,"income":46838,"name":"Lewis County","oh":0,"pop":12965,"poverty":22.03,"state":"KY","unemp":6.04},"21137":{"home":76.42,"income":52440,"name":"Lincoln County","oh":0,"pop":24504,"poverty":16.29,"state":"KY","unemp":6.53},"21139":{"home":81.18,"income":58984,"name":"Livingston County","oh":0,"pop":8903,"poverty":19.26,"state":"KY","unemp":4.21},"21141":{"home":74.28,"income":60382,"name":"Logan County","oh":0,"pop":27986,"poverty":16.75,"state":"KY","unemp":5.68},"21143":{"home":80.4,"income":65066,"name":"Lyon County","oh":0,"pop":8900,"poverty":9.53,"state":"KY","unemp":2.86},"21145":{"home":68.93,"income":64373,"name":"McCracken County","oh":1,"pop":67564,"poverty":15.16,"state":"KY","unemp":3.24},"21147":{"home":74.24,"income":33750,"name":"McCreary County","oh":0,"pop":16867,"poverty":38.86,"state":"KY","unemp":4.17},"21149":{"home":82.75,"income":65596,"name":"McLean County","oh":0,"pop":9114,"poverty":9.45,"state":"KY","unemp":5.62},"21151":{"home":61.98,"income":63351,"name":"Madison County","oh":1,"pop":95769,"poverty":15.06,"state":"KY","unemp":5.06},"21153":{"home":75.41,"income":33080,"name":"Magoffin County","oh":0,"pop":11348,"poverty":38.16,"state":"KY","unemp":9.02},"21155":{"home":77.67,"income":59627,"name":"Marion County","oh":0,"pop":19749,"poverty":16.97,"state":"KY","unemp":4.2},"21157":{"home":81.57,"income":65831,"name":"Marshall County","oh":1,"pop":31743,"poverty":12.27,"state":"KY","unemp":4.51},"21159":{"home":84.9,"income":37042,"name":"Martin County","oh":0,"pop":11027,"poverty":33.17,"state":"KY","unemp":5.46},"21161":{"home":66.06,"income":52178,"name":"Mason County","oh":1,"pop":16956,"poverty":18.81,"state":"KY","unemp":4.92},"21163":{"home":74.09,"income":74355,"name":"Meade County","oh":0,"pop":30158,"poverty":12.23,"state":"KY","unemp":4.83},"21165":{"home":75.46,"income":45096,"name":"Menifee County","oh":0,"pop":6230,"poverty":26.92,"state":"KY","unemp":7.9},"21167":{"home":75.93,"income":64824,"name":"Mercer County","oh":1,"pop":23028,"poverty":10.66,"state":"KY","unemp":4.36},"21169":{"home":77.68,"income":51473,"name":"Metcalfe County","oh":1,"pop":10425,"poverty":27.51,"state":"KY","unemp":4.91},"21171":{"home":70.89,"income":51280,"name":"Monroe County","oh":0,"pop":11269,"poverty":22.1,"state":"KY","unemp":4.03},"21173":{"home":68.31,"income":56396,"name":"Montgomery County","oh":0,"pop":28395,"poverty":15.41,"state":"KY","unemp":4.0},"21175":{"home":78.92,"income":47913,"name":"Morgan County","oh":0,"pop":14053,"poverty":17.07,"state":"KY","unemp":3.07},"21177":{"home":78.79,"income":51927,"name":"Muhlenberg County","oh":1,"pop":30591,"poverty":18.37,"state":"KY","unemp":5.66},"21179":{"home":78.33,"income":69562,"name":"Nelson County","oh":1,"pop":47606,"poverty":10.85,"state":"KY","unemp":3.33},"21181":{"home":74.5,"income":59531,"name":"Nicholas County","oh":0,"pop":7708,"poverty":17.57,"state":"KY","unemp":6.09},"21183":{"home":77.16,"income":57798,"name":"Ohio County","oh":0,"pop":23735,"poverty":12.54,"state":"KY","unemp":5.04},"21185":{"home":87.11,"income":122497,"name":"Oldham County","oh":2,"pop":69257,"poverty":4.3,"state":"KY","unemp":3.49},"21187":{"home":87.96,"income":61134,"name":"Owen County","oh":0,"pop":11330,"poverty":18.28,"state":"KY","unemp":6.98},"21189":{"home":70.13,"income":22188,"name":"Owsley County","oh":0,"pop":3971,"poverty":36.15,"state":"KY","unemp":12.58},"21191":{"home":74.66,"income":64669,"name":"Pendleton County","oh":0,"pop":14723,"poverty":15.91,"state":"KY","unemp":4.52},"21193":{"home":70.41,"income":42181,"name":"Perry County","oh":1,"pop":27499,"poverty":26.84,"state":"KY","unemp":5.78},"21195":{"home":75.3,"income":44312,"name":"Pike County","oh":1,"pop":56727,"poverty":24.38,"state":"KY","unemp":5.18},"21197":{"home":68.25,"income":40309,"name":"Powell County","oh":0,"pop":13038,"poverty":22.48,"state":"KY","unemp":5.77},"21199":{"home":72.48,"income":51898,"name":"Pulaski County","oh":1,"pop":65897,"poverty":19.71,"state":"KY","unemp":4.94},"21201":{"home":79.51,"income":51830,"name":"Robertson County","oh":0,"pop":2283,"poverty":21.12,"state":"KY","unemp":3.84},"21203":{"home":74.33,"income":48862,"name":"Rockcastle County","oh":0,"pop":16163,"poverty":25.64,"state":"KY","unemp":4.57},"21205":{"home":61.52,"income":54321,"name":"Rowan County","oh":0,"pop":24578,"poverty":24.22,"state":"KY","unemp":4.14},"21207":{"home":70.8,"income":44738,"name":"Russell County","oh":0,"pop":18221,"poverty":23.11,"state":"KY","unemp":6.45},"21209":{"home":71.73,"income":85158,"name":"Scott County","oh":1,"pop":59536,"poverty":10.58,"state":"KY","unemp":4.3},"21211":{"home":73.85,"income":82604,"name":"Shelby County","oh":1,"pop":49096,"poverty":9.69,"state":"KY","unemp":4.17},"21213":{"home":66.68,"income":59858,"name":"Simpson County","oh":1,"pop":19972,"poverty":15.55,"state":"KY","unemp":3.56},"21215":{"home":87.94,"income":102618,"name":"Spencer County","oh":1,"pop":20193,"poverty":9.84,"state":"KY","unemp":4.96},"21217":{"home":68.84,"income":60456,"name":"Taylor County","oh":1,"pop":26397,"poverty":17.46,"state":"KY","unemp":5.14},"21219":{"home":76.03,"income":61103,"name":"Todd County","oh":0,"pop":12469,"poverty":20.88,"state":"KY","unemp":3.23},"21221":{"home":76.95,"income":59857,"name":"Trigg County","oh":0,"pop":14315,"poverty":20.6,"state":"KY","unemp":4.17},"21223":{"home":79.72,"income":66027,"name":"Trimble County","oh":0,"pop":8550,"poverty":13.28,"state":"KY","unemp":6.18},"21225":{"home":70.24,"income":60327,"name":"Union County","oh":0,"pop":13260,"poverty":18.44,"state":"KY","unemp":2.69},"21227":{"home":55.65,"income":65794,"name":"Warren County","oh":1,"pop":140918,"poverty":17.01,"state":"KY","unemp":4.44},"21229":{"home":77.64,"income":61616,"name":"Washington County","oh":1,"pop":12140,"poverty":12.75,"state":"KY","unemp":3.38},"21231":{"home":69.14,"income":45739,"name":"Wayne County","oh":0,"pop":19602,"poverty":24.76,"state":"KY","unemp":5.75},"21233":{"home":73.78,"income":59628,"name":"Webster County","oh":0,"pop":12842,"poverty":13.52,"state":"KY","unemp":4.11},"21235":{"home":66.78,"income":44615,"name":"Whitley County","oh":2,"pop":36920,"poverty":26.34,"state":"KY","unemp":5.35},"21237":{"home":73.55,"income":30417,"name":"Wolfe County","oh":0,"pop":6443,"poverty":37.74,"state":"KY","unemp":13.13},"21239":{"home":71.75,"income":83788,"name":"Woodford County","oh":1,"pop":27279,"poverty":10.52,"state":"KY","unemp":2.53},"22001":{"home":67.03,"income":45562,"name":"Acadia Parish","oh":0,"pop":56955,"poverty":24.98,"state":"LA","unemp":7.72},"22003":{"home":73.99,"income":46469,"name":"Allen Parish","oh":0,"pop":22477,"poverty":23.07,"state":"LA","unemp":9.79},"22005":{"home":80.99,"income":91549,"name":"Ascension Parish","oh":0,"pop":130314,"poverty":10.34,"state":"LA","unemp":4.42},"22007":{"home":84.81,"income":51423,"name":"Assumption Parish","oh":0,"pop":20484,"poverty":15.29,"state":"LA","unemp":4.77},"22009":{"home":70.06,"income":39325,"name":"Avoyelles Parish","oh":0,"pop":38905,"poverty":27.84,"state":"LA","unemp":6.93},"22011":{"home":84.82,"income":65944,"name":"Beauregard Parish","oh":0,"pop":36676,"poverty":14.35,"state":"LA","unemp":6.82},"22013":{"home":70.21,"income":35011,"name":"Bienville Parish","oh":0,"pop":12638,"poverty":29.25,"state":"LA","unemp":6.27},"22015":{"home":65.09,"income":69617,"name":"Bossier Parish","oh":1,"pop":129789,"poverty":15.92,"state":"LA","unemp":5.92},"22017":{"home":60.21,"income":50705,"name":"Caddo Parish","oh":1,"pop":230004,"poverty":22.38,"state":"LA","unemp":8.71},"22019":{"home":72.78,"income":67564,"name":"Calcasieu Parish","oh":1,"pop":207088,"poverty":17.38,"state":"LA","unemp":5.44},"22021":{"home":68.92,"income":47028,"name":"Caldwell Parish","oh":0,"pop":9500,"poverty":29.78,"state":"LA","unemp":10.06},"22023":{"home":95.39,"income":75278,"name":"Cameron Parish","oh":0,"pop":5015,"poverty":7.44,"state":"LA","unemp":2.06},"22025":{"home":77.98,"income":50275,"name":"Catahoula Parish","oh":0,"pop":8583,"poverty":24.28,"state":"LA","unemp":8.92},"22027":{"home":68.83,"income":32831,"name":"Claiborne Parish","oh":0,"pop":13833,"poverty":31.98,"state":"LA","unemp":5.11},"22029":{"home":74.23,"income":39943,"name":"Concordia Parish","oh":0,"pop":18174,"poverty":31.82,"state":"LA","unemp":11.7},"22031":{"home":77.15,"income":48578,"name":"De Soto Parish","oh":0,"pop":27026,"poverty":21.53,"state":"LA","unemp":5.98},"22033":{"home":59.28,"income":63071,"name":"East Baton Rouge Parish","oh":2,"pop":452938,"poverty":19.6,"state":"LA","unemp":7.68},"22035":{"home":58.43,"income":33341,"name":"East Carroll Parish","oh":0,"pop":7072,"poverty":35.22,"state":"LA","unemp":13.9},"22037":{"home":85.63,"income":73085,"name":"East Feliciana Parish","oh":0,"pop":19271,"poverty":16.23,"state":"LA","unemp":5.88},"22039":{"home":66.24,"income":41915,"name":"Evangeline Parish","oh":0,"pop":32060,"poverty":24.26,"state":"LA","unemp":9.81},"22041":{"home":73.17,"income":47020,"name":"Franklin Parish","oh":0,"pop":19408,"poverty":24.08,"state":"LA","unemp":8.15},"22043":{"home":79.42,"income":64016,"name":"Grant Parish","oh":0,"pop":22095,"poverty":17.04,"state":"LA","unemp":3.7},"22045":{"home":67.25,"income":56961,"name":"Iberia Parish","oh":1,"pop":68599,"poverty":22.84,"state":"LA","unemp":7.26},"22047":{"home":75.11,"income":54000,"name":"Iberville Parish","oh":0,"pop":29815,"poverty":19.91,"state":"LA","unemp":6.13},"22049":{"home":70.01,"income":44925,"name":"Jackson Parish","oh":0,"pop":14884,"poverty":22.3,"state":"LA","unemp":7.41},"22051":{"home":62.63,"income":65252,"name":"Jefferson Parish","oh":1,"pop":430920,"poverty":16.59,"state":"LA","unemp":6.16},"22053":{"home":77.08,"income":57341,"name":"Jefferson Davis Parish","oh":0,"pop":31924,"poverty":14.56,"state":"LA","unemp":4.71},"22055":{"home":65.48,"income":67451,"name":"Lafayette Parish","oh":1,"pop":247997,"poverty":17.12,"state":"LA","unemp":5.11},"22057":{"home":79.88,"income":63135,"name":"Lafourche Parish","oh":0,"pop":96252,"poverty":16.97,"state":"LA","unemp":4.15},"22059":{"home":80.55,"income":68497,"name":"LaSalle Parish","oh":0,"pop":14789,"poverty":16.01,"state":"LA","unemp":4.88},"22061":{"home":53.76,"income":39172,"name":"Lincoln Parish","oh":0,"pop":48174,"poverty":31.18,"state":"LA","unemp":3.78},"22063":{"home":80.72,"income":80122,"name":"Livingston Parish","oh":0,"pop":148115,"poverty":12.86,"state":"LA","unemp":4.19},"22065":{"home":53.13,"income":35456,"name":"Madison Parish","oh":0,"pop":9513,"poverty":34.52,"state":"LA","unemp":5.47},"22067":{"home":68.56,"income":39454,"name":"Morehouse Parish","oh":1,"pop":24551,"poverty":29.28,"state":"LA","unemp":9.42},"22069":{"home":60.95,"income":46292,"name":"Natchitoches Parish","oh":1,"pop":36693,"poverty":25.42,"state":"LA","unemp":5.61},"22071":{"home":51.18,"income":56631,"name":"Orleans Parish","oh":1,"pop":371853,"poverty":22.6,"state":"LA","unemp":7.53},"22073":{"home":60.97,"income":54688,"name":"Ouachita Parish","oh":1,"pop":158480,"poverty":23.17,"state":"LA","unemp":6.5},"22075":{"home":75.8,"income":86315,"name":"Plaquemines Parish","oh":0,"pop":22803,"poverty":12.88,"state":"LA","unemp":4.22},"22077":{"home":80.04,"income":65961,"name":"Pointe Coupee Parish","oh":0,"pop":20217,"poverty":16.47,"state":"LA","unemp":6.98},"22079":{"home":64.83,"income":54967,"name":"Rapides Parish","oh":2,"pop":127527,"poverty":19.9,"state":"LA","unemp":5.15},"22081":{"home":77.32,"income":49167,"name":"Red River Parish","oh":0,"pop":7443,"poverty":25.77,"state":"LA","unemp":3.64},"22083":{"home":66.8,"income":53544,"name":"Richland Parish","oh":0,"pop":19822,"poverty":24.05,"state":"LA","unemp":8.89},"22085":{"home":80.25,"income":50329,"name":"Sabine Parish","oh":0,"pop":21977,"poverty":23.72,"state":"LA","unemp":6.59},"22087":{"home":70.15,"income":58651,"name":"St. Bernard Parish","oh":0,"pop":44419,"poverty":22.96,"state":"LA","unemp":7.57},"22089":{"home":82.05,"income":80897,"name":"St. Charles Parish","oh":0,"pop":51396,"poverty":11.74,"state":"LA","unemp":6.75},"22091":{"home":78.95,"income":41934,"name":"St. Helena Parish","oh":0,"pop":10858,"poverty":32.43,"state":"LA","unemp":17.59},"22093":{"home":84.44,"income":65531,"name":"St. James Parish","oh":0,"pop":19528,"poverty":11.09,"state":"LA","unemp":4.12},"22095":{"home":77.46,"income":66630,"name":"St. John the Baptist Parish","oh":0,"pop":40743,"poverty":14.42,"state":"LA","unemp":10.86},"22097":{"home":70.07,"income":44462,"name":"St. Landry Parish","oh":1,"pop":81670,"poverty":26.76,"state":"LA","unemp":6.34},"22099":{"home":77.73,"income":55960,"name":"St. Martin Parish","oh":0,"pop":51353,"poverty":15.26,"state":"LA","unemp":4.0},"22101":{"home":68.64,"income":52576,"name":"St. Mary Parish","oh":0,"pop":47828,"poverty":20.79,"state":"LA","unemp":5.37},"22103":{"home":78.87,"income":81202,"name":"St. Tammany Parish","oh":1,"pop":272421,"poverty":11.4,"state":"LA","unemp":4.76},"22105":{"home":70.27,"income":56760,"name":"Tangipahoa Parish","oh":0,"pop":136738,"poverty":19.18,"state":"LA","unemp":5.96},"22107":{"home":74.21,"income":36615,"name":"Tensas Parish","oh":0,"pop":3935,"poverty":34.43,"state":"LA","unemp":11.44},"22109":{"home":75.33,"income":64836,"name":"Terrebonne Parish","oh":0,"pop":106186,"poverty":16.01,"state":"LA","unemp":4.68},"22111":{"home":77.84,"income":42885,"name":"Union Parish","oh":0,"pop":20821,"poverty":29.4,"state":"LA","unemp":5.08},"22113":{"home":73.36,"income":55707,"name":"Vermilion Parish","oh":1,"pop":57123,"poverty":20.16,"state":"LA","unemp":5.17},"22115":{"home":56.0,"income":57270,"name":"Vernon Parish","oh":0,"pop":47117,"poverty":19.0,"state":"LA","unemp":5.68},"22117":{"home":69.3,"income":45380,"name":"Washington Parish","oh":0,"pop":45120,"poverty":24.32,"state":"LA","unemp":9.89},"22119":{"home":66.84,"income":41182,"name":"Webster Parish","oh":0,"pop":35820,"poverty":23.13,"state":"LA","unemp":5.15},"22121":{"home":76.81,"income":87299,"name":"West Baton Rouge Parish","oh":0,"pop":27974,"poverty":12.91,"state":"LA","unemp":6.99},"22123":{"home":76.1,"income":49134,"name":"West Carroll Parish","oh":0,"pop":9464,"poverty":16.24,"state":"LA","unemp":5.74},"22125":{"home":75.68,"income":77452,"name":"West Feliciana Parish","oh":0,"pop":15327,"poverty":11.81,"state":"LA","unemp":4.14},"22127":{"home":71.17,"income":48871,"name":"Winn Parish","oh":0,"pop":13467,"poverty":24.26,"state":"LA","unemp":5.15},"23001":{"home":67.87,"income":67873,"name":"Androscoggin County","oh":2,"pop":113423,"poverty":14.38,"state":"ME","unemp":4.33},"23003":{"home":74.52,"income":56700,"name":"Aroostook County","oh":0,"pop":67058,"poverty":14.4,"state":"ME","unemp":5.26},"23005":{"home":69.81,"income":95677,"name":"Cumberland County","oh":3,"pop":308827,"poverty":7.35,"state":"ME","unemp":3.12},"23007":{"home":76.26,"income":58675,"name":"Franklin County","oh":0,"pop":30413,"poverty":12.16,"state":"ME","unemp":4.6},"23009":{"home":78.54,"income":72744,"name":"Hancock County","oh":0,"pop":56460,"poverty":9.92,"state":"ME","unemp":4.6},"23011":{"home":73.66,"income":69077,"name":"Kennebec County","oh":2,"pop":126808,"poverty":11.63,"state":"ME","unemp":3.93},"23013":{"home":78.72,"income":74096,"name":"Knox County","oh":0,"pop":41003,"poverty":8.18,"state":"ME","unemp":3.88},"23015":{"home":82.5,"income":76875,"name":"Lincoln County","oh":0,"pop":36099,"poverty":7.9,"state":"ME","unemp":2.92},"23017":{"home":80.62,"income":60173,"name":"Oxford County","oh":0,"pop":59255,"poverty":13.83,"state":"ME","unemp":4.29},"23019":{"home":70.54,"income":66356,"name":"Penobscot County","oh":0,"pop":154710,"poverty":14.1,"state":"ME","unemp":3.61},"23021":{"home":78.78,"income":61345,"name":"Piscataquis County","oh":0,"pop":17263,"poverty":15.48,"state":"ME","unemp":3.59},"23023":{"home":77.84,"income":87806,"name":"Sagadahoc County","oh":0,"pop":37285,"poverty":10.03,"state":"ME","unemp":4.6},"23025":{"home":77.42,"income":58179,"name":"Somerset County","oh":0,"pop":50959,"poverty":14.19,"state":"ME","unemp":3.5},"23027":{"home":81.92,"income":72782,"name":"Waldo County","oh":0,"pop":40192,"poverty":12.0,"state":"ME","unemp":3.73},"23029":{"home":79.66,"income":56024,"name":"Washington County","oh":0,"pop":31331,"poverty":17.09,"state":"ME","unemp":6.29},"23031":{"home":77.32,"income":88333,"name":"York County","oh":3,"pop":216731,"poverty":7.65,"state":"ME","unemp":3.41},"24001":{"home":70.71,"income":59603,"name":"Allegany County","oh":1,"pop":67452,"poverty":16.85,"state":"MD","unemp":4.99},"24003":{"home":75.13,"income":124911,"name":"Anne Arundel County","oh":0,"pop":598166,"poverty":5.64,"state":"MD","unemp":3.72},"24005":{"home":66.38,"income":91768,"name":"Baltimore County","oh":0,"pop":850796,"poverty":9.78,"state":"MD","unemp":4.89},"24009":{"home":87.2,"income":133922,"name":"Calvert County","oh":0,"pop":94313,"poverty":3.87,"state":"MD","unemp":2.69},"24011":{"home":71.85,"income":68457,"name":"Caroline County","oh":0,"pop":33669,"poverty":12.16,"state":"MD","unemp":5.69},"24013":{"home":84.35,"income":118211,"name":"Carroll County","oh":0,"pop":175321,"poverty":5.21,"state":"MD","unemp":3.47},"24015":{"home":75.27,"income":92007,"name":"Cecil County","oh":0,"pop":104960,"poverty":10.85,"state":"MD","unemp":5.46},"24017":{"home":82.07,"income":122816,"name":"Charles County","oh":0,"pop":170527,"poverty":6.87,"state":"MD","unemp":4.85},"24019":{"home":65.57,"income":61839,"name":"Dorchester County","oh":0,"pop":32754,"poverty":17.14,"state":"MD","unemp":5.71},"24021":{"home":77.02,"income":122002,"name":"Frederick County","oh":1,"pop":287048,"poverty":6.0,"state":"MD","unemp":3.31},"24023":{"home":79.72,"income":67688,"name":"Garrett County","oh":0,"pop":28615,"poverty":11.25,"state":"MD","unemp":4.35},"24025":{"home":79.66,"income":112265,"name":"Harford County","oh":0,"pop":263757,"poverty":7.14,"state":"MD","unemp":3.83},"24027":{"home":71.48,"income":149763,"name":"Howard County","oh":0,"pop":336328,"poverty":5.23,"state":"MD","unemp":3.49},"24029":{"home":72.54,"income":80147,"name":"Kent County","oh":0,"pop":19346,"poverty":9.66,"state":"MD","unemp":2.95},"24031":{"home":65.3,"income":132450,"name":"Montgomery County","oh":2,"pop":1065949,"poverty":7.45,"state":"MD","unemp":4.93},"24033":{"home":62.31,"income":101798,"name":"Prince George's County","oh":1,"pop":959754,"poverty":10.84,"state":"MD","unemp":6.38},"24035":{"home":82.91,"income":112826,"name":"Queen Anne's County","oh":0,"pop":51825,"poverty":6.44,"state":"MD","unemp":3.83},"24037":{"home":73.17,"income":119446,"name":"St. Mary's County","oh":0,"pop":115126,"poverty":7.98,"state":"MD","unemp":3.56},"24039":{"home":73.12,"income":64943,"name":"Somerset County","oh":0,"pop":24822,"poverty":16.36,"state":"MD","unemp":7.46},"24041":{"home":75.07,"income":84811,"name":"Talbot County","oh":0,"pop":37917,"poverty":9.33,"state":"MD","unemp":4.33},"24043":{"home":66.76,"income":77747,"name":"Washington County","oh":1,"pop":155709,"poverty":12.42,"state":"MD","unemp":4.22},"24045":{"home":62.28,"income":76210,"name":"Wicomico County","oh":1,"pop":104914,"poverty":13.94,"state":"MD","unemp":5.89},"24047":{"home":77.96,"income":81745,"name":"Worcester County","oh":0,"pop":53700,"poverty":9.94,"state":"MD","unemp":6.71},"24510":{"home":47.51,"income":62177,"name":"Baltimore city","oh":0,"pop":573243,"poverty":19.75,"state":"MD","unemp":6.54},"25001":{"home":81.07,"income":95241,"name":"Barnstable County","oh":0,"pop":231668,"poverty":7.67,"state":"MA","unemp":5.02},"25003":{"home":69.92,"income":76013,"name":"Berkshire County","oh":0,"pop":129430,"poverty":11.43,"state":"MA","unemp":5.36},"25005":{"home":62.29,"income":85625,"name":"Bristol County","oh":3,"pop":582270,"poverty":11.32,"state":"MA","unemp":5.46},"25007":{"home":82.08,"income":125786,"name":"Dukes County","oh":0,"pop":20933,"poverty":4.43,"state":"MA","unemp":6.56},"25009":{"home":63.5,"income":101883,"name":"Essex County","oh":8,"pop":813054,"poverty":9.37,"state":"MA","unemp":5.11},"25011":{"home":70.14,"income":74907,"name":"Franklin County","oh":0,"pop":70944,"poverty":12.12,"state":"MA","unemp":5.38},"25013":{"home":62.22,"income":71306,"name":"Hampden County","oh":2,"pop":462815,"poverty":16.34,"state":"MA","unemp":6.01},"25015":{"home":67.8,"income":87001,"name":"Hampshire County","oh":1,"pop":162028,"poverty":11.31,"state":"MA","unemp":5.0},"25017":{"home":61.32,"income":130847,"name":"Middlesex County","oh":7,"pop":1638365,"poverty":7.74,"state":"MA","unemp":4.35},"25019":{"home":71.78,"income":139688,"name":"Nantucket County","oh":0,"pop":14483,"poverty":3.16,"state":"MA","unemp":4.32},"25021":{"home":68.75,"income":130739,"name":"Norfolk County","oh":2,"pop":730082,"poverty":6.69,"state":"MA","unemp":4.94},"25023":{"home":77.61,"income":114201,"name":"Plymouth County","oh":1,"pop":535075,"poverty":7.1,"state":"MA","unemp":5.09},"25025":{"home":36.48,"income":95631,"name":"Suffolk County","oh":2,"pop":785121,"poverty":16.18,"state":"MA","unemp":6.3},"25027":{"home":65.78,"income":95939,"name":"Worcester County","oh":1,"pop":867788,"poverty":10.33,"state":"MA","unemp":5.27},"26001":{"home":89.63,"income":54993,"name":"Alcona County","oh":0,"pop":10397,"poverty":12.31,"state":"MI","unemp":4.49},"26003":{"home":86.29,"income":61286,"name":"Alger County","oh":0,"pop":8762,"poverty":10.36,"state":"MI","unemp":6.8},"26005":{"home":87.37,"income":83283,"name":"Allegan County","oh":0,"pop":121456,"poverty":8.37,"state":"MI","unemp":2.96},"26007":{"home":80.0,"income":53950,"name":"Alpena County","oh":0,"pop":28880,"poverty":17.96,"state":"MI","unemp":6.18},"26009":{"home":86.37,"income":72054,"name":"Antrim County","oh":0,"pop":24127,"poverty":9.87,"state":"MI","unemp":3.9},"26011":{"home":86.25,"income":58811,"name":"Arenac County","oh":0,"pop":15077,"poverty":11.74,"state":"MI","unemp":6.0},"26013":{"home":78.5,"income":55327,"name":"Baraga County","oh":0,"pop":8191,"poverty":15.23,"state":"MI","unemp":5.14},"26015":{"home":87.31,"income":77500,"name":"Barry County","oh":0,"pop":63409,"poverty":8.41,"state":"MI","unemp":4.3},"26017":{"home":77.03,"income":61763,"name":"Bay County","oh":1,"pop":103008,"poverty":13.25,"state":"MI","unemp":4.34},"26019":{"home":87.75,"income":74834,"name":"Benzie County","oh":0,"pop":18310,"poverty":9.66,"state":"MI","unemp":3.09},"26021":{"home":72.83,"income":65425,"name":"Berrien County","oh":0,"pop":153288,"poverty":15.08,"state":"MI","unemp":6.17},"26023":{"home":77.67,"income":63724,"name":"Branch County","oh":0,"pop":45300,"poverty":16.43,"state":"MI","unemp":5.66},"26025":{"home":72.65,"income":63177,"name":"Calhoun County","oh":1,"pop":133778,"poverty":13.94,"state":"MI","unemp":6.42},"26027":{"home":81.64,"income":70443,"name":"Cass County","oh":0,"pop":51520,"poverty":11.9,"state":"MI","unemp":5.02},"26029":{"home":83.49,"income":76531,"name":"Charlevoix County","oh":0,"pop":26108,"poverty":8.73,"state":"MI","unemp":3.35},"26031":{"home":85.63,"income":62875,"name":"Cheboygan County","oh":0,"pop":25865,"poverty":12.36,"state":"MI","unemp":6.1},"26033":{"home":75.03,"income":62217,"name":"Chippewa County","oh":0,"pop":36295,"poverty":14.04,"state":"MI","unemp":5.22},"26035":{"home":86.88,"income":49384,"name":"Clare County","oh":0,"pop":31218,"poverty":21.64,"state":"MI","unemp":9.47},"26037":{"home":82.19,"income":88210,"name":"Clinton County","oh":0,"pop":79626,"poverty":9.68,"state":"MI","unemp":3.83},"26039":{"home":79.63,"income":60392,"name":"Crawford County","oh":0,"pop":13369,"poverty":14.72,"state":"MI","unemp":8.15},"26041":{"home":82.01,"income":57809,"name":"Delta County","oh":1,"pop":36813,"poverty":12.66,"state":"MI","unemp":4.23},"26043":{"home":82.36,"income":65156,"name":"Dickinson County","oh":0,"pop":25954,"poverty":10.55,"state":"MI","unemp":3.6},"26045":{"home":74.17,"income":79597,"name":"Eaton County","oh":1,"pop":109130,"poverty":8.33,"state":"MI","unemp":4.53},"26047":{"home":77.04,"income":78112,"name":"Emmet County","oh":0,"pop":34125,"poverty":8.54,"state":"MI","unemp":3.22},"26049":{"home":70.73,"income":62281,"name":"Genesee County","oh":1,"pop":403305,"poverty":16.4,"state":"MI","unemp":8.07},"26051":{"home":86.08,"income":55349,"name":"Gladwin County","oh":0,"pop":25693,"poverty":14.88,"state":"MI","unemp":6.78},"26053":{"home":80.98,"income":52732,"name":"Gogebic County","oh":0,"pop":14319,"poverty":14.4,"state":"MI","unemp":6.49},"26055":{"home":77.17,"income":81647,"name":"Grand Traverse County","oh":1,"pop":96166,"poverty":9.63,"state":"MI","unemp":3.81},"26057":{"home":78.86,"income":63556,"name":"Gratiot County","oh":0,"pop":41385,"poverty":13.97,"state":"MI","unemp":4.18},"26059":{"home":82.01,"income":64242,"name":"Hillsdale County","oh":0,"pop":45654,"poverty":14.37,"state":"MI","unemp":4.38},"26061":{"home":71.8,"income":58899,"name":"Houghton County","oh":0,"pop":37693,"poverty":16.5,"state":"MI","unemp":5.71},"26063":{"home":81.82,"income":58870,"name":"Huron County","oh":0,"pop":31113,"poverty":12.62,"state":"MI","unemp":4.14},"26065":{"home":59.46,"income":65526,"name":"Ingham County","oh":1,"pop":283913,"poverty":16.69,"state":"MI","unemp":6.24},"26067":{"home":77.29,"income":75611,"name":"Ionia County","oh":0,"pop":66574,"poverty":10.62,"state":"MI","unemp":3.93},"26069":{"home":82.07,"income":50066,"name":"Iosco County","oh":0,"pop":25347,"poverty":17.73,"state":"MI","unemp":6.49},"26071":{"home":84.5,"income":55940,"name":"Iron County","oh":0,"pop":11667,"poverty":16.99,"state":"MI","unemp":5.35},"26073":{"home":61.84,"income":55237,"name":"Isabella County","oh":0,"pop":64565,"poverty":21.9,"state":"MI","unemp":6.39},"26075":{"home":75.04,"income":66073,"name":"Jackson County","oh":0,"pop":160060,"poverty":11.65,"state":"MI","unemp":5.53},"26077":{"home":64.52,"income":72532,"name":"Kalamazoo County","oh":1,"pop":262375,"poverty":12.66,"state":"MI","unemp":5.51},"26079":{"home":88.18,"income":68578,"name":"Kalkaska County","oh":0,"pop":18239,"poverty":12.24,"state":"MI","unemp":3.85},"26081":{"home":70.32,"income":82631,"name":"Kent County","oh":3,"pop":663150,"poverty":10.05,"state":"MI","unemp":4.16},"26083":{"home":90.66,"income":52583,"name":"Keweenaw County","oh":0,"pop":2133,"poverty":15.16,"state":"MI","unemp":2.15},"26085":{"home":81.98,"income":50805,"name":"Lake County","oh":0,"pop":12563,"poverty":20.52,"state":"MI","unemp":7.39},"26087":{"home":86.04,"income":77306,"name":"Lapeer County","oh":0,"pop":88837,"poverty":9.71,"state":"MI","unemp":5.06},"26089":{"home":91.62,"income":99422,"name":"Leelanau County","oh":0,"pop":22734,"poverty":6.53,"state":"MI","unemp":3.43},"26091":{"home":79.56,"income":70518,"name":"Lenawee County","oh":0,"pop":98415,"poverty":10.71,"state":"MI","unemp":4.72},"26093":{"home":86.87,"income":103039,"name":"Livingston County","oh":0,"pop":195833,"poverty":5.08,"state":"MI","unemp":3.42},"26095":{"home":82.57,"income":54893,"name":"Luce County","oh":0,"pop":6271,"poverty":16.67,"state":"MI","unemp":9.92},"26097":{"home":77.88,"income":63909,"name":"Mackinac County","oh":1,"pop":10957,"poverty":16.05,"state":"MI","unemp":7.97},"26099":{"home":75.02,"income":77837,"name":"Macomb County","oh":2,"pop":879853,"poverty":10.41,"state":"MI","unemp":5.73},"26101":{"home":85.76,"income":63516,"name":"Manistee County","oh":0,"pop":25350,"poverty":12.65,"state":"MI","unemp":6.36},"26103":{"home":69.65,"income":65429,"name":"Marquette County","oh":0,"pop":67112,"poverty":13.95,"state":"MI","unemp":4.62},"26105":{"home":78.31,"income":64748,"name":"Mason County","oh":0,"pop":29207,"poverty":14.13,"state":"MI","unemp":4.54},"26107":{"home":76.92,"income":60951,"name":"Mecosta County","oh":1,"pop":41242,"poverty":19.86,"state":"MI","unemp":3.98},"26109":{"home":80.68,"income":56435,"name":"Menominee County","oh":0,"pop":23247,"poverty":12.18,"state":"MI","unemp":4.16},"26111":{"home":78.08,"income":77705,"name":"Midland County","oh":1,"pop":83757,"poverty":10.74,"state":"MI","unemp":4.37},"26113":{"home":84.87,"income":66194,"name":"Missaukee County","oh":0,"pop":15207,"poverty":11.27,"state":"MI","unemp":6.74},"26115":{"home":81.71,"income":77335,"name":"Monroe County","oh":0,"pop":155505,"poverty":10.53,"state":"MI","unemp":5.13},"26117":{"home":83.15,"income":67344,"name":"Montcalm County","oh":0,"pop":67816,"poverty":12.55,"state":"MI","unemp":5.03},"26119":{"home":87.91,"income":49756,"name":"Montmorency County","oh":0,"pop":9516,"poverty":18.16,"state":"MI","unemp":5.31},"26121":{"home":78.06,"income":65024,"name":"Muskegon County","oh":1,"pop":175961,"poverty":14.05,"state":"MI","unemp":6.44},"26123":{"home":86.55,"income":63304,"name":"Newaygo County","oh":0,"pop":50792,"poverty":12.82,"state":"MI","unemp":4.36},"26125":{"home":72.67,"income":97760,"name":"Oakland County","oh":3,"pop":1279825,"poverty":7.73,"state":"MI","unemp":4.79},"26127":{"home":84.45,"income":62417,"name":"Oceana County","oh":0,"pop":26915,"poverty":13.63,"state":"MI","unemp":6.48},"26129":{"home":83.71,"income":54666,"name":"Ogemaw County","oh":0,"pop":20885,"poverty":16.66,"state":"MI","unemp":6.25},"26131":{"home":87.08,"income":54398,"name":"Ontonagon County","oh":0,"pop":5850,"poverty":12.52,"state":"MI","unemp":5.33},"26133":{"home":83.7,"income":58267,"name":"Osceola County","oh":0,"pop":23227,"poverty":15.84,"state":"MI","unemp":6.39},"26135":{"home":87.25,"income":49515,"name":"Oscoda County","oh":0,"pop":8425,"poverty":17.21,"state":"MI","unemp":8.05},"26137":{"home":77.22,"income":68183,"name":"Otsego County","oh":0,"pop":25584,"poverty":8.03,"state":"MI","unemp":4.02},"26139":{"home":79.27,"income":90502,"name":"Ottawa County","oh":0,"pop":301203,"poverty":8.31,"state":"MI","unemp":3.52},"26141":{"home":88.73,"income":59321,"name":"Presque Isle County","oh":0,"pop":13209,"poverty":13.96,"state":"MI","unemp":6.53},"26143":{"home":85.44,"income":55246,"name":"Roscommon County","oh":0,"pop":23737,"poverty":15.54,"state":"MI","unemp":4.74},"26145":{"home":74.1,"income":60622,"name":"Saginaw County","oh":0,"pop":188665,"poverty":18.21,"state":"MI","unemp":6.4},"26147":{"home":80.78,"income":71270,"name":"St. Clair County","oh":1,"pop":160221,"poverty":11.28,"state":"MI","unemp":5.72},"26149":{"home":76.12,"income":66425,"name":"St. Joseph County","oh":0,"pop":60969,"poverty":11.41,"state":"MI","unemp":5.9},"26151":{"home":82.58,"income":58863,"name":"Sanilac County","oh":0,"pop":40462,"poverty":15.33,"state":"MI","unemp":5.96},"26153":{"home":86.63,"income":56782,"name":"Schoolcraft County","oh":0,"pop":8128,"poverty":14.06,"state":"MI","unemp":6.2},"26155":{"home":80.13,"income":67404,"name":"Shiawassee County","oh":0,"pop":67991,"poverty":12.04,"state":"MI","unemp":4.0},"26157":{"home":86.41,"income":63811,"name":"Tuscola County","oh":0,"pop":52980,"poverty":12.84,"state":"MI","unemp":5.98},"26159":{"home":80.57,"income":68114,"name":"Van Buren County","oh":0,"pop":75795,"poverty":14.31,"state":"MI","unemp":4.17},"26161":{"home":61.62,"income":89180,"name":"Washtenaw County","oh":1,"pop":369822,"poverty":14.17,"state":"MI","unemp":4.59},"26163":{"home":64.75,"income":60539,"name":"Wayne County","oh":5,"pop":1772259,"poverty":20.8,"state":"MI","unemp":8.66},"26165":{"home":80.89,"income":61085,"name":"Wexford County","oh":0,"pop":34077,"poverty":13.92,"state":"MI","unemp":5.29},"27001":{"home":85.29,"income":60833,"name":"Aitkin County","oh":0,"pop":16056,"poverty":13.11,"state":"MN","unemp":5.78},"27003":{"home":80.21,"income":101869,"name":"Anoka County","oh":1,"pop":370349,"poverty":7.02,"state":"MN","unemp":4.26},"27005":{"home":77.19,"income":71388,"name":"Becker County","oh":0,"pop":35343,"poverty":12.9,"state":"MN","unemp":4.34},"27007":{"home":70.12,"income":68975,"name":"Beltrami County","oh":0,"pop":46512,"poverty":16.14,"state":"MN","unemp":4.68},"27009":{"home":66.73,"income":74410,"name":"Benton County","oh":0,"pop":41593,"poverty":9.87,"state":"MN","unemp":3.94},"27011":{"home":79.73,"income":70400,"name":"Big Stone County","oh":0,"pop":5127,"poverty":12.94,"state":"MN","unemp":1.79},"27013":{"home":61.36,"income":74477,"name":"Blue Earth County","oh":0,"pop":69871,"poverty":15.67,"state":"MN","unemp":4.89},"27015":{"home":78.9,"income":69378,"name":"Brown County","oh":0,"pop":25800,"poverty":8.47,"state":"MN","unemp":2.89},"27017":{"home":80.01,"income":80573,"name":"Carlton County","oh":0,"pop":36518,"poverty":11.89,"state":"MN","unemp":4.77},"27019":{"home":81.48,"income":125946,"name":"Carver County","oh":0,"pop":110041,"poverty":4.42,"state":"MN","unemp":3.06},"27021":{"home":86.19,"income":68874,"name":"Cass County","oh":0,"pop":30992,"poverty":12.81,"state":"MN","unemp":6.56},"27023":{"home":72.3,"income":71458,"name":"Chippewa County","oh":0,"pop":12377,"poverty":14.53,"state":"MN","unemp":4.35},"27025":{"home":85.92,"income":99400,"name":"Chisago County","oh":0,"pop":57991,"poverty":5.95,"state":"MN","unemp":4.09},"27027":{"home":65.9,"income":81172,"name":"Clay County","oh":0,"pop":66059,"poverty":13.26,"state":"MN","unemp":4.12},"27029":{"home":80.14,"income":64475,"name":"Clearwater County","oh":0,"pop":8616,"poverty":12.58,"state":"MN","unemp":7.67},"27031":{"home":77.68,"income":72638,"name":"Cook County","oh":0,"pop":5635,"poverty":10.17,"state":"MN","unemp":2.22},"27033":{"home":74.43,"income":72941,"name":"Cottonwood County","oh":0,"pop":11458,"poverty":15.0,"state":"MN","unemp":2.84},"27035":{"home":77.03,"income":72589,"name":"Crow Wing County","oh":0,"pop":67686,"poverty":9.87,"state":"MN","unemp":5.46},"27037":{"home":74.94,"income":106318,"name":"Dakota County","oh":0,"pop":445771,"poverty":5.85,"state":"MN","unemp":3.6},"27039":{"home":86.56,"income":95739,"name":"Dodge County","oh":0,"pop":21045,"poverty":7.04,"state":"MN","unemp":3.29},"27041":{"home":76.45,"income":79043,"name":"Douglas County","oh":0,"pop":39575,"poverty":8.98,"state":"MN","unemp":2.92},"27043":{"home":79.19,"income":66815,"name":"Faribault County","oh":1,"pop":13914,"poverty":10.37,"state":"MN","unemp":3.36},"27045":{"home":82.56,"income":77512,"name":"Fillmore County","oh":0,"pop":21414,"poverty":8.39,"state":"MN","unemp":2.72},"27047":{"home":79.5,"income":71023,"name":"Freeborn County","oh":0,"pop":30623,"poverty":10.63,"state":"MN","unemp":4.61},"27049":{"home":78.82,"income":84171,"name":"Goodhue County","oh":0,"pop":47943,"poverty":9.28,"state":"MN","unemp":3.57},"27051":{"home":79.16,"income":73917,"name":"Grant County","oh":0,"pop":6127,"poverty":11.61,"state":"MN","unemp":2.75},"27053":{"home":62.7,"income":97653,"name":"Hennepin County","oh":4,"pop":1269496,"poverty":9.95,"state":"MN","unemp":4.53},"27055":{"home":83.38,"income":79825,"name":"Houston County","oh":0,"pop":18653,"poverty":6.58,"state":"MN","unemp":1.57},"27057":{"home":83.05,"income":71995,"name":"Hubbard County","oh":0,"pop":21831,"poverty":10.77,"state":"MN","unemp":4.36},"27059":{"home":83.7,"income":87440,"name":"Isanti County","oh":1,"pop":42596,"poverty":7.45,"state":"MN","unemp":4.11},"27061":{"home":83.04,"income":68603,"name":"Itasca County","oh":0,"pop":45275,"poverty":12.24,"state":"MN","unemp":5.93},"27063":{"home":80.15,"income":75743,"name":"Jackson County","oh":0,"pop":9933,"poverty":8.6,"state":"MN","unemp":2.42},"27065":{"home":84.54,"income":71460,"name":"Kanabec County","oh":0,"pop":16390,"poverty":10.02,"state":"MN","unemp":4.59},"27067":{"home":72.51,"income":76592,"name":"Kandiyohi County","oh":0,"pop":44079,"poverty":9.11,"state":"MN","unemp":3.63},"27069":{"home":82.86,"income":76100,"name":"Kittson County","oh":0,"pop":4084,"poverty":9.14,"state":"MN","unemp":5.04},"27071":{"home":80.43,"income":66940,"name":"Koochiching County","oh":0,"pop":11833,"poverty":10.87,"state":"MN","unemp":4.82},"27073":{"home":82.52,"income":74432,"name":"Lac qui Parle County","oh":0,"pop":6682,"poverty":8.14,"state":"MN","unemp":2.0},"27075":{"home":83.47,"income":75541,"name":"Lake County","oh":0,"pop":10879,"poverty":8.56,"state":"MN","unemp":2.63},"27077":{"home":81.78,"income":77546,"name":"Lake of the Woods County","oh":0,"pop":3821,"poverty":6.35,"state":"MN","unemp":1.47},"27079":{"home":81.01,"income":94968,"name":"Le Sueur County","oh":0,"pop":29113,"poverty":6.44,"state":"MN","unemp":4.18},"27081":{"home":81.43,"income":69694,"name":"Lincoln County","oh":0,"pop":5603,"poverty":11.95,"state":"MN","unemp":2.66},"27083":{"home":72.5,"income":75303,"name":"Lyon County","oh":0,"pop":25503,"poverty":12.17,"state":"MN","unemp":3.2},"27085":{"home":77.43,"income":80084,"name":"McLeod County","oh":0,"pop":36798,"poverty":8.67,"state":"MN","unemp":3.33},"27087":{"home":73.26,"income":59441,"name":"Mahnomen County","oh":0,"pop":5358,"poverty":18.34,"state":"MN","unemp":9.84},"27089":{"home":83.02,"income":72543,"name":"Marshall County","oh":0,"pop":8909,"poverty":8.3,"state":"MN","unemp":3.47},"27091":{"home":68.9,"income":59507,"name":"Martin County","oh":0,"pop":19780,"poverty":13.13,"state":"MN","unemp":4.16},"27093":{"home":79.26,"income":75446,"name":"Meeker County","oh":1,"pop":23468,"poverty":9.07,"state":"MN","unemp":3.18},"27095":{"home":77.86,"income":72729,"name":"Mille Lacs County","oh":0,"pop":27125,"poverty":10.38,"state":"MN","unemp":3.97},"27097":{"home":80.6,"income":69446,"name":"Morrison County","oh":1,"pop":34249,"poverty":10.95,"state":"MN","unemp":3.99},"27099":{"home":77.58,"income":73074,"name":"Mower County","oh":0,"pop":40343,"poverty":10.39,"state":"MN","unemp":3.93},"27101":{"home":82.24,"income":74033,"name":"Murray County","oh":0,"pop":8097,"poverty":9.32,"state":"MN","unemp":2.69},"27103":{"home":72.21,"income":79756,"name":"Nicollet County","oh":0,"pop":34411,"poverty":8.01,"state":"MN","unemp":2.17},"27105":{"home":74.17,"income":66101,"name":"Nobles County","oh":0,"pop":22041,"poverty":14.0,"state":"MN","unemp":3.24},"27107":{"home":79.44,"income":72260,"name":"Norman County","oh":0,"pop":6367,"poverty":10.12,"state":"MN","unemp":5.25},"27109":{"home":70.57,"income":95406,"name":"Olmsted County","oh":1,"pop":164498,"poverty":7.5,"state":"MN","unemp":3.56},"27111":{"home":79.48,"income":72255,"name":"Otter Tail County","oh":0,"pop":60475,"poverty":8.73,"state":"MN","unemp":4.78},"27113":{"home":72.16,"income":77325,"name":"Pennington County","oh":0,"pop":13791,"poverty":10.46,"state":"MN","unemp":2.88},"27115":{"home":81.61,"income":71146,"name":"Pine County","oh":0,"pop":29640,"poverty":11.13,"state":"MN","unemp":5.6},"27117":{"home":80.81,"income":69628,"name":"Pipestone County","oh":0,"pop":9284,"poverty":10.53,"state":"MN","unemp":3.2},"27119":{"home":71.27,"income":73107,"name":"Polk County","oh":0,"pop":30705,"poverty":11.88,"state":"MN","unemp":3.59},"27121":{"home":83.54,"income":76220,"name":"Pope County","oh":0,"pop":11418,"poverty":9.43,"state":"MN","unemp":1.26},"27123":{"home":60.61,"income":81568,"name":"Ramsey County","oh":2,"pop":542945,"poverty":12.34,"state":"MN","unemp":4.87},"27125":{"home":83.42,"income":77188,"name":"Red Lake County","oh":0,"pop":3915,"poverty":7.2,"state":"MN","unemp":1.08},"27127":{"home":78.39,"income":67866,"name":"Redwood County","oh":0,"pop":15350,"poverty":13.27,"state":"MN","unemp":2.56},"27129":{"home":80.17,"income":70625,"name":"Renville County","oh":0,"pop":14558,"poverty":11.04,"state":"MN","unemp":2.55},"27131":{"home":76.27,"income":83181,"name":"Rice County","oh":1,"pop":67917,"poverty":10.2,"state":"MN","unemp":4.55},"27133":{"home":76.56,"income":71295,"name":"Rock County","oh":0,"pop":9621,"poverty":10.62,"state":"MN","unemp":2.61},"27135":{"home":79.21,"income":74474,"name":"Roseau County","oh":0,"pop":15302,"poverty":12.16,"state":"MN","unemp":3.74},"27137":{"home":71.19,"income":70069,"name":"St. Louis County","oh":2,"pop":200123,"poverty":13.21,"state":"MN","unemp":4.62},"27139":{"home":83.81,"income":119314,"name":"Scott County","oh":0,"pop":154557,"poverty":4.6,"state":"MN","unemp":3.46},"27141":{"home":83.25,"income":105466,"name":"Sherburne County","oh":2,"pop":100560,"poverty":5.09,"state":"MN","unemp":2.99},"27143":{"home":80.77,"income":77634,"name":"Sibley County","oh":1,"pop":15005,"poverty":9.01,"state":"MN","unemp":3.78},"27145":{"home":67.85,"income":77066,"name":"Stearns County","oh":1,"pop":160865,"poverty":12.89,"state":"MN","unemp":4.11},"27147":{"home":79.4,"income":84196,"name":"Steele County","oh":1,"pop":37439,"poverty":8.33,"state":"MN","unemp":3.41},"27149":{"home":63.38,"income":75733,"name":"Stevens County","oh":0,"pop":9739,"poverty":11.13,"state":"MN","unemp":1.95},"27151":{"home":72.39,"income":60412,"name":"Swift County","oh":0,"pop":9748,"poverty":12.03,"state":"MN","unemp":4.43},"27153":{"home":82.98,"income":67662,"name":"Todd County","oh":0,"pop":25575,"poverty":11.5,"state":"MN","unemp":4.1},"27155":{"home":81.85,"income":62989,"name":"Traverse County","oh":0,"pop":3243,"poverty":11.33,"state":"MN","unemp":4.55},"27157":{"home":83.31,"income":82007,"name":"Wabasha County","oh":0,"pop":21565,"poverty":7.07,"state":"MN","unemp":2.21},"27159":{"home":73.57,"income":61467,"name":"Wadena County","oh":0,"pop":14256,"poverty":12.48,"state":"MN","unemp":5.49},"27161":{"home":80.74,"income":76261,"name":"Waseca County","oh":0,"pop":18885,"poverty":7.5,"state":"MN","unemp":2.5},"27163":{"home":81.29,"income":115345,"name":"Washington County","oh":0,"pop":276238,"poverty":5.12,"state":"MN","unemp":3.37},"27165":{"home":77.83,"income":71699,"name":"Watonwan County","oh":0,"pop":11205,"poverty":13.19,"state":"MN","unemp":5.25},"27167":{"home":79.66,"income":71410,"name":"Wilkin County","oh":0,"pop":6371,"poverty":14.08,"state":"MN","unemp":4.8},"27169":{"home":69.49,"income":70744,"name":"Winona County","oh":0,"pop":49779,"poverty":14.8,"state":"MN","unemp":2.29},"27171":{"home":84.1,"income":107209,"name":"Wright County","oh":1,"pop":148269,"poverty":5.18,"state":"MN","unemp":2.73},"27173":{"home":84.0,"income":74000,"name":"Yellow Medicine County","oh":0,"pop":9451,"poverty":8.56,"state":"MN","unemp":3.54},"28001":{"home":68.14,"income":43644,"name":"Adams County","oh":1,"pop":28803,"poverty":27.04,"state":"MS","unemp":6.4},"28003":{"home":67.79,"income":51260,"name":"Alcorn County","oh":0,"pop":34289,"poverty":15.79,"state":"MS","unemp":4.62},"28005":{"home":82.38,"income":37222,"name":"Amite County","oh":0,"pop":12565,"poverty":27.65,"state":"MS","unemp":5.81},"28007":{"home":75.28,"income":51639,"name":"Attala County","oh":0,"pop":17526,"poverty":18.0,"state":"MS","unemp":5.42},"28009":{"home":85.98,"income":46016,"name":"Benton County","oh":0,"pop":7589,"poverty":21.52,"state":"MS","unemp":3.13},"28011":{"home":62.64,"income":39585,"name":"Bolivar County","oh":1,"pop":29534,"poverty":32.63,"state":"MS","unemp":7.11},"28013":{"home":71.98,"income":43125,"name":"Calhoun County","oh":0,"pop":12922,"poverty":20.41,"state":"MS","unemp":4.69},"28015":{"home":83.68,"income":59327,"name":"Carroll County","oh":0,"pop":9686,"poverty":17.89,"state":"MS","unemp":1.62},"28017":{"home":70.3,"income":43586,"name":"Chickasaw County","oh":0,"pop":16915,"poverty":23.55,"state":"MS","unemp":4.86},"28019":{"home":79.45,"income":50919,"name":"Choctaw County","oh":0,"pop":8118,"poverty":18.45,"state":"MS","unemp":9.83},"28021":{"home":76.53,"income":31897,"name":"Claiborne County","oh":0,"pop":8582,"poverty":30.67,"state":"MS","unemp":6.91},"28023":{"home":82.29,"income":46108,"name":"Clarke County","oh":0,"pop":15314,"poverty":17.39,"state":"MS","unemp":7.02},"28025":{"home":71.33,"income":43125,"name":"Clay County","oh":1,"pop":18383,"poverty":20.9,"state":"MS","unemp":7.23},"28027":{"home":52.09,"income":37461,"name":"Coahoma County","oh":1,"pop":20540,"poverty":35.51,"state":"MS","unemp":9.89},"28029":{"home":74.4,"income":49089,"name":"Copiah County","oh":0,"pop":27855,"poverty":22.97,"state":"MS","unemp":5.76},"28031":{"home":77.52,"income":45051,"name":"Covington County","oh":0,"pop":18148,"poverty":19.77,"state":"MS","unemp":3.45},"28033":{"home":77.87,"income":85297,"name":"DeSoto County","oh":4,"pop":191301,"poverty":9.71,"state":"MS","unemp":3.23},"28035":{"home":57.17,"income":53640,"name":"Forrest County","oh":1,"pop":78272,"poverty":20.97,"state":"MS","unemp":6.69},"28037":{"home":81.69,"income":52939,"name":"Franklin County","oh":0,"pop":7622,"poverty":25.42,"state":"MS","unemp":3.97},"28039":{"home":82.11,"income":59758,"name":"George County","oh":0,"pop":25170,"poverty":18.29,"state":"MS","unemp":7.46},"28041":{"home":82.16,"income":54276,"name":"Greene County","oh":0,"pop":13615,"poverty":18.29,"state":"MS","unemp":11.89},"28043":{"home":66.59,"income":48804,"name":"Grenada County","oh":1,"pop":21217,"poverty":24.61,"state":"MS","unemp":4.92},"28045":{"home":79.24,"income":67708,"name":"Hancock County","oh":0,"pop":46167,"poverty":13.81,"state":"MS","unemp":5.02},"28047":{"home":62.17,"income":59479,"name":"Harrison County","oh":3,"pop":210891,"poverty":17.09,"state":"MS","unemp":7.15},"28049":{"home":58.34,"income":49402,"name":"Hinds County","oh":3,"pop":218533,"poverty":22.67,"state":"MS","unemp":7.53},"28051":{"home":61.02,"income":32538,"name":"Holmes County","oh":0,"pop":16191,"poverty":36.36,"state":"MS","unemp":9.54},"28053":{"home":61.69,"income":33731,"name":"Humphreys County","oh":0,"pop":7395,"poverty":27.04,"state":"MS","unemp":12.52},"28055":{"home":66.0,"income":31429,"name":"Issaquena County","oh":0,"pop":928,"poverty":16.16,"state":"MS","unemp":5.1},"28057":{"home":78.96,"income":55546,"name":"Itawamba County","oh":0,"pop":24036,"poverty":15.52,"state":"MS","unemp":5.1},"28059":{"home":72.66,"income":66201,"name":"Jackson County","oh":4,"pop":145249,"poverty":13.84,"state":"MS","unemp":6.71},"28061":{"home":82.14,"income":48660,"name":"Jasper County","oh":0,"pop":16059,"poverty":19.43,"state":"MS","unemp":6.22},"28063":{"home":82.92,"income":38305,"name":"Jefferson County","oh":0,"pop":7068,"poverty":32.49,"state":"MS","unemp":1.84},"28065":{"home":84.46,"income":38548,"name":"Jefferson Davis County","oh":0,"pop":11117,"poverty":28.67,"state":"MS","unemp":9.57},"28067":{"home":75.1,"income":52216,"name":"Jones County","oh":1,"pop":66472,"poverty":18.74,"state":"MS","unemp":4.0},"28069":{"home":78.99,"income":46431,"name":"Kemper County","oh":0,"pop":8729,"poverty":24.83,"state":"MS","unemp":10.82},"28071":{"home":63.77,"income":67185,"name":"Lafayette County","oh":1,"pop":58327,"poverty":18.54,"state":"MS","unemp":2.11},"28073":{"home":69.53,"income":70909,"name":"Lamar County","oh":0,"pop":65713,"poverty":14.68,"state":"MS","unemp":4.83},"28075":{"home":65.1,"income":50817,"name":"Lauderdale County","oh":1,"pop":71504,"poverty":26.32,"state":"MS","unemp":5.8},"28077":{"home":83.5,"income":43531,"name":"Lawrence County","oh":0,"pop":11786,"poverty":23.65,"state":"MS","unemp":9.17},"28079":{"home":76.75,"income":50728,"name":"Leake County","oh":0,"pop":21319,"poverty":20.52,"state":"MS","unemp":6.22},"28081":{"home":70.78,"income":67863,"name":"Lee County","oh":1,"pop":83034,"poverty":14.55,"state":"MS","unemp":5.06},"28083":{"home":52.45,"income":35277,"name":"Leflore County","oh":1,"pop":27141,"poverty":31.5,"state":"MS","unemp":11.61},"28085":{"home":74.93,"income":51119,"name":"Lincoln County","oh":1,"pop":34877,"poverty":21.16,"state":"MS","unemp":3.18},"28087":{"home":61.28,"income":53812,"name":"Lowndes County","oh":1,"pop":57838,"poverty":17.26,"state":"MS","unemp":6.33},"28089":{"home":71.32,"income":83441,"name":"Madison County","oh":3,"pop":111647,"poverty":11.17,"state":"MS","unemp":3.73},"28091":{"home":77.22,"income":45110,"name":"Marion County","oh":0,"pop":24193,"poverty":19.68,"state":"MS","unemp":7.47},"28093":{"home":79.12,"income":53458,"name":"Marshall County","oh":0,"pop":33979,"poverty":23.04,"state":"MS","unemp":4.38},"28095":{"home":76.32,"income":51866,"name":"Monroe County","oh":0,"pop":33747,"poverty":18.04,"state":"MS","unemp":6.31},"28097":{"home":75.78,"income":41748,"name":"Montgomery County","oh":0,"pop":9602,"poverty":25.18,"state":"MS","unemp":4.72},"28099":{"home":78.08,"income":57013,"name":"Neshoba County","oh":0,"pop":28932,"poverty":23.1,"state":"MS","unemp":7.47},"28101":{"home":79.06,"income":50540,"name":"Newton County","oh":0,"pop":21093,"poverty":24.68,"state":"MS","unemp":4.74},"28103":{"home":73.01,"income":33833,"name":"Noxubee County","oh":0,"pop":10025,"poverty":26.33,"state":"MS","unemp":8.62},"28105":{"home":47.98,"income":46695,"name":"Oktibbeha County","oh":1,"pop":51771,"poverty":25.53,"state":"MS","unemp":5.78},"28107":{"home":71.1,"income":45945,"name":"Panola County","oh":0,"pop":32808,"poverty":23.33,"state":"MS","unemp":6.6},"28109":{"home":80.39,"income":58135,"name":"Pearl River County","oh":1,"pop":57458,"poverty":16.5,"state":"MS","unemp":6.11},"28111":{"home":81.54,"income":49634,"name":"Perry County","oh":0,"pop":11449,"poverty":18.38,"state":"MS","unemp":1.99},"28113":{"home":66.79,"income":43814,"name":"Pike County","oh":1,"pop":39602,"poverty":27.13,"state":"MS","unemp":5.81},"28115":{"home":69.75,"income":51484,"name":"Pontotoc County","oh":0,"pop":31550,"poverty":16.71,"state":"MS","unemp":3.11},"28117":{"home":77.51,"income":49724,"name":"Prentiss County","oh":0,"pop":25184,"poverty":16.78,"state":"MS","unemp":3.45},"28119":{"home":64.66,"income":32412,"name":"Quitman County","oh":0,"pop":5774,"poverty":29.63,"state":"MS","unemp":12.36},"28121":{"home":76.82,"income":79357,"name":"Rankin County","oh":3,"pop":158854,"poverty":9.84,"state":"MS","unemp":4.35},"28123":{"home":71.33,"income":48786,"name":"Scott County","oh":0,"pop":27718,"poverty":22.16,"state":"MS","unemp":5.49},"28125":{"home":66.53,"income":40000,"name":"Sharkey County","oh":0,"pop":3872,"poverty":30.85,"state":"MS","unemp":9.05},"28127":{"home":81.41,"income":56381,"name":"Simpson County","oh":0,"pop":25691,"poverty":20.04,"state":"MS","unemp":4.35},"28129":{"home":87.43,"income":60916,"name":"Smith County","oh":0,"pop":14132,"poverty":17.05,"state":"MS","unemp":4.45},"28131":{"home":80.67,"income":61413,"name":"Stone County","oh":0,"pop":18894,"poverty":16.87,"state":"MS","unemp":9.32},"28133":{"home":54.94,"income":39956,"name":"Sunflower County","oh":1,"pop":24333,"poverty":28.87,"state":"MS","unemp":11.23},"28135":{"home":64.51,"income":37466,"name":"Tallahatchie County","oh":0,"pop":11764,"poverty":24.62,"state":"MS","unemp":10.18},"28137":{"home":75.96,"income":69704,"name":"Tate County","oh":0,"pop":28321,"poverty":16.86,"state":"MS","unemp":4.66},"28139":{"home":74.79,"income":52542,"name":"Tippah County","oh":0,"pop":21523,"poverty":18.93,"state":"MS","unemp":5.55},"28141":{"home":79.54,"income":53040,"name":"Tishomingo County","oh":0,"pop":18660,"poverty":18.0,"state":"MS","unemp":3.15},"28143":{"home":39.53,"income":39364,"name":"Tunica County","oh":0,"pop":9475,"poverty":31.1,"state":"MS","unemp":13.27},"28145":{"home":74.66,"income":55505,"name":"Union County","oh":0,"pop":28122,"poverty":15.14,"state":"MS","unemp":4.45},"28147":{"home":80.28,"income":48905,"name":"Walthall County","oh":0,"pop":13839,"poverty":18.77,"state":"MS","unemp":6.63},"28149":{"home":69.86,"income":59401,"name":"Warren County","oh":1,"pop":43020,"poverty":19.52,"state":"MS","unemp":4.81},"28151":{"home":60.19,"income":42165,"name":"Washington County","oh":1,"pop":42765,"poverty":26.45,"state":"MS","unemp":6.28},"28153":{"home":85.31,"income":37619,"name":"Wayne County","oh":0,"pop":19718,"poverty":22.82,"state":"MS","unemp":6.98},"28155":{"home":76.06,"income":58789,"name":"Webster County","oh":0,"pop":9972,"poverty":16.36,"state":"MS","unemp":6.63},"28157":{"home":78.4,"income":35311,"name":"Wilkinson County","oh":0,"pop":8162,"poverty":27.45,"state":"MS","unemp":13.37},"28159":{"home":73.0,"income":53031,"name":"Winston County","oh":0,"pop":17536,"poverty":26.86,"state":"MS","unemp":6.72},"28161":{"home":69.32,"income":49151,"name":"Yalobusha County","oh":0,"pop":12419,"poverty":21.51,"state":"MS","unemp":5.86},"28163":{"home":55.31,"income":39295,"name":"Yazoo County","oh":1,"pop":24835,"poverty":30.75,"state":"MS","unemp":9.7},"29001":{"home":61.02,"income":61536,"name":"Adair County","oh":0,"pop":25301,"poverty":22.01,"state":"MO","unemp":4.14},"29003":{"home":76.72,"income":75625,"name":"Andrew County","oh":0,"pop":18065,"poverty":6.19,"state":"MO","unemp":3.57},"29005":{"home":76.83,"income":58750,"name":"Atchison County","oh":0,"pop":5187,"poverty":11.62,"state":"MO","unemp":2.26},"29007":{"home":71.8,"income":59448,"name":"Audrain County","oh":0,"pop":24548,"poverty":17.83,"state":"MO","unemp":4.28},"29009":{"home":77.29,"income":58346,"name":"Barry County","oh":0,"pop":35033,"poverty":15.19,"state":"MO","unemp":4.55},"29011":{"home":68.12,"income":51635,"name":"Barton County","oh":0,"pop":11690,"poverty":20.18,"state":"MO","unemp":3.26},"29013":{"home":74.93,"income":60733,"name":"Bates County","oh":1,"pop":16186,"poverty":15.86,"state":"MO","unemp":5.94},"29015":{"home":83.83,"income":52567,"name":"Benton County","oh":0,"pop":20151,"poverty":19.87,"state":"MO","unemp":3.78},"29017":{"home":82.29,"income":63814,"name":"Bollinger County","oh":0,"pop":10559,"poverty":13.63,"state":"MO","unemp":3.46},"29019":{"home":57.7,"income":72758,"name":"Boone County","oh":1,"pop":188043,"poverty":16.58,"state":"MO","unemp":3.78},"29021":{"home":66.34,"income":62158,"name":"Buchanan County","oh":1,"pop":83568,"poverty":16.02,"state":"MO","unemp":4.16},"29023":{"home":64.64,"income":49089,"name":"Butler County","oh":1,"pop":42020,"poverty":20.5,"state":"MO","unemp":4.83},"29025":{"home":78.16,"income":64806,"name":"Caldwell County","oh":0,"pop":8927,"poverty":10.34,"state":"MO","unemp":2.88},"29027":{"home":75.52,"income":74176,"name":"Callaway County","oh":0,"pop":44741,"poverty":11.65,"state":"MO","unemp":5.08},"29029":{"home":82.49,"income":66387,"name":"Camden County","oh":0,"pop":43667,"poverty":12.6,"state":"MO","unemp":4.32},"29031":{"home":66.76,"income":68464,"name":"Cape Girardeau County","oh":1,"pop":82735,"poverty":13.95,"state":"MO","unemp":2.32},"29033":{"home":71.92,"income":62154,"name":"Carroll County","oh":0,"pop":8411,"poverty":13.7,"state":"MO","unemp":4.31},"29035":{"home":60.7,"income":50000,"name":"Carter County","oh":0,"pop":5297,"poverty":20.77,"state":"MO","unemp":3.84},"29037":{"home":75.63,"income":87535,"name":"Cass County","oh":0,"pop":110773,"poverty":6.24,"state":"MO","unemp":4.15},"29039":{"home":74.09,"income":48181,"name":"Cedar County","oh":0,"pop":14615,"poverty":16.98,"state":"MO","unemp":2.58},"29041":{"home":83.48,"income":71520,"name":"Chariton County","oh":0,"pop":7390,"poverty":8.78,"state":"MO","unemp":3.48},"29043":{"home":75.91,"income":83437,"name":"Christian County","oh":0,"pop":92915,"poverty":8.17,"state":"MO","unemp":3.36},"29045":{"home":78.25,"income":51781,"name":"Clark County","oh":0,"pop":6675,"poverty":11.2,"state":"MO","unemp":5.03},"29047":{"home":69.49,"income":88468,"name":"Clay County","oh":0,"pop":258122,"poverty":8.47,"state":"MO","unemp":3.77},"29049":{"home":75.75,"income":70627,"name":"Clinton County","oh":0,"pop":21414,"poverty":12.3,"state":"MO","unemp":2.97},"29051":{"home":67.87,"income":74876,"name":"Cole County","oh":1,"pop":77032,"poverty":9.05,"state":"MO","unemp":2.93},"29053":{"home":75.7,"income":70625,"name":"Cooper County","oh":0,"pop":16824,"poverty":11.68,"state":"MO","unemp":4.32},"29055":{"home":69.24,"income":57629,"name":"Crawford County","oh":0,"pop":22797,"poverty":14.05,"state":"MO","unemp":4.87},"29057":{"home":77.04,"income":53750,"name":"Dade County","oh":0,"pop":7641,"poverty":12.57,"state":"MO","unemp":3.24},"29059":{"home":75.95,"income":53464,"name":"Dallas County","oh":0,"pop":17551,"poverty":20.49,"state":"MO","unemp":3.9},"29061":{"home":79.14,"income":63984,"name":"Daviess County","oh":0,"pop":8477,"poverty":11.44,"state":"MO","unemp":1.38},"29063":{"home":71.14,"income":69826,"name":"DeKalb County","oh":0,"pop":10876,"poverty":8.67,"state":"MO","unemp":2.32},"29065":{"home":75.93,"income":56312,"name":"Dent County","oh":0,"pop":14539,"poverty":12.22,"state":"MO","unemp":4.44},"29067":{"home":80.6,"income":45985,"name":"Douglas County","oh":0,"pop":11965,"poverty":17.55,"state":"MO","unemp":6.08},"29069":{"home":62.28,"income":47849,"name":"Dunklin County","oh":0,"pop":27493,"poverty":22.03,"state":"MO","unemp":4.76},"29071":{"home":76.52,"income":73165,"name":"Franklin County","oh":0,"pop":105950,"poverty":8.16,"state":"MO","unemp":4.32},"29073":{"home":80.86,"income":64232,"name":"Gasconade County","oh":1,"pop":14746,"poverty":12.58,"state":"MO","unemp":3.28},"29075":{"home":74.4,"income":55848,"name":"Gentry County","oh":0,"pop":6245,"poverty":17.86,"state":"MO","unemp":2.19},"29077":{"home":57.48,"income":61479,"name":"Greene County","oh":1,"pop":303375,"poverty":13.65,"state":"MO","unemp":3.4},"29079":{"home":69.75,"income":51975,"name":"Grundy County","oh":0,"pop":9787,"poverty":17.58,"state":"MO","unemp":3.18},"29081":{"home":71.36,"income":54367,"name":"Harrison County","oh":1,"pop":8190,"poverty":19.56,"state":"MO","unemp":2.49},"29083":{"home":74.97,"income":57926,"name":"Henry County","oh":0,"pop":22328,"poverty":14.28,"state":"MO","unemp":4.38},"29085":{"home":82.45,"income":39390,"name":"Hickory County","oh":0,"pop":8585,"poverty":19.76,"state":"MO","unemp":13.81},"29087":{"home":77.24,"income":61187,"name":"Holt County","oh":0,"pop":4240,"poverty":10.23,"state":"MO","unemp":1.83},"29089":{"home":78.69,"income":65938,"name":"Howard County","oh":1,"pop":10147,"poverty":12.04,"state":"MO","unemp":3.74},"29091":{"home":70.3,"income":50993,"name":"Howell County","oh":0,"pop":40383,"poverty":20.31,"state":"MO","unemp":4.98},"29093":{"home":75.11,"income":48850,"name":"Iron County","oh":0,"pop":9446,"poverty":19.27,"state":"MO","unemp":3.0},"29095":{"home":59.14,"income":68577,"name":"Jackson County","oh":3,"pop":719976,"poverty":14.09,"state":"MO","unemp":4.66},"29097":{"home":62.8,"income":60694,"name":"Jasper County","oh":1,"pop":124357,"poverty":16.97,"state":"MO","unemp":3.63},"29099":{"home":82.23,"income":82851,"name":"Jefferson County","oh":0,"pop":229458,"poverty":9.03,"state":"MO","unemp":3.2},"29101":{"home":63.5,"income":67272,"name":"Johnson County","oh":0,"pop":54732,"poverty":11.81,"state":"MO","unemp":4.73},"29103":{"home":85.09,"income":57788,"name":"Knox County","oh":0,"pop":3756,"poverty":11.9,"state":"MO","unemp":1.08},"29105":{"home":68.21,"income":53282,"name":"Laclede County","oh":0,"pop":36390,"poverty":18.2,"state":"MO","unemp":5.34},"29107":{"home":75.75,"income":80612,"name":"Lafayette County","oh":0,"pop":33115,"poverty":9.29,"state":"MO","unemp":3.05},"29109":{"home":73.86,"income":61215,"name":"Lawrence County","oh":0,"pop":38593,"poverty":14.53,"state":"MO","unemp":4.26},"29111":{"home":76.3,"income":59934,"name":"Lewis County","oh":0,"pop":9924,"poverty":12.69,"state":"MO","unemp":5.11},"29113":{"home":79.02,"income":89278,"name":"Lincoln County","oh":0,"pop":63057,"poverty":10.23,"state":"MO","unemp":3.66},"29115":{"home":78.53,"income":61635,"name":"Linn County","oh":0,"pop":11852,"poverty":13.74,"state":"MO","unemp":3.15},"29117":{"home":72.31,"income":63627,"name":"Livingston County","oh":0,"pop":14364,"poverty":11.94,"state":"MO","unemp":2.74},"29119":{"home":67.34,"income":52375,"name":"McDonald County","oh":0,"pop":23701,"poverty":16.78,"state":"MO","unemp":6.82},"29121":{"home":76.83,"income":62357,"name":"Macon County","oh":0,"pop":15163,"poverty":9.52,"state":"MO","unemp":2.08},"29123":{"home":73.67,"income":54434,"name":"Madison County","oh":0,"pop":12729,"poverty":13.2,"state":"MO","unemp":4.77},"29125":{"home":78.33,"income":59455,"name":"Maries County","oh":0,"pop":8450,"poverty":13.51,"state":"MO","unemp":4.79},"29127":{"home":69.3,"income":62903,"name":"Marion County","oh":0,"pop":28457,"poverty":14.21,"state":"MO","unemp":3.79},"29129":{"home":81.03,"income":62679,"name":"Mercer County","oh":0,"pop":3482,"poverty":13.46,"state":"MO","unemp":3.46},"29131":{"home":73.86,"income":56736,"name":"Miller County","oh":0,"pop":25269,"poverty":14.37,"state":"MO","unemp":5.3},"29133":{"home":62.94,"income":48160,"name":"Mississippi County","oh":0,"pop":11902,"poverty":19.04,"state":"MO","unemp":2.74},"29135":{"home":79.16,"income":65715,"name":"Moniteau County","oh":0,"pop":15262,"poverty":10.29,"state":"MO","unemp":2.54},"29137":{"home":74.31,"income":54516,"name":"Monroe County","oh":0,"pop":8734,"poverty":14.18,"state":"MO","unemp":1.78},"29139":{"home":73.45,"income":65500,"name":"Montgomery County","oh":0,"pop":11426,"poverty":13.89,"state":"MO","unemp":2.99},"29141":{"home":79.68,"income":53412,"name":"Morgan County","oh":0,"pop":21717,"poverty":18.32,"state":"MO","unemp":2.89},"29143":{"home":64.23,"income":51881,"name":"New Madrid County","oh":0,"pop":15731,"poverty":17.68,"state":"MO","unemp":3.37},"29145":{"home":76.62,"income":66301,"name":"Newton County","oh":0,"pop":60118,"poverty":13.48,"state":"MO","unemp":5.92},"29147":{"home":62.29,"income":59315,"name":"Nodaway County","oh":0,"pop":20774,"poverty":17.09,"state":"MO","unemp":2.4},"29149":{"home":74.94,"income":43069,"name":"Oregon County","oh":0,"pop":8673,"poverty":23.59,"state":"MO","unemp":5.24},"29151":{"home":79.42,"income":76681,"name":"Osage County","oh":0,"pop":13402,"poverty":8.61,"state":"MO","unemp":1.69},"29153":{"home":82.1,"income":44163,"name":"Ozark County","oh":0,"pop":8873,"poverty":21.47,"state":"MO","unemp":5.0},"29155":{"home":55.58,"income":40089,"name":"Pemiscot County","oh":0,"pop":14958,"poverty":29.6,"state":"MO","unemp":9.69},"29157":{"home":76.52,"income":62981,"name":"Perry County","oh":0,"pop":18976,"poverty":13.85,"state":"MO","unemp":4.91},"29159":{"home":69.14,"income":60430,"name":"Pettis County","oh":1,"pop":43397,"poverty":15.6,"state":"MO","unemp":3.85},"29161":{"home":61.68,"income":58396,"name":"Phelps County","oh":0,"pop":45194,"poverty":16.78,"state":"MO","unemp":3.89},"29163":{"home":73.3,"income":54989,"name":"Pike County","oh":0,"pop":17711,"poverty":15.97,"state":"MO","unemp":3.94},"29165":{"home":67.36,"income":96227,"name":"Platte County","oh":0,"pop":110371,"poverty":7.02,"state":"MO","unemp":2.7},"29167":{"home":71.61,"income":59647,"name":"Polk County","oh":0,"pop":32444,"poverty":16.3,"state":"MO","unemp":4.01},"29169":{"home":61.16,"income":64466,"name":"Pulaski County","oh":0,"pop":53894,"poverty":12.67,"state":"MO","unemp":4.72},"29171":{"home":83.03,"income":63510,"name":"Putnam County","oh":0,"pop":4642,"poverty":15.52,"state":"MO","unemp":3.99},"29173":{"home":85.52,"income":65388,"name":"Ralls County","oh":0,"pop":10428,"poverty":11.38,"state":"MO","unemp":4.83},"29175":{"home":71.39,"income":53033,"name":"Randolph County","oh":0,"pop":24365,"poverty":13.88,"state":"MO","unemp":4.39},"29177":{"home":77.26,"income":74573,"name":"Ray County","oh":0,"pop":23145,"poverty":12.56,"state":"MO","unemp":3.43},"29179":{"home":79.83,"income":45028,"name":"Reynolds County","oh":0,"pop":6010,"poverty":17.32,"state":"MO","unemp":10.91},"29181":{"home":79.11,"income":42037,"name":"Ripley County","oh":0,"pop":10708,"poverty":24.79,"state":"MO","unemp":3.7},"29183":{"home":80.53,"income":104692,"name":"St. Charles County","oh":3,"pop":414535,"poverty":5.2,"state":"MO","unemp":2.93},"29185":{"home":75.98,"income":53043,"name":"St. Clair County","oh":0,"pop":9587,"poverty":14.68,"state":"MO","unemp":3.33},"29186":{"home":82.96,"income":66339,"name":"Ste. Genevieve County","oh":0,"pop":18571,"poverty":8.15,"state":"MO","unemp":4.22},"29187":{"home":68.2,"income":57477,"name":"St. Francois County","oh":0,"pop":66999,"poverty":15.94,"state":"MO","unemp":4.53},"29189":{"home":69.24,"income":82936,"name":"St. Louis County","oh":5,"pop":995569,"poverty":9.79,"state":"MO","unemp":4.33},"29195":{"home":69.81,"income":57931,"name":"Saline County","oh":0,"pop":23231,"poverty":16.41,"state":"MO","unemp":3.19},"29197":{"home":79.88,"income":61205,"name":"Schuyler County","oh":0,"pop":4038,"poverty":8.56,"state":"MO","unemp":3.75},"29199":{"home":82.39,"income":68913,"name":"Scotland County","oh":0,"pop":4686,"poverty":7.31,"state":"MO","unemp":0.24},"29201":{"home":71.1,"income":62782,"name":"Scott County","oh":0,"pop":37933,"poverty":12.81,"state":"MO","unemp":2.85},"29203":{"home":79.94,"income":55222,"name":"Shannon County","oh":0,"pop":7177,"poverty":18.03,"state":"MO","unemp":1.3},"29205":{"home":77.5,"income":51594,"name":"Shelby County","oh":0,"pop":5986,"poverty":15.92,"state":"MO","unemp":1.77},"29207":{"home":71.82,"income":57957,"name":"Stoddard County","oh":0,"pop":28470,"poverty":15.13,"state":"MO","unemp":3.72},"29209":{"home":83.29,"income":63520,"name":"Stone County","oh":0,"pop":32048,"poverty":13.92,"state":"MO","unemp":7.06},"29211":{"home":75.15,"income":56964,"name":"Sullivan County","oh":0,"pop":5857,"poverty":13.67,"state":"MO","unemp":2.46},"29213":{"home":67.03,"income":56497,"name":"Taney County","oh":1,"pop":56529,"poverty":15.63,"state":"MO","unemp":3.9},"29215":{"home":77.22,"income":50036,"name":"Texas County","oh":0,"pop":25161,"poverty":19.81,"state":"MO","unemp":5.1},"29217":{"home":71.29,"income":52230,"name":"Vernon County","oh":0,"pop":19687,"poverty":18.79,"state":"MO","unemp":4.22},"29219":{"home":80.25,"income":81209,"name":"Warren County","oh":1,"pop":37177,"poverty":8.01,"state":"MO","unemp":3.7},"29221":{"home":78.41,"income":56043,"name":"Washington County","oh":0,"pop":23470,"poverty":17.38,"state":"MO","unemp":3.64},"29223":{"home":75.08,"income":47226,"name":"Wayne County","oh":0,"pop":10862,"poverty":25.72,"state":"MO","unemp":7.34},"29225":{"home":77.45,"income":71155,"name":"Webster County","oh":0,"pop":40500,"poverty":15.24,"state":"MO","unemp":3.85},"29227":{"home":82.05,"income":47847,"name":"Worth County","oh":0,"pop":1934,"poverty":20.56,"state":"MO","unemp":1.56},"29229":{"home":77.13,"income":47909,"name":"Wright County","oh":0,"pop":18965,"poverty":18.75,"state":"MO","unemp":3.53},"29510":{"home":45.28,"income":56160,"name":"St. Louis city","oh":0,"pop":288512,"poverty":20.64,"state":"MO","unemp":5.05},"30001":{"home":65.84,"income":61268,"name":"Beaverhead County","oh":0,"pop":9713,"poverty":11.43,"state":"MT","unemp":1.28},"30003":{"home":66.71,"income":58750,"name":"Big Horn County","oh":0,"pop":12891,"poverty":22.08,"state":"MT","unemp":13.24},"30005":{"home":65.7,"income":64813,"name":"Blaine County","oh":0,"pop":6949,"poverty":18.29,"state":"MT","unemp":13.62},"30007":{"home":87.85,"income":70374,"name":"Broadwater County","oh":1,"pop":7668,"poverty":12.65,"state":"MT","unemp":3.51},"30009":{"home":78.0,"income":80261,"name":"Carbon County","oh":0,"pop":11116,"poverty":7.79,"state":"MT","unemp":4.46},"30011":{"home":62.17,"income":54167,"name":"Carter County","oh":0,"pop":1308,"poverty":15.4,"state":"MT","unemp":2.84},"30013":{"home":68.53,"income":67690,"name":"Cascade County","oh":1,"pop":84606,"poverty":13.06,"state":"MT","unemp":3.3},"30015":{"home":68.18,"income":58218,"name":"Chouteau County","oh":0,"pop":5906,"poverty":11.19,"state":"MT","unemp":3.18},"30017":{"home":69.87,"income":70605,"name":"Custer County","oh":0,"pop":11961,"poverty":11.34,"state":"MT","unemp":3.44},"30019":{"home":83.11,"income":55625,"name":"Daniels County","oh":0,"pop":1494,"poverty":12.87,"state":"MT","unemp":0.49},"30021":{"home":71.89,"income":71334,"name":"Dawson County","oh":0,"pop":8827,"poverty":8.71,"state":"MT","unemp":2.66},"30023":{"home":73.04,"income":57527,"name":"Deer Lodge County","oh":0,"pop":9597,"poverty":16.29,"state":"MT","unemp":3.42},"30025":{"home":69.44,"income":76250,"name":"Fallon County","oh":0,"pop":2760,"poverty":11.41,"state":"MT","unemp":0.0},"30027":{"home":63.36,"income":63706,"name":"Fergus County","oh":0,"pop":11687,"poverty":15.13,"state":"MT","unemp":4.21},"30029":{"home":72.36,"income":73925,"name":"Flathead County","oh":0,"pop":110695,"poverty":9.32,"state":"MT","unemp":2.93},"30031":{"home":61.06,"income":93528,"name":"Gallatin County","oh":2,"pop":124074,"poverty":9.52,"state":"MT","unemp":2.31},"30033":{"home":72.22,"income":69583,"name":"Garfield County","oh":0,"pop":1094,"poverty":13.41,"state":"MT","unemp":0.0},"30035":{"home":63.71,"income":46875,"name":"Glacier County","oh":1,"pop":13637,"poverty":31.14,"state":"MT","unemp":10.02},"30037":{"home":81.12,"income":58333,"name":"Golden Valley County","oh":0,"pop":899,"poverty":17.02,"state":"MT","unemp":1.54},"30039":{"home":77.87,"income":59265,"name":"Granite County","oh":0,"pop":3462,"poverty":10.17,"state":"MT","unemp":3.72},"30041":{"home":66.08,"income":52798,"name":"Hill County","oh":0,"pop":16155,"poverty":20.7,"state":"MT","unemp":4.24},"30043":{"home":84.19,"income":95490,"name":"Jefferson County","oh":0,"pop":12774,"poverty":5.72,"state":"MT","unemp":4.19},"30045":{"home":72.66,"income":59000,"name":"Judith Basin County","oh":0,"pop":2071,"poverty":13.31,"state":"MT","unemp":0.09},"30047":{"home":75.05,"income":63360,"name":"Lake County","oh":1,"pop":32561,"poverty":17.24,"state":"MT","unemp":5.74},"30049":{"home":70.08,"income":78237,"name":"Lewis and Clark County","oh":1,"pop":73464,"poverty":8.06,"state":"MT","unemp":3.24},"30051":{"home":63.4,"income":57857,"name":"Liberty County","oh":0,"pop":1952,"poverty":25.79,"state":"MT","unemp":0.6},"30053":{"home":77.63,"income":47143,"name":"Lincoln County","oh":0,"pop":21175,"poverty":15.44,"state":"MT","unemp":5.06},"30055":{"home":89.85,"income":69375,"name":"McCone County","oh":0,"pop":1670,"poverty":5.04,"state":"MT","unemp":2.13},"30057":{"home":80.96,"income":75250,"name":"Madison County","oh":0,"pop":9223,"poverty":6.17,"state":"MT","unemp":3.11},"30059":{"home":75.4,"income":71932,"name":"Meagher County","oh":0,"pop":2007,"poverty":12.35,"state":"MT","unemp":0.27},"30061":{"home":81.12,"income":63450,"name":"Mineral County","oh":0,"pop":4959,"poverty":13.53,"state":"MT","unemp":3.1},"30063":{"home":58.81,"income":75598,"name":"Missoula County","oh":1,"pop":120672,"poverty":10.13,"state":"MT","unemp":3.74},"30065":{"home":85.06,"income":58920,"name":"Musselshell County","oh":0,"pop":5152,"poverty":17.03,"state":"MT","unemp":9.22},"30067":{"home":69.45,"income":70047,"name":"Park County","oh":0,"pop":17710,"poverty":12.34,"state":"MT","unemp":2.71},"30069":{"home":72.85,"income":60208,"name":"Petroleum County","oh":0,"pop":447,"poverty":8.05,"state":"MT","unemp":0.0},"30071":{"home":73.54,"income":53417,"name":"Phillips County","oh":0,"pop":4221,"poverty":10.52,"state":"MT","unemp":1.79},"30073":{"home":67.72,"income":52338,"name":"Pondera County","oh":0,"pop":6035,"poverty":21.94,"state":"MT","unemp":5.83},"30075":{"home":78.81,"income":67045,"name":"Powder River County","oh":0,"pop":1815,"poverty":8.12,"state":"MT","unemp":0.71},"30077":{"home":72.53,"income":66923,"name":"Powell County","oh":0,"pop":7053,"poverty":5.56,"state":"MT","unemp":2.35},"30079":{"home":83.85,"income":51250,"name":"Prairie County","oh":0,"pop":1250,"poverty":20.61,"state":"MT","unemp":0.92},"30081":{"home":79.37,"income":71283,"name":"Ravalli County","oh":0,"pop":46727,"poverty":8.77,"state":"MT","unemp":3.2},"30083":{"home":67.12,"income":73084,"name":"Richland County","oh":0,"pop":11235,"poverty":6.6,"state":"MT","unemp":3.27},"30085":{"home":66.61,"income":57063,"name":"Roosevelt County","oh":1,"pop":10526,"poverty":30.4,"state":"MT","unemp":10.8},"30087":{"home":63.65,"income":49914,"name":"Rosebud County","oh":0,"pop":8165,"poverty":24.45,"state":"MT","unemp":10.59},"30089":{"home":81.29,"income":57476,"name":"Sanders County","oh":1,"pop":13285,"poverty":15.45,"state":"MT","unemp":5.95},"30091":{"home":71.82,"income":70147,"name":"Sheridan County","oh":0,"pop":3669,"poverty":10.42,"state":"MT","unemp":2.06},"30093":{"home":70.82,"income":61754,"name":"Silver Bow County","oh":0,"pop":35785,"poverty":14.85,"state":"MT","unemp":4.07},"30095":{"home":82.91,"income":84732,"name":"Stillwater County","oh":0,"pop":9182,"poverty":8.27,"state":"MT","unemp":3.09},"30097":{"home":79.7,"income":77000,"name":"Sweet Grass County","oh":0,"pop":3720,"poverty":7.86,"state":"MT","unemp":1.76},"30099":{"home":75.54,"income":70430,"name":"Teton County","oh":0,"pop":6353,"poverty":13.44,"state":"MT","unemp":1.05},"30101":{"home":63.12,"income":57731,"name":"Toole County","oh":0,"pop":5061,"poverty":12.57,"state":"MT","unemp":4.88},"30103":{"home":68.33,"income":67917,"name":"Treasure County","oh":0,"pop":732,"poverty":12.3,"state":"MT","unemp":1.01},"30105":{"home":78.48,"income":71695,"name":"Valley County","oh":0,"pop":7519,"poverty":10.12,"state":"MT","unemp":2.98},"30107":{"home":75.54,"income":49489,"name":"Wheatland County","oh":0,"pop":2056,"poverty":23.02,"state":"MT","unemp":0.82},"30109":{"home":72.45,"income":67462,"name":"Wibaux County","oh":0,"pop":1193,"poverty":15.81,"state":"MT","unemp":1.71},"30111":{"home":69.62,"income":76570,"name":"Yellowstone County","oh":1,"pop":168957,"poverty":9.19,"state":"MT","unemp":3.38},"31001":{"home":69.75,"income":68365,"name":"Adams County","oh":0,"pop":31052,"poverty":12.67,"state":"NE","unemp":2.44},"31003":{"home":79.02,"income":66105,"name":"Antelope County","oh":0,"pop":6305,"poverty":9.24,"state":"NE","unemp":1.73},"31005":{"home":80.54,"income":76250,"name":"Arthur County","oh":0,"pop":484,"poverty":7.23,"state":"NE","unemp":0.42},"31007":{"home":67.87,"income":78839,"name":"Banner County","oh":0,"pop":742,"poverty":7.68,"state":"NE","unemp":3.7},"31009":{"home":73.6,"income":69583,"name":"Blaine County","oh":0,"pop":422,"poverty":9.0,"state":"NE","unemp":1.3},"31011":{"home":81.88,"income":74947,"name":"Boone County","oh":0,"pop":5356,"poverty":9.64,"state":"NE","unemp":1.21},"31013":{"home":76.83,"income":68892,"name":"Box Butte County","oh":0,"pop":10714,"poverty":10.79,"state":"NE","unemp":1.6},"31015":{"home":85.62,"income":67045,"name":"Boyd County","oh":0,"pop":1688,"poverty":9.66,"state":"NE","unemp":2.28},"31017":{"home":74.2,"income":54676,"name":"Brown County","oh":0,"pop":2869,"poverty":13.39,"state":"NE","unemp":1.73},"31019":{"home":66.4,"income":75911,"name":"Buffalo County","oh":0,"pop":50579,"poverty":9.88,"state":"NE","unemp":2.56},"31021":{"home":75.04,"income":63685,"name":"Burt County","oh":0,"pop":6740,"poverty":13.22,"state":"NE","unemp":1.12},"31023":{"home":79.88,"income":79268,"name":"Butler County","oh":0,"pop":8424,"poverty":9.74,"state":"NE","unemp":1.2},"31025":{"home":85.43,"income":91836,"name":"Cass County","oh":0,"pop":27161,"poverty":5.22,"state":"NE","unemp":1.72},"31027":{"home":79.56,"income":73578,"name":"Cedar County","oh":0,"pop":8315,"poverty":7.07,"state":"NE","unemp":1.73},"31029":{"home":79.07,"income":68173,"name":"Chase County","oh":0,"pop":3671,"poverty":7.48,"state":"NE","unemp":1.89},"31031":{"home":61.35,"income":66270,"name":"Cherry County","oh":0,"pop":5498,"poverty":8.29,"state":"NE","unemp":0.44},"31033":{"home":66.73,"income":60348,"name":"Cheyenne County","oh":0,"pop":9533,"poverty":14.27,"state":"NE","unemp":3.39},"31035":{"home":81.93,"income":78986,"name":"Clay County","oh":0,"pop":6095,"poverty":6.9,"state":"NE","unemp":1.91},"31037":{"home":76.34,"income":82530,"name":"Colfax County","oh":0,"pop":10641,"poverty":6.88,"state":"NE","unemp":1.34},"31039":{"home":68.93,"income":71104,"name":"Cuming County","oh":0,"pop":8975,"poverty":6.73,"state":"NE","unemp":2.23},"31041":{"home":68.95,"income":67906,"name":"Custer County","oh":1,"pop":10518,"poverty":7.06,"state":"NE","unemp":2.61},"31043":{"home":63.91,"income":70329,"name":"Dakota County","oh":0,"pop":21354,"poverty":11.54,"state":"NE","unemp":4.81},"31045":{"home":61.77,"income":56280,"name":"Dawes County","oh":0,"pop":8140,"poverty":13.13,"state":"NE","unemp":1.64},"31047":{"home":66.35,"income":69880,"name":"Dawson County","oh":0,"pop":24202,"poverty":10.82,"state":"NE","unemp":1.4},"31049":{"home":81.6,"income":70096,"name":"Deuel County","oh":0,"pop":1847,"poverty":9.42,"state":"NE","unemp":1.38},"31051":{"home":76.51,"income":72454,"name":"Dixon County","oh":0,"pop":5545,"poverty":7.34,"state":"NE","unemp":2.37},"31053":{"home":66.92,"income":74329,"name":"Dodge County","oh":0,"pop":37351,"poverty":11.02,"state":"NE","unemp":3.43},"31055":{"home":61.53,"income":80391,"name":"Douglas County","oh":0,"pop":590736,"poverty":11.8,"state":"NE","unemp":3.84},"31057":{"home":73.56,"income":58922,"name":"Dundy County","oh":0,"pop":1736,"poverty":13.99,"state":"NE","unemp":0.32},"31059":{"home":80.4,"income":76295,"name":"Fillmore County","oh":0,"pop":5541,"poverty":8.83,"state":"NE","unemp":0.4},"31061":{"home":83.22,"income":60195,"name":"Franklin County","oh":0,"pop":2846,"poverty":12.27,"state":"NE","unemp":2.66},"31063":{"home":74.02,"income":70132,"name":"Frontier County","oh":0,"pop":2569,"poverty":11.38,"state":"NE","unemp":2.61},"31065":{"home":76.32,"income":61048,"name":"Furnas County","oh":0,"pop":4568,"poverty":12.97,"state":"NE","unemp":1.04},"31067":{"home":73.53,"income":67247,"name":"Gage County","oh":0,"pop":21629,"poverty":12.6,"state":"NE","unemp":1.54},"31069":{"home":78.67,"income":41882,"name":"Garden County","oh":0,"pop":1761,"poverty":16.54,"state":"NE","unemp":5.42},"31071":{"home":76.03,"income":62804,"name":"Garfield County","oh":0,"pop":1718,"poverty":8.82,"state":"NE","unemp":2.73},"31073":{"home":80.98,"income":77500,"name":"Gosper County","oh":0,"pop":2040,"poverty":10.32,"state":"NE","unemp":2.38},"31075":{"home":70.77,"income":70147,"name":"Grant County","oh":0,"pop":626,"poverty":12.16,"state":"NE","unemp":0.3},"31077":{"home":81.73,"income":63929,"name":"Greeley County","oh":0,"pop":2202,"poverty":13.08,"state":"NE","unemp":3.52},"31079":{"home":61.98,"income":69251,"name":"Hall County","oh":0,"pop":62536,"poverty":14.1,"state":"NE","unemp":4.01},"31081":{"home":82.97,"income":83994,"name":"Hamilton County","oh":0,"pop":9464,"poverty":5.22,"state":"NE","unemp":2.29},"31083":{"home":85.8,"income":70625,"name":"Harlan County","oh":0,"pop":2847,"poverty":6.72,"state":"NE","unemp":1.29},"31085":{"home":67.9,"income":69250,"name":"Hayes County","oh":0,"pop":843,"poverty":12.69,"state":"NE","unemp":0.0},"31087":{"home":78.67,"income":51567,"name":"Hitchcock County","oh":0,"pop":2569,"poverty":12.75,"state":"NE","unemp":1.71},"31089":{"home":72.27,"income":68513,"name":"Holt County","oh":0,"pop":10102,"poverty":11.69,"state":"NE","unemp":0.85},"31091":{"home":55.35,"income":49464,"name":"Hooker County","oh":0,"pop":647,"poverty":6.23,"state":"NE","unemp":3.92},"31093":{"home":78.23,"income":76767,"name":"Howard County","oh":0,"pop":6534,"poverty":4.82,"state":"NE","unemp":3.75},"31095":{"home":74.87,"income":59044,"name":"Jefferson County","oh":0,"pop":7161,"poverty":10.13,"state":"NE","unemp":1.17},"31097":{"home":67.21,"income":57632,"name":"Johnson County","oh":0,"pop":5261,"poverty":9.72,"state":"NE","unemp":3.37},"31099":{"home":77.47,"income":78631,"name":"Kearney County","oh":0,"pop":6713,"poverty":7.21,"state":"NE","unemp":1.67},"31101":{"home":71.12,"income":60645,"name":"Keith County","oh":0,"pop":8219,"poverty":10.37,"state":"NE","unemp":2.03},"31103":{"home":80.79,"income":64000,"name":"Keya Paha County","oh":0,"pop":822,"poverty":7.18,"state":"NE","unemp":1.02},"31105":{"home":75.22,"income":56712,"name":"Kimball County","oh":0,"pop":3248,"poverty":12.17,"state":"NE","unemp":0.72},"31107":{"home":78.43,"income":64636,"name":"Knox County","oh":0,"pop":8363,"poverty":13.68,"state":"NE","unemp":3.6},"31109":{"home":58.95,"income":74793,"name":"Lancaster County","oh":1,"pop":326696,"poverty":11.88,"state":"NE","unemp":3.15},"31111":{"home":65.63,"income":65148,"name":"Lincoln County","oh":0,"pop":33802,"poverty":12.36,"state":"NE","unemp":3.63},"31113":{"home":78.93,"income":74271,"name":"Logan County","oh":0,"pop":773,"poverty":5.61,"state":"NE","unemp":0.25},"31115":{"home":73.36,"income":71667,"name":"Loup County","oh":0,"pop":578,"poverty":6.92,"state":"NE","unemp":0.0},"31117":{"home":65.09,"income":58684,"name":"McPherson County","oh":0,"pop":475,"poverty":12.21,"state":"NE","unemp":0.0},"31119":{"home":65.45,"income":63128,"name":"Madison County","oh":0,"pop":35532,"poverty":13.09,"state":"NE","unemp":2.98},"31121":{"home":82.18,"income":68354,"name":"Merrick County","oh":0,"pop":7724,"poverty":7.9,"state":"NE","unemp":0.37},"31123":{"home":77.27,"income":58500,"name":"Morrill County","oh":0,"pop":4534,"poverty":13.9,"state":"NE","unemp":3.64},"31125":{"home":72.88,"income":65179,"name":"Nance County","oh":0,"pop":3324,"poverty":16.63,"state":"NE","unemp":3.62},"31127":{"home":65.86,"income":60924,"name":"Nemaha County","oh":0,"pop":7046,"poverty":13.29,"state":"NE","unemp":6.01},"31129":{"home":83.48,"income":73976,"name":"Nuckolls County","oh":0,"pop":4087,"poverty":5.7,"state":"NE","unemp":0.6},"31131":{"home":82.28,"income":82188,"name":"Otoe County","oh":0,"pop":16241,"poverty":9.09,"state":"NE","unemp":2.71},"31133":{"home":80.18,"income":62188,"name":"Pawnee County","oh":0,"pop":2530,"poverty":13.55,"state":"NE","unemp":2.23},"31135":{"home":78.69,"income":72778,"name":"Perkins County","oh":0,"pop":2821,"poverty":7.15,"state":"NE","unemp":1.52},"31137":{"home":68.31,"income":68919,"name":"Phelps County","oh":0,"pop":9009,"poverty":12.24,"state":"NE","unemp":1.2},"31139":{"home":78.15,"income":72357,"name":"Pierce County","oh":0,"pop":7325,"poverty":7.55,"state":"NE","unemp":2.08},"31141":{"home":71.58,"income":71552,"name":"Platte County","oh":0,"pop":34716,"poverty":9.76,"state":"NE","unemp":2.0},"31143":{"home":78.95,"income":69768,"name":"Polk County","oh":0,"pop":5225,"poverty":7.87,"state":"NE","unemp":1.33},"31145":{"home":73.02,"income":63697,"name":"Red Willow County","oh":0,"pop":10557,"poverty":14.04,"state":"NE","unemp":1.38},"31147":{"home":77.32,"income":60108,"name":"Richardson County","oh":0,"pop":7751,"poverty":10.45,"state":"NE","unemp":3.72},"31149":{"home":69.33,"income":58125,"name":"Rock County","oh":0,"pop":1319,"poverty":10.82,"state":"NE","unemp":1.17},"31151":{"home":75.89,"income":79910,"name":"Saline County","oh":0,"pop":14650,"poverty":8.9,"state":"NE","unemp":2.91},"31153":{"home":70.35,"income":103321,"name":"Sarpy County","oh":0,"pop":197389,"poverty":5.57,"state":"NE","unemp":2.61},"31155":{"home":82.12,"income":94066,"name":"Saunders County","oh":0,"pop":23048,"poverty":6.29,"state":"NE","unemp":2.49},"31157":{"home":69.31,"income":63614,"name":"Scotts Bluff County","oh":0,"pop":35843,"poverty":12.88,"state":"NE","unemp":2.68},"31159":{"home":72.01,"income":82444,"name":"Seward County","oh":1,"pop":17641,"poverty":7.38,"state":"NE","unemp":2.13},"31161":{"home":74.15,"income":60121,"name":"Sheridan County","oh":0,"pop":5014,"poverty":11.27,"state":"NE","unemp":1.96},"31163":{"home":75.4,"income":63578,"name":"Sherman County","oh":0,"pop":2967,"poverty":8.65,"state":"NE","unemp":3.04},"31165":{"home":59.59,"income":53929,"name":"Sioux County","oh":0,"pop":1171,"poverty":14.94,"state":"NE","unemp":1.75},"31167":{"home":78.25,"income":80687,"name":"Stanton County","oh":0,"pop":5796,"poverty":9.37,"state":"NE","unemp":0.74},"31169":{"home":77.53,"income":66213,"name":"Thayer County","oh":0,"pop":4901,"poverty":9.01,"state":"NE","unemp":1.99},"31171":{"home":68.09,"income":65000,"name":"Thomas County","oh":0,"pop":564,"poverty":8.87,"state":"NE","unemp":2.1},"31173":{"home":61.01,"income":69177,"name":"Thurston County","oh":0,"pop":6627,"poverty":13.89,"state":"NE","unemp":9.97},"31175":{"home":73.78,"income":61852,"name":"Valley County","oh":0,"pop":4066,"poverty":9.31,"state":"NE","unemp":0.24},"31177":{"home":83.17,"income":94396,"name":"Washington County","oh":0,"pop":21106,"poverty":6.4,"state":"NE","unemp":1.81},"31179":{"home":61.26,"income":66215,"name":"Wayne County","oh":0,"pop":9844,"poverty":13.18,"state":"NE","unemp":4.34},"31181":{"home":80.58,"income":64347,"name":"Webster County","oh":0,"pop":3360,"poverty":9.63,"state":"NE","unemp":0.68},"31183":{"home":77.72,"income":70250,"name":"Wheeler County","oh":0,"pop":847,"poverty":5.19,"state":"NE","unemp":2.31},"31185":{"home":75.53,"income":77757,"name":"York County","oh":1,"pop":14286,"poverty":9.17,"state":"NE","unemp":1.52},"32001":{"home":69.88,"income":79163,"name":"Churchill County","oh":0,"pop":25805,"poverty":8.14,"state":"NV","unemp":5.32},"32003":{"home":57.78,"income":76472,"name":"Clark County","oh":3,"pop":2329548,"poverty":13.04,"state":"NV","unemp":7.59},"32005":{"home":78.83,"income":90754,"name":"Douglas County","oh":0,"pop":49623,"poverty":9.04,"state":"NV","unemp":3.03},"32007":{"home":71.35,"income":86487,"name":"Elko County","oh":0,"pop":54047,"poverty":9.83,"state":"NV","unemp":4.5},"32009":{"home":60.83,"income":41715,"name":"Esmeralda County","oh":0,"pop":1028,"poverty":12.43,"state":"NV","unemp":0.57},"32011":{"home":82.96,"income":70473,"name":"Eureka County","oh":0,"pop":1585,"poverty":24.89,"state":"NV","unemp":0.0},"32013":{"home":73.97,"income":81073,"name":"Humboldt County","oh":0,"pop":17289,"poverty":10.63,"state":"NV","unemp":5.78},"32015":{"home":77.41,"income":89014,"name":"Lander County","oh":0,"pop":5770,"poverty":10.74,"state":"NV","unemp":9.4},"32017":{"home":74.96,"income":72307,"name":"Lincoln County","oh":0,"pop":4405,"poverty":5.04,"state":"NV","unemp":1.88},"32019":{"home":76.66,"income":80812,"name":"Lyon County","oh":0,"pop":61680,"poverty":11.7,"state":"NV","unemp":6.47},"32021":{"home":72.51,"income":54855,"name":"Mineral County","oh":0,"pop":4542,"poverty":18.47,"state":"NV","unemp":9.8},"32023":{"home":77.79,"income":60714,"name":"Nye County","oh":0,"pop":54344,"poverty":14.14,"state":"NV","unemp":8.07},"32027":{"home":73.04,"income":66902,"name":"Pershing County","oh":0,"pop":6487,"poverty":11.82,"state":"NV","unemp":3.89},"32029":{"home":96.09,"income":93409,"name":"Storey County","oh":0,"pop":4140,"poverty":7.06,"state":"NV","unemp":6.47},"32031":{"home":59.87,"income":88096,"name":"Washoe County","oh":2,"pop":497200,"poverty":10.65,"state":"NV","unemp":5.13},"32033":{"home":75.41,"income":72865,"name":"White Pine County","oh":0,"pop":8735,"poverty":8.19,"state":"NV","unemp":4.02},"32510":{"home":62.34,"income":72355,"name":"Carson City","oh":0,"pop":58384,"poverty":10.34,"state":"NV","unemp":5.51},"33001":{"home":80.1,"income":92783,"name":"Belknap County","oh":1,"pop":64659,"poverty":8.48,"state":"NH","unemp":3.1},"33003":{"home":83.35,"income":86463,"name":"Carroll County","oh":0,"pop":51804,"poverty":7.59,"state":"NH","unemp":5.06},"33005":{"home":72.71,"income":83329,"name":"Cheshire County","oh":1,"pop":77297,"poverty":8.7,"state":"NH","unemp":3.31},"33007":{"home":74.25,"income":57677,"name":"Coos County","oh":1,"pop":31271,"poverty":13.21,"state":"NH","unemp":4.28},"33009":{"home":71.32,"income":88261,"name":"Grafton County","oh":1,"pop":92120,"poverty":10.35,"state":"NH","unemp":3.18},"33011":{"home":67.39,"income":103545,"name":"Hillsborough County","oh":2,"pop":426378,"poverty":6.74,"state":"NH","unemp":3.08},"33013":{"home":73.49,"income":97004,"name":"Merrimack County","oh":2,"pop":155967,"poverty":7.64,"state":"NH","unemp":3.12},"33015":{"home":78.45,"income":118331,"name":"Rockingham County","oh":1,"pop":319082,"poverty":4.77,"state":"NH","unemp":3.55},"33017":{"home":67.11,"income":88570,"name":"Strafford County","oh":3,"pop":132575,"poverty":8.66,"state":"NH","unemp":3.54},"33019":{"home":75.41,"income":80858,"name":"Sullivan County","oh":1,"pop":43715,"poverty":10.12,"state":"NH","unemp":3.08},"34001":{"home":68.71,"income":78050,"name":"Atlantic County","oh":13,"pop":276270,"poverty":13.18,"state":"NJ","unemp":8.78},"34003":{"home":65.34,"income":124884,"name":"Bergen County","oh":2,"pop":962316,"poverty":6.79,"state":"NJ","unemp":5.83},"34005":{"home":76.13,"income":108111,"name":"Burlington County","oh":1,"pop":467805,"poverty":6.65,"state":"NJ","unemp":5.27},"34007":{"home":64.69,"income":88755,"name":"Camden County","oh":2,"pop":527257,"poverty":12.4,"state":"NJ","unemp":6.89},"34009":{"home":80.32,"income":91128,"name":"Cape May County","oh":2,"pop":94941,"poverty":8.73,"state":"NJ","unemp":5.27},"34011":{"home":66.53,"income":67436,"name":"Cumberland County","oh":3,"pop":153305,"poverty":15.58,"state":"NJ","unemp":6.76},"34013":{"home":44.9,"income":80789,"name":"Essex County","oh":2,"pop":863002,"poverty":14.64,"state":"NJ","unemp":8.72},"34015":{"home":80.12,"income":105115,"name":"Gloucester County","oh":1,"pop":306954,"poverty":7.7,"state":"NJ","unemp":5.27},"34017":{"home":30.72,"income":91795,"name":"Hudson County","oh":4,"pop":718323,"poverty":14.93,"state":"NJ","unemp":6.01},"34019":{"home":85.14,"income":141715,"name":"Hunterdon County","oh":0,"pop":130160,"poverty":3.99,"state":"NJ","unemp":4.6},"34021":{"home":62.15,"income":100645,"name":"Mercer County","oh":1,"pop":385864,"poverty":10.27,"state":"NJ","unemp":6.31},"34023":{"home":63.65,"income":111549,"name":"Middlesex County","oh":3,"pop":871290,"poverty":8.59,"state":"NJ","unemp":6.69},"34025":{"home":75.55,"income":124845,"name":"Monmouth County","oh":1,"pop":645353,"poverty":6.49,"state":"NJ","unemp":5.4},"34027":{"home":74.29,"income":137326,"name":"Morris County","oh":0,"pop":514528,"poverty":4.92,"state":"NJ","unemp":5.2},"34029":{"home":80.74,"income":89863,"name":"Ocean County","oh":0,"pop":654362,"poverty":10.5,"state":"NJ","unemp":5.45},"34031":{"home":53.07,"income":87522,"name":"Passaic County","oh":3,"pop":521012,"poverty":12.99,"state":"NJ","unemp":8.0},"34033":{"home":70.98,"income":79960,"name":"Salem County","oh":1,"pop":65275,"poverty":12.68,"state":"NJ","unemp":7.42},"34035":{"home":74.3,"income":140374,"name":"Somerset County","oh":0,"pop":349846,"poverty":5.37,"state":"NJ","unemp":4.74},"34037":{"home":83.73,"income":116186,"name":"Sussex County","oh":0,"pop":145807,"poverty":5.54,"state":"NJ","unemp":5.12},"34039":{"home":57.36,"income":103202,"name":"Union County","oh":5,"pop":579290,"poverty":9.18,"state":"NJ","unemp":6.51},"34041":{"home":75.06,"income":100869,"name":"Warren County","oh":0,"pop":110849,"poverty":8.34,"state":"NJ","unemp":5.1},"35001":{"home":64.54,"income":69473,"name":"Bernalillo County","oh":1,"pop":673930,"poverty":15.17,"state":"NM","unemp":5.33},"35003":{"home":93.8,"income":49864,"name":"Catron County","oh":0,"pop":3743,"poverty":24.78,"state":"NM","unemp":4.21},"35005":{"home":71.29,"income":52938,"name":"Chaves County","oh":0,"pop":64217,"poverty":24.29,"state":"NM","unemp":5.03},"35006":{"home":76.09,"income":50759,"name":"Cibola County","oh":0,"pop":26845,"poverty":28.4,"state":"NM","unemp":10.5},"35007":{"home":71.78,"income":53554,"name":"Colfax County","oh":0,"pop":12322,"poverty":18.15,"state":"NM","unemp":3.76},"35009":{"home":62.67,"income":57309,"name":"Curry County","oh":0,"pop":47638,"poverty":20.51,"state":"NM","unemp":8.16},"35011":{"home":71.46,"income":null,"name":"De Baca County","oh":0,"pop":1576,"poverty":15.49,"state":"NM","unemp":8.44},"35013":{"home":65.47,"income":56848,"name":"Doña Ana County","oh":1,"pop":224266,"poverty":21.32,"state":"NM","unemp":6.76},"35015":{"home":73.35,"income":78426,"name":"Eddy County","oh":0,"pop":61105,"poverty":13.84,"state":"NM","unemp":5.5},"35017":{"home":75.79,"income":44958,"name":"Grant County","oh":0,"pop":27775,"poverty":19.5,"state":"NM","unemp":8.37},"35019":{"home":74.63,"income":42750,"name":"Guadalupe County","oh":0,"pop":4381,"poverty":25.47,"state":"NM","unemp":2.6},"35021":{"home":76.92,"income":48553,"name":"Harding County","oh":0,"pop":741,"poverty":19.43,"state":"NM","unemp":15.31},"35023":{"home":80.78,"income":48882,"name":"Hidalgo County","oh":0,"pop":4041,"poverty":23.08,"state":"NM","unemp":3.5},"35025":{"home":71.18,"income":68015,"name":"Lea County","oh":0,"pop":73733,"poverty":18.69,"state":"NM","unemp":6.87},"35027":{"home":76.81,"income":53303,"name":"Lincoln County","oh":0,"pop":20224,"poverty":19.26,"state":"NM","unemp":5.07},"35028":{"home":74.83,"income":147139,"name":"Los Alamos County","oh":0,"pop":19435,"poverty":3.53,"state":"NM","unemp":0.62},"35029":{"home":70.88,"income":36419,"name":"Luna County","oh":1,"pop":25611,"poverty":28.58,"state":"NM","unemp":5.41},"35031":{"home":69.78,"income":47668,"name":"McKinley County","oh":0,"pop":70431,"poverty":33.24,"state":"NM","unemp":9.04},"35033":{"home":86.74,"income":53663,"name":"Mora County","oh":0,"pop":4149,"poverty":21.43,"state":"NM","unemp":3.77},"35035":{"home":66.99,"income":55876,"name":"Otero County","oh":0,"pop":68816,"poverty":19.26,"state":"NM","unemp":8.56},"35037":{"home":71.59,"income":41946,"name":"Quay County","oh":0,"pop":8564,"poverty":27.12,"state":"NM","unemp":7.43},"35039":{"home":80.0,"income":57155,"name":"Rio Arriba County","oh":0,"pop":40070,"poverty":18.24,"state":"NM","unemp":4.93},"35041":{"home":60.65,"income":52685,"name":"Roosevelt County","oh":0,"pop":18928,"poverty":21.85,"state":"NM","unemp":5.43},"35043":{"home":83.54,"income":86636,"name":"Sandoval County","oh":1,"pop":153604,"poverty":9.96,"state":"NM","unemp":5.18},"35045":{"home":71.2,"income":55872,"name":"San Juan County","oh":0,"pop":120942,"poverty":23.08,"state":"NM","unemp":7.26},"35047":{"home":73.07,"income":49431,"name":"San Miguel County","oh":0,"pop":26850,"poverty":24.41,"state":"NM","unemp":4.79},"35049":{"home":71.51,"income":79071,"name":"Santa Fe County","oh":1,"pop":156105,"poverty":11.97,"state":"NM","unemp":5.26},"35051":{"home":71.8,"income":41600,"name":"Sierra County","oh":0,"pop":11500,"poverty":21.38,"state":"NM","unemp":4.16},"35053":{"home":75.1,"income":36570,"name":"Socorro County","oh":0,"pop":16200,"poverty":33.16,"state":"NM","unemp":1.26},"35055":{"home":77.61,"income":58950,"name":"Taos County","oh":0,"pop":34543,"poverty":15.46,"state":"NM","unemp":7.61},"35057":{"home":81.74,"income":57842,"name":"Torrance County","oh":0,"pop":15490,"poverty":18.27,"state":"NM","unemp":9.03},"35059":{"home":72.39,"income":46694,"name":"Union County","oh":0,"pop":4013,"poverty":16.58,"state":"NM","unemp":6.18},"35061":{"home":83.18,"income":58933,"name":"Valencia County","oh":0,"pop":78458,"poverty":18.13,"state":"NM","unemp":6.95},"36001":{"home":56.58,"income":85333,"name":"Albany County","oh":4,"pop":317018,"poverty":13.03,"state":"NY","unemp":5.04},"36003":{"home":79.27,"income":62869,"name":"Allegany County","oh":0,"pop":47159,"poverty":16.18,"state":"NY","unemp":7.11},"36005":{"home":20.07,"income":48676,"name":"Bronx County","oh":0,"pop":1404779,"poverty":27.81,"state":"NY","unemp":11.4},"36007":{"home":64.53,"income":62616,"name":"Broome County","oh":1,"pop":197378,"poverty":18.49,"state":"NY","unemp":7.09},"36009":{"home":75.23,"income":59540,"name":"Cattaraugus County","oh":1,"pop":76145,"poverty":19.1,"state":"NY","unemp":4.98},"36011":{"home":71.43,"income":67904,"name":"Cayuga County","oh":1,"pop":75102,"poverty":13.51,"state":"NY","unemp":3.8},"36013":{"home":68.85,"income":58351,"name":"Chautauqua County","oh":2,"pop":125544,"poverty":17.43,"state":"NY","unemp":5.92},"36015":{"home":68.44,"income":63716,"name":"Chemung County","oh":0,"pop":82147,"poverty":16.31,"state":"NY","unemp":6.15},"36017":{"home":75.38,"income":62948,"name":"Chenango County","oh":0,"pop":46321,"poverty":11.81,"state":"NY","unemp":6.41},"36019":{"home":69.36,"income":71224,"name":"Clinton County","oh":0,"pop":78493,"poverty":13.69,"state":"NY","unemp":4.06},"36021":{"home":76.29,"income":81528,"name":"Columbia County","oh":0,"pop":61100,"poverty":12.11,"state":"NY","unemp":5.44},"36023":{"home":66.3,"income":70418,"name":"Cortland County","oh":1,"pop":46246,"poverty":12.76,"state":"NY","unemp":4.58},"36025":{"home":77.25,"income":63337,"name":"Delaware County","oh":0,"pop":44487,"poverty":14.41,"state":"NY","unemp":6.45},"36027":{"home":69.19,"income":99478,"name":"Dutchess County","oh":2,"pop":298220,"poverty":8.43,"state":"NY","unemp":5.24},"36029":{"home":65.82,"income":72839,"name":"Erie County","oh":3,"pop":950622,"poverty":13.85,"state":"NY","unemp":4.87},"36031":{"home":77.25,"income":71661,"name":"Essex County","oh":0,"pop":36973,"poverty":11.21,"state":"NY","unemp":3.97},"36033":{"home":72.52,"income":65151,"name":"Franklin County","oh":0,"pop":46696,"poverty":18.25,"state":"NY","unemp":3.93},"36035":{"home":71.37,"income":66533,"name":"Fulton County","oh":1,"pop":52487,"poverty":13.13,"state":"NY","unemp":3.46},"36037":{"home":73.78,"income":73314,"name":"Genesee County","oh":0,"pop":57787,"poverty":10.64,"state":"NY","unemp":4.58},"36039":{"home":77.23,"income":77945,"name":"Greene County","oh":0,"pop":47409,"poverty":9.88,"state":"NY","unemp":3.94},"36041":{"home":82.42,"income":68835,"name":"Hamilton County","oh":0,"pop":5089,"poverty":10.58,"state":"NY","unemp":4.45},"36043":{"home":76.62,"income":68515,"name":"Herkimer County","oh":1,"pop":59757,"poverty":13.41,"state":"NY","unemp":4.33},"36045":{"home":54.65,"income":66301,"name":"Jefferson County","oh":1,"pop":115040,"poverty":13.68,"state":"NY","unemp":5.88},"36047":{"home":29.5,"income":80263,"name":"Kings County","oh":0,"pop":2631580,"poverty":19.13,"state":"NY","unemp":7.92},"36049":{"home":80.22,"income":68182,"name":"Lewis County","oh":0,"pop":26607,"poverty":12.34,"state":"NY","unemp":5.18},"36051":{"home":76.35,"income":74001,"name":"Livingston County","oh":0,"pop":61498,"poverty":11.09,"state":"NY","unemp":5.16},"36053":{"home":78.26,"income":75499,"name":"Madison County","oh":0,"pop":67328,"poverty":10.01,"state":"NY","unemp":4.25},"36055":{"home":63.66,"income":76382,"name":"Monroe County","oh":1,"pop":753753,"poverty":13.65,"state":"NY","unemp":4.94},"36057":{"home":70.39,"income":64943,"name":"Montgomery County","oh":0,"pop":49528,"poverty":14.58,"state":"NY","unemp":4.73},"36059":{"home":81.95,"income":146202,"name":"Nassau County","oh":1,"pop":1389591,"poverty":5.42,"state":"NY","unemp":4.82},"36061":{"home":25.05,"income":103931,"name":"New York County","oh":0,"pop":1629477,"poverty":16.52,"state":"NY","unemp":7.58},"36063":{"home":71.16,"income":69633,"name":"Niagara County","oh":3,"pop":210721,"poverty":13.53,"state":"NY","unemp":5.92},"36065":{"home":67.67,"income":70154,"name":"Oneida County","oh":1,"pop":229124,"poverty":15.47,"state":"NY","unemp":4.65},"36067":{"home":65.93,"income":76945,"name":"Onondaga County","oh":1,"pop":471129,"poverty":13.8,"state":"NY","unemp":5.19},"36069":{"home":73.69,"income":82324,"name":"Ontario County","oh":0,"pop":112625,"poverty":9.01,"state":"NY","unemp":3.71},"36071":{"home":67.82,"income":97178,"name":"Orange County","oh":2,"pop":406616,"poverty":12.64,"state":"NY","unemp":5.47},"36073":{"home":77.16,"income":65969,"name":"Orleans County","oh":0,"pop":39608,"poverty":12.75,"state":"NY","unemp":5.09},"36075":{"home":73.41,"income":69183,"name":"Oswego County","oh":0,"pop":117953,"poverty":16.32,"state":"NY","unemp":7.01},"36077":{"home":73.87,"income":68885,"name":"Otsego County","oh":0,"pop":60108,"poverty":12.54,"state":"NY","unemp":6.37},"36079":{"home":83.78,"income":126257,"name":"Putnam County","oh":0,"pop":98107,"poverty":7.11,"state":"NY","unemp":4.43},"36081":{"home":44.86,"income":86136,"name":"Queens County","oh":0,"pop":2323052,"poverty":12.9,"state":"NY","unemp":7.25},"36083":{"home":64.77,"income":87915,"name":"Rensselaer County","oh":2,"pop":160332,"poverty":11.82,"state":"NY","unemp":5.3},"36085":{"home":67.74,"income":98333,"name":"Richmond County","oh":0,"pop":494956,"poverty":11.49,"state":"NY","unemp":5.57},"36087":{"home":67.93,"income":109959,"name":"Rockland County","oh":0,"pop":341883,"poverty":16.25,"state":"NY","unemp":5.6},"36089":{"home":71.87,"income":62850,"name":"St. Lawrence County","oh":0,"pop":107226,"poverty":16.86,"state":"NY","unemp":5.26},"36091":{"home":72.3,"income":100787,"name":"Saratoga County","oh":2,"pop":238284,"poverty":7.06,"state":"NY","unemp":3.27},"36093":{"home":64.04,"income":79623,"name":"Schenectady County","oh":1,"pop":160369,"poverty":13.27,"state":"NY","unemp":5.77},"36095":{"home":76.39,"income":70133,"name":"Schoharie County","oh":0,"pop":30049,"poverty":11.73,"state":"NY","unemp":4.99},"36097":{"home":79.17,"income":67663,"name":"Schuyler County","oh":0,"pop":17562,"poverty":14.84,"state":"NY","unemp":6.53},"36099":{"home":70.95,"income":68089,"name":"Seneca County","oh":0,"pop":32920,"poverty":13.47,"state":"NY","unemp":4.52},"36101":{"home":73.28,"income":65887,"name":"Steuben County","oh":1,"pop":92588,"poverty":13.78,"state":"NY","unemp":5.97},"36103":{"home":82.16,"income":130686,"name":"Suffolk County","oh":0,"pop":1530146,"poverty":6.42,"state":"NY","unemp":4.73},"36105":{"home":67.37,"income":72382,"name":"Sullivan County","oh":0,"pop":79721,"poverty":15.85,"state":"NY","unemp":5.85},"36107":{"home":79.08,"income":72739,"name":"Tioga County","oh":0,"pop":47864,"poverty":13.36,"state":"NY","unemp":5.48},"36109":{"home":54.14,"income":74024,"name":"Tompkins County","oh":1,"pop":104537,"poverty":16.36,"state":"NY","unemp":5.54},"36111":{"home":69.9,"income":86271,"name":"Ulster County","oh":1,"pop":182601,"poverty":14.64,"state":"NY","unemp":5.41},"36113":{"home":72.12,"income":78442,"name":"Warren County","oh":1,"pop":65517,"poverty":10.47,"state":"NY","unemp":4.34},"36115":{"home":76.65,"income":73495,"name":"Washington County","oh":0,"pop":60522,"poverty":10.73,"state":"NY","unemp":5.02},"36117":{"home":79.88,"income":74506,"name":"Wayne County","oh":0,"pop":90929,"poverty":11.43,"state":"NY","unemp":3.32},"36119":{"home":61.84,"income":118976,"name":"Westchester County","oh":4,"pop":999677,"poverty":9.01,"state":"NY","unemp":6.05},"36121":{"home":75.94,"income":69110,"name":"Wyoming County","oh":0,"pop":39753,"poverty":11.13,"state":"NY","unemp":3.65},"36123":{"home":77.2,"income":69701,"name":"Yates County","oh":0,"pop":24526,"poverty":12.74,"state":"NY","unemp":3.14},"37001":{"home":65.0,"income":65651,"name":"Alamance County","oh":3,"pop":176893,"poverty":13.35,"state":"NC","unemp":5.06},"37003":{"home":80.68,"income":65354,"name":"Alexander County","oh":0,"pop":36412,"poverty":12.57,"state":"NC","unemp":5.03},"37005":{"home":74.43,"income":47172,"name":"Alleghany County","oh":0,"pop":11174,"poverty":15.98,"state":"NC","unemp":3.71},"37007":{"home":68.52,"income":47302,"name":"Anson County","oh":0,"pop":22289,"poverty":21.73,"state":"NC","unemp":5.5},"37009":{"home":79.38,"income":56866,"name":"Ashe County","oh":0,"pop":26950,"poverty":13.49,"state":"NC","unemp":4.8},"37011":{"home":83.01,"income":61428,"name":"Avery County","oh":0,"pop":17680,"poverty":10.16,"state":"NC","unemp":4.85},"37013":{"home":69.53,"income":58357,"name":"Beaufort County","oh":1,"pop":44499,"poverty":17.82,"state":"NC","unemp":3.94},"37015":{"home":72.71,"income":48750,"name":"Bertie County","oh":0,"pop":17170,"poverty":16.14,"state":"NC","unemp":5.08},"37017":{"home":69.21,"income":42422,"name":"Bladen County","oh":0,"pop":29566,"poverty":21.96,"state":"NC","unemp":5.44},"37019":{"home":84.59,"income":77024,"name":"Brunswick County","oh":0,"pop":152568,"poverty":9.23,"state":"NC","unemp":4.65},"37021":{"home":66.18,"income":74436,"name":"Buncombe County","oh":2,"pop":274360,"poverty":11.84,"state":"NC","unemp":4.29},"37023":{"home":74.52,"income":58592,"name":"Burke County","oh":1,"pop":87795,"poverty":15.58,"state":"NC","unemp":4.38},"37025":{"home":71.17,"income":89005,"name":"Cabarrus County","oh":2,"pop":236133,"poverty":9.27,"state":"NC","unemp":4.64},"37027":{"home":73.54,"income":56425,"name":"Caldwell County","oh":1,"pop":80536,"poverty":13.37,"state":"NC","unemp":5.04},"37029":{"home":82.1,"income":91078,"name":"Camden County","oh":0,"pop":10927,"poverty":6.14,"state":"NC","unemp":5.49},"37031":{"home":74.69,"income":72322,"name":"Carteret County","oh":3,"pop":69148,"poverty":10.07,"state":"NC","unemp":4.03},"37033":{"home":75.16,"income":59755,"name":"Caswell County","oh":0,"pop":22404,"poverty":18.62,"state":"NC","unemp":5.16},"37035":{"home":72.17,"income":67864,"name":"Catawba County","oh":1,"pop":163573,"poverty":12.74,"state":"NC","unemp":3.66},"37037":{"home":80.57,"income":94317,"name":"Chatham County","oh":0,"pop":80151,"poverty":11.05,"state":"NC","unemp":2.93},"37039":{"home":83.7,"income":53628,"name":"Cherokee County","oh":0,"pop":29562,"poverty":12.36,"state":"NC","unemp":4.07},"37041":{"home":70.52,"income":53864,"name":"Chowan County","oh":0,"pop":13836,"poverty":19.09,"state":"NC","unemp":4.11},"37043":{"home":81.18,"income":56971,"name":"Clay County","oh":0,"pop":11610,"poverty":12.88,"state":"NC","unemp":2.65},"37045":{"home":70.89,"income":58534,"name":"Cleveland County","oh":2,"pop":100991,"poverty":16.6,"state":"NC","unemp":5.19},"37047":{"home":71.09,"income":49442,"name":"Columbus County","oh":1,"pop":50140,"poverty":18.18,"state":"NC","unemp":4.39},"37049":{"home":68.44,"income":65873,"name":"Craven County","oh":0,"pop":102612,"poverty":13.7,"state":"NC","unemp":4.21},"37051":{"home":54.97,"income":61291,"name":"Cumberland County","oh":1,"pop":338545,"poverty":16.7,"state":"NC","unemp":7.64},"37053":{"home":87.27,"income":93511,"name":"Currituck County","oh":0,"pop":30601,"poverty":7.5,"state":"NC","unemp":2.98},"37055":{"home":78.42,"income":88994,"name":"Dare County","oh":5,"pop":37875,"poverty":6.62,"state":"NC","unemp":5.94},"37057":{"home":74.37,"income":64172,"name":"Davidson County","oh":5,"pop":172954,"poverty":12.85,"state":"NC","unemp":4.08},"37059":{"home":82.25,"income":75057,"name":"Davie County","oh":1,"pop":44122,"poverty":9.39,"state":"NC","unemp":4.73},"37061":{"home":70.34,"income":55148,"name":"Duplin County","oh":1,"pop":49335,"poverty":20.46,"state":"NC","unemp":5.32},"37063":{"home":55.5,"income":82316,"name":"Durham County","oh":1,"pop":332353,"poverty":11.51,"state":"NC","unemp":3.91},"37065":{"home":60.81,"income":51265,"name":"Edgecombe County","oh":0,"pop":48736,"poverty":21.73,"state":"NC","unemp":8.74},"37067":{"home":63.56,"income":67165,"name":"Forsyth County","oh":4,"pop":389977,"poverty":14.52,"state":"NC","unemp":5.05},"37069":{"home":78.59,"income":74240,"name":"Franklin County","oh":1,"pop":74386,"poverty":11.06,"state":"NC","unemp":4.61},"37071":{"home":66.85,"income":67478,"name":"Gaston County","oh":3,"pop":234881,"poverty":13.52,"state":"NC","unemp":4.76},"37073":{"home":80.87,"income":66333,"name":"Gates County","oh":0,"pop":10376,"poverty":9.41,"state":"NC","unemp":5.85},"37075":{"home":80.7,"income":49684,"name":"Graham County","oh":1,"pop":8072,"poverty":6.7,"state":"NC","unemp":7.02},"37077":{"home":77.09,"income":71111,"name":"Granville County","oh":0,"pop":60877,"poverty":15.18,"state":"NC","unemp":4.57},"37079":{"home":66.51,"income":53244,"name":"Greene County","oh":0,"pop":20486,"poverty":21.05,"state":"NC","unemp":5.65},"37081":{"home":59.95,"income":68642,"name":"Guilford County","oh":3,"pop":547940,"poverty":14.58,"state":"NC","unemp":4.57},"37083":{"home":62.94,"income":45590,"name":"Halifax County","oh":0,"pop":47675,"poverty":22.82,"state":"NC","unemp":9.27},"37085":{"home":71.03,"income":71287,"name":"Harnett County","oh":1,"pop":139150,"poverty":13.75,"state":"NC","unemp":4.69},"37087":{"home":74.9,"income":61912,"name":"Haywood County","oh":1,"pop":62662,"poverty":13.13,"state":"NC","unemp":3.09},"37089":{"home":75.02,"income":68187,"name":"Henderson County","oh":1,"pop":118484,"poverty":11.56,"state":"NC","unemp":3.46},"37091":{"home":67.36,"income":45537,"name":"Hertford County","oh":0,"pop":19908,"poverty":22.93,"state":"NC","unemp":5.97},"37093":{"home":72.97,"income":64912,"name":"Hoke County","oh":0,"pop":53835,"poverty":17.08,"state":"NC","unemp":6.61},"37095":{"home":71.94,"income":53713,"name":"Hyde County","oh":0,"pop":4592,"poverty":22.18,"state":"NC","unemp":2.49},"37097":{"home":71.85,"income":81419,"name":"Iredell County","oh":2,"pop":196544,"poverty":10.03,"state":"NC","unemp":4.16},"37099":{"home":60.78,"income":55815,"name":"Jackson County","oh":0,"pop":43771,"poverty":18.01,"state":"NC","unemp":4.91},"37101":{"home":76.05,"income":83384,"name":"Johnston County","oh":2,"pop":234263,"poverty":10.63,"state":"NC","unemp":3.81},"37103":{"home":79.44,"income":59641,"name":"Jones County","oh":1,"pop":9302,"poverty":18.36,"state":"NC","unemp":4.35},"37105":{"home":67.32,"income":65387,"name":"Lee County","oh":0,"pop":65816,"poverty":16.47,"state":"NC","unemp":3.84},"37107":{"home":59.21,"income":45143,"name":"Lenoir County","oh":0,"pop":54919,"poverty":21.95,"state":"NC","unemp":9.03},"37109":{"home":78.92,"income":80016,"name":"Lincoln County","oh":0,"pop":92716,"poverty":11.25,"state":"NC","unemp":3.34},"37111":{"home":75.59,"income":57168,"name":"McDowell County","oh":0,"pop":44817,"poverty":14.81,"state":"NC","unemp":4.07},"37113":{"home":77.61,"income":59061,"name":"Macon County","oh":0,"pop":37941,"poverty":11.6,"state":"NC","unemp":2.8},"37115":{"home":77.45,"income":58531,"name":"Madison County","oh":1,"pop":21867,"poverty":12.12,"state":"NC","unemp":3.13},"37117":{"home":66.79,"income":48578,"name":"Martin County","oh":0,"pop":21644,"poverty":20.37,"state":"NC","unemp":6.13},"37119":{"home":55.12,"income":87005,"name":"Mecklenburg County","oh":3,"pop":1154681,"poverty":10.36,"state":"NC","unemp":4.34},"37121":{"home":76.26,"income":57602,"name":"Mitchell County","oh":1,"pop":14992,"poverty":12.92,"state":"NC","unemp":6.49},"37123":{"home":74.99,"income":57766,"name":"Montgomery County","oh":0,"pop":26007,"poverty":15.44,"state":"NC","unemp":2.85},"37125":{"home":76.39,"income":86080,"name":"Moore County","oh":2,"pop":104876,"poverty":10.07,"state":"NC","unemp":4.84},"37127":{"home":63.56,"income":62426,"name":"Nash County","oh":1,"pop":96216,"poverty":11.84,"state":"NC","unemp":4.95},"37129":{"home":61.4,"income":75166,"name":"New Hanover County","oh":4,"pop":235229,"poverty":12.29,"state":"NC","unemp":4.49},"37131":{"home":74.58,"income":50086,"name":"Northampton County","oh":0,"pop":16931,"poverty":21.11,"state":"NC","unemp":8.11},"37133":{"home":63.74,"income":68148,"name":"Onslow County","oh":1,"pop":207906,"poverty":11.59,"state":"NC","unemp":5.37},"37135":{"home":63.84,"income":90089,"name":"Orange County","oh":2,"pop":149678,"poverty":12.48,"state":"NC","unemp":3.64},"37137":{"home":82.88,"income":59717,"name":"Pamlico County","oh":0,"pop":12390,"poverty":15.15,"state":"NC","unemp":5.11},"37139":{"home":67.49,"income":66589,"name":"Pasquotank County","oh":1,"pop":40834,"poverty":11.04,"state":"NC","unemp":5.85},"37141":{"home":82.7,"income":80396,"name":"Pender County","oh":0,"pop":65550,"poverty":9.73,"state":"NC","unemp":4.82},"37143":{"home":76.54,"income":67917,"name":"Perquimans County","oh":0,"pop":13244,"poverty":9.83,"state":"NC","unemp":3.56},"37145":{"home":77.28,"income":63300,"name":"Person County","oh":0,"pop":39542,"poverty":17.49,"state":"NC","unemp":5.58},"37147":{"home":51.45,"income":58188,"name":"Pitt County","oh":1,"pop":177193,"poverty":19.84,"state":"NC","unemp":7.8},"37149":{"home":76.89,"income":67758,"name":"Polk County","oh":0,"pop":19891,"poverty":14.01,"state":"NC","unemp":5.07},"37151":{"home":72.54,"income":61022,"name":"Randolph County","oh":2,"pop":146348,"poverty":14.5,"state":"NC","unemp":3.48},"37153":{"home":65.95,"income":44883,"name":"Richmond County","oh":1,"pop":42344,"poverty":25.22,"state":"NC","unemp":9.79},"37155":{"home":65.84,"income":41978,"name":"Robeson County","oh":1,"pop":116902,"poverty":27.23,"state":"NC","unemp":5.96},"37157":{"home":72.07,"income":57053,"name":"Rockingham County","oh":1,"pop":92131,"poverty":16.28,"state":"NC","unemp":5.79},"37159":{"home":72.32,"income":65725,"name":"Rowan County","oh":1,"pop":149875,"poverty":15.99,"state":"NC","unemp":5.32},"37161":{"home":73.88,"income":51410,"name":"Rutherford County","oh":0,"pop":64930,"poverty":16.75,"state":"NC","unemp":6.35},"37163":{"home":73.81,"income":52432,"name":"Sampson County","oh":1,"pop":59470,"poverty":21.82,"state":"NC","unemp":5.27},"37165":{"home":61.79,"income":45730,"name":"Scotland County","oh":1,"pop":33590,"poverty":25.81,"state":"NC","unemp":10.94},"37167":{"home":74.45,"income":60704,"name":"Stanly County","oh":1,"pop":64651,"poverty":15.25,"state":"NC","unemp":4.05},"37169":{"home":79.19,"income":62969,"name":"Stokes County","oh":0,"pop":45139,"poverty":11.17,"state":"NC","unemp":3.13},"37171":{"home":73.42,"income":55656,"name":"Surry County","oh":1,"pop":71425,"poverty":16.82,"state":"NC","unemp":4.38},"37173":{"home":72.66,"income":52349,"name":"Swain County","oh":0,"pop":14013,"poverty":19.11,"state":"NC","unemp":7.61},"37175":{"home":74.66,"income":66184,"name":"Transylvania County","oh":0,"pop":33691,"poverty":13.21,"state":"NC","unemp":2.78},"37177":{"home":77.83,"income":41685,"name":"Tyrrell County","oh":0,"pop":3423,"poverty":18.71,"state":"NC","unemp":2.82},"37179":{"home":81.65,"income":102900,"name":"Union County","oh":1,"pop":250958,"poverty":7.68,"state":"NC","unemp":4.19},"37181":{"home":60.15,"income":50465,"name":"Vance County","oh":1,"pop":42322,"poverty":19.79,"state":"NC","unemp":8.22},"37183":{"home":64.12,"income":105768,"name":"Wake County","oh":7,"pop":1178653,"poverty":8.13,"state":"NC","unemp":4.08},"37185":{"home":69.36,"income":50638,"name":"Warren County","oh":0,"pop":18795,"poverty":21.1,"state":"NC","unemp":7.2},"37187":{"home":68.02,"income":41813,"name":"Washington County","oh":0,"pop":10812,"poverty":24.07,"state":"NC","unemp":13.02},"37189":{"home":62.07,"income":51693,"name":"Watauga County","oh":1,"pop":55123,"poverty":25.45,"state":"NC","unemp":7.86},"37191":{"home":61.45,"income":59733,"name":"Wayne County","oh":1,"pop":118652,"poverty":17.33,"state":"NC","unemp":5.21},"37193":{"home":73.52,"income":51721,"name":"Wilkes County","oh":0,"pop":65935,"poverty":16.73,"state":"NC","unemp":5.02},"37195":{"home":60.05,"income":56423,"name":"Wilson County","oh":1,"pop":79290,"poverty":19.8,"state":"NC","unemp":5.63},"37197":{"home":76.93,"income":62932,"name":"Yadkin County","oh":1,"pop":37574,"poverty":13.98,"state":"NC","unemp":5.31},"37199":{"home":79.42,"income":58709,"name":"Yancey County","oh":0,"pop":18797,"poverty":15.17,"state":"NC","unemp":7.3},"38001":{"home":71.84,"income":62500,"name":"Adams County","oh":0,"pop":2145,"poverty":14.79,"state":"ND","unemp":2.23},"38003":{"home":70.78,"income":68038,"name":"Barnes County","oh":0,"pop":10773,"poverty":12.11,"state":"ND","unemp":3.78},"38005":{"home":73.09,"income":64033,"name":"Benson County","oh":0,"pop":5808,"poverty":25.6,"state":"ND","unemp":3.44},"38007":{"home":77.89,"income":86806,"name":"Billings County","oh":0,"pop":1024,"poverty":10.81,"state":"ND","unemp":2.09},"38009":{"home":79.17,"income":85000,"name":"Bottineau County","oh":0,"pop":6378,"poverty":7.59,"state":"ND","unemp":1.65},"38011":{"home":83.27,"income":72109,"name":"Bowman County","oh":0,"pop":2906,"poverty":13.44,"state":"ND","unemp":3.1},"38013":{"home":75.11,"income":91591,"name":"Burke County","oh":0,"pop":2156,"poverty":5.89,"state":"ND","unemp":3.73},"38015":{"home":71.16,"income":86851,"name":"Burleigh County","oh":1,"pop":100600,"poverty":7.91,"state":"ND","unemp":2.27},"38017":{"home":51.97,"income":75555,"name":"Cass County","oh":1,"pop":193400,"poverty":11.0,"state":"ND","unemp":2.98},"38019":{"home":81.35,"income":69531,"name":"Cavalier County","oh":0,"pop":3633,"poverty":8.51,"state":"ND","unemp":1.03},"38021":{"home":79.71,"income":68654,"name":"Dickey County","oh":0,"pop":4935,"poverty":11.75,"state":"ND","unemp":4.12},"38023":{"home":77.26,"income":91852,"name":"Divide County","oh":0,"pop":2167,"poverty":9.25,"state":"ND","unemp":2.31},"38025":{"home":74.35,"income":97689,"name":"Dunn County","oh":0,"pop":4040,"poverty":7.4,"state":"ND","unemp":3.42},"38027":{"home":72.04,"income":50850,"name":"Eddy County","oh":0,"pop":2307,"poverty":14.24,"state":"ND","unemp":2.54},"38029":{"home":79.78,"income":66538,"name":"Emmons County","oh":0,"pop":3254,"poverty":9.08,"state":"ND","unemp":2.27},"38031":{"home":79.69,"income":87831,"name":"Foster County","oh":0,"pop":3358,"poverty":8.77,"state":"ND","unemp":0.97},"38033":{"home":79.54,"income":68021,"name":"Golden Valley County","oh":0,"pop":1653,"poverty":19.83,"state":"ND","unemp":3.43},"38035":{"home":51.78,"income":68075,"name":"Grand Forks County","oh":0,"pop":72923,"poverty":13.2,"state":"ND","unemp":2.33},"38037":{"home":83.38,"income":57875,"name":"Grant County","oh":0,"pop":2269,"poverty":16.61,"state":"ND","unemp":3.57},"38039":{"home":76.61,"income":61711,"name":"Griggs County","oh":0,"pop":2245,"poverty":11.71,"state":"ND","unemp":1.42},"38041":{"home":76.81,"income":73026,"name":"Hettinger County","oh":0,"pop":2432,"poverty":11.02,"state":"ND","unemp":5.39},"38043":{"home":76.07,"income":65610,"name":"Kidder County","oh":0,"pop":2377,"poverty":10.22,"state":"ND","unemp":1.47},"38045":{"home":83.55,"income":80664,"name":"LaMoure County","oh":0,"pop":4118,"poverty":8.7,"state":"ND","unemp":2.45},"38047":{"home":83.01,"income":62750,"name":"Logan County","oh":0,"pop":1819,"poverty":12.43,"state":"ND","unemp":1.74},"38049":{"home":81.37,"income":80733,"name":"McHenry County","oh":0,"pop":5207,"poverty":9.69,"state":"ND","unemp":4.13},"38051":{"home":79.18,"income":64419,"name":"McIntosh County","oh":1,"pop":2497,"poverty":12.25,"state":"ND","unemp":3.07},"38053":{"home":53.39,"income":93404,"name":"McKenzie County","oh":0,"pop":14321,"poverty":11.96,"state":"ND","unemp":1.27},"38055":{"home":84.17,"income":83583,"name":"McLean County","oh":0,"pop":9823,"poverty":8.88,"state":"ND","unemp":1.35},"38057":{"home":81.05,"income":80946,"name":"Mercer County","oh":0,"pop":8337,"poverty":9.67,"state":"ND","unemp":2.53},"38059":{"home":74.15,"income":79382,"name":"Morton County","oh":0,"pop":33777,"poverty":8.04,"state":"ND","unemp":1.53},"38061":{"home":61.55,"income":80717,"name":"Mountrail County","oh":0,"pop":9507,"poverty":14.52,"state":"ND","unemp":1.08},"38063":{"home":75.11,"income":67193,"name":"Nelson County","oh":0,"pop":3016,"poverty":7.16,"state":"ND","unemp":1.11},"38065":{"home":95.17,"income":77240,"name":"Oliver County","oh":0,"pop":1839,"poverty":5.22,"state":"ND","unemp":1.0},"38067":{"home":74.57,"income":68393,"name":"Pembina County","oh":0,"pop":6727,"poverty":9.25,"state":"ND","unemp":3.36},"38069":{"home":81.55,"income":59365,"name":"Pierce County","oh":0,"pop":3928,"poverty":10.8,"state":"ND","unemp":1.08},"38071":{"home":54.53,"income":61006,"name":"Ramsey County","oh":0,"pop":11556,"poverty":15.19,"state":"ND","unemp":1.24},"38073":{"home":74.67,"income":75736,"name":"Ransom County","oh":0,"pop":5643,"poverty":10.36,"state":"ND","unemp":2.88},"38075":{"home":78.74,"income":74301,"name":"Renville County","oh":0,"pop":2304,"poverty":9.07,"state":"ND","unemp":0.97},"38077":{"home":68.11,"income":75432,"name":"Richland County","oh":0,"pop":16584,"poverty":9.68,"state":"ND","unemp":1.67},"38079":{"home":62.83,"income":59517,"name":"Rolette County","oh":0,"pop":11924,"poverty":24.33,"state":"ND","unemp":4.01},"38081":{"home":72.47,"income":77946,"name":"Sargent County","oh":0,"pop":3804,"poverty":6.88,"state":"ND","unemp":0.77},"38083":{"home":84.0,"income":62639,"name":"Sheridan County","oh":0,"pop":1303,"poverty":10.14,"state":"ND","unemp":1.06},"38085":{"home":46.58,"income":42083,"name":"Sioux County","oh":0,"pop":3740,"poverty":43.29,"state":"ND","unemp":17.02},"38087":{"home":80.75,"income":71250,"name":"Slope County","oh":0,"pop":766,"poverty":4.96,"state":"ND","unemp":2.68},"38089":{"home":66.79,"income":84449,"name":"Stark County","oh":1,"pop":33302,"poverty":12.08,"state":"ND","unemp":2.99},"38091":{"home":77.79,"income":77500,"name":"Steele County","oh":0,"pop":1804,"poverty":12.86,"state":"ND","unemp":3.27},"38093":{"home":63.06,"income":61856,"name":"Stutsman County","oh":0,"pop":21549,"poverty":12.61,"state":"ND","unemp":3.99},"38095":{"home":78.77,"income":67350,"name":"Towner County","oh":0,"pop":2079,"poverty":8.5,"state":"ND","unemp":0.66},"38097":{"home":74.35,"income":87004,"name":"Traill County","oh":0,"pop":7970,"poverty":9.06,"state":"ND","unemp":2.23},"38099":{"home":76.05,"income":71944,"name":"Walsh County","oh":0,"pop":10396,"poverty":11.22,"state":"ND","unemp":1.97},"38101":{"home":60.78,"income":78238,"name":"Ward County","oh":1,"pop":68973,"poverty":8.56,"state":"ND","unemp":3.57},"38103":{"home":77.06,"income":66114,"name":"Wells County","oh":0,"pop":3890,"poverty":9.13,"state":"ND","unemp":1.99},"38105":{"home":52.98,"income":85595,"name":"Williams County","oh":0,"pop":39555,"poverty":8.64,"state":"ND","unemp":4.36},"39001":{"home":71.65,"income":50264,"name":"Adams County","oh":0,"pop":27540,"poverty":20.22,"state":"OH","unemp":6.45},"39003":{"home":67.69,"income":64038,"name":"Allen County","oh":2,"pop":101348,"poverty":13.29,"state":"OH","unemp":5.74},"39005":{"home":77.85,"income":69860,"name":"Ashland County","oh":1,"pop":52256,"poverty":13.28,"state":"OH","unemp":3.63},"39007":{"home":75.65,"income":57728,"name":"Ashtabula County","oh":0,"pop":97167,"poverty":17.59,"state":"OH","unemp":6.61},"39009":{"home":60.39,"income":56001,"name":"Athens County","oh":0,"pop":61737,"poverty":21.49,"state":"OH","unemp":6.52},"39011":{"home":78.11,"income":78660,"name":"Auglaize County","oh":2,"pop":46125,"poverty":7.08,"state":"OH","unemp":2.72},"39013":{"home":73.61,"income":57017,"name":"Belmont County","oh":2,"pop":65473,"poverty":15.77,"state":"OH","unemp":5.43},"39015":{"home":77.18,"income":71270,"name":"Brown County","oh":0,"pop":43845,"poverty":19.6,"state":"OH","unemp":4.93},"39017":{"home":69.93,"income":81590,"name":"Butler County","oh":4,"pop":392876,"poverty":11.82,"state":"OH","unemp":5.07},"39019":{"home":78.72,"income":64835,"name":"Carroll County","oh":0,"pop":26659,"poverty":12.85,"state":"OH","unemp":5.63},"39021":{"home":76.81,"income":75556,"name":"Champaign County","oh":1,"pop":38804,"poverty":7.98,"state":"OH","unemp":4.78},"39023":{"home":69.4,"income":63132,"name":"Clark County","oh":1,"pop":135158,"poverty":15.19,"state":"OH","unemp":6.71},"39025":{"home":73.65,"income":85510,"name":"Clermont County","oh":0,"pop":211181,"poverty":9.12,"state":"OH","unemp":4.16},"39027":{"home":71.8,"income":70407,"name":"Clinton County","oh":1,"pop":42012,"poverty":12.88,"state":"OH","unemp":4.55},"39029":{"home":72.74,"income":58180,"name":"Columbiana County","oh":3,"pop":100704,"poverty":15.15,"state":"OH","unemp":4.46},"39031":{"home":72.91,"income":55577,"name":"Coshocton County","oh":1,"pop":36744,"poverty":18.52,"state":"OH","unemp":5.39},"39033":{"home":73.12,"income":58044,"name":"Crawford County","oh":2,"pop":41711,"poverty":11.81,"state":"OH","unemp":4.72},"39035":{"home":59.36,"income":64468,"name":"Cuyahoga County","oh":35,"pop":1245873,"poverty":16.07,"state":"OH","unemp":6.63},"39037":{"home":72.37,"income":64486,"name":"Darke County","oh":1,"pop":51594,"poverty":11.03,"state":"OH","unemp":2.81},"39039":{"home":79.28,"income":73064,"name":"Defiance County","oh":1,"pop":38343,"poverty":10.48,"state":"OH","unemp":5.16},"39041":{"home":78.51,"income":133540,"name":"Delaware County","oh":1,"pop":226834,"poverty":4.67,"state":"OH","unemp":2.97},"39043":{"home":71.89,"income":71993,"name":"Erie County","oh":1,"pop":74581,"poverty":12.97,"state":"OH","unemp":5.33},"39045":{"home":74.92,"income":90966,"name":"Fairfield County","oh":2,"pop":163453,"poverty":8.01,"state":"OH","unemp":3.84},"39047":{"home":64.69,"income":63275,"name":"Fayette County","oh":0,"pop":28876,"poverty":15.53,"state":"OH","unemp":3.72},"39049":{"home":52.82,"income":75176,"name":"Franklin County","oh":6,"pop":1333048,"poverty":14.7,"state":"OH","unemp":4.56},"39051":{"home":80.16,"income":72864,"name":"Fulton County","oh":1,"pop":42240,"poverty":9.45,"state":"OH","unemp":3.86},"39053":{"home":74.67,"income":56830,"name":"Gallia County","oh":0,"pop":29068,"poverty":16.44,"state":"OH","unemp":3.51},"39055":{"home":87.18,"income":107860,"name":"Geauga County","oh":1,"pop":95481,"poverty":5.57,"state":"OH","unemp":2.97},"39057":{"home":67.99,"income":87309,"name":"Greene County","oh":2,"pop":169688,"poverty":9.84,"state":"OH","unemp":4.3},"39059":{"home":72.1,"income":58478,"name":"Guernsey County","oh":1,"pop":38223,"poverty":15.31,"state":"OH","unemp":5.25},"39061":{"home":59.31,"income":72470,"name":"Hamilton County","oh":9,"pop":830774,"poverty":14.97,"state":"OH","unemp":5.02},"39063":{"home":70.79,"income":73141,"name":"Hancock County","oh":1,"pop":74866,"poverty":9.94,"state":"OH","unemp":3.14},"39065":{"home":74.68,"income":62484,"name":"Hardin County","oh":1,"pop":30475,"poverty":17.32,"state":"OH","unemp":4.6},"39067":{"home":76.34,"income":54414,"name":"Harrison County","oh":0,"pop":14306,"poverty":13.1,"state":"OH","unemp":4.55},"39069":{"home":82.53,"income":80099,"name":"Henry County","oh":1,"pop":27567,"poverty":8.75,"state":"OH","unemp":3.87},"39071":{"home":74.32,"income":65785,"name":"Highland County","oh":1,"pop":43517,"poverty":14.1,"state":"OH","unemp":3.09},"39073":{"home":78.78,"income":62960,"name":"Hocking County","oh":1,"pop":27799,"poverty":15.98,"state":"OH","unemp":5.42},"39075":{"home":78.98,"income":76140,"name":"Holmes County","oh":0,"pop":44418,"poverty":9.26,"state":"OH","unemp":2.24},"39077":{"home":74.0,"income":67878,"name":"Huron County","oh":2,"pop":58319,"poverty":13.21,"state":"OH","unemp":4.54},"39079":{"home":73.93,"income":57106,"name":"Jackson County","oh":1,"pop":32650,"poverty":18.46,"state":"OH","unemp":3.8},"39081":{"home":70.54,"income":59055,"name":"Jefferson County","oh":2,"pop":64518,"poverty":16.45,"state":"OH","unemp":5.0},"39083":{"home":75.51,"income":73878,"name":"Knox County","oh":1,"pop":63142,"poverty":11.64,"state":"OH","unemp":2.48},"39085":{"home":75.76,"income":80925,"name":"Lake County","oh":3,"pop":232216,"poverty":8.34,"state":"OH","unemp":3.88},"39087":{"home":72.29,"income":58325,"name":"Lawrence County","oh":1,"pop":56819,"poverty":17.73,"state":"OH","unemp":2.71},"39089":{"home":73.74,"income":84426,"name":"Licking County","oh":3,"pop":181837,"poverty":10.22,"state":"OH","unemp":3.24},"39091":{"home":77.59,"income":71551,"name":"Logan County","oh":1,"pop":46089,"poverty":11.08,"state":"OH","unemp":4.07},"39093":{"home":74.02,"income":73347,"name":"Lorain County","oh":7,"pop":317129,"poverty":12.09,"state":"OH","unemp":4.3},"39095":{"home":61.97,"income":62224,"name":"Lucas County","oh":4,"pop":428018,"poverty":17.72,"state":"OH","unemp":6.3},"39097":{"home":77.53,"income":87045,"name":"Madison County","oh":1,"pop":44423,"poverty":8.46,"state":"OH","unemp":3.49},"39099":{"home":70.26,"income":56942,"name":"Mahoning County","oh":1,"pop":226491,"poverty":18.9,"state":"OH","unemp":6.38},"39101":{"home":67.46,"income":59371,"name":"Marion County","oh":1,"pop":65020,"poverty":16.65,"state":"OH","unemp":6.32},"39103":{"home":80.25,"income":94968,"name":"Medina County","oh":2,"pop":183660,"poverty":6.27,"state":"OH","unemp":2.9},"39105":{"home":75.41,"income":46873,"name":"Meigs County","oh":0,"pop":21896,"poverty":21.79,"state":"OH","unemp":5.39},"39107":{"home":79.55,"income":76782,"name":"Mercer County","oh":1,"pop":42484,"poverty":7.29,"state":"OH","unemp":1.6},"39109":{"home":73.43,"income":76817,"name":"Miami County","oh":2,"pop":110296,"poverty":9.37,"state":"OH","unemp":3.13},"39111":{"home":79.93,"income":60134,"name":"Monroe County","oh":0,"pop":13227,"poverty":15.15,"state":"OH","unemp":5.42},"39113":{"home":62.46,"income":66139,"name":"Montgomery County","oh":10,"pop":536096,"poverty":15.01,"state":"OH","unemp":5.72},"39115":{"home":78.89,"income":59351,"name":"Morgan County","oh":0,"pop":13651,"poverty":12.91,"state":"OH","unemp":3.48},"39117":{"home":81.22,"income":75283,"name":"Morrow County","oh":0,"pop":35404,"poverty":12.8,"state":"OH","unemp":2.92},"39119":{"home":68.18,"income":60780,"name":"Muskingum County","oh":1,"pop":86411,"poverty":15.08,"state":"OH","unemp":4.27},"39121":{"home":83.55,"income":56098,"name":"Noble County","oh":0,"pop":14282,"poverty":10.61,"state":"OH","unemp":1.43},"39123":{"home":83.56,"income":76101,"name":"Ottawa County","oh":1,"pop":39994,"poverty":8.43,"state":"OH","unemp":3.1},"39125":{"home":80.12,"income":67731,"name":"Paulding County","oh":0,"pop":18791,"poverty":8.9,"state":"OH","unemp":3.62},"39127":{"home":76.37,"income":67460,"name":"Perry County","oh":0,"pop":35535,"poverty":14.73,"state":"OH","unemp":3.7},"39129":{"home":74.04,"income":74040,"name":"Pickaway County","oh":1,"pop":60131,"poverty":11.54,"state":"OH","unemp":3.55},"39131":{"home":68.47,"income":52736,"name":"Pike County","oh":0,"pop":27044,"poverty":21.33,"state":"OH","unemp":5.35},"39133":{"home":70.14,"income":75766,"name":"Portage County","oh":4,"pop":161956,"poverty":11.68,"state":"OH","unemp":5.34},"39135":{"home":79.66,"income":69223,"name":"Preble County","oh":1,"pop":40765,"poverty":12.59,"state":"OH","unemp":3.16},"39137":{"home":87.08,"income":84928,"name":"Putnam County","oh":0,"pop":34314,"poverty":5.49,"state":"OH","unemp":1.8},"39139":{"home":67.92,"income":59509,"name":"Richland County","oh":2,"pop":125099,"poverty":13.76,"state":"OH","unemp":5.4},"39141":{"home":69.61,"income":61303,"name":"Ross County","oh":1,"pop":76492,"poverty":15.69,"state":"OH","unemp":3.82},"39143":{"home":73.41,"income":62295,"name":"Sandusky County","oh":2,"pop":58778,"poverty":15.0,"state":"OH","unemp":4.32},"39145":{"home":68.42,"income":50609,"name":"Scioto County","oh":1,"pop":72627,"poverty":21.76,"state":"OH","unemp":5.85},"39147":{"home":73.37,"income":66025,"name":"Seneca County","oh":2,"pop":54770,"poverty":11.92,"state":"OH","unemp":3.58},"39149":{"home":73.68,"income":73978,"name":"Shelby County","oh":1,"pop":47929,"poverty":11.6,"state":"OH","unemp":4.07},"39151":{"home":69.23,"income":67934,"name":"Stark County","oh":6,"pop":373713,"poverty":12.46,"state":"OH","unemp":3.88},"39153":{"home":67.51,"income":71622,"name":"Summit County","oh":7,"pop":537864,"poverty":12.81,"state":"OH","unemp":5.06},"39155":{"home":71.29,"income":56435,"name":"Trumbull County","oh":3,"pop":200929,"poverty":16.61,"state":"OH","unemp":4.7},"39157":{"home":68.86,"income":65044,"name":"Tuscarawas County","oh":3,"pop":92385,"poverty":13.42,"state":"OH","unemp":4.5},"39159":{"home":79.18,"income":112322,"name":"Union County","oh":0,"pop":67324,"poverty":4.99,"state":"OH","unemp":2.58},"39161":{"home":82.07,"income":67917,"name":"Van Wert County","oh":1,"pop":28826,"poverty":8.98,"state":"OH","unemp":3.42},"39163":{"home":75.53,"income":55336,"name":"Vinton County","oh":0,"pop":12630,"poverty":17.28,"state":"OH","unemp":5.53},"39165":{"home":79.39,"income":110132,"name":"Warren County","oh":3,"pop":250008,"poverty":5.95,"state":"OH","unemp":3.06},"39167":{"home":75.39,"income":63603,"name":"Washington County","oh":1,"pop":58978,"poverty":13.75,"state":"OH","unemp":4.75},"39169":{"home":76.56,"income":73574,"name":"Wayne County","oh":2,"pop":116588,"poverty":9.41,"state":"OH","unemp":3.3},"39171":{"home":76.25,"income":61048,"name":"Williams County","oh":1,"pop":36719,"poverty":12.75,"state":"OH","unemp":4.05},"39173":{"home":64.4,"income":74216,"name":"Wood County","oh":3,"pop":132064,"poverty":12.23,"state":"OH","unemp":4.49},"39175":{"home":74.14,"income":69768,"name":"Wyandot County","oh":0,"pop":21598,"poverty":8.77,"state":"OH","unemp":1.92},"40001":{"home":68.51,"income":48041,"name":"Adair County","oh":0,"pop":19575,"poverty":21.52,"state":"OK","unemp":6.86},"40003":{"home":77.5,"income":64615,"name":"Alfalfa County","oh":0,"pop":5696,"poverty":16.51,"state":"OK","unemp":4.29},"40005":{"home":74.37,"income":54785,"name":"Atoka County","oh":0,"pop":14379,"poverty":17.3,"state":"OK","unemp":4.59},"40007":{"home":80.87,"income":64276,"name":"Beaver County","oh":0,"pop":5028,"poverty":13.25,"state":"OK","unemp":2.62},"40009":{"home":67.83,"income":53328,"name":"Beckham County","oh":0,"pop":22148,"poverty":21.68,"state":"OK","unemp":7.86},"40011":{"home":73.44,"income":61642,"name":"Blaine County","oh":0,"pop":8570,"poverty":17.36,"state":"OK","unemp":8.4},"40013":{"home":63.82,"income":57225,"name":"Bryan County","oh":0,"pop":48253,"poverty":16.57,"state":"OK","unemp":4.6},"40015":{"home":72.71,"income":55353,"name":"Caddo County","oh":0,"pop":26447,"poverty":18.3,"state":"OK","unemp":5.83},"40017":{"home":74.81,"income":87751,"name":"Canadian County","oh":0,"pop":168985,"poverty":8.04,"state":"OK","unemp":4.45},"40019":{"home":66.84,"income":60723,"name":"Carter County","oh":0,"pop":48555,"poverty":16.24,"state":"OK","unemp":3.82},"40021":{"home":65.73,"income":53218,"name":"Cherokee County","oh":0,"pop":47942,"poverty":18.21,"state":"OK","unemp":5.14},"40023":{"home":65.76,"income":44081,"name":"Choctaw County","oh":1,"pop":14297,"poverty":23.19,"state":"OK","unemp":4.78},"40025":{"home":78.36,"income":62188,"name":"Cimarron County","oh":0,"pop":2218,"poverty":7.44,"state":"OK","unemp":0.36},"40027":{"home":63.91,"income":77068,"name":"Cleveland County","oh":2,"pop":300047,"poverty":12.9,"state":"OK","unemp":4.82},"40029":{"home":69.38,"income":50423,"name":"Coal County","oh":0,"pop":5320,"poverty":20.82,"state":"OK","unemp":7.52},"40031":{"home":55.6,"income":60761,"name":"Comanche County","oh":1,"pop":121825,"poverty":18.09,"state":"OK","unemp":7.07},"40033":{"home":80.34,"income":58425,"name":"Cotton County","oh":0,"pop":5485,"poverty":20.47,"state":"OK","unemp":3.48},"40035":{"home":73.72,"income":51922,"name":"Craig County","oh":0,"pop":14302,"poverty":19.02,"state":"OK","unemp":5.13},"40037":{"home":74.4,"income":62338,"name":"Creek County","oh":1,"pop":72830,"poverty":14.52,"state":"OK","unemp":3.26},"40039":{"home":60.21,"income":59738,"name":"Custer County","oh":0,"pop":28259,"poverty":16.43,"state":"OK","unemp":4.21},"40041":{"home":77.06,"income":56676,"name":"Delaware County","oh":0,"pop":41279,"poverty":18.96,"state":"OK","unemp":5.16},"40043":{"home":76.39,"income":62569,"name":"Dewey County","oh":0,"pop":4360,"poverty":14.11,"state":"OK","unemp":3.47},"40045":{"home":82.07,"income":61016,"name":"Ellis County","oh":0,"pop":3683,"poverty":12.99,"state":"OK","unemp":5.3},"40047":{"home":65.97,"income":66182,"name":"Garfield County","oh":1,"pop":62146,"poverty":12.55,"state":"OK","unemp":4.87},"40049":{"home":67.71,"income":58556,"name":"Garvin County","oh":0,"pop":25860,"poverty":16.97,"state":"OK","unemp":3.37},"40051":{"home":75.0,"income":75419,"name":"Grady County","oh":0,"pop":56606,"poverty":12.18,"state":"OK","unemp":5.47},"40053":{"home":76.3,"income":60758,"name":"Grant County","oh":0,"pop":4131,"poverty":17.5,"state":"OK","unemp":4.3},"40055":{"home":77.98,"income":59406,"name":"Greer County","oh":0,"pop":5489,"poverty":16.92,"state":"OK","unemp":7.26},"40057":{"home":69.71,"income":43333,"name":"Harmon County","oh":0,"pop":2406,"poverty":22.72,"state":"OK","unemp":7.21},"40059":{"home":83.57,"income":64053,"name":"Harper County","oh":0,"pop":3203,"poverty":13.12,"state":"OK","unemp":2.61},"40061":{"home":78.34,"income":49806,"name":"Haskell County","oh":0,"pop":11683,"poverty":20.78,"state":"OK","unemp":6.57},"40063":{"home":74.1,"income":51581,"name":"Hughes County","oh":0,"pop":13389,"poverty":20.21,"state":"OK","unemp":4.94},"40065":{"home":59.21,"income":62799,"name":"Jackson County","oh":0,"pop":24678,"poverty":16.16,"state":"OK","unemp":5.59},"40067":{"home":70.87,"income":48668,"name":"Jefferson County","oh":0,"pop":5380,"poverty":23.13,"state":"OK","unemp":5.24},"40069":{"home":72.22,"income":52688,"name":"Johnston County","oh":0,"pop":10278,"poverty":22.9,"state":"OK","unemp":4.47},"40071":{"home":69.2,"income":58423,"name":"Kay County","oh":0,"pop":43625,"poverty":16.0,"state":"OK","unemp":5.8},"40073":{"home":74.51,"income":71975,"name":"Kingfisher County","oh":0,"pop":15430,"poverty":12.84,"state":"OK","unemp":2.11},"40075":{"home":69.69,"income":44962,"name":"Kiowa County","oh":0,"pop":8383,"poverty":22.94,"state":"OK","unemp":5.18},"40077":{"home":72.37,"income":41405,"name":"Latimer County","oh":0,"pop":9518,"poverty":20.7,"state":"OK","unemp":5.69},"40079":{"home":72.75,"income":51565,"name":"Le Flore County","oh":0,"pop":49053,"poverty":19.37,"state":"OK","unemp":5.21},"40081":{"home":80.3,"income":62216,"name":"Lincoln County","oh":0,"pop":34219,"poverty":17.27,"state":"OK","unemp":3.86},"40083":{"home":85.16,"income":83899,"name":"Logan County","oh":0,"pop":51938,"poverty":11.64,"state":"OK","unemp":3.6},"40085":{"home":72.99,"income":66580,"name":"Love County","oh":0,"pop":10261,"poverty":14.98,"state":"OK","unemp":5.24},"40087":{"home":79.29,"income":84552,"name":"McClain County","oh":0,"pop":45273,"poverty":8.52,"state":"OK","unemp":4.7},"40089":{"home":73.06,"income":51929,"name":"McCurtain County","oh":0,"pop":30863,"poverty":21.2,"state":"OK","unemp":4.75},"40091":{"home":76.57,"income":46281,"name":"McIntosh County","oh":0,"pop":19400,"poverty":21.06,"state":"OK","unemp":5.29},"40093":{"home":82.46,"income":71266,"name":"Major County","oh":0,"pop":7628,"poverty":11.04,"state":"OK","unemp":2.64},"40095":{"home":77.57,"income":57245,"name":"Marshall County","oh":0,"pop":15792,"poverty":16.08,"state":"OK","unemp":4.71},"40097":{"home":74.4,"income":60305,"name":"Mayes County","oh":0,"pop":39604,"poverty":16.17,"state":"OK","unemp":6.27},"40099":{"home":72.09,"income":66322,"name":"Murray County","oh":0,"pop":13753,"poverty":12.65,"state":"OK","unemp":2.48},"40101":{"home":66.52,"income":53619,"name":"Muskogee County","oh":0,"pop":66444,"poverty":19.12,"state":"OK","unemp":5.66},"40103":{"home":77.72,"income":66365,"name":"Noble County","oh":0,"pop":10897,"poverty":12.86,"state":"OK","unemp":2.63},"40105":{"home":73.55,"income":54333,"name":"Nowata County","oh":0,"pop":9435,"poverty":17.22,"state":"OK","unemp":4.52},"40107":{"home":68.82,"income":48363,"name":"Okfuskee County","oh":0,"pop":11278,"poverty":25.83,"state":"OK","unemp":3.54},"40109":{"home":58.19,"income":66679,"name":"Oklahoma County","oh":1,"pop":806199,"poverty":15.95,"state":"OK","unemp":4.83},"40111":{"home":70.1,"income":54029,"name":"Okmulgee County","oh":0,"pop":36899,"poverty":18.02,"state":"OK","unemp":7.26},"40113":{"home":78.3,"income":62847,"name":"Osage County","oh":0,"pop":45997,"poverty":13.09,"state":"OK","unemp":5.34},"40115":{"home":67.54,"income":49947,"name":"Ottawa County","oh":0,"pop":30341,"poverty":20.87,"state":"OK","unemp":3.01},"40117":{"home":79.5,"income":58738,"name":"Pawnee County","oh":0,"pop":15795,"poverty":18.2,"state":"OK","unemp":4.41},"40119":{"home":51.03,"income":49809,"name":"Payne County","oh":1,"pop":82972,"poverty":22.6,"state":"OK","unemp":5.73},"40121":{"home":71.44,"income":55310,"name":"Pittsburg County","oh":0,"pop":43561,"poverty":17.74,"state":"OK","unemp":5.74},"40123":{"home":66.01,"income":63017,"name":"Pontotoc County","oh":0,"pop":38235,"poverty":12.57,"state":"OK","unemp":3.66},"40125":{"home":70.39,"income":61398,"name":"Pottawatomie County","oh":0,"pop":73463,"poverty":15.89,"state":"OK","unemp":5.29},"40127":{"home":74.86,"income":47940,"name":"Pushmataha County","oh":0,"pop":10790,"poverty":20.71,"state":"OK","unemp":4.41},"40129":{"home":83.12,"income":66094,"name":"Roger Mills County","oh":0,"pop":3359,"poverty":14.67,"state":"OK","unemp":3.19},"40131":{"home":77.75,"income":80067,"name":"Rogers County","oh":0,"pop":98610,"poverty":8.85,"state":"OK","unemp":4.74},"40133":{"home":70.96,"income":48062,"name":"Seminole County","oh":0,"pop":23494,"poverty":21.74,"state":"OK","unemp":6.27},"40135":{"home":70.82,"income":51093,"name":"Sequoyah County","oh":0,"pop":39860,"poverty":20.19,"state":"OK","unemp":4.71},"40137":{"home":74.39,"income":61620,"name":"Stephens County","oh":0,"pop":43551,"poverty":18.02,"state":"OK","unemp":5.23},"40139":{"home":66.41,"income":60069,"name":"Texas County","oh":0,"pop":20774,"poverty":15.72,"state":"OK","unemp":3.43},"40141":{"home":72.75,"income":48939,"name":"Tillman County","oh":0,"pop":6910,"poverty":21.01,"state":"OK","unemp":5.87},"40143":{"home":59.67,"income":69009,"name":"Tulsa County","oh":2,"pop":680794,"poverty":14.71,"state":"OK","unemp":5.37},"40145":{"home":81.26,"income":81207,"name":"Wagoner County","oh":0,"pop":86609,"poverty":9.2,"state":"OK","unemp":4.22},"40147":{"home":71.87,"income":60162,"name":"Washington County","oh":0,"pop":53326,"poverty":16.06,"state":"OK","unemp":4.36},"40149":{"home":75.99,"income":63501,"name":"Washita County","oh":0,"pop":10815,"poverty":14.1,"state":"OK","unemp":5.68},"40151":{"home":65.26,"income":53275,"name":"Woods County","oh":0,"pop":8596,"poverty":19.88,"state":"OK","unemp":4.65},"40153":{"home":73.24,"income":61417,"name":"Woodward County","oh":0,"pop":20158,"poverty":14.02,"state":"OK","unemp":6.18},"41001":{"home":71.49,"income":60936,"name":"Baker County","oh":0,"pop":16840,"poverty":14.85,"state":"OR","unemp":5.63},"41003":{"home":56.95,"income":77702,"name":"Benton County","oh":1,"pop":96303,"poverty":18.2,"state":"OR","unemp":6.98},"41005":{"home":70.66,"income":103517,"name":"Clackamas County","oh":3,"pop":423975,"poverty":7.71,"state":"OR","unemp":4.43},"41007":{"home":63.25,"income":71822,"name":"Clatsop County","oh":2,"pop":41363,"poverty":12.32,"state":"OR","unemp":4.71},"41009":{"home":76.15,"income":87458,"name":"Columbia County","oh":0,"pop":53493,"poverty":8.87,"state":"OR","unemp":4.11},"41011":{"home":71.16,"income":62143,"name":"Coos County","oh":2,"pop":64827,"poverty":16.14,"state":"OR","unemp":6.0},"41013":{"home":74.08,"income":81965,"name":"Crook County","oh":1,"pop":26277,"poverty":11.28,"state":"OR","unemp":5.95},"41015":{"home":74.16,"income":62244,"name":"Curry County","oh":0,"pop":23381,"poverty":15.21,"state":"OR","unemp":5.76},"41017":{"home":69.98,"income":92758,"name":"Deschutes County","oh":1,"pop":206334,"poverty":8.8,"state":"OR","unemp":4.4},"41019":{"home":72.74,"income":61310,"name":"Douglas County","oh":2,"pop":112072,"poverty":16.27,"state":"OR","unemp":5.38},"41021":{"home":74.06,"income":66917,"name":"Gilliam County","oh":0,"pop":1971,"poverty":15.25,"state":"OR","unemp":2.79},"41023":{"home":76.74,"income":59450,"name":"Grant County","oh":0,"pop":7209,"poverty":12.82,"state":"OR","unemp":5.21},"41025":{"home":67.4,"income":55208,"name":"Harney County","oh":0,"pop":7499,"poverty":13.72,"state":"OR","unemp":3.72},"41027":{"home":69.39,"income":88947,"name":"Hood River County","oh":0,"pop":23905,"poverty":8.01,"state":"OR","unemp":3.84},"41029":{"home":65.95,"income":73999,"name":"Jackson County","oh":1,"pop":222645,"poverty":12.36,"state":"OR","unemp":5.36},"41031":{"home":72.01,"income":76260,"name":"Jefferson County","oh":0,"pop":25203,"poverty":13.4,"state":"OR","unemp":8.06},"41033":{"home":71.72,"income":60098,"name":"Josephine County","oh":1,"pop":88179,"poverty":15.59,"state":"OR","unemp":6.4},"41035":{"home":69.42,"income":58830,"name":"Klamath County","oh":0,"pop":70247,"poverty":18.31,"state":"OR","unemp":7.18},"41037":{"home":67.33,"income":62787,"name":"Lake County","oh":0,"pop":8267,"poverty":14.86,"state":"OR","unemp":4.14},"41039":{"home":59.69,"income":71544,"name":"Lane County","oh":3,"pop":384207,"poverty":15.34,"state":"OR","unemp":6.43},"41041":{"home":71.53,"income":63165,"name":"Lincoln County","oh":1,"pop":50964,"poverty":15.89,"state":"OR","unemp":8.0},"41043":{"home":66.86,"income":76329,"name":"Linn County","oh":0,"pop":130706,"poverty":12.98,"state":"OR","unemp":6.0},"41045":{"home":63.22,"income":54519,"name":"Malheur County","oh":0,"pop":31954,"poverty":17.57,"state":"OR","unemp":5.24},"41047":{"home":62.31,"income":77351,"name":"Marion County","oh":2,"pop":349244,"poverty":13.03,"state":"OR","unemp":5.34},"41049":{"home":71.61,"income":75448,"name":"Morrow County","oh":0,"pop":12300,"poverty":13.21,"state":"OR","unemp":2.4},"41051":{"home":53.37,"income":88766,"name":"Multnomah County","oh":3,"pop":801477,"poverty":12.59,"state":"OR","unemp":5.71},"41053":{"home":64.7,"income":85118,"name":"Polk County","oh":0,"pop":89662,"poverty":12.66,"state":"OR","unemp":5.65},"41055":{"home":65.92,"income":60161,"name":"Sherman County","oh":0,"pop":1938,"poverty":22.03,"state":"OR","unemp":1.01},"41057":{"home":74.29,"income":69105,"name":"Tillamook County","oh":1,"pop":27496,"poverty":12.74,"state":"OR","unemp":4.48},"41059":{"home":67.93,"income":67728,"name":"Umatilla County","oh":1,"pop":79940,"poverty":11.78,"state":"OR","unemp":5.04},"41061":{"home":65.51,"income":65661,"name":"Union County","oh":0,"pop":26144,"poverty":16.06,"state":"OR","unemp":5.73},"41063":{"home":72.45,"income":67112,"name":"Wallowa County","oh":0,"pop":7553,"poverty":7.8,"state":"OR","unemp":3.83},"41065":{"home":67.51,"income":64175,"name":"Wasco County","oh":0,"pop":26552,"poverty":11.63,"state":"OR","unemp":7.66},"41067":{"home":60.84,"income":107772,"name":"Washington County","oh":2,"pop":603947,"poverty":8.05,"state":"OR","unemp":4.5},"41069":{"home":71.83,"income":55284,"name":"Wheeler County","oh":0,"pop":1485,"poverty":10.77,"state":"OR","unemp":2.64},"41071":{"home":69.43,"income":90063,"name":"Yamhill County","oh":1,"pop":108734,"poverty":10.25,"state":"OR","unemp":4.8},"42001":{"home":78.88,"income":84092,"name":"Adams County","oh":0,"pop":106115,"poverty":8.19,"state":"PA","unemp":3.36},"42003":{"home":65.17,"income":78548,"name":"Allegheny County","oh":2,"pop":1238177,"poverty":11.52,"state":"PA","unemp":5.04},"42005":{"home":78.82,"income":65008,"name":"Armstrong County","oh":0,"pop":64622,"poverty":11.79,"state":"PA","unemp":4.33},"42007":{"home":75.04,"income":71089,"name":"Beaver County","oh":0,"pop":166324,"poverty":9.9,"state":"PA","unemp":5.26},"42009":{"home":77.54,"income":59992,"name":"Bedford County","oh":0,"pop":47513,"poverty":11.55,"state":"PA","unemp":3.91},"42011":{"home":71.27,"income":79777,"name":"Berks County","oh":1,"pop":433015,"poverty":12.23,"state":"PA","unemp":5.43},"42013":{"home":72.35,"income":62382,"name":"Blair County","oh":1,"pop":121277,"poverty":12.04,"state":"PA","unemp":4.39},"42015":{"home":72.16,"income":63675,"name":"Bradford County","oh":0,"pop":59858,"poverty":12.65,"state":"PA","unemp":6.34},"42017":{"home":77.8,"income":114764,"name":"Bucks County","oh":0,"pop":647461,"poverty":6.1,"state":"PA","unemp":4.4},"42019":{"home":76.94,"income":89843,"name":"Butler County","oh":1,"pop":197254,"poverty":8.15,"state":"PA","unemp":4.41},"42021":{"home":76.37,"income":58418,"name":"Cambria County","oh":1,"pop":131538,"poverty":14.23,"state":"PA","unemp":4.65},"42023":{"home":72.43,"income":50573,"name":"Cameron County","oh":0,"pop":4427,"poverty":13.51,"state":"PA","unemp":7.8},"42025":{"home":76.4,"income":67554,"name":"Carbon County","oh":0,"pop":65382,"poverty":12.31,"state":"PA","unemp":7.46},"42027":{"home":61.79,"income":74291,"name":"Centre County","oh":0,"pop":158576,"poverty":16.32,"state":"PA","unemp":4.25},"42029":{"home":75.05,"income":127208,"name":"Chester County","oh":0,"pop":547840,"poverty":5.98,"state":"PA","unemp":3.77},"42031":{"home":72.49,"income":62649,"name":"Clarion County","oh":0,"pop":37179,"poverty":13.11,"state":"PA","unemp":5.07},"42033":{"home":78.52,"income":62152,"name":"Clearfield County","oh":0,"pop":78635,"poverty":14.61,"state":"PA","unemp":5.91},"42035":{"home":72.3,"income":60816,"name":"Clinton County","oh":0,"pop":37798,"poverty":14.81,"state":"PA","unemp":5.64},"42037":{"home":69.5,"income":64644,"name":"Columbia County","oh":0,"pop":65362,"poverty":13.74,"state":"PA","unemp":5.98},"42039":{"home":74.7,"income":60476,"name":"Crawford County","oh":1,"pop":82716,"poverty":14.32,"state":"PA","unemp":5.01},"42041":{"home":71.34,"income":87494,"name":"Cumberland County","oh":0,"pop":268323,"poverty":7.48,"state":"PA","unemp":3.68},"42043":{"home":63.08,"income":76242,"name":"Dauphin County","oh":1,"pop":289593,"poverty":12.87,"state":"PA","unemp":4.51},"42045":{"home":69.61,"income":89546,"name":"Delaware County","oh":1,"pop":579222,"poverty":10.17,"state":"PA","unemp":6.86},"42047":{"home":79.55,"income":66380,"name":"Elk County","oh":0,"pop":30506,"poverty":8.69,"state":"PA","unemp":5.65},"42049":{"home":68.07,"income":63354,"name":"Erie County","oh":1,"pop":269052,"poverty":14.97,"state":"PA","unemp":5.4},"42051":{"home":72.39,"income":58236,"name":"Fayette County","oh":2,"pop":125997,"poverty":16.82,"state":"PA","unemp":6.26},"42053":{"home":78.33,"income":52191,"name":"Forest County","oh":0,"pop":6715,"poverty":11.93,"state":"PA","unemp":2.46},"42055":{"home":73.52,"income":77003,"name":"Franklin County","oh":0,"pop":157379,"poverty":8.48,"state":"PA","unemp":3.99},"42057":{"home":77.61,"income":65836,"name":"Fulton County","oh":0,"pop":14531,"poverty":11.18,"state":"PA","unemp":2.91},"42059":{"home":77.14,"income":68041,"name":"Greene County","oh":0,"pop":34835,"poverty":13.52,"state":"PA","unemp":5.63},"42061":{"home":79.2,"income":65557,"name":"Huntingdon County","oh":0,"pop":43653,"poverty":10.64,"state":"PA","unemp":4.64},"42063":{"home":72.14,"income":60208,"name":"Indiana County","oh":0,"pop":83042,"poverty":13.98,"state":"PA","unemp":6.74},"42065":{"home":74.91,"income":58686,"name":"Jefferson County","oh":0,"pop":43864,"poverty":14.15,"state":"PA","unemp":4.16},"42067":{"home":73.81,"income":66318,"name":"Juniata County","oh":0,"pop":23379,"poverty":9.7,"state":"PA","unemp":2.11},"42069":{"home":65.42,"income":66223,"name":"Lackawanna County","oh":1,"pop":216146,"poverty":14.36,"state":"PA","unemp":4.91},"42071":{"home":69.82,"income":86959,"name":"Lancaster County","oh":1,"pop":557931,"poverty":8.19,"state":"PA","unemp":3.37},"42073":{"home":75.8,"income":61931,"name":"Lawrence County","oh":1,"pop":85024,"poverty":11.87,"state":"PA","unemp":5.67},"42075":{"home":71.27,"income":78425,"name":"Lebanon County","oh":1,"pop":144186,"poverty":10.1,"state":"PA","unemp":4.32},"42077":{"home":65.57,"income":80079,"name":"Lehigh County","oh":1,"pop":378792,"poverty":11.57,"state":"PA","unemp":5.88},"42079":{"home":67.8,"income":63691,"name":"Luzerne County","oh":3,"pop":327675,"poverty":15.32,"state":"PA","unemp":5.8},"42081":{"home":69.09,"income":63917,"name":"Lycoming County","oh":1,"pop":113489,"poverty":12.83,"state":"PA","unemp":5.14},"42083":{"home":77.95,"income":62905,"name":"McKean County","oh":1,"pop":39904,"poverty":13.7,"state":"PA","unemp":4.88},"42085":{"home":72.39,"income":59976,"name":"Mercer County","oh":0,"pop":109257,"poverty":13.16,"state":"PA","unemp":5.34},"42087":{"home":71.13,"income":63953,"name":"Mifflin County","oh":0,"pop":46041,"poverty":16.23,"state":"PA","unemp":2.66},"42089":{"home":80.23,"income":83565,"name":"Monroe County","oh":0,"pop":167515,"poverty":10.68,"state":"PA","unemp":6.9},"42091":{"home":71.38,"income":113915,"name":"Montgomery County","oh":0,"pop":867573,"poverty":6.51,"state":"PA","unemp":4.46},"42093":{"home":68.49,"income":76976,"name":"Montour County","oh":0,"pop":18103,"poverty":8.84,"state":"PA","unemp":2.92},"42095":{"home":71.11,"income":89184,"name":"Northampton County","oh":2,"pop":318580,"poverty":8.75,"state":"PA","unemp":4.57},"42097":{"home":75.47,"income":60583,"name":"Northumberland County","oh":1,"pop":90560,"poverty":12.59,"state":"PA","unemp":3.69},"42099":{"home":81.83,"income":79444,"name":"Perry County","oh":0,"pop":46239,"poverty":7.99,"state":"PA","unemp":3.13},"42101":{"home":51.79,"income":61953,"name":"Philadelphia County","oh":1,"pop":1579706,"poverty":21.36,"state":"PA","unemp":8.15},"42103":{"home":87.03,"income":81323,"name":"Pike County","oh":0,"pop":60621,"poverty":9.81,"state":"PA","unemp":7.47},"42105":{"home":79.68,"income":59020,"name":"Potter County","oh":0,"pop":16188,"poverty":13.01,"state":"PA","unemp":3.82},"42107":{"home":76.09,"income":68313,"name":"Schuylkill County","oh":1,"pop":143558,"poverty":12.75,"state":"PA","unemp":5.63},"42109":{"home":75.58,"income":66876,"name":"Snyder County","oh":0,"pop":39668,"poverty":9.44,"state":"PA","unemp":2.43},"42111":{"home":80.4,"income":61446,"name":"Somerset County","oh":0,"pop":72799,"poverty":10.99,"state":"PA","unemp":4.92},"42113":{"home":84.95,"income":69764,"name":"Sullivan County","oh":0,"pop":5888,"poverty":11.58,"state":"PA","unemp":5.83},"42115":{"home":78.48,"income":68487,"name":"Susquehanna County","oh":0,"pop":38219,"poverty":11.41,"state":"PA","unemp":5.87},"42117":{"home":77.37,"income":64899,"name":"Tioga County","oh":0,"pop":40945,"poverty":11.72,"state":"PA","unemp":4.55},"42119":{"home":72.32,"income":76404,"name":"Union County","oh":0,"pop":42456,"poverty":8.96,"state":"PA","unemp":2.17},"42121":{"home":75.29,"income":61522,"name":"Venango County","oh":1,"pop":49801,"poverty":13.15,"state":"PA","unemp":5.6},"42123":{"home":79.47,"income":60480,"name":"Warren County","oh":1,"pop":37920,"poverty":10.81,"state":"PA","unemp":4.4},"42125":{"home":76.1,"income":78958,"name":"Washington County","oh":2,"pop":210042,"poverty":9.61,"state":"PA","unemp":4.78},"42127":{"home":80.52,"income":62381,"name":"Wayne County","oh":0,"pop":51262,"poverty":12.12,"state":"PA","unemp":6.01},"42129":{"home":78.42,"income":74109,"name":"Westmoreland County","oh":1,"pop":352500,"poverty":10.27,"state":"PA","unemp":4.78},"42131":{"home":77.91,"income":72460,"name":"Wyoming County","oh":0,"pop":25967,"poverty":11.52,"state":"PA","unemp":4.99},"42133":{"home":76.34,"income":84829,"name":"York County","oh":1,"pop":462924,"poverty":8.36,"state":"PA","unemp":4.49},"44001":{"home":71.82,"income":114490,"name":"Bristol County","oh":0,"pop":50490,"poverty":6.53,"state":"RI","unemp":3.05},"44003":{"home":73.08,"income":94345,"name":"Kent County","oh":1,"pop":171456,"poverty":7.46,"state":"RI","unemp":4.71},"44005":{"home":67.87,"income":103514,"name":"Newport County","oh":1,"pop":84657,"poverty":8.49,"state":"RI","unemp":5.8},"44007":{"home":56.93,"income":78787,"name":"Providence County","oh":6,"pop":664854,"poverty":13.41,"state":"RI","unemp":6.56},"44009":{"home":77.53,"income":106638,"name":"Washington County","oh":0,"pop":130344,"poverty":8.19,"state":"RI","unemp":4.42},"45001":{"home":78.14,"income":52935,"name":"Abbeville County","oh":1,"pop":24420,"poverty":15.66,"state":"SC","unemp":4.02},"45003":{"home":76.54,"income":70609,"name":"Aiken County","oh":1,"pop":174160,"poverty":14.34,"state":"SC","unemp":6.08},"45005":{"home":61.7,"income":32328,"name":"Allendale County","oh":0,"pop":7661,"poverty":28.15,"state":"SC","unemp":8.49},"45007":{"home":74.85,"income":66651,"name":"Anderson County","oh":1,"pop":210478,"poverty":14.57,"state":"SC","unemp":5.26},"45009":{"home":70.39,"income":44370,"name":"Bamberg County","oh":1,"pop":13042,"poverty":24.3,"state":"SC","unemp":14.98},"45011":{"home":70.93,"income":46626,"name":"Barnwell County","oh":0,"pop":20521,"poverty":25.01,"state":"SC","unemp":7.05},"45013":{"home":75.94,"income":86573,"name":"Beaufort County","oh":1,"pop":195289,"poverty":9.63,"state":"SC","unemp":2.62},"45015":{"home":74.55,"income":84358,"name":"Berkeley County","oh":1,"pop":246802,"poverty":9.92,"state":"SC","unemp":3.19},"45017":{"home":85.03,"income":58682,"name":"Calhoun County","oh":0,"pop":14182,"poverty":12.94,"state":"SC","unemp":5.85},"45019":{"home":63.89,"income":88494,"name":"Charleston County","oh":1,"pop":420264,"poverty":11.32,"state":"SC","unemp":3.45},"45021":{"home":73.83,"income":50288,"name":"Cherokee County","oh":0,"pop":56647,"poverty":18.42,"state":"SC","unemp":6.26},"45023":{"home":78.43,"income":52458,"name":"Chester County","oh":0,"pop":32182,"poverty":18.68,"state":"SC","unemp":5.56},"45025":{"home":72.77,"income":49235,"name":"Chesterfield County","oh":0,"pop":43784,"poverty":20.34,"state":"SC","unemp":7.5},"45027":{"home":72.94,"income":52401,"name":"Clarendon County","oh":0,"pop":30986,"poverty":15.43,"state":"SC","unemp":6.85},"45029":{"home":73.29,"income":51114,"name":"Colleton County","oh":0,"pop":38783,"poverty":19.58,"state":"SC","unemp":9.87},"45031":{"home":70.91,"income":48581,"name":"Darlington County","oh":0,"pop":62558,"poverty":21.09,"state":"SC","unemp":6.65},"45033":{"home":64.67,"income":46605,"name":"Dillon County","oh":0,"pop":27862,"poverty":27.66,"state":"SC","unemp":8.95},"45035":{"home":75.53,"income":78198,"name":"Dorchester County","oh":1,"pop":167201,"poverty":11.38,"state":"SC","unemp":4.94},"45037":{"home":80.1,"income":73029,"name":"Edgefield County","oh":0,"pop":27476,"poverty":17.77,"state":"SC","unemp":4.78},"45039":{"home":74.65,"income":47885,"name":"Fairfield County","oh":0,"pop":20550,"poverty":15.65,"state":"SC","unemp":5.46},"45041":{"home":64.5,"income":58305,"name":"Florence County","oh":1,"pop":137117,"poverty":18.66,"state":"SC","unemp":5.6},"45043":{"home":83.95,"income":68713,"name":"Georgetown County","oh":0,"pop":64811,"poverty":14.97,"state":"SC","unemp":4.38},"45045":{"home":68.93,"income":76932,"name":"Greenville County","oh":3,"pop":548166,"poverty":10.83,"state":"SC","unemp":4.36},"45047":{"home":67.01,"income":52830,"name":"Greenwood County","oh":0,"pop":69489,"poverty":15.08,"state":"SC","unemp":5.47},"45049":{"home":73.44,"income":44711,"name":"Hampton County","oh":0,"pop":18254,"poverty":20.69,"state":"SC","unemp":9.49},"45051":{"home":77.26,"income":66880,"name":"Horry County","oh":3,"pop":383016,"poverty":13.24,"state":"SC","unemp":4.88},"45053":{"home":77.16,"income":65613,"name":"Jasper County","oh":0,"pop":32166,"poverty":17.83,"state":"SC","unemp":4.57},"45055":{"home":82.04,"income":68231,"name":"Kershaw County","oh":1,"pop":68314,"poverty":13.16,"state":"SC","unemp":4.75},"45057":{"home":83.26,"income":78869,"name":"Lancaster County","oh":0,"pop":104475,"poverty":11.42,"state":"SC","unemp":4.29},"45059":{"home":71.48,"income":57623,"name":"Laurens County","oh":0,"pop":68666,"poverty":18.13,"state":"SC","unemp":4.49},"45061":{"home":70.49,"income":44760,"name":"Lee County","oh":0,"pop":16166,"poverty":24.98,"state":"SC","unemp":6.66},"45063":{"home":77.4,"income":77408,"name":"Lexington County","oh":0,"pop":304887,"poverty":11.11,"state":"SC","unemp":4.46},"45065":{"home":87.9,"income":55798,"name":"McCormick County","oh":0,"pop":9760,"poverty":17.61,"state":"SC","unemp":4.36},"45067":{"home":62.63,"income":36301,"name":"Marion County","oh":1,"pop":28664,"poverty":29.99,"state":"SC","unemp":7.24},"45069":{"home":62.99,"income":34301,"name":"Marlboro County","oh":0,"pop":25975,"poverty":28.51,"state":"SC","unemp":9.92},"45071":{"home":73.1,"income":61780,"name":"Newberry County","oh":0,"pop":38435,"poverty":17.36,"state":"SC","unemp":4.45},"45073":{"home":76.21,"income":62388,"name":"Oconee County","oh":1,"pop":80469,"poverty":17.57,"state":"SC","unemp":5.88},"45075":{"home":66.96,"income":45675,"name":"Orangeburg County","oh":0,"pop":83253,"poverty":22.44,"state":"SC","unemp":8.31},"45077":{"home":70.9,"income":61064,"name":"Pickens County","oh":0,"pop":134629,"poverty":17.17,"state":"SC","unemp":3.63},"45079":{"home":60.27,"income":63784,"name":"Richland County","oh":1,"pop":422117,"poverty":17.2,"state":"SC","unemp":6.45},"45081":{"home":78.68,"income":51009,"name":"Saluda County","oh":0,"pop":19131,"poverty":18.7,"state":"SC","unemp":3.22},"45083":{"home":72.98,"income":66234,"name":"Spartanburg County","oh":1,"pop":347852,"poverty":14.5,"state":"SC","unemp":4.33},"45085":{"home":68.13,"income":56693,"name":"Sumter County","oh":1,"pop":104725,"poverty":16.56,"state":"SC","unemp":6.87},"45087":{"home":71.28,"income":41621,"name":"Union County","oh":0,"pop":26885,"poverty":22.62,"state":"SC","unemp":7.94},"45089":{"home":76.37,"income":46213,"name":"Williamsburg County","oh":1,"pop":30282,"poverty":23.33,"state":"SC","unemp":3.96},"45091":{"home":74.53,"income":89095,"name":"York County","oh":1,"pop":293673,"poverty":8.37,"state":"SC","unemp":4.15},"46003":{"home":72.74,"income":72885,"name":"Aurora County","oh":0,"pop":2642,"poverty":10.6,"state":"SD","unemp":1.24},"46005":{"home":72.9,"income":67681,"name":"Beadle County","oh":0,"pop":19309,"poverty":13.61,"state":"SD","unemp":1.91},"46007":{"home":61.2,"income":53750,"name":"Bennett County","oh":0,"pop":3345,"poverty":29.94,"state":"SD","unemp":10.0},"46009":{"home":80.48,"income":64435,"name":"Bon Homme County","oh":0,"pop":7044,"poverty":10.57,"state":"SD","unemp":2.2},"46011":{"home":57.23,"income":70064,"name":"Brookings County","oh":2,"pop":35353,"poverty":13.16,"state":"SD","unemp":3.75},"46013":{"home":67.63,"income":70898,"name":"Brown County","oh":1,"pop":37877,"poverty":11.72,"state":"SD","unemp":3.29},"46015":{"home":76.37,"income":73720,"name":"Brule County","oh":0,"pop":5283,"poverty":10.67,"state":"SD","unemp":1.48},"46017":{"home":52.56,"income":47045,"name":"Buffalo County","oh":0,"pop":1808,"poverty":33.91,"state":"SD","unemp":10.8},"46019":{"home":76.15,"income":75652,"name":"Butte County","oh":0,"pop":10676,"poverty":8.63,"state":"SD","unemp":1.8},"46021":{"home":76.26,"income":68929,"name":"Campbell County","oh":0,"pop":1593,"poverty":7.67,"state":"SD","unemp":3.13},"46023":{"home":72.33,"income":64038,"name":"Charles Mix County","oh":0,"pop":9281,"poverty":24.04,"state":"SD","unemp":5.85},"46025":{"home":77.54,"income":70726,"name":"Clark County","oh":0,"pop":3917,"poverty":10.85,"state":"SD","unemp":3.96},"46027":{"home":50.82,"income":56850,"name":"Clay County","oh":1,"pop":15219,"poverty":19.73,"state":"SD","unemp":6.99},"46029":{"home":69.83,"income":72727,"name":"Codington County","oh":0,"pop":28767,"poverty":8.83,"state":"SD","unemp":1.92},"46031":{"home":59.13,"income":46406,"name":"Corson County","oh":0,"pop":3806,"poverty":44.25,"state":"SD","unemp":23.55},"46033":{"home":85.58,"income":84112,"name":"Custer County","oh":0,"pop":8892,"poverty":8.97,"state":"SD","unemp":2.26},"46035":{"home":61.47,"income":66208,"name":"Davison County","oh":0,"pop":19952,"poverty":11.17,"state":"SD","unemp":0.86},"46037":{"home":74.57,"income":66033,"name":"Day County","oh":0,"pop":5437,"poverty":14.82,"state":"SD","unemp":2.09},"46039":{"home":82.78,"income":83112,"name":"Deuel County","oh":0,"pop":4328,"poverty":8.76,"state":"SD","unemp":2.13},"46041":{"home":61.23,"income":54104,"name":"Dewey County","oh":0,"pop":5205,"poverty":33.04,"state":"SD","unemp":13.91},"46043":{"home":76.71,"income":86442,"name":"Douglas County","oh":0,"pop":2828,"poverty":11.05,"state":"SD","unemp":0.47},"46045":{"home":81.1,"income":81630,"name":"Edmunds County","oh":0,"pop":4048,"poverty":9.93,"state":"SD","unemp":1.1},"46047":{"home":72.44,"income":67917,"name":"Fall River County","oh":0,"pop":7258,"poverty":16.57,"state":"SD","unemp":2.48},"46049":{"home":79.58,"income":57750,"name":"Faulk County","oh":0,"pop":2126,"poverty":28.35,"state":"SD","unemp":5.27},"46051":{"home":75.64,"income":75028,"name":"Grant County","oh":1,"pop":7563,"poverty":11.58,"state":"SD","unemp":2.74},"46053":{"home":76.69,"income":62917,"name":"Gregory County","oh":0,"pop":4016,"poverty":9.53,"state":"SD","unemp":2.29},"46055":{"home":79.18,"income":65625,"name":"Haakon County","oh":0,"pop":1722,"poverty":7.72,"state":"SD","unemp":0.0},"46057":{"home":82.0,"income":87101,"name":"Hamlin County","oh":0,"pop":6373,"poverty":6.86,"state":"SD","unemp":0.5},"46059":{"home":65.48,"income":74635,"name":"Hand County","oh":0,"pop":3140,"poverty":5.15,"state":"SD","unemp":0.78},"46061":{"home":89.4,"income":81071,"name":"Hanson County","oh":0,"pop":3472,"poverty":7.03,"state":"SD","unemp":1.8},"46063":{"home":76.51,"income":80441,"name":"Harding County","oh":0,"pop":1148,"poverty":6.33,"state":"SD","unemp":0.87},"46065":{"home":71.98,"income":81395,"name":"Hughes County","oh":1,"pop":17664,"poverty":9.16,"state":"SD","unemp":0.96},"46067":{"home":77.27,"income":73977,"name":"Hutchinson County","oh":0,"pop":7404,"poverty":12.16,"state":"SD","unemp":1.65},"46069":{"home":83.5,"income":73472,"name":"Hyde County","oh":0,"pop":1191,"poverty":5.65,"state":"SD","unemp":3.72},"46071":{"home":67.35,"income":35417,"name":"Jackson County","oh":0,"pop":2802,"poverty":42.36,"state":"SD","unemp":7.18},"46073":{"home":84.08,"income":73750,"name":"Jerauld County","oh":0,"pop":1772,"poverty":8.31,"state":"SD","unemp":1.74},"46075":{"home":76.32,"income":65119,"name":"Jones County","oh":0,"pop":1004,"poverty":18.31,"state":"SD","unemp":2.13},"46077":{"home":82.05,"income":74000,"name":"Kingsbury County","oh":1,"pop":5244,"poverty":10.58,"state":"SD","unemp":1.0},"46079":{"home":73.83,"income":76808,"name":"Lake County","oh":1,"pop":10972,"poverty":8.36,"state":"SD","unemp":2.95},"46081":{"home":65.09,"income":73384,"name":"Lawrence County","oh":0,"pop":27233,"poverty":11.56,"state":"SD","unemp":1.75},"46083":{"home":71.24,"income":99166,"name":"Lincoln County","oh":4,"pop":70638,"poverty":5.58,"state":"SD","unemp":1.68},"46085":{"home":69.95,"income":67143,"name":"Lyman County","oh":0,"pop":3724,"poverty":23.65,"state":"SD","unemp":4.01},"46087":{"home":79.47,"income":83852,"name":"McCook County","oh":0,"pop":5751,"poverty":6.81,"state":"SD","unemp":1.84},"46089":{"home":81.31,"income":66906,"name":"McPherson County","oh":0,"pop":2145,"poverty":12.86,"state":"SD","unemp":1.08},"46091":{"home":80.31,"income":78156,"name":"Marshall County","oh":0,"pop":4344,"poverty":6.06,"state":"SD","unemp":0.32},"46093":{"home":72.92,"income":74790,"name":"Meade County","oh":1,"pop":30546,"poverty":7.1,"state":"SD","unemp":3.2},"46095":{"home":60.37,"income":54076,"name":"Mellette County","oh":0,"pop":1943,"poverty":41.74,"state":"SD","unemp":12.47},"46097":{"home":84.76,"income":76140,"name":"Miner County","oh":0,"pop":2300,"poverty":11.24,"state":"SD","unemp":0.25},"46099":{"home":61.4,"income":77288,"name":"Minnehaha County","oh":4,"pop":208639,"poverty":6.76,"state":"SD","unemp":2.44},"46101":{"home":73.47,"income":78427,"name":"Moody County","oh":1,"pop":6397,"poverty":11.64,"state":"SD","unemp":2.8},"46103":{"home":69.97,"income":79250,"name":"Pennington County","oh":1,"pop":115979,"poverty":8.82,"state":"SD","unemp":3.42},"46105":{"home":78.38,"income":66908,"name":"Perkins County","oh":0,"pop":3001,"poverty":13.73,"state":"SD","unemp":4.86},"46107":{"home":81.52,"income":72045,"name":"Potter County","oh":0,"pop":2388,"poverty":6.18,"state":"SD","unemp":2.61},"46109":{"home":71.17,"income":65130,"name":"Roberts County","oh":0,"pop":10221,"poverty":15.72,"state":"SD","unemp":5.99},"46111":{"home":78.65,"income":78750,"name":"Sanborn County","oh":0,"pop":2384,"poverty":8.54,"state":"SD","unemp":0.57},"46115":{"home":72.73,"income":70139,"name":"Spink County","oh":0,"pop":6219,"poverty":10.05,"state":"SD","unemp":1.34},"46117":{"home":83.1,"income":87712,"name":"Stanley County","oh":1,"pop":3015,"poverty":5.07,"state":"SD","unemp":0.48},"46119":{"home":72.84,"income":72578,"name":"Sully County","oh":0,"pop":1526,"poverty":6.32,"state":"SD","unemp":0.0},"46121":{"home":46.34,"income":42075,"name":"Todd County","oh":0,"pop":9244,"poverty":48.43,"state":"SD","unemp":18.66},"46123":{"home":68.42,"income":58987,"name":"Tripp County","oh":0,"pop":5611,"poverty":18.45,"state":"SD","unemp":1.82},"46125":{"home":78.95,"income":75771,"name":"Turner County","oh":0,"pop":8882,"poverty":9.32,"state":"SD","unemp":2.16},"46127":{"home":73.09,"income":89636,"name":"Union County","oh":3,"pop":17081,"poverty":6.21,"state":"SD","unemp":2.96},"46129":{"home":76.23,"income":65026,"name":"Walworth County","oh":0,"pop":5271,"poverty":14.92,"state":"SD","unemp":3.48},"46135":{"home":72.68,"income":72821,"name":"Yankton County","oh":1,"pop":23414,"poverty":11.91,"state":"SD","unemp":1.38},"46137":{"home":57.14,"income":53958,"name":"Ziebach County","oh":0,"pop":2377,"poverty":33.49,"state":"SD","unemp":23.49},"47001":{"home":71.7,"income":66183,"name":"Anderson County","oh":2,"pop":79153,"poverty":13.36,"state":"TN","unemp":3.74},"47003":{"home":71.86,"income":67225,"name":"Bedford County","oh":1,"pop":52237,"poverty":12.61,"state":"TN","unemp":4.22},"47005":{"home":75.14,"income":51746,"name":"Benton County","oh":1,"pop":16006,"poverty":17.85,"state":"TN","unemp":5.29},"47007":{"home":82.5,"income":54720,"name":"Bledsoe County","oh":0,"pop":15032,"poverty":20.73,"state":"TN","unemp":1.82},"47009":{"home":76.99,"income":77365,"name":"Blount County","oh":2,"pop":139333,"poverty":8.37,"state":"TN","unemp":3.54},"47011":{"home":67.26,"income":66552,"name":"Bradley County","oh":2,"pop":111065,"poverty":12.69,"state":"TN","unemp":6.57},"47013":{"home":69.2,"income":51557,"name":"Campbell County","oh":0,"pop":39761,"poverty":18.53,"state":"TN","unemp":4.96},"47015":{"home":78.38,"income":59443,"name":"Cannon County","oh":0,"pop":14818,"poverty":18.27,"state":"TN","unemp":2.8},"47017":{"home":74.54,"income":51787,"name":"Carroll County","oh":0,"pop":28641,"poverty":16.96,"state":"TN","unemp":4.52},"47019":{"home":75.19,"income":50135,"name":"Carter County","oh":0,"pop":56712,"poverty":17.08,"state":"TN","unemp":6.24},"47021":{"home":81.53,"income":89852,"name":"Cheatham County","oh":0,"pop":41829,"poverty":7.67,"state":"TN","unemp":4.34},"47023":{"home":75.43,"income":59341,"name":"Chester County","oh":0,"pop":17611,"poverty":16.05,"state":"TN","unemp":4.13},"47025":{"home":72.18,"income":49379,"name":"Claiborne County","oh":0,"pop":32466,"poverty":17.36,"state":"TN","unemp":4.5},"47027":{"home":74.38,"income":39972,"name":"Clay County","oh":0,"pop":7670,"poverty":24.2,"state":"TN","unemp":10.05},"47029":{"home":74.52,"income":48016,"name":"Cocke County","oh":0,"pop":36813,"poverty":21.91,"state":"TN","unemp":4.23},"47031":{"home":69.0,"income":61505,"name":"Coffee County","oh":1,"pop":59710,"poverty":17.37,"state":"TN","unemp":3.56},"47033":{"home":71.62,"income":62165,"name":"Crockett County","oh":0,"pop":13944,"poverty":14.52,"state":"TN","unemp":2.89},"47035":{"home":80.21,"income":60375,"name":"Cumberland County","oh":1,"pop":63553,"poverty":14.35,"state":"TN","unemp":5.06},"47037":{"home":52.79,"income":77853,"name":"Davidson County","oh":0,"pop":715388,"poverty":13.95,"state":"TN","unemp":4.49},"47039":{"home":74.34,"income":45375,"name":"Decatur County","oh":0,"pop":11579,"poverty":22.15,"state":"TN","unemp":7.16},"47041":{"home":72.61,"income":53153,"name":"DeKalb County","oh":0,"pop":20959,"poverty":18.57,"state":"TN","unemp":5.64},"47043":{"home":80.27,"income":75003,"name":"Dickson County","oh":0,"pop":55983,"poverty":10.86,"state":"TN","unemp":3.37},"47045":{"home":61.86,"income":58154,"name":"Dyer County","oh":1,"pop":36508,"poverty":16.31,"state":"TN","unemp":4.68},"47047":{"home":81.43,"income":88456,"name":"Fayette County","oh":0,"pop":43267,"poverty":10.27,"state":"TN","unemp":4.76},"47049":{"home":82.57,"income":51149,"name":"Fentress County","oh":0,"pop":19309,"poverty":20.98,"state":"TN","unemp":4.65},"47051":{"home":77.4,"income":63494,"name":"Franklin County","oh":0,"pop":43990,"poverty":11.98,"state":"TN","unemp":2.85},"47053":{"home":68.83,"income":62755,"name":"Gibson County","oh":0,"pop":50869,"poverty":13.68,"state":"TN","unemp":4.98},"47055":{"home":73.3,"income":62307,"name":"Giles County","oh":1,"pop":30620,"poverty":12.79,"state":"TN","unemp":4.4},"47057":{"home":77.12,"income":50538,"name":"Grainger County","oh":0,"pop":24266,"poverty":17.07,"state":"TN","unemp":4.68},"47059":{"home":77.11,"income":56194,"name":"Greene County","oh":0,"pop":71628,"poverty":15.36,"state":"TN","unemp":5.73},"47061":{"home":83.7,"income":47593,"name":"Grundy County","oh":0,"pop":13819,"poverty":18.87,"state":"TN","unemp":8.96},"47063":{"home":69.76,"income":55454,"name":"Hamblen County","oh":0,"pop":65669,"poverty":18.35,"state":"TN","unemp":5.26},"47065":{"home":63.91,"income":76183,"name":"Hamilton County","oh":1,"pop":376192,"poverty":13.08,"state":"TN","unemp":4.37},"47067":{"home":74.61,"income":34960,"name":"Hancock County","oh":0,"pop":6852,"poverty":32.25,"state":"TN","unemp":6.29},"47069":{"home":71.7,"income":46069,"name":"Hardeman County","oh":0,"pop":25433,"poverty":18.99,"state":"TN","unemp":9.79},"47071":{"home":77.99,"income":49956,"name":"Hardin County","oh":0,"pop":27249,"poverty":21.53,"state":"TN","unemp":4.72},"47073":{"home":80.12,"income":56936,"name":"Hawkins County","oh":0,"pop":57964,"poverty":15.17,"state":"TN","unemp":7.31},"47075":{"home":60.65,"income":50472,"name":"Haywood County","oh":1,"pop":17475,"poverty":21.51,"state":"TN","unemp":5.87},"47077":{"home":73.19,"income":55136,"name":"Henderson County","oh":0,"pop":27980,"poverty":16.85,"state":"TN","unemp":6.1},"47079":{"home":73.53,"income":50613,"name":"Henry County","oh":0,"pop":32412,"poverty":18.27,"state":"TN","unemp":4.83},"47081":{"home":79.23,"income":68247,"name":"Hickman County","oh":0,"pop":25436,"poverty":10.64,"state":"TN","unemp":2.42},"47083":{"home":80.97,"income":59576,"name":"Houston County","oh":0,"pop":8353,"poverty":11.06,"state":"TN","unemp":3.88},"47085":{"home":78.32,"income":60616,"name":"Humphreys County","oh":0,"pop":19214,"poverty":14.79,"state":"TN","unemp":6.92},"47087":{"home":81.08,"income":47951,"name":"Jackson County","oh":0,"pop":12029,"poverty":20.25,"state":"TN","unemp":7.64},"47089":{"home":75.82,"income":66114,"name":"Jefferson County","oh":0,"pop":56864,"poverty":11.39,"state":"TN","unemp":4.59},"47091":{"home":77.49,"income":53129,"name":"Johnson County","oh":0,"pop":18196,"poverty":21.44,"state":"TN","unemp":3.16},"47093":{"home":65.18,"income":74222,"name":"Knox County","oh":1,"pop":494148,"poverty":12.2,"state":"TN","unemp":3.52},"47095":{"home":47.75,"income":28814,"name":"Lake County","oh":0,"pop":6579,"poverty":32.18,"state":"TN","unemp":4.91},"47097":{"home":64.35,"income":49879,"name":"Lauderdale County","oh":0,"pop":24784,"poverty":21.04,"state":"TN","unemp":5.57},"47099":{"home":77.55,"income":54706,"name":"Lawrence County","oh":0,"pop":45385,"poverty":14.99,"state":"TN","unemp":4.9},"47101":{"home":81.94,"income":56285,"name":"Lewis County","oh":0,"pop":12992,"poverty":16.75,"state":"TN","unemp":3.67},"47103":{"home":75.82,"income":64667,"name":"Lincoln County","oh":1,"pop":35946,"poverty":12.95,"state":"TN","unemp":4.73},"47105":{"home":80.28,"income":84185,"name":"Loudon County","oh":0,"pop":58580,"poverty":12.61,"state":"TN","unemp":2.78},"47107":{"home":75.78,"income":61470,"name":"McMinn County","oh":0,"pop":54884,"poverty":12.96,"state":"TN","unemp":4.86},"47109":{"home":79.74,"income":53473,"name":"McNairy County","oh":0,"pop":25970,"poverty":16.52,"state":"TN","unemp":5.81},"47111":{"home":73.64,"income":59177,"name":"Macon County","oh":0,"pop":26240,"poverty":17.16,"state":"TN","unemp":3.42},"47113":{"home":62.01,"income":60042,"name":"Madison County","oh":1,"pop":99295,"poverty":18.18,"state":"TN","unemp":7.03},"47115":{"home":78.54,"income":61824,"name":"Marion County","oh":0,"pop":29250,"poverty":16.31,"state":"TN","unemp":7.1},"47117":{"home":76.81,"income":71049,"name":"Marshall County","oh":0,"pop":36049,"poverty":11.78,"state":"TN","unemp":3.92},"47119":{"home":70.9,"income":76130,"name":"Maury County","oh":1,"pop":107791,"poverty":9.85,"state":"TN","unemp":2.39},"47121":{"home":80.96,"income":61375,"name":"Meigs County","oh":0,"pop":13343,"poverty":14.27,"state":"TN","unemp":5.47},"47123":{"home":72.16,"income":56895,"name":"Monroe County","oh":0,"pop":47695,"poverty":15.47,"state":"TN","unemp":4.35},"47125":{"home":61.88,"income":75613,"name":"Montgomery County","oh":1,"pop":234153,"poverty":11.27,"state":"TN","unemp":5.08},"47127":{"home":82.51,"income":66469,"name":"Moore County","oh":0,"pop":6674,"poverty":8.05,"state":"TN","unemp":4.49},"47129":{"home":84.89,"income":65954,"name":"Morgan County","oh":0,"pop":21361,"poverty":15.15,"state":"TN","unemp":5.08},"47131":{"home":68.12,"income":54613,"name":"Obion County","oh":0,"pop":30453,"poverty":18.56,"state":"TN","unemp":4.17},"47133":{"home":76.93,"income":48959,"name":"Overton County","oh":0,"pop":23065,"poverty":16.3,"state":"TN","unemp":3.17},"47135":{"home":73.82,"income":55972,"name":"Perry County","oh":0,"pop":8697,"poverty":18.06,"state":"TN","unemp":5.82},"47137":{"home":83.43,"income":49030,"name":"Pickett County","oh":0,"pop":5079,"poverty":23.91,"state":"TN","unemp":6.76},"47139":{"home":83.59,"income":62522,"name":"Polk County","oh":0,"pop":17898,"poverty":13.95,"state":"TN","unemp":5.28},"47141":{"home":61.19,"income":58912,"name":"Putnam County","oh":0,"pop":82558,"poverty":18.37,"state":"TN","unemp":3.73},"47143":{"home":71.48,"income":55033,"name":"Rhea County","oh":1,"pop":33992,"poverty":15.89,"state":"TN","unemp":5.83},"47145":{"home":78.11,"income":71885,"name":"Roane County","oh":1,"pop":55208,"poverty":11.97,"state":"TN","unemp":4.9},"47147":{"home":77.62,"income":83047,"name":"Robertson County","oh":1,"pop":75539,"poverty":10.36,"state":"TN","unemp":3.31},"47149":{"home":64.82,"income":85470,"name":"Rutherford County","oh":2,"pop":360646,"poverty":9.27,"state":"TN","unemp":3.58},"47151":{"home":71.56,"income":44711,"name":"Scott County","oh":0,"pop":22113,"poverty":23.07,"state":"TN","unemp":7.45},"47153":{"home":78.01,"income":58750,"name":"Sequatchie County","oh":0,"pop":16809,"poverty":21.94,"state":"TN","unemp":6.63},"47155":{"home":70.69,"income":62581,"name":"Sevier County","oh":1,"pop":99652,"poverty":13.47,"state":"TN","unemp":3.34},"47157":{"home":54.14,"income":63767,"name":"Shelby County","oh":3,"pop":919173,"poverty":17.82,"state":"TN","unemp":7.2},"47159":{"home":76.9,"income":66293,"name":"Smith County","oh":0,"pop":20389,"poverty":10.02,"state":"TN","unemp":2.66},"47161":{"home":81.06,"income":63114,"name":"Stewart County","oh":0,"pop":14027,"poverty":16.42,"state":"TN","unemp":2.73},"47163":{"home":72.14,"income":58807,"name":"Sullivan County","oh":2,"pop":160624,"poverty":15.43,"state":"TN","unemp":5.43},"47165":{"home":71.96,"income":90301,"name":"Sumner County","oh":2,"pop":204424,"poverty":8.82,"state":"TN","unemp":3.56},"47167":{"home":76.32,"income":74127,"name":"Tipton County","oh":0,"pop":61553,"poverty":13.6,"state":"TN","unemp":5.53},"47169":{"home":74.46,"income":72747,"name":"Trousdale County","oh":0,"pop":11957,"poverty":11.87,"state":"TN","unemp":0.64},"47171":{"home":72.89,"income":52218,"name":"Unicoi County","oh":0,"pop":17756,"poverty":14.32,"state":"TN","unemp":4.34},"47173":{"home":80.19,"income":62727,"name":"Union County","oh":0,"pop":20431,"poverty":13.8,"state":"TN","unemp":2.63},"47175":{"home":86.41,"income":54931,"name":"Van Buren County","oh":0,"pop":6437,"poverty":16.1,"state":"TN","unemp":2.33},"47177":{"home":72.44,"income":55487,"name":"Warren County","oh":0,"pop":42166,"poverty":15.71,"state":"TN","unemp":5.9},"47179":{"home":64.55,"income":62809,"name":"Washington County","oh":1,"pop":136261,"poverty":15.54,"state":"TN","unemp":4.73},"47181":{"home":80.17,"income":52294,"name":"Wayne County","oh":0,"pop":16168,"poverty":19.96,"state":"TN","unemp":3.39},"47183":{"home":66.3,"income":51880,"name":"Weakley County","oh":0,"pop":33016,"poverty":19.04,"state":"TN","unemp":4.0},"47185":{"home":76.88,"income":52188,"name":"White County","oh":0,"pop":28160,"poverty":13.17,"state":"TN","unemp":5.57},"47187":{"home":78.81,"income":135594,"name":"Williamson County","oh":2,"pop":260351,"poverty":4.64,"state":"TN","unemp":2.43},"47189":{"home":77.02,"income":95839,"name":"Wilson County","oh":1,"pop":158805,"poverty":7.97,"state":"TN","unemp":3.23},"48001":{"home":72.34,"income":62068,"name":"Anderson County","oh":1,"pop":58439,"poverty":17.36,"state":"TX","unemp":5.95},"48003":{"home":78.52,"income":72242,"name":"Andrews County","oh":1,"pop":18610,"poverty":15.59,"state":"TX","unemp":3.32},"48005":{"home":63.99,"income":60960,"name":"Angelina County","oh":1,"pop":87275,"poverty":15.76,"state":"TX","unemp":6.39},"48007":{"home":76.76,"income":69466,"name":"Aransas County","oh":1,"pop":24876,"poverty":14.24,"state":"TX","unemp":4.09},"48009":{"home":84.46,"income":72159,"name":"Archer County","oh":0,"pop":8867,"poverty":9.17,"state":"TX","unemp":3.04},"48011":{"home":80.18,"income":72750,"name":"Armstrong County","oh":0,"pop":1822,"poverty":5.19,"state":"TX","unemp":1.24},"48013":{"home":77.36,"income":70770,"name":"Atascosa County","oh":0,"pop":51008,"poverty":15.83,"state":"TX","unemp":4.09},"48015":{"home":76.51,"income":75789,"name":"Austin County","oh":1,"pop":31170,"poverty":11.95,"state":"TX","unemp":4.35},"48017":{"home":79.9,"income":61420,"name":"Bailey County","oh":0,"pop":6913,"poverty":12.02,"state":"TX","unemp":0.0},"48019":{"home":85.89,"income":75813,"name":"Bandera County","oh":0,"pop":22021,"poverty":13.47,"state":"TX","unemp":8.74},"48021":{"home":76.45,"income":86226,"name":"Bastrop County","oh":2,"pop":106582,"poverty":10.18,"state":"TX","unemp":4.28},"48023":{"home":66.21,"income":45370,"name":"Baylor County","oh":0,"pop":3485,"poverty":21.79,"state":"TX","unemp":4.49},"48025":{"home":70.82,"income":57673,"name":"Bee County","oh":0,"pop":31083,"poverty":17.6,"state":"TX","unemp":5.21},"48027":{"home":56.51,"income":68865,"name":"Bell County","oh":4,"pop":386897,"poverty":14.5,"state":"TX","unemp":6.77},"48029":{"home":58.85,"income":72341,"name":"Bexar County","oh":4,"pop":2067341,"poverty":14.62,"state":"TX","unemp":5.78},"48031":{"home":76.23,"income":92425,"name":"Blanco County","oh":0,"pop":12446,"poverty":8.44,"state":"TX","unemp":5.92},"48033":{"home":66.26,"income":65625,"name":"Borden County","oh":0,"pop":713,"poverty":7.43,"state":"TX","unemp":0.33},"48035":{"home":75.83,"income":68914,"name":"Bosque County","oh":0,"pop":18687,"poverty":9.29,"state":"TX","unemp":3.58},"48037":{"home":63.45,"income":59803,"name":"Bowie County","oh":3,"pop":92115,"poverty":16.21,"state":"TX","unemp":4.43},"48039":{"home":74.14,"income":97993,"name":"Brazoria County","oh":6,"pop":391255,"poverty":7.39,"state":"TX","unemp":4.68},"48041":{"home":46.84,"income":58553,"name":"Brazos County","oh":2,"pop":242311,"poverty":24.27,"state":"TX","unemp":4.72},"48043":{"home":62.49,"income":56212,"name":"Brewster County","oh":1,"pop":9503,"poverty":8.93,"state":"TX","unemp":3.04},"48045":{"home":82.82,"income":45417,"name":"Briscoe County","oh":0,"pop":1301,"poverty":16.8,"state":"TX","unemp":1.02},"48047":{"home":52.8,"income":47764,"name":"Brooks County","oh":0,"pop":6943,"poverty":19.4,"state":"TX","unemp":19.94},"48049":{"home":68.28,"income":57470,"name":"Brown County","oh":1,"pop":38347,"poverty":15.32,"state":"TX","unemp":5.27},"48051":{"home":81.72,"income":70000,"name":"Burleson County","oh":1,"pop":18857,"poverty":12.69,"state":"TX","unemp":4.96},"48053":{"home":76.3,"income":78732,"name":"Burnet County","oh":2,"pop":52652,"poverty":7.96,"state":"TX","unemp":2.63},"48055":{"home":75.31,"income":69758,"name":"Caldwell County","oh":1,"pop":48669,"poverty":13.18,"state":"TX","unemp":3.41},"48057":{"home":77.27,"income":79959,"name":"Calhoun County","oh":0,"pop":19868,"poverty":7.66,"state":"TX","unemp":7.37},"48059":{"home":80.93,"income":72436,"name":"Callahan County","oh":1,"pop":14241,"poverty":9.61,"state":"TX","unemp":4.72},"48061":{"home":65.21,"income":52601,"name":"Cameron County","oh":5,"pop":426120,"poverty":24.83,"state":"TX","unemp":5.91},"48063":{"home":77.5,"income":58843,"name":"Camp County","oh":1,"pop":12798,"poverty":19.92,"state":"TX","unemp":5.68},"48065":{"home":79.2,"income":85231,"name":"Carson County","oh":0,"pop":5801,"poverty":7.44,"state":"TX","unemp":1.18},"48067":{"home":76.59,"income":53813,"name":"Cass County","oh":0,"pop":28568,"poverty":17.52,"state":"TX","unemp":6.39},"48069":{"home":63.57,"income":56776,"name":"Castro County","oh":0,"pop":7344,"poverty":19.19,"state":"TX","unemp":3.74},"48071":{"home":81.56,"income":109804,"name":"Chambers County","oh":0,"pop":51498,"poverty":11.85,"state":"TX","unemp":7.27},"48073":{"home":73.98,"income":61261,"name":"Cherokee County","oh":1,"pop":51886,"poverty":18.16,"state":"TX","unemp":5.2},"48075":{"home":71.0,"income":58654,"name":"Childress County","oh":0,"pop":6743,"poverty":15.35,"state":"TX","unemp":0.55},"48077":{"home":83.98,"income":80114,"name":"Clay County","oh":0,"pop":10495,"poverty":8.39,"state":"TX","unemp":1.95},"48079":{"home":64.64,"income":45313,"name":"Cochran County","oh":0,"pop":2550,"poverty":27.76,"state":"TX","unemp":4.81},"48081":{"home":71.14,"income":43333,"name":"Coke County","oh":0,"pop":3353,"poverty":22.85,"state":"TX","unemp":5.58},"48083":{"home":77.18,"income":49159,"name":"Coleman County","oh":0,"pop":7833,"poverty":19.64,"state":"TX","unemp":7.67},"48085":{"home":64.52,"income":121600,"name":"Collin County","oh":9,"pop":1163337,"poverty":6.23,"state":"TX","unemp":4.17},"48087":{"home":73.85,"income":61280,"name":"Collingsworth County","oh":0,"pop":2588,"poverty":21.76,"state":"TX","unemp":1.11},"48089":{"home":79.51,"income":66377,"name":"Colorado County","oh":2,"pop":21006,"poverty":10.68,"state":"TX","unemp":2.88},"48091":{"home":76.61,"income":101889,"name":"Comal County","oh":1,"pop":183826,"poverty":6.48,"state":"TX","unemp":3.94},"48093":{"home":80.45,"income":59635,"name":"Comanche County","oh":0,"pop":13950,"poverty":16.16,"state":"TX","unemp":6.21},"48095":{"home":80.47,"income":65795,"name":"Concho County","oh":1,"pop":3328,"poverty":11.39,"state":"TX","unemp":1.53},"48097":{"home":71.84,"income":73932,"name":"Cooke County","oh":0,"pop":43046,"poverty":13.53,"state":"TX","unemp":4.48},"48099":{"home":58.56,"income":71301,"name":"Coryell County","oh":1,"pop":84748,"poverty":11.18,"state":"TX","unemp":7.09},"48101":{"home":83.19,"income":59063,"name":"Cottle County","oh":0,"pop":1368,"poverty":17.09,"state":"TX","unemp":12.6},"48103":{"home":83.76,"income":62212,"name":"Crane County","oh":0,"pop":4610,"poverty":10.89,"state":"TX","unemp":4.57},"48105":{"home":73.71,"income":81022,"name":"Crockett County","oh":0,"pop":2822,"poverty":9.32,"state":"TX","unemp":3.01},"48107":{"home":68.84,"income":52188,"name":"Crosby County","oh":1,"pop":5041,"poverty":20.08,"state":"TX","unemp":8.25},"48109":{"home":70.16,"income":58777,"name":"Culberson County","oh":0,"pop":2195,"poverty":19.48,"state":"TX","unemp":1.2},"48111":{"home":63.96,"income":71500,"name":"Dallam County","oh":0,"pop":7298,"poverty":11.47,"state":"TX","unemp":2.34},"48113":{"home":50.77,"income":76547,"name":"Dallas County","oh":15,"pop":2621179,"poverty":13.92,"state":"TX","unemp":5.0},"48115":{"home":70.64,"income":54360,"name":"Dawson County","oh":1,"pop":12134,"poverty":19.57,"state":"TX","unemp":6.39},"48117":{"home":66.82,"income":60799,"name":"Deaf Smith County","oh":0,"pop":18460,"poverty":17.67,"state":"TX","unemp":3.45},"48119":{"home":82.83,"income":66575,"name":"Delta County","oh":0,"pop":5438,"poverty":11.36,"state":"TX","unemp":4.28},"48121":{"home":65.46,"income":111498,"name":"Denton County","oh":9,"pop":979561,"poverty":7.07,"state":"TX","unemp":4.02},"48123":{"home":73.92,"income":63730,"name":"DeWitt County","oh":1,"pop":20016,"poverty":17.6,"state":"TX","unemp":3.72},"48125":{"home":79.5,"income":49335,"name":"Dickens County","oh":0,"pop":1747,"poverty":17.98,"state":"TX","unemp":9.24},"48127":{"home":66.54,"income":38808,"name":"Dimmit County","oh":1,"pop":8380,"poverty":41.11,"state":"TX","unemp":8.42},"48129":{"home":74.83,"income":58750,"name":"Donley County","oh":0,"pop":3257,"poverty":7.87,"state":"TX","unemp":1.68},"48131":{"home":70.39,"income":49038,"name":"Duval County","oh":0,"pop":9742,"poverty":33.27,"state":"TX","unemp":10.98},"48133":{"home":71.59,"income":53549,"name":"Eastland County","oh":3,"pop":18011,"poverty":16.21,"state":"TX","unemp":4.69},"48135":{"home":64.67,"income":71536,"name":"Ector County","oh":1,"pop":164654,"poverty":16.45,"state":"TX","unemp":5.88},"48137":{"home":87.87,"income":40313,"name":"Edwards County","oh":0,"pop":1290,"poverty":31.87,"state":"TX","unemp":0.0},"48139":{"home":75.79,"income":99595,"name":"Ellis County","oh":6,"pop":213160,"poverty":6.9,"state":"TX","unemp":4.46},"48141":{"home":64.23,"income":59806,"name":"El Paso County","oh":1,"pop":870779,"poverty":18.75,"state":"TX","unemp":6.0},"48143":{"home":63.15,"income":65115,"name":"Erath County","oh":0,"pop":43794,"poverty":16.56,"state":"TX","unemp":5.69},"48145":{"home":76.47,"income":57247,"name":"Falls County","oh":0,"pop":17291,"poverty":14.71,"state":"TX","unemp":5.96},"48147":{"home":78.73,"income":72295,"name":"Fannin County","oh":0,"pop":37326,"poverty":13.75,"state":"TX","unemp":4.99},"48149":{"home":79.37,"income":75854,"name":"Fayette County","oh":1,"pop":25042,"poverty":8.63,"state":"TX","unemp":2.27},"48151":{"home":80.43,"income":65533,"name":"Fisher County","oh":0,"pop":3655,"poverty":13.72,"state":"TX","unemp":4.66},"48153":{"home":73.26,"income":58462,"name":"Floyd County","oh":1,"pop":5216,"poverty":17.94,"state":"TX","unemp":6.04},"48155":{"home":75.97,"income":61563,"name":"Foard County","oh":0,"pop":991,"poverty":5.57,"state":"TX","unemp":6.26},"48157":{"home":76.96,"income":114041,"name":"Fort Bend County","oh":5,"pop":893767,"poverty":7.57,"state":"TX","unemp":5.05},"48159":{"home":82.04,"income":72360,"name":"Franklin County","oh":0,"pop":10632,"poverty":11.67,"state":"TX","unemp":4.39},"48161":{"home":75.43,"income":59960,"name":"Freestone County","oh":0,"pop":20049,"poverty":12.3,"state":"TX","unemp":3.04},"48163":{"home":58.95,"income":66010,"name":"Frio County","oh":0,"pop":18582,"poverty":19.51,"state":"TX","unemp":5.57},"48165":{"home":74.63,"income":74132,"name":"Gaines County","oh":0,"pop":22232,"poverty":6.83,"state":"TX","unemp":2.43},"48167":{"home":67.64,"income":86105,"name":"Galveston County","oh":8,"pop":358990,"poverty":11.71,"state":"TX","unemp":5.7},"48169":{"home":70.54,"income":46314,"name":"Garza County","oh":1,"pop":5118,"poverty":8.42,"state":"TX","unemp":11.47},"48171":{"home":74.91,"income":76162,"name":"Gillespie County","oh":1,"pop":27524,"poverty":9.23,"state":"TX","unemp":2.72},"48173":{"home":68.48,"income":101250,"name":"Glasscock County","oh":0,"pop":1068,"poverty":8.9,"state":"TX","unemp":0.78},"48175":{"home":86.84,"income":59359,"name":"Goliad County","oh":0,"pop":7141,"poverty":13.03,"state":"TX","unemp":5.25},"48177":{"home":66.21,"income":58672,"name":"Gonzales County","oh":1,"pop":19851,"poverty":15.82,"state":"TX","unemp":4.31},"48179":{"home":76.37,"income":59614,"name":"Gray County","oh":1,"pop":21045,"poverty":15.72,"state":"TX","unemp":5.57},"48181":{"home":66.78,"income":72182,"name":"Grayson County","oh":2,"pop":143337,"poverty":11.15,"state":"TX","unemp":3.12},"48183":{"home":60.33,"income":66550,"name":"Gregg County","oh":2,"pop":125480,"poverty":16.1,"state":"TX","unemp":3.6},"48185":{"home":79.92,"income":69803,"name":"Grimes County","oh":0,"pop":31340,"poverty":14.57,"state":"TX","unemp":5.06},"48187":{"home":77.82,"income":92375,"name":"Guadalupe County","oh":2,"pop":183642,"poverty":9.31,"state":"TX","unemp":4.76},"48189":{"home":60.54,"income":51897,"name":"Hale County","oh":1,"pop":32131,"poverty":20.54,"state":"TX","unemp":5.28},"48191":{"home":73.57,"income":48459,"name":"Hall County","oh":0,"pop":2820,"poverty":16.25,"state":"TX","unemp":9.04},"48193":{"home":78.69,"income":58219,"name":"Hamilton County","oh":0,"pop":8406,"poverty":16.47,"state":"TX","unemp":5.43},"48195":{"home":81.16,"income":69441,"name":"Hansford County","oh":0,"pop":5119,"poverty":8.58,"state":"TX","unemp":6.2},"48197":{"home":73.9,"income":63333,"name":"Hardeman County","oh":0,"pop":3501,"poverty":10.68,"state":"TX","unemp":2.41},"48199":{"home":82.32,"income":75808,"name":"Hardin County","oh":2,"pop":57642,"poverty":12.09,"state":"TX","unemp":5.43},"48201":{"home":54.72,"income":74983,"name":"Harris County","oh":10,"pop":4838303,"poverty":16.25,"state":"TX","unemp":6.73},"48203":{"home":76.86,"income":66103,"name":"Harrison County","oh":1,"pop":70155,"poverty":15.63,"state":"TX","unemp":5.56},"48205":{"home":74.4,"income":75841,"name":"Hartley County","oh":1,"pop":5215,"poverty":9.38,"state":"TX","unemp":1.65},"48207":{"home":73.67,"income":60653,"name":"Haskell County","oh":0,"pop":5421,"poverty":16.55,"state":"TX","unemp":4.88},"48209":{"home":64.14,"income":89097,"name":"Hays County","oh":3,"pop":268638,"poverty":12.13,"state":"TX","unemp":4.43},"48211":{"home":71.07,"income":61563,"name":"Hemphill County","oh":0,"pop":3234,"poverty":6.19,"state":"TX","unemp":5.86},"48213":{"home":77.81,"income":65179,"name":"Henderson County","oh":0,"pop":84862,"poverty":14.73,"state":"TX","unemp":4.91},"48215":{"home":67.46,"income":54338,"name":"Hidalgo County","oh":9,"pop":891977,"poverty":26.67,"state":"TX","unemp":7.61},"48217":{"home":78.21,"income":64591,"name":"Hill County","oh":1,"pop":37328,"poverty":14.68,"state":"TX","unemp":4.19},"48219":{"home":72.2,"income":63140,"name":"Hockley County","oh":1,"pop":21363,"poverty":13.06,"state":"TX","unemp":4.66},"48221":{"home":81.17,"income":88160,"name":"Hood County","oh":1,"pop":65894,"poverty":7.66,"state":"TX","unemp":5.63},"48223":{"home":71.11,"income":70888,"name":"Hopkins County","oh":1,"pop":37784,"poverty":11.88,"state":"TX","unemp":4.01},"48225":{"home":70.64,"income":56531,"name":"Houston County","oh":1,"pop":22051,"poverty":15.03,"state":"TX","unemp":6.71},"48227":{"home":69.51,"income":69649,"name":"Howard County","oh":1,"pop":32290,"poverty":13.82,"state":"TX","unemp":5.37},"48229":{"home":73.63,"income":48600,"name":"Hudspeth County","oh":0,"pop":3403,"poverty":17.34,"state":"TX","unemp":8.02},"48231":{"home":71.32,"income":71938,"name":"Hunt County","oh":1,"pop":108972,"poverty":11.78,"state":"TX","unemp":5.92},"48233":{"home":83.27,"income":67228,"name":"Hutchinson County","oh":1,"pop":20184,"poverty":13.32,"state":"TX","unemp":3.6},"48235":{"home":82.82,"income":70357,"name":"Irion County","oh":0,"pop":1409,"poverty":10.79,"state":"TX","unemp":0.43},"48237":{"home":72.2,"income":68079,"name":"Jack County","oh":0,"pop":8882,"poverty":12.95,"state":"TX","unemp":9.58},"48239":{"home":70.75,"income":65414,"name":"Jackson County","oh":0,"pop":15152,"poverty":14.05,"state":"TX","unemp":5.28},"48241":{"home":79.02,"income":56723,"name":"Jasper County","oh":1,"pop":32727,"poverty":20.74,"state":"TX","unemp":13.26},"48243":{"home":87.99,"income":59286,"name":"Jeff Davis County","oh":0,"pop":1865,"poverty":23.89,"state":"TX","unemp":0.0},"48245":{"home":62.5,"income":60026,"name":"Jefferson County","oh":2,"pop":253878,"poverty":19.49,"state":"TX","unemp":6.31},"48247":{"home":56.37,"income":42211,"name":"Jim Hogg County","oh":0,"pop":4727,"poverty":31.43,"state":"TX","unemp":6.31},"48249":{"home":68.45,"income":51896,"name":"Jim Wells County","oh":1,"pop":38850,"poverty":24.66,"state":"TX","unemp":6.1},"48251":{"home":74.65,"income":84859,"name":"Johnson County","oh":3,"pop":195597,"poverty":10.0,"state":"TX","unemp":3.62},"48253":{"home":80.39,"income":59464,"name":"Jones County","oh":0,"pop":20304,"poverty":14.05,"state":"TX","unemp":5.53},"48255":{"home":62.43,"income":60214,"name":"Karnes County","oh":0,"pop":14968,"poverty":19.15,"state":"TX","unemp":2.94},"48257":{"home":78.09,"income":89485,"name":"Kaufman County","oh":1,"pop":172604,"poverty":9.68,"state":"TX","unemp":5.31},"48259":{"home":79.49,"income":114962,"name":"Kendall County","oh":0,"pop":48567,"poverty":5.03,"state":"TX","unemp":4.74},"48261":{"home":52.73,"income":38882,"name":"Kenedy County","oh":0,"pop":145,"poverty":15.28,"state":"TX","unemp":0.0},"48263":{"home":79.22,"income":72889,"name":"Kent County","oh":0,"pop":734,"poverty":9.85,"state":"TX","unemp":8.47},"48265":{"home":70.14,"income":69395,"name":"Kerr County","oh":1,"pop":53489,"poverty":11.36,"state":"TX","unemp":3.29},"48267":{"home":78.93,"income":69455,"name":"Kimble County","oh":0,"pop":4389,"poverty":11.68,"state":"TX","unemp":1.27},"48269":{"home":59.46,"income":46645,"name":"King County","oh":0,"pop":211,"poverty":23.7,"state":"TX","unemp":0.0},"48271":{"home":83.94,"income":70000,"name":"Kinney County","oh":0,"pop":3157,"poverty":8.39,"state":"TX","unemp":0.93},"48273":{"home":52.52,"income":61292,"name":"Kleberg County","oh":1,"pop":30579,"poverty":28.09,"state":"TX","unemp":7.69},"48275":{"home":77.37,"income":56667,"name":"Knox County","oh":0,"pop":3307,"poverty":15.74,"state":"TX","unemp":1.28},"48277":{"home":66.07,"income":61880,"name":"Lamar County","oh":0,"pop":50669,"poverty":18.97,"state":"TX","unemp":4.04},"48279":{"home":74.04,"income":60760,"name":"Lamb County","oh":0,"pop":12828,"poverty":15.03,"state":"TX","unemp":2.06},"48281":{"home":80.14,"income":81736,"name":"Lampasas County","oh":1,"pop":22715,"poverty":9.12,"state":"TX","unemp":4.48},"48283":{"home":76.02,"income":57716,"name":"La Salle County","oh":0,"pop":6839,"poverty":21.45,"state":"TX","unemp":1.82},"48285":{"home":78.34,"income":63240,"name":"Lavaca County","oh":0,"pop":20552,"poverty":11.45,"state":"TX","unemp":3.05},"48287":{"home":77.81,"income":76371,"name":"Lee County","oh":1,"pop":17971,"poverty":11.33,"state":"TX","unemp":6.51},"48289":{"home":76.58,"income":61449,"name":"Leon County","oh":1,"pop":16263,"poverty":16.4,"state":"TX","unemp":4.17},"48291":{"home":82.32,"income":68703,"name":"Liberty County","oh":3,"pop":103380,"poverty":18.66,"state":"TX","unemp":7.11},"48293":{"home":72.13,"income":60573,"name":"Limestone County","oh":0,"pop":22283,"poverty":17.07,"state":"TX","unemp":3.72},"48295":{"home":82.44,"income":72560,"name":"Lipscomb County","oh":0,"pop":2918,"poverty":11.46,"state":"TX","unemp":6.5},"48297":{"home":71.34,"income":57150,"name":"Live Oak County","oh":0,"pop":11620,"poverty":17.06,"state":"TX","unemp":5.88},"48299":{"home":76.52,"income":67530,"name":"Llano County","oh":0,"pop":22424,"poverty":12.0,"state":"TX","unemp":4.36},"48301":{"home":11.11,"income":51250,"name":"Loving County","oh":0,"pop":33,"poverty":6.06,"state":"TX","unemp":0.0},"48303":{"home":55.5,"income":64155,"name":"Lubbock County","oh":1,"pop":318884,"poverty":17.15,"state":"TX","unemp":4.94},"48305":{"home":76.99,"income":73679,"name":"Lynn County","oh":0,"pop":5752,"poverty":15.21,"state":"TX","unemp":3.7},"48307":{"home":66.58,"income":54043,"name":"McCulloch County","oh":1,"pop":7514,"poverty":15.33,"state":"TX","unemp":9.04},"48309":{"home":61.8,"income":66643,"name":"McLennan County","oh":5,"pop":266067,"poverty":16.58,"state":"TX","unemp":4.45},"48311":{"home":78.26,"income":43875,"name":"McMullen County","oh":0,"pop":700,"poverty":12.29,"state":"TX","unemp":0.0},"48313":{"home":75.29,"income":74596,"name":"Madison County","oh":0,"pop":13648,"poverty":10.89,"state":"TX","unemp":7.14},"48315":{"home":78.49,"income":49672,"name":"Marion County","oh":0,"pop":9737,"poverty":18.32,"state":"TX","unemp":8.68},"48317":{"home":78.05,"income":93734,"name":"Martin County","oh":0,"pop":5218,"poverty":8.32,"state":"TX","unemp":5.37},"48319":{"home":79.72,"income":74180,"name":"Mason County","oh":0,"pop":3955,"poverty":6.99,"state":"TX","unemp":3.03},"48321":{"home":68.11,"income":58628,"name":"Matagorda County","oh":1,"pop":36329,"poverty":20.73,"state":"TX","unemp":8.68},"48323":{"home":70.53,"income":49568,"name":"Maverick County","oh":1,"pop":58082,"poverty":22.78,"state":"TX","unemp":7.66},"48325":{"home":83.82,"income":78074,"name":"Medina County","oh":1,"pop":53547,"poverty":9.63,"state":"TX","unemp":3.05},"48327":{"home":80.68,"income":53043,"name":"Menard County","oh":1,"pop":1955,"poverty":18.86,"state":"TX","unemp":10.8},"48329":{"home":67.63,"income":92874,"name":"Midland County","oh":1,"pop":174801,"poverty":11.35,"state":"TX","unemp":3.36},"48331":{"home":76.88,"income":66141,"name":"Milam County","oh":0,"pop":25567,"poverty":12.94,"state":"TX","unemp":4.96},"48333":{"home":80.27,"income":67620,"name":"Mills County","oh":0,"pop":4511,"poverty":7.2,"state":"TX","unemp":3.19},"48335":{"home":78.68,"income":60550,"name":"Mitchell County","oh":0,"pop":9018,"poverty":13.8,"state":"TX","unemp":5.3},"48337":{"home":79.88,"income":64545,"name":"Montague County","oh":0,"pop":21046,"poverty":14.19,"state":"TX","unemp":7.06},"48339":{"home":71.77,"income":97701,"name":"Montgomery County","oh":1,"pop":684432,"poverty":9.44,"state":"TX","unemp":4.55},"48341":{"home":62.46,"income":61762,"name":"Moore County","oh":1,"pop":21373,"poverty":18.28,"state":"TX","unemp":3.3},"48343":{"home":73.89,"income":58645,"name":"Morris County","oh":0,"pop":12076,"poverty":19.46,"state":"TX","unemp":7.11},"48345":{"home":76.52,"income":61154,"name":"Motley County","oh":0,"pop":1183,"poverty":16.06,"state":"TX","unemp":0.95},"48347":{"home":59.26,"income":53555,"name":"Nacogdoches County","oh":1,"pop":65162,"poverty":21.8,"state":"TX","unemp":7.02},"48349":{"home":69.44,"income":63111,"name":"Navarro County","oh":1,"pop":54711,"poverty":17.12,"state":"TX","unemp":4.43},"48351":{"home":82.85,"income":42618,"name":"Newton County","oh":0,"pop":12093,"poverty":18.96,"state":"TX","unemp":8.26},"48353":{"home":68.09,"income":50747,"name":"Nolan County","oh":1,"pop":14454,"poverty":22.51,"state":"TX","unemp":5.98},"48355":{"home":59.68,"income":66897,"name":"Nueces County","oh":2,"pop":352955,"poverty":17.4,"state":"TX","unemp":5.16},"48357":{"home":72.72,"income":70183,"name":"Ochiltree County","oh":0,"pop":9786,"poverty":11.85,"state":"TX","unemp":0.28},"48359":{"home":73.62,"income":79900,"name":"Oldham County","oh":0,"pop":2249,"poverty":20.68,"state":"TX","unemp":1.72},"48361":{"home":75.17,"income":72104,"name":"Orange County","oh":2,"pop":85307,"poverty":12.54,"state":"TX","unemp":6.03},"48363":{"home":71.02,"income":67674,"name":"Palo Pinto County","oh":0,"pop":29295,"poverty":16.75,"state":"TX","unemp":6.1},"48365":{"home":79.92,"income":64894,"name":"Panola County","oh":0,"pop":22726,"poverty":11.19,"state":"TX","unemp":2.48},"48367":{"home":80.74,"income":104443,"name":"Parker County","oh":1,"pop":165168,"poverty":7.98,"state":"TX","unemp":3.98},"48369":{"home":72.08,"income":69735,"name":"Parmer County","oh":0,"pop":9731,"poverty":10.17,"state":"TX","unemp":2.65},"48371":{"home":71.95,"income":72750,"name":"Pecos County","oh":1,"pop":14896,"poverty":21.57,"state":"TX","unemp":2.55},"48373":{"home":78.09,"income":62259,"name":"Polk County","oh":2,"pop":52800,"poverty":17.46,"state":"TX","unemp":8.08},"48375":{"home":57.29,"income":53249,"name":"Potter County","oh":1,"pop":115975,"poverty":20.83,"state":"TX","unemp":3.83},"48377":{"home":77.34,"income":43802,"name":"Presidio County","oh":1,"pop":5930,"poverty":32.0,"state":"TX","unemp":6.7},"48379":{"home":82.58,"income":65413,"name":"Rains County","oh":0,"pop":12775,"poverty":9.99,"state":"TX","unemp":3.26},"48381":{"home":67.87,"income":83864,"name":"Randall County","oh":1,"pop":146070,"poverty":9.72,"state":"TX","unemp":2.91},"48383":{"home":69.99,"income":57813,"name":"Reagan County","oh":0,"pop":3232,"poverty":11.79,"state":"TX","unemp":4.97},"48385":{"home":78.1,"income":39605,"name":"Real County","oh":0,"pop":2802,"poverty":17.87,"state":"TX","unemp":0.0},"48387":{"home":71.49,"income":48491,"name":"Red River County","oh":1,"pop":11611,"poverty":15.62,"state":"TX","unemp":2.04},"48389":{"home":73.7,"income":64297,"name":"Reeves County","oh":1,"pop":12664,"poverty":16.76,"state":"TX","unemp":2.36},"48391":{"home":76.99,"income":60181,"name":"Refugio County","oh":0,"pop":6707,"poverty":14.63,"state":"TX","unemp":4.51},"48393":{"home":85.14,"income":67868,"name":"Roberts County","oh":0,"pop":832,"poverty":5.65,"state":"TX","unemp":0.51},"48395":{"home":72.41,"income":72236,"name":"Robertson County","oh":0,"pop":17167,"poverty":13.51,"state":"TX","unemp":7.92},"48397":{"home":82.53,"income":127981,"name":"Rockwall County","oh":1,"pop":123617,"poverty":4.04,"state":"TX","unemp":4.29},"48399":{"home":75.01,"income":62632,"name":"Runnels County","oh":0,"pop":9874,"poverty":10.98,"state":"TX","unemp":4.9},"48401":{"home":78.84,"income":68658,"name":"Rusk County","oh":2,"pop":52842,"poverty":14.41,"state":"TX","unemp":4.46},"48403":{"home":85.67,"income":66585,"name":"Sabine County","oh":0,"pop":10023,"poverty":11.02,"state":"TX","unemp":4.73},"48405":{"home":75.1,"income":50408,"name":"San Augustine County","oh":0,"pop":7874,"poverty":27.14,"state":"TX","unemp":9.51},"48407":{"home":84.56,"income":65364,"name":"San Jacinto County","oh":0,"pop":28441,"poverty":18.37,"state":"TX","unemp":6.77},"48409":{"home":66.87,"income":69704,"name":"San Patricio County","oh":3,"pop":70181,"poverty":14.78,"state":"TX","unemp":4.47},"48411":{"home":71.67,"income":55819,"name":"San Saba County","oh":1,"pop":5696,"poverty":10.73,"state":"TX","unemp":3.09},"48413":{"home":84.34,"income":86694,"name":"Schleicher County","oh":0,"pop":2381,"poverty":9.92,"state":"TX","unemp":5.44},"48415":{"home":76.82,"income":60039,"name":"Scurry County","oh":0,"pop":16488,"poverty":11.6,"state":"TX","unemp":2.44},"48417":{"home":78.65,"income":73047,"name":"Shackelford County","oh":0,"pop":3175,"poverty":9.53,"state":"TX","unemp":7.47},"48419":{"home":74.01,"income":49776,"name":"Shelby County","oh":1,"pop":24155,"poverty":20.58,"state":"TX","unemp":4.07},"48421":{"home":76.28,"income":61250,"name":"Sherman County","oh":0,"pop":2295,"poverty":10.36,"state":"TX","unemp":1.93},"48423":{"home":68.82,"income":74192,"name":"Smith County","oh":2,"pop":241740,"poverty":11.57,"state":"TX","unemp":4.45},"48425":{"home":80.04,"income":79825,"name":"Somervell County","oh":0,"pop":9691,"poverty":7.51,"state":"TX","unemp":3.17},"48427":{"home":69.53,"income":37639,"name":"Starr County","oh":2,"pop":66067,"poverty":33.52,"state":"TX","unemp":10.44},"48429":{"home":79.16,"income":58008,"name":"Stephens County","oh":1,"pop":9351,"poverty":14.65,"state":"TX","unemp":5.45},"48431":{"home":77.69,"income":64954,"name":"Sterling County","oh":0,"pop":1468,"poverty":4.32,"state":"TX","unemp":2.14},"48433":{"home":84.6,"income":56875,"name":"Stonewall County","oh":0,"pop":1227,"poverty":14.9,"state":"TX","unemp":3.57},"48435":{"home":76.04,"income":78906,"name":"Sutton County","oh":0,"pop":3277,"poverty":4.51,"state":"TX","unemp":1.88},"48437":{"home":66.43,"income":36165,"name":"Swisher County","oh":0,"pop":6937,"poverty":30.1,"state":"TX","unemp":4.29},"48439":{"home":59.26,"income":84207,"name":"Tarrant County","oh":17,"pop":2167390,"poverty":11.11,"state":"TX","unemp":4.7},"48441":{"home":60.54,"income":67139,"name":"Taylor County","oh":1,"pop":145863,"poverty":14.67,"state":"TX","unemp":2.59},"48443":{"home":89.36,"income":44886,"name":"Terrell County","oh":0,"pop":835,"poverty":7.66,"state":"TX","unemp":0.0},"48445":{"home":66.51,"income":44100,"name":"Terry County","oh":0,"pop":11629,"poverty":18.33,"state":"TX","unemp":4.47},"48447":{"home":67.98,"income":59216,"name":"Throckmorton County","oh":0,"pop":1639,"poverty":24.22,"state":"TX","unemp":8.25},"48449":{"home":70.6,"income":58425,"name":"Titus County","oh":1,"pop":31363,"poverty":17.1,"state":"TX","unemp":3.09},"48451":{"home":65.15,"income":68370,"name":"Tom Green County","oh":1,"pop":119577,"poverty":11.11,"state":"TX","unemp":3.66},"48453":{"home":52.11,"income":99611,"name":"Travis County","oh":4,"pop":1330015,"poverty":10.93,"state":"TX","unemp":4.56},"48455":{"home":79.37,"income":52018,"name":"Trinity County","oh":0,"pop":14046,"poverty":17.61,"state":"TX","unemp":6.52},"48457":{"home":81.18,"income":55396,"name":"Tyler County","oh":0,"pop":20238,"poverty":17.9,"state":"TX","unemp":7.07},"48459":{"home":80.66,"income":66208,"name":"Upshur County","oh":1,"pop":42567,"poverty":12.36,"state":"TX","unemp":5.8},"48461":{"home":77.21,"income":49167,"name":"Upton County","oh":0,"pop":3191,"poverty":16.04,"state":"TX","unemp":3.53},"48463":{"home":70.56,"income":53801,"name":"Uvalde County","oh":0,"pop":24881,"poverty":22.17,"state":"TX","unemp":4.3},"48465":{"home":69.05,"income":66100,"name":"Val Verde County","oh":1,"pop":47741,"poverty":16.57,"state":"TX","unemp":5.94},"48467":{"home":81.48,"income":69475,"name":"Van Zandt County","oh":1,"pop":62649,"poverty":11.1,"state":"TX","unemp":3.47},"48469":{"home":65.27,"income":70896,"name":"Victoria County","oh":1,"pop":91413,"poverty":16.25,"state":"TX","unemp":4.38},"48471":{"home":56.48,"income":52324,"name":"Walker County","oh":0,"pop":80209,"poverty":18.36,"state":"TX","unemp":8.9},"48473":{"home":72.02,"income":80397,"name":"Waller County","oh":3,"pop":61552,"poverty":14.63,"state":"TX","unemp":6.78},"48475":{"home":78.51,"income":65952,"name":"Ward County","oh":0,"pop":11144,"poverty":14.92,"state":"TX","unemp":2.91},"48477":{"home":69.79,"income":77825,"name":"Washington County","oh":1,"pop":36647,"poverty":13.42,"state":"TX","unemp":2.98},"48479":{"home":64.68,"income":63058,"name":"Webb County","oh":1,"pop":269294,"poverty":21.31,"state":"TX","unemp":5.49},"48481":{"home":72.26,"income":66924,"name":"Wharton County","oh":1,"pop":41794,"poverty":13.61,"state":"TX","unemp":4.86},"48483":{"home":76.24,"income":60167,"name":"Wheeler County","oh":0,"pop":4862,"poverty":15.4,"state":"TX","unemp":4.76},"48485":{"home":61.42,"income":63524,"name":"Wichita County","oh":3,"pop":129996,"poverty":16.49,"state":"TX","unemp":3.69},"48487":{"home":67.18,"income":54102,"name":"Wilbarger County","oh":0,"pop":12616,"poverty":17.46,"state":"TX","unemp":9.29},"48489":{"home":74.75,"income":54180,"name":"Willacy County","oh":1,"pop":20139,"poverty":23.96,"state":"TX","unemp":7.53},"48491":{"home":66.4,"income":111340,"name":"Williamson County","oh":5,"pop":672688,"poverty":6.43,"state":"TX","unemp":3.88},"48493":{"home":84.75,"income":94565,"name":"Wilson County","oh":0,"pop":52781,"poverty":11.31,"state":"TX","unemp":3.57},"48495":{"home":85.99,"income":86900,"name":"Winkler County","oh":0,"pop":7454,"poverty":16.22,"state":"TX","unemp":3.6},"48497":{"home":81.39,"income":93421,"name":"Wise County","oh":1,"pop":75005,"poverty":8.89,"state":"TX","unemp":5.31},"48499":{"home":80.15,"income":60300,"name":"Wood County","oh":0,"pop":46961,"poverty":12.5,"state":"TX","unemp":6.26},"48501":{"home":66.77,"income":84925,"name":"Yoakum County","oh":0,"pop":7571,"poverty":16.78,"state":"TX","unemp":6.86},"48503":{"home":74.07,"income":68010,"name":"Young County","oh":1,"pop":18029,"poverty":16.5,"state":"TX","unemp":3.54},"48505":{"home":71.96,"income":39239,"name":"Zapata County","oh":0,"pop":13841,"poverty":38.39,"state":"TX","unemp":7.35},"48507":{"home":69.03,"income":36749,"name":"Zavala County","oh":0,"pop":9412,"poverty":33.92,"state":"TX","unemp":3.97},"49001":{"home":80.98,"income":79360,"name":"Beaver County","oh":1,"pop":7273,"poverty":6.64,"state":"UT","unemp":1.67},"49003":{"home":75.97,"income":84550,"name":"Box Elder County","oh":1,"pop":61246,"poverty":8.41,"state":"UT","unemp":3.25},"49005":{"home":63.66,"income":81665,"name":"Cache County","oh":2,"pop":140046,"poverty":11.95,"state":"UT","unemp":2.59},"49007":{"home":67.94,"income":58377,"name":"Carbon County","oh":1,"pop":20517,"poverty":17.01,"state":"UT","unemp":5.89},"49009":{"home":82.29,"income":66000,"name":"Daggett County","oh":0,"pop":783,"poverty":9.02,"state":"UT","unemp":6.65},"49011":{"home":77.34,"income":110884,"name":"Davis County","oh":5,"pop":370924,"poverty":6.43,"state":"UT","unemp":2.73},"49013":{"home":78.92,"income":78445,"name":"Duchesne County","oh":0,"pop":20185,"poverty":11.8,"state":"UT","unemp":4.31},"49015":{"home":80.1,"income":74291,"name":"Emery County","oh":2,"pop":10046,"poverty":12.49,"state":"UT","unemp":3.59},"49017":{"home":70.32,"income":61875,"name":"Garfield County","oh":0,"pop":5219,"poverty":9.81,"state":"UT","unemp":4.09},"49019":{"home":70.27,"income":67106,"name":"Grand County","oh":1,"pop":9754,"poverty":13.3,"state":"UT","unemp":1.6},"49021":{"home":68.28,"income":66247,"name":"Iron County","oh":2,"pop":62252,"poverty":13.83,"state":"UT","unemp":3.93},"49023":{"home":83.82,"income":101786,"name":"Juab County","oh":1,"pop":12586,"poverty":6.92,"state":"UT","unemp":2.2},"49025":{"home":80.41,"income":77092,"name":"Kane County","oh":1,"pop":8170,"poverty":9.53,"state":"UT","unemp":3.69},"49027":{"home":81.75,"income":73639,"name":"Millard County","oh":1,"pop":13315,"poverty":7.68,"state":"UT","unemp":5.53},"49029":{"home":88.82,"income":130929,"name":"Morgan County","oh":0,"pop":12802,"poverty":1.42,"state":"UT","unemp":2.32},"49031":{"home":95.5,"income":48393,"name":"Piute County","oh":0,"pop":1694,"poverty":10.2,"state":"UT","unemp":5.86},"49033":{"home":84.72,"income":79009,"name":"Rich County","oh":0,"pop":2631,"poverty":3.8,"state":"UT","unemp":0.0},"49035":{"home":66.13,"income":97494,"name":"Salt Lake County","oh":11,"pop":1196523,"poverty":8.14,"state":"UT","unemp":3.82},"49037":{"home":80.88,"income":64481,"name":"San Juan County","oh":1,"pop":14483,"poverty":18.07,"state":"UT","unemp":12.49},"49039":{"home":74.34,"income":70083,"name":"Sanpete County","oh":1,"pop":29719,"poverty":15.18,"state":"UT","unemp":5.11},"49041":{"home":77.81,"income":74884,"name":"Sevier County","oh":1,"pop":22085,"poverty":9.68,"state":"UT","unemp":4.37},"49043":{"home":80.24,"income":138114,"name":"Summit County","oh":0,"pop":42970,"poverty":4.88,"state":"UT","unemp":1.77},"49045":{"home":81.76,"income":106587,"name":"Tooele County","oh":1,"pop":79347,"poverty":5.19,"state":"UT","unemp":3.58},"49047":{"home":73.51,"income":73746,"name":"Uintah County","oh":0,"pop":37056,"poverty":11.77,"state":"UT","unemp":5.97},"49049":{"home":68.28,"income":100671,"name":"Utah County","oh":5,"pop":705400,"poverty":8.69,"state":"UT","unemp":3.76},"49051":{"home":80.26,"income":117608,"name":"Wasatch County","oh":1,"pop":36642,"poverty":4.75,"state":"UT","unemp":2.02},"49053":{"home":71.64,"income":80632,"name":"Washington County","oh":1,"pop":196431,"poverty":9.84,"state":"UT","unemp":3.6},"49055":{"home":79.33,"income":76607,"name":"Wayne County","oh":0,"pop":2584,"poverty":10.58,"state":"UT","unemp":2.14},"49057":{"home":74.06,"income":90005,"name":"Weber County","oh":1,"pop":269648,"poverty":8.09,"state":"UT","unemp":3.0},"50001":{"home":79.25,"income":89639,"name":"Addison County","oh":1,"pop":37664,"poverty":7.58,"state":"VT","unemp":3.77},"50003":{"home":73.68,"income":73325,"name":"Bennington County","oh":0,"pop":37269,"poverty":11.33,"state":"VT","unemp":4.41},"50005":{"home":79.2,"income":69970,"name":"Caledonia County","oh":0,"pop":30475,"poverty":11.72,"state":"VT","unemp":2.18},"50007":{"home":63.93,"income":96759,"name":"Chittenden County","oh":2,"pop":169758,"poverty":9.73,"state":"VT","unemp":3.24},"50009":{"home":82.43,"income":59294,"name":"Essex County","oh":0,"pop":5982,"poverty":13.85,"state":"VT","unemp":4.79},"50011":{"home":77.39,"income":81313,"name":"Franklin County","oh":1,"pop":50638,"poverty":10.27,"state":"VT","unemp":3.16},"50013":{"home":89.87,"income":97396,"name":"Grand Isle County","oh":0,"pop":7450,"poverty":7.94,"state":"VT","unemp":3.06},"50015":{"home":72.86,"income":74908,"name":"Lamoille County","oh":0,"pop":26148,"poverty":8.51,"state":"VT","unemp":3.28},"50017":{"home":83.18,"income":82232,"name":"Orange County","oh":0,"pop":29761,"poverty":9.31,"state":"VT","unemp":2.31},"50019":{"home":79.71,"income":70103,"name":"Orleans County","oh":0,"pop":27606,"poverty":11.73,"state":"VT","unemp":5.28},"50021":{"home":75.1,"income":68616,"name":"Rutland County","oh":1,"pop":60425,"poverty":11.75,"state":"VT","unemp":4.09},"50023":{"home":73.67,"income":83449,"name":"Washington County","oh":2,"pop":60017,"poverty":8.66,"state":"VT","unemp":2.73},"50025":{"home":73.94,"income":72217,"name":"Windham County","oh":0,"pop":45923,"poverty":11.58,"state":"VT","unemp":4.76},"50027":{"home":74.84,"income":77594,"name":"Windsor County","oh":0,"pop":57990,"poverty":9.22,"state":"VT","unemp":4.37},"51001":{"home":71.43,"income":58993,"name":"Accomack County","oh":0,"pop":33335,"poverty":13.92,"state":"VA","unemp":3.4},"51003":{"home":65.93,"income":104392,"name":"Albemarle County","oh":0,"pop":114919,"poverty":7.67,"state":"VA","unemp":3.4},"51005":{"home":82.28,"income":56188,"name":"Alleghany County","oh":0,"pop":14859,"poverty":11.64,"state":"VA","unemp":2.28},"51007":{"home":82.5,"income":76717,"name":"Amelia County","oh":0,"pop":13462,"poverty":9.7,"state":"VA","unemp":3.78},"51009":{"home":80.84,"income":68724,"name":"Amherst County","oh":0,"pop":31485,"poverty":10.77,"state":"VA","unemp":4.65},"51011":{"home":75.78,"income":62853,"name":"Appomattox County","oh":0,"pop":16610,"poverty":13.99,"state":"VA","unemp":5.12},"51013":{"home":41.26,"income":142114,"name":"Arlington County","oh":0,"pop":236254,"poverty":7.39,"state":"VA","unemp":3.3},"51015":{"home":80.19,"income":82049,"name":"Augusta County","oh":0,"pop":78033,"poverty":6.64,"state":"VA","unemp":2.42},"51017":{"home":71.3,"income":56184,"name":"Bath County","oh":0,"pop":4100,"poverty":23.78,"state":"VA","unemp":1.32},"51019":{"home":84.66,"income":78937,"name":"Bedford County","oh":0,"pop":80894,"poverty":8.06,"state":"VA","unemp":3.07},"51021":{"home":86.49,"income":61216,"name":"Bland County","oh":0,"pop":6199,"poverty":13.58,"state":"VA","unemp":2.29},"51023":{"home":85.53,"income":81213,"name":"Botetourt County","oh":0,"pop":34004,"poverty":6.16,"state":"VA","unemp":2.4},"51025":{"home":74.45,"income":53084,"name":"Brunswick County","oh":0,"pop":15841,"poverty":14.94,"state":"VA","unemp":3.34},"51027":{"home":83.07,"income":42886,"name":"Buchanan County","oh":0,"pop":19415,"poverty":25.22,"state":"VA","unemp":3.86},"51029":{"home":77.32,"income":60828,"name":"Buckingham County","oh":0,"pop":16976,"poverty":12.46,"state":"VA","unemp":4.73},"51031":{"home":74.95,"income":66165,"name":"Campbell County","oh":0,"pop":55312,"poverty":10.81,"state":"VA","unemp":3.71},"51033":{"home":82.35,"income":87407,"name":"Caroline County","oh":0,"pop":32098,"poverty":11.25,"state":"VA","unemp":5.26},"51035":{"home":77.11,"income":54484,"name":"Carroll County","oh":0,"pop":29157,"poverty":15.33,"state":"VA","unemp":5.54},"51036":{"home":86.26,"income":75417,"name":"Charles City County","oh":0,"pop":6627,"poverty":9.45,"state":"VA","unemp":3.9},"51037":{"home":74.72,"income":58000,"name":"Charlotte County","oh":0,"pop":11422,"poverty":18.94,"state":"VA","unemp":2.39},"51041":{"home":76.73,"income":101931,"name":"Chesterfield County","oh":0,"pop":377869,"poverty":7.06,"state":"VA","unemp":4.64},"51043":{"home":81.48,"income":117111,"name":"Clarke County","oh":0,"pop":15216,"poverty":7.01,"state":"VA","unemp":2.71},"51045":{"home":83.75,"income":69057,"name":"Craig County","oh":0,"pop":4856,"poverty":13.75,"state":"VA","unemp":2.17},"51047":{"home":75.04,"income":100049,"name":"Culpeper County","oh":0,"pop":54397,"poverty":7.85,"state":"VA","unemp":2.59},"51049":{"home":75.94,"income":55325,"name":"Cumberland County","oh":0,"pop":9818,"poverty":8.54,"state":"VA","unemp":3.29},"51051":{"home":76.07,"income":47254,"name":"Dickenson County","oh":0,"pop":13733,"poverty":17.33,"state":"VA","unemp":2.26},"51053":{"home":79.61,"income":83704,"name":"Dinwiddie County","oh":0,"pop":28191,"poverty":11.66,"state":"VA","unemp":4.6},"51057":{"home":71.73,"income":56520,"name":"Essex County","oh":0,"pop":10623,"poverty":12.3,"state":"VA","unemp":3.86},"51059":{"home":68.63,"income":153637,"name":"Fairfax County","oh":1,"pop":1147837,"poverty":5.94,"state":"VA","unemp":4.24},"51061":{"home":78.84,"income":130189,"name":"Fauquier County","oh":0,"pop":74577,"poverty":6.76,"state":"VA","unemp":2.86},"51063":{"home":83.9,"income":62191,"name":"Floyd County","oh":0,"pop":15593,"poverty":9.84,"state":"VA","unemp":3.56},"51065":{"home":88.69,"income":96768,"name":"Fluvanna County","oh":0,"pop":28092,"poverty":7.68,"state":"VA","unemp":4.2},"51067":{"home":78.47,"income":68849,"name":"Franklin County","oh":0,"pop":55130,"poverty":12.65,"state":"VA","unemp":2.36},"51069":{"home":79.32,"income":97606,"name":"Frederick County","oh":0,"pop":95008,"poverty":6.81,"state":"VA","unemp":4.24},"51071":{"home":78.9,"income":65691,"name":"Giles County","oh":0,"pop":16557,"poverty":9.34,"state":"VA","unemp":2.15},"51073":{"home":80.38,"income":84306,"name":"Gloucester County","oh":0,"pop":39526,"poverty":5.17,"state":"VA","unemp":2.97},"51075":{"home":84.94,"income":118931,"name":"Goochland County","oh":0,"pop":26410,"poverty":5.14,"state":"VA","unemp":1.66},"51077":{"home":80.43,"income":47730,"name":"Grayson County","oh":0,"pop":15287,"poverty":16.47,"state":"VA","unemp":3.59},"51079":{"home":83.42,"income":89808,"name":"Greene County","oh":0,"pop":21155,"poverty":13.74,"state":"VA","unemp":1.81},"51081":{"home":66.33,"income":54668,"name":"Greensville County","oh":0,"pop":11275,"poverty":14.25,"state":"VA","unemp":6.31},"51083":{"home":74.6,"income":52013,"name":"Halifax County","oh":0,"pop":33639,"poverty":17.35,"state":"VA","unemp":4.24},"51085":{"home":82.12,"income":112805,"name":"Hanover County","oh":0,"pop":112879,"poverty":5.69,"state":"VA","unemp":2.72},"51087":{"home":64.48,"income":88783,"name":"Henrico County","oh":0,"pop":335744,"poverty":8.79,"state":"VA","unemp":3.88},"51089":{"home":75.17,"income":50760,"name":"Henry County","oh":0,"pop":49980,"poverty":16.02,"state":"VA","unemp":4.06},"51091":{"home":88.93,"income":65625,"name":"Highland County","oh":0,"pop":2296,"poverty":9.54,"state":"VA","unemp":11.95},"51093":{"home":80.13,"income":95241,"name":"Isle of Wight County","oh":0,"pop":39974,"poverty":6.75,"state":"VA","unemp":3.88},"51095":{"home":76.72,"income":109985,"name":"James City County","oh":0,"pop":81013,"poverty":6.84,"state":"VA","unemp":2.75},"51097":{"home":75.72,"income":70469,"name":"King and Queen County","oh":0,"pop":6695,"poverty":17.88,"state":"VA","unemp":5.15},"51099":{"home":76.19,"income":116884,"name":"King George County","oh":0,"pop":27896,"poverty":7.48,"state":"VA","unemp":3.71},"51101":{"home":88.87,"income":86056,"name":"King William County","oh":0,"pop":18593,"poverty":5.86,"state":"VA","unemp":2.29},"51103":{"home":81.48,"income":69713,"name":"Lancaster County","oh":0,"pop":10936,"poverty":10.27,"state":"VA","unemp":9.55},"51105":{"home":73.02,"income":41827,"name":"Lee County","oh":0,"pop":21900,"poverty":28.83,"state":"VA","unemp":9.52},"51107":{"home":77.91,"income":181765,"name":"Loudoun County","oh":0,"pop":432998,"poverty":4.23,"state":"VA","unemp":3.31},"51109":{"home":82.23,"income":86689,"name":"Louisa County","oh":0,"pop":39980,"poverty":10.03,"state":"VA","unemp":5.84},"51111":{"home":71.45,"income":54842,"name":"Lunenburg County","oh":0,"pop":12016,"poverty":15.89,"state":"VA","unemp":3.56},"51113":{"home":77.8,"income":84323,"name":"Madison County","oh":0,"pop":14044,"poverty":10.76,"state":"VA","unemp":4.33},"51115":{"home":84.05,"income":75880,"name":"Mathews County","oh":0,"pop":8540,"poverty":7.8,"state":"VA","unemp":4.45},"51117":{"home":68.31,"income":57045,"name":"Mecklenburg County","oh":0,"pop":30516,"poverty":16.34,"state":"VA","unemp":2.62},"51119":{"home":87.43,"income":75060,"name":"Middlesex County","oh":0,"pop":10847,"poverty":7.31,"state":"VA","unemp":2.88},"51121":{"home":55.3,"income":72715,"name":"Montgomery County","oh":0,"pop":99101,"poverty":23.95,"state":"VA","unemp":2.93},"51125":{"home":79.67,"income":72589,"name":"Nelson County","oh":0,"pop":14732,"poverty":12.47,"state":"VA","unemp":3.29},"51127":{"home":92.65,"income":123314,"name":"New Kent County","oh":0,"pop":25105,"poverty":4.73,"state":"VA","unemp":2.27},"51131":{"home":66.14,"income":61632,"name":"Northampton County","oh":0,"pop":12059,"poverty":17.73,"state":"VA","unemp":3.34},"51133":{"home":86.06,"income":66480,"name":"Northumberland County","oh":0,"pop":12188,"poverty":11.54,"state":"VA","unemp":3.83},"51135":{"home":66.6,"income":63261,"name":"Nottoway County","oh":0,"pop":15597,"poverty":18.46,"state":"VA","unemp":2.84},"51137":{"home":78.68,"income":94008,"name":"Orange County","oh":0,"pop":37822,"poverty":9.83,"state":"VA","unemp":3.36},"51139":{"home":71.76,"income":57037,"name":"Page County","oh":0,"pop":23727,"poverty":11.35,"state":"VA","unemp":5.52},"51141":{"home":76.92,"income":53038,"name":"Patrick County","oh":0,"pop":17512,"poverty":11.67,"state":"VA","unemp":2.5},"51143":{"home":78.67,"income":54085,"name":"Pittsylvania County","oh":0,"pop":59856,"poverty":14.56,"state":"VA","unemp":4.68},"51145":{"home":93.24,"income":110537,"name":"Powhatan County","oh":0,"pop":31555,"poverty":4.55,"state":"VA","unemp":3.65},"51147":{"home":58.03,"income":56315,"name":"Prince Edward County","oh":0,"pop":21996,"poverty":20.89,"state":"VA","unemp":1.54},"51149":{"home":74.35,"income":84897,"name":"Prince George County","oh":0,"pop":43146,"poverty":8.89,"state":"VA","unemp":5.21},"51153":{"home":74.26,"income":131402,"name":"Prince William County","oh":0,"pop":488880,"poverty":6.19,"state":"VA","unemp":4.8},"51155":{"home":73.42,"income":62028,"name":"Pulaski County","oh":0,"pop":33687,"poverty":14.37,"state":"VA","unemp":3.21},"51157":{"home":73.4,"income":83380,"name":"Rappahannock County","oh":0,"pop":7427,"poverty":10.26,"state":"VA","unemp":9.2},"51159":{"home":74.66,"income":66304,"name":"Richmond County","oh":0,"pop":9095,"poverty":7.73,"state":"VA","unemp":2.49},"51161":{"home":75.69,"income":83709,"name":"Roanoke County","oh":0,"pop":97023,"poverty":7.26,"state":"VA","unemp":2.75},"51163":{"home":79.27,"income":65469,"name":"Rockbridge County","oh":1,"pop":22531,"poverty":7.51,"state":"VA","unemp":3.86},"51165":{"home":75.27,"income":80693,"name":"Rockingham County","oh":0,"pop":85600,"poverty":9.78,"state":"VA","unemp":2.73},"51167":{"home":76.31,"income":50012,"name":"Russell County","oh":0,"pop":25538,"poverty":16.68,"state":"VA","unemp":3.61},"51169":{"home":77.01,"income":46349,"name":"Scott County","oh":0,"pop":21479,"poverty":20.2,"state":"VA","unemp":2.83},"51171":{"home":73.34,"income":67191,"name":"Shenandoah County","oh":0,"pop":44925,"poverty":11.8,"state":"VA","unemp":4.77},"51173":{"home":70.99,"income":49883,"name":"Smyth County","oh":0,"pop":29420,"poverty":16.83,"state":"VA","unemp":3.05},"51175":{"home":76.11,"income":70795,"name":"Southampton County","oh":0,"pop":17964,"poverty":8.72,"state":"VA","unemp":5.48},"51177":{"home":78.5,"income":109560,"name":"Spotsylvania County","oh":0,"pop":152021,"poverty":7.16,"state":"VA","unemp":5.21},"51179":{"home":79.65,"income":138093,"name":"Stafford County","oh":0,"pop":168919,"poverty":4.83,"state":"VA","unemp":3.0},"51181":{"home":79.54,"income":78041,"name":"Surry County","oh":0,"pop":6549,"poverty":10.53,"state":"VA","unemp":4.99},"51183":{"home":69.75,"income":63530,"name":"Sussex County","oh":0,"pop":10765,"poverty":11.59,"state":"VA","unemp":4.08},"51185":{"home":74.42,"income":47313,"name":"Tazewell County","oh":0,"pop":39624,"poverty":18.52,"state":"VA","unemp":3.83},"51187":{"home":75.85,"income":84682,"name":"Warren County","oh":0,"pop":41531,"poverty":11.64,"state":"VA","unemp":4.88},"51191":{"home":75.78,"income":64552,"name":"Washington County","oh":0,"pop":53926,"poverty":11.07,"state":"VA","unemp":2.97},"51193":{"home":80.06,"income":63398,"name":"Westmoreland County","oh":0,"pop":18826,"poverty":14.01,"state":"VA","unemp":7.31},"51195":{"home":74.2,"income":52943,"name":"Wise County","oh":1,"pop":35448,"poverty":17.23,"state":"VA","unemp":8.22},"51197":{"home":76.96,"income":57745,"name":"Wythe County","oh":0,"pop":28188,"poverty":15.19,"state":"VA","unemp":4.0},"51199":{"home":71.06,"income":108815,"name":"York County","oh":0,"pop":71410,"poverty":5.23,"state":"VA","unemp":3.89},"51510":{"home":43.18,"income":124593,"name":"Alexandria city","oh":1,"pop":159102,"poverty":5.94,"state":"VA","unemp":2.08},"51520":{"home":63.63,"income":50404,"name":"Bristol city","oh":1,"pop":16849,"poverty":17.95,"state":"VA","unemp":6.32},"51530":{"home":56.5,"income":57833,"name":"Buena Vista city","oh":1,"pop":6593,"poverty":18.84,"state":"VA","unemp":1.43},"51540":{"home":44.24,"income":74824,"name":"Charlottesville city","oh":1,"pop":45437,"poverty":19.65,"state":"VA","unemp":3.7},"51550":{"home":72.21,"income":89265,"name":"Chesapeake city","oh":1,"pop":254997,"poverty":11.79,"state":"VA","unemp":4.64},"51570":{"home":68.09,"income":76505,"name":"Colonial Heights city","oh":1,"pop":18352,"poverty":7.91,"state":"VA","unemp":3.58},"51580":{"home":70.11,"income":41944,"name":"Covington city","oh":1,"pop":5680,"poverty":25.68,"state":"VA","unemp":2.75},"51590":{"home":47.78,"income":44423,"name":"Danville city","oh":1,"pop":42214,"poverty":24.65,"state":"VA","unemp":5.56},"51595":{"home":38.11,"income":51899,"name":"Emporia city","oh":1,"pop":5547,"poverty":15.81,"state":"VA","unemp":2.95},"51600":{"home":69.9,"income":132348,"name":"Fairfax city","oh":1,"pop":25026,"poverty":9.1,"state":"VA","unemp":3.27},"51610":{"home":52.53,"income":143262,"name":"Falls Church city","oh":0,"pop":14710,"poverty":4.02,"state":"VA","unemp":4.98},"51620":{"home":53.88,"income":63245,"name":"Franklin city","oh":1,"pop":8250,"poverty":19.35,"state":"VA","unemp":7.93},"51630":{"home":39.74,"income":86071,"name":"Fredericksburg city","oh":1,"pop":28873,"poverty":13.19,"state":"VA","unemp":5.06},"51640":{"home":56.32,"income":38675,"name":"Galax city","oh":1,"pop":6726,"poverty":31.1,"state":"VA","unemp":5.09},"51650":{"home":56.92,"income":69621,"name":"Hampton city","oh":1,"pop":137557,"poverty":12.72,"state":"VA","unemp":6.34},"51660":{"home":39.49,"income":62254,"name":"Harrisonburg city","oh":1,"pop":51392,"poverty":25.71,"state":"VA","unemp":6.86},"51670":{"home":57.9,"income":54729,"name":"Hopewell city","oh":1,"pop":22959,"poverty":21.79,"state":"VA","unemp":9.24},"51678":{"home":53.77,"income":84517,"name":"Lexington city","oh":0,"pop":7525,"poverty":14.04,"state":"VA","unemp":0.64},"51680":{"home":48.87,"income":57947,"name":"Lynchburg city","oh":1,"pop":79497,"poverty":18.6,"state":"VA","unemp":5.33},"51683":{"home":71.47,"income":113590,"name":"Manassas city","oh":0,"pop":42976,"poverty":7.74,"state":"VA","unemp":3.8},"51685":{"home":66.47,"income":103250,"name":"Manassas Park city","oh":2,"pop":16798,"poverty":5.12,"state":"VA","unemp":5.54},"51690":{"home":55.42,"income":46727,"name":"Martinsville city","oh":1,"pop":13658,"poverty":23.5,"state":"VA","unemp":2.91},"51700":{"home":48.16,"income":69634,"name":"Newport News city","oh":1,"pop":184216,"poverty":14.48,"state":"VA","unemp":5.77},"51710":{"home":46.33,"income":66109,"name":"Norfolk city","oh":0,"pop":233596,"poverty":16.5,"state":"VA","unemp":5.7},"51720":{"home":49.97,"income":41495,"name":"Norton city","oh":0,"pop":3577,"poverty":26.31,"state":"VA","unemp":3.83},"51730":{"home":38.62,"income":50698,"name":"Petersburg city","oh":1,"pop":33537,"poverty":21.73,"state":"VA","unemp":10.05},"51735":{"home":84.6,"income":120972,"name":"Poquoson city","oh":1,"pop":12639,"poverty":4.49,"state":"VA","unemp":3.17},"51740":{"home":57.94,"income":60491,"name":"Portsmouth city","oh":1,"pop":97190,"poverty":17.34,"state":"VA","unemp":6.55},"51750":{"home":42.29,"income":57348,"name":"Radford city","oh":1,"pop":16726,"poverty":28.66,"state":"VA","unemp":8.1},"51760":{"home":43.53,"income":64587,"name":"Richmond city","oh":1,"pop":229359,"poverty":18.2,"state":"VA","unemp":5.73},"51770":{"home":52.44,"income":55378,"name":"Roanoke city","oh":1,"pop":98355,"poverty":18.33,"state":"VA","unemp":5.61},"51775":{"home":62.8,"income":66725,"name":"Salem city","oh":1,"pop":25618,"poverty":10.25,"state":"VA","unemp":3.6},"51790":{"home":60.88,"income":65581,"name":"Staunton city","oh":1,"pop":25948,"poverty":12.41,"state":"VA","unemp":5.28},"51800":{"home":70.74,"income":92666,"name":"Suffolk city","oh":1,"pop":98796,"poverty":9.39,"state":"VA","unemp":4.96},"51810":{"home":65.15,"income":92968,"name":"Virginia Beach city","oh":0,"pop":456349,"poverty":8.59,"state":"VA","unemp":3.96},"51820":{"home":59.93,"income":59994,"name":"Waynesboro city","oh":1,"pop":22841,"poverty":11.22,"state":"VA","unemp":5.09},"51830":{"home":53.25,"income":75604,"name":"Williamsburg city","oh":1,"pop":15798,"poverty":18.84,"state":"VA","unemp":6.82},"51840":{"home":43.6,"income":63974,"name":"Winchester city","oh":1,"pop":27913,"poverty":21.49,"state":"VA","unemp":6.42},"53001":{"home":69.31,"income":66136,"name":"Adams County","oh":1,"pop":20800,"poverty":19.55,"state":"WA","unemp":3.59},"53003":{"home":73.23,"income":72283,"name":"Asotin County","oh":1,"pop":22467,"poverty":14.16,"state":"WA","unemp":5.01},"53005":{"home":67.63,"income":89874,"name":"Benton County","oh":1,"pop":212905,"poverty":10.99,"state":"WA","unemp":5.32},"53007":{"home":64.6,"income":82381,"name":"Chelan County","oh":3,"pop":80172,"poverty":8.27,"state":"WA","unemp":3.74},"53009":{"home":73.72,"income":70370,"name":"Clallam County","oh":2,"pop":77813,"poverty":10.58,"state":"WA","unemp":5.09},"53011":{"home":66.35,"income":97536,"name":"Clark County","oh":3,"pop":516959,"poverty":7.98,"state":"WA","unemp":5.29},"53013":{"home":77.71,"income":71810,"name":"Columbia County","oh":0,"pop":4014,"poverty":9.31,"state":"WA","unemp":3.87},"53015":{"home":67.99,"income":76531,"name":"Cowlitz County","oh":2,"pop":112360,"poverty":12.2,"state":"WA","unemp":5.91},"53017":{"home":69.28,"income":80363,"name":"Douglas County","oh":1,"pop":44366,"poverty":8.26,"state":"WA","unemp":3.9},"53019":{"home":78.1,"income":55614,"name":"Ferry County","oh":0,"pop":7387,"poverty":13.59,"state":"WA","unemp":12.46},"53021":{"home":70.96,"income":86714,"name":"Franklin County","oh":1,"pop":98902,"poverty":13.13,"state":"WA","unemp":5.43},"53023":{"home":76.92,"income":64884,"name":"Garfield County","oh":0,"pop":2353,"poverty":11.99,"state":"WA","unemp":6.27},"53025":{"home":66.28,"income":73267,"name":"Grant County","oh":5,"pop":101799,"poverty":15.85,"state":"WA","unemp":6.51},"53027":{"home":73.21,"income":64414,"name":"Grays Harbor County","oh":3,"pop":77053,"poverty":15.31,"state":"WA","unemp":7.01},"53029":{"home":74.75,"income":90551,"name":"Island County","oh":1,"pop":86836,"poverty":7.7,"state":"WA","unemp":4.3},"53031":{"home":79.05,"income":74048,"name":"Jefferson County","oh":1,"pop":33577,"poverty":11.09,"state":"WA","unemp":6.65},"53033":{"home":55.45,"income":124746,"name":"King County","oh":25,"pop":2287171,"poverty":8.59,"state":"WA","unemp":4.84},"53035":{"home":70.13,"income":104158,"name":"Kitsap County","oh":1,"pop":277881,"poverty":8.19,"state":"WA","unemp":4.67},"53037":{"home":61.49,"income":73804,"name":"Kittitas County","oh":2,"pop":47172,"poverty":14.38,"state":"WA","unemp":6.29},"53039":{"home":76.67,"income":71042,"name":"Klickitat County","oh":1,"pop":23411,"poverty":12.93,"state":"WA","unemp":5.22},"53041":{"home":75.76,"income":74796,"name":"Lewis County","oh":2,"pop":85154,"poverty":12.22,"state":"WA","unemp":5.33},"53043":{"home":80.37,"income":71512,"name":"Lincoln County","oh":1,"pop":11489,"poverty":12.46,"state":"WA","unemp":7.77},"53045":{"home":82.32,"income":83270,"name":"Mason County","oh":0,"pop":67982,"poverty":12.26,"state":"WA","unemp":6.57},"53047":{"home":72.39,"income":63207,"name":"Okanogan County","oh":6,"pop":43425,"poverty":20.74,"state":"WA","unemp":4.52},"53049":{"home":81.81,"income":67081,"name":"Pacific County","oh":0,"pop":23994,"poverty":10.35,"state":"WA","unemp":5.15},"53051":{"home":80.82,"income":67436,"name":"Pend Oreille County","oh":0,"pop":14050,"poverty":14.38,"state":"WA","unemp":6.08},"53053":{"home":64.73,"income":99564,"name":"Pierce County","oh":7,"pop":930319,"poverty":8.81,"state":"WA","unemp":5.15},"53055":{"home":77.99,"income":84800,"name":"San Juan County","oh":0,"pop":18478,"poverty":11.34,"state":"WA","unemp":3.66},"53057":{"home":70.06,"income":89263,"name":"Skagit County","oh":2,"pop":131328,"poverty":11.61,"state":"WA","unemp":4.87},"53059":{"home":80.02,"income":93265,"name":"Skamania County","oh":0,"pop":12402,"poverty":8.07,"state":"WA","unemp":5.19},"53061":{"home":68.18,"income":111246,"name":"Snohomish County","oh":8,"pop":844430,"poverty":8.04,"state":"WA","unemp":4.47},"53063":{"home":64.48,"income":78582,"name":"Spokane County","oh":6,"pop":549056,"poverty":11.68,"state":"WA","unemp":5.33},"53065":{"home":79.82,"income":69327,"name":"Stevens County","oh":0,"pop":48067,"poverty":12.04,"state":"WA","unemp":5.3},"53067":{"home":67.69,"income":96563,"name":"Thurston County","oh":2,"pop":299067,"poverty":9.55,"state":"WA","unemp":5.15},"53069":{"home":83.19,"income":62653,"name":"Wahkiakum County","oh":0,"pop":4658,"poverty":17.82,"state":"WA","unemp":3.48},"53071":{"home":64.98,"income":74202,"name":"Walla Walla County","oh":1,"pop":62161,"poverty":12.06,"state":"WA","unemp":6.23},"53073":{"home":63.71,"income":81784,"name":"Whatcom County","oh":2,"pop":230503,"poverty":12.88,"state":"WA","unemp":4.78},"53075":{"home":46.82,"income":55406,"name":"Whitman County","oh":3,"pop":47003,"poverty":22.66,"state":"WA","unemp":6.98},"53077":{"home":61.85,"income":70656,"name":"Yakima County","oh":2,"pop":257152,"poverty":15.46,"state":"WA","unemp":7.33},"54001":{"home":78.33,"income":51394,"name":"Barbour County","oh":1,"pop":15424,"poverty":19.98,"state":"WV","unemp":8.49},"54003":{"home":76.01,"income":80815,"name":"Berkeley County","oh":1,"pop":129514,"poverty":11.1,"state":"WV","unemp":4.74},"54005":{"home":81.32,"income":57093,"name":"Boone County","oh":0,"pop":21026,"poverty":16.24,"state":"WV","unemp":8.89},"54007":{"home":76.83,"income":50331,"name":"Braxton County","oh":0,"pop":12208,"poverty":20.42,"state":"WV","unemp":9.36},"54009":{"home":74.63,"income":54316,"name":"Brooke County","oh":0,"pop":21805,"poverty":13.08,"state":"WV","unemp":6.26},"54011":{"home":64.18,"income":55832,"name":"Cabell County","oh":1,"pop":92739,"poverty":19.2,"state":"WV","unemp":5.13},"54013":{"home":87.13,"income":43980,"name":"Calhoun County","oh":0,"pop":6048,"poverty":32.86,"state":"WV","unemp":8.91},"54015":{"home":75.98,"income":42318,"name":"Clay County","oh":0,"pop":7835,"poverty":26.43,"state":"WV","unemp":11.86},"54017":{"home":88.8,"income":57401,"name":"Doddridge County","oh":0,"pop":7711,"poverty":14.84,"state":"WV","unemp":5.73},"54019":{"home":77.67,"income":53194,"name":"Fayette County","oh":0,"pop":39519,"poverty":19.24,"state":"WV","unemp":5.55},"54021":{"home":75.64,"income":47981,"name":"Gilmer County","oh":0,"pop":7288,"poverty":18.99,"state":"WV","unemp":6.79},"54023":{"home":81.08,"income":62361,"name":"Grant County","oh":0,"pop":10983,"poverty":13.26,"state":"WV","unemp":3.28},"54025":{"home":73.11,"income":48218,"name":"Greenbrier County","oh":0,"pop":32386,"poverty":21.82,"state":"WV","unemp":4.16},"54027":{"home":82.69,"income":63116,"name":"Hampshire County","oh":1,"pop":23465,"poverty":13.07,"state":"WV","unemp":9.02},"54029":{"home":74.49,"income":61466,"name":"Hancock County","oh":0,"pop":28431,"poverty":14.51,"state":"WV","unemp":8.42},"54031":{"home":77.34,"income":49272,"name":"Hardy County","oh":0,"pop":14243,"poverty":17.69,"state":"WV","unemp":7.33},"54033":{"home":73.57,"income":60377,"name":"Harrison County","oh":1,"pop":64984,"poverty":14.36,"state":"WV","unemp":4.0},"54035":{"home":78.65,"income":58845,"name":"Jackson County","oh":0,"pop":27705,"poverty":18.45,"state":"WV","unemp":5.15},"54037":{"home":80.27,"income":98806,"name":"Jefferson County","oh":0,"pop":59260,"poverty":8.69,"state":"WV","unemp":3.86},"54039":{"home":71.06,"income":60943,"name":"Kanawha County","oh":1,"pop":176537,"poverty":15.75,"state":"WV","unemp":5.58},"54041":{"home":72.21,"income":56477,"name":"Lewis County","oh":1,"pop":16740,"poverty":16.12,"state":"WV","unemp":8.6},"54043":{"home":74.46,"income":46205,"name":"Lincoln County","oh":0,"pop":19902,"poverty":23.16,"state":"WV","unemp":5.94},"54045":{"home":77.05,"income":49723,"name":"Logan County","oh":0,"pop":31418,"poverty":21.78,"state":"WV","unemp":8.51},"54047":{"home":77.27,"income":31559,"name":"McDowell County","oh":0,"pop":17943,"poverty":34.18,"state":"WV","unemp":8.23},"54049":{"home":76.68,"income":67370,"name":"Marion County","oh":1,"pop":55909,"poverty":13.56,"state":"WV","unemp":4.78},"54051":{"home":78.43,"income":59169,"name":"Marshall County","oh":0,"pop":29865,"poverty":16.82,"state":"WV","unemp":4.31},"54053":{"home":81.84,"income":49761,"name":"Mason County","oh":1,"pop":25043,"poverty":19.4,"state":"WV","unemp":3.81},"54055":{"home":72.87,"income":53210,"name":"Mercer County","oh":1,"pop":58563,"poverty":16.49,"state":"WV","unemp":2.65},"54057":{"home":80.98,"income":69375,"name":"Mineral County","oh":0,"pop":26854,"poverty":14.04,"state":"WV","unemp":6.56},"54059":{"home":73.42,"income":38119,"name":"Mingo County","oh":0,"pop":22542,"poverty":32.36,"state":"WV","unemp":11.51},"54061":{"home":57.85,"income":65346,"name":"Monongalia County","oh":1,"pop":107163,"poverty":19.71,"state":"WV","unemp":4.72},"54063":{"home":86.86,"income":56750,"name":"Monroe County","oh":0,"pop":12386,"poverty":13.97,"state":"WV","unemp":4.77},"54065":{"home":84.13,"income":72179,"name":"Morgan County","oh":0,"pop":17426,"poverty":11.17,"state":"WV","unemp":3.9},"54067":{"home":82.21,"income":54639,"name":"Nicholas County","oh":1,"pop":24277,"poverty":15.4,"state":"WV","unemp":5.92},"54069":{"home":66.39,"income":57094,"name":"Ohio County","oh":1,"pop":41582,"poverty":17.66,"state":"WV","unemp":5.98},"54071":{"home":84.93,"income":64931,"name":"Pendleton County","oh":0,"pop":6043,"poverty":16.55,"state":"WV","unemp":6.34},"54073":{"home":81.44,"income":60932,"name":"Pleasants County","oh":0,"pop":7521,"poverty":11.59,"state":"WV","unemp":8.55},"54075":{"home":83.62,"income":42119,"name":"Pocahontas County","oh":0,"pop":7784,"poverty":22.55,"state":"WV","unemp":11.9},"54077":{"home":81.49,"income":61880,"name":"Preston County","oh":0,"pop":34160,"poverty":13.77,"state":"WV","unemp":5.31},"54079":{"home":81.78,"income":79527,"name":"Putnam County","oh":0,"pop":57177,"poverty":10.59,"state":"WV","unemp":3.11},"54081":{"home":75.33,"income":52150,"name":"Raleigh County","oh":1,"pop":73195,"poverty":22.82,"state":"WV","unemp":5.0},"54083":{"home":74.99,"income":52757,"name":"Randolph County","oh":0,"pop":27576,"poverty":15.91,"state":"WV","unemp":7.43},"54085":{"home":84.21,"income":50582,"name":"Ritchie County","oh":0,"pop":8286,"poverty":21.56,"state":"WV","unemp":2.36},"54087":{"home":78.87,"income":45778,"name":"Roane County","oh":0,"pop":13786,"poverty":19.06,"state":"WV","unemp":9.11},"54089":{"home":81.15,"income":40699,"name":"Summers County","oh":0,"pop":11729,"poverty":23.79,"state":"WV","unemp":2.2},"54091":{"home":83.93,"income":57795,"name":"Taylor County","oh":0,"pop":16487,"poverty":13.86,"state":"WV","unemp":7.51},"54093":{"home":80.92,"income":53358,"name":"Tucker County","oh":0,"pop":6654,"poverty":15.34,"state":"WV","unemp":6.07},"54095":{"home":84.07,"income":63693,"name":"Tyler County","oh":0,"pop":8064,"poverty":20.21,"state":"WV","unemp":6.97},"54097":{"home":80.72,"income":54338,"name":"Upshur County","oh":0,"pop":23712,"poverty":19.24,"state":"WV","unemp":5.72},"54099":{"home":78.59,"income":58878,"name":"Wayne County","oh":0,"pop":38164,"poverty":14.58,"state":"WV","unemp":4.89},"54101":{"home":77.3,"income":43839,"name":"Webster County","oh":0,"pop":8144,"poverty":23.27,"state":"WV","unemp":9.19},"54103":{"home":83.15,"income":56836,"name":"Wetzel County","oh":0,"pop":14078,"poverty":16.0,"state":"WV","unemp":5.42},"54105":{"home":87.75,"income":49867,"name":"Wirt County","oh":0,"pop":5053,"poverty":16.83,"state":"WV","unemp":4.95},"54107":{"home":75.1,"income":57810,"name":"Wood County","oh":1,"pop":83407,"poverty":14.75,"state":"WV","unemp":5.35},"54109":{"home":82.47,"income":48440,"name":"Wyoming County","oh":0,"pop":20629,"poverty":22.58,"state":"WV","unemp":5.65},"55001":{"home":86.24,"income":59442,"name":"Adams County","oh":0,"pop":21123,"poverty":14.13,"state":"WI","unemp":4.52},"55003":{"home":73.43,"income":62462,"name":"Ashland County","oh":1,"pop":16080,"poverty":13.38,"state":"WI","unemp":3.77},"55005":{"home":77.37,"income":65933,"name":"Barron County","oh":1,"pop":46797,"poverty":11.01,"state":"WI","unemp":2.83},"55007":{"home":83.86,"income":71151,"name":"Bayfield County","oh":1,"pop":16575,"poverty":9.77,"state":"WI","unemp":3.59},"55009":{"home":65.99,"income":79649,"name":"Brown County","oh":2,"pop":270892,"poverty":9.06,"state":"WI","unemp":2.6},"55011":{"home":77.5,"income":70479,"name":"Buffalo County","oh":1,"pop":13393,"poverty":8.43,"state":"WI","unemp":2.85},"55013":{"home":85.85,"income":62819,"name":"Burnett County","oh":0,"pop":16916,"poverty":12.76,"state":"WI","unemp":4.88},"55015":{"home":80.08,"income":88810,"name":"Calumet County","oh":0,"pop":52942,"poverty":5.88,"state":"WI","unemp":2.12},"55017":{"home":74.16,"income":74680,"name":"Chippewa County","oh":1,"pop":66799,"poverty":10.23,"state":"WI","unemp":3.06},"55019":{"home":78.53,"income":67400,"name":"Clark County","oh":1,"pop":34739,"poverty":12.07,"state":"WI","unemp":3.73},"55021":{"home":76.66,"income":85351,"name":"Columbia County","oh":2,"pop":58272,"poverty":7.75,"state":"WI","unemp":3.06},"55023":{"home":77.15,"income":64094,"name":"Crawford County","oh":0,"pop":16042,"poverty":13.78,"state":"WI","unemp":3.15},"55025":{"home":57.12,"income":89975,"name":"Dane County","oh":6,"pop":572674,"poverty":10.62,"state":"WI","unemp":2.39},"55027":{"home":71.32,"income":75929,"name":"Dodge County","oh":2,"pop":88742,"poverty":8.5,"state":"WI","unemp":3.78},"55029":{"home":78.23,"income":74795,"name":"Door County","oh":0,"pop":30445,"poverty":7.66,"state":"WI","unemp":2.42},"55031":{"home":71.89,"income":75099,"name":"Douglas County","oh":1,"pop":44229,"poverty":10.76,"state":"WI","unemp":3.11},"55033":{"home":67.05,"income":74824,"name":"Dunn County","oh":1,"pop":45527,"poverty":10.68,"state":"WI","unemp":4.39},"55035":{"home":61.04,"income":74546,"name":"Eau Claire County","oh":1,"pop":107116,"poverty":11.8,"state":"WI","unemp":2.96},"55037":{"home":90.85,"income":61086,"name":"Florence County","oh":0,"pop":4646,"poverty":7.3,"state":"WI","unemp":4.79},"55039":{"home":70.71,"income":74275,"name":"Fond du Lac County","oh":0,"pop":104137,"poverty":9.24,"state":"WI","unemp":3.17},"55041":{"home":81.98,"income":61071,"name":"Forest County","oh":0,"pop":9369,"poverty":15.23,"state":"WI","unemp":2.89},"55043":{"home":69.81,"income":66858,"name":"Grant County","oh":0,"pop":51770,"poverty":12.99,"state":"WI","unemp":3.1},"55045":{"home":75.87,"income":82852,"name":"Green County","oh":1,"pop":37017,"poverty":7.71,"state":"WI","unemp":3.63},"55047":{"home":74.47,"income":68196,"name":"Green Lake County","oh":1,"pop":19263,"poverty":13.77,"state":"WI","unemp":2.76},"55049":{"home":77.37,"income":82182,"name":"Iowa County","oh":0,"pop":23867,"poverty":7.59,"state":"WI","unemp":3.12},"55051":{"home":88.52,"income":60625,"name":"Iron County","oh":0,"pop":6210,"poverty":10.46,"state":"WI","unemp":2.54},"55053":{"home":80.14,"income":68110,"name":"Jackson County","oh":0,"pop":20981,"poverty":12.36,"state":"WI","unemp":4.72},"55055":{"home":73.13,"income":83750,"name":"Jefferson County","oh":1,"pop":86003,"poverty":8.11,"state":"WI","unemp":3.55},"55057":{"home":78.13,"income":67270,"name":"Juneau County","oh":0,"pop":26689,"poverty":13.01,"state":"WI","unemp":3.78},"55059":{"home":66.71,"income":81239,"name":"Kenosha County","oh":1,"pop":168438,"poverty":10.49,"state":"WI","unemp":4.41},"55061":{"home":86.49,"income":82725,"name":"Kewaunee County","oh":1,"pop":20664,"poverty":7.57,"state":"WI","unemp":1.49},"55063":{"home":62.16,"income":73013,"name":"La Crosse County","oh":2,"pop":120488,"poverty":12.39,"state":"WI","unemp":3.14},"55065":{"home":80.16,"income":76462,"name":"Lafayette County","oh":0,"pop":16942,"poverty":11.89,"state":"WI","unemp":2.9},"55067":{"home":76.89,"income":55878,"name":"Langlade County","oh":1,"pop":19490,"poverty":13.49,"state":"WI","unemp":3.49},"55069":{"home":79.53,"income":68164,"name":"Lincoln County","oh":0,"pop":28426,"poverty":10.57,"state":"WI","unemp":3.16},"55071":{"home":77.1,"income":69148,"name":"Manitowoc County","oh":1,"pop":81406,"poverty":9.55,"state":"WI","unemp":2.6},"55073":{"home":73.3,"income":77884,"name":"Marathon County","oh":1,"pop":138403,"poverty":8.7,"state":"WI","unemp":2.87},"55075":{"home":81.63,"income":63809,"name":"Marinette County","oh":1,"pop":42046,"poverty":9.76,"state":"WI","unemp":3.43},"55077":{"home":81.15,"income":65681,"name":"Marquette County","oh":0,"pop":15746,"poverty":13.05,"state":"WI","unemp":2.71},"55078":{"home":75.52,"income":62108,"name":"Menominee County","oh":0,"pop":4252,"poverty":21.75,"state":"WI","unemp":10.01},"55079":{"home":49.89,"income":64435,"name":"Milwaukee County","oh":9,"pop":926331,"poverty":17.22,"state":"WI","unemp":4.8},"55081":{"home":72.76,"income":69467,"name":"Monroe County","oh":1,"pop":46208,"poverty":11.73,"state":"WI","unemp":3.19},"55083":{"home":85.02,"income":75049,"name":"Oconto County","oh":0,"pop":39589,"poverty":8.2,"state":"WI","unemp":2.0},"55085":{"home":82.3,"income":69371,"name":"Oneida County","oh":0,"pop":38167,"poverty":8.55,"state":"WI","unemp":1.96},"55087":{"home":71.48,"income":85069,"name":"Outagamie County","oh":1,"pop":192826,"poverty":6.29,"state":"WI","unemp":2.74},"55089":{"home":72.88,"income":96996,"name":"Ozaukee County","oh":2,"pop":92966,"poverty":4.99,"state":"WI","unemp":2.77},"55091":{"home":82.96,"income":75256,"name":"Pepin County","oh":0,"pop":7431,"poverty":10.21,"state":"WI","unemp":3.11},"55093":{"home":75.03,"income":92109,"name":"Pierce County","oh":0,"pop":42584,"poverty":9.77,"state":"WI","unemp":3.25},"55095":{"home":81.02,"income":77219,"name":"Polk County","oh":1,"pop":45555,"poverty":8.16,"state":"WI","unemp":3.43},"55097":{"home":69.73,"income":76070,"name":"Portage County","oh":1,"pop":70832,"poverty":10.09,"state":"WI","unemp":3.2},"55099":{"home":81.92,"income":60546,"name":"Price County","oh":0,"pop":14092,"poverty":11.86,"state":"WI","unemp":2.89},"55101":{"home":71.04,"income":78096,"name":"Racine County","oh":2,"pop":197532,"poverty":10.31,"state":"WI","unemp":4.41},"55103":{"home":73.86,"income":66420,"name":"Richland County","oh":0,"pop":17205,"poverty":14.54,"state":"WI","unemp":3.59},"55105":{"home":71.16,"income":75673,"name":"Rock County","oh":0,"pop":164350,"poverty":9.26,"state":"WI","unemp":3.76},"55107":{"home":77.86,"income":59944,"name":"Rusk County","oh":0,"pop":14179,"poverty":13.11,"state":"WI","unemp":5.38},"55109":{"home":78.32,"income":103046,"name":"St. Croix County","oh":2,"pop":96033,"poverty":6.6,"state":"WI","unemp":2.57},"55111":{"home":72.36,"income":79541,"name":"Sauk County","oh":1,"pop":66009,"poverty":8.06,"state":"WI","unemp":2.32},"55113":{"home":76.72,"income":60801,"name":"Sawyer County","oh":0,"pop":18476,"poverty":15.61,"state":"WI","unemp":5.97},"55115":{"home":77.53,"income":66479,"name":"Shawano County","oh":0,"pop":41039,"poverty":11.12,"state":"WI","unemp":2.59},"55117":{"home":71.48,"income":73094,"name":"Sheboygan County","oh":1,"pop":117991,"poverty":8.54,"state":"WI","unemp":2.74},"55119":{"home":79.7,"income":69350,"name":"Taylor County","oh":0,"pop":20024,"poverty":9.57,"state":"WI","unemp":2.62},"55121":{"home":74.0,"income":76313,"name":"Trempealeau County","oh":1,"pop":30839,"poverty":9.92,"state":"WI","unemp":2.3},"55123":{"home":80.27,"income":71893,"name":"Vernon County","oh":0,"pop":31049,"poverty":13.09,"state":"WI","unemp":2.49},"55125":{"home":84.03,"income":68431,"name":"Vilas County","oh":0,"pop":23647,"poverty":11.06,"state":"WI","unemp":3.97},"55127":{"home":70.63,"income":80520,"name":"Walworth County","oh":1,"pop":105657,"poverty":9.36,"state":"WI","unemp":2.88},"55129":{"home":82.18,"income":63441,"name":"Washburn County","oh":0,"pop":16854,"poverty":11.55,"state":"WI","unemp":3.92},"55131":{"home":78.07,"income":96359,"name":"Washington County","oh":2,"pop":137879,"poverty":5.79,"state":"WI","unemp":2.55},"55133":{"home":75.98,"income":106076,"name":"Waukesha County","oh":6,"pop":411762,"poverty":5.23,"state":"WI","unemp":2.3},"55135":{"home":75.32,"income":72830,"name":"Waupaca County","oh":0,"pop":51569,"poverty":10.4,"state":"WI","unemp":2.78},"55137":{"home":84.18,"income":67107,"name":"Waushara County","oh":0,"pop":24868,"poverty":10.92,"state":"WI","unemp":3.91},"55139":{"home":65.77,"income":74925,"name":"Winnebago County","oh":3,"pop":171769,"poverty":11.33,"state":"WI","unemp":2.18},"55141":{"home":72.58,"income":67989,"name":"Wood County","oh":2,"pop":74004,"poverty":10.77,"state":"WI","unemp":4.0},"56001":{"home":50.03,"income":61917,"name":"Albany County","oh":1,"pop":38249,"poverty":20.89,"state":"WY","unemp":3.75},"56003":{"home":75.9,"income":62101,"name":"Big Horn County","oh":0,"pop":11828,"poverty":12.73,"state":"WY","unemp":3.34},"56005":{"home":77.67,"income":89869,"name":"Campbell County","oh":1,"pop":47240,"poverty":9.44,"state":"WY","unemp":3.54},"56007":{"home":76.26,"income":70511,"name":"Carbon County","oh":0,"pop":14463,"poverty":12.17,"state":"WY","unemp":4.96},"56009":{"home":77.3,"income":81558,"name":"Converse County","oh":1,"pop":13762,"poverty":10.56,"state":"WY","unemp":4.18},"56011":{"home":78.05,"income":79637,"name":"Crook County","oh":0,"pop":7455,"poverty":6.01,"state":"WY","unemp":0.57},"56013":{"home":70.14,"income":64904,"name":"Fremont County","oh":0,"pop":39533,"poverty":12.82,"state":"WY","unemp":7.4},"56015":{"home":73.23,"income":58929,"name":"Goshen County","oh":0,"pop":12605,"poverty":14.69,"state":"WY","unemp":3.48},"56017":{"home":72.66,"income":61250,"name":"Hot Springs County","oh":0,"pop":4620,"poverty":14.73,"state":"WY","unemp":2.95},"56019":{"home":82.35,"income":64871,"name":"Johnson County","oh":1,"pop":8686,"poverty":9.11,"state":"WY","unemp":3.13},"56021":{"home":70.56,"income":80173,"name":"Laramie County","oh":1,"pop":101060,"poverty":8.87,"state":"WY","unemp":3.68},"56023":{"home":77.03,"income":89330,"name":"Lincoln County","oh":1,"pop":20486,"poverty":7.46,"state":"WY","unemp":2.02},"56025":{"home":73.68,"income":72156,"name":"Natrona County","oh":1,"pop":79977,"poverty":9.6,"state":"WY","unemp":4.14},"56027":{"home":61.78,"income":64113,"name":"Niobrara County","oh":0,"pop":2368,"poverty":12.02,"state":"WY","unemp":2.47},"56029":{"home":75.33,"income":73035,"name":"Park County","oh":0,"pop":30449,"poverty":8.91,"state":"WY","unemp":2.2},"56031":{"home":76.07,"income":67718,"name":"Platte County","oh":0,"pop":8612,"poverty":7.74,"state":"WY","unemp":4.58},"56033":{"home":70.65,"income":71388,"name":"Sheridan County","oh":1,"pop":32055,"poverty":10.23,"state":"WY","unemp":2.16},"56035":{"home":83.56,"income":83597,"name":"Sublette County","oh":0,"pop":8838,"poverty":6.89,"state":"WY","unemp":2.31},"56037":{"home":74.56,"income":75034,"name":"Sweetwater County","oh":1,"pop":41542,"poverty":12.86,"state":"WY","unemp":5.59},"56039":{"home":58.34,"income":124172,"name":"Teton County","oh":0,"pop":23396,"poverty":5.73,"state":"WY","unemp":1.75},"56041":{"home":76.61,"income":82980,"name":"Uinta County","oh":1,"pop":20644,"poverty":9.17,"state":"WY","unemp":3.23},"56043":{"home":74.22,"income":65714,"name":"Washakie County","oh":1,"pop":7703,"poverty":8.82,"state":"WY","unemp":2.71},"56045":{"home":86.83,"income":89509,"name":"Weston County","oh":0,"pop":6826,"poverty":9.01,"state":"WY","unemp":1.03}}; -const CDETAIL = {"01001":{"county":[],"munis":[{"m":"Prattville","p":[{"n":"Bill Gillespie, Jr.","r":"Mayor, Prattville, AL"}]}],"slug":"autauga"},"01003":{"county":[],"munis":[{"m":"Bay Minette","p":[{"n":"Robert Wills","r":"Mayor, Bay Minette, AL"}]},{"m":"Daphne","p":[{"n":"Robin LeJeune","r":"Mayor, Daphne, AL"}]},{"m":"Fairhope","p":[{"n":"Sherry Sullivan","r":"Mayor, Fairhope, AL"}]},{"m":"Foley","p":[{"n":"Ralph Hellmich","r":"Mayor, Foley, AL"}]},{"m":"Robertsdale","p":[{"n":"Charles H. Murphy","r":"Mayor, Robertsdale, AL"}]},{"m":"Spanish Fort","p":[{"n":"Michael M. McMillan","r":"Mayor, Spanish Fort, AL"}]}],"slug":"baldwin"},"01009":{"county":[],"munis":[{"m":"Oneonta","p":[{"n":"Richard M. Phillips","r":"Mayor, Oneonta, AL"}]}],"slug":"blount"},"01021":{"county":[],"munis":[{"m":"Clanton","p":[{"n":"Jeff Mims","r":"Mayor, Clanton, AL"}]}],"slug":"chilton"},"01031":{"county":[],"munis":[{"m":"Enterprise","p":[{"n":"William E. Cooper","r":"Mayor, Enterprise, AL"}]}],"slug":"coffee"},"01043":{"county":[],"munis":[{"m":"Cullman","p":[{"n":"Woody Jacobs","r":"Mayor, Cullman, AL"}]}],"slug":"cullman"},"01051":{"county":[],"munis":[{"m":"Wetumpka","p":[{"n":"Jerry Willis","r":"Mayor, Wetumpka, AL"}]}],"slug":"elmore"},"01055":{"county":[],"munis":[{"m":"Gadsden","p":[{"n":"Craig Ford","r":"Mayor, Gadsden, AL"}]},{"m":"Glencoe","p":[{"n":"Chris Hare","r":"Mayor, Glencoe, AL"}]}],"slug":"etowah"},"01069":{"county":[],"munis":[{"m":"Dothan","p":[{"n":"Mike Schmitz","r":"Mayor, Dothan, AL"}]}],"slug":"houston"},"01073":{"county":[],"munis":[{"m":"Bessemer","p":[{"n":"Kenneth E. Gulley","r":"Mayor, Bessemer, AL"}]},{"m":"Birmingham","p":[{"n":"Randall Woodfin","r":"Mayor, Birmingham, AL"}]},{"m":"Hoover","p":[{"n":"Frank Brocato","r":"Mayor, Hoover, AL"}]},{"m":"Trussville","p":[{"n":"Buddy Choat","r":"Mayor, Trussville, AL"}]},{"m":"Vestavia Hills","p":[{"n":"Ashley Curry","r":"Mayor, Vestavia Hills, AL"}]}],"slug":"jefferson"},"01077":{"county":[],"munis":[{"m":"Florence","p":[{"n":"Andrew Betterton","r":"Mayor, Florence, AL"}]}],"slug":"lauderdale"},"01081":{"county":[],"munis":[{"m":"Auburn","p":[{"n":"Ron Anders, Jr.","r":"Mayor, Auburn, AL"}]},{"m":"Opelika","p":[{"n":"Gary Fuller","r":"Mayor, Opelika, AL"}]}],"slug":"lee"},"01083":{"county":[],"munis":[{"m":"Athens","p":[{"n":"William R. \"Ronnie\" Marks","r":"Mayor, Athens, AL"}]}],"slug":"limestone"},"01089":{"county":[],"munis":[{"m":"Huntsville","p":[{"n":"Tommy Battle","r":"Mayor, Huntsville, AL"}]},{"m":"Madison","p":[{"n":"Paul Finley","r":"Mayor, Madison, AL"}]}],"slug":"madison"},"01095":{"county":[],"munis":[{"m":"Albertville","p":[{"n":"Tracy Honea","r":"Mayor, Albertville, AL"}]},{"m":"Boaz","p":[{"n":"David Dyar","r":"Mayor, Boaz, AL"}]}],"slug":"marshall"},"01097":{"county":[],"munis":[{"m":"Bayou La Batre","p":[{"n":"Henry Barnes, Sr.","r":"Mayor, Bayou La Batre, AL"}]},{"m":"Citronelle","p":[{"n":"Jason Stringer","r":"Mayor, Citronelle, AL"}]},{"m":"Mobile","p":[{"n":"Sandy Stimpson","r":"Mayor, Mobile, AL"}]},{"m":"Semmes","p":[{"n":"Brandon Van Hook","r":"Mayor, Semmes, AL"}]}],"slug":"mobile"},"01101":{"county":[],"munis":[{"m":"Montgomery","p":[{"n":"Steven Reed","r":"Mayor, Montgomery, AL"}]}],"slug":"montgomery"},"01103":{"county":[],"munis":[{"m":"Decatur","p":[{"n":"Tab Bowling","r":"Mayor, Decatur, AL"}]}],"slug":"morgan"},"01113":{"county":[],"munis":[{"m":"Phenix City","p":[{"n":"Eddie N. Lowe","r":"Mayor, Phenix City, AL"}]}],"slug":"russell"},"01117":{"county":[],"munis":[{"m":"Alabaster","p":[{"n":"Scott Brakefield","r":"Mayor, Alabaster, AL"}]}],"slug":"shelby"},"01123":{"county":[],"munis":[{"m":"Alexander City","p":[{"n":"James Douglas Nabors","r":"Mayor, Alexander City, AL"}]}],"slug":"tallapoosa"},"01125":{"county":[],"munis":[{"m":"Northport","p":[{"n":"John Hinton","r":"Mayor, Northport, AL"}]},{"m":"Tuscaloosa","p":[{"n":"Walter Maddox","r":"Mayor, Tuscaloosa, AL"}]}],"slug":"tuscaloosa"},"02090":{"county":[],"munis":[{"m":"Fairbanks","p":[{"n":"David Pruhs","r":"Mayor, Fairbanks, AK"}]}],"slug":"fairbanks-north-star-borough"},"04003":{"county":[],"munis":[{"m":"Bisbee","p":[{"n":"Ken Budge","r":"Mayor, Bisbee, AZ"}]}],"slug":"cochise"},"04005":{"county":[],"munis":[{"m":"Flagstaff","p":[{"n":"Paul Deasy","r":"Mayor, Flagstaff, AZ"}]}],"slug":"coconino"},"04009":{"county":[],"munis":[{"m":"Safford","p":[{"n":"Jason Kouts","r":"Mayor, Safford, AZ"}]}],"slug":"graham"},"04013":{"county":[],"munis":[{"m":"Avondale","p":[{"n":"Kenneth Weise","r":"Mayor, Avondale, AZ"}]},{"m":"Buckeye","p":[{"n":"Eric Orsborn","r":"Mayor, Buckeye, AZ"}]},{"m":"Chandler","p":[{"n":"Jay Tibshraeny","r":"Mayor, Chandler, AZ"}]},{"m":"El Mirage","p":[{"n":"Alexis Hermosillo","r":"Mayor, El Mirage, AZ"}]},{"m":"Glendale","p":[{"n":"Q61858351","r":"Mayor, Glendale, AZ"}]},{"m":"Goodyear","p":[{"n":"Joe Pizzillo","r":"Mayor, Goodyear, AZ"}]},{"m":"Mesa","p":[{"n":"John Giles","r":"Mayor, Mesa, AZ"}]},{"m":"Peoria","p":[{"n":"Cathy Carlat","r":"Mayor, Peoria, AZ"}]},{"m":"Phoenix","p":[{"n":"Kate Gallego","r":"Mayor, Phoenix, AZ"}]},{"m":"Scottsdale","p":[{"n":"Lisa Borowsky","r":"Mayor, Scottsdale, AZ"}]},{"m":"Surprise","p":[{"n":"Skip Hall","r":"Mayor, Surprise, AZ"}]},{"m":"Tempe","p":[{"n":"Corey Woods","r":"Mayor, Tempe, AZ"}]}],"slug":"maricopa"},"04015":{"county":[],"munis":[{"m":"Kingman","p":[{"n":"Jen Miles","r":"Mayor, Kingman, AZ"}]}],"slug":"mohave"},"04017":{"county":[],"munis":[{"m":"Holbrook","p":[{"n":"J. Merrill Young","r":"Mayor, Holbrook, AZ"}]}],"slug":"navajo"},"04019":{"county":[],"munis":[{"m":"Tucson","p":[{"n":"Regina Romero","r":"Mayor, Tucson, AZ"}]}],"slug":"pima"},"04023":{"county":[],"munis":[{"m":"Nogales","p":[{"n":"Arturo Garino","r":"Mayor, Nogales, AZ"}]}],"slug":"santa-cruz"},"04025":{"county":[],"munis":[{"m":"Prescott","p":[{"n":"Phil Goode","r":"Mayor, Prescott, AZ"}]}],"slug":"yavapai"},"05007":{"county":[],"munis":[{"m":"Bentonville","p":[{"n":"Stephanie Orman","r":"Mayor, Bentonville, AR"}]}],"slug":"benton"},"05021":{"county":[],"munis":[{"m":"Piggott","p":[{"n":"Jeff Benbrook","r":"Mayor, Piggott, AR"}]}],"slug":"clay"},"05027":{"county":[],"munis":[{"m":"Magnolia","p":[{"n":"Parnell Vann","r":"Mayor, Magnolia, AR"}]}],"slug":"columbia"},"05031":{"county":[],"munis":[{"m":"Jonesboro","p":[{"n":"Harold Copenhaver","r":"Mayor, Jonesboro, AR"}]}],"slug":"craighead"},"05033":{"county":[],"munis":[{"m":"Van Buren","p":[{"n":"Joe Hurst","r":"Mayor, Van Buren, AR"}]}],"slug":"crawford"},"05035":{"county":[],"munis":[{"m":"West Memphis","p":[{"n":"Marco McClendon","r":"Mayor, West Memphis, AR"}]}],"slug":"crittenden"},"05057":{"county":[],"munis":[{"m":"Hope","p":[{"n":"Don Still","r":"Mayor, Hope, AR"}]}],"slug":"hempstead"},"05063":{"county":[],"munis":[{"m":"Batesville","p":[{"n":"Rick Elumbaugh","r":"Mayor, Batesville, AR"}]}],"slug":"independence"},"05085":{"county":[],"munis":[{"m":"Cabot","p":[{"n":"Ken Kincade","r":"Mayor, Cabot, AR"}]}],"slug":"lonoke"},"05119":{"county":[],"munis":[{"m":"Little Rock","p":[{"n":"Frank Scott Jr.","r":"Mayor, Little Rock, AR"}]}],"slug":"pulaski"},"05123":{"county":[],"munis":[{"m":"Hughes","p":[{"n":"Shelby C. Pulliam","r":"Mayor, Hughes, AR"}]}],"slug":"st-francis"},"05125":{"county":[],"munis":[{"m":"Benton","p":[{"n":"Tom Farmer","r":"Mayor, Benton, AR"}]}],"slug":"saline"},"05131":{"county":[],"munis":[{"m":"Fort Smith","p":[{"n":"George McGill","r":"Mayor, Fort Smith, AR"}]}],"slug":"sebastian"},"05133":{"county":[],"munis":[{"m":"De Queen","p":[{"n":"Jeff Brown","r":"Mayor, De Queen, AR"}]}],"slug":"sevier"},"05143":{"county":[],"munis":[{"m":"Fayetteville","p":[{"n":"Lioneld Jordan","r":"Mayor, Fayetteville, AR"}]}],"slug":"washington"},"06001":{"county":[],"munis":[{"m":"Berkeley","p":[{"n":"Adena Ishii","r":"Mayor, Berkeley, CA"}]},{"m":"Fremont","p":[{"n":"Lily Mei","r":"Mayor, Fremont, CA"}]},{"m":"Oakland","p":[{"n":"Sheng Thao","r":"Mayor, Oakland, CA"}]}],"slug":"alameda"},"06007":{"county":[],"munis":[{"m":"Chico","p":[{"n":"Kasey Reynolds","r":"Mayor, Chico, CA"}]},{"m":"Oroville","p":[{"n":"Chuck Reynolds","r":"Mayor, Oroville, CA"}]}],"slug":"butte"},"06013":{"county":[],"munis":[{"m":"Antioch","p":[{"n":"Ron Bernal","r":"Mayor, Antioch, CA"}]},{"m":"Brentwood","p":[{"n":"Joel Bryant","r":"Mayor, Brentwood, CA"}]},{"m":"Concord","p":[{"n":"Laura Hoffmeister","r":"Mayor, Concord, CA"}]},{"m":"Martinez","p":[{"n":"Rob Schroder","r":"Mayor, Martinez, CA"}]},{"m":"Oakley","p":[{"n":"Randy Pope","r":"Mayor, Oakley, CA"}]},{"m":"Richmond","p":[{"n":"Eduardo Martinez","r":"Mayor, Richmond, CA"}]},{"m":"San Pablo","p":[{"n":"Rita Xavier","r":"Mayor, San Pablo, CA"}]}],"slug":"contra-costa"},"06019":{"county":[],"munis":[{"m":"Clovis","p":[{"n":"Jose Flores","r":"Mayor, Clovis, CA"}]},{"m":"Fresno","p":[{"n":"Jerry Dyer","r":"Mayor, Fresno, CA"}]}],"slug":"fresno"},"06025":{"county":[],"munis":[{"m":"El Centro","p":[{"n":"Tomas Olivia","r":"Mayor, El Centro, CA"}]},{"m":"Imperial","p":[{"n":"Geoffrey Dale","r":"Mayor, Imperial, CA"}]}],"slug":"imperial"},"06029":{"county":[],"munis":[{"m":"Arvin","p":[{"n":"Olivia Calderon","r":"Mayor, Arvin, CA"}]},{"m":"Bakersfield","p":[{"n":"Karen Goh","r":"Mayor, Bakersfield, CA"}]}],"slug":"kern"},"06037":{"county":[],"munis":[{"m":"Alhambra","p":[{"n":"Jeffrey Koji Maloney","r":"Mayor, Alhambra, CA"}]},{"m":"Beverly Hills","p":[{"n":"Bob Wunderlich","r":"Mayor, Beverly Hills, CA"}]},{"m":"Carson","p":[{"n":"Lula Davis-Holmes","r":"Mayor, Carson, CA"}]},{"m":"Compton","p":[{"n":"Aja Brown","r":"Mayor, Compton, CA"}]},{"m":"Downey","p":[{"n":"Claudia Frometa","r":"Mayor, Downey, CA"}]},{"m":"El Monte","p":[{"n":"Jessica Ancona","r":"Mayor, El Monte, CA"}]},{"m":"Glendale","p":[{"n":"Zareh Sinanyan","r":"Mayor, Glendale, CA"}]},{"m":"Glendora","p":[{"n":"Gary Boyer","r":"Mayor, Glendora, CA"}]},{"m":"Hawthorne","p":[{"n":"Alex Vargas","r":"Mayor, Hawthorne, CA"}]},{"m":"Hermosa Beach","p":[{"n":"Michael Detoy","r":"Mayor, Hermosa Beach, CA"}]},{"m":"Industry","p":[{"n":"Cory C. Moss","r":"Mayor, City of Industry, CA"}]},{"m":"Inglewood","p":[{"n":"James T. Butts Jr.","r":"Mayor, Inglewood, CA"}]},{"m":"Lancaster","p":[{"n":"R. Rex Parris","r":"Mayor, Lancaster, CA"}]},{"m":"Long Beach","p":[{"n":"Robert Garcia","r":"Mayor, Long Beach, CA"}]},{"m":"Los Angeles","p":[{"n":"Karen Bass","r":"Mayor, Los Angeles, CA"}]},{"m":"Norwalk","p":[{"n":"Rick Ramirez","r":"Mayor, Norwalk, CA"}]},{"m":"Palmdale","p":[{"n":"Steve Hofbauer","r":"Mayor, Palmdale, CA"}]},{"m":"Pasadena","p":[{"n":"Victor Gordo","r":"Mayor, Pasadena, CA"}]},{"m":"Pomona","p":[{"n":"Tim Sandoval","r":"Mayor, Pomona, CA"}]},{"m":"Rolling Hills Estates","p":[{"n":"Debby Stegura","r":"Mayor, Rolling Hills Estates, CA"}]},{"m":"Santa Clarita","p":[{"n":"Jason Gibbs","r":"Mayor, Santa Clarita, CA"}]},{"m":"Santa Monica","p":[{"n":"Gleam Davis","r":"Mayor, Santa Monica, CA"}]},{"m":"South Gate","p":[{"n":"Maria del Pilar Avalos","r":"Mayor, South Gate, CA"}]},{"m":"Torrance","p":[{"n":"George Chen","r":"Mayor, Torrance, CA"}]},{"m":"West Covina","p":[{"n":"Dario Castellanos","r":"Mayor, West Covina, CA"}]},{"m":"West Hollywood","p":[{"n":"Q6238541","r":"Mayor, West Hollywood, CA"}]}],"slug":"los-angeles"},"06041":{"county":[],"munis":[{"m":"Mill Valley","p":[{"n":"John McCauley","r":"Mayor, Mill Valley, CA"}]}],"slug":"marin"},"06053":{"county":[],"munis":[{"m":"Salinas","p":[{"n":"Kimbley Craig","r":"Mayor, Salinas, CA"}]}],"slug":"monterey"},"06055":{"county":[],"munis":[{"m":"St Helena","p":[{"n":"Paul Dohring","r":"Mayor, St. Helena, CA"}]}],"slug":"napa"},"06059":{"county":[],"munis":[{"m":"Anaheim","p":[{"n":"Ashleigh Aitken","r":"Mayor, Anaheim, CA"}]},{"m":"Buena Park","p":[{"n":"Joyce Ahn","r":"Mayor, Buena Park, CA"}]},{"m":"Costa Mesa","p":[{"n":"John Stephens","r":"Mayor, Costa Mesa, CA"}]},{"m":"Fullerton","p":[{"n":"Fred Jung","r":"Mayor, Fullerton, CA"}]},{"m":"Garden Grove","p":[{"n":"Steve Jones","r":"Mayor, Garden Grove, CA"}]},{"m":"Huntington Beach","p":[{"n":"Tony Strickland","r":"Mayor, Huntington Beach, CA"}]},{"m":"Irvine","p":[{"n":"Larry Agran","r":"Mayor, Irvine, CA"}]},{"m":"Orange","p":[{"n":"Dan Slater","r":"Mayor, Orange, CA"}]},{"m":"Santa Ana","p":[{"n":"Valerie Amezcua","r":"Mayor, Santa Ana, CA"}]}],"slug":"orange"},"06065":{"county":[],"munis":[{"m":"Corona","p":[{"n":"Wes Speake","r":"Mayor, Corona, CA"}]},{"m":"Indio","p":[{"n":"Glenn Miller","r":"Mayor, Indio, CA"}]},{"m":"Jurupa Valley","p":[{"n":"Chris Barajas","r":"Mayor, Jurupa Valley, CA"}]},{"m":"Menifee","p":[{"n":"Bill Zimmerman","r":"Mayor, Menifee, CA"}]},{"m":"Moreno Valley","p":[{"n":"Yxstian Gutierrez","r":"Mayor, Moreno Valley, CA"}]},{"m":"Murrieta","p":[{"n":"Lisa DeForest","r":"Mayor, Murrieta, CA"}]},{"m":"Riverside","p":[{"n":"Patricia Lock Dawson","r":"Mayor, Riverside, CA"}]},{"m":"Temecula","p":[{"n":"Matt Rahn","r":"Mayor, Temecula, CA"}]}],"slug":"riverside"},"06067":{"county":[],"munis":[{"m":"Elk Grove","p":[{"n":"Bobbie Singh-Allen","r":"Mayor, Elk Grove, CA"}]},{"m":"Sacramento","p":[{"n":"Darrell Steinberg","r":"Mayor, Sacramento, CA"}]}],"slug":"sacramento"},"06071":{"county":[],"munis":[{"m":"Chino","p":[{"n":"Eunice Ulloa","r":"Mayor, Chino, CA"}]},{"m":"Chino Hills","p":[{"n":"Peter Rogers","r":"Mayor, Chino Hills, CA"}]},{"m":"Fontana","p":[{"n":"Acquanetta Warren","r":"Mayor, Fontana, CA"}]},{"m":"Hesperia","p":[{"n":"Brigit Bennington","r":"Mayor, Hesperia, CA"}]},{"m":"Ontario","p":[{"n":"Paul Leon","r":"Mayor, Ontario, CA"}]},{"m":"Rancho Cucamonga","p":[{"n":"L. Dennis Michael","r":"Mayor, Rancho Cucamonga, CA"}]},{"m":"Redlands","p":[{"n":"Paul Barich","r":"Mayor, Redlands, CA"}]},{"m":"Rialto","p":[{"n":"Deborah Robertson","r":"Mayor, Rialto, CA"}]},{"m":"San Bernardino","p":[{"n":"Helen Tran","r":"Mayor, San Bernardino, CA"}]},{"m":"Victorville","p":[{"n":"Debra Jones","r":"Mayor, Victorville, CA"}]}],"slug":"san-bernardino"},"06073":{"county":[],"munis":[{"m":"Carlsbad","p":[{"n":"Matt Hall","r":"Mayor, Carlsbad, CA"}]},{"m":"Chula Vista","p":[{"n":"John McCann","r":"Mayor, Chula Vista, CA"}]},{"m":"El Cajon","p":[{"n":"Bill Wells","r":"Mayor, El Cajon, CA"}]},{"m":"Escondido","p":[{"n":"Q133980654","r":"Mayor, Escondido, CA"}]},{"m":"Lemon Grove","p":[{"n":"Q64492156","r":"Mayor, Lemon Grove, CA"}]},{"m":"Oceanside","p":[{"n":"Esther C. Sanchez","r":"Mayor, Oceanside, CA"}]},{"m":"San Diego","p":[{"n":"Todd Gloria","r":"Mayor, San Diego, CA"}]},{"m":"San Marcos","p":[{"n":"Rebecca Jones","r":"Mayor, San Marcos, CA"}]},{"m":"Vista","p":[{"n":"John Franklin","r":"Mayor, Vista, CA"}]}],"slug":"san-diego"},"06079":{"county":[],"munis":[{"m":"Arroyo Grande","p":[{"n":"Caren Ray Russom","r":"Mayor, Arroyo Grande, CA"}]},{"m":"Atascadero","p":[{"n":"Charles Bourbeau","r":"Mayor, Atascadero, CA"}]}],"slug":"san-luis-obispo"},"06081":{"county":[],"munis":[{"m":"Daly City","p":[{"n":"Rod Daus-Magbual","r":"Mayor, Daly City, CA"}]},{"m":"Menlo Park","p":[{"n":"Cecilia Taylor","r":"Mayor, Menlo Park, CA"}]},{"m":"Pacifica","p":[{"n":"Q105071623","r":"Mayor, Pacifica, CA"}]},{"m":"San Mateo","p":[{"n":"Rick Bonilla","r":"Mayor, San Mateo, CA"}]}],"slug":"san-mateo"},"06083":{"county":[],"munis":[{"m":"Guadalupe","p":[{"n":"Ariston Julian","r":"Mayor, Guadalupe, CA"}]},{"m":"Santa Barbara","p":[{"n":"Cathy Murillo","r":"Mayor, Santa Barbara, CA"}]}],"slug":"santa-barbara"},"06085":{"county":[],"munis":[{"m":"Los Altos","p":[{"n":"Sally Meadows","r":"Mayor, Los Altos, CA"}]},{"m":"Palo Alto","p":[{"n":"Adrian Fine","r":"Mayor, Palo Alto, CA"}]},{"m":"San Jose","p":[{"n":"Matt Mahan","r":"Mayor, San Jose, CA"}]},{"m":"Santa Clara","p":[{"n":"Lisa Gillmor","r":"Mayor, Santa Clara, CA"}]},{"m":"Sunnyvale","p":[{"n":"Larry Klein","r":"Mayor, Sunnyvale, CA"}]}],"slug":"santa-clara"},"06089":{"county":[],"munis":[{"m":"Anderson","p":[{"n":"Susie Baugh","r":"Mayor, Anderson, CA"}]},{"m":"Redding","p":[{"n":"Michael Dacquisto","r":"Mayor, Redding, CA"}]}],"slug":"shasta"},"06095":{"county":[],"munis":[{"m":"Fairfield","p":[{"n":"Harry T. Price","r":"Mayor, Fairfield, CA"}]},{"m":"Vacaville","p":[{"n":"Ron Rowlett","r":"Mayor, Vacaville, CA"}]},{"m":"Vallejo","p":[{"n":"Robert H. McConnell","r":"Mayor, Vallejo, CA"}]}],"slug":"solano"},"06097":{"county":[],"munis":[{"m":"Healdsburg","p":[{"n":"Oswaldo Jimenez","r":"Mayor, Healdsburg, CA"}]},{"m":"Santa Rosa","p":[{"n":"Chris Rogers","r":"Mayor, Santa Rosa, CA"}]}],"slug":"sonoma"},"06099":{"county":[],"munis":[{"m":"Modesto","p":[{"n":"Sue Zwahlen","r":"Mayor, Modesto, CA"}]}],"slug":"stanislaus"},"06107":{"county":[],"munis":[{"m":"Visalia","p":[{"n":"Brian Poochigian","r":"Mayor, Visalia, CA"}]}],"slug":"tulare"},"06111":{"county":[],"munis":[{"m":"Oxnard","p":[{"n":"John C. Zaragoza","r":"Mayor, Oxnard, CA"}]},{"m":"Port Hueneme","p":[{"n":"Richard W. Rollins","r":"Mayor, Port Hueneme, CA"}]},{"m":"San Buenaventura Ventura","p":[{"n":"Joe Schroeder","r":"Mayor, Ventura, CA"}]},{"m":"Simi Valley","p":[{"n":"Keith Mashburn","r":"Mayor, Simi Valley, CA"}]},{"m":"Thousand Oaks","p":[{"n":"Bob Engler","r":"Mayor, Thousand Oaks, CA"}]}],"slug":"ventura"},"06113":{"county":[],"munis":[{"m":"Woodland","p":[{"n":"Mayra Vega","r":"Mayor, Woodland, CA"}]}],"slug":"yolo"},"08001":{"county":[],"munis":[{"m":"Thornton","p":[{"n":"Janifer Kulmann","r":"Mayor, Thornton, CO"}]},{"m":"Westminster","p":[{"n":"Nancy McNally","r":"Mayor, Westminster, CO"}]}],"slug":"adams"},"08005":{"county":[],"munis":[{"m":"Aurora","p":[{"n":"Mike Coffman","r":"Mayor, Aurora, CO"}]},{"m":"Centennial","p":[{"n":"Stephanie Piko","r":"Mayor, Centennial, CO"}]},{"m":"Englewood","p":[{"n":"Othoniel Sierra","r":"Mayor, Englewood, CO"}]}],"slug":"arapahoe"},"08013":{"county":[],"munis":[{"m":"Boulder","p":[{"n":"Aaron Brockett","r":"Mayor, Boulder, CO"}]},{"m":"Longmont","p":[{"n":"Jean Peck","r":"Mayor, Longmont, CO"}]}],"slug":"boulder"},"08041":{"county":[],"munis":[{"m":"Colorado Springs","p":[{"n":"Yemi Mobolade","r":"Mayor, Colorado Springs, CO"}]}],"slug":"el-paso"},"08051":{"county":[],"munis":[{"m":"Gunnison","p":[{"n":"Diego Plata","r":"Mayor, Gunnison, CO"}]}],"slug":"gunnison"},"08059":{"county":[],"munis":[{"m":"Arvada","p":[{"n":"Marc Williams","r":"Mayor, Arvada, CO"}]}],"slug":"jefferson"},"08069":{"county":[],"munis":[{"m":"Fort Collins","p":[{"n":"Jeni Arndt","r":"Mayor, Fort Collins, CO"}]}],"slug":"larimer"},"08101":{"county":[],"munis":[{"m":"Pueblo","p":[{"n":"Nick Gradisar","r":"Mayor, Pueblo, CO"}]}],"slug":"pueblo"},"08123":{"county":[],"munis":[{"m":"Greeley","p":[{"n":"John Gates","r":"Mayor, Greeley, CO"}]}],"slug":"weld"},"10001":{"county":[],"munis":[{"m":"Dover","p":[{"n":"Robin Christiansen","r":"Mayor, Dover, DE"}]}],"slug":"kent"},"10003":{"county":[],"munis":[{"m":"New Castle","p":[{"n":"Valarie Leary","r":"Mayor, New Castle, DE"}]},{"m":"Newark","p":[{"n":"Jerry Clifton","r":"Mayor, Newark, DE"}]},{"m":"Wilmington","p":[{"n":"Mike Purzycki","r":"Mayor, Wilmington, DE"}]}],"slug":"new-castle"},"10005":{"county":[],"munis":[{"m":"Milford","p":[{"n":"Todd Culotta","r":"Mayor, Milford, DE"}]},{"m":"Seaford","p":[{"n":"Matthew MacCoy","r":"Mayor, Seaford, DE"}]}],"slug":"sussex"},"12001":{"county":[{"n":"Anna Prizzia","r":"Commissioner, Alachua County"},{"n":"Ayesha Solomon","r":"Property Appraiser, Alachua County"},{"n":"Charles S. Chestnut","r":"Commissioner, Alachua County"},{"n":"Diyonne L. McGraw","r":"Alachua County School Board"},{"n":"Jess Irby","r":"Clerk of Court, Alachua County"},{"n":"John Power","r":"Tax Collector, Alachua County"},{"n":"Jr., Clovis Watson","r":"Sheriff, Alachua County"},{"n":"Kay G. Abbitt","r":"Alachua County School Board"},{"n":"Ken Cornell","r":"Commissioner, Alachua County"},{"n":"Kim Barton","r":"Supervisor of Elections, Alachua County"},{"n":"Leanetta McNealy","r":"Alachua County School Board"},{"n":"Marihelen Wheeler","r":"Commissioner, Alachua County"},{"n":"Mary Alford","r":"Commissioner, Alachua County"},{"n":"Sarah Rockwell","r":"Alachua County School Board"},{"n":"Thomas Vu","r":"Alachua County School Board"}],"munis":[{"m":"Alachua","p":[{"n":"Jackson M. Youmas","r":"Alachua City Council"},{"n":"Jacob Fletcher","r":"Alachua City Council"},{"n":"Jennifer Ringersen","r":"Alachua City Council"},{"n":"Shirley Green Brown","r":"Alachua City Council"},{"n":"Walter M. Welch","r":"Mayor of Alachua"}]},{"m":"Archer","p":[{"n":"Bill Lewandowski","r":"Archer City Council"},{"n":"Fletcher Hope","r":"Mayor of Archer"},{"n":"Iris D. Bailey","r":"Archer City Council"},{"n":"Jennifer Rossi","r":"Archer City Council"},{"n":"Karen Fiore","r":"Archer City Council"}]},{"m":"Gainesville","p":[{"n":"Bryan Eastman","r":"Gainesville City Council"},{"n":"Bryan Eastman","r":"Gainesville City Council - City Commissioner"},{"n":"Casey Willits","r":"Gainesville City Council"},{"n":"Casey Willits","r":"Gainesville City Council - City Commissioner"},{"n":"Cynthia Chestnut","r":"Gainesville City Council"},{"n":"Cynthia Moore Chestnut","r":"Gainesville City Council - City Commissioner"},{"n":"Desmon Duncan-Walker","r":"Gainesville City Council"},{"n":"Desmon Duncan-Walker","r":"Gainesville City Council - City Commissioner"},{"n":"Ed Book","r":"Gainesville City Council"},{"n":"Ed Book","r":"Gainesville City Council - City Commissioner"},{"n":"Harvey Ward","r":"Mayor of Gainesville"},{"n":"James Ingle","r":"Gainesville City Council - City Commissioner"},{"n":"Reina Saco","r":"Gainesville City Council"}]},{"m":"Hawthorne","p":[{"n":"Jacquelyn Randall","r":"Mayor of Hawthorne"},{"n":"Patricia B. Hutchinson","r":"Hawthorne City Council"},{"n":"Randy Martin","r":"Hawthorne City Council"},{"n":"Raymond Cue","r":"Hawthorne City Council"},{"n":"Tommie C. Howard","r":"Hawthorne City Council"}]},{"m":"High Springs","p":[{"n":"Andrew Miller","r":"High Springs City Council"},{"n":"Chad Howell","r":"High Springs City Council"},{"n":"Katherine Weitz","r":"High Springs City Council"},{"n":"Tristan Grunder","r":"Mayor of High Springs"},{"n":"Wayne Bloodsworth","r":"High Springs City Council"}]},{"m":"La Crosse","p":[{"n":"Anthony Kelley","r":"La Crosse City Council"},{"n":"Barbara Thomas","r":"La Crosse City Council"},{"n":"C. Dianne Dubberly","r":"Mayor of La Crosse"},{"n":"Johnny Ho","r":"La Crosse City Council"},{"n":"Kyle Cheshire","r":"La Crosse City Council"},{"n":"Sheila Dubberly","r":"La Crosse City Council"}]},{"m":"Micanopy","p":[{"n":"David Massey","r":"Micanopy City Council"},{"n":"Jiana Bradshaw Williams","r":"Mayor of Micanopy"},{"n":"Judy Galloway","r":"Micanopy City Council"},{"n":"Ken Wessberg","r":"Micanopy City Council"},{"n":"Kevin Putansu","r":"Micanopy City Council"}]},{"m":"Newberry","p":[{"n":"Donald Long","r":"Newberry City Council"},{"n":"Mark Clark","r":"Newberry City Council"},{"n":"Monty Farnsworth","r":"Newberry City Council"},{"n":"Rick Coleman","r":"Newberry City Council"},{"n":"Timothy Marden","r":"Mayor of Newberry"},{"n":"Tony Mazon","r":"Newberry City Council"}]},{"m":"Waldo","p":[{"n":"Glen Johnson","r":"Waldo City Council"},{"n":"Louie Davis","r":"Mayor of Waldo"}]}],"slug":"alachua"},"12003":{"county":[{"n":"Amanda Rhoden Hodges","r":"Baker County School Board"},{"n":"Amy Dugger","r":"Tax Collector, Baker County"},{"n":"Cathy Rhoden","r":"Commissioner, Baker County"},{"n":"Christopher Milton","r":"Supervisor of Elections, Baker County"},{"n":"Jack Baker Jr.","r":"Baker County School Board"},{"n":"James Bennett","r":"Commissioner, Baker County"},{"n":"James Croft","r":"Commissioner, Baker County"},{"n":"Jimmy Anderson","r":"Commissioner, Baker County"},{"n":"Mandi Canaday","r":"Baker County School Board"},{"n":"Mark Hartley","r":"Commissioner, Baker County"},{"n":"Paula Barton","r":"Baker County School Board"},{"n":"Scotty Rhoden","r":"Sheriff, Baker County"},{"n":"Stacie Harvey","r":"Clerk of Court, Baker County"},{"n":"Tiffany McInarnay","r":"Baker County School Board"},{"n":"Timothy Sweat","r":"Property Appraiser, Baker County"}],"munis":[{"m":"Glen Saint Mary","p":[{"n":"Juanice Padgett","r":"Mayor of Glen Saint Mary"}]},{"m":"Macclenny","p":[{"n":"Cecil Horne","r":"Macclenny City Council"},{"n":"Danny Norton","r":"Macclenny City Council"},{"n":"Lynward Bones","r":"Macclenny City Council"},{"n":"Mark Bryant","r":"Mayor of Macclenny"},{"n":"Sam Kitching","r":"Macclenny City Council"}]},{"m":"_Unresolved","p":[{"n":"Lola Chandler","r":"Glen Saint Mary City Council"},{"n":"Stormy Greer","r":"Glen Saint Mary City Council"},{"n":"Susan Wallace","r":"Glen Saint Mary City Council"},{"n":"Terry Clardy","r":"Glen Saint Mary City Council"}]}],"slug":"baker"},"12005":{"county":[{"n":"Ann Leonard","r":"Bay County School Board"},{"n":"Bill Dozier","r":"Commissioner, Bay County"},{"n":"Bill Kinsaul","r":"Clerk of Court, Bay County"},{"n":"Christopher Moore","r":"Bay County School Board"},{"n":"Clair Pease","r":"Commissioner, Bay County"},{"n":"Dan Sowell","r":"Property Appraiser, Bay County"},{"n":"Doug Moore","r":"Commissioner, Bay County"},{"n":"Jerry Register","r":"Bay County School Board"},{"n":"Nina Ward","r":"Supervisor of Elections, Bay County"},{"n":"Robert Carroll","r":"Commissioner, Bay County"},{"n":"Steve Moss","r":"Bay County School Board"},{"n":"Tommy Ford","r":"Sheriff, Bay County"},{"n":"Tommy Hamm","r":"Commissioner, Bay County"},{"n":"William Perdue","r":"Tax Collector, Bay County"},{"n":"Winston Chester","r":"Bay County School Board"}],"munis":[{"m":"Callaway","p":[{"n":"Bob Pelletier","r":"Callaway City Council"},{"n":"David Griggs","r":"Callaway City Council"},{"n":"Kenneth L. Ayers","r":"Callaway City Council"},{"n":"Pamn Henderson","r":"Mayor of Callaway"},{"n":"Scott Davis","r":"Callaway City Council"}]},{"m":"Lynn Haven","p":[{"n":"Dave Lowery","r":"Mayor of Lynn Haven"},{"n":"Jamie Warrick","r":"Lynn Haven City Council"},{"n":"Judy Tinder","r":"Lynn Haven City Council"},{"n":"Pat Perno","r":"Lynn Haven City Council"},{"n":"Sam Peebles","r":"Lynn Haven City Council"}]},{"m":"Mexico Beach","p":[{"n":"Erik Fosshage","r":"Mexico Beach City Council"},{"n":"Linda Hamilton","r":"Mexico Beach City Council"},{"n":"Lisa Logan","r":"Mexico Beach City Council"},{"n":"Richard Wolff","r":"Mayor of Mexico Beach"},{"n":"Steve Cox","r":"Mexico Beach City Council"}]},{"m":"Panama City","p":[{"n":"Allan Branch","r":"Mayor of Panama City"},{"n":"Brian Grainger","r":"Panama City City Council"},{"n":"Janice Lucas","r":"Panama City City Council"},{"n":"Josh Street","r":"Panama City City Council"},{"n":"Robbie Hughes","r":"Panama City City Council"}]},{"m":"Panama City Beach","p":[{"n":"Ethan Register","r":"Panama City Beach City Council"},{"n":"Mary Coburn","r":"Panama City Beach City Council"},{"n":"Michael Jarman","r":"Panama City Beach City Council"},{"n":"Paul Casto","r":"Panama City Beach City Council"},{"n":"Stuart Tettemer","r":"Mayor of Panama City Beach"}]},{"m":"Parker","p":[{"n":"Andrew Kelly","r":"Mayor of Parker"},{"n":"John Haney","r":"Parker City Council"},{"n":"Ronald Chaple","r":"Parker City Council"},{"n":"Stacie Galbreath","r":"Parker City Council"},{"n":"Tonya Barrow","r":"Parker City Council"}]},{"m":"Springfield","p":[{"n":"Cindy Hamre","r":"Springfield City Council"},{"n":"Jack Griffis","r":"Springfield City Council"},{"n":"Jackie Kennington","r":"Springfield City Council"},{"n":"Ralph Hammond","r":"Mayor of Springfield"},{"n":"Richard Chval","r":"Springfield City Council"}]}],"slug":"bay"},"12007":{"county":[{"n":"Amanda Seyfang","r":"Supervisor of Elections, Bradford County"},{"n":"Candace Cragg Osteen","r":"Bradford County School Board"},{"n":"Carolyn Spooner","r":"Commissioner, Bradford County"},{"n":"Chris Dougherty","r":"Commissioner, Bradford County"},{"n":"Daniel Riddick","r":"Commissioner, Bradford County"},{"n":"Denny Thompson","r":"Clerk of Court, Bradford County"},{"n":"Diane Andrews","r":"Commissioner, Bradford County"},{"n":"Gayle Shuford Nicula","r":"Bradford County School Board"},{"n":"Gordon Smith","r":"Sheriff, Bradford County"},{"n":"Julie Johnson","r":"Bradford County School Board"},{"n":"Kenneth Thompson","r":"Commissioner, Bradford County"},{"n":"Kenny Clark","r":"Property Appraiser, Bradford County"},{"n":"Lynn Melvin","r":"Bradford County School Board"},{"n":"Sheila Fayson Cummings","r":"Bradford County School Board"},{"n":"Teresa Phillips","r":"Tax Collector, Bradford County"}],"munis":[{"m":"Brooker","p":[{"n":"Chris Caldwell","r":"Brooker City Council"},{"n":"Gene Melvin","r":"Mayor of Brooker"},{"n":"Joe Tolleson","r":"Brooker City Council"},{"n":"Linda Bennett","r":"Brooker City Council"},{"n":"Randy Starling","r":"Brooker City Council"}]},{"m":"Hampton","p":[{"n":"Dale Wiseman","r":"Mayor of Hampton"},{"n":"Dorothy Shealey","r":"Hampton City Council"},{"n":"Douglas Williamson","r":"Hampton City Council"},{"n":"Janeece Mullett","r":"Hampton City Council"},{"n":"Lillian Sams","r":"Hampton City Council"},{"n":"William Goodge","r":"Hampton City Council"}]},{"m":"Lawtey","p":[{"n":"Amy Blom","r":"Lawtey City Council"},{"n":"Debra Norman","r":"Lawtey City Council"},{"n":"Jimmie L. Scott","r":"Mayor of Lawtey"},{"n":"Virginia Warner","r":"Lawtey City Council"}]},{"m":"Starke","p":[{"n":"Andy Redding","r":"Mayor of Starke"},{"n":"Bob Milner","r":"Starke City Council"},{"n":"Daniel Nugent","r":"Starke City Council"},{"n":"Janice D. Mortimer","r":"Starke City Council"},{"n":"Scott Roberts","r":"Starke City Council"}]}],"slug":"bradford"},"12009":{"county":[{"n":"Dana Blickley","r":"Property Appraiser, Brevard County"},{"n":"Gene Trent","r":"Brevard County School Board"},{"n":"Jason Steele","r":"Commissioner, Brevard County"},{"n":"John Thomas","r":"Brevard County School Board"},{"n":"John Tobia","r":"Commissioner, Brevard County"},{"n":"Katye Campbell","r":"Brevard County School Board"},{"n":"Kristine Zonka","r":"Commissioner, Brevard County"},{"n":"Lisa Cullen","r":"Tax Collector, Brevard County"},{"n":"Lori Scott","r":"Supervisor of Elections, Brevard County"},{"n":"Matt Susin","r":"Brevard County School Board"},{"n":"Megan Wright","r":"Brevard County School Board"},{"n":"Rachel Sadoff","r":"Clerk of Court, Brevard County"},{"n":"Rita Pritchett","r":"Commissioner, Brevard County"},{"n":"Rob Feltner","r":"Commissioner, Brevard County"},{"n":"Robert Ivey","r":"Sheriff, Brevard County"},{"n":"Thad Altman","r":"Commissioner, Brevard County"},{"n":"Tim Bobanic","r":"Supervisor of Elections, Brevard County"},{"n":"Tom Goodson","r":"Commissioner, Brevard County"}],"munis":[{"m":"Cape Canaveral","p":[{"n":"Andrea King","r":"Cape Canaveral City Council"},{"n":"Don Willis","r":"Cape Canaveral City Council"},{"n":"Kay Jackson","r":"Cape Canaveral City Council"},{"n":"Tom Shoriak","r":"Cape Canaveral City Council"},{"n":"Wes Morrison","r":"Mayor of Cape Canaveral"}]},{"m":"Cocoa","p":[{"n":"James Goins","r":"Cocoa City Council"},{"n":"Lavander Hearn","r":"Cocoa City Council"},{"n":"Lorraine Koss","r":"Cocoa City Council"},{"n":"Michael C. Blake","r":"Mayor of Cocoa"},{"n":"Patricia Weeks","r":"Cocoa City Council"}]},{"m":"Cocoa Beach","p":[{"n":"Jeremy Hutcherson","r":"Cocoa Beach City Council"},{"n":"Joshua Jackson","r":"Cocoa Beach City Council"},{"n":"Keith Capizzi","r":"Mayor of Cocoa Beach"},{"n":"Skip Williams","r":"Cocoa Beach City Council"},{"n":"Tim Tumulty","r":"Cocoa Beach City Council"}]},{"m":"Grant-Valkaria","p":[{"n":"Brent Jackson","r":"Grant-Valkaria City Council"},{"n":"Dan Faden","r":"Grant-Valkaria City Council"},{"n":"Dan Robino","r":"Grant-Valkaria City Council"},{"n":"Lisette Kolar","r":"Grant-Valkaria City Council"},{"n":"Mike Bradvarevic","r":"Grant-Valkaria City Council"},{"n":"Tom Sammon","r":"Grant-Valkaria City Council"}]},{"m":"Indialantic","p":[{"n":"Carrie Foy","r":"Indialantic City Council"},{"n":"Doug Wright","r":"Indialantic City Council"},{"n":"Julie McKnight","r":"Indialantic City Council"},{"n":"Mark McDermott","r":"Mayor of Indialantic"}]},{"m":"Indian Harbour Beach","p":[{"n":"Adam Dyer","r":"Indian Harbour Beach City Council"},{"n":"Neil Yorio","r":"Indian Harbour Beach City Council"},{"n":"Scott Nickle","r":"Mayor of Indian Harbour Beach"},{"n":"Susan Ruimy","r":"Indian Harbour Beach City Council"}]},{"m":"Malabar","p":[{"n":"Frederick Heiler","r":"Malabar City Council"},{"n":"Jim Clevenger","r":"Malabar City Council"},{"n":"Marisa Acquaviva","r":"Malabar City Council"},{"n":"Mary Hofmeister","r":"Malabar City Council"},{"n":"Steve Rivet","r":"Mayor of Malabar"},{"n":"Wayne Abare","r":"Malabar City Council"}]},{"m":"Melbourne","p":[{"n":"David Neuman","r":"Melbourne City Council"},{"n":"Julie Kennedy","r":"Melbourne City Council"},{"n":"Marcus Smith","r":"Melbourne City Council"},{"n":"Mark A. LaRusso","r":"Melbourne City Council"},{"n":"Mimi Hanley","r":"Melbourne City Council"},{"n":"Paul Alfrey","r":"Mayor of Melbourne"},{"n":"Rachael Bassett","r":"Melbourne City Council"}]},{"m":"Melbourne Beach","p":[{"n":"Alison Dennington","r":"Mayor of Melbourne Beach"},{"n":"Anna Butler","r":"Melbourne Beach City Council"},{"n":"Sherri Quarrie","r":"Melbourne Beach City Council"},{"n":"Terry Cronin","r":"Melbourne Beach City Council"},{"n":"Tim Reed","r":"Melbourne Beach City Council"}]},{"m":"Melbourne Village","p":[{"n":"Bridget Foster","r":"Melbourne Village City Council"},{"n":"David Jones","r":"Melbourne Village City Council"},{"n":"Fred Anderson","r":"Melbourne Village City Council"},{"n":"Gary Ingram","r":"Melbourne Village City Council"},{"n":"Norton Muzzone","r":"Melbourne Village City Council"},{"n":"Sue Ditty","r":"Mayor of Melbourne Village"},{"n":"Valerie Calenda","r":"Melbourne Village City Council"}]},{"m":"Palm Bay","p":[{"n":"Kenny Johnson","r":"Palm Bay City Council"},{"n":"Mike Hammer","r":"Palm Bay City Council"},{"n":"Mike Jaffe","r":"Palm Bay City Council"},{"n":"Robert Medina","r":"Mayor of Palm Bay"}]},{"m":"Palm Shores","p":[{"n":"Barbara Mathewson","r":"Palm Shores City Council"},{"n":"Charles Chambliss","r":"Mayor of Palm Shores"},{"n":"Paul Bonville","r":"Palm Shores City Council"},{"n":"Sharon Secord","r":"Palm Shores City Council"}]},{"m":"Rockledge","p":[{"n":"Duane Daski","r":"Rockledge City Council"},{"n":"Frank T. Forester","r":"Rockledge City Council"},{"n":"Michael Cadore","r":"Rockledge City Council"},{"n":"Sammie Brown Martin","r":"Rockledge City Council"},{"n":"Shaun Ferguson","r":"Rockledge City Council"},{"n":"Tara L. Connor","r":"Rockledge City Council"},{"n":"Thomas J. Price","r":"Mayor of Rockledge"}]},{"m":"Satellite Beach","p":[{"n":"Mark Boyd","r":"Satellite Beach City Council"},{"n":"Mike Chase","r":"Satellite Beach City Council"},{"n":"Steve L. Osmer","r":"Mayor of Satellite Beach"}]},{"m":"Titusville","p":[{"n":"Andrew Connors","r":"Mayor of Titusville"},{"n":"Herman A. Cole","r":"Titusville City Council"},{"n":"Jo Lynn Nelson","r":"Titusville City Council"},{"n":"Megan Moscoso","r":"Titusville City Council"},{"n":"Sarah Stoeckel","r":"Titusville City Council"}]},{"m":"West Melbourne","p":[{"n":"Alexis McGuire","r":"West Melbourne City Council"},{"n":"Andrea Young","r":"Mayor of West Melbourne"},{"n":"Austin Gaylord","r":"West Melbourne City Council"},{"n":"Diana Adams","r":"West Melbourne City Council"},{"n":"Helen Voltz","r":"West Melbourne City Council"},{"n":"Pat Bentley","r":"West Melbourne City Council"},{"n":"Stephen Phrampus","r":"West Melbourne City Council"}]}],"slug":"brevard"},"12011":{"county":[{"n":"Abbey Ajayi","r":"Tax Collector, Broward County"},{"n":"Allen Zeman","r":"Broward County School Board"},{"n":"Beam Furr","r":"Commissioner, Broward County"},{"n":"Brenda Fam","r":"Broward County School Board"},{"n":"Brenda Forman","r":"Clerk of Court, Broward County"},{"n":"Debra \"Debbi\" Hixon","r":"Broward County School Board"},{"n":"Gregory Tony","r":"Sheriff, Broward County"},{"n":"Hazelle Rogers","r":"Commissioner, Broward County"},{"n":"Jeff Holness","r":"Broward County School Board"},{"n":"Joe Scott","r":"Supervisor of Elections, Broward County"},{"n":"Lamar Fisher","r":"Commissioner, Broward County"},{"n":"Lori Alhadeff","r":"Broward County School Board"},{"n":"Mark Bogen","r":"Commissioner, Broward County"},{"n":"Martin Kiar","r":"Property Appraiser, Broward County"},{"n":"Maura McCarthy Bulman","r":"Broward County School Board"},{"n":"Michael Udine","r":"Commissioner, Broward County"},{"n":"Nan Rich","r":"Commissioner, Broward County"},{"n":"Nora Rupert","r":"Broward County School Board"},{"n":"Rebecca Thompson","r":"Broward County School Board"},{"n":"Robert McKinzie","r":"Commissioner, Broward County"},{"n":"Rodney \"Rod\" Velez","r":"Broward County School Board"},{"n":"Sarah Leonardi","r":"Broward County School Board"},{"n":"Steve Geller","r":"Commissioner, Broward County"},{"n":"Tim Ryan","r":"Commissioner, Broward County"},{"n":"Torey Alston","r":"Commissioner, Broward County"}],"munis":[{"m":"Coconut Creek","p":[{"n":"Jacqueline L. Railey","r":"Coconut Creek City Council"},{"n":"Jeffrey Wasserman","r":"Mayor of Coconut Creek"},{"n":"John A. Brodie","r":"Coconut Creek City Council"},{"n":"Joshua Rydell","r":"Coconut Creek City Council"},{"n":"Sandra L. Welch","r":"Coconut Creek City Council"}]},{"m":"Cooper City","p":[{"n":"James Curran","r":"Mayor of Cooper City"},{"n":"Jason Smith","r":"Cooper City City Council"},{"n":"Jeremy Katzman","r":"Cooper City City Council"},{"n":"Lisa Mallozzi","r":"Cooper City City Council"},{"n":"Ryan C. Shrouder","r":"Cooper City City Council"}]},{"m":"Coral Springs","p":[{"n":"Joseph McHugh","r":"Coral Springs City Council"},{"n":"Joshua Simmons","r":"Coral Springs City Council"},{"n":"Scott J. Brook","r":"Mayor of Coral Springs"},{"n":"Shawn Michael Cerra","r":"Coral Springs City Council"}]},{"m":"Dania Beach","p":[{"n":"Archibald J. Ryan","r":"Dania Beach City Council"},{"n":"Joyce L. Davis","r":"Mayor of Dania Beach"},{"n":"Lori Lewellen","r":"Dania Beach City Council"},{"n":"Luis Rimoli","r":"Dania Beach City Council"},{"n":"Marco A. Salvino","r":"Dania Beach City Council"}]},{"m":"Davie","p":[{"n":"Daniel J. Alfonso","r":"Davie City Council"},{"n":"Judy Paul","r":"Mayor of Davie"},{"n":"Marlon Luis","r":"Davie City Council"},{"n":"Michelle Whitman","r":"Davie City Council"},{"n":"Susan Starkey","r":"Davie City Council"}]},{"m":"Deerfield Beach","p":[{"n":"Ben Preston","r":"Deerfield Beach City Council"},{"n":"Daniel Shanetzky","r":"Deerfield Beach City Council"},{"n":"Michael Hudak","r":"Deerfield Beach City Council"},{"n":"Thomas Plaut","r":"Deerfield Beach City Council"},{"n":"Todd Drosky","r":"Mayor of Deerfield Beach"}]},{"m":"Fort Lauderdale","p":[{"n":"Ben Sorensen","r":"Fort Lauderdale City Council"},{"n":"Dean J. Trantalis","r":"Mayor of Fort Lauderdale"},{"n":"John C. Herbst","r":"Fort Lauderdale City Council"},{"n":"Pamela Beasley-Pittman","r":"Fort Lauderdale City Council"}]},{"m":"Hallandale Beach","p":[{"n":"Anabelle Lima-Taub","r":"Hallandale Beach City Council"},{"n":"Joy D. Adams","r":"Hallandale Beach City Council"},{"n":"Joy F. Cooper","r":"Mayor of Hallandale Beach"},{"n":"Michele Lazarow","r":"Hallandale Beach City Council"},{"n":"Mike Butler","r":"Hallandale Beach City Council"}]},{"m":"Hillsboro Beach","p":[{"n":"David A. Ravanesi","r":"Hillsboro Beach City Council"},{"n":"Dawn Miller","r":"Mayor of Hillsboro Beach"},{"n":"Heather Berman","r":"Hillsboro Beach City Council"},{"n":"Jane Reiser","r":"Hillsboro Beach City Council"},{"n":"Vinnie Andreano","r":"Hillsboro Beach City Council"}]},{"m":"Hollywood","p":[{"n":"Adam Gruber","r":"Hollywood City Council"},{"n":"Caryl Shuham","r":"Hollywood City Council"},{"n":"Idelma Quintana","r":"Hollywood City Council"},{"n":"Josh Levy","r":"Mayor of Hollywood"},{"n":"Kevin D. Biederman","r":"Hollywood City Council"},{"n":"Peter D. Hernandez","r":"Hollywood City Council"}]},{"m":"Lauderdale Lakes","p":[{"n":"Easton Harrison","r":"Lauderdale Lakes City Council"},{"n":"Karlene Maxwell-Williams","r":"Lauderdale Lakes City Council"},{"n":"Sharon Thomas","r":"Lauderdale Lakes City Council"},{"n":"Tycie Causwell","r":"Lauderdale Lakes City Council"},{"n":"Veronica Edwards Phillips","r":"Mayor of Lauderdale Lakes"}]},{"m":"Lauderdale-By-The-Sea","p":[{"n":"Edmund Malkoon","r":"Mayor of Lauderdale-By-The-Sea"},{"n":"John Graziano","r":"Lauderdale-By-The-Sea City Council"},{"n":"Randy Strauss","r":"Lauderdale-By-The-Sea City Council"},{"n":"Richard DeNapoli","r":"Lauderdale-By-The-Sea City Council"},{"n":"Theo Poulopoulos","r":"Lauderdale-By-The-Sea City Council"}]},{"m":"Lauderhill","p":[{"n":"Denise D. Grant","r":"Mayor of Lauderhill"},{"n":"John Hodgson","r":"Lauderhill City Council"},{"n":"Melissa P. Dunn","r":"Lauderhill City Council"},{"n":"Richard Campbell","r":"Lauderhill City Council"},{"n":"Sarai Martin","r":"Lauderhill City Council"}]},{"m":"Lazy Lake","p":[{"n":"Arnold Aliff","r":"Lazy Lake City Council"},{"n":"Dana Merrill","r":"Lazy Lake City Council"},{"n":"Jeff Grenell","r":"Lazy Lake City Council"},{"n":"Patrick Kaufman","r":"Lazy Lake City Council"},{"n":"Ray Nyhuis","r":"Mayor of Lazy Lake"},{"n":"William Daughtry","r":"Lazy Lake City Council"}]},{"m":"Lighthouse Point","p":[{"n":"Abby J. Stafford","r":"Lighthouse Point City Council"},{"n":"Everett Marshall","r":"Lighthouse Point City Council"},{"n":"Jason D. Joffe","r":"Lighthouse Point City Council"},{"n":"Kyle Van Buskirk","r":"Mayor of Lighthouse Point"},{"n":"Michael S. Long","r":"Lighthouse Point City Council"},{"n":"Patty Petrone","r":"Lighthouse Point City Council"}]},{"m":"Margate","p":[{"n":"Anthony N. Caggiano","r":"Margate City Council"},{"n":"Antonio V. Arserio","r":"Mayor of Margate"},{"n":"Arlene R. Schwartz","r":"Margate City Council"},{"n":"Joanne Simone","r":"Margate City Council"},{"n":"Tommy Ruzzano","r":"Margate City Council"}]},{"m":"Miramar","p":[{"n":"Avril Cherasard","r":"Miramar City Council"},{"n":"Carson Edwards","r":"Miramar City Council"},{"n":"Maxwell B. Chambers","r":"Miramar City Council"},{"n":"Wayne M. Messam","r":"Mayor of Miramar"},{"n":"Yvette Colbourne","r":"Miramar City Council"}]},{"m":"North Lauderdale","p":[{"n":"Darrell Lewis-Ricketts","r":"North Lauderdale City Council"},{"n":"Luke Lewis","r":"North Lauderdale City Council"},{"n":"Mario Bustamante","r":"North Lauderdale City Council"},{"n":"Regina Martin","r":"North Lauderdale City Council"},{"n":"Samson Borgelin","r":"Mayor of North Lauderdale"}]},{"m":"Oakland Park","p":[{"n":"Aisha Gordon","r":"Oakland Park City Council"},{"n":"Fitzgerald Budhoo","r":"Oakland Park City Council"},{"n":"Letitia Newbold","r":"Oakland Park City Council"},{"n":"Steven Arnst","r":"Mayor of Oakland Park"},{"n":"Tim Lonergan","r":"Oakland Park City Council"}]},{"m":"Parkland","p":[{"n":"Cindy Murphy-Salomone","r":"Parkland City Council"},{"n":"Jordan Isrow","r":"Parkland City Council"},{"n":"Neil Kanterman","r":"Parkland City Council"},{"n":"Richard Walker","r":"Mayor of Parkland"},{"n":"Simeon Brier","r":"Parkland City Council"}]},{"m":"Pembroke Park","p":[{"n":"Ashira B. Mohammed","r":"Pembroke Park City Council"},{"n":"Erik Morrissette","r":"Pembroke Park City Council"},{"n":"Geoffrey Jacobs","r":"Mayor of Pembroke Park"},{"n":"Musfika Kashem","r":"Pembroke Park City Council"},{"n":"William Hodgkins","r":"Pembroke Park City Council"}]},{"m":"Pembroke Pines","p":[{"n":"Angelo Castillo","r":"Mayor of Pembroke Pines"},{"n":"Jay D. Schwartz","r":"Pembroke Pines City Council"},{"n":"Maria Rodriguez","r":"Pembroke Pines City Council"},{"n":"Michael Hernandez","r":"Pembroke Pines City Council"},{"n":"Thomas Good","r":"Pembroke Pines City Council"}]},{"m":"Plantation","p":[{"n":"Denise Horland","r":"Plantation City Council"},{"n":"Erik Anderson","r":"Plantation City Council"},{"n":"Jennifer Andreu","r":"Plantation City Council"},{"n":"Louis Reinstein","r":"Plantation City Council"},{"n":"Nick Sortal","r":"Mayor of Plantation"},{"n":"Timothy J. Fadgen","r":"Plantation City Council"}]},{"m":"Pompano Beach","p":[{"n":"Alison Fournier","r":"Pompano Beach City Council"},{"n":"Audrey Fesik","r":"Pompano Beach City Council"},{"n":"Beverly Perkins","r":"Pompano Beach City Council"},{"n":"Darlene Smith","r":"Pompano Beach City Council"},{"n":"Rex Hardin","r":"Mayor of Pompano Beach"},{"n":"Rhonda Eaton","r":"Pompano Beach City Council"}]},{"m":"Sea Ranch Lakes","p":[{"n":"Chad Volkert","r":"Sea Ranch Lakes City Council"},{"n":"Denise Bryan","r":"Sea Ranch Lakes City Council"},{"n":"Douglas Hodgson","r":"Sea Ranch Lakes City Council"},{"n":"Jason Robichaux","r":"Sea Ranch Lakes City Council"},{"n":"Jeffrey Nelson","r":"Mayor of Sea Ranch Lakes"},{"n":"John L. Tomlinson","r":"Sea Ranch Lakes City Council"}]},{"m":"Southwest Ranches","p":[{"n":"Bob Hartmann","r":"Southwest Ranches City Council"},{"n":"David Kuczenski","r":"Southwest Ranches City Council"},{"n":"Gary Jablonski","r":"Southwest Ranches City Council"},{"n":"Jim Allbritton","r":"Southwest Ranches City Council"},{"n":"Steve Breitkreuz","r":"Mayor of Southwest Ranches"}]},{"m":"Sunrise","p":[{"n":"Joseph A. Scuotto","r":"Sunrise City Council"},{"n":"Latoya S. Clarke","r":"Sunrise City Council"},{"n":"Mark A. Douglas","r":"Sunrise City Council"},{"n":"Michael J. Ryan","r":"Mayor of Sunrise"},{"n":"Neil C. Kerch","r":"Sunrise City Council"}]},{"m":"Tamarac","p":[{"n":"Kicia Daniel","r":"Tamarac City Council"},{"n":"Krystal Patterson","r":"Tamarac City Council"},{"n":"Marlon D. Bolton","r":"Tamarac City Council"},{"n":"Michelle J. Gomez","r":"Mayor of Tamarac"},{"n":"Morey Wright","r":"Tamarac City Council"}]},{"m":"West Park","p":[{"n":"Brandon Smith","r":"West Park City Council"},{"n":"Cristina R. Eveillard","r":"West Park City Council"},{"n":"Felicia M. Brunson","r":"Mayor of West Park"},{"n":"Joy B. Smith","r":"West Park City Council"},{"n":"Katrina Touchstone","r":"West Park City Council"}]},{"m":"Weston","p":[{"n":"Byron L. Jaffe","r":"Weston City Council"},{"n":"Fabio Andrade","r":"Weston City Council"},{"n":"Margaret Brown","r":"Mayor of Weston"},{"n":"Mary Molina-Macfie","r":"Weston City Council"}]},{"m":"Wilton Manors","p":[{"n":"Chris Caputo","r":"Wilton Manors City Council"},{"n":"Don D'Arminio","r":"Wilton Manors City Council"},{"n":"Mike Bracchi","r":"Wilton Manors City Council"},{"n":"Paul Rolli","r":"Wilton Manors City Council"},{"n":"Scott Newton","r":"Mayor of Wilton Manors"}]}],"slug":"broward"},"12013":{"county":[{"n":"Becky Trickey-Smith","r":"Tax Collector, Calhoun County"},{"n":"Carla Hand","r":"Clerk of Court, Calhoun County"},{"n":"Carla Peacock","r":"Property Appraiser, Calhoun County"},{"n":"Chris Rogers","r":"Tax Collector, Calhoun County"},{"n":"Clifford Newsome","r":"Calhoun County School Board"},{"n":"Danny Hassig","r":"Calhoun County School Board"},{"n":"Danny Ryals","r":"Calhoun County School Board"},{"n":"Darryl O'Bryan","r":"Commissioner, Calhoun County"},{"n":"Gene Bailey","r":"Commissioner, Calhoun County"},{"n":"Glenn Kimbrel","r":"Sheriff, Calhoun County"},{"n":"Marion Brown","r":"Commissioner, Calhoun County"},{"n":"Michael Bryant","r":"Sheriff, Calhoun County"},{"n":"Ray Howell","r":"Calhoun County School Board"},{"n":"Robin Barfield","r":"Clerk of Court, Calhoun County"},{"n":"Scott Monlyn","r":"Commissioner, Calhoun County"},{"n":"Sharon Chason","r":"Supervisor of Elections, Calhoun County"},{"n":"Thomas Carter","r":"Commissioner, Calhoun County"}],"munis":[{"m":"Altha","p":[{"n":"Charlie McNew","r":"Altha City Council"},{"n":"Jamie Strickland","r":"Altha City Council"},{"n":"Jeffrey Waldorf","r":"Mayor of Altha"},{"n":"Jonathan Connelly","r":"Altha City Council"},{"n":"Linda Barrentine","r":"Altha City Council"}]},{"m":"Blountstown","p":[{"n":"Bill Gaskin","r":"Blountstown City Council"},{"n":"Clifford Jackson","r":"Blountstown City Council"},{"n":"Martha Stephens","r":"Blountstown City Council"},{"n":"Sheila Blackburn","r":"Blountstown City Council"},{"n":"Tony Shoemake","r":"Mayor of Blountstown"}]}],"slug":"calhoun"},"12015":{"county":[{"n":"Bill Prummell","r":"Sheriff, Charlotte County"},{"n":"Bob Segur","r":"Charlotte County School Board"},{"n":"Cara M Reynolds","r":"Charlotte County School Board"},{"n":"Christopher Constance","r":"Commissioner, Charlotte County"},{"n":"John H LeClair","r":"Charlotte County School Board"},{"n":"Joseph Tiseo","r":"Commissioner, Charlotte County"},{"n":"Ken Doherty","r":"Commissioner, Charlotte County"},{"n":"Kim Amontree","r":"Charlotte County School Board"},{"n":"Leah Valenti","r":"Supervisor of Elections, Charlotte County"},{"n":"Paul Polk","r":"Property Appraiser, Charlotte County"},{"n":"Paul Stamoulis","r":"Supervisor of Elections, Charlotte County"},{"n":"Roger Eaton","r":"Clerk of Court, Charlotte County"},{"n":"Stephen R. Deutsch","r":"Commissioner, Charlotte County"},{"n":"Vickie Potts","r":"Tax Collector, Charlotte County"},{"n":"Wendy Atkinson","r":"Charlotte County School Board"},{"n":"William Truex","r":"Commissioner, Charlotte County"}],"munis":[{"m":"Punta Gorda","p":[{"n":"Deborah Lux","r":"Mayor of Punta Gorda"},{"n":"Gregory Julian","r":"Punta Gorda City Council"},{"n":"Janis Denton","r":"Punta Gorda City Council"},{"n":"Jeannine Polk","r":"Punta Gorda City Council"},{"n":"Melissa Lockhart","r":"Punta Gorda City Council"}]}],"slug":"charlotte"},"12017":{"county":[{"n":"Angela Vick","r":"Clerk of Court, Citrus County"},{"n":"Cregg Dalton","r":"Property Appraiser, Citrus County"},{"n":"David Vincent","r":"Sheriff, Citrus County"},{"n":"Diana Finegan","r":"Commissioner, Citrus County"},{"n":"Douglas A. Dodd","r":"Citrus County School Board"},{"n":"Holly Davis","r":"Commissioner, Citrus County"},{"n":"Janice Warren","r":"Tax Collector, Citrus County"},{"n":"Jeffery Kinnard","r":"Commissioner, Citrus County"},{"n":"Joseph \"Joe\" Faherty","r":"Citrus County School Board"},{"n":"Ken Frink","r":"Citrus County School Board"},{"n":"Leslie Cook","r":"Property Appraiser, Citrus County"},{"n":"Maureen Baird","r":"Supervisor of Elections, Citrus County"},{"n":"Michael Prendergast","r":"Sheriff, Citrus County"},{"n":"Rebecca Bays","r":"Commissioner, Citrus County"},{"n":"Ruthie Schlabach","r":"Commissioner, Citrus County"},{"n":"Sandy B. Counts","r":"Citrus County School Board"},{"n":"Thomas Kennedy","r":"Citrus County School Board"},{"n":"Traci Phillips","r":"Clerk of Court, Citrus County"}],"munis":[{"m":"Crystal River","p":[{"n":"Chris Ensing","r":"Crystal River City Council"},{"n":"Gabrielle Satchell","r":"Crystal River City Council"},{"n":"Joe Meek","r":"Mayor of Crystal River"},{"n":"Robert Holmes","r":"Crystal River City Council"}]},{"m":"Inverness","p":[{"n":"Cabot McBride","r":"Inverness City Council"},{"n":"Crystal Lizanich","r":"Inverness City Council"},{"n":"Gene Davis","r":"Inverness City Council"},{"n":"Jacquie Hepfer","r":"Inverness City Council"},{"n":"Linda Bega","r":"Inverness City Council"},{"n":"Robert Plaisted","r":"Mayor of Inverness"}]}],"slug":"citrus"},"12019":{"county":[{"n":"Alexandra Compere","r":"Commissioner, Clay County"},{"n":"Ashley Hutchings Gilhousen","r":"Clay County School Board"},{"n":"Beth Clark","r":"Clay County School Board"},{"n":"Betsy Condon","r":"Commissioner, Clay County"},{"n":"Chris Chambless","r":"Supervisor of Elections, Clay County"},{"n":"Diane Hutchings","r":"Tax Collector, Clay County"},{"n":"Erin Skipper","r":"Clay County School Board"},{"n":"James Weeks","r":"Tax Collector, Clay County"},{"n":"Jim Renninger","r":"Commissioner, Clay County"},{"n":"Kristen Burke","r":"Commissioner, Clay County"},{"n":"Michele Hanson","r":"Clay County School Board"},{"n":"Michelle Cook","r":"Sheriff, Clay County"},{"n":"Robert Alvero","r":"Clay County School Board"},{"n":"Tara Green","r":"Clerk of Court, Clay County"},{"n":"Tracy Drake","r":"Property Appraiser, Clay County"}],"munis":[{"m":"Green Cove Springs","p":[{"n":"Cheryl Starnes","r":"Green Cove Springs City Council"},{"n":"Darren Stutts","r":"Green Cove Springs City Council"},{"n":"Edward Gaw","r":"Green Cove Springs City Council"},{"n":"Gloria Glisson","r":"Green Cove Springs City Council"},{"n":"Matt Johnson","r":"Mayor of Green Cove Springs"}]},{"m":"Keystone Heights","p":[{"n":"Brandon Ludwig","r":"Keystone Heights City Council"},{"n":"Christine Thompson","r":"Keystone Heights City Council"},{"n":"Daniel Lewandowski","r":"Keystone Heights City Council"},{"n":"Nina Rodenroth","r":"Mayor of Keystone Heights"},{"n":"Ryan Knight","r":"Keystone Heights City Council"}]},{"m":"Orange Park","p":[{"n":"Doug Benefield","r":"Orange Park City Council"},{"n":"Glenn Taylor","r":"Orange Park City Council"},{"n":"Kenneth Vogel","r":"Orange Park City Council"},{"n":"Randy Anderson","r":"Orange Park City Council"},{"n":"Winnette Sandlin","r":"Mayor of Orange Park"}]},{"m":"Penney Farms","p":[{"n":"Adrian M. Andrews","r":"Mayor of Penney Farms"},{"n":"Annette Brooks","r":"Penney Farms City Council"},{"n":"Elizabeth Ryder","r":"Penney Farms City Council"},{"n":"Richard Hollowell","r":"Penney Farms City Council"},{"n":"Thomas E. DeVille","r":"Penney Farms City Council"}]}],"slug":"clay"},"12021":{"county":[{"n":"Abe Skinner","r":"Property Appraiser, Collier County"},{"n":"Burt Saunders","r":"Commissioner, Collier County"},{"n":"Chris Hall","r":"Commissioner, Collier County"},{"n":"Crystal Kinzel","r":"Clerk of Court, Collier County"},{"n":"Daniel Kowal","r":"Commissioner, Collier County"},{"n":"Erick Carter","r":"Collier County School Board"},{"n":"Erick Carter","r":"Collier County School Board - Vice Chair, District 4"},{"n":"Jennifer Edwards","r":"Supervisor of Elections, Collier County"},{"n":"Jerry D Rutherford","r":"Collier County School Board"},{"n":"Jerry Rutherford","r":"Collier County School Board - District 1"},{"n":"Kelly Lichter","r":"Collier County School Board"},{"n":"Kelly Mason","r":"Collier County School Board - District 3"},{"n":"Kevin Rambosk","r":"Sheriff, Collier County"},{"n":"Larry Ray","r":"Tax Collector, Collier County"},{"n":"Melissa Blazier","r":"Supervisor of Elections, Collier County"},{"n":"Rick LoCastro","r":"Commissioner, Collier County"},{"n":"Rob Stoneburner","r":"Tax Collector, Collier County"},{"n":"Stephanie Lucarelli","r":"Collier County School Board"},{"n":"Stephanie Lucarelli","r":"Collier County School Board - Chair, District 2"},{"n":"Tim Moshier","r":"Collier County School Board - District 5"},{"n":"Timothy Donald Moshier","r":"Collier County School Board"},{"n":"Vickie Downs","r":"Property Appraiser, Collier County"},{"n":"William McDaniel","r":"Commissioner, Collier County"}],"munis":[{"m":"Everglades City","p":[{"n":"Howell Grimm","r":"Mayor of Everglades City"}]},{"m":"Marco Island","p":[{"n":"Bonita Schwan","r":"Marco Island City Council"},{"n":"Darrin Palumbo","r":"Marco Island City Council"},{"n":"Deb Henry","r":"Marco Island City Council"},{"n":"Open Position","r":"Marco Island City Council"},{"n":"Rene Champagne","r":"Marco Island City Council"},{"n":"Stephen Gray","r":"Marco Island City Council"},{"n":"Tamara Goehler","r":"Marco Island City Council"}]},{"m":"Naples","p":[{"n":"Berne Barton","r":"Naples City Council"},{"n":"Bill Kramer","r":"Naples City Council"},{"n":"John Krol","r":"Naples City Council"},{"n":"Linda Penniman","r":"Naples City Council"},{"n":"Scott Schultz","r":"Naples City Council"},{"n":"Ted Blankenship","r":"Naples City Council"},{"n":"Teresa L. Heitmann","r":"Mayor of Naples"}]},{"m":"_Unresolved","p":[{"n":"Josh Minton","r":"Everglades City City Council"},{"n":"Michael McComas","r":"Everglades City City Council"},{"n":"Parker Oglesby","r":"Everglades City City Council"},{"n":"Tony Pernas","r":"Everglades City City Council"},{"n":"Vicky Wells","r":"Everglades City City Council"}]}],"slug":"collier"},"12023":{"county":[{"n":"Cherie Dicks Hill","r":"Columbia County School Board"},{"n":"Dana Brady-Giddens","r":"Columbia County School Board"},{"n":"Everett Phillips","r":"Commissioner, Columbia County"},{"n":"Hunter Peeler","r":"Columbia County School Board"},{"n":"James Swisher","r":"Clerk of Court, Columbia County"},{"n":"James Swisher","r":"Clerk of Court, Columbia County"},{"n":"Jeff Hampton","r":"Property Appraiser, Columbia County"},{"n":"Keith Hudson","r":"Columbia County School Board"},{"n":"Kyle Keen","r":"Tax Collector, Columbia County"},{"n":"Mark Hunter","r":"Sheriff, Columbia County"},{"n":"Narragansett Mobley Smith","r":"Columbia County School Board"},{"n":"Robby Hollingsworth","r":"Commissioner, Columbia County"},{"n":"Rocky Ford","r":"Commissioner, Columbia County"},{"n":"Ronald Williams","r":"Commissioner, Columbia County"},{"n":"Timothy Murphy","r":"Commissioner, Columbia County"},{"n":"Tomi Brown","r":"Supervisor of Elections, Columbia County"},{"n":"Wallace Kitchings","r":"Sheriff, Columbia County"}],"munis":[{"m":"Fort White","p":[{"n":"Bill Koon","r":"Fort White City Council"},{"n":"George Thomas","r":"Mayor of Fort White"},{"n":"Kathryn Terry","r":"Fort White City Council"},{"n":"Lonnie Wayne Harrell","r":"Fort White City Council"},{"n":"Monica Merricks","r":"Fort White City Council"}]},{"m":"Lake City","p":[{"n":"James Carter","r":"Lake City City Council"},{"n":"Noah Walker","r":"Mayor of Lake City"},{"n":"Ricky Jernigan","r":"Lake City City Council"},{"n":"Tammy Harris","r":"Lake City City Council"}]}],"slug":"columbia"},"12027":{"county":[{"n":"Asena Mott","r":"DeSoto County School Board"},{"n":"Ashley Coone","r":"Commissioner, DeSoto County"},{"n":"David Williams","r":"Property Appraiser, DeSoto County"},{"n":"Debbie Wertz","r":"Supervisor of Elections, DeSoto County"},{"n":"Debra Burtscher","r":"Tax Collector, DeSoto County"},{"n":"Elton Langford","r":"Commissioner, DeSoto County"},{"n":"James Potter","r":"Sheriff, DeSoto County"},{"n":"Jerod Gross","r":"Commissioner, DeSoto County"},{"n":"Joel Deriso","r":"Commissioner, DeSoto County"},{"n":"Judith Schaefer","r":"Commissioner, DeSoto County"},{"n":"Karen K Chancey","r":"DeSoto County School Board"},{"n":"Kelly Mercer","r":"DeSoto County School Board"},{"n":"Mark Negley","r":"Supervisor of Elections, DeSoto County"},{"n":"Nadia Daughtrey","r":"Clerk of Court, DeSoto County"},{"n":"Sharon T Goodman","r":"DeSoto County School Board"},{"n":"Steven Hickox","r":"Commissioner, DeSoto County"},{"n":"Susan Pooley","r":"Tax Collector, DeSoto County"}],"munis":[{"m":"Arcadia","p":[{"n":"Dee Washington","r":"Arcadia City Council"},{"n":"Judy Wertz Strickland","r":"Mayor of Arcadia"},{"n":"Keith Keene","r":"Arcadia City Council"},{"n":"Luis Velasco","r":"Arcadia City Council"},{"n":"Robert W. Heine","r":"Arcadia City Council"}]}],"slug":"desoto"},"12029":{"county":[{"n":"Amanda Mills NesSmith","r":"Dixie County School Board"},{"n":"Barbara Higginbotham","r":"Clerk of Court, Dixie County"},{"n":"Cheryl Pridgeon","r":"Dixie County School Board"},{"n":"Daniel Wood","r":"Commissioner, Dixie County"},{"n":"Darbi Chaires","r":"Supervisor of Elections, Dixie County"},{"n":"Darby Butler","r":"Sheriff, Dixie County"},{"n":"David Osteen","r":"Commissioner, Dixie County"},{"n":"Jamie Storey","r":"Commissioner, Dixie County"},{"n":"Lucas Rollison","r":"Dixie County School Board"},{"n":"Mark Hatch","r":"Commissioner, Dixie County"},{"n":"Michelle Cannon","r":"Tax Collector, Dixie County"},{"n":"Paul N Gainey","r":"Dixie County School Board"},{"n":"Paul Stephenson","r":"Commissioner, Dixie County"},{"n":"Robert Lee","r":"Property Appraiser, Dixie County"},{"n":"Starlet Cannon","r":"Supervisor of Elections, Dixie County"},{"n":"Timothy W. \"Tim\" Alexander","r":"Dixie County School Board"}],"munis":[{"m":"Cross City","p":[{"n":"Angela Carter","r":"Cross City City Council"},{"n":"Charlie Heidelburg","r":"Cross City City Council"},{"n":"Kenneth Lee","r":"Cross City City Council"},{"n":"Kirk Marhefka","r":"Cross City City Council"},{"n":"Ryan Fulford","r":"Mayor of Cross City"}]},{"m":"Horseshoe Beach","p":[{"n":"Brett Selph","r":"Horseshoe Beach City Council"},{"n":"Bryan Dodd","r":"Horseshoe Beach City Council"},{"n":"Jeff Williams","r":"Mayor of Horseshoe Beach"},{"n":"Kelly Brooke Hiers","r":"Horseshoe Beach City Council"},{"n":"Scott Matthews","r":"Horseshoe Beach City Council"}]}],"slug":"dixie"},"12031":{"county":[{"n":"Al Ferraro","r":"Council Member, Duval County"},{"n":"April Carney","r":"Duval County School Board"},{"n":"Brenda Priestly Jackson","r":"Council Member, Duval County"},{"n":"Charlotte Joyce","r":"Duval County School Board"},{"n":"Chris Miller","r":"Council Member, Duval County"},{"n":"Cindy Pearson","r":"Duval County School Board"},{"n":"Danny Becton","r":"Council Member, Duval County"},{"n":"Darryl Willie","r":"Duval County School Board"},{"n":"Jerry Holland","r":"Supervisor of Elections, Duval County"},{"n":"Jerry Holland","r":"Supervisor of Elections, Duval County"},{"n":"Jim Overton","r":"Tax Collector, Duval County"},{"n":"Jimmy Peluso","r":"Council Member, Duval County"},{"n":"Jody Phillips","r":"Clerk of Court, Duval County"},{"n":"Joe Carlucci","r":"Council Member, Duval County"},{"n":"Joyce Morgan","r":"Property Appraiser, Duval County"},{"n":"Ju'Coby Pittman","r":"Council Member, Duval County"},{"n":"Ken Amaro","r":"Council Member, Duval County"},{"n":"Kevin Carrico","r":"Council Member, Duval County"},{"n":"LeAnna Cumber","r":"Council Member, Duval County"},{"n":"Matt Carlucci","r":"Council Member, Duval County"},{"n":"Melody Bolduc","r":"Duval County School Board"},{"n":"Michael Boylan","r":"Council Member, Duval County"},{"n":"Mike Gay","r":"Council Member, Duval County"},{"n":"Mike Hogan","r":"Supervisor of Elections, Duval County"},{"n":"Mike Williams","r":"Sheriff, Duval County"},{"n":"Nick Howland","r":"Council Member, Duval County"},{"n":"Rahman Johnson","r":"Council Member, Duval County"},{"n":"Randy DeFoor","r":"Council Member, Duval County"},{"n":"Randy White","r":"Council Member, Duval County"},{"n":"Reggie Gaffney","r":"Council Member, Duval County"},{"n":"Reginald \"Reggie\" Blount","r":"Duval County School Board"},{"n":"Ronald Salem","r":"Council Member, Duval County"},{"n":"Rory Diamond","r":"Council Member, Duval County"},{"n":"Samuel Newby","r":"Council Member, Duval County"},{"n":"Terrance Freeman","r":"Council Member, Duval County"},{"n":"Tony Ricardo","r":"Duval County School Board"},{"n":"Tyrona Clark-Murray","r":"Council Member, Duval County"},{"n":"William Lahnen","r":"Council Member, Duval County"}],"munis":[{"m":"Atlantic Beach","p":[{"n":"Bruce Bole","r":"Atlantic Beach City Council"},{"n":"Candace Kelly","r":"Atlantic Beach City Council"},{"n":"Curtis Ford","r":"Mayor of Atlantic Beach"},{"n":"Jessica Ring","r":"Atlantic Beach City Council"},{"n":"Thomas Grant","r":"Atlantic Beach City Council"}]},{"m":"Baldwin","p":[{"n":"Georgeann L. McKenna","r":"Baldwin City Council"},{"n":"Harry D. Ervin","r":"Baldwin City Council"},{"n":"John A. Knoll","r":"Baldwin City Council"},{"n":"Manuel C. Dunlap","r":"Baldwin City Council"},{"n":"Sean T. Lynch","r":"Mayor of Baldwin"}]},{"m":"Jacksonville","p":[{"n":"Chris Miller","r":"Jacksonville City Council - At-Large Group 5"},{"n":"Donna Deegan","r":"Mayor of Jacksonville"},{"n":"Jimmy Peluso","r":"Jacksonville City Council"},{"n":"Jimmy Peluso","r":"Jacksonville City Council - District 7"},{"n":"Joe Carlucci","r":"Jacksonville City Council"},{"n":"Joe Carlucci","r":"Jacksonville City Council - District 5"},{"n":"Ju'Coby Pittman","r":"Jacksonville City Council"},{"n":"Ju'Coby Pittman","r":"Jacksonville City Council - District 10"},{"n":"Ken Amaro","r":"Jacksonville City Council - District 1"},{"n":"Ken Stephens Amaro","r":"Jacksonville City Council"},{"n":"Kevin Carrico","r":"Jacksonville City Council"},{"n":"Kevin Carrico","r":"Jacksonville City Council - District 4"},{"n":"Matt Carlucci","r":"Jacksonville City Council"},{"n":"Matt Carlucci","r":"Jacksonville City Council - At-Large Group 4"},{"n":"Michael Boylan","r":"Jacksonville City Council"},{"n":"Michael Boylan","r":"Jacksonville City Council - District 6"},{"n":"Mike Gay","r":"Jacksonville City Council"},{"n":"Mike Gay","r":"Jacksonville City Council - District 2"},{"n":"Nick Howland","r":"Jacksonville City Council"},{"n":"Nick Howland","r":"Jacksonville City Council - At-Large Group 3"},{"n":"Rahman Johnson","r":"Jacksonville City Council"},{"n":"Rahman Johnson","r":"Jacksonville City Council - District 14"},{"n":"Randy White","r":"Jacksonville City Council"},{"n":"Randy White","r":"Jacksonville City Council - District 12"},{"n":"Raul Arias","r":"Jacksonville City Council"},{"n":"Raul Arias","r":"Jacksonville City Council - District 11"},{"n":"Reggie Gaffney","r":"Jacksonville City Council"},{"n":"Reggie Gaffney Jr.","r":"Jacksonville City Council - District 8"},{"n":"Ron Salem","r":"Jacksonville City Council"},{"n":"Ronald B. Salem","r":"Jacksonville City Council - At-Large Group 2"},{"n":"Rory Diamond","r":"Jacksonville City Council"},{"n":"Rory Diamond","r":"Jacksonville City Council - District 13"},{"n":"Terrance E. Freeman","r":"Jacksonville City Council"},{"n":"Terrance Freeman","r":"Jacksonville City Council - At-Large Group 1"},{"n":"Tyrona Clark-Murray","r":"Jacksonville City Council"},{"n":"Tyrona Clark-Murray","r":"Jacksonville City Council - District 9"},{"n":"Will Lahnen","r":"Jacksonville City Council"},{"n":"Will Lahnen","r":"Jacksonville City Council - District 3"}]},{"m":"Jacksonville Beach","p":[{"n":"Bill Horn","r":"Jacksonville Beach City Council"},{"n":"Bruce Wouters","r":"Jacksonville Beach City Council"},{"n":"Chris Hoffman","r":"Mayor of Jacksonville Beach"},{"n":"Greg Sutton","r":"Jacksonville Beach City Council"},{"n":"John Wagner","r":"Jacksonville Beach City Council"}]},{"m":"Neptune Beach","p":[{"n":"Brent Rogers","r":"Neptune Beach City Council"},{"n":"Cori Bylund","r":"Mayor of Neptune Beach"},{"n":"Josh Messinger","r":"Neptune Beach City Council"},{"n":"Nia Livingston","r":"Neptune Beach City Council"},{"n":"Tim Horvath","r":"Neptune Beach City Council"}]}],"slug":"duval"},"12033":{"county":[{"n":"Ashlee Hofberger","r":"Commissioner, Escambia County"},{"n":"Carissa Bergosh","r":"Escambia County School Board"},{"n":"Chip Simmons","r":"Sheriff, Escambia County"},{"n":"Chris Jones","r":"Property Appraiser, Escambia County"},{"n":"David Stafford","r":"Supervisor of Elections, Escambia County"},{"n":"David Williams","r":"Escambia County School Board"},{"n":"Gary Peters","r":"Property Appraiser, Escambia County"},{"n":"Jeff Bergosh","r":"Commissioner, Escambia County"},{"n":"Kevin Adams","r":"Escambia County School Board"},{"n":"Lumon May","r":"Commissioner, Escambia County"},{"n":"Michael Kohler","r":"Commissioner, Escambia County"},{"n":"Pamela Childers","r":"Clerk of Court, Escambia County"},{"n":"Paul Fetsko","r":"Escambia County School Board"},{"n":"Robert Bender","r":"Supervisor of Elections, Escambia County"},{"n":"Scott Lunsford","r":"Tax Collector, Escambia County"},{"n":"Steven Barry","r":"Commissioner, Escambia County"},{"n":"Tom Harrell","r":"Escambia County School Board"}],"munis":[{"m":"Century","p":[{"n":"Benjamin Boutwell","r":"Mayor of Century"},{"n":"Henry Cunningham","r":"Century City Council"},{"n":"John Bass","r":"Century City Council"},{"n":"Lizbeth A. Harrison","r":"Century City Council"},{"n":"Shelisa McCall Abraham","r":"Century City Council"}]},{"m":"Pensacola","p":[{"n":"Allison Patton","r":"Pensacola City Council"},{"n":"Casey Jones","r":"Pensacola City Council"},{"n":"Charles Bare","r":"Pensacola City Council"},{"n":"D.C. Reeves","r":"Mayor of Pensacola"},{"n":"Delarian Wiggins","r":"Pensacola City Council"},{"n":"Jared Moore","r":"Pensacola City Council"},{"n":"Jennifer Brahier","r":"Pensacola City Council"},{"n":"Teniadé Broughton","r":"Pensacola City Council"}]}],"slug":"escambia"},"12035":{"county":[{"n":"Andy Dance","r":"Commissioner, Flagler County"},{"n":"Christy Chong","r":"Flagler County School Board"},{"n":"Donald O'Brien","r":"Commissioner, Flagler County"},{"n":"Gregory Hansen","r":"Commissioner, Flagler County"},{"n":"James Gardner","r":"Property Appraiser, Flagler County"},{"n":"Janie Ruddy","r":"Flagler County School Board"},{"n":"Kaiti Lenhart","r":"Supervisor of Elections, Flagler County"},{"n":"Lauren Ramirez","r":"Flagler County School Board"},{"n":"Leann Pennington","r":"Commissioner, Flagler County"},{"n":"Rick Staly","r":"Sheriff, Flagler County"},{"n":"Sally Hunt","r":"Flagler County School Board"},{"n":"Shelly Edmonson","r":"Tax Collector, Flagler County"},{"n":"Suzanne Johnston","r":"Tax Collector, Flagler County"},{"n":"Tom Bexley","r":"Clerk of Court, Flagler County"},{"n":"Will Furry","r":"Flagler County School Board"}],"munis":[{"m":"Beverly Beach","p":[{"n":"James Howard","r":"Beverly Beach City Council"},{"n":"Jeffrey Borges","r":"Beverly Beach City Council"},{"n":"Jeffrey Schuitema","r":"Beverly Beach City Council"},{"n":"Kyle Blake","r":"Beverly Beach City Council"},{"n":"Philip Krakowski","r":"Beverly Beach City Council"},{"n":"Stephen Emmett","r":"Mayor of Beverly Beach"}]},{"m":"Bunnell","p":[{"n":"Catherine D. Robinson","r":"Mayor of Bunnell"},{"n":"David Atkinson","r":"Bunnell City Council"},{"n":"Dean Sechrist","r":"Bunnell City Council"},{"n":"John Rogers","r":"Bunnell City Council"},{"n":"Peter Young","r":"Bunnell City Council"}]},{"m":"Flagler Beach","p":[{"n":"Eric Cooley","r":"Flagler Beach City Council"},{"n":"James Sherman","r":"Flagler Beach City Council"},{"n":"John Cunningham","r":"Flagler Beach City Council"},{"n":"Patti King","r":"Mayor of Flagler Beach"},{"n":"R.J. Santore","r":"Flagler Beach City Council"},{"n":"Scott Spradley","r":"Flagler Beach City Council"}]},{"m":"Marineland","p":[{"n":"Jessica Finch","r":"Marineland City Council"},{"n":"Joseph B. Pinder","r":"Mayor of Marineland"}]},{"m":"Palm Coast","p":[{"n":"Charles A. Gambarao","r":"Palm Coast City Council"},{"n":"Dave Sullivan","r":"Palm Coast City Council"},{"n":"Mike Norris","r":"Mayor of Palm Coast"},{"n":"Theresa Carli Pontieri","r":"Palm Coast City Council"},{"n":"Ty Miller","r":"Palm Coast City Council"}]}],"slug":"flagler"},"12037":{"county":[{"n":"A.J. Smith","r":"Sheriff, Franklin County"},{"n":"Amy Cook","r":"Tax Collector, Franklin County"},{"n":"Anthony Croom","r":"Commissioner, Franklin County"},{"n":"Fonda D. Davis Sr.","r":"Franklin County School Board"},{"n":"Heather Riley","r":"Supervisor of Elections, Franklin County"},{"n":"James Tipton","r":"Property Appraiser, Franklin County"},{"n":"Jared Mock","r":"Franklin County School Board"},{"n":"Jessica Varnes Ward","r":"Commissioner, Franklin County"},{"n":"Melonie Kay Inzetta","r":"Franklin County School Board"},{"n":"Ottice Amison","r":"Commissioner, Franklin County"},{"n":"Pamela Marshall","r":"Franklin County School Board"},{"n":"Rhonda Skipper","r":"Property Appraiser, Franklin County"},{"n":"Rick Watson","r":"Tax Collector, Franklin County"},{"n":"Ricky Jones","r":"Commissioner, Franklin County"},{"n":"Stacy Buck Kirvin","r":"Franklin County School Board"},{"n":"Suzanne Maxwell","r":"Clerk of Court, Franklin County"}],"munis":[{"m":"Apalachicola","p":[{"n":"Adriane Elliott","r":"Apalachicola City Council"},{"n":"Brenda Ash","r":"Mayor of Apalachicola"},{"n":"Despina George","r":"Apalachicola City Council"},{"n":"Donna Duncan","r":"Apalachicola City Council"},{"n":"Donna Knutson","r":"Apalachicola City Council"}]},{"m":"Carrabelle","p":[{"n":"Anthony Millender","r":"Carrabelle City Council"},{"n":"Keith Walden","r":"Carrabelle City Council"},{"n":"Sebrina Brown","r":"Mayor of Carrabelle"},{"n":"Vance Pedrick","r":"Carrabelle City Council"},{"n":"William Gray","r":"Carrabelle City Council"}]}],"slug":"franklin"},"12039":{"county":[{"n":"Alonzetta Simpkins","r":"Commissioner, Gadsden County"},{"n":"Brenda Holt","r":"Commissioner, Gadsden County"},{"n":"Cathy Johnson","r":"Gadsden County School Board"},{"n":"Charlie Frost","r":"Gadsden County School Board"},{"n":"Eric Hinson","r":"Commissioner, Gadsden County"},{"n":"Kenya Williams","r":"Supervisor of Elections, Gadsden County"},{"n":"Kimblin Nesmith","r":"Commissioner, Gadsden County"},{"n":"Leroy McMillan","r":"Gadsden County School Board"},{"n":"Morris Young","r":"Sheriff, Gadsden County"},{"n":"Nicholas Thomas","r":"Clerk of Court, Gadsden County"},{"n":"Reginald Cunningham","r":"Property Appraiser, Gadsden County"},{"n":"Ronterious Green","r":"Commissioner, Gadsden County"},{"n":"Shawn Wood","r":"Commissioner, Gadsden County"},{"n":"Shirley Knight","r":"Supervisor of Elections, Gadsden County"},{"n":"Stacey Hannigon","r":"Gadsden County School Board"},{"n":"Steve Scott","r":"Gadsden County School Board"},{"n":"Tonjii Wiggins-McGriff","r":"Tax Collector, Gadsden County"},{"n":"W. Dale Summerford","r":"Tax Collector, Gadsden County"}],"munis":[{"m":"Chattahoochee","p":[{"n":"Amy M. Glass","r":"Chattahoochee City Council"},{"n":"Anquarnette Richardson","r":"Mayor of Chattahoochee"},{"n":"Christopher Moultry","r":"Chattahoochee City Council"},{"n":"Kenneth Kimrey","r":"Chattahoochee City Council"},{"n":"Loubennie A. Williams","r":"Chattahoochee City Council"}]},{"m":"Greensboro","p":[{"n":"Brenda K. Martinez","r":"Greensboro City Council"},{"n":"Jacquelyn R. Barber","r":"Greensboro City Council"},{"n":"Justin Alday","r":"Greensboro City Council"},{"n":"Kimberly A. Boyer","r":"Greensboro City Council"},{"n":"Lamar Alday","r":"Mayor of Greensboro"},{"n":"Micah Nunamaker","r":"Greensboro City Council"}]},{"m":"Gretna","p":[{"n":"Anthony Baker","r":"Mayor of Gretna"},{"n":"Dexter Wright","r":"Gretna City Council"},{"n":"Evelyn Riley Goldwire","r":"Gretna City Council"},{"n":"Gary Russ-Sills","r":"Gretna City Council"},{"n":"James Payne","r":"Gretna City Council"}]},{"m":"Havana","p":[{"n":"Edward Bass","r":"Mayor of Havana"},{"n":"John Bryant","r":"Havana City Council"},{"n":"Landon Seymour","r":"Havana City Council"},{"n":"Lawrence Reed","r":"Havana City Council"},{"n":"Matthew Wesolowski","r":"Havana City Council"},{"n":"Penny Key","r":"Havana City Council"},{"n":"Tabatha Nelson","r":"Havana City Council"}]},{"m":"Midway","p":[{"n":"Braheem Russ","r":"Midway City Council"},{"n":"Charles Williams","r":"Midway City Council"},{"n":"Ella Parker Dickey","r":"Mayor of Midway"},{"n":"NanDrycka King Albert","r":"Midway City Council"},{"n":"Valerie Ford","r":"Midway City Council"}]},{"m":"Quincy","p":[{"n":"Beverly A. Nash","r":"Mayor of Quincy"},{"n":"Devonta Knight","r":"Quincy City Council"},{"n":"Lane Stephens","r":"Quincy City Council"},{"n":"Robin Wood","r":"Quincy City Council"},{"n":"Ronte R. Harris","r":"Quincy City Council"}]}],"slug":"gadsden"},"12041":{"county":[{"n":"Christie McElroy","r":"Gilchrist County School Board"},{"n":"Connie Sanchez","r":"Supervisor of Elections, Gilchrist County"},{"n":"Damon Leggett","r":"Property Appraiser, Gilchrist County"},{"n":"Dustin Deen Lancaster","r":"Gilchrist County School Board"},{"n":"Kenrick Thomas","r":"Commissioner, Gilchrist County"},{"n":"Michael McElroy","r":"Tax Collector, Gilchrist County"},{"n":"Michelle Walker-Crawford","r":"Gilchrist County School Board"},{"n":"Robert Schultz","r":"Sheriff, Gilchrist County"},{"n":"Ronald Smith","r":"Commissioner, Gilchrist County"},{"n":"Sharon Langford","r":"Commissioner, Gilchrist County"},{"n":"Susan P. Owens","r":"Gilchrist County School Board"},{"n":"Tammy Moore","r":"Gilchrist County School Board"},{"n":"Thomas Langford","r":"Commissioner, Gilchrist County"},{"n":"Todd Newton","r":"Clerk of Court, Gilchrist County"},{"n":"William Martin","r":"Commissioner, Gilchrist County"}],"munis":[{"m":"Bell","p":[{"n":"Chris Sandlin","r":"Bell City Council"},{"n":"Diana 'Katie' Lovett","r":"Bell City Council"},{"n":"Gary Blankenship","r":"Bell City Council"},{"n":"Michael Moore","r":"Bell City Council"},{"n":"Sandra Moore","r":"Mayor of Bell"}]},{"m":"Trenton","p":[{"n":"Cloud Haley","r":"Trenton City Council"},{"n":"Mary Love Davis","r":"Trenton City Council"},{"n":"Randy Rutter","r":"Trenton City Council"},{"n":"Robbi Coarsey","r":"Mayor of Trenton"},{"n":"Russel Williams","r":"Trenton City Council"}]}],"slug":"gilchrist"},"12043":{"county":[{"n":"Aletris Farnam","r":"Supervisor of Elections, Glades County"},{"n":"Crystal Drake","r":"Glades County School Board"},{"n":"David Hardin","r":"Sheriff, Glades County"},{"n":"Donna Storter Long","r":"Commissioner, Glades County"},{"n":"Gail Jones","r":"Tax Collector, Glades County"},{"n":"Hattie Taylor","r":"Commissioner, Glades County"},{"n":"Jean H. Prowant","r":"Glades County School Board"},{"n":"Jeffrey Patterson","r":"Commissioner, Glades County"},{"n":"Jerry Sapp","r":"Commissioner, Glades County"},{"n":"Kimberly Lynn Clement","r":"Glades County School Board"},{"n":"Larry Luckey, II","r":"Glades County School Board"},{"n":"Lorie Ward","r":"Property Appraiser, Glades County"},{"n":"Patricia B Pearce","r":"Glades County School Board"},{"n":"Tami Simmons","r":"Clerk of Court, Glades County"},{"n":"Timothy Stanley","r":"Commissioner, Glades County"},{"n":"Tony Whidden","r":"Commissioner, Glades County"}],"munis":[{"m":"Moore Haven","p":[{"n":"Alisha Beck","r":"Moore Haven City Council"},{"n":"Bradley Smith","r":"Moore Haven City Council"},{"n":"Marcus Decker","r":"Moore Haven City Council"},{"n":"RaShondra Croskey","r":"Moore Haven City Council"},{"n":"Wayne Browning","r":"Mayor of Moore Haven"}]}],"slug":"glades"},"12045":{"county":[{"n":"Ashley Forehand","r":"Tax Collector, Gulf County"},{"n":"Brooke Wooten","r":"Gulf County School Board"},{"n":"David Rich","r":"Commissioner, Gulf County"},{"n":"Denny Mcglon","r":"Gulf County School Board"},{"n":"Equillar \"Gal\" Gainer","r":"Gulf County School Board"},{"n":"James \"Matt\" Terry","r":"Gulf County School Board"},{"n":"John Hanlon","r":"Supervisor of Elections, Gulf County"},{"n":"Mike Harrison","r":"Sheriff, Gulf County"},{"n":"Mitch Burke","r":"Property Appraiser, Gulf County"},{"n":"Patrick Farrell","r":"Commissioner, Gulf County"},{"n":"Phil McCroan","r":"Commissioner, Gulf County"},{"n":"Rebecca Norris","r":"Clerk of Court, Gulf County"},{"n":"Rhonda Pierce","r":"Supervisor of Elections, Gulf County"},{"n":"Ruby Knox","r":"Gulf County School Board"},{"n":"Sandy Quinn","r":"Commissioner, Gulf County"},{"n":"Shirley Jenkins","r":"Tax Collector, Gulf County"}],"munis":[{"m":"Port St. Joe","p":[{"n":"Brett Lowry","r":"Port St. Joe City Council"},{"n":"Scott Hoffman","r":"Port St. Joe City Council"},{"n":"Steve P. Kerigan","r":"Port St. Joe City Council"},{"n":"William R. Buzzett","r":"Mayor of Port St. Joe"}]},{"m":"Wewahitchka","p":[{"n":"Brian Cox","r":"Wewahitchka City Council"},{"n":"John Paul","r":"Wewahitchka City Council"},{"n":"Phillip Gaskin","r":"Mayor of Wewahitchka"},{"n":"Ralph M. Fisher","r":"Wewahitchka City Council"},{"n":"Robert C. Pettis","r":"Wewahitchka City Council"}]}],"slug":"gulf"},"12047":{"county":[{"n":"Brian Creech","r":"Sheriff, Hamilton County"},{"n":"Cheryl Deas McCall","r":"Hamilton County School Board"},{"n":"Clayton Goolsby","r":"Property Appraiser, Hamilton County"},{"n":"David Goolsby","r":"Property Appraiser, Hamilton County"},{"n":"Gary Godwin","r":"Hamilton County School Board"},{"n":"J. Harrell Reid","r":"Sheriff, Hamilton County"},{"n":"James Murphy","r":"Commissioner, Hamilton County"},{"n":"Johnny Bullard","r":"Hamilton County School Board"},{"n":"Laura Hutto","r":"Supervisor of Elections, Hamilton County"},{"n":"Leslie Jones","r":"Tax Collector, Hamilton County"},{"n":"Mary Sue Adams","r":"Tax Collector, Hamilton County"},{"n":"Richard McCoy","r":"Commissioner, Hamilton County"},{"n":"Robby Roberson","r":"Commissioner, Hamilton County"},{"n":"Robert Brown","r":"Commissioner, Hamilton County"},{"n":"Sammy McCoy","r":"Hamilton County School Board"},{"n":"Saul Speights","r":"Hamilton County School Board"},{"n":"W. Greg Godwin","r":"Clerk of Court, Hamilton County"}],"munis":[{"m":"Jasper","p":[{"n":"Carlton G. Selph","r":"Jasper City Council"},{"n":"Jay Daigle","r":"Jasper City Council"},{"n":"Jhelecia Hawkins","r":"Mayor of Jasper"},{"n":"Vanessa Smith","r":"Jasper City Council"},{"n":"William S. Mitchell","r":"Jasper City Council"}]},{"m":"Jennings","p":[{"n":"Antonette Crumedy","r":"Jennings City Council"},{"n":"Charles Barrett","r":"Mayor of Jennings"},{"n":"Cynthia Daniels","r":"Jennings City Council"},{"n":"John Prine","r":"Jennings City Council"},{"n":"Philip Jackson","r":"Jennings City Council"}]},{"m":"White Springs","p":[{"n":"Cheryl McCall","r":"White Springs City Council"},{"n":"Nicole Williams","r":"White Springs City Council"},{"n":"Nikki Williams","r":"White Springs City Council"},{"n":"Robert Gamsby","r":"White Springs City Council"},{"n":"Tonja R. Brown","r":"Mayor of White Springs"}]}],"slug":"hamilton"},"12049":{"county":[{"n":"Alisa Lee","r":"Tax Collector, Hardee County"},{"n":"Andrew Brian Smith","r":"Hardee County School Board"},{"n":"April Lambert","r":"Tax Collector, Hardee County"},{"n":"Arnold Lanier","r":"Sheriff, Hardee County"},{"n":"Claire Cornell","r":"Hardee County School Board"},{"n":"Diane Smith","r":"Supervisor of Elections, Hardee County"},{"n":"Judith George","r":"Commissioner, Hardee County"},{"n":"Kathy Crawford","r":"Property Appraiser, Hardee County"},{"n":"Marie Albritton Dasher","r":"Hardee County School Board"},{"n":"Mark Edward Gilliard","r":"Hardee County School Board"},{"n":"Noey Flores","r":"Commissioner, Hardee County"},{"n":"Renee Wyatt","r":"Commissioner, Hardee County"},{"n":"Russell Melendy","r":"Commissioner, Hardee County"},{"n":"Stacy Denise Sharp","r":"Hardee County School Board"},{"n":"Victoria Rogers","r":"Clerk of Court, Hardee County"},{"n":"Vincent Crawford","r":"Sheriff, Hardee County"}],"munis":[{"m":"Bowling Green","p":[{"n":"David Durastanti","r":"Bowling Green City Council"},{"n":"Francisco Arreola","r":"Bowling Green City Council"},{"n":"Kent Peterson","r":"Bowling Green City Council"},{"n":"N'Kosi L. Jones","r":"Bowling Green City Council"},{"n":"Sam Fite","r":"Mayor of Bowling Green"}]},{"m":"Wauchula","p":[{"n":"Anne Miller","r":"Wauchula City Council"},{"n":"Gary D. Smith","r":"Wauchula City Council"},{"n":"Richard Keith Nadaskay","r":"Mayor of Wauchula"},{"n":"Russell G. Smith","r":"Wauchula City Council"},{"n":"Sherri Albritton","r":"Wauchula City Council"}]},{"m":"Zolfo Springs","p":[{"n":"Didi White","r":"Zolfo Springs City Council"},{"n":"Howard E. Schofield","r":"Zolfo Springs City Council"},{"n":"Martina O. Zuniga","r":"Zolfo Springs City Council"},{"n":"Rodney A. Cannon","r":"Mayor of Zolfo Springs"},{"n":"Sara Ann Schofield","r":"Zolfo Springs City Council"}]}],"slug":"hardee"},"12051":{"county":[{"n":"Amanda S. Nelson","r":"Hendry County School Board"},{"n":"Amy Collins","r":"Tax Collector, Hendry County"},{"n":"Brenda Hoots","r":"Supervisor of Elections, Hendry County"},{"n":"Dena Pittman","r":"Property Appraiser, Hendry County"},{"n":"Dwayne E. Brown","r":"Hendry County School Board"},{"n":"Emma Byrd","r":"Commissioner, Hendry County"},{"n":"Emory Howard","r":"Commissioner, Hendry County"},{"n":"Jon Basquin","r":"Hendry County School Board"},{"n":"Karson Turner","r":"Commissioner, Hendry County"},{"n":"Kimberley Barrineau","r":"Clerk of Court, Hendry County"},{"n":"Michael Atkinson","r":"Commissioner, Hendry County"},{"n":"Mitch Wills","r":"Commissioner, Hendry County"},{"n":"Patrick Langford","r":"Tax Collector, Hendry County"},{"n":"Paul Samerdyke","r":"Hendry County School Board"},{"n":"Ramon Iglesias","r":"Commissioner, Hendry County"},{"n":"Sherry Taylor","r":"Supervisor of Elections, Hendry County"},{"n":"Stephanie Busin","r":"Hendry County School Board"},{"n":"Steve Whidden","r":"Sheriff, Hendry County"}],"munis":[{"m":"Clewiston","p":[{"n":"Barbara Edmonds","r":"Clewiston City Council"},{"n":"Hillary Hyslope","r":"Clewiston City Council"},{"n":"James L. Pittman","r":"Mayor of Clewiston"},{"n":"Jason Williams","r":"Clewiston City Council"},{"n":"Mali Gardner","r":"Clewiston City Council"}]},{"m":"LaBelle","p":[{"n":"Barbara Spratt","r":"LaBelle City Council"},{"n":"Hugo Vargas","r":"LaBelle City Council"},{"n":"Jacqueline Ratica","r":"LaBelle City Council"},{"n":"Julie C. Wilkins","r":"Mayor of LaBelle"},{"n":"Kevin Holland","r":"LaBelle City Council"}]}],"slug":"hendry"},"12053":{"county":[{"n":"Alvin Nienhuis","r":"Sheriff, Hernando County"},{"n":"Amy Blackburn","r":"Tax Collector, Hernando County"},{"n":"Brian Hawkins","r":"Commissioner, Hernando County"},{"n":"Denise LaVancher","r":"Supervisor of Elections, Hernando County"},{"n":"Douglas Chorvat","r":"Clerk of Court, Hernando County"},{"n":"Elizabeth Narverud","r":"Commissioner, Hernando County"},{"n":"John Allocco","r":"Commissioner, Hernando County"},{"n":"John Emerson","r":"Property Appraiser, Hernando County"},{"n":"John Mitten","r":"Commissioner, Hernando County"},{"n":"Kayce Hawkins","r":"Hernando County School Board"},{"n":"Mark C. Johnson","r":"Hernando County School Board"},{"n":"Michelle Bonczek","r":"Hernando County School Board"},{"n":"Randolph Mazourek","r":"Property Appraiser, Hernando County"},{"n":"Sally Daniel","r":"Tax Collector, Hernando County"},{"n":"Shannon Rodriguez","r":"Hernando County School Board"},{"n":"Shirley Anderson","r":"Supervisor of Elections, Hernando County"},{"n":"Steven Champion","r":"Commissioner, Hernando County"},{"n":"Susan D. Duval","r":"Hernando County School Board"}],"munis":[{"m":"Brooksville","p":[{"n":"Betty Erhard","r":"Brooksville City Council"},{"n":"Christa Tanner","r":"Mayor of Brooksville"},{"n":"J.W. McKethan","r":"Brooksville City Council"},{"n":"Louis Hallal","r":"Brooksville City Council"},{"n":"Thomas Bronson","r":"Brooksville City Council"}]}],"slug":"hernando"},"12055":{"county":[{"n":"Arlene Tuck","r":"Commissioner, Highlands County"},{"n":"C. Raymond McIntyre","r":"Property Appraiser, Highlands County"},{"n":"Chris Campbell","r":"Commissioner, Highlands County"},{"n":"Don Elwell","r":"Commissioner, Highlands County"},{"n":"Donna Howerton","r":"Highlands County School Board"},{"n":"Eric Zwayer","r":"Tax Collector, Highlands County"},{"n":"Isaac Durrance","r":"Highlands County School Board"},{"n":"Jerome Kaszubowski","r":"Clerk of Court, Highlands County"},{"n":"Karen Healy","r":"Supervisor of Elections, Highlands County"},{"n":"Kathleen Rapp","r":"Commissioner, Highlands County"},{"n":"Kevin Roberts","r":"Commissioner, Highlands County"},{"n":"Mason Whidden","r":"Highlands County School Board"},{"n":"Nicole Radonski","r":"Highlands County School Board"},{"n":"Paul Blackman","r":"Sheriff, Highlands County"},{"n":"Reese Martin","r":"Highlands County School Board"},{"n":"Scott Kirouac","r":"Commissioner, Highlands County"}],"munis":[{"m":"Avon Park","p":[{"n":"Berniece Taylor","r":"Avon Park City Council"},{"n":"Brittany McGuire","r":"Avon Park City Council"},{"n":"Garrett Anderson","r":"Mayor of Avon Park"},{"n":"Jim Barnard","r":"Avon Park City Council"},{"n":"Michelle Mercure","r":"Avon Park City Council"}]},{"m":"Lake Placid","p":[{"n":"Colleen Charles","r":"Mayor of Lake Placid"},{"n":"Debra Worley","r":"Lake Placid City Council"},{"n":"Joy Eberhardt","r":"Lake Placid City Council"},{"n":"Nell Frewin-Hays","r":"Lake Placid City Council"}]},{"m":"Sebring","p":[{"n":"David Leidel","r":"Sebring City Council"},{"n":"Harrison Havery","r":"Sebring City Council"},{"n":"John C. Shoop","r":"Mayor of Sebring"},{"n":"Josh Stewart","r":"Sebring City Council"},{"n":"Rebekah Kogelschatz","r":"Sebring City Council"},{"n":"Roland Bishop","r":"Sebring City Council"}]}],"slug":"highlands"},"12057":{"county":[{"n":"Bob Henriquez","r":"Property Appraiser, Hillsborough County"},{"n":"Chad Chronister","r":"Sheriff, Hillsborough County"},{"n":"Christine Miller","r":"Commissioner, Hillsborough County"},{"n":"Cindy Stuart","r":"Clerk of Court, Hillsborough County"},{"n":"Craig Latimer","r":"Supervisor of Elections, Hillsborough County"},{"n":"Donna Cameron-Cepeda","r":"Commissioner, Hillsborough County"},{"n":"Doug Belden","r":"Tax Collector, Hillsborough County"},{"n":"Gwen Myers","r":"Commissioner, Hillsborough County"},{"n":"Harry Cohen","r":"Commissioner, Hillsborough County"},{"n":"Henry Washington","r":"Hillsborough County School Board"},{"n":"Jessica Vaughn","r":"Hillsborough County School Board"},{"n":"Joshua Wostal","r":"Commissioner, Hillsborough County"},{"n":"Ken Hagan","r":"Commissioner, Hillsborough County"},{"n":"Lynn Gray","r":"Hillsborough County School Board"},{"n":"Nadia Combs","r":"Hillsborough County School Board"},{"n":"Nancy Millan","r":"Tax Collector, Hillsborough County"},{"n":"Patricia \"Patti\" Rendon","r":"Hillsborough County School Board"},{"n":"Patricia Kemp","r":"Commissioner, Hillsborough County"},{"n":"Stacy Hahn","r":"Hillsborough County School Board"}],"munis":[{"m":"Plant City","p":[{"n":"Jason Jones","r":"Plant City City Council"},{"n":"John L. Haney","r":"Plant City City Council"},{"n":"Karen Kerr","r":"Plant City City Council"},{"n":"Mary Thomas Mathis","r":"Plant City City Council"},{"n":"Nathan A. Kilton","r":"Mayor of Plant City"}]},{"m":"Tampa","p":[{"n":"Alan Clendenin","r":"Tampa City Council - At-Large Chairman"},{"n":"Bill Carlson","r":"Tampa City Council"},{"n":"Bill Carlson","r":"Tampa City Council - District 4"},{"n":"Charlie Miranda","r":"Tampa City Council"},{"n":"Charlie Miranda","r":"Tampa City Council - District 6"},{"n":"Guido Maniscalco","r":"Tampa City Council"},{"n":"Guido Maniscalco","r":"Tampa City Council - At-Large"},{"n":"Gwendolyn Henderson","r":"Tampa City Council"},{"n":"Jane Castor","r":"Mayor of Tampa"},{"n":"Luis E. Viera","r":"Tampa City Council"},{"n":"Luis Viera","r":"Tampa City Council - District 7"},{"n":"Lynn Hurtak","r":"Tampa City Council"},{"n":"Lynn Hurtak","r":"Tampa City Council - At-Large"},{"n":"Naya Young","r":"Tampa City Council - District 5"}]},{"m":"Temple Terrace","p":[{"n":"Alison Fernandez","r":"Temple Terrace City Council"},{"n":"Andrew R. Ross","r":"Mayor of Temple Terrace"},{"n":"Erik Kravets","r":"Temple Terrace City Council"},{"n":"Gil Schisler","r":"Temple Terrace City Council"},{"n":"James Chambers","r":"Temple Terrace City Council"}]}],"slug":"hillsborough"},"12059":{"county":[{"n":"Brandon Newsom","r":"Commissioner, Holmes County"},{"n":"Bryan Bell","r":"Property Appraiser, Holmes County"},{"n":"Charley Wilson","r":"Holmes County School Board"},{"n":"Clint Erickson","r":"Commissioner, Holmes County"},{"n":"Derek Worley","r":"Holmes County School Board"},{"n":"Earl Stafford","r":"Commissioner, Holmes County"},{"n":"Harry Bell","r":"Tax Collector, Holmes County"},{"n":"Howard Williams","r":"Supervisor of Elections, Holmes County"},{"n":"Jeff Good","r":"Commissioner, Holmes County"},{"n":"John Tate","r":"Sheriff, Holmes County"},{"n":"Leesa Manning Lee","r":"Holmes County School Board"},{"n":"Natalie Motley Miller","r":"Holmes County School Board"},{"n":"Phillip Music","r":"Commissioner, Holmes County"},{"n":"Samuel Bailey","r":"Clerk of Court, Holmes County"},{"n":"Therisa Meadows","r":"Supervisor of Elections, Holmes County"},{"n":"Wilburn Baker","r":"Holmes County School Board"}],"munis":[{"m":"Bonifay","p":[{"n":"Eddie Dixon","r":"Bonifay City Council"},{"n":"James W. Sellers","r":"Bonifay City Council"},{"n":"Larry Cook","r":"Mayor of Bonifay"},{"n":"Rick Crews","r":"Bonifay City Council"},{"n":"Shelley Carroll","r":"Bonifay City Council"}]},{"m":"Esto","p":[{"n":"Donna Davis","r":"Esto City Council"},{"n":"Gregg Wells","r":"Esto City Council"},{"n":"Joshua Davenport","r":"Esto City Council"}]},{"m":"Noma","p":[{"n":"Betty Forthman","r":"Noma City Council"},{"n":"Daniel Arrant","r":"Noma City Council"},{"n":"Eric Hudson","r":"Noma City Council"},{"n":"Literman Joseph","r":"Noma City Council"}]},{"m":"Ponce De Leon","p":[{"n":"Ashley Johnson","r":"Ponce De Leon City Council"},{"n":"Johnny Sutton","r":"Ponce De Leon City Council"},{"n":"Kimberly Mason","r":"Ponce De Leon City Council"},{"n":"Laura Johnson","r":"Ponce De Leon City Council"},{"n":"Shane Busby","r":"Mayor of Ponce De Leon"},{"n":"William Glenister","r":"Ponce De Leon City Council"}]},{"m":"Westville","p":[{"n":"BJ Taunton","r":"Westville City Council"},{"n":"Brittney Simmons","r":"Westville City Council"},{"n":"Samanatha Webster","r":"Westville City Council"},{"n":"Stephen L. Herrington","r":"Mayor of Westville"},{"n":"Susan Bergeron","r":"Westville City Council"}]}],"slug":"holmes"},"12061":{"county":[{"n":"Carole Jean Jordan","r":"Tax Collector, Indian River County"},{"n":"David Dyer","r":"Indian River County School Board"},{"n":"Deryl Loar","r":"Commissioner, Indian River County"},{"n":"Eric Flowers","r":"Sheriff, Indian River County"},{"n":"Gene Posca","r":"Indian River County School Board"},{"n":"Joseph Earman","r":"Commissioner, Indian River County"},{"n":"Joseph Flescher","r":"Commissioner, Indian River County"},{"n":"Laura Moss","r":"Commissioner, Indian River County"},{"n":"Leslie Swan","r":"Supervisor of Elections, Indian River County"},{"n":"Peggy Jones","r":"Indian River County School Board"},{"n":"Ryan Butler","r":"Clerk of Court, Indian River County"},{"n":"Susan Adams","r":"Commissioner, Indian River County"},{"n":"Teri Lee Barenborg","r":"Indian River County School Board"},{"n":"Wesley Davis","r":"Property Appraiser, Indian River County"}],"munis":[{"m":"Fellsmere","p":[{"n":"Fernando Herrera","r":"Fellsmere City Council"},{"n":"Inocensia Hernandez","r":"Fellsmere City Council"},{"n":"Jessica Salgado","r":"Mayor of Fellsmere"},{"n":"Shayla Macias","r":"Fellsmere City Council"}]},{"m":"Indian River Shores","p":[{"n":"Brian T. Foley","r":"Mayor of Indian River Shores"},{"n":"James Altieri","r":"Indian River Shores City Council"},{"n":"Jesse L. 'Sam' Carroll","r":"Indian River Shores City Council"},{"n":"Peter A. Tedesko","r":"Indian River Shores City Council"},{"n":"Robert 'Bob' F. Auwaerter","r":"Indian River Shores City Council"}]},{"m":"Orchid","p":[{"n":"Daniel McEvoy","r":"Orchid City Council"},{"n":"James Raphalian","r":"Orchid City Council"},{"n":"John Heanue","r":"Orchid City Council"},{"n":"Paul Knapp","r":"Orchid City Council"},{"n":"Robert J. Gibbons","r":"Mayor of Orchid"}]},{"m":"Sebastian","p":[{"n":"Bob McPartlan","r":"Sebastian City Council"},{"n":"Christopher R. Nunn","r":"Sebastian City Council"},{"n":"Ed Dodd","r":"Sebastian City Council"},{"n":"Frederick Jones","r":"Mayor of Sebastian"},{"n":"Sherrie Matthews","r":"Sebastian City Council"}]},{"m":"Vero Beach","p":[{"n":"Aaron Vos","r":"Vero Beach City Council"},{"n":"John Cotugno","r":"Mayor of Vero Beach"},{"n":"John M. Carroll","r":"Vero Beach City Council"},{"n":"Linda Moore","r":"Vero Beach City Council"},{"n":"Taylor Dingle","r":"Vero Beach City Council"}]}],"slug":"indian-river"},"12063":{"county":[{"n":"Alex McKinnie","r":"Commissioner, Jackson County"},{"n":"CHRISTOPHER M JOHNSON","r":"Jackson County School Board"},{"n":"Carol Dunaway","r":"Supervisor of Elections, Jackson County"},{"n":"Chephus D. Granberry","r":"Jackson County School Board"},{"n":"Clayton Rooks","r":"Clerk of Court, Jackson County"},{"n":"Donald Edenfield","r":"Sheriff, Jackson County"},{"n":"Edward Crutchfield","r":"Commissioner, Jackson County"},{"n":"James Peacock","r":"Commissioner, Jackson County"},{"n":"Jamey Westbrook","r":"Commissioner, Jackson County"},{"n":"Mary Murdock","r":"Tax Collector, Jackson County"},{"n":"Michael \"M.J.\" Jackson","r":"Jackson County School Board"},{"n":"Paul Donofro","r":"Commissioner, Jackson County"},{"n":"Rebecca Morris-Haid","r":"Property Appraiser, Jackson County"},{"n":"Rex Torbett","r":"Jackson County School Board"},{"n":"Tony Pumphrey","r":"Jackson County School Board"},{"n":"Willie Spires","r":"Commissioner, Jackson County"}],"munis":[{"m":"Alford","p":[{"n":"Brad Griffin","r":"Alford City Council"},{"n":"Daniel Warren","r":"Alford City Council"},{"n":"George Gay","r":"Mayor of Alford"},{"n":"Somer Holland","r":"Alford City Council"},{"n":"Stephanie Jenkins","r":"Alford City Council"}]},{"m":"Bascom","p":[{"n":"Betty James","r":"Bascom City Council"},{"n":"Billy James","r":"Mayor of Bascom"},{"n":"Gernard Russ","r":"Bascom City Council"},{"n":"Tony Pelham","r":"Bascom City Council"}]},{"m":"Campbellton","p":[{"n":"Conswellor White","r":"Campbellton City Council"},{"n":"Danny Taylor","r":"Campbellton City Council"},{"n":"Douglas Cotton","r":"Mayor of Campbellton"},{"n":"Kenneth Fey","r":"Campbellton City Council"},{"n":"Pamela Williams","r":"Campbellton City Council"}]},{"m":"Cottondale","p":[{"n":"Carroll Benefield","r":"Cottondale City Council"},{"n":"Dennis Sloan","r":"Cottondale City Council"},{"n":"Jerrard Deese","r":"Cottondale City Council"},{"n":"Thomas T. Daniel","r":"Cottondale City Council"}]},{"m":"Graceville","p":[{"n":"Arthur P.W. Obar","r":"Mayor of Graceville"},{"n":"Curtis Pinkard","r":"Graceville City Council"},{"n":"John McClendon","r":"Graceville City Council"},{"n":"Marshall Davis","r":"Graceville City Council"},{"n":"Walter Olds","r":"Graceville City Council"}]},{"m":"Grand Ridge","p":[{"n":"Catelyn Sprague","r":"Grand Ridge City Council"},{"n":"Chris Harrell","r":"Mayor of Grand Ridge"},{"n":"Chris Wright","r":"Grand Ridge City Council"},{"n":"Kim Applewhite","r":"Grand Ridge City Council"},{"n":"Tim Baggett","r":"Grand Ridge City Council"}]},{"m":"Greenwood","p":[{"n":"Ben Rogers","r":"Greenwood City Council"},{"n":"Bryan Johnson","r":"Mayor of Greenwood"},{"n":"Charles Sanders","r":"Greenwood City Council"},{"n":"Jacky Ditty","r":"Greenwood City Council"}]},{"m":"Jacob City","p":[{"n":"Donna Pittman","r":"Jacob City City Council"},{"n":"Ernest Hall","r":"Jacob City City Council"},{"n":"Felix George","r":"Mayor of Jacob City"},{"n":"Jonitha Williams","r":"Jacob City City Council"},{"n":"Josephine Henderson","r":"Jacob City City Council"}]},{"m":"Malone","p":[{"n":"Billy Smith","r":"Malone City Council"},{"n":"Brandon Watford","r":"Mayor of Malone"},{"n":"Florence Jackson","r":"Malone City Council"},{"n":"Sallie Gibson","r":"Malone City Council"},{"n":"Terry Taylor","r":"Malone City Council"}]},{"m":"Marianna","p":[{"n":"Allen Ward","r":"Marianna City Council"},{"n":"Kenneth Hamilton","r":"Marianna City Council"},{"n":"Rick Pettis","r":"Marianna City Council"},{"n":"Rico Williams","r":"Marianna City Council"},{"n":"Travis Ephriam","r":"Mayor of Marianna"}]},{"m":"Sneads","p":[{"n":"Kay Neel","r":"Sneads City Council"},{"n":"Mike Weeks","r":"Sneads City Council"},{"n":"Timothy Perry","r":"Sneads City Council"}]}],"slug":"jackson"},"12065":{"county":[{"n":"\"Joy Beth\" Frisby","r":"Jefferson County School Board"},{"n":"Angela Gray","r":"Property Appraiser, Jefferson County"},{"n":"Benjamin White","r":"Commissioner, Jefferson County"},{"n":"Bill Brumfield","r":"Jefferson County School Board"},{"n":"Brenda Wirick","r":"Jefferson County School Board"},{"n":"Cecil Hightower","r":"Clerk of Court, Jefferson County"},{"n":"Chris Tuten","r":"Commissioner, Jefferson County"},{"n":"Gene Hall","r":"Commissioner, Jefferson County"},{"n":"J.T. Surles","r":"Commissioner, Jefferson County"},{"n":"Jason Welty","r":"Clerk of Court, Jefferson County"},{"n":"Lois Howell-Hunter","r":"Tax Collector, Jefferson County"},{"n":"Mac McNeill","r":"Sheriff, Jefferson County"},{"n":"Mags Flynt","r":"Jefferson County School Board"},{"n":"Michelle Milligan","r":"Supervisor of Elections, Jefferson County"},{"n":"Shanna Boutwell","r":"Tax Collector, Jefferson County"},{"n":"Tyler McNeill","r":"Supervisor of Elections, Jefferson County"},{"n":"Willie Ann Dickey","r":"Jefferson County School Board"}],"munis":[{"m":"Monticello","p":[{"n":"Brian Bachman","r":"Monticello City Council"},{"n":"George Evans","r":"Monticello City Council"},{"n":"Gloria Cox","r":"Monticello City Council"},{"n":"John S. Jones","r":"Mayor of Monticello"}]}],"slug":"jefferson"},"12067":{"county":[{"n":"Alicia Walker","r":"Commissioner, Lafayette County"},{"n":"Anthony Adams","r":"Commissioner, Lafayette County"},{"n":"Brian Lamb","r":"Sheriff, Lafayette County"},{"n":"Charles Hewett","r":"Tax Collector, Lafayette County"},{"n":"Darren Driver","r":"Lafayette County School Board"},{"n":"Earnest Jones","r":"Commissioner, Lafayette County"},{"n":"Jeff Walker","r":"Lafayette County School Board"},{"n":"Kimberly Adams","r":"Lafayette County School Board"},{"n":"Lance Lamb","r":"Commissioner, Lafayette County"},{"n":"Marion McCray","r":"Lafayette County School Board"},{"n":"Mason Byrd","r":"Commissioner, Lafayette County"},{"n":"Steve Land","r":"Clerk of Court, Lafayette County"},{"n":"Taylor McGrew","r":"Lafayette County School Board"},{"n":"Timothy Walker","r":"Property Appraiser, Lafayette County"},{"n":"Travis Hart","r":"Supervisor of Elections, Lafayette County"},{"n":"Wayne McCray","r":"Property Appraiser, Lafayette County"}],"munis":[{"m":"Mayo","p":[{"n":"Ann Murphy","r":"Mayor of Mayo"},{"n":"Jessica Lawson","r":"Mayo City Council"},{"n":"Mamie A. Thomas","r":"Mayo City Council"},{"n":"Virginia McCray","r":"Mayo City Council"},{"n":"Wayne Hamlin","r":"Mayo City Council"}]}],"slug":"lafayette"},"12069":{"county":[{"n":"Alan Hays","r":"Supervisor of Elections, Lake County"},{"n":"Bill Mathias","r":"Lake County School Board"},{"n":"Carey Baker","r":"Property Appraiser, Lake County"},{"n":"David Jordan","r":"Tax Collector, Lake County"},{"n":"Gary Cooney","r":"Clerk of Court, Lake County"},{"n":"Kirby Smith","r":"Commissioner, Lake County"},{"n":"Leslie Campione","r":"Commissioner, Lake County"},{"n":"Marc A. Dodd","r":"Lake County School Board"},{"n":"Mark Jordan","r":"Property Appraiser, Lake County"},{"n":"Mollie R. Cunningham","r":"Lake County School Board"},{"n":"Peyton Grinnell","r":"Sheriff, Lake County"},{"n":"Sean Parks","r":"Commissioner, Lake County"},{"n":"Stephanie Ann Luke","r":"Lake County School Board"},{"n":"Tyler Brandeburg","r":"Lake County School Board"}],"munis":[{"m":"Astatula","p":[{"n":"Cheryl Marinelli","r":"Astatula City Council"},{"n":"Kay MacQueen","r":"Astatula City Council"},{"n":"Kim Hanawalt","r":"Astatula City Council"},{"n":"Susan Richert","r":"Astatula City Council"},{"n":"Zane Teeters","r":"Mayor of Astatula"}]},{"m":"Clermont","p":[{"n":"Alison Strange","r":"Clermont City Council"},{"n":"Bryan L. Bain","r":"Clermont City Council"},{"n":"Chandra L. Myers","r":"Clermont City Council"},{"n":"Tim Murry","r":"Mayor of Clermont"},{"n":"William Petersen","r":"Clermont City Council"}]},{"m":"Eustis","p":[{"n":"Emily A. Lee","r":"Mayor of Eustis"},{"n":"Gary Ashcraft","r":"Eustis City Council"},{"n":"George Asbate","r":"Eustis City Council"},{"n":"Michael Holland","r":"Eustis City Council"},{"n":"Willie Hawkins","r":"Eustis City Council"}]},{"m":"Fruitland Park","p":[{"n":"Christopher Cheshire","r":"Mayor of Fruitland Park"},{"n":"Christopher J. Bell","r":"Fruitland Park City Council"},{"n":"John Mobilian","r":"Fruitland Park City Council"},{"n":"Joseph Cosenza","r":"Fruitland Park City Council"},{"n":"Patrick DeGrave","r":"Fruitland Park City Council"}]},{"m":"Groveland","p":[{"n":"Amy Jo Carroll","r":"Groveland City Council"},{"n":"Barbara Gaines","r":"Groveland City Council"},{"n":"Keith Keogh","r":"Mayor of Groveland"},{"n":"Michael Jaycox","r":"Groveland City Council"},{"n":"Stephen Shylkohski","r":"Groveland City Council"}]},{"m":"Howey-in-the-Hills","p":[{"n":"David Miles","r":"Howey-in-the-Hills City Council"},{"n":"Graham Wells","r":"Mayor of Howey-in-the-Hills"},{"n":"Jonathan Arnold","r":"Howey-in-the-Hills City Council"},{"n":"Reneé Lannaman","r":"Howey-in-the-Hills City Council"},{"n":"Timothy Everline","r":"Howey-in-the-Hills City Council"}]},{"m":"Lady Lake","p":[{"n":"Ed Freeman","r":"Mayor of Lady Lake"},{"n":"Ed Regan","r":"Lady Lake City Council"},{"n":"John Gourlie","r":"Lady Lake City Council"},{"n":"Mike Sage","r":"Lady Lake City Council"},{"n":"Treva Roberts","r":"Lady Lake City Council"}]},{"m":"Leesburg","p":[{"n":"Alan Reisman","r":"Leesburg City Council"},{"n":"Allyson Berry","r":"Mayor of Leesburg"},{"n":"Jay Connell","r":"Leesburg City Council"},{"n":"Jimmy Burry","r":"Leesburg City Council"},{"n":"Michael Pederson","r":"Leesburg City Council"}]},{"m":"Mascotte","p":[{"n":"Jessica Bruno","r":"Mascotte City Council"},{"n":"Meghan DeSoto","r":"Mascotte City Council"},{"n":"Randy Brasher","r":"Mascotte City Council"},{"n":"Robin Hughes","r":"Mascotte City Council"},{"n":"Steven A. Sheffield","r":"Mayor of Mascotte"}]},{"m":"Minneola","p":[{"n":"Debbie Flinn","r":"Minneola City Council"},{"n":"Erick Hernandez","r":"Minneola City Council"},{"n":"Joseph Saunders","r":"Minneola City Council"},{"n":"Pam Serviss","r":"Minneola City Council"},{"n":"Pat Kelley","r":"Mayor of Minneola"}]},{"m":"Montverde","p":[{"n":"Bryan Rubio","r":"Montverde City Council"},{"n":"Grant Roberts","r":"Montverde City Council"},{"n":"Joe Morganelli","r":"Montverde City Council"},{"n":"Joe Wynkoop","r":"Mayor of Montverde"}]},{"m":"Mount Dora","p":[{"n":"Cal Rolfson","r":"Mount Dora City Council"},{"n":"Dennis Dawson","r":"Mount Dora City Council"},{"n":"Doug Bryant","r":"Mount Dora City Council"},{"n":"James L. Homich","r":"Mayor of Mount Dora"},{"n":"John Cataldo","r":"Mount Dora City Council"},{"n":"Marc Crail","r":"Mount Dora City Council"},{"n":"Nate Walker","r":"Mount Dora City Council"}]},{"m":"Tavares","p":[{"n":"Bob Grenier","r":"Tavares City Council"},{"n":"Doug Keown","r":"Tavares City Council"},{"n":"Lori Pfister","r":"Mayor of Tavares"},{"n":"Sandy Gamble","r":"Tavares City Council"},{"n":"Walter B. Price","r":"Tavares City Council"}]},{"m":"Umatilla","p":[{"n":"Bear Crockett","r":"Umatilla City Council"},{"n":"Chris Creech","r":"Mayor of Umatilla"},{"n":"Fred Fetterolf","r":"Umatilla City Council"},{"n":"Katherine L. Adams","r":"Umatilla City Council"}]}],"slug":"lake"},"12071":{"county":[{"n":"Armor Persons","r":"Lee County School Board"},{"n":"Bill Ribble","r":"Lee County School Board"},{"n":"Brian Hamman","r":"Commissioner, Lee County"},{"n":"Carmine Marceno","r":"Sheriff, Lee County"},{"n":"Cecil Pendergrass","r":"Commissioner, Lee County"},{"n":"David Mulicka","r":"Commissioner, Lee County"},{"n":"Debbie Jordan","r":"Lee County School Board"},{"n":"Jada Langford Fleming","r":"Lee County School Board"},{"n":"Kenneth Wilkinson","r":"Property Appraiser, Lee County"},{"n":"Kevin Karnes","r":"Clerk of Court, Lee County"},{"n":"Kevin Ruane","r":"Commissioner, Lee County"},{"n":"Larry Hart","r":"Tax Collector, Lee County"},{"n":"Matt Caldwell","r":"Property Appraiser, Lee County"},{"n":"Melisa W Giovannelli","r":"Lee County School Board"},{"n":"Michael Greenwell","r":"Commissioner, Lee County"},{"n":"Noelle Branning","r":"Tax Collector, Lee County"},{"n":"Raymond Sandelli","r":"Commissioner, Lee County"},{"n":"Sam Fisher","r":"Lee County School Board"},{"n":"Tommy Doyle","r":"Supervisor of Elections, Lee County"},{"n":"Vanessa Chaviano","r":"Lee County School Board"}],"munis":[{"m":"Bonita Springs","p":[{"n":"Chris Corrie","r":"Bonita Springs City Council"},{"n":"Jamie Bogacz","r":"Bonita Springs City Council"},{"n":"Jesse Purdon","r":"Bonita Springs City Council"},{"n":"Jim Fitzpatrick","r":"Bonita Springs City Council"},{"n":"Laura Carr","r":"Bonita Springs City Council"},{"n":"Mike Gibson","r":"Mayor of Bonita Springs"},{"n":"Nigel P. Fullick","r":"Bonita Springs City Council"}]},{"m":"Cape Coral","p":[{"n":"Bill Steinke","r":"Cape Coral City Council"},{"n":"Derrick L. Donnell","r":"Cape Coral City Council"},{"n":"Jennifer Nelson-Lastra","r":"Cape Coral City Council"},{"n":"Joe Kilraine","r":"Cape Coral City Council"},{"n":"John Gunter","r":"Mayor of Cape Coral"},{"n":"Keith Long","r":"Cape Coral City Council"},{"n":"Laurie Lehmann","r":"Cape Coral City Council"},{"n":"Rachel Kaduk","r":"Cape Coral City Council"}]},{"m":"Fort Myers","p":[{"n":"Darla Bonk","r":"Fort Myers City Council"},{"n":"Diana Giraldo","r":"Fort Myers City Council"},{"n":"Fred Burson","r":"Fort Myers City Council"},{"n":"Kevin B. Anderson","r":"Mayor of Fort Myers"},{"n":"Liston D. Bochette","r":"Fort Myers City Council"},{"n":"Teresa Watkins Brown","r":"Fort Myers City Council"}]},{"m":"Fort Myers Beach","p":[{"n":"Daniel Allers","r":"Mayor of Fort Myers Beach"},{"n":"Jim Atterholt","r":"Fort Myers Beach City Council"},{"n":"John McLean","r":"Fort Myers Beach City Council"},{"n":"John R. King","r":"Fort Myers Beach City Council"},{"n":"Rebecca Link","r":"Fort Myers Beach City Council"}]},{"m":"Sanibel","p":[{"n":"Holly D. Smith","r":"Sanibel City Council"},{"n":"Holly D. Smith","r":"Sanibel City Council"},{"n":"John Henshaw","r":"Sanibel City Council"},{"n":"Michael Miller","r":"Mayor of Sanibel"},{"n":"Richard Johnson","r":"Sanibel City Council"}]}],"slug":"lee"},"12073":{"county":[{"n":"Akin Akinyemi","r":"Property Appraiser, Leon County"},{"n":"Alva Swafford Smith","r":"Leon County School Board - District 1"},{"n":"Alva Swafford Striplin","r":"Leon County School Board"},{"n":"Brian Welch","r":"Commissioner, Leon County"},{"n":"Carolyn Cummings","r":"Commissioner, Leon County"},{"n":"Christian Caban","r":"Commissioner, Leon County"},{"n":"Darryl Jones","r":"Leon County School Board"},{"n":"Darryl Jones","r":"Leon County School Board - Vice Chair, District 3"},{"n":"David O'Keefe","r":"Commissioner, Leon County"},{"n":"Doris Maloy","r":"Tax Collector, Leon County"},{"n":"Dr. Marcus Nicolas","r":"Leon County School Board - Chair, District 5"},{"n":"Gwen Marshall Knight","r":"Clerk of Court, Leon County"},{"n":"Laurie Lawson Cox","r":"Leon County School Board"},{"n":"Laurie Lawson Cox","r":"Leon County School Board - District 4"},{"n":"Marcus Bernard Nicolas","r":"Leon County School Board"},{"n":"Mark Earley","r":"Supervisor of Elections, Leon County"},{"n":"Nick Maddox","r":"Commissioner, Leon County"},{"n":"Rick Minor","r":"Commissioner, Leon County"},{"n":"Rosanne Wood","r":"Leon County School Board"},{"n":"Rosanne Wood","r":"Leon County School Board - District 2"},{"n":"Walt McNeil","r":"Sheriff, Leon County"},{"n":"William Proctor","r":"Commissioner, Leon County"}],"munis":[{"m":"Tallahassee","p":[{"n":"Curtis B. Richardson","r":"Tallahassee City Council"},{"n":"Dianne Williams-Cox","r":"Tallahassee City Council"},{"n":"Jacqueline Porter","r":"Tallahassee City Council"},{"n":"Jeremy Matlow","r":"Tallahassee City Council"},{"n":"John E. Dailey","r":"Mayor of Tallahassee"}]}],"slug":"leon"},"12075":{"county":[{"n":"Ashley Breeden Clemenzi","r":"Levy County School Board"},{"n":"Bobby McCallum","r":"Sheriff, Levy County"},{"n":"Cameron Asbell","r":"Levy County School Board"},{"n":"Danny Shipp","r":"Clerk of Court, Levy County"},{"n":"Desiree Mills","r":"Commissioner, Levy County"},{"n":"Devin Whitehurst","r":"Levy County School Board"},{"n":"John Meeks","r":"Commissioner, Levy County"},{"n":"Johnny Hiers","r":"Commissioner, Levy County"},{"n":"Linda Campbell","r":"Levy County School Board"},{"n":"Lisa Quincey Baxter","r":"Levy County School Board"},{"n":"Matt Brooks","r":"Clerk of Court, Levy County"},{"n":"Michele Langford","r":"Tax Collector, Levy County"},{"n":"Russell Meeks","r":"Commissioner, Levy County"},{"n":"Tammy Jones","r":"Supervisor of Elections, Levy County"},{"n":"Tim Hodge","r":"Commissioner, Levy County"}],"munis":[{"m":"Bronson","p":[{"n":"Bruce A. Greenlee","r":"Mayor of Bronson"},{"n":"Franklin Schuler","r":"Bronson City Council"},{"n":"Rachel Weeks","r":"Bronson City Council"},{"n":"Reggie Stacy","r":"Bronson City Council"},{"n":"Virginia Phillips","r":"Bronson City Council"}]},{"m":"Cedar Key","p":[{"n":"Dell Weible","r":"Cedar Key City Council"},{"n":"Jim Wortham","r":"Mayor of Cedar Key"},{"n":"Jolie Davis","r":"Cedar Key City Council"},{"n":"Mel Beckham","r":"Cedar Key City Council"},{"n":"Nancy Sera","r":"Cedar Key City Council"}]},{"m":"Chiefland","p":[{"n":"Chris Jones","r":"Chiefland City Council"},{"n":"Kim Bennett","r":"Chiefland City Council"},{"n":"LaWanda Jones","r":"Chiefland City Council"},{"n":"Lewrissa Johns","r":"Mayor of Chiefland"},{"n":"Norman Weaver","r":"Chiefland City Council"}]},{"m":"Fanning Springs","p":[{"n":"Barry Cannon","r":"Fanning Springs City Council"},{"n":"Howell E. Lancaster","r":"Mayor of Fanning Springs"},{"n":"Jonathan Smith","r":"Fanning Springs City Council"},{"n":"Matthew Lunsford","r":"Fanning Springs City Council"},{"n":"Wanda Michaud","r":"Fanning Springs City Council"}]},{"m":"Inglis","p":[{"n":"Coley Robinson","r":"Inglis City Council"},{"n":"Daryl Lynaugh","r":"Inglis City Council"},{"n":"Deborah LaClair","r":"Inglis City Council"},{"n":"Isaac Young","r":"Mayor of Inglis"},{"n":"Mike Ahern","r":"Inglis City Council"}]},{"m":"Otter Creek","p":[{"n":"Don Severino","r":"Otter Creek City Council"},{"n":"Russell Meeks","r":"Otter Creek City Council"},{"n":"Sonya Gail Lamb","r":"Otter Creek City Council"},{"n":"Therese Granger","r":"Mayor of Otter Creek"},{"n":"Zim Padgett","r":"Otter Creek City Council"}]},{"m":"Williston","p":[{"n":"Charles Goodman","r":"Mayor of Williston"},{"n":"Darfeness Hinds","r":"Williston City Council"},{"n":"Debra F. Jones","r":"Williston City Council"},{"n":"Meredith Martin","r":"Williston City Council"},{"n":"Michael Cox","r":"Williston City Council"},{"n":"Shanna Church","r":"Williston City Council"}]},{"m":"Yankeetown","p":[{"n":"Bob Terrian","r":"Yankeetown City Council"},{"n":"Laurence Vorisek","r":"Mayor of Yankeetown"},{"n":"Tim Ecker","r":"Yankeetown City Council"}]}],"slug":"levy"},"12077":{"county":[{"n":"Buddy Money","r":"Sheriff, Liberty County"},{"n":"Charles \"Boo\" Morris","r":"Liberty County School Board"},{"n":"Chris Rudd","r":"Property Appraiser, Liberty County"},{"n":"Cindy Walker","r":"Property Appraiser, Liberty County"},{"n":"Daniel Stanley","r":"Clerk of Court, Liberty County"},{"n":"Darrel \"Doobie\" Hayes","r":"Liberty County School Board"},{"n":"Derrick Arnold","r":"Commissioner, Liberty County"},{"n":"Dewayne Branch","r":"Commissioner, Liberty County"},{"n":"Doyle Brown","r":"Commissioner, Liberty County"},{"n":"Grant Conyers","r":"Supervisor of Elections, Liberty County"},{"n":"Hannah Sumner Causseaux","r":"Commissioner, Liberty County"},{"n":"Jace Ford","r":"Clerk of Court, Liberty County"},{"n":"Jason Singletary","r":"Liberty County School Board"},{"n":"Jim Johnson","r":"Commissioner, Liberty County"},{"n":"Jodi Lindsey Bailey","r":"Liberty County School Board"},{"n":"Marie Goodman","r":"Tax Collector, Liberty County"},{"n":"Mason Kever","r":"Liberty County School Board"},{"n":"Robert Arnold","r":"Sheriff, Liberty County"},{"n":"Scott Phillips","r":"Commissioner, Liberty County"}],"munis":[{"m":"Bristol","p":[{"n":"James P. Kersey","r":"Mayor of Bristol"},{"n":"Mary Jennifer Hudgins","r":"Bristol City Council"},{"n":"Mattie Janie Boyd","r":"Bristol City Council"},{"n":"Micah McCaskill","r":"Bristol City Council"},{"n":"Thomas Rankin","r":"Bristol City Council"}]}],"slug":"liberty"},"12079":{"county":[{"n":"Alfred Martin","r":"Commissioner, Madison County"},{"n":"Alston Kelley","r":"Commissioner, Madison County"},{"n":"Benjamin Stewart","r":"Sheriff, Madison County"},{"n":"Brian Williams","r":"Commissioner, Madison County"},{"n":"Carol Gibson","r":"Madison County School Board"},{"n":"David Harper","r":"Sheriff, Madison County"},{"n":"Devin K Thompson","r":"Madison County School Board"},{"n":"Donnie Waldrep","r":"Commissioner, Madison County"},{"n":"Frankie Carroll","r":"Madison County School Board"},{"n":"Heath Driggers","r":"Supervisor of Elections, Madison County"},{"n":"Jane Barfield","r":"Property Appraiser, Madison County"},{"n":"Katie Knight","r":"Madison County School Board"},{"n":"Lisa Tuten","r":"Tax Collector, Madison County"},{"n":"Marie Smith","r":"Property Appraiser, Madison County"},{"n":"Rick Davis","r":"Commissioner, Madison County"},{"n":"Robin Hart","r":"Tax Collector, Madison County"},{"n":"Ronnie Moore","r":"Commissioner, Madison County"},{"n":"Ronnie Moore","r":"Commissioner, Madison County"},{"n":"VeEtta L Hagan","r":"Madison County School Board"},{"n":"William Washington","r":"Clerk of Court, Madison County"}],"munis":[{"m":"Greenville","p":[{"n":"Barbara Dansey","r":"Greenville City Council"},{"n":"Brittni Brown","r":"Greenville City Council"},{"n":"Carl Livingston","r":"Greenville City Council"},{"n":"Chiquila Pleas","r":"Greenville City Council"},{"n":"Ryan Kornegay","r":"Mayor of Greenville"}]},{"m":"Lee","p":[{"n":"Cindy Thomas","r":"Lee City Council"},{"n":"Edwin McMullen","r":"Lee City Council"},{"n":"James Ruzicka","r":"Mayor of Lee"},{"n":"Ken Szostek","r":"Lee City Council"},{"n":"Lloyd Burke","r":"Lee City Council"},{"n":"Ronnie Bass","r":"Lee City Council"}]},{"m":"Madison","p":[{"n":"Craig Anderson","r":"Madison City Council"},{"n":"Jamarien Moore","r":"Mayor of Madison"},{"n":"Rene Alexander","r":"Madison City Council"},{"n":"Terry Martin","r":"Madison City Council"},{"n":"Voncyle Wilson","r":"Madison City Council"}]}],"slug":"madison"},"12081":{"county":[{"n":"Amanda Ballard","r":"Commissioner, Manatee County"},{"n":"Angelina Colonneso","r":"Clerk of Court, Manatee County"},{"n":"Chad Choate","r":"Manatee County School Board"},{"n":"Charles Hackney","r":"Property Appraiser, Manatee County"},{"n":"Charlie Kennedy","r":"Manatee County School Board"},{"n":"Cindy L Spray","r":"Manatee County School Board"},{"n":"George Kruse","r":"Commissioner, Manatee County"},{"n":"James Satcher","r":"Supervisor of Elections, Manatee County"},{"n":"Jason Bearden","r":"Commissioner, Manatee County"},{"n":"Ken Burton","r":"Tax Collector, Manatee County"},{"n":"Kevin Van Ostenbridge","r":"Commissioner, Manatee County"},{"n":"Mike Rahn","r":"Commissioner, Manatee County"},{"n":"Raymond Turner","r":"Commissioner, Manatee County"},{"n":"Richard Tatem","r":"Manatee County School Board"},{"n":"Rick Wells","r":"Sheriff, Manatee County"},{"n":"Scott Farrington","r":"Supervisor of Elections, Manatee County"}],"munis":[{"m":"Anna Maria","p":[{"n":"Charles Salem","r":"Anna Maria City Council"},{"n":"Chris Arendt","r":"Anna Maria City Council"},{"n":"Gary McMullen","r":"Anna Maria City Council"},{"n":"John Lynch","r":"Anna Maria City Council"},{"n":"Kathy Morgan-Johnson","r":"Anna Maria City Council"},{"n":"Mark Short","r":"Mayor of Anna Maria"}]},{"m":"Bradenton","p":[{"n":"Gene Brown","r":"Mayor of Bradenton"},{"n":"Jayne Kocher","r":"Bradenton City Council"},{"n":"Kemp Schuessler","r":"Bradenton City Council"},{"n":"Lisa Gonzalez Moore","r":"Bradenton City Council"},{"n":"Marianne A. Barnebey","r":"Bradenton City Council"},{"n":"Pamela Coachman","r":"Bradenton City Council"}]},{"m":"Bradenton Beach","p":[{"n":"Deborah M. Scaccianoce","r":"Bradenton Beach City Council"},{"n":"John Chappie","r":"Mayor of Bradenton Beach"},{"n":"Ralph Cole","r":"Bradenton Beach City Council"},{"n":"Scott Bear","r":"Bradenton Beach City Council"}]},{"m":"Holmes Beach","p":[{"n":"Dan Diggins","r":"Holmes Beach City Council"},{"n":"Jessica Patel","r":"Holmes Beach City Council"},{"n":"Judy Titsworth","r":"Mayor of Holmes Beach"},{"n":"Steve Oelfke","r":"Holmes Beach City Council"},{"n":"Terry W. Schaefer","r":"Holmes Beach City Council"}]},{"m":"Palmetto","p":[{"n":"Brian T. Williams","r":"Palmetto City Council"},{"n":"Daniel West","r":"Mayor of Palmetto"},{"n":"Harold Smith","r":"Palmetto City Council"},{"n":"Scott Whitaker","r":"Palmetto City Council"},{"n":"Sunshine Joiner","r":"Palmetto City Council"},{"n":"Tamara Cornwell","r":"Palmetto City Council"}]}],"slug":"manatee"},"12083":{"county":[{"n":"Allison B. Campbell","r":"Marion County School Board"},{"n":"Carl Zalak","r":"Commissioner, Marion County"},{"n":"Craig Curry","r":"Commissioner, Marion County"},{"n":"David Ellspermann","r":"Clerk of Court, Marion County"},{"n":"George Albright","r":"Tax Collector, Marion County"},{"n":"Greg Harrell","r":"Clerk of Court, Marion County"},{"n":"Jimmy Cowan","r":"Property Appraiser, Marion County"},{"n":"Kathy Bryant","r":"Commissioner, Marion County"},{"n":"Lori Conrad","r":"Marion County School Board"},{"n":"Matthew McClain","r":"Commissioner, Marion County"},{"n":"Michelle Stone","r":"Commissioner, Marion County"},{"n":"Nancy Thrower","r":"Marion County School Board"},{"n":"Sarah James","r":"Marion County School Board"},{"n":"Villie Smith","r":"Property Appraiser, Marion County"},{"n":"Wesley Wilcox","r":"Supervisor of Elections, Marion County"},{"n":"William Woods","r":"Sheriff, Marion County"}],"munis":[{"m":"Belleview","p":[{"n":"Christine Dobkowski","r":"Mayor of Belleview"},{"n":"Michael J. Goldman","r":"Belleview City Council"},{"n":"Ray Dwyer","r":"Belleview City Council"},{"n":"Robert Smith","r":"Belleview City Council"},{"n":"Ron T. Livsey","r":"Belleview City Council"}]},{"m":"Dunnellon","p":[{"n":"Reese Taschenberger","r":"Dunnellon City Council"},{"n":"Rex Lehmann","r":"Dunnellon City Council"},{"n":"Tim Inskeep","r":"Dunnellon City Council"},{"n":"Valerie Hanchar","r":"Dunnellon City Council"},{"n":"Walter Green","r":"Mayor of Dunnellon"}]},{"m":"McIntosh","p":[{"n":"Alison Scott","r":"Mayor of McIntosh"},{"n":"Donald Medeiros","r":"McIntosh City Council"},{"n":"Frank Ciotti","r":"McIntosh City Council"},{"n":"Lee Deaderick","r":"McIntosh City Council"},{"n":"Melinda Jones","r":"McIntosh City Council"},{"n":"Scott Mullikin","r":"McIntosh City Council"}]},{"m":"Ocala","p":[{"n":"Barry Mansfield","r":"Ocala City Council"},{"n":"Ben Marciano","r":"Mayor of Ocala"},{"n":"Ire J. Bethea","r":"Ocala City Council"},{"n":"James Hilty","r":"Ocala City Council"},{"n":"Jay Musleh","r":"Ocala City Council"},{"n":"Kristen M. Dreyer","r":"Ocala City Council"}]},{"m":"Reddick","p":[{"n":"Andrea Barnes","r":"Reddick City Council"},{"n":"Myra Sherman","r":"Mayor of Reddick"},{"n":"Nadine Stokes","r":"Reddick City Council"},{"n":"Shirley Youmans","r":"Reddick City Council"}]}],"slug":"marion"},"12085":{"county":[{"n":"Amy Pritchett","r":"Martin County School Board"},{"n":"Brian Michael Moriarty","r":"Martin County School Board"},{"n":"Carolyn Timmann","r":"Clerk of Court, Martin County"},{"n":"Christia Li Roberts","r":"Martin County School Board"},{"n":"Doug Smith","r":"Commissioner, Martin County"},{"n":"Edward Ciampi","r":"Commissioner, Martin County"},{"n":"Harold Jenkins","r":"Commissioner, Martin County"},{"n":"Jennifer Russell","r":"Martin County School Board"},{"n":"Jenny Fields","r":"Property Appraiser, Martin County"},{"n":"John Budensiek","r":"Sheriff, Martin County"},{"n":"Laurel Kelly","r":"Property Appraiser, Martin County"},{"n":"Marsha Powers","r":"Martin County School Board"},{"n":"Ruth Pietruszewski","r":"Tax Collector, Martin County"},{"n":"Sarah Heard","r":"Commissioner, Martin County"},{"n":"Stacey Hetherington","r":"Commissioner, Martin County"},{"n":"Vicki Davis","r":"Supervisor of Elections, Martin County"},{"n":"William Snyder","r":"Sheriff, Martin County"}],"munis":[{"m":"Jupiter Island","p":[{"n":"Anne Scott","r":"Jupiter Island City Council"},{"n":"Joseph Taddeo","r":"Jupiter Island City Council"},{"n":"Marshall Field","r":"Jupiter Island City Council"},{"n":"Patricia Warner","r":"Jupiter Island City Council"},{"n":"Penny Townsend","r":"Mayor of Jupiter Island"}]},{"m":"Ocean Breeze","p":[{"n":"Gail Balogna","r":"Ocean Breeze City Council"},{"n":"George Ciaschi","r":"Ocean Breeze City Council"},{"n":"Janet Galante","r":"Ocean Breeze City Council"},{"n":"Karen M. Ostrand","r":"Mayor of Ocean Breeze"},{"n":"Kevin Docherty","r":"Ocean Breeze City Council"},{"n":"Margaret Pugsley","r":"Ocean Breeze City Council"},{"n":"Sandy Keblbeck-Kelley","r":"Ocean Breeze City Council"}]},{"m":"Sewall's Point","p":[{"n":"David Kurzman","r":"Sewall's Point City Council"},{"n":"Frank Fender","r":"Sewall's Point City Council"},{"n":"Frank Tidikis","r":"Sewall's Point City Council"},{"n":"Kaija Mayfield","r":"Sewall's Point City Council"},{"n":"Vincent N. Barile","r":"Mayor of Sewall's Point"}]},{"m":"Stuart","p":[{"n":"Campbell Rich","r":"Stuart City Council"},{"n":"Eula R. Clarke","r":"Stuart City Council"},{"n":"Laura Giobbi","r":"Stuart City Council"},{"n":"Sean Reed","r":"Stuart City Council"}]}],"slug":"martin"},"12086":{"county":[{"n":"Alina Garcia","r":"Supervisor of Elections, Miami-Dade County"},{"n":"Anthony Rodriguez","r":"Commissioner, Miami-Dade County"},{"n":"Christina White","r":"Supervisor of Elections, Miami-Dade County"},{"n":"Danielle Higgins","r":"Commissioner, Miami-Dade County"},{"n":"Danny Espino","r":"Miami-Dade County School Board"},{"n":"Dariel Fernandez","r":"Tax Collector, Miami-Dade County"},{"n":"Dorothy Bendross-Mindingall","r":"Miami-Dade County School Board"},{"n":"Eileen Higgins","r":"Commissioner, Miami-Dade County"},{"n":"Joseph \"Joe\" Geller","r":"Miami-Dade County School Board"},{"n":"Juan Bermudez","r":"Commissioner, Miami-Dade County"},{"n":"Keon Hardemon","r":"Commissioner, Miami-Dade County"},{"n":"Kevin Cabrera","r":"Commissioner, Miami-Dade County"},{"n":"Kionne McGhee","r":"Commissioner, Miami-Dade County"},{"n":"Luisa Santos","r":"Miami-Dade County School Board"},{"n":"Marleine Bastien","r":"Commissioner, Miami-Dade County"},{"n":"Mary Blanco","r":"Miami-Dade County School Board"},{"n":"Micky Steinberg","r":"Commissioner, Miami-Dade County"},{"n":"Monica Colucci","r":"Miami-Dade County School Board"},{"n":"Oliver Gilbert","r":"Commissioner, Miami-Dade County"},{"n":"Pedro Garcia","r":"Property Appraiser, Miami-Dade County"},{"n":"Peter Cam","r":"Tax Collector, Miami-Dade County"},{"n":"Raquel Regalado","r":"Commissioner, Miami-Dade County"},{"n":"Rene Garcia","r":"Commissioner, Miami-Dade County"},{"n":"Roberto Gonzalez","r":"Commissioner, Miami-Dade County"},{"n":"Roberto J. Alonso","r":"Miami-Dade County School Board"},{"n":"Rosanna Cordero-Stutz","r":"Sheriff, Miami-Dade County"},{"n":"Steve Gallon III","r":"Miami-Dade County School Board"}],"munis":[{"m":"Aventura","p":[{"n":"Amit Bloom","r":"Aventura City Council"},{"n":"Cindy Orlinsky","r":"Aventura City Council"},{"n":"Clifford B. Ain","r":"Aventura City Council"},{"n":"Gustavo Blachman","r":"Aventura City Council"},{"n":"Howard S. Weinberg","r":"Mayor of Aventura"},{"n":"Paul A. Kruss","r":"Aventura City Council"},{"n":"Rachel S. Friedland","r":"Aventura City Council"}]},{"m":"Bal Harbour","p":[{"n":"Buzzy Sklar","r":"Bal Harbour City Council"},{"n":"David Wolf","r":"Bal Harbour City Council"},{"n":"Jeffrey Freimark","r":"Bal Harbour City Council"},{"n":"Seth E. Salver","r":"Mayor of Bal Harbour"}]},{"m":"Bay Harbor Islands","p":[{"n":"Elchonon Shagalov","r":"Bay Harbor Islands City Council"},{"n":"Eric Rappaport","r":"Bay Harbor Islands City Council"},{"n":"Isaac Salver","r":"Mayor of Bay Harbor Islands"},{"n":"Joshua D. Fuller","r":"Bay Harbor Islands City Council"},{"n":"Molly Diallo","r":"Bay Harbor Islands City Council"},{"n":"Robert H. Yaffe","r":"Bay Harbor Islands City Council"},{"n":"Stephanie Bruder","r":"Bay Harbor Islands City Council"}]},{"m":"Biscayne Park","p":[{"n":"Art Gonzalez","r":"Biscayne Park City Council"},{"n":"Dan Samaria","r":"Biscayne Park City Council"},{"n":"Jonathan Groth","r":"Mayor of Biscayne Park"},{"n":"Ryan Huntington","r":"Biscayne Park City Council"},{"n":"Veronica Amsler","r":"Biscayne Park City Council"}]},{"m":"Coral Gables","p":[{"n":"Ariel Fernandez","r":"Coral Gables City Council"},{"n":"Melissa Castro","r":"Coral Gables City Council"},{"n":"Rhonda Anderson","r":"Coral Gables City Council"},{"n":"Richard D. Lara","r":"Coral Gables City Council"},{"n":"Vince Lago","r":"Mayor of Coral Gables"}]},{"m":"Cutler Bay","p":[{"n":"Michael P. Callahan","r":"Cutler Bay City Council"},{"n":"Richard Ramirez","r":"Cutler Bay City Council"},{"n":"Robert 'BJ' Duncan","r":"Cutler Bay City Council"},{"n":"Suzy Lord","r":"Cutler Bay City Council"},{"n":"Timothy J. Meerbott","r":"Mayor of Cutler Bay"}]},{"m":"Doral","p":[{"n":"Christi Fraga","r":"Mayor of Doral"},{"n":"Digna Cabral","r":"Doral City Council"},{"n":"Maureen Porras","r":"Doral City Council"},{"n":"Nicole Reinoso","r":"Doral City Council"},{"n":"Rafael Pineyro","r":"Doral City Council"}]},{"m":"El Portal","p":[{"n":"Anders Urbom","r":"El Portal City Council"},{"n":"Anna E. Lightfoot-Ward","r":"El Portal City Council"},{"n":"Charles Winters","r":"El Portal City Council"},{"n":"Darian Martin","r":"El Portal City Council"},{"n":"Omarr C. Nickerson","r":"Mayor of El Portal"}]},{"m":"Florida City","p":[{"n":"Charlotte Thompson","r":"Mayor of Florida City"},{"n":"James Gold","r":"Florida City City Council"},{"n":"Richard Brown","r":"Florida City City Council"},{"n":"Ronda Yvette Cobb","r":"Florida City City Council"},{"n":"Trina Wilborn","r":"Florida City City Council"}]},{"m":"Golden Beach","p":[{"n":"Bernard Einstein","r":"Golden Beach City Council"},{"n":"Glenn Singer","r":"Mayor of Golden Beach"},{"n":"Jessie Mendal","r":"Golden Beach City Council"},{"n":"Judy Lusskin","r":"Golden Beach City Council"},{"n":"Kenneth Bernstein","r":"Golden Beach City Council"}]},{"m":"Hialeah","p":[{"n":"Bryan Calvo","r":"Mayor of Hialeah"},{"n":"Carl Zogby","r":"Hialeah City Council"},{"n":"Gelien Perez","r":"Hialeah City Council"},{"n":"Luis Rodriguez","r":"Hialeah City Council"},{"n":"Melinda De La Vega","r":"Hialeah City Council"},{"n":"Monica Perez","r":"Hialeah City Council"},{"n":"William Marrero","r":"Hialeah City Council"}]},{"m":"Hialeah Gardens","p":[{"n":"Elmo L. Urra","r":"Hialeah Gardens City Council"},{"n":"Jorge A. Merida","r":"Hialeah Gardens City Council"},{"n":"Jorge Gutierrez","r":"Hialeah Gardens City Council"},{"n":"Luciano Garcia","r":"Hialeah Gardens City Council"},{"n":"Rolando Piña","r":"Hialeah Gardens City Council"},{"n":"Yioset De La Cruz","r":"Mayor of Hialeah Gardens"}]},{"m":"Homestead","p":[{"n":"Clemente Canabal","r":"Homestead City Council"},{"n":"Erica G. Àvila","r":"Homestead City Council"},{"n":"Jenifer N. Bailey","r":"Homestead City Council"},{"n":"Kimberly Konsky","r":"Homestead City Council"},{"n":"Larry Roth","r":"Homestead City Council"},{"n":"Sean L. Fletcher","r":"Homestead City Council"},{"n":"Steven D. Losner","r":"Mayor of Homestead"}]},{"m":"Indian Creek","p":[{"n":"Bernard Klepach","r":"Mayor of Indian Creek"},{"n":"Irma Braman","r":"Indian Creek City Council"},{"n":"Irwin Tauber","r":"Indian Creek City Council"},{"n":"Jared Kushner","r":"Indian Creek City Council"},{"n":"Robert Diener","r":"Indian Creek City Council"}]},{"m":"Key Biscayne","p":[{"n":"Edward London","r":"Key Biscayne City Council"},{"n":"Fernando A. Vazquez","r":"Key Biscayne City Council"},{"n":"Franklin H. Caplan","r":"Key Biscayne City Council"},{"n":"Joe I. Rasco","r":"Mayor of Key Biscayne"},{"n":"Michael Bracken","r":"Key Biscayne City Council"},{"n":"Nancy Stoner","r":"Key Biscayne City Council"},{"n":"Oscar Sardiñas","r":"Key Biscayne City Council"}]},{"m":"Medley","p":[{"n":"Ana Stefano","r":"Mayor of Medley"},{"n":"Arturo Jinete","r":"Medley City Council"},{"n":"Edgar Ayala","r":"Medley City Council"},{"n":"Lizelh Rodriguez","r":"Medley City Council"},{"n":"Lourdes Rodriguez","r":"Medley City Council"}]},{"m":"Miami","p":[{"n":"Christine King","r":"Miami City Council"},{"n":"Damian Pardo","r":"Miami City Council"},{"n":"Eileen Higgins","r":"Mayor of Miami"},{"n":"Miguel Angel Gabela","r":"Miami City Council"},{"n":"Ralph Rosado","r":"Miami City Council"},{"n":"Rolando Escalona","r":"Miami City Council"}]},{"m":"Miami Beach","p":[{"n":"Joseph Magazine","r":"Miami Beach City Council"},{"n":"Laura Dominguez","r":"Miami Beach City Council"},{"n":"Monica Matteo-Salinas","r":"Miami Beach City Council"},{"n":"Steven Meiner","r":"Mayor of Miami Beach"},{"n":"Tanya K. Bhatt","r":"Miami Beach City Council"}]},{"m":"Miami Gardens","p":[{"n":"Katrina L. Baskin","r":"Miami Gardens City Council"},{"n":"Katrina Wilson","r":"Miami Gardens City Council"},{"n":"Linda Julien","r":"Miami Gardens City Council"},{"n":"Michelle C. Powell","r":"Miami Gardens City Council"},{"n":"Reggie Leon","r":"Miami Gardens City Council"},{"n":"Robert L. Stephens","r":"Miami Gardens City Council"},{"n":"Rodney Harris","r":"Mayor of Miami Gardens"}]},{"m":"Miami Lakes","p":[{"n":"Alejandro Sanchez","r":"Miami Lakes City Council"},{"n":"Angelo Cuadra Garcia","r":"Miami Lakes City Council"},{"n":"Bryan Morera","r":"Miami Lakes City Council"},{"n":"Joshua Dieguez","r":"Mayor of Miami Lakes"},{"n":"Juan Carlos Fernandez","r":"Miami Lakes City Council"},{"n":"Ray Garcia","r":"Miami Lakes City Council"},{"n":"Steven Herzberg","r":"Miami Lakes City Council"}]},{"m":"Miami Shores Village","p":[{"n":"Jerome Charles","r":"Mayor of Miami Shores Village"}]},{"m":"Miami Springs","p":[{"n":"Jorge Santin","r":"Miami Springs City Council"},{"n":"Jospeh Dion","r":"Miami Springs City Council"},{"n":"Orlando Lamas","r":"Miami Springs City Council"},{"n":"Walter Fajet","r":"Mayor of Miami Springs"}]},{"m":"Miami-Dade County","p":[{"n":"Daniella Levine Cava","r":"Mayor of Miami-Dade County"}]},{"m":"North Bay Village","p":[{"n":"Andy Daro","r":"North Bay Village City Council"},{"n":"Doris Acosta","r":"North Bay Village City Council"},{"n":"Goran Cuk","r":"North Bay Village City Council"},{"n":"Rachel Streitfeld","r":"Mayor of North Bay Village"},{"n":"Richard Chervony","r":"North Bay Village City Council"}]},{"m":"North Miami","p":[{"n":"Alix Desulme","r":"Mayor of North Miami"},{"n":"Kassandra Timothe","r":"North Miami City Council"},{"n":"Kevin A. Burns","r":"North Miami City Council"},{"n":"Mary Estimé-Irvin","r":"North Miami City Council"},{"n":"Pierre Frantz Charles","r":"North Miami City Council"}]},{"m":"North Miami Beach","p":[{"n":"Daniela Jean","r":"North Miami Beach City Council"},{"n":"Fortuna Smukler","r":"North Miami Beach City Council"},{"n":"Jay R. Chernoff","r":"North Miami Beach City Council"},{"n":"Lynn Su","r":"North Miami Beach City Council"},{"n":"McKenzie Fleurimond","r":"North Miami Beach City Council"},{"n":"Michael Joseph","r":"Mayor of North Miami Beach"},{"n":"Phyllis S. Smith","r":"North Miami Beach City Council"}]},{"m":"Opa Locka","p":[{"n":"John H. Taylor Jr.","r":"Mayor, Opa-locka, FL"}]},{"m":"Opa-locka","p":[{"n":"John H. Taylor","r":"Mayor of Opa-locka"},{"n":"Joseph L. Kelley","r":"Opa-locka City Council"},{"n":"Luis B. Santiago","r":"Opa-locka City Council"},{"n":"Natasha L. Ervin","r":"Opa-locka City Council"},{"n":"Sherelean Bass","r":"Opa-locka City Council"}]},{"m":"Palmetto Bay","p":[{"n":"Karyn Cunningham","r":"Mayor of Palmetto Bay"},{"n":"Mark Merwitzer","r":"Palmetto Bay City Council"},{"n":"Marsha Matson","r":"Palmetto Bay City Council"},{"n":"Patrick Fiore","r":"Palmetto Bay City Council"},{"n":"Steve Cody","r":"Palmetto Bay City Council"}]},{"m":"Pinecrest","p":[{"n":"Ariel Meyer","r":"Pinecrest City Council"},{"n":"Jerry Greenberg","r":"Pinecrest City Council"},{"n":"Joseph M. Corradino","r":"Mayor of Pinecrest"},{"n":"Ken Fairman","r":"Pinecrest City Council"}]},{"m":"South Miami","p":[{"n":"Brian Corey","r":"South Miami City Council"},{"n":"Danny Rodriguez","r":"South Miami City Council"},{"n":"Javier E. Fernández","r":"Mayor of South Miami"},{"n":"Lisa Bonich","r":"South Miami City Council"},{"n":"Steve Calle","r":"South Miami City Council"}]},{"m":"Sunny Isles Beach","p":[{"n":"Alex Lama","r":"Sunny Isles Beach City Council"},{"n":"Fabiola Stuyvesant","r":"Sunny Isles Beach City Council"},{"n":"Jeniffer Viscarra","r":"Sunny Isles Beach City Council"},{"n":"Jerry Joseph","r":"Sunny Isles Beach City Council"},{"n":"Larisa Svechin","r":"Mayor of Sunny Isles Beach"}]},{"m":"Surfside","p":[{"n":"Andrea Travani","r":"Surfside City Council"},{"n":"David Weingot","r":"Surfside City Council"},{"n":"Dayana Benmergui","r":"Surfside City Council"},{"n":"Gerardo Vildostegui","r":"Surfside City Council"},{"n":"Shlomo Danzinger","r":"Mayor of Surfside"}]},{"m":"Sweetwater","p":[{"n":"Idania Llanio","r":"Sweetwater City Council"},{"n":"Isidro Ruiz","r":"Sweetwater City Council"},{"n":"Jose P. Diaz","r":"Mayor of Sweetwater"},{"n":"Reinaldo Rey","r":"Sweetwater City Council"},{"n":"Saul Diaz","r":"Sweetwater City Council"}]},{"m":"Virginia Gardens","p":[{"n":"Deborah Conover","r":"Virginia Gardens City Council"},{"n":"Elizabeth Taylor Martinez","r":"Virginia Gardens City Council"},{"n":"Fred Spencer Deno","r":"Mayor of Virginia Gardens"},{"n":"Gabriel Fernandez","r":"Virginia Gardens City Council"},{"n":"Jorge Arce","r":"Virginia Gardens City Council"},{"n":"Richard L. Block","r":"Virginia Gardens City Council"}]},{"m":"West Miami","p":[{"n":"Eric Diaz-Padron","r":"Mayor of West Miami"},{"n":"Gustavo J. Ceballos","r":"West Miami City Council"},{"n":"Ivan Chavez","r":"West Miami City Council"},{"n":"Juan M. Blanes","r":"West Miami City Council"},{"n":"Victoria De La Torre Gans","r":"West Miami City Council"}]},{"m":"_Unresolved","p":[{"n":"Danielle Cohen Higgins","r":"Miami-Dade County City Council"},{"n":"Juan Carlos Bermudez","r":"Miami-Dade County City Council"},{"n":"Keon Hardemon","r":"Miami-Dade County City Council"},{"n":"Kevin M. Cabrera","r":"Miami-Dade County City Council"},{"n":"Kionne L. McGhee","r":"Miami-Dade County City Council"},{"n":"Marleine Bastien","r":"Miami-Dade County City Council"},{"n":"Micky Steinberg","r":"Miami-Dade County City Council"},{"n":"Neil Cantor","r":"Miami Shores Village City Council"},{"n":"Raquel A. Regalado","r":"Miami-Dade County City Council"},{"n":"René Garcia","r":"Miami-Dade County City Council"},{"n":"Roberto J. Gonzalez","r":"Miami-Dade County City Council"},{"n":"Sandra Harris","r":"Miami Shores Village City Council"}]}],"slug":"miami-dade"},"12087":{"county":[{"n":"Craig Cates","r":"Commissioner, Monroe County"},{"n":"Darren M. Horan","r":"Monroe County School Board"},{"n":"David Rice","r":"Commissioner, Monroe County"},{"n":"Holly Raschein","r":"Commissioner, Monroe County"},{"n":"John R Dick","r":"Monroe County School Board"},{"n":"Joyce Griffin","r":"Supervisor of Elections, Monroe County"},{"n":"Kevin Madok","r":"Clerk of Court, Monroe County"},{"n":"Michelle Lincoln","r":"Commissioner, Monroe County"},{"n":"Rick Ramsay","r":"Sheriff, Monroe County"},{"n":"Sam Steele","r":"Tax Collector, Monroe County"},{"n":"Scott Russell","r":"Property Appraiser, Monroe County"},{"n":"Sherri Hodies","r":"Supervisor of Elections, Monroe County"},{"n":"Sue Woltanski","r":"Monroe County School Board"},{"n":"Yvette Mira-Talbott","r":"Monroe County School Board"}],"munis":[{"m":"Islamorada, Village of Islands","p":[{"n":"Donald Horton","r":"Mayor of Islamorada, Village of Islands"},{"n":"Sharon Mahoney","r":"Islamorada, Village of Islands City Council"},{"n":"Steve Friedman","r":"Islamorada, Village of Islands City Council"}]},{"m":"Key Colony Beach","p":[{"n":"Doug Colonell","r":"Key Colony Beach City Council"},{"n":"Freddie Foster","r":"Mayor of Key Colony Beach"},{"n":"Kirk Diehl","r":"Key Colony Beach City Council"},{"n":"Tom DiFransico","r":"Key Colony Beach City Council"},{"n":"Tom Harding","r":"Key Colony Beach City Council"}]},{"m":"Key West","p":[{"n":"Aaron Castillo","r":"Key West City Council"},{"n":"Danise Henriquez","r":"Mayor of Key West"},{"n":"Donald Lee","r":"Key West City Council"},{"n":"Lissette Cuervo Carey","r":"Key West City Council"},{"n":"Mary Lou Hoover","r":"Key West City Council"},{"n":"Monica Haskell","r":"Key West City Council"},{"n":"Sam Kaufman","r":"Key West City Council"}]},{"m":"Layton","p":[{"n":"Bruce Halle","r":"Mayor of Layton"},{"n":"Cynthia Lewis","r":"Layton City Council"},{"n":"Gregory Lewis","r":"Layton City Council"},{"n":"Jared Rodriguez","r":"Layton City Council"},{"n":"Megan Jones","r":"Layton City Council"},{"n":"Susan Grant","r":"Layton City Council"}]},{"m":"Marathon","p":[{"n":"Debra Struyf","r":"Marathon City Council"},{"n":"Kenny Matlock","r":"Marathon City Council"},{"n":"Lynn Landry","r":"Marathon City Council"},{"n":"Lynny Del Gaizo","r":"Mayor of Marathon"},{"n":"Robyn Still","r":"Marathon City Council"}]}],"slug":"monroe"},"12089":{"county":[{"n":"A. Michael Hickox","r":"Property Appraiser, Nassau County"},{"n":"A.M. \"Hupp\" Huppmann","r":"Commissioner, Nassau County"},{"n":"Alyson McCullough","r":"Commissioner, Nassau County"},{"n":"Bill Leeper","r":"Sheriff, Nassau County"},{"n":"Curtis Gaus","r":"Nassau County School Board"},{"n":"Gail G. Cook","r":"Nassau County School Board"},{"n":"Janet Adkins","r":"Supervisor of Elections, Nassau County"},{"n":"Jeff Gray","r":"Commissioner, Nassau County"},{"n":"John Crawford","r":"Clerk of Court, Nassau County"},{"n":"John Drew","r":"Tax Collector, Nassau County"},{"n":"John Martin","r":"Commissioner, Nassau County"},{"n":"Kevin Lilly","r":"Property Appraiser, Nassau County"},{"n":"Klynt Farmer","r":"Commissioner, Nassau County"},{"n":"Kristi Loyd Simpkins","r":"Nassau County School Board"},{"n":"Lissa Braddock","r":"Nassau County School Board"},{"n":"Mitchell Keiter","r":"Clerk of Court, Nassau County"},{"n":"Shannon Hogue","r":"Nassau County School Board"},{"n":"Vicki Cannon","r":"Supervisor of Elections, Nassau County"}],"munis":[{"m":"Callahan","p":[{"n":"Ashton Bishop-Vargas","r":"Callahan City Council"},{"n":"Jacquelyn Fleming","r":"Callahan City Council"},{"n":"Janet Shaw","r":"Callahan City Council"},{"n":"Matthew Davis","r":"Callahan City Council"},{"n":"Randy Knagge","r":"Mayor of Callahan"},{"n":"Wendi Williams","r":"Callahan City Council"}]},{"m":"Fernandina Beach","p":[{"n":"Darron Ayscue","r":"Fernandina Beach City Council"},{"n":"Genece Minshew","r":"Fernandina Beach City Council"},{"n":"James Antun","r":"Mayor of Fernandina Beach"},{"n":"Joyce Tuten","r":"Fernandina Beach City Council"},{"n":"Tim Poynter","r":"Fernandina Beach City Council"}]},{"m":"Hilliard","p":[{"n":"Jared Wollitz","r":"Hilliard City Council"},{"n":"Joe Michaels","r":"Hilliard City Council"},{"n":"John P. Beasley","r":"Mayor of Hilliard"},{"n":"Kenneth A. Sims","r":"Hilliard City Council"},{"n":"Lee Pickett","r":"Hilliard City Council"},{"n":"Richard Dallis Hunter","r":"Hilliard City Council"}]}],"slug":"nassau"},"12091":{"county":[{"n":"Benjamin Anderson","r":"Tax Collector, Okaloosa County"},{"n":"Brad Embry","r":"Clerk of Court, Okaloosa County"},{"n":"Carolyn Ketchel","r":"Commissioner, Okaloosa County"},{"n":"Dewey Parker Destin","r":"Okaloosa County School Board"},{"n":"Diane Kelley","r":"Okaloosa County School Board"},{"n":"Eric Aden","r":"Sheriff, Okaloosa County"},{"n":"J.D. Peacock","r":"Clerk of Court, Okaloosa County"},{"n":"Lamar White","r":"Okaloosa County School Board"},{"n":"Linda Evanchyk","r":"Okaloosa County School Board"},{"n":"Mack Busbee","r":"Property Appraiser, Okaloosa County"},{"n":"Mel Ponder","r":"Commissioner, Okaloosa County"},{"n":"Nathaniel Boyles","r":"Commissioner, Okaloosa County"},{"n":"Paul Lux","r":"Supervisor of Elections, Okaloosa County"},{"n":"Paul Mixon","r":"Commissioner, Okaloosa County"},{"n":"Timothy Bryant","r":"Okaloosa County School Board"},{"n":"Trey Goodwin","r":"Commissioner, Okaloosa County"}],"munis":[{"m":"Cinco Bayou","p":[{"n":"Chris Washack","r":"Cinco Bayou City Council"},{"n":"Danny Dillard","r":"Cinco Bayou City Council"},{"n":"Jean M. Hood","r":"Mayor of Cinco Bayou"},{"n":"Laura Driver","r":"Cinco Bayou City Council"},{"n":"Mary Ann Hawkins","r":"Cinco Bayou City Council"}]},{"m":"Crestview","p":[{"n":"Brandon Frost","r":"Crestview City Council"},{"n":"Douglas Capps","r":"Crestview City Council"},{"n":"Dusty B. Allison","r":"Crestview City Council"},{"n":"J. B. Whitten","r":"Mayor of Crestview"},{"n":"Shannon D. Hayes","r":"Crestview City Council"},{"n":"Sylvester L. Echols","r":"Crestview City Council"}]},{"m":"Destin","p":[{"n":"Bobby Wagner","r":"Mayor of Destin"},{"n":"Dewey Destin","r":"Destin City Council"},{"n":"Jim Bagby","r":"Destin City Council"},{"n":"Kevin Schmidt","r":"Destin City Council"},{"n":"Rodney J. Braden","r":"Destin City Council"},{"n":"Sandra K. Trammell","r":"Destin City Council"},{"n":"Terésa Hebert","r":"Destin City Council"},{"n":"Torey Geile","r":"Destin City Council"}]},{"m":"Fort Walton Beach","p":[{"n":"Ben Merrell","r":"Fort Walton Beach City Council"},{"n":"Bryce Jeter","r":"Fort Walton Beach City Council"},{"n":"David Schmidt","r":"Fort Walton Beach City Council"},{"n":"Logan Browning","r":"Fort Walton Beach City Council"},{"n":"Nic Allegretto","r":"Mayor of Fort Walton Beach"},{"n":"Payne Walker","r":"Fort Walton Beach City Council"}]},{"m":"Laurel Hill","p":[{"n":"Amanda Rosen","r":"Laurel Hill City Council"},{"n":"Debra Adams","r":"Laurel Hill City Council"},{"n":"Jacob Locke","r":"Laurel Hill City Council"},{"n":"Kristine Gaskin","r":"Laurel Hill City Council"},{"n":"Robby Adams","r":"Mayor of Laurel Hill"},{"n":"Shawn Cogan","r":"Laurel Hill City Council"}]},{"m":"Mary Esther","p":[{"n":"April Sutton","r":"Mary Esther City Council"},{"n":"Bernard W. Oder","r":"Mary Esther City Council"},{"n":"Chris Stein","r":"Mayor of Mary Esther"},{"n":"Larry J. Carter","r":"Mary Esther City Council"},{"n":"Richard Lawson","r":"Mary Esther City Council"},{"n":"Susan Coxwell","r":"Mary Esther City Council"}]},{"m":"Niceville","p":[{"n":"Cathy Alley","r":"Niceville City Council"},{"n":"Daniel L. Henkel","r":"Mayor of Niceville"},{"n":"Doug Tolbert","r":"Niceville City Council"},{"n":"Douglas Stauffer","r":"Niceville City Council"},{"n":"Heath Rominger","r":"Niceville City Council"},{"n":"William G. Schaetzle","r":"Niceville City Council"}]},{"m":"Shalimar","p":[{"n":"Brad Gable","r":"Shalimar City Council"},{"n":"Brian Taylor","r":"Shalimar City Council"},{"n":"Jerry McCallister","r":"Shalimar City Council"},{"n":"Mark Franks","r":"Mayor of Shalimar"},{"n":"Ricardo Garcia","r":"Shalimar City Council"}]},{"m":"Valparaiso","p":[{"n":"Bryan L. Griffin","r":"Valparaiso City Council"},{"n":"Clark T. Browning","r":"Valparaiso City Council"},{"n":"Hubert B. Smith","r":"Mayor of Valparaiso"},{"n":"Kay Hamilton","r":"Valparaiso City Council"}]}],"slug":"okaloosa"},"12093":{"county":[{"n":"Amanda Riedel","r":"Okeechobee County School Board"},{"n":"Bradley Goodbread","r":"Commissioner, Okeechobee County"},{"n":"Celeste Watford","r":"Tax Collector, Okeechobee County"},{"n":"Christine Brennan Bishop","r":"Okeechobee County School Board"},{"n":"David Hazellief","r":"Commissioner, Okeechobee County"},{"n":"David May","r":"Supervisor of Elections, Okeechobee County"},{"n":"Frank DeCarlo","r":"Commissioner, Okeechobee County"},{"n":"Jerald Bryant","r":"Clerk of Court, Okeechobee County"},{"n":"Jill Clericuzio Holcomb","r":"Okeechobee County School Board"},{"n":"Kelly Owens","r":"Commissioner, Okeechobee County"},{"n":"Melisa Jahner","r":"Okeechobee County School Board"},{"n":"Melissa Arnold","r":"Supervisor of Elections, Okeechobee County"},{"n":"Michael Bandi","r":"Property Appraiser, Okeechobee County"},{"n":"Michael Sumner","r":"Commissioner, Okeechobee County"},{"n":"Noel Stephen","r":"Sheriff, Okeechobee County"},{"n":"Sharon Robertson","r":"Clerk of Court, Okeechobee County"},{"n":"Terry Burroughs","r":"Commissioner, Okeechobee County"}],"munis":[{"m":"Okeechobee","p":[{"n":"David McAuley","r":"Okeechobee City Council"},{"n":"Dowling R. Watford","r":"Mayor of Okeechobee"},{"n":"Noel Chandler","r":"Okeechobee City Council"},{"n":"Robert Jarriel","r":"Okeechobee City Council"}]}],"slug":"okeechobee"},"12095":{"county":[{"n":"Alicia Farrant","r":"Orange County School Board"},{"n":"Amy Mercado","r":"Property Appraiser, Orange County"},{"n":"Angie Gallo","r":"Orange County School Board"},{"n":"Anne Douglas","r":"Orange County School Board"},{"n":"Christine Moore","r":"Commissioner, Orange County"},{"n":"Emily Bonilla","r":"Commissioner, Orange County"},{"n":"Glen Gilzean","r":"Supervisor of Elections, Orange County"},{"n":"John Mina","r":"Sheriff, Orange County"},{"n":"Karen Dentel","r":"Supervisor of Elections, Orange County"},{"n":"Maria Salamanca","r":"Orange County School Board"},{"n":"Maribel Gomez Cordero","r":"Commissioner, Orange County"},{"n":"Mayra Uribe","r":"Commissioner, Orange County"},{"n":"Melissa Mitchell Byrd","r":"Orange County School Board"},{"n":"Michael Scott","r":"Commissioner, Orange County"},{"n":"Nicole Wilson","r":"Commissioner, Orange County"},{"n":"Rick Singh","r":"Property Appraiser, Orange County"},{"n":"Scott Randolph","r":"Tax Collector, Orange County"},{"n":"Stephanie Vanos","r":"Orange County School Board"},{"n":"Teresa Jacobs","r":"Orange County School Board"},{"n":"Tiffany Moore Russell","r":"Clerk of Court, Orange County"},{"n":"Vicki-Elaine Felder","r":"Orange County School Board"},{"n":"Victoria Siplin","r":"Commissioner, Orange County"}],"munis":[{"m":"Apopka","p":[{"n":"Nadia Anderson","r":"Apopka City Council"},{"n":"Nick Nesta","r":"Mayor of Apopka"},{"n":"Sam Ruth","r":"Apopka City Council"},{"n":"Yesenia Leon Baron","r":"Apopka City Council"}]},{"m":"Bay Lake","p":[{"n":"Bryan Swartz","r":"Bay Lake City Council"},{"n":"Sue McCall","r":"Bay Lake City Council"},{"n":"Tanya Peak-Smith","r":"Bay Lake City Council"},{"n":"Tim Burns","r":"Bay Lake City Council"},{"n":"Todd Watzel","r":"Mayor of Bay Lake"}]},{"m":"Belle Isle","p":[{"n":"Beth Lowell","r":"Belle Isle City Council"},{"n":"Bobby Lance","r":"Belle Isle City Council"},{"n":"Ed Gold","r":"Belle Isle City Council"},{"n":"Holly Bobrowski","r":"Belle Isle City Council"},{"n":"Jason Carson","r":"Mayor of Belle Isle"},{"n":"Jim Partin","r":"Belle Isle City Council"},{"n":"Karl Shuck","r":"Belle Isle City Council"}]},{"m":"Eatonville","p":[{"n":"Angela Y. Thomas","r":"Eatonville City Council"},{"n":"LaDwyana Jordan","r":"Eatonville City Council"},{"n":"Ruth Critton","r":"Mayor of Eatonville"},{"n":"Theo E. Washington","r":"Eatonville City Council"},{"n":"Wanda Randolph","r":"Eatonville City Council"}]},{"m":"Edgewood","p":[{"n":"Beth Steele","r":"Edgewood City Council"},{"n":"Casey McElroy","r":"Edgewood City Council"},{"n":"Chris Rader","r":"Edgewood City Council"},{"n":"John Dowless","r":"Mayor of Edgewood"},{"n":"Richard Horn","r":"Edgewood City Council"},{"n":"Susan Lomas","r":"Edgewood City Council"}]},{"m":"Lake Buena Vista","p":[{"n":"Andrea Fay","r":"Lake Buena Vista City Council"},{"n":"Angie Sola","r":"Lake Buena Vista City Council"},{"n":"Renee Raper","r":"Mayor of Lake Buena Vista"},{"n":"Tom McCoy","r":"Lake Buena Vista City Council"}]},{"m":"Maitland","p":[{"n":"Bill Randolph","r":"Maitland City Council"},{"n":"John P. Lowndes","r":"Mayor of Maitland"},{"n":"Keith Givens","r":"Maitland City Council"},{"n":"Scot A. French","r":"Maitland City Council"},{"n":"Stephen B. Schoene","r":"Maitland City Council"}]},{"m":"Oakland","p":[{"n":"Joseph McMullen","r":"Oakland City Council"},{"n":"Kris Keller","r":"Oakland City Council"},{"n":"Michael Satterfield","r":"Oakland City Council"},{"n":"Shane Taylor","r":"Mayor of Oakland"},{"n":"Yumeko Motley","r":"Oakland City Council"}]},{"m":"Ocoee","p":[{"n":"George Oliver","r":"Ocoee City Council"},{"n":"Richard Firstner","r":"Ocoee City Council"},{"n":"Rosemary Wilsen","r":"Ocoee City Council"},{"n":"Rusty Johnson","r":"Mayor of Ocoee"},{"n":"Scott Kennedy","r":"Ocoee City Council"}]},{"m":"Orlando","p":[{"n":"Antonio L. Ortiz","r":"Orlando City Council"},{"n":"Antonio Ortiz","r":"Orlando City Council - District 2"},{"n":"Bakari F. Burns","r":"Orlando City Council"},{"n":"Bakari F. Burns","r":"Orlando City Council - District 6"},{"n":"Buddy Dyer","r":"Mayor of Orlando"},{"n":"Patty Sheehan","r":"Orlando City Council"},{"n":"Patty Sheehan","r":"Orlando City Council - District 4"},{"n":"Roger Chapin","r":"Orlando City Council"},{"n":"Roger Chapin","r":"Orlando City Council - District 3"},{"n":"Shan Rose","r":"Orlando City Council"},{"n":"Shan Rose","r":"Orlando City Council - District 5"},{"n":"Tom Keen","r":"Orlando City Council"},{"n":"Tom Keen","r":"Orlando City Council - District 1"}]},{"m":"Windermere","p":[{"n":"Brandi Haines","r":"Windermere City Council"},{"n":"CT Allen","r":"Windermere City Council"},{"n":"Jim O'Brien","r":"Mayor of Windermere"},{"n":"Mandy David","r":"Windermere City Council"},{"n":"Tom Stroup","r":"Windermere City Council"},{"n":"Tony Davit","r":"Windermere City Council"}]},{"m":"Winter Garden","p":[{"n":"Chloe Johnson","r":"Winter Garden City Council"},{"n":"Colin Sharman","r":"Winter Garden City Council"},{"n":"Iliana R. Jones","r":"Winter Garden City Council"},{"n":"John Rees","r":"Mayor of Winter Garden"},{"n":"Lisa L. Bennett","r":"Winter Garden City Council"}]},{"m":"Winter Park","p":[{"n":"Craig Russell","r":"Winter Park City Council"},{"n":"Elizabeth Ingram","r":"Winter Park City Council"},{"n":"Kristopher Cruzada","r":"Winter Park City Council"},{"n":"Sheila DeCiccio","r":"Mayor of Winter Park"},{"n":"Warren Lindsey","r":"Winter Park City Council"}]}],"slug":"orange"},"12097":{"county":[{"n":"Anthony Cook","r":"Osceola County School Board"},{"n":"Armando Ramirez","r":"Clerk of Court, Osceola County"},{"n":"Brandon Arrington","r":"Commissioner, Osceola County"},{"n":"Bruce Vickers","r":"Tax Collector, Osceola County"},{"n":"Cheryl Grieb","r":"Commissioner, Osceola County"},{"n":"Erika Booth","r":"Osceola County School Board"},{"n":"Heather Kahoun","r":"Osceola County School Board"},{"n":"Katrina Scarborough","r":"Property Appraiser, Osceola County"},{"n":"Kelvin Soto","r":"Clerk of Court, Osceola County"},{"n":"Marcos Lopez","r":"Sheriff, Osceola County"},{"n":"Mary Jane Arrington","r":"Supervisor of Elections, Osceola County"},{"n":"Paula Bronson","r":"Osceola County School Board"},{"n":"Peggy Choudhry","r":"Commissioner, Osceola County"},{"n":"Ricky Booth","r":"Commissioner, Osceola County"},{"n":"Russell Gibson","r":"Sheriff, Osceola County"},{"n":"Teresa \"Terry\" Castillo","r":"Osceola County School Board"},{"n":"Viviana Janer","r":"Commissioner, Osceola County"}],"munis":[{"m":"Kissimmee","p":[{"n":"Carlos Alvarez","r":"Kissimmee City Council"},{"n":"Jackie Espinosa","r":"Mayor of Kissimmee"},{"n":"Janette Martinez","r":"Kissimmee City Council"},{"n":"Noel Ortiz","r":"Kissimmee City Council"}]},{"m":"St. Cloud","p":[{"n":"Chris Robertson","r":"Mayor of St. Cloud"},{"n":"Jennifer Paul","r":"St. Cloud City Council"},{"n":"Ken Gilbert","r":"St. Cloud City Council"},{"n":"Kolby Urban","r":"St. Cloud City Council"},{"n":"Shawn Fletcher","r":"St. Cloud City Council"}]}],"slug":"osceola"},"12099":{"county":[{"n":"Anne Gannon","r":"Tax Collector, Palm Beach County"},{"n":"Bobby Powell","r":"Commissioner, Palm Beach County"},{"n":"David Kerner","r":"Commissioner, Palm Beach County"},{"n":"Dorothy Jacks","r":"Property Appraiser, Palm Beach County"},{"n":"Edwin Ferguson","r":"Palm Beach County School Board"},{"n":"Erica Whitfield","r":"Palm Beach County School Board"},{"n":"Gloria Branch","r":"Palm Beach County School Board"},{"n":"Gregg Weiss","r":"Commissioner, Palm Beach County"},{"n":"Joel Flores","r":"Commissioner, Palm Beach County"},{"n":"Joseph Abruzzo","r":"Clerk of Court, Palm Beach County"},{"n":"Karen Brill","r":"Palm Beach County School Board"},{"n":"Mack Bernard","r":"Commissioner, Palm Beach County"},{"n":"Marcia Andrews","r":"Palm Beach County School Board"},{"n":"Marcia Woodward","r":"Commissioner, Palm Beach County"},{"n":"Maria Sachs","r":"Commissioner, Palm Beach County"},{"n":"Matthew Jay Lane","r":"Palm Beach County School Board"},{"n":"Michael Barnett","r":"Commissioner, Palm Beach County"},{"n":"Ric Bradshaw","r":"Sheriff, Palm Beach County"},{"n":"Sara Baxter","r":"Commissioner, Palm Beach County"},{"n":"Sharon Bock","r":"Clerk of Court, Palm Beach County"},{"n":"Virginia Savietto","r":"Palm Beach County School Board"},{"n":"Wendy Sartory Link","r":"Supervisor of Elections, Palm Beach County"},{"n":"Wendy Sartory-Link","r":"Supervisor of Elections, Palm Beach County"}],"munis":[{"m":"Atlantis","p":[{"n":"Allan Kaulbach","r":"Atlantis City Council"},{"n":"Derek Cooper","r":"Atlantis City Council"},{"n":"Keller Lanahan","r":"Mayor of Atlantis"},{"n":"Michael LaCoursiere","r":"Atlantis City Council"}]},{"m":"Belle Glade","p":[{"n":"Joaquin Almazan","r":"Belle Glade City Council"},{"n":"Robert L. Rease","r":"Belle Glade City Council"},{"n":"Sorilinda Santiago","r":"Belle Glade City Council"},{"n":"Steve B. Wilson","r":"Mayor of Belle Glade"},{"n":"Tequella Collins","r":"Belle Glade City Council"}]},{"m":"Boca Raton","p":[{"n":"Jon Pearlman","r":"Boca Raton City Council"},{"n":"Marc Wigder","r":"Boca Raton City Council"},{"n":"Michelle Grau","r":"Boca Raton City Council"},{"n":"Scott Singer","r":"Mayor of Boca Raton"},{"n":"Yvette Drucker","r":"Boca Raton City Council"}]},{"m":"Boynton Beach","p":[{"n":"Aimee Kelley","r":"Boynton Beach City Council"},{"n":"Angela Cruz","r":"Boynton Beach City Council"},{"n":"Mack McCray","r":"Boynton Beach City Council"},{"n":"Rebecca Shelton","r":"Mayor of Boynton Beach"},{"n":"Woodrow L. Hay","r":"Boynton Beach City Council"}]},{"m":"Briny Breezes","p":[{"n":"Bill Birch","r":"Mayor of Briny Breezes"},{"n":"David White","r":"Briny Breezes City Council"},{"n":"Holly Reitnauer","r":"Briny Breezes City Council"},{"n":"Jeff Duncan","r":"Briny Breezes City Council"},{"n":"Liz Loper","r":"Briny Breezes City Council"}]},{"m":"Cloud Lake","p":[{"n":"Alexandra Powell Sardinas","r":"Cloud Lake City Council"},{"n":"John Tyson","r":"Cloud Lake City Council"},{"n":"Kathleen Hoock","r":"Cloud Lake City Council"},{"n":"Marion Chateau-Flagg","r":"Cloud Lake City Council"},{"n":"Russell E. Nidy","r":"Mayor of Cloud Lake"}]},{"m":"Delray Beach","p":[{"n":"Angela Burns","r":"Delray Beach City Council"},{"n":"Judy Mollica","r":"Delray Beach City Council"},{"n":"Juli Casale","r":"Delray Beach City Council"},{"n":"Thomas Markert","r":"Delray Beach City Council"},{"n":"Tom Carney","r":"Mayor of Delray Beach"}]},{"m":"Glen Ridge","p":[{"n":"Alice McLane","r":"Mayor of Glen Ridge"},{"n":"Eusebio Morales","r":"Glen Ridge City Council"},{"n":"Leila Rothe","r":"Glen Ridge City Council"},{"n":"Taylor Jantz","r":"Glen Ridge City Council"},{"n":"Thomas Lisi","r":"Glen Ridge City Council"}]},{"m":"Golf","p":[{"n":"Angela Holiday","r":"Golf City Council"},{"n":"Betsy Hvide","r":"Golf City Council"},{"n":"J. Marshall Duane","r":"Golf City Council"},{"n":"Peter Hamilton","r":"Mayor of Golf"},{"n":"Susannah Rothenberg","r":"Golf City Council"}]},{"m":"Greenacres","p":[{"n":"Charles E. Shaw","r":"Mayor of Greenacres"},{"n":"Elisa Leheny","r":"Greenacres City Council"},{"n":"John Tharp","r":"Greenacres City Council"},{"n":"Judith Dugo","r":"Greenacres City Council"},{"n":"Peter A. Noble","r":"Greenacres City Council"},{"n":"Susy Diaz","r":"Greenacres City Council"}]},{"m":"Gulf Stream","p":[{"n":"Joan K. Orthwein","r":"Gulf Stream City Council"},{"n":"Michael Greene","r":"Gulf Stream City Council"},{"n":"Robert Canfield","r":"Gulf Stream City Council"},{"n":"Scott W. Morgan","r":"Mayor of Gulf Stream"},{"n":"Thomas Stanley","r":"Gulf Stream City Council"}]},{"m":"Haverhill","p":[{"n":"Dennis Withington","r":"Haverhill City Council"},{"n":"Jay G. Foy","r":"Mayor of Haverhill"},{"n":"Lawrence Gordon","r":"Haverhill City Council"},{"n":"Mark C. Uptegraph","r":"Haverhill City Council"},{"n":"Teresa Johnson","r":"Haverhill City Council"}]},{"m":"Highland Beach","p":[{"n":"David Stern","r":"Highland Beach City Council"},{"n":"Donald Peters","r":"Highland Beach City Council"},{"n":"Jason Chudnofsky","r":"Highland Beach City Council"},{"n":"Judith M. Goldberg","r":"Highland Beach City Council"},{"n":"Natasha Moore","r":"Mayor of Highland Beach"}]},{"m":"Hypoluxo","p":[{"n":"Bradley Doyle","r":"Hypoluxo City Council"},{"n":"Christine Nagy","r":"Hypoluxo City Council"},{"n":"Linda Allen","r":"Hypoluxo City Council"},{"n":"Michael C. Brown","r":"Mayor of Hypoluxo"},{"n":"Richard J. Roney","r":"Hypoluxo City Council"},{"n":"Robert Leupp","r":"Hypoluxo City Council"}]},{"m":"Juno Beach","p":[{"n":"DD Halpern","r":"Juno Beach City Council"},{"n":"Dave Santilli","r":"Mayor of Juno Beach"},{"n":"Diana Davis","r":"Juno Beach City Council"},{"n":"Jacob Rosengarten","r":"Juno Beach City Council"},{"n":"Max Fraser","r":"Juno Beach City Council"}]},{"m":"Jupiter","p":[{"n":"Dan Guisinger","r":"Jupiter City Council"},{"n":"Jim Kuretski","r":"Mayor of Jupiter"},{"n":"Malise Sundstrom","r":"Jupiter City Council"},{"n":"Phyllis Choy","r":"Jupiter City Council"},{"n":"Ron Delaney","r":"Jupiter City Council"}]},{"m":"Jupiter Inlet Colony","p":[{"n":"Anna Nemes","r":"Jupiter Inlet Colony City Council"},{"n":"Bill Muir","r":"Mayor of Jupiter Inlet Colony"},{"n":"David Shula","r":"Jupiter Inlet Colony City Council"},{"n":"Janet Saura","r":"Jupiter Inlet Colony City Council"},{"n":"Mark Ciarfella","r":"Jupiter Inlet Colony City Council"}]},{"m":"Lake Clarke Shores","p":[{"n":"Bridget Keating","r":"Lake Clarke Shores City Council"},{"n":"Christy Maasbach","r":"Mayor of Lake Clarke Shores"},{"n":"Gregory Freebold","r":"Lake Clarke Shores City Council"},{"n":"Taylor Materio","r":"Lake Clarke Shores City Council"}]},{"m":"Lake Park","p":[{"n":"John L. Linden","r":"Lake Park City Council"},{"n":"Judith Thomas","r":"Lake Park City Council"},{"n":"Michael Hensley","r":"Lake Park City Council"},{"n":"Michael O'Rourke","r":"Lake Park City Council"},{"n":"Roger Michaud","r":"Mayor of Lake Park"}]},{"m":"Lake Worth Beach","p":[{"n":"Anthony Segrich","r":"Lake Worth Beach City Council"},{"n":"Betty Resch","r":"Mayor of Lake Worth Beach"},{"n":"Christopher McVoy","r":"Lake Worth Beach City Council"},{"n":"Mimi May","r":"Lake Worth Beach City Council"},{"n":"Sarah Malega","r":"Lake Worth Beach City Council"}]},{"m":"Lantana","p":[{"n":"Chris Castle","r":"Lantana City Council"},{"n":"Jesse Rivero","r":"Lantana City Council"},{"n":"Karen Lythgoe","r":"Mayor of Lantana"},{"n":"Kem Mason","r":"Lantana City Council"},{"n":"Mark Zeitler","r":"Lantana City Council"}]},{"m":"Manalapan","p":[{"n":"Cindy McMackin","r":"Manalapan City Council"},{"n":"David Knobel","r":"Manalapan City Council"},{"n":"Dwight Kulwin","r":"Manalapan City Council"},{"n":"Elliot Bonner","r":"Manalapan City Council"},{"n":"John Deese","r":"Mayor of Manalapan"},{"n":"Orla Imbesi","r":"Manalapan City Council"},{"n":"Simone Bonutti","r":"Manalapan City Council"}]},{"m":"Mangonia Park","p":[{"n":"Clarence R. McConnell","r":"Mangonia Park City Council"},{"n":"Kelisha Buchanan-Webb","r":"Mangonia Park City Council"},{"n":"Lisa Davis-Quince","r":"Mangonia Park City Council"},{"n":"Sarita C. Johnson","r":"Mangonia Park City Council"},{"n":"William H. Albury","r":"Mayor of Mangonia Park"}]},{"m":"North Palm Beach","p":[{"n":"Deborah Searcy","r":"North Palm Beach City Council"},{"n":"Kendra Zellner","r":"North Palm Beach City Council"},{"n":"Lisa Interlandi","r":"Mayor of North Palm Beach"},{"n":"Orlando Puyol","r":"North Palm Beach City Council"},{"n":"Susan Bickel","r":"North Palm Beach City Council"}]},{"m":"Ocean Ridge","p":[{"n":"Ainar Aijala","r":"Ocean Ridge City Council"},{"n":"Carolyn Cassidy","r":"Ocean Ridge City Council"},{"n":"Geoffrey A. Pugh","r":"Mayor of Ocean Ridge"},{"n":"Steve Coz","r":"Ocean Ridge City Council"}]},{"m":"Pahokee","p":[{"n":"Everett D. McPherson","r":"Pahokee City Council"},{"n":"Isabelle J. McDonald","r":"Pahokee City Council"},{"n":"James H. Scott","r":"Pahokee City Council"},{"n":"Keith W. Babb","r":"Mayor of Pahokee"},{"n":"Sanquetta Cowan-Williams","r":"Pahokee City Council"}]},{"m":"Palm Beach","p":[{"n":"Bridget Moran","r":"Palm Beach City Council"},{"n":"Danielle H. Moore","r":"Mayor of Palm Beach"},{"n":"Edward Cooney","r":"Palm Beach City Council"},{"n":"Julie Araskog","r":"Palm Beach City Council"},{"n":"Lewis S.W. Crampton","r":"Palm Beach City Council"},{"n":"Nicki McDonald","r":"Palm Beach City Council"}]},{"m":"Palm Beach Gardens","p":[{"n":"Dana P. Middleton","r":"Mayor of Palm Beach Gardens"},{"n":"John D. Kemp","r":"Palm Beach Gardens City Council"},{"n":"Marcie Tinsley","r":"Palm Beach Gardens City Council"},{"n":"Rachelle A. Litt","r":"Palm Beach Gardens City Council"},{"n":"Robert G. Premuroso","r":"Palm Beach Gardens City Council"}]},{"m":"Palm Beach Shores","p":[{"n":"Anastasia Karloutsos","r":"Palm Beach Shores City Council"},{"n":"Roby DeReuil","r":"Palm Beach Shores City Council"},{"n":"Steven Smith","r":"Palm Beach Shores City Council"},{"n":"Tony Lembo","r":"Palm Beach Shores City Council"},{"n":"Tracy Larcher","r":"Mayor of Palm Beach Shores"}]},{"m":"Palm Springs","p":[{"n":"Bev Smith","r":"Mayor of Palm Springs"},{"n":"Gary M. Ready","r":"Palm Springs City Council"},{"n":"Johnnie Tieche","r":"Palm Springs City Council"},{"n":"Kimberly Ann Schmitz","r":"Palm Springs City Council"},{"n":"Patricia Waller","r":"Palm Springs City Council"}]},{"m":"Riviera Beach","p":[{"n":"Bruce Guyton","r":"Riviera Beach City Council"},{"n":"Douglas Lawson","r":"Mayor of Riviera Beach"},{"n":"Fercella Davis Panier","r":"Riviera Beach City Council"},{"n":"Glen Spiritis","r":"Riviera Beach City Council"},{"n":"KaShamba Miller-Anderson","r":"Riviera Beach City Council"},{"n":"Shirley Lanier","r":"Riviera Beach City Council"}]},{"m":"Royal Palm Beach","p":[{"n":"Jan Rodusky","r":"Royal Palm Beach City Council"},{"n":"Jeff Hmara","r":"Mayor of Royal Palm Beach"},{"n":"Richard Valuntas","r":"Royal Palm Beach City Council"},{"n":"Selena Samios","r":"Royal Palm Beach City Council"},{"n":"Sylvia Sharps","r":"Royal Palm Beach City Council"}]},{"m":"South Bay","p":[{"n":"Albert L. Polk","r":"South Bay City Council"},{"n":"Barbara King","r":"South Bay City Council"},{"n":"Betty Barnard","r":"South Bay City Council"},{"n":"Joe Kyles","r":"Mayor of South Bay"},{"n":"Taranza McKelvin","r":"South Bay City Council"}]},{"m":"South Palm Beach","p":[{"n":"Adrian J. Burcet","r":"South Palm Beach City Council"},{"n":"Francesca Attardi","r":"South Palm Beach City Council"},{"n":"Rafael Pineiro","r":"Mayor of South Palm Beach"},{"n":"Raymond McMillan","r":"South Palm Beach City Council"},{"n":"Sandra Beckett","r":"South Palm Beach City Council"}]},{"m":"Tequesta","p":[{"n":"Kyle Stone","r":"Tequesta City Council"},{"n":"Laurie Brandon","r":"Tequesta City Council"},{"n":"Molly Young","r":"Mayor of Tequesta"},{"n":"Patrick Painter","r":"Tequesta City Council"},{"n":"Rick Sartory","r":"Tequesta City Council"}]},{"m":"Wellington","p":[{"n":"Maria Antuña","r":"Wellington City Council"},{"n":"Michael Napoleone","r":"Mayor of Wellington"},{"n":"Stephen A. Levin","r":"Wellington City Council"}]},{"m":"West Palm Beach","p":[{"n":"Cathleen Ward","r":"West Palm Beach City Council"},{"n":"Christy Fox","r":"West Palm Beach City Council"},{"n":"Joseph A. Peduzzi","r":"West Palm Beach City Council"},{"n":"Keith A. James","r":"Mayor of West Palm Beach"},{"n":"Shalonda Warren","r":"West Palm Beach City Council"},{"n":"Stephen Sylvester","r":"West Palm Beach City Council"}]}],"slug":"palm-beach"},"12101":{"county":[{"n":"Al Hernandez","r":"Pasco County School Board"},{"n":"Brian Corley","r":"Supervisor of Elections, Pasco County"},{"n":"Chris Nocco","r":"Sheriff, Pasco County"},{"n":"Colleen Beaudoin","r":"Pasco County School Board"},{"n":"Cynthia Armstrong","r":"Pasco County School Board"},{"n":"Gary Joiner","r":"Property Appraiser, Pasco County"},{"n":"Jack Mariano","r":"Commissioner, Pasco County"},{"n":"Jessica Wright","r":"Pasco County School Board"},{"n":"Kathryn Starkey","r":"Commissioner, Pasco County"},{"n":"Lisa Yeager","r":"Commissioner, Pasco County"},{"n":"Megan Harding","r":"Pasco County School Board"},{"n":"Mike Fasano","r":"Tax Collector, Pasco County"},{"n":"Mike Wells","r":"Property Appraiser, Pasco County"},{"n":"Nikki Alvarez-Sowles","r":"Clerk of Court, Pasco County"},{"n":"Paula O'Neil","r":"Clerk of Court, Pasco County"},{"n":"Ronald Oakley","r":"Commissioner, Pasco County"},{"n":"Seth Weightman","r":"Commissioner, Pasco County"}],"munis":[{"m":"Dade City","p":[{"n":"Ann Cosentino","r":"Dade City City Council"},{"n":"James D. Shive","r":"Dade City City Council"},{"n":"Kristin Church","r":"Dade City City Council"},{"n":"Normita Woodard","r":"Dade City City Council"},{"n":"Scott Black","r":"Mayor of Dade City"}]},{"m":"New Port Richey","p":[{"n":"Bertell Butler","r":"New Port Richey City Council"},{"n":"Brian Jonas","r":"New Port Richey City Council"},{"n":"Chopper Davis","r":"Mayor of New Port Richey"},{"n":"Matt Murphy","r":"New Port Richey City Council"},{"n":"Peter Altman","r":"New Port Richey City Council"}]},{"m":"Port Richey","p":[{"n":"Chris Maher","r":"Port Richey City Council"},{"n":"John Eric Hoover","r":"Mayor of Port Richey"},{"n":"Lisa Burke","r":"Port Richey City Council"},{"n":"Robert Hubbard","r":"Port Richey City Council"}]},{"m":"San Antonio","p":[{"n":"Blaze Drinkwine","r":"San Antonio City Council"},{"n":"Caitlin Bolender","r":"San Antonio City Council"},{"n":"John Vogel","r":"Mayor of San Antonio"},{"n":"Randy Huckabee","r":"San Antonio City Council"},{"n":"Sasha Madden","r":"San Antonio City Council"}]},{"m":"St. Leo","p":[{"n":"Apollo Rodriguez","r":"St. Leo City Council"},{"n":"Curtis Dwyer","r":"St. Leo City Council"},{"n":"Donna DeWitt","r":"St. Leo City Council"},{"n":"Vincent D'Ambrosio","r":"Mayor of St. Leo"},{"n":"William E. Hamilton","r":"St. Leo City Council"}]},{"m":"Zephyrhills","p":[{"n":"Charles E. Proctor","r":"Zephyrhills City Council"},{"n":"Jodi Wilkeson","r":"Zephyrhills City Council"},{"n":"Kenneth M. Burgess","r":"Zephyrhills City Council"},{"n":"Lance A. Smith","r":"Zephyrhills City Council"},{"n":"Melonie Bahr Monson","r":"Mayor of Zephyrhills"},{"n":"Steven F. Spina","r":"Zephyrhills City Council"}]}],"slug":"pasco"},"12103":{"county":[{"n":"Adam Ross","r":"Tax Collector, Pinellas County"},{"n":"Brian Scott","r":"Commissioner, Pinellas County"},{"n":"Caprice Edmond","r":"Pinellas County School Board"},{"n":"Caprice Edmond","r":"Pinellas County School Board - Chair, District 7"},{"n":"Charles Thomas","r":"Tax Collector, Pinellas County"},{"n":"Charlie Justice","r":"Commissioner, Pinellas County"},{"n":"Chris Latvala","r":"Commissioner, Pinellas County"},{"n":"Chris Scherer","r":"Commissioner, Pinellas County"},{"n":"Dave Eggers","r":"Commissioner, Pinellas County"},{"n":"Dawn M. Peters","r":"Pinellas County School Board - Vice Chair, At Large 3"},{"n":"Dawn Peters","r":"Pinellas County School Board"},{"n":"Eileen M. Long","r":"Pinellas County School Board"},{"n":"Eileen M. Long","r":"Pinellas County School Board - District 4"},{"n":"Janet Long","r":"Commissioner, Pinellas County"},{"n":"Julie Marcus","r":"Supervisor of Elections, Pinellas County"},{"n":"Kathleen Peters","r":"Commissioner, Pinellas County"},{"n":"Katie Blaxberg","r":"Pinellas County School Board"},{"n":"Katie Blaxberg","r":"Pinellas County School Board - District 5"},{"n":"Ken Burke","r":"Clerk of Court, Pinellas County"},{"n":"Laura Hine","r":"Pinellas County School Board"},{"n":"Laura Hine","r":"Pinellas County School Board - At Large 1"},{"n":"Lisa Cane","r":"Pinellas County School Board"},{"n":"Lisa N. Cane","r":"Pinellas County School Board - At Large 2"},{"n":"Mike Twitty","r":"Property Appraiser, Pinellas County"},{"n":"Rene Flowers","r":"Commissioner, Pinellas County"},{"n":"Robert Gualtieri","r":"Sheriff, Pinellas County"},{"n":"Stephanie Meyer","r":"Pinellas County School Board - District 6"},{"n":"Vince Nowicki","r":"Commissioner, Pinellas County"}],"munis":[{"m":"Belleair","p":[{"n":"Michael Wilkinson","r":"Mayor of Belleair"},{"n":"Patricia Barris","r":"Belleair City Council"},{"n":"Thomas E. Shelly","r":"Belleair City Council"},{"n":"Thomas Kelly","r":"Belleair City Council"},{"n":"Todd Jennings","r":"Belleair City Council"}]},{"m":"Belleair Beach","p":[{"n":"Anders Wellings","r":"Belleair Beach City Council"},{"n":"Frank Bankard","r":"Belleair Beach City Council"},{"n":"Jody Shirley","r":"Belleair Beach City Council"},{"n":"Kimberly Shaw Elliott","r":"Belleair Beach City Council"},{"n":"Lloyd Roberts","r":"Belleair Beach City Council"},{"n":"Michael D. Gattis","r":"Mayor of Belleair Beach"},{"n":"Todd Harper","r":"Belleair Beach City Council"}]},{"m":"Belleair Bluffs","p":[{"n":"Chris Arbutine","r":"Mayor of Belleair Bluffs"},{"n":"David Roberts","r":"Belleair Bluffs City Council"},{"n":"Joseph Barkley","r":"Belleair Bluffs City Council"},{"n":"Karen Rafferty","r":"Belleair Bluffs City Council"},{"n":"Suzy S. Sofer","r":"Belleair Bluffs City Council"}]},{"m":"Belleair Shore","p":[{"n":"Daniel Storie","r":"Belleair Shore City Council"},{"n":"Michael Tolbert","r":"Belleair Shore City Council"},{"n":"Robert Lally","r":"Belleair Shore City Council"},{"n":"Steve Blume","r":"Mayor of Belleair Shore"},{"n":"Susan Cain","r":"Belleair Shore City Council"}]},{"m":"Clearwater","p":[{"n":"Bruce Rector","r":"Mayor of Clearwater"},{"n":"David Allbritton","r":"Clearwater City Council"},{"n":"Lina Teixeira","r":"Clearwater City Council"},{"n":"Michael Mannino","r":"Clearwater City Council"},{"n":"Ryan Cotton","r":"Clearwater City Council"}]},{"m":"Dunedin","p":[{"n":"Jeff Gow","r":"Dunedin City Council"},{"n":"Maureen 'Moe' Freaney","r":"Mayor of Dunedin"},{"n":"Robert Walker","r":"Dunedin City Council"},{"n":"Steven Sandbergen","r":"Dunedin City Council"},{"n":"William Dugard","r":"Dunedin City Council"}]},{"m":"Gulfport","p":[{"n":"Jennifer Daunch","r":"Gulfport City Council"},{"n":"Karen Love","r":"Mayor of Gulfport"},{"n":"Marlene Shaw","r":"Gulfport City Council"},{"n":"Nancy Earley","r":"Gulfport City Council"}]},{"m":"Indian Rocks Beach","p":[{"n":"Hilary King","r":"Indian Rocks Beach City Council"},{"n":"Janet Wilson","r":"Indian Rocks Beach City Council"},{"n":"John Bigelow","r":"Indian Rocks Beach City Council"},{"n":"Kellee Watt","r":"Indian Rocks Beach City Council"},{"n":"Lan Vaughan","r":"Mayor of Indian Rocks Beach"}]},{"m":"Indian Shores","p":[{"n":"Diantha Schear","r":"Mayor of Indian Shores"},{"n":"Ellen Bauer","r":"Indian Shores City Council"},{"n":"Mark Housman","r":"Indian Shores City Council"},{"n":"Michael Howard","r":"Indian Shores City Council"},{"n":"Nicholas Menchise","r":"Indian Shores City Council"}]},{"m":"Kenneth City","p":[{"n":"Bonnie A. Noble","r":"Kenneth City City Council"},{"n":"Donald Kinney","r":"Kenneth City City Council"},{"n":"Robert Arrison","r":"Mayor of Kenneth City"},{"n":"Tony Chan","r":"Kenneth City City Council"}]},{"m":"Largo","p":[{"n":"Christopher Johnson","r":"Largo City Council"},{"n":"Curtis A. Holmes","r":"Largo City Council"},{"n":"Donna Holck","r":"Largo City Council"},{"n":"John Lauser","r":"Largo City Council"},{"n":"Michael DiBrizzi","r":"Largo City Council"},{"n":"Michael Smith","r":"Largo City Council"},{"n":"Woody Brown","r":"Mayor of Largo"}]},{"m":"Madeira Beach","p":[{"n":"Anne-Marie Brooks","r":"Mayor of Madeira Beach"},{"n":"Charles Dillon","r":"Madeira Beach City Council"},{"n":"David Tagliarini","r":"Madeira Beach City Council"},{"n":"Eddie McGeehen","r":"Madeira Beach City Council"},{"n":"Housh Ghovaee","r":"Madeira Beach City Council"}]},{"m":"North Redington Beach","p":[{"n":"Corey Thornton","r":"North Redington Beach City Council"},{"n":"Jay A. Super","r":"Mayor of North Redington Beach"},{"n":"John Messmore","r":"North Redington Beach City Council"},{"n":"Kevin Kennedy","r":"North Redington Beach City Council"},{"n":"Richard Nagrabski","r":"North Redington Beach City Council"}]},{"m":"Oldsmar","p":[{"n":"Cyndi Olmstead","r":"Oldsmar City Council"},{"n":"Katie Gannon","r":"Mayor of Oldsmar"},{"n":"Sean Swauger","r":"Oldsmar City Council"},{"n":"Steve Graber","r":"Oldsmar City Council"},{"n":"Valerie Tatarzewksi","r":"Oldsmar City Council"}]},{"m":"Pinellas Park","p":[{"n":"Keith V. Sabiel","r":"Pinellas Park City Council"},{"n":"Patti Reed","r":"Pinellas Park City Council"},{"n":"Ricky Butler","r":"Pinellas Park City Council"},{"n":"Sandra L. Bradbury","r":"Mayor of Pinellas Park"},{"n":"Tim Caddell","r":"Pinellas Park City Council"}]},{"m":"Redington Beach","p":[{"n":"David Will","r":"Mayor of Redington Beach"},{"n":"James Murray","r":"Redington Beach City Council"},{"n":"Rich Cariello","r":"Redington Beach City Council"},{"n":"Tim Thompson","r":"Redington Beach City Council"}]},{"m":"Redington Shores","p":[{"n":"CJ Hoyt","r":"Redington Shores City Council"},{"n":"Erin Schoos","r":"Redington Shores City Council"},{"n":"Larry Maynard","r":"Redington Shores City Council"},{"n":"Tom Kapper","r":"Mayor of Redington Shores"}]},{"m":"Safety Harbor","p":[{"n":"Andy Steingold","r":"Safety Harbor City Council"},{"n":"Jacob Burnett","r":"Safety Harbor City Council"},{"n":"Joe Ayoub","r":"Mayor of Safety Harbor"},{"n":"Kevin Shanks","r":"Safety Harbor City Council"},{"n":"Nancy Besore","r":"Safety Harbor City Council"}]},{"m":"Seminole","p":[{"n":"Alan Shields","r":"Seminole City Council"},{"n":"Christopher Burke","r":"Seminole City Council"},{"n":"James Quinn","r":"Seminole City Council"},{"n":"Latisha 'Trish' Springer","r":"Seminole City Council"},{"n":"Leslie Waters","r":"Mayor of Seminole"},{"n":"Raymond Beliveau","r":"Seminole City Council"},{"n":"Thomas Barnhorn","r":"Seminole City Council"}]},{"m":"South Pasadena","p":[{"n":"Arthur Penny","r":"Mayor of South Pasadena"},{"n":"Gail Neidinger","r":"South Pasadena City Council"},{"n":"Lynda Thompson","r":"South Pasadena City Council"},{"n":"Mark McAlees","r":"South Pasadena City Council"},{"n":"Thomas B. Reid","r":"South Pasadena City Council"}]},{"m":"St. Pete Beach","p":[{"n":"Al Causey","r":"St. Pete Beach City Council"},{"n":"Jon Maldonado","r":"St. Pete Beach City Council"},{"n":"Karen Marriott","r":"St. Pete Beach City Council"},{"n":"Lisa Robinson","r":"St. Pete Beach City Council"},{"n":"Scott Tate","r":"Mayor of St. Pete Beach"}]},{"m":"St. Petersburg","p":[{"n":"Brandi Gabbard","r":"St. Petersburg City Council"},{"n":"Copley Gerdes","r":"St. Petersburg City Council"},{"n":"Corey Givens","r":"St. Petersburg City Council"},{"n":"Gina Driscoll","r":"St. Petersburg City Council"},{"n":"Kenneth T. Welch","r":"Mayor of St. Petersburg"},{"n":"Lisset Hanewicz","r":"St. Petersburg City Council"},{"n":"Mike Harting","r":"St. Petersburg City Council"},{"n":"Richie Floyd","r":"St. Petersburg City Council"}]},{"m":"Tarpon Springs","p":[{"n":"David Banther","r":"Tarpon Springs City Council"},{"n":"Frank DiDonato","r":"Tarpon Springs City Council"},{"n":"John Koulianos","r":"Mayor of Tarpon Springs"},{"n":"Mike Eisner","r":"Tarpon Springs City Council"},{"n":"Panagiotis Koulias","r":"Tarpon Springs City Council"}]},{"m":"Treasure Island","p":[{"n":"Arden Dickey","r":"Treasure Island City Council"},{"n":"Arthur Czyszczon","r":"Treasure Island City Council"},{"n":"Chris Clark","r":"Treasure Island City Council"},{"n":"John Doctor","r":"Mayor of Treasure Island"}]}],"slug":"pinellas"},"12105":{"county":[{"n":"Becky Troutman","r":"Commissioner, Polk County"},{"n":"Bill Braswell","r":"Commissioner, Polk County"},{"n":"Dr. William Allen","r":"Polk County School Board - District 1"},{"n":"George Lindsey","r":"Commissioner, Polk County"},{"n":"Grady Judd","r":"Sheriff, Polk County"},{"n":"Joe Tedder","r":"Tax Collector, Polk County"},{"n":"Justin Sharpless","r":"Polk County School Board"},{"n":"Kate Wallace","r":"Polk County School Board - District 3"},{"n":"Kay Fields","r":"Polk County School Board"},{"n":"Lisa Miller","r":"Polk County School Board"},{"n":"Lori Edwards","r":"Supervisor of Elections, Polk County"},{"n":"Marsha Faux","r":"Property Appraiser, Polk County"},{"n":"Martha Santiago","r":"Commissioner, Polk County"},{"n":"Melony Bell","r":"Supervisor of Elections, Polk County"},{"n":"Mike Scott","r":"Commissioner, Polk County"},{"n":"Neil Combee","r":"Property Appraiser, Polk County"},{"n":"Rick Nolte","r":"Polk County School Board"},{"n":"Rick Wilson","r":"Commissioner, Polk County"},{"n":"Sara Beth Reynolds Wyatt","r":"Polk County School Board"},{"n":"Sara Beth Wyatt","r":"Polk County School Board - District 4"},{"n":"Stacy Butterfield","r":"Clerk of Court, Polk County"},{"n":"Travis Keyes","r":"Polk County School Board"},{"n":"Travis L. Keyes","r":"Polk County School Board - Vice Chair, District 2"},{"n":"William Allen","r":"Polk County School Board"}],"munis":[{"m":"Auburndale","p":[{"n":"Alex Cam","r":"Mayor of Auburndale"},{"n":"Crystal Tijerina","r":"Auburndale City Council"},{"n":"Jordan Helms","r":"Auburndale City Council"},{"n":"Keith Cowie","r":"Auburndale City Council"},{"n":"Travis Avery","r":"Auburndale City Council"}]},{"m":"Bartow","p":[{"n":"Gary Ball","r":"Bartow City Council"},{"n":"Laura Simpson","r":"Bartow City Council"},{"n":"Leo E. Longworth","r":"Bartow City Council"},{"n":"Tanya Tucker","r":"Mayor of Bartow"},{"n":"Trish Pfeiffer","r":"Bartow City Council"}]},{"m":"Davenport","p":[{"n":"Donna Fellows-Coffey","r":"Mayor of Davenport"},{"n":"Frank Rivera","r":"Davenport City Council"},{"n":"Jeremy Clark","r":"Davenport City Council"},{"n":"Linda Robinson","r":"Davenport City Council"},{"n":"Tom Fellows","r":"Davenport City Council"}]},{"m":"Dundee","p":[{"n":"Annette Wilson","r":"Dundee City Council"},{"n":"Joe Garrison","r":"Mayor of Dundee"},{"n":"Julia Hunt","r":"Dundee City Council"},{"n":"Mary Richardson","r":"Dundee City Council"},{"n":"Ray Hunt","r":"Dundee City Council"}]},{"m":"Eagle Lake","p":[{"n":"Cory Coler","r":"Mayor of Eagle Lake"},{"n":"Kristen Pita","r":"Eagle Lake City Council"},{"n":"Randy Billings","r":"Eagle Lake City Council"},{"n":"Steven Metosh","r":"Eagle Lake City Council"},{"n":"Steven Williams","r":"Eagle Lake City Council"}]},{"m":"Fort Meade","p":[{"n":"James E. Watts","r":"Mayor of Fort Meade"},{"n":"James W. Schaill","r":"Fort Meade City Council"},{"n":"Jaret Landon Williams","r":"Fort Meade City Council"},{"n":"Petrina McCutchen","r":"Fort Meade City Council"}]},{"m":"Frostproof","p":[{"n":"Adam W. Greenway","r":"Frostproof City Council"},{"n":"Austin Gravley","r":"Frostproof City Council"},{"n":"Leslie Brewer","r":"Frostproof City Council"},{"n":"Michael Hutto","r":"Mayor of Frostproof"},{"n":"Tashana True","r":"Frostproof City Council"}]},{"m":"Haines City","p":[{"n":"Anne Huffman","r":"Haines City City Council"},{"n":"Kimberly Downing","r":"Haines City City Council"},{"n":"Lekia Johnson","r":"Haines City City Council"},{"n":"Morris L. West","r":"Haines City City Council"},{"n":"Vernel Smith","r":"Mayor of Haines City"}]},{"m":"Highland Park","p":[{"n":"Amanda Updike","r":"Highland Park City Council"},{"n":"Steve Railey","r":"Highland Park City Council"}]},{"m":"Hillcrest Heights","p":[{"n":"Jason Harmeling","r":"Hillcrest Heights City Council"},{"n":"Jerry Dohoney","r":"Hillcrest Heights City Council"},{"n":"Michael Bishop","r":"Mayor of Hillcrest Heights"},{"n":"Richard Lee","r":"Hillcrest Heights City Council"},{"n":"Sam Knight","r":"Hillcrest Heights City Council"}]},{"m":"Lake Alfred","p":[{"n":"Brent Eden","r":"Lake Alfred City Council"},{"n":"Jack Dearmin","r":"Lake Alfred City Council"},{"n":"Mac Fuller","r":"Mayor of Lake Alfred"},{"n":"Nancy Z. Daley","r":"Lake Alfred City Council"},{"n":"Ronnie Robinson","r":"Lake Alfred City Council"}]},{"m":"Lake Hamilton","p":[{"n":"Carmen Demanche","r":"Lake Hamilton City Council"},{"n":"Joshua Collier","r":"Lake Hamilton City Council"},{"n":"Marsol Ortega","r":"Lake Hamilton City Council"},{"n":"Phyllis Hall","r":"Mayor of Lake Hamilton"},{"n":"Robert Mathis","r":"Lake Hamilton City Council"}]},{"m":"Lake Wales","p":[{"n":"Carol Gillespie","r":"Lake Wales City Council"},{"n":"Daniel Williams","r":"Lake Wales City Council"},{"n":"Jack Hilligoss","r":"Mayor of Lake Wales"},{"n":"Keith Thompson","r":"Lake Wales City Council"},{"n":"Terri Miller","r":"Lake Wales City Council"}]},{"m":"Lakeland","p":[{"n":"Ashley C. Troutman","r":"Lakeland City Council"},{"n":"Chad McLeod","r":"Lakeland City Council"},{"n":"Guy LaLonde","r":"Lakeland City Council"},{"n":"Mike Musick","r":"Lakeland City Council"},{"n":"Sara R. McCarley","r":"Mayor of Lakeland"},{"n":"Stephanie Madden","r":"Lakeland City Council"},{"n":"Terry Coney","r":"Lakeland City Council"}]},{"m":"Mulberry","p":[{"n":"Collins L. Smith","r":"Mulberry City Council"},{"n":"Dawn McDonald","r":"Mulberry City Council"},{"n":"George H. Hatch","r":"Mayor of Mulberry"},{"n":"Kathryn Smith Barsotti","r":"Mulberry City Council"},{"n":"Neil Devine","r":"Mulberry City Council"},{"n":"Rosa Ayersman","r":"Mulberry City Council"}]},{"m":"Polk City","p":[{"n":"Brian Knouff","r":"Polk City City Council"},{"n":"Donna Martin","r":"Polk City City Council"},{"n":"Joe LaCascia","r":"Mayor of Polk City"},{"n":"Micheal T. Blethen","r":"Polk City City Council"},{"n":"Rick Wilson","r":"Polk City City Council"}]},{"m":"Winter Haven","p":[{"n":"Chad Davis","r":"Winter Haven City Council"},{"n":"Clifton E. Dollison","r":"Winter Haven City Council"},{"n":"L. Tracy Mercer","r":"Winter Haven City Council"},{"n":"Nathaniel J. Birdsong","r":"Winter Haven City Council"},{"n":"William B. Yates","r":"Mayor of Winter Haven"}]}],"slug":"polk"},"12107":{"county":[{"n":"Bill Pickens","r":"Commissioner, Putnam County"},{"n":"Brenda Bridges","r":"Tax Collector, Putnam County"},{"n":"Charles Overturf","r":"Supervisor of Elections, Putnam County"},{"n":"Clay Davis","r":"Property Appraiser, Putnam County"},{"n":"David Buckles","r":"Putnam County School Board"},{"n":"H.D. DeLoach","r":"Sheriff, Putnam County"},{"n":"Holly H. Pickens","r":"Putnam County School Board"},{"n":"Larry Harvey","r":"Commissioner, Putnam County"},{"n":"Linda A. Wagner","r":"Putnam County School Board"},{"n":"Linda Myers","r":"Tax Collector, Putnam County"},{"n":"Paul Adamczyk","r":"Commissioner, Putnam County"},{"n":"Phil Leary","r":"Putnam County School Board"},{"n":"Sandra \"Sandy\" Gilyard","r":"Putnam County School Board"},{"n":"Terry Turner","r":"Commissioner, Putnam County"},{"n":"Tim Parker","r":"Property Appraiser, Putnam County"},{"n":"Tim Smith","r":"Clerk of Court, Putnam County"},{"n":"Walton Pellicer","r":"Commissioner, Putnam County"}],"munis":[{"m":"Crescent City","p":[{"n":"Cynthia Burton","r":"Crescent City City Council"},{"n":"Linda Moore","r":"Crescent City City Council"},{"n":"Lisa Kane DeVitto","r":"Crescent City City Council"},{"n":"Michele Myers","r":"Mayor of Crescent City"},{"n":"William Laurie","r":"Crescent City City Council"}]},{"m":"Interlachen","p":[{"n":"Anna Rose Larson","r":"Interlachen City Council"},{"n":"Beverly Bakker","r":"Interlachen City Council"},{"n":"Carolyn Bennett","r":"Interlachen City Council"},{"n":"Carolyn Meadows","r":"Interlachen City Council"},{"n":"James R. Hanes","r":"Mayor of Interlachen"},{"n":"Joni Conner","r":"Interlachen City Council"}]},{"m":"Palatka","p":[{"n":"Annie H. Davis","r":"Palatka City Council"},{"n":"Justin R. Campbell","r":"Palatka City Council"},{"n":"Roberta Correa","r":"Mayor of Palatka"},{"n":"Rufus J. Borom","r":"Palatka City Council"},{"n":"Will Jones","r":"Palatka City Council"}]},{"m":"Pomona Park","p":[{"n":"Alisha Kuleski","r":"Pomona Park City Council"},{"n":"Anthony Cuevas","r":"Mayor of Pomona Park"},{"n":"CarrieAnn Evans","r":"Pomona Park City Council"},{"n":"Donna Cooney","r":"Pomona Park City Council"},{"n":"Mark Swanson","r":"Pomona Park City Council"},{"n":"Mike Rohrabough","r":"Pomona Park City Council"},{"n":"Pat Mead","r":"Pomona Park City Council"}]},{"m":"Welaka","p":[{"n":"Kathy Washington","r":"Mayor of Welaka"},{"n":"Kenneth Pagano","r":"Welaka City Council"},{"n":"Sandra Walker","r":"Welaka City Council"},{"n":"Thomas Emerson","r":"Welaka City Council"},{"n":"Tonya Long","r":"Welaka City Council"}]}],"slug":"putnam"},"12109":{"county":[{"n":"Ann Taylor","r":"Commissioner, St. Johns County"},{"n":"Beverly Slough","r":"St. Johns County School Board"},{"n":"Brandon Patty","r":"Clerk of Court, St. Johns County"},{"n":"Christian Whitehurst","r":"Commissioner, St. Johns County"},{"n":"Clay Murphy","r":"Commissioner, St. Johns County"},{"n":"Dennis Hollingsworth","r":"Tax Collector, St. Johns County"},{"n":"Eddie Creamer","r":"Property Appraiser, St. Johns County"},{"n":"Henry Dean","r":"Commissioner, St. Johns County"},{"n":"Jennifer Collins","r":"St. Johns County School Board"},{"n":"Jennifer Ravan","r":"Tax Collector, St. Johns County"},{"n":"Kelly Barrera","r":"St. Johns County School Board"},{"n":"Krista Joseph","r":"Commissioner, St. Johns County"},{"n":"Linda Thomson","r":"St. Johns County School Board"},{"n":"Paul Waldron","r":"Commissioner, St. Johns County"},{"n":"Rob Hardwick","r":"Sheriff, St. Johns County"},{"n":"Roy Alaimo","r":"Commissioner, St. Johns County"},{"n":"Sarah Arnold","r":"Commissioner, St. Johns County"},{"n":"Vicky Oakes","r":"Supervisor of Elections, St. Johns County"}],"munis":[{"m":"St. Augustine","p":[{"n":"Barbara Blonder","r":"St. Augustine City Council"},{"n":"Cynthia Garris","r":"St. Augustine City Council"},{"n":"James T. Springfield","r":"St. Augustine City Council"},{"n":"Jon DePreter","r":"St. Augustine City Council"},{"n":"Nancy Sikes-Kline","r":"Mayor of St. Augustine"}]},{"m":"St. Augustine Beach","p":[{"n":"Beth Sweeny","r":"Mayor of St. Augustine Beach"},{"n":"Donald Samora","r":"St. Augustine Beach City Council"},{"n":"Dylan Rumrell","r":"St. Augustine Beach City Council"},{"n":"Undine George","r":"St. Augustine Beach City Council"},{"n":"Virginia Snyder Morgan","r":"St. Augustine Beach City Council"}]}],"slug":"st-johns"},"12111":{"county":[{"n":"Cathy Townsend","r":"Commissioner, St. Lucie County"},{"n":"Christopher Craft","r":"Tax Collector, St. Lucie County"},{"n":"Christopher Dzadovsky","r":"Commissioner, St. Lucie County"},{"n":"Debbie Hawley","r":"St. Lucie County School Board"},{"n":"Donna Mills","r":"St. Lucie County School Board"},{"n":"Erin Lowry","r":"Commissioner, St. Lucie County"},{"n":"Gertrude Walker","r":"Supervisor of Elections, St. Lucie County"},{"n":"James Clasby","r":"Commissioner, St. Lucie County"},{"n":"Jamie Fowler","r":"Commissioner, St. Lucie County"},{"n":"Jennifer Anne Richardson","r":"St. Lucie County School Board"},{"n":"Keith Pearson","r":"Sheriff, St. Lucie County"},{"n":"Larry Leet","r":"Commissioner, St. Lucie County"},{"n":"Linda Bartz","r":"Commissioner, St. Lucie County"},{"n":"Michelle Franklin","r":"Property Appraiser, St. Lucie County"},{"n":"Michelle Miller","r":"Clerk of Court, St. Lucie County"},{"n":"Richard DelToro","r":"Sheriff, St. Lucie County"},{"n":"Terissa Aronson","r":"St. Lucie County School Board"},{"n":"Troy Ingersoll","r":"St. Lucie County School Board"}],"munis":[{"m":"Fort Pierce","p":[{"n":"Arnold S. Gaines","r":"Fort Pierce City Council"},{"n":"Curtis Johnson","r":"Fort Pierce City Council"},{"n":"James Taylor","r":"Fort Pierce City Council"},{"n":"Linda Hudson","r":"Mayor of Fort Pierce"},{"n":"Michael Broderick","r":"Fort Pierce City Council"}]},{"m":"Port St. Lucie","p":[{"n":"Anthony Bonna","r":"Port St. Lucie City Council"},{"n":"David Pickett","r":"Port St. Lucie City Council"},{"n":"Jolien Caraballo","r":"Port St. Lucie City Council"},{"n":"Shannon M. Martin","r":"Mayor of Port St. Lucie"},{"n":"Stephanie Morgan","r":"Port St. Lucie City Council"}]},{"m":"St. Lucie Village","p":[{"n":"Dale Reed","r":"St. Lucie Village City Council"},{"n":"John Langel","r":"St. Lucie Village City Council"},{"n":"Lisa K. Price","r":"St. Lucie Village City Council"},{"n":"Paul Sinnott","r":"St. Lucie Village City Council"},{"n":"William G. Thiess","r":"Mayor of St. Lucie Village"}]}],"slug":"st-lucie"},"12113":{"county":[{"n":"Bobby Burkett","r":"Commissioner, Santa Rosa County"},{"n":"Carol Boston","r":"Santa Rosa County School Board"},{"n":"Charles \"Charlie\" Elliott","r":"Santa Rosa County School Board"},{"n":"Colten Wright","r":"Commissioner, Santa Rosa County"},{"n":"Donald Spencer","r":"Clerk of Court, Santa Rosa County"},{"n":"Elizabeth Hewey","r":"Santa Rosa County School Board"},{"n":"Gregory Brown","r":"Property Appraiser, Santa Rosa County"},{"n":"James Calkins","r":"Commissioner, Santa Rosa County"},{"n":"Jason English","r":"Clerk of Court, Santa Rosa County"},{"n":"Kerry Smith","r":"Commissioner, Santa Rosa County"},{"n":"Linda Sanborn","r":"Santa Rosa County School Board"},{"n":"Ray Eddington","r":"Commissioner, Santa Rosa County"},{"n":"Robert Johnson","r":"Sheriff, Santa Rosa County"},{"n":"Sam Parker","r":"Commissioner, Santa Rosa County"},{"n":"Scott Peden","r":"Santa Rosa County School Board"},{"n":"Stan Nichols","r":"Tax Collector, Santa Rosa County"},{"n":"Tappie Villane","r":"Supervisor of Elections, Santa Rosa County"}],"munis":[{"m":"Gulf Breeze","p":[{"n":"J. B. Schluter","r":"Mayor of Gulf Breeze"},{"n":"Randy Hebert","r":"Gulf Breeze City Council"},{"n":"Tim Burr","r":"Gulf Breeze City Council"},{"n":"Todd Torgersen","r":"Gulf Breeze City Council"}]},{"m":"Jay","p":[{"n":"Brent Freeman","r":"Jay City Council"},{"n":"Cade Diamond","r":"Jay City Council"},{"n":"Nina Hendricks","r":"Jay City Council"},{"n":"Shon Owens","r":"Mayor of Jay"}]},{"m":"Milton","p":[{"n":"Ashley Fretwell","r":"Milton City Council"},{"n":"Casey Powell","r":"Milton City Council"},{"n":"Gavin Hawthorne","r":"Milton City Council"},{"n":"Heather F. Lindsay","r":"Mayor of Milton"},{"n":"Larry McKee","r":"Milton City Council"},{"n":"Marilynn Farrow","r":"Milton City Council"},{"n":"Mike Cusak","r":"Milton City Council"},{"n":"Robert Leek","r":"Milton City Council"},{"n":"Tom Powers","r":"Milton City Council"}]}],"slug":"santa-rosa"},"12115":{"county":[{"n":"Barbara Ford-Coates","r":"Tax Collector, Sarasota County"},{"n":"Bill Furst","r":"Property Appraiser, Sarasota County"},{"n":"Bridget Ziegler","r":"Sarasota County School Board"},{"n":"Joseph Neunder","r":"Commissioner, Sarasota County"},{"n":"Karen Rushing","r":"Clerk of Court, Sarasota County"},{"n":"Kurt Hoffman","r":"Sheriff, Sarasota County"},{"n":"Liz Barker","r":"Sarasota County School Board"},{"n":"Mark Smith","r":"Commissioner, Sarasota County"},{"n":"Michael Moran","r":"Tax Collector, Sarasota County"},{"n":"Neil Rainford","r":"Commissioner, Sarasota County"},{"n":"Robyn A. Marinelli","r":"Sarasota County School Board"},{"n":"Ron Cutsinger","r":"Commissioner, Sarasota County"},{"n":"Ron Turner","r":"Supervisor of Elections, Sarasota County"},{"n":"Timothy Enos","r":"Sarasota County School Board"},{"n":"Tom Edwards","r":"Sarasota County School Board"}],"munis":[{"m":"Longboat Key","p":[{"n":"BJ Bishop","r":"Longboat Key City Council"},{"n":"Debra Williams","r":"Mayor of Longboat Key"},{"n":"Gary Coffin","r":"Longboat Key City Council"},{"n":"Nick Gladding","r":"Longboat Key City Council"},{"n":"Penelope Gold","r":"Longboat Key City Council"},{"n":"Sarah Karon","r":"Longboat Key City Council"},{"n":"Steve Branham","r":"Longboat Key City Council"}]},{"m":"North Port","p":[{"n":"Barbara Langdon","r":"North Port City Council"},{"n":"David Duval","r":"North Port City Council"},{"n":"Demetrius Petrow","r":"North Port City Council"},{"n":"Pete Emrich","r":"Mayor of North Port"},{"n":"Phil Stokes","r":"North Port City Council"}]},{"m":"Sarasota","p":[{"n":"Debbie Trice","r":"Mayor of Sarasota"},{"n":"Jen Ahearn-Koch","r":"Sarasota City Council"},{"n":"Kathy Kelley Ohlrich","r":"Sarasota City Council"},{"n":"Kyle Battie","r":"Sarasota City Council"},{"n":"Liz Alpert","r":"Sarasota City Council"}]},{"m":"Venice","p":[{"n":"Jim Boldt","r":"Venice City Council"},{"n":"Kevin Engelke","r":"Venice City Council"},{"n":"Lloyd Weed","r":"Venice City Council"},{"n":"Nicholas Pachota","r":"Mayor of Venice"},{"n":"Rachel Frank","r":"Venice City Council"},{"n":"Rick Howard","r":"Venice City Council"},{"n":"Ron Smith","r":"Venice City Council"}]}],"slug":"sarasota"},"12117":{"county":[{"n":"Abby Sanchez","r":"Seminole County School Board"},{"n":"Amy Lockhart","r":"Commissioner, Seminole County"},{"n":"Amy Pennock","r":"Supervisor of Elections, Seminole County"},{"n":"Andria Herr","r":"Commissioner, Seminole County"},{"n":"Autumn Huff Garick","r":"Seminole County School Board"},{"n":"Bob Dallari","r":"Commissioner, Seminole County"},{"n":"Chris Anderson","r":"Supervisor of Elections, Seminole County"},{"n":"David Johnson","r":"Property Appraiser, Seminole County"},{"n":"Dennis Lemma","r":"Sheriff, Seminole County"},{"n":"Grant Maloy","r":"Clerk of Court, Seminole County"},{"n":"J.R. Kroll","r":"Tax Collector, Seminole County"},{"n":"Jacqueline Kelley Davis","r":"Seminole County School Board"},{"n":"Jay Zembower","r":"Commissioner, Seminole County"},{"n":"Joel Greenberg","r":"Tax Collector, Seminole County"},{"n":"Kristine L. Kraus","r":"Seminole County School Board"},{"n":"Lee Constantine","r":"Commissioner, Seminole County"},{"n":"Robin Dehlinger","r":"Seminole County School Board"}],"munis":[{"m":"Altamonte Springs","p":[{"n":"Bob O'Malley","r":"Altamonte Springs City Council"},{"n":"Jim Turney","r":"Altamonte Springs City Council"},{"n":"Mike Brunscheen","r":"Altamonte Springs City Council"},{"n":"Patricia J. Bates","r":"Mayor of Altamonte Springs"},{"n":"Sarah Reece","r":"Altamonte Springs City Council"}]},{"m":"Casselberry","p":[{"n":"Anthony Aramendia","r":"Casselberry City Council"},{"n":"David Henson","r":"Mayor of Casselberry"},{"n":"Mark Busch","r":"Casselberry City Council"},{"n":"Nancy Divita","r":"Casselberry City Council"},{"n":"Thomas E. Kirk","r":"Casselberry City Council"}]},{"m":"Lake Mary","p":[{"n":"David J. Mealor","r":"Mayor of Lake Mary"},{"n":"Jordan S. Smith","r":"Lake Mary City Council"},{"n":"Justin York","r":"Lake Mary City Council"},{"n":"Justin York","r":"Lake Mary City Council"}]},{"m":"Longwood","p":[{"n":"Abby Shoemaker","r":"Longwood City Council"},{"n":"Brian D. Sackett","r":"Longwood City Council"},{"n":"Matt Morgan","r":"Longwood City Council"},{"n":"Matthew McMillan","r":"Longwood City Council"},{"n":"Tony Boni","r":"Mayor of Longwood"}]},{"m":"Oviedo","p":[{"n":"Alan Ott","r":"Oviedo City Council"},{"n":"Jeff Boddiford","r":"Oviedo City Council"},{"n":"Keith Britton","r":"Oviedo City Council"},{"n":"Megan Sladek","r":"Mayor of Oviedo"},{"n":"Natalie Teuchert","r":"Oviedo City Council"}]},{"m":"Sanford","p":[{"n":"Art Woodruff","r":"Mayor of Sanford"},{"n":"Claudia Thomas","r":"Sanford City Council"},{"n":"Kerry S. Wiggins","r":"Sanford City Council"},{"n":"Patrick Austin","r":"Sanford City Council"},{"n":"Sheena Britton","r":"Sanford City Council"}]},{"m":"Winter Springs","p":[{"n":"Cade Resnick","r":"Winter Springs City Council"},{"n":"Kevin McCann","r":"Mayor of Winter Springs"},{"n":"Mark Caruso","r":"Winter Springs City Council"},{"n":"Paul Diaz","r":"Winter Springs City Council"},{"n":"Sarah Baker","r":"Winter Springs City Council"},{"n":"Victoria Bruce","r":"Winter Springs City Council"}]}],"slug":"seminole"},"12119":{"county":[{"n":"Andrew Bilardello","r":"Commissioner, Sumter County"},{"n":"Brett Sherman","r":"Sumter County School Board"},{"n":"Craig Estep","r":"Commissioner, Sumter County"},{"n":"David A Williams","r":"Sumter County School Board"},{"n":"Donald Wiley","r":"Commissioner, Sumter County"},{"n":"Erin Munz","r":"Clerk of Court, Sumter County"},{"n":"Gloria Hayward","r":"Clerk of Court, Sumter County"},{"n":"Jeff Bogue","r":"Commissioner, Sumter County"},{"n":"Joey Hooten","r":"Property Appraiser, Sumter County"},{"n":"Kathie L Joiner","r":"Sumter County School Board"},{"n":"Oren Miller","r":"Commissioner, Sumter County"},{"n":"Patrick Breeden","r":"Sheriff, Sumter County"},{"n":"Randy Mask","r":"Tax Collector, Sumter County"},{"n":"Roberta Ulrich","r":"Commissioner, Sumter County"},{"n":"Russell G Hogan","r":"Sumter County School Board"},{"n":"Russell Hogan","r":"Sumter County School Board"},{"n":"Sally Moss","r":"Sumter County School Board"},{"n":"William Farmer","r":"Sheriff, Sumter County"},{"n":"William Keen","r":"Supervisor of Elections, Sumter County"}],"munis":[{"m":"Bushnell","p":[{"n":"Dale Barnes","r":"Bushnell City Council"},{"n":"Dale Swain","r":"Bushnell City Council"},{"n":"Jessie Simmons","r":"Mayor of Bushnell"},{"n":"Karen Davis","r":"Bushnell City Council"},{"n":"Victoria Summerlin","r":"Bushnell City Council"}]},{"m":"Center Hill","p":[{"n":"Billy Bowles","r":"Center Hill City Council"},{"n":"Dan Shimasaki","r":"Center Hill City Council"},{"n":"Donnie Buckner","r":"Center Hill City Council"},{"n":"Ginger Howard","r":"Mayor of Center Hill"},{"n":"Jack Nash","r":"Center Hill City Council"},{"n":"Tonota Parker","r":"Center Hill City Council"}]},{"m":"Coleman","p":[{"n":"Charles Felton","r":"Coleman City Council"},{"n":"James Sears","r":"Coleman City Council"},{"n":"Ke'Marein Williams","r":"Coleman City Council"},{"n":"Mary Stone","r":"Coleman City Council"},{"n":"Milton Hill","r":"Mayor of Coleman"},{"n":"Sonia Shearer","r":"Coleman City Council"}]},{"m":"Webster","p":[{"n":"Allen Dorsey","r":"Webster City Council"},{"n":"Ana Vigoa","r":"Mayor of Webster"},{"n":"Loretta Ramirez","r":"Webster City Council"},{"n":"Nancy Cherry","r":"Webster City Council"},{"n":"Shadae Solomon","r":"Webster City Council"}]},{"m":"Wildwood","p":[{"n":"Ed Wolf","r":"Mayor of Wildwood"},{"n":"Joe Elliott","r":"Wildwood City Council"},{"n":"Julian A. Green","r":"Wildwood City Council"},{"n":"Marcos Flores","r":"Wildwood City Council"},{"n":"Pamala Harrison-Bivins","r":"Wildwood City Council"}]}],"slug":"sumter"},"12121":{"county":[{"n":"Barry Baker","r":"Clerk of Court, Suwannee County"},{"n":"Edward DaSilva","r":"Suwannee County School Board"},{"n":"Franklin White","r":"Commissioner, Suwannee County"},{"n":"Jennifer Kinsey","r":"Supervisor of Elections, Suwannee County"},{"n":"Lamar Jenkins","r":"Property Appraiser, Suwannee County"},{"n":"Leo Mobley","r":"Commissioner, Suwannee County"},{"n":"Lesley Fry","r":"Suwannee County School Board"},{"n":"Maurice Perkins","r":"Commissioner, Suwannee County"},{"n":"Norman Crawford","r":"Suwannee County School Board"},{"n":"Richard Gamble","r":"Property Appraiser, Suwannee County"},{"n":"Ronald White","r":"Suwannee County School Board"},{"n":"Samuel St. John","r":"Sheriff, Suwannee County"},{"n":"Sharon Jordan","r":"Tax Collector, Suwannee County"},{"n":"Tim Alcorn","r":"Suwannee County School Board"},{"n":"Travis Land","r":"Commissioner, Suwannee County"},{"n":"William Hale","r":"Commissioner, Suwannee County"}],"munis":[{"m":"Branford","p":[{"n":"Alice Childress","r":"Branford City Council"},{"n":"Jay Hatch","r":"Branford City Council"},{"n":"Ken Saunders","r":"Mayor of Branford"},{"n":"Kevin Knighton","r":"Branford City Council"},{"n":"Tera Kelley","r":"Branford City Council"}]},{"m":"Live Oak","p":[{"n":"David Alford","r":"Live Oak City Council"},{"n":"Frank C. Davis","r":"Mayor of Live Oak"},{"n":"Gladys Owens","r":"Live Oak City Council"},{"n":"Matthew Campbell","r":"Live Oak City Council"},{"n":"Tommie Jefferson","r":"Live Oak City Council"},{"n":"Vanessa Brown Robinson","r":"Live Oak City Council"}]}],"slug":"suwannee"},"12123":{"county":[{"n":"Annie Mae Murphy","r":"Clerk of Court, Taylor County"},{"n":"Bonnie Sue Agner","r":"Taylor County School Board"},{"n":"Brenda Carlton","r":"Taylor County School Board"},{"n":"Bruce Ratliff","r":"Property Appraiser, Taylor County"},{"n":"Dana Southerland","r":"Supervisor of Elections, Taylor County"},{"n":"Danny Lundy","r":"Taylor County School Board"},{"n":"Deidra Dunnell","r":"Taylor County School Board"},{"n":"Gary Knowles","r":"Clerk of Court, Taylor County"},{"n":"Jamie English","r":"Commissioner, Taylor County"},{"n":"Jeanne Ellen Mathis","r":"Taylor County School Board"},{"n":"Jim Moody","r":"Commissioner, Taylor County"},{"n":"Mark Wiggins","r":"Tax Collector, Taylor County"},{"n":"Michael Newman","r":"Commissioner, Taylor County"},{"n":"Pam Feagle","r":"Commissioner, Taylor County"},{"n":"Shawna Beach","r":"Property Appraiser, Taylor County"},{"n":"Thomas Demps","r":"Commissioner, Taylor County"},{"n":"Wayne Padgett","r":"Sheriff, Taylor County"}],"munis":[{"m":"Perry","p":[{"n":"Diane C. Landry","r":"Perry City Council"},{"n":"Shirlie Hampton","r":"Perry City Council"},{"n":"Venita Woodfaulk","r":"Perry City Council"},{"n":"Ward Ketring","r":"Mayor of Perry"},{"n":"William E. Brynes","r":"Perry City Council"}]}],"slug":"taylor"},"12125":{"county":[{"n":"Brad Whitehead","r":"Sheriff, Union County"},{"n":"Bruce Dukes","r":"Property Appraiser, Union County"},{"n":"Channing Dobbs","r":"Commissioner, Union County"},{"n":"Christopher Hodgson","r":"Union County School Board"},{"n":"Curtis Clyatt","r":"Union County School Board"},{"n":"Deborah Osborne","r":"Supervisor of Elections, Union County"},{"n":"Donna Jackson","r":"Commissioner, Union County"},{"n":"James Tallman","r":"Commissioner, Union County"},{"n":"Kellie Rhoades","r":"Clerk of Court, Union County"},{"n":"Lisa Johnson","r":"Tax Collector, Union County"},{"n":"Mac Johns","r":"Commissioner, Union County"},{"n":"Melissa McNeal","r":"Commissioner, Union County"},{"n":"Rebekah G. Raulerson","r":"Union County School Board"},{"n":"Russell Gordon Jr.","r":"Union County School Board"},{"n":"Terra T Johnson","r":"Union County School Board"},{"n":"Travis Croft","r":"Commissioner, Union County"}],"munis":[{"m":"Lake Butler","p":[{"n":"Annette G. Redman","r":"Lake Butler City Council"},{"n":"Fred Sirmones","r":"Lake Butler City Council"},{"n":"Jill Melissa Hendrix","r":"Mayor of Lake Butler"},{"n":"Joe Stephenson","r":"Lake Butler City Council"},{"n":"Rondoll Huggins","r":"Lake Butler City Council"}]},{"m":"Raiford","p":[{"n":"Benita Griffis","r":"Raiford City Council"},{"n":"Deana Rainey","r":"Raiford City Council"},{"n":"Lamar Griffis","r":"Mayor of Raiford"},{"n":"Randall Griffis","r":"Raiford City Council"},{"n":"Sherry Richard","r":"Raiford City Council"}]},{"m":"Worthington Springs","p":[{"n":"Nita Elixson","r":"Worthington Springs City Council"},{"n":"Pam Williams","r":"Worthington Springs City Council"},{"n":"Shane Massey","r":"Worthington Springs City Council"},{"n":"Travis Hemphill","r":"Worthington Springs City Council"}]}],"slug":"union"},"12127":{"county":[{"n":"Danny Robins","r":"Council Member, Volusia County"},{"n":"David Santiago","r":"Council Member, Volusia County"},{"n":"Don Dempsey","r":"Council Member, Volusia County"},{"n":"Donna Brosemer","r":"Volusia County School Board"},{"n":"Ed Kelley","r":"Council Member, Volusia County"},{"n":"Jake Johansson","r":"Council Member, Volusia County"},{"n":"Jamie Haynes","r":"Volusia County School Board"},{"n":"Jeff Brower","r":"Council Member, Volusia County"},{"n":"Jessie Thompson","r":"Volusia County School Board"},{"n":"Krista Goodrich","r":"Volusia County School Board"},{"n":"Laura Roth","r":"Clerk of Court, Volusia County"},{"n":"Laurence Bartlett","r":"Property Appraiser, Volusia County"},{"n":"Lisa Lewis","r":"Supervisor of Elections, Volusia County"},{"n":"Matt Reinhart","r":"Council Member, Volusia County"},{"n":"Michael Chitwood","r":"Sheriff, Volusia County"},{"n":"Rhonda Orr","r":"Tax Collector, Volusia County"},{"n":"Ruben Colon","r":"Volusia County School Board"},{"n":"Troy Kent","r":"Council Member, Volusia County"},{"n":"Will Roberts","r":"Tax Collector, Volusia County"}],"munis":[{"m":"Daytona Beach","p":[{"n":"Dannette Henry","r":"Daytona Beach City Council"},{"n":"Derrick L. Henry","r":"Mayor of Daytona Beach"},{"n":"Ken Strickland","r":"Daytona Beach City Council"},{"n":"Monica Paris","r":"Daytona Beach City Council"},{"n":"Paula R. Reed","r":"Daytona Beach City Council"},{"n":"Quanita May","r":"Daytona Beach City Council"},{"n":"Stacy Cantu","r":"Daytona Beach City Council"}]},{"m":"Daytona Beach Shores","p":[{"n":"Chris Conomos","r":"Daytona Beach Shores City Council"},{"n":"Mark Card","r":"Daytona Beach Shores City Council"},{"n":"Michael Politis","r":"Daytona Beach Shores City Council"},{"n":"Nancy J. Miller","r":"Mayor of Daytona Beach Shores"},{"n":"Stephen Dembinsky","r":"Daytona Beach Shores City Council"}]},{"m":"DeBary","p":[{"n":"Jim Pappalardo","r":"DeBary City Council"},{"n":"Karen Chasez","r":"Mayor of DeBary"},{"n":"Patricia Stevenson","r":"DeBary City Council"},{"n":"Phyllis Butlien","r":"DeBary City Council"},{"n":"William Sell","r":"DeBary City Council"}]},{"m":"DeLand","p":[{"n":"Christopher M. Cloudman","r":"Mayor of DeLand"},{"n":"Dan F. Reed","r":"DeLand City Council"},{"n":"Jessica Davis","r":"DeLand City Council"},{"n":"Kevin Reid","r":"DeLand City Council"},{"n":"Richard C. Paiva","r":"DeLand City Council"}]},{"m":"Deltona","p":[{"n":"Dana McCool","r":"Deltona City Council"},{"n":"Davison Heriot","r":"Deltona City Council"},{"n":"Emma Santiago","r":"Deltona City Council"},{"n":"Julio Shimkus","r":"Deltona City Council"},{"n":"Maritza Avila-Vazquez","r":"Deltona City Council"},{"n":"Santiago Avila","r":"Mayor of Deltona"},{"n":"Stephen Colwell","r":"Deltona City Council"}]},{"m":"Edgewater","p":[{"n":"Debbie Dolbow","r":"Edgewater City Council"},{"n":"Diezel DePew","r":"Mayor of Edgewater"},{"n":"Mike Thomas","r":"Edgewater City Council"}]},{"m":"Holly Hill","p":[{"n":"Debra Snow","r":"Holly Hill City Council"},{"n":"Jeffrey DeLanoy","r":"Holly Hill City Council"},{"n":"John Penny","r":"Mayor of Holly Hill"},{"n":"Penny Currie","r":"Holly Hill City Council"},{"n":"Roy Johnson","r":"Holly Hill City Council"}]},{"m":"Lake Helen","p":[{"n":"Charlene Bishop","r":"Lake Helen City Council"},{"n":"Earl Farmer","r":"Lake Helen City Council"},{"n":"Heather Rutledge","r":"Lake Helen City Council"},{"n":"Roger Eckert","r":"Mayor of Lake Helen"},{"n":"Sean Abshire","r":"Lake Helen City Council"}]},{"m":"New Smyrna Beach","p":[{"n":"Andrew J. McGuirk","r":"New Smyrna Beach City Council"},{"n":"Brian Ashley","r":"New Smyrna Beach City Council"},{"n":"Fred Cleveland","r":"Mayor of New Smyrna Beach"},{"n":"Lisa Martin","r":"New Smyrna Beach City Council"},{"n":"Valli Perrine","r":"New Smyrna Beach City Council"}]},{"m":"Oak Hill","p":[{"n":"Carrie Werning","r":"Oak Hill City Council"},{"n":"Joseph Catigano","r":"Oak Hill City Council"},{"n":"Linda Hyatt","r":"Oak Hill City Council"},{"n":"Mark Drollinger","r":"Oak Hill City Council"},{"n":"Ricky Taylor","r":"Mayor of Oak Hill"}]},{"m":"Orange City","p":[{"n":"Alisa Stafford","r":"Orange City City Council"},{"n":"Anthony J. Pupello","r":"Orange City City Council"},{"n":"Fran Darms","r":"Orange City City Council"},{"n":"Harold Grimm","r":"Orange City City Council"},{"n":"Kelli Marks","r":"Mayor of Orange City"},{"n":"Lisa Richardson","r":"Orange City City Council"}]},{"m":"Ormond Beach","p":[{"n":"Harold Briley","r":"Ormond Beach City Council"},{"n":"Jason Leslie","r":"Mayor of Ormond Beach"},{"n":"Kristin Deaton","r":"Ormond Beach City Council"},{"n":"Travis Sargent","r":"Ormond Beach City Council"}]},{"m":"Pierson","p":[{"n":"Brandy Peterson","r":"Pierson City Council"},{"n":"David Gray Leonhard","r":"Mayor of Pierson"},{"n":"James Anderson","r":"Pierson City Council"},{"n":"Linnie R. Richardson","r":"Pierson City Council"},{"n":"Robert F. Greenlund","r":"Pierson City Council"}]},{"m":"Ponce Inlet","p":[{"n":"Bill Milano","r":"Ponce Inlet City Council"},{"n":"Gary Smith","r":"Ponce Inlet City Council"},{"n":"Joe Villanella","r":"Ponce Inlet City Council"},{"n":"Lois Paritsky","r":"Mayor of Ponce Inlet"},{"n":"Skip White","r":"Ponce Inlet City Council"}]},{"m":"Port Orange","p":[{"n":"Jonathan Foley","r":"Port Orange City Council"},{"n":"Lance Green","r":"Port Orange City Council"},{"n":"Scott Stiltner","r":"Mayor of Port Orange"},{"n":"Shawn Goepfert","r":"Port Orange City Council"},{"n":"Tracy Grubbs","r":"Port Orange City Council"}]},{"m":"South Daytona","p":[{"n":"Brandon L. Young","r":"South Daytona City Council"},{"n":"Douglas Quartier","r":"South Daytona City Council"},{"n":"Eric Sander","r":"South Daytona City Council"},{"n":"William C. Hall","r":"Mayor of South Daytona"}]}],"slug":"volusia"},"12129":{"county":[{"n":"Angie Nichols","r":"Wakulla County School Board"},{"n":"Brent Thurmond","r":"Clerk of Court, Wakulla County"},{"n":"Cale Langston","r":"Wakulla County School Board"},{"n":"Cheryll Olah","r":"Tax Collector, Wakulla County"},{"n":"Chuck Hess","r":"Commissioner, Wakulla County"},{"n":"Donnie Sparkman","r":"Property Appraiser, Wakulla County"},{"n":"Eddie Hand","r":"Wakulla County School Board"},{"n":"Edward Brimner","r":"Property Appraiser, Wakulla County"},{"n":"Fred Nichols","r":"Commissioner, Wakulla County"},{"n":"Greg James","r":"Clerk of Court, Wakulla County"},{"n":"Jared Miller","r":"Sheriff, Wakulla County"},{"n":"Joe Morgan","r":"Supervisor of Elections, Wakulla County"},{"n":"Josh Brown","r":"Wakulla County School Board"},{"n":"Laura Lawhon","r":"Wakulla County School Board"},{"n":"Lisa Craze","r":"Tax Collector, Wakulla County"},{"n":"Mike Kemp","r":"Commissioner, Wakulla County"},{"n":"Quincee Messersmith","r":"Commissioner, Wakulla County"},{"n":"Ralph Thomas","r":"Commissioner, Wakulla County"}],"munis":[{"m":"Sopchoppy","p":[{"n":"Fred McClendon","r":"Sopchoppy City Council"},{"n":"Lara Edwards","r":"Sopchoppy City Council"},{"n":"Leonard Tartt","r":"Mayor of Sopchoppy"},{"n":"Mary K. Westmark","r":"Sopchoppy City Council"},{"n":"Nathan Lewis","r":"Sopchoppy City Council"}]},{"m":"St. Marks","p":[{"n":"Crystal Wonsch","r":"St. Marks City Council"},{"n":"John Gunter","r":"St. Marks City Council"},{"n":"Sharon Rudd","r":"St. Marks City Council"},{"n":"Tim Lawrence","r":"Mayor of St. Marks"}]}],"slug":"wakulla"},"12131":{"county":[{"n":"Alex Alford","r":"Clerk of Court, Walton County"},{"n":"Brad Drake","r":"Commissioner, Walton County"},{"n":"Crystal Sconiers","r":"Clerk of Court, Walton County"},{"n":"Dan Curry","r":"Commissioner, Walton County"},{"n":"Danny Glidewell","r":"Commissioner, Walton County"},{"n":"Donna Johns","r":"Commissioner, Walton County"},{"n":"Gary Gregor","r":"Property Appraiser, Walton County"},{"n":"Jason Catalano","r":"Walton County School Board"},{"n":"Jeri Michie","r":"Walton County School Board"},{"n":"Kim Kirby","r":"Walton County School Board"},{"n":"Michael Adkinson","r":"Sheriff, Walton County"},{"n":"Rhonda Skipper","r":"Tax Collector, Walton County"},{"n":"Robert Beasley","r":"Supervisor of Elections, Walton County"},{"n":"Tammy Smith","r":"Walton County School Board"},{"n":"Tony Anderson","r":"Commissioner, Walton County"},{"n":"William \"Bill\" Eddins Jr","r":"Walton County School Board"},{"n":"William McCormick","r":"Commissioner, Walton County"}],"munis":[{"m":"DeFuniak Springs","p":[{"n":"Amy Heavilin","r":"DeFuniak Springs City Council"},{"n":"Anthony Vallee","r":"DeFuniak Springs City Council"},{"n":"Josh Sconiers","r":"DeFuniak Springs City Council"},{"n":"Robert A. Campbell","r":"Mayor of DeFuniak Springs"},{"n":"Todd Bierbaum","r":"DeFuniak Springs City Council"}]},{"m":"Freeport","p":[{"n":"Eddie E. Farris","r":"Freeport City Council"},{"n":"Elizabeth Brannon","r":"Freeport City Council"},{"n":"Elizabeth Haffner","r":"Freeport City Council"},{"n":"Heather Hurst","r":"Freeport City Council"},{"n":"Sidney R. Barley","r":"Mayor of Freeport"},{"n":"Tracey Dickey","r":"Freeport City Council"}]},{"m":"Paxton","p":[{"n":"Donna Smith","r":"Mayor of Paxton"},{"n":"Doug Constantine","r":"Paxton City Council"},{"n":"Jenice Armstrong","r":"Paxton City Council"},{"n":"Perry Thomas","r":"Paxton City Council"},{"n":"Travis McMillian","r":"Paxton City Council"}]}],"slug":"walton"},"12133":{"county":[{"n":"Alan Bush","r":"Commissioner, Washington County"},{"n":"Carol Rudd","r":"Supervisor of Elections, Washington County"},{"n":"Cheryl Ann Williams","r":"Washington County School Board"},{"n":"Cynthia \"Cindy\" Johnson Brown","r":"Washington County School Board"},{"n":"David Corbin","r":"Commissioner, Washington County"},{"n":"David Pettis","r":"Commissioner, Washington County"},{"n":"Deidra Pettis","r":"Supervisor of Elections, Washington County"},{"n":"Gil Carter","r":"Property Appraiser, Washington County"},{"n":"John Hawkins","r":"Commissioner, Washington County"},{"n":"Ken Naker","r":"Tax Collector, Washington County"},{"n":"Kevin Crews","r":"Sheriff, Washington County"},{"n":"Lora Bell","r":"Clerk of Court, Washington County"},{"n":"Lou Cleveland","r":"Washington County School Board"},{"n":"Milton L Brown","r":"Washington County School Board"},{"n":"Renea Peters","r":"Property Appraiser, Washington County"},{"n":"Wesley Griffin","r":"Commissioner, Washington County"},{"n":"Will \"Tonka\" Taylor","r":"Washington County School Board"}],"munis":[{"m":"Caryville","p":[{"n":"Chris Callahan","r":"Caryville City Council"},{"n":"Larry Palmer","r":"Caryville City Council"},{"n":"Mary Pate","r":"Caryville City Council"},{"n":"Michael Brandon Sasser","r":"Caryville City Council"},{"n":"Timothy Williams","r":"Caryville City Council"}]},{"m":"Chipley","p":[{"n":"Cheryl McCall","r":"Chipley City Council"},{"n":"Kevin Russell","r":"Chipley City Council"},{"n":"Leonard Blount","r":"Chipley City Council"},{"n":"Linda Cain","r":"Chipley City Council"},{"n":"Tracy Andrews","r":"Mayor of Chipley"}]},{"m":"Ebro","p":[{"n":"Charles Scott","r":"Ebro City Council"},{"n":"David Evans","r":"Mayor of Ebro"},{"n":"Gina Rutherford","r":"Ebro City Council"},{"n":"Jordan Gambrell","r":"Ebro City Council"},{"n":"Regina Kincaid","r":"Ebro City Council"},{"n":"Sally Young","r":"Ebro City Council"}]},{"m":"Vernon","p":[{"n":"Angel LeCompte","r":"Mayor of Vernon"},{"n":"Becky Baxley","r":"Vernon City Council"},{"n":"F. Brittan Brock","r":"Vernon City Council"},{"n":"Frank Zurica","r":"Vernon City Council"},{"n":"Gwendolyn March","r":"Vernon City Council"},{"n":"Tina Sloan","r":"Vernon City Council"}]},{"m":"Wausau","p":[{"n":"Charles W. Park","r":"Wausau City Council"},{"n":"Joe Phillips","r":"Wausau City Council"},{"n":"Judy Carter","r":"Wausau City Council"},{"n":"Roger D. Hagan","r":"Mayor of Wausau"},{"n":"Shirley Rightenburg","r":"Wausau City Council"}]}],"slug":"washington"},"13015":{"county":[],"munis":[{"m":"Cartersville","p":[{"n":"Matt Santini","r":"Mayor, Cartersville, GA"}]}],"slug":"bartow"},"13017":{"county":[],"munis":[{"m":"Fitzgerald","p":[{"n":"Jason Holt","r":"Mayor, Fitzgerald, GA"}]}],"slug":"ben-hill"},"13031":{"county":[],"munis":[{"m":"Statesboro","p":[{"n":"Jonathan M. McCollar","r":"Mayor, Statesboro, GA"}]}],"slug":"bulloch"},"13045":{"county":[],"munis":[{"m":"Carrollton","p":[{"n":"Betty B. Cason","r":"Mayor, Carrollton, GA"}]}],"slug":"carroll"},"13051":{"county":[],"munis":[{"m":"Savannah","p":[{"n":"Edna Jackson","r":"Mayor, Savannah, GA"}]}],"slug":"chatham"},"13057":{"county":[],"munis":[{"m":"Canton","p":[{"n":"Bill Grant","r":"Mayor, Canton, GA"}]},{"m":"Woodstock","p":[{"n":"Michael Caldwell","r":"Mayor, Woodstock, GA"}]}],"slug":"cherokee"},"13067":{"county":[],"munis":[{"m":"Acworth","p":[{"n":"Tommy Allegood","r":"Mayor, Acworth, GA"}]},{"m":"Kennesaw","p":[{"n":"Derek Easterling","r":"Mayor, Kennesaw, GA"}]},{"m":"Mableton","p":[{"n":"Michael Owens","r":"Mayor, Mableton, GA"}]},{"m":"Marietta","p":[{"n":"Steve Tumlin","r":"Mayor, Marietta, GA"}]},{"m":"Smyrna","p":[{"n":"Derek Norton","r":"Mayor, Smyrna, GA"}]}],"slug":"cobb"},"13077":{"county":[],"munis":[{"m":"Newnan","p":[{"n":"Keith Brady","r":"Mayor, Newnan, GA"}]}],"slug":"coweta"},"13089":{"county":[],"munis":[{"m":"Brookhaven","p":[{"n":"John Park","r":"Mayor, Brookhaven, GA"}]},{"m":"Chamblee","p":[{"n":"Brian Mock","r":"Mayor, Chamblee, GA"}]},{"m":"Decatur","p":[{"n":"Patti Garrett","r":"Mayor, Decatur, GA"}]},{"m":"Dunwoody","p":[{"n":"Lynn Deutsch","r":"Mayor, Dunwoody, GA"}]},{"m":"Stonecrest","p":[{"n":"Jazzmin Cobble","r":"Mayor, Stonecrest, GA"}]}],"slug":"dekalb"},"13095":{"county":[],"munis":[{"m":"Albany","p":[{"n":"Bo Dorough","r":"Mayor, Albany, GA"}]}],"slug":"dougherty"},"13097":{"county":[],"munis":[{"m":"Douglasville","p":[{"n":"Rochelle Robinson","r":"Mayor, Douglasville, GA"}]}],"slug":"douglas"},"13113":{"county":[],"munis":[{"m":"Peachtree City","p":[{"n":"Kim Learnard","r":"Mayor, Peachtree City, GA"}]}],"slug":"fayette"},"13115":{"county":[],"munis":[{"m":"Rome","p":[{"n":"Craig McDaniel","r":"Mayor, Rome, GA"}]}],"slug":"floyd"},"13121":{"county":[],"munis":[{"m":"Alpharetta","p":[{"n":"Jim Gilvin","r":"Mayor, Alpharetta, GA"}]},{"m":"Atlanta","p":[{"n":"Andre Dickens","r":"Mayor, Atlanta, GA"}]},{"m":"East Point","p":[{"n":"Deana Holiday Ingraham","r":"Mayor, East Point, GA"}]},{"m":"Johns Creek","p":[{"n":"John Bradberry","r":"Mayor, Johns Creek, GA"}]},{"m":"Milton","p":[{"n":"Peyton Jamison","r":"Mayor, Milton, GA"}]},{"m":"Sandy Springs","p":[{"n":"Rusty Paul","r":"Mayor, Sandy Springs, GA"}]},{"m":"South Fulton","p":[{"n":"Theron Griffin","r":"Mayor, South Fulton, GA"}]}],"slug":"fulton"},"13127":{"county":[],"munis":[{"m":"Brunswick","p":[{"n":"Cosby H. Johnson","r":"Mayor, Brunswick, GA"}]}],"slug":"glynn"},"13135":{"county":[],"munis":[{"m":"Duluth","p":[{"n":"Greg Whitlock","r":"Mayor, Duluth, GA"}]},{"m":"Lawrenceville","p":[{"n":"David Still","r":"Mayor, Lawrenceville, GA"}]},{"m":"Peachtree Corners","p":[{"n":"Mike Mason","r":"Mayor, Peachtree Corners, GA"}]},{"m":"Snellville","p":[{"n":"Barbara Bender","r":"Mayor, Snellville, GA"}]},{"m":"Suwanee","p":[{"n":"James Burnette","r":"Mayor, Suwanee, GA"}]}],"slug":"gwinnett"},"13139":{"county":[],"munis":[{"m":"Gainesville","p":[{"n":"Sam Couvillon","r":"Mayor, Gainesville, GA"}]}],"slug":"hall"},"13145":{"county":[],"munis":[{"m":"Hamilton","p":[{"n":"Patrick Whearley","r":"Mayor, Hamilton, GA"}]}],"slug":"harris"},"13151":{"county":[],"munis":[{"m":"Mcdonough","p":[{"n":"Sandra Vincent","r":"Mayor, McDonough, GA"}]},{"m":"Stockbridge","p":[{"n":"Anthony S. Ford","r":"Mayor, Stockbridge, GA"}]}],"slug":"henry"},"13153":{"county":[],"munis":[{"m":"Warner Robins","p":[{"n":"LaRhonda W. Patrick","r":"Mayor, Warner Robins, GA"}]}],"slug":"houston"},"13179":{"county":[],"munis":[{"m":"Hinesville","p":[{"n":"Karl Riles","r":"Mayor, Hinesville, GA"}]}],"slug":"liberty"},"13185":{"county":[],"munis":[{"m":"Valdosta","p":[{"n":"Scott James Matheson","r":"Mayor, Valdosta, GA"}]}],"slug":"lowndes"},"13215":{"county":[],"munis":[{"m":"Columbus","p":[{"n":"B. H. \"Skip\" Henderson III","r":"Mayor, Columbus, GA"}]}],"slug":"muscogee"},"13237":{"county":[],"munis":[{"m":"Eatonton","p":[{"n":"John Reid","r":"Mayor, Eatonton, GA"}]}],"slug":"putnam"},"13255":{"county":[],"munis":[{"m":"Griffin","p":[{"n":"Douglas S. Hollberg","r":"Mayor, Griffin, GA"}]}],"slug":"spalding"},"13285":{"county":[],"munis":[{"m":"Lagrange","p":[{"n":"Jim Arrington","r":"Mayor, LaGrange, GA"}]}],"slug":"troup"},"13297":{"county":[],"munis":[{"m":"Monroe","p":[{"n":"John Howard","r":"Mayor, Monroe, GA"}]}],"slug":"walton"},"13301":{"county":[],"munis":[{"m":"Warrenton","p":[{"n":"Chris McCorkle","r":"Mayor, Warrenton, GA"}]}],"slug":"warren"},"13313":{"county":[],"munis":[{"m":"Dalton","p":[{"n":"Annalee Sams","r":"Mayor, Dalton, GA"}]}],"slug":"whitfield"},"15003":{"county":[],"munis":[{"m":"East Honolulu","p":[{"n":"Rick Blangiardi","r":"Mayor, Honolulu, HI"}]}],"slug":"honolulu"},"16001":{"county":[],"munis":[{"m":"Boise City","p":[{"n":"Lauren McLean","r":"Mayor, Boise, ID"}]},{"m":"Meridian","p":[{"n":"Robert E. Simison","r":"Mayor, Meridian, ID"}]}],"slug":"ada"},"16005":{"county":[],"munis":[{"m":"Pocatello","p":[{"n":"Brian Blad","r":"Mayor, Pocatello, ID"}]}],"slug":"bannock"},"16027":{"county":[],"munis":[{"m":"Nampa","p":[{"n":"Debbie Kling","r":"Mayor, Nampa, ID"}]}],"slug":"canyon"},"16079":{"county":[],"munis":[{"m":"Kellogg","p":[{"n":"Mac Pooler","r":"Mayor, Kellogg, ID"}]}],"slug":"shoshone"},"16083":{"county":[],"munis":[{"m":"Twin Falls","p":[{"n":"Ruth Pierce","r":"Mayor, Twin Falls, ID"}]}],"slug":"twin-falls"},"16087":{"county":[],"munis":[{"m":"Weiser","p":[{"n":"Randy Hibberd","r":"Mayor, Weiser, ID"}]}],"slug":"washington"},"17007":{"county":[],"munis":[{"m":"Belvidere","p":[{"n":"Clinton Morris","r":"Mayor, Belvidere, IL"}]}],"slug":"boone"},"17011":{"county":[],"munis":[{"m":"Princeton","p":[{"n":"Joel Quiram","r":"Mayor, Princeton, IL"}]}],"slug":"bureau"},"17031":{"county":[],"munis":[{"m":"Chicago","p":[{"n":"Brandon Johnson","r":"Mayor, Chicago, IL"}]}],"slug":"cook"},"17043":{"county":[],"munis":[{"m":"Naperville","p":[{"n":"Scott Wehrli","r":"Mayor, Naperville, IL"}]}],"slug":"dupage"},"17089":{"county":[],"munis":[{"m":"Aurora","p":[{"n":"Richard C. Irvin","r":"Mayor, Aurora, IL"}]},{"m":"Elgin","p":[{"n":"Dave Kaptain","r":"Mayor, Elgin, IL"}]}],"slug":"kane"},"17097":{"county":[],"munis":[{"m":"Highland Park","p":[{"n":"Nancy Rotering","r":"Mayor, Highland Park, IL"}]},{"m":"Lake Forest","p":[{"n":"George A. Pandaleon","r":"Mayor, Lake Forest, IL"}]}],"slug":"lake"},"17099":{"county":[],"munis":[{"m":"Mendota","p":[{"n":"David Boelk","r":"Mayor, Mendota, IL"}]}],"slug":"lasalle"},"17113":{"county":[],"munis":[{"m":"Bloomington","p":[{"n":"Mboka Mwilambwe","r":"Mayor, Bloomington, IL"}]}],"slug":"mclean"},"17115":{"county":[],"munis":[{"m":"Decatur","p":[{"n":"Julie Moore Wolfe","r":"Mayor, Decatur, IL"}]}],"slug":"macon"},"17135":{"county":[],"munis":[{"m":"Litchfield","p":[{"n":"Steve Dougherty","r":"Mayor, Litchfield, IL"}]}],"slug":"montgomery"},"17143":{"county":[],"munis":[{"m":"Peoria","p":[{"n":"Rita Ali","r":"Mayor, Peoria, IL"}]}],"slug":"peoria"},"17167":{"county":[],"munis":[{"m":"Springfield","p":[{"n":"Misty Buscher","r":"Mayor, Springfield, IL"}]}],"slug":"sangamon"},"17179":{"county":[],"munis":[{"m":"Pekin","p":[{"n":"Q106024909","r":"Mayor, Pekin, IL"}]}],"slug":"tazewell"},"17197":{"county":[],"munis":[{"m":"Joliet","p":[{"n":"Bob O’Dekirk","r":"Mayor, Joliet, IL"}]}],"slug":"will"},"17201":{"county":[],"munis":[{"m":"Loves Park","p":[{"n":"Greg Jury","r":"Mayor, Loves Park, IL"}]},{"m":"Rockford","p":[{"n":"Thomas McNamara","r":"Mayor, Rockford, IL"}]}],"slug":"winnebago"},"18003":{"county":[],"munis":[{"m":"Fort Wayne","p":[{"n":"Tom Henry","r":"Mayor, Fort Wayne, IN"}]}],"slug":"allen"},"18043":{"county":[],"munis":[{"m":"New Albany","p":[{"n":"Jeff Gahan","r":"Mayor, New Albany, IN"}]}],"slug":"floyd"},"18057":{"county":[],"munis":[{"m":"Carmel","p":[{"n":"Sue Finkam","r":"Mayor, Carmel, IN"}]}],"slug":"hamilton"},"18097":{"county":[],"munis":[{"m":"Indianapolis City Balance","p":[{"n":"Joe Hogsett","r":"Mayor, Indianapolis, IN"}]}],"slug":"marion"},"18141":{"county":[],"munis":[{"m":"South Bend","p":[{"n":"James Mueller","r":"Mayor, South Bend, IN"}]}],"slug":"st-joseph"},"18159":{"county":[],"munis":[{"m":"Tipton","p":[{"n":"Tom Dolezal","r":"Mayor, Tipton, IN"}]}],"slug":"tipton"},"18163":{"county":[],"munis":[{"m":"Evansville","p":[{"n":"Lloyd Winnecke","r":"Mayor, Evansville, IN"}]}],"slug":"vanderburgh"},"19001":{"county":[],"munis":[{"m":"Fontanelle","p":[{"n":"Michael Walker","r":"Mayor, Fontanelle, IA"}]}],"slug":"adair"},"19013":{"county":[],"munis":[{"m":"Cedar Falls","p":[{"n":"Danny Laudick","r":"Mayor, Cedar Falls, IA"}]},{"m":"Waterloo","p":[{"n":"Quentin M. Hart","r":"Mayor, Waterloo, IA"}]}],"slug":"black-hawk"},"19017":{"county":[],"munis":[{"m":"Sumner","p":[{"n":"Billy Lehmkuhl","r":"Mayor, Sumner, IA"}]}],"slug":"bremer"},"19023":{"county":[],"munis":[{"m":"Greene","p":[{"n":"Warren Van Dyke","r":"Mayor, Greene, IA"}]}],"slug":"butler"},"19027":{"county":[],"munis":[{"m":"Glidden","p":[{"n":"Roger Hartwigsen","r":"Mayor, Glidden, IA"}]}],"slug":"carroll"},"19031":{"county":[],"munis":[{"m":"West Branch","p":[{"n":"Roger Laughlin","r":"Mayor, West Branch, IA"}]}],"slug":"cedar"},"19033":{"county":[],"munis":[{"m":"Clear Lake","p":[{"n":"Nelson P. Crabb","r":"Mayor, Clear Lake, IA"}]}],"slug":"cerro-gordo"},"19037":{"county":[],"munis":[{"m":"Nashua","p":[{"n":"Alex Anthofer","r":"Mayor, Nashua, IA"}]},{"m":"New Hampton","p":[{"n":"Steven Geerts","r":"Mayor, New Hampton, IA"}]}],"slug":"chickasaw"},"19041":{"county":[],"munis":[{"m":"Everly","p":[{"n":"Ron Thompson","r":"Mayor, Everly, IA"}]},{"m":"Spencer","p":[{"n":"Steve Bomgaars","r":"Mayor, Spencer, IA"}]}],"slug":"clay"},"19043":{"county":[],"munis":[{"m":"Guttenberg","p":[{"n":"Fred Schaub","r":"Mayor, Guttenberg, IA"}]},{"m":"Marquette","p":[{"n":"Brittany Hemmer","r":"Mayor, Marquette, IA"}]}],"slug":"clayton"},"19045":{"county":[],"munis":[{"m":"Andover","p":[{"n":"Jason Johnson","r":"Mayor, Andover, IA"}]},{"m":"Calamus","p":[{"n":"Lance Goettsch","r":"Mayor, Calamus, IA"}]},{"m":"Camanche","p":[{"n":"Austin Pruett","r":"Mayor, Camanche, IA"}]},{"m":"Clinton","p":[{"n":"Scott Maddasion","r":"Mayor, Clinton, IA"}]},{"m":"Delmar","p":[{"n":"Patty Hardin","r":"Mayor, Delmar, IA"}]},{"m":"Dewitt","p":[{"n":"Steve Hasenmiller","r":"Mayor, DeWitt, IA"}]},{"m":"Goose Lake","p":[{"n":"Ken Schoon","r":"Mayor, Goose Lake, IA"}]},{"m":"Grand Mound","p":[{"n":"Kurt Crosthwaite","r":"Mayor, Grand Mound, IA"}]},{"m":"Lost Nation","p":[{"n":"Ramon Gilroy","r":"Mayor, Lost Nation, IA"}]},{"m":"Low Moor","p":[{"n":"Tom Goldensoph","r":"Mayor, Low Moor, IA"}]},{"m":"Welton","p":[{"n":"Ashley Paulsen","r":"Mayor, Welton, IA"}]},{"m":"Wheatland","p":[{"n":"Jeremiah Wiese","r":"Mayor, Wheatland, IA"}]}],"slug":"clinton"},"19047":{"county":[],"munis":[{"m":"Denison","p":[{"n":"Pam Soseman","r":"Mayor, Denison, IA"}]},{"m":"Schleswig","p":[{"n":"Beth Winquist","r":"Mayor, Schleswig, IA"}]}],"slug":"crawford"},"19049":{"county":[],"munis":[{"m":"Adel","p":[{"n":"James F. Peters","r":"Mayor, Adel, IA"}]},{"m":"Dexter","p":[{"n":"Dennis Clemetson","r":"Mayor, Dexter, IA"}]},{"m":"Waukee","p":[{"n":"Courtney Clarke","r":"Mayor, Waukee, IA"}]}],"slug":"dallas"},"19051":{"county":[],"munis":[{"m":"Bloomfield","p":[{"n":"Chris Miller","r":"Mayor, Bloomfield, IA"}]},{"m":"Drakesville","p":[{"n":"Bob Sampson","r":"Mayor, Drakesville, IA"}]}],"slug":"davis"},"19053":{"county":[],"munis":[{"m":"Lamoni","p":[{"n":"Douglas L. Foster","r":"Mayor, Lamoni, IA"}]},{"m":"Leon","p":[{"n":"Bob Frey","r":"Mayor, Leon, IA"}]}],"slug":"decatur"},"19055":{"county":[],"munis":[{"m":"Edgewood","p":[{"n":"Bruce Hemann","r":"Mayor, Edgewood, IA"}]},{"m":"Manchester","p":[{"n":"Connie L. Behnken","r":"Mayor, Manchester, IA"}]}],"slug":"delaware"},"19057":{"county":[],"munis":[{"m":"Burlington","p":[{"n":"Jon D. Billups","r":"Mayor, Burlington, IA"}]},{"m":"Mediapolis","p":[{"n":"Thomas Young","r":"Mayor, Mediapolis, IA"}]},{"m":"Middletown","p":[{"n":"Eric Gerst","r":"Mayor, Middletown, IA"}]},{"m":"West Burlington","p":[{"n":"Ron Teater","r":"Mayor, West Burlington, IA"}]}],"slug":"des-moines"},"19059":{"county":[],"munis":[{"m":"Arnolds Park","p":[{"n":"Jim Hussong","r":"Mayor, Arnolds Park, IA"}]},{"m":"Lake Park","p":[{"n":"Matt Carstensen","r":"Mayor, Lake Park, IA"}]},{"m":"Milford","p":[{"n":"Steve Anderson","r":"Mayor, Milford, IA"}]},{"m":"Okoboji","p":[{"n":"Mary VanderWoude","r":"Mayor, Okoboji, IA"}]},{"m":"Spirit Lake","p":[{"n":"Kevin Bice","r":"Mayor, Spirit Lake, IA"}]}],"slug":"dickinson"},"19061":{"county":[],"munis":[{"m":"Asbury","p":[{"n":"Jim Adams","r":"Mayor, Asbury, IA"}]},{"m":"Dubuque","p":[{"n":"Brad Cavanagh","r":"Mayor, Dubuque, IA"}]},{"m":"Epworth","p":[{"n":"Sandra Gassman","r":"Mayor, Epworth, IA"}]}],"slug":"dubuque"},"19063":{"county":[],"munis":[{"m":"Estherville","p":[{"n":"Kenny Billings","r":"Mayor, Estherville, IA"}]}],"slug":"emmet"},"19065":{"county":[],"munis":[{"m":"Fayette","p":[{"n":"Nathan Post","r":"Mayor, Fayette, IA"}]},{"m":"Oelwein","p":[{"n":"Brett DeVore","r":"Mayor, Oelwein, IA"}]}],"slug":"fayette"},"19067":{"county":[],"munis":[{"m":"Charles City","p":[{"n":"Dean Andrews","r":"Mayor, Charles City, IA"}]},{"m":"Rockford","p":[{"n":"Scott Johnson","r":"Mayor, Rockford, IA"}]}],"slug":"floyd"},"19077":{"county":[],"munis":[{"m":"Guthrie Center","p":[{"n":"Mike Herbert","r":"Mayor, Guthrie Center, IA"}]},{"m":"Panora","p":[{"n":"Curtis Thornberry","r":"Mayor, Panora, IA"}]}],"slug":"guthrie"},"19081":{"county":[],"munis":[{"m":"Forest City","p":[{"n":"Ron Holland","r":"Mayor, Forest City, IA"}]}],"slug":"hancock"},"19087":{"county":[],"munis":[{"m":"Mount Pleasant","p":[{"n":"Steven Brimhall","r":"Mayor, Mount Pleasant, IA"}]}],"slug":"henry"},"19091":{"county":[],"munis":[{"m":"Humboldt","p":[{"n":"Dan Scholl","r":"Mayor, Humboldt, IA"}]}],"slug":"humboldt"},"19093":{"county":[],"munis":[{"m":"Battle Creek","p":[{"n":"Charles Pierce","r":"Mayor, Battle Creek, IA"}]},{"m":"Galva","p":[{"n":"Gary Wanberg","r":"Mayor, Galva, IA"}]},{"m":"Ida Grove","p":[{"n":"Nathan Weitl","r":"Mayor, Ida Grove, IA"}]}],"slug":"ida"},"19095":{"county":[],"munis":[{"m":"Marengo","p":[{"n":"Adam Rabe","r":"Mayor, Marengo, IA"}]}],"slug":"iowa"},"19097":{"county":[],"munis":[{"m":"Maquoketa","p":[{"n":"Tom Messerli","r":"Mayor, Maquoketa, IA"}]}],"slug":"jackson"},"19099":{"county":[],"munis":[{"m":"Baxter","p":[{"n":"Doug Bishop","r":"Mayor, Baxter, IA"}]},{"m":"Colfax","p":[{"n":"David Mast","r":"Mayor, Colfax, IA"}]},{"m":"Lynnville","p":[{"n":"Roy James","r":"Mayor, Lynnville, IA"}]},{"m":"Monroe","p":[{"n":"Doug Duinink","r":"Mayor, Monroe, IA"}]},{"m":"Newton","p":[{"n":"Evelyn George","r":"Mayor, Newton, IA"}]},{"m":"Prairie City","p":[{"n":"Chad Alleger","r":"Mayor, Prairie City, IA"}]},{"m":"Sully","p":[{"n":"Ben Ahrens","r":"Mayor, Sully, IA"}]}],"slug":"jasper"},"19103":{"county":[],"munis":[{"m":"Coralville","p":[{"n":"Meghann Foster","r":"Mayor, Coralville, IA"}]},{"m":"Iowa City","p":[{"n":"Bruce Teague","r":"Mayor, Iowa City, IA"}]},{"m":"North Liberty","p":[{"n":"Chris Hoffman","r":"Mayor, North Liberty, IA"}]}],"slug":"johnson"},"19105":{"county":[],"munis":[{"m":"Monticello","p":[{"n":"Wayne Peach","r":"Mayor, Monticello, IA"}]}],"slug":"jones"},"19111":{"county":[],"munis":[{"m":"Fort Madison","p":[{"n":"Matt J. Mohrfeld","r":"Mayor, Fort Madison, IA"}]},{"m":"Keokuk","p":[{"n":"Kathie Mahoney","r":"Mayor, Keokuk, IA"}]}],"slug":"lee"},"19113":{"county":[],"munis":[{"m":"Cedar Rapids","p":[{"n":"Tiffany O'Donnell","r":"Mayor, Cedar Rapids, IA"}]},{"m":"Marion","p":[{"n":"Nicolas AbouAssaly","r":"Mayor, Marion, IA"}]}],"slug":"linn"},"19115":{"county":[],"munis":[{"m":"Grandview","p":[{"n":"Steve Schwandkie","r":"Mayor, Grandview, IA"}]}],"slug":"louisa"},"19117":{"county":[],"munis":[{"m":"Chariton","p":[{"n":"Jayma Hoch","r":"Mayor, Chariton, IA"}]}],"slug":"lucas"},"19121":{"county":[],"munis":[{"m":"Earlham","p":[{"n":"Jeff Lillie","r":"Mayor, Earlham, IA"}]},{"m":"Winterset","p":[{"n":"Thomas Leners","r":"Mayor, Winterset, IA"}]}],"slug":"madison"},"19123":{"county":[],"munis":[{"m":"Oskaloosa","p":[{"n":"David Krutzfeldt","r":"Mayor, Oskaloosa, IA"}]}],"slug":"mahaska"},"19125":{"county":[],"munis":[{"m":"Knoxville","p":[{"n":"Brian Hatch","r":"Mayor, Knoxville, IA"}]},{"m":"Pella","p":[{"n":"Don DeWaard","r":"Mayor, Pella, IA"}]},{"m":"Pleasantville","p":[{"n":"Kody Jurgens","r":"Mayor, Pleasantville, IA"}]}],"slug":"marion"},"19127":{"county":[],"munis":[{"m":"Marshalltown","p":[{"n":"Joel T.S. Greer","r":"Mayor, Marshalltown, IA"}]},{"m":"Melbourne","p":[{"n":"Cynthia Mansager","r":"Mayor, Melbourne, IA"}]},{"m":"State Center","p":[{"n":"Craig Pfantz","r":"Mayor, State Center, IA"}]}],"slug":"marshall"},"19141":{"county":[],"munis":[{"m":"Sheldon","p":[{"n":"Greg Geels","r":"Mayor, Sheldon, IA"}]}],"slug":"o-brien"},"19145":{"county":[],"munis":[{"m":"Shenandoah","p":[{"n":"Roger McQueen","r":"Mayor, Shenandoah, IA"}]}],"slug":"page"},"19149":{"county":[],"munis":[{"m":"Akron","p":[{"n":"Alex Pick","r":"Mayor, Akron, IA"}]},{"m":"Hinton","p":[{"n":"Kelly Kreber","r":"Mayor, Hinton, IA"}]},{"m":"Kingsley","p":[{"n":"Rick Bohle","r":"Mayor, Kingsley, IA"}]},{"m":"Le Mars","p":[{"n":"Rob Bixenman","r":"Mayor, Le Mars, IA"}]},{"m":"Merrill","p":[{"n":"Bruce Norgaard","r":"Mayor, Merrill, IA"}]}],"slug":"plymouth"},"19151":{"county":[],"munis":[{"m":"Fonda","p":[{"n":"Donald Wolf","r":"Mayor, Fonda, IA"}]},{"m":"Laurens","p":[{"n":"Rod Johnson","r":"Mayor, Laurens, IA"}]},{"m":"Pocahontas","p":[{"n":"Wes Beneke","r":"Mayor, Pocahontas, IA"}]},{"m":"Rolfe","p":[{"n":"James Pentico","r":"Mayor, Rolfe, IA"}]}],"slug":"pocahontas"},"19153":{"county":[],"munis":[{"m":"Altoona","p":[{"n":"Q124630277","r":"Mayor, Altoona, IA"}]},{"m":"Ankeny","p":[{"n":"Mark Holm","r":"Mayor, Ankeny, IA"}]},{"m":"Des Moines","p":[{"n":"Connie Boesen","r":"Mayor, Des Moines, IA"}]},{"m":"Johnston","p":[{"n":"Paula Dierenfeld","r":"Mayor, Johnston, IA"}]},{"m":"Mitchellville","p":[{"n":"Jessica Trobaugh","r":"Mayor, Mitchellville, IA"}]},{"m":"Pleasant Hill","p":[{"n":"Sara Kurovski","r":"Mayor, Pleasant Hill, IA"}]},{"m":"Polk City","p":[{"n":"Steve Karsjen","r":"Mayor, Polk City, IA"}]},{"m":"Urbandale","p":[{"n":"Bob Andeweg","r":"Mayor, Urbandale, IA"}]},{"m":"West Des Moines","p":[{"n":"Russ Trimble","r":"Mayor, West Des Moines, IA"}]},{"m":"Windsor Heights","p":[{"n":"Mike Jones","r":"Mayor, Windsor Heights, IA"}]}],"slug":"polk"},"19155":{"county":[],"munis":[{"m":"Carter Lake","p":[{"n":"Ron Cumberledge","r":"Mayor, Carter Lake, IA"}]},{"m":"Council Bluffs","p":[{"n":"Matt Walsh","r":"Mayor, Council Bluffs, IA"}]},{"m":"Macedonia","p":[{"n":"Melia Clark","r":"Mayor, Macedonia, IA"}]},{"m":"Oakland","p":[{"n":"Brant Miller","r":"Mayor, Oakland, IA"}]},{"m":"Underwood","p":[{"n":"Dennis Bardsley","r":"Mayor, Underwood, IA"}]}],"slug":"pottawattamie"},"19157":{"county":[],"munis":[{"m":"Brooklyn","p":[{"n":"Les Taylor","r":"Mayor, Brooklyn, IA"}]},{"m":"Grinnell","p":[{"n":"Dan F. Agnew","r":"Mayor, Grinnell, IA"}]},{"m":"Montezuma","p":[{"n":"Colin Watts","r":"Mayor, Montezuma, IA"}]}],"slug":"poweshiek"},"19161":{"county":[],"munis":[{"m":"Lake View","p":[{"n":"John Westergaard","r":"Mayor, Lake View, IA"}]},{"m":"Sac City","p":[{"n":"Scott Bundt","r":"Mayor, Sac City, IA"}]},{"m":"Schaller","p":[{"n":"Sean Ehrp","r":"Mayor, Schaller, IA"}]},{"m":"Wall Lake","p":[{"n":"Jamie Rohlf","r":"Mayor, Wall Lake, IA"}]}],"slug":"sac"},"19163":{"county":[],"munis":[{"m":"Bettendorf","p":[{"n":"Robert S. Gallagher","r":"Mayor, Bettendorf, IA"}]},{"m":"Buffalo","p":[{"n":"Sally Rodriguez","r":"Mayor, Buffalo, IA"}]},{"m":"Davenport","p":[{"n":"Mike Matson","r":"Mayor, Davenport, IA"}]},{"m":"Eldridge","p":[{"n":"Frank King","r":"Mayor, Eldridge, IA"}]},{"m":"Le Claire","p":[{"n":"Dennis Gerard","r":"Mayor, Le Claire, IA"}]},{"m":"Riverdale","p":[{"n":"Anthony Heddlesten","r":"Mayor, Riverdale, IA"}]},{"m":"Walcott","p":[{"n":"John Kostichek","r":"Mayor, Walcott, IA"}]}],"slug":"scott"},"19165":{"county":[],"munis":[{"m":"Harlan","p":[{"n":"Jay Christensen","r":"Mayor, Harlan, IA"}]}],"slug":"shelby"},"19167":{"county":[],"munis":[{"m":"Hawarden","p":[{"n":"Larry Gregg","r":"Mayor, Hawarden, IA"}]},{"m":"Hull","p":[{"n":"Arlan Moss","r":"Mayor, Hull, IA"}]},{"m":"Orange City","p":[{"n":"Deb de Haan","r":"Mayor, Orange City, IA"}]},{"m":"Rock Valley","p":[{"n":"Kevin van Otterloo","r":"Mayor, Rock Valley, IA"}]},{"m":"Sioux Center","p":[{"n":"Dale Vander Berg","r":"Mayor, Sioux Center, IA"}]}],"slug":"sioux"},"19169":{"county":[],"munis":[{"m":"Ames","p":[{"n":"John Haila","r":"Mayor, Ames, IA"}]},{"m":"Cambridge","p":[{"n":"Robert Chubbic","r":"Mayor, Cambridge, IA"}]},{"m":"Colo","p":[{"n":"Brent Bappe","r":"Mayor, Colo, IA"}]},{"m":"Maxwell","p":[{"n":"Dale Higgins","r":"Mayor, Maxwell, IA"}]},{"m":"Nevada","p":[{"n":"Brett Barker","r":"Mayor, Nevada, IA"}]},{"m":"Roland","p":[{"n":"Kurtis Bower","r":"Mayor, Roland, IA"}]},{"m":"Slater","p":[{"n":"Taylor Christensen","r":"Mayor, Slater, IA"}]},{"m":"Story City","p":[{"n":"Mike Jensen","r":"Mayor, Story City, IA"}]}],"slug":"story"},"19171":{"county":[],"munis":[{"m":"Dysart","p":[{"n":"Tim Glenn","r":"Mayor, Dysart, IA"}]},{"m":"Tama","p":[{"n":"Doug Ray","r":"Mayor, Tama, IA"}]},{"m":"Toledo","p":[{"n":"Brian Sokol","r":"Mayor, Toledo, IA"}]},{"m":"Traer","p":[{"n":"Pete Holden","r":"Mayor, Traer, IA"}]}],"slug":"tama"},"19173":{"county":[],"munis":[{"m":"Bedford","p":[{"n":"Aaron Hardee","r":"Mayor, Bedford, IA"}]},{"m":"Lenox","p":[{"n":"Melissa Douglas","r":"Mayor, Lenox, IA"}]}],"slug":"taylor"},"19175":{"county":[],"munis":[{"m":"Creston","p":[{"n":"Waylon Clayton","r":"Mayor, Creston, IA"}]}],"slug":"union"},"19177":{"county":[],"munis":[{"m":"Farmington","p":[{"n":"Janet Browning","r":"Mayor, Farmington, IA"}]}],"slug":"van-buren"},"19179":{"county":[],"munis":[{"m":"Ottumwa","p":[{"n":"Tom X. Lazio","r":"Mayor, Ottumwa, IA"}]}],"slug":"wapello"},"19181":{"county":[],"munis":[{"m":"Indianola","p":[{"n":"Stephanie Erickson","r":"Mayor, Indianola, IA"}]},{"m":"Norwalk","p":[{"n":"Tom Phillips","r":"Mayor, Norwalk, IA"}]}],"slug":"warren"},"19183":{"county":[],"munis":[{"m":"Kalona","p":[{"n":"Mark Robe","r":"Mayor, Kalona, IA"}]},{"m":"Riverside","p":[{"n":"Allen Schneider","r":"Mayor, Riverside, IA"}]},{"m":"Washington","p":[{"n":"Jaron Rosien","r":"Mayor, Washington, IA"}]},{"m":"Wellman","p":[{"n":"Ryan Miller","r":"Mayor, Wellman, IA"}]}],"slug":"washington"},"19185":{"county":[],"munis":[{"m":"Corydon","p":[{"n":"Nathan Bennett","r":"Mayor, Corydon, IA"}]}],"slug":"wayne"},"19187":{"county":[],"munis":[{"m":"Badger","p":[{"n":"Chris Wendell","r":"Mayor, Badger, IA"}]},{"m":"Dayton","p":[{"n":"Dave Bills","r":"Mayor, Dayton, IA"}]},{"m":"Fort Dodge","p":[{"n":"Matt Bemrich","r":"Mayor, Fort Dodge, IA"}]},{"m":"Gowrie","p":[{"n":"Bruce Towne","r":"Mayor, Gowrie, IA"}]}],"slug":"webster"},"19189":{"county":[],"munis":[{"m":"Buffalo Center","p":[{"n":"Rick Hofbauer","r":"Mayor, Buffalo Center, IA"}]},{"m":"Lake Mills","p":[{"n":"Mark Peterson","r":"Mayor, Lake Mills, IA"}]}],"slug":"winnebago"},"19191":{"county":[],"munis":[{"m":"Calmar","p":[{"n":"Keith Frana","r":"Mayor, Calmar, IA"}]},{"m":"Decorah","p":[{"n":"Lorraine Borowski","r":"Mayor, Decorah, IA"}]},{"m":"Fort Atkinson","p":[{"n":"Paul Herold","r":"Mayor, Fort Atkinson, IA"}]}],"slug":"winneshiek"},"19193":{"county":[],"munis":[{"m":"Correctionville","p":[{"n":"Ken Bauer","r":"Mayor, Correctionville, IA"}]},{"m":"Lawton","p":[{"n":"Jesse Pedersen","r":"Mayor, Lawton, IA"}]},{"m":"Sergeant Bluff","p":[{"n":"Jon Winkel","r":"Mayor, Sergeant Bluff, IA"}]},{"m":"Sioux City","p":[{"n":"Bob Scott","r":"Mayor, Sioux City, IA"}]},{"m":"Sloan","p":[{"n":"Charles Thorpe","r":"Mayor, Sloan, IA"}]}],"slug":"woodbury"},"19195":{"county":[],"munis":[{"m":"Fertile","p":[{"n":"Nick Bailey","r":"Mayor, Fertile, IA"}]}],"slug":"worth"},"19197":{"county":[],"munis":[{"m":"Belmond","p":[{"n":"Frank Beminio","r":"Mayor, Belmond, IA"}]},{"m":"Clarion","p":[{"n":"Rodney Heiden","r":"Mayor, Clarion, IA"}]},{"m":"Eagle Grove","p":[{"n":"Michael Boyd","r":"Mayor, Eagle Grove, IA"}]}],"slug":"wright"},"20015":{"county":[],"munis":[{"m":"Andover","p":[{"n":"Ronnie Price","r":"Mayor, Andover, KS"}]}],"slug":"butler"},"20031":{"county":[],"munis":[{"m":"Burlington","p":[{"n":"Robert S. Luke (Stan)","r":"Mayor, Burlington, KS"}]}],"slug":"coffey"},"20033":{"county":[],"munis":[{"m":"Coldwater","p":[{"n":"Joe Ceballos","r":"Mayor, Coldwater, KS"}]}],"slug":"comanche"},"20035":{"county":[],"munis":[{"m":"Arkansas City","p":[{"n":"Jay Warren","r":"Mayor, Arkansas City, KS"}]}],"slug":"cowley"},"20037":{"county":[],"munis":[{"m":"Pittsburg","p":[{"n":"Stu Hite","r":"Mayor, Pittsburg, KS"}]}],"slug":"crawford"},"20045":{"county":[],"munis":[{"m":"Lawrence","p":[{"n":"Bart Littlejohn","r":"Mayor, Lawrence, KS"}]}],"slug":"douglas"},"20051":{"county":[],"munis":[{"m":"Hays","p":[{"n":"Shaun Musil","r":"Mayor, Hays, KS"}]}],"slug":"ellis"},"20055":{"county":[],"munis":[{"m":"Holcomb","p":[{"n":"Nicole Faulconer","r":"Mayor, Holcomb, KS"}]}],"slug":"finney"},"20059":{"county":[],"munis":[{"m":"Wellsville","p":[{"n":"Bill Lytle","r":"Mayor, Wellsville, KS"}]}],"slug":"franklin"},"20061":{"county":[],"munis":[{"m":"Junction City","p":[{"n":"Pat Landes","r":"Mayor, Junction City, KS"}]}],"slug":"geary"},"20067":{"county":[],"munis":[{"m":"Ulysses","p":[{"n":"Tim McCauley","r":"Mayor, Ulysses, KS"}]}],"slug":"grant"},"20091":{"county":[],"munis":[{"m":"Gardner","p":[{"n":"Steve Shute","r":"Mayor, Gardner, KS"}]},{"m":"Lenexa","p":[{"n":"Julie Sayers","r":"Mayor, Lenexa, KS"}]},{"m":"Olathe","p":[{"n":"John Bacon","r":"Mayor, Olathe, KS"}]},{"m":"Overland Park","p":[{"n":"Carl R. Gerlach","r":"Mayor, Overland Park, KS"}]}],"slug":"johnson"},"20097":{"county":[],"munis":[{"m":"Greensburg","p":[{"n":"Matt Christenson","r":"Mayor, Greensburg, KS"}]}],"slug":"kiowa"},"20099":{"county":[],"munis":[{"m":"Parsons","p":[{"n":"Eric Strait","r":"Mayor, Parsons, KS"}]}],"slug":"labette"},"20103":{"county":[],"munis":[{"m":"Lansing","p":[{"n":"Tony McNeill","r":"Mayor, Lansing, KS"}]},{"m":"Leavenworth","p":[{"n":"Griff Martin","r":"Mayor, Leavenworth, KS"}]}],"slug":"leavenworth"},"20111":{"county":[],"munis":[{"m":"Emporia","p":[{"n":"Erren Harter","r":"Mayor, Emporia, KS"}]}],"slug":"lyon"},"20127":{"county":[],"munis":[{"m":"Council Grove","p":[{"n":"Debi Schwerdtfeger","r":"Mayor, Council Grove, KS"}]}],"slug":"morris"},"20131":{"county":[],"munis":[{"m":"Bern","p":[{"n":"Ralph Schiffbauer","r":"Mayor, Bern, KS"}]}],"slug":"nemaha"},"20161":{"county":[],"munis":[{"m":"Manhattan","p":[{"n":"Mark Hatesohl","r":"Mayor, Manhattan, KS"}]}],"slug":"riley"},"20165":{"county":[],"munis":[{"m":"Liebenthal","p":[{"n":"Darrell Warner","r":"Mayor, Liebenthal, KS"}]}],"slug":"rush"},"20173":{"county":[],"munis":[{"m":"Wichita","p":[{"n":"Lily Wu","r":"Mayor, Wichita, KS"}]}],"slug":"sedgwick"},"20177":{"county":[],"munis":[{"m":"Topeka","p":[{"n":"Spencer L. Duncan","r":"Mayor, Topeka, KS"}]}],"slug":"shawnee"},"20209":{"county":[],"munis":[{"m":"Kansas City","p":[{"n":"Tyrone Garner","r":"Mayor, Kansas City, KS"}]}],"slug":"wyandotte"},"21001":{"county":[],"munis":[{"m":"Columbia","p":[{"n":"Pamela Hoots","r":"Mayor, Columbia, KY"}]}],"slug":"adair"},"21005":{"county":[],"munis":[{"m":"Lawrenceburg","p":[{"n":"Troy Young","r":"Mayor, Lawrenceburg, KY"}]}],"slug":"anderson"},"21009":{"county":[],"munis":[{"m":"Glasgow","p":[{"n":"Henry Royse","r":"Mayor, Glasgow, KY"}]}],"slug":"barren"},"21013":{"county":[],"munis":[{"m":"Middlesborough","p":[{"n":"Boone Bowling","r":"Mayor, Middlesboro, KY"}]}],"slug":"bell"},"21015":{"county":[],"munis":[{"m":"Florence","p":[{"n":"Julie Metzger Aubuchon","r":"Mayor, Florence, KY"}]},{"m":"Union","p":[{"n":"Larry Solomon","r":"Mayor, Union, KY"}]}],"slug":"boone"},"21017":{"county":[],"munis":[{"m":"Paris","p":[{"n":"John A. Plummer","r":"Mayor, Paris, KY"}]}],"slug":"bourbon"},"21019":{"county":[],"munis":[{"m":"Ashland","p":[{"n":"Matt Perkins","r":"Mayor, Ashland, KY"}]}],"slug":"boyd"},"21021":{"county":[],"munis":[{"m":"Danville","p":[{"n":"Q132194982","r":"Mayor, Danville, KY"}]},{"m":"Perryville","p":[{"n":"Rob Kernodle","r":"Mayor, Perryville, KY"}]}],"slug":"boyle"},"21027":{"county":[],"munis":[{"m":"Hardinsburg","p":[{"n":"Wayne Macy","r":"Mayor, Hardinsburg, KY"}]}],"slug":"breckinridge"},"21029":{"county":[],"munis":[{"m":"Mount Washington","p":[{"n":"Stuart Owen","r":"Mayor, Mount Washington, KY"}]}],"slug":"bullitt"},"21035":{"county":[],"munis":[{"m":"Murray","p":[{"n":"Bob Rogers","r":"Mayor, Murray, KY"}]}],"slug":"calloway"},"21037":{"county":[],"munis":[{"m":"Alexandria","p":[{"n":"Andy Schabell","r":"Mayor, Alexandria, KY"}]},{"m":"Fort Thomas","p":[{"n":"Eric Haas","r":"Mayor, Fort Thomas, KY"}]}],"slug":"campbell"},"21041":{"county":[],"munis":[{"m":"Ghent","p":[{"n":"Jimmy Lewellyn","r":"Mayor, Ghent, KY"}]}],"slug":"carroll"},"21043":{"county":[],"munis":[{"m":"Olive Hill","p":[{"n":"Jerry Callihan","r":"Mayor, Olive Hill, KY"}]}],"slug":"carter"},"21047":{"county":[],"munis":[{"m":"Hopkinsville","p":[{"n":"James R. Knight, Jr.","r":"Mayor, Hopkinsville, KY"}]}],"slug":"christian"},"21049":{"county":[],"munis":[{"m":"Winchester","p":[{"n":"JoEllen Reed","r":"Mayor, Winchester, KY"}]}],"slug":"clark"},"21059":{"county":[],"munis":[{"m":"Owensboro","p":[{"n":"Tom Watson","r":"Mayor, Owensboro, KY"}]}],"slug":"daviess"},"21067":{"county":[],"munis":[{"m":"Lexington Fayette","p":[{"n":"Linda Gorton","r":"Mayor, Lexington, KY"}]}],"slug":"fayette"},"21071":{"county":[],"munis":[{"m":"Allen","p":[{"n":"Ernestine Hall","r":"Mayor, Allen, KY"}]}],"slug":"floyd"},"21073":{"county":[],"munis":[{"m":"Frankfort","p":[{"n":"Layne Wilkerson","r":"Mayor, Frankfort, KY"}]}],"slug":"franklin"},"21075":{"county":[],"munis":[{"m":"Hickman","p":[{"n":"Heath Carlton","r":"Mayor, Hickman, KY"}]}],"slug":"fulton"},"21083":{"county":[],"munis":[{"m":"Mayfield","p":[{"n":"Kathy Stewart O'Nan","r":"Mayor, Mayfield, KY"}]}],"slug":"graves"},"21087":{"county":[],"munis":[{"m":"Greensburg","p":[{"n":"John Michael Shuffett","r":"Mayor, Greensburg, KY"}]}],"slug":"green"},"21089":{"county":[],"munis":[{"m":"Flatwoods","p":[{"n":"Buford Hurley II","r":"Mayor, Flatwoods, KY"}]}],"slug":"greenup"},"21093":{"county":[],"munis":[{"m":"Elizabethtown","p":[{"n":"Jeff Gregory","r":"Mayor, Elizabethtown, KY"}]},{"m":"Radcliff","p":[{"n":"JJ Duvall","r":"Mayor, Radcliff, KY"}]}],"slug":"hardin"},"21097":{"county":[],"munis":[{"m":"Cynthiana","p":[{"n":"Isaac T. Dailey","r":"Mayor, Cynthiana, KY"}]}],"slug":"harrison"},"21101":{"county":[],"munis":[{"m":"Henderson","p":[{"n":"Brad Staton","r":"Mayor, Henderson, KY"}]}],"slug":"henderson"},"21107":{"county":[],"munis":[{"m":"Madisonville","p":[{"n":"Kevin Cotton","r":"Mayor, Madisonville, KY"}]}],"slug":"hopkins"},"21111":{"county":[],"munis":[{"m":"Jeffersontown","p":[{"n":"Carol Pike","r":"Mayor, Jeffersontown, KY"}]},{"m":"Louisville","p":[{"n":"Craig Greenberg","r":"Mayor, Louisville, KY"}]},{"m":"Lyndon","p":[{"n":"Brent Hagan","r":"Mayor, Lyndon, KY"}]},{"m":"Shively","p":[{"n":"Maria D. Johnson","r":"Mayor, Shively, KY"}]},{"m":"St Matthews","p":[{"n":"Richard J. Tonini","r":"Mayor, St. Matthews, KY"}]}],"slug":"jefferson"},"21113":{"county":[],"munis":[{"m":"Nicholasville","p":[{"n":"Alex Carter","r":"Mayor, Nicholasville, KY"}]}],"slug":"jessamine"},"21117":{"county":[],"munis":[{"m":"Covington","p":[{"n":"Ron Washington","r":"Mayor, Covington, KY"}]},{"m":"Erlanger","p":[{"n":"Jessica Fette","r":"Mayor, Erlanger, KY"}]},{"m":"Independence","p":[{"n":"Chris Reinersman","r":"Mayor, Independence, KY"}]}],"slug":"kenton"},"21119":{"county":[],"munis":[{"m":"Hindman","p":[{"n":"Patricia Hall","r":"Mayor, Hindman, KY"}]}],"slug":"knott"},"21121":{"county":[],"munis":[{"m":"Barbourville","p":[{"n":"David Thompson","r":"Mayor, Barbourville, KY"}]}],"slug":"knox"},"21127":{"county":[],"munis":[{"m":"Louisa","p":[{"n":"Harold E. Slone","r":"Mayor, Louisa, KY"}]}],"slug":"lawrence"},"21145":{"county":[],"munis":[{"m":"Paducah","p":[{"n":"George P. Bray","r":"Mayor, Paducah, KY"}]}],"slug":"mccracken"},"21151":{"county":[],"munis":[{"m":"Berea","p":[{"n":"Bruce Fraley","r":"Mayor, Berea, KY"}]}],"slug":"madison"},"21157":{"county":[],"munis":[{"m":"Calvert City","p":[{"n":"Gene Colburn","r":"Mayor, Calvert City, KY"}]}],"slug":"marshall"},"21161":{"county":[],"munis":[{"m":"Maysville","p":[{"n":"Debra L. Cotterill","r":"Mayor, Maysville, KY"}]}],"slug":"mason"},"21167":{"county":[],"munis":[{"m":"Harrodsburg","p":[{"n":"Robert Williams","r":"Mayor, Harrodsburg, KY"}]}],"slug":"mercer"},"21169":{"county":[],"munis":[{"m":"Edmonton","p":[{"n":"Doug Smith","r":"Mayor, Edmonton, KY"}]}],"slug":"metcalfe"},"21177":{"county":[],"munis":[{"m":"Central City","p":[{"n":"Tony Armour","r":"Mayor, Central City, KY"}]}],"slug":"muhlenberg"},"21179":{"county":[],"munis":[{"m":"Bardstown","p":[{"n":"Richard Heaton","r":"Mayor, Bardstown, KY"}]}],"slug":"nelson"},"21185":{"county":[],"munis":[{"m":"Goshen","p":[{"n":"Bob Thacker","r":"Mayor, Goshen, KY"}]},{"m":"La Grange","p":[{"n":"John Black","r":"Mayor, La Grange, KY"}]}],"slug":"oldham"},"21193":{"county":[],"munis":[{"m":"Hazard","p":[{"n":"Donald Mobelini","r":"Mayor, Hazard, KY"}]}],"slug":"perry"},"21195":{"county":[],"munis":[{"m":"Pikeville","p":[{"n":"James A. Carter","r":"Mayor, Pikeville, KY"}]}],"slug":"pike"},"21199":{"county":[],"munis":[{"m":"Somerset","p":[{"n":"Alan Keck","r":"Mayor, Somerset, KY"}]}],"slug":"pulaski"},"21209":{"county":[],"munis":[{"m":"Georgetown","p":[{"n":"Burney Jenkins","r":"Mayor, Georgetown, KY"}]}],"slug":"scott"},"21211":{"county":[],"munis":[{"m":"Shelbyville","p":[{"n":"David B. Eaton","r":"Mayor, Shelbyville, KY"}]}],"slug":"shelby"},"21213":{"county":[],"munis":[{"m":"Franklin","p":[{"n":"Larry Dixon","r":"Mayor, Franklin, KY"}]}],"slug":"simpson"},"21215":{"county":[],"munis":[{"m":"Taylorsville","p":[{"n":"Karen Spencer","r":"Mayor, Taylorsville, KY"}]}],"slug":"spencer"},"21217":{"county":[],"munis":[{"m":"Campbellsville","p":[{"n":"Dennis Benningfield","r":"Mayor, Campbellsville, KY"}]}],"slug":"taylor"},"21227":{"county":[],"munis":[{"m":"Bowling Green","p":[{"n":"Todd Alcott","r":"Mayor, Bowling Green, KY"}]}],"slug":"warren"},"21229":{"county":[],"munis":[{"m":"Springfield","p":[{"n":"Debbie Wakefield","r":"Mayor, Springfield, KY"}]}],"slug":"washington"},"21235":{"county":[],"munis":[{"m":"Corbin","p":[{"n":"Suzie Razmus","r":"Mayor, Corbin, KY"}]},{"m":"Williamsburg","p":[{"n":"Roddy Harrison","r":"Mayor, Williamsburg, KY"}]}],"slug":"whitley"},"21239":{"county":[],"munis":[{"m":"Versailles","p":[{"n":"Laura Dake","r":"Mayor, Versailles, KY"}]}],"slug":"woodford"},"22015":{"county":[],"munis":[{"m":"Bossier City","p":[{"n":"Thomas Chandler","r":"Mayor, Bossier City, LA"}]}],"slug":"bossier-parish"},"22017":{"county":[],"munis":[{"m":"Shreveport","p":[{"n":"Tom Arceneaux","r":"Mayor, Shreveport, LA"}]}],"slug":"caddo-parish"},"22019":{"county":[],"munis":[{"m":"Lake Charles","p":[{"n":"Nic Hunter","r":"Mayor, Lake Charles, LA"}]}],"slug":"calcasieu-parish"},"22033":{"county":[],"munis":[{"m":"Baker","p":[{"n":"Darnell Waites","r":"Mayor, Baker, LA"}]},{"m":"Baton Rouge","p":[{"n":"Sharon Weston Broome","r":"Mayor, Baton Rouge, LA"}]}],"slug":"east-baton-rouge-parish"},"22045":{"county":[],"munis":[{"m":"New Iberia","p":[{"n":"Freddie DeCourt","r":"Mayor, New Iberia, LA"}]}],"slug":"iberia-parish"},"22051":{"county":[],"munis":[{"m":"Kenner","p":[{"n":"Michael Glaser","r":"Mayor, Kenner, LA"}]}],"slug":"jefferson-parish"},"22055":{"county":[],"munis":[{"m":"Lafayette","p":[{"n":"Josh Guillory","r":"Mayor, Lafayette, LA"}]}],"slug":"lafayette-parish"},"22067":{"county":[],"munis":[{"m":"Bastrop","p":[{"n":"Henry Cotton","r":"Mayor, Bastrop, LA"}]}],"slug":"morehouse-parish"},"22069":{"county":[],"munis":[{"m":"Natchitoches","p":[{"n":"Ronnie Williams. Jr","r":"Mayor, Natchitoches, LA"}]}],"slug":"natchitoches-parish"},"22071":{"county":[],"munis":[{"m":"New Orleans","p":[{"n":"Helena Moreno","r":"Mayor, New Orleans, LA"}]}],"slug":"orleans-parish"},"22073":{"county":[],"munis":[{"m":"Monroe","p":[{"n":"Friday Ellis","r":"Mayor, Monroe, LA"}]}],"slug":"ouachita-parish"},"22079":{"county":[],"munis":[{"m":"Alexandria","p":[{"n":"Jacques Roy","r":"Mayor, Alexandria, LA"}]},{"m":"Pineville","p":[{"n":"Clarence Fields","r":"Mayor, Pineville, LA"}]}],"slug":"rapides-parish"},"22097":{"county":[],"munis":[{"m":"Opelousas","p":[{"n":"Julius Alsandor","r":"Mayor, Opelousas, LA"}]}],"slug":"st-landry-parish"},"22103":{"county":[],"munis":[{"m":"Slidell","p":[{"n":"Greg Cromer","r":"Mayor, Slidell, LA"}]}],"slug":"st-tammany-parish"},"22113":{"county":[],"munis":[{"m":"Abbeville","p":[{"n":"Roslyn R. White","r":"Mayor, Abbeville, LA"}]}],"slug":"vermilion-parish"},"23001":{"county":[],"munis":[{"m":"Auburn","p":[{"n":"Jeffrey D. Harmon","r":"Mayor, Auburn, ME"}]},{"m":"Lewiston","p":[{"n":"Carl L. Sheline","r":"Mayor, Lewiston, ME"}]}],"slug":"androscoggin"},"23005":{"county":[],"munis":[{"m":"Portland","p":[{"n":"Mark Dion","r":"Mayor, Portland, ME"}]},{"m":"South Portland","p":[{"n":"Misha C. Pride","r":"Mayor, South Portland, ME"}]},{"m":"Westbrook","p":[{"n":"David Morse","r":"Mayor, Westbrook, ME"}]}],"slug":"cumberland"},"23011":{"county":[],"munis":[{"m":"Augusta","p":[{"n":"Mark O’Brien","r":"Mayor, Augusta, ME"}]},{"m":"Waterville","p":[{"n":"Michael Morris","r":"Mayor, Waterville, ME"}]}],"slug":"kennebec"},"23031":{"county":[],"munis":[{"m":"Biddeford","p":[{"n":"Martin Grohman","r":"Mayor, Biddeford, ME"}]},{"m":"Saco","p":[{"n":"Jodi MacPhail","r":"Mayor, Saco, ME"}]},{"m":"Sanford","p":[{"n":"Becky A. Brink","r":"Mayor, Sanford, ME"}]}],"slug":"york"},"24001":{"county":[],"munis":[{"m":"Frostburg","p":[{"n":"W. Robert Flanigan","r":"Mayor, Frostburg, MD"}]}],"slug":"allegany"},"24021":{"county":[],"munis":[{"m":"Frederick","p":[{"n":"Michael O'Connor","r":"Mayor, Frederick, MD"}]}],"slug":"frederick"},"24031":{"county":[],"munis":[{"m":"Gaithersburg","p":[{"n":"Jud Ashman","r":"Mayor, Gaithersburg, MD"}]},{"m":"Rockville","p":[{"n":"Monique Ashton","r":"Mayor, Rockville, MD"}]}],"slug":"montgomery"},"24033":{"county":[],"munis":[{"m":"Bowie","p":[{"n":"Tim Adams","r":"Mayor, Bowie, MD"}]}],"slug":"prince-george-s"},"24043":{"county":[],"munis":[{"m":"Hagerstown","p":[{"n":"William McIntire","r":"Mayor, Hagerstown, MD"}]}],"slug":"washington"},"24045":{"county":[],"munis":[{"m":"Salisbury","p":[{"n":"Randolph J. Taylor","r":"Mayor, Salisbury, MD"}]}],"slug":"wicomico"},"25005":{"county":[],"munis":[{"m":"Fall River","p":[{"n":"Paul Coogan","r":"Mayor, Fall River, MA"}]},{"m":"New Bedford","p":[{"n":"Jonathan F. Mitchell","r":"Mayor, New Bedford, MA"}]},{"m":"Taunton","p":[{"n":"Shaunna O'Connell","r":"Mayor, Taunton, MA"}]}],"slug":"bristol"},"25009":{"county":[],"munis":[{"m":"Amesbury","p":[{"n":"Kassandra Gove","r":"Mayor, Amesbury, MA"}]},{"m":"Beverly","p":[{"n":"Michael P. Cahill","r":"Mayor, Beverly, MA"}]},{"m":"Haverhill","p":[{"n":"Melinda E. Barrett","r":"Mayor, Haverhill, MA"}]},{"m":"Lawrence","p":[{"n":"Q124247832","r":"Mayor, Lawrence, MA"}]},{"m":"Lynn","p":[{"n":"Jared C. Nicholson","r":"Mayor, Lynn, MA"}]},{"m":"Methuen","p":[{"n":"Q131176725","r":"Mayor, Methuen, MA"}]},{"m":"Peabody","p":[{"n":"Edward Bettencourt","r":"Mayor, Peabody, MA"}]},{"m":"Salem","p":[{"n":"Dominick Pangallo","r":"Mayor, Salem, MA"}]}],"slug":"essex"},"25013":{"county":[],"munis":[{"m":"Holyoke","p":[{"n":"Joshua A. Garcia","r":"Mayor, Holyoke, MA"}]},{"m":"Springfield","p":[{"n":"Domenic Sarno","r":"Mayor, Springfield, MA"}]}],"slug":"hampden"},"25015":{"county":[],"munis":[{"m":"Northampton","p":[{"n":"Gina-Louise Sciarra","r":"Mayor, Northampton, MA"}]}],"slug":"hampshire"},"25017":{"county":[],"munis":[{"m":"Cambridge","p":[{"n":"Denise Simmons","r":"Mayor, Cambridge, MA"}]},{"m":"Lowell","p":[{"n":"Sokhary Chau","r":"Mayor, Lowell, MA"}]},{"m":"Malden","p":[{"n":"Gary Christenson","r":"Mayor, Malden, MA"}]},{"m":"Medford","p":[{"n":"Breanna Lungo-Koehn","r":"Mayor, Medford, MA"}]},{"m":"Newton","p":[{"n":"Ruthanne Fuller","r":"Mayor, Newton, MA"}]},{"m":"Somerville","p":[{"n":"Katjana Ballantyne","r":"Mayor, Somerville, MA"}]},{"m":"Waltham","p":[{"n":"Jeannette A. McCarthy","r":"Mayor, Waltham, MA"}]}],"slug":"middlesex"},"25021":{"county":[],"munis":[{"m":"Quincy","p":[{"n":"Thomas P. Koch","r":"Mayor, Quincy, MA"}]},{"m":"Weymouth Town","p":[{"n":"Robert L. Hedlund","r":"Mayor, Weymouth, MA"}]}],"slug":"norfolk"},"25023":{"county":[],"munis":[{"m":"Brockton","p":[{"n":"Robert F. Sullivan","r":"Mayor, Brockton, MA"}]}],"slug":"plymouth"},"25025":{"county":[],"munis":[{"m":"Boston","p":[{"n":"Michelle Wu","r":"Mayor, Boston, MA"}]},{"m":"Revere","p":[{"n":"Patrick M. Keefe Jr.","r":"Mayor, Revere, MA"}]}],"slug":"suffolk"},"25027":{"county":[],"munis":[{"m":"Worcester","p":[{"n":"Joseph Petty","r":"Mayor, Worcester, MA"}]}],"slug":"worcester"},"26017":{"county":[],"munis":[{"m":"Bay City","p":[{"n":"Christopher Girard","r":"Mayor, Bay City, MI"}]}],"slug":"bay"},"26025":{"county":[],"munis":[{"m":"Battle Creek","p":[{"n":"Mark Behnke","r":"Mayor, Battle Creek, MI"}]}],"slug":"calhoun"},"26041":{"county":[],"munis":[{"m":"Escanaba","p":[{"n":"Mark Ammel","r":"Mayor, Escanaba, MI"}]}],"slug":"delta"},"26045":{"county":[],"munis":[{"m":"Olivet","p":[{"n":"Laura Barlond-Maas","r":"Mayor, Olivet, MI"}]}],"slug":"eaton"},"26049":{"county":[],"munis":[{"m":"Flint","p":[{"n":"Karen Weaver","r":"Mayor, Flint, MI"}]}],"slug":"genesee"},"26055":{"county":[],"munis":[{"m":"Traverse City","p":[{"n":"Amy Shamroe","r":"Mayor, Traverse City, MI"}]}],"slug":"grand-traverse"},"26065":{"county":[],"munis":[{"m":"Lansing","p":[{"n":"Virgil Bernero","r":"Mayor, Lansing, MI"}]}],"slug":"ingham"},"26077":{"county":[],"munis":[{"m":"Kalamazoo","p":[{"n":"David Anderson","r":"Mayor, Kalamazoo, MI"}]}],"slug":"kalamazoo"},"26081":{"county":[],"munis":[{"m":"Grand Rapids","p":[{"n":"Rosalynn Bliss","r":"Mayor, Grand Rapids, MI"}]},{"m":"Kentwood","p":[{"n":"Stephen Kepley","r":"Mayor, Kentwood, MI"}]},{"m":"Wyoming","p":[{"n":"Kent Vanderwood","r":"Mayor, Wyoming, MI"}]}],"slug":"kent"},"26097":{"county":[],"munis":[{"m":"Mackinac Island","p":[{"n":"Margaret Doud","r":"Mayor, Mackinac Island, MI"}]}],"slug":"mackinac"},"26099":{"county":[],"munis":[{"m":"Sterling Heights","p":[{"n":"Michael C. Taylor","r":"Mayor, Sterling Heights, MI"}]},{"m":"Warren","p":[{"n":"James R. Fouts","r":"Mayor, Warren, MI"}]}],"slug":"macomb"},"26107":{"county":[],"munis":[{"m":"Big Rapids","p":[{"n":"Q124459604","r":"Mayor, Big Rapids, MI"}]}],"slug":"mecosta"},"26111":{"county":[],"munis":[{"m":"Midland","p":[{"n":"Maureen Donker","r":"Mayor, Midland, MI"}]}],"slug":"midland"},"26121":{"county":[],"munis":[{"m":"Muskegon","p":[{"n":"Ken Johnson","r":"Mayor, Muskegon, MI"}]}],"slug":"muskegon"},"26125":{"county":[],"munis":[{"m":"Rochester Hills","p":[{"n":"Bryan Barnett","r":"Mayor, Rochester Hills, MI"}]},{"m":"Southfield","p":[{"n":"Kenson Siver","r":"Mayor, Southfield, MI"}]},{"m":"Troy","p":[{"n":"Ethan Baker","r":"Mayor, Troy, MI"}]}],"slug":"oakland"},"26147":{"county":[],"munis":[{"m":"Port Huron","p":[{"n":"Anita Ashford","r":"Mayor, Port Huron, MI"}]}],"slug":"st-clair"},"26161":{"county":[],"munis":[{"m":"Ann Arbor","p":[{"n":"Christopher Taylor","r":"Mayor, Ann Arbor, MI"}]}],"slug":"washtenaw"},"26163":{"county":[],"munis":[{"m":"Dearborn","p":[{"n":"Abdullah Hammoud","r":"Mayor, Dearborn, MI"}]},{"m":"Detroit","p":[{"n":"Mary Sheffield","r":"Mayor, Detroit, MI"}]},{"m":"Grosse Pointe Woods","p":[{"n":"Arthur Bryant","r":"Mayor, Grosse Pointe Woods, MI"}]},{"m":"Highland Park","p":[{"n":"Glenda McDonald","r":"Mayor, Highland Park, MI"}]},{"m":"Livonia","p":[{"n":"Maureen Miller Brosnan","r":"Mayor, Livonia, MI"}]}],"slug":"wayne"},"27003":{"county":[],"munis":[{"m":"Columbus","p":[{"n":"Jesse Preiner","r":"Mayor, Columbus, MN"}]}],"slug":"anoka"},"27043":{"county":[],"munis":[{"m":"Minnesota Lake","p":[{"n":"Q40249461","r":"Mayor, Minnesota Lake, MN"}]}],"slug":"faribault"},"27053":{"county":[],"munis":[{"m":"Bloomington","p":[{"n":"Tim Busse","r":"Mayor, Bloomington, MN"}]},{"m":"Brooklyn Park","p":[{"n":"Lisa Jacobson","r":"Mayor, Brooklyn Park, MN"}]},{"m":"Minneapolis","p":[{"n":"Jacob Frey","r":"Mayor, Minneapolis, MN"}]},{"m":"Plymouth","p":[{"n":"Jeffry Wosje","r":"Mayor, Plymouth, MN"}]}],"slug":"hennepin"},"27059":{"county":[],"munis":[{"m":"Braham","p":[{"n":"Patricia Carlson","r":"Mayor, Braham, MN"}]}],"slug":"isanti"},"27093":{"county":[],"munis":[{"m":"Watkins","p":[{"n":"Christopher Rowan","r":"Mayor, Watkins, MN"}]}],"slug":"meeker"},"27097":{"county":[],"munis":[{"m":"Motley","p":[{"n":"Mike Schmidt","r":"Mayor, Motley, MN"}]}],"slug":"morrison"},"27109":{"county":[],"munis":[{"m":"Rochester","p":[{"n":"Kim Norton","r":"Mayor, Rochester, MN"}]}],"slug":"olmsted"},"27123":{"county":[],"munis":[{"m":"Maplewood","p":[{"n":"Marylee Abrams","r":"Mayor, Maplewood, MN"}]},{"m":"St Paul","p":[{"n":"Kaohly Her","r":"Mayor, Saint Paul, MN"}]}],"slug":"ramsey"},"27131":{"county":[],"munis":[{"m":"Northfield","p":[{"n":"Rhonda Pownell","r":"Mayor, Northfield, MN"}]}],"slug":"rice"},"27137":{"county":[],"munis":[{"m":"Duluth","p":[{"n":"Roger Reinert","r":"Mayor, Duluth, MN"}]},{"m":"Floodwood","p":[{"n":"Tad Farrell","r":"Mayor, Floodwood, MN"}]}],"slug":"st-louis"},"27141":{"county":[],"munis":[{"m":"Becker","p":[{"n":"Tracy Bertram","r":"Mayor, Becker, MN"}]},{"m":"Elk River","p":[{"n":"Calvin Portner","r":"Mayor, Elk River, MN"}]}],"slug":"sherburne"},"27143":{"county":[],"munis":[{"m":"Winthrop","p":[{"n":"Kelly Pierson","r":"Mayor, Winthrop, MN"}]}],"slug":"sibley"},"27145":{"county":[],"munis":[{"m":"St Cloud","p":[{"n":"Dave Kleis","r":"Mayor, St. Cloud, MN"}]}],"slug":"stearns"},"27147":{"county":[],"munis":[{"m":"Blooming Prairie","p":[{"n":"Curt Esplan","r":"Mayor, Blooming Prairie, MN"}]}],"slug":"steele"},"27171":{"county":[],"munis":[{"m":"Hanover","p":[{"n":"Chris Kauffman","r":"Mayor, Hanover, MN"}]}],"slug":"wright"},"28001":{"county":[],"munis":[{"m":"Natchez","p":[{"n":"Dan M. Gibson","r":"Mayor, Natchez, MS"}]}],"slug":"adams"},"28011":{"county":[],"munis":[{"m":"Cleveland","p":[{"n":"Billy Nowell","r":"Mayor, Cleveland, MS"}]}],"slug":"bolivar"},"28025":{"county":[],"munis":[{"m":"West Point","p":[{"n":"Rod Bobo","r":"Mayor, West Point, MS"}]}],"slug":"clay"},"28027":{"county":[],"munis":[{"m":"Clarksdale","p":[{"n":"Chuck Espy","r":"Mayor, Clarksdale, MS"}]}],"slug":"coahoma"},"28033":{"county":[],"munis":[{"m":"Hernando","p":[{"n":"Chip Johnson","r":"Mayor, Hernando, MS"}]},{"m":"Horn Lake","p":[{"n":"Allen Latimer","r":"Mayor, Horn Lake, MS"}]},{"m":"Olive Branch","p":[{"n":"Ken Adams","r":"Mayor, Olive Branch, MS"}]},{"m":"Southaven","p":[{"n":"Darren Musselwhite","r":"Mayor, Southaven, MS"}]}],"slug":"desoto"},"28035":{"county":[],"munis":[{"m":"Hattiesburg","p":[{"n":"Toby Barker","r":"Mayor, Hattiesburg, MS"}]}],"slug":"forrest"},"28043":{"county":[],"munis":[{"m":"Grenada","p":[{"n":"Charles H. Latham","r":"Mayor, Grenada, MS"}]}],"slug":"grenada"},"28047":{"county":[],"munis":[{"m":"Biloxi","p":[{"n":"Andrew Gilich","r":"Mayor, Biloxi, MS"}]},{"m":"Gulfport","p":[{"n":"William Gardner Hewes","r":"Mayor, Gulfport, MS"}]},{"m":"Long Beach","p":[{"n":"George L. Bass","r":"Mayor, Long Beach, MS"}]}],"slug":"harrison"},"28049":{"county":[],"munis":[{"m":"Byram","p":[{"n":"Richard White","r":"Mayor, Byram, MS"}]},{"m":"Clinton","p":[{"n":"Phil Fisher","r":"Mayor, Clinton, MS"}]},{"m":"Jackson","p":[{"n":"Chokwe Antar Lumumba","r":"Mayor, Jackson, MS"}]}],"slug":"hinds"},"28059":{"county":[],"munis":[{"m":"Gautier","p":[{"n":"Casey Vaughan","r":"Mayor, Gautier, MS"}]},{"m":"Moss Point","p":[{"n":"Billy Knight, Sr.","r":"Mayor, Moss Point, MS"}]},{"m":"Ocean Springs","p":[{"n":"Kenny Holloway","r":"Mayor, Ocean Springs, MS"}]},{"m":"Pascagoula","p":[{"n":"Jay Willis","r":"Mayor, Pascagoula, MS"}]}],"slug":"jackson"},"28067":{"county":[],"munis":[{"m":"Laurel","p":[{"n":"Johnny Magee","r":"Mayor, Laurel, MS"}]}],"slug":"jones"},"28071":{"county":[],"munis":[{"m":"Oxford","p":[{"n":"Robyn Tannehill","r":"Mayor, Oxford, MS"}]}],"slug":"lafayette"},"28075":{"county":[],"munis":[{"m":"Meridian","p":[{"n":"Q109905488","r":"Mayor, Meridian, MS"}]}],"slug":"lauderdale"},"28081":{"county":[],"munis":[{"m":"Tupelo","p":[{"n":"Todd Jordan","r":"Mayor, Tupelo, MS"}]}],"slug":"lee"},"28083":{"county":[],"munis":[{"m":"Greenwood","p":[{"n":"Carolyn McAdams","r":"Mayor, Greenwood, MS"}]}],"slug":"leflore"},"28085":{"county":[],"munis":[{"m":"Brookhaven","p":[{"n":"Joe C. Cox","r":"Mayor, Brookhaven, MS"}]}],"slug":"lincoln"},"28087":{"county":[],"munis":[{"m":"Columbus","p":[{"n":"Keith Gaskin","r":"Mayor, Columbus, MS"}]}],"slug":"lowndes"},"28089":{"county":[],"munis":[{"m":"Canton","p":[{"n":"William Truly, Jr.","r":"Mayor, Canton, MS"}]},{"m":"Madison","p":[{"n":"Mary Hawkins Butler","r":"Mayor, Madison, MS"}]},{"m":"Ridgeland","p":[{"n":"Gene F. McGee","r":"Mayor, Ridgeland, MS"}]}],"slug":"madison"},"28105":{"county":[],"munis":[{"m":"Starkville","p":[{"n":"Lynn Spruill","r":"Mayor, Starkville, MS"}]}],"slug":"oktibbeha"},"28109":{"county":[],"munis":[{"m":"Picayune","p":[{"n":"Jim Luke","r":"Mayor, Picayune, MS"}]}],"slug":"pearl-river"},"28113":{"county":[],"munis":[{"m":"Mccomb","p":[{"n":"Quordiniah N. Lockley","r":"Mayor, McComb, MS"}]}],"slug":"pike"},"28121":{"county":[],"munis":[{"m":"Brandon","p":[{"n":"Butch Lee","r":"Mayor, Brandon, MS"}]},{"m":"Flowood","p":[{"n":"Gary Rhoads","r":"Mayor, Flowood, MS"}]},{"m":"Pearl","p":[{"n":"Jake Windham","r":"Mayor, Pearl, MS"}]}],"slug":"rankin"},"28133":{"county":[],"munis":[{"m":"Indianola","p":[{"n":"Ken Featherstone","r":"Mayor, Indianola, MS"}]}],"slug":"sunflower"},"28149":{"county":[],"munis":[{"m":"Vicksburg","p":[{"n":"George Flaggs Jr.","r":"Mayor, Vicksburg, MS"}]}],"slug":"warren"},"28151":{"county":[],"munis":[{"m":"Greenville","p":[{"n":"Errick D. Simmons","r":"Mayor, Greenville, MS"}]}],"slug":"washington"},"28163":{"county":[],"munis":[{"m":"Yazoo City","p":[{"n":"Q131346619","r":"Mayor, Yazoo City, MS"}]}],"slug":"yazoo"},"29013":{"county":[],"munis":[{"m":"Butler","p":[{"n":"Jim Henry","r":"Mayor, Butler, MO"}]}],"slug":"bates"},"29019":{"county":[],"munis":[{"m":"Columbia","p":[{"n":"Barbara Buffaloe","r":"Mayor, Columbia, MO"}]}],"slug":"boone"},"29021":{"county":[],"munis":[{"m":"St Joseph","p":[{"n":"John Josendale","r":"Mayor, St. Joseph, MO"}]}],"slug":"buchanan"},"29023":{"county":[],"munis":[{"m":"Poplar Bluff","p":[{"n":"Shane Cornman","r":"Mayor, Poplar Bluff, MO"}]}],"slug":"butler"},"29031":{"county":[],"munis":[{"m":"Jackson","p":[{"n":"Dwain Hahs","r":"Mayor, Jackson, MO"}]}],"slug":"cape-girardeau"},"29051":{"county":[],"munis":[{"m":"Jefferson City","p":[{"n":"Ron Fitzwater","r":"Mayor, Jefferson City, MO"}]}],"slug":"cole"},"29073":{"county":[],"munis":[{"m":"Hermann","p":[{"n":"Bruce Cox","r":"Mayor, Hermann, MO"}]}],"slug":"gasconade"},"29077":{"county":[],"munis":[{"m":"Springfield","p":[{"n":"Ken McClure","r":"Mayor, Springfield, MO"}]}],"slug":"greene"},"29081":{"county":[],"munis":[{"m":"Bethany","p":[{"n":"Lance Johns","r":"Mayor, Bethany, MO"}]}],"slug":"harrison"},"29089":{"county":[],"munis":[{"m":"Fayette","p":[{"n":"Greg Stidham","r":"Mayor, Fayette, MO"}]}],"slug":"howard"},"29095":{"county":[],"munis":[{"m":"Independence","p":[{"n":"Rory Rowland","r":"Mayor, Independence, MO"}]},{"m":"Kansas City","p":[{"n":"Quinton Lucas","r":"Mayor, Kansas City, MO"}]},{"m":"Lee S Summit","p":[{"n":"William A. Baird","r":"Mayor, Lee's Summit, MO"}]}],"slug":"jackson"},"29097":{"county":[],"munis":[{"m":"Joplin","p":[{"n":"Douglas Lawson","r":"Mayor, Joplin, MO"}]}],"slug":"jasper"},"29159":{"county":[],"munis":[{"m":"Sedalia","p":[{"n":"Andrew Dawson","r":"Mayor, Sedalia, MO"}]}],"slug":"pettis"},"29183":{"county":[],"munis":[{"m":"O Fallon","p":[{"n":"Bill Hennessy","r":"Mayor, O'Fallon, MO"}]},{"m":"St Charles","p":[{"n":"Dan Borgmeyer","r":"Mayor, St. Charles, MO"}]},{"m":"St Peters","p":[{"n":"Len Pagano","r":"Mayor, St. Peters, MO"}]}],"slug":"st-charles"},"29189":{"county":[],"munis":[{"m":"Creve Coeur","p":[{"n":"Robert Hoffman","r":"Mayor, Creve Coeur, MO"}]},{"m":"Shrewsbury","p":[{"n":"Mike Travaglini","r":"Mayor, Shrewsbury, MO"}]},{"m":"Velda City","p":[{"n":"Melda B. Collins","r":"Mayor, Velda City, MO"}]},{"m":"Vinita Park","p":[{"n":"James W. McGee","r":"Mayor, Vinita Park, MO"}]},{"m":"Warson Woods","p":[{"n":"Laurance M. Howe","r":"Mayor, Warson Woods, MO"}]}],"slug":"st-louis"},"29213":{"county":[],"munis":[{"m":"Branson","p":[{"n":"Larry Milton","r":"Mayor, Branson, MO"}]}],"slug":"taney"},"29219":{"county":[],"munis":[{"m":"Warrenton","p":[{"n":"Eric Schleuter","r":"Mayor, Warrenton, MO"}]}],"slug":"warren"},"30007":{"county":[],"munis":[{"m":"Townsend","p":[{"n":"Mike Evans","r":"Mayor, Townsend, MT"}]}],"slug":"broadwater"},"30013":{"county":[],"munis":[{"m":"Great Falls","p":[{"n":"Bob Kelly","r":"Mayor, Great Falls, MT"}]}],"slug":"cascade"},"30031":{"county":[],"munis":[{"m":"Belgrade","p":[{"n":"Russell C. Nelson","r":"Mayor, Belgrade, MT"}]},{"m":"Bozeman","p":[{"n":"Terry Cunningham","r":"Mayor, Bozeman, MT"}]}],"slug":"gallatin"},"30035":{"county":[],"munis":[{"m":"Cut Bank","p":[{"n":"Kim Winchell","r":"Mayor, Cut Bank, MT"}]}],"slug":"glacier"},"30047":{"county":[],"munis":[{"m":"Polson","p":[{"n":"Eric Huffine","r":"Mayor, Polson, MT"}]}],"slug":"lake"},"30049":{"county":[],"munis":[{"m":"Helena","p":[{"n":"Wilmot Collins","r":"Mayor, Helena, MT"}]}],"slug":"lewis-and-clark"},"30063":{"county":[],"munis":[{"m":"Missoula","p":[{"n":"Jordan Hess","r":"Mayor, Missoula, MT"}]}],"slug":"missoula"},"30085":{"county":[],"munis":[{"m":"Wolf Point","p":[{"n":"Chris M. Dschaak","r":"Mayor, Wolf Point, MT"}]}],"slug":"roosevelt"},"30089":{"county":[],"munis":[{"m":"Thompson Falls","p":[{"n":"Mark Sheets","r":"Mayor, Thompson Falls, MT"}]}],"slug":"sanders"},"30111":{"county":[],"munis":[{"m":"Billings","p":[{"n":"Bill Cole","r":"Mayor, Billings, MT"}]}],"slug":"yellowstone"},"31041":{"county":[],"munis":[{"m":"Broken Bow","p":[{"n":"mayor","r":"Mayor, Broken Bow, NE"}]}],"slug":"custer"},"31109":{"county":[],"munis":[{"m":"Lincoln","p":[{"n":"Leirion Gaylor Baird","r":"Mayor, Lincoln, NE"}]}],"slug":"lancaster"},"31159":{"county":[],"munis":[{"m":"Seward","p":[{"n":"Joshua Eickmeier","r":"Mayor, Seward, NE"}]}],"slug":"seward"},"31185":{"county":[],"munis":[{"m":"Henderson","p":[{"n":"Don Regier","r":"Mayor, Henderson, NE"}]}],"slug":"york"},"32003":{"county":[],"munis":[{"m":"Henderson","p":[{"n":"Michelle Romero","r":"Mayor, Henderson, NV"}]},{"m":"Las Vegas","p":[{"n":"Carolyn Goodman","r":"Mayor, Las Vegas, NV"}]},{"m":"North Las Vegas","p":[{"n":"John Jay Lee","r":"Mayor, North Las Vegas, NV"}]}],"slug":"clark"},"32031":{"county":[],"munis":[{"m":"Reno","p":[{"n":"Hillary Schieve","r":"Mayor, Reno, NV"}]},{"m":"Sparks","p":[{"n":"Ed Lawson","r":"Mayor, Sparks, NV"}]}],"slug":"washoe"},"33001":{"county":[],"munis":[{"m":"Laconia","p":[{"n":"Andrew Hosmer","r":"Mayor, Laconia, NH"}]}],"slug":"belknap"},"33005":{"county":[],"munis":[{"m":"Keene","p":[{"n":"Q109468854","r":"Mayor, Keene, NH"}]}],"slug":"cheshire"},"33007":{"county":[],"munis":[{"m":"Berlin","p":[{"n":"Robert Cone","r":"Mayor, Berlin, NH"}]}],"slug":"coos"},"33009":{"county":[],"munis":[{"m":"Lebanon","p":[{"n":"Timothy J. McNamara","r":"Mayor, Lebanon, NH"}]}],"slug":"grafton"},"33011":{"county":[],"munis":[{"m":"Manchester","p":[{"n":"Joyce Craig","r":"Mayor, Manchester, NH"}]},{"m":"Nashua","p":[{"n":"James W. Donchess","r":"Mayor, Nashua, NH"}]}],"slug":"hillsborough"},"33013":{"county":[],"munis":[{"m":"Concord","p":[{"n":"Byron O. Champlin","r":"Mayor, Concord, NH"}]},{"m":"Franklin","p":[{"n":"Desiree McLaughlin","r":"Mayor, Franklin, NH"}]}],"slug":"merrimack"},"33015":{"county":[],"munis":[{"m":"Portsmouth","p":[{"n":"Deaglan McEachern","r":"Mayor, Portsmouth, NH"}]}],"slug":"rockingham"},"33017":{"county":[],"munis":[{"m":"Dover","p":[{"n":"Robert Carrier","r":"Mayor, Dover, NH"}]},{"m":"Rochester","p":[{"n":"Paul Callaghan","r":"Mayor, Rochester, NH"}]},{"m":"Somersworth","p":[{"n":"Matt Gerding","r":"Mayor, Somersworth, NH"}]}],"slug":"strafford"},"33019":{"county":[],"munis":[{"m":"Claremont","p":[{"n":"Dale Girard","r":"Mayor, Claremont, NH"}]}],"slug":"sullivan"},"34001":{"county":[],"munis":[{"m":"Absecon","p":[{"n":"Kimberly Horton","r":"Mayor, Absecon, NJ"}]},{"m":"Atlantic City","p":[{"n":"Marty Small, Sr.","r":"Mayor, Atlantic City, NJ"}]},{"m":"Brigantine","p":[{"n":"Vince Sera","r":"Mayor, Brigantine, NJ"}]},{"m":"Corbin City","p":[{"n":"Wayne M. Smith","r":"Mayor, Corbin City, NJ"}]},{"m":"Egg Harbor City","p":[{"n":"Lisa Jiampetti","r":"Mayor, Egg Harbor City, NJ"}]},{"m":"Estell Manor","p":[{"n":"Elizabeth Owen","r":"Mayor, Estell Manor, NJ"}]},{"m":"Linwood","p":[{"n":"Darren Matik","r":"Mayor, Linwood, NJ"}]},{"m":"Margate City","p":[{"n":"Michael Collins","r":"Mayor, Margate City, NJ"}]},{"m":"Northfield","p":[{"n":"Erland Chau","r":"Mayor, Northfield, NJ"}]},{"m":"Pleasantville","p":[{"n":"Judy Ward","r":"Mayor, Pleasantville, NJ"}]},{"m":"Port Republic","p":[{"n":"Monica Giberson","r":"Mayor, Port Republic, NJ"}]},{"m":"Somers Point","p":[{"n":"Dennis Tapp","r":"Mayor, Somers Point, NJ"}]},{"m":"Ventnor City","p":[{"n":"Tim Kriebel","r":"Mayor, Ventnor City, NJ"}]}],"slug":"atlantic"},"34003":{"county":[],"munis":[{"m":"Englewood","p":[{"n":"Michael Wildes","r":"Mayor, Englewood, NJ"}]},{"m":"Garfield","p":[{"n":"Richard Rigoglioso","r":"Mayor, Garfield, NJ"}]}],"slug":"bergen"},"34005":{"county":[],"munis":[{"m":"Burlington","p":[{"n":"Barry W. Conaway","r":"Mayor, Burlington City, NJ"}]}],"slug":"burlington"},"34007":{"county":[],"munis":[{"m":"Camden","p":[{"n":"Victor G. Carstarphen","r":"Mayor, Camden, NJ"}]},{"m":"Gloucester City","p":[{"n":"Dayl Baile","r":"Mayor, Gloucester City, NJ"}]}],"slug":"camden"},"34009":{"county":[],"munis":[{"m":"Cape May","p":[{"n":"Zack Mullock","r":"Mayor, Cape May, NJ"}]},{"m":"Ocean City","p":[{"n":"Jay A. Gillian","r":"Mayor, Ocean City, NJ"}]}],"slug":"cape-may"},"34011":{"county":[],"munis":[{"m":"Bridgeton","p":[{"n":"Albert B. Kelly","r":"Mayor, Bridgeton, NJ"}]},{"m":"Millville","p":[{"n":"Benjamin Romanik","r":"Mayor, Millville, NJ"}]},{"m":"Vineland","p":[{"n":"Anthony R. Fanucci","r":"Mayor, Vineland, NJ"}]}],"slug":"cumberland"},"34013":{"county":[],"munis":[{"m":"East Orange","p":[{"n":"Ted R. Green","r":"Mayor, East Orange, NJ"}]},{"m":"Newark","p":[{"n":"Q7294641","r":"Mayor, Newark, NJ"}]}],"slug":"essex"},"34015":{"county":[],"munis":[{"m":"Woodbury","p":[{"n":"Kyle Miller","r":"Mayor, Woodbury, NJ"}]}],"slug":"gloucester"},"34017":{"county":[],"munis":[{"m":"Bayonne","p":[{"n":"Jimmy Davis","r":"Mayor, Bayonne, NJ"}]},{"m":"Hoboken","p":[{"n":"Ravinder Bhalla","r":"Mayor, Hoboken, NJ"}]},{"m":"Jersey City","p":[{"n":"Steven Fulop","r":"Mayor, Jersey City, NJ"}]},{"m":"Union City","p":[{"n":"Brian P. Stack","r":"Mayor, Union City, NJ"}]}],"slug":"hudson"},"34021":{"county":[],"munis":[{"m":"Trenton","p":[{"n":"Eric Jackson","r":"Mayor, Trenton, NJ"}]}],"slug":"mercer"},"34023":{"county":[],"munis":[{"m":"New Brunswick","p":[{"n":"Jim Cahill","r":"Mayor, New Brunswick, NJ"}]},{"m":"Perth Amboy","p":[{"n":"Helmin J. Caba","r":"Mayor, Perth Amboy, NJ"}]},{"m":"South Amboy","p":[{"n":"Fred A. Henry","r":"Mayor, South Amboy, NJ"}]}],"slug":"middlesex"},"34025":{"county":[],"munis":[{"m":"Long Branch","p":[{"n":"John Pallone","r":"Mayor, Long Branch, NJ"}]}],"slug":"monmouth"},"34031":{"county":[],"munis":[{"m":"Clifton","p":[{"n":"Raymond Grabowski","r":"Mayor, Clifton, NJ"}]},{"m":"Passaic","p":[{"n":"Hector C. Lora","r":"Mayor, Passaic, NJ"}]},{"m":"Paterson","p":[{"n":"Andre Sayegh","r":"Mayor, Paterson, NJ"}]}],"slug":"passaic"},"34033":{"county":[],"munis":[{"m":"Salem","p":[{"n":"Jody Veler","r":"Mayor, Salem, NJ"}]}],"slug":"salem"},"34039":{"county":[],"munis":[{"m":"Elizabeth","p":[{"n":"Chris Bollwage","r":"Mayor, Elizabeth, NJ"}]},{"m":"Linden","p":[{"n":"Derek Armstead","r":"Mayor, Linden, NJ"}]},{"m":"Plainfield","p":[{"n":"Adrian O. Mapp","r":"Mayor, Plainfield, NJ"}]},{"m":"Rahway","p":[{"n":"Raymond A. Giacobbe","r":"Mayor, Rahway, NJ"}]},{"m":"Summit","p":[{"n":"Elizabeth Fagan","r":"Mayor, Summit, NJ"}]}],"slug":"union"},"35001":{"county":[],"munis":[{"m":"Albuquerque","p":[{"n":"Q7807370","r":"Mayor, Albuquerque, NM"}]}],"slug":"bernalillo"},"35013":{"county":[],"munis":[{"m":"Las Cruces","p":[{"n":"Ken Miyagishima","r":"Mayor, Las Cruces, NM"}]}],"slug":"dona-ana"},"35029":{"county":[],"munis":[{"m":"Deming","p":[{"n":"Michele Shillito","r":"Mayor, Deming, NM"}]}],"slug":"luna"},"35043":{"county":[],"munis":[{"m":"Rio Rancho","p":[{"n":"Greggory D. Hull","r":"Mayor, Rio Rancho, NM"}]}],"slug":"sandoval"},"35049":{"county":[],"munis":[{"m":"Santa Fe","p":[{"n":"Alan Webber","r":"Mayor, Santa Fe, NM"}]}],"slug":"santa-fe"},"36001":{"county":[],"munis":[{"m":"Albany","p":[{"n":"Kathy Sheehan","r":"Mayor, Albany, NY"}]},{"m":"Cohoes","p":[{"n":"William T. Keeler","r":"Mayor, Cohoes, NY"}]},{"m":"Green Island","p":[{"n":"James Oddo","r":"Mayor, Staten Island, NY"}]},{"m":"Watervliet","p":[{"n":"Charles Patricelli","r":"Mayor, Watervliet, NY"}]}],"slug":"albany"},"36007":{"county":[],"munis":[{"m":"Binghamton","p":[{"n":"Jared Kraham","r":"Mayor, Binghamton, NY"}]}],"slug":"broome"},"36009":{"county":[],"munis":[{"m":"Olean","p":[{"n":"William J. Aiello","r":"Mayor, Olean, NY"}]}],"slug":"cattaraugus"},"36011":{"county":[],"munis":[{"m":"Auburn","p":[{"n":"James N. Giannettino, Jr.","r":"Mayor, Auburn, NY"}]}],"slug":"cayuga"},"36013":{"county":[],"munis":[{"m":"Dunkirk","p":[{"n":"Kate Wdowiasz","r":"Mayor, Dunkirk, NY"}]},{"m":"Jamestown","p":[{"n":"Kimberly Ecklund","r":"Mayor, Jamestown, NY"}]}],"slug":"chautauqua"},"36023":{"county":[],"munis":[{"m":"Cortland","p":[{"n":"Scott Steve","r":"Mayor, Cortland, NY"}]}],"slug":"cortland"},"36027":{"county":[],"munis":[{"m":"Beacon","p":[{"n":"Lee Kyriacou","r":"Mayor, Beacon, NY"}]},{"m":"Poughkeepsie","p":[{"n":"Yvonne Flowers","r":"Mayor, Poughkeepsie, NY"}]}],"slug":"dutchess"},"36029":{"county":[],"munis":[{"m":"Buffalo","p":[{"n":"Byron Brown","r":"Mayor, Buffalo, NY"}]},{"m":"Lackawanna","p":[{"n":"Annette Iafallo","r":"Mayor, Lackawanna, NY"}]},{"m":"Tonawanda","p":[{"n":"John White","r":"Mayor, Tonawanda, NY"}]}],"slug":"erie"},"36035":{"county":[],"munis":[{"m":"Gloversville","p":[{"n":"Vincent DeSantis","r":"Mayor, Gloversville, NY"}]}],"slug":"fulton"},"36043":{"county":[],"munis":[{"m":"Little Falls","p":[{"n":"Deborah A. Kaufman","r":"Mayor, Little Falls, NY"}]}],"slug":"herkimer"},"36045":{"county":[],"munis":[{"m":"Watertown","p":[{"n":"Jeffrey M. Smith","r":"Mayor, Watertown, NY"}]}],"slug":"jefferson"},"36055":{"county":[],"munis":[{"m":"Rochester","p":[{"n":"Malik Evans","r":"Mayor, Rochester, NY"}]}],"slug":"monroe"},"36059":{"county":[],"munis":[{"m":"Glen Cove","p":[{"n":"Pamela D. Panzenbeck","r":"Mayor, Glen Cove, NY"}]}],"slug":"nassau"},"36063":{"county":[],"munis":[{"m":"Lockport","p":[{"n":"John Lombardi III","r":"Mayor, Lockport, NY"}]},{"m":"Niagara Falls","p":[{"n":"Robert Restaino","r":"Mayor, Niagara Falls, NY"}]},{"m":"North Tonawanda","p":[{"n":"Austin J. Tylec","r":"Mayor, North Tonawanda, NY"}]}],"slug":"niagara"},"36065":{"county":[],"munis":[{"m":"Utica","p":[{"n":"Michael P. Galime","r":"Mayor, Utica, NY"}]}],"slug":"oneida"},"36067":{"county":[],"munis":[{"m":"Syracuse","p":[{"n":"Sharon Owens","r":"Mayor, Syracuse, NY"}]}],"slug":"onondaga"},"36071":{"county":[],"munis":[{"m":"Newburgh","p":[{"n":"Torrance Harvey","r":"Mayor, Newburgh, NY"}]},{"m":"Port Jervis","p":[{"n":"Dominic M. Cicalese","r":"Mayor, Port Jervis, NY"}]}],"slug":"orange"},"36083":{"county":[],"munis":[{"m":"Rensselaer","p":[{"n":"Michael Stammel","r":"Mayor, Rensselaer, NY"}]},{"m":"Troy","p":[{"n":"Carmella Mantello","r":"Mayor, Troy, NY"}]}],"slug":"rensselaer"},"36091":{"county":[],"munis":[{"m":"Mechanicville","p":[{"n":"Mike Butler","r":"Mayor, Mechanicville, NY"}]},{"m":"Saratoga Springs","p":[{"n":"Meg Kelly","r":"Mayor, Saratoga Springs, NY"}]}],"slug":"saratoga"},"36093":{"county":[],"munis":[{"m":"Schenectady","p":[{"n":"Gary McCarthy","r":"Mayor, Schenectady, NY"}]}],"slug":"schenectady"},"36101":{"county":[],"munis":[{"m":"Corning","p":[{"n":"William M. Boland Jr.","r":"Mayor, Corning, NY"}]}],"slug":"steuben"},"36109":{"county":[],"munis":[{"m":"Ithaca","p":[{"n":"Svante Myrick","r":"Mayor, Ithaca, NY"}]}],"slug":"tompkins"},"36111":{"county":[],"munis":[{"m":"Kingston","p":[{"n":"Steve Noble","r":"Mayor, Kingston, NY"}]}],"slug":"ulster"},"36113":{"county":[],"munis":[{"m":"Glens Falls","p":[{"n":"William Collins","r":"Mayor, Glens Falls, NY"}]}],"slug":"warren"},"36119":{"county":[],"munis":[{"m":"Mount Vernon","p":[{"n":"Shawyn Patterson-Howard","r":"Mayor, Mount Vernon, NY"}]},{"m":"New Rochelle","p":[{"n":"Yadira Ramos-Herbert","r":"Mayor, New Rochelle, NY"}]},{"m":"White Plains","p":[{"n":"Thomas Roach","r":"Mayor, White Plains, NY"}]},{"m":"Yonkers","p":[{"n":"Mike Spano","r":"Mayor, Yonkers, NY"}]}],"slug":"westchester"},"37001":{"county":[],"munis":[{"m":"Burlington","p":[{"n":"James B. Butler","r":"Mayor, Burlington, NC"}]},{"m":"Graham","p":[{"n":"Jennifer Talley","r":"Mayor, Graham, NC"}]},{"m":"Mebane","p":[{"n":"Ed Hooks","r":"Mayor, Mebane, NC"}]}],"slug":"alamance"},"37013":{"county":[],"munis":[{"m":"Washington","p":[{"n":"Donald Sadler","r":"Mayor, Washington, NC"}]}],"slug":"beaufort"},"37021":{"county":[],"munis":[{"m":"Asheville","p":[{"n":"Esther Manheimer","r":"Mayor, Asheville, NC"}]},{"m":"Woodfin","p":[{"n":"Jim McAllister","r":"Mayor, Woodfin, NC"}]}],"slug":"buncombe"},"37023":{"county":[],"munis":[{"m":"Morganton","p":[{"n":"Ronnie Thompson","r":"Mayor, Morganton, NC"}]}],"slug":"burke"},"37025":{"county":[],"munis":[{"m":"Concord","p":[{"n":"William C. \"Bill\" Dusch","r":"Mayor, Concord, NC"}]},{"m":"Kannapolis","p":[{"n":"M. Darrell Hinnant","r":"Mayor, Kannapolis, NC"}]}],"slug":"cabarrus"},"37027":{"county":[],"munis":[{"m":"Lenoir","p":[{"n":"Joseph L. Gibbons","r":"Mayor, Lenoir, NC"}]}],"slug":"caldwell"},"37031":{"county":[],"munis":[{"m":"Atlantic Beach","p":[{"n":"Danny Navey","r":"Mayor, Atlantic Beach, NC"}]},{"m":"Beaufort","p":[{"n":"Sharon Harker","r":"Mayor, Beaufort, NC"}]},{"m":"Morehead City","p":[{"n":"Jerry Jones, Jr.","r":"Mayor, Morehead City, NC"}]}],"slug":"carteret"},"37035":{"county":[],"munis":[{"m":"Hickory","p":[{"n":"Hank Guess","r":"Mayor, Hickory, NC"}]}],"slug":"catawba"},"37045":{"county":[],"munis":[{"m":"Kings Mountain","p":[{"n":"Rob Wagman","r":"Mayor, Kings Mountain, NC"}]},{"m":"Shelby","p":[{"n":"Stan Anthony","r":"Mayor, Shelby, NC"}]}],"slug":"cleveland"},"37047":{"county":[],"munis":[{"m":"Chadbourn","p":[{"n":"Phillip C. Britt","r":"Mayor, Chadbourn, NC"}]}],"slug":"columbus"},"37051":{"county":[],"munis":[{"m":"Fayetteville","p":[{"n":"Mitch Colvin","r":"Mayor, Fayetteville, NC"}]}],"slug":"cumberland"},"37055":{"county":[],"munis":[{"m":"Duck","p":[{"n":"Don Kingston","r":"Mayor, Duck, NC"}]},{"m":"Kill Devil Hills","p":[{"n":"John Windley","r":"Mayor, Kill Devil Hills, NC"}]},{"m":"Kitty Hawk","p":[{"n":"Craig Garriss","r":"Mayor, Kitty Hawk, NC"}]},{"m":"Manteo","p":[{"n":"Sherry Butcher Wickstrom","r":"Mayor, Manteo, NC"}]},{"m":"Nags Head","p":[{"n":"Ben Cahoon","r":"Mayor, Nags Head, NC"}]}],"slug":"dare"},"37057":{"county":[],"munis":[{"m":"Denton","p":[{"n":"Larry D. Ward","r":"Mayor, Denton, NC"}]},{"m":"Lexington","p":[{"n":"Jason Hayes","r":"Mayor, Lexington, NC"}]},{"m":"Midway","p":[{"n":"John Byrum","r":"Mayor, Midway, NC"}]},{"m":"Thomasville","p":[{"n":"Joe G. Bennett","r":"Mayor, Thomasville, NC"}]},{"m":"Wallburg","p":[{"n":"Allen Todd","r":"Mayor, Wallburg, NC"}]}],"slug":"davidson"},"37059":{"county":[],"munis":[{"m":"Mocksville","p":[{"n":"William J. Marklin III","r":"Mayor, Mocksville, NC"}]}],"slug":"davie"},"37061":{"county":[],"munis":[{"m":"Wallace","p":[{"n":"Jason Wells","r":"Mayor, Wallace, NC"}]}],"slug":"duplin"},"37063":{"county":[],"munis":[{"m":"Durham","p":[{"n":"Steve Schewel","r":"Mayor, Durham, NC"}]}],"slug":"durham"},"37067":{"county":[],"munis":[{"m":"Clemmons","p":[{"n":"Michael Rogers","r":"Mayor, Clemmons, NC"}]},{"m":"Kernersville","p":[{"n":"Dawn H. Morgan","r":"Mayor, Kernersville, NC"}]},{"m":"Lewisville","p":[{"n":"Mike Horn","r":"Mayor, Lewisville, NC"}]},{"m":"Winston Salem","p":[{"n":"Allen Joines","r":"Mayor, Winston-Salem, NC"}]}],"slug":"forsyth"},"37069":{"county":[],"munis":[{"m":"Franklinton","p":[{"n":"Arthur Wright","r":"Mayor, Franklinton, NC"}]}],"slug":"franklin"},"37071":{"county":[],"munis":[{"m":"Belmont","p":[{"n":"Jim Hefferan","r":"Mayor, Belmont, NC"}]},{"m":"Gastonia","p":[{"n":"Richard Franks","r":"Mayor, Gastonia, NC"}]},{"m":"Stanley","p":[{"n":"Cathy Kirkland","r":"Mayor, Stanley, NC"}]}],"slug":"gaston"},"37075":{"county":[],"munis":[{"m":"Fontana Dam","p":[{"n":"Rob Hardy","r":"Mayor, Fontana Dam, NC"}]}],"slug":"graham"},"37081":{"county":[],"munis":[{"m":"Greensboro","p":[{"n":"Marikay Abuzuaiter","r":"Mayor, Greensboro, NC"}]},{"m":"High Point","p":[{"n":"Cyril Jefferson","r":"Mayor, High Point, NC"}]},{"m":"Stokesdale","p":[{"n":"Mike Crawford","r":"Mayor, Stokesdale, NC"}]}],"slug":"guilford"},"37085":{"county":[],"munis":[{"m":"Dunn","p":[{"n":"William P. Elmore Jr.","r":"Mayor, Dunn, NC"}]}],"slug":"harnett"},"37087":{"county":[],"munis":[{"m":"Canton","p":[{"n":"Zeb Smathers","r":"Mayor, Canton, NC"}]}],"slug":"haywood"},"37089":{"county":[],"munis":[{"m":"Hendersonville","p":[{"n":"Barbara G. Volk","r":"Mayor, Hendersonville, NC"}]}],"slug":"henderson"},"37097":{"county":[],"munis":[{"m":"Mooresville","p":[{"n":"Chris Carney","r":"Mayor, Mooresville, NC"}]},{"m":"Statesville","p":[{"n":"Costi Kutteh","r":"Mayor, Statesville, NC"}]}],"slug":"iredell"},"37101":{"county":[],"munis":[{"m":"Clayton","p":[{"n":"Jody McLeod","r":"Mayor, Clayton, NC"}]},{"m":"Selma","p":[{"n":"Byron McAllister","r":"Mayor, Selma, NC"}]}],"slug":"johnston"},"37103":{"county":[],"munis":[{"m":"Pollocksville","p":[{"n":"Jay Bender","r":"Mayor, Pollocksville, NC"}]}],"slug":"jones"},"37115":{"county":[],"munis":[{"m":"Mars Hill","p":[{"n":"John L. Chandler","r":"Mayor, Mars Hill, NC"}]}],"slug":"madison"},"37119":{"county":[],"munis":[{"m":"Charlotte","p":[{"n":"Vi Lyles","r":"Mayor, Charlotte, NC"}]},{"m":"Davidson","p":[{"n":"Rusty Knox","r":"Mayor, Davidson, NC"}]},{"m":"Huntersville","p":[{"n":"Christy Clark","r":"Mayor, Huntersville, NC"}]}],"slug":"mecklenburg"},"37121":{"county":[],"munis":[{"m":"Spruce Pine","p":[{"n":"Phillip Hise","r":"Mayor, Spruce Pine, NC"}]}],"slug":"mitchell"},"37125":{"county":[],"munis":[{"m":"Pinehurst","p":[{"n":"Patrick Pizzella","r":"Mayor, Pinehurst, NC"}]},{"m":"Southern Pines","p":[{"n":"Taylor Clement","r":"Mayor, Southern Pines, NC"}]}],"slug":"moore"},"37127":{"county":[],"munis":[{"m":"Rocky Mount","p":[{"n":"Sandy Roberson","r":"Mayor, Rocky Mount, NC"}]}],"slug":"nash"},"37129":{"county":[],"munis":[{"m":"Carolina Beach","p":[{"n":"Lynn Barbee","r":"Mayor, Carolina Beach, NC"}]},{"m":"Kure Beach","p":[{"n":"Allen Oliver","r":"Mayor, Kure Beach, NC"}]},{"m":"Wilmington","p":[{"n":"Bill Saffo","r":"Mayor, Wilmington, NC"}]},{"m":"Wrightsville Beach","p":[{"n":"Darryl Mills","r":"Mayor, Wrightsville Beach, NC"}]}],"slug":"new-hanover"},"37133":{"county":[],"munis":[{"m":"Jacksonville","p":[{"n":"Sammy Phillips","r":"Mayor, Jacksonville, NC"}]}],"slug":"onslow"},"37135":{"county":[],"munis":[{"m":"Carrboro","p":[{"n":"Barbara Foushee","r":"Mayor, Carrboro, NC"}]},{"m":"Chapel Hill","p":[{"n":"Jessica Anderson","r":"Mayor, Chapel Hill, NC"}]}],"slug":"orange"},"37139":{"county":[],"munis":[{"m":"Elizabeth City","p":[{"n":"E. Kirk Rivers","r":"Mayor, Elizabeth City, NC"}]}],"slug":"pasquotank"},"37147":{"county":[],"munis":[{"m":"Greenville","p":[{"n":"P.J. Connelly","r":"Mayor, Greenville, NC"}]}],"slug":"pitt"},"37151":{"county":[],"munis":[{"m":"Asheboro","p":[{"n":"David Smith","r":"Mayor, Asheboro, NC"}]},{"m":"Ramseur","p":[{"n":"Hampton Spivey","r":"Mayor, Ramseur, NC"}]}],"slug":"randolph"},"37153":{"county":[],"munis":[{"m":"Rockingham","p":[{"n":"John Hutchinson","r":"Mayor, Rockingham, NC"}]}],"slug":"richmond"},"37155":{"county":[],"munis":[{"m":"Lumberton","p":[{"n":"Bruce Davis","r":"Mayor, Lumberton, NC"}]}],"slug":"robeson"},"37157":{"county":[],"munis":[{"m":"Eden","p":[{"n":"Neville Hall","r":"Mayor, Eden, NC"}]}],"slug":"rockingham"},"37159":{"county":[],"munis":[{"m":"Salisbury","p":[{"n":"Karen K. Alexander","r":"Mayor, Salisbury, NC"}]}],"slug":"rowan"},"37163":{"county":[],"munis":[{"m":"Clinton","p":[{"n":"Lew Starling","r":"Mayor, Clinton, NC"}]}],"slug":"sampson"},"37165":{"county":[],"munis":[{"m":"Laurinburg","p":[{"n":"Jim Willis","r":"Mayor, Laurinburg, NC"}]}],"slug":"scotland"},"37167":{"county":[],"munis":[{"m":"Albemarle","p":[{"n":"Q131798851","r":"Mayor, Albemarle, NC"}]}],"slug":"stanly"},"37171":{"county":[],"munis":[{"m":"Mount Airy","p":[{"n":"Jon Cawley","r":"Mayor, Mount Airy, NC"}]}],"slug":"surry"},"37179":{"county":[],"munis":[{"m":"Wesley Chapel","p":[{"n":"Amanda Fuller","r":"Mayor, Wesley Chapel, NC"}]}],"slug":"union"},"37181":{"county":[],"munis":[{"m":"Henderson","p":[{"n":"Melissa Elliott","r":"Mayor, Henderson, NC"}]}],"slug":"vance"},"37183":{"county":[],"munis":[{"m":"Apex","p":[{"n":"Jacques Gilbert","r":"Mayor, Apex, NC"}]},{"m":"Cary","p":[{"n":"Harold Weinbrecht","r":"Mayor, Cary, NC"}]},{"m":"Garner","p":[{"n":"Buddy Gupton","r":"Mayor, Garner, NC"}]},{"m":"Knightdale","p":[{"n":"Jessica Day","r":"Mayor, Knightdale, NC"}]},{"m":"Raleigh","p":[{"n":"Nancy McFarlane","r":"Mayor, Raleigh, NC"}]},{"m":"Wake Forest","p":[{"n":"Vivian A. Jones","r":"Mayor, Wake Forest, NC"}]},{"m":"Zebulon","p":[{"n":"Glenn L. York","r":"Mayor, Zebulon, NC"}]}],"slug":"wake"},"37189":{"county":[],"munis":[{"m":"Boone","p":[{"n":"Tim Futrelle","r":"Mayor, Boone, NC"}]}],"slug":"watauga"},"37191":{"county":[],"munis":[{"m":"Goldsboro","p":[{"n":"Charles Gaylor","r":"Mayor, Goldsboro, NC"}]}],"slug":"wayne"},"37195":{"county":[],"munis":[{"m":"Wilson","p":[{"n":"Carlton L. Stevens","r":"Mayor, Wilson, NC"}]}],"slug":"wilson"},"37197":{"county":[],"munis":[{"m":"Yadkinville","p":[{"n":"Eddie Norman","r":"Mayor, Yadkinville, NC"}]}],"slug":"yadkin"},"38015":{"county":[],"munis":[{"m":"Bismarck","p":[{"n":"Mike Schmitz","r":"Mayor, Bismarck, ND"}]}],"slug":"burleigh"},"38017":{"county":[],"munis":[{"m":"Fargo","p":[{"n":"Tim Mahoney","r":"Mayor, Fargo, ND"}]}],"slug":"cass"},"38051":{"county":[],"munis":[{"m":"Ashley","p":[{"n":"Erich Schock","r":"Mayor, Ashley, ND"}]}],"slug":"mcintosh"},"38089":{"county":[],"munis":[{"m":"Dickinson","p":[{"n":"Scott Decker","r":"Mayor, Dickinson, ND"}]}],"slug":"stark"},"38101":{"county":[],"munis":[{"m":"Minot","p":[{"n":"Shaun Sipma","r":"Mayor, Minot, ND"}]}],"slug":"ward"},"39003":{"county":[],"munis":[{"m":"Delphos","p":[{"n":"Andre McConnahea","r":"Mayor, Delphos, OH"}]},{"m":"Lima","p":[{"n":"Sharetta Smith","r":"Mayor, Lima, OH"}]}],"slug":"allen"},"39005":{"county":[],"munis":[{"m":"Ashland","p":[{"n":"Matt Miller","r":"Mayor, Ashland, OH"}]}],"slug":"ashland"},"39011":{"county":[],"munis":[{"m":"St Marys","p":[{"n":"Joseph Hurlburt Jr.","r":"Mayor, St. Marys, OH"}]},{"m":"Wapakoneta","p":[{"n":"Dan Lee","r":"Mayor, Wapakoneta, OH"}]}],"slug":"auglaize"},"39013":{"county":[],"munis":[{"m":"Martins Ferry","p":[{"n":"John Davies","r":"Mayor, Martins Ferry, OH"}]},{"m":"St Clairsville","p":[{"n":"Kathryn Thalman","r":"Mayor, St. Clairsville, OH"}]}],"slug":"belmont"},"39017":{"county":[],"munis":[{"m":"Fairfield","p":[{"n":"Mitch Rhodus","r":"Mayor, Fairfield, OH"}]},{"m":"Hamilton","p":[{"n":"Pat Moeller","r":"Mayor, Hamilton, OH"}]},{"m":"Middletown","p":[{"n":"Elizabeth Slamka","r":"Mayor, Middletown, OH"}]},{"m":"Monroe","p":[{"n":"Keith Funk","r":"Mayor, Monroe, OH"}]}],"slug":"butler"},"39021":{"county":[],"munis":[{"m":"Urbana","p":[{"n":"Bill Bean","r":"Mayor, Urbana, OH"}]}],"slug":"champaign"},"39023":{"county":[],"munis":[{"m":"Springfield","p":[{"n":"Warren R. Copeland","r":"Mayor, Springfield, OH"}]}],"slug":"clark"},"39027":{"county":[],"munis":[{"m":"Wilmington","p":[{"n":"Patrick Haley","r":"Mayor, Wilmington, OH"}]}],"slug":"clinton"},"39029":{"county":[],"munis":[{"m":"Columbiana","p":[{"n":"Rick Noel","r":"Mayor, Columbiana, OH"}]},{"m":"East Liverpool","p":[{"n":"Robert J. Smith","r":"Mayor, East Liverpool, OH"}]},{"m":"Salem","p":[{"n":"Cyndi Baronzzi Dickey","r":"Mayor, Salem, OH"}]}],"slug":"columbiana"},"39031":{"county":[],"munis":[{"m":"Coshocton","p":[{"n":"Mark Mills","r":"Mayor, Coshocton, OH"}]}],"slug":"coshocton"},"39033":{"county":[],"munis":[{"m":"Bucyrus","p":[{"n":"Bruce Truka","r":"Mayor, Bucyrus, OH"}]},{"m":"Galion","p":[{"n":"Thomas M. O'Leary","r":"Mayor, Galion, OH"}]}],"slug":"crawford"},"39035":{"county":[],"munis":[{"m":"Bay Village","p":[{"n":"Paul Koomar","r":"Mayor, Bay Village, OH"}]},{"m":"Beachwood","p":[{"n":"Justin Berns","r":"Mayor, Beachwood, OH"}]},{"m":"Bedford Heights","p":[{"n":"Phillip Stevens","r":"Mayor, Bedford Heights, OH"}]},{"m":"Berea","p":[{"n":"Cyril Kleem","r":"Mayor, Berea, OH"}]},{"m":"Brecksville","p":[{"n":"Jerry N. Hruby","r":"Mayor, Brecksville, OH"}]},{"m":"Broadview Heights","p":[{"n":"Samuel J. Alai","r":"Mayor, Broadview Heights, OH"}]},{"m":"Brook Park","p":[{"n":"Edward Orcutt","r":"Mayor, Brook Park, OH"}]},{"m":"Brooklyn","p":[{"n":"Ron Van Kirk","r":"Mayor, Brooklyn, OH"}]},{"m":"Cleveland","p":[{"n":"Frank G. Jackson","r":"Mayor, Cleveland, OH"}]},{"m":"Cleveland Heights","p":[{"n":"Kahlil Seren","r":"Mayor, Cleveland Heights, OH"}]},{"m":"East Cleveland","p":[{"n":"Brandon L. King","r":"Mayor, East Cleveland, OH"}]},{"m":"Euclid","p":[{"n":"Kirsten Holzheimer Gail","r":"Mayor, Euclid, OH"}]},{"m":"Fairview Park","p":[{"n":"Bill Schneider","r":"Mayor, Fairview Park, OH"}]},{"m":"Garfield Heights","p":[{"n":"Matthew Burke","r":"Mayor, Garfield Heights, OH"}]},{"m":"Highland Heights","p":[{"n":"Chuck Brunello, Jr.","r":"Mayor, Highland Heights, OH"}]},{"m":"Independence","p":[{"n":"Gregory P. Kurtz","r":"Mayor, Independence, OH"}]},{"m":"Lakewood","p":[{"n":"Meghan George","r":"Mayor, Lakewood, OH"}]},{"m":"Lyndhurst","p":[{"n":"Patrick A. Ward","r":"Mayor, Lyndhurst, OH"}]},{"m":"Maple Heights","p":[{"n":"Annette M. Blackwell","r":"Mayor, Maple Heights, OH"}]},{"m":"Mayfield Heights","p":[{"n":"Anthony DiCicco","r":"Mayor, Mayfield Heights, OH"}]},{"m":"Middleburg Heights","p":[{"n":"Matthew J. Castelli","r":"Mayor, Middleburg Heights, OH"}]},{"m":"North Olmsted","p":[{"n":"Nicole Dailey Jones","r":"Mayor, North Olmsted, OH"}]},{"m":"North Royalton","p":[{"n":"Larry Antoskiewicz","r":"Mayor, North Royalton, OH"}]},{"m":"Olmsted Falls","p":[{"n":"James Patrick Graven","r":"Mayor, Olmsted Falls, OH"}]},{"m":"Parma","p":[{"n":"Timothy J. DeGeeter","r":"Mayor, Parma, OH"}]},{"m":"Parma Heights","p":[{"n":"Marie Gallo","r":"Mayor, Parma Heights, OH"}]},{"m":"Richmond Heights","p":[{"n":"Kim A. Thomas","r":"Mayor, Richmond Heights, OH"}]},{"m":"Rocky River","p":[{"n":"Pamela E. Bobst","r":"Mayor, Rocky River, OH"}]},{"m":"Shaker Heights","p":[{"n":"David E. Weiss","r":"Mayor, Shaker Heights, OH"}]},{"m":"Solon","p":[{"n":"Edward H. Kraus","r":"Mayor, Solon, OH"}]},{"m":"South Euclid","p":[{"n":"Georgine Welo","r":"Mayor, South Euclid, OH"}]},{"m":"Strongsville","p":[{"n":"Thomas P. Perciak","r":"Mayor, Strongsville, OH"}]},{"m":"University Heights","p":[{"n":"Michael Dylan Brennan","r":"Mayor, University Heights, OH"}]},{"m":"Warrensville Heights","p":[{"n":"Bradley D. Sellers","r":"Mayor, Warrensville Heights, OH"}]},{"m":"Westlake","p":[{"n":"Dennis M. Clough","r":"Mayor, Westlake, OH"}]}],"slug":"cuyahoga"},"39037":{"county":[],"munis":[{"m":"Greenville","p":[{"n":"Jeff Whitaker","r":"Mayor, Greenville, OH"}]}],"slug":"darke"},"39039":{"county":[],"munis":[{"m":"Defiance","p":[{"n":"Mike McCann","r":"Mayor, Defiance, OH"}]}],"slug":"defiance"},"39041":{"county":[],"munis":[{"m":"Delaware","p":[{"n":"Carolyn Kay Riggle","r":"Mayor, Delaware, OH"}]}],"slug":"delaware"},"39043":{"county":[],"munis":[{"m":"Huron","p":[{"n":"Monty Tapp","r":"Mayor, Huron, OH"}]}],"slug":"erie"},"39045":{"county":[],"munis":[{"m":"Lancaster","p":[{"n":"Don McDaniel","r":"Mayor, Lancaster, OH"}]},{"m":"Pickerington","p":[{"n":"Lee Gray","r":"Mayor, Pickerington, OH"}]}],"slug":"fairfield"},"39049":{"county":[],"munis":[{"m":"Columbus","p":[{"n":"Andrew Ginther","r":"Mayor, Columbus, OH"}]},{"m":"Dublin","p":[{"n":"Chris Amorose Groomes","r":"Mayor, Dublin, OH"}]},{"m":"Gahanna","p":[{"n":"Laurie Jadwin","r":"Mayor, Gahanna, OH"}]},{"m":"Grove City","p":[{"n":"Q132673219","r":"Mayor, Grove City, OH"}]},{"m":"Reynoldsburg","p":[{"n":"Joe Begeny","r":"Mayor, Reynoldsburg, OH"}]},{"m":"Westerville","p":[{"n":"Kenneth L. Wright","r":"Mayor, Westerville, OH"}]}],"slug":"franklin"},"39051":{"county":[],"munis":[{"m":"Wauseon","p":[{"n":"Kathy Huner","r":"Mayor, Wauseon, OH"}]}],"slug":"fulton"},"39055":{"county":[],"munis":[{"m":"Chardon","p":[{"n":"Christopher Grau","r":"Mayor, Chardon, OH"}]}],"slug":"geauga"},"39057":{"county":[],"munis":[{"m":"Fairborn","p":[{"n":"Dan Kirkpatrick","r":"Mayor, Fairborn, OH"}]},{"m":"Xenia","p":[{"n":"William Urschel","r":"Mayor, Xenia, OH"}]}],"slug":"greene"},"39059":{"county":[],"munis":[{"m":"Cambridge","p":[{"n":"Thomas D. Orr","r":"Mayor, Cambridge, OH"}]}],"slug":"guernsey"},"39061":{"county":[],"munis":[{"m":"Blue Ash","p":[{"n":"Jill Cole","r":"Mayor, Blue Ash, OH"}]},{"m":"Cincinnati","p":[{"n":"Aftab Pureval","r":"Mayor, Cincinnati, OH"}]},{"m":"Deer Park","p":[{"n":"John Donnellon","r":"Mayor, Deer Park, OH"}]},{"m":"Forest Park","p":[{"n":"Aharon Brown","r":"Mayor, Forest Park, OH"}]},{"m":"Montgomery","p":[{"n":"Ronald Messer","r":"Mayor, Montgomery, OH"}]},{"m":"Norwood","p":[{"n":"Victor Schneider","r":"Mayor, Norwood, OH"}]},{"m":"Reading","p":[{"n":"Robert Bemmes","r":"Mayor, Reading, OH"}]},{"m":"Sharonville","p":[{"n":"Kevin M. Hardman","r":"Mayor, Sharonville, OH"}]},{"m":"Springdale","p":[{"n":"Lawrence C. Hawkins","r":"Mayor, Springdale, OH"}]}],"slug":"hamilton"},"39063":{"county":[],"munis":[{"m":"Findlay","p":[{"n":"Christina Muryn","r":"Mayor, Findlay, OH"}]}],"slug":"hancock"},"39065":{"county":[],"munis":[{"m":"Kenton","p":[{"n":"Lynn Webb","r":"Mayor, Kenton, OH"}]}],"slug":"hardin"},"39069":{"county":[],"munis":[{"m":"Napoleon","p":[{"n":"Joseph Bialorucki","r":"Mayor, Napoleon, OH"}]}],"slug":"henry"},"39071":{"county":[],"munis":[{"m":"Hillsboro","p":[{"n":"Justin Harsha","r":"Mayor, Hillsboro, OH"}]}],"slug":"highland"},"39073":{"county":[],"munis":[{"m":"Logan","p":[{"n":"Greg Fraunfelter","r":"Mayor, Logan, OH"}]}],"slug":"hocking"},"39077":{"county":[],"munis":[{"m":"Bellevue","p":[{"n":"Kevin Strecker","r":"Mayor, Bellevue, OH"}]},{"m":"Norwalk","p":[{"n":"David W. Light","r":"Mayor, Norwalk, OH"}]}],"slug":"huron"},"39079":{"county":[],"munis":[{"m":"Jackson","p":[{"n":"Randy Evans","r":"Mayor, Jackson, OH"}]}],"slug":"jackson"},"39081":{"county":[],"munis":[{"m":"Steubenville","p":[{"n":"Jerry Barilla","r":"Mayor, Steubenville, OH"}]},{"m":"Toronto","p":[{"n":"John Parker","r":"Mayor, Toronto, OH"}]}],"slug":"jefferson"},"39083":{"county":[],"munis":[{"m":"Mount Vernon","p":[{"n":"Matthew T. Starr","r":"Mayor, Mount Vernon, OH"}]}],"slug":"knox"},"39085":{"county":[],"munis":[{"m":"Eastlake","p":[{"n":"Jim Overstreet","r":"Mayor, Eastlake, OH"}]},{"m":"Wickliffe","p":[{"n":"Joe Sakacs","r":"Mayor, Wickliffe, OH"}]},{"m":"Willoughby","p":[{"n":"Robert A. Fiala","r":"Mayor, Willoughby, OH"}]}],"slug":"lake"},"39087":{"county":[],"munis":[{"m":"Ironton","p":[{"n":"Samuel Cramblit","r":"Mayor, Ironton, OH"}]}],"slug":"lawrence"},"39089":{"county":[],"munis":[{"m":"Heath","p":[{"n":"Mark Johns","r":"Mayor, Heath, OH"}]},{"m":"Newark","p":[{"n":"Jeff Hall","r":"Mayor, Newark, OH"}]},{"m":"Pataskala","p":[{"n":"Mike Compton","r":"Mayor, Pataskala, OH"}]}],"slug":"licking"},"39091":{"county":[],"munis":[{"m":"Bellefontaine","p":[{"n":"David Crissman","r":"Mayor, Bellefontaine, OH"}]}],"slug":"logan"},"39093":{"county":[],"munis":[{"m":"Avon","p":[{"n":"Bryan K. Jensen","r":"Mayor, Avon, OH"}]},{"m":"Avon Lake","p":[{"n":"Mark Spaetzel","r":"Mayor, Avon Lake, OH"}]},{"m":"Elyria","p":[{"n":"Kevin Brubaker","r":"Mayor, Elyria, OH"}]},{"m":"Lorain","p":[{"n":"Jack Bradley","r":"Mayor, Lorain, OH"}]},{"m":"North Ridgeville","p":[{"n":"Kevin Corcoran","r":"Mayor, North Ridgeville, OH"}]},{"m":"Oberlin","p":[{"n":"Henry F. Smith","r":"Mayor, Oberlin, OH"}]},{"m":"Vermilion","p":[{"n":"Jim Forthofer","r":"Mayor, Vermilion, OH"}]}],"slug":"lorain"},"39095":{"county":[],"munis":[{"m":"Maumee","p":[{"n":"Jim MacDonald","r":"Mayor, Maumee, OH"}]},{"m":"Oregon","p":[{"n":"Michael J. Seferian","r":"Mayor, Oregon, OH"}]},{"m":"Sylvania","p":[{"n":"Mark Frye","r":"Mayor, Sylvania, OH"}]},{"m":"Toledo","p":[{"n":"Wade Kapszukiewicz","r":"Mayor, Toledo, OH"}]}],"slug":"lucas"},"39097":{"county":[],"munis":[{"m":"London","p":[{"n":"Patrick J. Closser","r":"Mayor, London, OH"}]}],"slug":"madison"},"39099":{"county":[],"munis":[{"m":"Youngstown","p":[{"n":"Jamael Tito Brown","r":"Mayor, Youngstown, OH"}]}],"slug":"mahoning"},"39101":{"county":[],"munis":[{"m":"Marion","p":[{"n":"Bill Collins","r":"Mayor, Marion, OH"}]}],"slug":"marion"},"39103":{"county":[],"munis":[{"m":"Brunswick","p":[{"n":"Ron Falconi","r":"Mayor, Brunswick, OH"}]},{"m":"Medina","p":[{"n":"Dennis Hanwell","r":"Mayor, Medina, OH"}]}],"slug":"medina"},"39107":{"county":[],"munis":[{"m":"Celina","p":[{"n":"Jeffrey Hazel","r":"Mayor, Celina, OH"}]}],"slug":"mercer"},"39109":{"county":[],"munis":[{"m":"Piqua","p":[{"n":"Kris Lee","r":"Mayor, Piqua, OH"}]},{"m":"Troy","p":[{"n":"Robin Oda","r":"Mayor, Troy, OH"}]}],"slug":"miami"},"39113":{"county":[],"munis":[{"m":"Centerville","p":[{"n":"Brooks Compton","r":"Mayor, Centerville, OH"}]},{"m":"Clayton","p":[{"n":"Mike Stevens","r":"Mayor, Clayton, OH"}]},{"m":"Dayton","p":[{"n":"Jeffrey J. Mims, Jr.","r":"Mayor, Dayton, OH"}]},{"m":"Huber Heights","p":[{"n":"Jeff Gore","r":"Mayor, Huber Heights, OH"}]},{"m":"Kettering","p":[{"n":"Peggy Lehner","r":"Mayor, Kettering, OH"}]},{"m":"Miamisburg","p":[{"n":"Michelle Collins","r":"Mayor, Miamisburg, OH"}]},{"m":"Riverside","p":[{"n":"Peter J. Williams","r":"Mayor, Riverside, OH"}]},{"m":"Trotwood","p":[{"n":"Yvette F. Page","r":"Mayor, Trotwood, OH"}]},{"m":"Vandalia","p":[{"n":"Richard Herbst","r":"Mayor, Vandalia, OH"}]},{"m":"West Carrollton","p":[{"n":"Rick Barnhart","r":"Mayor, West Carrollton, OH"}]}],"slug":"montgomery"},"39119":{"county":[],"munis":[{"m":"Zanesville","p":[{"n":"Donald L. Mason","r":"Mayor, Zanesville, OH"}]}],"slug":"muskingum"},"39123":{"county":[],"munis":[{"m":"Port Clinton","p":[{"n":"Michael Snider","r":"Mayor, Port Clinton, OH"}]}],"slug":"ottawa"},"39129":{"county":[],"munis":[{"m":"Circleville","p":[{"n":"Michelle L. Blanton","r":"Mayor, Circleville, OH"}]}],"slug":"pickaway"},"39133":{"county":[],"munis":[{"m":"Aurora","p":[{"n":"Ann Womer Benjamin","r":"Mayor, Aurora, OH"}]},{"m":"Kent","p":[{"n":"Jerry T. Fiala","r":"Mayor, Kent, OH"}]},{"m":"Ravenna","p":[{"n":"Frank Seman","r":"Mayor, Ravenna, OH"}]},{"m":"Streetsboro","p":[{"n":"Glenn M. Broska","r":"Mayor, Streetsboro, OH"}]}],"slug":"portage"},"39135":{"county":[],"munis":[{"m":"Eaton","p":[{"n":"Matt Venable","r":"Mayor, Eaton, OH"}]}],"slug":"preble"},"39139":{"county":[],"munis":[{"m":"Mansfield","p":[{"n":"Jodie Perry","r":"Mayor, Mansfield, OH"}]},{"m":"Shelby","p":[{"n":"Steven L. Schag","r":"Mayor, Shelby, OH"}]}],"slug":"richland"},"39141":{"county":[],"munis":[{"m":"Chillicothe","p":[{"n":"Luke M. Feeney","r":"Mayor, Chillicothe, OH"}]}],"slug":"ross"},"39143":{"county":[],"munis":[{"m":"Clyde","p":[{"n":"Doug McCauley","r":"Mayor, Clyde, OH"}]},{"m":"Fremont","p":[{"n":"Danny Sanchez","r":"Mayor, Fremont, OH"}]}],"slug":"sandusky"},"39145":{"county":[],"munis":[{"m":"Portsmouth","p":[{"n":"Charlotte Gordon","r":"Mayor, Portsmouth, OH"}]}],"slug":"scioto"},"39147":{"county":[],"munis":[{"m":"Fostoria","p":[{"n":"Donald Mennel","r":"Mayor, Fostoria, OH"}]},{"m":"Tiffin","p":[{"n":"Lee Wilkinson","r":"Mayor, Tiffin, OH"}]}],"slug":"seneca"},"39149":{"county":[],"munis":[{"m":"Sidney","p":[{"n":"Mike Barhorst","r":"Mayor, Sidney, OH"}]}],"slug":"shelby"},"39151":{"county":[],"munis":[{"m":"Alliance","p":[{"n":"Andrew Grove","r":"Mayor, Alliance, OH"}]},{"m":"Canal Fulton","p":[{"n":"Joseph A. Schultz","r":"Mayor, Canal Fulton, OH"}]},{"m":"Canton","p":[{"n":"William Sherer","r":"Mayor, Canton, OH"}]},{"m":"Louisville","p":[{"n":"Patricia A. Fallot","r":"Mayor, Louisville, OH"}]},{"m":"Massillon","p":[{"n":"Jamie Slutz","r":"Mayor, Massillon, OH"}]},{"m":"North Canton","p":[{"n":"Stephan B. Wilder","r":"Mayor, North Canton, OH"}]}],"slug":"stark"},"39153":{"county":[],"munis":[{"m":"Akron","p":[{"n":"Shammas Malik","r":"Mayor, Akron, OH"}]},{"m":"Cuyahoga Falls","p":[{"n":"Don Walters","r":"Mayor, Cuyahoga Falls, OH"}]},{"m":"Hudson","p":[{"n":"Jeffrey Anzevino","r":"Mayor, Hudson, OH"}]},{"m":"Macedonia","p":[{"n":"Nicholas Molnar","r":"Mayor, Macedonia, OH"}]},{"m":"Stow","p":[{"n":"John Pribonic","r":"Mayor, Stow, OH"}]},{"m":"Tallmadge","p":[{"n":"Carol Siciliano-Kilway","r":"Mayor, Tallmadge, OH"}]},{"m":"Twinsburg","p":[{"n":"Sam Scaffide","r":"Mayor, Twinsburg, OH"}]}],"slug":"summit"},"39155":{"county":[],"munis":[{"m":"Newton Falls","p":[{"n":"David Hanson","r":"Mayor, Newton Falls, OH"}]},{"m":"Niles","p":[{"n":"Steven Mientkiewicz","r":"Mayor, Niles, OH"}]},{"m":"Warren","p":[{"n":"William Franklin","r":"Mayor, Warren, OH"}]}],"slug":"trumbull"},"39157":{"county":[],"munis":[{"m":"Dover","p":[{"n":"Shane Gunnoe","r":"Mayor, Dover, OH"}]},{"m":"New Philadelphia","p":[{"n":"Joel Day","r":"Mayor, New Philadelphia, OH"}]},{"m":"Uhrichsville","p":[{"n":"James Zucal","r":"Mayor, Uhrichsville, OH"}]}],"slug":"tuscarawas"},"39161":{"county":[],"munis":[{"m":"Van Wert","p":[{"n":"Kenneth J. Markward","r":"Mayor, Van Wert, OH"}]}],"slug":"van-wert"},"39165":{"county":[],"munis":[{"m":"Franklin","p":[{"n":"Brent Centers","r":"Mayor, Franklin, OH"}]},{"m":"Lebanon","p":[{"n":"Mark Messer","r":"Mayor, Lebanon, OH"}]},{"m":"Springboro","p":[{"n":"John Agenbroad","r":"Mayor, Springboro, OH"}]}],"slug":"warren"},"39167":{"county":[],"munis":[{"m":"Marietta","p":[{"n":"Josh Schlicher","r":"Mayor, Marietta, OH"}]}],"slug":"washington"},"39169":{"county":[],"munis":[{"m":"Orrville","p":[{"n":"Matthew Plybon","r":"Mayor, Orrville, OH"}]},{"m":"Wooster","p":[{"n":"Robert J. Reynolds","r":"Mayor, Wooster, OH"}]}],"slug":"wayne"},"39171":{"county":[],"munis":[{"m":"Bryan","p":[{"n":"Carrie Schlade","r":"Mayor, Bryan, OH"}]}],"slug":"williams"},"39173":{"county":[],"munis":[{"m":"Bowling Green","p":[{"n":"Mike Aspacher","r":"Mayor, Bowling Green, OH"}]},{"m":"Perrysburg","p":[{"n":"Tom Mackin","r":"Mayor, Perrysburg, OH"}]},{"m":"Rossford","p":[{"n":"Neil A. MacKinnon III","r":"Mayor, Rossford, OH"}]}],"slug":"wood"},"40023":{"county":[],"munis":[{"m":"Hugo","p":[{"n":"Ernest McCarty","r":"Mayor, Hugo, OK"}]}],"slug":"choctaw"},"40027":{"county":[],"munis":[{"m":"Moore","p":[{"n":"Glenn Lewis","r":"Mayor, Moore, OK"}]},{"m":"Norman","p":[{"n":"Larry Heikkila","r":"Mayor, Norman, OK"}]}],"slug":"cleveland"},"40031":{"county":[],"munis":[{"m":"Lawton","p":[{"n":"Stan Booker","r":"Mayor, Lawton, OK"}]}],"slug":"comanche"},"40037":{"county":[],"munis":[{"m":"Sapulpa","p":[{"n":"Craig Henderson","r":"Mayor, Sapulpa, OK"}]}],"slug":"creek"},"40047":{"county":[],"munis":[{"m":"Enid","p":[{"n":"David Mason","r":"Mayor, Enid, OK"}]}],"slug":"garfield"},"40109":{"county":[],"munis":[{"m":"Oklahoma City","p":[{"n":"Mick Cornett","r":"Mayor, Oklahoma City, OK"}]}],"slug":"oklahoma"},"40119":{"county":[],"munis":[{"m":"Stillwater","p":[{"n":"Will Joyce","r":"Mayor, Stillwater, OK"}]}],"slug":"payne"},"40143":{"county":[],"munis":[{"m":"Broken Arrow","p":[{"n":"Debra Wimpee","r":"Mayor, Broken Arrow, OK"}]},{"m":"Tulsa","p":[{"n":"Monroe Nichols","r":"Mayor, Tulsa, OK"}]}],"slug":"tulsa"},"41003":{"county":[],"munis":[{"m":"Corvallis","p":[{"n":"Biff Traber","r":"Mayor, Corvallis, OR"}]}],"slug":"benton"},"41005":{"county":[],"munis":[{"m":"Estacada","p":[{"n":"Sean Drinkwine","r":"Mayor, Estacada, OR"}]},{"m":"Lake Oswego","p":[{"n":"Kent Studebaker","r":"Mayor, Lake Oswego, OR"}]},{"m":"Wilsonville","p":[{"n":"Julie Fitzgerald","r":"Mayor, Wilsonville, OR"}]}],"slug":"clackamas"},"41007":{"county":[],"munis":[{"m":"Astoria","p":[{"n":"Bruce Jones","r":"Mayor, Astoria, OR"}]},{"m":"Cannon Beach","p":[{"n":"Sam Steidel","r":"Mayor, Cannon Beach, OR"}]}],"slug":"clatsop"},"41011":{"county":[],"munis":[{"m":"Coos Bay","p":[{"n":"Joe Benetti","r":"Mayor, Coos Bay, OR"}]},{"m":"Coquille","p":[{"n":"Sam Flaherty","r":"Mayor, Coquille, OR"}]}],"slug":"coos"},"41013":{"county":[],"munis":[{"m":"Prineville","p":[{"n":"Jason Beebe","r":"Mayor, Prineville, OR"}]}],"slug":"crook"},"41017":{"county":[],"munis":[{"m":"Bend","p":[{"n":"Melanie Kebler","r":"Mayor, Bend, OR"}]}],"slug":"deschutes"},"41019":{"county":[],"munis":[{"m":"Roseburg","p":[{"n":"Larry Rich","r":"Mayor, Roseburg, OR"}]},{"m":"Sutherlin","p":[{"n":"Michelle Sumner","r":"Mayor, Sutherlin, OR"}]}],"slug":"douglas"},"41029":{"county":[],"munis":[{"m":"Medford","p":[{"n":"Randy Sparacino","r":"Mayor, Medford, OR"}]}],"slug":"jackson"},"41033":{"county":[],"munis":[{"m":"Grants Pass","p":[{"n":"Sara Bristol","r":"Mayor, Grants Pass, OR"}]}],"slug":"josephine"},"41039":{"county":[],"munis":[{"m":"Cottage Grove","p":[{"n":"Candace Solesbee","r":"Mayor, Cottage Grove, OR"}]},{"m":"Eugene","p":[{"n":"Lucy Vinis","r":"Mayor, Eugene, OR"}]},{"m":"Springfield","p":[{"n":"Sean VanGordon","r":"Mayor, Springfield, OR"}]}],"slug":"lane"},"41041":{"county":[],"munis":[{"m":"Newport","p":[{"n":"Dean Sawyer","r":"Mayor, Newport, OR"}]}],"slug":"lincoln"},"41047":{"county":[],"munis":[{"m":"Salem","p":[{"n":"Anna Peterson","r":"Mayor, Salem, OR"}]},{"m":"Woodburn","p":[{"n":"Eric Swenson","r":"Mayor, Woodburn, OR"}]}],"slug":"marion"},"41051":{"county":[],"munis":[{"m":"Gresham","p":[{"n":"Travis Stovall","r":"Mayor, Gresham, OR"}]},{"m":"Portland","p":[{"n":"Keith Wilson","r":"Mayor, Portland, OR"}]},{"m":"Troutdale","p":[{"n":"Randy Lauer","r":"Mayor, Troutdale, OR"}]}],"slug":"multnomah"},"41057":{"county":[],"munis":[{"m":"Tillamook","p":[{"n":"Aaron Burris","r":"Mayor, Tillamook, OR"}]}],"slug":"tillamook"},"41059":{"county":[],"munis":[{"m":"Pendleton","p":[{"n":"John H. Turner","r":"Mayor, Pendleton, OR"}]}],"slug":"umatilla"},"41067":{"county":[],"munis":[{"m":"Beaverton","p":[{"n":"Lacey Beaty","r":"Mayor, Beaverton, OR"}]},{"m":"Hillsboro","p":[{"n":"Beach Pace","r":"Mayor, Hillsboro, OR"}]}],"slug":"washington"},"41071":{"county":[],"munis":[{"m":"Newberg","p":[{"n":"Rick Rogers","r":"Mayor, Newberg, OR"}]}],"slug":"yamhill"},"42003":{"county":[],"munis":[{"m":"Mckeesport","p":[{"n":"Michael Cherepko","r":"Mayor, McKeesport, PA"}]},{"m":"Pittsburgh","p":[{"n":"mayor of Pittsburgh","r":"Mayor, Pittsburgh, PA"}]}],"slug":"allegheny"},"42011":{"county":[],"munis":[{"m":"Reading","p":[{"n":"Eddie Morán","r":"Mayor, Reading, PA"}]}],"slug":"berks"},"42013":{"county":[],"munis":[{"m":"Altoona","p":[{"n":"Matthew A. Pacifico","r":"Mayor, Altoona, PA"}]}],"slug":"blair"},"42019":{"county":[],"munis":[{"m":"Butler","p":[{"n":"Robert A. Dandoy","r":"Mayor, Butler, PA"}]}],"slug":"butler"},"42021":{"county":[],"munis":[{"m":"Johnstown","p":[{"n":"Frank J. Janakovic","r":"Mayor, Johnstown, PA"}]}],"slug":"cambria"},"42039":{"county":[],"munis":[{"m":"Meadville","p":[{"n":"Jaime Kinder","r":"Mayor, Meadville, PA"}]}],"slug":"crawford"},"42043":{"county":[],"munis":[{"m":"Harrisburg","p":[{"n":"Wanda Williams","r":"Mayor, Harrisburg, PA"}]}],"slug":"dauphin"},"42045":{"county":[],"munis":[{"m":"Chester","p":[{"n":"Stefan Roots","r":"Mayor, Chester, PA"}]}],"slug":"delaware"},"42049":{"county":[],"munis":[{"m":"Erie","p":[{"n":"Joseph V. Schember","r":"Mayor, Erie, PA"}]}],"slug":"erie"},"42051":{"county":[],"munis":[{"m":"Connellsville","p":[{"n":"Greg Lincoln","r":"Mayor, Connellsville, PA"}]},{"m":"Uniontown","p":[{"n":"Bill Gerke","r":"Mayor, Uniontown, PA"}]}],"slug":"fayette"},"42069":{"county":[],"munis":[{"m":"Scranton","p":[{"n":"Paige Gebhardt Cognetti","r":"Mayor, Scranton, PA"}]}],"slug":"lackawanna"},"42071":{"county":[],"munis":[{"m":"Lancaster","p":[{"n":"Danene Sorace","r":"Mayor, Lancaster, PA"}]}],"slug":"lancaster"},"42073":{"county":[],"munis":[{"m":"New Castle","p":[{"n":"Bryan Cameron","r":"Mayor, New Castle, PA"}]}],"slug":"lawrence"},"42075":{"county":[],"munis":[{"m":"Lebanon","p":[{"n":"Sherry Capello","r":"Mayor, Lebanon, PA"}]}],"slug":"lebanon"},"42077":{"county":[],"munis":[{"m":"Allentown","p":[{"n":"Matthew Tuerk","r":"Mayor, Allentown, PA"}]}],"slug":"lehigh"},"42079":{"county":[],"munis":[{"m":"Hazleton","p":[{"n":"Jeff Cusat","r":"Mayor, Hazleton, PA"}]},{"m":"Pittston","p":[{"n":"Charles Calvin Bowman","r":"Mayor, Pittston, PA"}]},{"m":"Wilkes Barre","p":[{"n":"George C. Brown","r":"Mayor, Wilkes-Barre, PA"}]}],"slug":"luzerne"},"42081":{"county":[],"munis":[{"m":"Williamsport","p":[{"n":"Derek J. Slaughter","r":"Mayor, Williamsport, PA"}]}],"slug":"lycoming"},"42083":{"county":[],"munis":[{"m":"Bradford","p":[{"n":"Tom Riel","r":"Mayor, Bradford, PA"}]}],"slug":"mckean"},"42095":{"county":[],"munis":[{"m":"Bethlehem","p":[{"n":"J. William Reynolds","r":"Mayor, Bethlehem, PA"}]},{"m":"Easton","p":[{"n":"Salvatore J. Panto, Jr.","r":"Mayor, Easton, PA"}]}],"slug":"northampton"},"42097":{"county":[],"munis":[{"m":"Shamokin","p":[{"n":"Richard Ulrich","r":"Mayor, Shamokin, PA"}]}],"slug":"northumberland"},"42101":{"county":[],"munis":[{"m":"Philadelphia","p":[{"n":"Cherelle Parker","r":"Mayor, Philadelphia, PA"}]}],"slug":"philadelphia"},"42107":{"county":[],"munis":[{"m":"Pottsville","p":[{"n":"Mark J. Atkinson","r":"Mayor, Pottsville, PA"}]}],"slug":"schuylkill"},"42121":{"county":[],"munis":[{"m":"Oil City","p":[{"n":"John Kluck","r":"Mayor, Oil City, PA"}]}],"slug":"venango"},"42123":{"county":[],"munis":[{"m":"Warren","p":[{"n":"David G. Wortman","r":"Mayor, Warren, PA"}]}],"slug":"warren"},"42125":{"county":[],"munis":[{"m":"Monongahela","p":[{"n":"Greg Garry","r":"Mayor, Monongahela, PA"}]},{"m":"Washington","p":[{"n":"JoJo Burgess","r":"Mayor, Washington, PA"}]}],"slug":"washington"},"42129":{"county":[],"munis":[{"m":"Greensburg","p":[{"n":"Robert L. Bell","r":"Mayor, Greensburg, PA"}]}],"slug":"westmoreland"},"42133":{"county":[],"munis":[{"m":"York","p":[{"n":"Q124818167","r":"Mayor, York, PA"}]}],"slug":"york"},"44003":{"county":[],"munis":[{"m":"Warwick","p":[{"n":"Joseph J. Solomon","r":"Mayor, Warwick, RI"}]}],"slug":"kent"},"44005":{"county":[],"munis":[{"m":"Newport","p":[{"n":"Charles M. Holder","r":"Mayor, Newport, RI"}]}],"slug":"newport"},"44007":{"county":[],"munis":[{"m":"Central Falls","p":[{"n":"Maria Rivera","r":"Mayor, Central Falls, RI"}]},{"m":"Cranston","p":[{"n":"Kenneth Hopkins","r":"Mayor, Cranston, RI"}]},{"m":"East Providence","p":[{"n":"Roberto L. DaSilva","r":"Mayor, East Providence, RI"}]},{"m":"Pawtucket","p":[{"n":"Donald R. Grebien","r":"Mayor, Pawtucket, RI"}]},{"m":"Providence","p":[{"n":"Brett Smiley","r":"Mayor, Providence, RI"}]},{"m":"Woonsocket","p":[{"n":"Christopher Beauchamp","r":"Mayor, Woonsocket, RI"}]}],"slug":"providence"},"45001":{"county":[],"munis":[{"m":"Abbeville","p":[{"n":"Trey Edwards","r":"Mayor, Abbeville, SC"}]}],"slug":"abbeville"},"45003":{"county":[],"munis":[{"m":"Aiken","p":[{"n":"Teddy Milner","r":"Mayor, Aiken, SC"}]}],"slug":"aiken"},"45007":{"county":[],"munis":[{"m":"Anderson","p":[{"n":"Terence Roberts","r":"Mayor, Anderson, SC"}]}],"slug":"anderson"},"45009":{"county":[],"munis":[{"m":"Bamberg","p":[{"n":"Nancy Foster","r":"Mayor, Bamberg, SC"}]}],"slug":"bamberg"},"45013":{"county":[],"munis":[{"m":"Beaufort","p":[{"n":"Phil Cromer","r":"Mayor, Beaufort, SC"}]}],"slug":"beaufort"},"45015":{"county":[],"munis":[{"m":"Goose Creek","p":[{"n":"Gregory Habib","r":"Mayor, Goose Creek, SC"}]}],"slug":"berkeley"},"45019":{"county":[],"munis":[{"m":"Charleston","p":[{"n":"John Tecklenburg","r":"Mayor, Charleston, SC"}]}],"slug":"charleston"},"45035":{"county":[],"munis":[{"m":"North Charleston","p":[{"n":"R. Keith Summey","r":"Mayor, North Charleston, SC"}]}],"slug":"dorchester"},"45041":{"county":[],"munis":[{"m":"Florence","p":[{"n":"Lethonia Barnes","r":"Mayor, Florence, SC"}]}],"slug":"florence"},"45045":{"county":[],"munis":[{"m":"Greenville","p":[{"n":"Knox H. White","r":"Mayor, Greenville, SC"}]},{"m":"Greer","p":[{"n":"Richard W. Danner","r":"Mayor, Greer, SC"}]},{"m":"Mauldin","p":[{"n":"Terry Merritt","r":"Mayor, Mauldin, SC"}]}],"slug":"greenville"},"45051":{"county":[],"munis":[{"m":"Conway","p":[{"n":"Barbara Blain-Bellamy","r":"Mayor, Conway, SC"}]},{"m":"Loris","p":[{"n":"Michael E. Suggs","r":"Mayor, Loris, SC"}]},{"m":"Myrtle Beach","p":[{"n":"John Rhodes","r":"Mayor, Myrtle Beach, SC"}]}],"slug":"horry"},"45055":{"county":[],"munis":[{"m":"Camden","p":[{"n":"Vincent Sheheen","r":"Mayor, Camden, SC"}]}],"slug":"kershaw"},"45067":{"county":[],"munis":[{"m":"Marion","p":[{"n":"Ashley Brady","r":"Mayor, Marion, SC"}]}],"slug":"marion"},"45073":{"county":[],"munis":[{"m":"Seneca","p":[{"n":"Daniel W. Alexander","r":"Mayor, Seneca, SC"}]}],"slug":"oconee"},"45079":{"county":[],"munis":[{"m":"Columbia","p":[{"n":"Daniel Rickenmann","r":"Mayor, Columbia, SC"}]}],"slug":"richland"},"45083":{"county":[],"munis":[{"m":"Spartanburg","p":[{"n":"Jerome Rice","r":"Mayor, Spartanburg, SC"}]}],"slug":"spartanburg"},"45085":{"county":[],"munis":[{"m":"Sumter","p":[{"n":"David Merchant","r":"Mayor, Sumter, SC"}]}],"slug":"sumter"},"45089":{"county":[],"munis":[{"m":"Kingstree","p":[{"n":"Darren Tisdale","r":"Mayor, Kingstree, SC"}]}],"slug":"williamsburg"},"45091":{"county":[],"munis":[{"m":"Rock Hill","p":[{"n":"John Gettys","r":"Mayor, Rock Hill, SC"}]}],"slug":"york"},"46011":{"county":[],"munis":[{"m":"Brookings","p":[{"n":"Oepke \"Ope\" Niemeyer","r":"Mayor, Brookings, SD"}]},{"m":"Volga","p":[{"n":"Ken Fideler","r":"Mayor, Volga, SD"}]}],"slug":"brookings"},"46013":{"county":[],"munis":[{"m":"Aberdeen","p":[{"n":"Travis Schaunaman","r":"Mayor, Aberdeen, SD"}]}],"slug":"brown"},"46027":{"county":[],"munis":[{"m":"Vermillion","p":[{"n":"Jon Cole","r":"Mayor, Vermillion, SD"}]}],"slug":"clay"},"46051":{"county":[],"munis":[{"m":"Milbank","p":[{"n":"Pat Raffety","r":"Mayor, Milbank, SD"}]}],"slug":"grant"},"46065":{"county":[],"munis":[{"m":"Pierre","p":[{"n":"Steve Harding","r":"Mayor, Pierre, SD"}]}],"slug":"hughes"},"46077":{"county":[],"munis":[{"m":"Arlington","p":[{"n":"Curt Lundquist","r":"Mayor, Arlington, SD"}]}],"slug":"kingsbury"},"46079":{"county":[],"munis":[{"m":"Madison","p":[{"n":"Roy Lindsay","r":"Mayor, Madison, SD"}]}],"slug":"lake"},"46083":{"county":[],"munis":[{"m":"Canton","p":[{"n":"Sandi Lundstrom","r":"Mayor, Canton, SD"}]},{"m":"Harrisburg","p":[{"n":"Derick Wenck","r":"Mayor, Harrisburg, SD"}]},{"m":"Lennox","p":[{"n":"Stacy DuChene","r":"Mayor, Lennox, SD"}]},{"m":"Tea","p":[{"n":"Casey Voelker","r":"Mayor, Tea, SD"}]}],"slug":"lincoln"},"46093":{"county":[],"munis":[{"m":"Sturgis","p":[{"n":"Angela Wilkerson","r":"Mayor, Sturgis, SD"}]}],"slug":"meade"},"46099":{"county":[],"munis":[{"m":"Brandon","p":[{"n":"Harry Buck","r":"Mayor, Brandon, SD"}]},{"m":"Dell Rapids","p":[{"n":"Tom Earley","r":"Mayor, Dell Rapids, SD"}]},{"m":"Hartford","p":[{"n":"Arden Jones","r":"Mayor, Hartford, SD"}]},{"m":"Sioux Falls","p":[{"n":"Paul Ten Haken","r":"Mayor, Sioux Falls, SD"}]}],"slug":"minnehaha"},"46101":{"county":[],"munis":[{"m":"Flandreau","p":[{"n":"Daniel D. Sutton","r":"Mayor, Flandreau, SD"}]}],"slug":"moody"},"46103":{"county":[],"munis":[{"m":"Rapid City","p":[{"n":"Steve Allender","r":"Mayor, Rapid City, SD"}]}],"slug":"pennington"},"46117":{"county":[],"munis":[{"m":"Fort Pierre","p":[{"n":"Gloria Hanson","r":"Mayor, Fort Pierre, SD"}]}],"slug":"stanley"},"46127":{"county":[],"munis":[{"m":"Beresford","p":[{"n":"Eli Seeley","r":"Mayor, Beresford, SD"}]},{"m":"Elk Point","p":[{"n":"Deborah McCreary","r":"Mayor, Elk Point, SD"}]},{"m":"North Sioux City","p":[{"n":"Patricia Teel","r":"Mayor, North Sioux City, SD"}]}],"slug":"union"},"46135":{"county":[],"munis":[{"m":"Yankton","p":[{"n":"Stephanie Moser","r":"Mayor, Yankton, SD"}]}],"slug":"yankton"},"47001":{"county":[],"munis":[{"m":"Clinton","p":[{"n":"Scott Burton","r":"Mayor, Clinton, TN"}]},{"m":"Rocky Top","p":[{"n":"Kerry Templin","r":"Mayor, Rocky Top, TN"}]}],"slug":"anderson"},"47003":{"county":[],"munis":[{"m":"Shelbyville","p":[{"n":"Randy Carroll","r":"Mayor, Shelbyville, TN"}]}],"slug":"bedford"},"47005":{"county":[],"munis":[{"m":"Camden","p":[{"n":"Roger G. Pafford","r":"Mayor, Camden, TN"}]}],"slug":"benton"},"47009":{"county":[],"munis":[{"m":"Alcoa","p":[{"n":"Tanya Martin","r":"Mayor, Alcoa, TN"}]},{"m":"Maryville","p":[{"n":"Andy White","r":"Mayor, Maryville, TN"}]}],"slug":"blount"},"47011":{"county":[],"munis":[{"m":"Charleston","p":[{"n":"Donna McDermott","r":"Mayor, Charleston, TN"}]},{"m":"Cleveland","p":[{"n":"Kevin Brooks","r":"Mayor, Cleveland, TN"}]}],"slug":"bradley"},"47031":{"county":[],"munis":[{"m":"Manchester","p":[{"n":"Joey Hobbs","r":"Mayor, Manchester, TN"}]}],"slug":"coffee"},"47035":{"county":[],"munis":[{"m":"Crossville","p":[{"n":"RJ Crawford","r":"Mayor, Crossville, TN"}]}],"slug":"cumberland"},"47045":{"county":[],"munis":[{"m":"Dyersburg","p":[{"n":"John Holden","r":"Mayor, Dyersburg, TN"}]}],"slug":"dyer"},"47055":{"county":[],"munis":[{"m":"Pulaski","p":[{"n":"J.J. Brindley","r":"Mayor, Pulaski, TN"}]}],"slug":"giles"},"47065":{"county":[],"munis":[{"m":"Chattanooga","p":[{"n":"Q4760428","r":"Mayor, Chattanooga, TN"}]}],"slug":"hamilton"},"47075":{"county":[],"munis":[{"m":"Brownsville","p":[{"n":"William D. Rawls, Jr.","r":"Mayor, Brownsville, TN"}]}],"slug":"haywood"},"47093":{"county":[],"munis":[{"m":"Knoxville","p":[{"n":"Indya Kincannon","r":"Mayor, Knoxville, TN"}]}],"slug":"knox"},"47103":{"county":[],"munis":[{"m":"Fayetteville","p":[{"n":"Donna Hartman","r":"Mayor, Fayetteville, TN"}]}],"slug":"lincoln"},"47113":{"county":[],"munis":[{"m":"Jackson","p":[{"n":"Scott Conger","r":"Mayor, Jackson, TN"}]}],"slug":"madison"},"47119":{"county":[],"munis":[{"m":"Spring Hill","p":[{"n":"Jim Hagaman","r":"Mayor, Spring Hill, TN"}]}],"slug":"maury"},"47125":{"county":[],"munis":[{"m":"Clarksville","p":[{"n":"Joe Pitts","r":"Mayor, Clarksville, TN"}]}],"slug":"montgomery"},"47143":{"county":[],"munis":[{"m":"Dayton","p":[{"n":"Hurley Marsh","r":"Mayor, Dayton, TN"}]}],"slug":"rhea"},"47145":{"county":[],"munis":[{"m":"Rockwood","p":[{"n":"Jason Jolly","r":"Mayor, Rockwood, TN"}]}],"slug":"roane"},"47147":{"county":[],"munis":[{"m":"Springfield","p":[{"n":"Ann Williams","r":"Mayor, Springfield, TN"}]}],"slug":"robertson"},"47149":{"county":[],"munis":[{"m":"La Vergne","p":[{"n":"Jason Cole","r":"Mayor, La Vergne, TN"}]},{"m":"Murfreesboro","p":[{"n":"Shane McFarland","r":"Mayor, Murfreesboro, TN"}]}],"slug":"rutherford"},"47155":{"county":[],"munis":[{"m":"Sevierville","p":[{"n":"Robert W. Fox","r":"Mayor, Sevierville, TN"}]}],"slug":"sevier"},"47157":{"county":[],"munis":[{"m":"Bartlett","p":[{"n":"David Parsons","r":"Mayor, Bartlett, TN"}]},{"m":"Germantown","p":[{"n":"Mike Palazzolo","r":"Mayor, Germantown, TN"}]},{"m":"Memphis","p":[{"n":"Paul Young","r":"Mayor, Memphis, TN"}]}],"slug":"shelby"},"47163":{"county":[],"munis":[{"m":"Bristol","p":[{"n":"Vince Turner","r":"Mayor, Bristol, TN"}]},{"m":"Kingsport","p":[{"n":"Patrick W. Shull","r":"Mayor, Kingsport, TN"}]}],"slug":"sullivan"},"47165":{"county":[],"munis":[{"m":"Hendersonville","p":[{"n":"Jamie Clary","r":"Mayor, Hendersonville, TN"}]},{"m":"Portland","p":[{"n":"Mike Callis","r":"Mayor, Portland, TN"}]}],"slug":"sumner"},"47179":{"county":[],"munis":[{"m":"Johnson City","p":[{"n":"Todd Fowler","r":"Mayor, Johnson City, TN"}]}],"slug":"washington"},"47187":{"county":[],"munis":[{"m":"Brentwood","p":[{"n":"Mark Gorman","r":"Mayor, Brentwood, TN"}]},{"m":"Franklin","p":[{"n":"Ken Moore","r":"Mayor, Franklin, TN"}]}],"slug":"williamson"},"47189":{"county":[],"munis":[{"m":"Lebanon","p":[{"n":"Rick Bell","r":"Mayor, Lebanon, TN"}]}],"slug":"wilson"},"48001":{"county":[],"munis":[{"m":"Palestine","p":[{"n":"Mitchell Jordan","r":"Mayor, Palestine, TX"}]}],"slug":"anderson"},"48003":{"county":[],"munis":[{"m":"Andrews","p":[{"n":"Flora Braly","r":"Mayor, Andrews, TX"}]}],"slug":"andrews"},"48005":{"county":[],"munis":[{"m":"Lufkin","p":[{"n":"Mark Hicks","r":"Mayor, Lufkin, TX"}]}],"slug":"angelina"},"48007":{"county":[],"munis":[{"m":"Rockport","p":[{"n":"Lowell Timothy Jayroe","r":"Mayor, Rockport, TX"}]}],"slug":"aransas"},"48015":{"county":[],"munis":[{"m":"Bellville","p":[{"n":"James Harrison","r":"Mayor, Bellville, TX"}]}],"slug":"austin"},"48021":{"county":[],"munis":[{"m":"Bastrop","p":[{"n":"Lyle Nelson","r":"Mayor, Bastrop, TX"}]},{"m":"Elgin","p":[{"n":"Theresa McShan","r":"Mayor, Elgin, TX"}]}],"slug":"bastrop"},"48027":{"county":[],"munis":[{"m":"Belton","p":[{"n":"David K. Leigh","r":"Mayor, Belton, TX"}]},{"m":"Harker Heights","p":[{"n":"Michael Blomquist","r":"Mayor, Harker Heights, TX"}]},{"m":"Killeen","p":[{"n":"Debbie Nash-King","r":"Mayor, Killeen, TX"}]},{"m":"Temple","p":[{"n":"Timothy Davis","r":"Mayor, Temple, TX"}]}],"slug":"bell"},"48029":{"county":[],"munis":[{"m":"Converse","p":[{"n":"Al Suarez","r":"Mayor, Converse, TX"}]},{"m":"Hill Country Village","p":[{"n":"Gabriel Durand-Hollis","r":"Mayor, Hill Country Village, TX"}]},{"m":"Leon Valley","p":[{"n":"Chris Riley","r":"Mayor, Leon Valley, TX"}]},{"m":"San Antonio","p":[{"n":"Gina Ortiz Jones","r":"Mayor, San Antonio, TX"}]}],"slug":"bexar"},"48037":{"county":[],"munis":[{"m":"De Kalb","p":[{"n":"Lowell Walker","r":"Mayor, De Kalb, TX"}]},{"m":"New Boston","p":[{"n":"Ronald Humphrey","r":"Mayor, New Boston, TX"}]},{"m":"Texarkana","p":[{"n":"Bob Bruggeman","r":"Mayor, Texarkana, TX"}]}],"slug":"bowie"},"48039":{"county":[],"munis":[{"m":"Alvin","p":[{"n":"Gabe Adame","r":"Mayor, Alvin, TX"}]},{"m":"Angleton","p":[{"n":"John Wright","r":"Mayor, Angleton, TX"}]},{"m":"Clute","p":[{"n":"Calvin Shiflet","r":"Mayor, Clute, TX"}]},{"m":"Freeport","p":[{"n":"Brooks Bass","r":"Mayor, Freeport, TX"}]},{"m":"Lake Jackson","p":[{"n":"Gerald Roznovsky","r":"Mayor, Lake Jackson, TX"}]},{"m":"Pearland","p":[{"n":"Kevin Cole","r":"Mayor, Pearland, TX"}]}],"slug":"brazoria"},"48041":{"county":[],"munis":[{"m":"Bryan","p":[{"n":"Bobby Gutierrez","r":"Mayor, Bryan, TX"}]},{"m":"College Station","p":[{"n":"Karl Mooney","r":"Mayor, College Station, TX"}]}],"slug":"brazos"},"48043":{"county":[],"munis":[{"m":"Alpine","p":[{"n":"Catherine Eaves","r":"Mayor, Alpine, TX"}]}],"slug":"brewster"},"48049":{"county":[],"munis":[{"m":"Brownwood","p":[{"n":"Stephen E. Haynes","r":"Mayor, Brownwood, TX"}]}],"slug":"brown"},"48051":{"county":[],"munis":[{"m":"Caldwell","p":[{"n":"Janice Easter","r":"Mayor, Caldwell, TX"}]}],"slug":"burleson"},"48053":{"county":[],"munis":[{"m":"Burnet","p":[{"n":"Gary Wideman","r":"Mayor, Burnet, TX"}]},{"m":"Marble Falls","p":[{"n":"Dave Rhodes","r":"Mayor, Marble Falls, TX"}]}],"slug":"burnet"},"48055":{"county":[],"munis":[{"m":"Lockhart","p":[{"n":"Lew White","r":"Mayor, Lockhart, TX"}]}],"slug":"caldwell"},"48059":{"county":[],"munis":[{"m":"Clyde","p":[{"n":"Rodger Brown","r":"Mayor, Clyde, TX"}]}],"slug":"callahan"},"48061":{"county":[],"munis":[{"m":"Brownsville","p":[{"n":"John Cowen Jr.","r":"Mayor, Brownsville, TX"}]},{"m":"Harlingen","p":[{"n":"Norma Sepulveda","r":"Mayor, Harlingen, TX"}]},{"m":"La Feria","p":[{"n":"Olga H. Maldonado","r":"Mayor, La Feria, TX"}]},{"m":"Port Isabel","p":[{"n":"Martin Cantu, Jr.","r":"Mayor, Port Isabel, TX"}]},{"m":"San Benito","p":[{"n":"Ricardo \"Rick\" Guerra","r":"Mayor, San Benito, TX"}]}],"slug":"cameron"},"48063":{"county":[],"munis":[{"m":"Pittsburg","p":[{"n":"David Abernathy","r":"Mayor, Pittsburg, TX"}]}],"slug":"camp"},"48073":{"county":[],"munis":[{"m":"Jacksonville","p":[{"n":"Randy Gorham","r":"Mayor, Jacksonville, TX"}]}],"slug":"cherokee"},"48085":{"county":[],"munis":[{"m":"Allen","p":[{"n":"Ken Fulk","r":"Mayor, Allen, TX"}]},{"m":"Farmersville","p":[{"n":"Bryon Wiebold","r":"Mayor, Farmersville, TX"}]},{"m":"Frisco","p":[{"n":"Jeff Cheney","r":"Mayor, Frisco, TX"}]},{"m":"Lucas","p":[{"n":"Jim Olk","r":"Mayor, Lucas, TX"}]},{"m":"Mckinney","p":[{"n":"George Fuller","r":"Mayor, McKinney, TX"}]},{"m":"Murphy","p":[{"n":"Scott Bradley","r":"Mayor, Murphy, TX"}]},{"m":"Parker","p":[{"n":"Lee Pettle","r":"Mayor, Parker, TX"}]},{"m":"Plano","p":[{"n":"Harry LaRosiliere","r":"Mayor, Plano, TX"}]},{"m":"Wylie","p":[{"n":"Matthew Porter","r":"Mayor, Wylie, TX"}]}],"slug":"collin"},"48089":{"county":[],"munis":[{"m":"Columbus","p":[{"n":"Lori An Gobert","r":"Mayor, Columbus, TX"}]},{"m":"Weimar","p":[{"n":"Milton R. Koller","r":"Mayor, Weimar, TX"}]}],"slug":"colorado"},"48091":{"county":[],"munis":[{"m":"New Braunfels","p":[{"n":"Rusty Brockman","r":"Mayor, New Braunfels, TX"}]}],"slug":"comal"},"48095":{"county":[],"munis":[{"m":"Eden","p":[{"n":"Agapito Torres","r":"Mayor, Eden, TX"}]}],"slug":"concho"},"48099":{"county":[],"munis":[{"m":"Gatesville","p":[{"n":"Gary Chumley","r":"Mayor, Gatesville, TX"}]}],"slug":"coryell"},"48107":{"county":[],"munis":[{"m":"Lorenzo","p":[{"n":"Tim Tiner","r":"Mayor, Lorenzo, TX"}]}],"slug":"crosby"},"48113":{"county":[],"munis":[{"m":"Balch Springs","p":[{"n":"Carrie Gordon","r":"Mayor, Balch Springs, TX"}]},{"m":"Carrollton","p":[{"n":"Steve Babick","r":"Mayor, Carrollton, TX"}]},{"m":"Cedar Hill","p":[{"n":"Stephen Mason","r":"Mayor, Cedar Hill, TX"}]},{"m":"Cockrell Hill","p":[{"n":"Luis D. Carrera","r":"Mayor, Cockrell Hill, TX"}]},{"m":"Coppell","p":[{"n":"Wes Mays","r":"Mayor, Coppell, TX"}]},{"m":"Dallas","p":[{"n":"Eric Johnson","r":"Mayor, Dallas, TX"}]},{"m":"Duncanville","p":[{"n":"Barry L. Gordon","r":"Mayor, Duncanville, TX"}]},{"m":"Farmers Branch","p":[{"n":"Terry Lynne","r":"Mayor, Farmers Branch, TX"}]},{"m":"Garland","p":[{"n":"Scott LeMay","r":"Mayor, Garland, TX"}]},{"m":"Grand Prairie","p":[{"n":"Ron Jensen","r":"Mayor, Grand Prairie, TX"}]},{"m":"Irving","p":[{"n":"Rick Stopfer","r":"Mayor, Irving, TX"}]},{"m":"Lancaster","p":[{"n":"Clyde C. Hairston","r":"Mayor, Lancaster, TX"}]},{"m":"Richardson","p":[{"n":"Robert (Bob) Dubey","r":"Mayor, Richardson, TX"}]},{"m":"Rowlett","p":[{"n":"Blake Margolis","r":"Mayor, Rowlett, TX"}]},{"m":"Sachse","p":[{"n":"Jeff Bickerstaff","r":"Mayor, Sachse, TX"}]}],"slug":"dallas"},"48115":{"county":[],"munis":[{"m":"Lamesa","p":[{"n":"Josh Stevens","r":"Mayor, Lamesa, TX"}]}],"slug":"dawson"},"48121":{"county":[],"munis":[{"m":"Argyle","p":[{"n":"Rick Bradford","r":"Mayor, Argyle, TX"}]},{"m":"Denton","p":[{"n":"Gerard Hudspeth","r":"Mayor, Denton, TX"}]},{"m":"Highland Village","p":[{"n":"Daniel Jaworski","r":"Mayor, Highland Village, TX"}]},{"m":"Krum","p":[{"n":"Rhonda Harrison","r":"Mayor, Krum, TX"}]},{"m":"Lake Dallas","p":[{"n":"Andi Nolan","r":"Mayor, Lake Dallas, TX"}]},{"m":"Lewisville","p":[{"n":"TJ Gilmore","r":"Mayor, Lewisville, TX"}]},{"m":"Little Elm","p":[{"n":"Q111217466","r":"Mayor, Little Elm, TX"}]},{"m":"Oak Point","p":[{"n":"Dena Meek","r":"Mayor, Oak Point, TX"}]},{"m":"Roanoke","p":[{"n":"Scooter Gierisch","r":"Mayor, Roanoke, TX"}]}],"slug":"denton"},"48123":{"county":[],"munis":[{"m":"Cuero","p":[{"n":"Sara Post-Meyer","r":"Mayor, Cuero, TX"}]}],"slug":"dewitt"},"48127":{"county":[],"munis":[{"m":"Carrizo Springs","p":[{"n":"Oscar E. Puente","r":"Mayor, Carrizo Springs, TX"}]}],"slug":"dimmit"},"48133":{"county":[],"munis":[{"m":"Cisco","p":[{"n":"Stephen Forester","r":"Mayor, Cisco, TX"}]},{"m":"Eastland","p":[{"n":"Larry Vernon","r":"Mayor, Eastland, TX"}]},{"m":"Rising Star","p":[{"n":"Jimmy L. Carpenter","r":"Mayor, Rising Star, TX"}]}],"slug":"eastland"},"48135":{"county":[],"munis":[{"m":"Odessa","p":[{"n":"Javier Joven","r":"Mayor, Odessa, TX"}]}],"slug":"ector"},"48139":{"county":[],"munis":[{"m":"Ennis","p":[{"n":"Kameron Raburn","r":"Mayor, Ennis, TX"}]},{"m":"Glenn Heights","p":[{"n":"Sonja A. Brown","r":"Mayor, Glenn Heights, TX"}]},{"m":"Maypearl","p":[{"n":"Chance Lynch","r":"Mayor, Maypearl, TX"}]},{"m":"Midlothian","p":[{"n":"Justin Coffman","r":"Mayor, Midlothian, TX"}]},{"m":"Red Oak","p":[{"n":"Mark Stanfill","r":"Mayor, Red Oak, TX"}]},{"m":"Waxahachie","p":[{"n":"David Hill","r":"Mayor, Waxahachie, TX"}]}],"slug":"ellis"},"48141":{"county":[],"munis":[{"m":"El Paso","p":[{"n":"Renard Johnson","r":"Mayor, El Paso, TX"}]}],"slug":"el-paso"},"48149":{"county":[],"munis":[{"m":"La Grange","p":[{"n":"Jan Dockery","r":"Mayor, La Grange, TX"}]}],"slug":"fayette"},"48153":{"county":[],"munis":[{"m":"Floydada","p":[{"n":"Bobby Gilliland","r":"Mayor, Floydada, TX"}]}],"slug":"floyd"},"48157":{"county":[],"munis":[{"m":"Missouri City","p":[{"n":"Robin J. Elackatt","r":"Mayor, Missouri City, TX"}]},{"m":"Richmond","p":[{"n":"Becky Haas","r":"Mayor, Richmond, TX"}]},{"m":"Rosenberg","p":[{"n":"Kevin Raines","r":"Mayor, Rosenberg, TX"}]},{"m":"Stafford","p":[{"n":"Ken Mathew","r":"Mayor, Stafford, TX"}]},{"m":"Sugar Land","p":[{"n":"Joe R. Zimmerman","r":"Mayor, Sugar Land, TX"}]}],"slug":"fort-bend"},"48167":{"county":[],"munis":[{"m":"Dickinson","p":[{"n":"Sean Skipworth","r":"Mayor, Dickinson, TX"}]},{"m":"Friendswood","p":[{"n":"Mike Foreman","r":"Mayor, Friendswood, TX"}]},{"m":"Galveston","p":[{"n":"Craig Brown","r":"Mayor, Galveston, TX"}]},{"m":"Jamaica Beach","p":[{"n":"Sharon Bower","r":"Mayor, Jamaica Beach, TX"}]},{"m":"Kemah","p":[{"n":"Robin Collins","r":"Mayor, Kemah, TX"}]},{"m":"La Marque","p":[{"n":"Keith Bell","r":"Mayor, La Marque, TX"}]},{"m":"League City","p":[{"n":"Nick Long","r":"Mayor, League City, TX"}]},{"m":"Texas City","p":[{"n":"Dedrick Johnson, Sr.","r":"Mayor, Texas City, TX"}]}],"slug":"galveston"},"48169":{"county":[],"munis":[{"m":"Post","p":[{"n":"Marvin Self","r":"Mayor, Post, TX"}]}],"slug":"garza"},"48171":{"county":[],"munis":[{"m":"Fredericksburg","p":[{"n":"Jeryl Hoover","r":"Mayor, Fredericksburg, TX"}]}],"slug":"gillespie"},"48177":{"county":[],"munis":[{"m":"Gonzales","p":[{"n":"Steve Sucher","r":"Mayor, Gonzales, TX"}]}],"slug":"gonzales"},"48179":{"county":[],"munis":[{"m":"Pampa","p":[{"n":"Lance DeFever","r":"Mayor, Pampa, TX"}]}],"slug":"gray"},"48181":{"county":[],"munis":[{"m":"Denison","p":[{"n":"Janet Gott","r":"Mayor, Denison, TX"}]},{"m":"Sherman","p":[{"n":"Shawn Teamann","r":"Mayor, Sherman, TX"}]}],"slug":"grayson"},"48183":{"county":[],"munis":[{"m":"Kilgore","p":[{"n":"Ronnie E. Spradlin III","r":"Mayor, Kilgore, TX"}]},{"m":"Longview","p":[{"n":"James Andrew Mack","r":"Mayor, Longview, TX"}]}],"slug":"gregg"},"48187":{"county":[],"munis":[{"m":"Cibolo","p":[{"n":"Mark Allen","r":"Mayor, Cibolo, TX"}]},{"m":"Seguin","p":[{"n":"Donna Dodgen","r":"Mayor, Seguin, TX"}]}],"slug":"guadalupe"},"48189":{"county":[],"munis":[{"m":"Plainview","p":[{"n":"Charles Starnes","r":"Mayor, Plainview, TX"}]}],"slug":"hale"},"48199":{"county":[],"munis":[{"m":"Lumberton","p":[{"n":"Don Surratt","r":"Mayor, Lumberton, TX"}]},{"m":"Silsbee","p":[{"n":"Danny Reneau","r":"Mayor, Silsbee, TX"}]}],"slug":"hardin"},"48201":{"county":[],"munis":[{"m":"Baytown","p":[{"n":"Charles Johnson","r":"Mayor, Baytown, TX"}]},{"m":"Bellaire","p":[{"n":"Gus E. Pappas","r":"Mayor, Bellaire, TX"}]},{"m":"Deer Park","p":[{"n":"Jerry Mouton, Jr.","r":"Mayor, Deer Park, TX"}]},{"m":"Hilshire Village","p":[{"n":"Robert (Bob) Buesinger","r":"Mayor, Hilshire Village, TX"}]},{"m":"Houston","p":[{"n":"John Whitmire","r":"Mayor, Houston, TX"}]},{"m":"La Porte","p":[{"n":"Louis R. Rigby","r":"Mayor, La Porte, TX"}]},{"m":"Nassau Bay","p":[{"n":"Phil Johnson","r":"Mayor, Nassau Bay, TX"}]},{"m":"Pasadena","p":[{"n":"Jeff Wagner","r":"Mayor, Pasadena, TX"}]},{"m":"Tomball","p":[{"n":"Lori Klein Quinn","r":"Mayor, Tomball, TX"}]},{"m":"Webster","p":[{"n":"Donna Jasso","r":"Mayor, Webster, TX"}]}],"slug":"harris"},"48203":{"county":[],"munis":[{"m":"Marshall","p":[{"n":"Amy Ware","r":"Mayor, Marshall, TX"}]}],"slug":"harrison"},"48205":{"county":[],"munis":[{"m":"Dalhart","p":[{"n":"Justin Moore","r":"Mayor, Dalhart, TX"}]}],"slug":"hartley"},"48209":{"county":[],"munis":[{"m":"Buda","p":[{"n":"Lee Urbanovsky","r":"Mayor, Buda, TX"}]},{"m":"Kyle","p":[{"n":"Travis Mitchell","r":"Mayor, Kyle, TX"}]},{"m":"San Marcos","p":[{"n":"Jane Hughson","r":"Mayor, San Marcos, TX"}]}],"slug":"hays"},"48215":{"county":[],"munis":[{"m":"Donna","p":[{"n":"David Moreno","r":"Mayor, Donna, TX"}]},{"m":"Edinburg","p":[{"n":"Ramiro Garza Jr.","r":"Mayor, Edinburg, TX"}]},{"m":"Hidalgo","p":[{"n":"Sergio Coronado","r":"Mayor, Hidalgo, TX"}]},{"m":"Mcallen","p":[{"n":"Jim Darling","r":"Mayor, McAllen, TX"}]},{"m":"Mercedes","p":[{"n":"Oscar D. Montoya Sr.","r":"Mayor, Mercedes, TX"}]},{"m":"Mission","p":[{"n":"Norie Gonzalez Garza","r":"Mayor, Mission, TX"}]},{"m":"Pharr","p":[{"n":"Ambrosio “Amos” Hernandez","r":"Mayor, Pharr, TX"}]},{"m":"Progreso","p":[{"n":"Gerardo Alanis","r":"Mayor, Progreso, TX"}]},{"m":"Weslaco","p":[{"n":"Adrian Gonzalez","r":"Mayor, Weslaco, TX"}]}],"slug":"hidalgo"},"48217":{"county":[],"munis":[{"m":"Hillsboro","p":[{"n":"Scott Johnson","r":"Mayor, Hillsboro, TX"}]}],"slug":"hill"},"48219":{"county":[],"munis":[{"m":"Levelland","p":[{"n":"Barbra Pinner","r":"Mayor, Levelland, TX"}]}],"slug":"hockley"},"48221":{"county":[],"munis":[{"m":"Granbury","p":[{"n":"Jim Jarratt","r":"Mayor, Granbury, TX"}]}],"slug":"hood"},"48223":{"county":[],"munis":[{"m":"Sulphur Springs","p":[{"n":"Jay Julian","r":"Mayor, Sulphur Springs, TX"}]}],"slug":"hopkins"},"48225":{"county":[],"munis":[{"m":"Crockett","p":[{"n":"Ianthia Fisher","r":"Mayor, Crockett, TX"}]}],"slug":"houston"},"48227":{"county":[],"munis":[{"m":"Big Spring","p":[{"n":"Robert Moore","r":"Mayor, Big Spring, TX"}]}],"slug":"howard"},"48231":{"county":[],"munis":[{"m":"Greenville","p":[{"n":"Jerry Ransom","r":"Mayor, Greenville, TX"}]}],"slug":"hunt"},"48233":{"county":[],"munis":[{"m":"Borger","p":[{"n":"Karen Felker","r":"Mayor, Borger, TX"}]}],"slug":"hutchinson"},"48241":{"county":[],"munis":[{"m":"Jasper","p":[{"n":"Anderson Land","r":"Mayor, Jasper, TX"}]}],"slug":"jasper"},"48245":{"county":[],"munis":[{"m":"Beaumont","p":[{"n":"Roy West","r":"Mayor, Beaumont, TX"}]},{"m":"Port Arthur","p":[{"n":"Thurman \"Bill\" Bartie","r":"Mayor, Port Arthur, TX"}]}],"slug":"jefferson"},"48249":{"county":[],"munis":[{"m":"Alice","p":[{"n":"Cynthia Carrasco","r":"Mayor, Alice, TX"}]}],"slug":"jim-wells"},"48251":{"county":[],"munis":[{"m":"Burleson","p":[{"n":"Chris Fletcher","r":"Mayor, Burleson, TX"}]},{"m":"Cleburne","p":[{"n":"Scott Cain","r":"Mayor, Cleburne, TX"}]},{"m":"Venus","p":[{"n":"Alejandro Galaviz","r":"Mayor, Venus, TX"}]}],"slug":"johnson"},"48257":{"county":[],"munis":[{"m":"Forney","p":[{"n":"Jason Roberson","r":"Mayor, Forney, TX"}]}],"slug":"kaufman"},"48265":{"county":[],"munis":[{"m":"Kerrville","p":[{"n":"Judy Eychner","r":"Mayor, Kerrville, TX"}]}],"slug":"kerr"},"48273":{"county":[],"munis":[{"m":"Kingsville","p":[{"n":"Sam Fugate","r":"Mayor, Kingsville, TX"}]}],"slug":"kleberg"},"48281":{"county":[],"munis":[{"m":"Lampasas","p":[{"n":"Herb Pearce","r":"Mayor, Lampasas, TX"}]}],"slug":"lampasas"},"48287":{"county":[],"munis":[{"m":"Giddings","p":[{"n":"Joel Lopez","r":"Mayor, Giddings, TX"}]}],"slug":"lee"},"48289":{"county":[],"munis":[{"m":"Buffalo","p":[{"n":"Jerrod Jones","r":"Mayor, Buffalo, TX"}]}],"slug":"leon"},"48291":{"county":[],"munis":[{"m":"Cleveland","p":[{"n":"Danny Lee","r":"Mayor, Cleveland, TX"}]},{"m":"Daisetta","p":[{"n":"Eric Thaxton","r":"Mayor, Daisetta, TX"}]},{"m":"Dayton","p":[{"n":"Martin Mudd","r":"Mayor, Dayton, TX"}]}],"slug":"liberty"},"48303":{"county":[],"munis":[{"m":"Lubbock","p":[{"n":"Tray Payne","r":"Mayor, Lubbock, TX"}]}],"slug":"lubbock"},"48307":{"county":[],"munis":[{"m":"Brady","p":[{"n":"Aaron Garcia","r":"Mayor, Brady, TX"}]}],"slug":"mcculloch"},"48309":{"county":[],"munis":[{"m":"Bellmead","p":[{"n":"Jasmine Neal","r":"Mayor, Bellmead, TX"}]},{"m":"Hewitt","p":[{"n":"Steve Fortenberry","r":"Mayor, Hewitt, TX"}]},{"m":"Lacy Lakeview","p":[{"n":"A. Niecey Payne","r":"Mayor, Lacy Lakeview, TX"}]},{"m":"Robinson","p":[{"n":"Bert Echterling","r":"Mayor, Robinson, TX"}]},{"m":"Waco","p":[{"n":"Dillon Meek","r":"Mayor, Waco, TX"}]}],"slug":"mclennan"},"48321":{"county":[],"munis":[{"m":"Bay City","p":[{"n":"Robert Nelson","r":"Mayor, Bay City, TX"}]}],"slug":"matagorda"},"48323":{"county":[],"munis":[{"m":"Eagle Pass","p":[{"n":"Rolando Salinas Jr.","r":"Mayor, Eagle Pass, TX"}]}],"slug":"maverick"},"48325":{"county":[],"munis":[{"m":"Castroville","p":[{"n":"Darrin Schroeder","r":"Mayor, Castroville, TX"}]}],"slug":"medina"},"48327":{"county":[],"munis":[{"m":"Menard","p":[{"n":"Barbara Hooten","r":"Mayor, Menard, TX"}]}],"slug":"menard"},"48329":{"county":[],"munis":[{"m":"Midland","p":[{"n":"Lori Blong","r":"Mayor, Midland, TX"}]}],"slug":"midland"},"48339":{"county":[],"munis":[{"m":"Conroe","p":[{"n":"Jody Czajkoski","r":"Mayor, Conroe, TX"}]}],"slug":"montgomery"},"48341":{"county":[],"munis":[{"m":"Dumas","p":[{"n":"Bob Brinkmann","r":"Mayor, Dumas, TX"}]}],"slug":"moore"},"48347":{"county":[],"munis":[{"m":"Nacogdoches","p":[{"n":"Jimmy Mize","r":"Mayor, Nacogdoches, TX"}]}],"slug":"nacogdoches"},"48349":{"county":[],"munis":[{"m":"Corsicana","p":[{"n":"Mike Fletcher","r":"Mayor, Corsicana, TX"}]}],"slug":"navarro"},"48353":{"county":[],"munis":[{"m":"Sweetwater","p":[{"n":"Jim McKenzie","r":"Mayor, Sweetwater, TX"}]}],"slug":"nolan"},"48355":{"county":[],"munis":[{"m":"Corpus Christi","p":[{"n":"Paulette Guajardo","r":"Mayor, Corpus Christi, TX"}]},{"m":"Port Aransas","p":[{"n":"Wendy Moore","r":"Mayor, Port Aransas, TX"}]}],"slug":"nueces"},"48361":{"county":[],"munis":[{"m":"Bridge City","p":[{"n":"David Rutledge","r":"Mayor, Bridge City, TX"}]},{"m":"Orange","p":[{"n":"Larry Spears, Jr.","r":"Mayor, Orange, TX"}]}],"slug":"orange"},"48367":{"county":[],"munis":[{"m":"Azle","p":[{"n":"Alan Brundrett","r":"Mayor, Azle, TX"}]}],"slug":"parker"},"48371":{"county":[],"munis":[{"m":"Fort Stockton","p":[{"n":"Paul Casias","r":"Mayor, Fort Stockton, TX"}]}],"slug":"pecos"},"48373":{"county":[],"munis":[{"m":"Livingston","p":[{"n":"Judy B. Cochran","r":"Mayor, Livingston, TX"}]},{"m":"Onalaska","p":[{"n":"James W. Arnett","r":"Mayor, Onalaska, TX"}]}],"slug":"polk"},"48375":{"county":[],"munis":[{"m":"Amarillo","p":[{"n":"Cole Stanley","r":"Mayor, Amarillo, TX"}]}],"slug":"potter"},"48377":{"county":[],"munis":[{"m":"Presidio","p":[{"n":"John Ferguson","r":"Mayor, Presidio, TX"}]}],"slug":"presidio"},"48381":{"county":[],"munis":[{"m":"Canyon","p":[{"n":"Gary Hinders","r":"Mayor, Canyon, TX"}]}],"slug":"randall"},"48387":{"county":[],"munis":[{"m":"Clarksville","p":[{"n":"Ann Rushing","r":"Mayor, Clarksville, TX"}]}],"slug":"red-river"},"48389":{"county":[],"munis":[{"m":"Town Of Pecos","p":[{"n":"Teresa Winkles","r":"Mayor, Pecos, TX"}]}],"slug":"reeves"},"48397":{"county":[],"munis":[{"m":"Rockwall","p":[{"n":"Trace Johannesen","r":"Mayor, Rockwall, TX"}]}],"slug":"rockwall"},"48401":{"county":[],"munis":[{"m":"Henderson","p":[{"n":"John 'Buzz' Fullen","r":"Mayor, Henderson, TX"}]},{"m":"Overton","p":[{"n":"Curtis Gilbert","r":"Mayor, Overton, TX"}]}],"slug":"rusk"},"48409":{"county":[],"munis":[{"m":"Ingleside On The Bay","p":[{"n":"Jo Ann Ehmann","r":"Mayor, Ingleside on the Bay, TX"}]},{"m":"Mathis","p":[{"n":"Ciriaco \"Ciri\" Villarreal","r":"Mayor, Mathis, TX"}]},{"m":"Portland","p":[{"n":"Cathy Skurow","r":"Mayor, Portland, TX"}]}],"slug":"san-patricio"},"48411":{"county":[],"munis":[{"m":"San Saba","p":[{"n":"Ken Jordan","r":"Mayor, San Saba, TX"}]}],"slug":"san-saba"},"48419":{"county":[],"munis":[{"m":"Timpson","p":[{"n":"Debra Smith","r":"Mayor, Timpson, TX"}]}],"slug":"shelby"},"48423":{"county":[],"munis":[{"m":"Lindale","p":[{"n":"Jeff Daugherty","r":"Mayor, Lindale, TX"}]},{"m":"Tyler","p":[{"n":"Don Warren","r":"Mayor, Tyler, TX"}]}],"slug":"smith"},"48427":{"county":[],"munis":[{"m":"Rio Grande City","p":[{"n":"Joel Villarreal","r":"Mayor, Rio Grande City, TX"}]},{"m":"Roma","p":[{"n":"Jaime Escobar Jr.","r":"Mayor, Roma, TX"}]}],"slug":"starr"},"48429":{"county":[],"munis":[{"m":"Breckenridge","p":[{"n":"Bob Sims","r":"Mayor, Breckenridge, TX"}]}],"slug":"stephens"},"48439":{"county":[],"munis":[{"m":"Arlington","p":[{"n":"Jim Ross","r":"Mayor, Arlington, TX"}]},{"m":"Bedford","p":[{"n":"Dan Cogan","r":"Mayor, Bedford, TX"}]},{"m":"Benbrook","p":[{"n":"Jason Ward","r":"Mayor, Benbrook, TX"}]},{"m":"Colleyville","p":[{"n":"Bobby Lindamood","r":"Mayor, Colleyville, TX"}]},{"m":"Crowley","p":[{"n":"Billy P. Davis","r":"Mayor, Crowley, TX"}]},{"m":"Euless","p":[{"n":"Linda Martin","r":"Mayor, Euless, TX"}]},{"m":"Fort Worth","p":[{"n":"Mattie Parker","r":"Mayor, Fort Worth, TX"}]},{"m":"Grapevine","p":[{"n":"William Tate","r":"Mayor, Grapevine, TX"}]},{"m":"Haltom City","p":[{"n":"An Truong","r":"Mayor, Haltom City, TX"}]},{"m":"Hurst","p":[{"n":"Henry Wilson","r":"Mayor, Hurst, TX"}]},{"m":"Keller","p":[{"n":"Armin Mizani","r":"Mayor, Keller, TX"}]},{"m":"Kennedale","p":[{"n":"Jan Joplin","r":"Mayor, Kennedale, TX"}]},{"m":"Mansfield","p":[{"n":"Michael Evans","r":"Mayor, Mansfield, TX"}]},{"m":"North Richland Hills","p":[{"n":"Oscar Trevino","r":"Mayor, North Richland Hills, TX"}]},{"m":"River Oaks","p":[{"n":"Darren Houk","r":"Mayor, River Oaks, TX"}]},{"m":"Saginaw","p":[{"n":"Todd Flippo","r":"Mayor, Saginaw, TX"}]},{"m":"Southlake","p":[{"n":"John Huffman","r":"Mayor, Southlake, TX"}]}],"slug":"tarrant"},"48441":{"county":[],"munis":[{"m":"Abilene","p":[{"n":"Weldon Hurt","r":"Mayor, Abilene, TX"}]}],"slug":"taylor"},"48449":{"county":[],"munis":[{"m":"Mount Pleasant","p":[{"n":"Tracy Craig Sr.","r":"Mayor, Mount Pleasant, TX"}]}],"slug":"titus"},"48451":{"county":[],"munis":[{"m":"San Angelo","p":[{"n":"Brenda Gunter","r":"Mayor, San Angelo, TX"}]}],"slug":"tom-green"},"48453":{"county":[],"munis":[{"m":"Austin","p":[{"n":"Kirk Watson","r":"Mayor, Austin, TX"}]},{"m":"Bee Cave","p":[{"n":"Kara King","r":"Mayor, Bee Cave, TX"}]},{"m":"Lakeway","p":[{"n":"Tom Kilgore","r":"Mayor, Lakeway, TX"}]},{"m":"Pflugerville","p":[{"n":"Victor Gonzales","r":"Mayor, Pflugerville, TX"}]}],"slug":"travis"},"48459":{"county":[],"munis":[{"m":"Gilmer","p":[{"n":"Tim Marshall","r":"Mayor, Gilmer, TX"}]}],"slug":"upshur"},"48465":{"county":[],"munis":[{"m":"Del Rio","p":[{"n":"Q125217476","r":"Mayor, Del Rio, TX"}]}],"slug":"val-verde"},"48467":{"county":[],"munis":[{"m":"Canton","p":[{"n":"Lou Ann Everett","r":"Mayor, Canton, TX"}]}],"slug":"van-zandt"},"48469":{"county":[],"munis":[{"m":"Victoria","p":[{"n":"Jeff Bauknight","r":"Mayor, Victoria, TX"}]}],"slug":"victoria"},"48473":{"county":[],"munis":[{"m":"Brookshire","p":[{"n":"Darrell Branch","r":"Mayor, Brookshire, TX"}]},{"m":"Hempstead","p":[{"n":"Erica Gillum","r":"Mayor, Hempstead, TX"}]},{"m":"Katy","p":[{"n":"William H. \"Dusty\" Thiele","r":"Mayor, Katy, TX"}]}],"slug":"waller"},"48477":{"county":[],"munis":[{"m":"Brenham","p":[{"n":"Atwood C. Kenjura","r":"Mayor, Brenham, TX"}]}],"slug":"washington"},"48479":{"county":[],"munis":[{"m":"Laredo","p":[{"n":"Victor Treviño","r":"Mayor, Laredo, TX"}]}],"slug":"webb"},"48481":{"county":[],"munis":[{"m":"Wharton","p":[{"n":"Tim Barker","r":"Mayor, Wharton, TX"}]}],"slug":"wharton"},"48485":{"county":[],"munis":[{"m":"Burkburnett","p":[{"n":"Lori Kemp","r":"Mayor, Burkburnett, TX"}]},{"m":"Iowa Park","p":[{"n":"Ray Schultz","r":"Mayor, Iowa Park, TX"}]},{"m":"Wichita Falls","p":[{"n":"Stephen Santellana","r":"Mayor, Wichita Falls, TX"}]}],"slug":"wichita"},"48489":{"county":[],"munis":[{"m":"Raymondville","p":[{"n":"Gilbert Gonzales","r":"Mayor, Raymondville, TX"}]}],"slug":"willacy"},"48491":{"county":[],"munis":[{"m":"Cedar Park","p":[{"n":"Jim Penniman-Morin","r":"Mayor, Cedar Park, TX"}]},{"m":"Georgetown","p":[{"n":"Josh Schroeder","r":"Mayor, Georgetown, TX"}]},{"m":"Hutto","p":[{"n":"Mike Snyder","r":"Mayor, Hutto, TX"}]},{"m":"Leander","p":[{"n":"Christine DeLisle","r":"Mayor, Leander, TX"}]},{"m":"Round Rock","p":[{"n":"Craig Morgan","r":"Mayor, Round Rock, TX"}]}],"slug":"williamson"},"48497":{"county":[],"munis":[{"m":"Bridgeport","p":[{"n":"Randy Singleton","r":"Mayor, Bridgeport, TX"}]}],"slug":"wise"},"48503":{"county":[],"munis":[{"m":"Graham","p":[{"n":"Alex Heartfield","r":"Mayor, Graham, TX"}]}],"slug":"young"},"49001":{"county":[],"munis":[{"m":"Beaver","p":[{"n":"Matt Robinson","r":"Mayor, Beaver, UT"}]}],"slug":"beaver"},"49003":{"county":[],"munis":[{"m":"Brigham City","p":[{"n":"DJ Bott","r":"Mayor, Brigham City, UT"}]}],"slug":"box-elder"},"49005":{"county":[],"munis":[{"m":"Logan","p":[{"n":"Holly H. Daines","r":"Mayor, Logan, UT"}]},{"m":"Nibley","p":[{"n":"Larry Jacobsen","r":"Mayor, Nibley, UT"}]}],"slug":"cache"},"49007":{"county":[],"munis":[{"m":"Price","p":[{"n":"Michael Kourianos","r":"Mayor, Price, UT"}]}],"slug":"carbon"},"49011":{"county":[],"munis":[{"m":"Bountiful","p":[{"n":"Kendalyn Harris","r":"Mayor, Bountiful, UT"}]},{"m":"Farmington","p":[{"n":"Brett Anderson","r":"Mayor, Farmington, UT"}]},{"m":"Layton","p":[{"n":"Joy Petro","r":"Mayor, Layton, UT"}]},{"m":"North Salt Lake","p":[{"n":"Brian Horrocks","r":"Mayor, North Salt Lake, UT"}]},{"m":"Woods Cross","p":[{"n":"Ryan Westergard","r":"Mayor, Woods Cross, UT"}]}],"slug":"davis"},"49015":{"county":[],"munis":[{"m":"Green River","p":[{"n":"Ren Hatt","r":"Mayor, Green River, UT"}]},{"m":"Orangeville","p":[{"n":"David Robertson","r":"Mayor, Orangeville, UT"}]}],"slug":"emery"},"49019":{"county":[],"munis":[{"m":"Moab","p":[{"n":"Joette Langianese","r":"Mayor, Moab, UT"}]}],"slug":"grand"},"49021":{"county":[],"munis":[{"m":"Cedar City","p":[{"n":"Garth Green","r":"Mayor, Cedar City, UT"}]},{"m":"Parowan","p":[{"n":"Mollie Halterman","r":"Mayor, Parowan, UT"}]}],"slug":"iron"},"49023":{"county":[],"munis":[{"m":"Nephi","p":[{"n":"Justin Seely","r":"Mayor, Nephi, UT"}]}],"slug":"juab"},"49025":{"county":[],"munis":[{"m":"Kanab","p":[{"n":"Troy Colten Johnson","r":"Mayor, Kanab, UT"}]}],"slug":"kane"},"49027":{"county":[],"munis":[{"m":"Fillmore","p":[{"n":"Michael D. Holt","r":"Mayor, Fillmore, UT"}]}],"slug":"millard"},"49035":{"county":[],"munis":[{"m":"Draper","p":[{"n":"Troy Walker","r":"Mayor, Draper, UT"}]},{"m":"Midvale","p":[{"n":"Marcus Stevenson","r":"Mayor, Midvale, UT"}]},{"m":"Millcreek","p":[{"n":"Jeff Silvestrini","r":"Mayor, Millcreek, UT"}]},{"m":"Murray","p":[{"n":"Brett A. Hales","r":"Mayor, Murray, UT"}]},{"m":"Riverton","p":[{"n":"Trent Staggs","r":"Mayor, Riverton, UT"}]},{"m":"Salt Lake City","p":[{"n":"Erin Mendenhall","r":"Mayor, Salt Lake City, UT"}]},{"m":"Sandy","p":[{"n":"Monica Zoltanski","r":"Mayor, Sandy, UT"}]},{"m":"South Jordan","p":[{"n":"Dawn R. Ramsey","r":"Mayor, South Jordan, UT"}]},{"m":"Taylorsville","p":[{"n":"Kristie S. Overson","r":"Mayor, Taylorsville, UT"}]},{"m":"West Jordan","p":[{"n":"Dirk Burton","r":"Mayor, West Jordan, UT"}]},{"m":"West Valley City","p":[{"n":"Ron C. Bigelow","r":"Mayor, West Valley City, UT"}]}],"slug":"salt-lake"},"49037":{"county":[],"munis":[{"m":"Monticello","p":[{"n":"Bayley Hedglin","r":"Mayor, Monticello, UT"}]}],"slug":"san-juan"},"49039":{"county":[],"munis":[{"m":"Manti","p":[{"n":"Alfred \"Chuck\" Bigelow","r":"Mayor, Manti, UT"}]}],"slug":"sanpete"},"49041":{"county":[],"munis":[{"m":"Richfield","p":[{"n":"Bryan L. Burrows","r":"Mayor, Richfield, UT"}]}],"slug":"sevier"},"49045":{"county":[],"munis":[{"m":"Tooele","p":[{"n":"Debbie Winn","r":"Mayor, Tooele, UT"}]}],"slug":"tooele"},"49049":{"county":[],"munis":[{"m":"American Fork","p":[{"n":"Brad Frost","r":"Mayor, American Fork, UT"}]},{"m":"Lehi","p":[{"n":"Mark Johnson","r":"Mayor, Lehi, UT"}]},{"m":"Orem","p":[{"n":"David Young","r":"Mayor, Orem, UT"}]},{"m":"Payson","p":[{"n":"Bill Wright","r":"Mayor, Payson, UT"}]},{"m":"Provo","p":[{"n":"Michelle Kaufusi","r":"Mayor, Provo, UT"}]}],"slug":"utah"},"49051":{"county":[],"munis":[{"m":"Heber","p":[{"n":"Heidi Franco","r":"Mayor, Heber City, UT"}]}],"slug":"wasatch"},"49053":{"county":[],"munis":[{"m":"St George","p":[{"n":"Michele Randall","r":"Mayor, St. George, UT"}]}],"slug":"washington"},"49057":{"county":[],"munis":[{"m":"Ogden","p":[{"n":"Benjamin K. Nadolski","r":"Mayor, Ogden, UT"}]}],"slug":"weber"},"50001":{"county":[],"munis":[{"m":"Vergennes","p":[{"n":"Mathew Chabot","r":"Mayor, Vergennes, VT"}]}],"slug":"addison"},"50007":{"county":[],"munis":[{"m":"Burlington","p":[{"n":"Miro Weinberger","r":"Mayor, Burlington, VT"}]},{"m":"Winooski","p":[{"n":"Kristine Lott","r":"Mayor, Winooski, VT"}]}],"slug":"chittenden"},"50011":{"county":[],"munis":[{"m":"St Albans","p":[{"n":"Tim Smith","r":"Mayor, St. Albans, VT"}]}],"slug":"franklin"},"50021":{"county":[],"munis":[{"m":"Rutland","p":[{"n":"Mike Doenges","r":"Mayor, Rutland, VT"}]}],"slug":"rutland"},"50023":{"county":[],"munis":[{"m":"Barre","p":[{"n":"Lucas J. Herring","r":"Mayor, Barre, VT"}]},{"m":"Montpelier","p":[{"n":"Jack McCullough","r":"Mayor, Montpelier, VT"}]}],"slug":"washington"},"51059":{"county":[],"munis":[{"m":"West Falls Church","p":[{"n":"Letty Hardi","r":"Mayor, Falls Church, VA"}]}],"slug":"fairfax"},"51163":{"county":[],"munis":[{"m":"East Lexington","p":[{"n":"Frank W. Friedman","r":"Mayor, Lexington, VA"}]}],"slug":"rockbridge"},"51195":{"county":[],"munis":[{"m":"The University Of Virginia S College At Wise","p":[{"n":"Will Sessoms","r":"Mayor, Virginia Beach, VA"}]}],"slug":"wise"},"51510":{"county":[],"munis":[{"m":"Alexandria","p":[{"n":"Justin Wilson","r":"Mayor, Alexandria, VA"}]}],"slug":"alexandria-city"},"51520":{"county":[],"munis":[{"m":"Bristol","p":[{"n":"Becky Nave","r":"Mayor, Bristol, VA"}]}],"slug":"bristol-city"},"51530":{"county":[],"munis":[{"m":"Buena Vista","p":[{"n":"Tyson Cooper","r":"Mayor, Buena Vista, VA"}]}],"slug":"buena-vista-city"},"51540":{"county":[],"munis":[{"m":"Charlottesville","p":[{"n":"Lloyd Snook","r":"Mayor, Charlottesville, VA"}]}],"slug":"charlottesville-city"},"51550":{"county":[],"munis":[{"m":"Chesapeake","p":[{"n":"Rick West","r":"Mayor, Chesapeake, VA"}]}],"slug":"chesapeake-city"},"51570":{"county":[],"munis":[{"m":"Colonial Heights","p":[{"n":"T. Gregory Kochuba","r":"Mayor, Colonial Heights, VA"}]}],"slug":"colonial-heights-city"},"51580":{"county":[],"munis":[{"m":"Covington","p":[{"n":"Tom H. Sibold Jr.","r":"Mayor, Covington, VA"}]}],"slug":"covington-city"},"51590":{"county":[],"munis":[{"m":"Danville","p":[{"n":"Alonzo Jones","r":"Mayor, Danville, VA"}]}],"slug":"danville-city"},"51595":{"county":[],"munis":[{"m":"Emporia","p":[{"n":"Carolyn Carey","r":"Mayor, Emporia, VA"}]}],"slug":"emporia-city"},"51600":{"county":[],"munis":[{"m":"Fairfax","p":[{"n":"Catherine S. Read","r":"Mayor, Fairfax, VA"}]}],"slug":"fairfax-city"},"51620":{"county":[],"munis":[{"m":"Franklin","p":[{"n":"Robert \"Bobby\" Cutchins","r":"Mayor, Franklin, VA"}]}],"slug":"franklin-city"},"51630":{"county":[],"munis":[{"m":"Fredericksburg","p":[{"n":"Kerry P. Devine","r":"Mayor, Fredericksburg, VA"}]}],"slug":"fredericksburg-city"},"51640":{"county":[],"munis":[{"m":"Galax","p":[{"n":"Willie Greene","r":"Mayor, Galax, VA"}]}],"slug":"galax-city"},"51650":{"county":[],"munis":[{"m":"Hampton","p":[{"n":"Donnie Tuck","r":"Mayor, Hampton, VA"}]}],"slug":"hampton-city"},"51660":{"county":[],"munis":[{"m":"Harrisonburg","p":[{"n":"Deanna R. Reed","r":"Mayor, Harrisonburg, VA"}]}],"slug":"harrisonburg-city"},"51670":{"county":[],"munis":[{"m":"Hopewell","p":[{"n":"Patience Bennett","r":"Mayor, Hopewell, VA"}]}],"slug":"hopewell-city"},"51680":{"county":[],"munis":[{"m":"Lynchburg","p":[{"n":"Larry Taylor","r":"Mayor, Lynchburg, VA"}]}],"slug":"lynchburg-city"},"51685":{"county":[],"munis":[{"m":"Manassas Park","p":[{"n":"Jeanette Rishell","r":"Mayor, Manassas Park, VA"},{"n":"Michelle Davis-Younger","r":"Mayor, Manassas, VA"}]}],"slug":"manassas-park-city"},"51690":{"county":[],"munis":[{"m":"Martinsville","p":[{"n":"LC Jones","r":"Mayor, Martinsville, VA"}]}],"slug":"martinsville-city"},"51700":{"county":[],"munis":[{"m":"Newport News","p":[{"n":"McKinley L. Price","r":"Mayor, Newport News, VA"}]}],"slug":"newport-news-city"},"51730":{"county":[],"munis":[{"m":"Petersburg","p":[{"n":"Samuel Parham","r":"Mayor, Petersburg, VA"}]}],"slug":"petersburg-city"},"51735":{"county":[],"munis":[{"m":"Poquoson","p":[{"n":"David A. Hux","r":"Mayor, Poquoson, VA"}]}],"slug":"poquoson-city"},"51740":{"county":[],"munis":[{"m":"Portsmouth","p":[{"n":"Shannon E. Glover","r":"Mayor, Portsmouth, VA"}]}],"slug":"portsmouth-city"},"51750":{"county":[],"munis":[{"m":"Radford","p":[{"n":"David Horton","r":"Mayor, Radford, VA"}]}],"slug":"radford-city"},"51760":{"county":[],"munis":[{"m":"Richmond","p":[{"n":"Danny Avula","r":"Mayor, Richmond, VA"}]}],"slug":"richmond-city"},"51770":{"county":[],"munis":[{"m":"Roanoke","p":[{"n":"Sherman Lea","r":"Mayor, Roanoke, VA"}]}],"slug":"roanoke-city"},"51775":{"county":[],"munis":[{"m":"Salem","p":[{"n":"Renée Ferris Turk","r":"Mayor, Salem, VA"}]}],"slug":"salem-city"},"51790":{"county":[],"munis":[{"m":"Staunton","p":[{"n":"Michele Edwards","r":"Mayor, Staunton, VA"}]}],"slug":"staunton-city"},"51800":{"county":[],"munis":[{"m":"Suffolk","p":[{"n":"Michael Duman","r":"Mayor, Suffolk, VA"}]}],"slug":"suffolk-city"},"51820":{"county":[],"munis":[{"m":"Waynesboro","p":[{"n":"Kenny Lee","r":"Mayor, Waynesboro, VA"}]}],"slug":"waynesboro-city"},"51830":{"county":[],"munis":[{"m":"Williamsburg","p":[{"n":"Douglas G. Pons","r":"Mayor, Williamsburg, VA"}]}],"slug":"williamsburg-city"},"51840":{"county":[],"munis":[{"m":"Winchester","p":[{"n":"John David Smith, Jr.","r":"Mayor, Winchester, VA"}]}],"slug":"winchester-city"},"53001":{"county":[],"munis":[{"m":"Othello","p":[{"n":"Shawn Logan","r":"Mayor, Othello, WA"}]}],"slug":"adams"},"53003":{"county":[],"munis":[{"m":"Clarkston","p":[{"n":"Monika Lawrence","r":"Mayor, Clarkston, WA"}]}],"slug":"asotin"},"53005":{"county":[],"munis":[{"m":"Richland","p":[{"n":"Theresa Richardson","r":"Mayor, Richland, WA"}]}],"slug":"benton"},"53007":{"county":[],"munis":[{"m":"Chelan","p":[{"n":"Erin McCardle","r":"Mayor, Chelan, WA"}]},{"m":"Leavenworth","p":[{"n":"Carl Florea","r":"Mayor, Leavenworth, WA"}]},{"m":"Wenatchee","p":[{"n":"Mike Poirier","r":"Mayor, Wenatchee, WA"}]}],"slug":"chelan"},"53009":{"county":[],"munis":[{"m":"Forks","p":[{"n":"Tim Fletcher","r":"Mayor, Forks, WA"}]},{"m":"Port Angeles","p":[{"n":"Kate Dexter","r":"Mayor, Port Angeles, WA"}]}],"slug":"clallam"},"53011":{"county":[],"munis":[{"m":"Battle Ground","p":[{"n":"Troy McCoy","r":"Mayor, Battle Ground, WA"}]},{"m":"Camas","p":[{"n":"Steve Hogan","r":"Mayor, Camas, WA"}]},{"m":"Vancouver","p":[{"n":"Anne McEnerny-Ogle","r":"Mayor, Vancouver, WA"}]}],"slug":"clark"},"53015":{"county":[],"munis":[{"m":"Kelso","p":[{"n":"Veryl Anderson","r":"Mayor, Kelso, WA"}]},{"m":"Longview","p":[{"n":"Spencer Boudreau","r":"Mayor, Longview, WA"}]}],"slug":"cowlitz"},"53017":{"county":[],"munis":[{"m":"Bridgeport","p":[{"n":"Sergio Orozco","r":"Mayor, Bridgeport, WA"}]}],"slug":"douglas"},"53021":{"county":[],"munis":[{"m":"Pasco","p":[{"n":"Pete Serrano","r":"Mayor, Pasco, WA"}]}],"slug":"franklin"},"53025":{"county":[],"munis":[{"m":"Electric City","p":[{"n":"Diane Kohout","r":"Mayor, Electric City, WA"}]},{"m":"Ephrata","p":[{"n":"Bruce Reim","r":"Mayor, Ephrata, WA"}]},{"m":"Mattawa","p":[{"n":"Maria M. Celaya","r":"Mayor, Mattawa, WA"}]},{"m":"Moses Lake","p":[{"n":"Dustin Swartz","r":"Mayor, Moses Lake, WA"}]},{"m":"Quincy","p":[{"n":"Paul Worley","r":"Mayor, Quincy, WA"}]}],"slug":"grant"},"53027":{"county":[],"munis":[{"m":"Aberdeen","p":[{"n":"Douglas Orr","r":"Mayor, Aberdeen, WA"}]},{"m":"Hoquiam","p":[{"n":"Ben Winkelman","r":"Mayor, Hoquiam, WA"}]},{"m":"Westport","p":[{"n":"Ed Welter","r":"Mayor, Westport, WA"}]}],"slug":"grays-harbor"},"53029":{"county":[],"munis":[{"m":"Oak Harbor","p":[{"n":"Ronnie Wright","r":"Mayor, Oak Harbor, WA"}]}],"slug":"island"},"53031":{"county":[],"munis":[{"m":"Port Townsend","p":[{"n":"David Faber","r":"Mayor, Port Townsend, WA"}]}],"slug":"jefferson"},"53033":{"county":[],"munis":[{"m":"Algona","p":[{"n":"Troy Linnell","r":"Mayor, Algona, WA"}]},{"m":"Auburn","p":[{"n":"Nancy Backus","r":"Mayor, Auburn, WA"}]},{"m":"Bellevue","p":[{"n":"Lynne Robinson","r":"Mayor, Bellevue, WA"}]},{"m":"Bothell","p":[{"n":"Mason Thompson","r":"Mayor, Bothell, WA"}]},{"m":"Burien","p":[{"n":"Kevin Schilling","r":"Mayor, Burien, WA"}]},{"m":"Carnation","p":[{"n":"Jim Ribail","r":"Mayor, Carnation, WA"}]},{"m":"Des Moines","p":[{"n":"Matt Mahoney","r":"Mayor, Des Moines, WA"}]},{"m":"Duvall","p":[{"n":"Amy Ockerlander","r":"Mayor, Duvall, WA"}]},{"m":"Enumclaw","p":[{"n":"Jan Molinaro","r":"Mayor, Enumclaw, WA"}]},{"m":"Federal Way","p":[{"n":"Jim Ferrell","r":"Mayor, Federal Way, WA"}]},{"m":"Issaquah","p":[{"n":"Mary Lou Pauly","r":"Mayor, Issaquah, WA"}]},{"m":"Kenmore","p":[{"n":"Nigel Herbig","r":"Mayor, Kenmore, WA"}]},{"m":"Kent","p":[{"n":"Dana Ralph","r":"Mayor, Kent, WA"}]},{"m":"Kirkland","p":[{"n":"Kelli Curtis","r":"Mayor, Kirkland, WA"}]},{"m":"Lake Forest Park","p":[{"n":"Tom French","r":"Mayor, Lake Forest Park, WA"}]},{"m":"Maple Valley","p":[{"n":"Sean P. Kelly","r":"Mayor, Maple Valley, WA"}]},{"m":"Mercer Island","p":[{"n":"Salim Nice","r":"Mayor, Mercer Island, WA"}]},{"m":"North Bend","p":[{"n":"Mary Miller","r":"Mayor, North Bend, WA"}]},{"m":"Redmond","p":[{"n":"Angela Birney","r":"Mayor, Redmond, WA"}]},{"m":"Renton","p":[{"n":"Armondo Pavone","r":"Mayor, Renton, WA"}]},{"m":"Seatac","p":[{"n":"Mohamed Egal","r":"Mayor, SeaTac, WA"}]},{"m":"Seattle","p":[{"n":"Katie Wilson","r":"Mayor, Seattle, WA"}]},{"m":"Shoreline","p":[{"n":"Chris Roberts","r":"Mayor, Shoreline, WA"}]},{"m":"Tukwila","p":[{"n":"Thomas McLeod","r":"Mayor, Tukwila, WA"}]},{"m":"Woodinville","p":[{"n":"Mike Millman","r":"Mayor, Woodinville, WA"}]}],"slug":"king"},"53035":{"county":[],"munis":[{"m":"Bremerton","p":[{"n":"Greg Wheeler","r":"Mayor, Bremerton, WA"}]}],"slug":"kitsap"},"53037":{"county":[],"munis":[{"m":"Cle Elum","p":[{"n":"Matthew Lundh","r":"Mayor, Cle Elum, WA"}]},{"m":"Ellensburg","p":[{"n":"Rich Elliott","r":"Mayor, Ellensburg, WA"}]}],"slug":"kittitas"},"53039":{"county":[],"munis":[{"m":"White Salmon","p":[{"n":"Marla Keethler","r":"Mayor, White Salmon, WA"}]}],"slug":"klickitat"},"53041":{"county":[],"munis":[{"m":"Centralia","p":[{"n":"Kelly Smith Johnston","r":"Mayor, Centralia, WA"}]},{"m":"Chehalis","p":[{"n":"Tony Ketchum","r":"Mayor, Chehalis, WA"}]}],"slug":"lewis"},"53043":{"county":[],"munis":[{"m":"Davenport","p":[{"n":"Jonathan Chapman","r":"Mayor, Davenport, WA"}]}],"slug":"lincoln"},"53047":{"county":[],"munis":[{"m":"Brewster","p":[{"n":"Art Smyth","r":"Mayor, Brewster, WA"}]},{"m":"Okanogan","p":[{"n":"Wayne L. Turner","r":"Mayor, Okanogan, WA"}]},{"m":"Omak","p":[{"n":"Cindy Gagné","r":"Mayor, Omak, WA"}]},{"m":"Oroville","p":[{"n":"Ed Naillon","r":"Mayor, Oroville, WA"}]},{"m":"Pateros","p":[{"n":"Kelly Hook","r":"Mayor, Pateros, WA"}]},{"m":"Tonasket","p":[{"n":"René Maldonado","r":"Mayor, Tonasket, WA"}]}],"slug":"okanogan"},"53053":{"county":[],"munis":[{"m":"Buckley","p":[{"n":"Beau Burkett","r":"Mayor, Buckley, WA"}]},{"m":"Edgewood","p":[{"n":"Dave Olson","r":"Mayor, Edgewood, WA"}]},{"m":"Fife","p":[{"n":"Kim Roscoe","r":"Mayor, Fife, WA"}]},{"m":"Gig Harbor","p":[{"n":"Tracie Markley","r":"Mayor, Gig Harbor, WA"}]},{"m":"Orting","p":[{"n":"Joshua Penner","r":"Mayor, Orting, WA"}]},{"m":"Roy","p":[{"n":"Kimber Ivy","r":"Mayor, Roy, WA"}]},{"m":"Tacoma","p":[{"n":"Victoria Woodards","r":"Mayor, Tacoma, WA"}]}],"slug":"pierce"},"53057":{"county":[],"munis":[{"m":"Anacortes","p":[{"n":"Matt Miller","r":"Mayor, Anacortes, WA"}]},{"m":"Mount Vernon","p":[{"n":"Peter Donovan","r":"Mayor, Mount Vernon, WA"}]}],"slug":"skagit"},"53061":{"county":[],"munis":[{"m":"Arlington","p":[{"n":"Barbara Tolbert","r":"Mayor, Arlington, WA"}]},{"m":"Edmonds","p":[{"n":"Mike Rosen","r":"Mayor, Edmonds, WA"}]},{"m":"Everett","p":[{"n":"Cassie Franklin","r":"Mayor, Everett, WA"}]},{"m":"Granite Falls","p":[{"n":"Matt Hartman","r":"Mayor, Granite Falls, WA"}]},{"m":"Marysville","p":[{"n":"Jon Nehring","r":"Mayor, Marysville, WA"}]},{"m":"Mountlake Terrace","p":[{"n":"Kyoko Matsumoto Wright","r":"Mayor, Mountlake Terrace, WA"}]},{"m":"Snohomish","p":[{"n":"Linda Redmon","r":"Mayor, Snohomish, WA"}]},{"m":"Stanwood","p":[{"n":"Sid Roberts","r":"Mayor, Stanwood, WA"}]}],"slug":"snohomish"},"53063":{"county":[],"munis":[{"m":"Cheney","p":[{"n":"Chris Grover","r":"Mayor, Cheney, WA"}]},{"m":"Deer Park","p":[{"n":"Tim Verzal","r":"Mayor, Deer Park, WA"}]},{"m":"Liberty Lake","p":[{"n":"Cris Kaminskas","r":"Mayor, Liberty Lake, WA"}]},{"m":"Medical Lake","p":[{"n":"Terri Cooper","r":"Mayor, Medical Lake, WA"}]},{"m":"Spokane","p":[{"n":"Lisa Brown","r":"Mayor, Spokane, WA"}]},{"m":"Spokane Valley","p":[{"n":"Pam Haley","r":"Mayor, Spokane Valley, WA"}]}],"slug":"spokane"},"53067":{"county":[],"munis":[{"m":"Lacey","p":[{"n":"Andy Ryder","r":"Mayor, Lacey, WA"}]},{"m":"Olympia","p":[{"n":"Dontae Payne","r":"Mayor, Olympia, WA"}]}],"slug":"thurston"},"53071":{"county":[],"munis":[{"m":"Walla Walla","p":[{"n":"Tom Scribner","r":"Mayor, Walla Walla, WA"}]}],"slug":"walla-walla"},"53073":{"county":[],"munis":[{"m":"Bellingham","p":[{"n":"Kim Lund","r":"Mayor, Bellingham, WA"}]},{"m":"Ferndale","p":[{"n":"Greg Hansen","r":"Mayor, Ferndale, WA"}]}],"slug":"whatcom"},"53075":{"county":[],"munis":[{"m":"Colfax","p":[{"n":"Jim Retzer","r":"Mayor, Colfax, WA"}]},{"m":"Palouse","p":[{"n":"Tim Sievers","r":"Mayor, Palouse, WA"}]},{"m":"Pullman","p":[{"n":"Francis A. Benjamin","r":"Mayor, Pullman, WA"}]}],"slug":"whitman"},"53077":{"county":[],"munis":[{"m":"Sunnyside","p":[{"n":"Dean R. Broersma","r":"Mayor, Sunnyside, WA"}]},{"m":"Yakima","p":[{"n":"Patricia Byers","r":"Mayor, Yakima, WA"}]}],"slug":"yakima"},"54001":{"county":[],"munis":[{"m":"Philippi","p":[{"n":"Philip Bowers","r":"Mayor, Philippi, WV"}]}],"slug":"barbour"},"54003":{"county":[],"munis":[{"m":"Martinsburg","p":[{"n":"Kevin Knowles","r":"Mayor, Martinsburg, WV"}]}],"slug":"berkeley"},"54011":{"county":[],"munis":[{"m":"Huntington","p":[{"n":"Patrick Farrell","r":"Mayor, Huntington, WV"}]}],"slug":"cabell"},"54027":{"county":[],"munis":[{"m":"Romney","p":[{"n":"Beverly C. Keadle","r":"Mayor, Romney, WV"}]}],"slug":"hampshire"},"54033":{"county":[],"munis":[{"m":"Clarksburg","p":[{"n":"Jim Malfregeot","r":"Mayor, Clarksburg, WV"}]}],"slug":"harrison"},"54039":{"county":[],"munis":[{"m":"Charleston","p":[{"n":"Amy Shuler Goodwin","r":"Mayor, Charleston, WV"}]}],"slug":"kanawha"},"54041":{"county":[],"munis":[{"m":"Weston","p":[{"n":"Kim Harrison","r":"Mayor, Weston, WV"}]}],"slug":"lewis"},"54049":{"county":[],"munis":[{"m":"Fairmont","p":[{"n":"Anne Bolyard","r":"Mayor, Fairmont, WV"}]}],"slug":"marion"},"54053":{"county":[],"munis":[{"m":"Point Pleasant","p":[{"n":"Amber Tatterson","r":"Mayor, Point Pleasant, WV"}]}],"slug":"mason"},"54055":{"county":[],"munis":[{"m":"Bluefield","p":[{"n":"Ron Martin","r":"Mayor, Bluefield, WV"}]}],"slug":"mercer"},"54061":{"county":[],"munis":[{"m":"Morgantown","p":[{"n":"Joe Abu-Ghannam","r":"Mayor, Morgantown, WV"}]}],"slug":"monongalia"},"54067":{"county":[],"munis":[{"m":"Summersville","p":[{"n":"Robert Shafer","r":"Mayor, Summersville, WV"}]}],"slug":"nicholas"},"54069":{"county":[],"munis":[{"m":"Wheeling","p":[{"n":"Denny Magruder","r":"Mayor, Wheeling, WV"}]}],"slug":"ohio"},"54081":{"county":[],"munis":[{"m":"Beckley","p":[{"n":"Ryan Neal","r":"Mayor, Beckley, WV"}]}],"slug":"raleigh"},"54107":{"county":[],"munis":[{"m":"Parkersburg","p":[{"n":"Tom Joyce","r":"Mayor, Parkersburg, WV"}]}],"slug":"wood"},"55003":{"county":[],"munis":[{"m":"Ashland","p":[{"n":"Matthew MacKenzie","r":"Mayor, Ashland, WI"}]}],"slug":"ashland"},"55005":{"county":[],"munis":[{"m":"Barron","p":[{"n":"Rod Nordby","r":"Mayor, Barron, WI"}]}],"slug":"barron"},"55007":{"county":[],"munis":[{"m":"Bayfield","p":[{"n":"Ted Dougherty","r":"Mayor, Bayfield, WI"}]}],"slug":"bayfield"},"55009":{"county":[],"munis":[{"m":"De Pere","p":[{"n":"James Boyd","r":"Mayor, De Pere, WI"}]},{"m":"Green Bay","p":[{"n":"Eric Genrich","r":"Mayor, Green Bay, WI"}]}],"slug":"brown"},"55011":{"county":[],"munis":[{"m":"Alma","p":[{"n":"Richard Champeny","r":"Mayor, Alma, WI"}]}],"slug":"buffalo"},"55017":{"county":[],"munis":[{"m":"Chippewa Falls","p":[{"n":"Gregory S. Hoffman","r":"Mayor, Chippewa Falls, WI"}]}],"slug":"chippewa"},"55019":{"county":[],"munis":[{"m":"Abbotsford","p":[{"n":"James Weix","r":"Mayor, Abbotsford, WI"}]}],"slug":"clark"},"55021":{"county":[],"munis":[{"m":"Columbus","p":[{"n":"Joe Hammer","r":"Mayor, Columbus, WI"}]},{"m":"Portage","p":[{"n":"Mitchel Craig","r":"Mayor, Portage, WI"}]}],"slug":"columbia"},"55025":{"county":[],"munis":[{"m":"Fitchburg","p":[{"n":"Julia Arata-Fratta","r":"Mayor, Fitchburg, WI"}]},{"m":"Madison","p":[{"n":"Satya Rhodes-Conway","r":"Mayor, Madison, WI"}]},{"m":"Middleton","p":[{"n":"Emily Kuhn","r":"Mayor, Middleton, WI"}]},{"m":"Stoughton","p":[{"n":"Tim Swadley","r":"Mayor, Stoughton, WI"}]},{"m":"Sun Prairie","p":[{"n":"Paul Esser","r":"Mayor, Sun Prairie, WI"}]},{"m":"Verona","p":[{"n":"Luke Diaz","r":"Mayor, Verona, WI"}]}],"slug":"dane"},"55027":{"county":[],"munis":[{"m":"Beaver Dam","p":[{"n":"Mike Wissell","r":"Mayor, Beaver Dam, WI"}]},{"m":"Waupun","p":[{"n":"Rohn W. Bishop","r":"Mayor, Waupun, WI"}]}],"slug":"dodge"},"55031":{"county":[],"munis":[{"m":"Superior","p":[{"n":"Jim Paine","r":"Mayor, Superior, WI"}]}],"slug":"douglas"},"55033":{"county":[],"munis":[{"m":"Menomonie","p":[{"n":"Randy Knaack","r":"Mayor, Menomonie, WI"}]}],"slug":"dunn"},"55035":{"county":[],"munis":[{"m":"Altoona","p":[{"n":"Brendan Pratt","r":"Mayor, Altoona, WI"}]}],"slug":"eau-claire"},"55045":{"county":[],"munis":[{"m":"Monroe","p":[{"n":"Donna Douglas","r":"Mayor, Monroe, WI"}]}],"slug":"green"},"55047":{"county":[],"munis":[{"m":"Berlin","p":[{"n":"Joel Bruessel","r":"Mayor, Berlin, WI"}]}],"slug":"green-lake"},"55055":{"county":[],"munis":[{"m":"Watertown","p":[{"n":"Emily McFarland","r":"Mayor, Watertown, WI"}]}],"slug":"jefferson"},"55059":{"county":[],"munis":[{"m":"Kenosha","p":[{"n":"David Bogdala","r":"Mayor, Kenosha, WI"}]}],"slug":"kenosha"},"55061":{"county":[],"munis":[{"m":"Algoma","p":[{"n":"Steve Lautenbach","r":"Mayor, Algoma, WI"}]}],"slug":"kewaunee"},"55063":{"county":[],"munis":[{"m":"La Crosse","p":[{"n":"Mitch Reynolds","r":"Mayor, La Crosse, WI"}]},{"m":"Onalaska","p":[{"n":"Kim Smith","r":"Mayor, Onalaska, WI"}]}],"slug":"la-crosse"},"55067":{"county":[],"munis":[{"m":"Antigo","p":[{"n":"Thomas Bauknecht","r":"Mayor, Antigo, WI"}]}],"slug":"langlade"},"55071":{"county":[],"munis":[{"m":"Manitowoc","p":[{"n":"Justin M. Nickels","r":"Mayor, Manitowoc, WI"}]}],"slug":"manitowoc"},"55073":{"county":[],"munis":[{"m":"Wausau","p":[{"n":"Doug Diny","r":"Mayor, Wausau, WI"}]}],"slug":"marathon"},"55075":{"county":[],"munis":[{"m":"Marinette","p":[{"n":"Steve Genisot","r":"Mayor, Marinette, WI"}]}],"slug":"marinette"},"55079":{"county":[],"munis":[{"m":"Cudahy","p":[{"n":"Thomas Pavlic","r":"Mayor, Cudahy, WI"}]},{"m":"Franklin","p":[{"n":"John Nelson","r":"Mayor, Franklin, WI"}]},{"m":"Glendale","p":[{"n":"Bryan Kennedy","r":"Mayor, Glendale, WI"}]},{"m":"Greenfield","p":[{"n":"Michael J. Neitzke","r":"Mayor, Greenfield, WI"}]},{"m":"Milwaukee","p":[{"n":"Cavalier Johnson","r":"Mayor, Milwaukee, WI"}]},{"m":"Oak Creek","p":[{"n":"Daniel Bukiewicz","r":"Mayor, Oak Creek, WI"}]},{"m":"South Milwaukee","p":[{"n":"Jim Shelenske","r":"Mayor, South Milwaukee, WI"}]},{"m":"Wauwatosa","p":[{"n":"Q91356856","r":"Mayor, Wauwatosa, WI"}]},{"m":"West Allis","p":[{"n":"Dan Devine","r":"Mayor, West Allis, WI"}]}],"slug":"milwaukee"},"55081":{"county":[],"munis":[{"m":"Sparta","p":[{"n":"Kevin Riley","r":"Mayor, Sparta, WI"}]}],"slug":"monroe"},"55087":{"county":[],"munis":[{"m":"Appleton","p":[{"n":"Jake Woodford","r":"Mayor, Appleton, WI"}]}],"slug":"outagamie"},"55089":{"county":[],"munis":[{"m":"Mequon","p":[{"n":"Andrew Nerbun","r":"Mayor, Mequon, WI"}]},{"m":"Port Washington","p":[{"n":"Ted Neitzke IV","r":"Mayor, Port Washington, WI"}]}],"slug":"ozaukee"},"55095":{"county":[],"munis":[{"m":"Amery","p":[{"n":"Rick Van Blaricom","r":"Mayor, Amery, WI"}]}],"slug":"polk"},"55097":{"county":[],"munis":[{"m":"Stevens Point","p":[{"n":"Mike Wiza","r":"Mayor, Stevens Point, WI"}]}],"slug":"portage"},"55101":{"county":[],"munis":[{"m":"Burlington","p":[{"n":"Jon Schultz","r":"Mayor, Burlington, WI"}]},{"m":"Racine","p":[{"n":"John Dickert","r":"Mayor, Racine, WI"}]}],"slug":"racine"},"55109":{"county":[],"munis":[{"m":"Hudson","p":[{"n":"Rich O'Connor","r":"Mayor, Hudson, WI"}]},{"m":"New Richmond","p":[{"n":"Jim Zajkowsk","r":"Mayor, New Richmond, WI"}]}],"slug":"st-croix"},"55111":{"county":[],"munis":[{"m":"Baraboo","p":[{"n":"Rob Nelson","r":"Mayor, Baraboo, WI"}]}],"slug":"sauk"},"55117":{"county":[],"munis":[{"m":"Sheboygan","p":[{"n":"Ryan Sorenson","r":"Mayor, Sheboygan, WI"}]}],"slug":"sheboygan"},"55121":{"county":[],"munis":[{"m":"Arcadia","p":[{"n":"John Kimmel","r":"Mayor, Arcadia, WI"}]}],"slug":"trempealeau"},"55127":{"county":[],"munis":[{"m":"Elkhorn","p":[{"n":"Tim Shiroda","r":"Mayor, Elkhorn, WI"}]}],"slug":"walworth"},"55131":{"county":[],"munis":[{"m":"Hartford","p":[{"n":"Timothy Michalak","r":"Mayor, Hartford, WI"}]},{"m":"West Bend","p":[{"n":"Joel Ongert","r":"Mayor, West Bend, WI"}]}],"slug":"washington"},"55133":{"county":[],"munis":[{"m":"Brookfield","p":[{"n":"Steven V. Ponto","r":"Mayor, Brookfield, WI"}]},{"m":"Muskego","p":[{"n":"Rick Petfalski","r":"Mayor, Muskego, WI"}]},{"m":"New Berlin","p":[{"n":"Dave Ament","r":"Mayor, New Berlin, WI"}]},{"m":"Oconomowoc","p":[{"n":"Robert P. Magnus","r":"Mayor, Oconomowoc, WI"}]},{"m":"Pewaukee","p":[{"n":"Steve Bierce","r":"Mayor, Pewaukee, WI"}]},{"m":"Waukesha","p":[{"n":"Shawn Reilly","r":"Mayor, Waukesha, WI"}]}],"slug":"waukesha"},"55139":{"county":[],"munis":[{"m":"Menasha","p":[{"n":"Austin Hammond","r":"Mayor, Menasha, WI"}]},{"m":"Neenah","p":[{"n":"Jane B Lang","r":"Mayor, Neenah, WI"}]},{"m":"Oshkosh","p":[{"n":"Matt Mugerauer","r":"Mayor, Oshkosh, WI"}]}],"slug":"winnebago"},"55141":{"county":[],"munis":[{"m":"Marshfield","p":[{"n":"Lois TeStrake","r":"Mayor, Marshfield, WI"}]},{"m":"Wisconsin Rapids","p":[{"n":"Matt Zacher","r":"Mayor, Wisconsin Rapids, WI"}]}],"slug":"wood"},"56001":{"county":[],"munis":[{"m":"Laramie","p":[{"n":"Brian Harrington","r":"Mayor, Laramie, WY"}]}],"slug":"albany"},"56005":{"county":[],"munis":[{"m":"Gillette","p":[{"n":"Shay Lundvall","r":"Mayor, Gillette, WY"}]}],"slug":"campbell"},"56009":{"county":[],"munis":[{"m":"Douglas","p":[{"n":"Kim Pexton","r":"Mayor, Douglas, WY"}]}],"slug":"converse"},"56019":{"county":[],"munis":[{"m":"Buffalo","p":[{"n":"Shane J. Schrader","r":"Mayor, Buffalo, WY"}]}],"slug":"johnson"},"56021":{"county":[],"munis":[{"m":"Cheyenne","p":[{"n":"Patrick Collins","r":"Mayor, Cheyenne, WY"}]}],"slug":"laramie"},"56023":{"county":[],"munis":[{"m":"Kemmerer","p":[{"n":"William Thek","r":"Mayor, Kemmerer, WY"}]}],"slug":"lincoln"},"56025":{"county":[],"munis":[{"m":"Casper","p":[{"n":"Steve Cathey","r":"Mayor, Casper, WY"}]}],"slug":"natrona"},"56033":{"county":[],"munis":[{"m":"Sheridan","p":[{"n":"Richard Bridger","r":"Mayor, Sheridan, WY"}]}],"slug":"sheridan"},"56037":{"county":[],"munis":[{"m":"Green River","p":[{"n":"Pete Rust","r":"Mayor, Green River, WY"}]}],"slug":"sweetwater"},"56041":{"county":[],"munis":[{"m":"Evanston","p":[{"n":"Kent Williams","r":"Mayor, Evanston, WY"}]}],"slug":"uinta"},"56043":{"county":[],"munis":[{"m":"Worland","p":[{"n":"Jim Gill","r":"Mayor, Worland, WY"}]}],"slug":"washakie"}}; +const CDETAIL = {"01001":{"county":[],"districts":{"cd":[{"d":"AL-06","rep":"Gary J. Palmer","w":0.994}],"sh":[{"d":"AL House District 69","rep":"Kelvin Lawrence","w":0.662},{"d":"AL House District 42","rep":"Van Smith","w":0.29},{"d":"AL House District 88","rep":"Jerry Starnes","w":0.047}],"ss":[{"d":"AL Senate District 30","rep":"Clyde Chambliss","w":1.0}]},"munis":[{"m":"Prattville","p":[{"n":"Bill Gillespie, Jr.","r":"Mayor, Prattville, AL"}]}],"slug":"autauga"},"01003":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.827}],"sh":[{"d":"AL House District 66","rep":"Alan Baker","w":0.216},{"d":"AL House District 65","rep":"Brett Easterbrook","w":0.189},{"d":"AL House District 64","rep":"Donna Givens","w":0.137},{"d":"AL House District 95","rep":"Frances Holk-Jones","w":0.082},{"d":"AL House District 102","rep":"Shane Stringer","w":0.074},{"d":"AL House District 96","rep":"Matt Simpson","w":0.066},{"d":"AL House District 94","rep":"Jennifer Fidler","w":0.065}],"ss":[{"d":"AL Senate District 22","rep":"Greg Albritton","w":0.593},{"d":"AL Senate District 32","rep":"Chris Elliott","w":0.189},{"d":"AL Senate District 33","rep":"Vivian Figures","w":0.047}]},"munis":[{"m":"Bay Minette","p":[{"n":"Robert Wills","r":"Mayor, Bay Minette, AL"}]},{"m":"Daphne","p":[{"n":"Robin LeJeune","r":"Mayor, Daphne, AL"}]},{"m":"Fairhope","p":[{"n":"Sherry Sullivan","r":"Mayor, Fairhope, AL"}]},{"m":"Foley","p":[{"n":"Ralph Hellmich","r":"Mayor, Foley, AL"}]},{"m":"Robertsdale","p":[{"n":"Charles H. Murphy","r":"Mayor, Robertsdale, AL"}]},{"m":"Spanish Fort","p":[{"n":"Michael M. McMillan","r":"Mayor, Spanish Fort, AL"}]}],"slug":"baldwin"},"01005":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.998}],"sh":[{"d":"AL House District 84","rep":"Berry Forte","w":1.0}],"ss":[{"d":"AL Senate District 28","rep":"Billy Beasley","w":1.0}]},"munis":[],"slug":"barbour"},"01007":{"county":[],"districts":{"cd":[{"d":"AL-06","rep":"Gary J. Palmer","w":0.999}],"sh":[{"d":"AL House District 49","rep":"Russell Bedsole","w":0.681},{"d":"AL House District 72","rep":"Curtis Travis","w":0.319}],"ss":[{"d":"AL Senate District 14","rep":"April Weaver","w":1.0}]},"munis":[],"slug":"bibb"},"01009":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.999}],"sh":[{"d":"AL House District 34","rep":"David Standridge","w":0.663},{"d":"AL House District 11","rep":"Heath Allbright","w":0.337}],"ss":[{"d":"AL Senate District 17","rep":"Shay Shelnutt","w":0.742},{"d":"AL Senate District 9","rep":"Wes Kitchens","w":0.258}]},"munis":[{"m":"Oneonta","p":[{"n":"Richard M. Phillips","r":"Mayor, Oneonta, AL"}]}],"slug":"blount"},"01011":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":1.0}],"sh":[{"d":"AL House District 84","rep":"Berry Forte","w":1.0}],"ss":[{"d":"AL Senate District 28","rep":"Billy Beasley","w":1.0}]},"munis":[],"slug":"bullock"},"01013":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.999}],"sh":[{"d":"AL House District 90","rep":"Chris Sells","w":1.0}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"butler"},"01015":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":1.0}],"sh":[{"d":"AL House District 29","rep":"Mark Gidley","w":0.367},{"d":"AL House District 40","rep":"Chad Robertson","w":0.275},{"d":"AL House District 36","rep":"Randy Wood","w":0.191},{"d":"AL House District 32","rep":"Barbara Boyd","w":0.118},{"d":"AL House District 35","rep":"Steve Hurst","w":0.05}],"ss":[{"d":"AL Senate District 12","rep":"Keith Kelley","w":1.0}]},"munis":[],"slug":"calhoun"},"01017":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":0.999}],"sh":[{"d":"AL House District 37","rep":"Bob Fincher","w":0.773},{"d":"AL House District 38","rep":"Kristin Nelson","w":0.226}],"ss":[{"d":"AL Senate District 13","rep":"Randy Price","w":1.0}]},"munis":[],"slug":"chambers"},"01019":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":0.998}],"sh":[{"d":"AL House District 39","rep":"Ginny Shaver","w":1.0}],"ss":[{"d":"AL Senate District 10","rep":"Andrew Jones","w":1.0}]},"munis":[],"slug":"cherokee"},"01021":{"county":[],"districts":{"cd":[{"d":"AL-06","rep":"Gary J. Palmer","w":1.0}],"sh":[{"d":"AL House District 42","rep":"Van Smith","w":0.89},{"d":"AL House District 49","rep":"Russell Bedsole","w":0.11}],"ss":[{"d":"AL Senate District 30","rep":"Clyde Chambliss","w":0.537},{"d":"AL Senate District 14","rep":"April Weaver","w":0.463}]},"munis":[{"m":"Clanton","p":[{"n":"Jeff Mims","r":"Mayor, Clanton, AL"}]}],"slug":"chilton"},"01023":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":1.0}],"sh":[{"d":"AL House District 65","rep":"Brett Easterbrook","w":1.0}],"ss":[{"d":"AL Senate District 24","rep":"Bobby Singleton","w":1.0}]},"munis":[],"slug":"choctaw"},"01025":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":0.676},{"d":"AL-02","rep":"Shomari Figures","w":0.323}],"sh":[{"d":"AL House District 65","rep":"Brett Easterbrook","w":0.51},{"d":"AL House District 68","rep":"Thomas Jackson","w":0.49}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"clarke"},"01027":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":1.0}],"sh":[{"d":"AL House District 35","rep":"Steve Hurst","w":1.0}],"ss":[{"d":"AL Senate District 13","rep":"Randy Price","w":1.0}]},"munis":[],"slug":"clay"},"01029":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":1.0}],"sh":[{"d":"AL House District 40","rep":"Chad Robertson","w":1.0}],"ss":[{"d":"AL Senate District 13","rep":"Randy Price","w":1.0}]},"munis":[],"slug":"cleburne"},"01031":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.999}],"sh":[{"d":"AL House District 91","rep":"Rhett Marques","w":0.58},{"d":"AL House District 90","rep":"Chris Sells","w":0.245},{"d":"AL House District 92","rep":"Matthew Hammett","w":0.175}],"ss":[{"d":"AL Senate District 31","rep":"Josh Carnley","w":1.0}]},"munis":[{"m":"Enterprise","p":[{"n":"William E. Cooper","r":"Mayor, Enterprise, AL"}]}],"slug":"coffee"},"01033":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.998}],"sh":[{"d":"AL House District 18","rep":"Jamie Kiel","w":0.702},{"d":"AL House District 7","rep":"Ernie Yarbrough","w":0.22},{"d":"AL House District 3","rep":"Bubba Underwood","w":0.078}],"ss":[{"d":"AL Senate District 6","rep":"Larry Stutts","w":1.0}]},"munis":[],"slug":"colbert"},"01035":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.999}],"sh":[{"d":"AL House District 90","rep":"Chris Sells","w":0.548},{"d":"AL House District 68","rep":"Thomas Jackson","w":0.451}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"conecuh"},"01037":{"county":[],"districts":{"cd":[{"d":"AL-06","rep":"Gary J. Palmer","w":1.0}],"sh":[{"d":"AL House District 33","rep":"Ben Robbins","w":1.0}],"ss":[{"d":"AL Senate District 30","rep":"Clyde Chambliss","w":1.0}]},"munis":[],"slug":"coosa"},"01039":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.999}],"sh":[{"d":"AL House District 92","rep":"Matthew Hammett","w":1.0}],"ss":[{"d":"AL Senate District 31","rep":"Josh Carnley","w":1.0}]},"munis":[],"slug":"covington"},"01041":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.999}],"sh":[{"d":"AL House District 90","rep":"Chris Sells","w":1.0}],"ss":[{"d":"AL Senate District 25","rep":"Will Barfoot","w":1.0}]},"munis":[],"slug":"crenshaw"},"01043":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":1.0}],"sh":[{"d":"AL House District 12","rep":"Cindy Myrex","w":0.554},{"d":"AL House District 11","rep":"Heath Allbright","w":0.355},{"d":"AL House District 14","rep":"Tim Wadsworth","w":0.091}],"ss":[{"d":"AL Senate District 4","rep":"Garlan Gudger","w":1.0}]},"munis":[{"m":"Cullman","p":[{"n":"Woody Jacobs","r":"Mayor, Cullman, AL"}]}],"slug":"cullman"},"01045":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":1.0}],"sh":[{"d":"AL House District 93","rep":"Steve Clouse","w":0.595},{"d":"AL House District 89","rep":"Marcus Paramore","w":0.404}],"ss":[{"d":"AL Senate District 31","rep":"Josh Carnley","w":0.589},{"d":"AL Senate District 29","rep":"Donnie Chesteen","w":0.411}]},"munis":[],"slug":"dale"},"01047":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":0.999}],"sh":[{"d":"AL House District 67","rep":"Prince Chestnut","w":1.0}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"dallas"},"01049":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.998}],"sh":[{"d":"AL House District 24","rep":"Nathaniel Ledbetter","w":0.653},{"d":"AL House District 39","rep":"Ginny Shaver","w":0.347}],"ss":[{"d":"AL Senate District 8","rep":"Steve Livingston","w":0.665},{"d":"AL Senate District 10","rep":"Andrew Jones","w":0.335}]},"munis":[],"slug":"dekalb"},"01051":{"county":[],"districts":{"cd":[{"d":"AL-06","rep":"Gary J. Palmer","w":0.993},{"d":"AL-02","rep":"Shomari Figures","w":0.006}],"sh":[{"d":"AL House District 31","rep":"Troy Stubbs","w":0.696},{"d":"AL House District 75","rep":"Reed Ingram","w":0.238},{"d":"AL House District 88","rep":"Jerry Starnes","w":0.066}],"ss":[{"d":"AL Senate District 25","rep":"Will Barfoot","w":0.864},{"d":"AL Senate District 30","rep":"Clyde Chambliss","w":0.135}]},"munis":[{"m":"Wetumpka","p":[{"n":"Jerry Willis","r":"Mayor, Wetumpka, AL"}]}],"slug":"elmore"},"01053":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.999}],"sh":[{"d":"AL House District 66","rep":"Alan Baker","w":0.678},{"d":"AL House District 92","rep":"Matthew Hammett","w":0.321}],"ss":[{"d":"AL Senate District 22","rep":"Greg Albritton","w":0.999}]},"munis":[],"slug":"escambia"},"01055":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":1.0}],"sh":[{"d":"AL House District 29","rep":"Mark Gidley","w":0.466},{"d":"AL House District 30","rep":"Craig Lipscomb","w":0.317},{"d":"AL House District 28","rep":"Mack Butler","w":0.217}],"ss":[{"d":"AL Senate District 10","rep":"Andrew Jones","w":1.0}]},"munis":[{"m":"Gadsden","p":[{"n":"Craig Ford","r":"Mayor, Gadsden, AL"}]},{"m":"Glencoe","p":[{"n":"Chris Hare","r":"Mayor, Glencoe, AL"}]}],"slug":"etowah"},"01057":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":1.0}],"sh":[{"d":"AL House District 16","rep":"Bryan Brinyark","w":1.0}],"ss":[{"d":"AL Senate District 5","rep":"Matt Woods","w":1.0}]},"munis":[],"slug":"fayette"},"01059":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":1.0}],"sh":[{"d":"AL House District 18","rep":"Jamie Kiel","w":1.0}],"ss":[{"d":"AL Senate District 6","rep":"Larry Stutts","w":1.0}]},"munis":[],"slug":"franklin"},"01061":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":1.0}],"sh":[{"d":"AL House District 87","rep":"Jeff Sorrells","w":1.0}],"ss":[{"d":"AL Senate District 29","rep":"Donnie Chesteen","w":1.0}]},"munis":[],"slug":"geneva"},"01063":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":0.999}],"sh":[{"d":"AL House District 72","rep":"Curtis Travis","w":1.0}],"ss":[{"d":"AL Senate District 24","rep":"Bobby Singleton","w":1.0}]},"munis":[],"slug":"greene"},"01065":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":1.0}],"sh":[{"d":"AL House District 72","rep":"Curtis Travis","w":1.0}],"ss":[{"d":"AL Senate District 24","rep":"Bobby Singleton","w":1.0}]},"munis":[],"slug":"hale"},"01067":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.996}],"sh":[{"d":"AL House District 85","rep":"Rick Rehm","w":1.0}],"ss":[{"d":"AL Senate District 28","rep":"Billy Beasley","w":1.0}]},"munis":[],"slug":"henry"},"01069":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.998}],"sh":[{"d":"AL House District 86","rep":"Paul Lee","w":0.764},{"d":"AL House District 87","rep":"Jeff Sorrells","w":0.129},{"d":"AL House District 85","rep":"Rick Rehm","w":0.088},{"d":"AL House District 93","rep":"Steve Clouse","w":0.018}],"ss":[{"d":"AL Senate District 29","rep":"Donnie Chesteen","w":0.874},{"d":"AL Senate District 28","rep":"Billy Beasley","w":0.126}]},"munis":[{"m":"Dothan","p":[{"n":"Mike Schmitz","r":"Mayor, Dothan, AL"}]}],"slug":"houston"},"01071":{"county":[],"districts":{"cd":[{"d":"AL-05","rep":"Dale W. Strong","w":0.998}],"sh":[{"d":"AL House District 23","rep":"Mike Kirkland","w":0.878},{"d":"AL House District 22","rep":"Ritchie Whorton","w":0.121}],"ss":[{"d":"AL Senate District 8","rep":"Steve Livingston","w":1.0}]},"munis":[],"slug":"jackson"},"01073":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":0.597},{"d":"AL-06","rep":"Gary J. Palmer","w":0.402}],"sh":[{"d":"AL House District 16","rep":"Bryan Brinyark","w":0.215},{"d":"AL House District 51","rep":"Allen Treadaway","w":0.178},{"d":"AL House District 60","rep":"Juandalynn Givan","w":0.081},{"d":"AL House District 44","rep":"Danny Garrett","w":0.076},{"d":"AL House District 15","rep":"Leigh Hulsey","w":0.074},{"d":"AL House District 57","rep":"Patrick Sellers","w":0.068},{"d":"AL House District 56","rep":"Ontario Tillman","w":0.053},{"d":"AL House District 59","rep":"Mary Moore","w":0.05},{"d":"AL House District 45","rep":"Susan DuBose","w":0.036},{"d":"AL House District 58","rep":"Rolanda Hollis","w":0.028},{"d":"AL House District 14","rep":"Tim Wadsworth","w":0.028},{"d":"AL House District 48","rep":"Jim Carns","w":0.026},{"d":"AL House District 55","rep":"Travis Hendrix","w":0.02},{"d":"AL House District 46","rep":"David Faulkner","w":0.018},{"d":"AL House District 54","rep":"Neil Rafferty","w":0.018},{"d":"AL House District 47","rep":"Mike Shaw","w":0.016},{"d":"AL House District 52","rep":"Kelvin Datcher","w":0.013}],"ss":[{"d":"AL Senate District 19","rep":"Merika Coleman","w":0.276},{"d":"AL Senate District 17","rep":"Shay Shelnutt","w":0.23},{"d":"AL Senate District 5","rep":"Matt Woods","w":0.198},{"d":"AL Senate District 20","rep":"Linda Coleman-Madison","w":0.124},{"d":"AL Senate District 15","rep":"Dan Roberts","w":0.075},{"d":"AL Senate District 18","rep":"Rodger Smitherman","w":0.058},{"d":"AL Senate District 16","rep":"Jabo Waggoner","w":0.04}]},"munis":[{"m":"Bessemer","p":[{"n":"Kenneth E. Gulley","r":"Mayor, Bessemer, AL"}]},{"m":"Birmingham","p":[{"n":"Randall Woodfin","r":"Mayor, Birmingham, AL"}]},{"m":"Hoover","p":[{"n":"Frank Brocato","r":"Mayor, Hoover, AL"}]},{"m":"Trussville","p":[{"n":"Buddy Choat","r":"Mayor, Trussville, AL"}]},{"m":"Vestavia Hills","p":[{"n":"Ashley Curry","r":"Mayor, Vestavia Hills, AL"}]}],"slug":"jefferson"},"01075":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":1.0}],"sh":[{"d":"AL House District 17","rep":"Tracy Estes","w":1.0}],"ss":[{"d":"AL Senate District 5","rep":"Matt Woods","w":1.0}]},"munis":[],"slug":"lamar"},"01077":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.717},{"d":"AL-05","rep":"Dale W. Strong","w":0.283}],"sh":[{"d":"AL House District 1","rep":"Phillip Pettus","w":0.513},{"d":"AL House District 2","rep":"Ben Harrison","w":0.35},{"d":"AL House District 3","rep":"Bubba Underwood","w":0.137}],"ss":[{"d":"AL Senate District 1","rep":"Tim Melson","w":1.0}]},"munis":[{"m":"Florence","p":[{"n":"Andrew Betterton","r":"Mayor, Florence, AL"}]}],"slug":"lauderdale"},"01079":{"county":[],"districts":{"cd":[{"d":"AL-05","rep":"Dale W. Strong","w":0.998}],"sh":[{"d":"AL House District 7","rep":"Ernie Yarbrough","w":1.0}],"ss":[{"d":"AL Senate District 6","rep":"Larry Stutts","w":1.0}]},"munis":[],"slug":"lawrence"},"01081":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":0.998}],"sh":[{"d":"AL House District 38","rep":"Kristin Nelson","w":0.353},{"d":"AL House District 83","rep":"Jeremy Gray","w":0.167},{"d":"AL House District 37","rep":"Bob Fincher","w":0.127},{"d":"AL House District 82","rep":"Pebblin Warren","w":0.116},{"d":"AL House District 81","rep":"Ed Oliver","w":0.096},{"d":"AL House District 80","rep":"Chris Blackshear","w":0.075},{"d":"AL House District 79","rep":"Joe Lovvorn","w":0.067}],"ss":[{"d":"AL Senate District 27","rep":"Jay Hovey","w":0.546},{"d":"AL Senate District 13","rep":"Randy Price","w":0.453}]},"munis":[{"m":"Auburn","p":[{"n":"Ron Anders, Jr.","r":"Mayor, Auburn, AL"}]},{"m":"Opelika","p":[{"n":"Gary Fuller","r":"Mayor, Opelika, AL"}]}],"slug":"lee"},"01083":{"county":[],"districts":{"cd":[{"d":"AL-05","rep":"Dale W. Strong","w":1.0}],"sh":[{"d":"AL House District 2","rep":"Ben Harrison","w":0.403},{"d":"AL House District 5","rep":"Danny Crawford","w":0.337},{"d":"AL House District 4","rep":"Parker Moore","w":0.145},{"d":"AL House District 6","rep":"Andy Whitt","w":0.108},{"d":"AL House District 25","rep":"Phillip Rigsby","w":0.006}],"ss":[{"d":"AL Senate District 1","rep":"Tim Melson","w":0.604},{"d":"AL Senate District 3","rep":"Arthur Orr","w":0.218},{"d":"AL Senate District 6","rep":"Larry Stutts","w":0.135},{"d":"AL Senate District 2","rep":"Tom Butler","w":0.043}]},"munis":[{"m":"Athens","p":[{"n":"William R. \"Ronnie\" Marks","r":"Mayor, Athens, AL"}]}],"slug":"limestone"},"01085":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":0.997}],"sh":[{"d":"AL House District 69","rep":"Kelvin Lawrence","w":1.0}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"lowndes"},"01087":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.998}],"sh":[{"d":"AL House District 82","rep":"Pebblin Warren","w":0.999}],"ss":[{"d":"AL Senate District 28","rep":"Billy Beasley","w":1.0}]},"munis":[],"slug":"macon"},"01089":{"county":[],"districts":{"cd":[{"d":"AL-05","rep":"Dale W. Strong","w":0.999}],"sh":[{"d":"AL House District 22","rep":"Ritchie Whorton","w":0.41},{"d":"AL House District 10","rep":"Marilyn Lands","w":0.132},{"d":"AL House District 21","rep":"Rex Reynolds","w":0.113},{"d":"AL House District 6","rep":"Andy Whitt","w":0.099},{"d":"AL House District 20","rep":"James Lomax","w":0.081},{"d":"AL House District 19","rep":"Laura Hall","w":0.078},{"d":"AL House District 25","rep":"Phillip Rigsby","w":0.041},{"d":"AL House District 53","rep":"Anthony Daniels","w":0.036},{"d":"AL House District 4","rep":"Parker Moore","w":0.01}],"ss":[{"d":"AL Senate District 7","rep":"Sam Givhan","w":0.321},{"d":"AL Senate District 8","rep":"Steve Livingston","w":0.288},{"d":"AL Senate District 9","rep":"Wes Kitchens","w":0.218},{"d":"AL Senate District 2","rep":"Tom Butler","w":0.136},{"d":"AL Senate District 3","rep":"Arthur Orr","w":0.037}]},"munis":[{"m":"Huntsville","p":[{"n":"Tommy Battle","r":"Mayor, Huntsville, AL"}]},{"m":"Madison","p":[{"n":"Paul Finley","r":"Mayor, Madison, AL"}]}],"slug":"madison"},"01091":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":1.0}],"sh":[{"d":"AL House District 68","rep":"Thomas Jackson","w":0.546},{"d":"AL House District 71","rep":"A.J. McCampbell","w":0.453}],"ss":[{"d":"AL Senate District 24","rep":"Bobby Singleton","w":1.0}]},"munis":[],"slug":"marengo"},"01093":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":1.0}],"sh":[{"d":"AL House District 17","rep":"Tracy Estes","w":1.0}],"ss":[{"d":"AL Senate District 4","rep":"Garlan Gudger","w":1.0}]},"munis":[],"slug":"marion"},"01095":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.998}],"sh":[{"d":"AL House District 27","rep":"Jeana Ross","w":0.743},{"d":"AL House District 26","rep":"Brock Colvin","w":0.257}],"ss":[{"d":"AL Senate District 9","rep":"Wes Kitchens","w":1.0}]},"munis":[{"m":"Albertville","p":[{"n":"Tracy Honea","r":"Mayor, Albertville, AL"}]},{"m":"Boaz","p":[{"n":"David Dyar","r":"Mayor, Boaz, AL"}]}],"slug":"marshall"},"01097":{"county":[],"districts":{"cd":[{"d":"AL-01","rep":"Barry Moore","w":0.467},{"d":"AL-02","rep":"Shomari Figures","w":0.318}],"sh":[{"d":"AL House District 102","rep":"Shane Stringer","w":0.347},{"d":"AL House District 105","rep":"Chip Brown","w":0.163},{"d":"AL House District 98","rep":"Napoleon Bracy","w":0.089},{"d":"AL House District 100","rep":"Mark Shirey","w":0.044},{"d":"AL House District 97","rep":"Adline Clarke","w":0.037},{"d":"AL House District 99","rep":"Sam Jones","w":0.032},{"d":"AL House District 101","rep":"Chris Pringle","w":0.025},{"d":"AL House District 104","rep":"Margie Wilcox","w":0.018},{"d":"AL House District 103","rep":"Barbara Drummond","w":0.017}],"ss":[{"d":"AL Senate District 34","rep":"Jack Williams","w":0.464},{"d":"AL Senate District 35","rep":"David Sessions","w":0.207},{"d":"AL Senate District 33","rep":"Vivian Figures","w":0.058},{"d":"AL Senate District 22","rep":"Greg Albritton","w":0.043}]},"munis":[{"m":"Bayou La Batre","p":[{"n":"Henry Barnes, Sr.","r":"Mayor, Bayou La Batre, AL"}]},{"m":"Citronelle","p":[{"n":"Jason Stringer","r":"Mayor, Citronelle, AL"}]},{"m":"Mobile","p":[{"n":"Sandy Stimpson","r":"Mayor, Mobile, AL"}]},{"m":"Semmes","p":[{"n":"Brandon Van Hook","r":"Mayor, Semmes, AL"}]}],"slug":"mobile"},"01099":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.999}],"sh":[{"d":"AL House District 68","rep":"Thomas Jackson","w":1.0}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"monroe"},"01101":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.996}],"sh":[{"d":"AL House District 90","rep":"Chris Sells","w":0.388},{"d":"AL House District 75","rep":"Reed Ingram","w":0.208},{"d":"AL House District 76","rep":"Penni McClammy","w":0.143},{"d":"AL House District 78","rep":"Kenyatté Hassell","w":0.139},{"d":"AL House District 69","rep":"Kelvin Lawrence","w":0.072},{"d":"AL House District 74","rep":"Phillip Ensler","w":0.027},{"d":"AL House District 77","rep":"TaShina Morris","w":0.023}],"ss":[{"d":"AL Senate District 25","rep":"Will Barfoot","w":0.633},{"d":"AL Senate District 26","rep":"Kirk Hatcher","w":0.366}]},"munis":[{"m":"Montgomery","p":[{"n":"Steven Reed","r":"Mayor, Montgomery, AL"}]}],"slug":"montgomery"},"01103":{"county":[],"districts":{"cd":[{"d":"AL-05","rep":"Dale W. Strong","w":1.0}],"sh":[{"d":"AL House District 9","rep":"Scott Stadthagen","w":0.676},{"d":"AL House District 8","rep":"Terri Collins","w":0.159},{"d":"AL House District 4","rep":"Parker Moore","w":0.131},{"d":"AL House District 7","rep":"Ernie Yarbrough","w":0.034}],"ss":[{"d":"AL Senate District 3","rep":"Arthur Orr","w":1.0}]},"munis":[{"m":"Decatur","p":[{"n":"Tab Bowling","r":"Mayor, Decatur, AL"}]}],"slug":"morgan"},"01105":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":1.0}],"sh":[{"d":"AL House District 67","rep":"Prince Chestnut","w":0.919},{"d":"AL House District 68","rep":"Thomas Jackson","w":0.08}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"perry"},"01107":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":0.998}],"sh":[{"d":"AL House District 61","rep":"Ron Bolton","w":0.61},{"d":"AL House District 71","rep":"A.J. McCampbell","w":0.39}],"ss":[{"d":"AL Senate District 21","rep":"Gerald Allen","w":0.999}]},"munis":[],"slug":"pickens"},"01109":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":1.0}],"sh":[{"d":"AL House District 89","rep":"Marcus Paramore","w":1.0}],"ss":[{"d":"AL Senate District 31","rep":"Josh Carnley","w":1.0}]},"munis":[],"slug":"pike"},"01111":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":1.0}],"sh":[{"d":"AL House District 37","rep":"Bob Fincher","w":0.999}],"ss":[{"d":"AL Senate District 13","rep":"Randy Price","w":1.0}]},"munis":[],"slug":"randolph"},"01113":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.996}],"sh":[{"d":"AL House District 84","rep":"Berry Forte","w":0.693},{"d":"AL House District 83","rep":"Jeremy Gray","w":0.27},{"d":"AL House District 80","rep":"Chris Blackshear","w":0.037}],"ss":[{"d":"AL Senate District 28","rep":"Billy Beasley","w":0.78},{"d":"AL Senate District 27","rep":"Jay Hovey","w":0.22}]},"munis":[{"m":"Phenix City","p":[{"n":"Eddie N. Lowe","r":"Mayor, Phenix City, AL"}]}],"slug":"russell"},"01115":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":0.998}],"sh":[{"d":"AL House District 30","rep":"Craig Lipscomb","w":0.456},{"d":"AL House District 50","rep":"Jim Hill","w":0.376},{"d":"AL House District 36","rep":"Randy Wood","w":0.138},{"d":"AL House District 45","rep":"Susan DuBose","w":0.03}],"ss":[{"d":"AL Senate District 11","rep":"Lance Bell","w":0.577},{"d":"AL Senate District 17","rep":"Shay Shelnutt","w":0.423}]},"munis":[],"slug":"st-clair"},"01117":{"county":[],"districts":{"cd":[{"d":"AL-06","rep":"Gary J. Palmer","w":0.998}],"sh":[{"d":"AL House District 41","rep":"Corley Ellis","w":0.548},{"d":"AL House District 49","rep":"Russell Bedsole","w":0.17},{"d":"AL House District 45","rep":"Susan DuBose","w":0.123},{"d":"AL House District 43","rep":"Arnold Mooney","w":0.065},{"d":"AL House District 73","rep":"Kenneth Paschal","w":0.064},{"d":"AL House District 15","rep":"Leigh Hulsey","w":0.015},{"d":"AL House District 48","rep":"Jim Carns","w":0.014}],"ss":[{"d":"AL Senate District 15","rep":"Dan Roberts","w":0.379},{"d":"AL Senate District 11","rep":"Lance Bell","w":0.289},{"d":"AL Senate District 14","rep":"April Weaver","w":0.282},{"d":"AL Senate District 16","rep":"Jabo Waggoner","w":0.05}]},"munis":[{"m":"Alabaster","p":[{"n":"Scott Brakefield","r":"Mayor, Alabaster, AL"}]}],"slug":"shelby"},"01119":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":1.0}],"sh":[{"d":"AL House District 71","rep":"A.J. McCampbell","w":1.0}],"ss":[{"d":"AL Senate District 24","rep":"Bobby Singleton","w":1.0}]},"munis":[],"slug":"sumter"},"01121":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":0.947},{"d":"AL-06","rep":"Gary J. Palmer","w":0.053}],"sh":[{"d":"AL House District 33","rep":"Ben Robbins","w":0.475},{"d":"AL House District 32","rep":"Barbara Boyd","w":0.257},{"d":"AL House District 35","rep":"Steve Hurst","w":0.225},{"d":"AL House District 36","rep":"Randy Wood","w":0.042}],"ss":[{"d":"AL Senate District 11","rep":"Lance Bell","w":0.503},{"d":"AL Senate District 12","rep":"Keith Kelley","w":0.497}]},"munis":[],"slug":"talladega"},"01123":{"county":[],"districts":{"cd":[{"d":"AL-03","rep":"Mike Rogers","w":0.998}],"sh":[{"d":"AL House District 81","rep":"Ed Oliver","w":1.0}],"ss":[{"d":"AL Senate District 27","rep":"Jay Hovey","w":0.851},{"d":"AL Senate District 30","rep":"Clyde Chambliss","w":0.149}]},"munis":[{"m":"Alexander City","p":[{"n":"James Douglas Nabors","r":"Mayor, Alexander City, AL"}]}],"slug":"tallapoosa"},"01125":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.625},{"d":"AL-07","rep":"Terri A. Sewell","w":0.375}],"sh":[{"d":"AL House District 16","rep":"Bryan Brinyark","w":0.377},{"d":"AL House District 62","rep":"Bill Lamb","w":0.239},{"d":"AL House District 61","rep":"Ron Bolton","w":0.165},{"d":"AL House District 72","rep":"Curtis Travis","w":0.096},{"d":"AL House District 71","rep":"A.J. McCampbell","w":0.086},{"d":"AL House District 63","rep":"Norman Crow","w":0.019},{"d":"AL House District 70","rep":"Chris England","w":0.019}],"ss":[{"d":"AL Senate District 5","rep":"Matt Woods","w":0.484},{"d":"AL Senate District 21","rep":"Gerald Allen","w":0.346},{"d":"AL Senate District 24","rep":"Bobby Singleton","w":0.171}]},"munis":[{"m":"Northport","p":[{"n":"John Hinton","r":"Mayor, Northport, AL"}]},{"m":"Tuscaloosa","p":[{"n":"Walter Maddox","r":"Mayor, Tuscaloosa, AL"}]}],"slug":"tuscaloosa"},"01127":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":0.998}],"sh":[{"d":"AL House District 13","rep":"Greg Barnes","w":0.521},{"d":"AL House District 14","rep":"Tim Wadsworth","w":0.479}],"ss":[{"d":"AL Senate District 5","rep":"Matt Woods","w":1.0}]},"munis":[],"slug":"walker"},"01129":{"county":[],"districts":{"cd":[{"d":"AL-02","rep":"Shomari Figures","w":0.999}],"sh":[{"d":"AL House District 65","rep":"Brett Easterbrook","w":1.0}],"ss":[{"d":"AL Senate District 22","rep":"Greg Albritton","w":1.0}]},"munis":[],"slug":"washington"},"01131":{"county":[],"districts":{"cd":[{"d":"AL-07","rep":"Terri A. Sewell","w":1.0}],"sh":[{"d":"AL House District 69","rep":"Kelvin Lawrence","w":0.859},{"d":"AL House District 68","rep":"Thomas Jackson","w":0.141}],"ss":[{"d":"AL Senate District 23","rep":"Rob Stewart","w":1.0}]},"munis":[],"slug":"wilcox"},"01133":{"county":[],"districts":{"cd":[{"d":"AL-04","rep":"Robert B. Aderholt","w":1.0}],"sh":[{"d":"AL House District 14","rep":"Tim Wadsworth","w":0.974},{"d":"AL House District 17","rep":"Tracy Estes","w":0.025}],"ss":[{"d":"AL Senate District 4","rep":"Garlan Gudger","w":1.0}]},"munis":[],"slug":"winston"},"02013":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.495}],"sh":[{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.477}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.477}]},"munis":[],"slug":"aleutians-east-borough"},"02016":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.341}],"sh":[{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.322}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.322}]},"munis":[],"slug":"aleutians-west-census-area"},"02020":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.895}],"sh":[{"d":"AK House District 24","rep":"Dan Saddler","w":0.351},{"d":"AK House District 9","rep":"Ky Holland","w":0.315},{"d":"AK House District 23","rep":"Jamie Allard","w":0.16},{"d":"AK House District 18","rep":"David Nelson","w":0.019},{"d":"AK House District 16","rep":"Carolyn Hall","w":0.011},{"d":"AK House District 12","rep":"Calvin Schrage","w":0.006}],"ss":[{"d":"AK Senate District L","rep":"Kelly Merrick","w":0.511},{"d":"AK Senate District E","rep":"Cathy Giessel","w":0.319},{"d":"AK Senate District I","rep":"Löki Tobin","w":0.022},{"d":"AK Senate District H","rep":"Matt Claman","w":0.013},{"d":"AK Senate District F","rep":"James Kaufman","w":0.011},{"d":"AK Senate District G","rep":"Elvi Gray-Jackson","w":0.005}]},"munis":[],"slug":"anchorage-municipality"},"02050":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.934}],"sh":[{"d":"AK House District 38","rep":"Nellie Jimmie","w":0.479},{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.455}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.934}]},"munis":[],"slug":"bethel-census-area"},"02060":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.604}],"sh":[{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.602}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.602}]},"munis":[],"slug":"bristol-bay-borough"},"02063":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.689}],"sh":[{"d":"AK House District 5","rep":"Louise Stutes","w":0.504},{"d":"AK House District 29","rep":"Garret Nelson","w":0.156}],"ss":[{"d":"AK Senate District C","rep":"Gary Stevens","w":0.504},{"d":"AK Senate District O","rep":"George Rauscher","w":0.156}]},"munis":[],"slug":""},"02066":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":1.0}],"sh":[{"d":"AK House District 36","rep":"Becky Schwanke","w":0.874},{"d":"AK House District 29","rep":"Garret Nelson","w":0.126}],"ss":[{"d":"AK Senate District R","rep":"Mike Cronk","w":0.874},{"d":"AK Senate District O","rep":"George Rauscher","w":0.126}]},"munis":[],"slug":""},"02068":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":1.0}],"sh":[{"d":"AK House District 30","rep":"Kevin McCabe","w":1.0}],"ss":[{"d":"AK Senate District O","rep":"George Rauscher","w":1.0}]},"munis":[],"slug":"denali-borough"},"02070":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.923}],"sh":[{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.921}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.921}]},"munis":[],"slug":"dillingham-census-area"},"02090":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":1.0}],"sh":[{"d":"AK House District 34","rep":"Frank Tomaszewski","w":0.561},{"d":"AK House District 36","rep":"Becky Schwanke","w":0.214},{"d":"AK House District 35","rep":"Ashley Carrick","w":0.203},{"d":"AK House District 33","rep":"Mike Prax","w":0.015},{"d":"AK House District 32","rep":"Will Stapp","w":0.005}],"ss":[{"d":"AK Senate District Q","rep":"Robert Myers","w":0.576},{"d":"AK Senate District R","rep":"Mike Cronk","w":0.417},{"d":"AK Senate District P","rep":"Scott Kawasaki","w":0.007}]},"munis":[{"m":"Fairbanks","p":[{"n":"David Pruhs","r":"Mayor, Fairbanks, AK"}]}],"slug":"fairbanks-north-star-borough"},"02100":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.881}],"sh":[{"d":"AK House District 3","rep":"Andi Story","w":0.878}],"ss":[{"d":"AK Senate District B","rep":"Jesse Kiehl","w":0.878}]},"munis":[],"slug":"haines-borough"},"02105":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.735}],"sh":[{"d":"AK House District 2","rep":"Rebecca Himschoot","w":0.552},{"d":"AK House District 3","rep":"Andi Story","w":0.164}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.552},{"d":"AK Senate District B","rep":"Jesse Kiehl","w":0.164}]},"munis":[],"slug":"hoonah-angoon-census-area"},"02110":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.876}],"sh":[{"d":"AK House District 4","rep":"Sara Hannan","w":0.656},{"d":"AK House District 3","rep":"Andi Story","w":0.207}],"ss":[{"d":"AK Senate District B","rep":"Jesse Kiehl","w":0.863}]},"munis":[],"slug":"juneau-city-and-borough"},"02122":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.674}],"sh":[{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.314},{"d":"AK House District 8","rep":"Bill Elam","w":0.176},{"d":"AK House District 6","rep":"Sarah Vance","w":0.105},{"d":"AK House District 5","rep":"Louise Stutes","w":0.068}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.314},{"d":"AK Senate District D","rep":"Jesse Bjorkman","w":0.179},{"d":"AK Senate District C","rep":"Gary Stevens","w":0.173}]},"munis":[],"slug":"kenai-peninsula-borough"},"02130":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.789}],"sh":[{"d":"AK House District 1","rep":"Jeremy Bynum","w":0.775}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.775}]},"munis":[],"slug":"ketchikan-gateway-borough"},"02150":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.596}],"sh":[{"d":"AK House District 5","rep":"Louise Stutes","w":0.431},{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.152}],"ss":[{"d":"AK Senate District C","rep":"Gary Stevens","w":0.431},{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.152}]},"munis":[],"slug":"kodiak-island-borough"},"02158":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.922}],"sh":[{"d":"AK House District 39","rep":"Neal Foster","w":0.728},{"d":"AK House District 38","rep":"Nellie Jimmie","w":0.181},{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.01}],"ss":[{"d":"AK Senate District T","rep":"Donny Olson","w":0.728},{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.191}]},"munis":[],"slug":""},"02164":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.793}],"sh":[{"d":"AK House District 37","rep":"Bryce Edgmon","w":0.791}],"ss":[{"d":"AK Senate District S","rep":"Lyman Hoffman","w":0.791}]},"munis":[],"slug":"lake-and-peninsula-borough"},"02170":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.99}],"sh":[{"d":"AK House District 30","rep":"Kevin McCabe","w":0.495},{"d":"AK House District 29","rep":"Garret Nelson","w":0.48},{"d":"AK House District 25","rep":"DeLena Johnson","w":0.008}],"ss":[{"d":"AK Senate District O","rep":"George Rauscher","w":0.974},{"d":"AK Senate District M","rep":"Cathy Tilton","w":0.011}]},"munis":[],"slug":"matanuska-susitna-borough"},"02180":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.843}],"sh":[{"d":"AK House District 39","rep":"Neal Foster","w":0.841}],"ss":[{"d":"AK Senate District T","rep":"Donny Olson","w":0.841}]},"munis":[],"slug":"nome-census-area"},"02185":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.95}],"sh":[{"d":"AK House District 40","rep":"Robyn Frier","w":0.949}],"ss":[{"d":"AK Senate District T","rep":"Donny Olson","w":0.949}]},"munis":[],"slug":"north-slope-borough"},"02188":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.907}],"sh":[{"d":"AK House District 40","rep":"Robyn Frier","w":0.896}],"ss":[{"d":"AK Senate District T","rep":"Donny Olson","w":0.896}]},"munis":[],"slug":"northwest-arctic-borough"},"02195":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.805}],"sh":[{"d":"AK House District 2","rep":"Rebecca Himschoot","w":0.8}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.8}]},"munis":[],"slug":"petersburg-borough"},"02198":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.569}],"sh":[{"d":"AK House District 2","rep":"Rebecca Himschoot","w":0.499},{"d":"AK House District 1","rep":"Jeremy Bynum","w":0.038}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.537}]},"munis":[],"slug":"prince-of-wales-hyder-census-area"},"02220":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.691}],"sh":[{"d":"AK House District 2","rep":"Rebecca Himschoot","w":0.661}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.661}]},"munis":[],"slug":"sitka-city-and-borough"},"02230":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":1.0}],"sh":[{"d":"AK House District 3","rep":"Andi Story","w":0.98}],"ss":[{"d":"AK Senate District B","rep":"Jesse Kiehl","w":0.98}]},"munis":[],"slug":"skagway-municipality"},"02240":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":1.0}],"sh":[{"d":"AK House District 36","rep":"Becky Schwanke","w":1.0}],"ss":[{"d":"AK Senate District R","rep":"Mike Cronk","w":1.0}]},"munis":[],"slug":"southeast-fairbanks-census-area"},"02275":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.803}],"sh":[{"d":"AK House District 1","rep":"Jeremy Bynum","w":0.771}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.771}]},"munis":[],"slug":"wrangell-city-and-borough"},"02282":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":0.869}],"sh":[{"d":"AK House District 2","rep":"Rebecca Himschoot","w":0.867}],"ss":[{"d":"AK Senate District A","rep":"Bert Stedman","w":0.867}]},"munis":[],"slug":"yakutat-city-and-borough"},"02290":{"county":[],"districts":{"cd":[{"d":"AK-00","rep":"Nicholas J. Begich III","w":1.0}],"sh":[{"d":"AK House District 36","rep":"Becky Schwanke","w":1.0}],"ss":[{"d":"AK Senate District R","rep":"Mike Cronk","w":1.0}]},"munis":[],"slug":"yukon-koyukuk-census-area"},"04001":{"county":[],"districts":{"cd":[{"d":"AZ-02","rep":"Elijah Crane","w":1.0}],"sh":[{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":1.0}],"ss":[{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":1.0}]},"munis":[],"slug":"apache"},"04003":{"county":[],"districts":{"cd":[{"d":"AZ-06","rep":"Juan Ciscomani","w":0.93},{"d":"AZ-07","rep":"Adelita S. Grijalva","w":0.07}],"sh":[{"d":"AZ House District 19","rep":"Gail Griffin, Lupe Diaz","w":0.954},{"d":"AZ House District 21","rep":"Consuelo Hernandez, Stephanie Stahl Hamilton","w":0.046}],"ss":[{"d":"AZ Senate District 19","rep":"David Gowan","w":0.954},{"d":"AZ Senate District 21","rep":"Rosanna Gabaldón","w":0.046}]},"munis":[{"m":"Bisbee","p":[{"n":"Ken Budge","r":"Mayor, Bisbee, AZ"}]}],"slug":"cochise"},"04005":{"county":[],"districts":{"cd":[{"d":"AZ-02","rep":"Elijah Crane","w":1.0}],"sh":[{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":0.812},{"d":"AZ House District 7","rep":"Sylvia Allen, Walt Blackman","w":0.188}],"ss":[{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":0.812},{"d":"AZ Senate District 7","rep":"Wendy Rogers","w":0.188}]},"munis":[{"m":"Flagstaff","p":[{"n":"Paul Deasy","r":"Mayor, Flagstaff, AZ"}]}],"slug":"coconino"},"04007":{"county":[],"districts":{"cd":[{"d":"AZ-02","rep":"Elijah Crane","w":1.0}],"sh":[{"d":"AZ House District 7","rep":"Sylvia Allen, Walt Blackman","w":0.616},{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":0.384}],"ss":[{"d":"AZ Senate District 7","rep":"Wendy Rogers","w":0.616},{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":0.384}]},"munis":[],"slug":"gila"},"04009":{"county":[],"districts":{"cd":[{"d":"AZ-06","rep":"Juan Ciscomani","w":0.633},{"d":"AZ-02","rep":"Elijah Crane","w":0.367}],"sh":[{"d":"AZ House District 19","rep":"Gail Griffin, Lupe Diaz","w":0.633},{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":0.367}],"ss":[{"d":"AZ Senate District 19","rep":"David Gowan","w":0.633},{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":0.367}]},"munis":[{"m":"Safford","p":[{"n":"Jason Kouts","r":"Mayor, Safford, AZ"}]}],"slug":"graham"},"04011":{"county":[],"districts":{"cd":[{"d":"AZ-06","rep":"Juan Ciscomani","w":1.0}],"sh":[{"d":"AZ House District 19","rep":"Gail Griffin, Lupe Diaz","w":1.0}],"ss":[{"d":"AZ Senate District 19","rep":"David Gowan","w":1.0}]},"munis":[],"slug":"greenlee"},"04012":{"county":[],"districts":{"cd":[{"d":"AZ-09","rep":"Paul A. Gosar","w":1.0}],"sh":[{"d":"AZ House District 30","rep":"John Gillette, Leo Biasiucci","w":1.0}],"ss":[{"d":"AZ Senate District 30","rep":"Hildy Angius","w":1.0}]},"munis":[],"slug":"la-paz"},"04013":{"county":[],"districts":{"cd":[{"d":"AZ-09","rep":"Paul A. Gosar","w":0.353},{"d":"AZ-07","rep":"Adelita S. Grijalva","w":0.325},{"d":"AZ-01","rep":"David Schweikert","w":0.176},{"d":"AZ-08","rep":"Abraham J. Hamadeh","w":0.063},{"d":"AZ-05","rep":"Andy Biggs","w":0.025},{"d":"AZ-03","rep":"Yassamin Ansari","w":0.022},{"d":"AZ-04","rep":"Greg Stanton","w":0.019},{"d":"AZ-02","rep":"Elijah Crane","w":0.017}],"sh":[{"d":"AZ House District 23","rep":"Mariana Sandoval, Michele Peña","w":0.289},{"d":"AZ House District 25","rep":"Michael Carbone, Nick Kupper","w":0.242},{"d":"AZ House District 3","rep":"Alex Kolodin, Cody Reim","w":0.162},{"d":"AZ House District 30","rep":"John Gillette, Leo Biasiucci","w":0.098},{"d":"AZ House District 29","rep":"James Taylor, Steve Montenegro","w":0.042},{"d":"AZ House District 28","rep":"Beverly Pingerelli, David Livingston","w":0.033},{"d":"AZ House District 8","rep":"Brian Garcia, Janeen Connolly","w":0.015},{"d":"AZ House District 12","rep":"Patty Contreras, Stacey Travers","w":0.014},{"d":"AZ House District 22","rep":"Elda Luna-Nájera, Lupe Contreras","w":0.012},{"d":"AZ House District 11","rep":"Junelle Cavero, Oscar De Los Santos","w":0.011},{"d":"AZ House District 4","rep":"Matt Gress, Pamela Carter","w":0.011},{"d":"AZ House District 10","rep":"Justin Olson, Ralph Heap","w":0.009},{"d":"AZ House District 16","rep":"Chris Lopez, Teresa Martinez","w":0.009},{"d":"AZ House District 2","rep":"Justin Wilmeth, Stephanie Simacek","w":0.009},{"d":"AZ House District 15","rep":"Michael Way, Neal Carter","w":0.008},{"d":"AZ House District 14","rep":"Khyl Powell, Laurin Hendrix","w":0.007},{"d":"AZ House District 13","rep":"Jeff Weninger, Julie Willoughby","w":0.007},{"d":"AZ House District 27","rep":"Lisa Fink, Tony Rivero","w":0.006}],"ss":[{"d":"AZ Senate District 23","rep":"Brian Fernandez","w":0.289},{"d":"AZ Senate District 25","rep":"Tim Dunn","w":0.242},{"d":"AZ Senate District 3","rep":"John Kavanagh","w":0.162},{"d":"AZ Senate District 30","rep":"Hildy Angius","w":0.098},{"d":"AZ Senate District 29","rep":"Janae Shamp","w":0.042},{"d":"AZ Senate District 28","rep":"Frank Carroll","w":0.033},{"d":"AZ Senate District 8","rep":"Lauren Kuby","w":0.015},{"d":"AZ Senate District 12","rep":"Mitzi Epstein","w":0.014},{"d":"AZ Senate District 22","rep":"Eva Diaz","w":0.012},{"d":"AZ Senate District 11","rep":"Catherine Miranda","w":0.011},{"d":"AZ Senate District 4","rep":"Carine Werner","w":0.011},{"d":"AZ Senate District 10","rep":"Dave Farnsworth","w":0.009},{"d":"AZ Senate District 16","rep":"T.J. Shope","w":0.009},{"d":"AZ Senate District 2","rep":"Shawnna Bolick","w":0.009},{"d":"AZ Senate District 15","rep":"Jake Hoffman","w":0.008},{"d":"AZ Senate District 14","rep":"Warren Petersen","w":0.007},{"d":"AZ Senate District 13","rep":"J.D. Mesnard","w":0.007},{"d":"AZ Senate District 27","rep":"Kevin Payne","w":0.006}]},"munis":[{"m":"Avondale","p":[{"n":"Kenneth Weise","r":"Mayor, Avondale, AZ"}]},{"m":"Buckeye","p":[{"n":"Eric Orsborn","r":"Mayor, Buckeye, AZ"}]},{"m":"Chandler","p":[{"n":"Jay Tibshraeny","r":"Mayor, Chandler, AZ"}]},{"m":"El Mirage","p":[{"n":"Alexis Hermosillo","r":"Mayor, El Mirage, AZ"}]},{"m":"Glendale","p":[{"n":"Q61858351","r":"Mayor, Glendale, AZ"}]},{"m":"Goodyear","p":[{"n":"Joe Pizzillo","r":"Mayor, Goodyear, AZ"}]},{"m":"Mesa","p":[{"n":"John Giles","r":"Mayor, Mesa, AZ"}]},{"m":"Peoria","p":[{"n":"Cathy Carlat","r":"Mayor, Peoria, AZ"}]},{"m":"Phoenix","p":[{"n":"Kate Gallego","r":"Mayor, Phoenix, AZ"}]},{"m":"Scottsdale","p":[{"n":"Lisa Borowsky","r":"Mayor, Scottsdale, AZ"}]},{"m":"Surprise","p":[{"n":"Skip Hall","r":"Mayor, Surprise, AZ"}]},{"m":"Tempe","p":[{"n":"Corey Woods","r":"Mayor, Tempe, AZ"}]}],"slug":"maricopa"},"04015":{"county":[],"districts":{"cd":[{"d":"AZ-09","rep":"Paul A. Gosar","w":0.929},{"d":"AZ-02","rep":"Elijah Crane","w":0.07}],"sh":[{"d":"AZ House District 30","rep":"John Gillette, Leo Biasiucci","w":0.929},{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":0.07}],"ss":[{"d":"AZ Senate District 30","rep":"Hildy Angius","w":0.929},{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":0.07}]},"munis":[{"m":"Kingman","p":[{"n":"Jen Miles","r":"Mayor, Kingman, AZ"}]}],"slug":"mohave"},"04017":{"county":[],"districts":{"cd":[{"d":"AZ-02","rep":"Elijah Crane","w":1.0}],"sh":[{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":0.767},{"d":"AZ House District 7","rep":"Sylvia Allen, Walt Blackman","w":0.233}],"ss":[{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":0.767},{"d":"AZ Senate District 7","rep":"Wendy Rogers","w":0.233}]},"munis":[{"m":"Holbrook","p":[{"n":"J. Merrill Young","r":"Mayor, Holbrook, AZ"}]}],"slug":"navajo"},"04019":{"county":[],"districts":{"cd":[{"d":"AZ-07","rep":"Adelita S. Grijalva","w":0.806},{"d":"AZ-06","rep":"Juan Ciscomani","w":0.194}],"sh":[{"d":"AZ House District 23","rep":"Mariana Sandoval, Michele Peña","w":0.63},{"d":"AZ House District 21","rep":"Consuelo Hernandez, Stephanie Stahl Hamilton","w":0.115},{"d":"AZ House District 17","rep":"Kevin Volk, Rachel Keshel","w":0.114},{"d":"AZ House District 19","rep":"Gail Griffin, Lupe Diaz","w":0.068},{"d":"AZ House District 16","rep":"Chris Lopez, Teresa Martinez","w":0.053},{"d":"AZ House District 18","rep":"Chris Mathis, Nancy Gutierrez","w":0.01},{"d":"AZ House District 20","rep":"Alma Hernández, Betty Villegas","w":0.009}],"ss":[{"d":"AZ Senate District 23","rep":"Brian Fernandez","w":0.63},{"d":"AZ Senate District 21","rep":"Rosanna Gabaldón","w":0.115},{"d":"AZ Senate District 17","rep":"Vince Leach","w":0.114},{"d":"AZ Senate District 19","rep":"David Gowan","w":0.068},{"d":"AZ Senate District 16","rep":"T.J. Shope","w":0.053},{"d":"AZ Senate District 18","rep":"Priya Sundareshan","w":0.01},{"d":"AZ Senate District 20","rep":"Sally Gonzales","w":0.009}]},"munis":[{"m":"Tucson","p":[{"n":"Regina Romero","r":"Mayor, Tucson, AZ"}]}],"slug":"pima"},"04021":{"county":[],"districts":{"cd":[{"d":"AZ-02","rep":"Elijah Crane","w":0.548},{"d":"AZ-06","rep":"Juan Ciscomani","w":0.252},{"d":"AZ-07","rep":"Adelita S. Grijalva","w":0.167},{"d":"AZ-05","rep":"Andy Biggs","w":0.033}],"sh":[{"d":"AZ House District 16","rep":"Chris Lopez, Teresa Martinez","w":0.453},{"d":"AZ House District 7","rep":"Sylvia Allen, Walt Blackman","w":0.363},{"d":"AZ House District 23","rep":"Mariana Sandoval, Michele Peña","w":0.077},{"d":"AZ House District 6","rep":"Mae Peshlakai, Myron Tsosie","w":0.04},{"d":"AZ House District 17","rep":"Kevin Volk, Rachel Keshel","w":0.039},{"d":"AZ House District 15","rep":"Michael Way, Neal Carter","w":0.028}],"ss":[{"d":"AZ Senate District 16","rep":"T.J. Shope","w":0.453},{"d":"AZ Senate District 7","rep":"Wendy Rogers","w":0.363},{"d":"AZ Senate District 23","rep":"Brian Fernandez","w":0.077},{"d":"AZ Senate District 6","rep":"Theresa Hatathlie","w":0.04},{"d":"AZ Senate District 17","rep":"Vince Leach","w":0.039},{"d":"AZ Senate District 15","rep":"Jake Hoffman","w":0.028}]},"munis":[],"slug":"pinal"},"04023":{"county":[],"districts":{"cd":[{"d":"AZ-07","rep":"Adelita S. Grijalva","w":1.0}],"sh":[{"d":"AZ House District 21","rep":"Consuelo Hernandez, Stephanie Stahl Hamilton","w":0.624},{"d":"AZ House District 19","rep":"Gail Griffin, Lupe Diaz","w":0.376}],"ss":[{"d":"AZ Senate District 21","rep":"Rosanna Gabaldón","w":0.624},{"d":"AZ Senate District 19","rep":"David Gowan","w":0.376}]},"munis":[{"m":"Nogales","p":[{"n":"Arturo Garino","r":"Mayor, Nogales, AZ"}]}],"slug":"santa-cruz"},"04025":{"county":[],"districts":{"cd":[{"d":"AZ-02","rep":"Elijah Crane","w":1.0}],"sh":[{"d":"AZ House District 1","rep":"Quang Nguyen, Selina Bliss","w":0.999}],"ss":[{"d":"AZ Senate District 1","rep":"Mark Finchem","w":0.999}]},"munis":[{"m":"Prescott","p":[{"n":"Phil Goode","r":"Mayor, Prescott, AZ"}]}],"slug":"yavapai"},"04027":{"county":[],"districts":{"cd":[{"d":"AZ-09","rep":"Paul A. Gosar","w":0.562},{"d":"AZ-07","rep":"Adelita S. Grijalva","w":0.438}],"sh":[{"d":"AZ House District 25","rep":"Michael Carbone, Nick Kupper","w":0.562},{"d":"AZ House District 23","rep":"Mariana Sandoval, Michele Peña","w":0.438}],"ss":[{"d":"AZ Senate District 25","rep":"Tim Dunn","w":0.562},{"d":"AZ Senate District 23","rep":"Brian Fernandez","w":0.438}]},"munis":[],"slug":"yuma"},"05001":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.999}],"sh":[{"d":"AR House District 61","rep":"Jeremiah Moore","w":0.612},{"d":"AR House District 62","rep":"Mark McElroy","w":0.357},{"d":"AR House District 65","rep":"Glenn Barnes","w":0.03}],"ss":[{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.584},{"d":"AR Senate District 10","rep":"Ron Caldwell","w":0.416}]},"munis":[],"slug":"arkansas"},"05003":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 95","rep":"Howard Beaty","w":1.0}],"ss":[{"d":"AR Senate District 1","rep":"Ben Gilmore","w":1.0}]},"munis":[],"slug":"ashley"},"05005":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 3","rep":"Stetson Painter","w":0.472},{"d":"AR House District 4","rep":"Jason Nazarenko","w":0.447},{"d":"AR House District 27","rep":"Steven Walker","w":0.081}],"ss":[{"d":"AR Senate District 23","rep":"Scott Flippo","w":1.0}]},"munis":[],"slug":"baxter"},"05007":{"county":[],"districts":{"cd":[{"d":"AR-03","rep":"Steve Womack","w":1.0}],"sh":[{"d":"AR House District 12","rep":"Hope Duke","w":0.252},{"d":"AR House District 7","rep":"Brit McKenzie","w":0.242},{"d":"AR House District 17","rep":"Randy Torres","w":0.177},{"d":"AR House District 8","rep":"Austin McCollum","w":0.083},{"d":"AR House District 16","rep":"Kendon Underwood","w":0.077},{"d":"AR House District 14","rep":"Nick Burkes","w":0.058},{"d":"AR House District 10","rep":"Mindy McAlindon","w":0.037},{"d":"AR House District 11","rep":"Rebecca Burkes","w":0.035},{"d":"AR House District 13","rep":"Scott Richardson","w":0.021},{"d":"AR House District 15","rep":"John Carr","w":0.015}],"ss":[{"d":"AR Senate District 32","rep":"Josh Bryant","w":0.345},{"d":"AR Senate District 35","rep":"Tyler Dees","w":0.303},{"d":"AR Senate District 33","rep":"Bart Hester","w":0.21},{"d":"AR Senate District 34","rep":"Jim Dotson","w":0.142}]},"munis":[{"m":"Bentonville","p":[{"n":"Stephanie Orman","r":"Mayor, Bentonville, AR"}]}],"slug":"benton"},"05009":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.999}],"sh":[{"d":"AR House District 5","rep":"Ron McNair","w":0.603},{"d":"AR House District 6","rep":"Harlan Breaux","w":0.397}],"ss":[{"d":"AR Senate District 28","rep":"Bryan King","w":0.605},{"d":"AR Senate District 23","rep":"Scott Flippo","w":0.395}]},"munis":[],"slug":"boone"},"05011":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 96","rep":"Sonia Barker","w":0.575},{"d":"AR House District 94","rep":"Jeff Wardlaw","w":0.425}],"ss":[{"d":"AR Senate District 1","rep":"Ben Gilmore","w":1.0}]},"munis":[],"slug":"bradley"},"05013":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 96","rep":"Sonia Barker","w":1.0}],"ss":[{"d":"AR Senate District 2","rep":"Matt Stone","w":1.0}]},"munis":[],"slug":"calhoun"},"05015":{"county":[],"districts":{"cd":[{"d":"AR-03","rep":"Steve Womack","w":0.999}],"sh":[{"d":"AR House District 6","rep":"Harlan Breaux","w":0.661},{"d":"AR House District 26","rep":"James Eaton","w":0.339}],"ss":[{"d":"AR Senate District 28","rep":"Bryan King","w":1.0}]},"munis":[],"slug":"carroll"},"05017":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.995}],"sh":[{"d":"AR House District 95","rep":"Howard Beaty","w":0.999}],"ss":[{"d":"AR Senate District 1","rep":"Ben Gilmore","w":0.999}]},"munis":[],"slug":"chicot"},"05019":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 89","rep":"Justin Gonzales","w":0.918},{"d":"AR House District 90","rep":"Richard Womack","w":0.081}],"ss":[{"d":"AR Senate District 3","rep":"Steve Crowell","w":1.0}]},"munis":[],"slug":"clark"},"05021":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 1","rep":"Jeremy Wooldridge","w":0.999}],"ss":[{"d":"AR Senate District 21","rep":"Blake Johnson","w":0.999}]},"munis":[{"m":"Piggott","p":[{"n":"Jeff Benbrook","r":"Mayor, Piggott, AR"}]}],"slug":"clay"},"05023":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":1.0}],"sh":[{"d":"AR House District 41","rep":"Alyssa Brown","w":0.89},{"d":"AR House District 40","rep":"Shad Pearce","w":0.081},{"d":"AR House District 42","rep":"Stephen Meeks","w":0.029}],"ss":[{"d":"AR Senate District 22","rep":"John Payton","w":0.529},{"d":"AR Senate District 18","rep":"Jonathan Dismang","w":0.29},{"d":"AR Senate District 24","rep":"Missy Irvin","w":0.181}]},"munis":[],"slug":"cleburne"},"05025":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 96","rep":"Sonia Barker","w":0.636},{"d":"AR House District 93","rep":"Mike Holcomb","w":0.364}],"ss":[{"d":"AR Senate District 1","rep":"Ben Gilmore","w":1.0}]},"munis":[],"slug":"cleveland"},"05027":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 99","rep":"Lane Jean","w":0.757},{"d":"AR House District 98","rep":"Wade Andrews","w":0.243}],"ss":[{"d":"AR Senate District 3","rep":"Steve Crowell","w":1.0}]},"munis":[{"m":"Magnolia","p":[{"n":"Parnell Vann","r":"Mayor, Magnolia, AR"}]}],"slug":"columbia"},"05029":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":0.999}],"sh":[{"d":"AR House District 43","rep":"Rick Beck","w":1.0}],"ss":[{"d":"AR Senate District 25","rep":"Breanne Davis","w":0.891},{"d":"AR Senate District 5","rep":"Terry Rice","w":0.109}]},"munis":[],"slug":"conway"},"05031":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 33","rep":"Jon Milligan","w":0.446},{"d":"AR House District 38","rep":"Dwight Tosh","w":0.297},{"d":"AR House District 30","rep":"Fran Cavenaugh","w":0.135},{"d":"AR House District 36","rep":"Johnny Rye","w":0.089},{"d":"AR House District 32","rep":"Jack Ladyman","w":0.033}],"ss":[{"d":"AR Senate District 19","rep":"Dave Wallace","w":0.795},{"d":"AR Senate District 20","rep":"Dan Sullivan","w":0.205}]},"munis":[{"m":"Jonesboro","p":[{"n":"Harold Copenhaver","r":"Mayor, Jonesboro, AR"}]}],"slug":"craighead"},"05033":{"county":[],"districts":{"cd":[{"d":"AR-03","rep":"Steve Womack","w":0.999}],"sh":[{"d":"AR House District 24","rep":"Brad Hall","w":0.573},{"d":"AR House District 25","rep":"Chad Puryear","w":0.328},{"d":"AR House District 48","rep":"Ryan Rose","w":0.098}],"ss":[{"d":"AR Senate District 29","rep":"Jim Petty","w":1.0}]},"munis":[{"m":"Van Buren","p":[{"n":"Joe Hurst","r":"Mayor, Van Buren, AR"}]}],"slug":"crawford"},"05035":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 35","rep":"Jessie McGruder","w":0.692},{"d":"AR House District 63","rep":"Lincoln Barnett","w":0.306}],"ss":[{"d":"AR Senate District 9","rep":"Reginald Murdock","w":0.999}]},"munis":[{"m":"West Memphis","p":[{"n":"Marco McClendon","r":"Mayor, West Memphis, AR"}]}],"slug":"crittenden"},"05037":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 37","rep":"Steve Hollowell","w":0.858},{"d":"AR House District 35","rep":"Jessie McGruder","w":0.141}],"ss":[{"d":"AR Senate District 10","rep":"Ron Caldwell","w":1.0}]},"munis":[],"slug":"cross"},"05039":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 96","rep":"Sonia Barker","w":1.0}],"ss":[{"d":"AR Senate District 2","rep":"Matt Stone","w":1.0}]},"munis":[],"slug":"dallas"},"05041":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 62","rep":"Mark McElroy","w":0.705},{"d":"AR House District 94","rep":"Jeff Wardlaw","w":0.2},{"d":"AR House District 64","rep":"Ken Ferguson","w":0.094}],"ss":[{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.999}]},"munis":[],"slug":"desha"},"05043":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 94","rep":"Jeff Wardlaw","w":0.93},{"d":"AR House District 93","rep":"Mike Holcomb","w":0.07}],"ss":[{"d":"AR Senate District 1","rep":"Ben Gilmore","w":0.949},{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.051}]},"munis":[],"slug":"drew"},"05045":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":1.0}],"sh":[{"d":"AR House District 42","rep":"Stephen Meeks","w":0.388},{"d":"AR House District 57","rep":"Cameron Cooper","w":0.275},{"d":"AR House District 69","rep":"David Ray","w":0.142},{"d":"AR House District 54","rep":"Mary Bentley","w":0.103},{"d":"AR House District 56","rep":"Steve Magie","w":0.068},{"d":"AR House District 55","rep":"Matt Brown","w":0.024}],"ss":[{"d":"AR Senate District 24","rep":"Missy Irvin","w":0.678},{"d":"AR Senate District 17","rep":"Mark Johnson","w":0.228},{"d":"AR Senate District 18","rep":"Jonathan Dismang","w":0.094}]},"munis":[],"slug":"faulkner"},"05047":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":0.999}],"sh":[{"d":"AR House District 26","rep":"James Eaton","w":0.501},{"d":"AR House District 46","rep":"Jon Eubanks","w":0.345},{"d":"AR House District 25","rep":"Chad Puryear","w":0.154}],"ss":[{"d":"AR Senate District 26","rep":"Brad Simon","w":0.52},{"d":"AR Senate District 28","rep":"Bryan King","w":0.48}]},"munis":[],"slug":"franklin"},"05049":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 2","rep":"Trey Steimel","w":0.662},{"d":"AR House District 3","rep":"Stetson Painter","w":0.338}],"ss":[{"d":"AR Senate District 23","rep":"Scott Flippo","w":0.862},{"d":"AR Senate District 22","rep":"John Payton","w":0.138}]},"munis":[],"slug":"fulton"},"05051":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":0.999}],"sh":[{"d":"AR House District 85","rep":"Richard McGrew","w":0.66},{"d":"AR House District 84","rep":"Les Warren","w":0.183},{"d":"AR House District 90","rep":"Richard Womack","w":0.075},{"d":"AR House District 91","rep":"Bruce Cozart","w":0.047},{"d":"AR House District 89","rep":"Justin Gonzales","w":0.034}],"ss":[{"d":"AR Senate District 6","rep":"Matt McKee","w":0.844},{"d":"AR Senate District 7","rep":"Alan Clark","w":0.156}]},"munis":[],"slug":"garland"},"05053":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 92","rep":"Julie Mayberry","w":1.0}],"ss":[{"d":"AR Senate District 2","rep":"Matt Stone","w":0.47},{"d":"AR Senate District 1","rep":"Ben Gilmore","w":0.269},{"d":"AR Senate District 7","rep":"Alan Clark","w":0.26}]},"munis":[],"slug":"grant"},"05055":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.999}],"sh":[{"d":"AR House District 1","rep":"Jeremy Wooldridge","w":0.691},{"d":"AR House District 30","rep":"Fran Cavenaugh","w":0.209},{"d":"AR House District 31","rep":"Jimmy Gazaway","w":0.101}],"ss":[{"d":"AR Senate District 21","rep":"Blake Johnson","w":1.0}]},"munis":[],"slug":"greene"},"05057":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 88","rep":"Dolly Henley","w":1.0}],"ss":[{"d":"AR Senate District 3","rep":"Steve Crowell","w":0.674},{"d":"AR Senate District 4","rep":"Jimmy Hickey","w":0.326}]},"munis":[{"m":"Hope","p":[{"n":"Don Still","r":"Mayor, Hope, AR"}]}],"slug":"hempstead"},"05059":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 90","rep":"Richard Womack","w":0.489},{"d":"AR House District 29","rep":"Rick McClure","w":0.413},{"d":"AR House District 89","rep":"Justin Gonzales","w":0.098}],"ss":[{"d":"AR Senate District 7","rep":"Alan Clark","w":0.819},{"d":"AR Senate District 3","rep":"Steve Crowell","w":0.181}]},"munis":[],"slug":"hot-spring"},"05061":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 86","rep":"John Maddox","w":0.625},{"d":"AR House District 88","rep":"Dolly Henley","w":0.305},{"d":"AR House District 87","rep":"DeAnn Vaught","w":0.071}],"ss":[{"d":"AR Senate District 4","rep":"Jimmy Hickey","w":1.0}]},"munis":[],"slug":"howard"},"05063":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 28","rep":"Bart Schulz","w":0.501},{"d":"AR House District 40","rep":"Shad Pearce","w":0.295},{"d":"AR House District 39","rep":"Wayne Long","w":0.204}],"ss":[{"d":"AR Senate District 22","rep":"John Payton","w":1.0}]},"munis":[{"m":"Batesville","p":[{"n":"Rick Elumbaugh","r":"Mayor, Batesville, AR"}]}],"slug":"independence"},"05065":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 27","rep":"Steven Walker","w":1.0}],"ss":[{"d":"AR Senate District 23","rep":"Scott Flippo","w":0.752},{"d":"AR Senate District 22","rep":"John Payton","w":0.248}]},"munis":[],"slug":"izard"},"05067":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.999}],"sh":[{"d":"AR House District 39","rep":"Wayne Long","w":0.454},{"d":"AR House District 61","rep":"Jeremiah Moore","w":0.3},{"d":"AR House District 38","rep":"Dwight Tosh","w":0.246}],"ss":[{"d":"AR Senate District 10","rep":"Ron Caldwell","w":1.0}]},"munis":[],"slug":"jackson"},"05069":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":0.997}],"sh":[{"d":"AR House District 65","rep":"Glenn Barnes","w":0.575},{"d":"AR House District 93","rep":"Mike Holcomb","w":0.255},{"d":"AR House District 64","rep":"Ken Ferguson","w":0.169}],"ss":[{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.858},{"d":"AR Senate District 1","rep":"Ben Gilmore","w":0.142}]},"munis":[],"slug":"jefferson"},"05071":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 45","rep":"Aaron Pilkington","w":0.973},{"d":"AR House District 46","rep":"Jon Eubanks","w":0.027}],"ss":[{"d":"AR Senate District 26","rep":"Brad Simon","w":0.594},{"d":"AR Senate District 28","rep":"Bryan King","w":0.405}]},"munis":[],"slug":"johnson"},"05073":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 99","rep":"Lane Jean","w":0.826},{"d":"AR House District 98","rep":"Wade Andrews","w":0.174}],"ss":[{"d":"AR Senate District 3","rep":"Steve Crowell","w":1.0}]},"munis":[],"slug":"lafayette"},"05075":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 28","rep":"Bart Schulz","w":0.776},{"d":"AR House District 30","rep":"Fran Cavenaugh","w":0.224}],"ss":[{"d":"AR Senate District 22","rep":"John Payton","w":0.776},{"d":"AR Senate District 21","rep":"Blake Johnson","w":0.224}]},"munis":[],"slug":"lawrence"},"05077":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 62","rep":"Mark McElroy","w":1.0}],"ss":[{"d":"AR Senate District 9","rep":"Reginald Murdock","w":0.549},{"d":"AR Senate District 10","rep":"Ron Caldwell","w":0.45}]},"munis":[],"slug":"lee"},"05079":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 93","rep":"Mike Holcomb","w":0.652},{"d":"AR House District 64","rep":"Ken Ferguson","w":0.345}],"ss":[{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.536},{"d":"AR Senate District 1","rep":"Ben Gilmore","w":0.464}]},"munis":[],"slug":"lincoln"},"05081":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":0.985},{"d":"TX-04","rep":"Pat Fallon","w":0.009},{"d":"TX-01","rep":"Nathaniel Moran","w":0.006}],"sh":[{"d":"AR House District 87","rep":"DeAnn Vaught","w":0.999}],"ss":[{"d":"AR Senate District 4","rep":"Jimmy Hickey","w":0.999}]},"munis":[],"slug":"little-river"},"05083":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 46","rep":"Jon Eubanks","w":1.0}],"ss":[{"d":"AR Senate District 26","rep":"Brad Simon","w":0.797},{"d":"AR Senate District 5","rep":"Terry Rice","w":0.203}]},"munis":[],"slug":"logan"},"05085":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 60","rep":"Roger Lynch","w":0.819},{"d":"AR House District 59","rep":"Jim Wooten","w":0.094},{"d":"AR House District 68","rep":"Brian Evans","w":0.064},{"d":"AR House District 57","rep":"Cameron Cooper","w":0.022}],"ss":[{"d":"AR Senate District 11","rep":"Ricky Hill","w":0.436},{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.292},{"d":"AR Senate District 10","rep":"Ron Caldwell","w":0.272}]},"munis":[{"m":"Cabot","p":[{"n":"Ken Kincade","r":"Mayor, Cabot, AR"}]}],"slug":"lonoke"},"05087":{"county":[],"districts":{"cd":[{"d":"AR-03","rep":"Steve Womack","w":1.0}],"sh":[{"d":"AR House District 26","rep":"James Eaton","w":1.0}],"ss":[{"d":"AR Senate District 28","rep":"Bryan King","w":1.0}]},"munis":[],"slug":"madison"},"05089":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 4","rep":"Jason Nazarenko","w":1.0}],"ss":[{"d":"AR Senate District 23","rep":"Scott Flippo","w":1.0}]},"munis":[],"slug":"marion"},"05091":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 99","rep":"Lane Jean","w":0.735},{"d":"AR House District 88","rep":"Dolly Henley","w":0.181},{"d":"AR House District 100","rep":"Carol Dalby","w":0.083}],"ss":[{"d":"AR Senate District 4","rep":"Jimmy Hickey","w":1.0}]},"munis":[],"slug":"miller"},"05093":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 33","rep":"Jon Milligan","w":0.533},{"d":"AR House District 34","rep":"Joey Carr","w":0.466}],"ss":[{"d":"AR Senate District 19","rep":"Dave Wallace","w":0.999}]},"munis":[],"slug":"mississippi"},"05095":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 62","rep":"Mark McElroy","w":0.559},{"d":"AR House District 61","rep":"Jeremiah Moore","w":0.441}],"ss":[{"d":"AR Senate District 10","rep":"Ron Caldwell","w":1.0}]},"munis":[],"slug":"monroe"},"05097":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 86","rep":"John Maddox","w":0.999}],"ss":[{"d":"AR Senate District 5","rep":"Terry Rice","w":1.0}]},"munis":[],"slug":"montgomery"},"05099":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 89","rep":"Justin Gonzales","w":0.791},{"d":"AR House District 98","rep":"Wade Andrews","w":0.209}],"ss":[{"d":"AR Senate District 3","rep":"Steve Crowell","w":1.0}]},"munis":[],"slug":"nevada"},"05101":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":0.999}],"sh":[{"d":"AR House District 27","rep":"Steven Walker","w":1.0}],"ss":[{"d":"AR Senate District 28","rep":"Bryan King","w":0.77},{"d":"AR Senate District 24","rep":"Missy Irvin","w":0.23}]},"munis":[],"slug":"newton"},"05103":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 98","rep":"Wade Andrews","w":0.71},{"d":"AR House District 96","rep":"Sonia Barker","w":0.29}],"ss":[{"d":"AR Senate District 2","rep":"Matt Stone","w":1.0}]},"munis":[],"slug":"ouachita"},"05105":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":0.999}],"sh":[{"d":"AR House District 54","rep":"Mary Bentley","w":1.0}],"ss":[{"d":"AR Senate District 5","rep":"Terry Rice","w":1.0}]},"munis":[],"slug":"perry"},"05107":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.998}],"sh":[{"d":"AR House District 62","rep":"Mark McElroy","w":1.0}],"ss":[{"d":"AR Senate District 9","rep":"Reginald Murdock","w":0.999}]},"munis":[],"slug":"phillips"},"05109":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 89","rep":"Justin Gonzales","w":1.0}],"ss":[{"d":"AR Senate District 3","rep":"Steve Crowell","w":0.519},{"d":"AR Senate District 5","rep":"Terry Rice","w":0.48}]},"munis":[],"slug":"pike"},"05111":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 37","rep":"Steve Hollowell","w":0.407},{"d":"AR House District 38","rep":"Dwight Tosh","w":0.402},{"d":"AR House District 36","rep":"Johnny Rye","w":0.191}],"ss":[{"d":"AR Senate District 19","rep":"Dave Wallace","w":0.78},{"d":"AR Senate District 10","rep":"Ron Caldwell","w":0.22}]},"munis":[],"slug":"poinsett"},"05113":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 86","rep":"John Maddox","w":1.0}],"ss":[{"d":"AR Senate District 5","rep":"Terry Rice","w":1.0}]},"munis":[],"slug":"polk"},"05115":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 45","rep":"Aaron Pilkington","w":0.15},{"d":"AR House District 53","rep":"Matt Duffield","w":0.06},{"d":"AR House District 54","rep":"Mary Bentley","w":0.01}],"ss":[{"d":"AR Senate District 25","rep":"Breanne Davis","w":0.99},{"d":"AR Senate District 5","rep":"Terry Rice","w":0.01}]},"munis":[],"slug":"pope"},"05117":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.999}],"sh":[{"d":"AR House District 60","rep":"Roger Lynch","w":0.67},{"d":"AR House District 61","rep":"Jeremiah Moore","w":0.33}],"ss":[{"d":"AR Senate District 10","rep":"Ron Caldwell","w":1.0}]},"munis":[],"slug":"prairie"},"05119":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":0.696},{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.16},{"d":"AR-04","rep":"Bruce Westerman","w":0.144}],"sh":[{"d":"AR House District 78","rep":"Keith Brooks","w":0.228},{"d":"AR House District 66","rep":"Mark Perry","w":0.188},{"d":"AR House District 80","rep":"Denise Ennett","w":0.176},{"d":"AR House District 69","rep":"David Ray","w":0.12},{"d":"AR House District 70","rep":"Alex Holladay","w":0.061},{"d":"AR House District 71","rep":"Brandon Achor","w":0.042},{"d":"AR House District 73","rep":"Andrew Collins","w":0.035},{"d":"AR House District 72","rep":"Tracy Steele","w":0.028},{"d":"AR House District 77","rep":"Fred Allen","w":0.028},{"d":"AR House District 79","rep":"Tara Shephard","w":0.025},{"d":"AR House District 67","rep":"Karilyn Brown","w":0.024},{"d":"AR House District 75","rep":"Ashley Hudson","w":0.02},{"d":"AR House District 76","rep":"Joy Springer","w":0.015},{"d":"AR House District 74","rep":"Tippi McCullough","w":0.012}],"ss":[{"d":"AR Senate District 12","rep":"Jamie Scott","w":0.251},{"d":"AR Senate District 17","rep":"Mark Johnson","w":0.209},{"d":"AR Senate District 8","rep":"Stephanie Flowers","w":0.142},{"d":"AR Senate District 13","rep":"Jane English","w":0.142},{"d":"AR Senate District 11","rep":"Ricky Hill","w":0.102},{"d":"AR Senate District 15","rep":"Fred Love","w":0.071},{"d":"AR Senate District 14","rep":"Clarke Tucker","w":0.048},{"d":"AR Senate District 16","rep":"Kim Hammer","w":0.035}]},"munis":[{"m":"Little Rock","p":[{"n":"Frank Scott Jr.","r":"Mayor, Little Rock, AR"}]}],"slug":"pulaski"},"05121":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 1","rep":"Jeremy Wooldridge","w":0.59},{"d":"AR House District 2","rep":"Trey Steimel","w":0.41}],"ss":[{"d":"AR Senate District 21","rep":"Blake Johnson","w":1.0}]},"munis":[],"slug":"randolph"},"05123":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 63","rep":"Lincoln Barnett","w":0.475},{"d":"AR House District 37","rep":"Steve Hollowell","w":0.463},{"d":"AR House District 62","rep":"Mark McElroy","w":0.063}],"ss":[{"d":"AR Senate District 10","rep":"Ron Caldwell","w":0.556},{"d":"AR Senate District 9","rep":"Reginald Murdock","w":0.444}]},"munis":[{"m":"Hughes","p":[{"n":"Shelby C. Pulliam","r":"Mayor, Hughes, AR"}]}],"slug":"st-francis"},"05125":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":0.999}],"sh":[{"d":"AR House District 54","rep":"Mary Bentley","w":0.408},{"d":"AR House District 83","rep":"Paul Childress","w":0.182},{"d":"AR House District 92","rep":"Julie Mayberry","w":0.115},{"d":"AR House District 29","rep":"Rick McClure","w":0.086},{"d":"AR House District 78","rep":"Keith Brooks","w":0.08},{"d":"AR House District 82","rep":"Tony Furman","w":0.075},{"d":"AR House District 81","rep":"R.J. Hawk","w":0.054}],"ss":[{"d":"AR Senate District 7","rep":"Alan Clark","w":0.481},{"d":"AR Senate District 6","rep":"Matt McKee","w":0.342},{"d":"AR Senate District 16","rep":"Kim Hammer","w":0.177}]},"munis":[{"m":"Benton","p":[{"n":"Tom Farmer","r":"Mayor, Benton, AR"}]}],"slug":"saline"},"05127":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 52","rep":"Marcus Richmond","w":1.0}],"ss":[{"d":"AR Senate District 5","rep":"Terry Rice","w":1.0}]},"munis":[],"slug":"scott"},"05129":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.999}],"sh":[{"d":"AR House District 27","rep":"Steven Walker","w":1.0}],"ss":[{"d":"AR Senate District 24","rep":"Missy Irvin","w":1.0}]},"munis":[],"slug":"searcy"},"05131":{"county":[],"districts":{"cd":[{"d":"AR-03","rep":"Steve Womack","w":0.6},{"d":"AR-04","rep":"Bruce Westerman","w":0.4}],"sh":[{"d":"AR House District 47","rep":"Lee Johnson","w":0.584},{"d":"AR House District 52","rep":"Marcus Richmond","w":0.225},{"d":"AR House District 51","rep":"Cindy Crawford","w":0.069},{"d":"AR House District 46","rep":"Jon Eubanks","w":0.055},{"d":"AR House District 50","rep":"Zack Gramlich","w":0.029},{"d":"AR House District 49","rep":"Jay Richardson","w":0.027},{"d":"AR House District 48","rep":"Ryan Rose","w":0.011}],"ss":[{"d":"AR Senate District 5","rep":"Terry Rice","w":0.466},{"d":"AR Senate District 26","rep":"Brad Simon","w":0.41},{"d":"AR Senate District 27","rep":"Justin Boyd","w":0.124}]},"munis":[{"m":"Fort Smith","p":[{"n":"George McGill","r":"Mayor, Fort Smith, AR"}]}],"slug":"sebastian"},"05133":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 87","rep":"DeAnn Vaught","w":0.999}],"ss":[{"d":"AR Senate District 4","rep":"Jimmy Hickey","w":1.0}]},"munis":[{"m":"De Queen","p":[{"n":"Jeff Brown","r":"Mayor, De Queen, AR"}]}],"slug":"sevier"},"05135":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 28","rep":"Bart Schulz","w":0.655},{"d":"AR House District 2","rep":"Trey Steimel","w":0.344}],"ss":[{"d":"AR Senate District 22","rep":"John Payton","w":1.0}]},"munis":[],"slug":"sharp"},"05137":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":1.0}],"sh":[{"d":"AR House District 41","rep":"Alyssa Brown","w":0.472},{"d":"AR House District 27","rep":"Steven Walker","w":0.289},{"d":"AR House District 28","rep":"Bart Schulz","w":0.238}],"ss":[{"d":"AR Senate District 24","rep":"Missy Irvin","w":1.0}]},"munis":[],"slug":"stone"},"05139":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 97","rep":"Matthew Shepherd","w":0.587},{"d":"AR House District 96","rep":"Sonia Barker","w":0.413}],"ss":[{"d":"AR Senate District 2","rep":"Matt Stone","w":1.0}]},"munis":[],"slug":"union"},"05141":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":1.0}],"sh":[{"d":"AR House District 43","rep":"Rick Beck","w":0.545},{"d":"AR House District 42","rep":"Stephen Meeks","w":0.248}],"ss":[{"d":"AR Senate District 24","rep":"Missy Irvin","w":1.0}]},"munis":[],"slug":"van-buren"},"05143":{"county":[],"districts":{"cd":[{"d":"AR-03","rep":"Steve Womack","w":1.0}],"sh":[{"d":"AR House District 25","rep":"Chad Puryear","w":0.362},{"d":"AR House District 23","rep":"Kendra Moore","w":0.302},{"d":"AR House District 24","rep":"Brad Hall","w":0.15},{"d":"AR House District 18","rep":"Robin Lundstrum","w":0.062},{"d":"AR House District 22","rep":"David Whitaker","w":0.034},{"d":"AR House District 20","rep":"Denise Garner","w":0.031},{"d":"AR House District 19","rep":"Steve Unger","w":0.022},{"d":"AR House District 9","rep":"Diana Gonzales Worthen","w":0.02},{"d":"AR House District 21","rep":"Nicole Clowney","w":0.013}],"ss":[{"d":"AR Senate District 29","rep":"Jim Petty","w":0.495},{"d":"AR Senate District 35","rep":"Tyler Dees","w":0.318},{"d":"AR Senate District 31","rep":"Clint Penzo","w":0.071},{"d":"AR Senate District 32","rep":"Josh Bryant","w":0.062},{"d":"AR Senate District 30","rep":"Greg Leding","w":0.054}]},"munis":[{"m":"Fayetteville","p":[{"n":"Lioneld Jordan","r":"Mayor, Fayetteville, AR"}]}],"slug":"washington"},"05145":{"county":[],"districts":{"cd":[{"d":"AR-02","rep":"J. French Hill","w":0.996}],"sh":[{"d":"AR House District 57","rep":"Cameron Cooper","w":0.288},{"d":"AR House District 39","rep":"Wayne Long","w":0.269},{"d":"AR House District 59","rep":"Jim Wooten","w":0.222},{"d":"AR House District 40","rep":"Shad Pearce","w":0.142},{"d":"AR House District 58","rep":"Les Eaves","w":0.078}],"ss":[{"d":"AR Senate District 18","rep":"Jonathan Dismang","w":1.0}]},"munis":[],"slug":"white"},"05147":{"county":[],"districts":{"cd":[{"d":"AR-01","rep":"Eric A. \"Rick\" Crawford","w":0.995}],"sh":[{"d":"AR House District 61","rep":"Jeremiah Moore","w":1.0}],"ss":[{"d":"AR Senate District 10","rep":"Ron Caldwell","w":1.0}]},"munis":[],"slug":"woodruff"},"05149":{"county":[],"districts":{"cd":[{"d":"AR-04","rep":"Bruce Westerman","w":1.0}],"sh":[{"d":"AR House District 52","rep":"Marcus Richmond","w":0.791},{"d":"AR House District 54","rep":"Mary Bentley","w":0.209}],"ss":[{"d":"AR Senate District 5","rep":"Terry Rice","w":0.994},{"d":"AR Senate District 25","rep":"Breanne Davis","w":0.006}]},"munis":[],"slug":"yell"},"06001":{"county":[],"districts":{"cd":[{"d":"CA-14","rep":"Vacant","w":0.715},{"d":"CA-12","rep":"Lateefah Simon","w":0.117},{"d":"CA-17","rep":"Ro Khanna","w":0.066},{"d":"CA-10","rep":"Mark DeSaulnier","w":0.014}],"sh":[{"d":"CA House District 16","rep":"Rebecca Bauer-Kahan","w":0.476},{"d":"CA House District 20","rep":"Liz Ortega","w":0.169},{"d":"CA House District 24","rep":"Alex Lee","w":0.149},{"d":"CA House District 18","rep":"Mia Bonta","w":0.09},{"d":"CA House District 14","rep":"Buffy Wicks","w":0.03}],"ss":[{"d":"CA Senate District 5","rep":"Jerry McNerney","w":0.51},{"d":"CA Senate District 10","rep":"Aisha Wahab","w":0.209},{"d":"CA Senate District 7","rep":"Jesse Arreguín","w":0.105},{"d":"CA Senate District 9","rep":"Tim Grayson","w":0.09}]},"munis":[{"m":"Berkeley","p":[{"n":"Adena Ishii","r":"Mayor, Berkeley, CA"}]},{"m":"Fremont","p":[{"n":"Lily Mei","r":"Mayor, Fremont, CA"}]},{"m":"Oakland","p":[{"n":"Sheng Thao","r":"Mayor, Oakland, CA"}]}],"slug":"alameda"},"06003":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.999}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"alpine"},"06005":{"county":[],"districts":{"cd":[{"d":"CA-05","rep":"Tom McClintock","w":0.997}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":0.792},{"d":"CA House District 9","rep":"Heath Flora","w":0.207}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"amador"},"06007":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.998}],"sh":[{"d":"CA House District 3","rep":"James Gallagher","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[{"m":"Chico","p":[{"n":"Kasey Reynolds","r":"Mayor, Chico, CA"}]},{"m":"Oroville","p":[{"n":"Chuck Reynolds","r":"Mayor, Oroville, CA"}]}],"slug":"butte"},"06009":{"county":[],"districts":{"cd":[{"d":"CA-05","rep":"Tom McClintock","w":1.0}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":0.813},{"d":"CA House District 9","rep":"Heath Flora","w":0.187}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"calaveras"},"06011":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.999}],"sh":[{"d":"CA House District 4","rep":"Cecilia Aguiar-Curry","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"colusa"},"06013":{"county":[],"districts":{"cd":[{"d":"CA-10","rep":"Mark DeSaulnier","w":0.682},{"d":"CA-08","rep":"John Garamendi","w":0.213},{"d":"CA-09","rep":"Josh Harder","w":0.049}],"sh":[{"d":"CA House District 15","rep":"Anamarie Avila Farias","w":0.431},{"d":"CA House District 16","rep":"Rebecca Bauer-Kahan","w":0.29},{"d":"CA House District 11","rep":"Lori Wilson","w":0.134},{"d":"CA House District 14","rep":"Buffy Wicks","w":0.09}],"ss":[{"d":"CA Senate District 9","rep":"Tim Grayson","w":0.682},{"d":"CA Senate District 3","rep":"Christopher Cabaldon","w":0.181},{"d":"CA Senate District 7","rep":"Jesse Arreguín","w":0.083}]},"munis":[{"m":"Antioch","p":[{"n":"Ron Bernal","r":"Mayor, Antioch, CA"}]},{"m":"Brentwood","p":[{"n":"Joel Bryant","r":"Mayor, Brentwood, CA"}]},{"m":"Concord","p":[{"n":"Laura Hoffmeister","r":"Mayor, Concord, CA"}]},{"m":"Martinez","p":[{"n":"Rob Schroder","r":"Mayor, Martinez, CA"}]},{"m":"Oakley","p":[{"n":"Randy Pope","r":"Mayor, Oakley, CA"}]},{"m":"Richmond","p":[{"n":"Eduardo Martinez","r":"Mayor, Richmond, CA"}]},{"m":"San Pablo","p":[{"n":"Rita Xavier","r":"Mayor, San Pablo, CA"}]}],"slug":"contra-costa"},"06015":{"county":[],"districts":{"cd":[{"d":"CA-02","rep":"Jared Huffman","w":0.823}],"sh":[{"d":"CA House District 2","rep":"Chris Rogers","w":0.825}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":0.825}]},"munis":[],"slug":"del-norte"},"06017":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.762},{"d":"CA-05","rep":"Tom McClintock","w":0.238}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":0.741},{"d":"CA House District 5","rep":"Joe Patterson","w":0.259}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"el-dorado"},"06019":{"county":[],"districts":{"cd":[{"d":"CA-13","rep":"Adam Gray","w":0.433},{"d":"CA-05","rep":"Tom McClintock","w":0.361},{"d":"CA-20","rep":"Vince Fong","w":0.128},{"d":"CA-21","rep":"Jim Costa","w":0.076}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":0.484},{"d":"CA House District 27","rep":"Esmeralda Soria","w":0.412},{"d":"CA House District 31","rep":"Joaquin Arambula","w":0.096},{"d":"CA House District 33","rep":"Ali Macedo","w":0.008}],"ss":[{"d":"CA Senate District 14","rep":"Anna Caballero","w":0.509},{"d":"CA Senate District 12","rep":"Shannon Grove","w":0.485},{"d":"CA Senate District 16","rep":"Melissa Hurtado","w":0.006}]},"munis":[{"m":"Clovis","p":[{"n":"Jose Flores","r":"Mayor, Clovis, CA"}]},{"m":"Fresno","p":[{"n":"Jerry Dyer","r":"Mayor, Fresno, CA"}]}],"slug":"fresno"},"06021":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":1.0}],"sh":[{"d":"CA House District 3","rep":"James Gallagher","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"glenn"},"06023":{"county":[],"districts":{"cd":[{"d":"CA-02","rep":"Jared Huffman","w":0.891}],"sh":[{"d":"CA House District 2","rep":"Chris Rogers","w":0.891}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":0.891}]},"munis":[],"slug":"humboldt"},"06025":{"county":[],"districts":{"cd":[{"d":"CA-25","rep":"Raul Ruiz","w":0.999}],"sh":[{"d":"CA House District 36","rep":"Jeff Gonzalez","w":1.0}],"ss":[{"d":"CA Senate District 18","rep":"Steve Padilla","w":1.0}]},"munis":[{"m":"El Centro","p":[{"n":"Tomas Olivia","r":"Mayor, El Centro, CA"}]},{"m":"Imperial","p":[{"n":"Geoffrey Dale","r":"Mayor, Imperial, CA"}]}],"slug":"imperial"},"06027":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.999}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":1.0}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"inyo"},"06029":{"county":[],"districts":{"cd":[{"d":"CA-20","rep":"Vince Fong","w":0.647},{"d":"CA-22","rep":"David G. Valadao","w":0.269},{"d":"CA-23","rep":"Jay Obernolte","w":0.084}],"sh":[{"d":"CA House District 32","rep":"Stan Ellis","w":0.596},{"d":"CA House District 35","rep":"Jasmeet Bains","w":0.232},{"d":"CA House District 34","rep":"Tom Lackey","w":0.172}],"ss":[{"d":"CA Senate District 12","rep":"Shannon Grove","w":0.799},{"d":"CA Senate District 16","rep":"Melissa Hurtado","w":0.201}]},"munis":[{"m":"Arvin","p":[{"n":"Olivia Calderon","r":"Mayor, Arvin, CA"}]},{"m":"Bakersfield","p":[{"n":"Karen Goh","r":"Mayor, Bakersfield, CA"}]}],"slug":"kern"},"06031":{"county":[],"districts":{"cd":[{"d":"CA-22","rep":"David G. Valadao","w":0.827},{"d":"CA-20","rep":"Vince Fong","w":0.172}],"sh":[{"d":"CA House District 33","rep":"Ali Macedo","w":1.0}],"ss":[{"d":"CA Senate District 16","rep":"Melissa Hurtado","w":1.0}]},"munis":[],"slug":"kings"},"06033":{"county":[],"districts":{"cd":[{"d":"CA-04","rep":"Mike Thompson","w":0.993}],"sh":[{"d":"CA House District 4","rep":"Cecilia Aguiar-Curry","w":1.0}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":1.0}]},"munis":[],"slug":"lake"},"06035":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.999}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"lassen"},"06037":{"county":[],"districts":{"cd":[{"d":"CA-27","rep":"George Whitesides","w":0.323},{"d":"CA-28","rep":"Judy Chu","w":0.124},{"d":"CA-23","rep":"Jay Obernolte","w":0.078},{"d":"CA-32","rep":"Brad Sherman","w":0.062},{"d":"CA-42","rep":"Robert Garcia","w":0.046},{"d":"CA-31","rep":"Gilbert Ray Cisneros, Jr.","w":0.044},{"d":"CA-30","rep":"Laura Friedman","w":0.038},{"d":"CA-38","rep":"Linda T. Sánchez","w":0.03},{"d":"CA-29","rep":"Luz M. Rivas","w":0.027},{"d":"CA-36","rep":"Ted Lieu","w":0.021},{"d":"CA-44","rep":"Nanette Diaz Barragán","w":0.02},{"d":"CA-43","rep":"Maxine Waters","w":0.015},{"d":"CA-37","rep":"Sydney Kamlager-Dove","w":0.011},{"d":"CA-34","rep":"Jimmy Gomez","w":0.011},{"d":"CA-26","rep":"Julia Brownley","w":0.006}],"sh":[{"d":"CA House District 34","rep":"Tom Lackey","w":0.213},{"d":"CA House District 39","rep":"Juan Carrillo","w":0.146},{"d":"CA House District 41","rep":"John Harabedian","w":0.124},{"d":"CA House District 40","rep":"Pilar Schiavo","w":0.082},{"d":"CA House District 42","rep":"Jacqui Irwin","w":0.045},{"d":"CA House District 69","rep":"Josh Lowenthal","w":0.041},{"d":"CA House District 56","rep":"Lisa Calderon","w":0.025},{"d":"CA House District 44","rep":"Nick Schultz","w":0.021},{"d":"CA House District 48","rep":"Blanca Rubio","w":0.018},{"d":"CA House District 66","rep":"Al Muratsuchi","w":0.016},{"d":"CA House District 46","rep":"Jesse Gabriel","w":0.016},{"d":"CA House District 65","rep":"Mike Gipson","w":0.013},{"d":"CA House District 49","rep":"Mike Fong","w":0.012},{"d":"CA House District 51","rep":"Rick Zbur","w":0.012},{"d":"CA House District 43","rep":"Celeste Rodriguez","w":0.011},{"d":"CA House District 64","rep":"Blanca Pacheco","w":0.011},{"d":"CA House District 61","rep":"Tina McKinnor","w":0.01},{"d":"CA House District 52","rep":"Jessica Caloza","w":0.009},{"d":"CA House District 54","rep":"Mark González","w":0.009},{"d":"CA House District 55","rep":"Isaac Bryan","w":0.008},{"d":"CA House District 62","rep":"José Solache","w":0.008},{"d":"CA House District 57","rep":"Sade Elhawary","w":0.006},{"d":"CA House District 53","rep":"Michelle Rodriguez","w":0.005}],"ss":[{"d":"CA Senate District 23","rep":"Suzette Valladares","w":0.41},{"d":"CA Senate District 25","rep":"Sasha Pérez","w":0.124},{"d":"CA Senate District 24","rep":"Ben Allen","w":0.069},{"d":"CA Senate District 33","rep":"Lena Gonzalez","w":0.05},{"d":"CA Senate District 20","rep":"Caroline Menjivar","w":0.047},{"d":"CA Senate District 22","rep":"Susan Rubio","w":0.042},{"d":"CA Senate District 30","rep":"Bob Archuleta","w":0.036},{"d":"CA Senate District 27","rep":"Henry Stern","w":0.026},{"d":"CA Senate District 35","rep":"Laura Richardson","w":0.024},{"d":"CA Senate District 26","rep":"María Elena Durazo","w":0.017},{"d":"CA Senate District 28","rep":"Lola Smallwood-Cuevas","w":0.015}]},"munis":[{"m":"Alhambra","p":[{"n":"Jeffrey Koji Maloney","r":"Mayor, Alhambra, CA"}]},{"m":"Beverly Hills","p":[{"n":"Bob Wunderlich","r":"Mayor, Beverly Hills, CA"}]},{"m":"Carson","p":[{"n":"Lula Davis-Holmes","r":"Mayor, Carson, CA"}]},{"m":"Compton","p":[{"n":"Aja Brown","r":"Mayor, Compton, CA"}]},{"m":"Downey","p":[{"n":"Claudia Frometa","r":"Mayor, Downey, CA"}]},{"m":"El Monte","p":[{"n":"Jessica Ancona","r":"Mayor, El Monte, CA"}]},{"m":"Glendale","p":[{"n":"Zareh Sinanyan","r":"Mayor, Glendale, CA"}]},{"m":"Glendora","p":[{"n":"Gary Boyer","r":"Mayor, Glendora, CA"}]},{"m":"Hawthorne","p":[{"n":"Alex Vargas","r":"Mayor, Hawthorne, CA"}]},{"m":"Hermosa Beach","p":[{"n":"Michael Detoy","r":"Mayor, Hermosa Beach, CA"}]},{"m":"Industry","p":[{"n":"Cory C. Moss","r":"Mayor, City of Industry, CA"}]},{"m":"Inglewood","p":[{"n":"James T. Butts Jr.","r":"Mayor, Inglewood, CA"}]},{"m":"Lancaster","p":[{"n":"R. Rex Parris","r":"Mayor, Lancaster, CA"}]},{"m":"Long Beach","p":[{"n":"Robert Garcia","r":"Mayor, Long Beach, CA"}]},{"m":"Los Angeles","p":[{"n":"Karen Bass","r":"Mayor, Los Angeles, CA"}]},{"m":"Norwalk","p":[{"n":"Rick Ramirez","r":"Mayor, Norwalk, CA"}]},{"m":"Palmdale","p":[{"n":"Steve Hofbauer","r":"Mayor, Palmdale, CA"}]},{"m":"Pasadena","p":[{"n":"Victor Gordo","r":"Mayor, Pasadena, CA"}]},{"m":"Pomona","p":[{"n":"Tim Sandoval","r":"Mayor, Pomona, CA"}]},{"m":"Rolling Hills Estates","p":[{"n":"Debby Stegura","r":"Mayor, Rolling Hills Estates, CA"}]},{"m":"Santa Clarita","p":[{"n":"Jason Gibbs","r":"Mayor, Santa Clarita, CA"}]},{"m":"Santa Monica","p":[{"n":"Gleam Davis","r":"Mayor, Santa Monica, CA"}]},{"m":"South Gate","p":[{"n":"Maria del Pilar Avalos","r":"Mayor, South Gate, CA"}]},{"m":"Torrance","p":[{"n":"George Chen","r":"Mayor, Torrance, CA"}]},{"m":"West Covina","p":[{"n":"Dario Castellanos","r":"Mayor, West Covina, CA"}]},{"m":"West Hollywood","p":[{"n":"Q6238541","r":"Mayor, West Hollywood, CA"}]}],"slug":"los-angeles"},"06039":{"county":[],"districts":{"cd":[{"d":"CA-05","rep":"Tom McClintock","w":0.686},{"d":"CA-13","rep":"Adam Gray","w":0.313}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":0.775},{"d":"CA House District 27","rep":"Esmeralda Soria","w":0.225}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":0.738},{"d":"CA Senate District 14","rep":"Anna Caballero","w":0.262}]},"munis":[],"slug":"madera"},"06041":{"county":[],"districts":{"cd":[{"d":"CA-02","rep":"Jared Huffman","w":0.656}],"sh":[{"d":"CA House District 12","rep":"Damon Connolly","w":0.656}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":0.656}]},"munis":[{"m":"Mill Valley","p":[{"n":"John McCauley","r":"Mayor, Mill Valley, CA"}]}],"slug":"marin"},"06043":{"county":[],"districts":{"cd":[{"d":"CA-05","rep":"Tom McClintock","w":1.0}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":1.0}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"mariposa"},"06045":{"county":[],"districts":{"cd":[{"d":"CA-02","rep":"Jared Huffman","w":0.905}],"sh":[{"d":"CA House District 2","rep":"Chris Rogers","w":0.906}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":0.906}]},"munis":[],"slug":"mendocino"},"06047":{"county":[],"districts":{"cd":[{"d":"CA-13","rep":"Adam Gray","w":0.998}],"sh":[{"d":"CA House District 27","rep":"Esmeralda Soria","w":0.816},{"d":"CA House District 22","rep":"Juan Alanis","w":0.184}],"ss":[{"d":"CA Senate District 14","rep":"Anna Caballero","w":0.835},{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":0.165}]},"munis":[],"slug":"merced"},"06049":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":1.0}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"modoc"},"06051":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.999}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":1.0}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"mono"},"06053":{"county":[],"districts":{"cd":[{"d":"CA-18","rep":"Zoe Lofgren","w":0.641},{"d":"CA-19","rep":"Jimmy Panetta","w":0.237}],"sh":[{"d":"CA House District 30","rep":"Dawn Addis","w":0.541},{"d":"CA House District 29","rep":"Robert Rivas","w":0.337}],"ss":[{"d":"CA Senate District 17","rep":"John Laird","w":0.878}]},"munis":[{"m":"Salinas","p":[{"n":"Kimbley Craig","r":"Mayor, Salinas, CA"}]}],"slug":"monterey"},"06055":{"county":[],"districts":{"cd":[{"d":"CA-04","rep":"Mike Thompson","w":0.999}],"sh":[{"d":"CA House District 4","rep":"Cecilia Aguiar-Curry","w":1.0}],"ss":[{"d":"CA Senate District 3","rep":"Christopher Cabaldon","w":1.0}]},"munis":[{"m":"St Helena","p":[{"n":"Paul Dohring","r":"Mayor, St. Helena, CA"}]}],"slug":"napa"},"06057":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":1.0}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":0.929},{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":0.071}]},"munis":[],"slug":"nevada"},"06059":{"county":[],"districts":{"cd":[{"d":"CA-40","rep":"Young Kim","w":0.364},{"d":"CA-47","rep":"Dave Min","w":0.184},{"d":"CA-49","rep":"Mike Levin","w":0.108},{"d":"CA-45","rep":"Derek Tran","w":0.098},{"d":"CA-46","rep":"J. Luis Correa","w":0.079},{"d":"CA-38","rep":"Linda T. Sánchez","w":0.009}],"sh":[{"d":"CA House District 71","rep":"Kate Sanchez","w":0.214},{"d":"CA House District 59","rep":"Phillip Chen","w":0.162},{"d":"CA House District 72","rep":"Diane Dixon","w":0.128},{"d":"CA House District 73","rep":"Cottie Petrie-Norris","w":0.114},{"d":"CA House District 74","rep":"Laurie Davies","w":0.057},{"d":"CA House District 70","rep":"Tri Ta","w":0.057},{"d":"CA House District 68","rep":"Avelino Valencia","w":0.053},{"d":"CA House District 67","rep":"Sharon Quirk-Silva","w":0.048},{"d":"CA House District 64","rep":"Blanca Pacheco","w":0.008}],"ss":[{"d":"CA Senate District 37","rep":"Steve Choi","w":0.398},{"d":"CA Senate District 36","rep":"Tony Strickland","w":0.185},{"d":"CA Senate District 38","rep":"Catherine Blakespear","w":0.114},{"d":"CA Senate District 34","rep":"Tom Umberg","w":0.095},{"d":"CA Senate District 32","rep":"Kelly Seyarto","w":0.032},{"d":"CA Senate District 30","rep":"Bob Archuleta","w":0.017}]},"munis":[{"m":"Anaheim","p":[{"n":"Ashleigh Aitken","r":"Mayor, Anaheim, CA"}]},{"m":"Buena Park","p":[{"n":"Joyce Ahn","r":"Mayor, Buena Park, CA"}]},{"m":"Costa Mesa","p":[{"n":"John Stephens","r":"Mayor, Costa Mesa, CA"}]},{"m":"Fullerton","p":[{"n":"Fred Jung","r":"Mayor, Fullerton, CA"}]},{"m":"Garden Grove","p":[{"n":"Steve Jones","r":"Mayor, Garden Grove, CA"}]},{"m":"Huntington Beach","p":[{"n":"Tony Strickland","r":"Mayor, Huntington Beach, CA"}]},{"m":"Irvine","p":[{"n":"Larry Agran","r":"Mayor, Irvine, CA"}]},{"m":"Orange","p":[{"n":"Dan Slater","r":"Mayor, Orange, CA"}]},{"m":"Santa Ana","p":[{"n":"Valerie Amezcua","r":"Mayor, Santa Ana, CA"}]}],"slug":"orange"},"06061":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":1.0}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":0.707},{"d":"CA House District 5","rep":"Joe Patterson","w":0.179},{"d":"CA House District 3","rep":"James Gallagher","w":0.114}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":0.453},{"d":"CA Senate District 1","rep":"Megan Dahle","w":0.291},{"d":"CA Senate District 6","rep":"Roger Niello","w":0.256}]},"munis":[],"slug":"placer"},"06063":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.998}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"plumas"},"06065":{"county":[],"districts":{"cd":[{"d":"CA-25","rep":"Raul Ruiz","w":0.722},{"d":"CA-41","rep":"Ken Calvert","w":0.184},{"d":"CA-48","rep":"Darrell Issa","w":0.052},{"d":"CA-39","rep":"Mark Takano","w":0.039}],"sh":[{"d":"CA House District 36","rep":"Jeff Gonzalez","w":0.535},{"d":"CA House District 47","rep":"Greg Wallis","w":0.307},{"d":"CA House District 63","rep":"Natasha Johnson","w":0.05},{"d":"CA House District 71","rep":"Kate Sanchez","w":0.047},{"d":"CA House District 60","rep":"Corey Jackson","w":0.042},{"d":"CA House District 58","rep":"Leticia Castillo","w":0.018}],"ss":[{"d":"CA Senate District 18","rep":"Steve Padilla","w":0.415},{"d":"CA Senate District 19","rep":"Rosilicie Ochoa Bogh","w":0.326},{"d":"CA Senate District 32","rep":"Kelly Seyarto","w":0.212},{"d":"CA Senate District 31","rep":"Sabrina Cervantes","w":0.046}]},"munis":[{"m":"Corona","p":[{"n":"Wes Speake","r":"Mayor, Corona, CA"}]},{"m":"Indio","p":[{"n":"Glenn Miller","r":"Mayor, Indio, CA"}]},{"m":"Jurupa Valley","p":[{"n":"Chris Barajas","r":"Mayor, Jurupa Valley, CA"}]},{"m":"Menifee","p":[{"n":"Bill Zimmerman","r":"Mayor, Menifee, CA"}]},{"m":"Moreno Valley","p":[{"n":"Yxstian Gutierrez","r":"Mayor, Moreno Valley, CA"}]},{"m":"Murrieta","p":[{"n":"Lisa DeForest","r":"Mayor, Murrieta, CA"}]},{"m":"Riverside","p":[{"n":"Patricia Lock Dawson","r":"Mayor, Riverside, CA"}]},{"m":"Temecula","p":[{"n":"Matt Rahn","r":"Mayor, Temecula, CA"}]}],"slug":"riverside"},"06067":{"county":[],"districts":{"cd":[{"d":"CA-07","rep":"Doris O. Matsui","w":0.653},{"d":"CA-06","rep":"Ami Bera","w":0.256},{"d":"CA-03","rep":"Kevin Kiley","w":0.088}],"sh":[{"d":"CA House District 9","rep":"Heath Flora","w":0.517},{"d":"CA House District 7","rep":"Joshua Hoover","w":0.163},{"d":"CA House District 6","rep":"Maggy Krell","w":0.151},{"d":"CA House District 10","rep":"Stephanie Nguyen","w":0.117},{"d":"CA House District 11","rep":"Lori Wilson","w":0.052}],"ss":[{"d":"CA Senate District 6","rep":"Roger Niello","w":0.557},{"d":"CA Senate District 8","rep":"Angelique Ashby","w":0.274},{"d":"CA Senate District 3","rep":"Christopher Cabaldon","w":0.168}]},"munis":[{"m":"Elk Grove","p":[{"n":"Bobbie Singh-Allen","r":"Mayor, Elk Grove, CA"}]},{"m":"Sacramento","p":[{"n":"Darrell Steinberg","r":"Mayor, Sacramento, CA"}]}],"slug":"sacramento"},"06069":{"county":[],"districts":{"cd":[{"d":"CA-18","rep":"Zoe Lofgren","w":0.999}],"sh":[{"d":"CA House District 29","rep":"Robert Rivas","w":1.0}],"ss":[{"d":"CA Senate District 17","rep":"John Laird","w":1.0}]},"munis":[],"slug":"san-benito"},"06071":{"county":[],"districts":{"cd":[{"d":"CA-23","rep":"Jay Obernolte","w":0.843},{"d":"CA-25","rep":"Raul Ruiz","w":0.129},{"d":"CA-28","rep":"Judy Chu","w":0.01},{"d":"CA-33","rep":"Pete Aguilar","w":0.009},{"d":"CA-35","rep":"Norma J. Torres","w":0.007}],"sh":[{"d":"CA House District 34","rep":"Tom Lackey","w":0.792},{"d":"CA House District 36","rep":"Jeff Gonzalez","w":0.129},{"d":"CA House District 47","rep":"Greg Wallis","w":0.025},{"d":"CA House District 39","rep":"Juan Carrillo","w":0.018},{"d":"CA House District 41","rep":"John Harabedian","w":0.016},{"d":"CA House District 45","rep":"James Ramos","w":0.007},{"d":"CA House District 50","rep":"Robert Garcia","w":0.006}],"ss":[{"d":"CA Senate District 19","rep":"Rosilicie Ochoa Bogh","w":0.816},{"d":"CA Senate District 18","rep":"Steve Padilla","w":0.129},{"d":"CA Senate District 23","rep":"Suzette Valladares","w":0.032},{"d":"CA Senate District 29","rep":"Eloise Reyes","w":0.012}]},"munis":[{"m":"Chino","p":[{"n":"Eunice Ulloa","r":"Mayor, Chino, CA"}]},{"m":"Chino Hills","p":[{"n":"Peter Rogers","r":"Mayor, Chino Hills, CA"}]},{"m":"Fontana","p":[{"n":"Acquanetta Warren","r":"Mayor, Fontana, CA"}]},{"m":"Hesperia","p":[{"n":"Brigit Bennington","r":"Mayor, Hesperia, CA"}]},{"m":"Ontario","p":[{"n":"Paul Leon","r":"Mayor, Ontario, CA"}]},{"m":"Rancho Cucamonga","p":[{"n":"L. Dennis Michael","r":"Mayor, Rancho Cucamonga, CA"}]},{"m":"Redlands","p":[{"n":"Paul Barich","r":"Mayor, Redlands, CA"}]},{"m":"Rialto","p":[{"n":"Deborah Robertson","r":"Mayor, Rialto, CA"}]},{"m":"San Bernardino","p":[{"n":"Helen Tran","r":"Mayor, San Bernardino, CA"}]},{"m":"Victorville","p":[{"n":"Debra Jones","r":"Mayor, Victorville, CA"}]}],"slug":"san-bernardino"},"06073":{"county":[],"districts":{"cd":[{"d":"CA-48","rep":"Darrell Issa","w":0.719},{"d":"CA-49","rep":"Mike Levin","w":0.088},{"d":"CA-50","rep":"Scott H. Peters","w":0.06},{"d":"CA-51","rep":"Sara Jacobs","w":0.042},{"d":"CA-52","rep":"Juan Vargas","w":0.032}],"sh":[{"d":"CA House District 75","rep":"Carl DeMaio","w":0.724},{"d":"CA House District 74","rep":"Laurie Davies","w":0.072},{"d":"CA House District 76","rep":"Darsh Patel","w":0.047},{"d":"CA House District 77","rep":"Tasha Boerner","w":0.033},{"d":"CA House District 78","rep":"Chris Ward","w":0.027},{"d":"CA House District 80","rep":"David Alvarez","w":0.024},{"d":"CA House District 79","rep":"LaShae Sharp-Collins","w":0.013}],"ss":[{"d":"CA Senate District 32","rep":"Kelly Seyarto","w":0.344},{"d":"CA Senate District 40","rep":"Brian Jones","w":0.282},{"d":"CA Senate District 18","rep":"Steve Padilla","w":0.169},{"d":"CA Senate District 38","rep":"Catherine Blakespear","w":0.103},{"d":"CA Senate District 39","rep":"Akilah Weber Pierson","w":0.043}]},"munis":[{"m":"Carlsbad","p":[{"n":"Matt Hall","r":"Mayor, Carlsbad, CA"}]},{"m":"Chula Vista","p":[{"n":"John McCann","r":"Mayor, Chula Vista, CA"}]},{"m":"El Cajon","p":[{"n":"Bill Wells","r":"Mayor, El Cajon, CA"}]},{"m":"Escondido","p":[{"n":"Q133980654","r":"Mayor, Escondido, CA"}]},{"m":"Lemon Grove","p":[{"n":"Q64492156","r":"Mayor, Lemon Grove, CA"}]},{"m":"Oceanside","p":[{"n":"Esther C. Sanchez","r":"Mayor, Oceanside, CA"}]},{"m":"San Diego","p":[{"n":"Todd Gloria","r":"Mayor, San Diego, CA"}]},{"m":"San Marcos","p":[{"n":"Rebecca Jones","r":"Mayor, San Marcos, CA"}]},{"m":"Vista","p":[{"n":"John Franklin","r":"Mayor, Vista, CA"}]}],"slug":"san-diego"},"06075":{"county":[],"districts":{"cd":[{"d":"CA-11","rep":"Nancy Pelosi","w":0.185},{"d":"CA-15","rep":"Kevin Mullin","w":0.023}],"sh":[{"d":"CA House District 17","rep":"Matt Haney","w":0.105},{"d":"CA House District 19","rep":"Catherine Stefani","w":0.099}],"ss":[{"d":"CA Senate District 11","rep":"Scott Wiener","w":0.204}]},"munis":[],"slug":"san-francisco"},"06077":{"county":[],"districts":{"cd":[{"d":"CA-09","rep":"Josh Harder","w":0.836},{"d":"CA-13","rep":"Adam Gray","w":0.16}],"sh":[{"d":"CA House District 9","rep":"Heath Flora","w":0.657},{"d":"CA House District 13","rep":"Rhodesia Ransom","w":0.343}],"ss":[{"d":"CA Senate District 5","rep":"Jerry McNerney","w":1.0}]},"munis":[],"slug":"san-joaquin"},"06079":{"county":[],"districts":{"cd":[{"d":"CA-24","rep":"Salud O. Carbajal","w":0.555},{"d":"CA-19","rep":"Jimmy Panetta","w":0.364}],"sh":[{"d":"CA House District 30","rep":"Dawn Addis","w":0.9},{"d":"CA House District 37","rep":"Gregg Hart","w":0.019}],"ss":[{"d":"CA Senate District 17","rep":"John Laird","w":0.541},{"d":"CA Senate District 21","rep":"Monique Limón","w":0.378}]},"munis":[{"m":"Arroyo Grande","p":[{"n":"Caren Ray Russom","r":"Mayor, Arroyo Grande, CA"}]},{"m":"Atascadero","p":[{"n":"Charles Bourbeau","r":"Mayor, Atascadero, CA"}]}],"slug":"san-luis-obispo"},"06081":{"county":[],"districts":{"cd":[{"d":"CA-16","rep":"Sam T. Liccardo","w":0.461},{"d":"CA-15","rep":"Kevin Mullin","w":0.156}],"sh":[{"d":"CA House District 23","rep":"Marc Berman","w":0.462},{"d":"CA House District 21","rep":"Diane Papan","w":0.132},{"d":"CA House District 19","rep":"Catherine Stefani","w":0.024}],"ss":[{"d":"CA Senate District 13","rep":"Josh Becker","w":0.594},{"d":"CA Senate District 11","rep":"Scott Wiener","w":0.024}]},"munis":[{"m":"Daly City","p":[{"n":"Rod Daus-Magbual","r":"Mayor, Daly City, CA"}]},{"m":"Menlo Park","p":[{"n":"Cecilia Taylor","r":"Mayor, Menlo Park, CA"}]},{"m":"Pacifica","p":[{"n":"Q105071623","r":"Mayor, Pacifica, CA"}]},{"m":"San Mateo","p":[{"n":"Rick Bonilla","r":"Mayor, San Mateo, CA"}]}],"slug":"san-mateo"},"06083":{"county":[],"districts":{"cd":[{"d":"CA-24","rep":"Salud O. Carbajal","w":0.727}],"sh":[{"d":"CA House District 37","rep":"Gregg Hart","w":0.727}],"ss":[{"d":"CA Senate District 21","rep":"Monique Limón","w":0.727}]},"munis":[{"m":"Guadalupe","p":[{"n":"Ariston Julian","r":"Mayor, Guadalupe, CA"}]},{"m":"Santa Barbara","p":[{"n":"Cathy Murillo","r":"Mayor, Santa Barbara, CA"}]}],"slug":"santa-barbara"},"06085":{"county":[],"districts":{"cd":[{"d":"CA-18","rep":"Zoe Lofgren","w":0.576},{"d":"CA-19","rep":"Jimmy Panetta","w":0.175},{"d":"CA-16","rep":"Sam T. Liccardo","w":0.146},{"d":"CA-17","rep":"Ro Khanna","w":0.098}],"sh":[{"d":"CA House District 25","rep":"Ash Kalra","w":0.538},{"d":"CA House District 28","rep":"Gail Pellerin","w":0.197},{"d":"CA House District 23","rep":"Marc Berman","w":0.095},{"d":"CA House District 29","rep":"Robert Rivas","w":0.069},{"d":"CA House District 26","rep":"Patrick Ahrens","w":0.063},{"d":"CA House District 24","rep":"Alex Lee","w":0.035}],"ss":[{"d":"CA Senate District 15","rep":"Dave Cortese","w":0.803},{"d":"CA Senate District 13","rep":"Josh Becker","w":0.112},{"d":"CA Senate District 10","rep":"Aisha Wahab","w":0.082}]},"munis":[{"m":"Los Altos","p":[{"n":"Sally Meadows","r":"Mayor, Los Altos, CA"}]},{"m":"Palo Alto","p":[{"n":"Adrian Fine","r":"Mayor, Palo Alto, CA"}]},{"m":"San Jose","p":[{"n":"Matt Mahan","r":"Mayor, San Jose, CA"}]},{"m":"Santa Clara","p":[{"n":"Lisa Gillmor","r":"Mayor, Santa Clara, CA"}]},{"m":"Sunnyvale","p":[{"n":"Larry Klein","r":"Mayor, Sunnyvale, CA"}]}],"slug":"santa-clara"},"06087":{"county":[],"districts":{"cd":[{"d":"CA-19","rep":"Jimmy Panetta","w":0.66},{"d":"CA-18","rep":"Zoe Lofgren","w":0.074}],"sh":[{"d":"CA House District 28","rep":"Gail Pellerin","w":0.532},{"d":"CA House District 29","rep":"Robert Rivas","w":0.117},{"d":"CA House District 30","rep":"Dawn Addis","w":0.086}],"ss":[{"d":"CA Senate District 17","rep":"John Laird","w":0.736}]},"munis":[],"slug":"santa-cruz"},"06089":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.999}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[{"m":"Anderson","p":[{"n":"Susie Baugh","r":"Mayor, Anderson, CA"}]},{"m":"Redding","p":[{"n":"Michael Dacquisto","r":"Mayor, Redding, CA"}]}],"slug":"shasta"},"06091":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.999}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"sierra"},"06093":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.999}],"sh":[{"d":"CA House District 1","rep":"Heather Hadwick","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"siskiyou"},"06095":{"county":[],"districts":{"cd":[{"d":"CA-04","rep":"Mike Thompson","w":0.54},{"d":"CA-08","rep":"John Garamendi","w":0.423},{"d":"CA-07","rep":"Doris O. Matsui","w":0.019}],"sh":[{"d":"CA House District 11","rep":"Lori Wilson","w":0.982}],"ss":[{"d":"CA Senate District 3","rep":"Christopher Cabaldon","w":0.982}]},"munis":[{"m":"Fairfield","p":[{"n":"Harry T. Price","r":"Mayor, Fairfield, CA"}]},{"m":"Vacaville","p":[{"n":"Ron Rowlett","r":"Mayor, Vacaville, CA"}]},{"m":"Vallejo","p":[{"n":"Robert H. McConnell","r":"Mayor, Vallejo, CA"}]}],"slug":"solano"},"06097":{"county":[],"districts":{"cd":[{"d":"CA-02","rep":"Jared Huffman","w":0.718},{"d":"CA-04","rep":"Mike Thompson","w":0.181}],"sh":[{"d":"CA House District 2","rep":"Chris Rogers","w":0.663},{"d":"CA House District 12","rep":"Damon Connolly","w":0.221},{"d":"CA House District 4","rep":"Cecilia Aguiar-Curry","w":0.015}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":0.806},{"d":"CA Senate District 3","rep":"Christopher Cabaldon","w":0.093}]},"munis":[{"m":"Healdsburg","p":[{"n":"Oswaldo Jimenez","r":"Mayor, Healdsburg, CA"}]},{"m":"Santa Rosa","p":[{"n":"Chris Rogers","r":"Mayor, Santa Rosa, CA"}]}],"slug":"sonoma"},"06099":{"county":[],"districts":{"cd":[{"d":"CA-13","rep":"Adam Gray","w":0.558},{"d":"CA-05","rep":"Tom McClintock","w":0.343},{"d":"CA-09","rep":"Josh Harder","w":0.098}],"sh":[{"d":"CA House District 22","rep":"Juan Alanis","w":0.604},{"d":"CA House District 9","rep":"Heath Flora","w":0.396}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[{"m":"Modesto","p":[{"n":"Sue Zwahlen","r":"Mayor, Modesto, CA"}]}],"slug":"stanislaus"},"06101":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.997}],"sh":[{"d":"CA House District 3","rep":"James Gallagher","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"sutter"},"06103":{"county":[],"districts":{"cd":[{"d":"CA-01","rep":"James Gallagher","w":0.999}],"sh":[{"d":"CA House District 3","rep":"James Gallagher","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"tehama"},"06105":{"county":[],"districts":{"cd":[{"d":"CA-02","rep":"Jared Huffman","w":0.998}],"sh":[{"d":"CA House District 2","rep":"Chris Rogers","w":1.0}],"ss":[{"d":"CA Senate District 2","rep":"Mike McGuire","w":1.0}]},"munis":[],"slug":"trinity"},"06107":{"county":[],"districts":{"cd":[{"d":"CA-20","rep":"Vince Fong","w":0.706},{"d":"CA-22","rep":"David G. Valadao","w":0.202},{"d":"CA-21","rep":"Jim Costa","w":0.091}],"sh":[{"d":"CA House District 32","rep":"Stan Ellis","w":0.742},{"d":"CA House District 33","rep":"Ali Macedo","w":0.258}],"ss":[{"d":"CA Senate District 12","rep":"Shannon Grove","w":0.748},{"d":"CA Senate District 16","rep":"Melissa Hurtado","w":0.252}]},"munis":[{"m":"Visalia","p":[{"n":"Brian Poochigian","r":"Mayor, Visalia, CA"}]}],"slug":"tulare"},"06109":{"county":[],"districts":{"cd":[{"d":"CA-05","rep":"Tom McClintock","w":0.998}],"sh":[{"d":"CA House District 8","rep":"David Tangipa","w":1.0}],"ss":[{"d":"CA Senate District 4","rep":"Marie Alvarado-Gil","w":1.0}]},"munis":[],"slug":"tuolumne"},"06111":{"county":[],"districts":{"cd":[{"d":"CA-26","rep":"Julia Brownley","w":0.769},{"d":"CA-24","rep":"Salud O. Carbajal","w":0.073}],"sh":[{"d":"CA House District 38","rep":"Steve Bennett","w":0.691},{"d":"CA House District 42","rep":"Jacqui Irwin","w":0.149}],"ss":[{"d":"CA Senate District 21","rep":"Monique Limón","w":0.757},{"d":"CA Senate District 27","rep":"Henry Stern","w":0.085}]},"munis":[{"m":"Oxnard","p":[{"n":"John C. Zaragoza","r":"Mayor, Oxnard, CA"}]},{"m":"Port Hueneme","p":[{"n":"Richard W. Rollins","r":"Mayor, Port Hueneme, CA"}]},{"m":"San Buenaventura Ventura","p":[{"n":"Joe Schroeder","r":"Mayor, Ventura, CA"}]},{"m":"Simi Valley","p":[{"n":"Keith Mashburn","r":"Mayor, Simi Valley, CA"}]},{"m":"Thousand Oaks","p":[{"n":"Bob Engler","r":"Mayor, Thousand Oaks, CA"}]}],"slug":"ventura"},"06113":{"county":[],"districts":{"cd":[{"d":"CA-04","rep":"Mike Thompson","w":0.959},{"d":"CA-07","rep":"Doris O. Matsui","w":0.038}],"sh":[{"d":"CA House District 4","rep":"Cecilia Aguiar-Curry","w":1.0}],"ss":[{"d":"CA Senate District 3","rep":"Christopher Cabaldon","w":1.0}]},"munis":[{"m":"Woodland","p":[{"n":"Mayra Vega","r":"Mayor, Woodland, CA"}]}],"slug":"yolo"},"06115":{"county":[],"districts":{"cd":[{"d":"CA-03","rep":"Kevin Kiley","w":0.688},{"d":"CA-01","rep":"James Gallagher","w":0.312}],"sh":[{"d":"CA House District 3","rep":"James Gallagher","w":1.0}],"ss":[{"d":"CA Senate District 1","rep":"Megan Dahle","w":1.0}]},"munis":[],"slug":"yuba"},"08001":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":0.71},{"d":"CO-08","rep":"Gabe Evans","w":0.21},{"d":"CO-06","rep":"Jason Crow","w":0.079}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":0.722},{"d":"CO House District 36","rep":"Michael Carter","w":0.077},{"d":"CO House District 32","rep":"Manny Rutinel","w":0.076},{"d":"CO House District 48","rep":"Carlos Barron","w":0.053},{"d":"CO House District 31","rep":"Jacque Phillips","w":0.017},{"d":"CO House District 34","rep":"Jenny Willford","w":0.015},{"d":"CO House District 33","rep":"Kenny Nguyen","w":0.014},{"d":"CO House District 35","rep":"Lorena García","w":0.013},{"d":"CO House District 29","rep":"Lori Goldstein","w":0.012}],"ss":[{"d":"CO Senate District 28","rep":"Mike Weissman","w":0.11},{"d":"CO Senate District 24","rep":"Kyle Mullica","w":0.05},{"d":"CO Senate District 13","rep":"Scott Bright","w":0.031},{"d":"CO Senate District 25","rep":"William Lindstedt","w":0.018}]},"munis":[{"m":"Thornton","p":[{"n":"Janifer Kulmann","r":"Mayor, Thornton, CO"}]},{"m":"Westminster","p":[{"n":"Nancy McNally","r":"Mayor, Westminster, CO"}]}],"slug":"adams"},"08003":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 62","rep":"Matt Martinez","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"alamosa"},"08005":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":0.758},{"d":"CO-06","rep":"Jason Crow","w":0.239}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":0.739},{"d":"CO House District 36","rep":"Michael Carter","w":0.077},{"d":"CO House District 37","rep":"Chad Clifford","w":0.043},{"d":"CO House District 61","rep":"Eliza Hamrick","w":0.031},{"d":"CO House District 38","rep":"Gretchen Rydin","w":0.027},{"d":"CO House District 40","rep":"Naquetta Ricks","w":0.026},{"d":"CO House District 3","rep":"Meg Froelich","w":0.02},{"d":"CO House District 41","rep":"Jamie Jackson","w":0.017},{"d":"CO House District 42","rep":"Mandy Lindsay","w":0.016}],"ss":[{"d":"CO Senate District 27","rep":"Tom Sullivan","w":0.214},{"d":"CO Senate District 28","rep":"Mike Weissman","w":0.12},{"d":"CO Senate District 26","rep":"Jeff Bridges","w":0.035},{"d":"CO Senate District 16","rep":"Chris Kolker","w":0.035},{"d":"CO Senate District 29","rep":"Iman Jodeh","w":0.029}]},"munis":[{"m":"Aurora","p":[{"n":"Mike Coffman","r":"Mayor, Aurora, CO"}]},{"m":"Centennial","p":[{"n":"Stephanie Piko","r":"Mayor, Centennial, CO"}]},{"m":"Englewood","p":[{"n":"Othoniel Sierra","r":"Mayor, Englewood, CO"}]}],"slug":"arapahoe"},"08007":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 59","rep":"Katie Stewart","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"archuleta"},"08009":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":0.999}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"baca"},"08011":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"bent"},"08013":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":0.999}],"sh":[{"d":"CO House District 49","rep":"Lesley Smith","w":0.774},{"d":"CO House District 12","rep":"Kyle Brown","w":0.106},{"d":"CO House District 19","rep":"Dan Woog","w":0.046},{"d":"CO House District 11","rep":"Karen McCormick","w":0.039},{"d":"CO House District 10","rep":"Junie Joseph","w":0.034}],"ss":[{"d":"CO Senate District 15","rep":"Janice Marchman","w":0.781},{"d":"CO Senate District 18","rep":"Judy Amabile","w":0.111},{"d":"CO Senate District 17","rep":"Katie Wallace","w":0.108}]},"munis":[{"m":"Boulder","p":[{"n":"Aaron Brockett","r":"Mayor, Boulder, CO"}]},{"m":"Longmont","p":[{"n":"Jean Peck","r":"Mayor, Longmont, CO"}]}],"slug":"boulder"},"08014":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":0.977},{"d":"CO-02","rep":"Joe Neguse","w":0.017},{"d":"CO-08","rep":"Gabe Evans","w":0.006}],"sh":[{"d":"CO House District 33","rep":"Kenny Nguyen","w":0.992},{"d":"CO House District 12","rep":"Kyle Brown","w":0.007}],"ss":[{"d":"CO Senate District 25","rep":"William Lindstedt","w":0.992},{"d":"CO Senate District 17","rep":"Katie Wallace","w":0.007}]},"munis":[],"slug":"broomfield"},"08015":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":0.997}],"sh":[{"d":"CO House District 13","rep":"Julie McCluskie","w":0.897},{"d":"CO House District 60","rep":"Stephanie Luck","w":0.103}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":1.0}]},"munis":[],"slug":"chaffee"},"08017":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"cheyenne"},"08019":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":0.999}],"sh":[{"d":"CO House District 49","rep":"Lesley Smith","w":0.999}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":0.999}]},"munis":[],"slug":"clear-creek"},"08021":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 62","rep":"Matt Martinez","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"conejos"},"08023":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 62","rep":"Matt Martinez","w":0.999}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":0.999}]},"munis":[],"slug":"costilla"},"08025":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":0.997}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":0.999}]},"munis":[],"slug":"crowley"},"08027":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":0.996}],"sh":[{"d":"CO House District 60","rep":"Stephanie Luck","w":1.0}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":1.0}]},"munis":[],"slug":"custer"},"08029":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 54","rep":"Matt Soper","w":0.502},{"d":"CO House District 58","rep":"Larry Suckla","w":0.498}],"ss":[{"d":"CO Senate District 5","rep":"Marc Catlin","w":0.827},{"d":"CO Senate District 7","rep":"Janice Rich","w":0.173}]},"munis":[],"slug":"delta"},"08031":{"county":[],"districts":{"cd":[{"d":"CO-01","rep":"Diana DeGette","w":0.977},{"d":"CO-06","rep":"Jason Crow","w":0.01},{"d":"CO-08","rep":"Gabe Evans","w":0.007},{"d":"CO-07","rep":"Brittany Pettersen","w":0.005}],"sh":[{"d":"CO House District 7","rep":"Jennifer Bacon","w":0.373},{"d":"CO House District 8","rep":"Lindsay Gilchrist","w":0.113},{"d":"CO House District 1","rep":"Javier Mabrey","w":0.105},{"d":"CO House District 5","rep":"Alex Valdez","w":0.099},{"d":"CO House District 2","rep":"Steven Woodrow","w":0.081},{"d":"CO House District 4","rep":"Cecelia Espenoza","w":0.075},{"d":"CO House District 9","rep":"Emily Sirota","w":0.059},{"d":"CO House District 6","rep":"Sean Camacho","w":0.058},{"d":"CO House District 3","rep":"Meg Froelich","w":0.037}],"ss":[{"d":"CO Senate District 33","rep":"James Coleman","w":0.477},{"d":"CO Senate District 34","rep":"Julie Gonzales","w":0.171},{"d":"CO Senate District 32","rep":"Robert Rodriguez","w":0.151},{"d":"CO Senate District 31","rep":"Matt Ball","w":0.12},{"d":"CO Senate District 26","rep":"Jeff Bridges","w":0.082}]},"munis":[],"slug":"denver"},"08033":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 58","rep":"Larry Suckla","w":0.999}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"dolores"},"08035":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":0.994}],"sh":[{"d":"CO House District 39","rep":"Brandi Bradley","w":0.802},{"d":"CO House District 45","rep":"Max Brooks","w":0.094},{"d":"CO House District 44","rep":"Tony Hartsook","w":0.074},{"d":"CO House District 43","rep":"Bob Marshall","w":0.025},{"d":"CO House District 61","rep":"Eliza Hamrick","w":0.005}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":0.715},{"d":"CO Senate District 30","rep":"John Carson","w":0.143},{"d":"CO Senate District 2","rep":"Lisa Frizell","w":0.139}]},"munis":[],"slug":"douglas"},"08037":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":0.738},{"d":"CO-03","rep":"Jeff Hurd","w":0.262}],"sh":[{"d":"CO House District 26","rep":"Meghan Lukens","w":0.869},{"d":"CO House District 57","rep":"Elizabeth Velasco","w":0.131}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":0.883},{"d":"CO Senate District 5","rep":"Marc Catlin","w":0.117}]},"munis":[],"slug":"eagle"},"08039":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"elbert"},"08041":{"county":[],"districts":{"cd":[{"d":"CO-05","rep":"Jeff Crank","w":0.692},{"d":"CO-04","rep":"Lauren Boebert","w":0.307}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":0.575},{"d":"CO House District 20","rep":"Jarvis Caldwell","w":0.147},{"d":"CO House District 21","rep":"Mary Bradfield","w":0.096},{"d":"CO House District 18","rep":"Amy Paschal","w":0.085},{"d":"CO House District 15","rep":"Scott Bottoms","w":0.041},{"d":"CO House District 14","rep":"Ava Flanell","w":0.02},{"d":"CO House District 17","rep":"Regina English","w":0.016},{"d":"CO House District 16","rep":"Rebecca Keltie","w":0.012},{"d":"CO House District 22","rep":"Ken DeGraaf","w":0.008}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":0.657},{"d":"CO Senate District 12","rep":"Marc Snyder","w":0.186},{"d":"CO Senate District 9","rep":"Lynda Zamora Wilson","w":0.093},{"d":"CO Senate District 11","rep":"Tony Exum","w":0.041},{"d":"CO Senate District 10","rep":"Larry Liston","w":0.023}]},"munis":[{"m":"Colorado Springs","p":[{"n":"Yemi Mobolade","r":"Mayor, Colorado Springs, CO"}]}],"slug":"el-paso"},"08043":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":1.0}],"sh":[{"d":"CO House District 60","rep":"Stephanie Luck","w":1.0}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":1.0}]},"munis":[],"slug":"fremont"},"08045":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 57","rep":"Elizabeth Velasco","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":0.781},{"d":"CO Senate District 5","rep":"Marc Catlin","w":0.219}]},"munis":[],"slug":"garfield"},"08047":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":1.0}],"sh":[{"d":"CO House District 49","rep":"Lesley Smith","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"gilpin"},"08049":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":1.0}],"sh":[{"d":"CO House District 13","rep":"Julie McCluskie","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"grand"},"08051":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":0.999}],"sh":[{"d":"CO House District 58","rep":"Larry Suckla","w":1.0}],"ss":[{"d":"CO Senate District 5","rep":"Marc Catlin","w":1.0}]},"munis":[{"m":"Gunnison","p":[{"n":"Diego Plata","r":"Mayor, Gunnison, CO"}]}],"slug":"gunnison"},"08053":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 58","rep":"Larry Suckla","w":1.0}],"ss":[{"d":"CO Senate District 5","rep":"Marc Catlin","w":1.0}]},"munis":[],"slug":"hinsdale"},"08055":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":0.999}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":0.627},{"d":"CO House District 62","rep":"Matt Martinez","w":0.373}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"huerfano"},"08057":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":1.0}],"sh":[{"d":"CO House District 13","rep":"Julie McCluskie","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"jackson"},"08059":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":0.93},{"d":"CO-02","rep":"Joe Neguse","w":0.043},{"d":"CO-06","rep":"Jason Crow","w":0.025}],"sh":[{"d":"CO House District 25","rep":"Tammy Story","w":0.603},{"d":"CO House District 27","rep":"Brianna Titone","w":0.235},{"d":"CO House District 23","rep":"Monica Duran","w":0.038},{"d":"CO House District 28","rep":"Sheila Lieder","w":0.037},{"d":"CO House District 24","rep":"Lisa Feret","w":0.033},{"d":"CO House District 29","rep":"Lori Goldstein","w":0.025},{"d":"CO House District 30","rep":"Rebekah Stewart","w":0.023}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":0.486},{"d":"CO Senate District 20","rep":"Lisa Cutter","w":0.356},{"d":"CO Senate District 22","rep":"Jessie Danielson","w":0.067},{"d":"CO Senate District 19","rep":"Lindsey Daugherty","w":0.066},{"d":"CO Senate District 16","rep":"Chris Kolker","w":0.025}]},"munis":[{"m":"Arvada","p":[{"n":"Marc Williams","r":"Mayor, Arvada, CO"}]}],"slug":"jefferson"},"08061":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"kiowa"},"08063":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"kit-carson"},"08065":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":0.996}],"sh":[{"d":"CO House District 13","rep":"Julie McCluskie","w":1.0}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":1.0}]},"munis":[],"slug":"lake"},"08067":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 59","rep":"Katie Stewart","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"la-plata"},"08069":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":0.932},{"d":"CO-04","rep":"Lauren Boebert","w":0.058},{"d":"CO-08","rep":"Gabe Evans","w":0.01}],"sh":[{"d":"CO House District 49","rep":"Lesley Smith","w":0.877},{"d":"CO House District 65","rep":"Lori Garcia Sander","w":0.058},{"d":"CO House District 51","rep":"Ron Weinberg","w":0.028},{"d":"CO House District 52","rep":"Yara Zokaie","w":0.017},{"d":"CO House District 53","rep":"Andy Boesenecker","w":0.013},{"d":"CO House District 64","rep":"Scott Slaugh","w":0.008}],"ss":[{"d":"CO Senate District 15","rep":"Janice Marchman","w":0.934},{"d":"CO Senate District 23","rep":"Barbara Kirkmeyer","w":0.036},{"d":"CO Senate District 14","rep":"Cathy Kipp","w":0.03}]},"munis":[{"m":"Fort Collins","p":[{"n":"Jeni Arndt","r":"Mayor, Fort Collins, CO"}]}],"slug":"larimer"},"08071":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"las-animas"},"08073":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 56","rep":"Chris Richardson","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"lincoln"},"08075":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":1.0}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":1.0}]},"munis":[],"slug":"logan"},"08077":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 54","rep":"Matt Soper","w":0.98},{"d":"CO House District 55","rep":"Rick Taggart","w":0.02}],"ss":[{"d":"CO Senate District 7","rep":"Janice Rich","w":1.0}]},"munis":[],"slug":"mesa"},"08079":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 62","rep":"Matt Martinez","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"mineral"},"08081":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 26","rep":"Meghan Lukens","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"moffat"},"08083":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 59","rep":"Katie Stewart","w":0.747},{"d":"CO House District 58","rep":"Larry Suckla","w":0.253}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"montezuma"},"08085":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 58","rep":"Larry Suckla","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":0.722},{"d":"CO Senate District 5","rep":"Marc Catlin","w":0.278}]},"munis":[],"slug":"montrose"},"08087":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":1.0}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":1.0}]},"munis":[],"slug":"morgan"},"08089":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":0.996}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"otero"},"08091":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 58","rep":"Larry Suckla","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"ouray"},"08093":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":1.0}],"sh":[{"d":"CO House District 13","rep":"Julie McCluskie","w":1.0}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":1.0}]},"munis":[],"slug":"park"},"08095":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":1.0}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":1.0}]},"munis":[],"slug":"phillips"},"08097":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":0.998}],"sh":[{"d":"CO House District 57","rep":"Elizabeth Velasco","w":1.0}],"ss":[{"d":"CO Senate District 5","rep":"Marc Catlin","w":1.0}]},"munis":[],"slug":"pitkin"},"08099":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":1.0}],"ss":[{"d":"CO Senate District 35","rep":"Rod Pelton","w":1.0}]},"munis":[],"slug":"prowers"},"08101":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 47","rep":"Ty Winter","w":0.584},{"d":"CO House District 46","rep":"Tisha Mauro","w":0.281},{"d":"CO House District 60","rep":"Stephanie Luck","w":0.079},{"d":"CO House District 62","rep":"Matt Martinez","w":0.056}],"ss":[{"d":"CO Senate District 3","rep":"Nick Hinrichsen","w":1.0}]},"munis":[{"m":"Pueblo","p":[{"n":"Nick Gradisar","r":"Mayor, Pueblo, CO"}]}],"slug":"pueblo"},"08103":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 26","rep":"Meghan Lukens","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"rio-blanco"},"08105":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 62","rep":"Matt Martinez","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"rio-grande"},"08107":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":0.999}],"sh":[{"d":"CO House District 26","rep":"Meghan Lukens","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"routt"},"08109":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 62","rep":"Matt Martinez","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"saguache"},"08111":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 59","rep":"Katie Stewart","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"san-juan"},"08113":{"county":[],"districts":{"cd":[{"d":"CO-03","rep":"Jeff Hurd","w":1.0}],"sh":[{"d":"CO House District 58","rep":"Larry Suckla","w":1.0}],"ss":[{"d":"CO Senate District 6","rep":"Cleave Simpson","w":1.0}]},"munis":[],"slug":"san-miguel"},"08115":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":1.0}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":1.0}]},"munis":[],"slug":"sedgwick"},"08117":{"county":[],"districts":{"cd":[{"d":"CO-02","rep":"Joe Neguse","w":0.998}],"sh":[{"d":"CO House District 13","rep":"Julie McCluskie","w":1.0}],"ss":[{"d":"CO Senate District 8","rep":"Dylan Roberts","w":1.0}]},"munis":[],"slug":"summit"},"08119":{"county":[],"districts":{"cd":[{"d":"CO-07","rep":"Brittany Pettersen","w":1.0}],"sh":[{"d":"CO House District 60","rep":"Stephanie Luck","w":0.999}],"ss":[{"d":"CO Senate District 4","rep":"Mark Baisley","w":0.999}]},"munis":[],"slug":"teller"},"08121":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":1.0}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":1.0}]},"munis":[],"slug":"washington"},"08123":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":0.803},{"d":"CO-08","rep":"Gabe Evans","w":0.187},{"d":"CO-02","rep":"Joe Neguse","w":0.01}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":0.775},{"d":"CO House District 48","rep":"Carlos Barron","w":0.119},{"d":"CO House District 64","rep":"Scott Slaugh","w":0.041},{"d":"CO House District 65","rep":"Lori Garcia Sander","w":0.029},{"d":"CO House District 19","rep":"Dan Woog","w":0.028},{"d":"CO House District 50","rep":"Ryan Gonzalez","w":0.008}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":0.875},{"d":"CO Senate District 23","rep":"Barbara Kirkmeyer","w":0.08},{"d":"CO Senate District 13","rep":"Scott Bright","w":0.039},{"d":"CO Senate District 17","rep":"Katie Wallace","w":0.007}]},"munis":[{"m":"Greeley","p":[{"n":"John Gates","r":"Mayor, Greeley, CO"}]}],"slug":"weld"},"08125":{"county":[],"districts":{"cd":[{"d":"CO-04","rep":"Lauren Boebert","w":1.0}],"sh":[{"d":"CO House District 63","rep":"Dusty Johnson","w":1.0}],"ss":[{"d":"CO Senate District 1","rep":"Byron Pelton","w":1.0}]},"munis":[],"slug":"yuma"},"09110":{"county":[],"districts":{"cd":[{"d":"CT-02","rep":"Joe Courtney","w":0.506},{"d":"CT-01","rep":"John B. Larson","w":0.365},{"d":"CT-05","rep":"Jahana Hayes","w":0.129}],"sh":[{"d":"CT House District 55","rep":"Steve Weir","w":0.091},{"d":"CT House District 52","rep":"Kurt Vail","w":0.084},{"d":"CT House District 53","rep":"Tammy Nuccio","w":0.076},{"d":"CT House District 8","rep":"Tim Ackert","w":0.066},{"d":"CT House District 61","rep":"Tami Zawistowski","w":0.063},{"d":"CT House District 57","rep":"Jaime Foster","w":0.045},{"d":"CT House District 62","rep":"Mark Anderson","w":0.039},{"d":"CT House District 17","rep":"Eleni DeGraw","w":0.036},{"d":"CT House District 16","rep":"Melissa Osborne","w":0.033},{"d":"CT House District 59","rep":"Carol Hall","w":0.032},{"d":"CT House District 54","rep":"Gregg Haddad","w":0.031},{"d":"CT House District 31","rep":"Jill Barry","w":0.028},{"d":"CT House District 60","rep":"Jane Garibay","w":0.027},{"d":"CT House District 15","rep":"Bobby Gibson","w":0.026},{"d":"CT House District 14","rep":"Tom Delnicki","w":0.024},{"d":"CT House District 21","rep":"Mike Demicco","w":0.024},{"d":"CT House District 30","rep":"Donna Veach","w":0.024},{"d":"CT House District 19","rep":"Tammy Exum","w":0.022},{"d":"CT House District 13","rep":"Jason Doucette","w":0.019},{"d":"CT House District 22","rep":"Rebecca Martinez","w":0.018},{"d":"CT House District 29","rep":"Kerry Wood","w":0.016},{"d":"CT House District 58","rep":"John Santanella","w":0.015},{"d":"CT House District 5","rep":"Maryam Khan","w":0.013},{"d":"CT House District 50","rep":"Pat Boyd","w":0.013},{"d":"CT House District 81","rep":"Chris Poulos","w":0.012},{"d":"CT House District 83","rep":"Jack Fazzino","w":0.011},{"d":"CT House District 9","rep":"Jason Rojas","w":0.01},{"d":"CT House District 11","rep":"Patrick Biggins","w":0.01},{"d":"CT House District 28","rep":"Amy Morrin Bello","w":0.009},{"d":"CT House District 80","rep":"Gale Mastrofrancesco","w":0.009},{"d":"CT House District 27","rep":"Gary Turco","w":0.009},{"d":"CT House District 10","rep":"Henry Genga","w":0.009},{"d":"CT House District 56","rep":"Kevin Brown","w":0.009},{"d":"CT House District 20","rep":"Kate Farrar","w":0.008},{"d":"CT House District 12","rep":"Geoff Luxenberg","w":0.007},{"d":"CT House District 24","rep":"Manny Sanchez","w":0.005}],"ss":[{"d":"CT Senate District 35","rep":"Jeff Gordon","w":0.194},{"d":"CT Senate District 7","rep":"John Kissel","w":0.164},{"d":"CT Senate District 4","rep":"M.D. Rahman","w":0.105},{"d":"CT Senate District 8","rep":"Paul Honig","w":0.089},{"d":"CT Senate District 3","rep":"Saud Anwar","w":0.088},{"d":"CT Senate District 19","rep":"Cathy Osten","w":0.079},{"d":"CT Senate District 2","rep":"Doug McCrory","w":0.053},{"d":"CT Senate District 5","rep":"Derek Slap","w":0.049},{"d":"CT Senate District 29","rep":"Mae Flexer","w":0.044},{"d":"CT Senate District 6","rep":"Rick Lopes","w":0.043},{"d":"CT Senate District 16","rep":"Rob Sampson","w":0.035},{"d":"CT Senate District 9","rep":"Matt Lesser","w":0.028},{"d":"CT Senate District 1","rep":"John Fonfara","w":0.02},{"d":"CT Senate District 31","rep":"Henri Martin","w":0.009}]},"munis":[],"slug":""},"09120":{"county":[],"districts":{"cd":[{"d":"CT-04","rep":"James A. Himes","w":0.529},{"d":"CT-03","rep":"Rosa L. DeLauro","w":0.079}],"sh":[{"d":"CT House District 112","rep":"Tony Scott","w":0.153},{"d":"CT House District 134","rep":"Sarah Keitt","w":0.086},{"d":"CT House District 135","rep":"Anne Hughes","w":0.083},{"d":"CT House District 123","rep":"Dave Rutigliano","w":0.072},{"d":"CT House District 120","rep":"Kaitlyn Shake","w":0.032},{"d":"CT House District 132","rep":"Jenn Leeper","w":0.032},{"d":"CT House District 121","rep":"Joe Gresko","w":0.031},{"d":"CT House District 122","rep":"Ben McGorty","w":0.027},{"d":"CT House District 133","rep":"Cristin McCarthy Vahey","w":0.024},{"d":"CT House District 126","rep":"Fred Gee","w":0.016},{"d":"CT House District 124","rep":"Andre Baker","w":0.014},{"d":"CT House District 130","rep":"Tone Felipe","w":0.013},{"d":"CT House District 129","rep":"Steve Stafstrom","w":0.011},{"d":"CT House District 127","rep":"Marcus Brown","w":0.01},{"d":"CT House District 128","rep":"Christopher Rosario","w":0.007}],"ss":[{"d":"CT Senate District 28","rep":"Tony Hwang","w":0.249},{"d":"CT Senate District 22","rep":"Sujata Gadkar-Wilcox","w":0.159},{"d":"CT Senate District 21","rep":"Jason Perillo","w":0.15},{"d":"CT Senate District 23","rep":"Herron Gaston","w":0.052}]},"munis":[],"slug":""},"09130":{"county":[],"districts":{"cd":[{"d":"CT-02","rep":"Joe Courtney","w":0.636},{"d":"CT-03","rep":"Rosa L. DeLauro","w":0.122},{"d":"CT-01","rep":"John B. Larson","w":0.105}],"sh":[{"d":"CT House District 34","rep":"Irene Haines","w":0.181},{"d":"CT House District 36","rep":"Renee Muir","w":0.172},{"d":"CT House District 23","rep":"Devin Carney","w":0.154},{"d":"CT House District 35","rep":"Chris Aniskovich","w":0.127},{"d":"CT House District 32","rep":"Christie Carpino","w":0.073},{"d":"CT House District 100","rep":"Kai Belton","w":0.051},{"d":"CT House District 101","rep":"John-Michael Parker","w":0.035},{"d":"CT House District 33","rep":"Brandon Chafee","w":0.031},{"d":"CT House District 90","rep":"Craig Fishbein","w":0.026},{"d":"CT House District 86","rep":"Vin Candelora","w":0.011}],"ss":[{"d":"CT Senate District 33","rep":"Norm Needleman","w":0.551},{"d":"CT Senate District 12","rep":"Christine Cohen","w":0.111},{"d":"CT Senate District 9","rep":"Matt Lesser","w":0.07},{"d":"CT Senate District 20","rep":"Martha Marx","w":0.062},{"d":"CT Senate District 13","rep":"Jan Hochadel","w":0.051},{"d":"CT Senate District 34","rep":"Paul Cicarella","w":0.017}]},"munis":[],"slug":""},"09140":{"county":[],"districts":{"cd":[{"d":"CT-05","rep":"Jahana Hayes","w":0.609},{"d":"CT-03","rep":"Rosa L. DeLauro","w":0.216},{"d":"CT-04","rep":"James A. Himes","w":0.111},{"d":"CT-01","rep":"John B. Larson","w":0.064}],"sh":[{"d":"CT House District 66","rep":"Karen Reddington-Hughes","w":0.134},{"d":"CT House District 131","rep":"Arnie Jensen","w":0.108},{"d":"CT House District 69","rep":"Jason Buchsbaum","w":0.081},{"d":"CT House District 68","rep":"Joe Polletta","w":0.072},{"d":"CT House District 78","rep":"Joe Hoxha","w":0.071},{"d":"CT House District 105","rep":"Nicole Klarides-Ditria","w":0.062},{"d":"CT House District 89","rep":"Lezlye Zupkus","w":0.059},{"d":"CT House District 71","rep":"Bill Pizzuto","w":0.056},{"d":"CT House District 80","rep":"Gale Mastrofrancesco","w":0.05},{"d":"CT House District 103","rep":"Liz Linehan","w":0.04},{"d":"CT House District 113","rep":"Amy Romano","w":0.04},{"d":"CT House District 122","rep":"Ben McGorty","w":0.036},{"d":"CT House District 76","rep":"John Piscopo","w":0.029},{"d":"CT House District 77","rep":"Cara Pavalock-D'Amato","w":0.026},{"d":"CT House District 70","rep":"Seth Bronko","w":0.024},{"d":"CT House District 79","rep":"Mary Fortier","w":0.02},{"d":"CT House District 104","rep":"Kara Rochelle","w":0.017},{"d":"CT House District 72","rep":"Larry Butler","w":0.017},{"d":"CT House District 83","rep":"Jack Fazzino","w":0.017},{"d":"CT House District 73","rep":"Ron Napoli","w":0.015},{"d":"CT House District 74","rep":"Michael DiGiovancarlo","w":0.013},{"d":"CT House District 75","rep":"Geraldo Reyes","w":0.008},{"d":"CT House District 114","rep":"Mary Welander","w":0.007}],"ss":[{"d":"CT Senate District 32","rep":"Eric Berthel","w":0.415},{"d":"CT Senate District 31","rep":"Henri Martin","w":0.146},{"d":"CT Senate District 16","rep":"Rob Sampson","w":0.13},{"d":"CT Senate District 21","rep":"Jason Perillo","w":0.093},{"d":"CT Senate District 17","rep":"Jorge Cabrera","w":0.079},{"d":"CT Senate District 15","rep":"Joan Hartley","w":0.076},{"d":"CT Senate District 13","rep":"Jan Hochadel","w":0.046},{"d":"CT Senate District 30","rep":"Stephen Harding","w":0.014}]},"munis":[],"slug":""},"09150":{"county":[],"districts":{"cd":[{"d":"CT-02","rep":"Joe Courtney","w":1.0}],"sh":[{"d":"CT House District 50","rep":"Pat Boyd","w":0.333},{"d":"CT House District 47","rep":"Doug Dubitsky","w":0.18},{"d":"CT House District 51","rep":"Chris Stewart","w":0.171},{"d":"CT House District 44","rep":"Anne Dauphinais","w":0.137},{"d":"CT House District 52","rep":"Kurt Vail","w":0.109},{"d":"CT House District 45","rep":"Brian Lanoue","w":0.07}],"ss":[{"d":"CT Senate District 29","rep":"Mae Flexer","w":0.43},{"d":"CT Senate District 35","rep":"Jeff Gordon","w":0.374},{"d":"CT Senate District 18","rep":"Heather Somers","w":0.195}]},"munis":[],"slug":""},"09160":{"county":[],"districts":{"cd":[{"d":"CT-05","rep":"Jahana Hayes","w":0.735},{"d":"CT-01","rep":"John B. Larson","w":0.265}],"sh":[{"d":"CT House District 64","rep":"Maria Horn","w":0.493},{"d":"CT House District 62","rep":"Mark Anderson","w":0.138},{"d":"CT House District 63","rep":"Jay Case","w":0.122},{"d":"CT House District 66","rep":"Karen Reddington-Hughes","w":0.118},{"d":"CT House District 76","rep":"John Piscopo","w":0.085},{"d":"CT House District 69","rep":"Jason Buchsbaum","w":0.033},{"d":"CT House District 65","rep":"Joe Canino","w":0.01}],"ss":[{"d":"CT Senate District 30","rep":"Stephen Harding","w":0.595},{"d":"CT Senate District 8","rep":"Paul Honig","w":0.271},{"d":"CT Senate District 32","rep":"Eric Berthel","w":0.07},{"d":"CT Senate District 5","rep":"Derek Slap","w":0.038},{"d":"CT Senate District 31","rep":"Henri Martin","w":0.026}]},"munis":[],"slug":""},"09170":{"county":[],"districts":{"cd":[{"d":"CT-03","rep":"Rosa L. DeLauro","w":0.512},{"d":"CT-02","rep":"Joe Courtney","w":0.06},{"d":"CT-05","rep":"Jahana Hayes","w":0.039}],"sh":[{"d":"CT House District 86","rep":"Vin Candelora","w":0.075},{"d":"CT House District 98","rep":"Moira Rader","w":0.062},{"d":"CT House District 101","rep":"John-Michael Parker","w":0.059},{"d":"CT House District 114","rep":"Mary Welander","w":0.048},{"d":"CT House District 90","rep":"Craig Fishbein","w":0.044},{"d":"CT House District 89","rep":"Lezlye Zupkus","w":0.035},{"d":"CT House District 87","rep":"Dave Yaccarino","w":0.034},{"d":"CT House District 119","rep":"Kathy Kennedy","w":0.029},{"d":"CT House District 102","rep":"Robin Comey","w":0.025},{"d":"CT House District 82","rep":"Michael Quinn","w":0.022},{"d":"CT House District 88","rep":"Josh Elliott","w":0.021},{"d":"CT House District 85","rep":"Mary Mushinsky","w":0.017},{"d":"CT House District 117","rep":"M.J. Shannon","w":0.017},{"d":"CT House District 99","rep":"Joe Zullo","w":0.016},{"d":"CT House District 103","rep":"Liz Linehan","w":0.015},{"d":"CT House District 118","rep":"Frank Smith","w":0.013},{"d":"CT House District 91","rep":"Laurie Sweet","w":0.013},{"d":"CT House District 83","rep":"Jack Fazzino","w":0.011},{"d":"CT House District 97","rep":"Al Paolillo","w":0.008},{"d":"CT House District 116","rep":"Treneé McGee","w":0.008},{"d":"CT House District 92","rep":"Pat Dillon","w":0.006},{"d":"CT House District 115","rep":"Bill Heffernan","w":0.006},{"d":"CT House District 84","rep":"Hilda Santiago","w":0.006},{"d":"CT House District 96","rep":"Roland Lemar","w":0.005}],"ss":[{"d":"CT Senate District 12","rep":"Christine Cohen","w":0.215},{"d":"CT Senate District 34","rep":"Paul Cicarella","w":0.122},{"d":"CT Senate District 17","rep":"Jorge Cabrera","w":0.089},{"d":"CT Senate District 14","rep":"James Maroney","w":0.08},{"d":"CT Senate District 11","rep":"Martin Looney","w":0.041},{"d":"CT Senate District 13","rep":"Jan Hochadel","w":0.039},{"d":"CT Senate District 10","rep":"Gary Winfield","w":0.024}]},"munis":[],"slug":""},"09180":{"county":[],"districts":{"cd":[{"d":"CT-02","rep":"Joe Courtney","w":0.914}],"sh":[{"d":"CT House District 48","rep":"Mark DeCaprio","w":0.183},{"d":"CT House District 43","rep":"Greg Howard","w":0.158},{"d":"CT House District 45","rep":"Brian Lanoue","w":0.128},{"d":"CT House District 37","rep":"Nick Menapace","w":0.089},{"d":"CT House District 38","rep":"Nick Gauthier","w":0.074},{"d":"CT House District 139","rep":"Larry Pemberton","w":0.053},{"d":"CT House District 41","rep":"Aundré Bumgardner","w":0.045},{"d":"CT House District 47","rep":"Doug Dubitsky","w":0.044},{"d":"CT House District 49","rep":"Susan Johnson","w":0.041},{"d":"CT House District 40","rep":"Dan Gaiewski","w":0.031},{"d":"CT House District 8","rep":"Tim Ackert","w":0.03},{"d":"CT House District 34","rep":"Irene Haines","w":0.022},{"d":"CT House District 46","rep":"Derell Wilson","w":0.014},{"d":"CT House District 39","rep":"Anthony Nolan","w":0.007}],"ss":[{"d":"CT Senate District 18","rep":"Heather Somers","w":0.295},{"d":"CT Senate District 19","rep":"Cathy Osten","w":0.269},{"d":"CT Senate District 20","rep":"Martha Marx","w":0.24},{"d":"CT Senate District 33","rep":"Norm Needleman","w":0.073},{"d":"CT Senate District 29","rep":"Mae Flexer","w":0.041}]},"munis":[],"slug":""},"09190":{"county":[],"districts":{"cd":[{"d":"CT-04","rep":"James A. Himes","w":0.45},{"d":"CT-05","rep":"Jahana Hayes","w":0.417}],"sh":[{"d":"CT House District 108","rep":"Pat Callahan","w":0.098},{"d":"CT House District 135","rep":"Anne Hughes","w":0.081},{"d":"CT House District 106","rep":"Mitch Bolinsky","w":0.079},{"d":"CT House District 67","rep":"Billy Buckbee","w":0.077},{"d":"CT House District 149","rep":"Tina Courpas","w":0.061},{"d":"CT House District 42","rep":"Savet Constantine","w":0.054},{"d":"CT House District 111","rep":"Aimee Berger-Girvalo","w":0.05},{"d":"CT House District 107","rep":"Marty Foncello","w":0.049},{"d":"CT House District 2","rep":"Raghib Allie-Brennan","w":0.041},{"d":"CT House District 125","rep":"Tom O'Dea","w":0.04},{"d":"CT House District 69","rep":"Jason Buchsbaum","w":0.034},{"d":"CT House District 136","rep":"Jonathan Steinberg","w":0.029},{"d":"CT House District 138","rep":"Ken Gucker","w":0.023},{"d":"CT House District 141","rep":"Tracy Marra","w":0.021},{"d":"CT House District 151","rep":"Hector Arzeno","w":0.02},{"d":"CT House District 142","rep":"Lucy Dathan","w":0.016},{"d":"CT House District 143","rep":"Dominique Johnson","w":0.014},{"d":"CT House District 150","rep":"Steve Meskers","w":0.014},{"d":"CT House District 109","rep":"Farley Santos","w":0.013},{"d":"CT House District 147","rep":"Matt Blumenthal","w":0.012},{"d":"CT House District 137","rep":"Kadeem Roberts","w":0.009}],"ss":[{"d":"CT Senate District 26","rep":"Ceci Maher","w":0.195},{"d":"CT Senate District 30","rep":"Stephen Harding","w":0.187},{"d":"CT Senate District 36","rep":"Ryan Fazio","w":0.143},{"d":"CT Senate District 28","rep":"Tony Hwang","w":0.109},{"d":"CT Senate District 24","rep":"Julie Kushner","w":0.106},{"d":"CT Senate District 25","rep":"Bob Duff","w":0.048},{"d":"CT Senate District 32","rep":"Eric Berthel","w":0.042},{"d":"CT Senate District 27","rep":"Pat Miller","w":0.028}]},"munis":[],"slug":""},"10001":{"county":[],"districts":{"cd":[{"d":"DE-00","rep":"Sarah McBride","w":0.75}],"sh":[{"d":"DE House District 30","rep":"Shannon Morris","w":0.26},{"d":"DE House District 28","rep":"Bill Carson","w":0.133},{"d":"DE House District 33","rep":"Charles Postles","w":0.127},{"d":"DE House District 11","rep":"Jeff Spiegelman","w":0.1},{"d":"DE House District 32","rep":"Kerri Harris","w":0.043},{"d":"DE House District 29","rep":"Bill Bush","w":0.04},{"d":"DE House District 34","rep":"Lyndon Yearick","w":0.029},{"d":"DE House District 31","rep":"Sean Lynn","w":0.016}],"ss":[{"d":"DE Senate District 15","rep":"Dave Lawson","w":0.395},{"d":"DE Senate District 16","rep":"Eric Buckson","w":0.18},{"d":"DE Senate District 14","rep":"Kyra Hoffner","w":0.116},{"d":"DE Senate District 17","rep":"Trey Paradee","w":0.037},{"d":"DE Senate District 18","rep":"Dave Wilson","w":0.019}]},"munis":[{"m":"Dover","p":[{"n":"Robin Christiansen","r":"Mayor, Dover, DE"}]}],"slug":"kent"},"10003":{"county":[],"districts":{"cd":[{"d":"DE-00","rep":"Sarah McBride","w":0.905}],"sh":[{"d":"DE House District 9","rep":"Kevin Hensley","w":0.164},{"d":"DE House District 11","rep":"Jeff Spiegelman","w":0.136},{"d":"DE House District 12","rep":"Krista Griffith","w":0.07},{"d":"DE House District 27","rep":"Eric Morrison","w":0.061},{"d":"DE House District 8","rep":"Rae Moore","w":0.057},{"d":"DE House District 17","rep":"Melissa Minor-Brown","w":0.053},{"d":"DE House District 15","rep":"Kam Smith","w":0.04},{"d":"DE House District 23","rep":"Mara Gorman","w":0.033},{"d":"DE House District 22","rep":"Mike Smith","w":0.027},{"d":"DE House District 16","rep":"Frank Cooke","w":0.026},{"d":"DE House District 25","rep":"Cyndie Romer","w":0.025},{"d":"DE House District 6","rep":"Debra Heffernan","w":0.019},{"d":"DE House District 21","rep":"Frank Burns","w":0.019},{"d":"DE House District 19","rep":"Kim Williams","w":0.018},{"d":"DE House District 10","rep":"Melanie Ross Levin","w":0.017},{"d":"DE House District 18","rep":"Sophie Phillips","w":0.017},{"d":"DE House District 24","rep":"Ed Osienski","w":0.016},{"d":"DE House District 26","rep":"Madinah Wilson-Anton","w":0.015},{"d":"DE House District 2","rep":"Stephanie Bolden","w":0.014},{"d":"DE House District 7","rep":"Larry Lambert","w":0.013},{"d":"DE House District 13","rep":"DeShanna Neal","w":0.011},{"d":"DE House District 5","rep":"Kendra Johnson","w":0.011},{"d":"DE House District 28","rep":"Bill Carson","w":0.01}],"ss":[{"d":"DE Senate District 14","rep":"Kyra Hoffner","w":0.217},{"d":"DE Senate District 12","rep":"Nicole Poore","w":0.151},{"d":"DE Senate District 10","rep":"Stephanie Hansen","w":0.123},{"d":"DE Senate District 4","rep":"Laura Sturgeon","w":0.09},{"d":"DE Senate District 8","rep":"Dave Sokola","w":0.051},{"d":"DE Senate District 11","rep":"Bryan Townsend","w":0.042},{"d":"DE Senate District 9","rep":"Jack Walsh","w":0.041},{"d":"DE Senate District 2","rep":"Darius Brown","w":0.035},{"d":"DE Senate District 13","rep":"Marie Pinkney","w":0.033},{"d":"DE Senate District 7","rep":"Spiros Mantzavinos","w":0.03},{"d":"DE Senate District 5","rep":"Ray Seigfried","w":0.027},{"d":"DE Senate District 1","rep":"Dan Cruce","w":0.026},{"d":"DE Senate District 3","rep":"Tizzy Lockman","w":0.016}]},"munis":[{"m":"New Castle","p":[{"n":"Valarie Leary","r":"Mayor, New Castle, DE"}]},{"m":"Newark","p":[{"n":"Jerry Clifton","r":"Mayor, Newark, DE"}]},{"m":"Wilmington","p":[{"n":"Mike Purzycki","r":"Mayor, Wilmington, DE"}]}],"slug":"new-castle"},"10005":{"county":[],"districts":{"cd":[{"d":"DE-00","rep":"Sarah McBride","w":0.818}],"sh":[{"d":"DE House District 35","rep":"Jesse Vanderwende","w":0.165},{"d":"DE House District 40","rep":"Tim Dukes","w":0.13},{"d":"DE House District 41","rep":"Rich Collins","w":0.112},{"d":"DE House District 36","rep":"Bryan Shupe","w":0.103},{"d":"DE House District 37","rep":"Valerie Giltner","w":0.075},{"d":"DE House District 39","rep":"Danny Short","w":0.059},{"d":"DE House District 20","rep":"Alonna Berry","w":0.048},{"d":"DE House District 38","rep":"Ron Gray","w":0.045},{"d":"DE House District 4","rep":"Jeff Hilovsky","w":0.044},{"d":"DE House District 14","rep":"Claire Snyder-Hall","w":0.036}],"ss":[{"d":"DE Senate District 21","rep":"Bryant Richardson","w":0.245},{"d":"DE Senate District 18","rep":"Dave Wilson","w":0.218},{"d":"DE Senate District 19","rep":"Brian Pettyjohn","w":0.139},{"d":"DE Senate District 6","rep":"Russ Huxtable","w":0.109},{"d":"DE Senate District 20","rep":"Gerald Hocker","w":0.107}]},"munis":[{"m":"Milford","p":[{"n":"Todd Culotta","r":"Mayor, Milford, DE"}]},{"m":"Seaford","p":[{"n":"Matthew MacCoy","r":"Mayor, Seaford, DE"}]}],"slug":"sussex"},"12001":{"county":[{"n":"Anna Prizzia","r":"Commissioner, Alachua County"},{"n":"Ayesha Solomon","r":"Property Appraiser, Alachua County"},{"n":"Charles S. Chestnut","r":"Commissioner, Alachua County"},{"n":"Diyonne L. McGraw","r":"Alachua County School Board"},{"n":"Jess Irby","r":"Clerk of Court, Alachua County"},{"n":"John Power","r":"Tax Collector, Alachua County"},{"n":"Jr., Clovis Watson","r":"Sheriff, Alachua County"},{"n":"Kay G. Abbitt","r":"Alachua County School Board"},{"n":"Ken Cornell","r":"Commissioner, Alachua County"},{"n":"Kim Barton","r":"Supervisor of Elections, Alachua County"},{"n":"Leanetta McNealy","r":"Alachua County School Board"},{"n":"Marihelen Wheeler","r":"Commissioner, Alachua County"},{"n":"Mary Alford","r":"Commissioner, Alachua County"},{"n":"Sarah Rockwell","r":"Alachua County School Board"},{"n":"Thomas Vu","r":"Alachua County School Board"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":1.0}],"sh":[{"d":"FL House District 21","rep":"Yvonne Hinson","w":0.392},{"d":"FL House District 10","rep":"Chuck Brannan","w":0.371},{"d":"FL House District 22","rep":"Chad Johnson","w":0.236}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":0.51},{"d":"FL Senate District 9","rep":"Stan McClain","w":0.489}]},"munis":[{"m":"Alachua","p":[{"n":"Jackson M. Youmas","r":"Alachua City Council"},{"n":"Jacob Fletcher","r":"Alachua City Council"},{"n":"Jennifer Ringersen","r":"Alachua City Council"},{"n":"Shirley Green Brown","r":"Alachua City Council"},{"n":"Walter M. Welch","r":"Mayor of Alachua"}]},{"m":"Archer","p":[{"n":"Bill Lewandowski","r":"Archer City Council"},{"n":"Fletcher Hope","r":"Mayor of Archer"},{"n":"Iris D. Bailey","r":"Archer City Council"},{"n":"Jennifer Rossi","r":"Archer City Council"},{"n":"Karen Fiore","r":"Archer City Council"}]},{"m":"Gainesville","p":[{"n":"Bryan Eastman","r":"Gainesville City Council"},{"n":"Bryan Eastman","r":"Gainesville City Council - City Commissioner"},{"n":"Casey Willits","r":"Gainesville City Council"},{"n":"Casey Willits","r":"Gainesville City Council - City Commissioner"},{"n":"Cynthia Chestnut","r":"Gainesville City Council"},{"n":"Cynthia Moore Chestnut","r":"Gainesville City Council - City Commissioner"},{"n":"Desmon Duncan-Walker","r":"Gainesville City Council"},{"n":"Desmon Duncan-Walker","r":"Gainesville City Council - City Commissioner"},{"n":"Ed Book","r":"Gainesville City Council"},{"n":"Ed Book","r":"Gainesville City Council - City Commissioner"},{"n":"Harvey Ward","r":"Mayor of Gainesville"},{"n":"James Ingle","r":"Gainesville City Council - City Commissioner"},{"n":"Reina Saco","r":"Gainesville City Council"}]},{"m":"Hawthorne","p":[{"n":"Jacquelyn Randall","r":"Mayor of Hawthorne"},{"n":"Patricia B. Hutchinson","r":"Hawthorne City Council"},{"n":"Randy Martin","r":"Hawthorne City Council"},{"n":"Raymond Cue","r":"Hawthorne City Council"},{"n":"Tommie C. Howard","r":"Hawthorne City Council"}]},{"m":"High Springs","p":[{"n":"Andrew Miller","r":"High Springs City Council"},{"n":"Chad Howell","r":"High Springs City Council"},{"n":"Katherine Weitz","r":"High Springs City Council"},{"n":"Tristan Grunder","r":"Mayor of High Springs"},{"n":"Wayne Bloodsworth","r":"High Springs City Council"}]},{"m":"La Crosse","p":[{"n":"Anthony Kelley","r":"La Crosse City Council"},{"n":"Barbara Thomas","r":"La Crosse City Council"},{"n":"C. Dianne Dubberly","r":"Mayor of La Crosse"},{"n":"Johnny Ho","r":"La Crosse City Council"},{"n":"Kyle Cheshire","r":"La Crosse City Council"},{"n":"Sheila Dubberly","r":"La Crosse City Council"}]},{"m":"Micanopy","p":[{"n":"David Massey","r":"Micanopy City Council"},{"n":"Jiana Bradshaw Williams","r":"Mayor of Micanopy"},{"n":"Judy Galloway","r":"Micanopy City Council"},{"n":"Ken Wessberg","r":"Micanopy City Council"},{"n":"Kevin Putansu","r":"Micanopy City Council"}]},{"m":"Newberry","p":[{"n":"Donald Long","r":"Newberry City Council"},{"n":"Mark Clark","r":"Newberry City Council"},{"n":"Monty Farnsworth","r":"Newberry City Council"},{"n":"Rick Coleman","r":"Newberry City Council"},{"n":"Timothy Marden","r":"Mayor of Newberry"},{"n":"Tony Mazon","r":"Newberry City Council"}]},{"m":"Waldo","p":[{"n":"Glen Johnson","r":"Waldo City Council"},{"n":"Louie Davis","r":"Mayor of Waldo"}]}],"slug":"alachua"},"12003":{"county":[{"n":"Amanda Rhoden Hodges","r":"Baker County School Board"},{"n":"Amy Dugger","r":"Tax Collector, Baker County"},{"n":"Cathy Rhoden","r":"Commissioner, Baker County"},{"n":"Christopher Milton","r":"Supervisor of Elections, Baker County"},{"n":"Jack Baker Jr.","r":"Baker County School Board"},{"n":"James Bennett","r":"Commissioner, Baker County"},{"n":"James Croft","r":"Commissioner, Baker County"},{"n":"Jimmy Anderson","r":"Commissioner, Baker County"},{"n":"Mandi Canaday","r":"Baker County School Board"},{"n":"Mark Hartley","r":"Commissioner, Baker County"},{"n":"Paula Barton","r":"Baker County School Board"},{"n":"Scotty Rhoden","r":"Sheriff, Baker County"},{"n":"Stacie Harvey","r":"Clerk of Court, Baker County"},{"n":"Tiffany McInarnay","r":"Baker County School Board"},{"n":"Timothy Sweat","r":"Property Appraiser, Baker County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":0.999}],"sh":[{"d":"FL House District 10","rep":"Chuck Brannan","w":0.999}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":0.999}]},"munis":[{"m":"Glen Saint Mary","p":[{"n":"Juanice Padgett","r":"Mayor of Glen Saint Mary"}]},{"m":"Macclenny","p":[{"n":"Cecil Horne","r":"Macclenny City Council"},{"n":"Danny Norton","r":"Macclenny City Council"},{"n":"Lynward Bones","r":"Macclenny City Council"},{"n":"Mark Bryant","r":"Mayor of Macclenny"},{"n":"Sam Kitching","r":"Macclenny City Council"}]},{"m":"_Unresolved","p":[{"n":"Lola Chandler","r":"Glen Saint Mary City Council"},{"n":"Stormy Greer","r":"Glen Saint Mary City Council"},{"n":"Susan Wallace","r":"Glen Saint Mary City Council"},{"n":"Terry Clardy","r":"Glen Saint Mary City Council"}]}],"slug":"baker"},"12005":{"county":[{"n":"Ann Leonard","r":"Bay County School Board"},{"n":"Bill Dozier","r":"Commissioner, Bay County"},{"n":"Bill Kinsaul","r":"Clerk of Court, Bay County"},{"n":"Christopher Moore","r":"Bay County School Board"},{"n":"Clair Pease","r":"Commissioner, Bay County"},{"n":"Dan Sowell","r":"Property Appraiser, Bay County"},{"n":"Doug Moore","r":"Commissioner, Bay County"},{"n":"Jerry Register","r":"Bay County School Board"},{"n":"Nina Ward","r":"Supervisor of Elections, Bay County"},{"n":"Robert Carroll","r":"Commissioner, Bay County"},{"n":"Steve Moss","r":"Bay County School Board"},{"n":"Tommy Ford","r":"Sheriff, Bay County"},{"n":"Tommy Hamm","r":"Commissioner, Bay County"},{"n":"William Perdue","r":"Tax Collector, Bay County"},{"n":"Winston Chester","r":"Bay County School Board"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.603}],"sh":[{"d":"FL House District 6","rep":"Griff Griffitts","w":0.602}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":0.602}]},"munis":[{"m":"Callaway","p":[{"n":"Bob Pelletier","r":"Callaway City Council"},{"n":"David Griggs","r":"Callaway City Council"},{"n":"Kenneth L. Ayers","r":"Callaway City Council"},{"n":"Pamn Henderson","r":"Mayor of Callaway"},{"n":"Scott Davis","r":"Callaway City Council"}]},{"m":"Lynn Haven","p":[{"n":"Dave Lowery","r":"Mayor of Lynn Haven"},{"n":"Jamie Warrick","r":"Lynn Haven City Council"},{"n":"Judy Tinder","r":"Lynn Haven City Council"},{"n":"Pat Perno","r":"Lynn Haven City Council"},{"n":"Sam Peebles","r":"Lynn Haven City Council"}]},{"m":"Mexico Beach","p":[{"n":"Erik Fosshage","r":"Mexico Beach City Council"},{"n":"Linda Hamilton","r":"Mexico Beach City Council"},{"n":"Lisa Logan","r":"Mexico Beach City Council"},{"n":"Richard Wolff","r":"Mayor of Mexico Beach"},{"n":"Steve Cox","r":"Mexico Beach City Council"}]},{"m":"Panama City","p":[{"n":"Allan Branch","r":"Mayor of Panama City"},{"n":"Brian Grainger","r":"Panama City City Council"},{"n":"Janice Lucas","r":"Panama City City Council"},{"n":"Josh Street","r":"Panama City City Council"},{"n":"Robbie Hughes","r":"Panama City City Council"}]},{"m":"Panama City Beach","p":[{"n":"Ethan Register","r":"Panama City Beach City Council"},{"n":"Mary Coburn","r":"Panama City Beach City Council"},{"n":"Michael Jarman","r":"Panama City Beach City Council"},{"n":"Paul Casto","r":"Panama City Beach City Council"},{"n":"Stuart Tettemer","r":"Mayor of Panama City Beach"}]},{"m":"Parker","p":[{"n":"Andrew Kelly","r":"Mayor of Parker"},{"n":"John Haney","r":"Parker City Council"},{"n":"Ronald Chaple","r":"Parker City Council"},{"n":"Stacie Galbreath","r":"Parker City Council"},{"n":"Tonya Barrow","r":"Parker City Council"}]},{"m":"Springfield","p":[{"n":"Cindy Hamre","r":"Springfield City Council"},{"n":"Jack Griffis","r":"Springfield City Council"},{"n":"Jackie Kennington","r":"Springfield City Council"},{"n":"Ralph Hammond","r":"Mayor of Springfield"},{"n":"Richard Chval","r":"Springfield City Council"}]}],"slug":"bay"},"12007":{"county":[{"n":"Amanda Seyfang","r":"Supervisor of Elections, Bradford County"},{"n":"Candace Cragg Osteen","r":"Bradford County School Board"},{"n":"Carolyn Spooner","r":"Commissioner, Bradford County"},{"n":"Chris Dougherty","r":"Commissioner, Bradford County"},{"n":"Daniel Riddick","r":"Commissioner, Bradford County"},{"n":"Denny Thompson","r":"Clerk of Court, Bradford County"},{"n":"Diane Andrews","r":"Commissioner, Bradford County"},{"n":"Gayle Shuford Nicula","r":"Bradford County School Board"},{"n":"Gordon Smith","r":"Sheriff, Bradford County"},{"n":"Julie Johnson","r":"Bradford County School Board"},{"n":"Kenneth Thompson","r":"Commissioner, Bradford County"},{"n":"Kenny Clark","r":"Property Appraiser, Bradford County"},{"n":"Lynn Melvin","r":"Bradford County School Board"},{"n":"Sheila Fayson Cummings","r":"Bradford County School Board"},{"n":"Teresa Phillips","r":"Tax Collector, Bradford County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":1.0}],"sh":[{"d":"FL House District 10","rep":"Chuck Brannan","w":1.0}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":1.0}]},"munis":[{"m":"Brooker","p":[{"n":"Chris Caldwell","r":"Brooker City Council"},{"n":"Gene Melvin","r":"Mayor of Brooker"},{"n":"Joe Tolleson","r":"Brooker City Council"},{"n":"Linda Bennett","r":"Brooker City Council"},{"n":"Randy Starling","r":"Brooker City Council"}]},{"m":"Hampton","p":[{"n":"Dale Wiseman","r":"Mayor of Hampton"},{"n":"Dorothy Shealey","r":"Hampton City Council"},{"n":"Douglas Williamson","r":"Hampton City Council"},{"n":"Janeece Mullett","r":"Hampton City Council"},{"n":"Lillian Sams","r":"Hampton City Council"},{"n":"William Goodge","r":"Hampton City Council"}]},{"m":"Lawtey","p":[{"n":"Amy Blom","r":"Lawtey City Council"},{"n":"Debra Norman","r":"Lawtey City Council"},{"n":"Jimmie L. Scott","r":"Mayor of Lawtey"},{"n":"Virginia Warner","r":"Lawtey City Council"}]},{"m":"Starke","p":[{"n":"Andy Redding","r":"Mayor of Starke"},{"n":"Bob Milner","r":"Starke City Council"},{"n":"Daniel Nugent","r":"Starke City Council"},{"n":"Janice D. Mortimer","r":"Starke City Council"},{"n":"Scott Roberts","r":"Starke City Council"}]}],"slug":"bradford"},"12009":{"county":[{"n":"Dana Blickley","r":"Property Appraiser, Brevard County"},{"n":"Gene Trent","r":"Brevard County School Board"},{"n":"Jason Steele","r":"Commissioner, Brevard County"},{"n":"John Thomas","r":"Brevard County School Board"},{"n":"John Tobia","r":"Commissioner, Brevard County"},{"n":"Katye Campbell","r":"Brevard County School Board"},{"n":"Kristine Zonka","r":"Commissioner, Brevard County"},{"n":"Lisa Cullen","r":"Tax Collector, Brevard County"},{"n":"Lori Scott","r":"Supervisor of Elections, Brevard County"},{"n":"Matt Susin","r":"Brevard County School Board"},{"n":"Megan Wright","r":"Brevard County School Board"},{"n":"Rachel Sadoff","r":"Clerk of Court, Brevard County"},{"n":"Rita Pritchett","r":"Commissioner, Brevard County"},{"n":"Rob Feltner","r":"Commissioner, Brevard County"},{"n":"Robert Ivey","r":"Sheriff, Brevard County"},{"n":"Thad Altman","r":"Commissioner, Brevard County"},{"n":"Tim Bobanic","r":"Supervisor of Elections, Brevard County"},{"n":"Tom Goodson","r":"Commissioner, Brevard County"}],"districts":{"cd":[{"d":"FL-08","rep":"Mike Haridopolos","w":0.831}],"sh":[{"d":"FL House District 31","rep":"Tyler Sirois","w":0.27},{"d":"FL House District 33","rep":"Monique Miller","w":0.188},{"d":"FL House District 32","rep":"Brian Hodgers","w":0.153},{"d":"FL House District 30","rep":"Chase Tramont","w":0.15},{"d":"FL House District 34","rep":"Robbie Brackett","w":0.071}],"ss":[{"d":"FL Senate District 19","rep":"Debbie Mayfield","w":0.628},{"d":"FL Senate District 8","rep":"Tommy Wright","w":0.203}]},"munis":[{"m":"Cape Canaveral","p":[{"n":"Andrea King","r":"Cape Canaveral City Council"},{"n":"Don Willis","r":"Cape Canaveral City Council"},{"n":"Kay Jackson","r":"Cape Canaveral City Council"},{"n":"Tom Shoriak","r":"Cape Canaveral City Council"},{"n":"Wes Morrison","r":"Mayor of Cape Canaveral"}]},{"m":"Cocoa","p":[{"n":"James Goins","r":"Cocoa City Council"},{"n":"Lavander Hearn","r":"Cocoa City Council"},{"n":"Lorraine Koss","r":"Cocoa City Council"},{"n":"Michael C. Blake","r":"Mayor of Cocoa"},{"n":"Patricia Weeks","r":"Cocoa City Council"}]},{"m":"Cocoa Beach","p":[{"n":"Jeremy Hutcherson","r":"Cocoa Beach City Council"},{"n":"Joshua Jackson","r":"Cocoa Beach City Council"},{"n":"Keith Capizzi","r":"Mayor of Cocoa Beach"},{"n":"Skip Williams","r":"Cocoa Beach City Council"},{"n":"Tim Tumulty","r":"Cocoa Beach City Council"}]},{"m":"Grant-Valkaria","p":[{"n":"Brent Jackson","r":"Grant-Valkaria City Council"},{"n":"Dan Faden","r":"Grant-Valkaria City Council"},{"n":"Dan Robino","r":"Grant-Valkaria City Council"},{"n":"Lisette Kolar","r":"Grant-Valkaria City Council"},{"n":"Mike Bradvarevic","r":"Grant-Valkaria City Council"},{"n":"Tom Sammon","r":"Grant-Valkaria City Council"}]},{"m":"Indialantic","p":[{"n":"Carrie Foy","r":"Indialantic City Council"},{"n":"Doug Wright","r":"Indialantic City Council"},{"n":"Julie McKnight","r":"Indialantic City Council"},{"n":"Mark McDermott","r":"Mayor of Indialantic"}]},{"m":"Indian Harbour Beach","p":[{"n":"Adam Dyer","r":"Indian Harbour Beach City Council"},{"n":"Neil Yorio","r":"Indian Harbour Beach City Council"},{"n":"Scott Nickle","r":"Mayor of Indian Harbour Beach"},{"n":"Susan Ruimy","r":"Indian Harbour Beach City Council"}]},{"m":"Malabar","p":[{"n":"Frederick Heiler","r":"Malabar City Council"},{"n":"Jim Clevenger","r":"Malabar City Council"},{"n":"Marisa Acquaviva","r":"Malabar City Council"},{"n":"Mary Hofmeister","r":"Malabar City Council"},{"n":"Steve Rivet","r":"Mayor of Malabar"},{"n":"Wayne Abare","r":"Malabar City Council"}]},{"m":"Melbourne","p":[{"n":"David Neuman","r":"Melbourne City Council"},{"n":"Julie Kennedy","r":"Melbourne City Council"},{"n":"Marcus Smith","r":"Melbourne City Council"},{"n":"Mark A. LaRusso","r":"Melbourne City Council"},{"n":"Mimi Hanley","r":"Melbourne City Council"},{"n":"Paul Alfrey","r":"Mayor of Melbourne"},{"n":"Rachael Bassett","r":"Melbourne City Council"}]},{"m":"Melbourne Beach","p":[{"n":"Alison Dennington","r":"Mayor of Melbourne Beach"},{"n":"Anna Butler","r":"Melbourne Beach City Council"},{"n":"Sherri Quarrie","r":"Melbourne Beach City Council"},{"n":"Terry Cronin","r":"Melbourne Beach City Council"},{"n":"Tim Reed","r":"Melbourne Beach City Council"}]},{"m":"Melbourne Village","p":[{"n":"Bridget Foster","r":"Melbourne Village City Council"},{"n":"David Jones","r":"Melbourne Village City Council"},{"n":"Fred Anderson","r":"Melbourne Village City Council"},{"n":"Gary Ingram","r":"Melbourne Village City Council"},{"n":"Norton Muzzone","r":"Melbourne Village City Council"},{"n":"Sue Ditty","r":"Mayor of Melbourne Village"},{"n":"Valerie Calenda","r":"Melbourne Village City Council"}]},{"m":"Palm Bay","p":[{"n":"Kenny Johnson","r":"Palm Bay City Council"},{"n":"Mike Hammer","r":"Palm Bay City Council"},{"n":"Mike Jaffe","r":"Palm Bay City Council"},{"n":"Robert Medina","r":"Mayor of Palm Bay"}]},{"m":"Palm Shores","p":[{"n":"Barbara Mathewson","r":"Palm Shores City Council"},{"n":"Charles Chambliss","r":"Mayor of Palm Shores"},{"n":"Paul Bonville","r":"Palm Shores City Council"},{"n":"Sharon Secord","r":"Palm Shores City Council"}]},{"m":"Rockledge","p":[{"n":"Duane Daski","r":"Rockledge City Council"},{"n":"Frank T. Forester","r":"Rockledge City Council"},{"n":"Michael Cadore","r":"Rockledge City Council"},{"n":"Sammie Brown Martin","r":"Rockledge City Council"},{"n":"Shaun Ferguson","r":"Rockledge City Council"},{"n":"Tara L. Connor","r":"Rockledge City Council"},{"n":"Thomas J. Price","r":"Mayor of Rockledge"}]},{"m":"Satellite Beach","p":[{"n":"Mark Boyd","r":"Satellite Beach City Council"},{"n":"Mike Chase","r":"Satellite Beach City Council"},{"n":"Steve L. Osmer","r":"Mayor of Satellite Beach"}]},{"m":"Titusville","p":[{"n":"Andrew Connors","r":"Mayor of Titusville"},{"n":"Herman A. Cole","r":"Titusville City Council"},{"n":"Jo Lynn Nelson","r":"Titusville City Council"},{"n":"Megan Moscoso","r":"Titusville City Council"},{"n":"Sarah Stoeckel","r":"Titusville City Council"}]},{"m":"West Melbourne","p":[{"n":"Alexis McGuire","r":"West Melbourne City Council"},{"n":"Andrea Young","r":"Mayor of West Melbourne"},{"n":"Austin Gaylord","r":"West Melbourne City Council"},{"n":"Diana Adams","r":"West Melbourne City Council"},{"n":"Helen Voltz","r":"West Melbourne City Council"},{"n":"Pat Bentley","r":"West Melbourne City Council"},{"n":"Stephen Phrampus","r":"West Melbourne City Council"}]}],"slug":"brevard"},"12011":{"county":[{"n":"Abbey Ajayi","r":"Tax Collector, Broward County"},{"n":"Allen Zeman","r":"Broward County School Board"},{"n":"Beam Furr","r":"Commissioner, Broward County"},{"n":"Brenda Fam","r":"Broward County School Board"},{"n":"Brenda Forman","r":"Clerk of Court, Broward County"},{"n":"Debra \"Debbi\" Hixon","r":"Broward County School Board"},{"n":"Gregory Tony","r":"Sheriff, Broward County"},{"n":"Hazelle Rogers","r":"Commissioner, Broward County"},{"n":"Jeff Holness","r":"Broward County School Board"},{"n":"Joe Scott","r":"Supervisor of Elections, Broward County"},{"n":"Lamar Fisher","r":"Commissioner, Broward County"},{"n":"Lori Alhadeff","r":"Broward County School Board"},{"n":"Mark Bogen","r":"Commissioner, Broward County"},{"n":"Martin Kiar","r":"Property Appraiser, Broward County"},{"n":"Maura McCarthy Bulman","r":"Broward County School Board"},{"n":"Michael Udine","r":"Commissioner, Broward County"},{"n":"Nan Rich","r":"Commissioner, Broward County"},{"n":"Nora Rupert","r":"Broward County School Board"},{"n":"Rebecca Thompson","r":"Broward County School Board"},{"n":"Robert McKinzie","r":"Commissioner, Broward County"},{"n":"Rodney \"Rod\" Velez","r":"Broward County School Board"},{"n":"Sarah Leonardi","r":"Broward County School Board"},{"n":"Steve Geller","r":"Commissioner, Broward County"},{"n":"Tim Ryan","r":"Commissioner, Broward County"},{"n":"Torey Alston","r":"Commissioner, Broward County"}],"districts":{"cd":[{"d":"FL-20","rep":"Vacant","w":0.68},{"d":"FL-25","rep":"Debbie Wasserman Schultz","w":0.159},{"d":"FL-23","rep":"Jared Moskowitz","w":0.088},{"d":"FL-24","rep":"Frederica S. Wilson","w":0.008}],"sh":[{"d":"FL House District 96","rep":"Dan Daley","w":0.638},{"d":"FL House District 103","rep":"Robin Bartleman","w":0.054},{"d":"FL House District 102","rep":"Mike Gottlieb","w":0.04},{"d":"FL House District 101","rep":"Hillary Cassel","w":0.036},{"d":"FL House District 95","rep":"Christine Hunschofsky","w":0.033},{"d":"FL House District 98","rep":"Mitch Rosenwald","w":0.033},{"d":"FL House District 100","rep":"Chip LaMarca","w":0.026},{"d":"FL House District 99","rep":"Daryl Campbell","w":0.023},{"d":"FL House District 105","rep":"Marie Woodson","w":0.02},{"d":"FL House District 97","rep":"Lisa Dunkley","w":0.018},{"d":"FL House District 104","rep":"Felicia Robinson","w":0.017}],"ss":[{"d":"FL Senate District 35","rep":"Barbara Sharief","w":0.73},{"d":"FL Senate District 37","rep":"Jason Pizzo","w":0.07},{"d":"FL Senate District 30","rep":"Tina Polsky","w":0.068},{"d":"FL Senate District 32","rep":"Rosalind Osgood","w":0.068}]},"munis":[{"m":"Coconut Creek","p":[{"n":"Jacqueline L. Railey","r":"Coconut Creek City Council"},{"n":"Jeffrey Wasserman","r":"Mayor of Coconut Creek"},{"n":"John A. Brodie","r":"Coconut Creek City Council"},{"n":"Joshua Rydell","r":"Coconut Creek City Council"},{"n":"Sandra L. Welch","r":"Coconut Creek City Council"}]},{"m":"Cooper City","p":[{"n":"James Curran","r":"Mayor of Cooper City"},{"n":"Jason Smith","r":"Cooper City City Council"},{"n":"Jeremy Katzman","r":"Cooper City City Council"},{"n":"Lisa Mallozzi","r":"Cooper City City Council"},{"n":"Ryan C. Shrouder","r":"Cooper City City Council"}]},{"m":"Coral Springs","p":[{"n":"Joseph McHugh","r":"Coral Springs City Council"},{"n":"Joshua Simmons","r":"Coral Springs City Council"},{"n":"Scott J. Brook","r":"Mayor of Coral Springs"},{"n":"Shawn Michael Cerra","r":"Coral Springs City Council"}]},{"m":"Dania Beach","p":[{"n":"Archibald J. Ryan","r":"Dania Beach City Council"},{"n":"Joyce L. Davis","r":"Mayor of Dania Beach"},{"n":"Lori Lewellen","r":"Dania Beach City Council"},{"n":"Luis Rimoli","r":"Dania Beach City Council"},{"n":"Marco A. Salvino","r":"Dania Beach City Council"}]},{"m":"Davie","p":[{"n":"Daniel J. Alfonso","r":"Davie City Council"},{"n":"Judy Paul","r":"Mayor of Davie"},{"n":"Marlon Luis","r":"Davie City Council"},{"n":"Michelle Whitman","r":"Davie City Council"},{"n":"Susan Starkey","r":"Davie City Council"}]},{"m":"Deerfield Beach","p":[{"n":"Ben Preston","r":"Deerfield Beach City Council"},{"n":"Daniel Shanetzky","r":"Deerfield Beach City Council"},{"n":"Michael Hudak","r":"Deerfield Beach City Council"},{"n":"Thomas Plaut","r":"Deerfield Beach City Council"},{"n":"Todd Drosky","r":"Mayor of Deerfield Beach"}]},{"m":"Fort Lauderdale","p":[{"n":"Ben Sorensen","r":"Fort Lauderdale City Council"},{"n":"Dean J. Trantalis","r":"Mayor of Fort Lauderdale"},{"n":"John C. Herbst","r":"Fort Lauderdale City Council"},{"n":"Pamela Beasley-Pittman","r":"Fort Lauderdale City Council"}]},{"m":"Hallandale Beach","p":[{"n":"Anabelle Lima-Taub","r":"Hallandale Beach City Council"},{"n":"Joy D. Adams","r":"Hallandale Beach City Council"},{"n":"Joy F. Cooper","r":"Mayor of Hallandale Beach"},{"n":"Michele Lazarow","r":"Hallandale Beach City Council"},{"n":"Mike Butler","r":"Hallandale Beach City Council"}]},{"m":"Hillsboro Beach","p":[{"n":"David A. Ravanesi","r":"Hillsboro Beach City Council"},{"n":"Dawn Miller","r":"Mayor of Hillsboro Beach"},{"n":"Heather Berman","r":"Hillsboro Beach City Council"},{"n":"Jane Reiser","r":"Hillsboro Beach City Council"},{"n":"Vinnie Andreano","r":"Hillsboro Beach City Council"}]},{"m":"Hollywood","p":[{"n":"Adam Gruber","r":"Hollywood City Council"},{"n":"Caryl Shuham","r":"Hollywood City Council"},{"n":"Idelma Quintana","r":"Hollywood City Council"},{"n":"Josh Levy","r":"Mayor of Hollywood"},{"n":"Kevin D. Biederman","r":"Hollywood City Council"},{"n":"Peter D. Hernandez","r":"Hollywood City Council"}]},{"m":"Lauderdale Lakes","p":[{"n":"Easton Harrison","r":"Lauderdale Lakes City Council"},{"n":"Karlene Maxwell-Williams","r":"Lauderdale Lakes City Council"},{"n":"Sharon Thomas","r":"Lauderdale Lakes City Council"},{"n":"Tycie Causwell","r":"Lauderdale Lakes City Council"},{"n":"Veronica Edwards Phillips","r":"Mayor of Lauderdale Lakes"}]},{"m":"Lauderdale-By-The-Sea","p":[{"n":"Edmund Malkoon","r":"Mayor of Lauderdale-By-The-Sea"},{"n":"John Graziano","r":"Lauderdale-By-The-Sea City Council"},{"n":"Randy Strauss","r":"Lauderdale-By-The-Sea City Council"},{"n":"Richard DeNapoli","r":"Lauderdale-By-The-Sea City Council"},{"n":"Theo Poulopoulos","r":"Lauderdale-By-The-Sea City Council"}]},{"m":"Lauderhill","p":[{"n":"Denise D. Grant","r":"Mayor of Lauderhill"},{"n":"John Hodgson","r":"Lauderhill City Council"},{"n":"Melissa P. Dunn","r":"Lauderhill City Council"},{"n":"Richard Campbell","r":"Lauderhill City Council"},{"n":"Sarai Martin","r":"Lauderhill City Council"}]},{"m":"Lazy Lake","p":[{"n":"Arnold Aliff","r":"Lazy Lake City Council"},{"n":"Dana Merrill","r":"Lazy Lake City Council"},{"n":"Jeff Grenell","r":"Lazy Lake City Council"},{"n":"Patrick Kaufman","r":"Lazy Lake City Council"},{"n":"Ray Nyhuis","r":"Mayor of Lazy Lake"},{"n":"William Daughtry","r":"Lazy Lake City Council"}]},{"m":"Lighthouse Point","p":[{"n":"Abby J. Stafford","r":"Lighthouse Point City Council"},{"n":"Everett Marshall","r":"Lighthouse Point City Council"},{"n":"Jason D. Joffe","r":"Lighthouse Point City Council"},{"n":"Kyle Van Buskirk","r":"Mayor of Lighthouse Point"},{"n":"Michael S. Long","r":"Lighthouse Point City Council"},{"n":"Patty Petrone","r":"Lighthouse Point City Council"}]},{"m":"Margate","p":[{"n":"Anthony N. Caggiano","r":"Margate City Council"},{"n":"Antonio V. Arserio","r":"Mayor of Margate"},{"n":"Arlene R. Schwartz","r":"Margate City Council"},{"n":"Joanne Simone","r":"Margate City Council"},{"n":"Tommy Ruzzano","r":"Margate City Council"}]},{"m":"Miramar","p":[{"n":"Avril Cherasard","r":"Miramar City Council"},{"n":"Carson Edwards","r":"Miramar City Council"},{"n":"Maxwell B. Chambers","r":"Miramar City Council"},{"n":"Wayne M. Messam","r":"Mayor of Miramar"},{"n":"Yvette Colbourne","r":"Miramar City Council"}]},{"m":"North Lauderdale","p":[{"n":"Darrell Lewis-Ricketts","r":"North Lauderdale City Council"},{"n":"Luke Lewis","r":"North Lauderdale City Council"},{"n":"Mario Bustamante","r":"North Lauderdale City Council"},{"n":"Regina Martin","r":"North Lauderdale City Council"},{"n":"Samson Borgelin","r":"Mayor of North Lauderdale"}]},{"m":"Oakland Park","p":[{"n":"Aisha Gordon","r":"Oakland Park City Council"},{"n":"Fitzgerald Budhoo","r":"Oakland Park City Council"},{"n":"Letitia Newbold","r":"Oakland Park City Council"},{"n":"Steven Arnst","r":"Mayor of Oakland Park"},{"n":"Tim Lonergan","r":"Oakland Park City Council"}]},{"m":"Parkland","p":[{"n":"Cindy Murphy-Salomone","r":"Parkland City Council"},{"n":"Jordan Isrow","r":"Parkland City Council"},{"n":"Neil Kanterman","r":"Parkland City Council"},{"n":"Richard Walker","r":"Mayor of Parkland"},{"n":"Simeon Brier","r":"Parkland City Council"}]},{"m":"Pembroke Park","p":[{"n":"Ashira B. Mohammed","r":"Pembroke Park City Council"},{"n":"Erik Morrissette","r":"Pembroke Park City Council"},{"n":"Geoffrey Jacobs","r":"Mayor of Pembroke Park"},{"n":"Musfika Kashem","r":"Pembroke Park City Council"},{"n":"William Hodgkins","r":"Pembroke Park City Council"}]},{"m":"Pembroke Pines","p":[{"n":"Angelo Castillo","r":"Mayor of Pembroke Pines"},{"n":"Jay D. Schwartz","r":"Pembroke Pines City Council"},{"n":"Maria Rodriguez","r":"Pembroke Pines City Council"},{"n":"Michael Hernandez","r":"Pembroke Pines City Council"},{"n":"Thomas Good","r":"Pembroke Pines City Council"}]},{"m":"Plantation","p":[{"n":"Denise Horland","r":"Plantation City Council"},{"n":"Erik Anderson","r":"Plantation City Council"},{"n":"Jennifer Andreu","r":"Plantation City Council"},{"n":"Louis Reinstein","r":"Plantation City Council"},{"n":"Nick Sortal","r":"Mayor of Plantation"},{"n":"Timothy J. Fadgen","r":"Plantation City Council"}]},{"m":"Pompano Beach","p":[{"n":"Alison Fournier","r":"Pompano Beach City Council"},{"n":"Audrey Fesik","r":"Pompano Beach City Council"},{"n":"Beverly Perkins","r":"Pompano Beach City Council"},{"n":"Darlene Smith","r":"Pompano Beach City Council"},{"n":"Rex Hardin","r":"Mayor of Pompano Beach"},{"n":"Rhonda Eaton","r":"Pompano Beach City Council"}]},{"m":"Sea Ranch Lakes","p":[{"n":"Chad Volkert","r":"Sea Ranch Lakes City Council"},{"n":"Denise Bryan","r":"Sea Ranch Lakes City Council"},{"n":"Douglas Hodgson","r":"Sea Ranch Lakes City Council"},{"n":"Jason Robichaux","r":"Sea Ranch Lakes City Council"},{"n":"Jeffrey Nelson","r":"Mayor of Sea Ranch Lakes"},{"n":"John L. Tomlinson","r":"Sea Ranch Lakes City Council"}]},{"m":"Southwest Ranches","p":[{"n":"Bob Hartmann","r":"Southwest Ranches City Council"},{"n":"David Kuczenski","r":"Southwest Ranches City Council"},{"n":"Gary Jablonski","r":"Southwest Ranches City Council"},{"n":"Jim Allbritton","r":"Southwest Ranches City Council"},{"n":"Steve Breitkreuz","r":"Mayor of Southwest Ranches"}]},{"m":"Sunrise","p":[{"n":"Joseph A. Scuotto","r":"Sunrise City Council"},{"n":"Latoya S. Clarke","r":"Sunrise City Council"},{"n":"Mark A. Douglas","r":"Sunrise City Council"},{"n":"Michael J. Ryan","r":"Mayor of Sunrise"},{"n":"Neil C. Kerch","r":"Sunrise City Council"}]},{"m":"Tamarac","p":[{"n":"Kicia Daniel","r":"Tamarac City Council"},{"n":"Krystal Patterson","r":"Tamarac City Council"},{"n":"Marlon D. Bolton","r":"Tamarac City Council"},{"n":"Michelle J. Gomez","r":"Mayor of Tamarac"},{"n":"Morey Wright","r":"Tamarac City Council"}]},{"m":"West Park","p":[{"n":"Brandon Smith","r":"West Park City Council"},{"n":"Cristina R. Eveillard","r":"West Park City Council"},{"n":"Felicia M. Brunson","r":"Mayor of West Park"},{"n":"Joy B. Smith","r":"West Park City Council"},{"n":"Katrina Touchstone","r":"West Park City Council"}]},{"m":"Weston","p":[{"n":"Byron L. Jaffe","r":"Weston City Council"},{"n":"Fabio Andrade","r":"Weston City Council"},{"n":"Margaret Brown","r":"Mayor of Weston"},{"n":"Mary Molina-Macfie","r":"Weston City Council"}]},{"m":"Wilton Manors","p":[{"n":"Chris Caputo","r":"Wilton Manors City Council"},{"n":"Don D'Arminio","r":"Wilton Manors City Council"},{"n":"Mike Bracchi","r":"Wilton Manors City Council"},{"n":"Paul Rolli","r":"Wilton Manors City Council"},{"n":"Scott Newton","r":"Mayor of Wilton Manors"}]}],"slug":"broward"},"12013":{"county":[{"n":"Becky Trickey-Smith","r":"Tax Collector, Calhoun County"},{"n":"Carla Hand","r":"Clerk of Court, Calhoun County"},{"n":"Carla Peacock","r":"Property Appraiser, Calhoun County"},{"n":"Chris Rogers","r":"Tax Collector, Calhoun County"},{"n":"Clifford Newsome","r":"Calhoun County School Board"},{"n":"Danny Hassig","r":"Calhoun County School Board"},{"n":"Danny Ryals","r":"Calhoun County School Board"},{"n":"Darryl O'Bryan","r":"Commissioner, Calhoun County"},{"n":"Gene Bailey","r":"Commissioner, Calhoun County"},{"n":"Glenn Kimbrel","r":"Sheriff, Calhoun County"},{"n":"Marion Brown","r":"Commissioner, Calhoun County"},{"n":"Michael Bryant","r":"Sheriff, Calhoun County"},{"n":"Ray Howell","r":"Calhoun County School Board"},{"n":"Robin Barfield","r":"Clerk of Court, Calhoun County"},{"n":"Scott Monlyn","r":"Commissioner, Calhoun County"},{"n":"Sharon Chason","r":"Supervisor of Elections, Calhoun County"},{"n":"Thomas Carter","r":"Commissioner, Calhoun County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 5","rep":"Shane Abbott","w":1.0}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":1.0}]},"munis":[{"m":"Altha","p":[{"n":"Charlie McNew","r":"Altha City Council"},{"n":"Jamie Strickland","r":"Altha City Council"},{"n":"Jeffrey Waldorf","r":"Mayor of Altha"},{"n":"Jonathan Connelly","r":"Altha City Council"},{"n":"Linda Barrentine","r":"Altha City Council"}]},{"m":"Blountstown","p":[{"n":"Bill Gaskin","r":"Blountstown City Council"},{"n":"Clifford Jackson","r":"Blountstown City Council"},{"n":"Martha Stephens","r":"Blountstown City Council"},{"n":"Sheila Blackburn","r":"Blountstown City Council"},{"n":"Tony Shoemake","r":"Mayor of Blountstown"}]}],"slug":"calhoun"},"12015":{"county":[{"n":"Bill Prummell","r":"Sheriff, Charlotte County"},{"n":"Bob Segur","r":"Charlotte County School Board"},{"n":"Cara M Reynolds","r":"Charlotte County School Board"},{"n":"Christopher Constance","r":"Commissioner, Charlotte County"},{"n":"John H LeClair","r":"Charlotte County School Board"},{"n":"Joseph Tiseo","r":"Commissioner, Charlotte County"},{"n":"Ken Doherty","r":"Commissioner, Charlotte County"},{"n":"Kim Amontree","r":"Charlotte County School Board"},{"n":"Leah Valenti","r":"Supervisor of Elections, Charlotte County"},{"n":"Paul Polk","r":"Property Appraiser, Charlotte County"},{"n":"Paul Stamoulis","r":"Supervisor of Elections, Charlotte County"},{"n":"Roger Eaton","r":"Clerk of Court, Charlotte County"},{"n":"Stephen R. Deutsch","r":"Commissioner, Charlotte County"},{"n":"Vickie Potts","r":"Tax Collector, Charlotte County"},{"n":"Wendy Atkinson","r":"Charlotte County School Board"},{"n":"William Truex","r":"Commissioner, Charlotte County"}],"districts":{"cd":[{"d":"FL-17","rep":"W. Gregory Steube","w":0.786}],"sh":[{"d":"FL House District 76","rep":"Vanessa Oliver","w":0.591},{"d":"FL House District 75","rep":"Danny Nix","w":0.193}],"ss":[{"d":"FL Senate District 27","rep":"Ben Albritton","w":0.784}]},"munis":[{"m":"Punta Gorda","p":[{"n":"Deborah Lux","r":"Mayor of Punta Gorda"},{"n":"Gregory Julian","r":"Punta Gorda City Council"},{"n":"Janis Denton","r":"Punta Gorda City Council"},{"n":"Jeannine Polk","r":"Punta Gorda City Council"},{"n":"Melissa Lockhart","r":"Punta Gorda City Council"}]}],"slug":"charlotte"},"12017":{"county":[{"n":"Angela Vick","r":"Clerk of Court, Citrus County"},{"n":"Cregg Dalton","r":"Property Appraiser, Citrus County"},{"n":"David Vincent","r":"Sheriff, Citrus County"},{"n":"Diana Finegan","r":"Commissioner, Citrus County"},{"n":"Douglas A. Dodd","r":"Citrus County School Board"},{"n":"Holly Davis","r":"Commissioner, Citrus County"},{"n":"Janice Warren","r":"Tax Collector, Citrus County"},{"n":"Jeffery Kinnard","r":"Commissioner, Citrus County"},{"n":"Joseph \"Joe\" Faherty","r":"Citrus County School Board"},{"n":"Ken Frink","r":"Citrus County School Board"},{"n":"Leslie Cook","r":"Property Appraiser, Citrus County"},{"n":"Maureen Baird","r":"Supervisor of Elections, Citrus County"},{"n":"Michael Prendergast","r":"Sheriff, Citrus County"},{"n":"Rebecca Bays","r":"Commissioner, Citrus County"},{"n":"Ruthie Schlabach","r":"Commissioner, Citrus County"},{"n":"Sandy B. Counts","r":"Citrus County School Board"},{"n":"Thomas Kennedy","r":"Citrus County School Board"},{"n":"Traci Phillips","r":"Clerk of Court, Citrus County"}],"districts":{"cd":[{"d":"FL-12","rep":"Gus M. Bilirakis","w":0.681}],"sh":[{"d":"FL House District 23","rep":"J.J. Grow","w":0.687}],"ss":[{"d":"FL Senate District 11","rep":"Ralph Massullo","w":0.687}]},"munis":[{"m":"Crystal River","p":[{"n":"Chris Ensing","r":"Crystal River City Council"},{"n":"Gabrielle Satchell","r":"Crystal River City Council"},{"n":"Joe Meek","r":"Mayor of Crystal River"},{"n":"Robert Holmes","r":"Crystal River City Council"}]},{"m":"Inverness","p":[{"n":"Cabot McBride","r":"Inverness City Council"},{"n":"Crystal Lizanich","r":"Inverness City Council"},{"n":"Gene Davis","r":"Inverness City Council"},{"n":"Jacquie Hepfer","r":"Inverness City Council"},{"n":"Linda Bega","r":"Inverness City Council"},{"n":"Robert Plaisted","r":"Mayor of Inverness"}]}],"slug":"citrus"},"12019":{"county":[{"n":"Alexandra Compere","r":"Commissioner, Clay County"},{"n":"Ashley Hutchings Gilhousen","r":"Clay County School Board"},{"n":"Beth Clark","r":"Clay County School Board"},{"n":"Betsy Condon","r":"Commissioner, Clay County"},{"n":"Chris Chambless","r":"Supervisor of Elections, Clay County"},{"n":"Diane Hutchings","r":"Tax Collector, Clay County"},{"n":"Erin Skipper","r":"Clay County School Board"},{"n":"James Weeks","r":"Tax Collector, Clay County"},{"n":"Jim Renninger","r":"Commissioner, Clay County"},{"n":"Kristen Burke","r":"Commissioner, Clay County"},{"n":"Michele Hanson","r":"Clay County School Board"},{"n":"Michelle Cook","r":"Sheriff, Clay County"},{"n":"Robert Alvero","r":"Clay County School Board"},{"n":"Tara Green","r":"Clerk of Court, Clay County"},{"n":"Tracy Drake","r":"Property Appraiser, Clay County"}],"districts":{"cd":[{"d":"FL-04","rep":"Aaron Bean","w":0.998}],"sh":[{"d":"FL House District 20","rep":"Judson Sapp","w":0.659},{"d":"FL House District 11","rep":"Sam Garrison","w":0.34}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":1.0}]},"munis":[{"m":"Green Cove Springs","p":[{"n":"Cheryl Starnes","r":"Green Cove Springs City Council"},{"n":"Darren Stutts","r":"Green Cove Springs City Council"},{"n":"Edward Gaw","r":"Green Cove Springs City Council"},{"n":"Gloria Glisson","r":"Green Cove Springs City Council"},{"n":"Matt Johnson","r":"Mayor of Green Cove Springs"}]},{"m":"Keystone Heights","p":[{"n":"Brandon Ludwig","r":"Keystone Heights City Council"},{"n":"Christine Thompson","r":"Keystone Heights City Council"},{"n":"Daniel Lewandowski","r":"Keystone Heights City Council"},{"n":"Nina Rodenroth","r":"Mayor of Keystone Heights"},{"n":"Ryan Knight","r":"Keystone Heights City Council"}]},{"m":"Orange Park","p":[{"n":"Doug Benefield","r":"Orange Park City Council"},{"n":"Glenn Taylor","r":"Orange Park City Council"},{"n":"Kenneth Vogel","r":"Orange Park City Council"},{"n":"Randy Anderson","r":"Orange Park City Council"},{"n":"Winnette Sandlin","r":"Mayor of Orange Park"}]},{"m":"Penney Farms","p":[{"n":"Adrian M. Andrews","r":"Mayor of Penney Farms"},{"n":"Annette Brooks","r":"Penney Farms City Council"},{"n":"Elizabeth Ryder","r":"Penney Farms City Council"},{"n":"Richard Hollowell","r":"Penney Farms City Council"},{"n":"Thomas E. DeVille","r":"Penney Farms City Council"}]}],"slug":"clay"},"12021":{"county":[{"n":"Abe Skinner","r":"Property Appraiser, Collier County"},{"n":"Burt Saunders","r":"Commissioner, Collier County"},{"n":"Chris Hall","r":"Commissioner, Collier County"},{"n":"Crystal Kinzel","r":"Clerk of Court, Collier County"},{"n":"Daniel Kowal","r":"Commissioner, Collier County"},{"n":"Erick Carter","r":"Collier County School Board"},{"n":"Erick Carter","r":"Collier County School Board - Vice Chair, District 4"},{"n":"Jennifer Edwards","r":"Supervisor of Elections, Collier County"},{"n":"Jerry D Rutherford","r":"Collier County School Board"},{"n":"Jerry Rutherford","r":"Collier County School Board - District 1"},{"n":"Kelly Lichter","r":"Collier County School Board"},{"n":"Kelly Mason","r":"Collier County School Board - District 3"},{"n":"Kevin Rambosk","r":"Sheriff, Collier County"},{"n":"Larry Ray","r":"Tax Collector, Collier County"},{"n":"Melissa Blazier","r":"Supervisor of Elections, Collier County"},{"n":"Rick LoCastro","r":"Commissioner, Collier County"},{"n":"Rob Stoneburner","r":"Tax Collector, Collier County"},{"n":"Stephanie Lucarelli","r":"Collier County School Board"},{"n":"Stephanie Lucarelli","r":"Collier County School Board - Chair, District 2"},{"n":"Tim Moshier","r":"Collier County School Board - District 5"},{"n":"Timothy Donald Moshier","r":"Collier County School Board"},{"n":"Vickie Downs","r":"Property Appraiser, Collier County"},{"n":"William McDaniel","r":"Commissioner, Collier County"}],"districts":{"cd":[{"d":"FL-26","rep":"Mario Diaz-Balart","w":0.724},{"d":"FL-19","rep":"Byron Donalds","w":0.056},{"d":"FL-18","rep":"Scott Franklin","w":0.029}],"sh":[{"d":"FL House District 82","rep":"Lauren Melo","w":0.727},{"d":"FL House District 81","rep":"Yvette Benarroch","w":0.067},{"d":"FL House District 80","rep":"Adam Botana","w":0.013}],"ss":[{"d":"FL Senate District 28","rep":"Kathleen Passidomo","w":0.807}]},"munis":[{"m":"Everglades City","p":[{"n":"Howell Grimm","r":"Mayor of Everglades City"}]},{"m":"Marco Island","p":[{"n":"Bonita Schwan","r":"Marco Island City Council"},{"n":"Darrin Palumbo","r":"Marco Island City Council"},{"n":"Deb Henry","r":"Marco Island City Council"},{"n":"Open Position","r":"Marco Island City Council"},{"n":"Rene Champagne","r":"Marco Island City Council"},{"n":"Stephen Gray","r":"Marco Island City Council"},{"n":"Tamara Goehler","r":"Marco Island City Council"}]},{"m":"Naples","p":[{"n":"Berne Barton","r":"Naples City Council"},{"n":"Bill Kramer","r":"Naples City Council"},{"n":"John Krol","r":"Naples City Council"},{"n":"Linda Penniman","r":"Naples City Council"},{"n":"Scott Schultz","r":"Naples City Council"},{"n":"Ted Blankenship","r":"Naples City Council"},{"n":"Teresa L. Heitmann","r":"Mayor of Naples"}]},{"m":"_Unresolved","p":[{"n":"Josh Minton","r":"Everglades City City Council"},{"n":"Michael McComas","r":"Everglades City City Council"},{"n":"Parker Oglesby","r":"Everglades City City Council"},{"n":"Tony Pernas","r":"Everglades City City Council"},{"n":"Vicky Wells","r":"Everglades City City Council"}]}],"slug":"collier"},"12023":{"county":[{"n":"Cherie Dicks Hill","r":"Columbia County School Board"},{"n":"Dana Brady-Giddens","r":"Columbia County School Board"},{"n":"Everett Phillips","r":"Commissioner, Columbia County"},{"n":"Hunter Peeler","r":"Columbia County School Board"},{"n":"James Swisher","r":"Clerk of Court, Columbia County"},{"n":"James Swisher","r":"Clerk of Court, Columbia County"},{"n":"Jeff Hampton","r":"Property Appraiser, Columbia County"},{"n":"Keith Hudson","r":"Columbia County School Board"},{"n":"Kyle Keen","r":"Tax Collector, Columbia County"},{"n":"Mark Hunter","r":"Sheriff, Columbia County"},{"n":"Narragansett Mobley Smith","r":"Columbia County School Board"},{"n":"Robby Hollingsworth","r":"Commissioner, Columbia County"},{"n":"Rocky Ford","r":"Commissioner, Columbia County"},{"n":"Ronald Williams","r":"Commissioner, Columbia County"},{"n":"Timothy Murphy","r":"Commissioner, Columbia County"},{"n":"Tomi Brown","r":"Supervisor of Elections, Columbia County"},{"n":"Wallace Kitchings","r":"Sheriff, Columbia County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":1.0}],"sh":[{"d":"FL House District 10","rep":"Chuck Brannan","w":1.0}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":1.0}]},"munis":[{"m":"Fort White","p":[{"n":"Bill Koon","r":"Fort White City Council"},{"n":"George Thomas","r":"Mayor of Fort White"},{"n":"Kathryn Terry","r":"Fort White City Council"},{"n":"Lonnie Wayne Harrell","r":"Fort White City Council"},{"n":"Monica Merricks","r":"Fort White City Council"}]},{"m":"Lake City","p":[{"n":"James Carter","r":"Lake City City Council"},{"n":"Noah Walker","r":"Mayor of Lake City"},{"n":"Ricky Jernigan","r":"Lake City City Council"},{"n":"Tammy Harris","r":"Lake City City Council"}]}],"slug":"columbia"},"12027":{"county":[{"n":"Asena Mott","r":"DeSoto County School Board"},{"n":"Ashley Coone","r":"Commissioner, DeSoto County"},{"n":"David Williams","r":"Property Appraiser, DeSoto County"},{"n":"Debbie Wertz","r":"Supervisor of Elections, DeSoto County"},{"n":"Debra Burtscher","r":"Tax Collector, DeSoto County"},{"n":"Elton Langford","r":"Commissioner, DeSoto County"},{"n":"James Potter","r":"Sheriff, DeSoto County"},{"n":"Jerod Gross","r":"Commissioner, DeSoto County"},{"n":"Joel Deriso","r":"Commissioner, DeSoto County"},{"n":"Judith Schaefer","r":"Commissioner, DeSoto County"},{"n":"Karen K Chancey","r":"DeSoto County School Board"},{"n":"Kelly Mercer","r":"DeSoto County School Board"},{"n":"Mark Negley","r":"Supervisor of Elections, DeSoto County"},{"n":"Nadia Daughtrey","r":"Clerk of Court, DeSoto County"},{"n":"Sharon T Goodman","r":"DeSoto County School Board"},{"n":"Steven Hickox","r":"Commissioner, DeSoto County"},{"n":"Susan Pooley","r":"Tax Collector, DeSoto County"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":1.0}],"sh":[{"d":"FL House District 76","rep":"Vanessa Oliver","w":1.0}],"ss":[{"d":"FL Senate District 27","rep":"Ben Albritton","w":1.0}]},"munis":[{"m":"Arcadia","p":[{"n":"Dee Washington","r":"Arcadia City Council"},{"n":"Judy Wertz Strickland","r":"Mayor of Arcadia"},{"n":"Keith Keene","r":"Arcadia City Council"},{"n":"Luis Velasco","r":"Arcadia City Council"},{"n":"Robert W. Heine","r":"Arcadia City Council"}]}],"slug":"desoto"},"12029":{"county":[{"n":"Amanda Mills NesSmith","r":"Dixie County School Board"},{"n":"Barbara Higginbotham","r":"Clerk of Court, Dixie County"},{"n":"Cheryl Pridgeon","r":"Dixie County School Board"},{"n":"Daniel Wood","r":"Commissioner, Dixie County"},{"n":"Darbi Chaires","r":"Supervisor of Elections, Dixie County"},{"n":"Darby Butler","r":"Sheriff, Dixie County"},{"n":"David Osteen","r":"Commissioner, Dixie County"},{"n":"Jamie Storey","r":"Commissioner, Dixie County"},{"n":"Lucas Rollison","r":"Dixie County School Board"},{"n":"Mark Hatch","r":"Commissioner, Dixie County"},{"n":"Michelle Cannon","r":"Tax Collector, Dixie County"},{"n":"Paul N Gainey","r":"Dixie County School Board"},{"n":"Paul Stephenson","r":"Commissioner, Dixie County"},{"n":"Robert Lee","r":"Property Appraiser, Dixie County"},{"n":"Starlet Cannon","r":"Supervisor of Elections, Dixie County"},{"n":"Timothy W. \"Tim\" Alexander","r":"Dixie County School Board"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":0.69}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":0.689}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.689}]},"munis":[{"m":"Cross City","p":[{"n":"Angela Carter","r":"Cross City City Council"},{"n":"Charlie Heidelburg","r":"Cross City City Council"},{"n":"Kenneth Lee","r":"Cross City City Council"},{"n":"Kirk Marhefka","r":"Cross City City Council"},{"n":"Ryan Fulford","r":"Mayor of Cross City"}]},{"m":"Horseshoe Beach","p":[{"n":"Brett Selph","r":"Horseshoe Beach City Council"},{"n":"Bryan Dodd","r":"Horseshoe Beach City Council"},{"n":"Jeff Williams","r":"Mayor of Horseshoe Beach"},{"n":"Kelly Brooke Hiers","r":"Horseshoe Beach City Council"},{"n":"Scott Matthews","r":"Horseshoe Beach City Council"}]}],"slug":"dixie"},"12031":{"county":[{"n":"Al Ferraro","r":"Council Member, Duval County"},{"n":"April Carney","r":"Duval County School Board"},{"n":"Brenda Priestly Jackson","r":"Council Member, Duval County"},{"n":"Charlotte Joyce","r":"Duval County School Board"},{"n":"Chris Miller","r":"Council Member, Duval County"},{"n":"Cindy Pearson","r":"Duval County School Board"},{"n":"Danny Becton","r":"Council Member, Duval County"},{"n":"Darryl Willie","r":"Duval County School Board"},{"n":"Jerry Holland","r":"Supervisor of Elections, Duval County"},{"n":"Jerry Holland","r":"Supervisor of Elections, Duval County"},{"n":"Jim Overton","r":"Tax Collector, Duval County"},{"n":"Jimmy Peluso","r":"Council Member, Duval County"},{"n":"Jody Phillips","r":"Clerk of Court, Duval County"},{"n":"Joe Carlucci","r":"Council Member, Duval County"},{"n":"Joyce Morgan","r":"Property Appraiser, Duval County"},{"n":"Ju'Coby Pittman","r":"Council Member, Duval County"},{"n":"Ken Amaro","r":"Council Member, Duval County"},{"n":"Kevin Carrico","r":"Council Member, Duval County"},{"n":"LeAnna Cumber","r":"Council Member, Duval County"},{"n":"Matt Carlucci","r":"Council Member, Duval County"},{"n":"Melody Bolduc","r":"Duval County School Board"},{"n":"Michael Boylan","r":"Council Member, Duval County"},{"n":"Mike Gay","r":"Council Member, Duval County"},{"n":"Mike Hogan","r":"Supervisor of Elections, Duval County"},{"n":"Mike Williams","r":"Sheriff, Duval County"},{"n":"Nick Howland","r":"Council Member, Duval County"},{"n":"Rahman Johnson","r":"Council Member, Duval County"},{"n":"Randy DeFoor","r":"Council Member, Duval County"},{"n":"Randy White","r":"Council Member, Duval County"},{"n":"Reggie Gaffney","r":"Council Member, Duval County"},{"n":"Reginald \"Reggie\" Blount","r":"Duval County School Board"},{"n":"Ronald Salem","r":"Council Member, Duval County"},{"n":"Rory Diamond","r":"Council Member, Duval County"},{"n":"Samuel Newby","r":"Council Member, Duval County"},{"n":"Terrance Freeman","r":"Council Member, Duval County"},{"n":"Tony Ricardo","r":"Duval County School Board"},{"n":"Tyrona Clark-Murray","r":"Council Member, Duval County"},{"n":"William Lahnen","r":"Council Member, Duval County"}],"districts":{"cd":[{"d":"FL-04","rep":"Aaron Bean","w":0.632},{"d":"FL-05","rep":"John H. Rutherford","w":0.293}],"sh":[{"d":"FL House District 15","rep":"Dean Black","w":0.403},{"d":"FL House District 17","rep":"Jessica Baker","w":0.13},{"d":"FL House District 12","rep":"Wyman Duggan","w":0.111},{"d":"FL House District 13","rep":"Angie Nixon","w":0.105},{"d":"FL House District 14","rep":"Kim Daniels","w":0.089},{"d":"FL House District 16","rep":"Kiyan Michael","w":0.086}],"ss":[{"d":"FL Senate District 4","rep":"Clay Yarborough","w":0.652},{"d":"FL Senate District 5","rep":"Tracie Davis","w":0.27}]},"munis":[{"m":"Atlantic Beach","p":[{"n":"Bruce Bole","r":"Atlantic Beach City Council"},{"n":"Candace Kelly","r":"Atlantic Beach City Council"},{"n":"Curtis Ford","r":"Mayor of Atlantic Beach"},{"n":"Jessica Ring","r":"Atlantic Beach City Council"},{"n":"Thomas Grant","r":"Atlantic Beach City Council"}]},{"m":"Baldwin","p":[{"n":"Georgeann L. McKenna","r":"Baldwin City Council"},{"n":"Harry D. Ervin","r":"Baldwin City Council"},{"n":"John A. Knoll","r":"Baldwin City Council"},{"n":"Manuel C. Dunlap","r":"Baldwin City Council"},{"n":"Sean T. Lynch","r":"Mayor of Baldwin"}]},{"m":"Jacksonville","p":[{"n":"Chris Miller","r":"Jacksonville City Council - At-Large Group 5"},{"n":"Donna Deegan","r":"Mayor of Jacksonville"},{"n":"Jimmy Peluso","r":"Jacksonville City Council"},{"n":"Jimmy Peluso","r":"Jacksonville City Council - District 7"},{"n":"Joe Carlucci","r":"Jacksonville City Council"},{"n":"Joe Carlucci","r":"Jacksonville City Council - District 5"},{"n":"Ju'Coby Pittman","r":"Jacksonville City Council"},{"n":"Ju'Coby Pittman","r":"Jacksonville City Council - District 10"},{"n":"Ken Amaro","r":"Jacksonville City Council - District 1"},{"n":"Ken Stephens Amaro","r":"Jacksonville City Council"},{"n":"Kevin Carrico","r":"Jacksonville City Council"},{"n":"Kevin Carrico","r":"Jacksonville City Council - District 4"},{"n":"Matt Carlucci","r":"Jacksonville City Council"},{"n":"Matt Carlucci","r":"Jacksonville City Council - At-Large Group 4"},{"n":"Michael Boylan","r":"Jacksonville City Council"},{"n":"Michael Boylan","r":"Jacksonville City Council - District 6"},{"n":"Mike Gay","r":"Jacksonville City Council"},{"n":"Mike Gay","r":"Jacksonville City Council - District 2"},{"n":"Nick Howland","r":"Jacksonville City Council"},{"n":"Nick Howland","r":"Jacksonville City Council - At-Large Group 3"},{"n":"Rahman Johnson","r":"Jacksonville City Council"},{"n":"Rahman Johnson","r":"Jacksonville City Council - District 14"},{"n":"Randy White","r":"Jacksonville City Council"},{"n":"Randy White","r":"Jacksonville City Council - District 12"},{"n":"Raul Arias","r":"Jacksonville City Council"},{"n":"Raul Arias","r":"Jacksonville City Council - District 11"},{"n":"Reggie Gaffney","r":"Jacksonville City Council"},{"n":"Reggie Gaffney Jr.","r":"Jacksonville City Council - District 8"},{"n":"Ron Salem","r":"Jacksonville City Council"},{"n":"Ronald B. Salem","r":"Jacksonville City Council - At-Large Group 2"},{"n":"Rory Diamond","r":"Jacksonville City Council"},{"n":"Rory Diamond","r":"Jacksonville City Council - District 13"},{"n":"Terrance E. Freeman","r":"Jacksonville City Council"},{"n":"Terrance Freeman","r":"Jacksonville City Council - At-Large Group 1"},{"n":"Tyrona Clark-Murray","r":"Jacksonville City Council"},{"n":"Tyrona Clark-Murray","r":"Jacksonville City Council - District 9"},{"n":"Will Lahnen","r":"Jacksonville City Council"},{"n":"Will Lahnen","r":"Jacksonville City Council - District 3"}]},{"m":"Jacksonville Beach","p":[{"n":"Bill Horn","r":"Jacksonville Beach City Council"},{"n":"Bruce Wouters","r":"Jacksonville Beach City Council"},{"n":"Chris Hoffman","r":"Mayor of Jacksonville Beach"},{"n":"Greg Sutton","r":"Jacksonville Beach City Council"},{"n":"John Wagner","r":"Jacksonville Beach City Council"}]},{"m":"Neptune Beach","p":[{"n":"Brent Rogers","r":"Neptune Beach City Council"},{"n":"Cori Bylund","r":"Mayor of Neptune Beach"},{"n":"Josh Messinger","r":"Neptune Beach City Council"},{"n":"Nia Livingston","r":"Neptune Beach City Council"},{"n":"Tim Horvath","r":"Neptune Beach City Council"}]}],"slug":"duval"},"12033":{"county":[{"n":"Ashlee Hofberger","r":"Commissioner, Escambia County"},{"n":"Carissa Bergosh","r":"Escambia County School Board"},{"n":"Chip Simmons","r":"Sheriff, Escambia County"},{"n":"Chris Jones","r":"Property Appraiser, Escambia County"},{"n":"David Stafford","r":"Supervisor of Elections, Escambia County"},{"n":"David Williams","r":"Escambia County School Board"},{"n":"Gary Peters","r":"Property Appraiser, Escambia County"},{"n":"Jeff Bergosh","r":"Commissioner, Escambia County"},{"n":"Kevin Adams","r":"Escambia County School Board"},{"n":"Lumon May","r":"Commissioner, Escambia County"},{"n":"Michael Kohler","r":"Commissioner, Escambia County"},{"n":"Pamela Childers","r":"Clerk of Court, Escambia County"},{"n":"Paul Fetsko","r":"Escambia County School Board"},{"n":"Robert Bender","r":"Supervisor of Elections, Escambia County"},{"n":"Scott Lunsford","r":"Tax Collector, Escambia County"},{"n":"Steven Barry","r":"Commissioner, Escambia County"},{"n":"Tom Harrell","r":"Escambia County School Board"}],"districts":{"cd":[{"d":"FL-01","rep":"Jimmy Patronis","w":0.663}],"sh":[{"d":"FL House District 1","rep":"Michelle Salzman","w":0.505},{"d":"FL House District 2","rep":"Alex Andrade","w":0.157}],"ss":[{"d":"FL Senate District 1","rep":"Don Gaetz","w":0.662}]},"munis":[{"m":"Century","p":[{"n":"Benjamin Boutwell","r":"Mayor of Century"},{"n":"Henry Cunningham","r":"Century City Council"},{"n":"John Bass","r":"Century City Council"},{"n":"Lizbeth A. Harrison","r":"Century City Council"},{"n":"Shelisa McCall Abraham","r":"Century City Council"}]},{"m":"Pensacola","p":[{"n":"Allison Patton","r":"Pensacola City Council"},{"n":"Casey Jones","r":"Pensacola City Council"},{"n":"Charles Bare","r":"Pensacola City Council"},{"n":"D.C. Reeves","r":"Mayor of Pensacola"},{"n":"Delarian Wiggins","r":"Pensacola City Council"},{"n":"Jared Moore","r":"Pensacola City Council"},{"n":"Jennifer Brahier","r":"Pensacola City Council"},{"n":"Teniadé Broughton","r":"Pensacola City Council"}]}],"slug":"escambia"},"12035":{"county":[{"n":"Andy Dance","r":"Commissioner, Flagler County"},{"n":"Christy Chong","r":"Flagler County School Board"},{"n":"Donald O'Brien","r":"Commissioner, Flagler County"},{"n":"Gregory Hansen","r":"Commissioner, Flagler County"},{"n":"James Gardner","r":"Property Appraiser, Flagler County"},{"n":"Janie Ruddy","r":"Flagler County School Board"},{"n":"Kaiti Lenhart","r":"Supervisor of Elections, Flagler County"},{"n":"Lauren Ramirez","r":"Flagler County School Board"},{"n":"Leann Pennington","r":"Commissioner, Flagler County"},{"n":"Rick Staly","r":"Sheriff, Flagler County"},{"n":"Sally Hunt","r":"Flagler County School Board"},{"n":"Shelly Edmonson","r":"Tax Collector, Flagler County"},{"n":"Suzanne Johnston","r":"Tax Collector, Flagler County"},{"n":"Tom Bexley","r":"Clerk of Court, Flagler County"},{"n":"Will Furry","r":"Flagler County School Board"}],"districts":{"cd":[{"d":"FL-06","rep":"Randy Fine","w":0.889}],"sh":[{"d":"FL House District 19","rep":"Sam Greco","w":0.889}],"ss":[{"d":"FL Senate District 7","rep":"Tom Leek","w":0.889}]},"munis":[{"m":"Beverly Beach","p":[{"n":"James Howard","r":"Beverly Beach City Council"},{"n":"Jeffrey Borges","r":"Beverly Beach City Council"},{"n":"Jeffrey Schuitema","r":"Beverly Beach City Council"},{"n":"Kyle Blake","r":"Beverly Beach City Council"},{"n":"Philip Krakowski","r":"Beverly Beach City Council"},{"n":"Stephen Emmett","r":"Mayor of Beverly Beach"}]},{"m":"Bunnell","p":[{"n":"Catherine D. Robinson","r":"Mayor of Bunnell"},{"n":"David Atkinson","r":"Bunnell City Council"},{"n":"Dean Sechrist","r":"Bunnell City Council"},{"n":"John Rogers","r":"Bunnell City Council"},{"n":"Peter Young","r":"Bunnell City Council"}]},{"m":"Flagler Beach","p":[{"n":"Eric Cooley","r":"Flagler Beach City Council"},{"n":"James Sherman","r":"Flagler Beach City Council"},{"n":"John Cunningham","r":"Flagler Beach City Council"},{"n":"Patti King","r":"Mayor of Flagler Beach"},{"n":"R.J. Santore","r":"Flagler Beach City Council"},{"n":"Scott Spradley","r":"Flagler Beach City Council"}]},{"m":"Marineland","p":[{"n":"Jessica Finch","r":"Marineland City Council"},{"n":"Joseph B. Pinder","r":"Mayor of Marineland"}]},{"m":"Palm Coast","p":[{"n":"Charles A. Gambarao","r":"Palm Coast City Council"},{"n":"Dave Sullivan","r":"Palm Coast City Council"},{"n":"Mike Norris","r":"Mayor of Palm Coast"},{"n":"Theresa Carli Pontieri","r":"Palm Coast City Council"},{"n":"Ty Miller","r":"Palm Coast City Council"}]}],"slug":"flagler"},"12037":{"county":[{"n":"A.J. Smith","r":"Sheriff, Franklin County"},{"n":"Amy Cook","r":"Tax Collector, Franklin County"},{"n":"Anthony Croom","r":"Commissioner, Franklin County"},{"n":"Fonda D. Davis Sr.","r":"Franklin County School Board"},{"n":"Heather Riley","r":"Supervisor of Elections, Franklin County"},{"n":"James Tipton","r":"Property Appraiser, Franklin County"},{"n":"Jared Mock","r":"Franklin County School Board"},{"n":"Jessica Varnes Ward","r":"Commissioner, Franklin County"},{"n":"Melonie Kay Inzetta","r":"Franklin County School Board"},{"n":"Ottice Amison","r":"Commissioner, Franklin County"},{"n":"Pamela Marshall","r":"Franklin County School Board"},{"n":"Rhonda Skipper","r":"Property Appraiser, Franklin County"},{"n":"Rick Watson","r":"Tax Collector, Franklin County"},{"n":"Ricky Jones","r":"Commissioner, Franklin County"},{"n":"Stacy Buck Kirvin","r":"Franklin County School Board"},{"n":"Suzanne Maxwell","r":"Clerk of Court, Franklin County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.434}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":0.399}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.399}]},"munis":[{"m":"Apalachicola","p":[{"n":"Adriane Elliott","r":"Apalachicola City Council"},{"n":"Brenda Ash","r":"Mayor of Apalachicola"},{"n":"Despina George","r":"Apalachicola City Council"},{"n":"Donna Duncan","r":"Apalachicola City Council"},{"n":"Donna Knutson","r":"Apalachicola City Council"}]},{"m":"Carrabelle","p":[{"n":"Anthony Millender","r":"Carrabelle City Council"},{"n":"Keith Walden","r":"Carrabelle City Council"},{"n":"Sebrina Brown","r":"Mayor of Carrabelle"},{"n":"Vance Pedrick","r":"Carrabelle City Council"},{"n":"William Gray","r":"Carrabelle City Council"}]}],"slug":"franklin"},"12039":{"county":[{"n":"Alonzetta Simpkins","r":"Commissioner, Gadsden County"},{"n":"Brenda Holt","r":"Commissioner, Gadsden County"},{"n":"Cathy Johnson","r":"Gadsden County School Board"},{"n":"Charlie Frost","r":"Gadsden County School Board"},{"n":"Eric Hinson","r":"Commissioner, Gadsden County"},{"n":"Kenya Williams","r":"Supervisor of Elections, Gadsden County"},{"n":"Kimblin Nesmith","r":"Commissioner, Gadsden County"},{"n":"Leroy McMillan","r":"Gadsden County School Board"},{"n":"Morris Young","r":"Sheriff, Gadsden County"},{"n":"Nicholas Thomas","r":"Clerk of Court, Gadsden County"},{"n":"Reginald Cunningham","r":"Property Appraiser, Gadsden County"},{"n":"Ronterious Green","r":"Commissioner, Gadsden County"},{"n":"Shawn Wood","r":"Commissioner, Gadsden County"},{"n":"Shirley Knight","r":"Supervisor of Elections, Gadsden County"},{"n":"Stacey Hannigon","r":"Gadsden County School Board"},{"n":"Steve Scott","r":"Gadsden County School Board"},{"n":"Tonjii Wiggins-McGriff","r":"Tax Collector, Gadsden County"},{"n":"W. Dale Summerford","r":"Tax Collector, Gadsden County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 8","rep":"Gallop Franklin","w":1.0}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":1.0}]},"munis":[{"m":"Chattahoochee","p":[{"n":"Amy M. Glass","r":"Chattahoochee City Council"},{"n":"Anquarnette Richardson","r":"Mayor of Chattahoochee"},{"n":"Christopher Moultry","r":"Chattahoochee City Council"},{"n":"Kenneth Kimrey","r":"Chattahoochee City Council"},{"n":"Loubennie A. Williams","r":"Chattahoochee City Council"}]},{"m":"Greensboro","p":[{"n":"Brenda K. Martinez","r":"Greensboro City Council"},{"n":"Jacquelyn R. Barber","r":"Greensboro City Council"},{"n":"Justin Alday","r":"Greensboro City Council"},{"n":"Kimberly A. Boyer","r":"Greensboro City Council"},{"n":"Lamar Alday","r":"Mayor of Greensboro"},{"n":"Micah Nunamaker","r":"Greensboro City Council"}]},{"m":"Gretna","p":[{"n":"Anthony Baker","r":"Mayor of Gretna"},{"n":"Dexter Wright","r":"Gretna City Council"},{"n":"Evelyn Riley Goldwire","r":"Gretna City Council"},{"n":"Gary Russ-Sills","r":"Gretna City Council"},{"n":"James Payne","r":"Gretna City Council"}]},{"m":"Havana","p":[{"n":"Edward Bass","r":"Mayor of Havana"},{"n":"John Bryant","r":"Havana City Council"},{"n":"Landon Seymour","r":"Havana City Council"},{"n":"Lawrence Reed","r":"Havana City Council"},{"n":"Matthew Wesolowski","r":"Havana City Council"},{"n":"Penny Key","r":"Havana City Council"},{"n":"Tabatha Nelson","r":"Havana City Council"}]},{"m":"Midway","p":[{"n":"Braheem Russ","r":"Midway City Council"},{"n":"Charles Williams","r":"Midway City Council"},{"n":"Ella Parker Dickey","r":"Mayor of Midway"},{"n":"NanDrycka King Albert","r":"Midway City Council"},{"n":"Valerie Ford","r":"Midway City Council"}]},{"m":"Quincy","p":[{"n":"Beverly A. Nash","r":"Mayor of Quincy"},{"n":"Devonta Knight","r":"Quincy City Council"},{"n":"Lane Stephens","r":"Quincy City Council"},{"n":"Robin Wood","r":"Quincy City Council"},{"n":"Ronte R. Harris","r":"Quincy City Council"}]}],"slug":"gadsden"},"12041":{"county":[{"n":"Christie McElroy","r":"Gilchrist County School Board"},{"n":"Connie Sanchez","r":"Supervisor of Elections, Gilchrist County"},{"n":"Damon Leggett","r":"Property Appraiser, Gilchrist County"},{"n":"Dustin Deen Lancaster","r":"Gilchrist County School Board"},{"n":"Kenrick Thomas","r":"Commissioner, Gilchrist County"},{"n":"Michael McElroy","r":"Tax Collector, Gilchrist County"},{"n":"Michelle Walker-Crawford","r":"Gilchrist County School Board"},{"n":"Robert Schultz","r":"Sheriff, Gilchrist County"},{"n":"Ronald Smith","r":"Commissioner, Gilchrist County"},{"n":"Sharon Langford","r":"Commissioner, Gilchrist County"},{"n":"Susan P. Owens","r":"Gilchrist County School Board"},{"n":"Tammy Moore","r":"Gilchrist County School Board"},{"n":"Thomas Langford","r":"Commissioner, Gilchrist County"},{"n":"Todd Newton","r":"Clerk of Court, Gilchrist County"},{"n":"William Martin","r":"Commissioner, Gilchrist County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":1.0}],"sh":[{"d":"FL House District 22","rep":"Chad Johnson","w":1.0}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":1.0}]},"munis":[{"m":"Bell","p":[{"n":"Chris Sandlin","r":"Bell City Council"},{"n":"Diana 'Katie' Lovett","r":"Bell City Council"},{"n":"Gary Blankenship","r":"Bell City Council"},{"n":"Michael Moore","r":"Bell City Council"},{"n":"Sandra Moore","r":"Mayor of Bell"}]},{"m":"Trenton","p":[{"n":"Cloud Haley","r":"Trenton City Council"},{"n":"Mary Love Davis","r":"Trenton City Council"},{"n":"Randy Rutter","r":"Trenton City Council"},{"n":"Robbi Coarsey","r":"Mayor of Trenton"},{"n":"Russel Williams","r":"Trenton City Council"}]}],"slug":"gilchrist"},"12043":{"county":[{"n":"Aletris Farnam","r":"Supervisor of Elections, Glades County"},{"n":"Crystal Drake","r":"Glades County School Board"},{"n":"David Hardin","r":"Sheriff, Glades County"},{"n":"Donna Storter Long","r":"Commissioner, Glades County"},{"n":"Gail Jones","r":"Tax Collector, Glades County"},{"n":"Hattie Taylor","r":"Commissioner, Glades County"},{"n":"Jean H. Prowant","r":"Glades County School Board"},{"n":"Jeffrey Patterson","r":"Commissioner, Glades County"},{"n":"Jerry Sapp","r":"Commissioner, Glades County"},{"n":"Kimberly Lynn Clement","r":"Glades County School Board"},{"n":"Larry Luckey, II","r":"Glades County School Board"},{"n":"Lorie Ward","r":"Property Appraiser, Glades County"},{"n":"Patricia B Pearce","r":"Glades County School Board"},{"n":"Tami Simmons","r":"Clerk of Court, Glades County"},{"n":"Timothy Stanley","r":"Commissioner, Glades County"},{"n":"Tony Whidden","r":"Commissioner, Glades County"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":1.0}],"sh":[{"d":"FL House District 83","rep":"Kaylee Tuck","w":1.0}],"ss":[{"d":"FL Senate District 29","rep":"Erin Grall","w":1.0}]},"munis":[{"m":"Moore Haven","p":[{"n":"Alisha Beck","r":"Moore Haven City Council"},{"n":"Bradley Smith","r":"Moore Haven City Council"},{"n":"Marcus Decker","r":"Moore Haven City Council"},{"n":"RaShondra Croskey","r":"Moore Haven City Council"},{"n":"Wayne Browning","r":"Mayor of Moore Haven"}]}],"slug":"glades"},"12045":{"county":[{"n":"Ashley Forehand","r":"Tax Collector, Gulf County"},{"n":"Brooke Wooten","r":"Gulf County School Board"},{"n":"David Rich","r":"Commissioner, Gulf County"},{"n":"Denny Mcglon","r":"Gulf County School Board"},{"n":"Equillar \"Gal\" Gainer","r":"Gulf County School Board"},{"n":"James \"Matt\" Terry","r":"Gulf County School Board"},{"n":"John Hanlon","r":"Supervisor of Elections, Gulf County"},{"n":"Mike Harrison","r":"Sheriff, Gulf County"},{"n":"Mitch Burke","r":"Property Appraiser, Gulf County"},{"n":"Patrick Farrell","r":"Commissioner, Gulf County"},{"n":"Phil McCroan","r":"Commissioner, Gulf County"},{"n":"Rebecca Norris","r":"Clerk of Court, Gulf County"},{"n":"Rhonda Pierce","r":"Supervisor of Elections, Gulf County"},{"n":"Ruby Knox","r":"Gulf County School Board"},{"n":"Sandy Quinn","r":"Commissioner, Gulf County"},{"n":"Shirley Jenkins","r":"Tax Collector, Gulf County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.73}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":0.715}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.715}]},"munis":[{"m":"Port St. Joe","p":[{"n":"Brett Lowry","r":"Port St. Joe City Council"},{"n":"Scott Hoffman","r":"Port St. Joe City Council"},{"n":"Steve P. Kerigan","r":"Port St. Joe City Council"},{"n":"William R. Buzzett","r":"Mayor of Port St. Joe"}]},{"m":"Wewahitchka","p":[{"n":"Brian Cox","r":"Wewahitchka City Council"},{"n":"John Paul","r":"Wewahitchka City Council"},{"n":"Phillip Gaskin","r":"Mayor of Wewahitchka"},{"n":"Ralph M. Fisher","r":"Wewahitchka City Council"},{"n":"Robert C. Pettis","r":"Wewahitchka City Council"}]}],"slug":"gulf"},"12047":{"county":[{"n":"Brian Creech","r":"Sheriff, Hamilton County"},{"n":"Cheryl Deas McCall","r":"Hamilton County School Board"},{"n":"Clayton Goolsby","r":"Property Appraiser, Hamilton County"},{"n":"David Goolsby","r":"Property Appraiser, Hamilton County"},{"n":"Gary Godwin","r":"Hamilton County School Board"},{"n":"J. Harrell Reid","r":"Sheriff, Hamilton County"},{"n":"James Murphy","r":"Commissioner, Hamilton County"},{"n":"Johnny Bullard","r":"Hamilton County School Board"},{"n":"Laura Hutto","r":"Supervisor of Elections, Hamilton County"},{"n":"Leslie Jones","r":"Tax Collector, Hamilton County"},{"n":"Mary Sue Adams","r":"Tax Collector, Hamilton County"},{"n":"Richard McCoy","r":"Commissioner, Hamilton County"},{"n":"Robby Roberson","r":"Commissioner, Hamilton County"},{"n":"Robert Brown","r":"Commissioner, Hamilton County"},{"n":"Sammy McCoy","r":"Hamilton County School Board"},{"n":"Saul Speights","r":"Hamilton County School Board"},{"n":"W. Greg Godwin","r":"Clerk of Court, Hamilton County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":0.997}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":0.999}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.999}]},"munis":[{"m":"Jasper","p":[{"n":"Carlton G. Selph","r":"Jasper City Council"},{"n":"Jay Daigle","r":"Jasper City Council"},{"n":"Jhelecia Hawkins","r":"Mayor of Jasper"},{"n":"Vanessa Smith","r":"Jasper City Council"},{"n":"William S. Mitchell","r":"Jasper City Council"}]},{"m":"Jennings","p":[{"n":"Antonette Crumedy","r":"Jennings City Council"},{"n":"Charles Barrett","r":"Mayor of Jennings"},{"n":"Cynthia Daniels","r":"Jennings City Council"},{"n":"John Prine","r":"Jennings City Council"},{"n":"Philip Jackson","r":"Jennings City Council"}]},{"m":"White Springs","p":[{"n":"Cheryl McCall","r":"White Springs City Council"},{"n":"Nicole Williams","r":"White Springs City Council"},{"n":"Nikki Williams","r":"White Springs City Council"},{"n":"Robert Gamsby","r":"White Springs City Council"},{"n":"Tonja R. Brown","r":"Mayor of White Springs"}]}],"slug":"hamilton"},"12049":{"county":[{"n":"Alisa Lee","r":"Tax Collector, Hardee County"},{"n":"Andrew Brian Smith","r":"Hardee County School Board"},{"n":"April Lambert","r":"Tax Collector, Hardee County"},{"n":"Arnold Lanier","r":"Sheriff, Hardee County"},{"n":"Claire Cornell","r":"Hardee County School Board"},{"n":"Diane Smith","r":"Supervisor of Elections, Hardee County"},{"n":"Judith George","r":"Commissioner, Hardee County"},{"n":"Kathy Crawford","r":"Property Appraiser, Hardee County"},{"n":"Marie Albritton Dasher","r":"Hardee County School Board"},{"n":"Mark Edward Gilliard","r":"Hardee County School Board"},{"n":"Noey Flores","r":"Commissioner, Hardee County"},{"n":"Renee Wyatt","r":"Commissioner, Hardee County"},{"n":"Russell Melendy","r":"Commissioner, Hardee County"},{"n":"Stacy Denise Sharp","r":"Hardee County School Board"},{"n":"Victoria Rogers","r":"Clerk of Court, Hardee County"},{"n":"Vincent Crawford","r":"Sheriff, Hardee County"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":1.0}],"sh":[{"d":"FL House District 83","rep":"Kaylee Tuck","w":1.0}],"ss":[{"d":"FL Senate District 27","rep":"Ben Albritton","w":1.0}]},"munis":[{"m":"Bowling Green","p":[{"n":"David Durastanti","r":"Bowling Green City Council"},{"n":"Francisco Arreola","r":"Bowling Green City Council"},{"n":"Kent Peterson","r":"Bowling Green City Council"},{"n":"N'Kosi L. Jones","r":"Bowling Green City Council"},{"n":"Sam Fite","r":"Mayor of Bowling Green"}]},{"m":"Wauchula","p":[{"n":"Anne Miller","r":"Wauchula City Council"},{"n":"Gary D. Smith","r":"Wauchula City Council"},{"n":"Richard Keith Nadaskay","r":"Mayor of Wauchula"},{"n":"Russell G. Smith","r":"Wauchula City Council"},{"n":"Sherri Albritton","r":"Wauchula City Council"}]},{"m":"Zolfo Springs","p":[{"n":"Didi White","r":"Zolfo Springs City Council"},{"n":"Howard E. Schofield","r":"Zolfo Springs City Council"},{"n":"Martina O. Zuniga","r":"Zolfo Springs City Council"},{"n":"Rodney A. Cannon","r":"Mayor of Zolfo Springs"},{"n":"Sara Ann Schofield","r":"Zolfo Springs City Council"}]}],"slug":"hardee"},"12051":{"county":[{"n":"Amanda S. Nelson","r":"Hendry County School Board"},{"n":"Amy Collins","r":"Tax Collector, Hendry County"},{"n":"Brenda Hoots","r":"Supervisor of Elections, Hendry County"},{"n":"Dena Pittman","r":"Property Appraiser, Hendry County"},{"n":"Dwayne E. Brown","r":"Hendry County School Board"},{"n":"Emma Byrd","r":"Commissioner, Hendry County"},{"n":"Emory Howard","r":"Commissioner, Hendry County"},{"n":"Jon Basquin","r":"Hendry County School Board"},{"n":"Karson Turner","r":"Commissioner, Hendry County"},{"n":"Kimberley Barrineau","r":"Clerk of Court, Hendry County"},{"n":"Michael Atkinson","r":"Commissioner, Hendry County"},{"n":"Mitch Wills","r":"Commissioner, Hendry County"},{"n":"Patrick Langford","r":"Tax Collector, Hendry County"},{"n":"Paul Samerdyke","r":"Hendry County School Board"},{"n":"Ramon Iglesias","r":"Commissioner, Hendry County"},{"n":"Sherry Taylor","r":"Supervisor of Elections, Hendry County"},{"n":"Stephanie Busin","r":"Hendry County School Board"},{"n":"Steve Whidden","r":"Sheriff, Hendry County"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":1.0}],"sh":[{"d":"FL House District 82","rep":"Lauren Melo","w":1.0}],"ss":[{"d":"FL Senate District 28","rep":"Kathleen Passidomo","w":1.0}]},"munis":[{"m":"Clewiston","p":[{"n":"Barbara Edmonds","r":"Clewiston City Council"},{"n":"Hillary Hyslope","r":"Clewiston City Council"},{"n":"James L. Pittman","r":"Mayor of Clewiston"},{"n":"Jason Williams","r":"Clewiston City Council"},{"n":"Mali Gardner","r":"Clewiston City Council"}]},{"m":"LaBelle","p":[{"n":"Barbara Spratt","r":"LaBelle City Council"},{"n":"Hugo Vargas","r":"LaBelle City Council"},{"n":"Jacqueline Ratica","r":"LaBelle City Council"},{"n":"Julie C. Wilkins","r":"Mayor of LaBelle"},{"n":"Kevin Holland","r":"LaBelle City Council"}]}],"slug":"hendry"},"12053":{"county":[{"n":"Alvin Nienhuis","r":"Sheriff, Hernando County"},{"n":"Amy Blackburn","r":"Tax Collector, Hernando County"},{"n":"Brian Hawkins","r":"Commissioner, Hernando County"},{"n":"Denise LaVancher","r":"Supervisor of Elections, Hernando County"},{"n":"Douglas Chorvat","r":"Clerk of Court, Hernando County"},{"n":"Elizabeth Narverud","r":"Commissioner, Hernando County"},{"n":"John Allocco","r":"Commissioner, Hernando County"},{"n":"John Emerson","r":"Property Appraiser, Hernando County"},{"n":"John Mitten","r":"Commissioner, Hernando County"},{"n":"Kayce Hawkins","r":"Hernando County School Board"},{"n":"Mark C. Johnson","r":"Hernando County School Board"},{"n":"Michelle Bonczek","r":"Hernando County School Board"},{"n":"Randolph Mazourek","r":"Property Appraiser, Hernando County"},{"n":"Sally Daniel","r":"Tax Collector, Hernando County"},{"n":"Shannon Rodriguez","r":"Hernando County School Board"},{"n":"Shirley Anderson","r":"Supervisor of Elections, Hernando County"},{"n":"Steven Champion","r":"Commissioner, Hernando County"},{"n":"Susan D. Duval","r":"Hernando County School Board"}],"districts":{"cd":[{"d":"FL-12","rep":"Gus M. Bilirakis","w":0.698}],"sh":[{"d":"FL House District 52","rep":"Samantha Scott","w":0.421},{"d":"FL House District 53","rep":"Jeff Holcomb","w":0.273}],"ss":[{"d":"FL Senate District 11","rep":"Ralph Massullo","w":0.694}]},"munis":[{"m":"Brooksville","p":[{"n":"Betty Erhard","r":"Brooksville City Council"},{"n":"Christa Tanner","r":"Mayor of Brooksville"},{"n":"J.W. McKethan","r":"Brooksville City Council"},{"n":"Louis Hallal","r":"Brooksville City Council"},{"n":"Thomas Bronson","r":"Brooksville City Council"}]}],"slug":"hernando"},"12055":{"county":[{"n":"Arlene Tuck","r":"Commissioner, Highlands County"},{"n":"C. Raymond McIntyre","r":"Property Appraiser, Highlands County"},{"n":"Chris Campbell","r":"Commissioner, Highlands County"},{"n":"Don Elwell","r":"Commissioner, Highlands County"},{"n":"Donna Howerton","r":"Highlands County School Board"},{"n":"Eric Zwayer","r":"Tax Collector, Highlands County"},{"n":"Isaac Durrance","r":"Highlands County School Board"},{"n":"Jerome Kaszubowski","r":"Clerk of Court, Highlands County"},{"n":"Karen Healy","r":"Supervisor of Elections, Highlands County"},{"n":"Kathleen Rapp","r":"Commissioner, Highlands County"},{"n":"Kevin Roberts","r":"Commissioner, Highlands County"},{"n":"Mason Whidden","r":"Highlands County School Board"},{"n":"Nicole Radonski","r":"Highlands County School Board"},{"n":"Paul Blackman","r":"Sheriff, Highlands County"},{"n":"Reese Martin","r":"Highlands County School Board"},{"n":"Scott Kirouac","r":"Commissioner, Highlands County"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":1.0}],"sh":[{"d":"FL House District 83","rep":"Kaylee Tuck","w":1.0}],"ss":[{"d":"FL Senate District 29","rep":"Erin Grall","w":1.0}]},"munis":[{"m":"Avon Park","p":[{"n":"Berniece Taylor","r":"Avon Park City Council"},{"n":"Brittany McGuire","r":"Avon Park City Council"},{"n":"Garrett Anderson","r":"Mayor of Avon Park"},{"n":"Jim Barnard","r":"Avon Park City Council"},{"n":"Michelle Mercure","r":"Avon Park City Council"}]},{"m":"Lake Placid","p":[{"n":"Colleen Charles","r":"Mayor of Lake Placid"},{"n":"Debra Worley","r":"Lake Placid City Council"},{"n":"Joy Eberhardt","r":"Lake Placid City Council"},{"n":"Nell Frewin-Hays","r":"Lake Placid City Council"}]},{"m":"Sebring","p":[{"n":"David Leidel","r":"Sebring City Council"},{"n":"Harrison Havery","r":"Sebring City Council"},{"n":"John C. Shoop","r":"Mayor of Sebring"},{"n":"Josh Stewart","r":"Sebring City Council"},{"n":"Rebekah Kogelschatz","r":"Sebring City Council"},{"n":"Roland Bishop","r":"Sebring City Council"}]}],"slug":"highlands"},"12057":{"county":[{"n":"Bob Henriquez","r":"Property Appraiser, Hillsborough County"},{"n":"Chad Chronister","r":"Sheriff, Hillsborough County"},{"n":"Christine Miller","r":"Commissioner, Hillsborough County"},{"n":"Cindy Stuart","r":"Clerk of Court, Hillsborough County"},{"n":"Craig Latimer","r":"Supervisor of Elections, Hillsborough County"},{"n":"Donna Cameron-Cepeda","r":"Commissioner, Hillsborough County"},{"n":"Doug Belden","r":"Tax Collector, Hillsborough County"},{"n":"Gwen Myers","r":"Commissioner, Hillsborough County"},{"n":"Harry Cohen","r":"Commissioner, Hillsborough County"},{"n":"Henry Washington","r":"Hillsborough County School Board"},{"n":"Jessica Vaughn","r":"Hillsborough County School Board"},{"n":"Joshua Wostal","r":"Commissioner, Hillsborough County"},{"n":"Ken Hagan","r":"Commissioner, Hillsborough County"},{"n":"Lynn Gray","r":"Hillsborough County School Board"},{"n":"Nadia Combs","r":"Hillsborough County School Board"},{"n":"Nancy Millan","r":"Tax Collector, Hillsborough County"},{"n":"Patricia \"Patti\" Rendon","r":"Hillsborough County School Board"},{"n":"Patricia Kemp","r":"Commissioner, Hillsborough County"},{"n":"Stacy Hahn","r":"Hillsborough County School Board"}],"districts":{"cd":[{"d":"FL-16","rep":"Vern Buchanan","w":0.322},{"d":"FL-15","rep":"Laurel M. Lee","w":0.305},{"d":"FL-14","rep":"Kathy Castor","w":0.187}],"sh":[{"d":"FL House District 69","rep":"Danny Alvarez","w":0.2},{"d":"FL House District 68","rep":"Lawrence McClure","w":0.192},{"d":"FL House District 70","rep":"Michael Owen","w":0.09},{"d":"FL House District 67","rep":"Fentrice Driskell","w":0.09},{"d":"FL House District 66","rep":"Traci Koster","w":0.085},{"d":"FL House District 62","rep":"Michele Rayner","w":0.051},{"d":"FL House District 65","rep":"Karen Gonzalez Pittman","w":0.04},{"d":"FL House District 63","rep":"Dianne Hart-Lowman","w":0.034},{"d":"FL House District 64","rep":"Susan Valdés","w":0.034}],"ss":[{"d":"FL Senate District 20","rep":"Jim Boyd","w":0.271},{"d":"FL Senate District 23","rep":"Danny Burgess","w":0.227},{"d":"FL Senate District 14","rep":"Brian Nathan","w":0.171},{"d":"FL Senate District 16","rep":"Darryl Rouson","w":0.146}]},"munis":[{"m":"Plant City","p":[{"n":"Jason Jones","r":"Plant City City Council"},{"n":"John L. Haney","r":"Plant City City Council"},{"n":"Karen Kerr","r":"Plant City City Council"},{"n":"Mary Thomas Mathis","r":"Plant City City Council"},{"n":"Nathan A. Kilton","r":"Mayor of Plant City"}]},{"m":"Tampa","p":[{"n":"Alan Clendenin","r":"Tampa City Council - At-Large Chairman"},{"n":"Bill Carlson","r":"Tampa City Council"},{"n":"Bill Carlson","r":"Tampa City Council - District 4"},{"n":"Charlie Miranda","r":"Tampa City Council"},{"n":"Charlie Miranda","r":"Tampa City Council - District 6"},{"n":"Guido Maniscalco","r":"Tampa City Council"},{"n":"Guido Maniscalco","r":"Tampa City Council - At-Large"},{"n":"Gwendolyn Henderson","r":"Tampa City Council"},{"n":"Jane Castor","r":"Mayor of Tampa"},{"n":"Luis E. Viera","r":"Tampa City Council"},{"n":"Luis Viera","r":"Tampa City Council - District 7"},{"n":"Lynn Hurtak","r":"Tampa City Council"},{"n":"Lynn Hurtak","r":"Tampa City Council - At-Large"},{"n":"Naya Young","r":"Tampa City Council - District 5"}]},{"m":"Temple Terrace","p":[{"n":"Alison Fernandez","r":"Temple Terrace City Council"},{"n":"Andrew R. Ross","r":"Mayor of Temple Terrace"},{"n":"Erik Kravets","r":"Temple Terrace City Council"},{"n":"Gil Schisler","r":"Temple Terrace City Council"},{"n":"James Chambers","r":"Temple Terrace City Council"}]}],"slug":"hillsborough"},"12059":{"county":[{"n":"Brandon Newsom","r":"Commissioner, Holmes County"},{"n":"Bryan Bell","r":"Property Appraiser, Holmes County"},{"n":"Charley Wilson","r":"Holmes County School Board"},{"n":"Clint Erickson","r":"Commissioner, Holmes County"},{"n":"Derek Worley","r":"Holmes County School Board"},{"n":"Earl Stafford","r":"Commissioner, Holmes County"},{"n":"Harry Bell","r":"Tax Collector, Holmes County"},{"n":"Howard Williams","r":"Supervisor of Elections, Holmes County"},{"n":"Jeff Good","r":"Commissioner, Holmes County"},{"n":"John Tate","r":"Sheriff, Holmes County"},{"n":"Leesa Manning Lee","r":"Holmes County School Board"},{"n":"Natalie Motley Miller","r":"Holmes County School Board"},{"n":"Phillip Music","r":"Commissioner, Holmes County"},{"n":"Samuel Bailey","r":"Clerk of Court, Holmes County"},{"n":"Therisa Meadows","r":"Supervisor of Elections, Holmes County"},{"n":"Wilburn Baker","r":"Holmes County School Board"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 5","rep":"Shane Abbott","w":1.0}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":1.0}]},"munis":[{"m":"Bonifay","p":[{"n":"Eddie Dixon","r":"Bonifay City Council"},{"n":"James W. Sellers","r":"Bonifay City Council"},{"n":"Larry Cook","r":"Mayor of Bonifay"},{"n":"Rick Crews","r":"Bonifay City Council"},{"n":"Shelley Carroll","r":"Bonifay City Council"}]},{"m":"Esto","p":[{"n":"Donna Davis","r":"Esto City Council"},{"n":"Gregg Wells","r":"Esto City Council"},{"n":"Joshua Davenport","r":"Esto City Council"}]},{"m":"Noma","p":[{"n":"Betty Forthman","r":"Noma City Council"},{"n":"Daniel Arrant","r":"Noma City Council"},{"n":"Eric Hudson","r":"Noma City Council"},{"n":"Literman Joseph","r":"Noma City Council"}]},{"m":"Ponce De Leon","p":[{"n":"Ashley Johnson","r":"Ponce De Leon City Council"},{"n":"Johnny Sutton","r":"Ponce De Leon City Council"},{"n":"Kimberly Mason","r":"Ponce De Leon City Council"},{"n":"Laura Johnson","r":"Ponce De Leon City Council"},{"n":"Shane Busby","r":"Mayor of Ponce De Leon"},{"n":"William Glenister","r":"Ponce De Leon City Council"}]},{"m":"Westville","p":[{"n":"BJ Taunton","r":"Westville City Council"},{"n":"Brittney Simmons","r":"Westville City Council"},{"n":"Samanatha Webster","r":"Westville City Council"},{"n":"Stephen L. Herrington","r":"Mayor of Westville"},{"n":"Susan Bergeron","r":"Westville City Council"}]}],"slug":"holmes"},"12061":{"county":[{"n":"Carole Jean Jordan","r":"Tax Collector, Indian River County"},{"n":"David Dyer","r":"Indian River County School Board"},{"n":"Deryl Loar","r":"Commissioner, Indian River County"},{"n":"Eric Flowers","r":"Sheriff, Indian River County"},{"n":"Gene Posca","r":"Indian River County School Board"},{"n":"Joseph Earman","r":"Commissioner, Indian River County"},{"n":"Joseph Flescher","r":"Commissioner, Indian River County"},{"n":"Laura Moss","r":"Commissioner, Indian River County"},{"n":"Leslie Swan","r":"Supervisor of Elections, Indian River County"},{"n":"Peggy Jones","r":"Indian River County School Board"},{"n":"Ryan Butler","r":"Clerk of Court, Indian River County"},{"n":"Susan Adams","r":"Commissioner, Indian River County"},{"n":"Teri Lee Barenborg","r":"Indian River County School Board"},{"n":"Wesley Davis","r":"Property Appraiser, Indian River County"}],"districts":{"cd":[{"d":"FL-08","rep":"Mike Haridopolos","w":0.873}],"sh":[{"d":"FL House District 34","rep":"Robbie Brackett","w":0.875}],"ss":[{"d":"FL Senate District 29","rep":"Erin Grall","w":0.875}]},"munis":[{"m":"Fellsmere","p":[{"n":"Fernando Herrera","r":"Fellsmere City Council"},{"n":"Inocensia Hernandez","r":"Fellsmere City Council"},{"n":"Jessica Salgado","r":"Mayor of Fellsmere"},{"n":"Shayla Macias","r":"Fellsmere City Council"}]},{"m":"Indian River Shores","p":[{"n":"Brian T. Foley","r":"Mayor of Indian River Shores"},{"n":"James Altieri","r":"Indian River Shores City Council"},{"n":"Jesse L. 'Sam' Carroll","r":"Indian River Shores City Council"},{"n":"Peter A. Tedesko","r":"Indian River Shores City Council"},{"n":"Robert 'Bob' F. Auwaerter","r":"Indian River Shores City Council"}]},{"m":"Orchid","p":[{"n":"Daniel McEvoy","r":"Orchid City Council"},{"n":"James Raphalian","r":"Orchid City Council"},{"n":"John Heanue","r":"Orchid City Council"},{"n":"Paul Knapp","r":"Orchid City Council"},{"n":"Robert J. Gibbons","r":"Mayor of Orchid"}]},{"m":"Sebastian","p":[{"n":"Bob McPartlan","r":"Sebastian City Council"},{"n":"Christopher R. Nunn","r":"Sebastian City Council"},{"n":"Ed Dodd","r":"Sebastian City Council"},{"n":"Frederick Jones","r":"Mayor of Sebastian"},{"n":"Sherrie Matthews","r":"Sebastian City Council"}]},{"m":"Vero Beach","p":[{"n":"Aaron Vos","r":"Vero Beach City Council"},{"n":"John Cotugno","r":"Mayor of Vero Beach"},{"n":"John M. Carroll","r":"Vero Beach City Council"},{"n":"Linda Moore","r":"Vero Beach City Council"},{"n":"Taylor Dingle","r":"Vero Beach City Council"}]}],"slug":"indian-river"},"12063":{"county":[{"n":"Alex McKinnie","r":"Commissioner, Jackson County"},{"n":"CHRISTOPHER M JOHNSON","r":"Jackson County School Board"},{"n":"Carol Dunaway","r":"Supervisor of Elections, Jackson County"},{"n":"Chephus D. Granberry","r":"Jackson County School Board"},{"n":"Clayton Rooks","r":"Clerk of Court, Jackson County"},{"n":"Donald Edenfield","r":"Sheriff, Jackson County"},{"n":"Edward Crutchfield","r":"Commissioner, Jackson County"},{"n":"James Peacock","r":"Commissioner, Jackson County"},{"n":"Jamey Westbrook","r":"Commissioner, Jackson County"},{"n":"Mary Murdock","r":"Tax Collector, Jackson County"},{"n":"Michael \"M.J.\" Jackson","r":"Jackson County School Board"},{"n":"Paul Donofro","r":"Commissioner, Jackson County"},{"n":"Rebecca Morris-Haid","r":"Property Appraiser, Jackson County"},{"n":"Rex Torbett","r":"Jackson County School Board"},{"n":"Tony Pumphrey","r":"Jackson County School Board"},{"n":"Willie Spires","r":"Commissioner, Jackson County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 5","rep":"Shane Abbott","w":1.0}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":1.0}]},"munis":[{"m":"Alford","p":[{"n":"Brad Griffin","r":"Alford City Council"},{"n":"Daniel Warren","r":"Alford City Council"},{"n":"George Gay","r":"Mayor of Alford"},{"n":"Somer Holland","r":"Alford City Council"},{"n":"Stephanie Jenkins","r":"Alford City Council"}]},{"m":"Bascom","p":[{"n":"Betty James","r":"Bascom City Council"},{"n":"Billy James","r":"Mayor of Bascom"},{"n":"Gernard Russ","r":"Bascom City Council"},{"n":"Tony Pelham","r":"Bascom City Council"}]},{"m":"Campbellton","p":[{"n":"Conswellor White","r":"Campbellton City Council"},{"n":"Danny Taylor","r":"Campbellton City Council"},{"n":"Douglas Cotton","r":"Mayor of Campbellton"},{"n":"Kenneth Fey","r":"Campbellton City Council"},{"n":"Pamela Williams","r":"Campbellton City Council"}]},{"m":"Cottondale","p":[{"n":"Carroll Benefield","r":"Cottondale City Council"},{"n":"Dennis Sloan","r":"Cottondale City Council"},{"n":"Jerrard Deese","r":"Cottondale City Council"},{"n":"Thomas T. Daniel","r":"Cottondale City Council"}]},{"m":"Graceville","p":[{"n":"Arthur P.W. Obar","r":"Mayor of Graceville"},{"n":"Curtis Pinkard","r":"Graceville City Council"},{"n":"John McClendon","r":"Graceville City Council"},{"n":"Marshall Davis","r":"Graceville City Council"},{"n":"Walter Olds","r":"Graceville City Council"}]},{"m":"Grand Ridge","p":[{"n":"Catelyn Sprague","r":"Grand Ridge City Council"},{"n":"Chris Harrell","r":"Mayor of Grand Ridge"},{"n":"Chris Wright","r":"Grand Ridge City Council"},{"n":"Kim Applewhite","r":"Grand Ridge City Council"},{"n":"Tim Baggett","r":"Grand Ridge City Council"}]},{"m":"Greenwood","p":[{"n":"Ben Rogers","r":"Greenwood City Council"},{"n":"Bryan Johnson","r":"Mayor of Greenwood"},{"n":"Charles Sanders","r":"Greenwood City Council"},{"n":"Jacky Ditty","r":"Greenwood City Council"}]},{"m":"Jacob City","p":[{"n":"Donna Pittman","r":"Jacob City City Council"},{"n":"Ernest Hall","r":"Jacob City City Council"},{"n":"Felix George","r":"Mayor of Jacob City"},{"n":"Jonitha Williams","r":"Jacob City City Council"},{"n":"Josephine Henderson","r":"Jacob City City Council"}]},{"m":"Malone","p":[{"n":"Billy Smith","r":"Malone City Council"},{"n":"Brandon Watford","r":"Mayor of Malone"},{"n":"Florence Jackson","r":"Malone City Council"},{"n":"Sallie Gibson","r":"Malone City Council"},{"n":"Terry Taylor","r":"Malone City Council"}]},{"m":"Marianna","p":[{"n":"Allen Ward","r":"Marianna City Council"},{"n":"Kenneth Hamilton","r":"Marianna City Council"},{"n":"Rick Pettis","r":"Marianna City Council"},{"n":"Rico Williams","r":"Marianna City Council"},{"n":"Travis Ephriam","r":"Mayor of Marianna"}]},{"m":"Sneads","p":[{"n":"Kay Neel","r":"Sneads City Council"},{"n":"Mike Weeks","r":"Sneads City Council"},{"n":"Timothy Perry","r":"Sneads City Council"}]}],"slug":"jackson"},"12065":{"county":[{"n":"\"Joy Beth\" Frisby","r":"Jefferson County School Board"},{"n":"Angela Gray","r":"Property Appraiser, Jefferson County"},{"n":"Benjamin White","r":"Commissioner, Jefferson County"},{"n":"Bill Brumfield","r":"Jefferson County School Board"},{"n":"Brenda Wirick","r":"Jefferson County School Board"},{"n":"Cecil Hightower","r":"Clerk of Court, Jefferson County"},{"n":"Chris Tuten","r":"Commissioner, Jefferson County"},{"n":"Gene Hall","r":"Commissioner, Jefferson County"},{"n":"J.T. Surles","r":"Commissioner, Jefferson County"},{"n":"Jason Welty","r":"Clerk of Court, Jefferson County"},{"n":"Lois Howell-Hunter","r":"Tax Collector, Jefferson County"},{"n":"Mac McNeill","r":"Sheriff, Jefferson County"},{"n":"Mags Flynt","r":"Jefferson County School Board"},{"n":"Michelle Milligan","r":"Supervisor of Elections, Jefferson County"},{"n":"Shanna Boutwell","r":"Tax Collector, Jefferson County"},{"n":"Tyler McNeill","r":"Supervisor of Elections, Jefferson County"},{"n":"Willie Ann Dickey","r":"Jefferson County School Board"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.91}],"sh":[{"d":"FL House District 9","rep":"Allison Tant","w":0.558},{"d":"FL House District 7","rep":"Jason Shoaf","w":0.353}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.911}]},"munis":[{"m":"Monticello","p":[{"n":"Brian Bachman","r":"Monticello City Council"},{"n":"George Evans","r":"Monticello City Council"},{"n":"Gloria Cox","r":"Monticello City Council"},{"n":"John S. Jones","r":"Mayor of Monticello"}]}],"slug":"jefferson"},"12067":{"county":[{"n":"Alicia Walker","r":"Commissioner, Lafayette County"},{"n":"Anthony Adams","r":"Commissioner, Lafayette County"},{"n":"Brian Lamb","r":"Sheriff, Lafayette County"},{"n":"Charles Hewett","r":"Tax Collector, Lafayette County"},{"n":"Darren Driver","r":"Lafayette County School Board"},{"n":"Earnest Jones","r":"Commissioner, Lafayette County"},{"n":"Jeff Walker","r":"Lafayette County School Board"},{"n":"Kimberly Adams","r":"Lafayette County School Board"},{"n":"Lance Lamb","r":"Commissioner, Lafayette County"},{"n":"Marion McCray","r":"Lafayette County School Board"},{"n":"Mason Byrd","r":"Commissioner, Lafayette County"},{"n":"Steve Land","r":"Clerk of Court, Lafayette County"},{"n":"Taylor McGrew","r":"Lafayette County School Board"},{"n":"Timothy Walker","r":"Property Appraiser, Lafayette County"},{"n":"Travis Hart","r":"Supervisor of Elections, Lafayette County"},{"n":"Wayne McCray","r":"Property Appraiser, Lafayette County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":0.921},{"d":"FL-02","rep":"Neal P. Dunn","w":0.079}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":1.0}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":1.0}]},"munis":[{"m":"Mayo","p":[{"n":"Ann Murphy","r":"Mayor of Mayo"},{"n":"Jessica Lawson","r":"Mayo City Council"},{"n":"Mamie A. Thomas","r":"Mayo City Council"},{"n":"Virginia McCray","r":"Mayo City Council"},{"n":"Wayne Hamlin","r":"Mayo City Council"}]}],"slug":"lafayette"},"12069":{"county":[{"n":"Alan Hays","r":"Supervisor of Elections, Lake County"},{"n":"Bill Mathias","r":"Lake County School Board"},{"n":"Carey Baker","r":"Property Appraiser, Lake County"},{"n":"David Jordan","r":"Tax Collector, Lake County"},{"n":"Gary Cooney","r":"Clerk of Court, Lake County"},{"n":"Kirby Smith","r":"Commissioner, Lake County"},{"n":"Leslie Campione","r":"Commissioner, Lake County"},{"n":"Marc A. Dodd","r":"Lake County School Board"},{"n":"Mark Jordan","r":"Property Appraiser, Lake County"},{"n":"Mollie R. Cunningham","r":"Lake County School Board"},{"n":"Peyton Grinnell","r":"Sheriff, Lake County"},{"n":"Sean Parks","r":"Commissioner, Lake County"},{"n":"Stephanie Ann Luke","r":"Lake County School Board"},{"n":"Tyler Brandeburg","r":"Lake County School Board"}],"districts":{"cd":[{"d":"FL-11","rep":"Daniel Webster","w":0.567},{"d":"FL-06","rep":"Randy Fine","w":0.432}],"sh":[{"d":"FL House District 25","rep":"Taylor Yarkosky","w":0.429},{"d":"FL House District 27","rep":"Richard Gentry","w":0.305},{"d":"FL House District 26","rep":"Nan Cobb","w":0.266}],"ss":[{"d":"FL Senate District 13","rep":"Keith Truenow","w":1.0}]},"munis":[{"m":"Astatula","p":[{"n":"Cheryl Marinelli","r":"Astatula City Council"},{"n":"Kay MacQueen","r":"Astatula City Council"},{"n":"Kim Hanawalt","r":"Astatula City Council"},{"n":"Susan Richert","r":"Astatula City Council"},{"n":"Zane Teeters","r":"Mayor of Astatula"}]},{"m":"Clermont","p":[{"n":"Alison Strange","r":"Clermont City Council"},{"n":"Bryan L. Bain","r":"Clermont City Council"},{"n":"Chandra L. Myers","r":"Clermont City Council"},{"n":"Tim Murry","r":"Mayor of Clermont"},{"n":"William Petersen","r":"Clermont City Council"}]},{"m":"Eustis","p":[{"n":"Emily A. Lee","r":"Mayor of Eustis"},{"n":"Gary Ashcraft","r":"Eustis City Council"},{"n":"George Asbate","r":"Eustis City Council"},{"n":"Michael Holland","r":"Eustis City Council"},{"n":"Willie Hawkins","r":"Eustis City Council"}]},{"m":"Fruitland Park","p":[{"n":"Christopher Cheshire","r":"Mayor of Fruitland Park"},{"n":"Christopher J. Bell","r":"Fruitland Park City Council"},{"n":"John Mobilian","r":"Fruitland Park City Council"},{"n":"Joseph Cosenza","r":"Fruitland Park City Council"},{"n":"Patrick DeGrave","r":"Fruitland Park City Council"}]},{"m":"Groveland","p":[{"n":"Amy Jo Carroll","r":"Groveland City Council"},{"n":"Barbara Gaines","r":"Groveland City Council"},{"n":"Keith Keogh","r":"Mayor of Groveland"},{"n":"Michael Jaycox","r":"Groveland City Council"},{"n":"Stephen Shylkohski","r":"Groveland City Council"}]},{"m":"Howey-in-the-Hills","p":[{"n":"David Miles","r":"Howey-in-the-Hills City Council"},{"n":"Graham Wells","r":"Mayor of Howey-in-the-Hills"},{"n":"Jonathan Arnold","r":"Howey-in-the-Hills City Council"},{"n":"Reneé Lannaman","r":"Howey-in-the-Hills City Council"},{"n":"Timothy Everline","r":"Howey-in-the-Hills City Council"}]},{"m":"Lady Lake","p":[{"n":"Ed Freeman","r":"Mayor of Lady Lake"},{"n":"Ed Regan","r":"Lady Lake City Council"},{"n":"John Gourlie","r":"Lady Lake City Council"},{"n":"Mike Sage","r":"Lady Lake City Council"},{"n":"Treva Roberts","r":"Lady Lake City Council"}]},{"m":"Leesburg","p":[{"n":"Alan Reisman","r":"Leesburg City Council"},{"n":"Allyson Berry","r":"Mayor of Leesburg"},{"n":"Jay Connell","r":"Leesburg City Council"},{"n":"Jimmy Burry","r":"Leesburg City Council"},{"n":"Michael Pederson","r":"Leesburg City Council"}]},{"m":"Mascotte","p":[{"n":"Jessica Bruno","r":"Mascotte City Council"},{"n":"Meghan DeSoto","r":"Mascotte City Council"},{"n":"Randy Brasher","r":"Mascotte City Council"},{"n":"Robin Hughes","r":"Mascotte City Council"},{"n":"Steven A. Sheffield","r":"Mayor of Mascotte"}]},{"m":"Minneola","p":[{"n":"Debbie Flinn","r":"Minneola City Council"},{"n":"Erick Hernandez","r":"Minneola City Council"},{"n":"Joseph Saunders","r":"Minneola City Council"},{"n":"Pam Serviss","r":"Minneola City Council"},{"n":"Pat Kelley","r":"Mayor of Minneola"}]},{"m":"Montverde","p":[{"n":"Bryan Rubio","r":"Montverde City Council"},{"n":"Grant Roberts","r":"Montverde City Council"},{"n":"Joe Morganelli","r":"Montverde City Council"},{"n":"Joe Wynkoop","r":"Mayor of Montverde"}]},{"m":"Mount Dora","p":[{"n":"Cal Rolfson","r":"Mount Dora City Council"},{"n":"Dennis Dawson","r":"Mount Dora City Council"},{"n":"Doug Bryant","r":"Mount Dora City Council"},{"n":"James L. Homich","r":"Mayor of Mount Dora"},{"n":"John Cataldo","r":"Mount Dora City Council"},{"n":"Marc Crail","r":"Mount Dora City Council"},{"n":"Nate Walker","r":"Mount Dora City Council"}]},{"m":"Tavares","p":[{"n":"Bob Grenier","r":"Tavares City Council"},{"n":"Doug Keown","r":"Tavares City Council"},{"n":"Lori Pfister","r":"Mayor of Tavares"},{"n":"Sandy Gamble","r":"Tavares City Council"},{"n":"Walter B. Price","r":"Tavares City Council"}]},{"m":"Umatilla","p":[{"n":"Bear Crockett","r":"Umatilla City Council"},{"n":"Chris Creech","r":"Mayor of Umatilla"},{"n":"Fred Fetterolf","r":"Umatilla City Council"},{"n":"Katherine L. Adams","r":"Umatilla City Council"}]}],"slug":"lake"},"12071":{"county":[{"n":"Armor Persons","r":"Lee County School Board"},{"n":"Bill Ribble","r":"Lee County School Board"},{"n":"Brian Hamman","r":"Commissioner, Lee County"},{"n":"Carmine Marceno","r":"Sheriff, Lee County"},{"n":"Cecil Pendergrass","r":"Commissioner, Lee County"},{"n":"David Mulicka","r":"Commissioner, Lee County"},{"n":"Debbie Jordan","r":"Lee County School Board"},{"n":"Jada Langford Fleming","r":"Lee County School Board"},{"n":"Kenneth Wilkinson","r":"Property Appraiser, Lee County"},{"n":"Kevin Karnes","r":"Clerk of Court, Lee County"},{"n":"Kevin Ruane","r":"Commissioner, Lee County"},{"n":"Larry Hart","r":"Tax Collector, Lee County"},{"n":"Matt Caldwell","r":"Property Appraiser, Lee County"},{"n":"Melisa W Giovannelli","r":"Lee County School Board"},{"n":"Michael Greenwell","r":"Commissioner, Lee County"},{"n":"Noelle Branning","r":"Tax Collector, Lee County"},{"n":"Raymond Sandelli","r":"Commissioner, Lee County"},{"n":"Sam Fisher","r":"Lee County School Board"},{"n":"Tommy Doyle","r":"Supervisor of Elections, Lee County"},{"n":"Vanessa Chaviano","r":"Lee County School Board"}],"districts":{"cd":[{"d":"FL-19","rep":"Byron Donalds","w":0.444},{"d":"FL-17","rep":"W. Gregory Steube","w":0.149}],"sh":[{"d":"FL House District 77","rep":"Tiffany Esposito","w":0.185},{"d":"FL House District 80","rep":"Adam Botana","w":0.158},{"d":"FL House District 76","rep":"Vanessa Oliver","w":0.094},{"d":"FL House District 79","rep":"Mike Giallombardo","w":0.08}],"ss":[{"d":"FL Senate District 33","rep":"Jonathan Martin","w":0.306},{"d":"FL Senate District 28","rep":"Kathleen Passidomo","w":0.153},{"d":"FL Senate District 27","rep":"Ben Albritton","w":0.126}]},"munis":[{"m":"Bonita Springs","p":[{"n":"Chris Corrie","r":"Bonita Springs City Council"},{"n":"Jamie Bogacz","r":"Bonita Springs City Council"},{"n":"Jesse Purdon","r":"Bonita Springs City Council"},{"n":"Jim Fitzpatrick","r":"Bonita Springs City Council"},{"n":"Laura Carr","r":"Bonita Springs City Council"},{"n":"Mike Gibson","r":"Mayor of Bonita Springs"},{"n":"Nigel P. Fullick","r":"Bonita Springs City Council"}]},{"m":"Cape Coral","p":[{"n":"Bill Steinke","r":"Cape Coral City Council"},{"n":"Derrick L. Donnell","r":"Cape Coral City Council"},{"n":"Jennifer Nelson-Lastra","r":"Cape Coral City Council"},{"n":"Joe Kilraine","r":"Cape Coral City Council"},{"n":"John Gunter","r":"Mayor of Cape Coral"},{"n":"Keith Long","r":"Cape Coral City Council"},{"n":"Laurie Lehmann","r":"Cape Coral City Council"},{"n":"Rachel Kaduk","r":"Cape Coral City Council"}]},{"m":"Fort Myers","p":[{"n":"Darla Bonk","r":"Fort Myers City Council"},{"n":"Diana Giraldo","r":"Fort Myers City Council"},{"n":"Fred Burson","r":"Fort Myers City Council"},{"n":"Kevin B. Anderson","r":"Mayor of Fort Myers"},{"n":"Liston D. Bochette","r":"Fort Myers City Council"},{"n":"Teresa Watkins Brown","r":"Fort Myers City Council"}]},{"m":"Fort Myers Beach","p":[{"n":"Daniel Allers","r":"Mayor of Fort Myers Beach"},{"n":"Jim Atterholt","r":"Fort Myers Beach City Council"},{"n":"John McLean","r":"Fort Myers Beach City Council"},{"n":"John R. King","r":"Fort Myers Beach City Council"},{"n":"Rebecca Link","r":"Fort Myers Beach City Council"}]},{"m":"Sanibel","p":[{"n":"Holly D. Smith","r":"Sanibel City Council"},{"n":"Holly D. Smith","r":"Sanibel City Council"},{"n":"John Henshaw","r":"Sanibel City Council"},{"n":"Michael Miller","r":"Mayor of Sanibel"},{"n":"Richard Johnson","r":"Sanibel City Council"}]}],"slug":"lee"},"12073":{"county":[{"n":"Akin Akinyemi","r":"Property Appraiser, Leon County"},{"n":"Alva Swafford Smith","r":"Leon County School Board - District 1"},{"n":"Alva Swafford Striplin","r":"Leon County School Board"},{"n":"Brian Welch","r":"Commissioner, Leon County"},{"n":"Carolyn Cummings","r":"Commissioner, Leon County"},{"n":"Christian Caban","r":"Commissioner, Leon County"},{"n":"Darryl Jones","r":"Leon County School Board"},{"n":"Darryl Jones","r":"Leon County School Board - Vice Chair, District 3"},{"n":"David O'Keefe","r":"Commissioner, Leon County"},{"n":"Doris Maloy","r":"Tax Collector, Leon County"},{"n":"Dr. Marcus Nicolas","r":"Leon County School Board - Chair, District 5"},{"n":"Gwen Marshall Knight","r":"Clerk of Court, Leon County"},{"n":"Laurie Lawson Cox","r":"Leon County School Board"},{"n":"Laurie Lawson Cox","r":"Leon County School Board - District 4"},{"n":"Marcus Bernard Nicolas","r":"Leon County School Board"},{"n":"Mark Earley","r":"Supervisor of Elections, Leon County"},{"n":"Nick Maddox","r":"Commissioner, Leon County"},{"n":"Rick Minor","r":"Commissioner, Leon County"},{"n":"Rosanne Wood","r":"Leon County School Board"},{"n":"Rosanne Wood","r":"Leon County School Board - District 2"},{"n":"Walt McNeil","r":"Sheriff, Leon County"},{"n":"William Proctor","r":"Commissioner, Leon County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 9","rep":"Allison Tant","w":0.508},{"d":"FL House District 7","rep":"Jason Shoaf","w":0.335},{"d":"FL House District 8","rep":"Gallop Franklin","w":0.157}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":1.0}]},"munis":[{"m":"Tallahassee","p":[{"n":"Curtis B. Richardson","r":"Tallahassee City Council"},{"n":"Dianne Williams-Cox","r":"Tallahassee City Council"},{"n":"Jacqueline Porter","r":"Tallahassee City Council"},{"n":"Jeremy Matlow","r":"Tallahassee City Council"},{"n":"John E. Dailey","r":"Mayor of Tallahassee"}]}],"slug":"leon"},"12075":{"county":[{"n":"Ashley Breeden Clemenzi","r":"Levy County School Board"},{"n":"Bobby McCallum","r":"Sheriff, Levy County"},{"n":"Cameron Asbell","r":"Levy County School Board"},{"n":"Danny Shipp","r":"Clerk of Court, Levy County"},{"n":"Desiree Mills","r":"Commissioner, Levy County"},{"n":"Devin Whitehurst","r":"Levy County School Board"},{"n":"John Meeks","r":"Commissioner, Levy County"},{"n":"Johnny Hiers","r":"Commissioner, Levy County"},{"n":"Linda Campbell","r":"Levy County School Board"},{"n":"Lisa Quincey Baxter","r":"Levy County School Board"},{"n":"Matt Brooks","r":"Clerk of Court, Levy County"},{"n":"Michele Langford","r":"Tax Collector, Levy County"},{"n":"Russell Meeks","r":"Commissioner, Levy County"},{"n":"Tammy Jones","r":"Supervisor of Elections, Levy County"},{"n":"Tim Hodge","r":"Commissioner, Levy County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":0.724}],"sh":[{"d":"FL House District 22","rep":"Chad Johnson","w":0.727}],"ss":[{"d":"FL Senate District 9","rep":"Stan McClain","w":0.727}]},"munis":[{"m":"Bronson","p":[{"n":"Bruce A. Greenlee","r":"Mayor of Bronson"},{"n":"Franklin Schuler","r":"Bronson City Council"},{"n":"Rachel Weeks","r":"Bronson City Council"},{"n":"Reggie Stacy","r":"Bronson City Council"},{"n":"Virginia Phillips","r":"Bronson City Council"}]},{"m":"Cedar Key","p":[{"n":"Dell Weible","r":"Cedar Key City Council"},{"n":"Jim Wortham","r":"Mayor of Cedar Key"},{"n":"Jolie Davis","r":"Cedar Key City Council"},{"n":"Mel Beckham","r":"Cedar Key City Council"},{"n":"Nancy Sera","r":"Cedar Key City Council"}]},{"m":"Chiefland","p":[{"n":"Chris Jones","r":"Chiefland City Council"},{"n":"Kim Bennett","r":"Chiefland City Council"},{"n":"LaWanda Jones","r":"Chiefland City Council"},{"n":"Lewrissa Johns","r":"Mayor of Chiefland"},{"n":"Norman Weaver","r":"Chiefland City Council"}]},{"m":"Fanning Springs","p":[{"n":"Barry Cannon","r":"Fanning Springs City Council"},{"n":"Howell E. Lancaster","r":"Mayor of Fanning Springs"},{"n":"Jonathan Smith","r":"Fanning Springs City Council"},{"n":"Matthew Lunsford","r":"Fanning Springs City Council"},{"n":"Wanda Michaud","r":"Fanning Springs City Council"}]},{"m":"Inglis","p":[{"n":"Coley Robinson","r":"Inglis City Council"},{"n":"Daryl Lynaugh","r":"Inglis City Council"},{"n":"Deborah LaClair","r":"Inglis City Council"},{"n":"Isaac Young","r":"Mayor of Inglis"},{"n":"Mike Ahern","r":"Inglis City Council"}]},{"m":"Otter Creek","p":[{"n":"Don Severino","r":"Otter Creek City Council"},{"n":"Russell Meeks","r":"Otter Creek City Council"},{"n":"Sonya Gail Lamb","r":"Otter Creek City Council"},{"n":"Therese Granger","r":"Mayor of Otter Creek"},{"n":"Zim Padgett","r":"Otter Creek City Council"}]},{"m":"Williston","p":[{"n":"Charles Goodman","r":"Mayor of Williston"},{"n":"Darfeness Hinds","r":"Williston City Council"},{"n":"Debra F. Jones","r":"Williston City Council"},{"n":"Meredith Martin","r":"Williston City Council"},{"n":"Michael Cox","r":"Williston City Council"},{"n":"Shanna Church","r":"Williston City Council"}]},{"m":"Yankeetown","p":[{"n":"Bob Terrian","r":"Yankeetown City Council"},{"n":"Laurence Vorisek","r":"Mayor of Yankeetown"},{"n":"Tim Ecker","r":"Yankeetown City Council"}]}],"slug":"levy"},"12077":{"county":[{"n":"Buddy Money","r":"Sheriff, Liberty County"},{"n":"Charles \"Boo\" Morris","r":"Liberty County School Board"},{"n":"Chris Rudd","r":"Property Appraiser, Liberty County"},{"n":"Cindy Walker","r":"Property Appraiser, Liberty County"},{"n":"Daniel Stanley","r":"Clerk of Court, Liberty County"},{"n":"Darrel \"Doobie\" Hayes","r":"Liberty County School Board"},{"n":"Derrick Arnold","r":"Commissioner, Liberty County"},{"n":"Dewayne Branch","r":"Commissioner, Liberty County"},{"n":"Doyle Brown","r":"Commissioner, Liberty County"},{"n":"Grant Conyers","r":"Supervisor of Elections, Liberty County"},{"n":"Hannah Sumner Causseaux","r":"Commissioner, Liberty County"},{"n":"Jace Ford","r":"Clerk of Court, Liberty County"},{"n":"Jason Singletary","r":"Liberty County School Board"},{"n":"Jim Johnson","r":"Commissioner, Liberty County"},{"n":"Jodi Lindsey Bailey","r":"Liberty County School Board"},{"n":"Marie Goodman","r":"Tax Collector, Liberty County"},{"n":"Mason Kever","r":"Liberty County School Board"},{"n":"Robert Arnold","r":"Sheriff, Liberty County"},{"n":"Scott Phillips","r":"Commissioner, Liberty County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":1.0}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":1.0}]},"munis":[{"m":"Bristol","p":[{"n":"James P. Kersey","r":"Mayor of Bristol"},{"n":"Mary Jennifer Hudgins","r":"Bristol City Council"},{"n":"Mattie Janie Boyd","r":"Bristol City Council"},{"n":"Micah McCaskill","r":"Bristol City Council"},{"n":"Thomas Rankin","r":"Bristol City Council"}]}],"slug":"liberty"},"12079":{"county":[{"n":"Alfred Martin","r":"Commissioner, Madison County"},{"n":"Alston Kelley","r":"Commissioner, Madison County"},{"n":"Benjamin Stewart","r":"Sheriff, Madison County"},{"n":"Brian Williams","r":"Commissioner, Madison County"},{"n":"Carol Gibson","r":"Madison County School Board"},{"n":"David Harper","r":"Sheriff, Madison County"},{"n":"Devin K Thompson","r":"Madison County School Board"},{"n":"Donnie Waldrep","r":"Commissioner, Madison County"},{"n":"Frankie Carroll","r":"Madison County School Board"},{"n":"Heath Driggers","r":"Supervisor of Elections, Madison County"},{"n":"Jane Barfield","r":"Property Appraiser, Madison County"},{"n":"Katie Knight","r":"Madison County School Board"},{"n":"Lisa Tuten","r":"Tax Collector, Madison County"},{"n":"Marie Smith","r":"Property Appraiser, Madison County"},{"n":"Rick Davis","r":"Commissioner, Madison County"},{"n":"Robin Hart","r":"Tax Collector, Madison County"},{"n":"Ronnie Moore","r":"Commissioner, Madison County"},{"n":"Ronnie Moore","r":"Commissioner, Madison County"},{"n":"VeEtta L Hagan","r":"Madison County School Board"},{"n":"William Washington","r":"Clerk of Court, Madison County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.997}],"sh":[{"d":"FL House District 9","rep":"Allison Tant","w":1.0}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":1.0}]},"munis":[{"m":"Greenville","p":[{"n":"Barbara Dansey","r":"Greenville City Council"},{"n":"Brittni Brown","r":"Greenville City Council"},{"n":"Carl Livingston","r":"Greenville City Council"},{"n":"Chiquila Pleas","r":"Greenville City Council"},{"n":"Ryan Kornegay","r":"Mayor of Greenville"}]},{"m":"Lee","p":[{"n":"Cindy Thomas","r":"Lee City Council"},{"n":"Edwin McMullen","r":"Lee City Council"},{"n":"James Ruzicka","r":"Mayor of Lee"},{"n":"Ken Szostek","r":"Lee City Council"},{"n":"Lloyd Burke","r":"Lee City Council"},{"n":"Ronnie Bass","r":"Lee City Council"}]},{"m":"Madison","p":[{"n":"Craig Anderson","r":"Madison City Council"},{"n":"Jamarien Moore","r":"Mayor of Madison"},{"n":"Rene Alexander","r":"Madison City Council"},{"n":"Terry Martin","r":"Madison City Council"},{"n":"Voncyle Wilson","r":"Madison City Council"}]}],"slug":"madison"},"12081":{"county":[{"n":"Amanda Ballard","r":"Commissioner, Manatee County"},{"n":"Angelina Colonneso","r":"Clerk of Court, Manatee County"},{"n":"Chad Choate","r":"Manatee County School Board"},{"n":"Charles Hackney","r":"Property Appraiser, Manatee County"},{"n":"Charlie Kennedy","r":"Manatee County School Board"},{"n":"Cindy L Spray","r":"Manatee County School Board"},{"n":"George Kruse","r":"Commissioner, Manatee County"},{"n":"James Satcher","r":"Supervisor of Elections, Manatee County"},{"n":"Jason Bearden","r":"Commissioner, Manatee County"},{"n":"Ken Burton","r":"Tax Collector, Manatee County"},{"n":"Kevin Van Ostenbridge","r":"Commissioner, Manatee County"},{"n":"Mike Rahn","r":"Commissioner, Manatee County"},{"n":"Raymond Turner","r":"Commissioner, Manatee County"},{"n":"Richard Tatem","r":"Manatee County School Board"},{"n":"Rick Wells","r":"Sheriff, Manatee County"},{"n":"Scott Farrington","r":"Supervisor of Elections, Manatee County"}],"districts":{"cd":[{"d":"FL-16","rep":"Vern Buchanan","w":0.826}],"sh":[{"d":"FL House District 72","rep":"Bill Conerly","w":0.635},{"d":"FL House District 71","rep":"Will Robinson","w":0.115},{"d":"FL House District 70","rep":"Michael Owen","w":0.075}],"ss":[{"d":"FL Senate District 20","rep":"Jim Boyd","w":0.652},{"d":"FL Senate District 22","rep":"Joe Gruters","w":0.173}]},"munis":[{"m":"Anna Maria","p":[{"n":"Charles Salem","r":"Anna Maria City Council"},{"n":"Chris Arendt","r":"Anna Maria City Council"},{"n":"Gary McMullen","r":"Anna Maria City Council"},{"n":"John Lynch","r":"Anna Maria City Council"},{"n":"Kathy Morgan-Johnson","r":"Anna Maria City Council"},{"n":"Mark Short","r":"Mayor of Anna Maria"}]},{"m":"Bradenton","p":[{"n":"Gene Brown","r":"Mayor of Bradenton"},{"n":"Jayne Kocher","r":"Bradenton City Council"},{"n":"Kemp Schuessler","r":"Bradenton City Council"},{"n":"Lisa Gonzalez Moore","r":"Bradenton City Council"},{"n":"Marianne A. Barnebey","r":"Bradenton City Council"},{"n":"Pamela Coachman","r":"Bradenton City Council"}]},{"m":"Bradenton Beach","p":[{"n":"Deborah M. Scaccianoce","r":"Bradenton Beach City Council"},{"n":"John Chappie","r":"Mayor of Bradenton Beach"},{"n":"Ralph Cole","r":"Bradenton Beach City Council"},{"n":"Scott Bear","r":"Bradenton Beach City Council"}]},{"m":"Holmes Beach","p":[{"n":"Dan Diggins","r":"Holmes Beach City Council"},{"n":"Jessica Patel","r":"Holmes Beach City Council"},{"n":"Judy Titsworth","r":"Mayor of Holmes Beach"},{"n":"Steve Oelfke","r":"Holmes Beach City Council"},{"n":"Terry W. Schaefer","r":"Holmes Beach City Council"}]},{"m":"Palmetto","p":[{"n":"Brian T. Williams","r":"Palmetto City Council"},{"n":"Daniel West","r":"Mayor of Palmetto"},{"n":"Harold Smith","r":"Palmetto City Council"},{"n":"Scott Whitaker","r":"Palmetto City Council"},{"n":"Sunshine Joiner","r":"Palmetto City Council"},{"n":"Tamara Cornwell","r":"Palmetto City Council"}]}],"slug":"manatee"},"12083":{"county":[{"n":"Allison B. Campbell","r":"Marion County School Board"},{"n":"Carl Zalak","r":"Commissioner, Marion County"},{"n":"Craig Curry","r":"Commissioner, Marion County"},{"n":"David Ellspermann","r":"Clerk of Court, Marion County"},{"n":"George Albright","r":"Tax Collector, Marion County"},{"n":"Greg Harrell","r":"Clerk of Court, Marion County"},{"n":"Jimmy Cowan","r":"Property Appraiser, Marion County"},{"n":"Kathy Bryant","r":"Commissioner, Marion County"},{"n":"Lori Conrad","r":"Marion County School Board"},{"n":"Matthew McClain","r":"Commissioner, Marion County"},{"n":"Michelle Stone","r":"Commissioner, Marion County"},{"n":"Nancy Thrower","r":"Marion County School Board"},{"n":"Sarah James","r":"Marion County School Board"},{"n":"Villie Smith","r":"Property Appraiser, Marion County"},{"n":"Wesley Wilcox","r":"Supervisor of Elections, Marion County"},{"n":"William Woods","r":"Sheriff, Marion County"}],"districts":{"cd":[{"d":"FL-06","rep":"Randy Fine","w":0.605},{"d":"FL-03","rep":"Kat Cammack","w":0.395}],"sh":[{"d":"FL House District 20","rep":"Judson Sapp","w":0.276},{"d":"FL House District 27","rep":"Richard Gentry","w":0.261},{"d":"FL House District 24","rep":"Ryan Chamberlin","w":0.195},{"d":"FL House District 21","rep":"Yvonne Hinson","w":0.166},{"d":"FL House District 23","rep":"J.J. Grow","w":0.102}],"ss":[{"d":"FL Senate District 9","rep":"Stan McClain","w":1.0}]},"munis":[{"m":"Belleview","p":[{"n":"Christine Dobkowski","r":"Mayor of Belleview"},{"n":"Michael J. Goldman","r":"Belleview City Council"},{"n":"Ray Dwyer","r":"Belleview City Council"},{"n":"Robert Smith","r":"Belleview City Council"},{"n":"Ron T. Livsey","r":"Belleview City Council"}]},{"m":"Dunnellon","p":[{"n":"Reese Taschenberger","r":"Dunnellon City Council"},{"n":"Rex Lehmann","r":"Dunnellon City Council"},{"n":"Tim Inskeep","r":"Dunnellon City Council"},{"n":"Valerie Hanchar","r":"Dunnellon City Council"},{"n":"Walter Green","r":"Mayor of Dunnellon"}]},{"m":"McIntosh","p":[{"n":"Alison Scott","r":"Mayor of McIntosh"},{"n":"Donald Medeiros","r":"McIntosh City Council"},{"n":"Frank Ciotti","r":"McIntosh City Council"},{"n":"Lee Deaderick","r":"McIntosh City Council"},{"n":"Melinda Jones","r":"McIntosh City Council"},{"n":"Scott Mullikin","r":"McIntosh City Council"}]},{"m":"Ocala","p":[{"n":"Barry Mansfield","r":"Ocala City Council"},{"n":"Ben Marciano","r":"Mayor of Ocala"},{"n":"Ire J. Bethea","r":"Ocala City Council"},{"n":"James Hilty","r":"Ocala City Council"},{"n":"Jay Musleh","r":"Ocala City Council"},{"n":"Kristen M. Dreyer","r":"Ocala City Council"}]},{"m":"Reddick","p":[{"n":"Andrea Barnes","r":"Reddick City Council"},{"n":"Myra Sherman","r":"Mayor of Reddick"},{"n":"Nadine Stokes","r":"Reddick City Council"},{"n":"Shirley Youmans","r":"Reddick City Council"}]}],"slug":"marion"},"12085":{"county":[{"n":"Amy Pritchett","r":"Martin County School Board"},{"n":"Brian Michael Moriarty","r":"Martin County School Board"},{"n":"Carolyn Timmann","r":"Clerk of Court, Martin County"},{"n":"Christia Li Roberts","r":"Martin County School Board"},{"n":"Doug Smith","r":"Commissioner, Martin County"},{"n":"Edward Ciampi","r":"Commissioner, Martin County"},{"n":"Harold Jenkins","r":"Commissioner, Martin County"},{"n":"Jennifer Russell","r":"Martin County School Board"},{"n":"Jenny Fields","r":"Property Appraiser, Martin County"},{"n":"John Budensiek","r":"Sheriff, Martin County"},{"n":"Laurel Kelly","r":"Property Appraiser, Martin County"},{"n":"Marsha Powers","r":"Martin County School Board"},{"n":"Ruth Pietruszewski","r":"Tax Collector, Martin County"},{"n":"Sarah Heard","r":"Commissioner, Martin County"},{"n":"Stacey Hetherington","r":"Commissioner, Martin County"},{"n":"Vicki Davis","r":"Supervisor of Elections, Martin County"},{"n":"William Snyder","r":"Sheriff, Martin County"}],"districts":{"cd":[{"d":"FL-21","rep":"Brian J. Mast","w":0.9}],"sh":[{"d":"FL House District 86","rep":"John Snyder","w":0.83},{"d":"FL House District 85","rep":"Toby Overdorf","w":0.069}],"ss":[{"d":"FL Senate District 31","rep":"Gayle Harrell","w":0.899}]},"munis":[{"m":"Jupiter Island","p":[{"n":"Anne Scott","r":"Jupiter Island City Council"},{"n":"Joseph Taddeo","r":"Jupiter Island City Council"},{"n":"Marshall Field","r":"Jupiter Island City Council"},{"n":"Patricia Warner","r":"Jupiter Island City Council"},{"n":"Penny Townsend","r":"Mayor of Jupiter Island"}]},{"m":"Ocean Breeze","p":[{"n":"Gail Balogna","r":"Ocean Breeze City Council"},{"n":"George Ciaschi","r":"Ocean Breeze City Council"},{"n":"Janet Galante","r":"Ocean Breeze City Council"},{"n":"Karen M. Ostrand","r":"Mayor of Ocean Breeze"},{"n":"Kevin Docherty","r":"Ocean Breeze City Council"},{"n":"Margaret Pugsley","r":"Ocean Breeze City Council"},{"n":"Sandy Keblbeck-Kelley","r":"Ocean Breeze City Council"}]},{"m":"Sewall's Point","p":[{"n":"David Kurzman","r":"Sewall's Point City Council"},{"n":"Frank Fender","r":"Sewall's Point City Council"},{"n":"Frank Tidikis","r":"Sewall's Point City Council"},{"n":"Kaija Mayfield","r":"Sewall's Point City Council"},{"n":"Vincent N. Barile","r":"Mayor of Sewall's Point"}]},{"m":"Stuart","p":[{"n":"Campbell Rich","r":"Stuart City Council"},{"n":"Eula R. Clarke","r":"Stuart City Council"},{"n":"Laura Giobbi","r":"Stuart City Council"},{"n":"Sean Reed","r":"Stuart City Council"}]}],"slug":"martin"},"12086":{"county":[{"n":"Alina Garcia","r":"Supervisor of Elections, Miami-Dade County"},{"n":"Anthony Rodriguez","r":"Commissioner, Miami-Dade County"},{"n":"Christina White","r":"Supervisor of Elections, Miami-Dade County"},{"n":"Danielle Higgins","r":"Commissioner, Miami-Dade County"},{"n":"Danny Espino","r":"Miami-Dade County School Board"},{"n":"Dariel Fernandez","r":"Tax Collector, Miami-Dade County"},{"n":"Dorothy Bendross-Mindingall","r":"Miami-Dade County School Board"},{"n":"Eileen Higgins","r":"Commissioner, Miami-Dade County"},{"n":"Joseph \"Joe\" Geller","r":"Miami-Dade County School Board"},{"n":"Juan Bermudez","r":"Commissioner, Miami-Dade County"},{"n":"Keon Hardemon","r":"Commissioner, Miami-Dade County"},{"n":"Kevin Cabrera","r":"Commissioner, Miami-Dade County"},{"n":"Kionne McGhee","r":"Commissioner, Miami-Dade County"},{"n":"Luisa Santos","r":"Miami-Dade County School Board"},{"n":"Marleine Bastien","r":"Commissioner, Miami-Dade County"},{"n":"Mary Blanco","r":"Miami-Dade County School Board"},{"n":"Micky Steinberg","r":"Commissioner, Miami-Dade County"},{"n":"Monica Colucci","r":"Miami-Dade County School Board"},{"n":"Oliver Gilbert","r":"Commissioner, Miami-Dade County"},{"n":"Pedro Garcia","r":"Property Appraiser, Miami-Dade County"},{"n":"Peter Cam","r":"Tax Collector, Miami-Dade County"},{"n":"Raquel Regalado","r":"Commissioner, Miami-Dade County"},{"n":"Rene Garcia","r":"Commissioner, Miami-Dade County"},{"n":"Roberto Gonzalez","r":"Commissioner, Miami-Dade County"},{"n":"Roberto J. Alonso","r":"Miami-Dade County School Board"},{"n":"Rosanna Cordero-Stutz","r":"Sheriff, Miami-Dade County"},{"n":"Steve Gallon III","r":"Miami-Dade County School Board"}],"districts":{"cd":[{"d":"FL-28","rep":"Carlos A. Gimenez","w":0.527},{"d":"FL-26","rep":"Mario Diaz-Balart","w":0.217},{"d":"FL-27","rep":"Maria Elvira Salazar","w":0.056},{"d":"FL-24","rep":"Frederica S. Wilson","w":0.047}],"sh":[{"d":"FL House District 120","rep":"Jim Mooney","w":0.623},{"d":"FL House District 111","rep":"David Borrero","w":0.048},{"d":"FL House District 115","rep":"Omar Blanco","w":0.021},{"d":"FL House District 119","rep":"Juan Porras","w":0.021},{"d":"FL House District 118","rep":"Mike Redondo","w":0.015},{"d":"FL House District 117","rep":"Kevin Chambliss","w":0.013},{"d":"FL House District 106","rep":"Fabián Basabe","w":0.013},{"d":"FL House District 114","rep":"Demi Busatta","w":0.013},{"d":"FL House District 108","rep":"Dotie Joseph","w":0.012},{"d":"FL House District 112","rep":"Alex Rizo","w":0.012},{"d":"FL House District 107","rep":"Wallace Aristide","w":0.012},{"d":"FL House District 109","rep":"Ashley Gantt","w":0.011},{"d":"FL House District 116","rep":"Daniel Perez","w":0.01},{"d":"FL House District 110","rep":"Tom Fabricio","w":0.009}],"ss":[{"d":"FL Senate District 40","rep":"Ana Maria Rodriguez","w":0.64},{"d":"FL Senate District 39","rep":"Bryan Ávila","w":0.071},{"d":"FL Senate District 38","rep":"Alexis Calatayud","w":0.067},{"d":"FL Senate District 34","rep":"Shev Jones","w":0.038},{"d":"FL Senate District 36","rep":"Ileana Garcia","w":0.024}]},"munis":[{"m":"Aventura","p":[{"n":"Amit Bloom","r":"Aventura City Council"},{"n":"Cindy Orlinsky","r":"Aventura City Council"},{"n":"Clifford B. Ain","r":"Aventura City Council"},{"n":"Gustavo Blachman","r":"Aventura City Council"},{"n":"Howard S. Weinberg","r":"Mayor of Aventura"},{"n":"Paul A. Kruss","r":"Aventura City Council"},{"n":"Rachel S. Friedland","r":"Aventura City Council"}]},{"m":"Bal Harbour","p":[{"n":"Buzzy Sklar","r":"Bal Harbour City Council"},{"n":"David Wolf","r":"Bal Harbour City Council"},{"n":"Jeffrey Freimark","r":"Bal Harbour City Council"},{"n":"Seth E. Salver","r":"Mayor of Bal Harbour"}]},{"m":"Bay Harbor Islands","p":[{"n":"Elchonon Shagalov","r":"Bay Harbor Islands City Council"},{"n":"Eric Rappaport","r":"Bay Harbor Islands City Council"},{"n":"Isaac Salver","r":"Mayor of Bay Harbor Islands"},{"n":"Joshua D. Fuller","r":"Bay Harbor Islands City Council"},{"n":"Molly Diallo","r":"Bay Harbor Islands City Council"},{"n":"Robert H. Yaffe","r":"Bay Harbor Islands City Council"},{"n":"Stephanie Bruder","r":"Bay Harbor Islands City Council"}]},{"m":"Biscayne Park","p":[{"n":"Art Gonzalez","r":"Biscayne Park City Council"},{"n":"Dan Samaria","r":"Biscayne Park City Council"},{"n":"Jonathan Groth","r":"Mayor of Biscayne Park"},{"n":"Ryan Huntington","r":"Biscayne Park City Council"},{"n":"Veronica Amsler","r":"Biscayne Park City Council"}]},{"m":"Coral Gables","p":[{"n":"Ariel Fernandez","r":"Coral Gables City Council"},{"n":"Melissa Castro","r":"Coral Gables City Council"},{"n":"Rhonda Anderson","r":"Coral Gables City Council"},{"n":"Richard D. Lara","r":"Coral Gables City Council"},{"n":"Vince Lago","r":"Mayor of Coral Gables"}]},{"m":"Cutler Bay","p":[{"n":"Michael P. Callahan","r":"Cutler Bay City Council"},{"n":"Richard Ramirez","r":"Cutler Bay City Council"},{"n":"Robert 'BJ' Duncan","r":"Cutler Bay City Council"},{"n":"Suzy Lord","r":"Cutler Bay City Council"},{"n":"Timothy J. Meerbott","r":"Mayor of Cutler Bay"}]},{"m":"Doral","p":[{"n":"Christi Fraga","r":"Mayor of Doral"},{"n":"Digna Cabral","r":"Doral City Council"},{"n":"Maureen Porras","r":"Doral City Council"},{"n":"Nicole Reinoso","r":"Doral City Council"},{"n":"Rafael Pineyro","r":"Doral City Council"}]},{"m":"El Portal","p":[{"n":"Anders Urbom","r":"El Portal City Council"},{"n":"Anna E. Lightfoot-Ward","r":"El Portal City Council"},{"n":"Charles Winters","r":"El Portal City Council"},{"n":"Darian Martin","r":"El Portal City Council"},{"n":"Omarr C. Nickerson","r":"Mayor of El Portal"}]},{"m":"Florida City","p":[{"n":"Charlotte Thompson","r":"Mayor of Florida City"},{"n":"James Gold","r":"Florida City City Council"},{"n":"Richard Brown","r":"Florida City City Council"},{"n":"Ronda Yvette Cobb","r":"Florida City City Council"},{"n":"Trina Wilborn","r":"Florida City City Council"}]},{"m":"Golden Beach","p":[{"n":"Bernard Einstein","r":"Golden Beach City Council"},{"n":"Glenn Singer","r":"Mayor of Golden Beach"},{"n":"Jessie Mendal","r":"Golden Beach City Council"},{"n":"Judy Lusskin","r":"Golden Beach City Council"},{"n":"Kenneth Bernstein","r":"Golden Beach City Council"}]},{"m":"Hialeah","p":[{"n":"Bryan Calvo","r":"Mayor of Hialeah"},{"n":"Carl Zogby","r":"Hialeah City Council"},{"n":"Gelien Perez","r":"Hialeah City Council"},{"n":"Luis Rodriguez","r":"Hialeah City Council"},{"n":"Melinda De La Vega","r":"Hialeah City Council"},{"n":"Monica Perez","r":"Hialeah City Council"},{"n":"William Marrero","r":"Hialeah City Council"}]},{"m":"Hialeah Gardens","p":[{"n":"Elmo L. Urra","r":"Hialeah Gardens City Council"},{"n":"Jorge A. Merida","r":"Hialeah Gardens City Council"},{"n":"Jorge Gutierrez","r":"Hialeah Gardens City Council"},{"n":"Luciano Garcia","r":"Hialeah Gardens City Council"},{"n":"Rolando Piña","r":"Hialeah Gardens City Council"},{"n":"Yioset De La Cruz","r":"Mayor of Hialeah Gardens"}]},{"m":"Homestead","p":[{"n":"Clemente Canabal","r":"Homestead City Council"},{"n":"Erica G. Àvila","r":"Homestead City Council"},{"n":"Jenifer N. Bailey","r":"Homestead City Council"},{"n":"Kimberly Konsky","r":"Homestead City Council"},{"n":"Larry Roth","r":"Homestead City Council"},{"n":"Sean L. Fletcher","r":"Homestead City Council"},{"n":"Steven D. Losner","r":"Mayor of Homestead"}]},{"m":"Indian Creek","p":[{"n":"Bernard Klepach","r":"Mayor of Indian Creek"},{"n":"Irma Braman","r":"Indian Creek City Council"},{"n":"Irwin Tauber","r":"Indian Creek City Council"},{"n":"Jared Kushner","r":"Indian Creek City Council"},{"n":"Robert Diener","r":"Indian Creek City Council"}]},{"m":"Key Biscayne","p":[{"n":"Edward London","r":"Key Biscayne City Council"},{"n":"Fernando A. Vazquez","r":"Key Biscayne City Council"},{"n":"Franklin H. Caplan","r":"Key Biscayne City Council"},{"n":"Joe I. Rasco","r":"Mayor of Key Biscayne"},{"n":"Michael Bracken","r":"Key Biscayne City Council"},{"n":"Nancy Stoner","r":"Key Biscayne City Council"},{"n":"Oscar Sardiñas","r":"Key Biscayne City Council"}]},{"m":"Medley","p":[{"n":"Ana Stefano","r":"Mayor of Medley"},{"n":"Arturo Jinete","r":"Medley City Council"},{"n":"Edgar Ayala","r":"Medley City Council"},{"n":"Lizelh Rodriguez","r":"Medley City Council"},{"n":"Lourdes Rodriguez","r":"Medley City Council"}]},{"m":"Miami","p":[{"n":"Christine King","r":"Miami City Council"},{"n":"Damian Pardo","r":"Miami City Council"},{"n":"Eileen Higgins","r":"Mayor of Miami"},{"n":"Miguel Angel Gabela","r":"Miami City Council"},{"n":"Ralph Rosado","r":"Miami City Council"},{"n":"Rolando Escalona","r":"Miami City Council"}]},{"m":"Miami Beach","p":[{"n":"Joseph Magazine","r":"Miami Beach City Council"},{"n":"Laura Dominguez","r":"Miami Beach City Council"},{"n":"Monica Matteo-Salinas","r":"Miami Beach City Council"},{"n":"Steven Meiner","r":"Mayor of Miami Beach"},{"n":"Tanya K. Bhatt","r":"Miami Beach City Council"}]},{"m":"Miami Gardens","p":[{"n":"Katrina L. Baskin","r":"Miami Gardens City Council"},{"n":"Katrina Wilson","r":"Miami Gardens City Council"},{"n":"Linda Julien","r":"Miami Gardens City Council"},{"n":"Michelle C. Powell","r":"Miami Gardens City Council"},{"n":"Reggie Leon","r":"Miami Gardens City Council"},{"n":"Robert L. Stephens","r":"Miami Gardens City Council"},{"n":"Rodney Harris","r":"Mayor of Miami Gardens"}]},{"m":"Miami Lakes","p":[{"n":"Alejandro Sanchez","r":"Miami Lakes City Council"},{"n":"Angelo Cuadra Garcia","r":"Miami Lakes City Council"},{"n":"Bryan Morera","r":"Miami Lakes City Council"},{"n":"Joshua Dieguez","r":"Mayor of Miami Lakes"},{"n":"Juan Carlos Fernandez","r":"Miami Lakes City Council"},{"n":"Ray Garcia","r":"Miami Lakes City Council"},{"n":"Steven Herzberg","r":"Miami Lakes City Council"}]},{"m":"Miami Shores Village","p":[{"n":"Jerome Charles","r":"Mayor of Miami Shores Village"}]},{"m":"Miami Springs","p":[{"n":"Jorge Santin","r":"Miami Springs City Council"},{"n":"Jospeh Dion","r":"Miami Springs City Council"},{"n":"Orlando Lamas","r":"Miami Springs City Council"},{"n":"Walter Fajet","r":"Mayor of Miami Springs"}]},{"m":"Miami-Dade County","p":[{"n":"Daniella Levine Cava","r":"Mayor of Miami-Dade County"}]},{"m":"North Bay Village","p":[{"n":"Andy Daro","r":"North Bay Village City Council"},{"n":"Doris Acosta","r":"North Bay Village City Council"},{"n":"Goran Cuk","r":"North Bay Village City Council"},{"n":"Rachel Streitfeld","r":"Mayor of North Bay Village"},{"n":"Richard Chervony","r":"North Bay Village City Council"}]},{"m":"North Miami","p":[{"n":"Alix Desulme","r":"Mayor of North Miami"},{"n":"Kassandra Timothe","r":"North Miami City Council"},{"n":"Kevin A. Burns","r":"North Miami City Council"},{"n":"Mary Estimé-Irvin","r":"North Miami City Council"},{"n":"Pierre Frantz Charles","r":"North Miami City Council"}]},{"m":"North Miami Beach","p":[{"n":"Daniela Jean","r":"North Miami Beach City Council"},{"n":"Fortuna Smukler","r":"North Miami Beach City Council"},{"n":"Jay R. Chernoff","r":"North Miami Beach City Council"},{"n":"Lynn Su","r":"North Miami Beach City Council"},{"n":"McKenzie Fleurimond","r":"North Miami Beach City Council"},{"n":"Michael Joseph","r":"Mayor of North Miami Beach"},{"n":"Phyllis S. Smith","r":"North Miami Beach City Council"}]},{"m":"Opa Locka","p":[{"n":"John H. Taylor Jr.","r":"Mayor, Opa-locka, FL"}]},{"m":"Opa-locka","p":[{"n":"John H. Taylor","r":"Mayor of Opa-locka"},{"n":"Joseph L. Kelley","r":"Opa-locka City Council"},{"n":"Luis B. Santiago","r":"Opa-locka City Council"},{"n":"Natasha L. Ervin","r":"Opa-locka City Council"},{"n":"Sherelean Bass","r":"Opa-locka City Council"}]},{"m":"Palmetto Bay","p":[{"n":"Karyn Cunningham","r":"Mayor of Palmetto Bay"},{"n":"Mark Merwitzer","r":"Palmetto Bay City Council"},{"n":"Marsha Matson","r":"Palmetto Bay City Council"},{"n":"Patrick Fiore","r":"Palmetto Bay City Council"},{"n":"Steve Cody","r":"Palmetto Bay City Council"}]},{"m":"Pinecrest","p":[{"n":"Ariel Meyer","r":"Pinecrest City Council"},{"n":"Jerry Greenberg","r":"Pinecrest City Council"},{"n":"Joseph M. Corradino","r":"Mayor of Pinecrest"},{"n":"Ken Fairman","r":"Pinecrest City Council"}]},{"m":"South Miami","p":[{"n":"Brian Corey","r":"South Miami City Council"},{"n":"Danny Rodriguez","r":"South Miami City Council"},{"n":"Javier E. Fernández","r":"Mayor of South Miami"},{"n":"Lisa Bonich","r":"South Miami City Council"},{"n":"Steve Calle","r":"South Miami City Council"}]},{"m":"Sunny Isles Beach","p":[{"n":"Alex Lama","r":"Sunny Isles Beach City Council"},{"n":"Fabiola Stuyvesant","r":"Sunny Isles Beach City Council"},{"n":"Jeniffer Viscarra","r":"Sunny Isles Beach City Council"},{"n":"Jerry Joseph","r":"Sunny Isles Beach City Council"},{"n":"Larisa Svechin","r":"Mayor of Sunny Isles Beach"}]},{"m":"Surfside","p":[{"n":"Andrea Travani","r":"Surfside City Council"},{"n":"David Weingot","r":"Surfside City Council"},{"n":"Dayana Benmergui","r":"Surfside City Council"},{"n":"Gerardo Vildostegui","r":"Surfside City Council"},{"n":"Shlomo Danzinger","r":"Mayor of Surfside"}]},{"m":"Sweetwater","p":[{"n":"Idania Llanio","r":"Sweetwater City Council"},{"n":"Isidro Ruiz","r":"Sweetwater City Council"},{"n":"Jose P. Diaz","r":"Mayor of Sweetwater"},{"n":"Reinaldo Rey","r":"Sweetwater City Council"},{"n":"Saul Diaz","r":"Sweetwater City Council"}]},{"m":"Virginia Gardens","p":[{"n":"Deborah Conover","r":"Virginia Gardens City Council"},{"n":"Elizabeth Taylor Martinez","r":"Virginia Gardens City Council"},{"n":"Fred Spencer Deno","r":"Mayor of Virginia Gardens"},{"n":"Gabriel Fernandez","r":"Virginia Gardens City Council"},{"n":"Jorge Arce","r":"Virginia Gardens City Council"},{"n":"Richard L. Block","r":"Virginia Gardens City Council"}]},{"m":"West Miami","p":[{"n":"Eric Diaz-Padron","r":"Mayor of West Miami"},{"n":"Gustavo J. Ceballos","r":"West Miami City Council"},{"n":"Ivan Chavez","r":"West Miami City Council"},{"n":"Juan M. Blanes","r":"West Miami City Council"},{"n":"Victoria De La Torre Gans","r":"West Miami City Council"}]},{"m":"_Unresolved","p":[{"n":"Danielle Cohen Higgins","r":"Miami-Dade County City Council"},{"n":"Juan Carlos Bermudez","r":"Miami-Dade County City Council"},{"n":"Keon Hardemon","r":"Miami-Dade County City Council"},{"n":"Kevin M. Cabrera","r":"Miami-Dade County City Council"},{"n":"Kionne L. McGhee","r":"Miami-Dade County City Council"},{"n":"Marleine Bastien","r":"Miami-Dade County City Council"},{"n":"Micky Steinberg","r":"Miami-Dade County City Council"},{"n":"Neil Cantor","r":"Miami Shores Village City Council"},{"n":"Raquel A. Regalado","r":"Miami-Dade County City Council"},{"n":"René Garcia","r":"Miami-Dade County City Council"},{"n":"Roberto J. Gonzalez","r":"Miami-Dade County City Council"},{"n":"Sandra Harris","r":"Miami Shores Village City Council"}]}],"slug":"miami-dade"},"12087":{"county":[{"n":"Craig Cates","r":"Commissioner, Monroe County"},{"n":"Darren M. Horan","r":"Monroe County School Board"},{"n":"David Rice","r":"Commissioner, Monroe County"},{"n":"Holly Raschein","r":"Commissioner, Monroe County"},{"n":"John R Dick","r":"Monroe County School Board"},{"n":"Joyce Griffin","r":"Supervisor of Elections, Monroe County"},{"n":"Kevin Madok","r":"Clerk of Court, Monroe County"},{"n":"Michelle Lincoln","r":"Commissioner, Monroe County"},{"n":"Rick Ramsay","r":"Sheriff, Monroe County"},{"n":"Sam Steele","r":"Tax Collector, Monroe County"},{"n":"Scott Russell","r":"Property Appraiser, Monroe County"},{"n":"Sherri Hodies","r":"Supervisor of Elections, Monroe County"},{"n":"Sue Woltanski","r":"Monroe County School Board"},{"n":"Yvette Mira-Talbott","r":"Monroe County School Board"}],"districts":{"cd":[{"d":"FL-28","rep":"Carlos A. Gimenez","w":0.282}],"sh":[{"d":"FL House District 120","rep":"Jim Mooney","w":0.259}],"ss":[{"d":"FL Senate District 40","rep":"Ana Maria Rodriguez","w":0.259}]},"munis":[{"m":"Islamorada, Village of Islands","p":[{"n":"Donald Horton","r":"Mayor of Islamorada, Village of Islands"},{"n":"Sharon Mahoney","r":"Islamorada, Village of Islands City Council"},{"n":"Steve Friedman","r":"Islamorada, Village of Islands City Council"}]},{"m":"Key Colony Beach","p":[{"n":"Doug Colonell","r":"Key Colony Beach City Council"},{"n":"Freddie Foster","r":"Mayor of Key Colony Beach"},{"n":"Kirk Diehl","r":"Key Colony Beach City Council"},{"n":"Tom DiFransico","r":"Key Colony Beach City Council"},{"n":"Tom Harding","r":"Key Colony Beach City Council"}]},{"m":"Key West","p":[{"n":"Aaron Castillo","r":"Key West City Council"},{"n":"Danise Henriquez","r":"Mayor of Key West"},{"n":"Donald Lee","r":"Key West City Council"},{"n":"Lissette Cuervo Carey","r":"Key West City Council"},{"n":"Mary Lou Hoover","r":"Key West City Council"},{"n":"Monica Haskell","r":"Key West City Council"},{"n":"Sam Kaufman","r":"Key West City Council"}]},{"m":"Layton","p":[{"n":"Bruce Halle","r":"Mayor of Layton"},{"n":"Cynthia Lewis","r":"Layton City Council"},{"n":"Gregory Lewis","r":"Layton City Council"},{"n":"Jared Rodriguez","r":"Layton City Council"},{"n":"Megan Jones","r":"Layton City Council"},{"n":"Susan Grant","r":"Layton City Council"}]},{"m":"Marathon","p":[{"n":"Debra Struyf","r":"Marathon City Council"},{"n":"Kenny Matlock","r":"Marathon City Council"},{"n":"Lynn Landry","r":"Marathon City Council"},{"n":"Lynny Del Gaizo","r":"Mayor of Marathon"},{"n":"Robyn Still","r":"Marathon City Council"}]}],"slug":"monroe"},"12089":{"county":[{"n":"A. Michael Hickox","r":"Property Appraiser, Nassau County"},{"n":"A.M. \"Hupp\" Huppmann","r":"Commissioner, Nassau County"},{"n":"Alyson McCullough","r":"Commissioner, Nassau County"},{"n":"Bill Leeper","r":"Sheriff, Nassau County"},{"n":"Curtis Gaus","r":"Nassau County School Board"},{"n":"Gail G. Cook","r":"Nassau County School Board"},{"n":"Janet Adkins","r":"Supervisor of Elections, Nassau County"},{"n":"Jeff Gray","r":"Commissioner, Nassau County"},{"n":"John Crawford","r":"Clerk of Court, Nassau County"},{"n":"John Drew","r":"Tax Collector, Nassau County"},{"n":"John Martin","r":"Commissioner, Nassau County"},{"n":"Kevin Lilly","r":"Property Appraiser, Nassau County"},{"n":"Klynt Farmer","r":"Commissioner, Nassau County"},{"n":"Kristi Loyd Simpkins","r":"Nassau County School Board"},{"n":"Lissa Braddock","r":"Nassau County School Board"},{"n":"Mitchell Keiter","r":"Clerk of Court, Nassau County"},{"n":"Shannon Hogue","r":"Nassau County School Board"},{"n":"Vicki Cannon","r":"Supervisor of Elections, Nassau County"}],"districts":{"cd":[{"d":"FL-04","rep":"Aaron Bean","w":0.918}],"sh":[{"d":"FL House District 15","rep":"Dean Black","w":0.921}],"ss":[{"d":"FL Senate District 4","rep":"Clay Yarborough","w":0.921}]},"munis":[{"m":"Callahan","p":[{"n":"Ashton Bishop-Vargas","r":"Callahan City Council"},{"n":"Jacquelyn Fleming","r":"Callahan City Council"},{"n":"Janet Shaw","r":"Callahan City Council"},{"n":"Matthew Davis","r":"Callahan City Council"},{"n":"Randy Knagge","r":"Mayor of Callahan"},{"n":"Wendi Williams","r":"Callahan City Council"}]},{"m":"Fernandina Beach","p":[{"n":"Darron Ayscue","r":"Fernandina Beach City Council"},{"n":"Genece Minshew","r":"Fernandina Beach City Council"},{"n":"James Antun","r":"Mayor of Fernandina Beach"},{"n":"Joyce Tuten","r":"Fernandina Beach City Council"},{"n":"Tim Poynter","r":"Fernandina Beach City Council"}]},{"m":"Hilliard","p":[{"n":"Jared Wollitz","r":"Hilliard City Council"},{"n":"Joe Michaels","r":"Hilliard City Council"},{"n":"John P. Beasley","r":"Mayor of Hilliard"},{"n":"Kenneth A. Sims","r":"Hilliard City Council"},{"n":"Lee Pickett","r":"Hilliard City Council"},{"n":"Richard Dallis Hunter","r":"Hilliard City Council"}]}],"slug":"nassau"},"12091":{"county":[{"n":"Benjamin Anderson","r":"Tax Collector, Okaloosa County"},{"n":"Brad Embry","r":"Clerk of Court, Okaloosa County"},{"n":"Carolyn Ketchel","r":"Commissioner, Okaloosa County"},{"n":"Dewey Parker Destin","r":"Okaloosa County School Board"},{"n":"Diane Kelley","r":"Okaloosa County School Board"},{"n":"Eric Aden","r":"Sheriff, Okaloosa County"},{"n":"J.D. Peacock","r":"Clerk of Court, Okaloosa County"},{"n":"Lamar White","r":"Okaloosa County School Board"},{"n":"Linda Evanchyk","r":"Okaloosa County School Board"},{"n":"Mack Busbee","r":"Property Appraiser, Okaloosa County"},{"n":"Mel Ponder","r":"Commissioner, Okaloosa County"},{"n":"Nathaniel Boyles","r":"Commissioner, Okaloosa County"},{"n":"Paul Lux","r":"Supervisor of Elections, Okaloosa County"},{"n":"Paul Mixon","r":"Commissioner, Okaloosa County"},{"n":"Timothy Bryant","r":"Okaloosa County School Board"},{"n":"Trey Goodwin","r":"Commissioner, Okaloosa County"}],"districts":{"cd":[{"d":"FL-01","rep":"Jimmy Patronis","w":0.8}],"sh":[{"d":"FL House District 4","rep":"Patt Maney","w":0.458},{"d":"FL House District 3","rep":"Nathan Boyles","w":0.341}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":0.522},{"d":"FL Senate District 1","rep":"Don Gaetz","w":0.277}]},"munis":[{"m":"Cinco Bayou","p":[{"n":"Chris Washack","r":"Cinco Bayou City Council"},{"n":"Danny Dillard","r":"Cinco Bayou City Council"},{"n":"Jean M. Hood","r":"Mayor of Cinco Bayou"},{"n":"Laura Driver","r":"Cinco Bayou City Council"},{"n":"Mary Ann Hawkins","r":"Cinco Bayou City Council"}]},{"m":"Crestview","p":[{"n":"Brandon Frost","r":"Crestview City Council"},{"n":"Douglas Capps","r":"Crestview City Council"},{"n":"Dusty B. Allison","r":"Crestview City Council"},{"n":"J. B. Whitten","r":"Mayor of Crestview"},{"n":"Shannon D. Hayes","r":"Crestview City Council"},{"n":"Sylvester L. Echols","r":"Crestview City Council"}]},{"m":"Destin","p":[{"n":"Bobby Wagner","r":"Mayor of Destin"},{"n":"Dewey Destin","r":"Destin City Council"},{"n":"Jim Bagby","r":"Destin City Council"},{"n":"Kevin Schmidt","r":"Destin City Council"},{"n":"Rodney J. Braden","r":"Destin City Council"},{"n":"Sandra K. Trammell","r":"Destin City Council"},{"n":"Terésa Hebert","r":"Destin City Council"},{"n":"Torey Geile","r":"Destin City Council"}]},{"m":"Fort Walton Beach","p":[{"n":"Ben Merrell","r":"Fort Walton Beach City Council"},{"n":"Bryce Jeter","r":"Fort Walton Beach City Council"},{"n":"David Schmidt","r":"Fort Walton Beach City Council"},{"n":"Logan Browning","r":"Fort Walton Beach City Council"},{"n":"Nic Allegretto","r":"Mayor of Fort Walton Beach"},{"n":"Payne Walker","r":"Fort Walton Beach City Council"}]},{"m":"Laurel Hill","p":[{"n":"Amanda Rosen","r":"Laurel Hill City Council"},{"n":"Debra Adams","r":"Laurel Hill City Council"},{"n":"Jacob Locke","r":"Laurel Hill City Council"},{"n":"Kristine Gaskin","r":"Laurel Hill City Council"},{"n":"Robby Adams","r":"Mayor of Laurel Hill"},{"n":"Shawn Cogan","r":"Laurel Hill City Council"}]},{"m":"Mary Esther","p":[{"n":"April Sutton","r":"Mary Esther City Council"},{"n":"Bernard W. Oder","r":"Mary Esther City Council"},{"n":"Chris Stein","r":"Mayor of Mary Esther"},{"n":"Larry J. Carter","r":"Mary Esther City Council"},{"n":"Richard Lawson","r":"Mary Esther City Council"},{"n":"Susan Coxwell","r":"Mary Esther City Council"}]},{"m":"Niceville","p":[{"n":"Cathy Alley","r":"Niceville City Council"},{"n":"Daniel L. Henkel","r":"Mayor of Niceville"},{"n":"Doug Tolbert","r":"Niceville City Council"},{"n":"Douglas Stauffer","r":"Niceville City Council"},{"n":"Heath Rominger","r":"Niceville City Council"},{"n":"William G. Schaetzle","r":"Niceville City Council"}]},{"m":"Shalimar","p":[{"n":"Brad Gable","r":"Shalimar City Council"},{"n":"Brian Taylor","r":"Shalimar City Council"},{"n":"Jerry McCallister","r":"Shalimar City Council"},{"n":"Mark Franks","r":"Mayor of Shalimar"},{"n":"Ricardo Garcia","r":"Shalimar City Council"}]},{"m":"Valparaiso","p":[{"n":"Bryan L. Griffin","r":"Valparaiso City Council"},{"n":"Clark T. Browning","r":"Valparaiso City Council"},{"n":"Hubert B. Smith","r":"Mayor of Valparaiso"},{"n":"Kay Hamilton","r":"Valparaiso City Council"}]}],"slug":"okaloosa"},"12093":{"county":[{"n":"Amanda Riedel","r":"Okeechobee County School Board"},{"n":"Bradley Goodbread","r":"Commissioner, Okeechobee County"},{"n":"Celeste Watford","r":"Tax Collector, Okeechobee County"},{"n":"Christine Brennan Bishop","r":"Okeechobee County School Board"},{"n":"David Hazellief","r":"Commissioner, Okeechobee County"},{"n":"David May","r":"Supervisor of Elections, Okeechobee County"},{"n":"Frank DeCarlo","r":"Commissioner, Okeechobee County"},{"n":"Jerald Bryant","r":"Clerk of Court, Okeechobee County"},{"n":"Jill Clericuzio Holcomb","r":"Okeechobee County School Board"},{"n":"Kelly Owens","r":"Commissioner, Okeechobee County"},{"n":"Melisa Jahner","r":"Okeechobee County School Board"},{"n":"Melissa Arnold","r":"Supervisor of Elections, Okeechobee County"},{"n":"Michael Bandi","r":"Property Appraiser, Okeechobee County"},{"n":"Michael Sumner","r":"Commissioner, Okeechobee County"},{"n":"Noel Stephen","r":"Sheriff, Okeechobee County"},{"n":"Sharon Robertson","r":"Clerk of Court, Okeechobee County"},{"n":"Terry Burroughs","r":"Commissioner, Okeechobee County"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":0.999}],"sh":[{"d":"FL House District 83","rep":"Kaylee Tuck","w":0.999}],"ss":[{"d":"FL Senate District 29","rep":"Erin Grall","w":0.999}]},"munis":[{"m":"Okeechobee","p":[{"n":"David McAuley","r":"Okeechobee City Council"},{"n":"Dowling R. Watford","r":"Mayor of Okeechobee"},{"n":"Noel Chandler","r":"Okeechobee City Council"},{"n":"Robert Jarriel","r":"Okeechobee City Council"}]}],"slug":"okeechobee"},"12095":{"county":[{"n":"Alicia Farrant","r":"Orange County School Board"},{"n":"Amy Mercado","r":"Property Appraiser, Orange County"},{"n":"Angie Gallo","r":"Orange County School Board"},{"n":"Anne Douglas","r":"Orange County School Board"},{"n":"Christine Moore","r":"Commissioner, Orange County"},{"n":"Emily Bonilla","r":"Commissioner, Orange County"},{"n":"Glen Gilzean","r":"Supervisor of Elections, Orange County"},{"n":"John Mina","r":"Sheriff, Orange County"},{"n":"Karen Dentel","r":"Supervisor of Elections, Orange County"},{"n":"Maria Salamanca","r":"Orange County School Board"},{"n":"Maribel Gomez Cordero","r":"Commissioner, Orange County"},{"n":"Mayra Uribe","r":"Commissioner, Orange County"},{"n":"Melissa Mitchell Byrd","r":"Orange County School Board"},{"n":"Michael Scott","r":"Commissioner, Orange County"},{"n":"Nicole Wilson","r":"Commissioner, Orange County"},{"n":"Rick Singh","r":"Property Appraiser, Orange County"},{"n":"Scott Randolph","r":"Tax Collector, Orange County"},{"n":"Stephanie Vanos","r":"Orange County School Board"},{"n":"Teresa Jacobs","r":"Orange County School Board"},{"n":"Tiffany Moore Russell","r":"Clerk of Court, Orange County"},{"n":"Vicki-Elaine Felder","r":"Orange County School Board"},{"n":"Victoria Siplin","r":"Commissioner, Orange County"}],"districts":{"cd":[{"d":"FL-11","rep":"Daniel Webster","w":0.328},{"d":"FL-09","rep":"Darren Soto","w":0.276},{"d":"FL-10","rep":"Maxwell Frost","w":0.272},{"d":"FL-08","rep":"Mike Haridopolos","w":0.124}],"sh":[{"d":"FL House District 35","rep":"Erika Booth","w":0.335},{"d":"FL House District 39","rep":"Doug Bankson","w":0.176},{"d":"FL House District 45","rep":"Leonard Spencer","w":0.129},{"d":"FL House District 44","rep":"Rita Harris","w":0.107},{"d":"FL House District 43","rep":"Johanna López","w":0.068},{"d":"FL House District 42","rep":"Anna Eskamani","w":0.056},{"d":"FL House District 40","rep":"RaShon Young","w":0.051},{"d":"FL House District 41","rep":"Bruce Antone","w":0.04},{"d":"FL House District 37","rep":"Susan Plasencia","w":0.032},{"d":"FL House District 47","rep":"Paula Stark","w":0.007}],"ss":[{"d":"FL Senate District 17","rep":"Carlos Smith","w":0.487},{"d":"FL Senate District 15","rep":"LaVon Bracy Davis","w":0.287},{"d":"FL Senate District 13","rep":"Keith Truenow","w":0.133},{"d":"FL Senate District 25","rep":"Kristen Arrington","w":0.071},{"d":"FL Senate District 10","rep":"Jason Brodeur","w":0.021}]},"munis":[{"m":"Apopka","p":[{"n":"Nadia Anderson","r":"Apopka City Council"},{"n":"Nick Nesta","r":"Mayor of Apopka"},{"n":"Sam Ruth","r":"Apopka City Council"},{"n":"Yesenia Leon Baron","r":"Apopka City Council"}]},{"m":"Bay Lake","p":[{"n":"Bryan Swartz","r":"Bay Lake City Council"},{"n":"Sue McCall","r":"Bay Lake City Council"},{"n":"Tanya Peak-Smith","r":"Bay Lake City Council"},{"n":"Tim Burns","r":"Bay Lake City Council"},{"n":"Todd Watzel","r":"Mayor of Bay Lake"}]},{"m":"Belle Isle","p":[{"n":"Beth Lowell","r":"Belle Isle City Council"},{"n":"Bobby Lance","r":"Belle Isle City Council"},{"n":"Ed Gold","r":"Belle Isle City Council"},{"n":"Holly Bobrowski","r":"Belle Isle City Council"},{"n":"Jason Carson","r":"Mayor of Belle Isle"},{"n":"Jim Partin","r":"Belle Isle City Council"},{"n":"Karl Shuck","r":"Belle Isle City Council"}]},{"m":"Eatonville","p":[{"n":"Angela Y. Thomas","r":"Eatonville City Council"},{"n":"LaDwyana Jordan","r":"Eatonville City Council"},{"n":"Ruth Critton","r":"Mayor of Eatonville"},{"n":"Theo E. Washington","r":"Eatonville City Council"},{"n":"Wanda Randolph","r":"Eatonville City Council"}]},{"m":"Edgewood","p":[{"n":"Beth Steele","r":"Edgewood City Council"},{"n":"Casey McElroy","r":"Edgewood City Council"},{"n":"Chris Rader","r":"Edgewood City Council"},{"n":"John Dowless","r":"Mayor of Edgewood"},{"n":"Richard Horn","r":"Edgewood City Council"},{"n":"Susan Lomas","r":"Edgewood City Council"}]},{"m":"Lake Buena Vista","p":[{"n":"Andrea Fay","r":"Lake Buena Vista City Council"},{"n":"Angie Sola","r":"Lake Buena Vista City Council"},{"n":"Renee Raper","r":"Mayor of Lake Buena Vista"},{"n":"Tom McCoy","r":"Lake Buena Vista City Council"}]},{"m":"Maitland","p":[{"n":"Bill Randolph","r":"Maitland City Council"},{"n":"John P. Lowndes","r":"Mayor of Maitland"},{"n":"Keith Givens","r":"Maitland City Council"},{"n":"Scot A. French","r":"Maitland City Council"},{"n":"Stephen B. Schoene","r":"Maitland City Council"}]},{"m":"Oakland","p":[{"n":"Joseph McMullen","r":"Oakland City Council"},{"n":"Kris Keller","r":"Oakland City Council"},{"n":"Michael Satterfield","r":"Oakland City Council"},{"n":"Shane Taylor","r":"Mayor of Oakland"},{"n":"Yumeko Motley","r":"Oakland City Council"}]},{"m":"Ocoee","p":[{"n":"George Oliver","r":"Ocoee City Council"},{"n":"Richard Firstner","r":"Ocoee City Council"},{"n":"Rosemary Wilsen","r":"Ocoee City Council"},{"n":"Rusty Johnson","r":"Mayor of Ocoee"},{"n":"Scott Kennedy","r":"Ocoee City Council"}]},{"m":"Orlando","p":[{"n":"Antonio L. Ortiz","r":"Orlando City Council"},{"n":"Antonio Ortiz","r":"Orlando City Council - District 2"},{"n":"Bakari F. Burns","r":"Orlando City Council"},{"n":"Bakari F. Burns","r":"Orlando City Council - District 6"},{"n":"Buddy Dyer","r":"Mayor of Orlando"},{"n":"Patty Sheehan","r":"Orlando City Council"},{"n":"Patty Sheehan","r":"Orlando City Council - District 4"},{"n":"Roger Chapin","r":"Orlando City Council"},{"n":"Roger Chapin","r":"Orlando City Council - District 3"},{"n":"Shan Rose","r":"Orlando City Council"},{"n":"Shan Rose","r":"Orlando City Council - District 5"},{"n":"Tom Keen","r":"Orlando City Council"},{"n":"Tom Keen","r":"Orlando City Council - District 1"}]},{"m":"Windermere","p":[{"n":"Brandi Haines","r":"Windermere City Council"},{"n":"CT Allen","r":"Windermere City Council"},{"n":"Jim O'Brien","r":"Mayor of Windermere"},{"n":"Mandy David","r":"Windermere City Council"},{"n":"Tom Stroup","r":"Windermere City Council"},{"n":"Tony Davit","r":"Windermere City Council"}]},{"m":"Winter Garden","p":[{"n":"Chloe Johnson","r":"Winter Garden City Council"},{"n":"Colin Sharman","r":"Winter Garden City Council"},{"n":"Iliana R. Jones","r":"Winter Garden City Council"},{"n":"John Rees","r":"Mayor of Winter Garden"},{"n":"Lisa L. Bennett","r":"Winter Garden City Council"}]},{"m":"Winter Park","p":[{"n":"Craig Russell","r":"Winter Park City Council"},{"n":"Elizabeth Ingram","r":"Winter Park City Council"},{"n":"Kristopher Cruzada","r":"Winter Park City Council"},{"n":"Sheila DeCiccio","r":"Mayor of Winter Park"},{"n":"Warren Lindsey","r":"Winter Park City Council"}]}],"slug":"orange"},"12097":{"county":[{"n":"Anthony Cook","r":"Osceola County School Board"},{"n":"Armando Ramirez","r":"Clerk of Court, Osceola County"},{"n":"Brandon Arrington","r":"Commissioner, Osceola County"},{"n":"Bruce Vickers","r":"Tax Collector, Osceola County"},{"n":"Cheryl Grieb","r":"Commissioner, Osceola County"},{"n":"Erika Booth","r":"Osceola County School Board"},{"n":"Heather Kahoun","r":"Osceola County School Board"},{"n":"Katrina Scarborough","r":"Property Appraiser, Osceola County"},{"n":"Kelvin Soto","r":"Clerk of Court, Osceola County"},{"n":"Marcos Lopez","r":"Sheriff, Osceola County"},{"n":"Mary Jane Arrington","r":"Supervisor of Elections, Osceola County"},{"n":"Paula Bronson","r":"Osceola County School Board"},{"n":"Peggy Choudhry","r":"Commissioner, Osceola County"},{"n":"Ricky Booth","r":"Commissioner, Osceola County"},{"n":"Russell Gibson","r":"Sheriff, Osceola County"},{"n":"Teresa \"Terry\" Castillo","r":"Osceola County School Board"},{"n":"Viviana Janer","r":"Commissioner, Osceola County"}],"districts":{"cd":[{"d":"FL-09","rep":"Darren Soto","w":0.998}],"sh":[{"d":"FL House District 35","rep":"Erika Booth","w":0.808},{"d":"FL House District 46","rep":"Jose Alvarez","w":0.1},{"d":"FL House District 47","rep":"Paula Stark","w":0.06},{"d":"FL House District 45","rep":"Leonard Spencer","w":0.032}],"ss":[{"d":"FL Senate District 25","rep":"Kristen Arrington","w":1.0}]},"munis":[{"m":"Kissimmee","p":[{"n":"Carlos Alvarez","r":"Kissimmee City Council"},{"n":"Jackie Espinosa","r":"Mayor of Kissimmee"},{"n":"Janette Martinez","r":"Kissimmee City Council"},{"n":"Noel Ortiz","r":"Kissimmee City Council"}]},{"m":"St. Cloud","p":[{"n":"Chris Robertson","r":"Mayor of St. Cloud"},{"n":"Jennifer Paul","r":"St. Cloud City Council"},{"n":"Ken Gilbert","r":"St. Cloud City Council"},{"n":"Kolby Urban","r":"St. Cloud City Council"},{"n":"Shawn Fletcher","r":"St. Cloud City Council"}]}],"slug":"osceola"},"12099":{"county":[{"n":"Anne Gannon","r":"Tax Collector, Palm Beach County"},{"n":"Bobby Powell","r":"Commissioner, Palm Beach County"},{"n":"David Kerner","r":"Commissioner, Palm Beach County"},{"n":"Dorothy Jacks","r":"Property Appraiser, Palm Beach County"},{"n":"Edwin Ferguson","r":"Palm Beach County School Board"},{"n":"Erica Whitfield","r":"Palm Beach County School Board"},{"n":"Gloria Branch","r":"Palm Beach County School Board"},{"n":"Gregg Weiss","r":"Commissioner, Palm Beach County"},{"n":"Joel Flores","r":"Commissioner, Palm Beach County"},{"n":"Joseph Abruzzo","r":"Clerk of Court, Palm Beach County"},{"n":"Karen Brill","r":"Palm Beach County School Board"},{"n":"Mack Bernard","r":"Commissioner, Palm Beach County"},{"n":"Marcia Andrews","r":"Palm Beach County School Board"},{"n":"Marcia Woodward","r":"Commissioner, Palm Beach County"},{"n":"Maria Sachs","r":"Commissioner, Palm Beach County"},{"n":"Matthew Jay Lane","r":"Palm Beach County School Board"},{"n":"Michael Barnett","r":"Commissioner, Palm Beach County"},{"n":"Ric Bradshaw","r":"Sheriff, Palm Beach County"},{"n":"Sara Baxter","r":"Commissioner, Palm Beach County"},{"n":"Sharon Bock","r":"Clerk of Court, Palm Beach County"},{"n":"Virginia Savietto","r":"Palm Beach County School Board"},{"n":"Wendy Sartory Link","r":"Supervisor of Elections, Palm Beach County"},{"n":"Wendy Sartory-Link","r":"Supervisor of Elections, Palm Beach County"}],"districts":{"cd":[{"d":"FL-20","rep":"Vacant","w":0.632},{"d":"FL-21","rep":"Brian J. Mast","w":0.168},{"d":"FL-22","rep":"Lois Frankel","w":0.11},{"d":"FL-23","rep":"Jared Moskowitz","w":0.024}],"sh":[{"d":"FL House District 94","rep":"Meg Weinberger","w":0.754},{"d":"FL House District 93","rep":"Anne Gerwig","w":0.04},{"d":"FL House District 92","rep":"Kelly Skidmore","w":0.032},{"d":"FL House District 87","rep":"Emily Gregory","w":0.027},{"d":"FL House District 91","rep":"Peggy Gossett-Seidman","w":0.021},{"d":"FL House District 88","rep":"Tae Edmonds","w":0.019},{"d":"FL House District 90","rep":"Rob Long","w":0.018},{"d":"FL House District 89","rep":"Debra Tendrich","w":0.013},{"d":"FL House District 86","rep":"John Snyder","w":0.01}],"ss":[{"d":"FL Senate District 26","rep":"Lori Berman","w":0.531},{"d":"FL Senate District 31","rep":"Gayle Harrell","w":0.335},{"d":"FL Senate District 24","rep":"Mack Bernard","w":0.055},{"d":"FL Senate District 30","rep":"Tina Polsky","w":0.013}]},"munis":[{"m":"Atlantis","p":[{"n":"Allan Kaulbach","r":"Atlantis City Council"},{"n":"Derek Cooper","r":"Atlantis City Council"},{"n":"Keller Lanahan","r":"Mayor of Atlantis"},{"n":"Michael LaCoursiere","r":"Atlantis City Council"}]},{"m":"Belle Glade","p":[{"n":"Joaquin Almazan","r":"Belle Glade City Council"},{"n":"Robert L. Rease","r":"Belle Glade City Council"},{"n":"Sorilinda Santiago","r":"Belle Glade City Council"},{"n":"Steve B. Wilson","r":"Mayor of Belle Glade"},{"n":"Tequella Collins","r":"Belle Glade City Council"}]},{"m":"Boca Raton","p":[{"n":"Jon Pearlman","r":"Boca Raton City Council"},{"n":"Marc Wigder","r":"Boca Raton City Council"},{"n":"Michelle Grau","r":"Boca Raton City Council"},{"n":"Scott Singer","r":"Mayor of Boca Raton"},{"n":"Yvette Drucker","r":"Boca Raton City Council"}]},{"m":"Boynton Beach","p":[{"n":"Aimee Kelley","r":"Boynton Beach City Council"},{"n":"Angela Cruz","r":"Boynton Beach City Council"},{"n":"Mack McCray","r":"Boynton Beach City Council"},{"n":"Rebecca Shelton","r":"Mayor of Boynton Beach"},{"n":"Woodrow L. Hay","r":"Boynton Beach City Council"}]},{"m":"Briny Breezes","p":[{"n":"Bill Birch","r":"Mayor of Briny Breezes"},{"n":"David White","r":"Briny Breezes City Council"},{"n":"Holly Reitnauer","r":"Briny Breezes City Council"},{"n":"Jeff Duncan","r":"Briny Breezes City Council"},{"n":"Liz Loper","r":"Briny Breezes City Council"}]},{"m":"Cloud Lake","p":[{"n":"Alexandra Powell Sardinas","r":"Cloud Lake City Council"},{"n":"John Tyson","r":"Cloud Lake City Council"},{"n":"Kathleen Hoock","r":"Cloud Lake City Council"},{"n":"Marion Chateau-Flagg","r":"Cloud Lake City Council"},{"n":"Russell E. Nidy","r":"Mayor of Cloud Lake"}]},{"m":"Delray Beach","p":[{"n":"Angela Burns","r":"Delray Beach City Council"},{"n":"Judy Mollica","r":"Delray Beach City Council"},{"n":"Juli Casale","r":"Delray Beach City Council"},{"n":"Thomas Markert","r":"Delray Beach City Council"},{"n":"Tom Carney","r":"Mayor of Delray Beach"}]},{"m":"Glen Ridge","p":[{"n":"Alice McLane","r":"Mayor of Glen Ridge"},{"n":"Eusebio Morales","r":"Glen Ridge City Council"},{"n":"Leila Rothe","r":"Glen Ridge City Council"},{"n":"Taylor Jantz","r":"Glen Ridge City Council"},{"n":"Thomas Lisi","r":"Glen Ridge City Council"}]},{"m":"Golf","p":[{"n":"Angela Holiday","r":"Golf City Council"},{"n":"Betsy Hvide","r":"Golf City Council"},{"n":"J. Marshall Duane","r":"Golf City Council"},{"n":"Peter Hamilton","r":"Mayor of Golf"},{"n":"Susannah Rothenberg","r":"Golf City Council"}]},{"m":"Greenacres","p":[{"n":"Charles E. Shaw","r":"Mayor of Greenacres"},{"n":"Elisa Leheny","r":"Greenacres City Council"},{"n":"John Tharp","r":"Greenacres City Council"},{"n":"Judith Dugo","r":"Greenacres City Council"},{"n":"Peter A. Noble","r":"Greenacres City Council"},{"n":"Susy Diaz","r":"Greenacres City Council"}]},{"m":"Gulf Stream","p":[{"n":"Joan K. Orthwein","r":"Gulf Stream City Council"},{"n":"Michael Greene","r":"Gulf Stream City Council"},{"n":"Robert Canfield","r":"Gulf Stream City Council"},{"n":"Scott W. Morgan","r":"Mayor of Gulf Stream"},{"n":"Thomas Stanley","r":"Gulf Stream City Council"}]},{"m":"Haverhill","p":[{"n":"Dennis Withington","r":"Haverhill City Council"},{"n":"Jay G. Foy","r":"Mayor of Haverhill"},{"n":"Lawrence Gordon","r":"Haverhill City Council"},{"n":"Mark C. Uptegraph","r":"Haverhill City Council"},{"n":"Teresa Johnson","r":"Haverhill City Council"}]},{"m":"Highland Beach","p":[{"n":"David Stern","r":"Highland Beach City Council"},{"n":"Donald Peters","r":"Highland Beach City Council"},{"n":"Jason Chudnofsky","r":"Highland Beach City Council"},{"n":"Judith M. Goldberg","r":"Highland Beach City Council"},{"n":"Natasha Moore","r":"Mayor of Highland Beach"}]},{"m":"Hypoluxo","p":[{"n":"Bradley Doyle","r":"Hypoluxo City Council"},{"n":"Christine Nagy","r":"Hypoluxo City Council"},{"n":"Linda Allen","r":"Hypoluxo City Council"},{"n":"Michael C. Brown","r":"Mayor of Hypoluxo"},{"n":"Richard J. Roney","r":"Hypoluxo City Council"},{"n":"Robert Leupp","r":"Hypoluxo City Council"}]},{"m":"Juno Beach","p":[{"n":"DD Halpern","r":"Juno Beach City Council"},{"n":"Dave Santilli","r":"Mayor of Juno Beach"},{"n":"Diana Davis","r":"Juno Beach City Council"},{"n":"Jacob Rosengarten","r":"Juno Beach City Council"},{"n":"Max Fraser","r":"Juno Beach City Council"}]},{"m":"Jupiter","p":[{"n":"Dan Guisinger","r":"Jupiter City Council"},{"n":"Jim Kuretski","r":"Mayor of Jupiter"},{"n":"Malise Sundstrom","r":"Jupiter City Council"},{"n":"Phyllis Choy","r":"Jupiter City Council"},{"n":"Ron Delaney","r":"Jupiter City Council"}]},{"m":"Jupiter Inlet Colony","p":[{"n":"Anna Nemes","r":"Jupiter Inlet Colony City Council"},{"n":"Bill Muir","r":"Mayor of Jupiter Inlet Colony"},{"n":"David Shula","r":"Jupiter Inlet Colony City Council"},{"n":"Janet Saura","r":"Jupiter Inlet Colony City Council"},{"n":"Mark Ciarfella","r":"Jupiter Inlet Colony City Council"}]},{"m":"Lake Clarke Shores","p":[{"n":"Bridget Keating","r":"Lake Clarke Shores City Council"},{"n":"Christy Maasbach","r":"Mayor of Lake Clarke Shores"},{"n":"Gregory Freebold","r":"Lake Clarke Shores City Council"},{"n":"Taylor Materio","r":"Lake Clarke Shores City Council"}]},{"m":"Lake Park","p":[{"n":"John L. Linden","r":"Lake Park City Council"},{"n":"Judith Thomas","r":"Lake Park City Council"},{"n":"Michael Hensley","r":"Lake Park City Council"},{"n":"Michael O'Rourke","r":"Lake Park City Council"},{"n":"Roger Michaud","r":"Mayor of Lake Park"}]},{"m":"Lake Worth Beach","p":[{"n":"Anthony Segrich","r":"Lake Worth Beach City Council"},{"n":"Betty Resch","r":"Mayor of Lake Worth Beach"},{"n":"Christopher McVoy","r":"Lake Worth Beach City Council"},{"n":"Mimi May","r":"Lake Worth Beach City Council"},{"n":"Sarah Malega","r":"Lake Worth Beach City Council"}]},{"m":"Lantana","p":[{"n":"Chris Castle","r":"Lantana City Council"},{"n":"Jesse Rivero","r":"Lantana City Council"},{"n":"Karen Lythgoe","r":"Mayor of Lantana"},{"n":"Kem Mason","r":"Lantana City Council"},{"n":"Mark Zeitler","r":"Lantana City Council"}]},{"m":"Manalapan","p":[{"n":"Cindy McMackin","r":"Manalapan City Council"},{"n":"David Knobel","r":"Manalapan City Council"},{"n":"Dwight Kulwin","r":"Manalapan City Council"},{"n":"Elliot Bonner","r":"Manalapan City Council"},{"n":"John Deese","r":"Mayor of Manalapan"},{"n":"Orla Imbesi","r":"Manalapan City Council"},{"n":"Simone Bonutti","r":"Manalapan City Council"}]},{"m":"Mangonia Park","p":[{"n":"Clarence R. McConnell","r":"Mangonia Park City Council"},{"n":"Kelisha Buchanan-Webb","r":"Mangonia Park City Council"},{"n":"Lisa Davis-Quince","r":"Mangonia Park City Council"},{"n":"Sarita C. Johnson","r":"Mangonia Park City Council"},{"n":"William H. Albury","r":"Mayor of Mangonia Park"}]},{"m":"North Palm Beach","p":[{"n":"Deborah Searcy","r":"North Palm Beach City Council"},{"n":"Kendra Zellner","r":"North Palm Beach City Council"},{"n":"Lisa Interlandi","r":"Mayor of North Palm Beach"},{"n":"Orlando Puyol","r":"North Palm Beach City Council"},{"n":"Susan Bickel","r":"North Palm Beach City Council"}]},{"m":"Ocean Ridge","p":[{"n":"Ainar Aijala","r":"Ocean Ridge City Council"},{"n":"Carolyn Cassidy","r":"Ocean Ridge City Council"},{"n":"Geoffrey A. Pugh","r":"Mayor of Ocean Ridge"},{"n":"Steve Coz","r":"Ocean Ridge City Council"}]},{"m":"Pahokee","p":[{"n":"Everett D. McPherson","r":"Pahokee City Council"},{"n":"Isabelle J. McDonald","r":"Pahokee City Council"},{"n":"James H. Scott","r":"Pahokee City Council"},{"n":"Keith W. Babb","r":"Mayor of Pahokee"},{"n":"Sanquetta Cowan-Williams","r":"Pahokee City Council"}]},{"m":"Palm Beach","p":[{"n":"Bridget Moran","r":"Palm Beach City Council"},{"n":"Danielle H. Moore","r":"Mayor of Palm Beach"},{"n":"Edward Cooney","r":"Palm Beach City Council"},{"n":"Julie Araskog","r":"Palm Beach City Council"},{"n":"Lewis S.W. Crampton","r":"Palm Beach City Council"},{"n":"Nicki McDonald","r":"Palm Beach City Council"}]},{"m":"Palm Beach Gardens","p":[{"n":"Dana P. Middleton","r":"Mayor of Palm Beach Gardens"},{"n":"John D. Kemp","r":"Palm Beach Gardens City Council"},{"n":"Marcie Tinsley","r":"Palm Beach Gardens City Council"},{"n":"Rachelle A. Litt","r":"Palm Beach Gardens City Council"},{"n":"Robert G. Premuroso","r":"Palm Beach Gardens City Council"}]},{"m":"Palm Beach Shores","p":[{"n":"Anastasia Karloutsos","r":"Palm Beach Shores City Council"},{"n":"Roby DeReuil","r":"Palm Beach Shores City Council"},{"n":"Steven Smith","r":"Palm Beach Shores City Council"},{"n":"Tony Lembo","r":"Palm Beach Shores City Council"},{"n":"Tracy Larcher","r":"Mayor of Palm Beach Shores"}]},{"m":"Palm Springs","p":[{"n":"Bev Smith","r":"Mayor of Palm Springs"},{"n":"Gary M. Ready","r":"Palm Springs City Council"},{"n":"Johnnie Tieche","r":"Palm Springs City Council"},{"n":"Kimberly Ann Schmitz","r":"Palm Springs City Council"},{"n":"Patricia Waller","r":"Palm Springs City Council"}]},{"m":"Riviera Beach","p":[{"n":"Bruce Guyton","r":"Riviera Beach City Council"},{"n":"Douglas Lawson","r":"Mayor of Riviera Beach"},{"n":"Fercella Davis Panier","r":"Riviera Beach City Council"},{"n":"Glen Spiritis","r":"Riviera Beach City Council"},{"n":"KaShamba Miller-Anderson","r":"Riviera Beach City Council"},{"n":"Shirley Lanier","r":"Riviera Beach City Council"}]},{"m":"Royal Palm Beach","p":[{"n":"Jan Rodusky","r":"Royal Palm Beach City Council"},{"n":"Jeff Hmara","r":"Mayor of Royal Palm Beach"},{"n":"Richard Valuntas","r":"Royal Palm Beach City Council"},{"n":"Selena Samios","r":"Royal Palm Beach City Council"},{"n":"Sylvia Sharps","r":"Royal Palm Beach City Council"}]},{"m":"South Bay","p":[{"n":"Albert L. Polk","r":"South Bay City Council"},{"n":"Barbara King","r":"South Bay City Council"},{"n":"Betty Barnard","r":"South Bay City Council"},{"n":"Joe Kyles","r":"Mayor of South Bay"},{"n":"Taranza McKelvin","r":"South Bay City Council"}]},{"m":"South Palm Beach","p":[{"n":"Adrian J. Burcet","r":"South Palm Beach City Council"},{"n":"Francesca Attardi","r":"South Palm Beach City Council"},{"n":"Rafael Pineiro","r":"Mayor of South Palm Beach"},{"n":"Raymond McMillan","r":"South Palm Beach City Council"},{"n":"Sandra Beckett","r":"South Palm Beach City Council"}]},{"m":"Tequesta","p":[{"n":"Kyle Stone","r":"Tequesta City Council"},{"n":"Laurie Brandon","r":"Tequesta City Council"},{"n":"Molly Young","r":"Mayor of Tequesta"},{"n":"Patrick Painter","r":"Tequesta City Council"},{"n":"Rick Sartory","r":"Tequesta City Council"}]},{"m":"Wellington","p":[{"n":"Maria Antuña","r":"Wellington City Council"},{"n":"Michael Napoleone","r":"Mayor of Wellington"},{"n":"Stephen A. Levin","r":"Wellington City Council"}]},{"m":"West Palm Beach","p":[{"n":"Cathleen Ward","r":"West Palm Beach City Council"},{"n":"Christy Fox","r":"West Palm Beach City Council"},{"n":"Joseph A. Peduzzi","r":"West Palm Beach City Council"},{"n":"Keith A. James","r":"Mayor of West Palm Beach"},{"n":"Shalonda Warren","r":"West Palm Beach City Council"},{"n":"Stephen Sylvester","r":"West Palm Beach City Council"}]}],"slug":"palm-beach"},"12101":{"county":[{"n":"Al Hernandez","r":"Pasco County School Board"},{"n":"Brian Corley","r":"Supervisor of Elections, Pasco County"},{"n":"Chris Nocco","r":"Sheriff, Pasco County"},{"n":"Colleen Beaudoin","r":"Pasco County School Board"},{"n":"Cynthia Armstrong","r":"Pasco County School Board"},{"n":"Gary Joiner","r":"Property Appraiser, Pasco County"},{"n":"Jack Mariano","r":"Commissioner, Pasco County"},{"n":"Jessica Wright","r":"Pasco County School Board"},{"n":"Kathryn Starkey","r":"Commissioner, Pasco County"},{"n":"Lisa Yeager","r":"Commissioner, Pasco County"},{"n":"Megan Harding","r":"Pasco County School Board"},{"n":"Mike Fasano","r":"Tax Collector, Pasco County"},{"n":"Mike Wells","r":"Property Appraiser, Pasco County"},{"n":"Nikki Alvarez-Sowles","r":"Clerk of Court, Pasco County"},{"n":"Paula O'Neil","r":"Clerk of Court, Pasco County"},{"n":"Ronald Oakley","r":"Commissioner, Pasco County"},{"n":"Seth Weightman","r":"Commissioner, Pasco County"}],"districts":{"cd":[{"d":"FL-12","rep":"Gus M. Bilirakis","w":0.61},{"d":"FL-15","rep":"Laurel M. Lee","w":0.15}],"sh":[{"d":"FL House District 54","rep":"Randy Maggard","w":0.334},{"d":"FL House District 55","rep":"Kevin Steele","w":0.304},{"d":"FL House District 56","rep":"Brad Yeager","w":0.061},{"d":"FL House District 53","rep":"Jeff Holcomb","w":0.056}],"ss":[{"d":"FL Senate District 23","rep":"Danny Burgess","w":0.544},{"d":"FL Senate District 21","rep":"Ed Hooper","w":0.137},{"d":"FL Senate District 11","rep":"Ralph Massullo","w":0.074}]},"munis":[{"m":"Dade City","p":[{"n":"Ann Cosentino","r":"Dade City City Council"},{"n":"James D. Shive","r":"Dade City City Council"},{"n":"Kristin Church","r":"Dade City City Council"},{"n":"Normita Woodard","r":"Dade City City Council"},{"n":"Scott Black","r":"Mayor of Dade City"}]},{"m":"New Port Richey","p":[{"n":"Bertell Butler","r":"New Port Richey City Council"},{"n":"Brian Jonas","r":"New Port Richey City Council"},{"n":"Chopper Davis","r":"Mayor of New Port Richey"},{"n":"Matt Murphy","r":"New Port Richey City Council"},{"n":"Peter Altman","r":"New Port Richey City Council"}]},{"m":"Port Richey","p":[{"n":"Chris Maher","r":"Port Richey City Council"},{"n":"John Eric Hoover","r":"Mayor of Port Richey"},{"n":"Lisa Burke","r":"Port Richey City Council"},{"n":"Robert Hubbard","r":"Port Richey City Council"}]},{"m":"San Antonio","p":[{"n":"Blaze Drinkwine","r":"San Antonio City Council"},{"n":"Caitlin Bolender","r":"San Antonio City Council"},{"n":"John Vogel","r":"Mayor of San Antonio"},{"n":"Randy Huckabee","r":"San Antonio City Council"},{"n":"Sasha Madden","r":"San Antonio City Council"}]},{"m":"St. Leo","p":[{"n":"Apollo Rodriguez","r":"St. Leo City Council"},{"n":"Curtis Dwyer","r":"St. Leo City Council"},{"n":"Donna DeWitt","r":"St. Leo City Council"},{"n":"Vincent D'Ambrosio","r":"Mayor of St. Leo"},{"n":"William E. Hamilton","r":"St. Leo City Council"}]},{"m":"Zephyrhills","p":[{"n":"Charles E. Proctor","r":"Zephyrhills City Council"},{"n":"Jodi Wilkeson","r":"Zephyrhills City Council"},{"n":"Kenneth M. Burgess","r":"Zephyrhills City Council"},{"n":"Lance A. Smith","r":"Zephyrhills City Council"},{"n":"Melonie Bahr Monson","r":"Mayor of Zephyrhills"},{"n":"Steven F. Spina","r":"Zephyrhills City Council"}]}],"slug":"pasco"},"12103":{"county":[{"n":"Adam Ross","r":"Tax Collector, Pinellas County"},{"n":"Brian Scott","r":"Commissioner, Pinellas County"},{"n":"Caprice Edmond","r":"Pinellas County School Board"},{"n":"Caprice Edmond","r":"Pinellas County School Board - Chair, District 7"},{"n":"Charles Thomas","r":"Tax Collector, Pinellas County"},{"n":"Charlie Justice","r":"Commissioner, Pinellas County"},{"n":"Chris Latvala","r":"Commissioner, Pinellas County"},{"n":"Chris Scherer","r":"Commissioner, Pinellas County"},{"n":"Dave Eggers","r":"Commissioner, Pinellas County"},{"n":"Dawn M. Peters","r":"Pinellas County School Board - Vice Chair, At Large 3"},{"n":"Dawn Peters","r":"Pinellas County School Board"},{"n":"Eileen M. Long","r":"Pinellas County School Board"},{"n":"Eileen M. Long","r":"Pinellas County School Board - District 4"},{"n":"Janet Long","r":"Commissioner, Pinellas County"},{"n":"Julie Marcus","r":"Supervisor of Elections, Pinellas County"},{"n":"Kathleen Peters","r":"Commissioner, Pinellas County"},{"n":"Katie Blaxberg","r":"Pinellas County School Board"},{"n":"Katie Blaxberg","r":"Pinellas County School Board - District 5"},{"n":"Ken Burke","r":"Clerk of Court, Pinellas County"},{"n":"Laura Hine","r":"Pinellas County School Board"},{"n":"Laura Hine","r":"Pinellas County School Board - At Large 1"},{"n":"Lisa Cane","r":"Pinellas County School Board"},{"n":"Lisa N. Cane","r":"Pinellas County School Board - At Large 2"},{"n":"Mike Twitty","r":"Property Appraiser, Pinellas County"},{"n":"Rene Flowers","r":"Commissioner, Pinellas County"},{"n":"Robert Gualtieri","r":"Sheriff, Pinellas County"},{"n":"Stephanie Meyer","r":"Pinellas County School Board - District 6"},{"n":"Vince Nowicki","r":"Commissioner, Pinellas County"}],"districts":{"cd":[{"d":"FL-13","rep":"Anna Paulina Luna","w":0.324},{"d":"FL-14","rep":"Kathy Castor","w":0.06}],"sh":[{"d":"FL House District 57","rep":"Adam Anderson","w":0.106},{"d":"FL House District 61","rep":"Linda Chaney","w":0.075},{"d":"FL House District 60","rep":"Lindsay Cross","w":0.065},{"d":"FL House District 58","rep":"Kim Berfield","w":0.056},{"d":"FL House District 59","rep":"Berny Jacques","w":0.053},{"d":"FL House District 62","rep":"Michele Rayner","w":0.021}],"ss":[{"d":"FL Senate District 18","rep":"Nick DiCeglie","w":0.199},{"d":"FL Senate District 21","rep":"Ed Hooper","w":0.148},{"d":"FL Senate District 16","rep":"Darryl Rouson","w":0.029}]},"munis":[{"m":"Belleair","p":[{"n":"Michael Wilkinson","r":"Mayor of Belleair"},{"n":"Patricia Barris","r":"Belleair City Council"},{"n":"Thomas E. Shelly","r":"Belleair City Council"},{"n":"Thomas Kelly","r":"Belleair City Council"},{"n":"Todd Jennings","r":"Belleair City Council"}]},{"m":"Belleair Beach","p":[{"n":"Anders Wellings","r":"Belleair Beach City Council"},{"n":"Frank Bankard","r":"Belleair Beach City Council"},{"n":"Jody Shirley","r":"Belleair Beach City Council"},{"n":"Kimberly Shaw Elliott","r":"Belleair Beach City Council"},{"n":"Lloyd Roberts","r":"Belleair Beach City Council"},{"n":"Michael D. Gattis","r":"Mayor of Belleair Beach"},{"n":"Todd Harper","r":"Belleair Beach City Council"}]},{"m":"Belleair Bluffs","p":[{"n":"Chris Arbutine","r":"Mayor of Belleair Bluffs"},{"n":"David Roberts","r":"Belleair Bluffs City Council"},{"n":"Joseph Barkley","r":"Belleair Bluffs City Council"},{"n":"Karen Rafferty","r":"Belleair Bluffs City Council"},{"n":"Suzy S. Sofer","r":"Belleair Bluffs City Council"}]},{"m":"Belleair Shore","p":[{"n":"Daniel Storie","r":"Belleair Shore City Council"},{"n":"Michael Tolbert","r":"Belleair Shore City Council"},{"n":"Robert Lally","r":"Belleair Shore City Council"},{"n":"Steve Blume","r":"Mayor of Belleair Shore"},{"n":"Susan Cain","r":"Belleair Shore City Council"}]},{"m":"Clearwater","p":[{"n":"Bruce Rector","r":"Mayor of Clearwater"},{"n":"David Allbritton","r":"Clearwater City Council"},{"n":"Lina Teixeira","r":"Clearwater City Council"},{"n":"Michael Mannino","r":"Clearwater City Council"},{"n":"Ryan Cotton","r":"Clearwater City Council"}]},{"m":"Dunedin","p":[{"n":"Jeff Gow","r":"Dunedin City Council"},{"n":"Maureen 'Moe' Freaney","r":"Mayor of Dunedin"},{"n":"Robert Walker","r":"Dunedin City Council"},{"n":"Steven Sandbergen","r":"Dunedin City Council"},{"n":"William Dugard","r":"Dunedin City Council"}]},{"m":"Gulfport","p":[{"n":"Jennifer Daunch","r":"Gulfport City Council"},{"n":"Karen Love","r":"Mayor of Gulfport"},{"n":"Marlene Shaw","r":"Gulfport City Council"},{"n":"Nancy Earley","r":"Gulfport City Council"}]},{"m":"Indian Rocks Beach","p":[{"n":"Hilary King","r":"Indian Rocks Beach City Council"},{"n":"Janet Wilson","r":"Indian Rocks Beach City Council"},{"n":"John Bigelow","r":"Indian Rocks Beach City Council"},{"n":"Kellee Watt","r":"Indian Rocks Beach City Council"},{"n":"Lan Vaughan","r":"Mayor of Indian Rocks Beach"}]},{"m":"Indian Shores","p":[{"n":"Diantha Schear","r":"Mayor of Indian Shores"},{"n":"Ellen Bauer","r":"Indian Shores City Council"},{"n":"Mark Housman","r":"Indian Shores City Council"},{"n":"Michael Howard","r":"Indian Shores City Council"},{"n":"Nicholas Menchise","r":"Indian Shores City Council"}]},{"m":"Kenneth City","p":[{"n":"Bonnie A. Noble","r":"Kenneth City City Council"},{"n":"Donald Kinney","r":"Kenneth City City Council"},{"n":"Robert Arrison","r":"Mayor of Kenneth City"},{"n":"Tony Chan","r":"Kenneth City City Council"}]},{"m":"Largo","p":[{"n":"Christopher Johnson","r":"Largo City Council"},{"n":"Curtis A. Holmes","r":"Largo City Council"},{"n":"Donna Holck","r":"Largo City Council"},{"n":"John Lauser","r":"Largo City Council"},{"n":"Michael DiBrizzi","r":"Largo City Council"},{"n":"Michael Smith","r":"Largo City Council"},{"n":"Woody Brown","r":"Mayor of Largo"}]},{"m":"Madeira Beach","p":[{"n":"Anne-Marie Brooks","r":"Mayor of Madeira Beach"},{"n":"Charles Dillon","r":"Madeira Beach City Council"},{"n":"David Tagliarini","r":"Madeira Beach City Council"},{"n":"Eddie McGeehen","r":"Madeira Beach City Council"},{"n":"Housh Ghovaee","r":"Madeira Beach City Council"}]},{"m":"North Redington Beach","p":[{"n":"Corey Thornton","r":"North Redington Beach City Council"},{"n":"Jay A. Super","r":"Mayor of North Redington Beach"},{"n":"John Messmore","r":"North Redington Beach City Council"},{"n":"Kevin Kennedy","r":"North Redington Beach City Council"},{"n":"Richard Nagrabski","r":"North Redington Beach City Council"}]},{"m":"Oldsmar","p":[{"n":"Cyndi Olmstead","r":"Oldsmar City Council"},{"n":"Katie Gannon","r":"Mayor of Oldsmar"},{"n":"Sean Swauger","r":"Oldsmar City Council"},{"n":"Steve Graber","r":"Oldsmar City Council"},{"n":"Valerie Tatarzewksi","r":"Oldsmar City Council"}]},{"m":"Pinellas Park","p":[{"n":"Keith V. Sabiel","r":"Pinellas Park City Council"},{"n":"Patti Reed","r":"Pinellas Park City Council"},{"n":"Ricky Butler","r":"Pinellas Park City Council"},{"n":"Sandra L. Bradbury","r":"Mayor of Pinellas Park"},{"n":"Tim Caddell","r":"Pinellas Park City Council"}]},{"m":"Redington Beach","p":[{"n":"David Will","r":"Mayor of Redington Beach"},{"n":"James Murray","r":"Redington Beach City Council"},{"n":"Rich Cariello","r":"Redington Beach City Council"},{"n":"Tim Thompson","r":"Redington Beach City Council"}]},{"m":"Redington Shores","p":[{"n":"CJ Hoyt","r":"Redington Shores City Council"},{"n":"Erin Schoos","r":"Redington Shores City Council"},{"n":"Larry Maynard","r":"Redington Shores City Council"},{"n":"Tom Kapper","r":"Mayor of Redington Shores"}]},{"m":"Safety Harbor","p":[{"n":"Andy Steingold","r":"Safety Harbor City Council"},{"n":"Jacob Burnett","r":"Safety Harbor City Council"},{"n":"Joe Ayoub","r":"Mayor of Safety Harbor"},{"n":"Kevin Shanks","r":"Safety Harbor City Council"},{"n":"Nancy Besore","r":"Safety Harbor City Council"}]},{"m":"Seminole","p":[{"n":"Alan Shields","r":"Seminole City Council"},{"n":"Christopher Burke","r":"Seminole City Council"},{"n":"James Quinn","r":"Seminole City Council"},{"n":"Latisha 'Trish' Springer","r":"Seminole City Council"},{"n":"Leslie Waters","r":"Mayor of Seminole"},{"n":"Raymond Beliveau","r":"Seminole City Council"},{"n":"Thomas Barnhorn","r":"Seminole City Council"}]},{"m":"South Pasadena","p":[{"n":"Arthur Penny","r":"Mayor of South Pasadena"},{"n":"Gail Neidinger","r":"South Pasadena City Council"},{"n":"Lynda Thompson","r":"South Pasadena City Council"},{"n":"Mark McAlees","r":"South Pasadena City Council"},{"n":"Thomas B. Reid","r":"South Pasadena City Council"}]},{"m":"St. Pete Beach","p":[{"n":"Al Causey","r":"St. Pete Beach City Council"},{"n":"Jon Maldonado","r":"St. Pete Beach City Council"},{"n":"Karen Marriott","r":"St. Pete Beach City Council"},{"n":"Lisa Robinson","r":"St. Pete Beach City Council"},{"n":"Scott Tate","r":"Mayor of St. Pete Beach"}]},{"m":"St. Petersburg","p":[{"n":"Brandi Gabbard","r":"St. Petersburg City Council"},{"n":"Copley Gerdes","r":"St. Petersburg City Council"},{"n":"Corey Givens","r":"St. Petersburg City Council"},{"n":"Gina Driscoll","r":"St. Petersburg City Council"},{"n":"Kenneth T. Welch","r":"Mayor of St. Petersburg"},{"n":"Lisset Hanewicz","r":"St. Petersburg City Council"},{"n":"Mike Harting","r":"St. Petersburg City Council"},{"n":"Richie Floyd","r":"St. Petersburg City Council"}]},{"m":"Tarpon Springs","p":[{"n":"David Banther","r":"Tarpon Springs City Council"},{"n":"Frank DiDonato","r":"Tarpon Springs City Council"},{"n":"John Koulianos","r":"Mayor of Tarpon Springs"},{"n":"Mike Eisner","r":"Tarpon Springs City Council"},{"n":"Panagiotis Koulias","r":"Tarpon Springs City Council"}]},{"m":"Treasure Island","p":[{"n":"Arden Dickey","r":"Treasure Island City Council"},{"n":"Arthur Czyszczon","r":"Treasure Island City Council"},{"n":"Chris Clark","r":"Treasure Island City Council"},{"n":"John Doctor","r":"Mayor of Treasure Island"}]}],"slug":"pinellas"},"12105":{"county":[{"n":"Becky Troutman","r":"Commissioner, Polk County"},{"n":"Bill Braswell","r":"Commissioner, Polk County"},{"n":"Dr. William Allen","r":"Polk County School Board - District 1"},{"n":"George Lindsey","r":"Commissioner, Polk County"},{"n":"Grady Judd","r":"Sheriff, Polk County"},{"n":"Joe Tedder","r":"Tax Collector, Polk County"},{"n":"Justin Sharpless","r":"Polk County School Board"},{"n":"Kate Wallace","r":"Polk County School Board - District 3"},{"n":"Kay Fields","r":"Polk County School Board"},{"n":"Lisa Miller","r":"Polk County School Board"},{"n":"Lori Edwards","r":"Supervisor of Elections, Polk County"},{"n":"Marsha Faux","r":"Property Appraiser, Polk County"},{"n":"Martha Santiago","r":"Commissioner, Polk County"},{"n":"Melony Bell","r":"Supervisor of Elections, Polk County"},{"n":"Mike Scott","r":"Commissioner, Polk County"},{"n":"Neil Combee","r":"Property Appraiser, Polk County"},{"n":"Rick Nolte","r":"Polk County School Board"},{"n":"Rick Wilson","r":"Commissioner, Polk County"},{"n":"Sara Beth Reynolds Wyatt","r":"Polk County School Board"},{"n":"Sara Beth Wyatt","r":"Polk County School Board - District 4"},{"n":"Stacy Butterfield","r":"Clerk of Court, Polk County"},{"n":"Travis Keyes","r":"Polk County School Board"},{"n":"Travis L. Keyes","r":"Polk County School Board - Vice Chair, District 2"},{"n":"William Allen","r":"Polk County School Board"}],"districts":{"cd":[{"d":"FL-18","rep":"Scott Franklin","w":0.774},{"d":"FL-11","rep":"Daniel Webster","w":0.135},{"d":"FL-15","rep":"Laurel M. Lee","w":0.059},{"d":"FL-09","rep":"Darren Soto","w":0.032}],"sh":[{"d":"FL House District 48","rep":"Jon Albert","w":0.366},{"d":"FL House District 49","rep":"Jennifer Kincart Jonsson","w":0.317},{"d":"FL House District 51","rep":"Hilary Holley","w":0.244},{"d":"FL House District 50","rep":"Jennifer Canady","w":0.072}],"ss":[{"d":"FL Senate District 27","rep":"Ben Albritton","w":0.502},{"d":"FL Senate District 12","rep":"Colleen Burton","w":0.498}]},"munis":[{"m":"Auburndale","p":[{"n":"Alex Cam","r":"Mayor of Auburndale"},{"n":"Crystal Tijerina","r":"Auburndale City Council"},{"n":"Jordan Helms","r":"Auburndale City Council"},{"n":"Keith Cowie","r":"Auburndale City Council"},{"n":"Travis Avery","r":"Auburndale City Council"}]},{"m":"Bartow","p":[{"n":"Gary Ball","r":"Bartow City Council"},{"n":"Laura Simpson","r":"Bartow City Council"},{"n":"Leo E. Longworth","r":"Bartow City Council"},{"n":"Tanya Tucker","r":"Mayor of Bartow"},{"n":"Trish Pfeiffer","r":"Bartow City Council"}]},{"m":"Davenport","p":[{"n":"Donna Fellows-Coffey","r":"Mayor of Davenport"},{"n":"Frank Rivera","r":"Davenport City Council"},{"n":"Jeremy Clark","r":"Davenport City Council"},{"n":"Linda Robinson","r":"Davenport City Council"},{"n":"Tom Fellows","r":"Davenport City Council"}]},{"m":"Dundee","p":[{"n":"Annette Wilson","r":"Dundee City Council"},{"n":"Joe Garrison","r":"Mayor of Dundee"},{"n":"Julia Hunt","r":"Dundee City Council"},{"n":"Mary Richardson","r":"Dundee City Council"},{"n":"Ray Hunt","r":"Dundee City Council"}]},{"m":"Eagle Lake","p":[{"n":"Cory Coler","r":"Mayor of Eagle Lake"},{"n":"Kristen Pita","r":"Eagle Lake City Council"},{"n":"Randy Billings","r":"Eagle Lake City Council"},{"n":"Steven Metosh","r":"Eagle Lake City Council"},{"n":"Steven Williams","r":"Eagle Lake City Council"}]},{"m":"Fort Meade","p":[{"n":"James E. Watts","r":"Mayor of Fort Meade"},{"n":"James W. Schaill","r":"Fort Meade City Council"},{"n":"Jaret Landon Williams","r":"Fort Meade City Council"},{"n":"Petrina McCutchen","r":"Fort Meade City Council"}]},{"m":"Frostproof","p":[{"n":"Adam W. Greenway","r":"Frostproof City Council"},{"n":"Austin Gravley","r":"Frostproof City Council"},{"n":"Leslie Brewer","r":"Frostproof City Council"},{"n":"Michael Hutto","r":"Mayor of Frostproof"},{"n":"Tashana True","r":"Frostproof City Council"}]},{"m":"Haines City","p":[{"n":"Anne Huffman","r":"Haines City City Council"},{"n":"Kimberly Downing","r":"Haines City City Council"},{"n":"Lekia Johnson","r":"Haines City City Council"},{"n":"Morris L. West","r":"Haines City City Council"},{"n":"Vernel Smith","r":"Mayor of Haines City"}]},{"m":"Highland Park","p":[{"n":"Amanda Updike","r":"Highland Park City Council"},{"n":"Steve Railey","r":"Highland Park City Council"}]},{"m":"Hillcrest Heights","p":[{"n":"Jason Harmeling","r":"Hillcrest Heights City Council"},{"n":"Jerry Dohoney","r":"Hillcrest Heights City Council"},{"n":"Michael Bishop","r":"Mayor of Hillcrest Heights"},{"n":"Richard Lee","r":"Hillcrest Heights City Council"},{"n":"Sam Knight","r":"Hillcrest Heights City Council"}]},{"m":"Lake Alfred","p":[{"n":"Brent Eden","r":"Lake Alfred City Council"},{"n":"Jack Dearmin","r":"Lake Alfred City Council"},{"n":"Mac Fuller","r":"Mayor of Lake Alfred"},{"n":"Nancy Z. Daley","r":"Lake Alfred City Council"},{"n":"Ronnie Robinson","r":"Lake Alfred City Council"}]},{"m":"Lake Hamilton","p":[{"n":"Carmen Demanche","r":"Lake Hamilton City Council"},{"n":"Joshua Collier","r":"Lake Hamilton City Council"},{"n":"Marsol Ortega","r":"Lake Hamilton City Council"},{"n":"Phyllis Hall","r":"Mayor of Lake Hamilton"},{"n":"Robert Mathis","r":"Lake Hamilton City Council"}]},{"m":"Lake Wales","p":[{"n":"Carol Gillespie","r":"Lake Wales City Council"},{"n":"Daniel Williams","r":"Lake Wales City Council"},{"n":"Jack Hilligoss","r":"Mayor of Lake Wales"},{"n":"Keith Thompson","r":"Lake Wales City Council"},{"n":"Terri Miller","r":"Lake Wales City Council"}]},{"m":"Lakeland","p":[{"n":"Ashley C. Troutman","r":"Lakeland City Council"},{"n":"Chad McLeod","r":"Lakeland City Council"},{"n":"Guy LaLonde","r":"Lakeland City Council"},{"n":"Mike Musick","r":"Lakeland City Council"},{"n":"Sara R. McCarley","r":"Mayor of Lakeland"},{"n":"Stephanie Madden","r":"Lakeland City Council"},{"n":"Terry Coney","r":"Lakeland City Council"}]},{"m":"Mulberry","p":[{"n":"Collins L. Smith","r":"Mulberry City Council"},{"n":"Dawn McDonald","r":"Mulberry City Council"},{"n":"George H. Hatch","r":"Mayor of Mulberry"},{"n":"Kathryn Smith Barsotti","r":"Mulberry City Council"},{"n":"Neil Devine","r":"Mulberry City Council"},{"n":"Rosa Ayersman","r":"Mulberry City Council"}]},{"m":"Polk City","p":[{"n":"Brian Knouff","r":"Polk City City Council"},{"n":"Donna Martin","r":"Polk City City Council"},{"n":"Joe LaCascia","r":"Mayor of Polk City"},{"n":"Micheal T. Blethen","r":"Polk City City Council"},{"n":"Rick Wilson","r":"Polk City City Council"}]},{"m":"Winter Haven","p":[{"n":"Chad Davis","r":"Winter Haven City Council"},{"n":"Clifton E. Dollison","r":"Winter Haven City Council"},{"n":"L. Tracy Mercer","r":"Winter Haven City Council"},{"n":"Nathaniel J. Birdsong","r":"Winter Haven City Council"},{"n":"William B. Yates","r":"Mayor of Winter Haven"}]}],"slug":"polk"},"12107":{"county":[{"n":"Bill Pickens","r":"Commissioner, Putnam County"},{"n":"Brenda Bridges","r":"Tax Collector, Putnam County"},{"n":"Charles Overturf","r":"Supervisor of Elections, Putnam County"},{"n":"Clay Davis","r":"Property Appraiser, Putnam County"},{"n":"David Buckles","r":"Putnam County School Board"},{"n":"H.D. DeLoach","r":"Sheriff, Putnam County"},{"n":"Holly H. Pickens","r":"Putnam County School Board"},{"n":"Larry Harvey","r":"Commissioner, Putnam County"},{"n":"Linda A. Wagner","r":"Putnam County School Board"},{"n":"Linda Myers","r":"Tax Collector, Putnam County"},{"n":"Paul Adamczyk","r":"Commissioner, Putnam County"},{"n":"Phil Leary","r":"Putnam County School Board"},{"n":"Sandra \"Sandy\" Gilyard","r":"Putnam County School Board"},{"n":"Terry Turner","r":"Commissioner, Putnam County"},{"n":"Tim Parker","r":"Property Appraiser, Putnam County"},{"n":"Tim Smith","r":"Clerk of Court, Putnam County"},{"n":"Walton Pellicer","r":"Commissioner, Putnam County"}],"districts":{"cd":[{"d":"FL-06","rep":"Randy Fine","w":0.999}],"sh":[{"d":"FL House District 20","rep":"Judson Sapp","w":1.0}],"ss":[{"d":"FL Senate District 7","rep":"Tom Leek","w":1.0}]},"munis":[{"m":"Crescent City","p":[{"n":"Cynthia Burton","r":"Crescent City City Council"},{"n":"Linda Moore","r":"Crescent City City Council"},{"n":"Lisa Kane DeVitto","r":"Crescent City City Council"},{"n":"Michele Myers","r":"Mayor of Crescent City"},{"n":"William Laurie","r":"Crescent City City Council"}]},{"m":"Interlachen","p":[{"n":"Anna Rose Larson","r":"Interlachen City Council"},{"n":"Beverly Bakker","r":"Interlachen City Council"},{"n":"Carolyn Bennett","r":"Interlachen City Council"},{"n":"Carolyn Meadows","r":"Interlachen City Council"},{"n":"James R. Hanes","r":"Mayor of Interlachen"},{"n":"Joni Conner","r":"Interlachen City Council"}]},{"m":"Palatka","p":[{"n":"Annie H. Davis","r":"Palatka City Council"},{"n":"Justin R. Campbell","r":"Palatka City Council"},{"n":"Roberta Correa","r":"Mayor of Palatka"},{"n":"Rufus J. Borom","r":"Palatka City Council"},{"n":"Will Jones","r":"Palatka City Council"}]},{"m":"Pomona Park","p":[{"n":"Alisha Kuleski","r":"Pomona Park City Council"},{"n":"Anthony Cuevas","r":"Mayor of Pomona Park"},{"n":"CarrieAnn Evans","r":"Pomona Park City Council"},{"n":"Donna Cooney","r":"Pomona Park City Council"},{"n":"Mark Swanson","r":"Pomona Park City Council"},{"n":"Mike Rohrabough","r":"Pomona Park City Council"},{"n":"Pat Mead","r":"Pomona Park City Council"}]},{"m":"Welaka","p":[{"n":"Kathy Washington","r":"Mayor of Welaka"},{"n":"Kenneth Pagano","r":"Welaka City Council"},{"n":"Sandra Walker","r":"Welaka City Council"},{"n":"Thomas Emerson","r":"Welaka City Council"},{"n":"Tonya Long","r":"Welaka City Council"}]}],"slug":"putnam"},"12109":{"county":[{"n":"Ann Taylor","r":"Commissioner, St. Johns County"},{"n":"Beverly Slough","r":"St. Johns County School Board"},{"n":"Brandon Patty","r":"Clerk of Court, St. Johns County"},{"n":"Christian Whitehurst","r":"Commissioner, St. Johns County"},{"n":"Clay Murphy","r":"Commissioner, St. Johns County"},{"n":"Dennis Hollingsworth","r":"Tax Collector, St. Johns County"},{"n":"Eddie Creamer","r":"Property Appraiser, St. Johns County"},{"n":"Henry Dean","r":"Commissioner, St. Johns County"},{"n":"Jennifer Collins","r":"St. Johns County School Board"},{"n":"Jennifer Ravan","r":"Tax Collector, St. Johns County"},{"n":"Kelly Barrera","r":"St. Johns County School Board"},{"n":"Krista Joseph","r":"Commissioner, St. Johns County"},{"n":"Linda Thomson","r":"St. Johns County School Board"},{"n":"Paul Waldron","r":"Commissioner, St. Johns County"},{"n":"Rob Hardwick","r":"Sheriff, St. Johns County"},{"n":"Roy Alaimo","r":"Commissioner, St. Johns County"},{"n":"Sarah Arnold","r":"Commissioner, St. Johns County"},{"n":"Vicky Oakes","r":"Supervisor of Elections, St. Johns County"}],"districts":{"cd":[{"d":"FL-05","rep":"John H. Rutherford","w":0.506},{"d":"FL-06","rep":"Randy Fine","w":0.314}],"sh":[{"d":"FL House District 20","rep":"Judson Sapp","w":0.362},{"d":"FL House District 18","rep":"Kim Kendall","w":0.361},{"d":"FL House District 19","rep":"Sam Greco","w":0.096}],"ss":[{"d":"FL Senate District 7","rep":"Tom Leek","w":0.82}]},"munis":[{"m":"St. Augustine","p":[{"n":"Barbara Blonder","r":"St. Augustine City Council"},{"n":"Cynthia Garris","r":"St. Augustine City Council"},{"n":"James T. Springfield","r":"St. Augustine City Council"},{"n":"Jon DePreter","r":"St. Augustine City Council"},{"n":"Nancy Sikes-Kline","r":"Mayor of St. Augustine"}]},{"m":"St. Augustine Beach","p":[{"n":"Beth Sweeny","r":"Mayor of St. Augustine Beach"},{"n":"Donald Samora","r":"St. Augustine Beach City Council"},{"n":"Dylan Rumrell","r":"St. Augustine Beach City Council"},{"n":"Undine George","r":"St. Augustine Beach City Council"},{"n":"Virginia Snyder Morgan","r":"St. Augustine Beach City Council"}]}],"slug":"st-johns"},"12111":{"county":[{"n":"Cathy Townsend","r":"Commissioner, St. Lucie County"},{"n":"Christopher Craft","r":"Tax Collector, St. Lucie County"},{"n":"Christopher Dzadovsky","r":"Commissioner, St. Lucie County"},{"n":"Debbie Hawley","r":"St. Lucie County School Board"},{"n":"Donna Mills","r":"St. Lucie County School Board"},{"n":"Erin Lowry","r":"Commissioner, St. Lucie County"},{"n":"Gertrude Walker","r":"Supervisor of Elections, St. Lucie County"},{"n":"James Clasby","r":"Commissioner, St. Lucie County"},{"n":"Jamie Fowler","r":"Commissioner, St. Lucie County"},{"n":"Jennifer Anne Richardson","r":"St. Lucie County School Board"},{"n":"Keith Pearson","r":"Sheriff, St. Lucie County"},{"n":"Larry Leet","r":"Commissioner, St. Lucie County"},{"n":"Linda Bartz","r":"Commissioner, St. Lucie County"},{"n":"Michelle Franklin","r":"Property Appraiser, St. Lucie County"},{"n":"Michelle Miller","r":"Clerk of Court, St. Lucie County"},{"n":"Richard DelToro","r":"Sheriff, St. Lucie County"},{"n":"Terissa Aronson","r":"St. Lucie County School Board"},{"n":"Troy Ingersoll","r":"St. Lucie County School Board"}],"districts":{"cd":[{"d":"FL-21","rep":"Brian J. Mast","w":0.893}],"sh":[{"d":"FL House District 84","rep":"Dana Trabulsy","w":0.77},{"d":"FL House District 85","rep":"Toby Overdorf","w":0.119}],"ss":[{"d":"FL Senate District 29","rep":"Erin Grall","w":0.762},{"d":"FL Senate District 31","rep":"Gayle Harrell","w":0.127}]},"munis":[{"m":"Fort Pierce","p":[{"n":"Arnold S. Gaines","r":"Fort Pierce City Council"},{"n":"Curtis Johnson","r":"Fort Pierce City Council"},{"n":"James Taylor","r":"Fort Pierce City Council"},{"n":"Linda Hudson","r":"Mayor of Fort Pierce"},{"n":"Michael Broderick","r":"Fort Pierce City Council"}]},{"m":"Port St. Lucie","p":[{"n":"Anthony Bonna","r":"Port St. Lucie City Council"},{"n":"David Pickett","r":"Port St. Lucie City Council"},{"n":"Jolien Caraballo","r":"Port St. Lucie City Council"},{"n":"Shannon M. Martin","r":"Mayor of Port St. Lucie"},{"n":"Stephanie Morgan","r":"Port St. Lucie City Council"}]},{"m":"St. Lucie Village","p":[{"n":"Dale Reed","r":"St. Lucie Village City Council"},{"n":"John Langel","r":"St. Lucie Village City Council"},{"n":"Lisa K. Price","r":"St. Lucie Village City Council"},{"n":"Paul Sinnott","r":"St. Lucie Village City Council"},{"n":"William G. Thiess","r":"Mayor of St. Lucie Village"}]}],"slug":"st-lucie"},"12113":{"county":[{"n":"Bobby Burkett","r":"Commissioner, Santa Rosa County"},{"n":"Carol Boston","r":"Santa Rosa County School Board"},{"n":"Charles \"Charlie\" Elliott","r":"Santa Rosa County School Board"},{"n":"Colten Wright","r":"Commissioner, Santa Rosa County"},{"n":"Donald Spencer","r":"Clerk of Court, Santa Rosa County"},{"n":"Elizabeth Hewey","r":"Santa Rosa County School Board"},{"n":"Gregory Brown","r":"Property Appraiser, Santa Rosa County"},{"n":"James Calkins","r":"Commissioner, Santa Rosa County"},{"n":"Jason English","r":"Clerk of Court, Santa Rosa County"},{"n":"Kerry Smith","r":"Commissioner, Santa Rosa County"},{"n":"Linda Sanborn","r":"Santa Rosa County School Board"},{"n":"Ray Eddington","r":"Commissioner, Santa Rosa County"},{"n":"Robert Johnson","r":"Sheriff, Santa Rosa County"},{"n":"Sam Parker","r":"Commissioner, Santa Rosa County"},{"n":"Scott Peden","r":"Santa Rosa County School Board"},{"n":"Stan Nichols","r":"Tax Collector, Santa Rosa County"},{"n":"Tappie Villane","r":"Supervisor of Elections, Santa Rosa County"}],"districts":{"cd":[{"d":"FL-01","rep":"Jimmy Patronis","w":0.94}],"sh":[{"d":"FL House District 3","rep":"Nathan Boyles","w":0.881},{"d":"FL House District 2","rep":"Alex Andrade","w":0.059}],"ss":[{"d":"FL Senate District 1","rep":"Don Gaetz","w":0.94}]},"munis":[{"m":"Gulf Breeze","p":[{"n":"J. B. Schluter","r":"Mayor of Gulf Breeze"},{"n":"Randy Hebert","r":"Gulf Breeze City Council"},{"n":"Tim Burr","r":"Gulf Breeze City Council"},{"n":"Todd Torgersen","r":"Gulf Breeze City Council"}]},{"m":"Jay","p":[{"n":"Brent Freeman","r":"Jay City Council"},{"n":"Cade Diamond","r":"Jay City Council"},{"n":"Nina Hendricks","r":"Jay City Council"},{"n":"Shon Owens","r":"Mayor of Jay"}]},{"m":"Milton","p":[{"n":"Ashley Fretwell","r":"Milton City Council"},{"n":"Casey Powell","r":"Milton City Council"},{"n":"Gavin Hawthorne","r":"Milton City Council"},{"n":"Heather F. Lindsay","r":"Mayor of Milton"},{"n":"Larry McKee","r":"Milton City Council"},{"n":"Marilynn Farrow","r":"Milton City Council"},{"n":"Mike Cusak","r":"Milton City Council"},{"n":"Robert Leek","r":"Milton City Council"},{"n":"Tom Powers","r":"Milton City Council"}]}],"slug":"santa-rosa"},"12115":{"county":[{"n":"Barbara Ford-Coates","r":"Tax Collector, Sarasota County"},{"n":"Bill Furst","r":"Property Appraiser, Sarasota County"},{"n":"Bridget Ziegler","r":"Sarasota County School Board"},{"n":"Joseph Neunder","r":"Commissioner, Sarasota County"},{"n":"Karen Rushing","r":"Clerk of Court, Sarasota County"},{"n":"Kurt Hoffman","r":"Sheriff, Sarasota County"},{"n":"Liz Barker","r":"Sarasota County School Board"},{"n":"Mark Smith","r":"Commissioner, Sarasota County"},{"n":"Michael Moran","r":"Tax Collector, Sarasota County"},{"n":"Neil Rainford","r":"Commissioner, Sarasota County"},{"n":"Robyn A. Marinelli","r":"Sarasota County School Board"},{"n":"Ron Cutsinger","r":"Commissioner, Sarasota County"},{"n":"Ron Turner","r":"Supervisor of Elections, Sarasota County"},{"n":"Timothy Enos","r":"Sarasota County School Board"},{"n":"Tom Edwards","r":"Sarasota County School Board"}],"districts":{"cd":[{"d":"FL-17","rep":"W. Gregory Steube","w":0.621}],"sh":[{"d":"FL House District 74","rep":"James Buchanan","w":0.428},{"d":"FL House District 73","rep":"Fiona McFarland","w":0.111},{"d":"FL House District 75","rep":"Danny Nix","w":0.082}],"ss":[{"d":"FL Senate District 22","rep":"Joe Gruters","w":0.621}]},"munis":[{"m":"Longboat Key","p":[{"n":"BJ Bishop","r":"Longboat Key City Council"},{"n":"Debra Williams","r":"Mayor of Longboat Key"},{"n":"Gary Coffin","r":"Longboat Key City Council"},{"n":"Nick Gladding","r":"Longboat Key City Council"},{"n":"Penelope Gold","r":"Longboat Key City Council"},{"n":"Sarah Karon","r":"Longboat Key City Council"},{"n":"Steve Branham","r":"Longboat Key City Council"}]},{"m":"North Port","p":[{"n":"Barbara Langdon","r":"North Port City Council"},{"n":"David Duval","r":"North Port City Council"},{"n":"Demetrius Petrow","r":"North Port City Council"},{"n":"Pete Emrich","r":"Mayor of North Port"},{"n":"Phil Stokes","r":"North Port City Council"}]},{"m":"Sarasota","p":[{"n":"Debbie Trice","r":"Mayor of Sarasota"},{"n":"Jen Ahearn-Koch","r":"Sarasota City Council"},{"n":"Kathy Kelley Ohlrich","r":"Sarasota City Council"},{"n":"Kyle Battie","r":"Sarasota City Council"},{"n":"Liz Alpert","r":"Sarasota City Council"}]},{"m":"Venice","p":[{"n":"Jim Boldt","r":"Venice City Council"},{"n":"Kevin Engelke","r":"Venice City Council"},{"n":"Lloyd Weed","r":"Venice City Council"},{"n":"Nicholas Pachota","r":"Mayor of Venice"},{"n":"Rachel Frank","r":"Venice City Council"},{"n":"Rick Howard","r":"Venice City Council"},{"n":"Ron Smith","r":"Venice City Council"}]}],"slug":"sarasota"},"12117":{"county":[{"n":"Abby Sanchez","r":"Seminole County School Board"},{"n":"Amy Lockhart","r":"Commissioner, Seminole County"},{"n":"Amy Pennock","r":"Supervisor of Elections, Seminole County"},{"n":"Andria Herr","r":"Commissioner, Seminole County"},{"n":"Autumn Huff Garick","r":"Seminole County School Board"},{"n":"Bob Dallari","r":"Commissioner, Seminole County"},{"n":"Chris Anderson","r":"Supervisor of Elections, Seminole County"},{"n":"David Johnson","r":"Property Appraiser, Seminole County"},{"n":"Dennis Lemma","r":"Sheriff, Seminole County"},{"n":"Grant Maloy","r":"Clerk of Court, Seminole County"},{"n":"J.R. Kroll","r":"Tax Collector, Seminole County"},{"n":"Jacqueline Kelley Davis","r":"Seminole County School Board"},{"n":"Jay Zembower","r":"Commissioner, Seminole County"},{"n":"Joel Greenberg","r":"Tax Collector, Seminole County"},{"n":"Kristine L. Kraus","r":"Seminole County School Board"},{"n":"Lee Constantine","r":"Commissioner, Seminole County"},{"n":"Robin Dehlinger","r":"Seminole County School Board"}],"districts":{"cd":[{"d":"FL-07","rep":"Cory Mills","w":0.999}],"sh":[{"d":"FL House District 36","rep":"Rachel Plakon","w":0.506},{"d":"FL House District 37","rep":"Susan Plasencia","w":0.255},{"d":"FL House District 38","rep":"Dave Smith","w":0.153},{"d":"FL House District 39","rep":"Doug Bankson","w":0.085}],"ss":[{"d":"FL Senate District 10","rep":"Jason Brodeur","w":1.0}]},"munis":[{"m":"Altamonte Springs","p":[{"n":"Bob O'Malley","r":"Altamonte Springs City Council"},{"n":"Jim Turney","r":"Altamonte Springs City Council"},{"n":"Mike Brunscheen","r":"Altamonte Springs City Council"},{"n":"Patricia J. Bates","r":"Mayor of Altamonte Springs"},{"n":"Sarah Reece","r":"Altamonte Springs City Council"}]},{"m":"Casselberry","p":[{"n":"Anthony Aramendia","r":"Casselberry City Council"},{"n":"David Henson","r":"Mayor of Casselberry"},{"n":"Mark Busch","r":"Casselberry City Council"},{"n":"Nancy Divita","r":"Casselberry City Council"},{"n":"Thomas E. Kirk","r":"Casselberry City Council"}]},{"m":"Lake Mary","p":[{"n":"David J. Mealor","r":"Mayor of Lake Mary"},{"n":"Jordan S. Smith","r":"Lake Mary City Council"},{"n":"Justin York","r":"Lake Mary City Council"},{"n":"Justin York","r":"Lake Mary City Council"}]},{"m":"Longwood","p":[{"n":"Abby Shoemaker","r":"Longwood City Council"},{"n":"Brian D. Sackett","r":"Longwood City Council"},{"n":"Matt Morgan","r":"Longwood City Council"},{"n":"Matthew McMillan","r":"Longwood City Council"},{"n":"Tony Boni","r":"Mayor of Longwood"}]},{"m":"Oviedo","p":[{"n":"Alan Ott","r":"Oviedo City Council"},{"n":"Jeff Boddiford","r":"Oviedo City Council"},{"n":"Keith Britton","r":"Oviedo City Council"},{"n":"Megan Sladek","r":"Mayor of Oviedo"},{"n":"Natalie Teuchert","r":"Oviedo City Council"}]},{"m":"Sanford","p":[{"n":"Art Woodruff","r":"Mayor of Sanford"},{"n":"Claudia Thomas","r":"Sanford City Council"},{"n":"Kerry S. Wiggins","r":"Sanford City Council"},{"n":"Patrick Austin","r":"Sanford City Council"},{"n":"Sheena Britton","r":"Sanford City Council"}]},{"m":"Winter Springs","p":[{"n":"Cade Resnick","r":"Winter Springs City Council"},{"n":"Kevin McCann","r":"Mayor of Winter Springs"},{"n":"Mark Caruso","r":"Winter Springs City Council"},{"n":"Paul Diaz","r":"Winter Springs City Council"},{"n":"Sarah Baker","r":"Winter Springs City Council"},{"n":"Victoria Bruce","r":"Winter Springs City Council"}]}],"slug":"seminole"},"12119":{"county":[{"n":"Andrew Bilardello","r":"Commissioner, Sumter County"},{"n":"Brett Sherman","r":"Sumter County School Board"},{"n":"Craig Estep","r":"Commissioner, Sumter County"},{"n":"David A Williams","r":"Sumter County School Board"},{"n":"Donald Wiley","r":"Commissioner, Sumter County"},{"n":"Erin Munz","r":"Clerk of Court, Sumter County"},{"n":"Gloria Hayward","r":"Clerk of Court, Sumter County"},{"n":"Jeff Bogue","r":"Commissioner, Sumter County"},{"n":"Joey Hooten","r":"Property Appraiser, Sumter County"},{"n":"Kathie L Joiner","r":"Sumter County School Board"},{"n":"Oren Miller","r":"Commissioner, Sumter County"},{"n":"Patrick Breeden","r":"Sheriff, Sumter County"},{"n":"Randy Mask","r":"Tax Collector, Sumter County"},{"n":"Roberta Ulrich","r":"Commissioner, Sumter County"},{"n":"Russell G Hogan","r":"Sumter County School Board"},{"n":"Russell Hogan","r":"Sumter County School Board"},{"n":"Sally Moss","r":"Sumter County School Board"},{"n":"William Farmer","r":"Sheriff, Sumter County"},{"n":"William Keen","r":"Supervisor of Elections, Sumter County"}],"districts":{"cd":[{"d":"FL-11","rep":"Daniel Webster","w":0.995}],"sh":[{"d":"FL House District 52","rep":"Samantha Scott","w":1.0}],"ss":[{"d":"FL Senate District 11","rep":"Ralph Massullo","w":1.0}]},"munis":[{"m":"Bushnell","p":[{"n":"Dale Barnes","r":"Bushnell City Council"},{"n":"Dale Swain","r":"Bushnell City Council"},{"n":"Jessie Simmons","r":"Mayor of Bushnell"},{"n":"Karen Davis","r":"Bushnell City Council"},{"n":"Victoria Summerlin","r":"Bushnell City Council"}]},{"m":"Center Hill","p":[{"n":"Billy Bowles","r":"Center Hill City Council"},{"n":"Dan Shimasaki","r":"Center Hill City Council"},{"n":"Donnie Buckner","r":"Center Hill City Council"},{"n":"Ginger Howard","r":"Mayor of Center Hill"},{"n":"Jack Nash","r":"Center Hill City Council"},{"n":"Tonota Parker","r":"Center Hill City Council"}]},{"m":"Coleman","p":[{"n":"Charles Felton","r":"Coleman City Council"},{"n":"James Sears","r":"Coleman City Council"},{"n":"Ke'Marein Williams","r":"Coleman City Council"},{"n":"Mary Stone","r":"Coleman City Council"},{"n":"Milton Hill","r":"Mayor of Coleman"},{"n":"Sonia Shearer","r":"Coleman City Council"}]},{"m":"Webster","p":[{"n":"Allen Dorsey","r":"Webster City Council"},{"n":"Ana Vigoa","r":"Mayor of Webster"},{"n":"Loretta Ramirez","r":"Webster City Council"},{"n":"Nancy Cherry","r":"Webster City Council"},{"n":"Shadae Solomon","r":"Webster City Council"}]},{"m":"Wildwood","p":[{"n":"Ed Wolf","r":"Mayor of Wildwood"},{"n":"Joe Elliott","r":"Wildwood City Council"},{"n":"Julian A. Green","r":"Wildwood City Council"},{"n":"Marcos Flores","r":"Wildwood City Council"},{"n":"Pamala Harrison-Bivins","r":"Wildwood City Council"}]}],"slug":"sumter"},"12121":{"county":[{"n":"Barry Baker","r":"Clerk of Court, Suwannee County"},{"n":"Edward DaSilva","r":"Suwannee County School Board"},{"n":"Franklin White","r":"Commissioner, Suwannee County"},{"n":"Jennifer Kinsey","r":"Supervisor of Elections, Suwannee County"},{"n":"Lamar Jenkins","r":"Property Appraiser, Suwannee County"},{"n":"Leo Mobley","r":"Commissioner, Suwannee County"},{"n":"Lesley Fry","r":"Suwannee County School Board"},{"n":"Maurice Perkins","r":"Commissioner, Suwannee County"},{"n":"Norman Crawford","r":"Suwannee County School Board"},{"n":"Richard Gamble","r":"Property Appraiser, Suwannee County"},{"n":"Ronald White","r":"Suwannee County School Board"},{"n":"Samuel St. John","r":"Sheriff, Suwannee County"},{"n":"Sharon Jordan","r":"Tax Collector, Suwannee County"},{"n":"Tim Alcorn","r":"Suwannee County School Board"},{"n":"Travis Land","r":"Commissioner, Suwannee County"},{"n":"William Hale","r":"Commissioner, Suwannee County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":0.999}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":1.0}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":1.0}]},"munis":[{"m":"Branford","p":[{"n":"Alice Childress","r":"Branford City Council"},{"n":"Jay Hatch","r":"Branford City Council"},{"n":"Ken Saunders","r":"Mayor of Branford"},{"n":"Kevin Knighton","r":"Branford City Council"},{"n":"Tera Kelley","r":"Branford City Council"}]},{"m":"Live Oak","p":[{"n":"David Alford","r":"Live Oak City Council"},{"n":"Frank C. Davis","r":"Mayor of Live Oak"},{"n":"Gladys Owens","r":"Live Oak City Council"},{"n":"Matthew Campbell","r":"Live Oak City Council"},{"n":"Tommie Jefferson","r":"Live Oak City Council"},{"n":"Vanessa Brown Robinson","r":"Live Oak City Council"}]}],"slug":"suwannee"},"12123":{"county":[{"n":"Annie Mae Murphy","r":"Clerk of Court, Taylor County"},{"n":"Bonnie Sue Agner","r":"Taylor County School Board"},{"n":"Brenda Carlton","r":"Taylor County School Board"},{"n":"Bruce Ratliff","r":"Property Appraiser, Taylor County"},{"n":"Dana Southerland","r":"Supervisor of Elections, Taylor County"},{"n":"Danny Lundy","r":"Taylor County School Board"},{"n":"Deidra Dunnell","r":"Taylor County School Board"},{"n":"Gary Knowles","r":"Clerk of Court, Taylor County"},{"n":"Jamie English","r":"Commissioner, Taylor County"},{"n":"Jeanne Ellen Mathis","r":"Taylor County School Board"},{"n":"Jim Moody","r":"Commissioner, Taylor County"},{"n":"Mark Wiggins","r":"Tax Collector, Taylor County"},{"n":"Michael Newman","r":"Commissioner, Taylor County"},{"n":"Pam Feagle","r":"Commissioner, Taylor County"},{"n":"Shawna Beach","r":"Property Appraiser, Taylor County"},{"n":"Thomas Demps","r":"Commissioner, Taylor County"},{"n":"Wayne Padgett","r":"Sheriff, Taylor County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.696}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":0.697}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.697}]},"munis":[{"m":"Perry","p":[{"n":"Diane C. Landry","r":"Perry City Council"},{"n":"Shirlie Hampton","r":"Perry City Council"},{"n":"Venita Woodfaulk","r":"Perry City Council"},{"n":"Ward Ketring","r":"Mayor of Perry"},{"n":"William E. Brynes","r":"Perry City Council"}]}],"slug":"taylor"},"12125":{"county":[{"n":"Brad Whitehead","r":"Sheriff, Union County"},{"n":"Bruce Dukes","r":"Property Appraiser, Union County"},{"n":"Channing Dobbs","r":"Commissioner, Union County"},{"n":"Christopher Hodgson","r":"Union County School Board"},{"n":"Curtis Clyatt","r":"Union County School Board"},{"n":"Deborah Osborne","r":"Supervisor of Elections, Union County"},{"n":"Donna Jackson","r":"Commissioner, Union County"},{"n":"James Tallman","r":"Commissioner, Union County"},{"n":"Kellie Rhoades","r":"Clerk of Court, Union County"},{"n":"Lisa Johnson","r":"Tax Collector, Union County"},{"n":"Mac Johns","r":"Commissioner, Union County"},{"n":"Melissa McNeal","r":"Commissioner, Union County"},{"n":"Rebekah G. Raulerson","r":"Union County School Board"},{"n":"Russell Gordon Jr.","r":"Union County School Board"},{"n":"Terra T Johnson","r":"Union County School Board"},{"n":"Travis Croft","r":"Commissioner, Union County"}],"districts":{"cd":[{"d":"FL-03","rep":"Kat Cammack","w":1.0}],"sh":[{"d":"FL House District 10","rep":"Chuck Brannan","w":1.0}],"ss":[{"d":"FL Senate District 6","rep":"Jennifer Bradley","w":1.0}]},"munis":[{"m":"Lake Butler","p":[{"n":"Annette G. Redman","r":"Lake Butler City Council"},{"n":"Fred Sirmones","r":"Lake Butler City Council"},{"n":"Jill Melissa Hendrix","r":"Mayor of Lake Butler"},{"n":"Joe Stephenson","r":"Lake Butler City Council"},{"n":"Rondoll Huggins","r":"Lake Butler City Council"}]},{"m":"Raiford","p":[{"n":"Benita Griffis","r":"Raiford City Council"},{"n":"Deana Rainey","r":"Raiford City Council"},{"n":"Lamar Griffis","r":"Mayor of Raiford"},{"n":"Randall Griffis","r":"Raiford City Council"},{"n":"Sherry Richard","r":"Raiford City Council"}]},{"m":"Worthington Springs","p":[{"n":"Nita Elixson","r":"Worthington Springs City Council"},{"n":"Pam Williams","r":"Worthington Springs City Council"},{"n":"Shane Massey","r":"Worthington Springs City Council"},{"n":"Travis Hemphill","r":"Worthington Springs City Council"}]}],"slug":"union"},"12127":{"county":[{"n":"Danny Robins","r":"Council Member, Volusia County"},{"n":"David Santiago","r":"Council Member, Volusia County"},{"n":"Don Dempsey","r":"Council Member, Volusia County"},{"n":"Donna Brosemer","r":"Volusia County School Board"},{"n":"Ed Kelley","r":"Council Member, Volusia County"},{"n":"Jake Johansson","r":"Council Member, Volusia County"},{"n":"Jamie Haynes","r":"Volusia County School Board"},{"n":"Jeff Brower","r":"Council Member, Volusia County"},{"n":"Jessie Thompson","r":"Volusia County School Board"},{"n":"Krista Goodrich","r":"Volusia County School Board"},{"n":"Laura Roth","r":"Clerk of Court, Volusia County"},{"n":"Laurence Bartlett","r":"Property Appraiser, Volusia County"},{"n":"Lisa Lewis","r":"Supervisor of Elections, Volusia County"},{"n":"Matt Reinhart","r":"Council Member, Volusia County"},{"n":"Michael Chitwood","r":"Sheriff, Volusia County"},{"n":"Rhonda Orr","r":"Tax Collector, Volusia County"},{"n":"Ruben Colon","r":"Volusia County School Board"},{"n":"Troy Kent","r":"Council Member, Volusia County"},{"n":"Will Roberts","r":"Tax Collector, Volusia County"}],"districts":{"cd":[{"d":"FL-06","rep":"Randy Fine","w":0.469},{"d":"FL-07","rep":"Cory Mills","w":0.415}],"sh":[{"d":"FL House District 30","rep":"Chase Tramont","w":0.256},{"d":"FL House District 27","rep":"Richard Gentry","w":0.247},{"d":"FL House District 29","rep":"Webster Barnaby","w":0.217},{"d":"FL House District 28","rep":"Bill Partington","w":0.164}],"ss":[{"d":"FL Senate District 8","rep":"Tommy Wright","w":0.697},{"d":"FL Senate District 7","rep":"Tom Leek","w":0.187}]},"munis":[{"m":"Daytona Beach","p":[{"n":"Dannette Henry","r":"Daytona Beach City Council"},{"n":"Derrick L. Henry","r":"Mayor of Daytona Beach"},{"n":"Ken Strickland","r":"Daytona Beach City Council"},{"n":"Monica Paris","r":"Daytona Beach City Council"},{"n":"Paula R. Reed","r":"Daytona Beach City Council"},{"n":"Quanita May","r":"Daytona Beach City Council"},{"n":"Stacy Cantu","r":"Daytona Beach City Council"}]},{"m":"Daytona Beach Shores","p":[{"n":"Chris Conomos","r":"Daytona Beach Shores City Council"},{"n":"Mark Card","r":"Daytona Beach Shores City Council"},{"n":"Michael Politis","r":"Daytona Beach Shores City Council"},{"n":"Nancy J. Miller","r":"Mayor of Daytona Beach Shores"},{"n":"Stephen Dembinsky","r":"Daytona Beach Shores City Council"}]},{"m":"DeBary","p":[{"n":"Jim Pappalardo","r":"DeBary City Council"},{"n":"Karen Chasez","r":"Mayor of DeBary"},{"n":"Patricia Stevenson","r":"DeBary City Council"},{"n":"Phyllis Butlien","r":"DeBary City Council"},{"n":"William Sell","r":"DeBary City Council"}]},{"m":"DeLand","p":[{"n":"Christopher M. Cloudman","r":"Mayor of DeLand"},{"n":"Dan F. Reed","r":"DeLand City Council"},{"n":"Jessica Davis","r":"DeLand City Council"},{"n":"Kevin Reid","r":"DeLand City Council"},{"n":"Richard C. Paiva","r":"DeLand City Council"}]},{"m":"Deltona","p":[{"n":"Dana McCool","r":"Deltona City Council"},{"n":"Davison Heriot","r":"Deltona City Council"},{"n":"Emma Santiago","r":"Deltona City Council"},{"n":"Julio Shimkus","r":"Deltona City Council"},{"n":"Maritza Avila-Vazquez","r":"Deltona City Council"},{"n":"Santiago Avila","r":"Mayor of Deltona"},{"n":"Stephen Colwell","r":"Deltona City Council"}]},{"m":"Edgewater","p":[{"n":"Debbie Dolbow","r":"Edgewater City Council"},{"n":"Diezel DePew","r":"Mayor of Edgewater"},{"n":"Mike Thomas","r":"Edgewater City Council"}]},{"m":"Holly Hill","p":[{"n":"Debra Snow","r":"Holly Hill City Council"},{"n":"Jeffrey DeLanoy","r":"Holly Hill City Council"},{"n":"John Penny","r":"Mayor of Holly Hill"},{"n":"Penny Currie","r":"Holly Hill City Council"},{"n":"Roy Johnson","r":"Holly Hill City Council"}]},{"m":"Lake Helen","p":[{"n":"Charlene Bishop","r":"Lake Helen City Council"},{"n":"Earl Farmer","r":"Lake Helen City Council"},{"n":"Heather Rutledge","r":"Lake Helen City Council"},{"n":"Roger Eckert","r":"Mayor of Lake Helen"},{"n":"Sean Abshire","r":"Lake Helen City Council"}]},{"m":"New Smyrna Beach","p":[{"n":"Andrew J. McGuirk","r":"New Smyrna Beach City Council"},{"n":"Brian Ashley","r":"New Smyrna Beach City Council"},{"n":"Fred Cleveland","r":"Mayor of New Smyrna Beach"},{"n":"Lisa Martin","r":"New Smyrna Beach City Council"},{"n":"Valli Perrine","r":"New Smyrna Beach City Council"}]},{"m":"Oak Hill","p":[{"n":"Carrie Werning","r":"Oak Hill City Council"},{"n":"Joseph Catigano","r":"Oak Hill City Council"},{"n":"Linda Hyatt","r":"Oak Hill City Council"},{"n":"Mark Drollinger","r":"Oak Hill City Council"},{"n":"Ricky Taylor","r":"Mayor of Oak Hill"}]},{"m":"Orange City","p":[{"n":"Alisa Stafford","r":"Orange City City Council"},{"n":"Anthony J. Pupello","r":"Orange City City Council"},{"n":"Fran Darms","r":"Orange City City Council"},{"n":"Harold Grimm","r":"Orange City City Council"},{"n":"Kelli Marks","r":"Mayor of Orange City"},{"n":"Lisa Richardson","r":"Orange City City Council"}]},{"m":"Ormond Beach","p":[{"n":"Harold Briley","r":"Ormond Beach City Council"},{"n":"Jason Leslie","r":"Mayor of Ormond Beach"},{"n":"Kristin Deaton","r":"Ormond Beach City Council"},{"n":"Travis Sargent","r":"Ormond Beach City Council"}]},{"m":"Pierson","p":[{"n":"Brandy Peterson","r":"Pierson City Council"},{"n":"David Gray Leonhard","r":"Mayor of Pierson"},{"n":"James Anderson","r":"Pierson City Council"},{"n":"Linnie R. Richardson","r":"Pierson City Council"},{"n":"Robert F. Greenlund","r":"Pierson City Council"}]},{"m":"Ponce Inlet","p":[{"n":"Bill Milano","r":"Ponce Inlet City Council"},{"n":"Gary Smith","r":"Ponce Inlet City Council"},{"n":"Joe Villanella","r":"Ponce Inlet City Council"},{"n":"Lois Paritsky","r":"Mayor of Ponce Inlet"},{"n":"Skip White","r":"Ponce Inlet City Council"}]},{"m":"Port Orange","p":[{"n":"Jonathan Foley","r":"Port Orange City Council"},{"n":"Lance Green","r":"Port Orange City Council"},{"n":"Scott Stiltner","r":"Mayor of Port Orange"},{"n":"Shawn Goepfert","r":"Port Orange City Council"},{"n":"Tracy Grubbs","r":"Port Orange City Council"}]},{"m":"South Daytona","p":[{"n":"Brandon L. Young","r":"South Daytona City Council"},{"n":"Douglas Quartier","r":"South Daytona City Council"},{"n":"Eric Sander","r":"South Daytona City Council"},{"n":"William C. Hall","r":"Mayor of South Daytona"}]}],"slug":"volusia"},"12129":{"county":[{"n":"Angie Nichols","r":"Wakulla County School Board"},{"n":"Brent Thurmond","r":"Clerk of Court, Wakulla County"},{"n":"Cale Langston","r":"Wakulla County School Board"},{"n":"Cheryll Olah","r":"Tax Collector, Wakulla County"},{"n":"Chuck Hess","r":"Commissioner, Wakulla County"},{"n":"Donnie Sparkman","r":"Property Appraiser, Wakulla County"},{"n":"Eddie Hand","r":"Wakulla County School Board"},{"n":"Edward Brimner","r":"Property Appraiser, Wakulla County"},{"n":"Fred Nichols","r":"Commissioner, Wakulla County"},{"n":"Greg James","r":"Clerk of Court, Wakulla County"},{"n":"Jared Miller","r":"Sheriff, Wakulla County"},{"n":"Joe Morgan","r":"Supervisor of Elections, Wakulla County"},{"n":"Josh Brown","r":"Wakulla County School Board"},{"n":"Laura Lawhon","r":"Wakulla County School Board"},{"n":"Lisa Craze","r":"Tax Collector, Wakulla County"},{"n":"Mike Kemp","r":"Commissioner, Wakulla County"},{"n":"Quincee Messersmith","r":"Commissioner, Wakulla County"},{"n":"Ralph Thomas","r":"Commissioner, Wakulla County"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":0.69}],"sh":[{"d":"FL House District 7","rep":"Jason Shoaf","w":0.688}],"ss":[{"d":"FL Senate District 3","rep":"Corey Simon","w":0.688}]},"munis":[{"m":"Sopchoppy","p":[{"n":"Fred McClendon","r":"Sopchoppy City Council"},{"n":"Lara Edwards","r":"Sopchoppy City Council"},{"n":"Leonard Tartt","r":"Mayor of Sopchoppy"},{"n":"Mary K. Westmark","r":"Sopchoppy City Council"},{"n":"Nathan Lewis","r":"Sopchoppy City Council"}]},{"m":"St. Marks","p":[{"n":"Crystal Wonsch","r":"St. Marks City Council"},{"n":"John Gunter","r":"St. Marks City Council"},{"n":"Sharon Rudd","r":"St. Marks City Council"},{"n":"Tim Lawrence","r":"Mayor of St. Marks"}]}],"slug":"wakulla"},"12131":{"county":[{"n":"Alex Alford","r":"Clerk of Court, Walton County"},{"n":"Brad Drake","r":"Commissioner, Walton County"},{"n":"Crystal Sconiers","r":"Clerk of Court, Walton County"},{"n":"Dan Curry","r":"Commissioner, Walton County"},{"n":"Danny Glidewell","r":"Commissioner, Walton County"},{"n":"Donna Johns","r":"Commissioner, Walton County"},{"n":"Gary Gregor","r":"Property Appraiser, Walton County"},{"n":"Jason Catalano","r":"Walton County School Board"},{"n":"Jeri Michie","r":"Walton County School Board"},{"n":"Kim Kirby","r":"Walton County School Board"},{"n":"Michael Adkinson","r":"Sheriff, Walton County"},{"n":"Rhonda Skipper","r":"Tax Collector, Walton County"},{"n":"Robert Beasley","r":"Supervisor of Elections, Walton County"},{"n":"Tammy Smith","r":"Walton County School Board"},{"n":"Tony Anderson","r":"Commissioner, Walton County"},{"n":"William \"Bill\" Eddins Jr","r":"Walton County School Board"},{"n":"William McCormick","r":"Commissioner, Walton County"}],"districts":{"cd":[{"d":"FL-01","rep":"Jimmy Patronis","w":0.485},{"d":"FL-02","rep":"Neal P. Dunn","w":0.33}],"sh":[{"d":"FL House District 5","rep":"Shane Abbott","w":0.815}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":0.815}]},"munis":[{"m":"DeFuniak Springs","p":[{"n":"Amy Heavilin","r":"DeFuniak Springs City Council"},{"n":"Anthony Vallee","r":"DeFuniak Springs City Council"},{"n":"Josh Sconiers","r":"DeFuniak Springs City Council"},{"n":"Robert A. Campbell","r":"Mayor of DeFuniak Springs"},{"n":"Todd Bierbaum","r":"DeFuniak Springs City Council"}]},{"m":"Freeport","p":[{"n":"Eddie E. Farris","r":"Freeport City Council"},{"n":"Elizabeth Brannon","r":"Freeport City Council"},{"n":"Elizabeth Haffner","r":"Freeport City Council"},{"n":"Heather Hurst","r":"Freeport City Council"},{"n":"Sidney R. Barley","r":"Mayor of Freeport"},{"n":"Tracey Dickey","r":"Freeport City Council"}]},{"m":"Paxton","p":[{"n":"Donna Smith","r":"Mayor of Paxton"},{"n":"Doug Constantine","r":"Paxton City Council"},{"n":"Jenice Armstrong","r":"Paxton City Council"},{"n":"Perry Thomas","r":"Paxton City Council"},{"n":"Travis McMillian","r":"Paxton City Council"}]}],"slug":"walton"},"12133":{"county":[{"n":"Alan Bush","r":"Commissioner, Washington County"},{"n":"Carol Rudd","r":"Supervisor of Elections, Washington County"},{"n":"Cheryl Ann Williams","r":"Washington County School Board"},{"n":"Cynthia \"Cindy\" Johnson Brown","r":"Washington County School Board"},{"n":"David Corbin","r":"Commissioner, Washington County"},{"n":"David Pettis","r":"Commissioner, Washington County"},{"n":"Deidra Pettis","r":"Supervisor of Elections, Washington County"},{"n":"Gil Carter","r":"Property Appraiser, Washington County"},{"n":"John Hawkins","r":"Commissioner, Washington County"},{"n":"Ken Naker","r":"Tax Collector, Washington County"},{"n":"Kevin Crews","r":"Sheriff, Washington County"},{"n":"Lora Bell","r":"Clerk of Court, Washington County"},{"n":"Lou Cleveland","r":"Washington County School Board"},{"n":"Milton L Brown","r":"Washington County School Board"},{"n":"Renea Peters","r":"Property Appraiser, Washington County"},{"n":"Wesley Griffin","r":"Commissioner, Washington County"},{"n":"Will \"Tonka\" Taylor","r":"Washington County School Board"}],"districts":{"cd":[{"d":"FL-02","rep":"Neal P. Dunn","w":1.0}],"sh":[{"d":"FL House District 5","rep":"Shane Abbott","w":1.0}],"ss":[{"d":"FL Senate District 2","rep":"Jay Trumbull","w":1.0}]},"munis":[{"m":"Caryville","p":[{"n":"Chris Callahan","r":"Caryville City Council"},{"n":"Larry Palmer","r":"Caryville City Council"},{"n":"Mary Pate","r":"Caryville City Council"},{"n":"Michael Brandon Sasser","r":"Caryville City Council"},{"n":"Timothy Williams","r":"Caryville City Council"}]},{"m":"Chipley","p":[{"n":"Cheryl McCall","r":"Chipley City Council"},{"n":"Kevin Russell","r":"Chipley City Council"},{"n":"Leonard Blount","r":"Chipley City Council"},{"n":"Linda Cain","r":"Chipley City Council"},{"n":"Tracy Andrews","r":"Mayor of Chipley"}]},{"m":"Ebro","p":[{"n":"Charles Scott","r":"Ebro City Council"},{"n":"David Evans","r":"Mayor of Ebro"},{"n":"Gina Rutherford","r":"Ebro City Council"},{"n":"Jordan Gambrell","r":"Ebro City Council"},{"n":"Regina Kincaid","r":"Ebro City Council"},{"n":"Sally Young","r":"Ebro City Council"}]},{"m":"Vernon","p":[{"n":"Angel LeCompte","r":"Mayor of Vernon"},{"n":"Becky Baxley","r":"Vernon City Council"},{"n":"F. Brittan Brock","r":"Vernon City Council"},{"n":"Frank Zurica","r":"Vernon City Council"},{"n":"Gwendolyn March","r":"Vernon City Council"},{"n":"Tina Sloan","r":"Vernon City Council"}]},{"m":"Wausau","p":[{"n":"Charles W. Park","r":"Wausau City Council"},{"n":"Joe Phillips","r":"Wausau City Council"},{"n":"Judy Carter","r":"Wausau City Council"},{"n":"Roger D. Hagan","r":"Mayor of Wausau"},{"n":"Shirley Rightenburg","r":"Wausau City Council"}]}],"slug":"washington"},"13001":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.996}],"sh":[{"d":"GA House District 157","rep":"Bill Werkheiser","w":0.622},{"d":"GA House District 178","rep":"Steven Meeks","w":0.378}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"appling"},"13003":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.999}],"sh":[{"d":"GA House District 176","rep":"James Burchett","w":1.0}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":1.0}]},"munis":[],"slug":"atkinson"},"13005":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.998}],"sh":[{"d":"GA House District 178","rep":"Steven Meeks","w":1.0}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"bacon"},"13007":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"baker"},"13009":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.994}],"sh":[{"d":"GA House District 149","rep":"Floyd Griffin","w":0.675},{"d":"GA House District 128","rep":"Mack Jackson","w":0.325}],"ss":[{"d":"GA Senate District 25","rep":"Rick Williams","w":1.0}]},"munis":[],"slug":"baldwin"},"13011":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.999}],"sh":[{"d":"GA House District 32","rep":"Chris Erwin","w":1.0}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":1.0}]},"munis":[],"slug":"banks"},"13013":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.994},{"d":"GA-09","rep":"Andrew S. Clyde","w":0.006}],"sh":[{"d":"GA House District 119","rep":"Holt Persinger","w":0.655},{"d":"GA House District 104","rep":"Chuck Efstration","w":0.257},{"d":"GA House District 120","rep":"Houston Gaines","w":0.087}],"ss":[{"d":"GA Senate District 47","rep":"Frank Ginn","w":0.451},{"d":"GA Senate District 45","rep":"Clint Dixon","w":0.394},{"d":"GA Senate District 46","rep":"Bill Cowsert","w":0.154}]},"munis":[],"slug":"barrow"},"13015":{"county":[],"districts":{"cd":[{"d":"GA-11","rep":"Barry Loudermilk","w":0.999}],"sh":[{"d":"GA House District 14","rep":"Mitchell Scoggins","w":0.688},{"d":"GA House District 15","rep":"Matthew Gambill","w":0.312}],"ss":[{"d":"GA Senate District 52","rep":"Chuck Hufstetler","w":0.91},{"d":"GA Senate District 37","rep":"Ed Setzler","w":0.09}]},"munis":[{"m":"Cartersville","p":[{"n":"Matt Santini","r":"Mayor, Cartersville, GA"}]}],"slug":"bartow"},"13017":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 156","rep":"Leesa Hagan","w":0.627},{"d":"GA House District 148","rep":"Noel Williams","w":0.373}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[{"m":"Fitzgerald","p":[{"n":"Jason Holt","r":"Mayor, Fitzgerald, GA"}]}],"slug":"ben-hill"},"13019":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 170","rep":"Jaclyn Ford","w":0.999}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":0.999}]},"munis":[],"slug":"berrien"},"13021":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.767},{"d":"GA-08","rep":"Austin Scott","w":0.233}],"sh":[{"d":"GA House District 145","rep":"Tangie Herring","w":0.395},{"d":"GA House District 143","rep":"Nissa Jones","w":0.333},{"d":"GA House District 142","rep":"Miriam Paris","w":0.165},{"d":"GA House District 149","rep":"Floyd Griffin","w":0.058},{"d":"GA House District 144","rep":"Dale Washburn","w":0.048}],"ss":[{"d":"GA Senate District 26","rep":"David Lucas","w":0.498},{"d":"GA Senate District 18","rep":"Steven McNeel","w":0.454},{"d":"GA Senate District 25","rep":"Rick Williams","w":0.048}]},"munis":[],"slug":"bibb"},"13023":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 133","rep":"Danny Mathis","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"bleckley"},"13025":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":1.0}],"sh":[{"d":"GA House District 174","rep":"John Corbett","w":0.999}],"ss":[{"d":"GA Senate District 3","rep":"Mike Hodges","w":1.0}]},"munis":[],"slug":"brantley"},"13027":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.998}],"sh":[{"d":"GA House District 175","rep":"John LaHood","w":1.0}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":0.999}]},"munis":[],"slug":"brooks"},"13029":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.995}],"sh":[{"d":"GA House District 164","rep":"Ron Stephens","w":0.502},{"d":"GA House District 160","rep":"Lehman Franklin","w":0.31},{"d":"GA House District 166","rep":"Jesse Petrea","w":0.182}],"ss":[{"d":"GA Senate District 1","rep":"Ben Watson","w":0.996}]},"munis":[],"slug":"bryan"},"13031":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 160","rep":"Lehman Franklin","w":0.519},{"d":"GA House District 158","rep":"Butch Parrish","w":0.265},{"d":"GA House District 159","rep":"Jon Burns","w":0.215}],"ss":[{"d":"GA Senate District 4","rep":"Billy Hickman","w":1.0}]},"munis":[{"m":"Statesboro","p":[{"n":"Jonathan M. McCollar","r":"Mayor, Statesboro, GA"}]}],"slug":"bulloch"},"13033":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.999}],"sh":[{"d":"GA House District 126","rep":"L.C. Myles","w":1.0}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[],"slug":"burke"},"13035":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 118","rep":"Clint Crowe","w":1.0}],"ss":[{"d":"GA Senate District 25","rep":"Rick Williams","w":0.999}]},"munis":[],"slug":"butts"},"13037":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"calhoun"},"13039":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.874}],"sh":[{"d":"GA House District 180","rep":"Steven Sainz","w":0.876}],"ss":[{"d":"GA Senate District 3","rep":"Mike Hodges","w":0.877}]},"munis":[],"slug":"camden"},"13043":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 158","rep":"Butch Parrish","w":1.0}],"ss":[{"d":"GA Senate District 4","rep":"Billy Hickman","w":1.0}]},"munis":[],"slug":"candler"},"13045":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.999}],"sh":[{"d":"GA House District 18","rep":"Tyler Smith","w":0.342},{"d":"GA House District 72","rep":"David Huddleston","w":0.287},{"d":"GA House District 71","rep":"Jutt Howard","w":0.272},{"d":"GA House District 70","rep":"Lynn Smith","w":0.098}],"ss":[{"d":"GA Senate District 6","rep":"Matt Brass","w":0.558},{"d":"GA Senate District 30","rep":"Tim Bearden","w":0.442}]},"munis":[{"m":"Carrollton","p":[{"n":"Betty B. Cason","r":"Mayor, Carrollton, GA"}]}],"slug":"carroll"},"13047":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":1.0}],"sh":[{"d":"GA House District 3","rep":"Mitchell Horner","w":0.748},{"d":"GA House District 2","rep":"Steve Tarvin","w":0.252}],"ss":[{"d":"GA Senate District 53","rep":"Lanny Thomas","w":1.0}]},"munis":[],"slug":"catoosa"},"13049":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.998}],"sh":[{"d":"GA House District 174","rep":"John Corbett","w":0.999}],"ss":[{"d":"GA Senate District 3","rep":"Mike Hodges","w":0.999}]},"munis":[],"slug":"charlton"},"13051":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.781}],"sh":[{"d":"GA House District 166","rep":"Jesse Petrea","w":0.338},{"d":"GA House District 164","rep":"Ron Stephens","w":0.162},{"d":"GA House District 161","rep":"Bill Hitchens","w":0.088},{"d":"GA House District 162","rep":"Carl Gilliard","w":0.08},{"d":"GA House District 165","rep":"Edna Jackson","w":0.059},{"d":"GA House District 163","rep":"Anne Westbrook","w":0.056}],"ss":[{"d":"GA Senate District 1","rep":"Ben Watson","w":0.487},{"d":"GA Senate District 2","rep":"Derek Mallow","w":0.244},{"d":"GA Senate District 4","rep":"Billy Hickman","w":0.052}]},"munis":[{"m":"Savannah","p":[{"n":"Edna Jackson","r":"Mayor, Savannah, GA"}]}],"slug":"chatham"},"13053":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.996}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":0.999}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":0.999}]},"munis":[],"slug":"chattahoochee"},"13055":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":1.0}],"sh":[{"d":"GA House District 12","rep":"Eddie Lumsden","w":1.0}],"ss":[{"d":"GA Senate District 53","rep":"Lanny Thomas","w":1.0}]},"munis":[],"slug":"chattooga"},"13057":{"county":[],"districts":{"cd":[{"d":"GA-11","rep":"Barry Loudermilk","w":0.688},{"d":"GA-07","rep":"Richard McCormick","w":0.312}],"sh":[{"d":"GA House District 23","rep":"Bill Fincher","w":0.273},{"d":"GA House District 14","rep":"Mitchell Scoggins","w":0.193},{"d":"GA House District 21","rep":"Brad Thomas","w":0.163},{"d":"GA House District 22","rep":"Jordan Ridley","w":0.127},{"d":"GA House District 11","rep":"Rick Jasperse","w":0.1},{"d":"GA House District 20","rep":"Charlice Byrd","w":0.077},{"d":"GA House District 47","rep":"Jan Jones","w":0.029},{"d":"GA House District 44","rep":"Don Parsons","w":0.023},{"d":"GA House District 46","rep":"John Carson","w":0.015}],"ss":[{"d":"GA Senate District 21","rep":"Jason Dickerson","w":0.708},{"d":"GA Senate District 32","rep":"Kay Kirkpatrick","w":0.204},{"d":"GA Senate District 56","rep":"John Albers","w":0.089}]},"munis":[{"m":"Canton","p":[{"n":"Bill Grant","r":"Mayor, Canton, GA"}]},{"m":"Woodstock","p":[{"n":"Michael Caldwell","r":"Mayor, Woodstock, GA"}]}],"slug":"cherokee"},"13059":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 122","rep":"Spencer Frye","w":0.39},{"d":"GA House District 121","rep":"Eric Gisler","w":0.234},{"d":"GA House District 120","rep":"Houston Gaines","w":0.211},{"d":"GA House District 124","rep":"Trey Rhodes","w":0.165}],"ss":[{"d":"GA Senate District 47","rep":"Frank Ginn","w":0.628},{"d":"GA Senate District 46","rep":"Bill Cowsert","w":0.371}]},"munis":[],"slug":"clarke"},"13061":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.993},{"d":"AL-01","rep":"Barry Moore","w":0.006}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"clay"},"13063":{"county":[],"districts":{"cd":[{"d":"GA-13","rep":"Vacant","w":0.532},{"d":"GA-05","rep":"Nikema Williams","w":0.466}],"sh":[{"d":"GA House District 74","rep":"Robert Flournoy","w":0.244},{"d":"GA House District 77","rep":"Rhonda Burnough","w":0.211},{"d":"GA House District 76","rep":"Sandra Scott","w":0.191},{"d":"GA House District 75","rep":"Eric Bell","w":0.167},{"d":"GA House District 79","rep":"Yasmin Neal","w":0.119},{"d":"GA House District 78","rep":"Demetrius Douglas","w":0.068}],"ss":[{"d":"GA Senate District 34","rep":"Kenya Wicks","w":0.417},{"d":"GA Senate District 17","rep":"Gail Davenport","w":0.382},{"d":"GA Senate District 44","rep":"Elena Parent","w":0.2}]},"munis":[],"slug":"clayton"},"13065":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 174","rep":"John Corbett","w":1.0}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":1.0}]},"munis":[],"slug":"clinch"},"13067":{"county":[],"districts":{"cd":[{"d":"GA-11","rep":"Barry Loudermilk","w":0.416},{"d":"GA-06","rep":"Lucy McBath","w":0.347},{"d":"GA-14","rep":"Clay Fuller","w":0.236}],"sh":[{"d":"GA House District 36","rep":"Ginny Ehrhart","w":0.12},{"d":"GA House District 38","rep":"David Wilkerson","w":0.114},{"d":"GA House District 34","rep":"Devan Seabaugh","w":0.108},{"d":"GA House District 39","rep":"Terry Cummings","w":0.085},{"d":"GA House District 45","rep":"Sharon Cooper","w":0.074},{"d":"GA House District 37","rep":"Mary Frances Williams","w":0.066},{"d":"GA House District 35","rep":"Lisa Campbell","w":0.065},{"d":"GA House District 42","rep":"Gabriel Sanchez","w":0.057},{"d":"GA House District 41","rep":"Michael Smith","w":0.056},{"d":"GA House District 46","rep":"John Carson","w":0.052},{"d":"GA House District 43","rep":"Solomon Adesanya","w":0.05},{"d":"GA House District 44","rep":"Don Parsons","w":0.048},{"d":"GA House District 61","rep":"Mekyah McQueen","w":0.036},{"d":"GA House District 19","rep":"Joseph Gullett","w":0.032},{"d":"GA House District 22","rep":"Jordan Ridley","w":0.027},{"d":"GA House District 60","rep":"Sheila Jones","w":0.011}],"ss":[{"d":"GA Senate District 37","rep":"Ed Setzler","w":0.314},{"d":"GA Senate District 33","rep":"Doc Rhett","w":0.228},{"d":"GA Senate District 28","rep":"Donzella James","w":0.142},{"d":"GA Senate District 32","rep":"Kay Kirkpatrick","w":0.119},{"d":"GA Senate District 56","rep":"John Albers","w":0.109},{"d":"GA Senate District 35","rep":"Jaha Howard","w":0.089}]},"munis":[{"m":"Acworth","p":[{"n":"Tommy Allegood","r":"Mayor, Acworth, GA"}]},{"m":"Kennesaw","p":[{"n":"Derek Easterling","r":"Mayor, Kennesaw, GA"}]},{"m":"Mableton","p":[{"n":"Michael Owens","r":"Mayor, Mableton, GA"}]},{"m":"Marietta","p":[{"n":"Steve Tumlin","r":"Mayor, Marietta, GA"}]},{"m":"Smyrna","p":[{"n":"Derek Norton","r":"Mayor, Smyrna, GA"}]}],"slug":"cobb"},"13069":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 169","rep":"Angie O'Steen","w":0.832},{"d":"GA House District 176","rep":"James Burchett","w":0.168}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":0.551},{"d":"GA Senate District 19","rep":"Blake Tillery","w":0.449}]},"munis":[],"slug":"coffee"},"13071":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.999}],"sh":[{"d":"GA House District 172","rep":"Chas Cannon","w":1.0}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":1.0}]},"munis":[],"slug":"colquitt"},"13073":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 125","rep":"Gary Richardson","w":0.594},{"d":"GA House District 123","rep":"Rob Leverett","w":0.198},{"d":"GA House District 131","rep":"Rob Clifton","w":0.135},{"d":"GA House District 127","rep":"Mark Newton","w":0.072}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":0.699},{"d":"GA Senate District 23","rep":"Max Burns","w":0.301}]},"munis":[],"slug":"columbia"},"13075":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 172","rep":"Chas Cannon","w":0.563},{"d":"GA House District 170","rep":"Jaclyn Ford","w":0.437}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":0.999}]},"munis":[],"slug":"cook"},"13077":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":1.0}],"sh":[{"d":"GA House District 136","rep":"David Jenkins","w":0.411},{"d":"GA House District 70","rep":"Lynn Smith","w":0.325},{"d":"GA House District 65","rep":"Robert Dawson","w":0.111},{"d":"GA House District 73","rep":"Josh Bonner","w":0.091},{"d":"GA House District 67","rep":"Lydia Glaize","w":0.062}],"ss":[{"d":"GA Senate District 6","rep":"Matt Brass","w":1.0}]},"munis":[{"m":"Newnan","p":[{"n":"Keith Brady","r":"Mayor, Newnan, GA"}]}],"slug":"coweta"},"13079":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.999}],"sh":[{"d":"GA House District 134","rep":"Robert Dickey","w":0.999}],"ss":[{"d":"GA Senate District 18","rep":"Steven McNeel","w":1.0}]},"munis":[],"slug":"crawford"},"13081":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.997}],"sh":[{"d":"GA House District 148","rep":"Noel Williams","w":1.0}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[],"slug":"crisp"},"13083":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":1.0}],"sh":[{"d":"GA House District 1","rep":"Mike Cameron","w":1.0}],"ss":[{"d":"GA Senate District 53","rep":"Lanny Thomas","w":1.0}]},"munis":[],"slug":"dade"},"13085":{"county":[],"districts":{"cd":[{"d":"GA-07","rep":"Richard McCormick","w":0.996}],"sh":[{"d":"GA House District 9","rep":"Will Wade","w":0.723},{"d":"GA House District 7","rep":"Johnny Chastain","w":0.277}],"ss":[{"d":"GA Senate District 51","rep":"Steve Gooch","w":1.0}]},"munis":[],"slug":"dawson"},"13087":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 171","rep":"Joe Campbell","w":1.0}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":1.0}]},"munis":[],"slug":"decatur"},"13089":{"county":[],"districts":{"cd":[{"d":"GA-04","rep":"Henry C. \"Hank\" Johnson, Jr.","w":0.719},{"d":"GA-05","rep":"Nikema Williams","w":0.24},{"d":"GA-13","rep":"Vacant","w":0.041}],"sh":[{"d":"GA House District 88","rep":"Billy Mitchell","w":0.094},{"d":"GA House District 90","rep":"Saira Draper","w":0.088},{"d":"GA House District 91","rep":"Angela Moore","w":0.084},{"d":"GA House District 87","rep":"Viola Davis","w":0.07},{"d":"GA House District 89","rep":"Omari Crawford","w":0.065},{"d":"GA House District 80","rep":"Long Tran","w":0.065},{"d":"GA House District 84","rep":"Mary Margaret Oliver","w":0.062},{"d":"GA House District 115","rep":"Regina Lewis-Ward","w":0.061},{"d":"GA House District 85","rep":"Karla Drenner","w":0.061},{"d":"GA House District 101","rep":"Scott Holcomb","w":0.057},{"d":"GA House District 86","rep":"Imani Barnes","w":0.057},{"d":"GA House District 95","rep":"Dar'shun Kendrick","w":0.049},{"d":"GA House District 83","rep":"Karen Lupton","w":0.045},{"d":"GA House District 94","rep":"Venola Mason","w":0.044},{"d":"GA House District 116","rep":"El-Mahdi Holly","w":0.043},{"d":"GA House District 52","rep":"Shea Roberts","w":0.027},{"d":"GA House District 93","rep":"Doreen Carter","w":0.027}],"ss":[{"d":"GA Senate District 10","rep":"Emanuel Jones","w":0.229},{"d":"GA Senate District 55","rep":"Randal Mangham","w":0.21},{"d":"GA Senate District 41","rep":"Kim Jackson","w":0.19},{"d":"GA Senate District 44","rep":"Elena Parent","w":0.161},{"d":"GA Senate District 40","rep":"Sally Harrell","w":0.16},{"d":"GA Senate District 43","rep":"Tonya Anderson","w":0.051}]},"munis":[{"m":"Brookhaven","p":[{"n":"John Park","r":"Mayor, Brookhaven, GA"}]},{"m":"Chamblee","p":[{"n":"Brian Mock","r":"Mayor, Chamblee, GA"}]},{"m":"Decatur","p":[{"n":"Patti Garrett","r":"Mayor, Decatur, GA"}]},{"m":"Dunwoody","p":[{"n":"Lynn Deutsch","r":"Mayor, Dunwoody, GA"}]},{"m":"Stonecrest","p":[{"n":"Jazzmin Cobble","r":"Mayor, Stonecrest, GA"}]}],"slug":"dekalb"},"13091":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 133","rep":"Danny Mathis","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"dodge"},"13093":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.999}],"sh":[{"d":"GA House District 150","rep":"Patty Marie Stinson","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"dooly"},"13095":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.997}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":0.362},{"d":"GA House District 151","rep":"Mike Cheokas","w":0.224},{"d":"GA House District 152","rep":"Bill Yearta","w":0.207},{"d":"GA House District 153","rep":"David Sampson","w":0.206}],"ss":[]},"munis":[{"m":"Albany","p":[{"n":"Bo Dorough","r":"Mayor, Albany, GA"}]}],"slug":"dougherty"},"13097":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.54},{"d":"GA-06","rep":"Lucy McBath","w":0.46}],"sh":[{"d":"GA House District 40","rep":"Kimberly New","w":0.418},{"d":"GA House District 64","rep":"Sylvia Wayfer","w":0.374},{"d":"GA House District 66","rep":"Kimberly Alexander","w":0.208}],"ss":[{"d":"GA Senate District 30","rep":"Tim Bearden","w":0.578},{"d":"GA Senate District 28","rep":"Donzella James","w":0.422}]},"munis":[{"m":"Douglasville","p":[{"n":"Rochelle Robinson","r":"Mayor, Douglasville, GA"}]}],"slug":"douglas"},"13099":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.997}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"early"},"13101":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 174","rep":"John Corbett","w":1.0}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":1.0}]},"munis":[],"slug":"echols"},"13103":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.592},{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.405}],"sh":[{"d":"GA House District 159","rep":"Jon Burns","w":0.779},{"d":"GA House District 161","rep":"Bill Hitchens","w":0.22}],"ss":[{"d":"GA Senate District 4","rep":"Billy Hickman","w":0.999}]},"munis":[],"slug":"effingham"},"13105":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 123","rep":"Rob Leverett","w":1.0}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":1.0}]},"munis":[],"slug":"elbert"},"13107":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 158","rep":"Butch Parrish","w":1.0}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[],"slug":"emanuel"},"13109":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.998}],"sh":[{"d":"GA House District 157","rep":"Bill Werkheiser","w":0.999}],"ss":[{"d":"GA Senate District 4","rep":"Billy Hickman","w":1.0}]},"munis":[],"slug":"evans"},"13111":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":1.0}],"sh":[{"d":"GA House District 7","rep":"Johnny Chastain","w":0.999}],"ss":[{"d":"GA Senate District 51","rep":"Steve Gooch","w":1.0}]},"munis":[],"slug":"fannin"},"13113":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.837},{"d":"GA-06","rep":"Lucy McBath","w":0.158}],"sh":[{"d":"GA House District 82","rep":"Karen Mathiak","w":0.351},{"d":"GA House District 69","rep":"Debra Bazemore","w":0.249},{"d":"GA House District 68","rep":"Derrick Jackson","w":0.242},{"d":"GA House District 73","rep":"Josh Bonner","w":0.156}],"ss":[{"d":"GA Senate District 16","rep":"Marty Harbin","w":0.763},{"d":"GA Senate District 34","rep":"Kenya Wicks","w":0.236}]},"munis":[{"m":"Peachtree City","p":[{"n":"Kim Learnard","r":"Mayor, Peachtree City, GA"}]}],"slug":"fayette"},"13115":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":0.999}],"sh":[{"d":"GA House District 12","rep":"Eddie Lumsden","w":0.658},{"d":"GA House District 13","rep":"Katie Dempsey","w":0.264},{"d":"GA House District 5","rep":"Matt Barton","w":0.078}],"ss":[{"d":"GA Senate District 52","rep":"Chuck Hufstetler","w":0.757},{"d":"GA Senate District 53","rep":"Lanny Thomas","w":0.242}]},"munis":[{"m":"Rome","p":[{"n":"Craig McDaniel","r":"Mayor, Rome, GA"}]}],"slug":"floyd"},"13117":{"county":[],"districts":{"cd":[{"d":"GA-07","rep":"Richard McCormick","w":0.999}],"sh":[{"d":"GA House District 28","rep":"Brent Cox","w":0.313},{"d":"GA House District 26","rep":"Lauren McDonald","w":0.244},{"d":"GA House District 24","rep":"Carter Barrett","w":0.166},{"d":"GA House District 11","rep":"Rick Jasperse","w":0.153},{"d":"GA House District 25","rep":"Todd Jones","w":0.097},{"d":"GA House District 100","rep":"David Clark","w":0.026}],"ss":[{"d":"GA Senate District 27","rep":"Greg Dolezal","w":0.877},{"d":"GA Senate District 48","rep":"Shawn Still","w":0.123}]},"munis":[],"slug":"forsyth"},"13119":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 33","rep":"Alan Powell","w":1.0}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":1.0}]},"munis":[],"slug":"franklin"},"13121":{"county":[],"districts":{"cd":[{"d":"GA-06","rep":"Lucy McBath","w":0.516},{"d":"GA-07","rep":"Richard McCormick","w":0.305},{"d":"GA-05","rep":"Nikema Williams","w":0.176}],"sh":[{"d":"GA House District 65","rep":"Robert Dawson","w":0.205},{"d":"GA House District 47","rep":"Jan Jones","w":0.087},{"d":"GA House District 67","rep":"Lydia Glaize","w":0.086},{"d":"GA House District 53","rep":"Deborah Silcox","w":0.059},{"d":"GA House District 49","rep":"Chuck Martin","w":0.054},{"d":"GA House District 63","rep":"Kim Schofield","w":0.048},{"d":"GA House District 60","rep":"Sheila Jones","w":0.047},{"d":"GA House District 61","rep":"Mekyah McQueen","w":0.046},{"d":"GA House District 62","rep":"Tanya Miller","w":0.038},{"d":"GA House District 50","rep":"Michelle Au","w":0.038},{"d":"GA House District 51","rep":"Esther Panitch","w":0.038},{"d":"GA House District 48","rep":"Scott Hilton","w":0.038},{"d":"GA House District 55","rep":"Inga Willis","w":0.035},{"d":"GA House District 68","rep":"Derrick Jackson","w":0.035},{"d":"GA House District 59","rep":"Phil Olaleye","w":0.025},{"d":"GA House District 58","rep":"Park Cannon","w":0.022},{"d":"GA House District 54","rep":"Betsy Holland","w":0.022},{"d":"GA House District 56","rep":"Bryce Berry","w":0.021},{"d":"GA House District 69","rep":"Debra Bazemore","w":0.016},{"d":"GA House District 57","rep":"Stacey Evans","w":0.015},{"d":"GA House District 52","rep":"Shea Roberts","w":0.014},{"d":"GA House District 25","rep":"Todd Jones","w":0.009}],"ss":[{"d":"GA Senate District 38","rep":"RaShaun Kemp","w":0.233},{"d":"GA Senate District 28","rep":"Donzella James","w":0.153},{"d":"GA Senate District 14","rep":"Josh McLaurin","w":0.117},{"d":"GA Senate District 21","rep":"Jason Dickerson","w":0.111},{"d":"GA Senate District 35","rep":"Jaha Howard","w":0.106},{"d":"GA Senate District 39","rep":"Sonya Halpern","w":0.097},{"d":"GA Senate District 36","rep":"Nan Orrock","w":0.087},{"d":"GA Senate District 48","rep":"Shawn Still","w":0.06},{"d":"GA Senate District 56","rep":"John Albers","w":0.035}]},"munis":[{"m":"Alpharetta","p":[{"n":"Jim Gilvin","r":"Mayor, Alpharetta, GA"}]},{"m":"Atlanta","p":[{"n":"Andre Dickens","r":"Mayor, Atlanta, GA"}]},{"m":"East Point","p":[{"n":"Deana Holiday Ingraham","r":"Mayor, East Point, GA"}]},{"m":"Johns Creek","p":[{"n":"John Bradberry","r":"Mayor, Johns Creek, GA"}]},{"m":"Milton","p":[{"n":"Peyton Jamison","r":"Mayor, Milton, GA"}]},{"m":"Sandy Springs","p":[{"n":"Rusty Paul","r":"Mayor, Sandy Springs, GA"}]},{"m":"South Fulton","p":[{"n":"Theron Griffin","r":"Mayor, South Fulton, GA"}]}],"slug":"fulton"},"13123":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.998}],"sh":[{"d":"GA House District 7","rep":"Johnny Chastain","w":1.0}],"ss":[{"d":"GA Senate District 51","rep":"Steve Gooch","w":1.0}]},"munis":[],"slug":"gilmer"},"13125":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 128","rep":"Mack Jackson","w":1.0}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[],"slug":"glascock"},"13127":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.8}],"sh":[{"d":"GA House District 167","rep":"Buddy DeLoach","w":0.413},{"d":"GA House District 179","rep":"Rick Townsend","w":0.255},{"d":"GA House District 180","rep":"Steven Sainz","w":0.127}],"ss":[{"d":"GA Senate District 3","rep":"Mike Hodges","w":0.795}]},"munis":[{"m":"Brunswick","p":[{"n":"Cosby H. Johnson","r":"Mayor, Brunswick, GA"}]}],"slug":"glynn"},"13129":{"county":[],"districts":{"cd":[{"d":"GA-11","rep":"Barry Loudermilk","w":0.993},{"d":"GA-14","rep":"Clay Fuller","w":0.007}],"sh":[{"d":"GA House District 5","rep":"Matt Barton","w":0.821},{"d":"GA House District 6","rep":"Jason Ridley","w":0.179}],"ss":[{"d":"GA Senate District 54","rep":"Chuck Payne","w":0.743},{"d":"GA Senate District 52","rep":"Chuck Hufstetler","w":0.257}]},"munis":[],"slug":"gordon"},"13131":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 171","rep":"Joe Campbell","w":0.601},{"d":"GA House District 173","rep":"Darlene Taylor","w":0.399}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":1.0}]},"munis":[],"slug":"grady"},"13133":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":1.0}],"sh":[{"d":"GA House District 124","rep":"Trey Rhodes","w":1.0}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":1.0}]},"munis":[],"slug":"greene"},"13135":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.374},{"d":"GA-13","rep":"Vacant","w":0.364},{"d":"GA-04","rep":"Henry C. \"Hank\" Johnson, Jr.","w":0.179},{"d":"GA-10","rep":"Mike Collins","w":0.081}],"sh":[{"d":"GA House District 110","rep":"Segun Adeyina","w":0.084},{"d":"GA House District 105","rep":"Sandy Donatucci","w":0.075},{"d":"GA House District 111","rep":"Rey Martinez","w":0.074},{"d":"GA House District 103","rep":"Soo Hong","w":0.068},{"d":"GA House District 99","rep":"Matt Reeves","w":0.062},{"d":"GA House District 108","rep":"Jasmine Clark","w":0.057},{"d":"GA House District 102","rep":"Gabe Okoye","w":0.054},{"d":"GA House District 104","rep":"Chuck Efstration","w":0.054},{"d":"GA House District 100","rep":"David Clark","w":0.053},{"d":"GA House District 97","rep":"Ruwa Romman","w":0.052},{"d":"GA House District 107","rep":"Sam Park","w":0.048},{"d":"GA House District 96","rep":"Arlene Beckles","w":0.047},{"d":"GA House District 106","rep":"Akbar Ali","w":0.045},{"d":"GA House District 95","rep":"Dar'shun Kendrick","w":0.043},{"d":"GA House District 94","rep":"Venola Mason","w":0.04},{"d":"GA House District 93","rep":"Doreen Carter","w":0.04},{"d":"GA House District 109","rep":"Dewey McClain","w":0.029},{"d":"GA House District 98","rep":"Marvin Lim","w":0.027},{"d":"GA House District 48","rep":"Scott Hilton","w":0.014},{"d":"GA House District 30","rep":"Derrick McCollum","w":0.014},{"d":"GA House District 112","rep":"Bruce Williamson","w":0.013},{"d":"GA House District 88","rep":"Billy Mitchell","w":0.006}],"ss":[{"d":"GA Senate District 45","rep":"Clint Dixon","w":0.21},{"d":"GA Senate District 9","rep":"Nikki Merritt","w":0.184},{"d":"GA Senate District 5","rep":"Sheikh Rahman","w":0.116},{"d":"GA Senate District 46","rep":"Bill Cowsert","w":0.082},{"d":"GA Senate District 55","rep":"Randal Mangham","w":0.081},{"d":"GA Senate District 43","rep":"Tonya Anderson","w":0.077},{"d":"GA Senate District 48","rep":"Shawn Still","w":0.061},{"d":"GA Senate District 40","rep":"Sally Harrell","w":0.021}]},"munis":[{"m":"Duluth","p":[{"n":"Greg Whitlock","r":"Mayor, Duluth, GA"}]},{"m":"Lawrenceville","p":[{"n":"David Still","r":"Mayor, Lawrenceville, GA"}]},{"m":"Peachtree Corners","p":[{"n":"Mike Mason","r":"Mayor, Peachtree Corners, GA"}]},{"m":"Snellville","p":[{"n":"Barbara Bender","r":"Mayor, Snellville, GA"}]},{"m":"Suwanee","p":[{"n":"James Burnette","r":"Mayor, Suwanee, GA"}]}],"slug":"gwinnett"},"13137":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":1.0}],"sh":[{"d":"GA House District 10","rep":"Victor Anderson","w":0.922},{"d":"GA House District 32","rep":"Chris Erwin","w":0.077}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":1.0}]},"munis":[],"slug":"habersham"},"13139":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.733},{"d":"GA-07","rep":"Richard McCormick","w":0.267}],"sh":[{"d":"GA House District 27","rep":"Lee Hawkins","w":0.535},{"d":"GA House District 30","rep":"Derrick McCollum","w":0.18},{"d":"GA House District 29","rep":"Matt Dubnik","w":0.103},{"d":"GA House District 31","rep":"Emory Dunahoo","w":0.072},{"d":"GA House District 28","rep":"Brent Cox","w":0.046},{"d":"GA House District 100","rep":"David Clark","w":0.04},{"d":"GA House District 103","rep":"Soo Hong","w":0.023}],"ss":[{"d":"GA Senate District 49","rep":"Drew Echols","w":0.885},{"d":"GA Senate District 50","rep":"Bo Hatchett","w":0.114}]},"munis":[{"m":"Gainesville","p":[{"n":"Sam Couvillon","r":"Mayor, Gainesville, GA"}]}],"slug":"hall"},"13141":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.996}],"sh":[{"d":"GA House District 128","rep":"Mack Jackson","w":1.0}],"ss":[{"d":"GA Senate District 26","rep":"David Lucas","w":1.0}]},"munis":[],"slug":"hancock"},"13143":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":1.0}],"sh":[{"d":"GA House District 18","rep":"Tyler Smith","w":1.0}],"ss":[{"d":"GA Senate District 30","rep":"Tim Bearden","w":1.0}]},"munis":[],"slug":"haralson"},"13145":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.994}],"sh":[{"d":"GA House District 138","rep":"Vance Smith","w":0.726},{"d":"GA House District 139","rep":"Carmen Rice","w":0.274}],"ss":[{"d":"GA Senate District 29","rep":"Randy Robertson","w":0.999}]},"munis":[{"m":"Hamilton","p":[{"n":"Patrick Whearley","r":"Mayor, Hamilton, GA"}]}],"slug":"harris"},"13147":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 33","rep":"Alan Powell","w":1.0}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":1.0}]},"munis":[],"slug":"hart"},"13149":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":1.0}],"sh":[{"d":"GA House District 72","rep":"David Huddleston","w":1.0}],"ss":[{"d":"GA Senate District 6","rep":"Matt Brass","w":1.0}]},"munis":[],"slug":"heard"},"13151":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.561},{"d":"GA-13","rep":"Vacant","w":0.293},{"d":"GA-03","rep":"Brian Jack","w":0.147}],"sh":[{"d":"GA House District 81","rep":"Noelle Kahaian","w":0.37},{"d":"GA House District 117","rep":"Mary Ann Santos","w":0.191},{"d":"GA House District 78","rep":"Demetrius Douglas","w":0.12},{"d":"GA House District 74","rep":"Robert Flournoy","w":0.116},{"d":"GA House District 115","rep":"Regina Lewis-Ward","w":0.112},{"d":"GA House District 116","rep":"El-Mahdi Holly","w":0.09}],"ss":[{"d":"GA Senate District 17","rep":"Gail Davenport","w":0.391},{"d":"GA Senate District 25","rep":"Rick Williams","w":0.279},{"d":"GA Senate District 10","rep":"Emanuel Jones","w":0.166},{"d":"GA Senate District 42","rep":"Brian Strickland","w":0.164}]},"munis":[{"m":"Mcdonough","p":[{"n":"Sandra Vincent","r":"Mayor, McDonough, GA"}]},{"m":"Stockbridge","p":[{"n":"Anthony S. Ford","r":"Mayor, Stockbridge, GA"}]}],"slug":"henry"},"13153":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.869},{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.131}],"sh":[{"d":"GA House District 148","rep":"Noel Williams","w":0.599},{"d":"GA House District 146","rep":"Shaw Blackmon","w":0.225},{"d":"GA House District 143","rep":"Nissa Jones","w":0.103},{"d":"GA House District 147","rep":"Bethany Ballard","w":0.073}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":0.821},{"d":"GA Senate District 26","rep":"David Lucas","w":0.12},{"d":"GA Senate District 18","rep":"Steven McNeel","w":0.059}]},"munis":[{"m":"Warner Robins","p":[{"n":"LaRhonda W. Patrick","r":"Mayor, Warner Robins, GA"}]}],"slug":"houston"},"13155":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 169","rep":"Angie O'Steen","w":1.0}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[],"slug":"irwin"},"13157":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.995}],"sh":[{"d":"GA House District 31","rep":"Emory Dunahoo","w":0.478},{"d":"GA House District 120","rep":"Houston Gaines","w":0.315},{"d":"GA House District 32","rep":"Chris Erwin","w":0.19},{"d":"GA House District 119","rep":"Holt Persinger","w":0.016}],"ss":[{"d":"GA Senate District 47","rep":"Frank Ginn","w":0.64},{"d":"GA Senate District 50","rep":"Bo Hatchett","w":0.36}]},"munis":[],"slug":"jackson"},"13159":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.999}],"sh":[{"d":"GA House District 144","rep":"Dale Washburn","w":1.0}],"ss":[{"d":"GA Senate District 25","rep":"Rick Williams","w":1.0}]},"munis":[],"slug":"jasper"},"13161":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.998}],"sh":[{"d":"GA House District 157","rep":"Bill Werkheiser","w":0.999}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"jeff-davis"},"13163":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 132","rep":"Brian Prince","w":1.0}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[],"slug":"jefferson"},"13165":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 126","rep":"L.C. Myles","w":1.0}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[],"slug":"jenkins"},"13167":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 155","rep":"Matt Hatchett","w":1.0}],"ss":[{"d":"GA Senate District 26","rep":"David Lucas","w":1.0}]},"munis":[],"slug":"johnson"},"13169":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.997}],"sh":[{"d":"GA House District 144","rep":"Dale Washburn","w":0.849},{"d":"GA House District 149","rep":"Floyd Griffin","w":0.15}],"ss":[{"d":"GA Senate District 25","rep":"Rick Williams","w":1.0}]},"munis":[],"slug":"jones"},"13171":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":1.0}],"sh":[{"d":"GA House District 135","rep":"Beth Camp","w":0.591},{"d":"GA House District 134","rep":"Robert Dickey","w":0.409}],"ss":[{"d":"GA Senate District 16","rep":"Marty Harbin","w":1.0}]},"munis":[],"slug":"lamar"},"13173":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 176","rep":"James Burchett","w":0.999}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":1.0}]},"munis":[],"slug":"lanier"},"13175":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.998}],"sh":[{"d":"GA House District 155","rep":"Matt Hatchett","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"laurens"},"13177":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.997}],"sh":[{"d":"GA House District 152","rep":"Bill Yearta","w":1.0}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[],"slug":"lee"},"13179":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.899}],"sh":[{"d":"GA House District 168","rep":"Al Williams","w":0.598},{"d":"GA House District 167","rep":"Buddy DeLoach","w":0.3}],"ss":[{"d":"GA Senate District 1","rep":"Ben Watson","w":0.898}]},"munis":[{"m":"Hinesville","p":[{"n":"Karl Riles","r":"Mayor, Hinesville, GA"}]}],"slug":"liberty"},"13181":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.999}],"sh":[{"d":"GA House District 123","rep":"Rob Leverett","w":1.0}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":1.0}]},"munis":[],"slug":"lincoln"},"13183":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.998}],"sh":[{"d":"GA House District 167","rep":"Buddy DeLoach","w":1.0}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"long"},"13185":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 175","rep":"John LaHood","w":0.537},{"d":"GA House District 174","rep":"John Corbett","w":0.294},{"d":"GA House District 176","rep":"James Burchett","w":0.067}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":1.0}]},"munis":[{"m":"Valdosta","p":[{"n":"Scott James Matheson","r":"Mayor, Valdosta, GA"}]}],"slug":"lowndes"},"13187":{"county":[],"districts":{"cd":[{"d":"GA-07","rep":"Richard McCormick","w":0.99},{"d":"GA-09","rep":"Andrew S. Clyde","w":0.01}],"sh":[{"d":"GA House District 9","rep":"Will Wade","w":0.918},{"d":"GA House District 27","rep":"Lee Hawkins","w":0.076},{"d":"GA House District 8","rep":"Stan Gunter","w":0.006}],"ss":[{"d":"GA Senate District 51","rep":"Steve Gooch","w":1.0}]},"munis":[],"slug":"lumpkin"},"13189":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 125","rep":"Gary Richardson","w":0.507},{"d":"GA House District 128","rep":"Mack Jackson","w":0.492}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[],"slug":"mcduffie"},"13191":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.845}],"sh":[{"d":"GA House District 167","rep":"Buddy DeLoach","w":0.827}],"ss":[{"d":"GA Senate District 3","rep":"Mike Hodges","w":0.827}]},"munis":[],"slug":"mcintosh"},"13193":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.999}],"sh":[{"d":"GA House District 150","rep":"Patty Marie Stinson","w":1.0}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":1.0}]},"munis":[],"slug":"macon"},"13195":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 123","rep":"Rob Leverett","w":0.554},{"d":"GA House District 33","rep":"Alan Powell","w":0.445}],"ss":[{"d":"GA Senate District 47","rep":"Frank Ginn","w":0.999}]},"munis":[],"slug":"madison"},"13197":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":1.0}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":1.0}]},"munis":[],"slug":"marion"},"13199":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.999}],"sh":[{"d":"GA House District 136","rep":"David Jenkins","w":0.794},{"d":"GA House District 137","rep":"Debbie Buckner","w":0.205}],"ss":[{"d":"GA Senate District 29","rep":"Randy Robertson","w":1.0}]},"munis":[],"slug":"meriwether"},"13201":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"miller"},"13205":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 171","rep":"Joe Campbell","w":1.0}],"ss":[]},"munis":[],"slug":"mitchell"},"13207":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.999}],"sh":[{"d":"GA House District 145","rep":"Tangie Herring","w":0.497},{"d":"GA House District 118","rep":"Clint Crowe","w":0.441},{"d":"GA House District 144","rep":"Dale Washburn","w":0.061}],"ss":[{"d":"GA Senate District 18","rep":"Steven McNeel","w":1.0}]},"munis":[],"slug":"monroe"},"13209":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.998}],"sh":[{"d":"GA House District 156","rep":"Leesa Hagan","w":1.0}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"montgomery"},"13211":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":1.0}],"sh":[{"d":"GA House District 114","rep":"Tim Fleming","w":1.0}],"ss":[{"d":"GA Senate District 42","rep":"Brian Strickland","w":1.0}]},"munis":[],"slug":"morgan"},"13213":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":0.996}],"sh":[{"d":"GA House District 6","rep":"Jason Ridley","w":0.999}],"ss":[{"d":"GA Senate District 54","rep":"Chuck Payne","w":1.0}]},"munis":[],"slug":"murray"},"13215":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.832},{"d":"GA-03","rep":"Brian Jack","w":0.161}],"sh":[{"d":"GA House District 137","rep":"Debbie Buckner","w":0.479},{"d":"GA House District 141","rep":"Carolyn Hugley","w":0.15},{"d":"GA House District 139","rep":"Carmen Rice","w":0.128},{"d":"GA House District 140","rep":"Teddy Reese","w":0.122},{"d":"GA House District 138","rep":"Vance Smith","w":0.119}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":0.597},{"d":"GA Senate District 29","rep":"Randy Robertson","w":0.402}]},"munis":[{"m":"Columbus","p":[{"n":"B. H. \"Skip\" Henderson III","r":"Mayor, Columbus, GA"}]}],"slug":"muscogee"},"13217":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.751},{"d":"GA-13","rep":"Vacant","w":0.249}],"sh":[{"d":"GA House District 114","rep":"Tim Fleming","w":0.487},{"d":"GA House District 118","rep":"Clint Crowe","w":0.326},{"d":"GA House District 113","rep":"Sharon Henderson","w":0.186}],"ss":[{"d":"GA Senate District 42","rep":"Brian Strickland","w":0.957},{"d":"GA Senate District 43","rep":"Tonya Anderson","w":0.043}]},"munis":[],"slug":"newton"},"13219":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":1.0}],"sh":[{"d":"GA House District 121","rep":"Eric Gisler","w":0.912},{"d":"GA House District 120","rep":"Houston Gaines","w":0.087}],"ss":[{"d":"GA Senate District 46","rep":"Bill Cowsert","w":0.999}]},"munis":[],"slug":"oconee"},"13221":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":1.0}],"sh":[{"d":"GA House District 124","rep":"Trey Rhodes","w":1.0}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":1.0}]},"munis":[],"slug":"oglethorpe"},"13223":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":0.999}],"sh":[{"d":"GA House District 17","rep":"Martin Momtahan","w":0.356},{"d":"GA House District 16","rep":"Trey Kelley","w":0.221},{"d":"GA House District 19","rep":"Joseph Gullett","w":0.152},{"d":"GA House District 18","rep":"Tyler Smith","w":0.144},{"d":"GA House District 40","rep":"Kimberly New","w":0.127}],"ss":[{"d":"GA Senate District 31","rep":"Jason Anavitarte","w":0.845},{"d":"GA Senate District 30","rep":"Tim Bearden","w":0.155}]},"munis":[],"slug":"paulding"},"13225":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.997}],"sh":[{"d":"GA House District 150","rep":"Patty Marie Stinson","w":0.516},{"d":"GA House District 147","rep":"Bethany Ballard","w":0.276},{"d":"GA House District 134","rep":"Robert Dickey","w":0.208}],"ss":[{"d":"GA Senate District 18","rep":"Steven McNeel","w":1.0}]},"munis":[],"slug":"peach"},"13227":{"county":[],"districts":{"cd":[{"d":"GA-11","rep":"Barry Loudermilk","w":0.995}],"sh":[{"d":"GA House District 11","rep":"Rick Jasperse","w":1.0}],"ss":[{"d":"GA Senate District 51","rep":"Steve Gooch","w":1.0}]},"munis":[],"slug":"pickens"},"13229":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":1.0}],"sh":[{"d":"GA House District 178","rep":"Steven Meeks","w":0.999}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":0.999}]},"munis":[],"slug":"pierce"},"13231":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":1.0}],"sh":[{"d":"GA House District 135","rep":"Beth Camp","w":0.999}],"ss":[{"d":"GA Senate District 16","rep":"Marty Harbin","w":1.0}]},"munis":[],"slug":"pike"},"13233":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":0.999}],"sh":[{"d":"GA House District 16","rep":"Trey Kelley","w":1.0}],"ss":[{"d":"GA Senate District 31","rep":"Jason Anavitarte","w":1.0}]},"munis":[],"slug":"polk"},"13235":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.999}],"sh":[{"d":"GA House District 148","rep":"Noel Williams","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"pulaski"},"13237":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.998}],"sh":[{"d":"GA House District 144","rep":"Dale Washburn","w":0.628},{"d":"GA House District 124","rep":"Trey Rhodes","w":0.371}],"ss":[{"d":"GA Senate District 25","rep":"Rick Williams","w":1.0}]},"munis":[{"m":"Eatonton","p":[{"n":"John Reid","r":"Mayor, Eatonton, GA"}]}],"slug":"putnam"},"13239":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.991},{"d":"AL-02","rep":"Shomari Figures","w":0.009}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"quitman"},"13241":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.996}],"sh":[{"d":"GA House District 10","rep":"Victor Anderson","w":0.999}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":1.0}]},"munis":[],"slug":"rabun"},"13243":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":1.0}],"ss":[]},"munis":[],"slug":"randolph"},"13245":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.995}],"sh":[{"d":"GA House District 130","rep":"Sheila Nelson","w":0.395},{"d":"GA House District 132","rep":"Brian Prince","w":0.32},{"d":"GA House District 126","rep":"L.C. Myles","w":0.172},{"d":"GA House District 129","rep":"Karlton Howard","w":0.084},{"d":"GA House District 127","rep":"Mark Newton","w":0.028}],"ss":[{"d":"GA Senate District 22","rep":"Harold Jones","w":0.701},{"d":"GA Senate District 23","rep":"Max Burns","w":0.298}]},"munis":[],"slug":"richmond"},"13247":{"county":[],"districts":{"cd":[{"d":"GA-13","rep":"Vacant","w":0.992}],"sh":[{"d":"GA House District 92","rep":"Rhonda Taylor","w":0.442},{"d":"GA House District 91","rep":"Angela Moore","w":0.327},{"d":"GA House District 93","rep":"Doreen Carter","w":0.23}],"ss":[{"d":"GA Senate District 43","rep":"Tonya Anderson","w":0.999}]},"munis":[],"slug":"rockdale"},"13249":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":1.0}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":1.0}]},"munis":[],"slug":"schley"},"13251":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.997}],"sh":[{"d":"GA House District 159","rep":"Jon Burns","w":0.999}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":0.999}]},"munis":[],"slug":"screven"},"13253":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.998}],"sh":[{"d":"GA House District 154","rep":"Gerald Greene","w":0.999}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":0.999}]},"munis":[],"slug":"seminole"},"13255":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.998}],"sh":[{"d":"GA House District 82","rep":"Karen Mathiak","w":0.647},{"d":"GA House District 135","rep":"Beth Camp","w":0.353}],"ss":[{"d":"GA Senate District 16","rep":"Marty Harbin","w":1.0}]},"munis":[{"m":"Griffin","p":[{"n":"Douglas S. Hollberg","r":"Mayor, Griffin, GA"}]}],"slug":"spalding"},"13257":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.997}],"sh":[{"d":"GA House District 32","rep":"Chris Erwin","w":0.999}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":1.0}]},"munis":[],"slug":"stephens"},"13259":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.995},{"d":"AL-02","rep":"Shomari Figures","w":0.005}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":1.0}],"ss":[]},"munis":[],"slug":"stewart"},"13261":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":0.696},{"d":"GA House District 150","rep":"Patty Marie Stinson","w":0.304}],"ss":[]},"munis":[],"slug":"sumter"},"13263":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.996}],"sh":[{"d":"GA House District 137","rep":"Debbie Buckner","w":1.0}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":1.0}]},"munis":[],"slug":"talbot"},"13265":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":0.991},{"d":"GA-12","rep":"Rick W. Allen","w":0.009}],"sh":[{"d":"GA House District 124","rep":"Trey Rhodes","w":0.999}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":0.999}]},"munis":[],"slug":"taliaferro"},"13267":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.996}],"sh":[{"d":"GA House District 157","rep":"Bill Werkheiser","w":0.917},{"d":"GA House District 156","rep":"Leesa Hagan","w":0.083}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"tattnall"},"13269":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":0.999}],"sh":[{"d":"GA House District 150","rep":"Patty Marie Stinson","w":1.0}],"ss":[{"d":"GA Senate District 15","rep":"Ed Harbison","w":1.0}]},"munis":[],"slug":"taylor"},"13271":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.998}],"sh":[{"d":"GA House District 156","rep":"Leesa Hagan","w":0.534},{"d":"GA House District 133","rep":"Danny Mathis","w":0.465}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"telfair"},"13273":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":1.0}],"ss":[]},"munis":[],"slug":"terrell"},"13275":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 173","rep":"Darlene Taylor","w":0.829},{"d":"GA House District 172","rep":"Chas Cannon","w":0.171}],"ss":[{"d":"GA Senate District 11","rep":"Sam Watson","w":1.0}]},"munis":[],"slug":"thomas"},"13277":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 170","rep":"Jaclyn Ford","w":0.577},{"d":"GA House District 169","rep":"Angie O'Steen","w":0.423}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[],"slug":"tift"},"13279":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.997}],"sh":[{"d":"GA House District 156","rep":"Leesa Hagan","w":1.0}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"toombs"},"13281":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":1.0}],"sh":[{"d":"GA House District 8","rep":"Stan Gunter","w":1.0}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":1.0}]},"munis":[],"slug":"towns"},"13283":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":1.0}],"sh":[{"d":"GA House District 158","rep":"Butch Parrish","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"treutlen"},"13285":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":1.0}],"sh":[{"d":"GA House District 138","rep":"Vance Smith","w":0.397},{"d":"GA House District 137","rep":"Debbie Buckner","w":0.253},{"d":"GA House District 72","rep":"David Huddleston","w":0.243},{"d":"GA House District 136","rep":"David Jenkins","w":0.107}],"ss":[{"d":"GA Senate District 29","rep":"Randy Robertson","w":1.0}]},"munis":[{"m":"Lagrange","p":[{"n":"Jim Arrington","r":"Mayor, LaGrange, GA"}]}],"slug":"troup"},"13287":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 169","rep":"Angie O'Steen","w":1.0}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[],"slug":"turner"},"13289":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.995}],"sh":[{"d":"GA House District 133","rep":"Danny Mathis","w":1.0}],"ss":[{"d":"GA Senate District 26","rep":"David Lucas","w":1.0}]},"munis":[],"slug":"twiggs"},"13291":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.996}],"sh":[{"d":"GA House District 8","rep":"Stan Gunter","w":1.0}],"ss":[{"d":"GA Senate District 51","rep":"Steve Gooch","w":1.0}]},"munis":[],"slug":"union"},"13293":{"county":[],"districts":{"cd":[{"d":"GA-03","rep":"Brian Jack","w":0.997}],"sh":[{"d":"GA House District 134","rep":"Robert Dickey","w":1.0}],"ss":[{"d":"GA Senate District 18","rep":"Steven McNeel","w":1.0}]},"munis":[],"slug":"upson"},"13295":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":1.0}],"sh":[{"d":"GA House District 1","rep":"Mike Cameron","w":0.554},{"d":"GA House District 2","rep":"Steve Tarvin","w":0.446}],"ss":[{"d":"GA Senate District 53","rep":"Lanny Thomas","w":1.0}]},"munis":[],"slug":"walker"},"13297":{"county":[],"districts":{"cd":[{"d":"GA-10","rep":"Mike Collins","w":1.0}],"sh":[{"d":"GA House District 112","rep":"Bruce Williamson","w":0.578},{"d":"GA House District 114","rep":"Tim Fleming","w":0.233},{"d":"GA House District 111","rep":"Rey Martinez","w":0.188}],"ss":[{"d":"GA Senate District 46","rep":"Bill Cowsert","w":0.581},{"d":"GA Senate District 42","rep":"Brian Strickland","w":0.419}]},"munis":[{"m":"Monroe","p":[{"n":"John Howard","r":"Mayor, Monroe, GA"}]}],"slug":"walton"},"13299":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":0.999}],"sh":[{"d":"GA House District 174","rep":"John Corbett","w":0.644},{"d":"GA House District 176","rep":"James Burchett","w":0.356}],"ss":[{"d":"GA Senate District 8","rep":"Russ Goodman","w":0.797},{"d":"GA Senate District 3","rep":"Mike Hodges","w":0.203}]},"munis":[],"slug":"ware"},"13301":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.996}],"sh":[{"d":"GA House District 128","rep":"Mack Jackson","w":1.0}],"ss":[{"d":"GA Senate District 23","rep":"Max Burns","w":1.0}]},"munis":[{"m":"Warrenton","p":[{"n":"Chris McCorkle","r":"Mayor, Warrenton, GA"}]}],"slug":"warren"},"13303":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.997}],"sh":[{"d":"GA House District 128","rep":"Mack Jackson","w":1.0}],"ss":[{"d":"GA Senate District 26","rep":"David Lucas","w":1.0}]},"munis":[],"slug":"washington"},"13305":{"county":[],"districts":{"cd":[{"d":"GA-01","rep":"Earl L. \"Buddy\" Carter","w":1.0}],"sh":[{"d":"GA House District 178","rep":"Steven Meeks","w":0.904},{"d":"GA House District 167","rep":"Buddy DeLoach","w":0.096}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"wayne"},"13307":{"county":[],"districts":{"cd":[{"d":"GA-02","rep":"Sanford D. Bishop, Jr.","w":1.0}],"sh":[{"d":"GA House District 151","rep":"Mike Cheokas","w":1.0}],"ss":[]},"munis":[],"slug":"webster"},"13309":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.993},{"d":"GA-08","rep":"Austin Scott","w":0.007}],"sh":[{"d":"GA House District 156","rep":"Leesa Hagan","w":0.999}],"ss":[{"d":"GA Senate District 19","rep":"Blake Tillery","w":1.0}]},"munis":[],"slug":"wheeler"},"13311":{"county":[],"districts":{"cd":[{"d":"GA-09","rep":"Andrew S. Clyde","w":0.997}],"sh":[{"d":"GA House District 8","rep":"Stan Gunter","w":0.84},{"d":"GA House District 9","rep":"Will Wade","w":0.159}],"ss":[{"d":"GA Senate District 50","rep":"Bo Hatchett","w":0.562},{"d":"GA Senate District 51","rep":"Steve Gooch","w":0.438}]},"munis":[],"slug":"white"},"13313":{"county":[],"districts":{"cd":[{"d":"GA-14","rep":"Clay Fuller","w":1.0}],"sh":[{"d":"GA House District 2","rep":"Steve Tarvin","w":0.381},{"d":"GA House District 4","rep":"Kasey Carpenter","w":0.317},{"d":"GA House District 6","rep":"Jason Ridley","w":0.301}],"ss":[{"d":"GA Senate District 54","rep":"Chuck Payne","w":1.0}]},"munis":[{"m":"Dalton","p":[{"n":"Annalee Sams","r":"Mayor, Dalton, GA"}]}],"slug":"whitfield"},"13315":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":1.0}],"sh":[{"d":"GA House District 148","rep":"Noel Williams","w":1.0}],"ss":[{"d":"GA Senate District 20","rep":"Larry Walker","w":1.0}]},"munis":[],"slug":"wilcox"},"13317":{"county":[],"districts":{"cd":[{"d":"GA-12","rep":"Rick W. Allen","w":0.722},{"d":"GA-10","rep":"Mike Collins","w":0.278}],"sh":[{"d":"GA House District 123","rep":"Rob Leverett","w":1.0}],"ss":[{"d":"GA Senate District 24","rep":"Lee Anderson","w":1.0}]},"munis":[],"slug":"wilkes"},"13319":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.999}],"sh":[{"d":"GA House District 133","rep":"Danny Mathis","w":1.0}],"ss":[{"d":"GA Senate District 26","rep":"David Lucas","w":1.0}]},"munis":[],"slug":"wilkinson"},"13321":{"county":[],"districts":{"cd":[{"d":"GA-08","rep":"Austin Scott","w":0.997}],"sh":[{"d":"GA House District 152","rep":"Bill Yearta","w":1.0}],"ss":[{"d":"GA Senate District 13","rep":"Carden Summers","w":1.0}]},"munis":[],"slug":"worth"},"15001":{"county":[],"districts":{"cd":[{"d":"HI-02","rep":"Jill N. Tokuda","w":0.79}],"sh":[{"d":"HI House District 5","rep":"Jeanné Kapela","w":0.356},{"d":"HI House District 1","rep":"Matthias Kusch","w":0.154},{"d":"HI House District 7","rep":"Nicole Lowen","w":0.095},{"d":"HI House District 8","rep":"David Tarnas","w":0.087},{"d":"HI House District 4","rep":"Greggor Ilagan","w":0.056},{"d":"HI House District 6","rep":"Kirstin Kahaloa","w":0.022},{"d":"HI House District 3","rep":"Chris Todd","w":0.018}],"ss":[{"d":"HI Senate District 4","rep":"Tim Richards","w":0.322},{"d":"HI Senate District 3","rep":"Dru Kanuha","w":0.312},{"d":"HI Senate District 2","rep":"Joy San Buenaventura","w":0.087},{"d":"HI Senate District 1","rep":"Lorraine Inouye","w":0.071}]},"munis":[],"slug":"hawaii"},"15003":{"county":[],"districts":{"cd":[{"d":"HI-02","rep":"Jill N. Tokuda","w":0.182},{"d":"HI-01","rep":"Ed Case","w":0.097}],"sh":[{"d":"HI House District 47","rep":"Sean Quinlan","w":0.062},{"d":"HI House District 46","rep":"Amy Perruso","w":0.04},{"d":"HI House District 45","rep":"Chris Muraoka","w":0.022},{"d":"HI House District 48","rep":"Lisa Kitagawa","w":0.015},{"d":"HI House District 39","rep":"Elijah Pierick","w":0.012},{"d":"HI House District 37","rep":"Trish La Chica","w":0.011},{"d":"HI House District 32","rep":"Garner Shimizu","w":0.009},{"d":"HI House District 51","rep":"Lisa Marten","w":0.008},{"d":"HI House District 44","rep":"Darius Kila","w":0.008},{"d":"HI House District 50","rep":"Mike Lee","w":0.008},{"d":"HI House District 34","rep":"Gregg Takayama","w":0.007},{"d":"HI House District 41","rep":"David Alcos","w":0.006},{"d":"HI House District 19","rep":"Mark Hashem","w":0.006},{"d":"HI House District 30","rep":"Shirley Templo","w":0.006},{"d":"HI House District 49","rep":"Scot Matayoshi","w":0.006},{"d":"HI House District 38","rep":"Lauren Matsumoto","w":0.006}],"ss":[{"d":"HI Senate District 23","rep":"Brenton Awa","w":0.106},{"d":"HI Senate District 22","rep":"Samantha DeCorte","w":0.03},{"d":"HI Senate District 17","rep":"Donovan Dela Cruz","w":0.024},{"d":"HI Senate District 25","rep":"Chris Lee","w":0.017},{"d":"HI Senate District 15","rep":"Glenn Wakai","w":0.015},{"d":"HI Senate District 18","rep":"Michelle Kidani","w":0.014},{"d":"HI Senate District 16","rep":"Brandon Elefante","w":0.013},{"d":"HI Senate District 21","rep":"Mike Gabbard","w":0.011},{"d":"HI Senate District 24","rep":"Jarrett Keohokalole","w":0.01},{"d":"HI Senate District 14","rep":"Donna Kim","w":0.01},{"d":"HI Senate District 9","rep":"Stanley Chang","w":0.008},{"d":"HI Senate District 20","rep":"Kurt Fevella","w":0.005}]},"munis":[{"m":"East Honolulu","p":[{"n":"Rick Blangiardi","r":"Mayor, Honolulu, HI"}]}],"slug":"honolulu"},"15005":{"county":[],"districts":{"cd":[{"d":"HI-02","rep":"Jill N. Tokuda","w":0.247}],"sh":[{"d":"HI House District 13","rep":"Mahina Poepoe","w":0.231}],"ss":[{"d":"HI Senate District 7","rep":"Lynn DeCoite","w":0.231}]},"munis":[],"slug":"kalawao"},"15007":{"county":[],"districts":{"cd":[{"d":"HI-02","rep":"Jill N. Tokuda","w":0.494}],"sh":[{"d":"HI House District 17","rep":"Dee Morikawa","w":0.27},{"d":"HI House District 15","rep":"Nadine Nakamura","w":0.148},{"d":"HI House District 16","rep":"Luke Evslin","w":0.079}],"ss":[{"d":"HI Senate District 8","rep":"Ron Kouchi","w":0.497}]},"munis":[],"slug":"kauai"},"15009":{"county":[],"districts":{"cd":[{"d":"HI-02","rep":"Jill N. Tokuda","w":0.486}],"sh":[{"d":"HI House District 13","rep":"Mahina Poepoe","w":0.291},{"d":"HI House District 12","rep":"Kyle Yamashita","w":0.103},{"d":"HI House District 14","rep":"Elle Cochran","w":0.059},{"d":"HI House District 11","rep":"Terez Amato","w":0.015},{"d":"HI House District 10","rep":"Tyson Miyake","w":0.009},{"d":"HI House District 9","rep":"Justin Woodson","w":0.009}],"ss":[{"d":"HI Senate District 7","rep":"Lynn DeCoite","w":0.388},{"d":"HI Senate District 6","rep":"Angus McKelvey","w":0.069},{"d":"HI Senate District 5","rep":"Troy Hashimoto","w":0.029}]},"munis":[],"slug":"maui"},"16001":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.763},{"d":"ID-02","rep":"Michael K. Simpson","w":0.237}],"sh":[],"ss":[{"d":"ID Senate District 23","rep":"Todd Lakey","w":0.557},{"d":"ID Senate District 18","rep":"Janie Ward-Engelking","w":0.135},{"d":"ID Senate District 19","rep":"Melissa Wintrow","w":0.091},{"d":"ID Senate District 14","rep":"Scott Grow","w":0.081},{"d":"ID Senate District 22","rep":"Lori Den Hartog","w":0.038},{"d":"ID Senate District 10","rep":"Tammy Nichols","w":0.022},{"d":"ID Senate District 21","rep":"Treg Bernt","w":0.02},{"d":"ID Senate District 20","rep":"Josh Keyser","w":0.017},{"d":"ID Senate District 17","rep":"Carrie Semmelroth","w":0.013},{"d":"ID Senate District 15","rep":"Codi Galloway","w":0.013},{"d":"ID Senate District 16","rep":"Ali Rabe","w":0.013}]},"munis":[{"m":"Boise City","p":[{"n":"Lauren McLean","r":"Mayor, Boise, ID"}]},{"m":"Meridian","p":[{"n":"Robert E. Simison","r":"Mayor, Meridian, ID"}]}],"slug":"ada"},"16003":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 7","rep":"Cindy Carlson","w":1.0}]},"munis":[],"slug":"adams"},"16005":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 28","rep":"Jim Guthrie","w":0.737},{"d":"ID Senate District 35","rep":"Mark Harris","w":0.23},{"d":"ID Senate District 29","rep":"James Ruchti","w":0.034}]},"munis":[{"m":"Pocatello","p":[{"n":"Brian Blad","r":"Mayor, Pocatello, ID"}]}],"slug":"bannock"},"16007":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 35","rep":"Mark Harris","w":1.0}]},"munis":[],"slug":"bear-lake"},"16009":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 2","rep":"Phil Hart","w":1.0}]},"munis":[],"slug":"benewah"},"16011":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 30","rep":"Julie VanOrden","w":1.0}]},"munis":[],"slug":"bingham"},"16013":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 26","rep":"Ron Taylor","w":1.0}]},"munis":[],"slug":"blaine"},"16015":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.998}],"sh":[],"ss":[{"d":"ID Senate District 8","rep":"Christy Zito","w":1.0}]},"munis":[],"slug":"boise"},"16017":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 1","rep":"Jim Woodward","w":0.907},{"d":"ID Senate District 2","rep":"Phil Hart","w":0.093}]},"munis":[],"slug":"bonner"},"16019":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 35","rep":"Mark Harris","w":0.795},{"d":"ID Senate District 32","rep":"Kevin Cook","w":0.195},{"d":"ID Senate District 33","rep":"Dave Lent","w":0.009}]},"munis":[],"slug":"bonneville"},"16021":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 1","rep":"Jim Woodward","w":1.0}]},"munis":[],"slug":"boundary"},"16023":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 30","rep":"Julie VanOrden","w":1.0}]},"munis":[],"slug":"butte"},"16025":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 24","rep":"Glenneda Zuiderveld","w":1.0}]},"munis":[],"slug":"camas"},"16027":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 9","rep":"Brandon Shippy","w":0.325},{"d":"ID Senate District 23","rep":"Todd Lakey","w":0.316},{"d":"ID Senate District 10","rep":"Tammy Nichols","w":0.236},{"d":"ID Senate District 13","rep":"Brian Lenney","w":0.052},{"d":"ID Senate District 11","rep":"Camille Blaylock","w":0.037},{"d":"ID Senate District 12","rep":"Ben Adams","w":0.033}]},"munis":[{"m":"Nampa","p":[{"n":"Debbie Kling","r":"Mayor, Nampa, ID"}]}],"slug":"canyon"},"16029":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 35","rep":"Mark Harris","w":1.0}]},"munis":[],"slug":"caribou"},"16031":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 27","rep":"Kelly Anthon","w":1.0}]},"munis":[],"slug":"cassia"},"16033":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 31","rep":"Van Burtenshaw","w":1.0}]},"munis":[],"slug":"clark"},"16035":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 2","rep":"Phil Hart","w":1.0}]},"munis":[],"slug":"clearwater"},"16037":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 8","rep":"Christy Zito","w":1.0}]},"munis":[],"slug":"custer"},"16039":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":0.998}],"sh":[],"ss":[{"d":"ID Senate District 8","rep":"Christy Zito","w":1.0}]},"munis":[],"slug":"elmore"},"16041":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 28","rep":"Jim Guthrie","w":1.0}]},"munis":[],"slug":"franklin"},"16043":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 31","rep":"Van Burtenshaw","w":1.0}]},"munis":[],"slug":"fremont"},"16045":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 14","rep":"Scott Grow","w":0.999}]},"munis":[],"slug":"gem"},"16047":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 24","rep":"Glenneda Zuiderveld","w":1.0}]},"munis":[],"slug":"gooding"},"16049":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 7","rep":"Cindy Carlson","w":1.0}]},"munis":[],"slug":"idaho"},"16051":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 31","rep":"Van Burtenshaw","w":1.0}]},"munis":[],"slug":"jefferson"},"16053":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 26","rep":"Ron Taylor","w":1.0}]},"munis":[],"slug":"jerome"},"16055":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 2","rep":"Phil Hart","w":0.582},{"d":"ID Senate District 5","rep":"Carl Bjerke","w":0.213},{"d":"ID Senate District 3","rep":"Doug Okuniewicz","w":0.19},{"d":"ID Senate District 4","rep":"Ben Toews","w":0.015}]},"munis":[],"slug":"kootenai"},"16057":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 6","rep":"Dan Foreman","w":1.0}]},"munis":[],"slug":"latah"},"16059":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":0.998}],"sh":[],"ss":[{"d":"ID Senate District 31","rep":"Van Burtenshaw","w":1.0}]},"munis":[],"slug":"lemhi"},"16061":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 6","rep":"Dan Foreman","w":1.0}]},"munis":[],"slug":"lewis"},"16063":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 26","rep":"Ron Taylor","w":1.0}]},"munis":[],"slug":"lincoln"},"16065":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 34","rep":"Doug Ricks","w":1.0}]},"munis":[],"slug":"madison"},"16067":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 27","rep":"Kelly Anthon","w":1.0}]},"munis":[],"slug":"minidoka"},"16069":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 6","rep":"Dan Foreman","w":0.623},{"d":"ID Senate District 7","rep":"Cindy Carlson","w":0.377}]},"munis":[],"slug":"nez-perce"},"16071":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 27","rep":"Kelly Anthon","w":1.0}]},"munis":[],"slug":"oneida"},"16073":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 23","rep":"Todd Lakey","w":1.0}]},"munis":[],"slug":"owyhee"},"16075":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.998}],"sh":[],"ss":[{"d":"ID Senate District 9","rep":"Brandon Shippy","w":1.0}]},"munis":[],"slug":"payette"},"16077":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 28","rep":"Jim Guthrie","w":1.0}]},"munis":[],"slug":"power"},"16079":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 2","rep":"Phil Hart","w":1.0}]},"munis":[{"m":"Kellogg","p":[{"n":"Mac Pooler","r":"Mayor, Kellogg, ID"}]}],"slug":"shoshone"},"16081":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 35","rep":"Mark Harris","w":1.0}]},"munis":[],"slug":"teton"},"16083":{"county":[],"districts":{"cd":[{"d":"ID-02","rep":"Michael K. Simpson","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 24","rep":"Glenneda Zuiderveld","w":0.985},{"d":"ID Senate District 25","rep":"Josh Kohl","w":0.015}]},"munis":[{"m":"Twin Falls","p":[{"n":"Ruth Pierce","r":"Mayor, Twin Falls, ID"}]}],"slug":"twin-falls"},"16085":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":0.999}],"sh":[],"ss":[{"d":"ID Senate District 8","rep":"Christy Zito","w":1.0}]},"munis":[],"slug":"valley"},"16087":{"county":[],"districts":{"cd":[{"d":"ID-01","rep":"Russ Fulcher","w":1.0}],"sh":[],"ss":[{"d":"ID Senate District 9","rep":"Brandon Shippy","w":1.0}]},"munis":[{"m":"Weiser","p":[{"n":"Randy Hibberd","r":"Mayor, Weiser, ID"}]}],"slug":"washington"},"17001":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 99","rep":"Kyle Moore","w":0.484},{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":0.301},{"d":"IL House District 94","rep":"Norine Hammond","w":0.215}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":0.785},{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.215}]},"munis":[],"slug":"adams"},"17003":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 118","rep":"Paul Jacobs","w":0.999}],"ss":[]},"munis":[],"slug":"alexander"},"17005":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 109","rep":"Charlie Meier","w":0.678},{"d":"IL House District 110","rep":"Blaine Wilhour","w":0.322}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":1.0}]},"munis":[],"slug":"bond"},"17007":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.67},{"d":"IL-11","rep":"Bill Foster","w":0.33}],"sh":[{"d":"IL House District 69","rep":"Joe Sosnowski","w":0.505},{"d":"IL House District 89","rep":"Tony McCombie","w":0.249},{"d":"IL House District 90","rep":"John Cabello","w":0.184},{"d":"IL House District 68","rep":"Dave Vella","w":0.062}],"ss":[{"d":"IL Senate District 35","rep":"Dave Syverson","w":0.505},{"d":"IL Senate District 45","rep":"Andrew Chesney","w":0.432},{"d":"IL Senate District 34","rep":"Steve Stadelman","w":0.062}]},"munis":[{"m":"Belvidere","p":[{"n":"Clinton Morris","r":"Mayor, Belvidere, IL"}]}],"slug":"boone"},"17009":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 99","rep":"Kyle Moore","w":0.699},{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":0.301}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"brown"},"17011":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.817},{"d":"IL-14","rep":"Lauren Underwood","w":0.183}],"sh":[{"d":"IL House District 73","rep":"Ryan Spain","w":0.878},{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.063},{"d":"IL House District 76","rep":"Murri Briel","w":0.059}],"ss":[{"d":"IL Senate District 37","rep":"Li Arellano","w":0.878},{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.063},{"d":"IL Senate District 38","rep":"Sue Rezin","w":0.059}]},"munis":[{"m":"Princeton","p":[{"n":"Joel Quiram","r":"Mayor, Princeton, IL"}]}],"slug":"bureau"},"17013":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.999}],"sh":[{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":0.999}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":0.999}]},"munis":[],"slug":"calhoun"},"17015":{"county":[],"districts":{"cd":[{"d":"IL-17","rep":"Eric Sorensen","w":1.0}],"sh":[{"d":"IL House District 89","rep":"Tony McCombie","w":1.0}],"ss":[{"d":"IL Senate District 45","rep":"Andrew Chesney","w":1.0}]},"munis":[],"slug":"carroll"},"17017":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 99","rep":"Kyle Moore","w":1.0}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"cass"},"17019":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.622},{"d":"IL-13","rep":"Nikki Budzinski","w":0.192},{"d":"IL-02","rep":"Robin L. Kelly","w":0.186}],"sh":[{"d":"IL House District 101","rep":"Chris Miller","w":0.586},{"d":"IL House District 104","rep":"Brandun Schweizer","w":0.29},{"d":"IL House District 102","rep":"Adam Niemerg","w":0.098},{"d":"IL House District 103","rep":"Carol Ammons","w":0.026}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":0.684},{"d":"IL Senate District 52","rep":"Paul Faraci","w":0.316}]},"munis":[],"slug":"champaign"},"17021":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.999}],"sh":[{"d":"IL House District 107","rep":"Brad Halbrook","w":0.494},{"d":"IL House District 95","rep":"Mike Coffey","w":0.196},{"d":"IL House District 108","rep":"Wayne Rosenthal","w":0.19},{"d":"IL House District 96","rep":"Sue Scherer","w":0.12}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":0.684},{"d":"IL Senate District 48","rep":"Doris Turner","w":0.316}]},"munis":[],"slug":"christian"},"17023":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.997}],"sh":[{"d":"IL House District 102","rep":"Adam Niemerg","w":1.0}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"clark"},"17025":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 110","rep":"Blaine Wilhour","w":1.0}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":1.0}]},"munis":[],"slug":"clay"},"17027":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 110","rep":"Blaine Wilhour","w":0.506},{"d":"IL House District 109","rep":"Charlie Meier","w":0.493}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":1.0}]},"munis":[],"slug":"clinton"},"17029":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.527},{"d":"IL-15","rep":"Mary E. Miller","w":0.472}],"sh":[{"d":"IL House District 101","rep":"Chris Miller","w":0.71},{"d":"IL House District 102","rep":"Adam Niemerg","w":0.29}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"coles"},"17031":{"county":[],"districts":{"cd":[{"d":"IL-02","rep":"Robin L. Kelly","w":0.102},{"d":"IL-06","rep":"Sean Casten","w":0.086},{"d":"IL-05","rep":"Mike Quigley","w":0.073},{"d":"IL-08","rep":"Raja Krishnamoorthi","w":0.063},{"d":"IL-01","rep":"Jonathan L. Jackson","w":0.054},{"d":"IL-04","rep":"Jesús G. \"Chuy\" García","w":0.051},{"d":"IL-09","rep":"Janice D. Schakowsky","w":0.051},{"d":"IL-07","rep":"Danny K. Davis","w":0.042},{"d":"IL-03","rep":"Delia C. Ramirez","w":0.034},{"d":"IL-10","rep":"Bradley Scott Schneider","w":0.022},{"d":"IL-11","rep":"Bill Foster","w":0.007}],"sh":[{"d":"IL House District 38","rep":"Debbie Meyers-Martin","w":0.024},{"d":"IL House District 30","rep":"Will Davis","w":0.023},{"d":"IL House District 56","rep":"Michelle Mussman","w":0.023},{"d":"IL House District 82","rep":"Nicole La Ha","w":0.022},{"d":"IL House District 34","rep":"Nick Smith","w":0.022},{"d":"IL House District 57","rep":"Tracy Katz Muhl","w":0.022},{"d":"IL House District 52","rep":"Marty McLaughlin","w":0.022},{"d":"IL House District 36","rep":"Rick Ryan","w":0.021},{"d":"IL House District 35","rep":"Mary Gill","w":0.019},{"d":"IL House District 29","rep":"Thaddeus Jones","w":0.019},{"d":"IL House District 27","rep":"Justin Slaughter","w":0.018},{"d":"IL House District 51","rep":"Nabeela Syed","w":0.016},{"d":"IL House District 28","rep":"Bob Rita","w":0.016},{"d":"IL House District 17","rep":"Jen Gong-Gershowitz","w":0.015},{"d":"IL House District 44","rep":"Fred Crespo","w":0.015},{"d":"IL House District 77","rep":"Norma Hernandez","w":0.014},{"d":"IL House District 33","rep":"Marcus Evans","w":0.013},{"d":"IL House District 54","rep":"Mary Beth Canty","w":0.013},{"d":"IL House District 7","rep":"Chris Welch","w":0.013},{"d":"IL House District 53","rep":"Nicolle Grasse","w":0.013},{"d":"IL House District 21","rep":"Abdelnasser Rashid","w":0.011},{"d":"IL House District 20","rep":"Brad Stephens","w":0.011},{"d":"IL House District 15","rep":"Michael Kelly","w":0.011},{"d":"IL House District 55","rep":"Justin Cochran","w":0.01},{"d":"IL House District 80","rep":"Anthony DeLuca","w":0.01},{"d":"IL House District 31","rep":"Mike Crawford","w":0.01},{"d":"IL House District 22","rep":"Angie Guerrero-Cuellar","w":0.009},{"d":"IL House District 8","rep":"La Shawn Ford","w":0.009},{"d":"IL House District 18","rep":"Robyn Gabel","w":0.009},{"d":"IL House District 2","rep":"Lisa Hernandez","w":0.008},{"d":"IL House District 43","rep":"Anna Moeller","w":0.007},{"d":"IL House District 32","rep":"Lisa Davis","w":0.007},{"d":"IL House District 1","rep":"Aarón Ortíz","w":0.007},{"d":"IL House District 78","rep":"Camille Lilly","w":0.007},{"d":"IL House District 16","rep":"Kevin Olickal","w":0.007},{"d":"IL House District 37","rep":"Patrick Sheehan","w":0.006},{"d":"IL House District 25","rep":"Curtis Tarver","w":0.006},{"d":"IL House District 49","rep":"Maura Hirschauer","w":0.006},{"d":"IL House District 10","rep":"Omar Williams","w":0.006},{"d":"IL House District 6","rep":"Sonya Harper","w":0.005},{"d":"IL House District 19","rep":"Lindsey LaPointe","w":0.005},{"d":"IL House District 9","rep":"Yolonda Morris","w":0.005}],"ss":[{"d":"IL Senate District 15","rep":"Napoleon Harris","w":0.042},{"d":"IL Senate District 18","rep":"Bill Cunningham","w":0.04},{"d":"IL Senate District 26","rep":"Darby Hills","w":0.038},{"d":"IL Senate District 17","rep":"Elgie Sims","w":0.036},{"d":"IL Senate District 14","rep":"Emil Jones","w":0.034},{"d":"IL Senate District 28","rep":"Laura Murphy","w":0.033},{"d":"IL Senate District 19","rep":"Mike Hastings","w":0.029},{"d":"IL Senate District 27","rep":"Mark Walker","w":0.026},{"d":"IL Senate District 29","rep":"Julie Morrison","w":0.025},{"d":"IL Senate District 9","rep":"Laura Fine","w":0.024},{"d":"IL Senate District 41","rep":"John Curran","w":0.022},{"d":"IL Senate District 4","rep":"Kimberly Lightford","w":0.022},{"d":"IL Senate District 22","rep":"Cristina Castro","w":0.022},{"d":"IL Senate District 11","rep":"Mike Porfirio","w":0.021},{"d":"IL Senate District 39","rep":"Don Harmon","w":0.021},{"d":"IL Senate District 8","rep":"Ram Villivalam","w":0.017},{"d":"IL Senate District 16","rep":"Willie Preston","w":0.017},{"d":"IL Senate District 10","rep":"Rob Martwick","w":0.016},{"d":"IL Senate District 1","rep":"Javier Cervantes","w":0.015},{"d":"IL Senate District 40","rep":"Patrick Joyce","w":0.011},{"d":"IL Senate District 5","rep":"Lakesia Collins","w":0.011},{"d":"IL Senate District 13","rep":"Robert Peters","w":0.01},{"d":"IL Senate District 3","rep":"Mattie Hunter","w":0.01},{"d":"IL Senate District 12","rep":"Celina Villanueva","w":0.009},{"d":"IL Senate District 2","rep":"Omar Aquino","w":0.007},{"d":"IL Senate District 20","rep":"Graciela Guzmán","w":0.007},{"d":"IL Senate District 25","rep":"Karina Villa","w":0.006}]},"munis":[{"m":"Chicago","p":[{"n":"Brandon Johnson","r":"Mayor, Chicago, IL"}]}],"slug":"cook"},"17033":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.996}],"sh":[{"d":"IL House District 102","rep":"Adam Niemerg","w":1.0}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"crawford"},"17035":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 102","rep":"Adam Niemerg","w":0.86},{"d":"IL House District 107","rep":"Brad Halbrook","w":0.14}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":0.86},{"d":"IL Senate District 54","rep":"Steve McClure","w":0.14}]},"munis":[],"slug":"cumberland"},"17037":{"county":[],"districts":{"cd":[{"d":"IL-14","rep":"Lauren Underwood","w":0.699},{"d":"IL-16","rep":"Darin LaHood","w":0.166},{"d":"IL-11","rep":"Bill Foster","w":0.135}],"sh":[{"d":"IL House District 74","rep":"Brad Fritts","w":0.323},{"d":"IL House District 89","rep":"Tony McCombie","w":0.281},{"d":"IL House District 70","rep":"Jeff Keicher","w":0.249},{"d":"IL House District 76","rep":"Murri Briel","w":0.12},{"d":"IL House District 75","rep":"Jed Davis","w":0.026}],"ss":[{"d":"IL Senate District 37","rep":"Li Arellano","w":0.323},{"d":"IL Senate District 45","rep":"Andrew Chesney","w":0.281},{"d":"IL Senate District 35","rep":"Dave Syverson","w":0.249},{"d":"IL Senate District 38","rep":"Sue Rezin","w":0.146}]},"munis":[],"slug":"dekalb"},"17039":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 88","rep":"Regan Deering","w":0.521},{"d":"IL House District 87","rep":"Bill Hauter","w":0.479}],"ss":[{"d":"IL Senate District 44","rep":"Sally Turner","w":1.0}]},"munis":[],"slug":"de-witt"},"17041":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 101","rep":"Chris Miller","w":0.887},{"d":"IL House District 102","rep":"Adam Niemerg","w":0.113}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"douglas"},"17043":{"county":[],"districts":{"cd":[{"d":"IL-03","rep":"Delia C. Ramirez","w":0.302},{"d":"IL-06","rep":"Sean Casten","w":0.265},{"d":"IL-11","rep":"Bill Foster","w":0.238},{"d":"IL-08","rep":"Raja Krishnamoorthi","w":0.155},{"d":"IL-04","rep":"Jesús G. \"Chuy\" García","w":0.04}],"sh":[{"d":"IL House District 49","rep":"Maura Hirschauer","w":0.147},{"d":"IL House District 47","rep":"Amy Grant","w":0.142},{"d":"IL House District 48","rep":"Jennifer Sanalitro","w":0.092},{"d":"IL House District 42","rep":"Margaret DeLaRosa","w":0.092},{"d":"IL House District 81","rep":"Anne Stava","w":0.09},{"d":"IL House District 45","rep":"Marti Deuter","w":0.086},{"d":"IL House District 46","rep":"Diane Blair-Sherlock","w":0.084},{"d":"IL House District 82","rep":"Nicole La Ha","w":0.079},{"d":"IL House District 41","rep":"Janet Yang Rohr","w":0.066},{"d":"IL House District 77","rep":"Norma Hernandez","w":0.034},{"d":"IL House District 84","rep":"Stephanie Kifowit","w":0.033},{"d":"IL House District 7","rep":"Chris Welch","w":0.017},{"d":"IL House District 65","rep":"Dan Ugaste","w":0.013},{"d":"IL House District 50","rep":"Barbara Hernandez","w":0.009},{"d":"IL House District 56","rep":"Michelle Mussman","w":0.009},{"d":"IL House District 85","rep":"Dee Avelar","w":0.006}],"ss":[{"d":"IL Senate District 24","rep":"Seth Lewis","w":0.234},{"d":"IL Senate District 23","rep":"Suzy Glowiak Hilton","w":0.17},{"d":"IL Senate District 41","rep":"John Curran","w":0.169},{"d":"IL Senate District 21","rep":"Laura Ellman","w":0.158},{"d":"IL Senate District 25","rep":"Karina Villa","w":0.156},{"d":"IL Senate District 39","rep":"Don Harmon","w":0.034},{"d":"IL Senate District 42","rep":"Linda Holmes","w":0.033},{"d":"IL Senate District 4","rep":"Kimberly Lightford","w":0.017},{"d":"IL Senate District 33","rep":"Don DeWitte","w":0.013},{"d":"IL Senate District 28","rep":"Laura Murphy","w":0.009},{"d":"IL Senate District 43","rep":"Rachel Ventura","w":0.006}]},"munis":[{"m":"Naperville","p":[{"n":"Scott Wehrli","r":"Mayor, Naperville, IL"}]}],"slug":"dupage"},"17045":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 102","rep":"Adam Niemerg","w":1.0}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"edgar"},"17047":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":1.0}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":1.0}]},"munis":[],"slug":"edwards"},"17049":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 107","rep":"Brad Halbrook","w":0.589},{"d":"IL House District 110","rep":"Blaine Wilhour","w":0.303},{"d":"IL House District 102","rep":"Adam Niemerg","w":0.108}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":0.589},{"d":"IL Senate District 55","rep":"Jason Plummer","w":0.303},{"d":"IL Senate District 51","rep":"Chapin Rose","w":0.108}]},"munis":[],"slug":"effingham"},"17051":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 110","rep":"Blaine Wilhour","w":1.0}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":1.0}]},"munis":[],"slug":"fayette"},"17053":{"county":[],"districts":{"cd":[{"d":"IL-02","rep":"Robin L. Kelly","w":0.901},{"d":"IL-16","rep":"Darin LaHood","w":0.099}],"sh":[{"d":"IL House District 106","rep":"Jason Bunting","w":0.81},{"d":"IL House District 101","rep":"Chris Miller","w":0.19}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.81},{"d":"IL Senate District 51","rep":"Chapin Rose","w":0.19}]},"munis":[],"slug":"ford"},"17055":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":0.549},{"d":"IL House District 117","rep":"Patrick Windhorst","w":0.451}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.549}]},"munis":[],"slug":"franklin"},"17057":{"county":[],"districts":{"cd":[{"d":"IL-17","rep":"Eric Sorensen","w":0.573},{"d":"IL-15","rep":"Mary E. Miller","w":0.427}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":0.958},{"d":"IL House District 93","rep":"Travis Weaver","w":0.042}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":1.0}]},"munis":[],"slug":"fulton"},"17059":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":0.999}],"ss":[]},"munis":[],"slug":"gallatin"},"17061":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":1.0}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"greene"},"17063":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.999}],"sh":[{"d":"IL House District 106","rep":"Jason Bunting","w":0.71},{"d":"IL House District 75","rep":"Jed Davis","w":0.248},{"d":"IL House District 79","rep":"Jackie Haas","w":0.041}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.71},{"d":"IL Senate District 38","rep":"Sue Rezin","w":0.248},{"d":"IL Senate District 40","rep":"Patrick Joyce","w":0.041}]},"munis":[],"slug":"grundy"},"17065":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":0.624},{"d":"IL House District 117","rep":"Patrick Windhorst","w":0.376}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.624}]},"munis":[],"slug":"hamilton"},"17067":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":1.0}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":1.0}]},"munis":[],"slug":"hancock"},"17069":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":0.999}],"ss":[]},"munis":[],"slug":"hardin"},"17071":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":1.0}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":1.0}]},"munis":[],"slug":"henderson"},"17073":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.854},{"d":"IL-17","rep":"Eric Sorensen","w":0.146}],"sh":[{"d":"IL House District 93","rep":"Travis Weaver","w":0.578},{"d":"IL House District 73","rep":"Ryan Spain","w":0.256},{"d":"IL House District 71","rep":"Dan Swanson","w":0.166}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.578},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.256},{"d":"IL Senate District 36","rep":"Mike Halpin","w":0.166}]},"munis":[],"slug":"henry"},"17075":{"county":[],"districts":{"cd":[{"d":"IL-02","rep":"Robin L. Kelly","w":1.0}],"sh":[{"d":"IL House District 106","rep":"Jason Bunting","w":1.0}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":1.0}]},"munis":[],"slug":"iroquois"},"17077":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 115","rep":"David Friess","w":0.582},{"d":"IL House District 118","rep":"Paul Jacobs","w":0.417}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.582}]},"munis":[],"slug":"jackson"},"17079":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 102","rep":"Adam Niemerg","w":1.0}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"jasper"},"17081":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":1.0}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":1.0}]},"munis":[],"slug":"jefferson"},"17083":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":1.0}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"jersey"},"17085":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.999}],"sh":[{"d":"IL House District 89","rep":"Tony McCombie","w":1.0}],"ss":[{"d":"IL Senate District 45","rep":"Andrew Chesney","w":1.0}]},"munis":[],"slug":"jo-daviess"},"17087":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":1.0}],"ss":[]},"munis":[],"slug":"johnson"},"17089":{"county":[],"districts":{"cd":[{"d":"IL-11","rep":"Bill Foster","w":0.584},{"d":"IL-08","rep":"Raja Krishnamoorthi","w":0.261},{"d":"IL-14","rep":"Lauren Underwood","w":0.156}],"sh":[{"d":"IL House District 70","rep":"Jeff Keicher","w":0.494},{"d":"IL House District 65","rep":"Dan Ugaste","w":0.231},{"d":"IL House District 83","rep":"Matt Hanson","w":0.083},{"d":"IL House District 66","rep":"Suzanne Ness","w":0.077},{"d":"IL House District 50","rep":"Barbara Hernandez","w":0.057},{"d":"IL House District 43","rep":"Anna Moeller","w":0.028},{"d":"IL House District 49","rep":"Maura Hirschauer","w":0.019},{"d":"IL House District 84","rep":"Stephanie Kifowit","w":0.009}],"ss":[{"d":"IL Senate District 35","rep":"Dave Syverson","w":0.494},{"d":"IL Senate District 33","rep":"Don DeWitte","w":0.308},{"d":"IL Senate District 42","rep":"Linda Holmes","w":0.092},{"d":"IL Senate District 25","rep":"Karina Villa","w":0.075},{"d":"IL Senate District 22","rep":"Cristina Castro","w":0.028}]},"munis":[{"m":"Aurora","p":[{"n":"Richard C. Irvin","r":"Mayor, Aurora, IL"}]},{"m":"Elgin","p":[{"n":"Dave Kaptain","r":"Mayor, Elgin, IL"}]}],"slug":"kane"},"17091":{"county":[],"districts":{"cd":[{"d":"IL-02","rep":"Robin L. Kelly","w":0.858},{"d":"IL-01","rep":"Jonathan L. Jackson","w":0.142}],"sh":[{"d":"IL House District 79","rep":"Jackie Haas","w":0.518},{"d":"IL House District 34","rep":"Nick Smith","w":0.331},{"d":"IL House District 29","rep":"Thaddeus Jones","w":0.15}],"ss":[{"d":"IL Senate District 40","rep":"Patrick Joyce","w":0.518},{"d":"IL Senate District 17","rep":"Elgie Sims","w":0.331},{"d":"IL Senate District 15","rep":"Napoleon Harris","w":0.15}]},"munis":[],"slug":"kankakee"},"17093":{"county":[],"districts":{"cd":[{"d":"IL-14","rep":"Lauren Underwood","w":0.999}],"sh":[{"d":"IL House District 75","rep":"Jed Davis","w":0.861},{"d":"IL House District 97","rep":"Harry Benton","w":0.064},{"d":"IL House District 83","rep":"Matt Hanson","w":0.051},{"d":"IL House District 84","rep":"Stephanie Kifowit","w":0.025}],"ss":[{"d":"IL Senate District 38","rep":"Sue Rezin","w":0.861},{"d":"IL Senate District 42","rep":"Linda Holmes","w":0.076},{"d":"IL Senate District 49","rep":"Meg Loughran Cappel","w":0.064}]},"munis":[],"slug":"kendall"},"17095":{"county":[],"districts":{"cd":[{"d":"IL-17","rep":"Eric Sorensen","w":1.0}],"sh":[{"d":"IL House District 93","rep":"Travis Weaver","w":0.598},{"d":"IL House District 71","rep":"Dan Swanson","w":0.201},{"d":"IL House District 94","rep":"Norine Hammond","w":0.201}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.799},{"d":"IL Senate District 36","rep":"Mike Halpin","w":0.201}]},"munis":[],"slug":"knox"},"17097":{"county":[],"districts":{"cd":[{"d":"IL-10","rep":"Bradley Scott Schneider","w":0.267},{"d":"IL-09","rep":"Janice D. Schakowsky","w":0.03},{"d":"IL-05","rep":"Mike Quigley","w":0.029},{"d":"IL-11","rep":"Bill Foster","w":0.017}],"sh":[{"d":"IL House District 61","rep":"Joyce Mason","w":0.068},{"d":"IL House District 52","rep":"Marty McLaughlin","w":0.059},{"d":"IL House District 64","rep":"Tom Weber","w":0.052},{"d":"IL House District 58","rep":"Bob Morgan","w":0.04},{"d":"IL House District 62","rep":"Laura Faver Dias","w":0.039},{"d":"IL House District 51","rep":"Nabeela Syed","w":0.03},{"d":"IL House District 59","rep":"Dan Didech","w":0.027},{"d":"IL House District 60","rep":"Rita Mayfield","w":0.025}],"ss":[{"d":"IL Senate District 31","rep":"Mary Edly-Allen","w":0.107},{"d":"IL Senate District 26","rep":"Darby Hills","w":0.089},{"d":"IL Senate District 32","rep":"Craig Wilcox","w":0.052},{"d":"IL Senate District 30","rep":"Adriane Johnson","w":0.052},{"d":"IL Senate District 29","rep":"Julie Morrison","w":0.043}]},"munis":[{"m":"Highland Park","p":[{"n":"Nancy Rotering","r":"Mayor, Highland Park, IL"}]},{"m":"Lake Forest","p":[{"n":"George A. Pandaleon","r":"Mayor, Lake Forest, IL"}]}],"slug":"lake"},"17099":{"county":[],"districts":{"cd":[{"d":"IL-14","rep":"Lauren Underwood","w":0.614},{"d":"IL-16","rep":"Darin LaHood","w":0.386}],"sh":[{"d":"IL House District 76","rep":"Murri Briel","w":0.298},{"d":"IL House District 74","rep":"Brad Fritts","w":0.282},{"d":"IL House District 106","rep":"Jason Bunting","w":0.201},{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.112},{"d":"IL House District 75","rep":"Jed Davis","w":0.106}],"ss":[{"d":"IL Senate District 38","rep":"Sue Rezin","w":0.404},{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.313},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.282}]},"munis":[{"m":"Mendota","p":[{"n":"David Boelk","r":"Mayor, Mendota, IL"}]}],"slug":"lasalle"},"17101":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.995},{"d":"IN-08","rep":"Mark B. Messmer","w":0.005}],"sh":[{"d":"IL House District 102","rep":"Adam Niemerg","w":1.0}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":1.0}]},"munis":[],"slug":"lawrence"},"17103":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":1.0}],"sh":[{"d":"IL House District 74","rep":"Brad Fritts","w":0.803},{"d":"IL House District 73","rep":"Ryan Spain","w":0.197}],"ss":[{"d":"IL Senate District 37","rep":"Li Arellano","w":1.0}]},"munis":[],"slug":"lee"},"17105":{"county":[],"districts":{"cd":[{"d":"IL-02","rep":"Robin L. Kelly","w":0.596},{"d":"IL-16","rep":"Darin LaHood","w":0.404}],"sh":[{"d":"IL House District 106","rep":"Jason Bunting","w":0.663},{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.315},{"d":"IL House District 88","rep":"Regan Deering","w":0.022}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.978},{"d":"IL Senate District 44","rep":"Sally Turner","w":0.022}]},"munis":[],"slug":"livingston"},"17107":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 87","rep":"Bill Hauter","w":1.0}],"ss":[{"d":"IL Senate District 44","rep":"Sally Turner","w":1.0}]},"munis":[],"slug":"logan"},"17109":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.867},{"d":"IL-17","rep":"Eric Sorensen","w":0.133}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":0.689},{"d":"IL House District 71","rep":"Dan Swanson","w":0.311}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.689},{"d":"IL Senate District 36","rep":"Mike Halpin","w":0.311}]},"munis":[],"slug":"mcdonough"},"17111":{"county":[],"districts":{"cd":[{"d":"IL-11","rep":"Bill Foster","w":0.485},{"d":"IL-10","rep":"Bradley Scott Schneider","w":0.219},{"d":"IL-16","rep":"Darin LaHood","w":0.217},{"d":"IL-09","rep":"Janice D. Schakowsky","w":0.079}],"sh":[{"d":"IL House District 69","rep":"Joe Sosnowski","w":0.612},{"d":"IL House District 63","rep":"Steve Reick","w":0.207},{"d":"IL House District 64","rep":"Tom Weber","w":0.118},{"d":"IL House District 52","rep":"Marty McLaughlin","w":0.027},{"d":"IL House District 66","rep":"Suzanne Ness","w":0.026},{"d":"IL House District 70","rep":"Jeff Keicher","w":0.01}],"ss":[{"d":"IL Senate District 35","rep":"Dave Syverson","w":0.621},{"d":"IL Senate District 32","rep":"Craig Wilcox","w":0.325},{"d":"IL Senate District 26","rep":"Darby Hills","w":0.027},{"d":"IL Senate District 33","rep":"Don DeWitte","w":0.026}]},"munis":[],"slug":"mchenry"},"17113":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.853},{"d":"IL-17","rep":"Eric Sorensen","w":0.146}],"sh":[{"d":"IL House District 88","rep":"Regan Deering","w":0.572},{"d":"IL House District 87","rep":"Bill Hauter","w":0.207},{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.118},{"d":"IL House District 91","rep":"Sharon Chung","w":0.061},{"d":"IL House District 106","rep":"Jason Bunting","w":0.042}],"ss":[{"d":"IL Senate District 44","rep":"Sally Turner","w":0.78},{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.159},{"d":"IL Senate District 46","rep":"Dave Koehler","w":0.061}]},"munis":[{"m":"Bloomington","p":[{"n":"Mboka Mwilambwe","r":"Mayor, Bloomington, IL"}]}],"slug":"mclean"},"17115":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.662},{"d":"IL-13","rep":"Nikki Budzinski","w":0.338}],"sh":[{"d":"IL House District 88","rep":"Regan Deering","w":0.331},{"d":"IL House District 107","rep":"Brad Halbrook","w":0.264},{"d":"IL House District 87","rep":"Bill Hauter","w":0.251},{"d":"IL House District 96","rep":"Sue Scherer","w":0.116},{"d":"IL House District 95","rep":"Mike Coffey","w":0.037}],"ss":[{"d":"IL Senate District 44","rep":"Sally Turner","w":0.582},{"d":"IL Senate District 54","rep":"Steve McClure","w":0.264},{"d":"IL Senate District 48","rep":"Doris Turner","w":0.153}]},"munis":[{"m":"Decatur","p":[{"n":"Julie Moore Wolfe","r":"Mayor, Decatur, IL"}]}],"slug":"macon"},"17117":{"county":[],"districts":{"cd":[{"d":"IL-13","rep":"Nikki Budzinski","w":0.999}],"sh":[{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":0.5},{"d":"IL House District 108","rep":"Wayne Rosenthal","w":0.499}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":0.5},{"d":"IL Senate District 54","rep":"Steve McClure","w":0.499}]},"munis":[],"slug":"macoupin"},"17119":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.626},{"d":"IL-13","rep":"Nikki Budzinski","w":0.374}],"sh":[{"d":"IL House District 109","rep":"Charlie Meier","w":0.558},{"d":"IL House District 111","rep":"Amy Elik","w":0.182},{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":0.154},{"d":"IL House District 112","rep":"Katie Stuart","w":0.1},{"d":"IL House District 113","rep":"Jay Hoffman","w":0.006}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":0.558},{"d":"IL Senate District 56","rep":"Erica Harriss","w":0.282},{"d":"IL Senate District 50","rep":"Jil Tracy","w":0.154},{"d":"IL Senate District 57","rep":"Christopher Belt","w":0.006}]},"munis":[],"slug":"madison"},"17121":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 110","rep":"Blaine Wilhour","w":0.968},{"d":"IL House District 116","rep":"Dave Severin","w":0.032}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":0.968},{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.032}]},"munis":[],"slug":"marion"},"17123":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":1.0}],"sh":[{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.819},{"d":"IL House District 73","rep":"Ryan Spain","w":0.181}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.819},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.181}]},"munis":[],"slug":"marshall"},"17125":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":0.999}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.999}]},"munis":[],"slug":"mason"},"17127":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":1.0}],"ss":[]},"munis":[],"slug":"massac"},"17129":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 108","rep":"Wayne Rosenthal","w":1.0}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":1.0}]},"munis":[],"slug":"menard"},"17131":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.618},{"d":"IL-17","rep":"Eric Sorensen","w":0.382}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":0.747},{"d":"IL House District 71","rep":"Dan Swanson","w":0.253}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.747},{"d":"IL Senate District 36","rep":"Mike Halpin","w":0.253}]},"munis":[],"slug":"mercer"},"17133":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 115","rep":"David Friess","w":0.999}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.999}]},"munis":[],"slug":"monroe"},"17135":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 108","rep":"Wayne Rosenthal","w":0.736},{"d":"IL House District 107","rep":"Brad Halbrook","w":0.159},{"d":"IL House District 110","rep":"Blaine Wilhour","w":0.106}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":0.894},{"d":"IL Senate District 55","rep":"Jason Plummer","w":0.106}]},"munis":[{"m":"Litchfield","p":[{"n":"Steve Dougherty","r":"Mayor, Litchfield, IL"}]}],"slug":"montgomery"},"17137":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 99","rep":"Kyle Moore","w":0.59},{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":0.41}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"morgan"},"17139":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 107","rep":"Brad Halbrook","w":0.969},{"d":"IL House District 101","rep":"Chris Miller","w":0.031}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":0.969},{"d":"IL Senate District 51","rep":"Chapin Rose","w":0.031}]},"munis":[],"slug":"moultrie"},"17141":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":1.0}],"sh":[{"d":"IL House District 89","rep":"Tony McCombie","w":0.743},{"d":"IL House District 74","rep":"Brad Fritts","w":0.257}],"ss":[{"d":"IL Senate District 45","rep":"Andrew Chesney","w":0.743},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.257}]},"munis":[],"slug":"ogle"},"17143":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.596},{"d":"IL-17","rep":"Eric Sorensen","w":0.404}],"sh":[{"d":"IL House District 93","rep":"Travis Weaver","w":0.646},{"d":"IL House District 73","rep":"Ryan Spain","w":0.227},{"d":"IL House District 92","rep":"Jehan Gordon-Booth","w":0.076},{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.02},{"d":"IL House District 91","rep":"Sharon Chung","w":0.016},{"d":"IL House District 94","rep":"Norine Hammond","w":0.014}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.66},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.227},{"d":"IL Senate District 46","rep":"Dave Koehler","w":0.092},{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.02}]},"munis":[{"m":"Peoria","p":[{"n":"Rita Ali","r":"Mayor, Peoria, IL"}]}],"slug":"peoria"},"17145":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 115","rep":"David Friess","w":1.0}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":1.0}]},"munis":[],"slug":"perry"},"17147":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.555},{"d":"IL-13","rep":"Nikki Budzinski","w":0.445}],"sh":[{"d":"IL House District 88","rep":"Regan Deering","w":1.0}],"ss":[{"d":"IL Senate District 44","rep":"Sally Turner","w":1.0}]},"munis":[],"slug":"piatt"},"17149":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":1.0}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"pike"},"17151":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":1.0}],"ss":[]},"munis":[],"slug":"pope"},"17153":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.997}],"sh":[{"d":"IL House District 118","rep":"Paul Jacobs","w":0.999}],"ss":[]},"munis":[],"slug":"pulaski"},"17155":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.575},{"d":"IL-14","rep":"Lauren Underwood","w":0.425}],"sh":[{"d":"IL House District 105","rep":"Dennis Tipsword","w":1.0}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":1.0}]},"munis":[],"slug":"putnam"},"17157":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.999}],"sh":[{"d":"IL House District 115","rep":"David Friess","w":1.0}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":1.0}]},"munis":[],"slug":"randolph"},"17159":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 110","rep":"Blaine Wilhour","w":1.0}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":1.0}]},"munis":[],"slug":"richland"},"17161":{"county":[],"districts":{"cd":[{"d":"IL-17","rep":"Eric Sorensen","w":0.999}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":0.411},{"d":"IL House District 73","rep":"Ryan Spain","w":0.254},{"d":"IL House District 72","rep":"Gregg Johnson","w":0.177},{"d":"IL House District 71","rep":"Dan Swanson","w":0.158}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.411},{"d":"IL Senate District 36","rep":"Mike Halpin","w":0.335},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.254}]},"munis":[],"slug":"rock-island"},"17163":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.791},{"d":"IL-13","rep":"Nikki Budzinski","w":0.209}],"sh":[{"d":"IL House District 114","rep":"Kevin Schmidt","w":0.641},{"d":"IL House District 113","rep":"Jay Hoffman","w":0.126},{"d":"IL House District 115","rep":"David Friess","w":0.1},{"d":"IL House District 109","rep":"Charlie Meier","w":0.08},{"d":"IL House District 112","rep":"Katie Stuart","w":0.053}],"ss":[{"d":"IL Senate District 57","rep":"Christopher Belt","w":0.767},{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.1},{"d":"IL Senate District 55","rep":"Jason Plummer","w":0.08},{"d":"IL Senate District 56","rep":"Erica Harriss","w":0.053}]},"munis":[],"slug":"st-clair"},"17165":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":1.0}],"ss":[]},"munis":[],"slug":"saline"},"17167":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.512},{"d":"IL-13","rep":"Nikki Budzinski","w":0.488}],"sh":[{"d":"IL House District 108","rep":"Wayne Rosenthal","w":0.62},{"d":"IL House District 95","rep":"Mike Coffey","w":0.166},{"d":"IL House District 87","rep":"Bill Hauter","w":0.133},{"d":"IL House District 96","rep":"Sue Scherer","w":0.081}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":0.62},{"d":"IL Senate District 48","rep":"Doris Turner","w":0.247},{"d":"IL Senate District 44","rep":"Sally Turner","w":0.133}]},"munis":[{"m":"Springfield","p":[{"n":"Misty Buscher","r":"Mayor, Springfield, IL"}]}],"slug":"sangamon"},"17169":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 94","rep":"Norine Hammond","w":0.548},{"d":"IL House District 99","rep":"Kyle Moore","w":0.452}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.548},{"d":"IL Senate District 50","rep":"Jil Tracy","w":0.452}]},"munis":[],"slug":"schuyler"},"17171":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 100","rep":"C.D. Davidsmeyer","w":1.0}],"ss":[{"d":"IL Senate District 50","rep":"Jil Tracy","w":1.0}]},"munis":[],"slug":"scott"},"17173":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":1.0}],"sh":[{"d":"IL House District 107","rep":"Brad Halbrook","w":1.0}],"ss":[{"d":"IL Senate District 54","rep":"Steve McClure","w":1.0}]},"munis":[],"slug":"shelby"},"17175":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":1.0}],"sh":[{"d":"IL House District 93","rep":"Travis Weaver","w":0.625},{"d":"IL House District 73","rep":"Ryan Spain","w":0.375}],"ss":[{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.625},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.375}]},"munis":[],"slug":"stark"},"17177":{"county":[],"districts":{"cd":[{"d":"IL-17","rep":"Eric Sorensen","w":0.538},{"d":"IL-16","rep":"Darin LaHood","w":0.461}],"sh":[{"d":"IL House District 89","rep":"Tony McCombie","w":0.544},{"d":"IL House District 90","rep":"John Cabello","w":0.456}],"ss":[{"d":"IL Senate District 45","rep":"Andrew Chesney","w":1.0}]},"munis":[],"slug":"stephenson"},"17179":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.538},{"d":"IL-17","rep":"Eric Sorensen","w":0.462}],"sh":[{"d":"IL House District 87","rep":"Bill Hauter","w":0.59},{"d":"IL House District 93","rep":"Travis Weaver","w":0.166},{"d":"IL House District 94","rep":"Norine Hammond","w":0.099},{"d":"IL House District 91","rep":"Sharon Chung","w":0.088},{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.058}],"ss":[{"d":"IL Senate District 44","rep":"Sally Turner","w":0.59},{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.265},{"d":"IL Senate District 46","rep":"Dave Koehler","w":0.088},{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.058}]},"munis":[{"m":"Pekin","p":[{"n":"Q106024909","r":"Mayor, Pekin, IL"}]}],"slug":"tazewell"},"17181":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 118","rep":"Paul Jacobs","w":1.0}],"ss":[]},"munis":[],"slug":"union"},"17183":{"county":[],"districts":{"cd":[{"d":"IL-02","rep":"Robin L. Kelly","w":0.713},{"d":"IL-15","rep":"Mary E. Miller","w":0.287}],"sh":[{"d":"IL House District 101","rep":"Chris Miller","w":0.371},{"d":"IL House District 102","rep":"Adam Niemerg","w":0.322},{"d":"IL House District 104","rep":"Brandun Schweizer","w":0.307}],"ss":[{"d":"IL Senate District 51","rep":"Chapin Rose","w":0.693},{"d":"IL Senate District 52","rep":"Paul Faraci","w":0.307}]},"munis":[],"slug":"vermilion"},"17185":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.995},{"d":"IN-08","rep":"Mark B. Messmer","w":0.005}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":0.999}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.999}]},"munis":[],"slug":"wabash"},"17187":{"county":[],"districts":{"cd":[{"d":"IL-15","rep":"Mary E. Miller","w":0.734},{"d":"IL-17","rep":"Eric Sorensen","w":0.266}],"sh":[{"d":"IL House District 71","rep":"Dan Swanson","w":0.663},{"d":"IL House District 94","rep":"Norine Hammond","w":0.337}],"ss":[{"d":"IL Senate District 36","rep":"Mike Halpin","w":0.663},{"d":"IL Senate District 47","rep":"Neil Anderson","w":0.337}]},"munis":[],"slug":"warren"},"17189":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 109","rep":"Charlie Meier","w":0.676},{"d":"IL House District 115","rep":"David Friess","w":0.304},{"d":"IL House District 116","rep":"Dave Severin","w":0.02}],"ss":[{"d":"IL Senate District 55","rep":"Jason Plummer","w":0.676},{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.324}]},"munis":[],"slug":"washington"},"17191":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":1.0}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":1.0}]},"munis":[],"slug":"wayne"},"17193":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":0.994},{"d":"IN-08","rep":"Mark B. Messmer","w":0.006}],"sh":[{"d":"IL House District 116","rep":"Dave Severin","w":0.546},{"d":"IL House District 117","rep":"Patrick Windhorst","w":0.453}],"ss":[{"d":"IL Senate District 58","rep":"Terri Bryant","w":0.546}]},"munis":[],"slug":"white"},"17195":{"county":[],"districts":{"cd":[{"d":"IL-17","rep":"Eric Sorensen","w":1.0}],"sh":[{"d":"IL House District 73","rep":"Ryan Spain","w":0.673},{"d":"IL House District 74","rep":"Brad Fritts","w":0.327}],"ss":[{"d":"IL Senate District 37","rep":"Li Arellano","w":1.0}]},"munis":[],"slug":"whiteside"},"17197":{"county":[],"districts":{"cd":[{"d":"IL-01","rep":"Jonathan L. Jackson","w":0.512},{"d":"IL-14","rep":"Lauren Underwood","w":0.251},{"d":"IL-02","rep":"Robin L. Kelly","w":0.2},{"d":"IL-11","rep":"Bill Foster","w":0.037}],"sh":[{"d":"IL House District 80","rep":"Anthony DeLuca","w":0.231},{"d":"IL House District 86","rep":"Larry Walsh","w":0.177},{"d":"IL House District 79","rep":"Jackie Haas","w":0.144},{"d":"IL House District 29","rep":"Thaddeus Jones","w":0.119},{"d":"IL House District 37","rep":"Patrick Sheehan","w":0.08},{"d":"IL House District 85","rep":"Dee Avelar","w":0.066},{"d":"IL House District 97","rep":"Harry Benton","w":0.054},{"d":"IL House District 98","rep":"Natalie Manley","w":0.045},{"d":"IL House District 34","rep":"Nick Smith","w":0.035},{"d":"IL House District 38","rep":"Debbie Meyers-Martin","w":0.024},{"d":"IL House District 41","rep":"Janet Yang Rohr","w":0.012},{"d":"IL House District 84","rep":"Stephanie Kifowit","w":0.007}],"ss":[{"d":"IL Senate District 40","rep":"Patrick Joyce","w":0.375},{"d":"IL Senate District 43","rep":"Rachel Ventura","w":0.243},{"d":"IL Senate District 15","rep":"Napoleon Harris","w":0.119},{"d":"IL Senate District 19","rep":"Mike Hastings","w":0.104},{"d":"IL Senate District 49","rep":"Meg Loughran Cappel","w":0.1},{"d":"IL Senate District 17","rep":"Elgie Sims","w":0.035},{"d":"IL Senate District 21","rep":"Laura Ellman","w":0.012},{"d":"IL Senate District 42","rep":"Linda Holmes","w":0.007}]},"munis":[{"m":"Joliet","p":[{"n":"Bob O’Dekirk","r":"Mayor, Joliet, IL"}]}],"slug":"will"},"17199":{"county":[],"districts":{"cd":[{"d":"IL-12","rep":"Mike Bost","w":1.0}],"sh":[{"d":"IL House District 117","rep":"Patrick Windhorst","w":0.614},{"d":"IL House District 118","rep":"Paul Jacobs","w":0.386}],"ss":[]},"munis":[],"slug":"williamson"},"17201":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":0.755},{"d":"IL-17","rep":"Eric Sorensen","w":0.245}],"sh":[{"d":"IL House District 90","rep":"John Cabello","w":0.456},{"d":"IL House District 89","rep":"Tony McCombie","w":0.301},{"d":"IL House District 67","rep":"Maurice West","w":0.168},{"d":"IL House District 68","rep":"Dave Vella","w":0.06},{"d":"IL House District 69","rep":"Joe Sosnowski","w":0.015}],"ss":[{"d":"IL Senate District 45","rep":"Andrew Chesney","w":0.757},{"d":"IL Senate District 34","rep":"Steve Stadelman","w":0.228},{"d":"IL Senate District 35","rep":"Dave Syverson","w":0.015}]},"munis":[{"m":"Loves Park","p":[{"n":"Greg Jury","r":"Mayor, Loves Park, IL"}]},{"m":"Rockford","p":[{"n":"Thomas McNamara","r":"Mayor, Rockford, IL"}]}],"slug":"winnebago"},"17203":{"county":[],"districts":{"cd":[{"d":"IL-16","rep":"Darin LaHood","w":1.0}],"sh":[{"d":"IL House District 105","rep":"Dennis Tipsword","w":0.708},{"d":"IL House District 91","rep":"Sharon Chung","w":0.219},{"d":"IL House District 73","rep":"Ryan Spain","w":0.06},{"d":"IL House District 87","rep":"Bill Hauter","w":0.013}],"ss":[{"d":"IL Senate District 53","rep":"Chris Balkema","w":0.708},{"d":"IL Senate District 46","rep":"Dave Koehler","w":0.219},{"d":"IL Senate District 37","rep":"Li Arellano","w":0.06},{"d":"IL Senate District 44","rep":"Sally Turner","w":0.013}]},"munis":[],"slug":"woodford"},"18001":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 79","rep":"Matt Lehman","w":1.0}],"ss":[{"d":"IN Senate District 19","rep":"Travis Holdman","w":1.0}]},"munis":[],"slug":"adams"},"18003":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 85","rep":"Dave Heine","w":0.615},{"d":"IN House District 81","rep":"Martin Carbaugh","w":0.199},{"d":"IN House District 83","rep":"Chris Judy","w":0.059},{"d":"IN House District 84","rep":"Bob Morris","w":0.049},{"d":"IN House District 80","rep":"Phil GiaQuinta","w":0.04},{"d":"IN House District 82","rep":"Kyle Miller","w":0.037}],"ss":[{"d":"IN Senate District 14","rep":"Tyler Johnson","w":0.528},{"d":"IN Senate District 16","rep":"Justin Busch","w":0.217},{"d":"IN Senate District 19","rep":"Travis Holdman","w":0.133},{"d":"IN Senate District 15","rep":"Liz Brown","w":0.123}]},"munis":[{"m":"Fort Wayne","p":[{"n":"Tom Henry","r":"Mayor, Fort Wayne, IN"}]}],"slug":"allen"},"18005":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":0.73},{"d":"IN-09","rep":"Erin Houchin","w":0.27}],"sh":[{"d":"IN House District 59","rep":"Ryan Lauer","w":0.541},{"d":"IN House District 73","rep":"Jenny Meltzer","w":0.409},{"d":"IN House District 69","rep":"Jim Lucas","w":0.05}],"ss":[{"d":"IN Senate District 41","rep":"Greg Walker","w":1.0}]},"munis":[],"slug":"bartholomew"},"18007":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 13","rep":"Matt Commons","w":1.0}],"ss":[{"d":"IN Senate District 6","rep":"Rick Niemeyer","w":1.0}]},"munis":[],"slug":"benton"},"18009":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 33","rep":"J.D. Prescott","w":1.0}],"ss":[{"d":"IN Senate District 19","rep":"Travis Holdman","w":1.0}]},"munis":[],"slug":"blackford"},"18011":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 41","rep":"Mark Genda","w":0.431},{"d":"IN House District 25","rep":"Becky Cash","w":0.231},{"d":"IN House District 28","rep":"Jeff Thompson","w":0.17},{"d":"IN House District 24","rep":"Hunter Smith","w":0.168}],"ss":[{"d":"IN Senate District 7","rep":"Brian Buchanan","w":0.948},{"d":"IN Senate District 29","rep":"J.D. Ford","w":0.052}]},"munis":[],"slug":"boone"},"18013":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 62","rep":"Dave Hall","w":1.0}],"ss":[{"d":"IN Senate District 44","rep":"Eric Koch","w":1.0}]},"munis":[],"slug":"brown"},"18015":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 38","rep":"Heath VanNatter","w":1.0}],"ss":[{"d":"IN Senate District 22","rep":"Ron Alting","w":1.0}]},"munis":[],"slug":"carroll"},"18017":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":0.574},{"d":"IN-04","rep":"James R. Baird","w":0.426}],"sh":[{"d":"IN House District 23","rep":"Ethan Manning","w":0.841},{"d":"IN House District 38","rep":"Heath VanNatter","w":0.159}],"ss":[{"d":"IN Senate District 18","rep":"Stacey Donato","w":1.0}]},"munis":[],"slug":"cass"},"18019":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.998}],"sh":[{"d":"IN House District 66","rep":"Zach Payne","w":0.725},{"d":"IN House District 70","rep":"Karen Engleman","w":0.175},{"d":"IN House District 71","rep":"Wendy Dant Chesser","w":0.099}],"ss":[{"d":"IN Senate District 45","rep":"Chris Garten","w":0.999}]},"munis":[],"slug":"clark"},"18021":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 46","rep":"Bob Heaton","w":0.6},{"d":"IN House District 42","rep":"Tim Yocum","w":0.4}],"ss":[{"d":"IN Senate District 38","rep":"Greg Goode","w":1.0}]},"munis":[],"slug":"clay"},"18023":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 41","rep":"Mark Genda","w":0.646},{"d":"IN House District 38","rep":"Heath VanNatter","w":0.354}],"ss":[{"d":"IN Senate District 7","rep":"Brian Buchanan","w":1.0}]},"munis":[],"slug":"clinton"},"18025":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.992},{"d":"IN-09","rep":"Erin Houchin","w":0.007}],"sh":[{"d":"IN House District 74","rep":"Steve Bartels","w":0.999}],"ss":[{"d":"IN Senate District 48","rep":"Daryl Schmitt","w":0.999}]},"munis":[],"slug":"crawford"},"18027":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 63","rep":"Shane Lindauer","w":0.834},{"d":"IN House District 45","rep":"Bruce Borders","w":0.166}],"ss":[{"d":"IN Senate District 39","rep":"Eric Bassler","w":1.0}]},"munis":[],"slug":"daviess"},"18029":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 68","rep":"Garrett Bascom","w":1.0}],"ss":[{"d":"IN Senate District 43","rep":"Randy Maxwell","w":1.0}]},"munis":[],"slug":"dearborn"},"18031":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 73","rep":"Jenny Meltzer","w":0.548},{"d":"IN House District 55","rep":"Lindsay Patterson","w":0.256},{"d":"IN House District 67","rep":"Alex Zimmerman","w":0.196}],"ss":[{"d":"IN Senate District 42","rep":"Jean Leising","w":1.0}]},"munis":[],"slug":"decatur"},"18033":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 52","rep":"Ben Smaltz","w":1.0}],"ss":[{"d":"IN Senate District 14","rep":"Tyler Johnson","w":0.705},{"d":"IN Senate District 13","rep":"Sue Glick","w":0.295}]},"munis":[],"slug":"dekalb"},"18035":{"county":[],"districts":{"cd":[{"d":"IN-05","rep":"Victoria Spartz","w":1.0}],"sh":[{"d":"IN House District 35","rep":"Elizabeth Rowray","w":0.506},{"d":"IN House District 33","rep":"J.D. Prescott","w":0.39},{"d":"IN House District 34","rep":"Sue Errington","w":0.103}],"ss":[{"d":"IN Senate District 26","rep":"Scott Alexander","w":1.0}]},"munis":[],"slug":"delaware"},"18037":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 63","rep":"Shane Lindauer","w":0.511},{"d":"IN House District 74","rep":"Steve Bartels","w":0.489}],"ss":[{"d":"IN Senate District 48","rep":"Daryl Schmitt","w":1.0}]},"munis":[],"slug":"dubois"},"18039":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 49","rep":"Joanna King","w":0.358},{"d":"IN House District 21","rep":"Tim Wesco","w":0.311},{"d":"IN House District 48","rep":"Doug Miller","w":0.17},{"d":"IN House District 18","rep":"David Abbott","w":0.16}],"ss":[{"d":"IN Senate District 12","rep":"Blake Doriot","w":0.53},{"d":"IN Senate District 9","rep":"Ryan Mishler","w":0.269},{"d":"IN Senate District 11","rep":"Linda Rogers","w":0.201}]},"munis":[],"slug":"elkhart"},"18041":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 55","rep":"Lindsay Patterson","w":1.0}],"ss":[{"d":"IN Senate District 42","rep":"Jean Leising","w":1.0}]},"munis":[],"slug":"fayette"},"18043":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 72","rep":"Ed Clere","w":0.656},{"d":"IN House District 70","rep":"Karen Engleman","w":0.34}],"ss":[{"d":"IN Senate District 47","rep":"Gary Byrne","w":0.942},{"d":"IN Senate District 45","rep":"Chris Garten","w":0.058}]},"munis":[{"m":"New Albany","p":[{"n":"Jeff Gahan","r":"Mayor, New Albany, IN"}]}],"slug":"floyd"},"18045":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.549},{"d":"IN-04","rep":"James R. Baird","w":0.451}],"sh":[{"d":"IN House District 13","rep":"Matt Commons","w":0.815},{"d":"IN House District 42","rep":"Tim Yocum","w":0.185}],"ss":[{"d":"IN Senate District 23","rep":"Spencer Deery","w":1.0}]},"munis":[],"slug":"fountain"},"18047":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 55","rep":"Lindsay Patterson","w":1.0}],"ss":[{"d":"IN Senate District 27","rep":"Jeff Raatz","w":0.518},{"d":"IN Senate District 42","rep":"Jean Leising","w":0.482}]},"munis":[],"slug":"franklin"},"18049":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 17","rep":"Jack Jordan","w":1.0}],"ss":[{"d":"IN Senate District 18","rep":"Stacey Donato","w":1.0}]},"munis":[],"slug":"fulton"},"18051":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.999}],"sh":[{"d":"IN House District 64","rep":"Matt Hostettler","w":0.838},{"d":"IN House District 75","rep":"Cindy Ledbetter","w":0.161}],"ss":[{"d":"IN Senate District 48","rep":"Daryl Schmitt","w":0.999}]},"munis":[],"slug":"gibson"},"18053":{"county":[],"districts":{"cd":[{"d":"IN-05","rep":"Victoria Spartz","w":1.0}],"sh":[{"d":"IN House District 31","rep":"Lori Goss-Reaves","w":0.942},{"d":"IN House District 30","rep":"Mike Karickhoff","w":0.058}],"ss":[{"d":"IN Senate District 17","rep":"Nick McKinley","w":1.0}]},"munis":[],"slug":"grant"},"18055":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 45","rep":"Bruce Borders","w":1.0}],"ss":[{"d":"IN Senate District 39","rep":"Eric Bassler","w":1.0}]},"munis":[],"slug":"greene"},"18057":{"county":[],"districts":{"cd":[{"d":"IN-05","rep":"Victoria Spartz","w":1.0}],"sh":[{"d":"IN House District 37","rep":"Todd Huston","w":0.425},{"d":"IN House District 24","rep":"Hunter Smith","w":0.278},{"d":"IN House District 29","rep":"Alaina Shonkwiler","w":0.124},{"d":"IN House District 32","rep":"Victoria Garcia Wilburn","w":0.076},{"d":"IN House District 39","rep":"Danny Lopez","w":0.07},{"d":"IN House District 88","rep":"Chris Jeter","w":0.026}],"ss":[{"d":"IN Senate District 20","rep":"Scott Baldwin","w":0.342},{"d":"IN Senate District 21","rep":"Jim Buck","w":0.259},{"d":"IN Senate District 25","rep":"Mike Gaskill","w":0.204},{"d":"IN Senate District 31","rep":"Kyle Walker","w":0.128},{"d":"IN Senate District 29","rep":"J.D. Ford","w":0.067}]},"munis":[{"m":"Carmel","p":[{"n":"Sue Finkam","r":"Mayor, Carmel, IN"}]}],"slug":"hamilton"},"18059":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 53","rep":"Ethan Lawson","w":0.666},{"d":"IN House District 88","rep":"Chris Jeter","w":0.236},{"d":"IN House District 54","rep":"Cory Criswell","w":0.097}],"ss":[{"d":"IN Senate District 28","rep":"Michael Crider","w":1.0}]},"munis":[],"slug":"hancock"},"18061":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.995}],"sh":[{"d":"IN House District 70","rep":"Karen Engleman","w":0.999}],"ss":[{"d":"IN Senate District 47","rep":"Gary Byrne","w":0.999}]},"munis":[],"slug":"harrison"},"18063":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 28","rep":"Jeff Thompson","w":0.74},{"d":"IN House District 40","rep":"Greg Steuerwald","w":0.106},{"d":"IN House District 25","rep":"Becky Cash","w":0.085},{"d":"IN House District 57","rep":"Craig Haggard","w":0.069}],"ss":[{"d":"IN Senate District 24","rep":"Brett Clark","w":0.49},{"d":"IN Senate District 7","rep":"Brian Buchanan","w":0.301},{"d":"IN Senate District 35","rep":"Mike Young","w":0.208}]},"munis":[],"slug":"hendricks"},"18065":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 54","rep":"Cory Criswell","w":0.895},{"d":"IN House District 56","rep":"Brad Barrett","w":0.054},{"d":"IN House District 33","rep":"J.D. Prescott","w":0.051}],"ss":[{"d":"IN Senate District 27","rep":"Jeff Raatz","w":1.0}]},"munis":[],"slug":"henry"},"18067":{"county":[],"districts":{"cd":[{"d":"IN-05","rep":"Victoria Spartz","w":0.961},{"d":"IN-04","rep":"James R. Baird","w":0.039}],"sh":[{"d":"IN House District 30","rep":"Mike Karickhoff","w":0.578},{"d":"IN House District 38","rep":"Heath VanNatter","w":0.422}],"ss":[{"d":"IN Senate District 18","rep":"Stacey Donato","w":0.69},{"d":"IN Senate District 21","rep":"Jim Buck","w":0.31}]},"munis":[],"slug":"howard"},"18069":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":0.999}],"sh":[{"d":"IN House District 50","rep":"Lorissa Sweet","w":1.0}],"ss":[{"d":"IN Senate District 17","rep":"Nick McKinley","w":1.0}]},"munis":[],"slug":"huntington"},"18071":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 69","rep":"Jim Lucas","w":0.668},{"d":"IN House District 62","rep":"Dave Hall","w":0.251},{"d":"IN House District 65","rep":"Chris May","w":0.082}],"ss":[{"d":"IN Senate District 44","rep":"Eric Koch","w":1.0}]},"munis":[],"slug":"jackson"},"18073":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 16","rep":"Kendell Culp","w":0.743},{"d":"IN House District 11","rep":"Mike Aylesworth","w":0.164},{"d":"IN House District 13","rep":"Matt Commons","w":0.093}],"ss":[{"d":"IN Senate District 6","rep":"Rick Niemeyer","w":0.501},{"d":"IN Senate District 5","rep":"Ed Charbonneau","w":0.498}]},"munis":[],"slug":"jasper"},"18075":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 33","rep":"J.D. Prescott","w":0.671},{"d":"IN House District 79","rep":"Matt Lehman","w":0.329}],"ss":[{"d":"IN Senate District 19","rep":"Travis Holdman","w":1.0}]},"munis":[],"slug":"jay"},"18077":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 67","rep":"Alex Zimmerman","w":0.747},{"d":"IN House District 66","rep":"Zach Payne","w":0.156},{"d":"IN House District 68","rep":"Garrett Bascom","w":0.097}],"ss":[{"d":"IN Senate District 43","rep":"Randy Maxwell","w":1.0}]},"munis":[],"slug":"jefferson"},"18079":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 67","rep":"Alex Zimmerman","w":0.85},{"d":"IN House District 73","rep":"Jenny Meltzer","w":0.149}],"ss":[{"d":"IN Senate District 43","rep":"Randy Maxwell","w":0.538},{"d":"IN Senate District 42","rep":"Jean Leising","w":0.462}]},"munis":[],"slug":"jennings"},"18081":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 47","rep":"Robb Greene","w":0.669},{"d":"IN House District 58","rep":"Michelle Davis","w":0.22},{"d":"IN House District 60","rep":"Peggy Mayfield","w":0.059},{"d":"IN House District 57","rep":"Craig Haggard","w":0.052}],"ss":[{"d":"IN Senate District 41","rep":"Greg Walker","w":0.462},{"d":"IN Senate District 37","rep":"Rod Bray","w":0.355},{"d":"IN Senate District 32","rep":"Aaron Freeman","w":0.154},{"d":"IN Senate District 36","rep":"Cyndi Carrasco","w":0.029}]},"munis":[],"slug":"johnson"},"18083":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.994},{"d":"IL-12","rep":"Mike Bost","w":0.006}],"sh":[{"d":"IN House District 64","rep":"Matt Hostettler","w":0.598},{"d":"IN House District 45","rep":"Bruce Borders","w":0.402}],"ss":[{"d":"IN Senate District 39","rep":"Eric Bassler","w":0.999}]},"munis":[],"slug":"knox"},"18085":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":0.808},{"d":"IN-03","rep":"Marlin A. Stutzman","w":0.192}],"sh":[{"d":"IN House District 22","rep":"Craig Snow","w":0.873},{"d":"IN House District 18","rep":"David Abbott","w":0.127}],"ss":[{"d":"IN Senate District 18","rep":"Stacey Donato","w":0.504},{"d":"IN Senate District 9","rep":"Ryan Mishler","w":0.496}]},"munis":[],"slug":"kosciusko"},"18087":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 51","rep":"Tony Isa","w":1.0}],"ss":[{"d":"IN Senate District 13","rep":"Sue Glick","w":1.0}]},"munis":[],"slug":"lagrange"},"18089":{"county":[],"districts":{"cd":[{"d":"IN-01","rep":"Frank J. Mrvan","w":0.803}],"sh":[{"d":"IN House District 11","rep":"Mike Aylesworth","w":0.306},{"d":"IN House District 19","rep":"Julie Olthoff","w":0.145},{"d":"IN House District 3","rep":"Ragen Hatcher","w":0.082},{"d":"IN House District 15","rep":"Hal Slager","w":0.072},{"d":"IN House District 2","rep":"Earl Harris","w":0.064},{"d":"IN House District 14","rep":"Vernon Smith","w":0.06},{"d":"IN House District 12","rep":"Mike Andrade","w":0.04},{"d":"IN House District 1","rep":"Carolyn Jackson","w":0.035}],"ss":[{"d":"IN Senate District 6","rep":"Rick Niemeyer","w":0.433},{"d":"IN Senate District 3","rep":"Mark Spencer","w":0.184},{"d":"IN Senate District 1","rep":"Dan Dernulc","w":0.11},{"d":"IN Senate District 2","rep":"Lonnie Randolph","w":0.077}]},"munis":[],"slug":"lake"},"18091":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":0.677},{"d":"IN-01","rep":"Frank J. Mrvan","w":0.308}],"sh":[{"d":"IN House District 20","rep":"Jim Pressel","w":0.775},{"d":"IN House District 9","rep":"Randy Novak","w":0.188},{"d":"IN House District 7","rep":"Jake Teshka","w":0.022}],"ss":[{"d":"IN Senate District 8","rep":"Mike Bohacek","w":0.851},{"d":"IN Senate District 4","rep":"Rodney Pol","w":0.134}]},"munis":[],"slug":"laporte"},"18093":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 65","rep":"Chris May","w":1.0}],"ss":[{"d":"IN Senate District 44","rep":"Eric Koch","w":1.0}]},"munis":[],"slug":"lawrence"},"18095":{"county":[],"districts":{"cd":[{"d":"IN-05","rep":"Victoria Spartz","w":1.0}],"sh":[{"d":"IN House District 35","rep":"Elizabeth Rowray","w":0.476},{"d":"IN House District 36","rep":"Kyle Pierce","w":0.202},{"d":"IN House District 31","rep":"Lori Goss-Reaves","w":0.175},{"d":"IN House District 53","rep":"Ethan Lawson","w":0.093},{"d":"IN House District 88","rep":"Chris Jeter","w":0.053}],"ss":[{"d":"IN Senate District 25","rep":"Mike Gaskill","w":1.0}]},"munis":[],"slug":"madison"},"18097":{"county":[],"districts":{"cd":[{"d":"IN-07","rep":"André Carson","w":0.702},{"d":"IN-06","rep":"Jefferson Shreve","w":0.298}],"sh":[{"d":"IN House District 91","rep":"Bob Behning","w":0.141},{"d":"IN House District 90","rep":"Andrew Ireland","w":0.101},{"d":"IN House District 89","rep":"Mitch Gore","w":0.093},{"d":"IN House District 86","rep":"Ed DeLaney","w":0.084},{"d":"IN House District 87","rep":"Carey Hamilton","w":0.083},{"d":"IN House District 92","rep":"Reneé Pack","w":0.072},{"d":"IN House District 97","rep":"Justin Moed","w":0.066},{"d":"IN House District 93","rep":"Julie McGuire","w":0.052},{"d":"IN House District 98","rep":"Robin Shackleford","w":0.051},{"d":"IN House District 95","rep":"John Bartlett","w":0.051},{"d":"IN House District 96","rep":"Gregory Porter","w":0.049},{"d":"IN House District 99","rep":"Vanessa Summers","w":0.048},{"d":"IN House District 94","rep":"Cherrish Pryor","w":0.042},{"d":"IN House District 100","rep":"Blake Johnson","w":0.038},{"d":"IN House District 88","rep":"Chris Jeter","w":0.02},{"d":"IN House District 32","rep":"Victoria Garcia Wilburn","w":0.009}],"ss":[{"d":"IN Senate District 32","rep":"Aaron Freeman","w":0.162},{"d":"IN Senate District 35","rep":"Mike Young","w":0.147},{"d":"IN Senate District 30","rep":"Fady Qaddoura","w":0.14},{"d":"IN Senate District 34","rep":"La Keisha Jackson","w":0.119},{"d":"IN Senate District 36","rep":"Cyndi Carrasco","w":0.106},{"d":"IN Senate District 46","rep":"Andrea Hunley","w":0.092},{"d":"IN Senate District 33","rep":"Greg Taylor","w":0.09},{"d":"IN Senate District 29","rep":"J.D. Ford","w":0.084},{"d":"IN Senate District 31","rep":"Kyle Walker","w":0.038},{"d":"IN Senate District 28","rep":"Michael Crider","w":0.022}]},"munis":[{"m":"Indianapolis City Balance","p":[{"n":"Joe Hogsett","r":"Mayor, Indianapolis, IN"}]}],"slug":"marion"},"18099":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 17","rep":"Jack Jordan","w":0.977},{"d":"IN House District 7","rep":"Jake Teshka","w":0.023}],"ss":[{"d":"IN Senate District 8","rep":"Mike Bohacek","w":0.862},{"d":"IN Senate District 9","rep":"Ryan Mishler","w":0.138}]},"munis":[],"slug":"marshall"},"18101":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 63","rep":"Shane Lindauer","w":1.0}],"ss":[{"d":"IN Senate District 39","rep":"Eric Bassler","w":1.0}]},"munis":[],"slug":"martin"},"18103":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 23","rep":"Ethan Manning","w":0.938},{"d":"IN House District 50","rep":"Lorissa Sweet","w":0.062}],"ss":[{"d":"IN Senate District 18","rep":"Stacey Donato","w":1.0}]},"munis":[],"slug":"miami"},"18105":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 62","rep":"Dave Hall","w":0.608},{"d":"IN House District 46","rep":"Bob Heaton","w":0.175},{"d":"IN House District 60","rep":"Peggy Mayfield","w":0.168},{"d":"IN House District 61","rep":"Matt Pierce","w":0.049}],"ss":[{"d":"IN Senate District 40","rep":"Shelli Yoder","w":0.719},{"d":"IN Senate District 44","rep":"Eric Koch","w":0.281}]},"munis":[],"slug":"monroe"},"18107":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 44","rep":"Beau Baird","w":0.605},{"d":"IN House District 28","rep":"Jeff Thompson","w":0.221},{"d":"IN House District 13","rep":"Matt Commons","w":0.107},{"d":"IN House District 41","rep":"Mark Genda","w":0.067}],"ss":[{"d":"IN Senate District 7","rep":"Brian Buchanan","w":0.652},{"d":"IN Senate District 23","rep":"Spencer Deery","w":0.348}]},"munis":[],"slug":"montgomery"},"18109":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 60","rep":"Peggy Mayfield","w":0.911},{"d":"IN House District 57","rep":"Craig Haggard","w":0.089}],"ss":[{"d":"IN Senate District 37","rep":"Rod Bray","w":1.0}]},"munis":[],"slug":"morgan"},"18111":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":0.999}],"sh":[{"d":"IN House District 11","rep":"Mike Aylesworth","w":0.8},{"d":"IN House District 13","rep":"Matt Commons","w":0.2}],"ss":[{"d":"IN Senate District 6","rep":"Rick Niemeyer","w":1.0}]},"munis":[],"slug":"newton"},"18113":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 18","rep":"David Abbott","w":0.827},{"d":"IN House District 52","rep":"Ben Smaltz","w":0.173}],"ss":[{"d":"IN Senate District 13","rep":"Sue Glick","w":1.0}]},"munis":[],"slug":"noble"},"18115":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 68","rep":"Garrett Bascom","w":0.999}],"ss":[{"d":"IN Senate District 43","rep":"Randy Maxwell","w":0.999}]},"munis":[],"slug":"ohio"},"18117":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 65","rep":"Chris May","w":0.79},{"d":"IN House District 74","rep":"Steve Bartels","w":0.21}],"ss":[{"d":"IN Senate District 44","rep":"Eric Koch","w":1.0}]},"munis":[],"slug":"orange"},"18119":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.999}],"sh":[{"d":"IN House District 46","rep":"Bob Heaton","w":1.0}],"ss":[{"d":"IN Senate District 39","rep":"Eric Bassler","w":0.522},{"d":"IN Senate District 37","rep":"Rod Bray","w":0.477}]},"munis":[],"slug":"owen"},"18121":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 42","rep":"Tim Yocum","w":1.0}],"ss":[{"d":"IN Senate District 23","rep":"Spencer Deery","w":1.0}]},"munis":[],"slug":"parke"},"18123":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.999}],"sh":[{"d":"IN House District 74","rep":"Steve Bartels","w":1.0}],"ss":[{"d":"IN Senate District 48","rep":"Daryl Schmitt","w":1.0}]},"munis":[],"slug":"perry"},"18125":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 75","rep":"Cindy Ledbetter","w":0.78},{"d":"IN House District 63","rep":"Shane Lindauer","w":0.22}],"ss":[{"d":"IN Senate District 48","rep":"Daryl Schmitt","w":1.0}]},"munis":[],"slug":"pike"},"18127":{"county":[],"districts":{"cd":[{"d":"IN-01","rep":"Frank J. Mrvan","w":0.804}],"sh":[{"d":"IN House District 4","rep":"Ed Soliday","w":0.346},{"d":"IN House District 9","rep":"Randy Novak","w":0.142},{"d":"IN House District 10","rep":"Chuck Moseley","w":0.14},{"d":"IN House District 19","rep":"Julie Olthoff","w":0.123},{"d":"IN House District 11","rep":"Mike Aylesworth","w":0.054}],"ss":[{"d":"IN Senate District 5","rep":"Ed Charbonneau","w":0.522},{"d":"IN Senate District 4","rep":"Rodney Pol","w":0.281}]},"munis":[],"slug":"porter"},"18129":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.996}],"sh":[{"d":"IN House District 76","rep":"Wendy McNamara","w":0.999}],"ss":[{"d":"IN Senate District 49","rep":"Jim Tomes","w":0.999}]},"munis":[],"slug":"posey"},"18131":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 16","rep":"Kendell Culp","w":0.76},{"d":"IN House District 17","rep":"Jack Jordan","w":0.24}],"ss":[{"d":"IN Senate District 5","rep":"Ed Charbonneau","w":1.0}]},"munis":[],"slug":"pulaski"},"18133":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 44","rep":"Beau Baird","w":1.0}],"ss":[{"d":"IN Senate District 24","rep":"Brett Clark","w":0.649},{"d":"IN Senate District 37","rep":"Rod Bray","w":0.351}]},"munis":[],"slug":"putnam"},"18135":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":0.551},{"d":"IN-03","rep":"Marlin A. Stutzman","w":0.449}],"sh":[{"d":"IN House District 33","rep":"J.D. Prescott","w":1.0}],"ss":[{"d":"IN Senate District 26","rep":"Scott Alexander","w":1.0}]},"munis":[],"slug":"randolph"},"18137":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 67","rep":"Alex Zimmerman","w":0.844},{"d":"IN House District 55","rep":"Lindsay Patterson","w":0.156}],"ss":[{"d":"IN Senate District 42","rep":"Jean Leising","w":1.0}]},"munis":[],"slug":"ripley"},"18139":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 54","rep":"Cory Criswell","w":0.93},{"d":"IN House District 55","rep":"Lindsay Patterson","w":0.07}],"ss":[{"d":"IN Senate District 42","rep":"Jean Leising","w":1.0}]},"munis":[],"slug":"rush"},"18141":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 7","rep":"Jake Teshka","w":0.703},{"d":"IN House District 8","rep":"Ryan Dvorak","w":0.125},{"d":"IN House District 5","rep":"Dale DeVon","w":0.097},{"d":"IN House District 6","rep":"Maureen Bauer","w":0.039},{"d":"IN House District 21","rep":"Tim Wesco","w":0.035}],"ss":[{"d":"IN Senate District 10","rep":"David Niezgodski","w":0.426},{"d":"IN Senate District 8","rep":"Mike Bohacek","w":0.234},{"d":"IN Senate District 9","rep":"Ryan Mishler","w":0.215},{"d":"IN Senate District 11","rep":"Linda Rogers","w":0.124}]},"munis":[{"m":"South Bend","p":[{"n":"James Mueller","r":"Mayor, South Bend, IN"}]}],"slug":"st-joseph"},"18143":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 69","rep":"Jim Lucas","w":0.53},{"d":"IN House District 66","rep":"Zach Payne","w":0.469}],"ss":[{"d":"IN Senate District 43","rep":"Randy Maxwell","w":1.0}]},"munis":[],"slug":"scott"},"18145":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 47","rep":"Robb Greene","w":0.501},{"d":"IN House District 73","rep":"Jenny Meltzer","w":0.432},{"d":"IN House District 54","rep":"Cory Criswell","w":0.066}],"ss":[{"d":"IN Senate District 42","rep":"Jean Leising","w":0.602},{"d":"IN Senate District 28","rep":"Michael Crider","w":0.398}]},"munis":[],"slug":"shelby"},"18147":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.999}],"sh":[{"d":"IN House District 74","rep":"Steve Bartels","w":0.999}],"ss":[{"d":"IN Senate District 48","rep":"Daryl Schmitt","w":0.999}]},"munis":[],"slug":"spencer"},"18149":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 16","rep":"Kendell Culp","w":0.638},{"d":"IN House District 20","rep":"Jim Pressel","w":0.362}],"ss":[{"d":"IN Senate District 8","rep":"Mike Bohacek","w":1.0}]},"munis":[],"slug":"starke"},"18151":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 51","rep":"Tony Isa","w":0.668},{"d":"IN House District 52","rep":"Ben Smaltz","w":0.332}],"ss":[{"d":"IN Senate District 13","rep":"Sue Glick","w":1.0}]},"munis":[],"slug":"steuben"},"18153":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.993},{"d":"IL-12","rep":"Mike Bost","w":0.007}],"sh":[{"d":"IN House District 45","rep":"Bruce Borders","w":1.0}],"ss":[{"d":"IN Senate District 39","rep":"Eric Bassler","w":0.825},{"d":"IN Senate District 38","rep":"Greg Goode","w":0.175}]},"munis":[],"slug":"sullivan"},"18155":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":0.999}],"sh":[{"d":"IN House District 68","rep":"Garrett Bascom","w":0.999}],"ss":[{"d":"IN Senate District 43","rep":"Randy Maxwell","w":0.999}]},"munis":[],"slug":"switzerland"},"18157":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 13","rep":"Matt Commons","w":0.452},{"d":"IN House District 41","rep":"Mark Genda","w":0.251},{"d":"IN House District 26","rep":"Chris Campbell","w":0.118},{"d":"IN House District 38","rep":"Heath VanNatter","w":0.11},{"d":"IN House District 27","rep":"Sheila Klinker","w":0.068}],"ss":[{"d":"IN Senate District 22","rep":"Ron Alting","w":0.53},{"d":"IN Senate District 23","rep":"Spencer Deery","w":0.47}]},"munis":[],"slug":"tippecanoe"},"18159":{"county":[],"districts":{"cd":[{"d":"IN-05","rep":"Victoria Spartz","w":1.0}],"sh":[{"d":"IN House District 38","rep":"Heath VanNatter","w":1.0}],"ss":[{"d":"IN Senate District 21","rep":"Jim Buck","w":1.0}]},"munis":[{"m":"Tipton","p":[{"n":"Tom Dolezal","r":"Mayor, Tipton, IN"}]}],"slug":"tipton"},"18161":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 55","rep":"Lindsay Patterson","w":1.0}],"ss":[{"d":"IN Senate District 27","rep":"Jeff Raatz","w":1.0}]},"munis":[],"slug":"union"},"18163":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.995},{"d":"KY-01","rep":"James Comer","w":0.005}],"sh":[{"d":"IN House District 76","rep":"Wendy McNamara","w":0.383},{"d":"IN House District 64","rep":"Matt Hostettler","w":0.301},{"d":"IN House District 78","rep":"Tim O'Brien","w":0.19},{"d":"IN House District 77","rep":"Alex Burton","w":0.125}],"ss":[{"d":"IN Senate District 49","rep":"Jim Tomes","w":0.79},{"d":"IN Senate District 50","rep":"Vaneta Becker","w":0.209}]},"munis":[{"m":"Evansville","p":[{"n":"Lloyd Winnecke","r":"Mayor, Evansville, IN"}]}],"slug":"vanderburgh"},"18165":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 42","rep":"Tim Yocum","w":1.0}],"ss":[{"d":"IN Senate District 23","rep":"Spencer Deery","w":1.0}]},"munis":[],"slug":"vermillion"},"18167":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":0.998}],"sh":[{"d":"IN House District 42","rep":"Tim Yocum","w":0.273},{"d":"IN House District 46","rep":"Bob Heaton","w":0.258},{"d":"IN House District 43","rep":"Tonya Pfaff","w":0.246},{"d":"IN House District 45","rep":"Bruce Borders","w":0.224}],"ss":[{"d":"IN Senate District 38","rep":"Greg Goode","w":1.0}]},"munis":[],"slug":"vigo"},"18169":{"county":[],"districts":{"cd":[{"d":"IN-02","rep":"Rudy Yakym III","w":1.0}],"sh":[{"d":"IN House District 50","rep":"Lorissa Sweet","w":0.869},{"d":"IN House District 22","rep":"Craig Snow","w":0.131}],"ss":[{"d":"IN Senate District 17","rep":"Nick McKinley","w":1.0}]},"munis":[],"slug":"wabash"},"18171":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 13","rep":"Matt Commons","w":1.0}],"ss":[{"d":"IN Senate District 23","rep":"Spencer Deery","w":1.0}]},"munis":[],"slug":"warren"},"18173":{"county":[],"districts":{"cd":[{"d":"IN-08","rep":"Mark B. Messmer","w":1.0}],"sh":[{"d":"IN House District 75","rep":"Cindy Ledbetter","w":0.98},{"d":"IN House District 78","rep":"Tim O'Brien","w":0.019}],"ss":[{"d":"IN Senate District 50","rep":"Vaneta Becker","w":1.0}]},"munis":[],"slug":"warrick"},"18175":{"county":[],"districts":{"cd":[{"d":"IN-09","rep":"Erin Houchin","w":1.0}],"sh":[{"d":"IN House District 69","rep":"Jim Lucas","w":0.406},{"d":"IN House District 70","rep":"Karen Engleman","w":0.323},{"d":"IN House District 65","rep":"Chris May","w":0.271}],"ss":[{"d":"IN Senate District 47","rep":"Gary Byrne","w":1.0}]},"munis":[],"slug":"washington"},"18177":{"county":[],"districts":{"cd":[{"d":"IN-06","rep":"Jefferson Shreve","w":1.0}],"sh":[{"d":"IN House District 56","rep":"Brad Barrett","w":1.0}],"ss":[{"d":"IN Senate District 27","rep":"Jeff Raatz","w":1.0}]},"munis":[],"slug":"wayne"},"18179":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 79","rep":"Matt Lehman","w":0.903},{"d":"IN House District 50","rep":"Lorissa Sweet","w":0.097}],"ss":[{"d":"IN Senate District 19","rep":"Travis Holdman","w":1.0}]},"munis":[],"slug":"wells"},"18181":{"county":[],"districts":{"cd":[{"d":"IN-04","rep":"James R. Baird","w":1.0}],"sh":[{"d":"IN House District 16","rep":"Kendell Culp","w":0.93},{"d":"IN House District 13","rep":"Matt Commons","w":0.07}],"ss":[{"d":"IN Senate District 5","rep":"Ed Charbonneau","w":1.0}]},"munis":[],"slug":"white"},"18183":{"county":[],"districts":{"cd":[{"d":"IN-03","rep":"Marlin A. Stutzman","w":1.0}],"sh":[{"d":"IN House District 83","rep":"Chris Judy","w":0.535},{"d":"IN House District 18","rep":"David Abbott","w":0.465}],"ss":[{"d":"IN Senate District 16","rep":"Justin Busch","w":1.0}]},"munis":[],"slug":"whitley"},"19001":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 23","rep":"Bubba Sorensen","w":1.0}],"ss":[{"d":"IA Senate District 12","rep":"Amy Sinclair","w":1.0}]},"munis":[{"m":"Fontanelle","p":[{"n":"Michael Walker","r":"Mayor, Fontanelle, IA"}]}],"slug":"adair"},"19003":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 17","rep":"Devon Wood","w":1.0}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":1.0}]},"munis":[],"slug":"adams"},"19005":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 64","rep":"Jason Gearhart","w":1.0}],"ss":[{"d":"IA Senate District 32","rep":"Mike Klimesh","w":1.0}]},"munis":[],"slug":"allamakee"},"19007":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 26","rep":"Austin Harris","w":0.814},{"d":"IA House District 24","rep":"Sam Wengryn","w":0.186}],"ss":[{"d":"IA Senate District 13","rep":"Cherielynn Westrich","w":0.814},{"d":"IA Senate District 12","rep":"Amy Sinclair","w":0.186}]},"munis":[],"slug":"appanoose"},"19009":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 11","rep":"Craig Williams","w":1.0}],"ss":[{"d":"IA Senate District 6","rep":"Jason Schultz","w":1.0}]},"munis":[],"slug":"audubon"},"19011":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 84","rep":"Tom Gerhold","w":0.839},{"d":"IA House District 76","rep":"Derek Wulf","w":0.161}],"ss":[{"d":"IA Senate District 42","rep":"Charlie McClintock","w":0.839},{"d":"IA Senate District 38","rep":"Dave Sires","w":0.161}]},"munis":[],"slug":"benton"},"19013":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 68","rep":"Chad Ingels","w":0.356},{"d":"IA House District 76","rep":"Derek Wulf","w":0.319},{"d":"IA House District 54","rep":"Josh Meggers","w":0.193},{"d":"IA House District 62","rep":"Jerome Amos","w":0.056},{"d":"IA House District 61","rep":"Timi Brown-Powers","w":0.041},{"d":"IA House District 75","rep":"Bob Kressig","w":0.035}],"ss":[{"d":"IA Senate District 34","rep":"Dan Zumbach","w":0.356},{"d":"IA Senate District 38","rep":"Dave Sires","w":0.354},{"d":"IA Senate District 27","rep":"Annette Sweeney","w":0.193}]},"munis":[{"m":"Cedar Falls","p":[{"n":"Danny Laudick","r":"Mayor, Cedar Falls, IA"}]},{"m":"Waterloo","p":[{"n":"Quentin M. Hart","r":"Mayor, Waterloo, IA"}]}],"slug":"black-hawk"},"19015":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 48","rep":"Chad Behn","w":1.0}],"ss":[{"d":"IA Senate District 24","rep":"Jesse Green","w":1.0}]},"munis":[],"slug":"boone"},"19017":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 58","rep":"Charley Thomson","w":0.666},{"d":"IA House District 57","rep":"Pat Grassley","w":0.334}],"ss":[{"d":"IA Senate District 29","rep":"Sandy Salmon","w":1.0}]},"munis":[{"m":"Sumner","p":[{"n":"Billy Lehmkuhl","r":"Mayor, Sumner, IA"}]}],"slug":"bremer"},"19019":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 67","rep":"Craig Johnson","w":0.559},{"d":"IA House District 68","rep":"Chad Ingels","w":0.441}],"ss":[{"d":"IA Senate District 34","rep":"Dan Zumbach","w":1.0}]},"munis":[],"slug":"buchanan"},"19021":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 6","rep":"Megan Jones","w":0.751},{"d":"IA House District 5","rep":"Zach Dieken","w":0.249}],"ss":[{"d":"IA Senate District 3","rep":"Lynn Evans","w":1.0}]},"munis":[],"slug":"buena-vista"},"19023":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 57","rep":"Pat Grassley","w":1.0}],"ss":[{"d":"IA Senate District 29","rep":"Sandy Salmon","w":1.0}]},"munis":[{"m":"Greene","p":[{"n":"Warren Van Dyke","r":"Mayor, Greene, IA"}]}],"slug":"butler"},"19025":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 7","rep":"Wendy Larson","w":1.0}],"ss":[{"d":"IA Senate District 4","rep":"Tim Kraayenbrink","w":1.0}]},"munis":[],"slug":"calhoun"},"19027":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 11","rep":"Craig Williams","w":1.0}],"ss":[{"d":"IA Senate District 6","rep":"Jason Schultz","w":1.0}]},"munis":[{"m":"Glidden","p":[{"n":"Roger Hartwigsen","r":"Mayor, Glidden, IA"}]}],"slug":"carroll"},"19029":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 18","rep":"Tom Moore","w":1.0}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":1.0}]},"munis":[],"slug":"cass"},"19031":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 82","rep":"Bobby Kaufmann","w":1.0}],"ss":[{"d":"IA Senate District 41","rep":"Kerry Gruenhagen","w":1.0}]},"munis":[{"m":"West Branch","p":[{"n":"Roger Laughlin","r":"Mayor, West Branch, IA"}]}],"slug":"cedar"},"19033":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 59","rep":"Christian Hermanson","w":0.628},{"d":"IA House District 60","rep":"Jane Bloomingdale","w":0.372}],"ss":[{"d":"IA Senate District 30","rep":"Doug Campbell","w":1.0}]},"munis":[{"m":"Clear Lake","p":[{"n":"Nelson P. Crabb","r":"Mayor, Clear Lake, IA"}]}],"slug":"cerro-gordo"},"19035":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 5","rep":"Zach Dieken","w":0.561},{"d":"IA House District 13","rep":"Travis Sitzmann","w":0.439}],"ss":[{"d":"IA Senate District 3","rep":"Lynn Evans","w":0.561},{"d":"IA Senate District 7","rep":"Kevin Alons","w":0.439}]},"munis":[],"slug":"cherokee"},"19037":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 58","rep":"Charley Thomson","w":1.0}],"ss":[{"d":"IA Senate District 29","rep":"Sandy Salmon","w":1.0}]},"munis":[{"m":"Nashua","p":[{"n":"Alex Anthofer","r":"Mayor, Nashua, IA"}]},{"m":"New Hampton","p":[{"n":"Steven Geerts","r":"Mayor, New Hampton, IA"}]}],"slug":"chickasaw"},"19039":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 24","rep":"Sam Wengryn","w":0.75},{"d":"IA House District 23","rep":"Bubba Sorensen","w":0.25}],"ss":[{"d":"IA Senate District 12","rep":"Amy Sinclair","w":1.0}]},"munis":[],"slug":"clarke"},"19041":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 6","rep":"Megan Jones","w":0.635},{"d":"IA House District 10","rep":"John Wills","w":0.365}],"ss":[{"d":"IA Senate District 3","rep":"Lynn Evans","w":0.635},{"d":"IA Senate District 5","rep":"Dave Rowley","w":0.365}]},"munis":[{"m":"Everly","p":[{"n":"Ron Thompson","r":"Mayor, Everly, IA"}]},{"m":"Spencer","p":[{"n":"Steve Bomgaars","r":"Mayor, Spencer, IA"}]}],"slug":"clay"},"19043":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 64","rep":"Jason Gearhart","w":1.0}],"ss":[{"d":"IA Senate District 32","rep":"Mike Klimesh","w":1.0}]},"munis":[{"m":"Guttenberg","p":[{"n":"Fred Schaub","r":"Mayor, Guttenberg, IA"}]},{"m":"Marquette","p":[{"n":"Brittany Hemmer","r":"Mayor, Marquette, IA"}]}],"slug":"clayton"},"19045":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 69","rep":"Tom Determann","w":0.325}],"ss":[{"d":"IA Senate District 35","rep":"Mike Zimmer","w":1.0}]},"munis":[{"m":"Andover","p":[{"n":"Jason Johnson","r":"Mayor, Andover, IA"}]},{"m":"Calamus","p":[{"n":"Lance Goettsch","r":"Mayor, Calamus, IA"}]},{"m":"Camanche","p":[{"n":"Austin Pruett","r":"Mayor, Camanche, IA"}]},{"m":"Clinton","p":[{"n":"Scott Maddasion","r":"Mayor, Clinton, IA"}]},{"m":"Delmar","p":[{"n":"Patty Hardin","r":"Mayor, Delmar, IA"}]},{"m":"Dewitt","p":[{"n":"Steve Hasenmiller","r":"Mayor, DeWitt, IA"}]},{"m":"Goose Lake","p":[{"n":"Ken Schoon","r":"Mayor, Goose Lake, IA"}]},{"m":"Grand Mound","p":[{"n":"Kurt Crosthwaite","r":"Mayor, Grand Mound, IA"}]},{"m":"Lost Nation","p":[{"n":"Ramon Gilroy","r":"Mayor, Lost Nation, IA"}]},{"m":"Low Moor","p":[{"n":"Tom Goldensoph","r":"Mayor, Low Moor, IA"}]},{"m":"Welton","p":[{"n":"Ashley Paulsen","r":"Mayor, Welton, IA"}]},{"m":"Wheatland","p":[{"n":"Jeremiah Wiese","r":"Mayor, Wheatland, IA"}]}],"slug":"clinton"},"19047":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 12","rep":"Steven Holt","w":1.0}],"ss":[{"d":"IA Senate District 6","rep":"Jason Schultz","w":1.0}]},"munis":[{"m":"Denison","p":[{"n":"Pam Soseman","r":"Mayor, Denison, IA"}]},{"m":"Schleswig","p":[{"n":"Beth Winquist","r":"Mayor, Schleswig, IA"}]}],"slug":"crawford"},"19049":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 47","rep":"Carter Nordman","w":0.375},{"d":"IA House District 46","rep":"Dan Gehlbach","w":0.222},{"d":"IA House District 23","rep":"Bubba Sorensen","w":0.198},{"d":"IA House District 28","rep":"David Young","w":0.16},{"d":"IA House District 27","rep":"Kenan Judge","w":0.044}],"ss":[{"d":"IA Senate District 24","rep":"Jesse Green","w":0.375},{"d":"IA Senate District 23","rep":"Jack Whitver","w":0.222},{"d":"IA Senate District 14","rep":"Sarah Garriott","w":0.204},{"d":"IA Senate District 12","rep":"Amy Sinclair","w":0.198}]},"munis":[{"m":"Adel","p":[{"n":"James F. Peters","r":"Mayor, Adel, IA"}]},{"m":"Dexter","p":[{"n":"Dennis Clemetson","r":"Mayor, Dexter, IA"}]},{"m":"Waukee","p":[{"n":"Courtney Clarke","r":"Mayor, Waukee, IA"}]}],"slug":"dallas"},"19051":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":0.998}],"sh":[{"d":"IA House District 26","rep":"Austin Harris","w":1.0}],"ss":[{"d":"IA Senate District 13","rep":"Cherielynn Westrich","w":1.0}]},"munis":[{"m":"Bloomfield","p":[{"n":"Chris Miller","r":"Mayor, Bloomfield, IA"}]},{"m":"Drakesville","p":[{"n":"Bob Sampson","r":"Mayor, Drakesville, IA"}]}],"slug":"davis"},"19053":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 24","rep":"Sam Wengryn","w":1.0}],"ss":[{"d":"IA Senate District 12","rep":"Amy Sinclair","w":1.0}]},"munis":[{"m":"Lamoni","p":[{"n":"Douglas L. Foster","r":"Mayor, Lamoni, IA"}]},{"m":"Leon","p":[{"n":"Bob Frey","r":"Mayor, Leon, IA"}]}],"slug":"decatur"},"19055":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 67","rep":"Craig Johnson","w":1.0}],"ss":[{"d":"IA Senate District 34","rep":"Dan Zumbach","w":1.0}]},"munis":[{"m":"Edgewood","p":[{"n":"Bruce Hemann","r":"Mayor, Edgewood, IA"}]},{"m":"Manchester","p":[{"n":"Connie L. Behnken","r":"Mayor, Manchester, IA"}]}],"slug":"delaware"},"19057":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 95","rep":"Taylor Collins","w":0.733},{"d":"IA House District 99","rep":"Matt Rinker","w":0.267}],"ss":[{"d":"IA Senate District 48","rep":"Mark Lofgren","w":0.733},{"d":"IA Senate District 50","rep":"Jeff Reichman","w":0.267}]},"munis":[{"m":"Burlington","p":[{"n":"Jon D. Billups","r":"Mayor, Burlington, IA"}]},{"m":"Mediapolis","p":[{"n":"Thomas Young","r":"Mayor, Mediapolis, IA"}]},{"m":"Middletown","p":[{"n":"Eric Gerst","r":"Mayor, Middletown, IA"}]},{"m":"West Burlington","p":[{"n":"Ron Teater","r":"Mayor, West Burlington, IA"}]}],"slug":"des-moines"},"19059":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 10","rep":"John Wills","w":1.0}],"ss":[{"d":"IA Senate District 5","rep":"Dave Rowley","w":1.0}]},"munis":[{"m":"Arnolds Park","p":[{"n":"Jim Hussong","r":"Mayor, Arnolds Park, IA"}]},{"m":"Lake Park","p":[{"n":"Matt Carstensen","r":"Mayor, Lake Park, IA"}]},{"m":"Milford","p":[{"n":"Steve Anderson","r":"Mayor, Milford, IA"}]},{"m":"Okoboji","p":[{"n":"Mary VanderWoude","r":"Mayor, Okoboji, IA"}]},{"m":"Spirit Lake","p":[{"n":"Kevin Bice","r":"Mayor, Spirit Lake, IA"}]}],"slug":"dickinson"},"19061":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 65","rep":"Shannon Lundgren","w":0.761},{"d":"IA House District 72","rep":"Jennifer Smith","w":0.097},{"d":"IA House District 67","rep":"Craig Johnson","w":0.06},{"d":"IA House District 64","rep":"Jason Gearhart","w":0.059},{"d":"IA House District 71","rep":"Lindsay James","w":0.022}],"ss":[{"d":"IA Senate District 33","rep":"Carrie Koelker","w":0.761},{"d":"IA Senate District 36","rep":"Tom Townsend","w":0.119},{"d":"IA Senate District 34","rep":"Dan Zumbach","w":0.06},{"d":"IA Senate District 32","rep":"Mike Klimesh","w":0.059}]},"munis":[{"m":"Asbury","p":[{"n":"Jim Adams","r":"Mayor, Asbury, IA"}]},{"m":"Dubuque","p":[{"n":"Brad Cavanagh","r":"Mayor, Dubuque, IA"}]},{"m":"Epworth","p":[{"n":"Sandra Gassman","r":"Mayor, Epworth, IA"}]}],"slug":"dubuque"},"19063":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 9","rep":"Henry Stone","w":1.0}],"ss":[{"d":"IA Senate District 5","rep":"Dave Rowley","w":1.0}]},"munis":[{"m":"Estherville","p":[{"n":"Kenny Billings","r":"Mayor, Estherville, IA"}]}],"slug":"emmet"},"19065":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 68","rep":"Chad Ingels","w":0.798},{"d":"IA House District 63","rep":"Michael Bergan","w":0.202}],"ss":[{"d":"IA Senate District 34","rep":"Dan Zumbach","w":0.798},{"d":"IA Senate District 32","rep":"Mike Klimesh","w":0.202}]},"munis":[{"m":"Fayette","p":[{"n":"Nathan Post","r":"Mayor, Fayette, IA"}]},{"m":"Oelwein","p":[{"n":"Brett DeVore","r":"Mayor, Oelwein, IA"}]}],"slug":"fayette"},"19067":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 58","rep":"Charley Thomson","w":0.836},{"d":"IA House District 60","rep":"Jane Bloomingdale","w":0.164}],"ss":[{"d":"IA Senate District 29","rep":"Sandy Salmon","w":0.836},{"d":"IA Senate District 30","rep":"Doug Campbell","w":0.164}]},"munis":[{"m":"Charles City","p":[{"n":"Dean Andrews","r":"Mayor, Charles City, IA"}]},{"m":"Rockford","p":[{"n":"Scott Johnson","r":"Mayor, Rockford, IA"}]}],"slug":"floyd"},"19069":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 55","rep":"Shannon Latham","w":1.0}],"ss":[{"d":"IA Senate District 28","rep":"Dennis Guth","w":1.0}]},"munis":[],"slug":"franklin"},"19071":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 16","rep":"David Sieck","w":1.0}],"ss":[{"d":"IA Senate District 8","rep":"Mark Costello","w":1.0}]},"munis":[],"slug":"fremont"},"19073":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 47","rep":"Carter Nordman","w":1.0}],"ss":[{"d":"IA Senate District 24","rep":"Jesse Green","w":1.0}]},"munis":[],"slug":"greene"},"19075":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 54","rep":"Josh Meggers","w":1.0}],"ss":[{"d":"IA Senate District 27","rep":"Annette Sweeney","w":1.0}]},"munis":[],"slug":"grundy"},"19077":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 47","rep":"Carter Nordman","w":1.0}],"ss":[{"d":"IA Senate District 24","rep":"Jesse Green","w":1.0}]},"munis":[{"m":"Guthrie Center","p":[{"n":"Mike Herbert","r":"Mayor, Guthrie Center, IA"}]},{"m":"Panora","p":[{"n":"Curtis Thornberry","r":"Mayor, Panora, IA"}]}],"slug":"guthrie"},"19079":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 55","rep":"Shannon Latham","w":1.0}],"ss":[{"d":"IA Senate District 28","rep":"Dennis Guth","w":1.0}]},"munis":[],"slug":"hamilton"},"19081":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 56","rep":"Mark Thompson","w":1.0}],"ss":[{"d":"IA Senate District 28","rep":"Dennis Guth","w":1.0}]},"munis":[{"m":"Forest City","p":[{"n":"Ron Holland","r":"Mayor, Forest City, IA"}]}],"slug":"hancock"},"19083":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":0.999}],"sh":[{"d":"IA House District 54","rep":"Josh Meggers","w":1.0}],"ss":[{"d":"IA Senate District 27","rep":"Annette Sweeney","w":1.0}]},"munis":[],"slug":"hardin"},"19085":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 15","rep":"Matt Windschitl","w":0.999}],"ss":[{"d":"IA Senate District 8","rep":"Mark Costello","w":0.999}]},"munis":[],"slug":"harrison"},"19087":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 95","rep":"Taylor Collins","w":0.749},{"d":"IA House District 87","rep":"Jeff Shipley","w":0.251}],"ss":[{"d":"IA Senate District 48","rep":"Mark Lofgren","w":0.749},{"d":"IA Senate District 44","rep":"Adrian Dickey","w":0.251}]},"munis":[{"m":"Mount Pleasant","p":[{"n":"Steven Brimhall","r":"Mayor, Mount Pleasant, IA"}]}],"slug":"henry"},"19089":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 63","rep":"Michael Bergan","w":1.0}],"ss":[{"d":"IA Senate District 32","rep":"Mike Klimesh","w":1.0}]},"munis":[],"slug":"howard"},"19091":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 56","rep":"Mark Thompson","w":1.0}],"ss":[{"d":"IA Senate District 28","rep":"Dennis Guth","w":1.0}]},"munis":[{"m":"Humboldt","p":[{"n":"Dan Scholl","r":"Mayor, Humboldt, IA"}]}],"slug":"humboldt"},"19093":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 12","rep":"Steven Holt","w":1.0}],"ss":[{"d":"IA Senate District 6","rep":"Jason Schultz","w":1.0}]},"munis":[{"m":"Battle Creek","p":[{"n":"Charles Pierce","r":"Mayor, Battle Creek, IA"}]},{"m":"Galva","p":[{"n":"Gary Wanberg","r":"Mayor, Galva, IA"}]},{"m":"Ida Grove","p":[{"n":"Nathan Weitl","r":"Mayor, Ida Grove, IA"}]}],"slug":"ida"},"19095":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 91","rep":"Judd Lawler","w":1.0}],"ss":[{"d":"IA Senate District 46","rep":"Dawn Driscoll","w":1.0}]},"munis":[{"m":"Marengo","p":[{"n":"Adam Rabe","r":"Mayor, Marengo, IA"}]}],"slug":"iowa"},"19097":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 66","rep":"Steve Bradley","w":0.833}],"ss":[{"d":"IA Senate District 33","rep":"Carrie Koelker","w":0.833},{"d":"IA Senate District 35","rep":"Mike Zimmer","w":0.167}]},"munis":[{"m":"Maquoketa","p":[{"n":"Tom Messerli","r":"Mayor, Maquoketa, IA"}]}],"slug":"jackson"},"19099":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":0.998}],"sh":[{"d":"IA House District 38","rep":"Jon Dunwell","w":0.748},{"d":"IA House District 37","rep":"Barb Kniff McCulla","w":0.252}],"ss":[{"d":"IA Senate District 19","rep":"Ken Rozenboom","w":1.0}]},"munis":[{"m":"Baxter","p":[{"n":"Doug Bishop","r":"Mayor, Baxter, IA"}]},{"m":"Colfax","p":[{"n":"David Mast","r":"Mayor, Colfax, IA"}]},{"m":"Lynnville","p":[{"n":"Roy James","r":"Mayor, Lynnville, IA"}]},{"m":"Monroe","p":[{"n":"Doug Duinink","r":"Mayor, Monroe, IA"}]},{"m":"Newton","p":[{"n":"Evelyn George","r":"Mayor, Newton, IA"}]},{"m":"Prairie City","p":[{"n":"Chad Alleger","r":"Mayor, Prairie City, IA"}]},{"m":"Sully","p":[{"n":"Ben Ahrens","r":"Mayor, Sully, IA"}]}],"slug":"jasper"},"19101":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 88","rep":"Helena Hayes","w":0.582},{"d":"IA House District 87","rep":"Jeff Shipley","w":0.418}],"ss":[{"d":"IA Senate District 44","rep":"Adrian Dickey","w":1.0}]},"munis":[],"slug":"jefferson"},"19103":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":0.999}],"sh":[{"d":"IA House District 91","rep":"Judd Lawler","w":0.386},{"d":"IA House District 92","rep":"Heather Hora","w":0.362},{"d":"IA House District 85","rep":"Amy Nielsen","w":0.186},{"d":"IA House District 86","rep":"Dave Jacoby","w":0.029},{"d":"IA House District 89","rep":"Elinor Levin","w":0.022},{"d":"IA House District 90","rep":"Adam Zabner","w":0.015}],"ss":[{"d":"IA Senate District 46","rep":"Dawn Driscoll","w":0.748},{"d":"IA Senate District 43","rep":"Zach Wahls","w":0.215},{"d":"IA Senate District 45","rep":"Janice Weiner","w":0.037}]},"munis":[{"m":"Coralville","p":[{"n":"Meghann Foster","r":"Mayor, Coralville, IA"}]},{"m":"Iowa City","p":[{"n":"Bruce Teague","r":"Mayor, Iowa City, IA"}]},{"m":"North Liberty","p":[{"n":"Chris Hoffman","r":"Mayor, North Liberty, IA"}]}],"slug":"johnson"},"19105":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 66","rep":"Steve Bradley","w":1.0}],"ss":[{"d":"IA Senate District 33","rep":"Carrie Koelker","w":1.0}]},"munis":[{"m":"Monticello","p":[{"n":"Wayne Peach","r":"Mayor, Monticello, IA"}]}],"slug":"jones"},"19107":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 88","rep":"Helena Hayes","w":1.0}],"ss":[{"d":"IA Senate District 44","rep":"Adrian Dickey","w":1.0}]},"munis":[],"slug":"keokuk"},"19109":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 9","rep":"Henry Stone","w":0.748},{"d":"IA House District 10","rep":"John Wills","w":0.252}],"ss":[{"d":"IA Senate District 5","rep":"Dave Rowley","w":1.0}]},"munis":[],"slug":"kossuth"},"19111":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":0.998}],"sh":[{"d":"IA House District 100","rep":"Blaine Watkins","w":0.825},{"d":"IA House District 99","rep":"Matt Rinker","w":0.175}],"ss":[{"d":"IA Senate District 50","rep":"Jeff Reichman","w":1.0}]},"munis":[{"m":"Fort Madison","p":[{"n":"Matt J. Mohrfeld","r":"Mayor, Fort Madison, IA"}]},{"m":"Keokuk","p":[{"n":"Kathie Mahoney","r":"Mayor, Keokuk, IA"}]}],"slug":"lee"},"19113":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 83","rep":"Cindy Golding","w":0.651},{"d":"IA House District 84","rep":"Tom Gerhold","w":0.179},{"d":"IA House District 77","rep":"Jeff Cooling","w":0.064},{"d":"IA House District 80","rep":"Aime Wichtendahl","w":0.032},{"d":"IA House District 73","rep":"Elizabeth Wilson","w":0.027},{"d":"IA House District 78","rep":"Angel Ramirez","w":0.017},{"d":"IA House District 74","rep":"Eric Gjerde","w":0.015},{"d":"IA House District 79","rep":"Tracy Ehlert","w":0.014}],"ss":[{"d":"IA Senate District 42","rep":"Charlie McClintock","w":0.831},{"d":"IA Senate District 39","rep":"Liz Bennett","w":0.081},{"d":"IA Senate District 40","rep":"Art Staed","w":0.045},{"d":"IA Senate District 37","rep":"Molly Donahue","w":0.042}]},"munis":[{"m":"Cedar Rapids","p":[{"n":"Tiffany O'Donnell","r":"Mayor, Cedar Rapids, IA"}]},{"m":"Marion","p":[{"n":"Nicolas AbouAssaly","r":"Mayor, Marion, IA"}]}],"slug":"linn"},"19115":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 95","rep":"Taylor Collins","w":1.0}],"ss":[{"d":"IA Senate District 48","rep":"Mark Lofgren","w":1.0}]},"munis":[{"m":"Grandview","p":[{"n":"Steve Schwandkie","r":"Mayor, Grandview, IA"}]}],"slug":"louisa"},"19117":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 24","rep":"Sam Wengryn","w":1.0}],"ss":[{"d":"IA Senate District 12","rep":"Amy Sinclair","w":1.0}]},"munis":[{"m":"Chariton","p":[{"n":"Jayma Hoch","r":"Mayor, Chariton, IA"}]}],"slug":"lucas"},"19119":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 4","rep":"Skyler Wheeler","w":0.999}],"ss":[{"d":"IA Senate District 2","rep":"Jeff Taylor","w":0.999}]},"munis":[],"slug":"lyon"},"19121":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 23","rep":"Bubba Sorensen","w":1.0}],"ss":[{"d":"IA Senate District 12","rep":"Amy Sinclair","w":1.0}]},"munis":[{"m":"Earlham","p":[{"n":"Jeff Lillie","r":"Mayor, Earlham, IA"}]},{"m":"Winterset","p":[{"n":"Thomas Leners","r":"Mayor, Winterset, IA"}]}],"slug":"madison"},"19123":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 88","rep":"Helena Hayes","w":0.641},{"d":"IA House District 37","rep":"Barb Kniff McCulla","w":0.358}],"ss":[{"d":"IA Senate District 44","rep":"Adrian Dickey","w":0.641},{"d":"IA Senate District 19","rep":"Ken Rozenboom","w":0.358}]},"munis":[{"m":"Oskaloosa","p":[{"n":"David Krutzfeldt","r":"Mayor, Oskaloosa, IA"}]}],"slug":"mahaska"},"19125":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 37","rep":"Barb Kniff McCulla","w":0.701},{"d":"IA House District 21","rep":"Brooke Boden","w":0.299}],"ss":[{"d":"IA Senate District 19","rep":"Ken Rozenboom","w":0.701},{"d":"IA Senate District 11","rep":"Julian Garrett","w":0.299}]},"munis":[{"m":"Knoxville","p":[{"n":"Brian Hatch","r":"Mayor, Knoxville, IA"}]},{"m":"Pella","p":[{"n":"Don DeWaard","r":"Mayor, Pella, IA"}]},{"m":"Pleasantville","p":[{"n":"Kody Jurgens","r":"Mayor, Pleasantville, IA"}]}],"slug":"marion"},"19127":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 51","rep":"Brett Barker","w":0.732},{"d":"IA House District 52","rep":"David Blom","w":0.268}],"ss":[{"d":"IA Senate District 26","rep":"Kara Warme","w":1.0}]},"munis":[{"m":"Marshalltown","p":[{"n":"Joel T.S. Greer","r":"Mayor, Marshalltown, IA"}]},{"m":"Melbourne","p":[{"n":"Cynthia Mansager","r":"Mayor, Melbourne, IA"}]},{"m":"State Center","p":[{"n":"Craig Pfantz","r":"Mayor, State Center, IA"}]}],"slug":"marshall"},"19129":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 16","rep":"David Sieck","w":1.0}],"ss":[{"d":"IA Senate District 8","rep":"Mark Costello","w":1.0}]},"munis":[],"slug":"mills"},"19131":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":0.999}],"sh":[{"d":"IA House District 60","rep":"Jane Bloomingdale","w":1.0}],"ss":[{"d":"IA Senate District 30","rep":"Doug Campbell","w":1.0}]},"munis":[],"slug":"mitchell"},"19133":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 13","rep":"Travis Sitzmann","w":1.0}],"ss":[{"d":"IA Senate District 7","rep":"Kevin Alons","w":1.0}]},"munis":[],"slug":"monona"},"19135":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 26","rep":"Austin Harris","w":1.0}],"ss":[{"d":"IA Senate District 13","rep":"Cherielynn Westrich","w":1.0}]},"munis":[],"slug":"monroe"},"19137":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 18","rep":"Tom Moore","w":1.0}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":1.0}]},"munis":[],"slug":"montgomery"},"19139":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 95","rep":"Taylor Collins","w":0.428},{"d":"IA House District 82","rep":"Bobby Kaufmann","w":0.295},{"d":"IA House District 96","rep":"Mark Cisneros","w":0.276}],"ss":[{"d":"IA Senate District 48","rep":"Mark Lofgren","w":0.705},{"d":"IA Senate District 41","rep":"Kerry Gruenhagen","w":0.295}]},"munis":[],"slug":"muscatine"},"19141":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 5","rep":"Zach Dieken","w":1.0}],"ss":[{"d":"IA Senate District 3","rep":"Lynn Evans","w":1.0}]},"munis":[{"m":"Sheldon","p":[{"n":"Greg Geels","r":"Mayor, Sheldon, IA"}]}],"slug":"o-brien"},"19143":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 5","rep":"Zach Dieken","w":1.0}],"ss":[{"d":"IA Senate District 3","rep":"Lynn Evans","w":1.0}]},"munis":[],"slug":"osceola"},"19145":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 18","rep":"Tom Moore","w":0.671},{"d":"IA House District 17","rep":"Devon Wood","w":0.329}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":1.0}]},"munis":[{"m":"Shenandoah","p":[{"n":"Roger McQueen","r":"Mayor, Shenandoah, IA"}]}],"slug":"page"},"19147":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 10","rep":"John Wills","w":1.0}],"ss":[{"d":"IA Senate District 5","rep":"Dave Rowley","w":1.0}]},"munis":[],"slug":"palo-alto"},"19149":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.998}],"sh":[{"d":"IA House District 13","rep":"Travis Sitzmann","w":0.522},{"d":"IA House District 3","rep":"Tom Jeneary","w":0.477}],"ss":[{"d":"IA Senate District 7","rep":"Kevin Alons","w":0.522},{"d":"IA Senate District 2","rep":"Jeff Taylor","w":0.477}]},"munis":[{"m":"Akron","p":[{"n":"Alex Pick","r":"Mayor, Akron, IA"}]},{"m":"Hinton","p":[{"n":"Kelly Kreber","r":"Mayor, Hinton, IA"}]},{"m":"Kingsley","p":[{"n":"Rick Bohle","r":"Mayor, Kingsley, IA"}]},{"m":"Le Mars","p":[{"n":"Rob Bixenman","r":"Mayor, Le Mars, IA"}]},{"m":"Merrill","p":[{"n":"Bruce Norgaard","r":"Mayor, Merrill, IA"}]}],"slug":"plymouth"},"19151":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 7","rep":"Wendy Larson","w":1.0}],"ss":[{"d":"IA Senate District 4","rep":"Tim Kraayenbrink","w":1.0}]},"munis":[{"m":"Fonda","p":[{"n":"Donald Wolf","r":"Mayor, Fonda, IA"}]},{"m":"Laurens","p":[{"n":"Rod Johnson","r":"Mayor, Laurens, IA"}]},{"m":"Pocahontas","p":[{"n":"Wes Beneke","r":"Mayor, Pocahontas, IA"}]},{"m":"Rolfe","p":[{"n":"James Pentico","r":"Mayor, Rolfe, IA"}]}],"slug":"pocahontas"},"19153":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":0.999}],"sh":[{"d":"IA House District 45","rep":"Brian Lohse","w":0.565},{"d":"IA House District 40","rep":"Bill Gustoff","w":0.063},{"d":"IA House District 43","rep":"Eddie Andrews","w":0.056},{"d":"IA House District 29","rep":"Brian Meyer","w":0.04},{"d":"IA House District 31","rep":"Mary Madison","w":0.039},{"d":"IA House District 39","rep":"Rick Olson","w":0.037},{"d":"IA House District 30","rep":"Megan Srinivas","w":0.028},{"d":"IA House District 42","rep":"Heather Matson","w":0.027},{"d":"IA House District 44","rep":"Larry McBurney","w":0.026},{"d":"IA House District 41","rep":"Ryan Weldon","w":0.025},{"d":"IA House District 36","rep":"Austin Baeth","w":0.021},{"d":"IA House District 46","rep":"Dan Gehlbach","w":0.019},{"d":"IA House District 32","rep":"Jennifer Konfrst","w":0.018},{"d":"IA House District 35","rep":"Sean Bagniewski","w":0.013},{"d":"IA House District 33","rep":"Ruth Ann Gaines","w":0.013},{"d":"IA House District 34","rep":"Rob Johnson","w":0.011}],"ss":[{"d":"IA Senate District 23","rep":"Jack Whitver","w":0.584},{"d":"IA Senate District 20","rep":"Mike Pike","w":0.1},{"d":"IA Senate District 22","rep":"Matt Blake","w":0.082},{"d":"IA Senate District 15","rep":"Tony Bisignano","w":0.067},{"d":"IA Senate District 16","rep":"Renee Hardman","w":0.057},{"d":"IA Senate District 21","rep":"Mike Bousselot","w":0.052},{"d":"IA Senate District 18","rep":"Janet Petersen","w":0.034},{"d":"IA Senate District 17","rep":"Izaah Knox","w":0.025}]},"munis":[{"m":"Altoona","p":[{"n":"Q124630277","r":"Mayor, Altoona, IA"}]},{"m":"Ankeny","p":[{"n":"Mark Holm","r":"Mayor, Ankeny, IA"}]},{"m":"Des Moines","p":[{"n":"Connie Boesen","r":"Mayor, Des Moines, IA"}]},{"m":"Johnston","p":[{"n":"Paula Dierenfeld","r":"Mayor, Johnston, IA"}]},{"m":"Mitchellville","p":[{"n":"Jessica Trobaugh","r":"Mayor, Mitchellville, IA"}]},{"m":"Pleasant Hill","p":[{"n":"Sara Kurovski","r":"Mayor, Pleasant Hill, IA"}]},{"m":"Polk City","p":[{"n":"Steve Karsjen","r":"Mayor, Polk City, IA"}]},{"m":"Urbandale","p":[{"n":"Bob Andeweg","r":"Mayor, Urbandale, IA"}]},{"m":"West Des Moines","p":[{"n":"Russ Trimble","r":"Mayor, West Des Moines, IA"}]},{"m":"Windsor Heights","p":[{"n":"Mike Jones","r":"Mayor, Windsor Heights, IA"}]}],"slug":"polk"},"19155":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 16","rep":"David Sieck","w":0.592},{"d":"IA House District 15","rep":"Matt Windschitl","w":0.286},{"d":"IA House District 11","rep":"Craig Williams","w":0.074},{"d":"IA House District 19","rep":"Brent Siegrist","w":0.036},{"d":"IA House District 20","rep":"Josh Turek","w":0.01}],"ss":[{"d":"IA Senate District 8","rep":"Mark Costello","w":0.878},{"d":"IA Senate District 6","rep":"Jason Schultz","w":0.074},{"d":"IA Senate District 10","rep":"Dan Dawson","w":0.046}]},"munis":[{"m":"Carter Lake","p":[{"n":"Ron Cumberledge","r":"Mayor, Carter Lake, IA"}]},{"m":"Council Bluffs","p":[{"n":"Matt Walsh","r":"Mayor, Council Bluffs, IA"}]},{"m":"Macedonia","p":[{"n":"Melia Clark","r":"Mayor, Macedonia, IA"}]},{"m":"Oakland","p":[{"n":"Brant Miller","r":"Mayor, Oakland, IA"}]},{"m":"Underwood","p":[{"n":"Dennis Bardsley","r":"Mayor, Underwood, IA"}]}],"slug":"pottawattamie"},"19157":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 53","rep":"Dean Fisher","w":1.0}],"ss":[{"d":"IA Senate District 27","rep":"Annette Sweeney","w":1.0}]},"munis":[{"m":"Brooklyn","p":[{"n":"Les Taylor","r":"Mayor, Brooklyn, IA"}]},{"m":"Grinnell","p":[{"n":"Dan F. Agnew","r":"Mayor, Grinnell, IA"}]},{"m":"Montezuma","p":[{"n":"Colin Watts","r":"Mayor, Montezuma, IA"}]}],"slug":"poweshiek"},"19159":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 17","rep":"Devon Wood","w":1.0}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":1.0}]},"munis":[],"slug":"ringgold"},"19161":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 7","rep":"Wendy Larson","w":1.0}],"ss":[{"d":"IA Senate District 4","rep":"Tim Kraayenbrink","w":1.0}]},"munis":[{"m":"Lake View","p":[{"n":"John Westergaard","r":"Mayor, Lake View, IA"}]},{"m":"Sac City","p":[{"n":"Scott Bundt","r":"Mayor, Sac City, IA"}]},{"m":"Schaller","p":[{"n":"Sean Ehrp","r":"Mayor, Schaller, IA"}]},{"m":"Wall Lake","p":[{"n":"Jamie Rohlf","r":"Mayor, Wall Lake, IA"}]}],"slug":"sac"},"19163":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 82","rep":"Bobby Kaufmann","w":0.303},{"d":"IA House District 94","rep":"Mike Vondran","w":0.144},{"d":"IA House District 98","rep":"Monica Kurth","w":0.087},{"d":"IA House District 81","rep":"Dan Gosa","w":0.066},{"d":"IA House District 93","rep":"Gary Mohr","w":0.064},{"d":"IA House District 97","rep":"Ken Croken","w":0.019}],"ss":[{"d":"IA Senate District 41","rep":"Kerry Gruenhagen","w":0.37},{"d":"IA Senate District 35","rep":"Mike Zimmer","w":0.316},{"d":"IA Senate District 47","rep":"Scott Webster","w":0.208},{"d":"IA Senate District 49","rep":"Cindy Winckler","w":0.106}]},"munis":[{"m":"Bettendorf","p":[{"n":"Robert S. Gallagher","r":"Mayor, Bettendorf, IA"}]},{"m":"Buffalo","p":[{"n":"Sally Rodriguez","r":"Mayor, Buffalo, IA"}]},{"m":"Davenport","p":[{"n":"Mike Matson","r":"Mayor, Davenport, IA"}]},{"m":"Eldridge","p":[{"n":"Frank King","r":"Mayor, Eldridge, IA"}]},{"m":"Le Claire","p":[{"n":"Dennis Gerard","r":"Mayor, Le Claire, IA"}]},{"m":"Riverdale","p":[{"n":"Anthony Heddlesten","r":"Mayor, Riverdale, IA"}]},{"m":"Walcott","p":[{"n":"John Kostichek","r":"Mayor, Walcott, IA"}]}],"slug":"scott"},"19165":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 11","rep":"Craig Williams","w":0.509},{"d":"IA House District 12","rep":"Steven Holt","w":0.491}],"ss":[{"d":"IA Senate District 6","rep":"Jason Schultz","w":1.0}]},"munis":[{"m":"Harlan","p":[{"n":"Jay Christensen","r":"Mayor, Harlan, IA"}]}],"slug":"shelby"},"19167":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 3","rep":"Tom Jeneary","w":0.552},{"d":"IA House District 4","rep":"Skyler Wheeler","w":0.447}],"ss":[{"d":"IA Senate District 2","rep":"Jeff Taylor","w":0.999}]},"munis":[{"m":"Hawarden","p":[{"n":"Larry Gregg","r":"Mayor, Hawarden, IA"}]},{"m":"Hull","p":[{"n":"Arlan Moss","r":"Mayor, Hull, IA"}]},{"m":"Orange City","p":[{"n":"Deb de Haan","r":"Mayor, Orange City, IA"}]},{"m":"Rock Valley","p":[{"n":"Kevin van Otterloo","r":"Mayor, Rock Valley, IA"}]},{"m":"Sioux Center","p":[{"n":"Dale Vander Berg","r":"Mayor, Sioux Center, IA"}]}],"slug":"sioux"},"19169":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 51","rep":"Brett Barker","w":0.74},{"d":"IA House District 55","rep":"Shannon Latham","w":0.126},{"d":"IA House District 49","rep":"Beth Wessel-Kroeschell","w":0.076},{"d":"IA House District 48","rep":"Chad Behn","w":0.041},{"d":"IA House District 50","rep":"Ross Wilburn","w":0.017}],"ss":[{"d":"IA Senate District 26","rep":"Kara Warme","w":0.74},{"d":"IA Senate District 28","rep":"Dennis Guth","w":0.126},{"d":"IA Senate District 25","rep":"Herman Quirmbach","w":0.093},{"d":"IA Senate District 24","rep":"Jesse Green","w":0.041}]},"munis":[{"m":"Ames","p":[{"n":"John Haila","r":"Mayor, Ames, IA"}]},{"m":"Cambridge","p":[{"n":"Robert Chubbic","r":"Mayor, Cambridge, IA"}]},{"m":"Colo","p":[{"n":"Brent Bappe","r":"Mayor, Colo, IA"}]},{"m":"Maxwell","p":[{"n":"Dale Higgins","r":"Mayor, Maxwell, IA"}]},{"m":"Nevada","p":[{"n":"Brett Barker","r":"Mayor, Nevada, IA"}]},{"m":"Roland","p":[{"n":"Kurtis Bower","r":"Mayor, Roland, IA"}]},{"m":"Slater","p":[{"n":"Taylor Christensen","r":"Mayor, Slater, IA"}]},{"m":"Story City","p":[{"n":"Mike Jensen","r":"Mayor, Story City, IA"}]}],"slug":"story"},"19171":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 53","rep":"Dean Fisher","w":0.799},{"d":"IA House District 76","rep":"Derek Wulf","w":0.2}],"ss":[{"d":"IA Senate District 27","rep":"Annette Sweeney","w":0.799},{"d":"IA Senate District 38","rep":"Dave Sires","w":0.2}]},"munis":[{"m":"Dysart","p":[{"n":"Tim Glenn","r":"Mayor, Dysart, IA"}]},{"m":"Tama","p":[{"n":"Doug Ray","r":"Mayor, Tama, IA"}]},{"m":"Toledo","p":[{"n":"Brian Sokol","r":"Mayor, Toledo, IA"}]},{"m":"Traer","p":[{"n":"Pete Holden","r":"Mayor, Traer, IA"}]}],"slug":"tama"},"19173":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 17","rep":"Devon Wood","w":1.0}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":1.0}]},"munis":[{"m":"Bedford","p":[{"n":"Aaron Hardee","r":"Mayor, Bedford, IA"}]},{"m":"Lenox","p":[{"n":"Melissa Douglas","r":"Mayor, Lenox, IA"}]}],"slug":"taylor"},"19175":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 17","rep":"Devon Wood","w":0.582},{"d":"IA House District 23","rep":"Bubba Sorensen","w":0.418}],"ss":[{"d":"IA Senate District 9","rep":"Tom Shipley","w":0.582},{"d":"IA Senate District 12","rep":"Amy Sinclair","w":0.418}]},"munis":[{"m":"Creston","p":[{"n":"Waylon Clayton","r":"Mayor, Creston, IA"}]}],"slug":"union"},"19177":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 87","rep":"Jeff Shipley","w":1.0}],"ss":[{"d":"IA Senate District 44","rep":"Adrian Dickey","w":1.0}]},"munis":[{"m":"Farmington","p":[{"n":"Janet Browning","r":"Mayor, Farmington, IA"}]}],"slug":"van-buren"},"19179":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 25","rep":"Hans Wilz","w":0.579},{"d":"IA House District 26","rep":"Austin Harris","w":0.421}],"ss":[{"d":"IA Senate District 13","rep":"Cherielynn Westrich","w":1.0}]},"munis":[{"m":"Ottumwa","p":[{"n":"Tom X. Lazio","r":"Mayor, Ottumwa, IA"}]}],"slug":"wapello"},"19181":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":0.999}],"sh":[{"d":"IA House District 22","rep":"Samantha Fett","w":0.616},{"d":"IA House District 21","rep":"Brooke Boden","w":0.384}],"ss":[{"d":"IA Senate District 11","rep":"Julian Garrett","w":1.0}]},"munis":[{"m":"Indianola","p":[{"n":"Stephanie Erickson","r":"Mayor, Indianola, IA"}]},{"m":"Norwalk","p":[{"n":"Tom Phillips","r":"Mayor, Norwalk, IA"}]}],"slug":"warren"},"19183":{"county":[],"districts":{"cd":[{"d":"IA-01","rep":"Mariannette Miller-Meeks","w":1.0}],"sh":[{"d":"IA House District 92","rep":"Heather Hora","w":1.0}],"ss":[{"d":"IA Senate District 46","rep":"Dawn Driscoll","w":1.0}]},"munis":[{"m":"Kalona","p":[{"n":"Mark Robe","r":"Mayor, Kalona, IA"}]},{"m":"Riverside","p":[{"n":"Allen Schneider","r":"Mayor, Riverside, IA"}]},{"m":"Washington","p":[{"n":"Jaron Rosien","r":"Mayor, Washington, IA"}]},{"m":"Wellman","p":[{"n":"Ryan Miller","r":"Mayor, Wellman, IA"}]}],"slug":"washington"},"19185":{"county":[],"districts":{"cd":[{"d":"IA-03","rep":"Zachary Nunn","w":1.0}],"sh":[{"d":"IA House District 24","rep":"Sam Wengryn","w":1.0}],"ss":[{"d":"IA Senate District 12","rep":"Amy Sinclair","w":1.0}]},"munis":[{"m":"Corydon","p":[{"n":"Nathan Bennett","r":"Mayor, Corydon, IA"}]}],"slug":"wayne"},"19187":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 8","rep":"Ann Meyer","w":0.527},{"d":"IA House District 7","rep":"Wendy Larson","w":0.473}],"ss":[{"d":"IA Senate District 4","rep":"Tim Kraayenbrink","w":1.0}]},"munis":[{"m":"Badger","p":[{"n":"Chris Wendell","r":"Mayor, Badger, IA"}]},{"m":"Dayton","p":[{"n":"Dave Bills","r":"Mayor, Dayton, IA"}]},{"m":"Fort Dodge","p":[{"n":"Matt Bemrich","r":"Mayor, Fort Dodge, IA"}]},{"m":"Gowrie","p":[{"n":"Bruce Towne","r":"Mayor, Gowrie, IA"}]}],"slug":"webster"},"19189":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 9","rep":"Henry Stone","w":1.0}],"ss":[{"d":"IA Senate District 5","rep":"Dave Rowley","w":1.0}]},"munis":[{"m":"Buffalo Center","p":[{"n":"Rick Hofbauer","r":"Mayor, Buffalo Center, IA"}]},{"m":"Lake Mills","p":[{"n":"Mark Peterson","r":"Mayor, Lake Mills, IA"}]}],"slug":"winnebago"},"19191":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 63","rep":"Michael Bergan","w":1.0}],"ss":[{"d":"IA Senate District 32","rep":"Mike Klimesh","w":1.0}]},"munis":[{"m":"Calmar","p":[{"n":"Keith Frana","r":"Mayor, Calmar, IA"}]},{"m":"Decorah","p":[{"n":"Lorraine Borowski","r":"Mayor, Decorah, IA"}]},{"m":"Fort Atkinson","p":[{"n":"Paul Herold","r":"Mayor, Fort Atkinson, IA"}]}],"slug":"winneshiek"},"19193":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":0.999}],"sh":[{"d":"IA House District 13","rep":"Travis Sitzmann","w":0.769},{"d":"IA House District 2","rep":"Bob Henderson","w":0.111},{"d":"IA House District 14","rep":"Jacob Bossman","w":0.104},{"d":"IA House District 1","rep":"J.D. Scholten","w":0.016}],"ss":[{"d":"IA Senate District 7","rep":"Kevin Alons","w":0.873},{"d":"IA Senate District 1","rep":"Catelin Drey","w":0.127}]},"munis":[{"m":"Correctionville","p":[{"n":"Ken Bauer","r":"Mayor, Correctionville, IA"}]},{"m":"Lawton","p":[{"n":"Jesse Pedersen","r":"Mayor, Lawton, IA"}]},{"m":"Sergeant Bluff","p":[{"n":"Jon Winkel","r":"Mayor, Sergeant Bluff, IA"}]},{"m":"Sioux City","p":[{"n":"Bob Scott","r":"Mayor, Sioux City, IA"}]},{"m":"Sloan","p":[{"n":"Charles Thorpe","r":"Mayor, Sloan, IA"}]}],"slug":"woodbury"},"19195":{"county":[],"districts":{"cd":[{"d":"IA-02","rep":"Ashley Hinson","w":1.0}],"sh":[{"d":"IA House District 60","rep":"Jane Bloomingdale","w":1.0}],"ss":[{"d":"IA Senate District 30","rep":"Doug Campbell","w":1.0}]},"munis":[{"m":"Fertile","p":[{"n":"Nick Bailey","r":"Mayor, Fertile, IA"}]}],"slug":"worth"},"19197":{"county":[],"districts":{"cd":[{"d":"IA-04","rep":"Randy Feenstra","w":1.0}],"sh":[{"d":"IA House District 56","rep":"Mark Thompson","w":0.692},{"d":"IA House District 55","rep":"Shannon Latham","w":0.308}],"ss":[{"d":"IA Senate District 28","rep":"Dennis Guth","w":1.0}]},"munis":[{"m":"Belmond","p":[{"n":"Frank Beminio","r":"Mayor, Belmond, IA"}]},{"m":"Clarion","p":[{"n":"Rodney Heiden","r":"Mayor, Clarion, IA"}]},{"m":"Eagle Grove","p":[{"n":"Michael Boyd","r":"Mayor, Eagle Grove, IA"}]}],"slug":"wright"},"20001":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 9","rep":"Fred Gardner","w":1.0}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":1.0}]},"munis":[],"slug":"allen"},"20003":{"county":[],"districts":{"cd":[{"d":"KS-03","rep":"Sharice Davids","w":0.999}],"sh":[{"d":"KS House District 9","rep":"Fred Gardner","w":1.0}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":1.0}]},"munis":[],"slug":"anderson"},"20005":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 63","rep":"Allen Reavis","w":1.0}],"ss":[{"d":"KS Senate District 1","rep":"Craig Bowser","w":1.0}]},"munis":[],"slug":"atchison"},"20007":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 116","rep":"Kyle Hoffman","w":1.0}],"ss":[{"d":"KS Senate District 34","rep":"Mike Murphy","w":1.0}]},"munis":[],"slug":"barber"},"20009":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 112","rep":"Sherri Brantley","w":0.847},{"d":"KS House District 113","rep":"Brett Fairchild","w":0.153}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"barton"},"20011":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 4","rep":"Rick James","w":1.0}],"ss":[{"d":"KS Senate District 13","rep":"Tim Shallenburger","w":1.0}]},"munis":[],"slug":"bourbon"},"20013":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 62","rep":"Sean Willcott","w":1.0}],"ss":[{"d":"KS Senate District 1","rep":"Craig Bowser","w":1.0}]},"munis":[],"slug":"brown"},"20015":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 75","rep":"Will Carpenter","w":0.521},{"d":"KS House District 12","rep":"Doug Blex","w":0.342},{"d":"KS House District 77","rep":"Kristey Williams","w":0.117},{"d":"KS House District 99","rep":"Susan Humphries","w":0.011},{"d":"KS House District 85","rep":"Steve Brunk","w":0.006}],"ss":[{"d":"KS Senate District 14","rep":"Mike Fagg","w":0.594},{"d":"KS Senate District 32","rep":"Larry Alley","w":0.256},{"d":"KS Senate District 16","rep":"Ty Masterson","w":0.15}]},"munis":[{"m":"Andover","p":[{"n":"Ronnie Price","r":"Mayor, Andover, KS"}]}],"slug":"butler"},"20017":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 13","rep":"Duane Droge","w":1.0}],"ss":[{"d":"KS Senate District 14","rep":"Mike Fagg","w":1.0}]},"munis":[],"slug":"chase"},"20019":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 12","rep":"Doug Blex","w":1.0}],"ss":[{"d":"KS Senate District 15","rep":"Virgil Peck","w":1.0}]},"munis":[],"slug":"chautauqua"},"20021":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 1","rep":"Dale Helwig","w":1.0}],"ss":[{"d":"KS Senate District 13","rep":"Tim Shallenburger","w":1.0}]},"munis":[],"slug":"cherokee"},"20023":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 120","rep":"Adam Smith","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"cheyenne"},"20025":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 115","rep":"Gary White","w":1.0}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"clark"},"20027":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 64","rep":"Bill Bloom","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"clay"},"20029":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 64","rep":"Bill Bloom","w":0.519},{"d":"KS House District 107","rep":"Dawn Wolf","w":0.481}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"cloud"},"20031":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 76","rep":"Brad Barrett","w":1.0}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":1.0}]},"munis":[{"m":"Burlington","p":[{"n":"Robert S. Luke (Stan)","r":"Mayor, Burlington, KS"}]}],"slug":"coffey"},"20033":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":0.998}],"sh":[{"d":"KS House District 116","rep":"Kyle Hoffman","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[{"m":"Coldwater","p":[{"n":"Joe Ceballos","r":"Mayor, Coldwater, KS"}]}],"slug":"comanche"},"20035":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 12","rep":"Doug Blex","w":0.665},{"d":"KS House District 79","rep":"Web Roth","w":0.271},{"d":"KS House District 80","rep":"Bill Rhiley","w":0.064}],"ss":[{"d":"KS Senate District 32","rep":"Larry Alley","w":1.0}]},"munis":[{"m":"Arkansas City","p":[{"n":"Jay Warren","r":"Mayor, Arkansas City, KS"}]}],"slug":"cowley"},"20037":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 2","rep":"Ken Collins","w":0.885},{"d":"KS House District 3","rep":"Chuck Smith","w":0.115}],"ss":[{"d":"KS Senate District 13","rep":"Tim Shallenburger","w":1.0}]},"munis":[{"m":"Pittsburg","p":[{"n":"Stu Hite","r":"Mayor, Pittsburg, KS"}]}],"slug":"crawford"},"20039":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 120","rep":"Adam Smith","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"decatur"},"20041":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":0.999}],"sh":[{"d":"KS House District 70","rep":"Greg Wilson","w":0.819},{"d":"KS House District 64","rep":"Bill Bloom","w":0.181}],"ss":[{"d":"KS Senate District 24","rep":"Scott Hill","w":1.0}]},"munis":[],"slug":"dickinson"},"20043":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.999}],"sh":[{"d":"KS House District 63","rep":"Allen Reavis","w":0.999}],"ss":[{"d":"KS Senate District 1","rep":"Craig Bowser","w":0.999}]},"munis":[],"slug":"doniphan"},"20045":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.867},{"d":"KS-01","rep":"Tracey Mann","w":0.133}],"sh":[{"d":"KS House District 5","rep":"Courtney Sappington","w":0.372},{"d":"KS House District 47","rep":"Ronald Ellis","w":0.244},{"d":"KS House District 117","rep":"Adam Turk","w":0.155},{"d":"KS House District 45","rep":"Mike Amyx","w":0.099},{"d":"KS House District 42","rep":"Lance Neelly","w":0.051},{"d":"KS House District 43","rep":"Bill Sutton","w":0.032},{"d":"KS House District 10","rep":"Suzanne Wikle","w":0.019},{"d":"KS House District 44","rep":"Barbara Ballard","w":0.016},{"d":"KS House District 46","rep":"Brooklynne Mosley","w":0.013}],"ss":[{"d":"KS Senate District 3","rep":"Rick Kloos","w":0.526},{"d":"KS Senate District 9","rep":"Beverly Gossage","w":0.279},{"d":"KS Senate District 19","rep":"Patrick Schmidt","w":0.104},{"d":"KS Senate District 2","rep":"Marci Francisco","w":0.091}]},"munis":[{"m":"Lawrence","p":[{"n":"Bart Littlejohn","r":"Mayor, Lawrence, KS"}]}],"slug":"douglas"},"20047":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 115","rep":"Gary White","w":0.826},{"d":"KS House District 122","rep":"Lon Pishny","w":0.174}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"edwards"},"20049":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 12","rep":"Doug Blex","w":1.0}],"ss":[{"d":"KS Senate District 15","rep":"Virgil Peck","w":1.0}]},"munis":[],"slug":"elk"},"20051":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 110","rep":"Ken Rahjes","w":0.926},{"d":"KS House District 111","rep":"Barb Wasinger","w":0.074}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[{"m":"Hays","p":[{"n":"Shaun Musil","r":"Mayor, Hays, KS"}]}],"slug":"ellis"},"20053":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 109","rep":"Troy Waymaster","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"ellsworth"},"20055":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 122","rep":"Lon Pishny","w":0.993},{"d":"KS House District 123","rep":"Bob Lewis","w":0.007}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[{"m":"Holcomb","p":[{"n":"Nicole Faulconer","r":"Mayor, Holcomb, KS"}]}],"slug":"finney"},"20057":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 115","rep":"Gary White","w":0.987},{"d":"KS House District 119","rep":"Jason Goetz","w":0.013}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"ford"},"20059":{"county":[],"districts":{"cd":[{"d":"KS-03","rep":"Sharice Davids","w":1.0}],"sh":[{"d":"KS House District 59","rep":"Rebecca Schmoe","w":0.938},{"d":"KS House District 5","rep":"Courtney Sappington","w":0.062}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":0.541},{"d":"KS Senate District 3","rep":"Rick Kloos","w":0.459}]},"munis":[{"m":"Wellsville","p":[{"n":"Bill Lytle","r":"Mayor, Wellsville, KS"}]}],"slug":"franklin"},"20061":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.997}],"sh":[{"d":"KS House District 68","rep":"Nate Butler","w":0.756},{"d":"KS House District 65","rep":"Shawn Chauncey","w":0.243}],"ss":[{"d":"KS Senate District 17","rep":"Mike Argabright","w":1.0}]},"munis":[{"m":"Junction City","p":[{"n":"Pat Landes","r":"Mayor, Junction City, KS"}]}],"slug":"geary"},"20063":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"gove"},"20065":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 110","rep":"Ken Rahjes","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"graham"},"20067":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 124","rep":"Marty Long","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[{"m":"Ulysses","p":[{"n":"Tim McCauley","r":"Mayor, Ulysses, KS"}]}],"slug":"grant"},"20069":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 115","rep":"Gary White","w":1.0}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"gray"},"20071":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"greeley"},"20073":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":0.999}],"sh":[{"d":"KS House District 13","rep":"Duane Droge","w":1.0}],"ss":[{"d":"KS Senate District 14","rep":"Mike Fagg","w":1.0}]},"munis":[],"slug":"greenwood"},"20075":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 124","rep":"Marty Long","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"hamilton"},"20077":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 116","rep":"Kyle Hoffman","w":1.0}],"ss":[{"d":"KS Senate District 32","rep":"Larry Alley","w":1.0}]},"munis":[],"slug":"harper"},"20079":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":0.999}],"sh":[{"d":"KS House District 74","rep":"Mike King","w":0.698},{"d":"KS House District 72","rep":"Avery Anderson","w":0.302}],"ss":[{"d":"KS Senate District 31","rep":"Stephen Owens","w":1.0}]},"munis":[],"slug":"harvey"},"20081":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 124","rep":"Marty Long","w":1.0}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"haskell"},"20083":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 122","rep":"Lon Pishny","w":1.0}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"hodgeman"},"20085":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":0.873},{"d":"KS-02","rep":"Derek Schmidt","w":0.127}],"sh":[{"d":"KS House District 61","rep":"Francis Awerkamp","w":0.423},{"d":"KS House District 62","rep":"Sean Willcott","w":0.418},{"d":"KS House District 47","rep":"Ronald Ellis","w":0.159}],"ss":[{"d":"KS Senate District 1","rep":"Craig Bowser","w":1.0}]},"munis":[],"slug":"jackson"},"20087":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":0.996}],"sh":[{"d":"KS House District 47","rep":"Ronald Ellis","w":0.886},{"d":"KS House District 42","rep":"Lance Neelly","w":0.114}],"ss":[{"d":"KS Senate District 18","rep":"Kenny Titus","w":0.666},{"d":"KS Senate District 1","rep":"Craig Bowser","w":0.334}]},"munis":[],"slug":"jefferson"},"20089":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 106","rep":"Lisa Moser","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"jewell"},"20091":{"county":[],"districts":{"cd":[{"d":"KS-03","rep":"Sharice Davids","w":0.999}],"sh":[{"d":"KS House District 121","rep":"Mike Storm","w":0.141},{"d":"KS House District 27","rep":"Sean Tarwater","w":0.106},{"d":"KS House District 43","rep":"Bill Sutton","w":0.095},{"d":"KS House District 117","rep":"Adam Turk","w":0.084},{"d":"KS House District 5","rep":"Courtney Sappington","w":0.082},{"d":"KS House District 26","rep":"Chip VanHouden","w":0.071},{"d":"KS House District 39","rep":"Angela Stiens","w":0.041},{"d":"KS House District 30","rep":"Laura Williams","w":0.04},{"d":"KS House District 15","rep":"Lauren Bohi","w":0.037},{"d":"KS House District 14","rep":"Charlotte Esau","w":0.032},{"d":"KS House District 17","rep":"Jo Ella Hoye","w":0.03},{"d":"KS House District 20","rep":"Mari-Lynn Poskin","w":0.025},{"d":"KS House District 8","rep":"Chris Croft","w":0.022},{"d":"KS House District 24","rep":"Jarrod Ousley","w":0.018},{"d":"KS House District 28","rep":"Carl Turner","w":0.016},{"d":"KS House District 18","rep":"Cindy Neighbor","w":0.016},{"d":"KS House District 29","rep":"Heather Meyer","w":0.015},{"d":"KS House District 25","rep":"Rui Xu","w":0.015},{"d":"KS House District 19","rep":"Stephanie Sawyer-Clayton","w":0.015},{"d":"KS House District 16","rep":"Linda Featherston","w":0.015},{"d":"KS House District 108","rep":"Brandon Woodard","w":0.014},{"d":"KS House District 49","rep":"Nikki McDonald","w":0.013},{"d":"KS House District 23","rep":"Susan Ruiz","w":0.013},{"d":"KS House District 21","rep":"Jerry Stogsdill","w":0.012},{"d":"KS House District 48","rep":"Dan Osman","w":0.012},{"d":"KS House District 78","rep":"Robyn Essex","w":0.01},{"d":"KS House District 22","rep":"Lindsay Vaughn","w":0.01}],"ss":[{"d":"KS Senate District 37","rep":"Doug Shane","w":0.227},{"d":"KS Senate District 9","rep":"Beverly Gossage","w":0.171},{"d":"KS Senate District 10","rep":"Mike Thompson","w":0.118},{"d":"KS Senate District 23","rep":"Adam Thomas","w":0.114},{"d":"KS Senate District 11","rep":"Kellie Warren","w":0.109},{"d":"KS Senate District 35","rep":"T.J. Rose","w":0.104},{"d":"KS Senate District 21","rep":"Dinah Sykes","w":0.06},{"d":"KS Senate District 8","rep":"Cindy Holscher","w":0.047},{"d":"KS Senate District 7","rep":"Ethan Corson","w":0.044},{"d":"KS Senate District 6","rep":"Pat Pettey","w":0.006}]},"munis":[{"m":"Gardner","p":[{"n":"Steve Shute","r":"Mayor, Gardner, KS"}]},{"m":"Lenexa","p":[{"n":"Julie Sayers","r":"Mayor, Lenexa, KS"}]},{"m":"Olathe","p":[{"n":"John Bacon","r":"Mayor, Olathe, KS"}]},{"m":"Overland Park","p":[{"n":"Carl R. Gerlach","r":"Mayor, Overland Park, KS"}]}],"slug":"johnson"},"20093":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 122","rep":"Lon Pishny","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"kearny"},"20095":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 114","rep":"Kevin Schwertfeger","w":1.0}],"ss":[{"d":"KS Senate District 34","rep":"Mike Murphy","w":1.0}]},"munis":[],"slug":"kingman"},"20097":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 116","rep":"Kyle Hoffman","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[{"m":"Greensburg","p":[{"n":"Matt Christenson","r":"Mayor, Greensburg, KS"}]}],"slug":"kiowa"},"20099":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 7","rep":"Dan Goddard","w":0.743},{"d":"KS House District 1","rep":"Dale Helwig","w":0.257}],"ss":[{"d":"KS Senate District 15","rep":"Virgil Peck","w":1.0}]},"munis":[{"m":"Parsons","p":[{"n":"Eric Strait","r":"Mayor, Parsons, KS"}]}],"slug":"labette"},"20101":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"lane"},"20103":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.997}],"sh":[{"d":"KS House District 42","rep":"Lance Neelly","w":0.471},{"d":"KS House District 38","rep":"Tim Johnson","w":0.295},{"d":"KS House District 41","rep":"Pat Proctor","w":0.139},{"d":"KS House District 40","rep":"Dave Buehler","w":0.095}],"ss":[{"d":"KS Senate District 9","rep":"Beverly Gossage","w":0.429},{"d":"KS Senate District 1","rep":"Craig Bowser","w":0.389},{"d":"KS Senate District 5","rep":"Jeff Klemp","w":0.181}]},"munis":[{"m":"Lansing","p":[{"n":"Tony McNeill","r":"Mayor, Lansing, KS"}]},{"m":"Leavenworth","p":[{"n":"Griff Martin","r":"Mayor, Leavenworth, KS"}]}],"slug":"leavenworth"},"20105":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 109","rep":"Troy Waymaster","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"lincoln"},"20107":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 4","rep":"Rick James","w":0.894},{"d":"KS House District 9","rep":"Fred Gardner","w":0.106}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":1.0}]},"munis":[],"slug":"linn"},"20109":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"logan"},"20111":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 76","rep":"Brad Barrett","w":0.668},{"d":"KS House District 13","rep":"Duane Droge","w":0.189},{"d":"KS House District 60","rep":"Mark Schreiber","w":0.143}],"ss":[{"d":"KS Senate District 17","rep":"Mike Argabright","w":1.0}]},"munis":[{"m":"Emporia","p":[{"n":"Erren Harter","r":"Mayor, Emporia, KS"}]}],"slug":"lyon"},"20113":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 73","rep":"Rick Wilborn","w":0.641},{"d":"KS House District 74","rep":"Mike King","w":0.199},{"d":"KS House District 70","rep":"Greg Wilson","w":0.08},{"d":"KS House District 104","rep":"Paul Waggoner","w":0.08}],"ss":[{"d":"KS Senate District 14","rep":"Mike Fagg","w":1.0}]},"munis":[],"slug":"mcpherson"},"20115":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 70","rep":"Greg Wilson","w":0.661},{"d":"KS House District 74","rep":"Mike King","w":0.339}],"ss":[{"d":"KS Senate District 14","rep":"Mike Fagg","w":1.0}]},"munis":[],"slug":"marion"},"20117":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 106","rep":"Lisa Moser","w":1.0}],"ss":[{"d":"KS Senate District 1","rep":"Craig Bowser","w":0.762},{"d":"KS Senate District 36","rep":"Elaine Bowers","w":0.237}]},"munis":[],"slug":"marshall"},"20119":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 115","rep":"Gary White","w":0.743},{"d":"KS House District 125","rep":"Shannon Francis","w":0.257}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"meade"},"20121":{"county":[],"districts":{"cd":[{"d":"KS-03","rep":"Sharice Davids","w":0.999}],"sh":[{"d":"KS House District 6","rep":"Samantha Poetter Parshall","w":0.494},{"d":"KS House District 5","rep":"Courtney Sappington","w":0.264},{"d":"KS House District 9","rep":"Fred Gardner","w":0.24}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":0.572},{"d":"KS Senate District 37","rep":"Doug Shane","w":0.415},{"d":"KS Senate District 23","rep":"Adam Thomas","w":0.012}]},"munis":[],"slug":"miami"},"20123":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 107","rep":"Dawn Wolf","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"mitchell"},"20125":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 11","rep":"Ron Bryce","w":0.556},{"d":"KS House District 12","rep":"Doug Blex","w":0.444}],"ss":[{"d":"KS Senate District 15","rep":"Virgil Peck","w":1.0}]},"munis":[],"slug":"montgomery"},"20127":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 68","rep":"Nate Butler","w":1.0}],"ss":[{"d":"KS Senate District 17","rep":"Mike Argabright","w":1.0}]},"munis":[{"m":"Council Grove","p":[{"n":"Debi Schwerdtfeger","r":"Mayor, Council Grove, KS"}]}],"slug":"morris"},"20129":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 124","rep":"Marty Long","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"morton"},"20131":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.999}],"sh":[{"d":"KS House District 62","rep":"Sean Willcott","w":1.0}],"ss":[{"d":"KS Senate District 1","rep":"Craig Bowser","w":1.0}]},"munis":[{"m":"Bern","p":[{"n":"Ralph Schiffbauer","r":"Mayor, Bern, KS"}]}],"slug":"nemaha"},"20133":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 2","rep":"Ken Collins","w":0.751},{"d":"KS House District 7","rep":"Dan Goddard","w":0.249}],"ss":[{"d":"KS Senate District 15","rep":"Virgil Peck","w":1.0}]},"munis":[],"slug":"neosho"},"20135":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"ness"},"20137":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 110","rep":"Ken Rahjes","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"norton"},"20139":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 76","rep":"Brad Barrett","w":0.592},{"d":"KS House District 54","rep":"Ken Corbet","w":0.408}],"ss":[{"d":"KS Senate District 3","rep":"Rick Kloos","w":1.0}]},"munis":[],"slug":"osage"},"20141":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 109","rep":"Troy Waymaster","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"osborne"},"20143":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 107","rep":"Dawn Wolf","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"ottawa"},"20145":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":0.535},{"d":"KS-01","rep":"Tracey Mann","w":0.465}],"sh":[{"d":"KS House District 113","rep":"Brett Fairchild","w":0.526},{"d":"KS House District 122","rep":"Lon Pishny","w":0.474}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"pawnee"},"20147":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 110","rep":"Ken Rahjes","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":0.6},{"d":"KS Senate District 40","rep":"Rick Billinger","w":0.4}]},"munis":[],"slug":"phillips"},"20149":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":0.998}],"sh":[{"d":"KS House District 61","rep":"Francis Awerkamp","w":0.953},{"d":"KS House District 51","rep":"Megan Steele","w":0.047}],"ss":[{"d":"KS Senate District 18","rep":"Kenny Titus","w":1.0}]},"munis":[],"slug":"pottawatomie"},"20151":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 116","rep":"Kyle Hoffman","w":0.525},{"d":"KS House District 114","rep":"Kevin Schwertfeger","w":0.475}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"pratt"},"20153":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 120","rep":"Adam Smith","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"rawlins"},"20155":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 114","rep":"Kevin Schwertfeger","w":0.742},{"d":"KS House District 101","rep":"Joe Seiwert","w":0.174},{"d":"KS House District 104","rep":"Paul Waggoner","w":0.071},{"d":"KS House District 102","rep":"Kyler Sweely","w":0.013}],"ss":[{"d":"KS Senate District 34","rep":"Mike Murphy","w":1.0}]},"munis":[],"slug":"reno"},"20157":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 106","rep":"Lisa Moser","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"republic"},"20159":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 113","rep":"Brett Fairchild","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"rice"},"20161":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 64","rep":"Bill Bloom","w":0.736},{"d":"KS House District 51","rep":"Megan Steele","w":0.118},{"d":"KS House District 68","rep":"Nate Butler","w":0.102},{"d":"KS House District 67","rep":"Angel Roeser","w":0.029},{"d":"KS House District 66","rep":"Sydney Carlin","w":0.01}],"ss":[{"d":"KS Senate District 22","rep":"Brad Starnes","w":1.0}]},"munis":[{"m":"Manhattan","p":[{"n":"Mark Hatesohl","r":"Mayor, Manhattan, KS"}]}],"slug":"riley"},"20163":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 110","rep":"Ken Rahjes","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"rooks"},"20165":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 113","rep":"Brett Fairchild","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[{"m":"Liebenthal","p":[{"n":"Darrell Warner","r":"Mayor, Liebenthal, KS"}]}],"slug":"rush"},"20167":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 109","rep":"Troy Waymaster","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"russell"},"20169":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 69","rep":"Clarke Sanders","w":0.535},{"d":"KS House District 107","rep":"Dawn Wolf","w":0.251},{"d":"KS House District 71","rep":"Steve Howe","w":0.214}],"ss":[{"d":"KS Senate District 24","rep":"Scott Hill","w":1.0}]},"munis":[],"slug":"saline"},"20171":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"scott"},"20173":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 93","rep":"Brian Bergkamp","w":0.292},{"d":"KS House District 101","rep":"Joe Seiwert","w":0.166},{"d":"KS House District 90","rep":"Steve Huebert","w":0.161},{"d":"KS House District 91","rep":"Emil Bergquist","w":0.043},{"d":"KS House District 85","rep":"Steve Brunk","w":0.041},{"d":"KS House District 81","rep":"Blake Carpenter","w":0.041},{"d":"KS House District 82","rep":"Leah Howell","w":0.038},{"d":"KS House District 72","rep":"Avery Anderson","w":0.036},{"d":"KS House District 97","rep":"Nick Hoheisel","w":0.031},{"d":"KS House District 98","rep":"Cyndi Howerton","w":0.021},{"d":"KS House District 87","rep":"Susan Estes","w":0.014},{"d":"KS House District 94","rep":"Leo Delperdang","w":0.013},{"d":"KS House District 89","rep":"K.C. Ohaebosim","w":0.013},{"d":"KS House District 88","rep":"Sandy Pickert","w":0.012},{"d":"KS House District 105","rep":"Jill Ward","w":0.01},{"d":"KS House District 103","rep":"Angela Martinez","w":0.01},{"d":"KS House District 95","rep":"Tom Sawyer","w":0.009},{"d":"KS House District 96","rep":"Tom Kessler","w":0.008},{"d":"KS House District 99","rep":"Susan Humphries","w":0.008},{"d":"KS House District 92","rep":"John Carmichael","w":0.007},{"d":"KS House District 100","rep":"Dan Hawkins","w":0.007},{"d":"KS House District 84","rep":"Ford Carr","w":0.006},{"d":"KS House District 86","rep":"Abi Boatman","w":0.006},{"d":"KS House District 83","rep":"Henry Helgerson","w":0.005}],"ss":[{"d":"KS Senate District 26","rep":"Chase Blasi","w":0.476},{"d":"KS Senate District 31","rep":"Stephen Owens","w":0.194},{"d":"KS Senate District 30","rep":"Renee Erickson","w":0.114},{"d":"KS Senate District 16","rep":"Ty Masterson","w":0.093},{"d":"KS Senate District 28","rep":"Mike Petersen","w":0.044},{"d":"KS Senate District 27","rep":"Joe Claeys","w":0.036},{"d":"KS Senate District 29","rep":"Oletha Faust-Goudeau","w":0.022},{"d":"KS Senate District 25","rep":"Silas Miller","w":0.021}]},"munis":[{"m":"Wichita","p":[{"n":"Lily Wu","r":"Mayor, Wichita, KS"}]}],"slug":"sedgwick"},"20175":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 125","rep":"Shannon Francis","w":1.0}],"ss":[{"d":"KS Senate District 38","rep":"Ron Ryckman","w":1.0}]},"munis":[],"slug":"seward"},"20177":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 54","rep":"Ken Corbet","w":0.427},{"d":"KS House District 50","rep":"Kyle McNorton","w":0.38},{"d":"KS House District 52","rep":"Jesse Borjon","w":0.06},{"d":"KS House District 56","rep":"Virgil Weigel","w":0.04},{"d":"KS House District 57","rep":"John Alcala","w":0.035},{"d":"KS House District 58","rep":"Alexis Simmons","w":0.025},{"d":"KS House District 53","rep":"Kirk Haskins","w":0.02},{"d":"KS House District 55","rep":"Tobias Schlingensiepen","w":0.012}],"ss":[{"d":"KS Senate District 18","rep":"Kenny Titus","w":0.446},{"d":"KS Senate District 20","rep":"Brenda Dietrich","w":0.311},{"d":"KS Senate District 3","rep":"Rick Kloos","w":0.163},{"d":"KS Senate District 19","rep":"Patrick Schmidt","w":0.08}]},"munis":[{"m":"Topeka","p":[{"n":"Spencer L. Duncan","r":"Mayor, Topeka, KS"}]}],"slug":"shawnee"},"20179":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"sheridan"},"20181":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 120","rep":"Adam Smith","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"sherman"},"20183":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 109","rep":"Troy Waymaster","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"smith"},"20185":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 113","rep":"Brett Fairchild","w":1.0}],"ss":[{"d":"KS Senate District 33","rep":"Tory Marie Blew","w":1.0}]},"munis":[],"slug":"stafford"},"20187":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 124","rep":"Marty Long","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"stanton"},"20189":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 124","rep":"Marty Long","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"stevens"},"20191":{"county":[],"districts":{"cd":[{"d":"KS-04","rep":"Ron Estes","w":1.0}],"sh":[{"d":"KS House District 79","rep":"Web Roth","w":0.383},{"d":"KS House District 80","rep":"Bill Rhiley","w":0.324},{"d":"KS House District 116","rep":"Kyle Hoffman","w":0.283},{"d":"KS House District 82","rep":"Leah Howell","w":0.009}],"ss":[{"d":"KS Senate District 32","rep":"Larry Alley","w":0.997}]},"munis":[],"slug":"sumner"},"20193":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 120","rep":"Adam Smith","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"thomas"},"20195":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"trego"},"20197":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.998}],"sh":[{"d":"KS House District 51","rep":"Megan Steele","w":1.0}],"ss":[{"d":"KS Senate District 20","rep":"Brenda Dietrich","w":1.0}]},"munis":[],"slug":"wabaunsee"},"20199":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 120","rep":"Adam Smith","w":1.0}],"ss":[{"d":"KS Senate District 40","rep":"Rick Billinger","w":1.0}]},"munis":[],"slug":"wallace"},"20201":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 106","rep":"Lisa Moser","w":1.0}],"ss":[{"d":"KS Senate District 36","rep":"Elaine Bowers","w":1.0}]},"munis":[],"slug":"washington"},"20203":{"county":[],"districts":{"cd":[{"d":"KS-01","rep":"Tracey Mann","w":1.0}],"sh":[{"d":"KS House District 118","rep":"Jim Minnix","w":1.0}],"ss":[{"d":"KS Senate District 39","rep":"Bill Clifford","w":1.0}]},"munis":[],"slug":"wichita"},"20205":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.999}],"sh":[{"d":"KS House District 13","rep":"Duane Droge","w":1.0}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":1.0}]},"munis":[],"slug":"wilson"},"20207":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":1.0}],"sh":[{"d":"KS House District 13","rep":"Duane Droge","w":1.0}],"ss":[{"d":"KS Senate District 12","rep":"Caryn Tyson","w":1.0}]},"munis":[],"slug":"woodson"},"20209":{"county":[],"districts":{"cd":[{"d":"KS-02","rep":"Derek Schmidt","w":0.598},{"d":"KS-03","rep":"Sharice Davids","w":0.399}],"sh":[{"d":"KS House District 33","rep":"Carolyn Caiharr","w":0.291},{"d":"KS House District 36","rep":"Lynn Melton","w":0.199},{"d":"KS House District 37","rep":"Melissa Oropeza","w":0.176},{"d":"KS House District 35","rep":"Wanda Paige","w":0.12},{"d":"KS House District 38","rep":"Tim Johnson","w":0.08},{"d":"KS House District 31","rep":"Louis Ruiz","w":0.055},{"d":"KS House District 34","rep":"Val Winn","w":0.045},{"d":"KS House District 32","rep":"Pam Curtis","w":0.034}],"ss":[{"d":"KS Senate District 6","rep":"Pat Pettey","w":0.304},{"d":"KS Senate District 5","rep":"Jeff Klemp","w":0.265},{"d":"KS Senate District 4","rep":"David Haley","w":0.254},{"d":"KS Senate District 9","rep":"Beverly Gossage","w":0.175}]},"munis":[{"m":"Kansas City","p":[{"n":"Tyrone Garner","r":"Mayor, Kansas City, KS"}]}],"slug":"wyandotte"},"21001":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 21","rep":"Amy Neighbors","w":1.0}],"ss":[{"d":"KY Senate District 16","rep":"Max Wise","w":1.0}]},"munis":[{"m":"Columbia","p":[{"n":"Pamela Hoots","r":"Mayor, Columbia, KY"}]}],"slug":"adair"},"21003":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.992},{"d":"KY-02","rep":"Brett Guthrie","w":0.007}],"sh":[{"d":"KY House District 22","rep":"Shawn McPherson","w":1.0}],"ss":[{"d":"KY Senate District 16","rep":"Max Wise","w":1.0}]},"munis":[],"slug":"allen"},"21005":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.515},{"d":"KY-01","rep":"James Comer","w":0.483}],"sh":[{"d":"KY House District 53","rep":"James Tipton","w":0.999}],"ss":[{"d":"KY Senate District 7","rep":"Aaron Reed","w":0.999}]},"munis":[{"m":"Lawrenceburg","p":[{"n":"Troy Young","r":"Mayor, Lawrenceburg, KY"}]}],"slug":"anderson"},"21007":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.998}],"sh":[{"d":"KY House District 1","rep":"Steven Rudy","w":0.999}],"ss":[{"d":"KY Senate District 2","rep":"Danny Carroll","w":0.999}]},"munis":[],"slug":"ballard"},"21009":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.997}],"sh":[{"d":"KY House District 23","rep":"Steve Riley","w":1.0}],"ss":[{"d":"KY Senate District 9","rep":"David Givens","w":1.0}]},"munis":[{"m":"Glasgow","p":[{"n":"Henry Royse","r":"Mayor, Glasgow, KY"}]}],"slug":"barren"},"21011":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.542},{"d":"KY-06","rep":"Andy Barr","w":0.458}],"sh":[{"d":"KY House District 74","rep":"David Hale","w":0.999}],"ss":[{"d":"KY Senate District 28","rep":"Greg Elkins","w":0.999}]},"munis":[],"slug":"bath"},"21013":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 87","rep":"Adam Bowling","w":0.999}],"ss":[{"d":"KY Senate District 29","rep":"Scott Madon","w":0.999}]},"munis":[{"m":"Middlesborough","p":[{"n":"Boone Bowling","r":"Mayor, Middlesboro, KY"}]}],"slug":"bell"},"21015":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 66","rep":"T.J. Roberts","w":0.464},{"d":"KY House District 60","rep":"Marianne Proctor","w":0.217},{"d":"KY House District 61","rep":"Savannah Maddox","w":0.18},{"d":"KY House District 63","rep":"Kim Banta","w":0.074},{"d":"KY House District 78","rep":"Mark Hart","w":0.044},{"d":"KY House District 69","rep":"Steven Doan","w":0.022}],"ss":[{"d":"KY Senate District 11","rep":"Steve Rawlings","w":0.672},{"d":"KY Senate District 20","rep":"Gex Williams","w":0.327}]},"munis":[{"m":"Florence","p":[{"n":"Julie Metzger Aubuchon","r":"Mayor, Florence, KY"}]},{"m":"Union","p":[{"n":"Larry Solomon","r":"Mayor, Union, KY"}]}],"slug":"boone"},"21017":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.999}],"sh":[{"d":"KY House District 72","rep":"Matt Koch","w":1.0}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":1.0}]},"munis":[{"m":"Paris","p":[{"n":"John A. Plummer","r":"Mayor, Paris, KY"}]}],"slug":"bourbon"},"21019":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.998}],"sh":[{"d":"KY House District 100","rep":"Scott Sharp","w":0.562},{"d":"KY House District 96","rep":"Patrick Flannery","w":0.357},{"d":"KY House District 98","rep":"Aaron Thompson","w":0.081}],"ss":[{"d":"KY Senate District 18","rep":"Robin Webb","w":0.999}]},"munis":[{"m":"Ashland","p":[{"n":"Matt Perkins","r":"Mayor, Ashland, KY"}]}],"slug":"boyd"},"21021":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.99},{"d":"KY-06","rep":"Andy Barr","w":0.006}],"sh":[{"d":"KY House District 54","rep":"Daniel Elliott","w":1.0}],"ss":[{"d":"KY Senate District 12","rep":"Amanda Bledsoe","w":0.999}]},"munis":[{"m":"Danville","p":[{"n":"Q132194982","r":"Mayor, Danville, KY"}]},{"m":"Perryville","p":[{"n":"Rob Kernodle","r":"Mayor, Perryville, KY"}]}],"slug":"boyle"},"21023":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":1.0}],"sh":[{"d":"KY House District 70","rep":"William Lawrence","w":0.999}],"ss":[{"d":"KY Senate District 24","rep":"Shelley Frommeyer","w":0.999}]},"munis":[],"slug":"bracken"},"21025":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 84","rep":"Chris Fugate","w":1.0}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"breathitt"},"21027":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 10","rep":"Josh Calloway","w":0.999}],"ss":[{"d":"KY Senate District 5","rep":"Steve Meredith","w":1.0}]},"munis":[{"m":"Hardinsburg","p":[{"n":"Wayne Macy","r":"Mayor, Hardinsburg, KY"}]}],"slug":"breckinridge"},"21029":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.998}],"sh":[{"d":"KY House District 49","rep":"Thomas Huff","w":0.545},{"d":"KY House District 26","rep":"Peyton Griffee","w":0.452}],"ss":[{"d":"KY Senate District 38","rep":"Mike Nemes","w":1.0}]},"munis":[{"m":"Mount Washington","p":[{"n":"Stuart Owen","r":"Mayor, Mount Washington, KY"}]}],"slug":"bullitt"},"21031":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 15","rep":"Rebecca Raymer","w":1.0}],"ss":[{"d":"KY Senate District 5","rep":"Steve Meredith","w":1.0}]},"munis":[],"slug":"butler"},"21033":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 8","rep":"Walker Thomas","w":0.999}],"ss":[{"d":"KY Senate District 3","rep":"Craig Richardson","w":0.999}]},"munis":[],"slug":"caldwell"},"21035":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 5","rep":"Mary Beth Imes","w":1.0}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":1.0}]},"munis":[{"m":"Murray","p":[{"n":"Bob Rogers","r":"Mayor, Murray, KY"}]}],"slug":"calloway"},"21037":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 68","rep":"Mike Clines","w":0.646},{"d":"KY House District 78","rep":"Mark Hart","w":0.224},{"d":"KY House District 67","rep":"Matt Lehman","w":0.129}],"ss":[{"d":"KY Senate District 24","rep":"Shelley Frommeyer","w":0.999}]},"munis":[{"m":"Alexandria","p":[{"n":"Andy Schabell","r":"Mayor, Alexandria, KY"}]},{"m":"Fort Thomas","p":[{"n":"Eric Haas","r":"Mayor, Fort Thomas, KY"}]}],"slug":"campbell"},"21039":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 1","rep":"Steven Rudy","w":0.999}],"ss":[{"d":"KY Senate District 2","rep":"Danny Carroll","w":0.999}]},"munis":[],"slug":"carlisle"},"21041":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 47","rep":"Felicia Rabourn","w":0.999}],"ss":[{"d":"KY Senate District 20","rep":"Gex Williams","w":0.999}]},"munis":[{"m":"Ghent","p":[{"n":"Jimmy Lewellyn","r":"Mayor, Ghent, KY"}]}],"slug":"carroll"},"21043":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.745},{"d":"KY-04","rep":"Thomas Massie","w":0.255}],"sh":[{"d":"KY House District 96","rep":"Patrick Flannery","w":0.999}],"ss":[{"d":"KY Senate District 18","rep":"Robin Webb","w":1.0}]},"munis":[{"m":"Olive Hill","p":[{"n":"Jerry Callihan","r":"Mayor, Olive Hill, KY"}]}],"slug":"carter"},"21045":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 54","rep":"Daniel Elliott","w":1.0}],"ss":[{"d":"KY Senate District 21","rep":"Brandon Storm","w":1.0}]},"munis":[],"slug":"casey"},"21047":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 8","rep":"Walker Thomas","w":0.412},{"d":"KY House District 9","rep":"Myron Dossett","w":0.323},{"d":"KY House District 16","rep":"Jason Petrie","w":0.265}],"ss":[{"d":"KY Senate District 3","rep":"Craig Richardson","w":1.0}]},"munis":[{"m":"Hopkinsville","p":[{"n":"James R. Knight, Jr.","r":"Mayor, Hopkinsville, KY"}]}],"slug":"christian"},"21049":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":1.0}],"sh":[{"d":"KY House District 73","rep":"Ryan Dotson","w":0.999}],"ss":[{"d":"KY Senate District 28","rep":"Greg Elkins","w":1.0}]},"munis":[{"m":"Winchester","p":[{"n":"JoEllen Reed","r":"Mayor, Winchester, KY"}]}],"slug":"clark"},"21051":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 90","rep":"Derek Lewis","w":1.0}],"ss":[{"d":"KY Senate District 25","rep":"Robert Stivers","w":1.0}]},"munis":[],"slug":"clay"},"21053":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.996}],"sh":[{"d":"KY House District 83","rep":"Josh Branscum","w":1.0}],"ss":[{"d":"KY Senate District 15","rep":"Rick Girdler","w":1.0}]},"munis":[],"slug":"clinton"},"21055":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 12","rep":"Jim Gooch","w":0.999}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":0.999}]},"munis":[],"slug":"crittenden"},"21057":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 21","rep":"Amy Neighbors","w":0.999}],"ss":[{"d":"KY Senate District 15","rep":"Rick Girdler","w":1.0}]},"munis":[],"slug":"cumberland"},"21059":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.999}],"sh":[{"d":"KY House District 7","rep":"Suzanne Miles","w":0.481},{"d":"KY House District 14","rep":"Scott Lewis","w":0.399},{"d":"KY House District 13","rep":"D.J. Johnson","w":0.119}],"ss":[{"d":"KY Senate District 8","rep":"Gary Boswell","w":1.0}]},"munis":[{"m":"Owensboro","p":[{"n":"Tom Watson","r":"Mayor, Owensboro, KY"}]}],"slug":"daviess"},"21061":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 19","rep":"Michael Meredith","w":0.999}],"ss":[{"d":"KY Senate District 9","rep":"David Givens","w":0.999}]},"munis":[],"slug":"edmonson"},"21063":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 99","rep":"Richard White","w":0.999}],"ss":[{"d":"KY Senate District 31","rep":"Phillip Wheeler","w":0.999}]},"munis":[],"slug":"elliott"},"21065":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.998}],"sh":[{"d":"KY House District 91","rep":"Bill Wesley","w":1.0}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"estill"},"21067":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":1.0}],"sh":[{"d":"KY House District 88","rep":"Vanessa Grossl","w":0.427},{"d":"KY House District 73","rep":"Ryan Dotson","w":0.226},{"d":"KY House District 45","rep":"Adam Moore","w":0.112},{"d":"KY House District 77","rep":"George Brown","w":0.059},{"d":"KY House District 76","rep":"Anne Donworth","w":0.051},{"d":"KY House District 93","rep":"Adrielle Camuel","w":0.039},{"d":"KY House District 75","rep":"Lindsey Burke","w":0.038},{"d":"KY House District 79","rep":"Chad Aull","w":0.037},{"d":"KY House District 39","rep":"Matt Lockett","w":0.01}],"ss":[{"d":"KY Senate District 28","rep":"Greg Elkins","w":0.28},{"d":"KY Senate District 27","rep":"Steve West","w":0.222},{"d":"KY Senate District 34","rep":"Jared Carpenter","w":0.163},{"d":"KY Senate District 17","rep":"Matt Nunn","w":0.118},{"d":"KY Senate District 13","rep":"Reggie Thomas","w":0.097},{"d":"KY Senate District 12","rep":"Amanda Bledsoe","w":0.088},{"d":"KY Senate District 22","rep":"Don Douglas","w":0.032}]},"munis":[{"m":"Lexington Fayette","p":[{"n":"Linda Gorton","r":"Mayor, Lexington, KY"}]}],"slug":"fayette"},"21069":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.99},{"d":"KY-05","rep":"Harold Rogers","w":0.007}],"sh":[{"d":"KY House District 72","rep":"Matt Koch","w":0.999}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":1.0}]},"munis":[],"slug":"fleming"},"21071":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 95","rep":"Ashley Laferty","w":0.999}],"ss":[{"d":"KY Senate District 29","rep":"Scott Madon","w":0.999}]},"munis":[{"m":"Allen","p":[{"n":"Ernestine Hall","r":"Mayor, Allen, KY"}]}],"slug":"floyd"},"21073":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.997}],"sh":[{"d":"KY House District 57","rep":"Erika Hancock","w":0.608},{"d":"KY House District 56","rep":"Dan Fister","w":0.392}],"ss":[{"d":"KY Senate District 20","rep":"Gex Williams","w":1.0}]},"munis":[{"m":"Frankfort","p":[{"n":"Layne Wilkerson","r":"Mayor, Frankfort, KY"}]}],"slug":"franklin"},"21075":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.998}],"sh":[{"d":"KY House District 1","rep":"Steven Rudy","w":0.998}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":0.998}]},"munis":[{"m":"Hickman","p":[{"n":"Heath Carlton","r":"Mayor, Hickman, KY"}]}],"slug":"fulton"},"21077":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 61","rep":"Savannah Maddox","w":0.999}],"ss":[{"d":"KY Senate District 20","rep":"Gex Williams","w":1.0}]},"munis":[],"slug":"gallatin"},"21079":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.995}],"sh":[{"d":"KY House District 80","rep":"David Meade","w":0.999}],"ss":[{"d":"KY Senate District 22","rep":"Don Douglas","w":0.999}]},"munis":[],"slug":"garrard"},"21081":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":1.0}],"sh":[{"d":"KY House District 61","rep":"Savannah Maddox","w":1.0}],"ss":[{"d":"KY Senate District 17","rep":"Matt Nunn","w":1.0}]},"munis":[],"slug":"grant"},"21083":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 2","rep":"Kim Holloway","w":1.0}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":1.0}]},"munis":[{"m":"Mayfield","p":[{"n":"Kathy Stewart O'Nan","r":"Mayor, Mayfield, KY"}]}],"slug":"graves"},"21085":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 18","rep":"Samara Heavrin","w":1.0}],"ss":[{"d":"KY Senate District 5","rep":"Steve Meredith","w":1.0}]},"munis":[],"slug":"grayson"},"21087":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.997}],"sh":[{"d":"KY House District 24","rep":"Ryan Bivens","w":0.999}],"ss":[{"d":"KY Senate District 9","rep":"David Givens","w":0.999}]},"munis":[{"m":"Greensburg","p":[{"n":"John Michael Shuffett","r":"Mayor, Greensburg, KY"}]}],"slug":"green"},"21089":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 98","rep":"Aaron Thompson","w":0.999}],"ss":[{"d":"KY Senate District 18","rep":"Robin Webb","w":0.999}]},"munis":[{"m":"Flatwoods","p":[{"n":"Buford Hurley II","r":"Mayor, Flatwoods, KY"}]}],"slug":"greenup"},"21091":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.999}],"sh":[{"d":"KY House District 14","rep":"Scott Lewis","w":0.999}],"ss":[{"d":"KY Senate District 8","rep":"Gary Boswell","w":0.999}]},"munis":[],"slug":"hancock"},"21093":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 18","rep":"Samara Heavrin","w":0.416},{"d":"KY House District 10","rep":"Josh Calloway","w":0.248},{"d":"KY House District 25","rep":"Steve Bratcher","w":0.166},{"d":"KY House District 26","rep":"Peyton Griffee","w":0.155},{"d":"KY House District 27","rep":"Nancy Tate","w":0.015}],"ss":[{"d":"KY Senate District 10","rep":"Matt Deneen","w":1.0}]},"munis":[{"m":"Elizabethtown","p":[{"n":"Jeff Gregory","r":"Mayor, Elizabethtown, KY"}]},{"m":"Radcliff","p":[{"n":"JJ Duvall","r":"Mayor, Radcliff, KY"}]}],"slug":"hardin"},"21095":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.999}],"sh":[{"d":"KY House District 87","rep":"Adam Bowling","w":0.715},{"d":"KY House District 94","rep":"Mitch Whitaker","w":0.284}],"ss":[{"d":"KY Senate District 29","rep":"Scott Madon","w":0.999}]},"munis":[],"slug":"harlan"},"21097":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.995},{"d":"KY-06","rep":"Andy Barr","w":0.005}],"sh":[{"d":"KY House District 70","rep":"William Lawrence","w":0.999}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":1.0}]},"munis":[{"m":"Cynthiana","p":[{"n":"Isaac T. Dailey","r":"Mayor, Cynthiana, KY"}]}],"slug":"harrison"},"21099":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 24","rep":"Ryan Bivens","w":1.0}],"ss":[{"d":"KY Senate District 9","rep":"David Givens","w":1.0}]},"munis":[],"slug":"hart"},"21101":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.997}],"sh":[{"d":"KY House District 11","rep":"J.T. Payne","w":0.999}],"ss":[{"d":"KY Senate District 4","rep":"Robby Mills","w":0.999}]},"munis":[{"m":"Henderson","p":[{"n":"Brad Staton","r":"Mayor, Henderson, KY"}]}],"slug":"henderson"},"21103":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 47","rep":"Felicia Rabourn","w":1.0}],"ss":[{"d":"KY Senate District 7","rep":"Aaron Reed","w":1.0}]},"munis":[],"slug":"henry"},"21105":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 1","rep":"Steven Rudy","w":1.0}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":0.999}]},"munis":[],"slug":"hickman"},"21107":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.996}],"sh":[{"d":"KY House District 4","rep":"Wade Williams","w":0.999}],"ss":[{"d":"KY Senate District 4","rep":"Robby Mills","w":0.999}]},"munis":[{"m":"Madisonville","p":[{"n":"Kevin Cotton","r":"Mayor, Madisonville, KY"}]}],"slug":"hopkins"},"21109":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 89","rep":"Timmy Truett","w":1.0}],"ss":[{"d":"KY Senate District 25","rep":"Robert Stivers","w":1.0}]},"munis":[],"slug":"jackson"},"21111":{"county":[],"districts":{"cd":[{"d":"KY-03","rep":"Morgan McGarvey","w":0.812},{"d":"KY-02","rep":"Brett Guthrie","w":0.187}],"sh":[{"d":"KY House District 36","rep":"John Hodgson","w":0.157},{"d":"KY House District 29","rep":"Chris Lewis","w":0.118},{"d":"KY House District 37","rep":"Emily Callaway","w":0.108},{"d":"KY House District 48","rep":"Ken Fleming","w":0.073},{"d":"KY House District 44","rep":"Beverly Chester-Burton","w":0.06},{"d":"KY House District 35","rep":"Lisa Willner","w":0.058},{"d":"KY House District 28","rep":"Jared Bauman","w":0.048},{"d":"KY House District 38","rep":"Rachel Roarx","w":0.046},{"d":"KY House District 31","rep":"Susan Witten","w":0.041},{"d":"KY House District 33","rep":"Jason Nemes","w":0.04},{"d":"KY House District 43","rep":"Pamela Stevenson","w":0.039},{"d":"KY House District 32","rep":"Tina Bojanowski","w":0.036},{"d":"KY House District 46","rep":"Al Gentry","w":0.035},{"d":"KY House District 34","rep":"Sarah Stalker","w":0.035},{"d":"KY House District 30","rep":"Daniel Grossberg","w":0.032},{"d":"KY House District 40","rep":"Nima Kulkarni","w":0.028},{"d":"KY House District 41","rep":"Mary Lou Marzian","w":0.027},{"d":"KY House District 42","rep":"Joshua Watkins","w":0.02}],"ss":[{"d":"KY Senate District 36","rep":"Julie Adams","w":0.203},{"d":"KY Senate District 33","rep":"Gerald Neal","w":0.121},{"d":"KY Senate District 7","rep":"Aaron Reed","w":0.114},{"d":"KY Senate District 35","rep":"Keturah Herron","w":0.113},{"d":"KY Senate District 26","rep":"Karen Berg","w":0.104},{"d":"KY Senate District 38","rep":"Mike Nemes","w":0.1},{"d":"KY Senate District 37","rep":"Gary Clemons","w":0.089},{"d":"KY Senate District 19","rep":"Cassie Armstrong","w":0.081},{"d":"KY Senate District 6","rep":"Lindsey Tichenor","w":0.051},{"d":"KY Senate District 10","rep":"Matt Deneen","w":0.024}]},"munis":[{"m":"Jeffersontown","p":[{"n":"Carol Pike","r":"Mayor, Jeffersontown, KY"}]},{"m":"Louisville","p":[{"n":"Craig Greenberg","r":"Mayor, Louisville, KY"}]},{"m":"Lyndon","p":[{"n":"Brent Hagan","r":"Mayor, Lyndon, KY"}]},{"m":"Shively","p":[{"n":"Maria D. Johnson","r":"Mayor, Shively, KY"}]},{"m":"St Matthews","p":[{"n":"Richard J. Tonini","r":"Mayor, St. Matthews, KY"}]}],"slug":"jefferson"},"21113":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":1.0}],"sh":[{"d":"KY House District 55","rep":"Kim King","w":0.432},{"d":"KY House District 39","rep":"Matt Lockett","w":0.268},{"d":"KY House District 56","rep":"Dan Fister","w":0.153},{"d":"KY House District 45","rep":"Adam Moore","w":0.146}],"ss":[{"d":"KY Senate District 22","rep":"Don Douglas","w":1.0}]},"munis":[{"m":"Nicholasville","p":[{"n":"Alex Carter","r":"Mayor, Nicholasville, KY"}]}],"slug":"jessamine"},"21115":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 97","rep":"Bobby McCool","w":1.0}],"ss":[{"d":"KY Senate District 31","rep":"Phillip Wheeler","w":1.0}]},"munis":[],"slug":"johnson"},"21117":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":1.0}],"sh":[{"d":"KY House District 78","rep":"Mark Hart","w":0.429},{"d":"KY House District 64","rep":"Kim Moser","w":0.213},{"d":"KY House District 65","rep":"Stephanie Dietz","w":0.11},{"d":"KY House District 63","rep":"Kim Banta","w":0.093},{"d":"KY House District 61","rep":"Savannah Maddox","w":0.093},{"d":"KY House District 69","rep":"Steven Doan","w":0.062}],"ss":[{"d":"KY Senate District 17","rep":"Matt Nunn","w":0.461},{"d":"KY Senate District 23","rep":"Chris McDaniel","w":0.37},{"d":"KY Senate District 20","rep":"Gex Williams","w":0.165}]},"munis":[{"m":"Covington","p":[{"n":"Ron Washington","r":"Mayor, Covington, KY"}]},{"m":"Erlanger","p":[{"n":"Jessica Fette","r":"Mayor, Erlanger, KY"}]},{"m":"Independence","p":[{"n":"Chris Reinersman","r":"Mayor, Independence, KY"}]}],"slug":"kenton"},"21119":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 92","rep":"John Blanton","w":0.999}],"ss":[{"d":"KY Senate District 29","rep":"Scott Madon","w":1.0}]},"munis":[{"m":"Hindman","p":[{"n":"Patricia Hall","r":"Mayor, Hindman, KY"}]}],"slug":"knott"},"21121":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 86","rep":"Tom Smith","w":0.999}],"ss":[{"d":"KY Senate District 25","rep":"Robert Stivers","w":1.0}]},"munis":[{"m":"Barbourville","p":[{"n":"David Thompson","r":"Mayor, Barbourville, KY"}]}],"slug":"knox"},"21123":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.997}],"sh":[{"d":"KY House District 24","rep":"Ryan Bivens","w":0.999}],"ss":[{"d":"KY Senate District 14","rep":"Jimmy Higdon","w":1.0}]},"munis":[],"slug":"larue"},"21125":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 85","rep":"Shane Baker","w":0.25},{"d":"KY House District 89","rep":"Timmy Truett","w":0.202},{"d":"KY House District 90","rep":"Derek Lewis","w":0.179},{"d":"KY House District 86","rep":"Tom Smith","w":0.15},{"d":"KY House District 71","rep":"Josh Bray","w":0.134},{"d":"KY House District 82","rep":"Nick Wilson","w":0.085}],"ss":[{"d":"KY Senate District 21","rep":"Brandon Storm","w":0.999}]},"munis":[],"slug":"laurel"},"21127":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 100","rep":"Scott Sharp","w":0.999}],"ss":[{"d":"KY Senate District 31","rep":"Phillip Wheeler","w":1.0}]},"munis":[{"m":"Louisa","p":[{"n":"Harold E. Slone","r":"Mayor, Louisa, KY"}]}],"slug":"lawrence"},"21129":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.997}],"sh":[{"d":"KY House District 89","rep":"Timmy Truett","w":0.999}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"lee"},"21131":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 90","rep":"Derek Lewis","w":1.0}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"leslie"},"21133":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.999}],"sh":[{"d":"KY House District 94","rep":"Mitch Whitaker","w":0.999}],"ss":[{"d":"KY Senate District 29","rep":"Scott Madon","w":0.999}]},"munis":[],"slug":"letcher"},"21135":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.996}],"sh":[{"d":"KY House District 96","rep":"Patrick Flannery","w":0.999}],"ss":[{"d":"KY Senate District 18","rep":"Robin Webb","w":0.999}]},"munis":[],"slug":"lewis"},"21137":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.993}],"sh":[{"d":"KY House District 80","rep":"David Meade","w":1.0}],"ss":[{"d":"KY Senate District 21","rep":"Brandon Storm","w":1.0}]},"munis":[],"slug":"lincoln"},"21139":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 3","rep":"Randy Bridges","w":0.999}],"ss":[{"d":"KY Senate District 2","rep":"Danny Carroll","w":0.999}]},"munis":[],"slug":"livingston"},"21141":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.927},{"d":"KY-02","rep":"Brett Guthrie","w":0.073}],"sh":[{"d":"KY House District 16","rep":"Jason Petrie","w":1.0}],"ss":[{"d":"KY Senate District 32","rep":"Mike Wilson","w":1.0}]},"munis":[],"slug":"logan"},"21143":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 6","rep":"Chris Freeland","w":1.0}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":1.0}]},"munis":[],"slug":"lyon"},"21145":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 1","rep":"Steven Rudy","w":0.538},{"d":"KY House District 2","rep":"Kim Holloway","w":0.177},{"d":"KY House District 3","rep":"Randy Bridges","w":0.158},{"d":"KY House District 6","rep":"Chris Freeland","w":0.126}],"ss":[{"d":"KY Senate District 2","rep":"Danny Carroll","w":0.999}]},"munis":[{"m":"Paducah","p":[{"n":"George P. Bray","r":"Mayor, Paducah, KY"}]}],"slug":"mccracken"},"21147":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 52","rep":"Ken Upchurch","w":1.0}],"ss":[{"d":"KY Senate District 25","rep":"Robert Stivers","w":1.0}]},"munis":[],"slug":"mccreary"},"21149":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.997}],"sh":[{"d":"KY House District 12","rep":"Jim Gooch","w":1.0}],"ss":[{"d":"KY Senate District 8","rep":"Gary Boswell","w":1.0}]},"munis":[],"slug":"mclean"},"21151":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.999}],"sh":[{"d":"KY House District 81","rep":"Deanna Gordon","w":0.567},{"d":"KY House District 89","rep":"Timmy Truett","w":0.204},{"d":"KY House District 91","rep":"Bill Wesley","w":0.136},{"d":"KY House District 71","rep":"Josh Bray","w":0.092}],"ss":[{"d":"KY Senate District 34","rep":"Jared Carpenter","w":1.0}]},"munis":[{"m":"Berea","p":[{"n":"Bruce Fraley","r":"Mayor, Berea, KY"}]}],"slug":"madison"},"21153":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 92","rep":"John Blanton","w":0.999}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"magoffin"},"21155":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 51","rep":"Sarge Pollock","w":1.0}],"ss":[{"d":"KY Senate District 14","rep":"Jimmy Higdon","w":1.0}]},"munis":[],"slug":"marion"},"21157":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 6","rep":"Chris Freeland","w":1.0}],"ss":[{"d":"KY Senate District 2","rep":"Danny Carroll","w":1.0}]},"munis":[{"m":"Calvert City","p":[{"n":"Gene Colburn","r":"Mayor, Calvert City, KY"}]}],"slug":"marshall"},"21159":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.99},{"d":"WV-01","rep":"Carol D. Miller","w":0.01}],"sh":[{"d":"KY House District 97","rep":"Bobby McCool","w":0.999}],"ss":[{"d":"KY Senate District 31","rep":"Phillip Wheeler","w":1.0}]},"munis":[],"slug":"martin"},"21161":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 70","rep":"William Lawrence","w":1.0}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":1.0}]},"munis":[{"m":"Maysville","p":[{"n":"Debra L. Cotterill","r":"Mayor, Maysville, KY"}]}],"slug":"mason"},"21163":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.998}],"sh":[{"d":"KY House District 27","rep":"Nancy Tate","w":0.998}],"ss":[{"d":"KY Senate District 5","rep":"Steve Meredith","w":0.999}]},"munis":[],"slug":"meade"},"21165":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.995},{"d":"KY-06","rep":"Andy Barr","w":0.005}],"sh":[{"d":"KY House District 74","rep":"David Hale","w":1.0}],"ss":[{"d":"KY Senate District 28","rep":"Greg Elkins","w":1.0}]},"munis":[],"slug":"menifee"},"21167":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.998}],"sh":[{"d":"KY House District 55","rep":"Kim King","w":0.999}],"ss":[{"d":"KY Senate District 12","rep":"Amanda Bledsoe","w":1.0}]},"munis":[{"m":"Harrodsburg","p":[{"n":"Robert Williams","r":"Mayor, Harrodsburg, KY"}]}],"slug":"mercer"},"21169":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.998}],"sh":[{"d":"KY House District 21","rep":"Amy Neighbors","w":1.0}],"ss":[{"d":"KY Senate District 16","rep":"Max Wise","w":1.0}]},"munis":[{"m":"Edmonton","p":[{"n":"Doug Smith","r":"Mayor, Edmonton, KY"}]}],"slug":"metcalfe"},"21171":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 21","rep":"Amy Neighbors","w":1.0}],"ss":[{"d":"KY Senate District 16","rep":"Max Wise","w":1.0}]},"munis":[],"slug":"monroe"},"21173":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.998}],"sh":[{"d":"KY House District 74","rep":"David Hale","w":1.0}],"ss":[{"d":"KY Senate District 28","rep":"Greg Elkins","w":1.0}]},"munis":[],"slug":"montgomery"},"21175":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 99","rep":"Richard White","w":1.0}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"morgan"},"21177":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.996}],"sh":[{"d":"KY House District 15","rep":"Rebecca Raymer","w":0.999}],"ss":[{"d":"KY Senate District 3","rep":"Craig Richardson","w":0.999}]},"munis":[{"m":"Central City","p":[{"n":"Tony Armour","r":"Mayor, Central City, KY"}]}],"slug":"muhlenberg"},"21179":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.508},{"d":"KY-04","rep":"Thomas Massie","w":0.487}],"sh":[{"d":"KY House District 50","rep":"Candy Massaroni","w":0.999}],"ss":[{"d":"KY Senate District 14","rep":"Jimmy Higdon","w":1.0}]},"munis":[{"m":"Bardstown","p":[{"n":"Richard Heaton","r":"Mayor, Bardstown, KY"}]}],"slug":"nelson"},"21181":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.995},{"d":"KY-04","rep":"Thomas Massie","w":0.005}],"sh":[{"d":"KY House District 72","rep":"Matt Koch","w":1.0}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":1.0}]},"munis":[],"slug":"nicholas"},"21183":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":1.0}],"sh":[{"d":"KY House District 14","rep":"Scott Lewis","w":1.0}],"ss":[{"d":"KY Senate District 5","rep":"Steve Meredith","w":1.0}]},"munis":[],"slug":"ohio"},"21185":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 59","rep":"David Osborne","w":0.856},{"d":"KY House District 33","rep":"Jason Nemes","w":0.114},{"d":"KY House District 48","rep":"Ken Fleming","w":0.029}],"ss":[{"d":"KY Senate District 6","rep":"Lindsey Tichenor","w":1.0}]},"munis":[{"m":"Goshen","p":[{"n":"Bob Thacker","r":"Mayor, Goshen, KY"}]},{"m":"La Grange","p":[{"n":"John Black","r":"Mayor, La Grange, KY"}]}],"slug":"oldham"},"21187":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 47","rep":"Felicia Rabourn","w":1.0}],"ss":[{"d":"KY Senate District 20","rep":"Gex Williams","w":1.0}]},"munis":[],"slug":"owen"},"21189":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 84","rep":"Chris Fugate","w":0.999}],"ss":[{"d":"KY Senate District 25","rep":"Robert Stivers","w":0.999}]},"munis":[],"slug":"owsley"},"21191":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":1.0}],"sh":[{"d":"KY House District 78","rep":"Mark Hart","w":1.0}],"ss":[{"d":"KY Senate District 24","rep":"Shelley Frommeyer","w":1.0}]},"munis":[],"slug":"pendleton"},"21193":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 84","rep":"Chris Fugate","w":0.999}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[{"m":"Hazard","p":[{"n":"Donald Mobelini","r":"Mayor, Hazard, KY"}]}],"slug":"perry"},"21195":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.997}],"sh":[{"d":"KY House District 94","rep":"Mitch Whitaker","w":0.364},{"d":"KY House District 97","rep":"Bobby McCool","w":0.301},{"d":"KY House District 92","rep":"John Blanton","w":0.274},{"d":"KY House District 95","rep":"Ashley Laferty","w":0.059}],"ss":[{"d":"KY Senate District 31","rep":"Phillip Wheeler","w":0.999}]},"munis":[{"m":"Pikeville","p":[{"n":"James A. Carter","r":"Mayor, Pikeville, KY"}]}],"slug":"pike"},"21197":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.998}],"sh":[{"d":"KY House District 91","rep":"Bill Wesley","w":0.999}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":0.999}]},"munis":[],"slug":"powell"},"21199":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 85","rep":"Shane Baker","w":0.444},{"d":"KY House District 83","rep":"Josh Branscum","w":0.282},{"d":"KY House District 71","rep":"Josh Bray","w":0.167},{"d":"KY House District 52","rep":"Ken Upchurch","w":0.083},{"d":"KY House District 80","rep":"David Meade","w":0.024}],"ss":[{"d":"KY Senate District 15","rep":"Rick Girdler","w":1.0}]},"munis":[{"m":"Somerset","p":[{"n":"Alan Keck","r":"Mayor, Somerset, KY"}]}],"slug":"pulaski"},"21201":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.998}],"sh":[{"d":"KY House District 70","rep":"William Lawrence","w":1.0}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":1.0}]},"munis":[],"slug":"robertson"},"21203":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.998}],"sh":[{"d":"KY House District 71","rep":"Josh Bray","w":1.0}],"ss":[{"d":"KY Senate District 21","rep":"Brandon Storm","w":1.0}]},"munis":[],"slug":"rockcastle"},"21205":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.995}],"sh":[{"d":"KY House District 99","rep":"Richard White","w":0.999}],"ss":[{"d":"KY Senate District 27","rep":"Steve West","w":0.999}]},"munis":[],"slug":"rowan"},"21207":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 83","rep":"Josh Branscum","w":1.0}],"ss":[{"d":"KY Senate District 15","rep":"Rick Girdler","w":1.0}]},"munis":[],"slug":"russell"},"21209":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.995}],"sh":[{"d":"KY House District 62","rep":"Tony Hampton","w":0.854},{"d":"KY House District 88","rep":"Vanessa Grossl","w":0.146}],"ss":[{"d":"KY Senate District 17","rep":"Matt Nunn","w":1.0}]},"munis":[{"m":"Georgetown","p":[{"n":"Burney Jenkins","r":"Mayor, Georgetown, KY"}]}],"slug":"scott"},"21211":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.999}],"sh":[{"d":"KY House District 58","rep":"Jennifer Decker","w":0.976},{"d":"KY House District 33","rep":"Jason Nemes","w":0.024}],"ss":[{"d":"KY Senate District 7","rep":"Aaron Reed","w":1.0}]},"munis":[{"m":"Shelbyville","p":[{"n":"David B. Eaton","r":"Mayor, Shelbyville, KY"}]}],"slug":"shelby"},"21213":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.998}],"sh":[{"d":"KY House District 22","rep":"Shawn McPherson","w":1.0}],"ss":[{"d":"KY Senate District 32","rep":"Mike Wilson","w":1.0}]},"munis":[{"m":"Franklin","p":[{"n":"Larry Dixon","r":"Mayor, Franklin, KY"}]}],"slug":"simpson"},"21215":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":0.995}],"sh":[{"d":"KY House District 53","rep":"James Tipton","w":1.0}],"ss":[{"d":"KY Senate District 14","rep":"Jimmy Higdon","w":1.0}]},"munis":[{"m":"Taylorsville","p":[{"n":"Karen Spencer","r":"Mayor, Taylorsville, KY"}]}],"slug":"spencer"},"21217":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.996}],"sh":[{"d":"KY House District 51","rep":"Sarge Pollock","w":1.0}],"ss":[{"d":"KY Senate District 16","rep":"Max Wise","w":0.999}]},"munis":[{"m":"Campbellsville","p":[{"n":"Dennis Benningfield","r":"Mayor, Campbellsville, KY"}]}],"slug":"taylor"},"21219":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 16","rep":"Jason Petrie","w":1.0}],"ss":[{"d":"KY Senate District 32","rep":"Mike Wilson","w":1.0}]},"munis":[],"slug":"todd"},"21221":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":1.0}],"sh":[{"d":"KY House District 5","rep":"Mary Beth Imes","w":0.601},{"d":"KY House District 8","rep":"Walker Thomas","w":0.399}],"ss":[{"d":"KY Senate District 1","rep":"Jason Howell","w":0.999}]},"munis":[],"slug":"trigg"},"21223":{"county":[],"districts":{"cd":[{"d":"KY-04","rep":"Thomas Massie","w":1.0}],"sh":[{"d":"KY House District 47","rep":"Felicia Rabourn","w":1.0}],"ss":[{"d":"KY Senate District 6","rep":"Lindsey Tichenor","w":0.999}]},"munis":[],"slug":"trimble"},"21225":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 12","rep":"Jim Gooch","w":1.0}],"ss":[{"d":"KY Senate District 4","rep":"Robby Mills","w":1.0}]},"munis":[],"slug":"union"},"21227":{"county":[],"districts":{"cd":[{"d":"KY-02","rep":"Brett Guthrie","w":0.999}],"sh":[{"d":"KY House District 19","rep":"Michael Meredith","w":0.595},{"d":"KY House District 17","rep":"Robert Duvall","w":0.289},{"d":"KY House District 22","rep":"Shawn McPherson","w":0.071},{"d":"KY House District 20","rep":"Kevin Jackson","w":0.045}],"ss":[{"d":"KY Senate District 9","rep":"David Givens","w":0.405},{"d":"KY Senate District 16","rep":"Max Wise","w":0.318},{"d":"KY Senate District 32","rep":"Mike Wilson","w":0.277}]},"munis":[{"m":"Bowling Green","p":[{"n":"Todd Alcott","r":"Mayor, Bowling Green, KY"}]}],"slug":"warren"},"21229":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.994}],"sh":[{"d":"KY House District 55","rep":"Kim King","w":0.999}],"ss":[{"d":"KY Senate District 14","rep":"Jimmy Higdon","w":1.0}]},"munis":[{"m":"Springfield","p":[{"n":"Debbie Wakefield","r":"Mayor, Springfield, KY"}]}],"slug":"washington"},"21231":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":0.997}],"sh":[{"d":"KY House District 52","rep":"Ken Upchurch","w":1.0}],"ss":[{"d":"KY Senate District 15","rep":"Rick Girdler","w":1.0}]},"munis":[],"slug":"wayne"},"21233":{"county":[],"districts":{"cd":[{"d":"KY-01","rep":"James Comer","w":0.999}],"sh":[{"d":"KY House District 12","rep":"Jim Gooch","w":1.0}],"ss":[{"d":"KY Senate District 4","rep":"Robby Mills","w":1.0}]},"munis":[],"slug":"webster"},"21235":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 82","rep":"Nick Wilson","w":0.999}],"ss":[{"d":"KY Senate District 25","rep":"Robert Stivers","w":1.0}]},"munis":[{"m":"Corbin","p":[{"n":"Suzie Razmus","r":"Mayor, Corbin, KY"}]},{"m":"Williamsburg","p":[{"n":"Roddy Harrison","r":"Mayor, Williamsburg, KY"}]}],"slug":"whitley"},"21237":{"county":[],"districts":{"cd":[{"d":"KY-05","rep":"Harold Rogers","w":1.0}],"sh":[{"d":"KY House District 89","rep":"Timmy Truett","w":0.999}],"ss":[{"d":"KY Senate District 30","rep":"Brandon Smith","w":1.0}]},"munis":[],"slug":"wolfe"},"21239":{"county":[],"districts":{"cd":[{"d":"KY-06","rep":"Andy Barr","w":0.999}],"sh":[{"d":"KY House District 56","rep":"Dan Fister","w":0.999}],"ss":[{"d":"KY Senate District 12","rep":"Amanda Bledsoe","w":0.999}]},"munis":[{"m":"Versailles","p":[{"n":"Laura Dake","r":"Mayor, Versailles, KY"}]}],"slug":"woodford"},"22001":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":1.0}],"sh":[{"d":"LA House District 42","rep":"Chance Henry","w":0.517},{"d":"LA House District 41","rep":"Phillip DeVillier","w":0.482}],"ss":[{"d":"LA Senate District 26","rep":"Bob Hensgens","w":0.805},{"d":"LA Senate District 25","rep":"Mark Abraham","w":0.195}]},"munis":[],"slug":"acadia-parish"},"22003":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":1.0}],"sh":[{"d":"LA House District 32","rep":"Dewith Carrier","w":1.0}],"ss":[{"d":"LA Senate District 28","rep":"Heather Cloud","w":1.0}]},"munis":[],"slug":"allen-parish"},"22005":{"county":[],"districts":{"cd":[{"d":"LA-02","rep":"Troy A. Carter","w":0.554},{"d":"LA-01","rep":"Steve Scalise","w":0.354},{"d":"LA-05","rep":"Julia Letlow","w":0.092}],"sh":[{"d":"LA House District 81","rep":"Jeff Wiley","w":0.368},{"d":"LA House District 58","rep":"Ken Brass","w":0.347},{"d":"LA House District 88","rep":"Kathy Edmonston","w":0.147},{"d":"LA House District 59","rep":"Tony Bacala","w":0.137}],"ss":[{"d":"LA Senate District 18","rep":"Eddie Lambert","w":0.668},{"d":"LA Senate District 2","rep":"Ed Price","w":0.332}]},"munis":[],"slug":"ascension-parish"},"22007":{"county":[],"districts":{"cd":[{"d":"LA-02","rep":"Troy A. Carter","w":0.998}],"sh":[{"d":"LA House District 60","rep":"Chasity Martinez","w":0.775},{"d":"LA House District 51","rep":"Beryl Amedée","w":0.225}],"ss":[{"d":"LA Senate District 2","rep":"Ed Price","w":0.509},{"d":"LA Senate District 21","rep":"Robert Allain","w":0.491}]},"munis":[],"slug":"assumption-parish"},"22009":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.588},{"d":"LA-06","rep":"Cleo Fields","w":0.412}],"sh":[{"d":"LA House District 28","rep":"Daryl Deshotel","w":1.0}],"ss":[{"d":"LA Senate District 28","rep":"Heather Cloud","w":0.675},{"d":"LA Senate District 32","rep":"Glen Womack","w":0.3},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.025}]},"munis":[],"slug":"avoyelles-parish"},"22011":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.998}],"sh":[{"d":"LA House District 24","rep":"Rodney Schamerhorn","w":0.441},{"d":"LA House District 32","rep":"Dewith Carrier","w":0.325},{"d":"LA House District 30","rep":"Chuck Owen","w":0.134},{"d":"LA House District 35","rep":"Brett Geymann","w":0.1}],"ss":[{"d":"LA Senate District 30","rep":"Mike Reese","w":1.0}]},"munis":[],"slug":"beauregard-parish"},"22013":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":1.0}],"sh":[{"d":"LA House District 13","rep":"Jack McFarland","w":0.835},{"d":"LA House District 11","rep":"Rashid Young","w":0.165}],"ss":[{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.662},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.311},{"d":"LA Senate District 33","rep":"Stewart Cathey","w":0.026}]},"munis":[],"slug":"bienville-parish"},"22015":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.999}],"sh":[{"d":"LA House District 10","rep":"Wayne McMahen","w":0.503},{"d":"LA House District 9","rep":"Dodie Horton","w":0.232},{"d":"LA House District 5","rep":"Dennis Bamburg","w":0.171},{"d":"LA House District 8","rep":"Raymond Crews","w":0.085},{"d":"LA House District 2","rep":"Steven Jackson","w":0.008}],"ss":[{"d":"LA Senate District 36","rep":"Adam Bass","w":0.961},{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.035}]},"munis":[{"m":"Bossier City","p":[{"n":"Thomas Chandler","r":"Mayor, Bossier City, LA"}]}],"slug":"bossier-parish"},"22017":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.874},{"d":"LA-06","rep":"Cleo Fields","w":0.126}],"sh":[{"d":"LA House District 1","rep":"Danny McCormick","w":0.729},{"d":"LA House District 5","rep":"Dennis Bamburg","w":0.094},{"d":"LA House District 4","rep":"Joy Walters","w":0.084},{"d":"LA House District 7","rep":"Larry Bagley","w":0.028},{"d":"LA House District 3","rep":"Tammy Phelps","w":0.023},{"d":"LA House District 6","rep":"Michael Melerine","w":0.023},{"d":"LA House District 2","rep":"Steven Jackson","w":0.019}],"ss":[{"d":"LA Senate District 39","rep":"Sam Jenkins","w":0.552},{"d":"LA Senate District 38","rep":"Thomas Pressly","w":0.362},{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.085}]},"munis":[{"m":"Shreveport","p":[{"n":"Tom Arceneaux","r":"Mayor, Shreveport, LA"}]}],"slug":"caddo-parish"},"22019":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.72},{"d":"LA-03","rep":"Clay Higgins","w":0.278}],"sh":[{"d":"LA House District 32","rep":"Dewith Carrier","w":0.329},{"d":"LA House District 33","rep":"Les Farnum","w":0.263},{"d":"LA House District 37","rep":"Skip Broussard","w":0.13},{"d":"LA House District 47","rep":"Ryan Bourriaque","w":0.117},{"d":"LA House District 35","rep":"Brett Geymann","w":0.101},{"d":"LA House District 34","rep":"Wilford Carter","w":0.033},{"d":"LA House District 36","rep":"Phil Tarver","w":0.027}],"ss":[{"d":"LA Senate District 30","rep":"Mike Reese","w":0.445},{"d":"LA Senate District 27","rep":"Jeremy Stine","w":0.28},{"d":"LA Senate District 25","rep":"Mark Abraham","w":0.275}]},"munis":[{"m":"Lake Charles","p":[{"n":"Nic Hunter","r":"Mayor, Lake Charles, LA"}]}],"slug":"calcasieu-parish"},"22021":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":1.0}],"sh":[{"d":"LA House District 20","rep":"Neil Riser","w":1.0}],"ss":[{"d":"LA Senate District 32","rep":"Glen Womack","w":1.0}]},"munis":[],"slug":"caldwell-parish"},"22023":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.847}],"sh":[{"d":"LA House District 47","rep":"Ryan Bourriaque","w":0.847}],"ss":[{"d":"LA Senate District 25","rep":"Mark Abraham","w":0.847}]},"munis":[],"slug":"cameron-parish"},"22025":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":1.0}],"sh":[{"d":"LA House District 20","rep":"Neil Riser","w":0.87},{"d":"LA House District 21","rep":"Travis Johnson","w":0.13}],"ss":[{"d":"LA Senate District 32","rep":"Glen Womack","w":1.0}]},"munis":[],"slug":"catahoula-parish"},"22027":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":1.0}],"sh":[{"d":"LA House District 11","rep":"Rashid Young","w":1.0}],"ss":[{"d":"LA Senate District 33","rep":"Stewart Cathey","w":1.0}]},"munis":[],"slug":"claiborne-parish"},"22029":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.999}],"sh":[{"d":"LA House District 21","rep":"Travis Johnson","w":0.999}],"ss":[{"d":"LA Senate District 32","rep":"Glen Womack","w":0.778},{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.221}]},"munis":[],"slug":"concordia-parish"},"22031":{"county":[],"districts":{"cd":[{"d":"LA-06","rep":"Cleo Fields","w":0.596},{"d":"LA-04","rep":"Mike Johnson","w":0.404}],"sh":[{"d":"LA House District 7","rep":"Larry Bagley","w":0.999}],"ss":[{"d":"LA Senate District 38","rep":"Thomas Pressly","w":0.528},{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.471}]},"munis":[],"slug":"de-soto-parish"},"22033":{"county":[],"districts":{"cd":[{"d":"LA-06","rep":"Cleo Fields","w":0.554},{"d":"LA-05","rep":"Julia Letlow","w":0.446}],"sh":[{"d":"LA House District 63","rep":"Barbara Carpenter","w":0.221},{"d":"LA House District 64","rep":"Kellee Hennessy","w":0.164},{"d":"LA House District 65","rep":"Lauren Ventrella","w":0.153},{"d":"LA House District 62","rep":"Roy Adams","w":0.1},{"d":"LA House District 66","rep":"Emily Chenevert","w":0.089},{"d":"LA House District 67","rep":"Terry Landry","w":0.059},{"d":"LA House District 70","rep":"Barbara Freiberg","w":0.044},{"d":"LA House District 101","rep":"Vanessa LaFleur","w":0.036},{"d":"LA House District 68","rep":"Dixon McMakin","w":0.036},{"d":"LA House District 69","rep":"Paul Sawyer","w":0.034},{"d":"LA House District 29","rep":"Edmond Jordan","w":0.033},{"d":"LA House District 61","rep":"Denise Marcelle","w":0.03}],"ss":[{"d":"LA Senate District 6","rep":"Rick Edmonds","w":0.42},{"d":"LA Senate District 15","rep":"Regina Barrow","w":0.277},{"d":"LA Senate District 14","rep":"Larry Selders","w":0.145},{"d":"LA Senate District 16","rep":"Franklin Foil","w":0.109},{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.048}]},"munis":[{"m":"Baker","p":[{"n":"Darnell Waites","r":"Mayor, Baker, LA"}]},{"m":"Baton Rouge","p":[{"n":"Sharon Weston Broome","r":"Mayor, Baton Rouge, LA"}]}],"slug":"east-baton-rouge-parish"},"22035":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.999}],"sh":[{"d":"LA House District 21","rep":"Travis Johnson","w":0.669},{"d":"LA House District 19","rep":"Francis Thompson","w":0.33}],"ss":[{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.999}]},"munis":[],"slug":"east-carroll-parish"},"22037":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":1.0}],"sh":[{"d":"LA House District 62","rep":"Roy Adams","w":0.999}],"ss":[{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":1.0}]},"munis":[],"slug":"east-feliciana-parish"},"22039":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.999}],"sh":[{"d":"LA House District 38","rep":"Rhonda Butler","w":0.882},{"d":"LA House District 41","rep":"Phillip DeVillier","w":0.117}],"ss":[{"d":"LA Senate District 28","rep":"Heather Cloud","w":1.0}]},"munis":[],"slug":"evangeline-parish"},"22041":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":1.0}],"sh":[{"d":"LA House District 20","rep":"Neil Riser","w":0.872},{"d":"LA House District 21","rep":"Travis Johnson","w":0.128}],"ss":[{"d":"LA Senate District 32","rep":"Glen Womack","w":1.0}]},"munis":[],"slug":"franklin-parish"},"22043":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.993}],"sh":[{"d":"LA House District 22","rep":"Gabe Firment","w":1.0}],"ss":[{"d":"LA Senate District 35","rep":"Jay Morris","w":0.703},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.296}]},"munis":[],"slug":"grant-parish"},"22045":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.601}],"sh":[{"d":"LA House District 49","rep":"Jacob Landry","w":0.29},{"d":"LA House District 96","rep":"Marcus Bryant","w":0.21},{"d":"LA House District 48","rep":"Beau Beaullieu","w":0.098}],"ss":[{"d":"LA Senate District 22","rep":"Blake Miguez","w":0.345},{"d":"LA Senate District 21","rep":"Robert Allain","w":0.253}]},"munis":[{"m":"New Iberia","p":[{"n":"Freddie DeCourt","r":"Mayor, New Iberia, LA"}]}],"slug":"iberia-parish"},"22047":{"county":[],"districts":{"cd":[{"d":"LA-02","rep":"Troy A. Carter","w":0.994}],"sh":[{"d":"LA House District 60","rep":"Chasity Martinez","w":0.782},{"d":"LA House District 18","rep":"Jeremy LaCombe","w":0.218}],"ss":[{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.786},{"d":"LA Senate District 2","rep":"Ed Price","w":0.214}]},"munis":[],"slug":"iberville-parish"},"22049":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":1.0}],"sh":[{"d":"LA House District 13","rep":"Jack McFarland","w":1.0}],"ss":[{"d":"LA Senate District 35","rep":"Jay Morris","w":0.909},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.091}]},"munis":[],"slug":"jackson-parish"},"22051":{"county":[],"districts":{"cd":[{"d":"LA-01","rep":"Steve Scalise","w":0.712},{"d":"LA-02","rep":"Troy A. Carter","w":0.172}],"sh":[{"d":"LA House District 84","rep":"Tim Kerner","w":0.418},{"d":"LA House District 94","rep":"Stephanie Hilferty","w":0.153},{"d":"LA House District 83","rep":"Kyle Green","w":0.089},{"d":"LA House District 87","rep":"Rodney Lyons","w":0.03},{"d":"LA House District 82","rep":"Laurie Schlegel","w":0.022},{"d":"LA House District 92","rep":"Joe Stagni","w":0.019},{"d":"LA House District 78","rep":"John Illg","w":0.015},{"d":"LA House District 85","rep":"Vincent Cox","w":0.013},{"d":"LA House District 79","rep":"Debbie Villio","w":0.012},{"d":"LA House District 54","rep":"Joe Orgeron","w":0.011},{"d":"LA House District 80","rep":"Polly Thomas","w":0.01}],"ss":[{"d":"LA Senate District 8","rep":"Patrick Connick","w":0.506},{"d":"LA Senate District 10","rep":"Kirk Talbot","w":0.043},{"d":"LA Senate District 7","rep":"Gary Carter","w":0.035},{"d":"LA Senate District 9","rep":"Cameron Henry","w":0.027},{"d":"LA Senate District 5","rep":"Royce Duplessis","w":0.018},{"d":"LA Senate District 19","rep":"Greg Miller","w":0.018}]},"munis":[{"m":"Kenner","p":[{"n":"Michael Glaser","r":"Mayor, Kenner, LA"}]}],"slug":"jefferson-parish"},"22053":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":1.0}],"sh":[{"d":"LA House District 37","rep":"Skip Broussard","w":0.977},{"d":"LA House District 32","rep":"Dewith Carrier","w":0.023}],"ss":[{"d":"LA Senate District 25","rep":"Mark Abraham","w":1.0}]},"munis":[],"slug":"jefferson-davis-parish"},"22055":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.752},{"d":"LA-06","rep":"Cleo Fields","w":0.248}],"sh":[{"d":"LA House District 39","rep":"Doyle Boudreaux","w":0.281},{"d":"LA House District 42","rep":"Chance Henry","w":0.152},{"d":"LA House District 31","rep":"Troy Hebert","w":0.138},{"d":"LA House District 44","rep":"Tehmi Chassion","w":0.121},{"d":"LA House District 43","rep":"Josh Carlson","w":0.101},{"d":"LA House District 48","rep":"Beau Beaullieu","w":0.07},{"d":"LA House District 49","rep":"Jacob Landry","w":0.069},{"d":"LA House District 45","rep":"Annie Spell","w":0.059},{"d":"LA House District 96","rep":"Marcus Bryant","w":0.009}],"ss":[{"d":"LA Senate District 23","rep":"Brach Myers","w":0.381},{"d":"LA Senate District 24","rep":"Gerald Boudreaux","w":0.276},{"d":"LA Senate District 26","rep":"Bob Hensgens","w":0.205},{"d":"LA Senate District 22","rep":"Blake Miguez","w":0.116},{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.021}]},"munis":[{"m":"Lafayette","p":[{"n":"Josh Guillory","r":"Mayor, Lafayette, LA"}]}],"slug":"lafayette-parish"},"22057":{"county":[],"districts":{"cd":[{"d":"LA-01","rep":"Steve Scalise","w":0.661},{"d":"LA-03","rep":"Clay Higgins","w":0.185},{"d":"LA-02","rep":"Troy A. Carter","w":0.022}],"sh":[{"d":"LA House District 54","rep":"Joe Orgeron","w":0.625},{"d":"LA House District 55","rep":"Bryan Fontenot","w":0.179},{"d":"LA House District 51","rep":"Beryl Amedée","w":0.042}],"ss":[{"d":"LA Senate District 20","rep":"Mike Fési","w":0.555},{"d":"LA Senate District 19","rep":"Greg Miller","w":0.233},{"d":"LA Senate District 21","rep":"Robert Allain","w":0.037},{"d":"LA Senate District 2","rep":"Ed Price","w":0.02}]},"munis":[],"slug":"lafourche-parish"},"22059":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.993},{"d":"LA-04","rep":"Mike Johnson","w":0.005}],"sh":[{"d":"LA House District 22","rep":"Gabe Firment","w":0.597},{"d":"LA House District 20","rep":"Neil Riser","w":0.403}],"ss":[{"d":"LA Senate District 32","rep":"Glen Womack","w":1.0}]},"munis":[],"slug":"lasalle-parish"},"22061":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":1.0}],"sh":[{"d":"LA House District 12","rep":"Chris Turner","w":0.769},{"d":"LA House District 11","rep":"Rashid Young","w":0.231}],"ss":[{"d":"LA Senate District 33","rep":"Stewart Cathey","w":0.584},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.233},{"d":"LA Senate District 35","rep":"Jay Morris","w":0.183}]},"munis":[],"slug":"lincoln-parish"},"22063":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.645},{"d":"LA-01","rep":"Steve Scalise","w":0.354}],"sh":[{"d":"LA House District 95","rep":"Shane Mack","w":0.444},{"d":"LA House District 81","rep":"Jeff Wiley","w":0.376},{"d":"LA House District 64","rep":"Kellee Hennessy","w":0.096},{"d":"LA House District 71","rep":"Roger Wilder","w":0.084}],"ss":[{"d":"LA Senate District 13","rep":"Valarie Hodges","w":0.53},{"d":"LA Senate District 6","rep":"Rick Edmonds","w":0.277},{"d":"LA Senate District 18","rep":"Eddie Lambert","w":0.179},{"d":"LA Senate District 37","rep":"Bill Wheat","w":0.013}]},"munis":[],"slug":"livingston-parish"},"22065":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.999}],"sh":[{"d":"LA House District 19","rep":"Francis Thompson","w":0.631},{"d":"LA House District 21","rep":"Travis Johnson","w":0.368}],"ss":[{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.999}]},"munis":[],"slug":"madison-parish"},"22067":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.997}],"sh":[{"d":"LA House District 19","rep":"Francis Thompson","w":0.86},{"d":"LA House District 16","rep":"Adrian Fisher","w":0.14}],"ss":[{"d":"LA Senate District 33","rep":"Stewart Cathey","w":0.763},{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.236}]},"munis":[{"m":"Bastrop","p":[{"n":"Henry Cotton","r":"Mayor, Bastrop, LA"}]}],"slug":"morehouse-parish"},"22069":{"county":[],"districts":{"cd":[{"d":"LA-06","rep":"Cleo Fields","w":0.997}],"sh":[{"d":"LA House District 25","rep":"Jason DeWitt","w":0.678},{"d":"LA House District 13","rep":"Jack McFarland","w":0.296},{"d":"LA House District 22","rep":"Gabe Firment","w":0.026}],"ss":[{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.968},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.032}]},"munis":[{"m":"Natchitoches","p":[{"n":"Ronnie Williams. Jr","r":"Mayor, Natchitoches, LA"}]}],"slug":"natchitoches-parish"},"22071":{"county":[],"districts":{"cd":[{"d":"LA-01","rep":"Steve Scalise","w":0.751},{"d":"LA-02","rep":"Troy A. Carter","w":0.248}],"sh":[{"d":"LA House District 100","rep":"Dana Henry","w":0.752},{"d":"LA House District 99","rep":"Candace Newell","w":0.065},{"d":"LA House District 102","rep":"Delisha Boyd","w":0.054},{"d":"LA House District 97","rep":"Ed Murray","w":0.028},{"d":"LA House District 94","rep":"Stephanie Hilferty","w":0.022},{"d":"LA House District 93","rep":"Alonzo Knox","w":0.019},{"d":"LA House District 98","rep":"Aimee Freeman","w":0.019},{"d":"LA House District 23","rep":"Shaun Mena","w":0.016},{"d":"LA House District 91","rep":"Mandie Landry","w":0.015}],"ss":[{"d":"LA Senate District 1","rep":"Bob Owen","w":0.301},{"d":"LA Senate District 3","rep":"Sidney Barthelemy","w":0.109},{"d":"LA Senate District 4","rep":"Jimmy Harris","w":0.07},{"d":"LA Senate District 7","rep":"Gary Carter","w":0.059},{"d":"LA Senate District 5","rep":"Royce Duplessis","w":0.04},{"d":"LA Senate District 9","rep":"Cameron Henry","w":0.01}]},"munis":[{"m":"New Orleans","p":[{"n":"Helena Moreno","r":"Mayor, New Orleans, LA"}]}],"slug":"orleans-parish"},"22073":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.591},{"d":"LA-05","rep":"Julia Letlow","w":0.409}],"sh":[{"d":"LA House District 15","rep":"Foy Gadberry","w":0.366},{"d":"LA House District 14","rep":"Michael Echols","w":0.227},{"d":"LA House District 20","rep":"Neil Riser","w":0.203},{"d":"LA House District 17","rep":"Pat Moore","w":0.131},{"d":"LA House District 16","rep":"Adrian Fisher","w":0.074}],"ss":[{"d":"LA Senate District 33","rep":"Stewart Cathey","w":0.313},{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.26},{"d":"LA Senate District 35","rep":"Jay Morris","w":0.257},{"d":"LA Senate District 32","rep":"Glen Womack","w":0.17}]},"munis":[{"m":"Monroe","p":[{"n":"Friday Ellis","r":"Mayor, Monroe, LA"}]}],"slug":"ouachita-parish"},"22075":{"county":[],"districts":{"cd":[{"d":"LA-01","rep":"Steve Scalise","w":0.514}],"sh":[{"d":"LA House District 105","rep":"Jacob Braud","w":0.464}],"ss":[{"d":"LA Senate District 7","rep":"Gary Carter","w":0.277},{"d":"LA Senate District 8","rep":"Patrick Connick","w":0.188}]},"munis":[],"slug":"plaquemines-parish"},"22077":{"county":[],"districts":{"cd":[{"d":"LA-06","rep":"Cleo Fields","w":0.996}],"sh":[{"d":"LA House District 18","rep":"Jeremy LaCombe","w":1.0}],"ss":[{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":1.0}]},"munis":[],"slug":"pointe-coupee-parish"},"22079":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.514},{"d":"LA-06","rep":"Cleo Fields","w":0.485}],"sh":[{"d":"LA House District 38","rep":"Rhonda Butler","w":0.421},{"d":"LA House District 25","rep":"Jason DeWitt","w":0.294},{"d":"LA House District 27","rep":"Mike Johnson","w":0.25},{"d":"LA House District 26","rep":"Ed Larvadain","w":0.034}],"ss":[{"d":"LA Senate District 30","rep":"Mike Reese","w":0.293},{"d":"LA Senate District 32","rep":"Glen Womack","w":0.207},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.179},{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.168},{"d":"LA Senate District 28","rep":"Heather Cloud","w":0.105},{"d":"LA Senate District 35","rep":"Jay Morris","w":0.048}]},"munis":[{"m":"Alexandria","p":[{"n":"Jacques Roy","r":"Mayor, Alexandria, LA"}]},{"m":"Pineville","p":[{"n":"Clarence Fields","r":"Mayor, Pineville, LA"}]}],"slug":"rapides-parish"},"22081":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.995},{"d":"LA-06","rep":"Cleo Fields","w":0.005}],"sh":[{"d":"LA House District 5","rep":"Dennis Bamburg","w":0.999}],"ss":[{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":1.0}]},"munis":[],"slug":"red-river-parish"},"22083":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.999}],"sh":[{"d":"LA House District 19","rep":"Francis Thompson","w":1.0}],"ss":[{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.939},{"d":"LA Senate District 32","rep":"Glen Womack","w":0.061}]},"munis":[],"slug":"richland-parish"},"22085":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.998}],"sh":[{"d":"LA House District 24","rep":"Rodney Schamerhorn","w":0.517},{"d":"LA House District 7","rep":"Larry Bagley","w":0.482}],"ss":[{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.999}]},"munis":[],"slug":"sabine-parish"},"22087":{"county":[],"districts":{"cd":[{"d":"LA-01","rep":"Steve Scalise","w":0.296},{"d":"LA-02","rep":"Troy A. Carter","w":0.008}],"sh":[{"d":"LA House District 103","rep":"Mike Bayham","w":0.286}],"ss":[{"d":"LA Senate District 1","rep":"Bob Owen","w":0.269},{"d":"LA Senate District 3","rep":"Sidney Barthelemy","w":0.018}]},"munis":[],"slug":"st-bernard-parish"},"22089":{"county":[],"districts":{"cd":[{"d":"LA-02","rep":"Troy A. Carter","w":0.721},{"d":"LA-01","rep":"Steve Scalise","w":0.278}],"sh":[{"d":"LA House District 56","rep":"Beth Billings","w":0.882},{"d":"LA House District 57","rep":"Sylvia Taylor","w":0.118}],"ss":[{"d":"LA Senate District 19","rep":"Greg Miller","w":1.0}]},"munis":[],"slug":"st-charles-parish"},"22091":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":1.0}],"sh":[{"d":"LA House District 72","rep":"Robby Carter","w":0.999}],"ss":[{"d":"LA Senate District 6","rep":"Rick Edmonds","w":0.762},{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.238}]},"munis":[],"slug":"st-helena-parish"},"22093":{"county":[],"districts":{"cd":[{"d":"LA-02","rep":"Troy A. Carter","w":0.997}],"sh":[{"d":"LA House District 58","rep":"Ken Brass","w":0.707},{"d":"LA House District 81","rep":"Jeff Wiley","w":0.293}],"ss":[{"d":"LA Senate District 2","rep":"Ed Price","w":0.694},{"d":"LA Senate District 18","rep":"Eddie Lambert","w":0.305}]},"munis":[],"slug":"st-james-parish"},"22095":{"county":[],"districts":{"cd":[{"d":"LA-02","rep":"Troy A. Carter","w":0.998}],"sh":[{"d":"LA House District 57","rep":"Sylvia Taylor","w":0.642},{"d":"LA House District 58","rep":"Ken Brass","w":0.356}],"ss":[{"d":"LA Senate District 19","rep":"Greg Miller","w":0.738},{"d":"LA Senate District 2","rep":"Ed Price","w":0.262}]},"munis":[],"slug":"st-john-the-baptist-parish"},"22097":{"county":[],"districts":{"cd":[{"d":"LA-06","rep":"Cleo Fields","w":0.998}],"sh":[{"d":"LA House District 46","rep":"Chad Boyer","w":0.453},{"d":"LA House District 28","rep":"Daryl Deshotel","w":0.212},{"d":"LA House District 40","rep":"Dustin Miller","w":0.211},{"d":"LA House District 41","rep":"Phillip DeVillier","w":0.123}],"ss":[{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.738},{"d":"LA Senate District 24","rep":"Gerald Boudreaux","w":0.243},{"d":"LA Senate District 28","rep":"Heather Cloud","w":0.019}]},"munis":[{"m":"Opelousas","p":[{"n":"Julius Alsandor","r":"Mayor, Opelousas, LA"}]}],"slug":"st-landry-parish"},"22099":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.996}],"sh":[{"d":"LA House District 46","rep":"Chad Boyer","w":0.467},{"d":"LA House District 50","rep":"Vinney St. Blanc","w":0.26},{"d":"LA House District 96","rep":"Marcus Bryant","w":0.234},{"d":"LA House District 48","rep":"Beau Beaullieu","w":0.039}],"ss":[{"d":"LA Senate District 22","rep":"Blake Miguez","w":0.652},{"d":"LA Senate District 21","rep":"Robert Allain","w":0.26},{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.051},{"d":"LA Senate District 24","rep":"Gerald Boudreaux","w":0.037}]},"munis":[],"slug":"st-martin-parish"},"22101":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.659}],"sh":[{"d":"LA House District 50","rep":"Vinney St. Blanc","w":0.559},{"d":"LA House District 51","rep":"Beryl Amedée","w":0.056}],"ss":[{"d":"LA Senate District 21","rep":"Robert Allain","w":0.616}]},"munis":[],"slug":"st-mary-parish"},"22103":{"county":[],"districts":{"cd":[{"d":"LA-01","rep":"Steve Scalise","w":0.991}],"sh":[{"d":"LA House District 74","rep":"Peter Egan","w":0.393},{"d":"LA House District 89","rep":"Kim Carver","w":0.226},{"d":"LA House District 104","rep":"Jay Gallé","w":0.144},{"d":"LA House District 76","rep":"Stephanie Berault","w":0.118},{"d":"LA House District 77","rep":"Mark Wright","w":0.067},{"d":"LA House District 90","rep":"Brian Glorioso","w":0.042}],"ss":[{"d":"LA Senate District 1","rep":"Bob Owen","w":0.296},{"d":"LA Senate District 12","rep":"Beth Mizell","w":0.282},{"d":"LA Senate District 11","rep":"Patrick McMath","w":0.205},{"d":"LA Senate District 37","rep":"Bill Wheat","w":0.029}]},"munis":[{"m":"Slidell","p":[{"n":"Greg Cromer","r":"Mayor, Slidell, LA"}]}],"slug":"st-tammany-parish"},"22105":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.684},{"d":"LA-01","rep":"Steve Scalise","w":0.315}],"sh":[{"d":"LA House District 73","rep":"Kim Coates","w":0.399},{"d":"LA House District 86","rep":"Nicky Muscarello","w":0.291},{"d":"LA House District 72","rep":"Robby Carter","w":0.29},{"d":"LA House District 95","rep":"Shane Mack","w":0.019}],"ss":[{"d":"LA Senate District 12","rep":"Beth Mizell","w":0.58},{"d":"LA Senate District 37","rep":"Bill Wheat","w":0.382}]},"munis":[],"slug":"tangipahoa-parish"},"22107":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.999}],"sh":[{"d":"LA House District 21","rep":"Travis Johnson","w":0.999}],"ss":[{"d":"LA Senate District 34","rep":"Katrina Jackson-Andrews","w":0.999}]},"munis":[],"slug":"tensas-parish"},"22109":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.727}],"sh":[{"d":"LA House District 53","rep":"Jessica Domangue","w":0.491},{"d":"LA House District 51","rep":"Beryl Amedée","w":0.19},{"d":"LA House District 52","rep":"Jerome Zeringue","w":0.033}],"ss":[{"d":"LA Senate District 20","rep":"Mike Fési","w":0.525},{"d":"LA Senate District 21","rep":"Robert Allain","w":0.189}]},"munis":[],"slug":"terrebonne-parish"},"22111":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.998}],"sh":[{"d":"LA House District 12","rep":"Chris Turner","w":1.0}],"ss":[{"d":"LA Senate District 33","rep":"Stewart Cathey","w":1.0}]},"munis":[],"slug":"union-parish"},"22113":{"county":[],"districts":{"cd":[{"d":"LA-03","rep":"Clay Higgins","w":0.847}],"sh":[{"d":"LA House District 47","rep":"Ryan Bourriaque","w":0.745},{"d":"LA House District 49","rep":"Jacob Landry","w":0.073},{"d":"LA House District 31","rep":"Troy Hebert","w":0.027}],"ss":[{"d":"LA Senate District 26","rep":"Bob Hensgens","w":0.845}]},"munis":[{"m":"Abbeville","p":[{"n":"Roslyn R. White","r":"Mayor, Abbeville, LA"}]}],"slug":"vermilion-parish"},"22115":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.997}],"sh":[{"d":"LA House District 24","rep":"Rodney Schamerhorn","w":0.825},{"d":"LA House District 30","rep":"Chuck Owen","w":0.175}],"ss":[{"d":"LA Senate District 30","rep":"Mike Reese","w":1.0}]},"munis":[],"slug":"vernon-parish"},"22117":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.998}],"sh":[{"d":"LA House District 75","rep":"John Wyble","w":0.999}],"ss":[{"d":"LA Senate District 12","rep":"Beth Mizell","w":0.999}]},"munis":[],"slug":"washington-parish"},"22119":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":1.0}],"sh":[{"d":"LA House District 10","rep":"Wayne McMahen","w":1.0}],"ss":[{"d":"LA Senate District 36","rep":"Adam Bass","w":0.546},{"d":"LA Senate District 33","rep":"Stewart Cathey","w":0.275},{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.179}]},"munis":[],"slug":"webster-parish"},"22121":{"county":[],"districts":{"cd":[{"d":"LA-06","rep":"Cleo Fields","w":0.999}],"sh":[{"d":"LA House District 18","rep":"Jeremy LaCombe","w":0.744},{"d":"LA House District 29","rep":"Edmond Jordan","w":0.256}],"ss":[{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.857},{"d":"LA Senate District 2","rep":"Ed Price","w":0.143}]},"munis":[],"slug":"west-baton-rouge-parish"},"22123":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":1.0}],"sh":[{"d":"LA House District 19","rep":"Francis Thompson","w":1.0}],"ss":[{"d":"LA Senate District 33","rep":"Stewart Cathey","w":0.999}]},"munis":[],"slug":"west-carroll-parish"},"22125":{"county":[],"districts":{"cd":[{"d":"LA-05","rep":"Julia Letlow","w":0.996}],"sh":[{"d":"LA House District 18","rep":"Jeremy LaCombe","w":1.0}],"ss":[{"d":"LA Senate District 32","rep":"Glen Womack","w":0.885},{"d":"LA Senate District 17","rep":"Caleb Kleinpeter","w":0.115}]},"munis":[],"slug":"west-feliciana-parish"},"22127":{"county":[],"districts":{"cd":[{"d":"LA-04","rep":"Mike Johnson","w":0.998}],"sh":[{"d":"LA House District 13","rep":"Jack McFarland","w":1.0}],"ss":[{"d":"LA Senate District 35","rep":"Jay Morris","w":0.412},{"d":"LA Senate District 29","rep":"Jay Luneau","w":0.331},{"d":"LA Senate District 31","rep":"Alan Seabaugh","w":0.257}]},"munis":[],"slug":"winn-parish"},"23001":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.998}],"sh":[{"d":"ME House District 91","rep":"Josh Morris","w":0.214},{"d":"ME House District 92","rep":"Steve Wood","w":0.125},{"d":"ME House District 90","rep":"Laurel Libby","w":0.114},{"d":"ME House District 76","rep":"Sheila Lyman","w":0.105},{"d":"ME House District 87","rep":"David Boyer","w":0.105},{"d":"ME House District 98","rep":"Kilton Webb","w":0.081},{"d":"ME House District 88","rep":"Quentin Chapman","w":0.074},{"d":"ME House District 97","rep":"Rick Mason","w":0.045},{"d":"ME House District 96","rep":"Mike Lajoie","w":0.043},{"d":"ME House District 56","rep":"Randall Greenwood","w":0.034},{"d":"ME House District 77","rep":"Tammy Schmersal-Burgess","w":0.015},{"d":"ME House District 93","rep":"Julie McCabe","w":0.012},{"d":"ME House District 86","rep":"Rolf Olsen","w":0.012},{"d":"ME House District 94","rep":"Scott Harriman","w":0.011},{"d":"ME House District 95","rep":"Mana Abdi","w":0.006}],"ss":[{"d":"ME Senate District 17","rep":"Jeff Timberlake","w":0.541},{"d":"ME Senate District 20","rep":"Bruce Bickford","w":0.305},{"d":"ME Senate District 18","rep":"Rick Bennett","w":0.082},{"d":"ME Senate District 21","rep":"Peggy Rotundo","w":0.071}]},"munis":[{"m":"Auburn","p":[{"n":"Jeffrey D. Harmon","r":"Mayor, Auburn, ME"}]},{"m":"Lewiston","p":[{"n":"Carl L. Sheline","r":"Mayor, Lewiston, ME"}]}],"slug":"androscoggin"},"23003":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":1.0}],"sh":[{"d":"ME House District 1","rep":"Lucien Daigle","w":0.488},{"d":"ME House District 6","rep":"Donald Ardell","w":0.168},{"d":"ME House District 8","rep":"Tracy Quint","w":0.127},{"d":"ME House District 2","rep":"Roger Albert","w":0.095},{"d":"ME House District 3","rep":"Mark Babin","w":0.065},{"d":"ME House District 7","rep":"Gregg Swallow","w":0.023},{"d":"ME House District 4","rep":"Timmy Guerrette","w":0.022},{"d":"ME House District 5","rep":"Joseph Underwood","w":0.011}],"ss":[{"d":"ME Senate District 1","rep":"Sue Bernard","w":0.681},{"d":"ME Senate District 2","rep":"Trey Stewart","w":0.319}]},"munis":[],"slug":"aroostook"},"23005":{"county":[],"districts":{"cd":[{"d":"ME-01","rep":"Chellie Pingree","w":0.844}],"sh":[{"d":"ME House District 84","rep":"Mark Walker","w":0.113},{"d":"ME House District 83","rep":"Marygrace Cimino","w":0.083},{"d":"ME House District 86","rep":"Rolf Olsen","w":0.07},{"d":"ME House District 104","rep":"Amy Arata","w":0.057},{"d":"ME House District 85","rep":"Kim Pomerleau","w":0.053},{"d":"ME House District 99","rep":"Cheryl Golek","w":0.044},{"d":"ME House District 105","rep":"Annie Graham","w":0.038},{"d":"ME House District 102","rep":"Melanie Sachs","w":0.03},{"d":"ME House District 110","rep":"Christina Mitchell","w":0.023},{"d":"ME House District 108","rep":"Parnell Terry","w":0.022},{"d":"ME House District 101","rep":"Poppy Arford","w":0.022},{"d":"ME House District 106","rep":"Barbara Bagshaw","w":0.022},{"d":"ME House District 111","rep":"Amy Kuhn","w":0.022},{"d":"ME House District 109","rep":"Ellie Sato","w":0.02},{"d":"ME House District 107","rep":"Mark Cooper","w":0.019},{"d":"ME House District 98","rep":"Kilton Webb","w":0.019},{"d":"ME House District 126","rep":"Drew Gattine","w":0.017},{"d":"ME House District 124","rep":"Sophie Warren","w":0.015},{"d":"ME House District 103","rep":"Art Bell","w":0.012},{"d":"ME House District 123","rep":"Michelle Boyer","w":0.012},{"d":"ME House District 125","rep":"Kelly Murphy","w":0.011},{"d":"ME House District 128","rep":"Sue Salisbury","w":0.009},{"d":"ME House District 100","rep":"Dan Ankeles","w":0.009},{"d":"ME House District 112","rep":"Ed Crockett","w":0.006},{"d":"ME House District 120","rep":"Deqa Dhalac","w":0.006},{"d":"ME House District 113","rep":"Grayson Lookner","w":0.006}],"ss":[{"d":"ME Senate District 22","rep":"Jim Libby","w":0.167},{"d":"ME Senate District 23","rep":"Mattie Daughtry","w":0.132},{"d":"ME Senate District 26","rep":"Tim Nangle","w":0.12},{"d":"ME Senate District 25","rep":"Teresa Pierce","w":0.108},{"d":"ME Senate District 18","rep":"Rick Bennett","w":0.083},{"d":"ME Senate District 30","rep":"Stacy Brenner","w":0.08},{"d":"ME Senate District 20","rep":"Bruce Bickford","w":0.039},{"d":"ME Senate District 29","rep":"Anne Carney","w":0.026},{"d":"ME Senate District 27","rep":"Jill Duson","w":0.016},{"d":"ME Senate District 28","rep":"Rachel Talbot Ross","w":0.009}]},"munis":[{"m":"Portland","p":[{"n":"Mark Dion","r":"Mayor, Portland, ME"}]},{"m":"South Portland","p":[{"n":"Misha C. Pride","r":"Mayor, South Portland, ME"}]},{"m":"Westbrook","p":[{"n":"David Morse","r":"Mayor, Westbrook, ME"}]}],"slug":"cumberland"},"23007":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.999}],"sh":[{"d":"ME House District 73","rep":"Mike Soboleski","w":0.706},{"d":"ME House District 74","rep":"Randy Hall","w":0.186},{"d":"ME House District 75","rep":"Steve Bunker","w":0.053},{"d":"ME House District 76","rep":"Sheila Lyman","w":0.028},{"d":"ME House District 58","rep":"Sharon Frost","w":0.027}],"ss":[{"d":"ME Senate District 19","rep":"Joe Martin","w":0.661},{"d":"ME Senate District 5","rep":"Russell Black","w":0.339}]},"munis":[],"slug":"franklin"},"23009":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.801}],"sh":[{"d":"ME House District 18","rep":"Mathew McIntyre","w":0.358},{"d":"ME House District 16","rep":"Nina Milliken","w":0.086},{"d":"ME House District 12","rep":"Billy Bob Faulkingham","w":0.074},{"d":"ME House District 17","rep":"Steve Bishop","w":0.069},{"d":"ME House District 13","rep":"Russ White","w":0.061},{"d":"ME House District 15","rep":"Holly Eaton","w":0.053},{"d":"ME House District 14","rep":"Gary Friedmann","w":0.047}],"ss":[{"d":"ME Senate District 6","rep":"Marianne Moore","w":0.422},{"d":"ME Senate District 7","rep":"Nicole Grohoski","w":0.271},{"d":"ME Senate District 10","rep":"David Haggan","w":0.055}]},"munis":[],"slug":"hancock"},"23011":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.563},{"d":"ME-01","rep":"Chellie Pingree","w":0.437}],"sh":[{"d":"ME House District 58","rep":"Sharon Frost","w":0.2},{"d":"ME House District 62","rep":"Katrina Smith","w":0.097},{"d":"ME House District 61","rep":"Alicia Collins","w":0.095},{"d":"ME House District 63","rep":"Paul Flynn","w":0.092},{"d":"ME House District 56","rep":"Randall Greenwood","w":0.083},{"d":"ME House District 57","rep":"Tavis Hasenfus","w":0.072},{"d":"ME House District 55","rep":"Dan Shagoury","w":0.059},{"d":"ME House District 53","rep":"Michael Lemelin","w":0.058},{"d":"ME House District 68","rep":"Amanda Collamore","w":0.047},{"d":"ME House District 60","rep":"Bill Bridgeo","w":0.04},{"d":"ME House District 66","rep":"Bob Nutting","w":0.033},{"d":"ME House District 67","rep":"Shelley Rudnicki","w":0.031},{"d":"ME House District 54","rep":"Karen Montell","w":0.029},{"d":"ME House District 91","rep":"Josh Morris","w":0.027},{"d":"ME House District 59","rep":"Dave Rollins","w":0.021},{"d":"ME House District 65","rep":"Cassie Julia","w":0.009},{"d":"ME House District 64","rep":"Flavia DeBrito","w":0.007}],"ss":[{"d":"ME Senate District 15","rep":"Dick Bradstreet","w":0.326},{"d":"ME Senate District 14","rep":"Craig Hickman","w":0.286},{"d":"ME Senate District 16","rep":"Scott Cyrway","w":0.127},{"d":"ME Senate District 3","rep":"Brad Farrin","w":0.089},{"d":"ME Senate District 17","rep":"Jeff Timberlake","w":0.075},{"d":"ME Senate District 5","rep":"Russell Black","w":0.06},{"d":"ME Senate District 13","rep":"Cameron Reny","w":0.037}]},"munis":[{"m":"Augusta","p":[{"n":"Mark O’Brien","r":"Mayor, Augusta, ME"}]},{"m":"Waterville","p":[{"n":"Michael Morris","r":"Mayor, Waterville, ME"}]}],"slug":"kennebec"},"23013":{"county":[],"districts":{"cd":[{"d":"ME-01","rep":"Chellie Pingree","w":0.406}],"sh":[{"d":"ME House District 44","rep":"Bill Pluecker","w":0.095},{"d":"ME House District 43","rep":"Ann Matlack","w":0.075},{"d":"ME House District 45","rep":"Abden Simmons","w":0.05},{"d":"ME House District 15","rep":"Holly Eaton","w":0.04},{"d":"ME House District 41","rep":"Vicki Doudera","w":0.038},{"d":"ME House District 42","rep":"Valli Geiger","w":0.034},{"d":"ME House District 40","rep":"Mike Ray","w":0.03}],"ss":[{"d":"ME Senate District 12","rep":"Pinny Beebe-Center","w":0.314},{"d":"ME Senate District 13","rep":"Cameron Reny","w":0.035},{"d":"ME Senate District 7","rep":"Nicole Grohoski","w":0.012}]},"munis":[],"slug":"knox"},"23015":{"county":[],"districts":{"cd":[{"d":"ME-01","rep":"Chellie Pingree","w":0.754}],"sh":[{"d":"ME House District 47","rep":"Wayne Farrin","w":0.222},{"d":"ME House District 46","rep":"Lydia Crafts","w":0.154},{"d":"ME House District 45","rep":"Abden Simmons","w":0.146},{"d":"ME House District 48","rep":"Holly Stover","w":0.134},{"d":"ME House District 53","rep":"Michael Lemelin","w":0.048},{"d":"ME House District 62","rep":"Katrina Smith","w":0.034}],"ss":[{"d":"ME Senate District 13","rep":"Cameron Reny","w":0.691},{"d":"ME Senate District 24","rep":"Denise Tepler","w":0.048}]},"munis":[],"slug":"lincoln"},"23017":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.999}],"sh":[{"d":"ME House District 73","rep":"Mike Soboleski","w":0.378},{"d":"ME House District 81","rep":"Peter Wood","w":0.151},{"d":"ME House District 78","rep":"Rachel Henderson","w":0.117},{"d":"ME House District 82","rep":"Nate Wadsworth","w":0.105},{"d":"ME House District 77","rep":"Tammy Schmersal-Burgess","w":0.087},{"d":"ME House District 79","rep":"Mike Lance","w":0.072},{"d":"ME House District 80","rep":"Caldwell Jackson","w":0.067},{"d":"ME House District 83","rep":"Marygrace Cimino","w":0.023}],"ss":[{"d":"ME Senate District 19","rep":"Joe Martin","w":0.766},{"d":"ME Senate District 18","rep":"Rick Bennett","w":0.201},{"d":"ME Senate District 22","rep":"Jim Libby","w":0.033}]},"munis":[],"slug":"oxford"},"23019":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":1.0}],"sh":[{"d":"ME House District 8","rep":"Tracy Quint","w":0.132},{"d":"ME House District 28","rep":"Irene Gifford","w":0.099},{"d":"ME House District 18","rep":"Mathew McIntyre","w":0.088},{"d":"ME House District 27","rep":"Gary Drinkwater","w":0.064},{"d":"ME House District 32","rep":"Steven Foster","w":0.056},{"d":"ME House District 33","rep":"Ken Fredette","w":0.047},{"d":"ME House District 26","rep":"Jim Dill","w":0.032},{"d":"ME House District 19","rep":"Dick Campbell","w":0.024},{"d":"ME House District 34","rep":"Abigail Griffin","w":0.021},{"d":"ME House District 35","rep":"Jim Thorne","w":0.021},{"d":"ME House District 36","rep":"Kim Haggan","w":0.019},{"d":"ME House District 24","rep":"Sean Faircloth","w":0.006}],"ss":[{"d":"ME Senate District 2","rep":"Trey Stewart","w":0.44},{"d":"ME Senate District 8","rep":"Mike Tipping","w":0.303},{"d":"ME Senate District 4","rep":"Stacey Guerin","w":0.109},{"d":"ME Senate District 10","rep":"David Haggan","w":0.082},{"d":"ME Senate District 3","rep":"Brad Farrin","w":0.046},{"d":"ME Senate District 9","rep":"Joe Baldacci","w":0.02}]},"munis":[],"slug":"penobscot"},"23021":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":1.0}],"sh":[{"d":"ME House District 30","rep":"Jim White","w":0.927},{"d":"ME House District 31","rep":"Chad Perkins","w":0.073}],"ss":[{"d":"ME Senate District 4","rep":"Stacey Guerin","w":1.0}]},"munis":[],"slug":"piscataquis"},"23023":{"county":[],"districts":{"cd":[{"d":"ME-01","rep":"Chellie Pingree","w":0.81}],"sh":[{"d":"ME House District 49","rep":"Allison Hepler","w":0.354},{"d":"ME House District 52","rep":"Sally Cluchey","w":0.283},{"d":"ME House District 51","rep":"Rafael Macias","w":0.073},{"d":"ME House District 98","rep":"Kilton Webb","w":0.06},{"d":"ME House District 50","rep":"David Sinclair","w":0.036}],"ss":[{"d":"ME Senate District 24","rep":"Denise Tepler","w":0.806}]},"munis":[],"slug":"sagadahoc"},"23025":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.999}],"sh":[{"d":"ME House District 72","rep":"Liz Caruso","w":0.598},{"d":"ME House District 73","rep":"Mike Soboleski","w":0.235},{"d":"ME House District 69","rep":"Dean Cray","w":0.047},{"d":"ME House District 71","rep":"Jack Ducharme","w":0.035},{"d":"ME House District 66","rep":"Bob Nutting","w":0.02},{"d":"ME House District 70","rep":"Jennifer Poirier","w":0.015},{"d":"ME House District 30","rep":"Jim White","w":0.015},{"d":"ME House District 67","rep":"Shelley Rudnicki","w":0.013},{"d":"ME House District 68","rep":"Amanda Collamore","w":0.012},{"d":"ME House District 74","rep":"Randy Hall","w":0.011}],"ss":[{"d":"ME Senate District 5","rep":"Russell Black","w":0.91},{"d":"ME Senate District 3","rep":"Brad Farrin","w":0.077},{"d":"ME Senate District 16","rep":"Scott Cyrway","w":0.013}]},"munis":[],"slug":"somerset"},"23027":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.887}],"sh":[{"d":"ME House District 38","rep":"Ben Hymes","w":0.274},{"d":"ME House District 40","rep":"Mike Ray","w":0.213},{"d":"ME House District 37","rep":"Reagan Paul","w":0.146},{"d":"ME House District 68","rep":"Amanda Collamore","w":0.09},{"d":"ME House District 39","rep":"Jan Dodge","w":0.085},{"d":"ME House District 62","rep":"Katrina Smith","w":0.05},{"d":"ME House District 63","rep":"Paul Flynn","w":0.026}],"ss":[{"d":"ME Senate District 11","rep":"Chip Curry","w":0.884}]},"munis":[],"slug":"waldo"},"23029":{"county":[],"districts":{"cd":[{"d":"ME-02","rep":"Jared F. Golden","w":0.887}],"sh":[{"d":"ME House District 10","rep":"Will Tuell","w":0.278},{"d":"ME House District 8","rep":"Tracy Quint","w":0.198},{"d":"ME House District 18","rep":"Mathew McIntyre","w":0.191},{"d":"ME House District 11","rep":"Tiffany Strout","w":0.1},{"d":"ME House District 9","rep":"Artie Mingo","w":0.09},{"d":"ME House District 12","rep":"Billy Bob Faulkingham","w":0.014}],"ss":[{"d":"ME Senate District 6","rep":"Marianne Moore","w":0.872}]},"munis":[],"slug":"washington"},"23031":{"county":[],"districts":{"cd":[{"d":"ME-01","rep":"Chellie Pingree","w":0.806}],"sh":[{"d":"ME House District 139","rep":"Woody Woodsome","w":0.09},{"d":"ME House District 144","rep":"Jeff Adams","w":0.076},{"d":"ME House District 141","rep":"Lucas Lanigan","w":0.071},{"d":"ME House District 138","rep":"Mark Blier","w":0.068},{"d":"ME House District 136","rep":"John Eder","w":0.061},{"d":"ME House District 140","rep":"Wayne Parry","w":0.051},{"d":"ME House District 148","rep":"Thomas Lavigne","w":0.048},{"d":"ME House District 137","rep":"Nathan Carlow","w":0.043},{"d":"ME House District 145","rep":"Bob Foley","w":0.042},{"d":"ME House District 146","rep":"Gerry Runte","w":0.038},{"d":"ME House District 149","rep":"Tiffany Roberts","w":0.033},{"d":"ME House District 134","rep":"Traci Gere","w":0.031},{"d":"ME House District 135","rep":"Dan Sayre","w":0.024},{"d":"ME House District 150","rep":"Michele Meyer","w":0.022},{"d":"ME House District 143","rep":"Ann Fredericks","w":0.021},{"d":"ME House District 151","rep":"Kristi Mathieson","w":0.016},{"d":"ME House District 133","rep":"Marc Malon","w":0.015},{"d":"ME House District 147","rep":"Holly Sargent","w":0.014},{"d":"ME House District 126","rep":"Drew Gattine","w":0.011},{"d":"ME House District 129","rep":"Marshall Archer","w":0.01},{"d":"ME House District 130","rep":"Lynn Copeland","w":0.01},{"d":"ME House District 131","rep":"Lori Gramlich","w":0.006},{"d":"ME House District 142","rep":"Anne-Marie Mastraccio","w":0.005}],"ss":[{"d":"ME Senate District 22","rep":"Jim Libby","w":0.213},{"d":"ME Senate District 34","rep":"Joe Rafferty","w":0.151},{"d":"ME Senate District 33","rep":"Matt Harrington","w":0.149},{"d":"ME Senate District 32","rep":"Henry Ingwersen","w":0.117},{"d":"ME Senate District 35","rep":"Mark Lawrence","w":0.107},{"d":"ME Senate District 31","rep":"Donna Bailey","w":0.07}]},"munis":[{"m":"Biddeford","p":[{"n":"Martin Grohman","r":"Mayor, Biddeford, ME"}]},{"m":"Saco","p":[{"n":"Jodi MacPhail","r":"Mayor, Saco, ME"}]},{"m":"Sanford","p":[{"n":"Becky A. Brink","r":"Mayor, Sanford, ME"}]}],"slug":"york"},"24001":{"county":[],"districts":{"cd":[{"d":"MD-06","rep":"April McClain Delaney","w":0.998}],"sh":[{"d":"MD House District 1C","rep":"Terry Baker","w":0.552},{"d":"MD House District 1B","rep":"Jason Buckel","w":0.268},{"d":"MD House District 1A","rep":"Jim Hinebaugh","w":0.178}],"ss":[{"d":"MD Senate District 1","rep":"Mike McKay","w":0.999}]},"munis":[{"m":"Frostburg","p":[{"n":"W. Robert Flanigan","r":"Mayor, Frostburg, MD"}]}],"slug":"allegany"},"24003":{"county":[],"districts":{"cd":[{"d":"MD-03","rep":"Sarah Elfreth","w":0.403},{"d":"MD-05","rep":"Steny H. Hoyer","w":0.369}],"sh":[{"d":"MD House District 30B","rep":"Seth Howard","w":0.192},{"d":"MD House District 31","rep":"Brian Chisholm, LaToya Nkongolo, Nic Kipke","w":0.137},{"d":"MD House District 33B","rep":"Stuart Schmidt","w":0.127},{"d":"MD House District 32","rep":"Mark Chang, Mike Rogers, Sandy Bartlett","w":0.092},{"d":"MD House District 30A","rep":"Dana Jones, Dylan Behler","w":0.072},{"d":"MD House District 21","rep":"Ben Barnes, Joseline Peña-Melnyk, Mary Lehman","w":0.052},{"d":"MD House District 33C","rep":"Heather Bagnall Tudball","w":0.044},{"d":"MD House District 12B","rep":"Gary Simmons","w":0.028},{"d":"MD House District 33A","rep":"Andrew Pruski","w":0.022}],"ss":[{"d":"MD Senate District 30","rep":"Shaneka Henson","w":0.264},{"d":"MD Senate District 33","rep":"Dawn Gile","w":0.192},{"d":"MD Senate District 31","rep":"Bryan Simonaire","w":0.137},{"d":"MD Senate District 32","rep":"Pam Beidle","w":0.092},{"d":"MD Senate District 21","rep":"Jim Rosapepe","w":0.052},{"d":"MD Senate District 12","rep":"Clarence Lam","w":0.028}]},"munis":[],"slug":"anne-arundel"},"24005":{"county":[],"districts":{"cd":[{"d":"MD-02","rep":"Johnny Olszewski, Jr.","w":0.617},{"d":"MD-01","rep":"Andy Harris","w":0.214},{"d":"MD-07","rep":"Kweisi Mfume","w":0.093}],"sh":[{"d":"MD House District 42A","rep":"Nino Mangione","w":0.335},{"d":"MD House District 10","rep":"Adrienne Jones, Jennifer White Holland, Scott Phillips","w":0.147},{"d":"MD House District 7A","rep":"Kathy Szeliga, Ryan Nawrocki","w":0.129},{"d":"MD House District 6","rep":"Bob Long, Ric Metzgar, Robin Grammer","w":0.077},{"d":"MD House District 11B","rep":"Dana Stein, Jon Cardin","w":0.074},{"d":"MD House District 8","rep":"Harry Bhandari, Kim Ross, Nick Allen","w":0.04},{"d":"MD House District 11A","rep":"Cheryl Pasteur","w":0.034},{"d":"MD House District 44B","rep":"Aletheia McCaskill, Sheila Ruth","w":0.031},{"d":"MD House District 42B","rep":"Michele Guyton","w":0.022},{"d":"MD House District 44A","rep":"Eric Ebersole","w":0.012},{"d":"MD House District 43B","rep":"Cathi Forbes","w":0.009}],"ss":[{"d":"MD Senate District 42","rep":"Chris West","w":0.357},{"d":"MD Senate District 10","rep":"Ben Brooks","w":0.147},{"d":"MD Senate District 7","rep":"J.B. Jennings","w":0.129},{"d":"MD Senate District 11","rep":"Shelly Hettleman","w":0.107},{"d":"MD Senate District 6","rep":"Johnny Salling","w":0.077},{"d":"MD Senate District 44","rep":"Charles Sydnor","w":0.043},{"d":"MD Senate District 8","rep":"Carl Jackson","w":0.04},{"d":"MD Senate District 43","rep":"Mary Washington","w":0.009}]},"munis":[],"slug":"baltimore"},"24009":{"county":[],"districts":{"cd":[{"d":"MD-05","rep":"Steny H. Hoyer","w":0.689}],"sh":[{"d":"MD House District 27C","rep":"Mark Fisher","w":0.465},{"d":"MD House District 27B","rep":"Jeff Long","w":0.124},{"d":"MD House District 29C","rep":"Todd Morgan","w":0.099}],"ss":[{"d":"MD Senate District 27","rep":"Kevin Harris","w":0.59},{"d":"MD Senate District 29","rep":"Jack Bailey","w":0.099}]},"munis":[],"slug":"calvert"},"24011":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.999}],"sh":[{"d":"MD House District 37B","rep":"Chris Adams, Tom Hutchinson","w":0.648},{"d":"MD House District 36","rep":"Jay Jacobs, Jeff Ghrist, Steve Arentz","w":0.352}],"ss":[{"d":"MD Senate District 37","rep":"Johnny Mautz","w":0.648},{"d":"MD Senate District 36","rep":"Steve Hershey","w":0.352}]},"munis":[],"slug":"caroline"},"24013":{"county":[],"districts":{"cd":[{"d":"MD-02","rep":"Johnny Olszewski, Jr.","w":0.901},{"d":"MD-03","rep":"Sarah Elfreth","w":0.095}],"sh":[{"d":"MD House District 5","rep":"April Rose, Chris Tomlinson, Christopher Bouchat","w":0.724},{"d":"MD House District 42C","rep":"Josh Stonko","w":0.275}],"ss":[{"d":"MD Senate District 5","rep":"Justin Ready","w":0.724},{"d":"MD Senate District 42","rep":"Chris West","w":0.275}]},"munis":[],"slug":"carroll"},"24015":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.91}],"sh":[{"d":"MD House District 36","rep":"Jay Jacobs, Jeff Ghrist, Steve Arentz","w":0.541},{"d":"MD House District 35B","rep":"Kevin Hornberger","w":0.302},{"d":"MD House District 35A","rep":"Mike Griffith, Teresa Reilly","w":0.058}],"ss":[{"d":"MD Senate District 36","rep":"Steve Hershey","w":0.541},{"d":"MD Senate District 35","rep":"Jason Gallion","w":0.359}]},"munis":[],"slug":"cecil"},"24017":{"county":[],"districts":{"cd":[{"d":"MD-05","rep":"Steny H. Hoyer","w":0.755}],"sh":[{"d":"MD House District 28","rep":"C.T. Wilson, Debra Davis, Edith Patterson","w":0.666},{"d":"MD House District 27A","rep":"Darrell Odom","w":0.087}],"ss":[{"d":"MD Senate District 28","rep":"Arthur Ellis","w":0.666},{"d":"MD Senate District 27","rep":"Kevin Harris","w":0.087}]},"munis":[],"slug":"charles"},"24019":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.658}],"sh":[{"d":"MD House District 37B","rep":"Chris Adams, Tom Hutchinson","w":0.513},{"d":"MD House District 37A","rep":"Sheree Sample-Hughes","w":0.097}],"ss":[{"d":"MD Senate District 37","rep":"Johnny Mautz","w":0.609}]},"munis":[],"slug":"dorchester"},"24021":{"county":[],"districts":{"cd":[{"d":"MD-06","rep":"April McClain Delaney","w":0.997}],"sh":[{"d":"MD House District 4","rep":"April Miller, Barrie Ciliberti, Jesse Pippy","w":0.784},{"d":"MD House District 2A","rep":"William Valentine, William Wivell","w":0.117},{"d":"MD House District 3","rep":"Karen Simpson, Ken Kerr, Kris Fair","w":0.097}],"ss":[{"d":"MD Senate District 4","rep":"Bill Folden","w":0.784},{"d":"MD Senate District 2","rep":"Paul Corderman","w":0.117},{"d":"MD Senate District 3","rep":"Karen Young","w":0.097}]},"munis":[{"m":"Frederick","p":[{"n":"Michael O'Connor","r":"Mayor, Frederick, MD"}]}],"slug":"frederick"},"24023":{"county":[],"districts":{"cd":[{"d":"MD-06","rep":"April McClain Delaney","w":0.998}],"sh":[{"d":"MD House District 1A","rep":"Jim Hinebaugh","w":0.999}],"ss":[{"d":"MD Senate District 1","rep":"Mike McKay","w":0.999}]},"munis":[],"slug":"garrett"},"24025":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.857}],"sh":[{"d":"MD House District 35A","rep":"Mike Griffith, Teresa Reilly","w":0.41},{"d":"MD House District 34A","rep":"Andre Johnson, Steve Johnson","w":0.221},{"d":"MD House District 7B","rep":"Lauren Arikan","w":0.192},{"d":"MD House District 34B","rep":"Susan McComas","w":0.034}],"ss":[{"d":"MD Senate District 35","rep":"Jason Gallion","w":0.41},{"d":"MD Senate District 34","rep":"Mary-Dulany James","w":0.255},{"d":"MD Senate District 7","rep":"J.B. Jennings","w":0.192}]},"munis":[],"slug":"harford"},"24027":{"county":[],"districts":{"cd":[{"d":"MD-03","rep":"Sarah Elfreth","w":0.994}],"sh":[{"d":"MD House District 9A","rep":"Chao Wu, Natalie Ziegler","w":0.541},{"d":"MD House District 13","rep":"Gabriel Moreno, Jen Terrasa, Pam Guzzone","w":0.269},{"d":"MD House District 12A","rep":"Jessica Feldmark, Terri Hill","w":0.11},{"d":"MD House District 9B","rep":"Courtney Watson","w":0.079}],"ss":[{"d":"MD Senate District 9","rep":"Katie Hester","w":0.62},{"d":"MD Senate District 13","rep":"Guy Guzzone","w":0.269},{"d":"MD Senate District 12","rep":"Clarence Lam","w":0.11}]},"munis":[],"slug":"howard"},"24029":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.729}],"sh":[{"d":"MD House District 36","rep":"Jay Jacobs, Jeff Ghrist, Steve Arentz","w":0.725}],"ss":[{"d":"MD Senate District 36","rep":"Steve Hershey","w":0.725}]},"munis":[],"slug":"kent"},"24031":{"county":[],"districts":{"cd":[{"d":"MD-08","rep":"Jamie Raskin","w":0.549},{"d":"MD-06","rep":"April McClain Delaney","w":0.419},{"d":"MD-04","rep":"Glenn Ivey","w":0.029}],"sh":[{"d":"MD House District 15","rep":"David Fraser-Hidalgo, Lily Qi, Linda Foley","w":0.361},{"d":"MD House District 14","rep":"Anne Kaiser, Bernice Mireku-North, Pam Queen","w":0.233},{"d":"MD House District 16","rep":"Marc Korman, Sarah Wolek, Teresa Woorman","w":0.081},{"d":"MD House District 19","rep":"Bonnie Cullison, Charlotte Crutchfield, Vaughn Stewart","w":0.078},{"d":"MD House District 9A","rep":"Chao Wu, Natalie Ziegler","w":0.062},{"d":"MD House District 39","rep":"Gabriel Acevero, Greg Wims, Lesley Lopez","w":0.057},{"d":"MD House District 17","rep":"Joe Vogel, Julie Palakovich Carr, Ryan Spiegel","w":0.049},{"d":"MD House District 18","rep":"Aaron Kaufman, Emily Shetty, Jared Solomon","w":0.041},{"d":"MD House District 20","rep":"David Moon, Jheanelle Wilkins, Lorig Charkoudian","w":0.038}],"ss":[{"d":"MD Senate District 15","rep":"Brian Feldman","w":0.361},{"d":"MD Senate District 14","rep":"Craig Zucker","w":0.233},{"d":"MD Senate District 16","rep":"Sara Love","w":0.081},{"d":"MD Senate District 19","rep":"Ben Kramer","w":0.078},{"d":"MD Senate District 9","rep":"Katie Hester","w":0.062},{"d":"MD Senate District 39","rep":"Nancy King","w":0.057},{"d":"MD Senate District 17","rep":"Cheryl Kagan","w":0.049},{"d":"MD Senate District 18","rep":"Jeff Waldstreicher","w":0.041},{"d":"MD Senate District 20","rep":"Will Smith","w":0.038}]},"munis":[{"m":"Gaithersburg","p":[{"n":"Jud Ashman","r":"Mayor, Gaithersburg, MD"}]},{"m":"Rockville","p":[{"n":"Monique Ashton","r":"Mayor, Rockville, MD"}]}],"slug":"montgomery"},"24033":{"county":[],"districts":{"cd":[{"d":"MD-05","rep":"Steny H. Hoyer","w":0.581},{"d":"MD-04","rep":"Glenn Ivey","w":0.419}],"sh":[{"d":"MD House District 23","rep":"Adrian Boafo, Kym Taylor, Marvin Holmes","w":0.228},{"d":"MD House District 27B","rep":"Jeff Long","w":0.188},{"d":"MD House District 26","rep":"Jamila Woods, Kris Valderrama, Veronica Turner","w":0.152},{"d":"MD House District 25","rep":"Denise Roberts, Karen Toles, Kent Roberson","w":0.132},{"d":"MD House District 24","rep":"Andrea Harrison, Derrick Coley, Tiffany Alston","w":0.077},{"d":"MD House District 21","rep":"Ben Barnes, Joseline Peña-Melnyk, Mary Lehman","w":0.076},{"d":"MD House District 22","rep":"Anne Healey, Ashanti Martínez, Nicole Williams","w":0.06},{"d":"MD House District 27A","rep":"Darrell Odom","w":0.048},{"d":"MD House District 47A","rep":"Diana Fennell, Julian Ivey","w":0.029},{"d":"MD House District 47B","rep":"Deni Taveras","w":0.009}],"ss":[{"d":"MD Senate District 27","rep":"Kevin Harris","w":0.236},{"d":"MD Senate District 23","rep":"Ron Watson","w":0.228},{"d":"MD Senate District 26","rep":"Anthony Muse","w":0.152},{"d":"MD Senate District 25","rep":"Nick Charles","w":0.132},{"d":"MD Senate District 24","rep":"Joanne Benson","w":0.077},{"d":"MD Senate District 21","rep":"Jim Rosapepe","w":0.076},{"d":"MD Senate District 22","rep":"Alonzo Washington","w":0.06},{"d":"MD Senate District 47","rep":"Malcolm Augustine","w":0.037}]},"munis":[{"m":"Bowie","p":[{"n":"Tim Adams","r":"Mayor, Bowie, MD"}]}],"slug":"prince-george-s"},"24035":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.782}],"sh":[{"d":"MD House District 36","rep":"Jay Jacobs, Jeff Ghrist, Steve Arentz","w":0.772}],"ss":[{"d":"MD Senate District 36","rep":"Steve Hershey","w":0.772}]},"munis":[],"slug":"queen-anne-s"},"24037":{"county":[],"districts":{"cd":[{"d":"MD-05","rep":"Steny H. Hoyer","w":0.53}],"sh":[{"d":"MD House District 29A","rep":"Matt Morgan","w":0.28},{"d":"MD House District 29C","rep":"Todd Morgan","w":0.13},{"d":"MD House District 29B","rep":"Brian Crosby","w":0.117}],"ss":[{"d":"MD Senate District 29","rep":"Jack Bailey","w":0.527}]},"munis":[],"slug":"st-mary-s"},"24039":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.605}],"sh":[{"d":"MD House District 38A","rep":"Kevin Anderson","w":0.572}],"ss":[{"d":"MD Senate District 38","rep":"Mary Beth Carozza","w":0.572}]},"munis":[],"slug":"somerset"},"24041":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.671}],"sh":[{"d":"MD House District 37B","rep":"Chris Adams, Tom Hutchinson","w":0.645}],"ss":[{"d":"MD Senate District 37","rep":"Johnny Mautz","w":0.645}]},"munis":[],"slug":"talbot"},"24043":{"county":[],"districts":{"cd":[{"d":"MD-06","rep":"April McClain Delaney","w":0.998}],"sh":[{"d":"MD House District 2A","rep":"William Valentine, William Wivell","w":0.542},{"d":"MD House District 1C","rep":"Terry Baker","w":0.43},{"d":"MD House District 2B","rep":"Matthew Schindler","w":0.027}],"ss":[{"d":"MD Senate District 2","rep":"Paul Corderman","w":0.568},{"d":"MD Senate District 1","rep":"Mike McKay","w":0.43}]},"munis":[{"m":"Hagerstown","p":[{"n":"William McIntire","r":"Mayor, Hagerstown, MD"}]}],"slug":"washington"},"24045":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.966}],"sh":[{"d":"MD House District 37B","rep":"Chris Adams, Tom Hutchinson","w":0.391},{"d":"MD House District 38C","rep":"Wayne Hartman","w":0.29},{"d":"MD House District 37A","rep":"Sheree Sample-Hughes","w":0.144},{"d":"MD House District 38B","rep":"Barry Beauchamp","w":0.075},{"d":"MD House District 38A","rep":"Kevin Anderson","w":0.061}],"ss":[{"d":"MD Senate District 37","rep":"Johnny Mautz","w":0.535},{"d":"MD Senate District 38","rep":"Mary Beth Carozza","w":0.426}]},"munis":[{"m":"Salisbury","p":[{"n":"Randolph J. Taylor","r":"Mayor, Salisbury, MD"}]}],"slug":"wicomico"},"24047":{"county":[],"districts":{"cd":[{"d":"MD-01","rep":"Andy Harris","w":0.841}],"sh":[{"d":"MD House District 38A","rep":"Kevin Anderson","w":0.481},{"d":"MD House District 38C","rep":"Wayne Hartman","w":0.359}],"ss":[{"d":"MD Senate District 38","rep":"Mary Beth Carozza","w":0.841}]},"munis":[],"slug":"worcester"},"24510":{"county":[],"districts":{"cd":[{"d":"MD-07","rep":"Kweisi Mfume","w":0.872},{"d":"MD-02","rep":"Johnny Olszewski, Jr.","w":0.066}],"sh":[{"d":"MD House District 46","rep":"Luke Clippinger, Mark Edelson, Robbyn Lewis","w":0.287},{"d":"MD House District 41","rep":"Malcolm Ruff, Sandy Rosenberg, Sean Stinnett","w":0.226},{"d":"MD House District 45","rep":"Caylin Young, Jackie Addison, Stephanie Smith","w":0.176},{"d":"MD House District 40","rep":"Frank Conaway, Marlon Amprey, Melissa Wells","w":0.156},{"d":"MD House District 43A","rep":"Elizabeth Embry, Regina Boyce","w":0.093}],"ss":[{"d":"MD Senate District 46","rep":"Bill Ferguson","w":0.287},{"d":"MD Senate District 41","rep":"Dalya Attar","w":0.226},{"d":"MD Senate District 45","rep":"Cory McCray","w":0.176},{"d":"MD Senate District 40","rep":"Antonio Hayes","w":0.156},{"d":"MD Senate District 43","rep":"Mary Washington","w":0.093}]},"munis":[],"slug":"baltimore-city"},"25001":{"county":[],"districts":{"cd":[{"d":"MA-09","rep":"William R. Keating","w":0.349}],"sh":[],"ss":[]},"munis":[],"slug":"barnstable"},"25003":{"county":[],"districts":{"cd":[{"d":"MA-01","rep":"Richard E. Neal","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"berkshire"},"25005":{"county":[],"districts":{"cd":[{"d":"MA-04","rep":"Jake Auchincloss","w":0.545},{"d":"MA-09","rep":"William R. Keating","w":0.267},{"d":"MA-08","rep":"Stephen F. Lynch","w":0.043}],"sh":[],"ss":[]},"munis":[{"m":"Fall River","p":[{"n":"Paul Coogan","r":"Mayor, Fall River, MA"}]},{"m":"New Bedford","p":[{"n":"Jonathan F. Mitchell","r":"Mayor, New Bedford, MA"}]},{"m":"Taunton","p":[{"n":"Shaunna O'Connell","r":"Mayor, Taunton, MA"}]}],"slug":"bristol"},"25007":{"county":[],"districts":{"cd":[{"d":"MA-09","rep":"William R. Keating","w":0.253}],"sh":[],"ss":[]},"munis":[],"slug":"dukes"},"25009":{"county":[],"districts":{"cd":[{"d":"MA-06","rep":"Seth Moulton","w":0.566},{"d":"MA-03","rep":"Lori Trahan","w":0.08}],"sh":[],"ss":[]},"munis":[{"m":"Amesbury","p":[{"n":"Kassandra Gove","r":"Mayor, Amesbury, MA"}]},{"m":"Beverly","p":[{"n":"Michael P. Cahill","r":"Mayor, Beverly, MA"}]},{"m":"Haverhill","p":[{"n":"Melinda E. Barrett","r":"Mayor, Haverhill, MA"}]},{"m":"Lawrence","p":[{"n":"Q124247832","r":"Mayor, Lawrence, MA"}]},{"m":"Lynn","p":[{"n":"Jared C. Nicholson","r":"Mayor, Lynn, MA"}]},{"m":"Methuen","p":[{"n":"Q131176725","r":"Mayor, Methuen, MA"}]},{"m":"Peabody","p":[{"n":"Edward Bettencourt","r":"Mayor, Peabody, MA"}]},{"m":"Salem","p":[{"n":"Dominick Pangallo","r":"Mayor, Salem, MA"}]}],"slug":"essex"},"25011":{"county":[],"districts":{"cd":[{"d":"MA-02","rep":"James P. McGovern","w":0.872},{"d":"MA-01","rep":"Richard E. Neal","w":0.128}],"sh":[],"ss":[]},"munis":[],"slug":"franklin"},"25013":{"county":[],"districts":{"cd":[{"d":"MA-01","rep":"Richard E. Neal","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Holyoke","p":[{"n":"Joshua A. Garcia","r":"Mayor, Holyoke, MA"}]},{"m":"Springfield","p":[{"n":"Domenic Sarno","r":"Mayor, Springfield, MA"}]}],"slug":"hampden"},"25015":{"county":[],"districts":{"cd":[{"d":"MA-01","rep":"Richard E. Neal","w":0.569},{"d":"MA-02","rep":"James P. McGovern","w":0.431}],"sh":[],"ss":[]},"munis":[{"m":"Northampton","p":[{"n":"Gina-Louise Sciarra","r":"Mayor, Northampton, MA"}]}],"slug":"hampshire"},"25017":{"county":[],"districts":{"cd":[{"d":"MA-03","rep":"Lori Trahan","w":0.499},{"d":"MA-05","rep":"Katherine M. Clark","w":0.252},{"d":"MA-06","rep":"Seth Moulton","w":0.124},{"d":"MA-02","rep":"James P. McGovern","w":0.071},{"d":"MA-04","rep":"Jake Auchincloss","w":0.041},{"d":"MA-07","rep":"Ayanna Pressley","w":0.014}],"sh":[],"ss":[]},"munis":[{"m":"Cambridge","p":[{"n":"Denise Simmons","r":"Mayor, Cambridge, MA"}]},{"m":"Lowell","p":[{"n":"Sokhary Chau","r":"Mayor, Lowell, MA"}]},{"m":"Malden","p":[{"n":"Gary Christenson","r":"Mayor, Malden, MA"}]},{"m":"Medford","p":[{"n":"Breanna Lungo-Koehn","r":"Mayor, Medford, MA"}]},{"m":"Newton","p":[{"n":"Ruthanne Fuller","r":"Mayor, Newton, MA"}]},{"m":"Somerville","p":[{"n":"Katjana Ballantyne","r":"Mayor, Somerville, MA"}]},{"m":"Waltham","p":[{"n":"Jeannette A. McCarthy","r":"Mayor, Waltham, MA"}]}],"slug":"middlesex"},"25019":{"county":[],"districts":{"cd":[{"d":"MA-09","rep":"William R. Keating","w":0.196}],"sh":[],"ss":[]},"munis":[],"slug":"nantucket"},"25021":{"county":[],"districts":{"cd":[{"d":"MA-04","rep":"Jake Auchincloss","w":0.463},{"d":"MA-08","rep":"Stephen F. Lynch","w":0.373},{"d":"MA-07","rep":"Ayanna Pressley","w":0.039},{"d":"MA-02","rep":"James P. McGovern","w":0.026},{"d":"MA-09","rep":"William R. Keating","w":0.023},{"d":"MA-05","rep":"Katherine M. Clark","w":0.017}],"sh":[],"ss":[]},"munis":[{"m":"Quincy","p":[{"n":"Thomas P. Koch","r":"Mayor, Quincy, MA"}]},{"m":"Weymouth Town","p":[{"n":"Robert L. Hedlund","r":"Mayor, Weymouth, MA"}]}],"slug":"norfolk"},"25023":{"county":[],"districts":{"cd":[{"d":"MA-09","rep":"William R. Keating","w":0.514},{"d":"MA-08","rep":"Stephen F. Lynch","w":0.097},{"d":"MA-04","rep":"Jake Auchincloss","w":0.033}],"sh":[],"ss":[]},"munis":[{"m":"Brockton","p":[{"n":"Robert F. Sullivan","r":"Mayor, Brockton, MA"}]}],"slug":"plymouth"},"25025":{"county":[],"districts":{"cd":[{"d":"MA-07","rep":"Ayanna Pressley","w":0.308},{"d":"MA-08","rep":"Stephen F. Lynch","w":0.178},{"d":"MA-05","rep":"Katherine M. Clark","w":0.083}],"sh":[],"ss":[]},"munis":[{"m":"Boston","p":[{"n":"Michelle Wu","r":"Mayor, Boston, MA"}]},{"m":"Revere","p":[{"n":"Patrick M. Keefe Jr.","r":"Mayor, Revere, MA"}]}],"slug":"suffolk"},"25027":{"county":[],"districts":{"cd":[{"d":"MA-02","rep":"James P. McGovern","w":0.587},{"d":"MA-01","rep":"Richard E. Neal","w":0.195},{"d":"MA-03","rep":"Lori Trahan","w":0.184},{"d":"MA-04","rep":"Jake Auchincloss","w":0.034}],"sh":[],"ss":[]},"munis":[{"m":"Worcester","p":[{"n":"Joseph Petty","r":"Mayor, Worcester, MA"}]}],"slug":"worcester"},"26001":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.388}],"sh":[{"d":"MI House District 106","rep":"Cam Cavitt","w":0.388}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.388}]},"munis":[],"slug":"alcona"},"26003":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.186}],"sh":[{"d":"MI House District 109","rep":"Karl Bohnak","w":0.184}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.184}]},"munis":[],"slug":"alger"},"26005":{"county":[],"districts":{"cd":[{"d":"MI-04","rep":"Bill Huizenga","w":0.46}],"sh":[{"d":"MI House District 43","rep":"Rachelle Smit","w":0.271},{"d":"MI House District 39","rep":"Pauline Wendzel","w":0.071},{"d":"MI House District 38","rep":"Joey Andrews","w":0.054},{"d":"MI House District 42","rep":"Matt Hall","w":0.027},{"d":"MI House District 79","rep":"Angela Rigas","w":0.019},{"d":"MI House District 86","rep":"Nancy DeBoer","w":0.016}],"ss":[{"d":"MI Senate District 20","rep":"Aric Nesbitt","w":0.29},{"d":"MI Senate District 18","rep":"Thomas Albert","w":0.138},{"d":"MI Senate District 31","rep":"Roger Victory","w":0.032}]},"munis":[],"slug":"allegan"},"26007":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.35}],"sh":[{"d":"MI House District 106","rep":"Cam Cavitt","w":0.35}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.35}]},"munis":[],"slug":"alpena"},"26009":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.873}],"sh":[{"d":"MI House District 104","rep":"J.R. Roth","w":0.637},{"d":"MI House District 105","rep":"Ken Borton","w":0.235}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.872}]},"munis":[],"slug":"antrim"},"26011":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.539}],"sh":[{"d":"MI House District 99","rep":"Mike Hoadley","w":0.54}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.54}]},"munis":[],"slug":"arenac"},"26013":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.856}],"sh":[{"d":"MI House District 109","rep":"Karl Bohnak","w":0.858}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.858}]},"munis":[],"slug":"baraga"},"26015":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 43","rep":"Rachelle Smit","w":0.439},{"d":"MI House District 78","rep":"Gina Johnsen","w":0.374},{"d":"MI House District 79","rep":"Angela Rigas","w":0.188}],"ss":[{"d":"MI Senate District 18","rep":"Thomas Albert","w":1.0}]},"munis":[],"slug":"barry"},"26017":{"county":[],"districts":{"cd":[{"d":"MI-08","rep":"Kristen McDonald Rivet","w":0.712}],"sh":[{"d":"MI House District 96","rep":"Timmy Beson","w":0.481},{"d":"MI House District 99","rep":"Mike Hoadley","w":0.174},{"d":"MI House District 97","rep":"Matt Bierlein","w":0.055}],"ss":[{"d":"MI Senate District 35","rep":"Chedrick Greene","w":0.428},{"d":"MI Senate District 34","rep":"Roger Hauck","w":0.17},{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.112}]},"munis":[{"m":"Bay City","p":[{"n":"Christopher Girard","r":"Mayor, Bay City, MI"}]}],"slug":"bay"},"26019":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.404}],"sh":[{"d":"MI House District 104","rep":"J.R. Roth","w":0.32},{"d":"MI House District 103","rep":"Betsy Coffia","w":0.085}],"ss":[{"d":"MI Senate District 32","rep":"Jon Bumstead","w":0.404}]},"munis":[],"slug":"benzie"},"26021":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":0.279},{"d":"MI-04","rep":"Bill Huizenga","w":0.087}],"sh":[{"d":"MI House District 37","rep":"Brad Paquette","w":0.226},{"d":"MI House District 38","rep":"Joey Andrews","w":0.096},{"d":"MI House District 39","rep":"Pauline Wendzel","w":0.045}],"ss":[{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":0.221},{"d":"MI Senate District 20","rep":"Aric Nesbitt","w":0.146}]},"munis":[],"slug":"berrien"},"26023":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":1.0}],"sh":[{"d":"MI House District 35","rep":"Jennifer Wortz","w":1.0}],"ss":[{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":1.0}]},"munis":[],"slug":"branch"},"26025":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":0.798},{"d":"MI-04","rep":"Bill Huizenga","w":0.202}],"sh":[{"d":"MI House District 45","rep":"Sarah Lightner","w":0.644},{"d":"MI House District 44","rep":"Steve Frisbie","w":0.356}],"ss":[{"d":"MI Senate District 18","rep":"Thomas Albert","w":0.606},{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":0.394}]},"munis":[{"m":"Battle Creek","p":[{"n":"Mark Behnke","r":"Mayor, Battle Creek, MI"}]}],"slug":"calhoun"},"26027":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":1.0}],"sh":[{"d":"MI House District 36","rep":"Steve Carra","w":0.675},{"d":"MI House District 37","rep":"Brad Paquette","w":0.325}],"ss":[{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":1.0}]},"munis":[],"slug":"cass"},"26029":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.329}],"sh":[{"d":"MI House District 107","rep":"Parker Fairbairn","w":0.325}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.325}]},"munis":[],"slug":"charlevoix"},"26031":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.9}],"sh":[{"d":"MI House District 106","rep":"Cam Cavitt","w":0.885},{"d":"MI House District 107","rep":"Parker Fairbairn","w":0.013}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.898}]},"munis":[],"slug":"cheboygan"},"26033":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.617}],"sh":[{"d":"MI House District 108","rep":"Dave Prestin","w":0.365},{"d":"MI House District 107","rep":"Parker Fairbairn","w":0.24}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.344},{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.261}]},"munis":[],"slug":"chippewa"},"26035":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 100","rep":"Tom Kunse","w":0.749},{"d":"MI House District 99","rep":"Mike Hoadley","w":0.251}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":1.0}]},"munis":[],"slug":"clare"},"26037":{"county":[],"districts":{"cd":[{"d":"MI-07","rep":"Tom Barrett","w":1.0}],"sh":[{"d":"MI House District 93","rep":"Tim Kelly","w":0.375},{"d":"MI House District 75","rep":"Penelope Tsernoglou","w":0.318},{"d":"MI House District 77","rep":"Emily Dievendorf","w":0.307}],"ss":[{"d":"MI Senate District 28","rep":"Sam Singh","w":0.876},{"d":"MI Senate District 34","rep":"Roger Hauck","w":0.124}]},"munis":[],"slug":"clinton"},"26039":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 105","rep":"Ken Borton","w":1.0}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"crawford"},"26041":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.603}],"sh":[{"d":"MI House District 108","rep":"Dave Prestin","w":0.596}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.596}]},"munis":[{"m":"Escanaba","p":[{"n":"Mark Ammel","r":"Mayor, Escanaba, MI"}]}],"slug":"delta"},"26043":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.999}],"sh":[{"d":"MI House District 109","rep":"Karl Bohnak","w":0.686},{"d":"MI House District 110","rep":"Greg Markkanen","w":0.313}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":1.0}]},"munis":[],"slug":"dickinson"},"26045":{"county":[],"districts":{"cd":[{"d":"MI-07","rep":"Tom Barrett","w":0.839},{"d":"MI-02","rep":"John R. Moolenaar","w":0.161}],"sh":[{"d":"MI House District 76","rep":"Angela Witwer","w":0.733},{"d":"MI House District 78","rep":"Gina Johnsen","w":0.19},{"d":"MI House District 43","rep":"Rachelle Smit","w":0.063},{"d":"MI House District 77","rep":"Emily Dievendorf","w":0.014}],"ss":[{"d":"MI Senate District 21","rep":"Sarah Anthony","w":1.0}]},"munis":[{"m":"Olivet","p":[{"n":"Laura Barlond-Maas","r":"Mayor, Olivet, MI"}]}],"slug":"eaton"},"26047":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.544}],"sh":[{"d":"MI House District 107","rep":"Parker Fairbairn","w":0.547}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.547}]},"munis":[],"slug":"emmet"},"26049":{"county":[],"districts":{"cd":[{"d":"MI-08","rep":"Kristen McDonald Rivet","w":0.995}],"sh":[{"d":"MI House District 69","rep":"Jaz Martus","w":0.243},{"d":"MI House District 67","rep":"Phil Green","w":0.209},{"d":"MI House District 68","rep":"David Martin","w":0.173},{"d":"MI House District 71","rep":"Brian BeGole","w":0.138},{"d":"MI House District 72","rep":"Mike Mueller","w":0.115},{"d":"MI House District 70","rep":"Cynthia Neeley","w":0.062},{"d":"MI House District 97","rep":"Matt Bierlein","w":0.059}],"ss":[{"d":"MI Senate District 27","rep":"John Cherry","w":0.443},{"d":"MI Senate District 26","rep":"Kevin Daley","w":0.39},{"d":"MI Senate District 22","rep":"Lana Theis","w":0.112},{"d":"MI Senate District 24","rep":"Ruth Johnson","w":0.055}]},"munis":[{"m":"Flint","p":[{"n":"Karen Weaver","r":"Mayor, Flint, MI"}]}],"slug":"genesee"},"26051":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 99","rep":"Mike Hoadley","w":0.816},{"d":"MI House District 95","rep":"Bill Schuette","w":0.184}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":1.0}]},"munis":[],"slug":"gladwin"},"26053":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.773}],"sh":[{"d":"MI House District 110","rep":"Greg Markkanen","w":0.773}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.773}]},"munis":[],"slug":"gogebic"},"26055":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.815}],"sh":[{"d":"MI House District 104","rep":"J.R. Roth","w":0.536},{"d":"MI House District 103","rep":"Betsy Coffia","w":0.279}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.815}]},"munis":[{"m":"Traverse City","p":[{"n":"Amy Shamroe","r":"Mayor, Traverse City, MI"}]}],"slug":"grand-traverse"},"26057":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 93","rep":"Tim Kelly","w":0.679},{"d":"MI House District 92","rep":"Jerry Neyer","w":0.321}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":1.0}]},"munis":[],"slug":"gratiot"},"26059":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":1.0}],"sh":[{"d":"MI House District 35","rep":"Jennifer Wortz","w":1.0}],"ss":[{"d":"MI Senate District 16","rep":"Joe Bellino","w":0.703},{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":0.296}]},"munis":[],"slug":"hillsdale"},"26061":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.693}],"sh":[{"d":"MI House District 110","rep":"Greg Markkanen","w":0.692}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.692}]},"munis":[],"slug":"houghton"},"26063":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":0.392}],"sh":[{"d":"MI House District 98","rep":"Greg Alexander","w":0.391}],"ss":[{"d":"MI Senate District 25","rep":"Dan Lauwers","w":0.391}]},"munis":[],"slug":"huron"},"26065":{"county":[],"districts":{"cd":[{"d":"MI-07","rep":"Tom Barrett","w":1.0}],"sh":[{"d":"MI House District 73","rep":"Julie Brixie","w":0.789},{"d":"MI House District 75","rep":"Penelope Tsernoglou","w":0.093},{"d":"MI House District 74","rep":"Kara Hope","w":0.087},{"d":"MI House District 77","rep":"Emily Dievendorf","w":0.03}],"ss":[{"d":"MI Senate District 21","rep":"Sarah Anthony","w":0.547},{"d":"MI Senate District 28","rep":"Sam Singh","w":0.263},{"d":"MI Senate District 22","rep":"Lana Theis","w":0.19}]},"munis":[{"m":"Lansing","p":[{"n":"Virgil Bernero","r":"Mayor, Lansing, MI"}]}],"slug":"ingham"},"26067":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 78","rep":"Gina Johnsen","w":0.748},{"d":"MI House District 91","rep":"Pat Outman","w":0.126},{"d":"MI House District 93","rep":"Tim Kelly","w":0.126}],"ss":[{"d":"MI Senate District 33","rep":"Rick Outman","w":0.814},{"d":"MI Senate District 18","rep":"Thomas Albert","w":0.186}]},"munis":[],"slug":"ionia"},"26069":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.299}],"sh":[{"d":"MI House District 99","rep":"Mike Hoadley","w":0.3}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.3}]},"munis":[],"slug":"iosco"},"26071":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.998}],"sh":[{"d":"MI House District 110","rep":"Greg Markkanen","w":1.0}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":1.0}]},"munis":[],"slug":"iron"},"26073":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 92","rep":"Jerry Neyer","w":1.0}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":1.0}]},"munis":[],"slug":"isabella"},"26075":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":1.0}],"sh":[{"d":"MI House District 45","rep":"Sarah Lightner","w":0.551},{"d":"MI House District 47","rep":"Carrie Rheingans","w":0.208},{"d":"MI House District 46","rep":"Kathy Schmaltz","w":0.172},{"d":"MI House District 48","rep":"Jennifer Conlin","w":0.069}],"ss":[{"d":"MI Senate District 14","rep":"Sue Shink","w":0.799},{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":0.201}]},"munis":[],"slug":"jackson"},"26077":{"county":[],"districts":{"cd":[{"d":"MI-04","rep":"Bill Huizenga","w":0.751},{"d":"MI-05","rep":"Tim Walberg","w":0.249}],"sh":[{"d":"MI House District 42","rep":"Matt Hall","w":0.584},{"d":"MI House District 45","rep":"Sarah Lightner","w":0.186},{"d":"MI House District 40","rep":"Matt Longjohn","w":0.173},{"d":"MI House District 41","rep":"Julie Rogers","w":0.057}],"ss":[{"d":"MI Senate District 19","rep":"Sean McCann","w":0.875},{"d":"MI Senate District 18","rep":"Thomas Albert","w":0.125}]},"munis":[{"m":"Kalamazoo","p":[{"n":"David Anderson","r":"Mayor, Kalamazoo, MI"}]}],"slug":"kalamazoo"},"26079":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 104","rep":"J.R. Roth","w":0.561},{"d":"MI House District 105","rep":"Ken Borton","w":0.439}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"kalkaska"},"26081":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":0.542},{"d":"MI-03","rep":"Hillary J. Scholten","w":0.458}],"sh":[{"d":"MI House District 90","rep":"Bryan Posthumus","w":0.347},{"d":"MI House District 91","rep":"Pat Outman","w":0.17},{"d":"MI House District 79","rep":"Angela Rigas","w":0.121},{"d":"MI House District 81","rep":"Stephen Wooden","w":0.088},{"d":"MI House District 78","rep":"Gina Johnsen","w":0.083},{"d":"MI House District 80","rep":"Phil Skaggs","w":0.072},{"d":"MI House District 84","rep":"Carol Glanville","w":0.053},{"d":"MI House District 83","rep":"John Fitzgerald","w":0.032},{"d":"MI House District 82","rep":"Kristian Grant","w":0.019},{"d":"MI House District 89","rep":"Luke Meerman","w":0.014}],"ss":[{"d":"MI Senate District 33","rep":"Rick Outman","w":0.42},{"d":"MI Senate District 30","rep":"Mark Huizenga","w":0.245},{"d":"MI Senate District 18","rep":"Thomas Albert","w":0.164},{"d":"MI Senate District 29","rep":"Winnie Brinks","w":0.089},{"d":"MI Senate District 20","rep":"Aric Nesbitt","w":0.082}]},"munis":[{"m":"Grand Rapids","p":[{"n":"Rosalynn Bliss","r":"Mayor, Grand Rapids, MI"}]},{"m":"Kentwood","p":[{"n":"Stephen Kepley","r":"Mayor, Kentwood, MI"}]},{"m":"Wyoming","p":[{"n":"Kent Vanderwood","r":"Mayor, Wyoming, MI"}]}],"slug":"kent"},"26083":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.099}],"sh":[{"d":"MI House District 110","rep":"Greg Markkanen","w":0.098}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.098}]},"munis":[],"slug":"keweenaw"},"26085":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 101","rep":"Joseph Fox","w":0.75},{"d":"MI House District 100","rep":"Tom Kunse","w":0.25}],"ss":[{"d":"MI Senate District 33","rep":"Rick Outman","w":0.626},{"d":"MI Senate District 34","rep":"Roger Hauck","w":0.373}]},"munis":[],"slug":"lake"},"26087":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":1.0}],"sh":[{"d":"MI House District 67","rep":"Phil Green","w":0.428},{"d":"MI House District 65","rep":"Jaime Greene","w":0.409},{"d":"MI House District 98","rep":"Greg Alexander","w":0.162}],"ss":[{"d":"MI Senate District 26","rep":"Kevin Daley","w":0.782},{"d":"MI Senate District 24","rep":"Ruth Johnson","w":0.217}]},"munis":[],"slug":"lapeer"},"26089":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.148}],"sh":[{"d":"MI House District 103","rep":"Betsy Coffia","w":0.148}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.148}]},"munis":[],"slug":"leelanau"},"26091":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":1.0}],"sh":[{"d":"MI House District 34","rep":"Nancy Jenkins-Arno","w":0.871},{"d":"MI House District 30","rep":"Will Bruck","w":0.083},{"d":"MI House District 31","rep":"Reggie Miller","w":0.043}],"ss":[{"d":"MI Senate District 16","rep":"Joe Bellino","w":0.908},{"d":"MI Senate District 15","rep":"Jeff Irwin","w":0.091}]},"munis":[],"slug":"lenawee"},"26093":{"county":[],"districts":{"cd":[{"d":"MI-07","rep":"Tom Barrett","w":1.0}],"sh":[{"d":"MI House District 50","rep":"Jason Woolford","w":0.691},{"d":"MI House District 48","rep":"Jennifer Conlin","w":0.133},{"d":"MI House District 49","rep":"Ann Bollin","w":0.128},{"d":"MI House District 72","rep":"Mike Mueller","w":0.047}],"ss":[{"d":"MI Senate District 22","rep":"Lana Theis","w":1.0}]},"munis":[],"slug":"livingston"},"26095":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.482}],"sh":[{"d":"MI House District 108","rep":"Dave Prestin","w":0.482}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.482}]},"munis":[],"slug":"luce"},"26097":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.52}],"sh":[{"d":"MI House District 107","rep":"Parker Fairbairn","w":0.267},{"d":"MI House District 108","rep":"Dave Prestin","w":0.245}],"ss":[{"d":"MI Senate District 37","rep":"John Damoose","w":0.267},{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.245}]},"munis":[{"m":"Mackinac Island","p":[{"n":"Margaret Doud","r":"Mayor, Mackinac Island, MI"}]}],"slug":"mackinac"},"26099":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":0.51},{"d":"MI-10","rep":"John James","w":0.337}],"sh":[{"d":"MI House District 65","rep":"Jaime Greene","w":0.268},{"d":"MI House District 66","rep":"Josh Schriver","w":0.13},{"d":"MI House District 59","rep":"Doug Wozniak","w":0.071},{"d":"MI House District 62","rep":"Alicia St. Germaine","w":0.059},{"d":"MI House District 60","rep":"Joe Aragona","w":0.058},{"d":"MI House District 63","rep":"Jay DeBoyer","w":0.05},{"d":"MI House District 61","rep":"Denise Mentzer","w":0.047},{"d":"MI House District 58","rep":"Ron Robinson","w":0.044},{"d":"MI House District 57","rep":"Tom Kuhn","w":0.032},{"d":"MI House District 13","rep":"Mai Xiong","w":0.032},{"d":"MI House District 14","rep":"Mike McFall","w":0.021},{"d":"MI House District 12","rep":"Kimberly Edwards","w":0.019},{"d":"MI House District 11","rep":"Donavan McKinney","w":0.017}],"ss":[{"d":"MI Senate District 24","rep":"Ruth Johnson","w":0.279},{"d":"MI Senate District 25","rep":"Dan Lauwers","w":0.204},{"d":"MI Senate District 12","rep":"Kevin Hertel","w":0.124},{"d":"MI Senate District 11","rep":"Veronica Klinefelt","w":0.107},{"d":"MI Senate District 10","rep":"Paul Wojno","w":0.071},{"d":"MI Senate District 9","rep":"Michael Webber","w":0.041},{"d":"MI Senate District 3","rep":"Stephanie Chang","w":0.022}]},"munis":[{"m":"Sterling Heights","p":[{"n":"Michael C. Taylor","r":"Mayor, Sterling Heights, MI"}]},{"m":"Warren","p":[{"n":"James R. Fouts","r":"Mayor, Warren, MI"}]}],"slug":"macomb"},"26101":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":0.435}],"sh":[{"d":"MI House District 104","rep":"J.R. Roth","w":0.312},{"d":"MI House District 102","rep":"Curt VanderWall","w":0.123}],"ss":[{"d":"MI Senate District 32","rep":"Jon Bumstead","w":0.239},{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.196}]},"munis":[],"slug":"manistee"},"26103":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.544}],"sh":[{"d":"MI House District 109","rep":"Karl Bohnak","w":0.544}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.544}]},"munis":[],"slug":"marquette"},"26105":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":0.41}],"sh":[{"d":"MI House District 102","rep":"Curt VanderWall","w":0.293},{"d":"MI House District 101","rep":"Joseph Fox","w":0.117}],"ss":[{"d":"MI Senate District 32","rep":"Jon Bumstead","w":0.411}]},"munis":[],"slug":"mason"},"26107":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 100","rep":"Tom Kunse","w":1.0}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":1.0}]},"munis":[{"m":"Big Rapids","p":[{"n":"Q124459604","r":"Mayor, Big Rapids, MI"}]}],"slug":"mecosta"},"26109":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.784}],"sh":[{"d":"MI House District 108","rep":"Dave Prestin","w":0.787}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.787}]},"munis":[],"slug":"menominee"},"26111":{"county":[],"districts":{"cd":[{"d":"MI-08","rep":"Kristen McDonald Rivet","w":0.658},{"d":"MI-02","rep":"John R. Moolenaar","w":0.342}],"sh":[{"d":"MI House District 95","rep":"Bill Schuette","w":1.0}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":0.657},{"d":"MI Senate District 35","rep":"Chedrick Greene","w":0.343}]},"munis":[{"m":"Midland","p":[{"n":"Maureen Donker","r":"Mayor, Midland, MI"}]}],"slug":"midland"},"26113":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 105","rep":"Ken Borton","w":1.0}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"missaukee"},"26115":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":0.825}],"sh":[{"d":"MI House District 30","rep":"Will Bruck","w":0.36},{"d":"MI House District 31","rep":"Reggie Miller","w":0.303},{"d":"MI House District 29","rep":"Jim DeSana","w":0.082},{"d":"MI House District 28","rep":"Jamie Thompson","w":0.077}],"ss":[{"d":"MI Senate District 16","rep":"Joe Bellino","w":0.819}]},"munis":[],"slug":"monroe"},"26117":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 91","rep":"Pat Outman","w":0.85},{"d":"MI House District 93","rep":"Tim Kelly","w":0.15}],"ss":[{"d":"MI Senate District 33","rep":"Rick Outman","w":1.0}]},"munis":[],"slug":"montcalm"},"26119":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 106","rep":"Cam Cavitt","w":1.0}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"montmorency"},"26121":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":0.259},{"d":"MI-03","rep":"Hillary J. Scholten","w":0.102}],"sh":[{"d":"MI House District 102","rep":"Curt VanderWall","w":0.141},{"d":"MI House District 89","rep":"Luke Meerman","w":0.136},{"d":"MI House District 87","rep":"Will Snyder","w":0.068},{"d":"MI House District 88","rep":"Greg VanWoerkom","w":0.016}],"ss":[{"d":"MI Senate District 32","rep":"Jon Bumstead","w":0.287},{"d":"MI Senate District 33","rep":"Rick Outman","w":0.074}]},"munis":[{"m":"Muskegon","p":[{"n":"Ken Johnson","r":"Mayor, Muskegon, MI"}]}],"slug":"muskegon"},"26123":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 101","rep":"Joseph Fox","w":1.0}],"ss":[{"d":"MI Senate District 33","rep":"Rick Outman","w":1.0}]},"munis":[],"slug":"newaygo"},"26125":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":0.448},{"d":"MI-11","rep":"Haley M. Stevens","w":0.371},{"d":"MI-07","rep":"Tom Barrett","w":0.071},{"d":"MI-10","rep":"John James","w":0.041},{"d":"MI-12","rep":"Rashida Tlaib","w":0.039},{"d":"MI-06","rep":"Debbie Dingell","w":0.031}],"sh":[{"d":"MI House District 51","rep":"Matt Maddock","w":0.152},{"d":"MI House District 66","rep":"Josh Schriver","w":0.149},{"d":"MI House District 52","rep":"Mike Harris","w":0.092},{"d":"MI House District 72","rep":"Mike Mueller","w":0.08},{"d":"MI House District 54","rep":"Donni Steele","w":0.077},{"d":"MI House District 21","rep":"Kelly Breen","w":0.057},{"d":"MI House District 20","rep":"Noah Arbit","w":0.057},{"d":"MI House District 55","rep":"Mark Tisdel","w":0.046},{"d":"MI House District 53","rep":"Brenda Carter","w":0.042},{"d":"MI House District 19","rep":"Samantha Steckloff","w":0.042},{"d":"MI House District 68","rep":"David Martin","w":0.04},{"d":"MI House District 18","rep":"Jason Hoskins","w":0.037},{"d":"MI House District 56","rep":"Sharon MacDonell","w":0.036},{"d":"MI House District 49","rep":"Ann Bollin","w":0.034},{"d":"MI House District 6","rep":"Natalie Price","w":0.021},{"d":"MI House District 57","rep":"Tom Kuhn","w":0.01},{"d":"MI House District 14","rep":"Mike McFall","w":0.01},{"d":"MI House District 23","rep":"Jason Morgan","w":0.008},{"d":"MI House District 5","rep":"Regina Weiss","w":0.006}],"ss":[{"d":"MI Senate District 23","rep":"Jim Runestad","w":0.34},{"d":"MI Senate District 24","rep":"Ruth Johnson","w":0.23},{"d":"MI Senate District 7","rep":"Jeremy Moss","w":0.12},{"d":"MI Senate District 13","rep":"Rosemary Bayer","w":0.105},{"d":"MI Senate District 9","rep":"Michael Webber","w":0.09},{"d":"MI Senate District 22","rep":"Lana Theis","w":0.04},{"d":"MI Senate District 8","rep":"Mallory McMorrow","w":0.036},{"d":"MI Senate District 6","rep":"Mary Cavanagh","w":0.025},{"d":"MI Senate District 3","rep":"Stephanie Chang","w":0.013}]},"munis":[{"m":"Rochester Hills","p":[{"n":"Bryan Barnett","r":"Mayor, Rochester Hills, MI"}]},{"m":"Southfield","p":[{"n":"Kenson Siver","r":"Mayor, Southfield, MI"}]},{"m":"Troy","p":[{"n":"Ethan Baker","r":"Mayor, Troy, MI"}]}],"slug":"oakland"},"26127":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":0.418}],"sh":[{"d":"MI House District 102","rep":"Curt VanderWall","w":0.363},{"d":"MI House District 101","rep":"Joseph Fox","w":0.055}],"ss":[{"d":"MI Senate District 32","rep":"Jon Bumstead","w":0.418}]},"munis":[],"slug":"oceana"},"26129":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 99","rep":"Mike Hoadley","w":1.0}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"ogemaw"},"26131":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.353}],"sh":[{"d":"MI House District 110","rep":"Greg Markkanen","w":0.353}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.353}]},"munis":[],"slug":"ontonagon"},"26133":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":1.0}],"sh":[{"d":"MI House District 100","rep":"Tom Kunse","w":1.0}],"ss":[{"d":"MI Senate District 34","rep":"Roger Hauck","w":1.0}]},"munis":[],"slug":"osceola"},"26135":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 106","rep":"Cam Cavitt","w":0.501},{"d":"MI House District 105","rep":"Ken Borton","w":0.499}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"oscoda"},"26137":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 105","rep":"Ken Borton","w":1.0}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"otsego"},"26139":{"county":[],"districts":{"cd":[{"d":"MI-03","rep":"Hillary J. Scholten","w":0.172},{"d":"MI-04","rep":"Bill Huizenga","w":0.16},{"d":"MI-02","rep":"John R. Moolenaar","w":0.022}],"sh":[{"d":"MI House District 89","rep":"Luke Meerman","w":0.134},{"d":"MI House District 88","rep":"Greg VanWoerkom","w":0.117},{"d":"MI House District 85","rep":"Brad Slagh","w":0.056},{"d":"MI House District 86","rep":"Nancy DeBoer","w":0.031},{"d":"MI House District 43","rep":"Rachelle Smit","w":0.017}],"ss":[{"d":"MI Senate District 31","rep":"Roger Victory","w":0.242},{"d":"MI Senate District 30","rep":"Mark Huizenga","w":0.089},{"d":"MI Senate District 33","rep":"Rick Outman","w":0.022}]},"munis":[],"slug":"ottawa"},"26141":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.266}],"sh":[{"d":"MI House District 106","rep":"Cam Cavitt","w":0.266}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":0.266}]},"munis":[],"slug":"presque-isle"},"26143":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":1.0}],"sh":[{"d":"MI House District 105","rep":"Ken Borton","w":1.0}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"roscommon"},"26145":{"county":[],"districts":{"cd":[{"d":"MI-08","rep":"Kristen McDonald Rivet","w":1.0}],"sh":[{"d":"MI House District 93","rep":"Tim Kelly","w":0.484},{"d":"MI House District 97","rep":"Matt Bierlein","w":0.311},{"d":"MI House District 71","rep":"Brian BeGole","w":0.132},{"d":"MI House District 94","rep":"Amos O'Neal","w":0.072}],"ss":[{"d":"MI Senate District 26","rep":"Kevin Daley","w":0.565},{"d":"MI Senate District 34","rep":"Roger Hauck","w":0.256},{"d":"MI Senate District 35","rep":"Chedrick Greene","w":0.178}]},"munis":[],"slug":"saginaw"},"26147":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":0.895}],"sh":[{"d":"MI House District 65","rep":"Jaime Greene","w":0.459},{"d":"MI House District 64","rep":"Joe Pavlov","w":0.243},{"d":"MI House District 63","rep":"Jay DeBoyer","w":0.191}],"ss":[{"d":"MI Senate District 25","rep":"Dan Lauwers","w":0.81},{"d":"MI Senate District 12","rep":"Kevin Hertel","w":0.082}]},"munis":[{"m":"Port Huron","p":[{"n":"Anita Ashford","r":"Mayor, Port Huron, MI"}]}],"slug":"st-clair"},"26149":{"county":[],"districts":{"cd":[{"d":"MI-05","rep":"Tim Walberg","w":1.0}],"sh":[{"d":"MI House District 36","rep":"Steve Carra","w":1.0}],"ss":[{"d":"MI Senate District 17","rep":"Jonathan Lindsey","w":1.0}]},"munis":[],"slug":"st-joseph"},"26151":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":0.606}],"sh":[{"d":"MI House District 98","rep":"Greg Alexander","w":0.582},{"d":"MI House District 64","rep":"Joe Pavlov","w":0.024}],"ss":[{"d":"MI Senate District 25","rep":"Dan Lauwers","w":0.606}]},"munis":[],"slug":"sanilac"},"26153":{"county":[],"districts":{"cd":[{"d":"MI-01","rep":"Jack Bergman","w":0.65}],"sh":[{"d":"MI House District 108","rep":"Dave Prestin","w":0.65}],"ss":[{"d":"MI Senate District 38","rep":"Ed McBroom","w":0.65}]},"munis":[],"slug":"schoolcraft"},"26155":{"county":[],"districts":{"cd":[{"d":"MI-07","rep":"Tom Barrett","w":1.0}],"sh":[{"d":"MI House District 71","rep":"Brian BeGole","w":0.897},{"d":"MI House District 75","rep":"Penelope Tsernoglou","w":0.103}],"ss":[{"d":"MI Senate District 28","rep":"Sam Singh","w":0.866},{"d":"MI Senate District 22","rep":"Lana Theis","w":0.134}]},"munis":[],"slug":"shiawassee"},"26157":{"county":[],"districts":{"cd":[{"d":"MI-09","rep":"Lisa C. McClain","w":0.877},{"d":"MI-08","rep":"Kristen McDonald Rivet","w":0.014}],"sh":[{"d":"MI House District 97","rep":"Matt Bierlein","w":0.501},{"d":"MI House District 98","rep":"Greg Alexander","w":0.353},{"d":"MI House District 67","rep":"Phil Green","w":0.036}],"ss":[{"d":"MI Senate District 26","rep":"Kevin Daley","w":0.5},{"d":"MI Senate District 25","rep":"Dan Lauwers","w":0.39}]},"munis":[],"slug":"tuscola"},"26159":{"county":[],"districts":{"cd":[{"d":"MI-04","rep":"Bill Huizenga","w":0.571}],"sh":[{"d":"MI House District 39","rep":"Pauline Wendzel","w":0.52},{"d":"MI House District 38","rep":"Joey Andrews","w":0.051}],"ss":[{"d":"MI Senate District 20","rep":"Aric Nesbitt","w":0.539},{"d":"MI Senate District 19","rep":"Sean McCann","w":0.032}]},"munis":[],"slug":"van-buren"},"26161":{"county":[],"districts":{"cd":[{"d":"MI-06","rep":"Debbie Dingell","w":1.0}],"sh":[{"d":"MI House District 47","rep":"Carrie Rheingans","w":0.26},{"d":"MI House District 48","rep":"Jennifer Conlin","w":0.218},{"d":"MI House District 33","rep":"Morgan Foreman","w":0.208},{"d":"MI House District 23","rep":"Jason Morgan","w":0.11},{"d":"MI House District 31","rep":"Reggie Miller","w":0.09},{"d":"MI House District 32","rep":"Jimmie Wilson","w":0.061},{"d":"MI House District 46","rep":"Kathy Schmaltz","w":0.052}],"ss":[{"d":"MI Senate District 14","rep":"Sue Shink","w":0.538},{"d":"MI Senate District 15","rep":"Jeff Irwin","w":0.462}]},"munis":[{"m":"Ann Arbor","p":[{"n":"Christopher Taylor","r":"Mayor, Ann Arbor, MI"}]}],"slug":"washtenaw"},"26163":{"county":[],"districts":{"cd":[{"d":"MI-06","rep":"Debbie Dingell","w":0.376},{"d":"MI-13","rep":"Shri Thanedar","w":0.331},{"d":"MI-12","rep":"Rashida Tlaib","w":0.232}],"sh":[{"d":"MI House District 31","rep":"Reggie Miller","w":0.133},{"d":"MI House District 29","rep":"Jim DeSana","w":0.085},{"d":"MI House District 28","rep":"Jamie Thompson","w":0.067},{"d":"MI House District 27","rep":"Rylee Linting","w":0.066},{"d":"MI House District 22","rep":"Matt Koleszar","w":0.062},{"d":"MI House District 26","rep":"Dylan Wegela","w":0.051},{"d":"MI House District 24","rep":"Ranjeev Puri","w":0.044},{"d":"MI House District 25","rep":"Peter Herzberg","w":0.042},{"d":"MI House District 9","rep":"Joe Tate","w":0.042},{"d":"MI House District 16","rep":"Stephanie Young","w":0.036},{"d":"MI House District 17","rep":"Laurie Pohutsky","w":0.035},{"d":"MI House District 7","rep":"Tonya Phillips","w":0.032},{"d":"MI House District 3","rep":"Alabas Farhat","w":0.031},{"d":"MI House District 2","rep":"Tullio Liberati","w":0.027},{"d":"MI House District 4","rep":"Karen Whitsett","w":0.026},{"d":"MI House District 10","rep":"Veronica Paiz","w":0.026},{"d":"MI House District 15","rep":"Erin Byrnes","w":0.025},{"d":"MI House District 8","rep":"Helena Scott","w":0.022},{"d":"MI House District 11","rep":"Donavan McKinney","w":0.018},{"d":"MI House District 23","rep":"Jason Morgan","w":0.015},{"d":"MI House District 5","rep":"Regina Weiss","w":0.012},{"d":"MI House District 12","rep":"Kimberly Edwards","w":0.007}],"ss":[{"d":"MI Senate District 4","rep":"Darrin Camilleri","w":0.357},{"d":"MI Senate District 5","rep":"Dayna Polehanki","w":0.118},{"d":"MI Senate District 1","rep":"Erika Geiss","w":0.105},{"d":"MI Senate District 2","rep":"Sylvia Santana","w":0.081},{"d":"MI Senate District 6","rep":"Mary Cavanagh","w":0.077},{"d":"MI Senate District 3","rep":"Stephanie Chang","w":0.066},{"d":"MI Senate District 13","rep":"Rosemary Bayer","w":0.053},{"d":"MI Senate District 10","rep":"Paul Wojno","w":0.03},{"d":"MI Senate District 8","rep":"Mallory McMorrow","w":0.024},{"d":"MI Senate District 12","rep":"Kevin Hertel","w":0.019},{"d":"MI Senate District 7","rep":"Jeremy Moss","w":0.006}]},"munis":[{"m":"Dearborn","p":[{"n":"Abdullah Hammoud","r":"Mayor, Dearborn, MI"}]},{"m":"Detroit","p":[{"n":"Mary Sheffield","r":"Mayor, Detroit, MI"}]},{"m":"Grosse Pointe Woods","p":[{"n":"Arthur Bryant","r":"Mayor, Grosse Pointe Woods, MI"}]},{"m":"Highland Park","p":[{"n":"Glenda McDonald","r":"Mayor, Highland Park, MI"}]},{"m":"Livonia","p":[{"n":"Maureen Miller Brosnan","r":"Mayor, Livonia, MI"}]}],"slug":"wayne"},"26165":{"county":[],"districts":{"cd":[{"d":"MI-02","rep":"John R. Moolenaar","w":0.78},{"d":"MI-01","rep":"Jack Bergman","w":0.22}],"sh":[{"d":"MI House District 101","rep":"Joseph Fox","w":0.748},{"d":"MI House District 104","rep":"J.R. Roth","w":0.252}],"ss":[{"d":"MI Senate District 36","rep":"Michele Hoitenga","w":1.0}]},"munis":[],"slug":"wexford"},"27001":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 7A","rep":"Spencer Igo","w":0.511},{"d":"MN House District 10A","rep":"Ron Kresha","w":0.489}],"ss":[{"d":"MN Senate District 7","rep":"Rob Farnsworth","w":0.511},{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.489}]},"munis":[],"slug":"aitkin"},"27003":{"county":[],"districts":{"cd":[{"d":"MN-06","rep":"Tom Emmer","w":0.889},{"d":"MN-03","rep":"Kelly Morrison","w":0.074},{"d":"MN-05","rep":"Ilhan Omar","w":0.037}],"sh":[{"d":"MN House District 31B","rep":"Peggy Scott","w":0.315},{"d":"MN House District 32A","rep":"Nolan West","w":0.175},{"d":"MN House District 31A","rep":"Harry Niska","w":0.104},{"d":"MN House District 30B","rep":"Paul Novotny","w":0.099},{"d":"MN House District 36A","rep":"Elliott Engen","w":0.084},{"d":"MN House District 27B","rep":"Bryan Lawrence","w":0.055},{"d":"MN House District 32B","rep":"Matt Norris","w":0.053},{"d":"MN House District 35A","rep":"Zack Stephenson","w":0.036},{"d":"MN House District 35B","rep":"Kari Rehrauer","w":0.035},{"d":"MN House District 39A","rep":"Erin Koegel","w":0.031},{"d":"MN House District 39B","rep":"Sandra Feist","w":0.006},{"d":"MN House District 34B","rep":"Xp Lee","w":0.005}],"ss":[{"d":"MN Senate District 31","rep":"Cal Bahr","w":0.419},{"d":"MN Senate District 32","rep":"Michael Kreun","w":0.229},{"d":"MN Senate District 30","rep":"Eric Lucero","w":0.099},{"d":"MN Senate District 36","rep":"Heather Gustafson","w":0.084},{"d":"MN Senate District 35","rep":"Jim Abeler","w":0.071},{"d":"MN Senate District 27","rep":"Andrew Mathews","w":0.055},{"d":"MN Senate District 39","rep":"Mary Kunesh-Podein","w":0.037},{"d":"MN Senate District 34","rep":"John Hoffman","w":0.005}]},"munis":[{"m":"Columbus","p":[{"n":"Jesse Preiner","r":"Mayor, Columbus, MN"}]}],"slug":"anoka"},"27005":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.647},{"d":"MN-08","rep":"Pete Stauber","w":0.353}],"sh":[{"d":"MN House District 5A","rep":"Krista Knudsen","w":0.423},{"d":"MN House District 2B","rep":"Matt Bliss","w":0.303},{"d":"MN House District 4B","rep":"Jim Joy","w":0.274}],"ss":[{"d":"MN Senate District 5","rep":"Paul Utke","w":0.423},{"d":"MN Senate District 2","rep":"Steve Green","w":0.303},{"d":"MN Senate District 4","rep":"Rob Kupec","w":0.274}]},"munis":[],"slug":"becker"},"27007":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 2A","rep":"Bidal Duran","w":0.777},{"d":"MN House District 2B","rep":"Matt Bliss","w":0.223}],"ss":[{"d":"MN Senate District 2","rep":"Steve Green","w":1.0}]},"munis":[],"slug":"beltrami"},"27009":{"county":[],"districts":{"cd":[{"d":"MN-06","rep":"Tom Emmer","w":0.998}],"sh":[{"d":"MN House District 10B","rep":"Isaac Schultz","w":0.873},{"d":"MN House District 14B","rep":"Dan Wolgamott","w":0.09},{"d":"MN House District 13B","rep":"Tim O'Driscoll","w":0.037}],"ss":[{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.873},{"d":"MN Senate District 14","rep":"Aric Putnam","w":0.09},{"d":"MN Senate District 13","rep":"Jeff Howe","w":0.037}]},"munis":[],"slug":"benton"},"27011":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 12A","rep":"Paul Anderson","w":1.0}],"ss":[{"d":"MN Senate District 12","rep":"Torrey Westrom","w":1.0}]},"munis":[],"slug":"big-stone"},"27013":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 22A","rep":"Bjorn Olson","w":0.685},{"d":"MN House District 22B","rep":"Terry Stier","w":0.135},{"d":"MN House District 15B","rep":"Paul Torkelson","w":0.116},{"d":"MN House District 18A","rep":"Erica Schwartz","w":0.038},{"d":"MN House District 18B","rep":"Luke Frederick","w":0.026}],"ss":[{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.82},{"d":"MN Senate District 15","rep":"Gary Dahms","w":0.116},{"d":"MN Senate District 18","rep":"Nick Frentz","w":0.064}]},"munis":[],"slug":"blue-earth"},"27015":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":0.623},{"d":"MN-07","rep":"Michelle Fischbach","w":0.377}],"sh":[{"d":"MN House District 15B","rep":"Paul Torkelson","w":1.0}],"ss":[{"d":"MN Senate District 15","rep":"Gary Dahms","w":1.0}]},"munis":[],"slug":"brown"},"27017":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 11A","rep":"Jeff Dotseth","w":1.0}],"ss":[{"d":"MN Senate District 11","rep":"Jason Rarick","w":1.0}]},"munis":[],"slug":"carlton"},"27019":{"county":[],"districts":{"cd":[{"d":"MN-06","rep":"Tom Emmer","w":0.997}],"sh":[{"d":"MN House District 17B","rep":"Bobbie Harder","w":0.598},{"d":"MN House District 48A","rep":"Jim Nash","w":0.312},{"d":"MN House District 48B","rep":"Lucy Rehm","w":0.09}],"ss":[{"d":"MN Senate District 17","rep":"Glenn Gruenhagen","w":0.598},{"d":"MN Senate District 48","rep":"Julia Coleman","w":0.402}]},"munis":[],"slug":"carver"},"27021":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.999}],"sh":[{"d":"MN House District 2B","rep":"Matt Bliss","w":0.43},{"d":"MN House District 5A","rep":"Krista Knudsen","w":0.261},{"d":"MN House District 6A","rep":"Ben Davis","w":0.223},{"d":"MN House District 5B","rep":"Mike Wiener","w":0.085}],"ss":[{"d":"MN Senate District 2","rep":"Steve Green","w":0.43},{"d":"MN Senate District 5","rep":"Paul Utke","w":0.347},{"d":"MN Senate District 6","rep":"Keri Heintzeman","w":0.223}]},"munis":[],"slug":"cass"},"27023":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 16A","rep":"Scott Van Binsbergen","w":0.995},{"d":"MN House District 15A","rep":"Chris Swedzinski","w":0.005}],"ss":[{"d":"MN Senate District 16","rep":"Andrew Lang","w":0.995},{"d":"MN Senate District 15","rep":"Gary Dahms","w":0.005}]},"munis":[],"slug":"chippewa"},"27025":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 28B","rep":"Max Rymer","w":0.672},{"d":"MN House District 11B","rep":"Nathan Nelson","w":0.175},{"d":"MN House District 28A","rep":"Jimmy Gordon","w":0.152}],"ss":[{"d":"MN Senate District 28","rep":"Mark Koran","w":0.824},{"d":"MN Senate District 11","rep":"Jason Rarick","w":0.175}]},"munis":[],"slug":"chisago"},"27027":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.998}],"sh":[{"d":"MN House District 4B","rep":"Jim Joy","w":0.883},{"d":"MN House District 1B","rep":"Steve Gander","w":0.1},{"d":"MN House District 4A","rep":"Heather Keeler","w":0.016}],"ss":[{"d":"MN Senate District 4","rep":"Rob Kupec","w":0.899},{"d":"MN Senate District 1","rep":"Mark Johnson","w":0.1}]},"munis":[],"slug":"clay"},"27029":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 2B","rep":"Matt Bliss","w":0.61},{"d":"MN House District 2A","rep":"Bidal Duran","w":0.39}],"ss":[{"d":"MN Senate District 2","rep":"Steve Green","w":1.0}]},"munis":[],"slug":"clearwater"},"27031":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.485}],"sh":[{"d":"MN House District 3A","rep":"Roger Skraba","w":0.482}],"ss":[{"d":"MN Senate District 3","rep":"Grant Hauschild","w":0.482}]},"munis":[],"slug":"cook"},"27033":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 21B","rep":"Marj Fogelman","w":0.221}],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"cottonwood"},"27035":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 6A","rep":"Ben Davis","w":0.57},{"d":"MN House District 6B","rep":"Josh Heintzeman","w":0.222},{"d":"MN House District 10A","rep":"Ron Kresha","w":0.208}],"ss":[{"d":"MN Senate District 6","rep":"Keri Heintzeman","w":0.791},{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.208}]},"munis":[],"slug":"crow-wing"},"27037":{"county":[],"districts":{"cd":[{"d":"MN-02","rep":"Angie Craig","w":0.998}],"sh":[{"d":"MN House District 58B","rep":"Drew Roach","w":0.508},{"d":"MN House District 57A","rep":"Jon Koznick","w":0.099},{"d":"MN House District 20A","rep":"Pam Altendorf","w":0.061},{"d":"MN House District 53A","rep":"Mary Clardy","w":0.058},{"d":"MN House District 41B","rep":"Tom Dippel","w":0.048},{"d":"MN House District 56B","rep":"John Huot","w":0.043},{"d":"MN House District 52B","rep":"Bianca Virnig","w":0.043},{"d":"MN House District 52A","rep":"Liz Reyer","w":0.036},{"d":"MN House District 57B","rep":"Jeff Witte","w":0.026},{"d":"MN House District 55B","rep":"Kaela Berg","w":0.025},{"d":"MN House District 56A","rep":"Robert Bierman","w":0.022},{"d":"MN House District 53B","rep":"Rick Hansen","w":0.015},{"d":"MN House District 55A","rep":"Jess Hanson","w":0.01}],"ss":[{"d":"MN Senate District 58","rep":"Bill Lieske","w":0.511},{"d":"MN Senate District 57","rep":"Zach Duckworth","w":0.125},{"d":"MN Senate District 52","rep":"Jim Carlson","w":0.078},{"d":"MN Senate District 53","rep":"Matt Klein","w":0.074},{"d":"MN Senate District 56","rep":"Erin Maye Quade","w":0.065},{"d":"MN Senate District 20","rep":"Steve Drazkowski","w":0.061},{"d":"MN Senate District 41","rep":"Judy Seeberger","w":0.048},{"d":"MN Senate District 55","rep":"Lindsey Port","w":0.034}]},"munis":[],"slug":"dakota"},"27039":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 24A","rep":"Duane Quam","w":1.0}],"ss":[{"d":"MN Senate District 24","rep":"Carla Nelson","w":1.0}]},"munis":[],"slug":"dodge"},"27041":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 9B","rep":"Tom Murphy","w":0.55},{"d":"MN House District 12B","rep":"Mary Franson","w":0.45}],"ss":[{"d":"MN Senate District 9","rep":"Jordan Rasmusson","w":0.55},{"d":"MN Senate District 12","rep":"Torrey Westrom","w":0.45}]},"munis":[],"slug":"douglas"},"27043":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 23A","rep":"Peggy Bennett","w":0.649},{"d":"MN House District 22A","rep":"Bjorn Olson","w":0.351}],"ss":[{"d":"MN Senate District 23","rep":"Gene Dornink","w":0.649},{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.351}]},"munis":[{"m":"Minnesota Lake","p":[{"n":"Q40249461","r":"Mayor, Minnesota Lake, MN"}]}],"slug":"faribault"},"27045":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 26B","rep":"Greg Davids","w":1.0}],"ss":[{"d":"MN Senate District 26","rep":"Jeremy Miller","w":1.0}]},"munis":[],"slug":"fillmore"},"27047":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 23A","rep":"Peggy Bennett","w":0.702},{"d":"MN House District 23B","rep":"Patty Mueller","w":0.298}],"ss":[{"d":"MN Senate District 23","rep":"Gene Dornink","w":1.0}]},"munis":[],"slug":"freeborn"},"27049":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":0.999}],"sh":[{"d":"MN House District 20A","rep":"Pam Altendorf","w":0.55},{"d":"MN House District 19A","rep":"Keith Allen","w":0.191},{"d":"MN House District 20B","rep":"Steve Jacob","w":0.182},{"d":"MN House District 58B","rep":"Drew Roach","w":0.076}],"ss":[{"d":"MN Senate District 20","rep":"Steve Drazkowski","w":0.732},{"d":"MN Senate District 19","rep":"John Jasinski","w":0.191},{"d":"MN Senate District 58","rep":"Bill Lieske","w":0.076}]},"munis":[],"slug":"goodhue"},"27051":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 9A","rep":"Jeff Backer","w":1.0}],"ss":[{"d":"MN Senate District 9","rep":"Jordan Rasmusson","w":1.0}]},"munis":[],"slug":"grant"},"27053":{"county":[],"districts":{"cd":[{"d":"MN-03","rep":"Kelly Morrison","w":0.795},{"d":"MN-05","rep":"Ilhan Omar","w":0.197},{"d":"MN-06","rep":"Tom Emmer","w":0.006}],"sh":[{"d":"MN House District 37A","rep":"Kristin Robbins","w":0.214},{"d":"MN House District 45A","rep":"Andrew Myers","w":0.124},{"d":"MN House District 34A","rep":"Danny Nadeau","w":0.098},{"d":"MN House District 45B","rep":"Patty Acomb","w":0.046},{"d":"MN House District 49B","rep":"Carlie Kotyza-Witthuhn","w":0.041},{"d":"MN House District 37B","rep":"Kristin Bahner","w":0.039},{"d":"MN House District 49A","rep":"Alex Falconer","w":0.035},{"d":"MN House District 42A","rep":"Ned Carroll","w":0.032},{"d":"MN House District 50B","rep":"Steve Elkins","w":0.031},{"d":"MN House District 51B","rep":"Nathan Coulter","w":0.029},{"d":"MN House District 42B","rep":"Ginny Klevorn","w":0.028},{"d":"MN House District 51A","rep":"Mike Howard","w":0.026},{"d":"MN House District 43B","rep":"Mike Freiberg","w":0.025},{"d":"MN House District 34B","rep":"Xp Lee","w":0.025},{"d":"MN House District 50A","rep":"Julie Greene","w":0.02},{"d":"MN House District 46B","rep":"Cheryl Youakim","w":0.019},{"d":"MN House District 38A","rep":"Huldah Hiltsley","w":0.018},{"d":"MN House District 38B","rep":"Samantha Vang","w":0.017},{"d":"MN House District 43A","rep":"Cedrick Frazier","w":0.017},{"d":"MN House District 60A","rep":"Sydney Jordan","w":0.015},{"d":"MN House District 46A","rep":"Larry Kraft","w":0.014},{"d":"MN House District 63B","rep":"Emma Greenman","w":0.013},{"d":"MN House District 61B","rep":"Jamie Long","w":0.011},{"d":"MN House District 59A","rep":"Fue Lee","w":0.011},{"d":"MN House District 63A","rep":"Samantha Sencer-Mura","w":0.01},{"d":"MN House District 61A","rep":"Katie Jones","w":0.009},{"d":"MN House District 59B","rep":"Esther Agbaje","w":0.008},{"d":"MN House District 62B","rep":"Anquam Mahamoud","w":0.007},{"d":"MN House District 60B","rep":"Mohamud Noor","w":0.006}],"ss":[{"d":"MN Senate District 37","rep":"Warren Limmer","w":0.253},{"d":"MN Senate District 45","rep":"Ann Johnson Stewart","w":0.17},{"d":"MN Senate District 34","rep":"John Hoffman","w":0.123},{"d":"MN Senate District 49","rep":"Steve Cwodzinski","w":0.076},{"d":"MN Senate District 42","rep":"Bonnie Westlin","w":0.06},{"d":"MN Senate District 51","rep":"Melissa Wiklund","w":0.055},{"d":"MN Senate District 50","rep":"Alice Mann","w":0.051},{"d":"MN Senate District 43","rep":"Ann Rest","w":0.042},{"d":"MN Senate District 38","rep":"Susan Pha","w":0.035},{"d":"MN Senate District 46","rep":"Ron Latz","w":0.034},{"d":"MN Senate District 63","rep":"Zaynab Mohamed","w":0.023},{"d":"MN Senate District 60","rep":"Doron Clark","w":0.021},{"d":"MN Senate District 61","rep":"Scott Dibble","w":0.02},{"d":"MN Senate District 59","rep":"Bobby Joe Champion","w":0.018},{"d":"MN Senate District 62","rep":"Omar Fateh","w":0.011}]},"munis":[{"m":"Bloomington","p":[{"n":"Tim Busse","r":"Mayor, Bloomington, MN"}]},{"m":"Brooklyn Park","p":[{"n":"Lisa Jacobson","r":"Mayor, Brooklyn Park, MN"}]},{"m":"Minneapolis","p":[{"n":"Jacob Frey","r":"Mayor, Minneapolis, MN"}]},{"m":"Plymouth","p":[{"n":"Jeffry Wosje","r":"Mayor, Plymouth, MN"}]}],"slug":"hennepin"},"27055":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 26B","rep":"Greg Davids","w":1.0}],"ss":[{"d":"MN Senate District 26","rep":"Jeremy Miller","w":1.0}]},"munis":[],"slug":"houston"},"27057":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.667},{"d":"MN-07","rep":"Michelle Fischbach","w":0.333}],"sh":[{"d":"MN House District 5A","rep":"Krista Knudsen","w":0.673},{"d":"MN House District 2B","rep":"Matt Bliss","w":0.327}],"ss":[{"d":"MN Senate District 5","rep":"Paul Utke","w":0.673},{"d":"MN Senate District 2","rep":"Steve Green","w":0.327}]},"munis":[],"slug":"hubbard"},"27059":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.999}],"sh":[{"d":"MN House District 28A","rep":"Jimmy Gordon","w":0.684},{"d":"MN House District 27B","rep":"Bryan Lawrence","w":0.166},{"d":"MN House District 10B","rep":"Isaac Schultz","w":0.08},{"d":"MN House District 31B","rep":"Peggy Scott","w":0.069}],"ss":[{"d":"MN Senate District 28","rep":"Mark Koran","w":0.684},{"d":"MN Senate District 27","rep":"Andrew Mathews","w":0.166},{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.08},{"d":"MN Senate District 31","rep":"Cal Bahr","w":0.069}]},"munis":[{"m":"Braham","p":[{"n":"Patricia Carlson","r":"Mayor, Braham, MN"}]}],"slug":"isanti"},"27061":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 3A","rep":"Roger Skraba","w":0.416},{"d":"MN House District 7A","rep":"Spencer Igo","w":0.295},{"d":"MN House District 2B","rep":"Matt Bliss","w":0.202},{"d":"MN House District 6A","rep":"Ben Davis","w":0.086}],"ss":[{"d":"MN Senate District 3","rep":"Grant Hauschild","w":0.416},{"d":"MN Senate District 7","rep":"Rob Farnsworth","w":0.295},{"d":"MN Senate District 2","rep":"Steve Green","w":0.202},{"d":"MN Senate District 6","rep":"Keri Heintzeman","w":0.086}]},"munis":[],"slug":"itasca"},"27063":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 21B","rep":"Marj Fogelman","w":1.0}],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"jackson"},"27065":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 11B","rep":"Nathan Nelson","w":0.524},{"d":"MN House District 10A","rep":"Ron Kresha","w":0.338},{"d":"MN House District 10B","rep":"Isaac Schultz","w":0.138}],"ss":[{"d":"MN Senate District 11","rep":"Jason Rarick","w":0.524},{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.476}]},"munis":[],"slug":"kanabec"},"27067":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 16B","rep":"Dave Baker","w":0.833},{"d":"MN House District 16A","rep":"Scott Van Binsbergen","w":0.167}],"ss":[{"d":"MN Senate District 16","rep":"Andrew Lang","w":1.0}]},"munis":[],"slug":"kandiyohi"},"27069":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.997}],"sh":[{"d":"MN House District 1A","rep":"John Burkel","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"kittson"},"27071":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.999}],"sh":[{"d":"MN House District 3A","rep":"Roger Skraba","w":1.0}],"ss":[{"d":"MN Senate District 3","rep":"Grant Hauschild","w":1.0}]},"munis":[],"slug":"koochiching"},"27073":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 15A","rep":"Chris Swedzinski","w":1.0}],"ss":[{"d":"MN Senate District 15","rep":"Gary Dahms","w":1.0}]},"munis":[],"slug":"lac-qui-parle"},"27075":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.766}],"sh":[{"d":"MN House District 3A","rep":"Roger Skraba","w":0.754},{"d":"MN House District 3B","rep":"Natalie Zeleznikar","w":0.012}],"ss":[{"d":"MN Senate District 3","rep":"Grant Hauschild","w":0.766}]},"munis":[],"slug":"lake"},"27077":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 2A","rep":"Bidal Duran","w":1.0}],"ss":[{"d":"MN Senate District 2","rep":"Steve Green","w":1.0}]},"munis":[],"slug":"lake-of-the-woods"},"27079":{"county":[],"districts":{"cd":[{"d":"MN-02","rep":"Angie Craig","w":0.996}],"sh":[{"d":"MN House District 22B","rep":"Terry Stier","w":0.978},{"d":"MN House District 18A","rep":"Erica Schwartz","w":0.022}],"ss":[{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.978},{"d":"MN Senate District 18","rep":"Nick Frentz","w":0.022}]},"munis":[],"slug":"le-sueur"},"27081":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"lincoln"},"27083":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 15A","rep":"Chris Swedzinski","w":1.0}],"ss":[{"d":"MN Senate District 15","rep":"Gary Dahms","w":1.0}]},"munis":[],"slug":"lyon"},"27085":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 17A","rep":"Dawn Gillman","w":0.79},{"d":"MN House District 17B","rep":"Bobbie Harder","w":0.21}],"ss":[{"d":"MN Senate District 17","rep":"Glenn Gruenhagen","w":1.0}]},"munis":[],"slug":"mcleod"},"27087":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 2B","rep":"Matt Bliss","w":1.0}],"ss":[{"d":"MN Senate District 2","rep":"Steve Green","w":1.0}]},"munis":[],"slug":"mahnomen"},"27089":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.997}],"sh":[{"d":"MN House District 1A","rep":"John Burkel","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"marshall"},"27091":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 22A","rep":"Bjorn Olson","w":0.802},{"d":"MN House District 21B","rep":"Marj Fogelman","w":0.197}],"ss":[{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.802},{"d":"MN Senate District 21","rep":"Bill Weber","w":0.197}]},"munis":[],"slug":"martin"},"27093":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 16A","rep":"Scott Van Binsbergen","w":0.637},{"d":"MN House District 17A","rep":"Dawn Gillman","w":0.279},{"d":"MN House District 29A","rep":"Joe McDonald","w":0.084}],"ss":[{"d":"MN Senate District 16","rep":"Andrew Lang","w":0.637},{"d":"MN Senate District 17","rep":"Glenn Gruenhagen","w":0.279},{"d":"MN Senate District 29","rep":"Mike Holmstrom","w":0.084}]},"munis":[{"m":"Watkins","p":[{"n":"Christopher Rowan","r":"Mayor, Watkins, MN"}]}],"slug":"meeker"},"27095":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.999}],"sh":[{"d":"MN House District 10A","rep":"Ron Kresha","w":0.532},{"d":"MN House District 10B","rep":"Isaac Schultz","w":0.361},{"d":"MN House District 27B","rep":"Bryan Lawrence","w":0.107}],"ss":[{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.893},{"d":"MN Senate District 27","rep":"Andrew Mathews","w":0.107}]},"munis":[],"slug":"mille-lacs"},"27097":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.999}],"sh":[{"d":"MN House District 10A","rep":"Ron Kresha","w":0.52},{"d":"MN House District 10B","rep":"Isaac Schultz","w":0.378},{"d":"MN House District 5B","rep":"Mike Wiener","w":0.102}],"ss":[{"d":"MN Senate District 10","rep":"Nathan Wesenberg","w":0.898},{"d":"MN Senate District 5","rep":"Paul Utke","w":0.102}]},"munis":[{"m":"Motley","p":[{"n":"Mike Schmidt","r":"Mayor, Motley, MN"}]}],"slug":"morrison"},"27099":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 23B","rep":"Patty Mueller","w":0.805},{"d":"MN House District 26B","rep":"Greg Davids","w":0.195}],"ss":[{"d":"MN Senate District 23","rep":"Gene Dornink","w":0.805},{"d":"MN Senate District 26","rep":"Jeremy Miller","w":0.195}]},"munis":[],"slug":"mower"},"27101":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"murray"},"27103":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":0.998}],"sh":[{"d":"MN House District 18A","rep":"Erica Schwartz","w":0.999}],"ss":[{"d":"MN Senate District 18","rep":"Nick Frentz","w":0.999}]},"munis":[],"slug":"nicollet"},"27105":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 21B","rep":"Marj Fogelman","w":0.6}],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"nobles"},"27107":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.998}],"sh":[{"d":"MN House District 1B","rep":"Steve Gander","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"norman"},"27109":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 20B","rep":"Steve Jacob","w":0.537},{"d":"MN House District 24A","rep":"Duane Quam","w":0.257},{"d":"MN House District 25A","rep":"Kim Hicks","w":0.142},{"d":"MN House District 24B","rep":"Tina Liebling","w":0.046},{"d":"MN House District 25B","rep":"Andy Smith","w":0.018}],"ss":[{"d":"MN Senate District 20","rep":"Steve Drazkowski","w":0.537},{"d":"MN Senate District 24","rep":"Carla Nelson","w":0.303},{"d":"MN Senate District 25","rep":"Liz Boldon","w":0.16}]},"munis":[{"m":"Rochester","p":[{"n":"Kim Norton","r":"Mayor, Rochester, MN"}]}],"slug":"olmsted"},"27111":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 9B","rep":"Tom Murphy","w":0.711},{"d":"MN House District 9A","rep":"Jeff Backer","w":0.289}],"ss":[{"d":"MN Senate District 9","rep":"Jordan Rasmusson","w":1.0}]},"munis":[],"slug":"otter-tail"},"27113":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 1A","rep":"John Burkel","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"pennington"},"27115":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":1.0}],"sh":[{"d":"MN House District 11B","rep":"Nathan Nelson","w":0.692},{"d":"MN House District 11A","rep":"Jeff Dotseth","w":0.308}],"ss":[{"d":"MN Senate District 11","rep":"Jason Rarick","w":1.0}]},"munis":[],"slug":"pine"},"27117":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"pipestone"},"27119":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.999}],"sh":[{"d":"MN House District 1B","rep":"Steve Gander","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"polk"},"27121":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 12A","rep":"Paul Anderson","w":0.85},{"d":"MN House District 12B","rep":"Mary Franson","w":0.15}],"ss":[{"d":"MN Senate District 12","rep":"Torrey Westrom","w":1.0}]},"munis":[],"slug":"pope"},"27123":{"county":[],"districts":{"cd":[{"d":"MN-04","rep":"Betty McCollum","w":0.992},{"d":"MN-05","rep":"Ilhan Omar","w":0.006}],"sh":[{"d":"MN House District 40A","rep":"Kelly Moller","w":0.137},{"d":"MN House District 36B","rep":"Brion Curran","w":0.126},{"d":"MN House District 40B","rep":"David Gottfried","w":0.104},{"d":"MN House District 44A","rep":"Peter Fischer","w":0.097},{"d":"MN House District 36A","rep":"Elliott Engen","w":0.095},{"d":"MN House District 67B","rep":"Jay Xiong","w":0.071},{"d":"MN House District 66A","rep":"Leigh Finke","w":0.066},{"d":"MN House District 64B","rep":"Dave Pinto","w":0.052},{"d":"MN House District 65B","rep":"María Isa Pérez-Vega","w":0.043},{"d":"MN House District 67A","rep":"Liz Lee","w":0.034},{"d":"MN House District 47A","rep":"Shelley Buck","w":0.034},{"d":"MN House District 64A","rep":"Meg Luger-Nikolai","w":0.032},{"d":"MN House District 66B","rep":"Athena Hollins","w":0.032},{"d":"MN House District 65A","rep":"Samakab Hussein","w":0.032},{"d":"MN House District 39B","rep":"Sandra Feist","w":0.026},{"d":"MN House District 44B","rep":"Leon Lillie","w":0.019}],"ss":[{"d":"MN Senate District 40","rep":"John Marty","w":0.241},{"d":"MN Senate District 36","rep":"Heather Gustafson","w":0.221},{"d":"MN Senate District 44","rep":"Tou Xiong","w":0.116},{"d":"MN Senate District 67","rep":"Foung Hawj","w":0.105},{"d":"MN Senate District 66","rep":"Clare Oumou Verbeten","w":0.098},{"d":"MN Senate District 64","rep":"Erin Murphy","w":0.084},{"d":"MN Senate District 65","rep":"Sandy Pappas","w":0.075},{"d":"MN Senate District 47","rep":"Amanda Hemmingsen-Jaeger","w":0.034},{"d":"MN Senate District 39","rep":"Mary Kunesh-Podein","w":0.026}]},"munis":[{"m":"Maplewood","p":[{"n":"Marylee Abrams","r":"Mayor, Maplewood, MN"}]},{"m":"St Paul","p":[{"n":"Kaohly Her","r":"Mayor, Saint Paul, MN"}]}],"slug":"ramsey"},"27125":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 1B","rep":"Steve Gander","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"red-lake"},"27127":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 15B","rep":"Paul Torkelson","w":1.0}],"ss":[{"d":"MN Senate District 15","rep":"Gary Dahms","w":1.0}]},"munis":[],"slug":"redwood"},"27129":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.999}],"sh":[{"d":"MN House District 16A","rep":"Scott Van Binsbergen","w":1.0}],"ss":[{"d":"MN Senate District 16","rep":"Andrew Lang","w":1.0}]},"munis":[],"slug":"renville"},"27131":{"county":[],"districts":{"cd":[{"d":"MN-02","rep":"Angie Craig","w":0.563},{"d":"MN-01","rep":"Brad Finstad","w":0.437}],"sh":[{"d":"MN House District 19A","rep":"Keith Allen","w":0.559},{"d":"MN House District 58A","rep":"Kristi Pursell","w":0.296},{"d":"MN House District 58B","rep":"Drew Roach","w":0.075},{"d":"MN House District 22B","rep":"Terry Stier","w":0.07}],"ss":[{"d":"MN Senate District 19","rep":"John Jasinski","w":0.559},{"d":"MN Senate District 58","rep":"Bill Lieske","w":0.371},{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.07}]},"munis":[{"m":"Northfield","p":[{"n":"Rhonda Pownell","r":"Mayor, Northfield, MN"}]}],"slug":"rice"},"27133":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[],"ss":[{"d":"MN Senate District 21","rep":"Bill Weber","w":1.0}]},"munis":[],"slug":"rock"},"27135":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.999}],"sh":[{"d":"MN House District 1A","rep":"John Burkel","w":1.0}],"ss":[{"d":"MN Senate District 1","rep":"Mark Johnson","w":1.0}]},"munis":[],"slug":"roseau"},"27137":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.983}],"sh":[{"d":"MN House District 3A","rep":"Roger Skraba","w":0.451},{"d":"MN House District 7B","rep":"Cal Warwas","w":0.246},{"d":"MN House District 3B","rep":"Natalie Zeleznikar","w":0.15},{"d":"MN House District 7A","rep":"Spencer Igo","w":0.099},{"d":"MN House District 11A","rep":"Jeff Dotseth","w":0.026},{"d":"MN House District 8A","rep":"Pete Johnson","w":0.006}],"ss":[{"d":"MN Senate District 3","rep":"Grant Hauschild","w":0.601},{"d":"MN Senate District 7","rep":"Rob Farnsworth","w":0.345},{"d":"MN Senate District 11","rep":"Jason Rarick","w":0.026},{"d":"MN Senate District 8","rep":"Jen McEwen","w":0.011}]},"munis":[{"m":"Duluth","p":[{"n":"Roger Reinert","r":"Mayor, Duluth, MN"}]},{"m":"Floodwood","p":[{"n":"Tad Farrell","r":"Mayor, Floodwood, MN"}]}],"slug":"st-louis"},"27139":{"county":[],"districts":{"cd":[{"d":"MN-02","rep":"Angie Craig","w":0.993}],"sh":[{"d":"MN House District 54B","rep":"Ben Bakeberg","w":0.285},{"d":"MN House District 22B","rep":"Terry Stier","w":0.232},{"d":"MN House District 58A","rep":"Kristi Pursell","w":0.197},{"d":"MN House District 57A","rep":"Jon Koznick","w":0.162},{"d":"MN House District 54A","rep":"Brad Tabke","w":0.08},{"d":"MN House District 55A","rep":"Jess Hanson","w":0.045}],"ss":[{"d":"MN Senate District 54","rep":"Eric Pratt","w":0.364},{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.232},{"d":"MN Senate District 58","rep":"Bill Lieske","w":0.197},{"d":"MN Senate District 57","rep":"Zach Duckworth","w":0.162},{"d":"MN Senate District 55","rep":"Lindsey Port","w":0.045}]},"munis":[],"slug":"scott"},"27141":{"county":[],"districts":{"cd":[{"d":"MN-06","rep":"Tom Emmer","w":1.0}],"sh":[{"d":"MN House District 27A","rep":"Shane Mekeland","w":0.64},{"d":"MN House District 27B","rep":"Bryan Lawrence","w":0.24},{"d":"MN House District 30B","rep":"Paul Novotny","w":0.097},{"d":"MN House District 14B","rep":"Dan Wolgamott","w":0.023}],"ss":[{"d":"MN Senate District 27","rep":"Andrew Mathews","w":0.88},{"d":"MN Senate District 30","rep":"Eric Lucero","w":0.097},{"d":"MN Senate District 14","rep":"Aric Putnam","w":0.023}]},"munis":[{"m":"Becker","p":[{"n":"Tracy Bertram","r":"Mayor, Becker, MN"}]},{"m":"Elk River","p":[{"n":"Calvin Portner","r":"Mayor, Elk River, MN"}]}],"slug":"sherburne"},"27143":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.998}],"sh":[{"d":"MN House District 17B","rep":"Bobbie Harder","w":0.81},{"d":"MN House District 17A","rep":"Dawn Gillman","w":0.19}],"ss":[{"d":"MN Senate District 17","rep":"Glenn Gruenhagen","w":1.0}]},"munis":[{"m":"Winthrop","p":[{"n":"Kelly Pierson","r":"Mayor, Winthrop, MN"}]}],"slug":"sibley"},"27145":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.811},{"d":"MN-06","rep":"Tom Emmer","w":0.189}],"sh":[{"d":"MN House District 13A","rep":"Lisa Demuth","w":0.405},{"d":"MN House District 12A","rep":"Paul Anderson","w":0.313},{"d":"MN House District 12B","rep":"Mary Franson","w":0.117},{"d":"MN House District 13B","rep":"Tim O'Driscoll","w":0.108},{"d":"MN House District 14A","rep":"Bernie Perryman","w":0.049},{"d":"MN House District 14B","rep":"Dan Wolgamott","w":0.007}],"ss":[{"d":"MN Senate District 13","rep":"Jeff Howe","w":0.513},{"d":"MN Senate District 12","rep":"Torrey Westrom","w":0.43},{"d":"MN Senate District 14","rep":"Aric Putnam","w":0.056}]},"munis":[{"m":"St Cloud","p":[{"n":"Dave Kleis","r":"Mayor, St. Cloud, MN"}]}],"slug":"stearns"},"27147":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 19B","rep":"Tom Sexton","w":0.499},{"d":"MN House District 23A","rep":"Peggy Bennett","w":0.417},{"d":"MN House District 23B","rep":"Patty Mueller","w":0.084}],"ss":[{"d":"MN Senate District 23","rep":"Gene Dornink","w":0.5},{"d":"MN Senate District 19","rep":"John Jasinski","w":0.499}]},"munis":[{"m":"Blooming Prairie","p":[{"n":"Curt Esplan","r":"Mayor, Blooming Prairie, MN"}]}],"slug":"steele"},"27149":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 12A","rep":"Paul Anderson","w":1.0}],"ss":[{"d":"MN Senate District 12","rep":"Torrey Westrom","w":1.0}]},"munis":[],"slug":"stevens"},"27151":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 12A","rep":"Paul Anderson","w":1.0}],"ss":[{"d":"MN Senate District 12","rep":"Torrey Westrom","w":1.0}]},"munis":[],"slug":"swift"},"27153":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 5B","rep":"Mike Wiener","w":1.0}],"ss":[{"d":"MN Senate District 5","rep":"Paul Utke","w":1.0}]},"munis":[],"slug":"todd"},"27155":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 9A","rep":"Jeff Backer","w":1.0}],"ss":[{"d":"MN Senate District 9","rep":"Jordan Rasmusson","w":1.0}]},"munis":[],"slug":"traverse"},"27157":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 20B","rep":"Steve Jacob","w":0.558},{"d":"MN House District 20A","rep":"Pam Altendorf","w":0.442}],"ss":[{"d":"MN Senate District 20","rep":"Steve Drazkowski","w":1.0}]},"munis":[],"slug":"wabasha"},"27159":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.999}],"sh":[{"d":"MN House District 5A","rep":"Krista Knudsen","w":0.529},{"d":"MN House District 5B","rep":"Mike Wiener","w":0.471}],"ss":[{"d":"MN Senate District 5","rep":"Paul Utke","w":1.0}]},"munis":[],"slug":"wadena"},"27161":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 23A","rep":"Peggy Bennett","w":0.5},{"d":"MN House District 19A","rep":"Keith Allen","w":0.333},{"d":"MN House District 19B","rep":"Tom Sexton","w":0.166}],"ss":[{"d":"MN Senate District 23","rep":"Gene Dornink","w":0.5},{"d":"MN Senate District 19","rep":"John Jasinski","w":0.499}]},"munis":[],"slug":"waseca"},"27163":{"county":[],"districts":{"cd":[{"d":"MN-08","rep":"Pete Stauber","w":0.398},{"d":"MN-04","rep":"Betty McCollum","w":0.389},{"d":"MN-02","rep":"Angie Craig","w":0.212}],"sh":[{"d":"MN House District 33B","rep":"Josiah Hill","w":0.293},{"d":"MN House District 41A","rep":"Wayne Johnson","w":0.265},{"d":"MN House District 33A","rep":"Patti Anderson","w":0.185},{"d":"MN House District 41B","rep":"Tom Dippel","w":0.112},{"d":"MN House District 47B","rep":"Ethan Cha","w":0.056},{"d":"MN House District 53B","rep":"Rick Hansen","w":0.031},{"d":"MN House District 44B","rep":"Leon Lillie","w":0.029},{"d":"MN House District 47A","rep":"Shelley Buck","w":0.029}],"ss":[{"d":"MN Senate District 33","rep":"Karin Housley","w":0.477},{"d":"MN Senate District 41","rep":"Judy Seeberger","w":0.377},{"d":"MN Senate District 47","rep":"Amanda Hemmingsen-Jaeger","w":0.084},{"d":"MN Senate District 53","rep":"Matt Klein","w":0.031},{"d":"MN Senate District 44","rep":"Tou Xiong","w":0.029}]},"munis":[],"slug":"washington"},"27165":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 22A","rep":"Bjorn Olson","w":0.51},{"d":"MN House District 21B","rep":"Marj Fogelman","w":0.49}],"ss":[{"d":"MN Senate District 22","rep":"Rich Draheim","w":0.51},{"d":"MN Senate District 21","rep":"Bill Weber","w":0.49}]},"munis":[],"slug":"watonwan"},"27167":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":0.998}],"sh":[{"d":"MN House District 9A","rep":"Jeff Backer","w":0.999}],"ss":[{"d":"MN Senate District 9","rep":"Jordan Rasmusson","w":0.999}]},"munis":[],"slug":"wilkin"},"27169":{"county":[],"districts":{"cd":[{"d":"MN-01","rep":"Brad Finstad","w":1.0}],"sh":[{"d":"MN House District 26A","rep":"Ripper Repinski","w":0.665},{"d":"MN House District 20B","rep":"Steve Jacob","w":0.334}],"ss":[{"d":"MN Senate District 26","rep":"Jeremy Miller","w":0.665},{"d":"MN Senate District 20","rep":"Steve Drazkowski","w":0.334}]},"munis":[],"slug":"winona"},"27171":{"county":[],"districts":{"cd":[{"d":"MN-06","rep":"Tom Emmer","w":0.999}],"sh":[{"d":"MN House District 29A","rep":"Joe McDonald","w":0.517},{"d":"MN House District 29B","rep":"Marion Rarick","w":0.229},{"d":"MN House District 30A","rep":"Walter Hudson","w":0.138},{"d":"MN House District 17A","rep":"Dawn Gillman","w":0.1},{"d":"MN House District 30B","rep":"Paul Novotny","w":0.016}],"ss":[{"d":"MN Senate District 29","rep":"Mike Holmstrom","w":0.746},{"d":"MN Senate District 30","rep":"Eric Lucero","w":0.154},{"d":"MN Senate District 17","rep":"Glenn Gruenhagen","w":0.1}]},"munis":[{"m":"Hanover","p":[{"n":"Chris Kauffman","r":"Mayor, Hanover, MN"}]}],"slug":"wright"},"27173":{"county":[],"districts":{"cd":[{"d":"MN-07","rep":"Michelle Fischbach","w":1.0}],"sh":[{"d":"MN House District 15A","rep":"Chris Swedzinski","w":1.0}],"ss":[{"d":"MN Senate District 15","rep":"Gary Dahms","w":1.0}]},"munis":[],"slug":"yellow-medicine"},"28001":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.996}],"sh":[{"d":"MS House District 94","rep":"Robert Johnson","w":0.434},{"d":"MS House District 96","rep":"Angela Cockerham","w":0.313},{"d":"MS House District 97","rep":"Sam Mims","w":0.252}],"ss":[{"d":"MS Senate District 37","rep":"Albert Butler","w":0.618},{"d":"MS Senate District 38","rep":"Gary Brumfield","w":0.382}]},"munis":[{"m":"Natchez","p":[{"n":"Dan M. Gibson","r":"Mayor, Natchez, MS"}]}],"slug":"adams"},"28003":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 2","rep":"Brad Mattox","w":0.539},{"d":"MS House District 1","rep":"Bubba Carpenter","w":0.202},{"d":"MS House District 4","rep":"Jody Steverson","w":0.161},{"d":"MS House District 3","rep":"Tracy Arnold","w":0.098}],"ss":[{"d":"MS Senate District 4","rep":"Rita Parks","w":1.0}]},"munis":[],"slug":"alcorn"},"28005":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 96","rep":"Angela Cockerham","w":0.653},{"d":"MS House District 97","rep":"Sam Mims","w":0.347}],"ss":[{"d":"MS Senate District 38","rep":"Gary Brumfield","w":0.605},{"d":"MS Senate District 39","rep":"Jason Barrett","w":0.394}]},"munis":[],"slug":"amite"},"28007":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 48","rep":"Jason White","w":0.784},{"d":"MS House District 27","rep":"Kenji Holloway","w":0.137},{"d":"MS House District 47","rep":"Bryant Clark","w":0.079}],"ss":[{"d":"MS Senate District 14","rep":"Lydia Chassaniol","w":0.641},{"d":"MS Senate District 21","rep":"Bradford Blackmon","w":0.359}]},"munis":[],"slug":"attala"},"28009":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 13","rep":"Steve Massengill","w":0.793},{"d":"MS House District 5","rep":"John Faulkner","w":0.206}],"ss":[{"d":"MS Senate District 3","rep":"Kathy Chism","w":1.0}]},"munis":[],"slug":"benton"},"28011":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.998}],"sh":[{"d":"MS House District 29","rep":"Robert Sanders","w":0.649},{"d":"MS House District 50","rep":"John Hines","w":0.205},{"d":"MS House District 26","rep":"Otha Williams","w":0.087},{"d":"MS House District 31","rep":"Otis Anthony","w":0.058}],"ss":[{"d":"MS Senate District 12","rep":"Derrick Simmons","w":0.741},{"d":"MS Senate District 13","rep":"Sarita Simmons","w":0.258}]},"munis":[{"m":"Cleveland","p":[{"n":"Billy Nowell","r":"Mayor, Cleveland, MS"}]}],"slug":"bolivar"},"28013":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":0.999}],"sh":[{"d":"MS House District 23","rep":"Perry Bailey","w":1.0}],"ss":[{"d":"MS Senate District 8","rep":"Ben Suber","w":1.0}]},"munis":[],"slug":"calhoun"},"28015":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 46","rep":"Karl Oliver","w":0.827},{"d":"MS House District 48","rep":"Jason White","w":0.133},{"d":"MS House District 34","rep":"Kevin Horan","w":0.039}],"ss":[{"d":"MS Senate District 14","rep":"Lydia Chassaniol","w":1.0}]},"munis":[],"slug":"carroll"},"28017":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 22","rep":"Justin Crosby","w":0.77},{"d":"MS House District 16","rep":"Rickey Thompson","w":0.157},{"d":"MS House District 36","rep":"Karl Gibbs","w":0.073}],"ss":[{"d":"MS Senate District 8","rep":"Ben Suber","w":1.0}]},"munis":[],"slug":"chickasaw"},"28019":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":0.999}],"sh":[{"d":"MS House District 35","rep":"Joey Hood","w":1.0}],"ss":[{"d":"MS Senate District 15","rep":"Bart Williams","w":1.0}]},"munis":[],"slug":"choctaw"},"28021":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 85","rep":"Jeffery Harness","w":0.999}],"ss":[{"d":"MS Senate District 37","rep":"Albert Butler","w":1.0}]},"munis":[],"slug":"claiborne"},"28023":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 84","rep":"Troy Smith","w":0.668},{"d":"MS House District 80","rep":"Omeria Scott","w":0.224},{"d":"MS House District 81","rep":"Steve Horne","w":0.108}],"ss":[{"d":"MS Senate District 33","rep":"Jeff Tate","w":1.0}]},"munis":[],"slug":"clarke"},"28025":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":0.999}],"sh":[{"d":"MS House District 36","rep":"Karl Gibbs","w":0.944},{"d":"MS House District 37","rep":"Andy Boyd","w":0.041},{"d":"MS House District 38","rep":"Cheikh Taylor","w":0.015}],"ss":[{"d":"MS Senate District 16","rep":"Angela Turner-Ford","w":0.999}]},"munis":[{"m":"West Point","p":[{"n":"Rod Bobo","r":"Mayor, West Point, MS"}]}],"slug":"clay"},"28027":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.997}],"sh":[{"d":"MS House District 26","rep":"Otha Williams","w":0.735},{"d":"MS House District 9","rep":"Cedric Burnett","w":0.265}],"ss":[{"d":"MS Senate District 12","rep":"Derrick Simmons","w":0.75},{"d":"MS Senate District 11","rep":"Reginald Jackson","w":0.25}]},"munis":[{"m":"Clarksdale","p":[{"n":"Chuck Espy","r":"Mayor, Clarksdale, MS"}]}],"slug":"coahoma"},"28029":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.997}],"sh":[{"d":"MS House District 76","rep":"Greg Holloway","w":0.654},{"d":"MS House District 92","rep":"Becky Currie","w":0.293},{"d":"MS House District 62","rep":"Lance Varner","w":0.053}],"ss":[{"d":"MS Senate District 37","rep":"Albert Butler","w":0.627},{"d":"MS Senate District 35","rep":"Andy Berry","w":0.373}]},"munis":[],"slug":"copiah"},"28031":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 90","rep":"Noah Sanford","w":0.874},{"d":"MS House District 91","rep":"Bob Evans","w":0.126}],"ss":[{"d":"MS Senate District 41","rep":"Joey Fillingane","w":1.0}]},"munis":[],"slug":"covington"},"28033":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":0.999}],"sh":[{"d":"MS House District 25","rep":"Dan Eubanks","w":0.236},{"d":"MS House District 28","rep":"Doc Harris","w":0.225},{"d":"MS House District 9","rep":"Cedric Burnett","w":0.144},{"d":"MS House District 6","rep":"Justin Keen","w":0.114},{"d":"MS House District 24","rep":"Jeff Hale","w":0.113},{"d":"MS House District 52","rep":"Bill Kinkade","w":0.059},{"d":"MS House District 7","rep":"Kimberly Remak","w":0.043},{"d":"MS House District 20","rep":"Rodney Hall","w":0.035},{"d":"MS House District 40","rep":"Hester Jackson-McCray","w":0.03}],"ss":[{"d":"MS Senate District 1","rep":"Michael McLendon","w":0.383},{"d":"MS Senate District 19","rep":"Kevin Blackwell","w":0.325},{"d":"MS Senate District 11","rep":"Reginald Jackson","w":0.185},{"d":"MS Senate District 2","rep":"Theresa Gillespie Isom","w":0.105}]},"munis":[{"m":"Hernando","p":[{"n":"Chip Johnson","r":"Mayor, Hernando, MS"}]},{"m":"Horn Lake","p":[{"n":"Allen Latimer","r":"Mayor, Horn Lake, MS"}]},{"m":"Olive Branch","p":[{"n":"Ken Adams","r":"Mayor, Olive Branch, MS"}]},{"m":"Southaven","p":[{"n":"Darren Musselwhite","r":"Mayor, Southaven, MS"}]}],"slug":"desoto"},"28035":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 104","rep":"Larry Byrd","w":0.724},{"d":"MS House District 103","rep":"Percy Watson","w":0.112},{"d":"MS House District 87","rep":"Bubba Tubb","w":0.06},{"d":"MS House District 90","rep":"Noah Sanford","w":0.059},{"d":"MS House District 102","rep":"Missy McGee","w":0.045}],"ss":[{"d":"MS Senate District 45","rep":"Johnny DuPree","w":0.811},{"d":"MS Senate District 42","rep":"Don Hartness","w":0.103},{"d":"MS Senate District 34","rep":"Juan Barnett","w":0.086}]},"munis":[{"m":"Hattiesburg","p":[{"n":"Toby Barker","r":"Mayor, Hattiesburg, MS"}]}],"slug":"forrest"},"28037":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 85","rep":"Jeffery Harness","w":0.424},{"d":"MS House District 53","rep":"Vince Mangold","w":0.251},{"d":"MS House District 97","rep":"Sam Mims","w":0.166},{"d":"MS House District 94","rep":"Robert Johnson","w":0.159}],"ss":[{"d":"MS Senate District 37","rep":"Albert Butler","w":0.749},{"d":"MS Senate District 39","rep":"Jason Barrett","w":0.251}]},"munis":[],"slug":"franklin"},"28039":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 107","rep":"Steve Lott","w":0.69},{"d":"MS House District 109","rep":"Manly Barton","w":0.178},{"d":"MS House District 105","rep":"Elliot Burch","w":0.132}],"ss":[{"d":"MS Senate District 43","rep":"Dennis DeBar","w":1.0}]},"munis":[],"slug":"george"},"28041":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 105","rep":"Elliot Burch","w":0.825},{"d":"MS House District 86","rep":"Shane Barnett","w":0.175}],"ss":[{"d":"MS Senate District 43","rep":"Dennis DeBar","w":0.854},{"d":"MS Senate District 42","rep":"Don Hartness","w":0.146}]},"munis":[],"slug":"greene"},"28043":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 34","rep":"Kevin Horan","w":0.793},{"d":"MS House District 30","rep":"Tracey Rosebud","w":0.189},{"d":"MS House District 46","rep":"Karl Oliver","w":0.019}],"ss":[{"d":"MS Senate District 14","rep":"Lydia Chassaniol","w":1.0}]},"munis":[{"m":"Grenada","p":[{"n":"Charles H. Latham","r":"Mayor, Grenada, MS"}]}],"slug":"grenada"},"28045":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":0.878}],"sh":[{"d":"MS House District 122","rep":"Brent Anderson","w":0.537},{"d":"MS House District 93","rep":"Timmy Ladner","w":0.229},{"d":"MS House District 95","rep":"Jay McKnight","w":0.107}],"ss":[{"d":"MS Senate District 46","rep":"Philman Ladner","w":0.861},{"d":"MS Senate District 48","rep":"Mike Thompson","w":0.013}]},"munis":[],"slug":"hancock"},"28047":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":0.619}],"sh":[{"d":"MS House District 116","rep":"Casey Eure","w":0.219},{"d":"MS House District 121","rep":"Carolyn Crawford","w":0.102},{"d":"MS House District 33","rep":"Jim Estrada","w":0.101},{"d":"MS House District 95","rep":"Jay McKnight","w":0.078},{"d":"MS House District 120","rep":"Richard Bennett","w":0.024},{"d":"MS House District 119","rep":"Jeffrey Hulum","w":0.022},{"d":"MS House District 118","rep":"Greg Haney","w":0.02},{"d":"MS House District 115","rep":"Zack Grady","w":0.017},{"d":"MS House District 117","rep":"Kevin Felsher","w":0.015}],"ss":[{"d":"MS Senate District 47","rep":"Mike Seymour","w":0.22},{"d":"MS Senate District 46","rep":"Philman Ladner","w":0.19},{"d":"MS Senate District 48","rep":"Mike Thompson","w":0.076},{"d":"MS Senate District 50","rep":"Scott DeLano","w":0.07},{"d":"MS Senate District 49","rep":"Joel Carter","w":0.042}]},"munis":[{"m":"Biloxi","p":[{"n":"Andrew Gilich","r":"Mayor, Biloxi, MS"}]},{"m":"Gulfport","p":[{"n":"William Gardner Hewes","r":"Mayor, Gulfport, MS"}]},{"m":"Long Beach","p":[{"n":"George L. Bass","r":"Mayor, Long Beach, MS"}]}],"slug":"harrison"},"28049":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.981},{"d":"MS-03","rep":"Michael Guest","w":0.019}],"sh":[{"d":"MS House District 63","rep":"Stephanie Foster","w":0.555},{"d":"MS House District 66","rep":"Fabian Nelson","w":0.182},{"d":"MS House District 70","rep":"Bo Brown","w":0.061},{"d":"MS House District 56","rep":"Clay Mansell","w":0.06},{"d":"MS House District 71","rep":"Ronnie Crudup","w":0.037},{"d":"MS House District 76","rep":"Greg Holloway","w":0.032},{"d":"MS House District 69","rep":"Grace Butler-Washington","w":0.017},{"d":"MS House District 64","rep":"Shanda Yates","w":0.015},{"d":"MS House District 67","rep":"Earle Banks","w":0.014},{"d":"MS House District 72","rep":"Justis Gibbs","w":0.01},{"d":"MS House District 65","rep":"Chris Bell","w":0.008},{"d":"MS House District 68","rep":"Zakiya Summers","w":0.007}],"ss":[{"d":"MS Senate District 26","rep":"Kamesha Mumford","w":0.363},{"d":"MS Senate District 29","rep":"David Blount","w":0.238},{"d":"MS Senate District 27","rep":"Hillman Frazier","w":0.206},{"d":"MS Senate District 37","rep":"Albert Butler","w":0.118},{"d":"MS Senate District 28","rep":"Sollie Norwood","w":0.063},{"d":"MS Senate District 25","rep":"Walter Michel","w":0.011}]},"munis":[{"m":"Byram","p":[{"n":"Richard White","r":"Mayor, Byram, MS"}]},{"m":"Clinton","p":[{"n":"Phil Fisher","r":"Mayor, Clinton, MS"}]},{"m":"Jackson","p":[{"n":"Chokwe Antar Lumumba","r":"Mayor, Jackson, MS"}]}],"slug":"hinds"},"28051":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 47","rep":"Bryant Clark","w":0.681},{"d":"MS House District 51","rep":"Timaka James-Jones","w":0.205},{"d":"MS House District 48","rep":"Jason White","w":0.114}],"ss":[{"d":"MS Senate District 21","rep":"Bradford Blackmon","w":1.0}]},"munis":[],"slug":"holmes"},"28053":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 51","rep":"Timaka James-Jones","w":1.0}],"ss":[{"d":"MS Senate District 22","rep":"Joseph Thomas","w":0.999}]},"munis":[],"slug":"humphreys"},"28055":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.999}],"sh":[{"d":"MS House District 54","rep":"Kevin Ford","w":0.79},{"d":"MS House District 50","rep":"John Hines","w":0.209}],"ss":[{"d":"MS Senate District 23","rep":"Briggs Hopson","w":0.999}]},"munis":[],"slug":"issaquena"},"28057":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 21","rep":"Donnie Bell","w":0.842},{"d":"MS House District 19","rep":"Randy Boyd","w":0.157}],"ss":[{"d":"MS Senate District 5","rep":"Daniel Sparks","w":0.648},{"d":"MS Senate District 7","rep":"Hob Bryan","w":0.352}]},"munis":[],"slug":"itawamba"},"28059":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":0.738}],"sh":[{"d":"MS House District 109","rep":"Manly Barton","w":0.303},{"d":"MS House District 114","rep":"Jeff Guice","w":0.142},{"d":"MS House District 111","rep":"Jimmy Fondren","w":0.123},{"d":"MS House District 112","rep":"John Read","w":0.105},{"d":"MS House District 110","rep":"Jeramey Anderson","w":0.023},{"d":"MS House District 113","rep":"Hank Zuber","w":0.02}],"ss":[{"d":"MS Senate District 51","rep":"Jeremy England","w":0.338},{"d":"MS Senate District 47","rep":"Mike Seymour","w":0.298},{"d":"MS Senate District 52","rep":"Brice Wiggins","w":0.079}]},"munis":[{"m":"Gautier","p":[{"n":"Casey Vaughan","r":"Mayor, Gautier, MS"}]},{"m":"Moss Point","p":[{"n":"Billy Knight, Sr.","r":"Mayor, Moss Point, MS"}]},{"m":"Ocean Springs","p":[{"n":"Kenny Holloway","r":"Mayor, Ocean Springs, MS"}]},{"m":"Pascagoula","p":[{"n":"Jay Willis","r":"Mayor, Pascagoula, MS"}]}],"slug":"jackson"},"28061":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 84","rep":"Troy Smith","w":0.68},{"d":"MS House District 80","rep":"Omeria Scott","w":0.232},{"d":"MS House District 79","rep":"Mark Tullos","w":0.089}],"ss":[{"d":"MS Senate District 34","rep":"Juan Barnett","w":1.0}]},"munis":[],"slug":"jasper"},"28063":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.997}],"sh":[{"d":"MS House District 85","rep":"Jeffery Harness","w":0.559},{"d":"MS House District 94","rep":"Robert Johnson","w":0.441}],"ss":[{"d":"MS Senate District 37","rep":"Albert Butler","w":1.0}]},"munis":[],"slug":"jefferson"},"28065":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 91","rep":"Bob Evans","w":0.889},{"d":"MS House District 90","rep":"Noah Sanford","w":0.11}],"ss":[{"d":"MS Senate District 35","rep":"Andy Berry","w":1.0}]},"munis":[],"slug":"jefferson-davis"},"28067":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":0.9},{"d":"MS-03","rep":"Michael Guest","w":0.1}],"sh":[{"d":"MS House District 88","rep":"Chuck Blackwell","w":0.634},{"d":"MS House District 89","rep":"Donnie Scoggin","w":0.215},{"d":"MS House District 80","rep":"Omeria Scott","w":0.076},{"d":"MS House District 90","rep":"Noah Sanford","w":0.075}],"ss":[{"d":"MS Senate District 42","rep":"Don Hartness","w":0.724},{"d":"MS Senate District 34","rep":"Juan Barnett","w":0.276}]},"munis":[{"m":"Laurel","p":[{"n":"Johnny Magee","r":"Mayor, Laurel, MS"}]}],"slug":"jones"},"28069":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 45","rep":"Keith Jackson","w":0.643},{"d":"MS House District 42","rep":"Carl Mickens","w":0.246},{"d":"MS House District 83","rep":"Billy Adam Calvert","w":0.111}],"ss":[{"d":"MS Senate District 32","rep":"Rod Hickman","w":1.0}]},"munis":[],"slug":"kemper"},"28071":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 13","rep":"Steve Massengill","w":0.3},{"d":"MS House District 23","rep":"Perry Bailey","w":0.254},{"d":"MS House District 10","rep":"Josh Hawkins","w":0.187},{"d":"MS House District 34","rep":"Kevin Horan","w":0.076},{"d":"MS House District 12","rep":"Clay Deweese","w":0.073},{"d":"MS House District 8","rep":"Trey Lamar","w":0.064},{"d":"MS House District 5","rep":"John Faulkner","w":0.046}],"ss":[{"d":"MS Senate District 9","rep":"Nicole Boyd","w":0.608},{"d":"MS Senate District 10","rep":"Neil Whaley","w":0.202},{"d":"MS Senate District 8","rep":"Ben Suber","w":0.19}]},"munis":[{"m":"Oxford","p":[{"n":"Robyn Tannehill","r":"Mayor, Oxford, MS"}]}],"slug":"lafayette"},"28073":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 87","rep":"Bubba Tubb","w":0.37},{"d":"MS House District 99","rep":"Bill Pigott","w":0.306},{"d":"MS House District 100","rep":"Ken Morgan","w":0.181},{"d":"MS House District 106","rep":"Jansen Owen","w":0.076},{"d":"MS House District 101","rep":"Kent McCarty","w":0.066}],"ss":[{"d":"MS Senate District 44","rep":"Chris Johnson","w":0.785},{"d":"MS Senate District 41","rep":"Joey Fillingane","w":0.215}]},"munis":[],"slug":"lamar"},"28075":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 81","rep":"Steve Horne","w":0.526},{"d":"MS House District 83","rep":"Billy Adam Calvert","w":0.243},{"d":"MS House District 45","rep":"Keith Jackson","w":0.185},{"d":"MS House District 82","rep":"Gregory Elliott","w":0.046}],"ss":[{"d":"MS Senate District 33","rep":"Jeff Tate","w":0.722},{"d":"MS Senate District 32","rep":"Rod Hickman","w":0.207},{"d":"MS Senate District 31","rep":"Tyler McCaughn","w":0.071}]},"munis":[{"m":"Meridian","p":[{"n":"Q109905488","r":"Mayor, Meridian, MS"}]}],"slug":"lauderdale"},"28077":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":0.999}],"sh":[{"d":"MS House District 91","rep":"Bob Evans","w":0.56},{"d":"MS House District 53","rep":"Vince Mangold","w":0.262},{"d":"MS House District 92","rep":"Becky Currie","w":0.096},{"d":"MS House District 99","rep":"Bill Pigott","w":0.081}],"ss":[{"d":"MS Senate District 35","rep":"Andy Berry","w":0.599},{"d":"MS Senate District 39","rep":"Jason Barrett","w":0.401}]},"munis":[],"slug":"lawrence"},"28079":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.999}],"sh":[{"d":"MS House District 27","rep":"Kenji Holloway","w":0.483},{"d":"MS House District 48","rep":"Jason White","w":0.387},{"d":"MS House District 78","rep":"Randy Rushing","w":0.098},{"d":"MS House District 44","rep":"Scott Bounds","w":0.033}],"ss":[{"d":"MS Senate District 18","rep":"Lane Taylor","w":0.851},{"d":"MS Senate District 21","rep":"Bradford Blackmon","w":0.149}]},"munis":[],"slug":"leake"},"28081":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 19","rep":"Randy Boyd","w":0.41},{"d":"MS House District 18","rep":"Jerry Turner","w":0.297},{"d":"MS House District 16","rep":"Rickey Thompson","w":0.151},{"d":"MS House District 17","rep":"Shane Aguirre","w":0.141}],"ss":[{"d":"MS Senate District 6","rep":"Chad McMahan","w":0.685},{"d":"MS Senate District 7","rep":"Hob Bryan","w":0.315}]},"munis":[{"m":"Tupelo","p":[{"n":"Todd Jordan","r":"Mayor, Tupelo, MS"}]}],"slug":"lee"},"28083":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 32","rep":"Solomon Osborne","w":0.592},{"d":"MS House District 51","rep":"Timaka James-Jones","w":0.244},{"d":"MS House District 46","rep":"Karl Oliver","w":0.164}],"ss":[{"d":"MS Senate District 24","rep":"Justin Pope","w":0.961},{"d":"MS Senate District 14","rep":"Lydia Chassaniol","w":0.038}]},"munis":[{"m":"Greenwood","p":[{"n":"Carolyn McAdams","r":"Mayor, Greenwood, MS"}]}],"slug":"leflore"},"28085":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":0.999}],"sh":[{"d":"MS House District 92","rep":"Becky Currie","w":0.589},{"d":"MS House District 53","rep":"Vince Mangold","w":0.411}],"ss":[{"d":"MS Senate District 39","rep":"Jason Barrett","w":1.0}]},"munis":[{"m":"Brookhaven","p":[{"n":"Joe C. Cox","r":"Mayor, Brookhaven, MS"}]}],"slug":"lincoln"},"28087":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 37","rep":"Andy Boyd","w":0.465},{"d":"MS House District 42","rep":"Carl Mickens","w":0.274},{"d":"MS House District 39","rep":"Dana McLean","w":0.151},{"d":"MS House District 41","rep":"Kabir Karriem","w":0.072},{"d":"MS House District 38","rep":"Cheikh Taylor","w":0.037}],"ss":[{"d":"MS Senate District 17","rep":"Chuck Younger","w":0.943},{"d":"MS Senate District 16","rep":"Angela Turner-Ford","w":0.057}]},"munis":[{"m":"Columbus","p":[{"n":"Keith Gaskin","r":"Mayor, Columbus, MS"}]}],"slug":"lowndes"},"28089":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.703},{"d":"MS-03","rep":"Michael Guest","w":0.297}],"sh":[{"d":"MS House District 27","rep":"Kenji Holloway","w":0.36},{"d":"MS House District 57","rep":"Lawrence Blackmon","w":0.291},{"d":"MS House District 75","rep":"Celeste Hurst","w":0.116},{"d":"MS House District 56","rep":"Clay Mansell","w":0.099},{"d":"MS House District 73","rep":"Jill Ford","w":0.067},{"d":"MS House District 58","rep":"Jonathan McMillan","w":0.051},{"d":"MS House District 72","rep":"Justis Gibbs","w":0.008},{"d":"MS House District 64","rep":"Shanda Yates","w":0.006}],"ss":[{"d":"MS Senate District 21","rep":"Bradford Blackmon","w":0.601},{"d":"MS Senate District 22","rep":"Joseph Thomas","w":0.19},{"d":"MS Senate District 23","rep":"Briggs Hopson","w":0.087},{"d":"MS Senate District 26","rep":"Kamesha Mumford","w":0.067},{"d":"MS Senate District 25","rep":"Walter Michel","w":0.056}]},"munis":[{"m":"Canton","p":[{"n":"William Truly, Jr.","r":"Mayor, Canton, MS"}]},{"m":"Madison","p":[{"n":"Mary Hawkins Butler","r":"Mayor, Madison, MS"}]},{"m":"Ridgeland","p":[{"n":"Gene F. McGee","r":"Mayor, Ridgeland, MS"}]}],"slug":"madison"},"28091":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 100","rep":"Ken Morgan","w":0.567},{"d":"MS House District 99","rep":"Bill Pigott","w":0.433}],"ss":[{"d":"MS Senate District 41","rep":"Joey Fillingane","w":1.0}]},"munis":[],"slug":"marion"},"28093":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 5","rep":"John Faulkner","w":0.648},{"d":"MS House District 52","rep":"Bill Kinkade","w":0.215},{"d":"MS House District 13","rep":"Steve Massengill","w":0.136}],"ss":[{"d":"MS Senate District 10","rep":"Neil Whaley","w":0.86},{"d":"MS Senate District 3","rep":"Kathy Chism","w":0.14}]},"munis":[],"slug":"marshall"},"28095":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 39","rep":"Dana McLean","w":0.251},{"d":"MS House District 36","rep":"Karl Gibbs","w":0.23},{"d":"MS House District 22","rep":"Justin Crosby","w":0.175},{"d":"MS House District 21","rep":"Donnie Bell","w":0.156},{"d":"MS House District 37","rep":"Andy Boyd","w":0.133},{"d":"MS House District 16","rep":"Rickey Thompson","w":0.055}],"ss":[{"d":"MS Senate District 7","rep":"Hob Bryan","w":0.666},{"d":"MS Senate District 17","rep":"Chuck Younger","w":0.334}]},"munis":[],"slug":"monroe"},"28097":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.999}],"sh":[{"d":"MS House District 46","rep":"Karl Oliver","w":1.0}],"ss":[{"d":"MS Senate District 14","rep":"Lydia Chassaniol","w":0.552},{"d":"MS Senate District 15","rep":"Bart Williams","w":0.448}]},"munis":[],"slug":"montgomery"},"28099":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 44","rep":"Scott Bounds","w":0.823},{"d":"MS House District 45","rep":"Keith Jackson","w":0.177}],"ss":[{"d":"MS Senate District 18","rep":"Lane Taylor","w":1.0}]},"munis":[],"slug":"neshoba"},"28101":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 78","rep":"Randy Rushing","w":0.585},{"d":"MS House District 84","rep":"Troy Smith","w":0.179},{"d":"MS House District 81","rep":"Steve Horne","w":0.152},{"d":"MS House District 83","rep":"Billy Adam Calvert","w":0.084}],"ss":[{"d":"MS Senate District 31","rep":"Tyler McCaughn","w":1.0}]},"munis":[],"slug":"newton"},"28103":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 42","rep":"Carl Mickens","w":1.0}],"ss":[{"d":"MS Senate District 32","rep":"Rod Hickman","w":0.537},{"d":"MS Senate District 16","rep":"Angela Turner-Ford","w":0.463}]},"munis":[],"slug":"noxubee"},"28105":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":0.748},{"d":"MS-01","rep":"Trent Kelly","w":0.252}],"sh":[{"d":"MS House District 38","rep":"Cheikh Taylor","w":0.495},{"d":"MS House District 35","rep":"Joey Hood","w":0.245},{"d":"MS House District 43","rep":"Rob Roberson","w":0.171},{"d":"MS House District 36","rep":"Karl Gibbs","w":0.087}],"ss":[{"d":"MS Senate District 15","rep":"Bart Williams","w":0.512},{"d":"MS Senate District 16","rep":"Angela Turner-Ford","w":0.405},{"d":"MS Senate District 17","rep":"Chuck Younger","w":0.083}]},"munis":[{"m":"Starkville","p":[{"n":"Lynn Spruill","r":"Mayor, Starkville, MS"}]}],"slug":"oktibbeha"},"28107":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 11","rep":"Lataisha Jackson","w":0.681},{"d":"MS House District 10","rep":"Josh Hawkins","w":0.319}],"ss":[{"d":"MS Senate District 24","rep":"Justin Pope","w":0.834},{"d":"MS Senate District 9","rep":"Nicole Boyd","w":0.166}]},"munis":[],"slug":"panola"},"28109":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":0.997}],"sh":[{"d":"MS House District 106","rep":"Jansen Owen","w":0.601},{"d":"MS House District 93","rep":"Timmy Ladner","w":0.233},{"d":"MS House District 108","rep":"Stacey Hobgood-Wilkes","w":0.165}],"ss":[{"d":"MS Senate District 40","rep":"Angela Hill","w":0.998}]},"munis":[{"m":"Picayune","p":[{"n":"Jim Luke","r":"Mayor, Picayune, MS"}]}],"slug":"pearl-river"},"28111":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 105","rep":"Elliot Burch","w":0.881},{"d":"MS House District 86","rep":"Shane Barnett","w":0.119}],"ss":[{"d":"MS Senate District 45","rep":"Johnny DuPree","w":1.0}]},"munis":[],"slug":"perry"},"28113":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 98","rep":"Daryl Porter","w":0.498},{"d":"MS House District 96","rep":"Angela Cockerham","w":0.202},{"d":"MS House District 97","rep":"Sam Mims","w":0.178},{"d":"MS House District 53","rep":"Vince Mangold","w":0.122}],"ss":[{"d":"MS Senate District 38","rep":"Gary Brumfield","w":0.622},{"d":"MS Senate District 39","rep":"Jason Barrett","w":0.378}]},"munis":[{"m":"Mccomb","p":[{"n":"Quordiniah N. Lockley","r":"Mayor, McComb, MS"}]}],"slug":"pike"},"28115":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 15","rep":"Beth Waldo","w":0.523},{"d":"MS House District 22","rep":"Justin Crosby","w":0.186},{"d":"MS House District 23","rep":"Perry Bailey","w":0.162},{"d":"MS House District 13","rep":"Steve Massengill","w":0.129}],"ss":[{"d":"MS Senate District 8","rep":"Ben Suber","w":0.61},{"d":"MS Senate District 3","rep":"Kathy Chism","w":0.39}]},"munis":[],"slug":"pontotoc"},"28117":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 3","rep":"Tracy Arnold","w":0.805},{"d":"MS House District 18","rep":"Jerry Turner","w":0.195}],"ss":[{"d":"MS Senate District 5","rep":"Daniel Sparks","w":0.805},{"d":"MS Senate District 3","rep":"Kathy Chism","w":0.195}]},"munis":[],"slug":"prentiss"},"28119":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 9","rep":"Cedric Burnett","w":1.0}],"ss":[{"d":"MS Senate District 11","rep":"Reginald Jackson","w":1.0}]},"munis":[],"slug":"quitman"},"28121":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":0.997}],"sh":[{"d":"MS House District 75","rep":"Celeste Hurst","w":0.243},{"d":"MS House District 77","rep":"Price Wallace","w":0.201},{"d":"MS House District 60","rep":"Fred Shanks","w":0.149},{"d":"MS House District 62","rep":"Lance Varner","w":0.148},{"d":"MS House District 74","rep":"Lee Yancey","w":0.092},{"d":"MS House District 59","rep":"Brent Powell","w":0.05},{"d":"MS House District 68","rep":"Zakiya Summers","w":0.046},{"d":"MS House District 79","rep":"Mark Tullos","w":0.036},{"d":"MS House District 61","rep":"Gene Newman","w":0.034}],"ss":[{"d":"MS Senate District 36","rep":"Brian Rhodes","w":0.624},{"d":"MS Senate District 20","rep":"Josh Harkins","w":0.229},{"d":"MS Senate District 30","rep":"Dean Kirby","w":0.091},{"d":"MS Senate District 31","rep":"Tyler McCaughn","w":0.057}]},"munis":[{"m":"Brandon","p":[{"n":"Butch Lee","r":"Mayor, Brandon, MS"}]},{"m":"Flowood","p":[{"n":"Gary Rhoads","r":"Mayor, Flowood, MS"}]},{"m":"Pearl","p":[{"n":"Jake Windham","r":"Mayor, Pearl, MS"}]}],"slug":"rankin"},"28123":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 78","rep":"Randy Rushing","w":0.362},{"d":"MS House District 75","rep":"Celeste Hurst","w":0.277},{"d":"MS House District 79","rep":"Mark Tullos","w":0.207},{"d":"MS House District 27","rep":"Kenji Holloway","w":0.153}],"ss":[{"d":"MS Senate District 31","rep":"Tyler McCaughn","w":1.0}]},"munis":[],"slug":"scott"},"28125":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 51","rep":"Timaka James-Jones","w":1.0}],"ss":[{"d":"MS Senate District 22","rep":"Joseph Thomas","w":1.0}]},"munis":[],"slug":"sharkey"},"28127":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":0.998}],"sh":[{"d":"MS House District 77","rep":"Price Wallace","w":0.675},{"d":"MS House District 91","rep":"Bob Evans","w":0.253},{"d":"MS House District 90","rep":"Noah Sanford","w":0.059},{"d":"MS House District 62","rep":"Lance Varner","w":0.014}],"ss":[{"d":"MS Senate District 35","rep":"Andy Berry","w":1.0}]},"munis":[],"slug":"simpson"},"28129":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 79","rep":"Mark Tullos","w":1.0}],"ss":[{"d":"MS Senate District 36","rep":"Brian Rhodes","w":1.0}]},"munis":[],"slug":"smith"},"28131":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 107","rep":"Steve Lott","w":0.554},{"d":"MS House District 93","rep":"Timmy Ladner","w":0.446}],"ss":[{"d":"MS Senate District 47","rep":"Mike Seymour","w":0.743},{"d":"MS Senate District 40","rep":"Angela Hill","w":0.257}]},"munis":[],"slug":"stone"},"28133":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 31","rep":"Otis Anthony","w":0.754},{"d":"MS House District 30","rep":"Tracey Rosebud","w":0.113},{"d":"MS House District 26","rep":"Otha Williams","w":0.107},{"d":"MS House District 29","rep":"Robert Sanders","w":0.025}],"ss":[{"d":"MS Senate District 13","rep":"Sarita Simmons","w":1.0}]},"munis":[{"m":"Indianola","p":[{"n":"Ken Featherstone","r":"Mayor, Indianola, MS"}]}],"slug":"sunflower"},"28135":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 30","rep":"Tracey Rosebud","w":1.0}],"ss":[{"d":"MS Senate District 24","rep":"Justin Pope","w":0.898},{"d":"MS Senate District 13","rep":"Sarita Simmons","w":0.101}]},"munis":[],"slug":"tallahatchie"},"28137":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":0.999}],"sh":[{"d":"MS House District 8","rep":"Trey Lamar","w":0.798},{"d":"MS House District 9","rep":"Cedric Burnett","w":0.17},{"d":"MS House District 11","rep":"Lataisha Jackson","w":0.031}],"ss":[{"d":"MS Senate District 10","rep":"Neil Whaley","w":0.669},{"d":"MS Senate District 11","rep":"Reginald Jackson","w":0.331}]},"munis":[],"slug":"tate"},"28139":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 4","rep":"Jody Steverson","w":1.0}],"ss":[{"d":"MS Senate District 4","rep":"Rita Parks","w":1.0}]},"munis":[],"slug":"tippah"},"28141":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 1","rep":"Bubba Carpenter","w":0.861},{"d":"MS House District 3","rep":"Tracy Arnold","w":0.139}],"ss":[{"d":"MS Senate District 5","rep":"Daniel Sparks","w":1.0}]},"munis":[],"slug":"tishomingo"},"28143":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.995}],"sh":[{"d":"MS House District 9","rep":"Cedric Burnett","w":0.999}],"ss":[{"d":"MS Senate District 11","rep":"Reginald Jackson","w":0.999}]},"munis":[],"slug":"tunica"},"28145":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 14","rep":"Sam Creekmore","w":0.763},{"d":"MS House District 13","rep":"Steve Massengill","w":0.237}],"ss":[{"d":"MS Senate District 3","rep":"Kathy Chism","w":0.705},{"d":"MS Senate District 10","rep":"Neil Whaley","w":0.295}]},"munis":[],"slug":"union"},"28147":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 99","rep":"Bill Pigott","w":0.788},{"d":"MS House District 98","rep":"Daryl Porter","w":0.212}],"ss":[{"d":"MS Senate District 41","rep":"Joey Fillingane","w":0.603},{"d":"MS Senate District 38","rep":"Gary Brumfield","w":0.397}]},"munis":[],"slug":"walthall"},"28149":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.996}],"sh":[{"d":"MS House District 54","rep":"Kevin Ford","w":0.539},{"d":"MS House District 85","rep":"Jeffery Harness","w":0.267},{"d":"MS House District 55","rep":"Oscar Denton","w":0.194}],"ss":[{"d":"MS Senate District 23","rep":"Briggs Hopson","w":0.999}]},"munis":[{"m":"Vicksburg","p":[{"n":"George Flaggs Jr.","r":"Mayor, Vicksburg, MS"}]}],"slug":"warren"},"28151":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":0.996}],"sh":[{"d":"MS House District 50","rep":"John Hines","w":0.815},{"d":"MS House District 49","rep":"Willie Bailey","w":0.184}],"ss":[{"d":"MS Senate District 12","rep":"Derrick Simmons","w":0.999}]},"munis":[{"m":"Greenville","p":[{"n":"Errick D. Simmons","r":"Mayor, Greenville, MS"}]}],"slug":"washington"},"28153":{"county":[],"districts":{"cd":[{"d":"MS-04","rep":"Mike Ezell","w":1.0}],"sh":[{"d":"MS House District 86","rep":"Shane Barnett","w":1.0}],"ss":[{"d":"MS Senate District 43","rep":"Dennis DeBar","w":0.902},{"d":"MS Senate District 42","rep":"Don Hartness","w":0.098}]},"munis":[],"slug":"wayne"},"28155":{"county":[],"districts":{"cd":[{"d":"MS-01","rep":"Trent Kelly","w":1.0}],"sh":[{"d":"MS House District 23","rep":"Perry Bailey","w":0.391},{"d":"MS House District 35","rep":"Joey Hood","w":0.323},{"d":"MS House District 46","rep":"Karl Oliver","w":0.286}],"ss":[{"d":"MS Senate District 15","rep":"Bart Williams","w":1.0}]},"munis":[],"slug":"webster"},"28157":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 96","rep":"Angela Cockerham","w":1.0}],"ss":[{"d":"MS Senate District 38","rep":"Gary Brumfield","w":1.0}]},"munis":[],"slug":"wilkinson"},"28159":{"county":[],"districts":{"cd":[{"d":"MS-03","rep":"Michael Guest","w":1.0}],"sh":[{"d":"MS House District 42","rep":"Carl Mickens","w":0.43},{"d":"MS House District 35","rep":"Joey Hood","w":0.398},{"d":"MS House District 45","rep":"Keith Jackson","w":0.172}],"ss":[{"d":"MS Senate District 18","rep":"Lane Taylor","w":0.571},{"d":"MS Senate District 32","rep":"Rod Hickman","w":0.429}]},"munis":[],"slug":"winston"},"28161":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 34","rep":"Kevin Horan","w":1.0}],"ss":[{"d":"MS Senate District 8","rep":"Ben Suber","w":1.0}]},"munis":[],"slug":"yalobusha"},"28163":{"county":[],"districts":{"cd":[{"d":"MS-02","rep":"Bennie G. Thompson","w":1.0}],"sh":[{"d":"MS House District 54","rep":"Kevin Ford","w":0.526},{"d":"MS House District 47","rep":"Bryant Clark","w":0.288},{"d":"MS House District 51","rep":"Timaka James-Jones","w":0.156},{"d":"MS House District 57","rep":"Lawrence Blackmon","w":0.03}],"ss":[{"d":"MS Senate District 23","rep":"Briggs Hopson","w":0.541},{"d":"MS Senate District 22","rep":"Joseph Thomas","w":0.459}]},"munis":[{"m":"Yazoo City","p":[{"n":"Q131346619","r":"Mayor, Yazoo City, MS"}]}],"slug":"yazoo"},"29001":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 3","rep":"Danny Busick","w":0.712},{"d":"MO House District 4","rep":"Greg Sharpe","w":0.288}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"adair"},"29003":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 9","rep":"Dean VanSchoiack","w":0.999}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"andrew"},"29005":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 1","rep":"Jeff Farnan","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"atchison"},"29007":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 43","rep":"Kent Haden","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"audrain"},"29009":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 158","rep":"Scott Cupps","w":1.0}],"ss":[{"d":"MO Senate District 29","rep":"Mike Moon","w":1.0}]},"munis":[],"slug":"barry"},"29011":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 127","rep":"Ann Kelley","w":1.0}],"ss":[{"d":"MO Senate District 20","rep":"Curtis Trent","w":1.0}]},"munis":[],"slug":"barton"},"29013":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 125","rep":"Dane Diehl","w":0.631},{"d":"MO House District 62","rep":"Sherri Gallick","w":0.369}],"ss":[{"d":"MO Senate District 31","rep":"Rick Brattin","w":1.0}]},"munis":[{"m":"Butler","p":[{"n":"Jim Henry","r":"Mayor, Butler, MO"}]}],"slug":"bates"},"29015":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 57","rep":"Rodger Reedy","w":0.834},{"d":"MO House District 126","rep":"Jim Kalberloh","w":0.166}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"benton"},"29017":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 151","rep":"Steve Jordan","w":0.568},{"d":"MO House District 144","rep":"Tony Harbison","w":0.432}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[],"slug":"bollinger"},"29019":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.579},{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.421}],"sh":[{"d":"MO House District 44","rep":"John Martin","w":0.53},{"d":"MO House District 47","rep":"Adrian Plank","w":0.379},{"d":"MO House District 50","rep":"Gregg Bush","w":0.037},{"d":"MO House District 46","rep":"David Smith","w":0.037},{"d":"MO House District 45","rep":"Kathy Steinhoff","w":0.016}],"ss":[{"d":"MO Senate District 19","rep":"Stephen Webber","w":1.0}]},"munis":[{"m":"Columbia","p":[{"n":"Barbara Buffaloe","r":"Mayor, Columbia, MO"}]}],"slug":"boone"},"29021":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 13","rep":"Sean Pouche","w":0.732},{"d":"MO House District 11","rep":"Brenda Shields","w":0.212},{"d":"MO House District 10","rep":"Bill Falkner","w":0.056}],"ss":[{"d":"MO Senate District 34","rep":"Tony Luetkemeyer","w":0.549},{"d":"MO Senate District 12","rep":"Rusty Black","w":0.45}]},"munis":[{"m":"St Joseph","p":[{"n":"John Josendale","r":"Mayor, St. Joseph, MO"}]}],"slug":"buchanan"},"29023":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 152","rep":"Hardy Billington","w":0.666},{"d":"MO House District 150","rep":"Cameron Parker","w":0.334}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[{"m":"Poplar Bluff","p":[{"n":"Shane Cornman","r":"Mayor, Poplar Bluff, MO"}]}],"slug":"butler"},"29025":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 2","rep":"Mazzie Christensen","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"caldwell"},"29027":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.999}],"sh":[{"d":"MO House District 49","rep":"Jim Schulte","w":0.686},{"d":"MO House District 43","rep":"Kent Haden","w":0.314}],"ss":[{"d":"MO Senate District 10","rep":"Travis Fitzwater","w":1.0}]},"munis":[],"slug":"callaway"},"29029":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.929},{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.071}],"sh":[{"d":"MO House District 123","rep":"Jeff Vernetti","w":0.758},{"d":"MO House District 142","rep":"Jeff Knight","w":0.242}],"ss":[{"d":"MO Senate District 6","rep":"Mike Bernskoetter","w":1.0}]},"munis":[],"slug":"camden"},"29031":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 146","rep":"Barry Hovis","w":0.722},{"d":"MO House District 151","rep":"Steve Jordan","w":0.231},{"d":"MO House District 147","rep":"John Voss","w":0.047}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[{"m":"Jackson","p":[{"n":"Dwain Hahs","r":"Mayor, Jackson, MO"}]}],"slug":"cape-girardeau"},"29033":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":0.997}],"sh":[{"d":"MO House District 7","rep":"Peggy McGaugh","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"carroll"},"29035":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 153","rep":"Keith Elliott","w":1.0}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"carter"},"29037":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 62","rep":"Sherri Gallick","w":0.624},{"d":"MO House District 55","rep":"Bill Irwin","w":0.342},{"d":"MO House District 56","rep":"Michael Davis","w":0.034}],"ss":[{"d":"MO Senate District 31","rep":"Rick Brattin","w":1.0}]},"munis":[],"slug":"cass"},"29039":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 125","rep":"Dane Diehl","w":0.59},{"d":"MO House District 127","rep":"Ann Kelley","w":0.41}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"cedar"},"29041":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":0.999}],"sh":[{"d":"MO House District 48","rep":"Tim Taylor","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"chariton"},"29043":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 138","rep":"Burt Whaley","w":0.504},{"d":"MO House District 140","rep":"Jamie Ray Gragg","w":0.263},{"d":"MO House District 139","rep":"Bob Titus","w":0.233}],"ss":[{"d":"MO Senate District 29","rep":"Mike Moon","w":1.0}]},"munis":[],"slug":"christian"},"29045":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 4","rep":"Greg Sharpe","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"clark"},"29047":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":0.806},{"d":"MO-05","rep":"Emanuel Cleaver","w":0.194}],"sh":[{"d":"MO House District 8","rep":"Josh Hurlbert","w":0.392},{"d":"MO House District 39","rep":"Mark Meirath","w":0.306},{"d":"MO House District 17","rep":"Bill Allen","w":0.096},{"d":"MO House District 38","rep":"Marty Jacobs","w":0.081},{"d":"MO House District 16","rep":"Chris Brown","w":0.051},{"d":"MO House District 18","rep":"Eric Woods","w":0.046},{"d":"MO House District 15","rep":"Ken Jamison","w":0.029}],"ss":[{"d":"MO Senate District 21","rep":"Kurtis Gregory","w":0.719},{"d":"MO Senate District 17","rep":"Maggie Nurrenbern","w":0.281}]},"munis":[],"slug":"clay"},"29049":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 9","rep":"Dean VanSchoiack","w":0.553},{"d":"MO House District 8","rep":"Josh Hurlbert","w":0.447}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"clinton"},"29051":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":1.0}],"sh":[{"d":"MO House District 59","rep":"Rudy Veit","w":0.928},{"d":"MO House District 60","rep":"Dave Griffith","w":0.072}],"ss":[{"d":"MO Senate District 6","rep":"Mike Bernskoetter","w":1.0}]},"munis":[{"m":"Jefferson City","p":[{"n":"Ron Fitzwater","r":"Mayor, Jefferson City, MO"}]}],"slug":"cole"},"29053":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.998}],"sh":[{"d":"MO House District 48","rep":"Tim Taylor","w":0.965},{"d":"MO House District 58","rep":"Willard Haley","w":0.035}],"ss":[{"d":"MO Senate District 21","rep":"Kurtis Gregory","w":1.0}]},"munis":[],"slug":"cooper"},"29055":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.999}],"sh":[{"d":"MO House District 120","rep":"John Hewkin","w":1.0}],"ss":[{"d":"MO Senate District 3","rep":"Mike Henderson","w":1.0}]},"munis":[],"slug":"crawford"},"29057":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 127","rep":"Ann Kelley","w":1.0}],"ss":[{"d":"MO Senate District 20","rep":"Curtis Trent","w":1.0}]},"munis":[],"slug":"dade"},"29059":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 142","rep":"Jeff Knight","w":1.0}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"dallas"},"29061":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 2","rep":"Mazzie Christensen","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"daviess"},"29063":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 9","rep":"Dean VanSchoiack","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"dekalb"},"29065":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 120","rep":"John Hewkin","w":1.0}],"ss":[{"d":"MO Senate District 16","rep":"Justin Brown","w":1.0}]},"munis":[],"slug":"dent"},"29067":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 155","rep":"Matthew Overcast","w":0.702},{"d":"MO House District 141","rep":"Melissa Schmidt","w":0.298}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[],"slug":"douglas"},"29069":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":0.996}],"sh":[{"d":"MO House District 150","rep":"Cameron Parker","w":0.998}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":0.999}]},"munis":[],"slug":"dunklin"},"29071":{"county":[],"districts":{"cd":[{"d":"MO-02","rep":"Ann Wagner","w":0.999}],"sh":[{"d":"MO House District 118","rep":"Mike McGirl","w":0.543},{"d":"MO House District 109","rep":"John Simmons","w":0.321},{"d":"MO House District 119","rep":"Brad Banderman","w":0.135}],"ss":[{"d":"MO Senate District 26","rep":"Ben Brown","w":1.0}]},"munis":[],"slug":"franklin"},"29073":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.999}],"sh":[{"d":"MO House District 61","rep":"Bruce Sassmann","w":1.0}],"ss":[{"d":"MO Senate District 26","rep":"Ben Brown","w":1.0}]},"munis":[{"m":"Hermann","p":[{"n":"Bruce Cox","r":"Mayor, Hermann, MO"}]}],"slug":"gasconade"},"29075":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 1","rep":"Jeff Farnan","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"gentry"},"29077":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 131","rep":"Bill Owen","w":0.551},{"d":"MO House District 137","rep":"Darin Chappell","w":0.253},{"d":"MO House District 130","rep":"Bishop Davidson","w":0.08},{"d":"MO House District 135","rep":"Betsy Fogle","w":0.031},{"d":"MO House District 134","rep":"Alex Riley","w":0.027},{"d":"MO House District 136","rep":"Stephanie Hein","w":0.023},{"d":"MO House District 133","rep":"Melanie Stinnett","w":0.019},{"d":"MO House District 132","rep":"Jeremy Dean","w":0.017}],"ss":[{"d":"MO Senate District 20","rep":"Curtis Trent","w":0.864},{"d":"MO Senate District 30","rep":"Lincoln Hough","w":0.137}]},"munis":[{"m":"Springfield","p":[{"n":"Ken McClure","r":"Mayor, Springfield, MO"}]}],"slug":"greene"},"29079":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 2","rep":"Mazzie Christensen","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"grundy"},"29081":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 2","rep":"Mazzie Christensen","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[{"m":"Bethany","p":[{"n":"Lance Johns","r":"Mayor, Bethany, MO"}]}],"slug":"harrison"},"29083":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 126","rep":"Jim Kalberloh","w":1.0}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"henry"},"29085":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 126","rep":"Jim Kalberloh","w":0.565},{"d":"MO House District 128","rep":"Chris Warwick","w":0.435}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"hickory"},"29087":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 1","rep":"Jeff Farnan","w":0.999}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"holt"},"29089":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.998}],"sh":[{"d":"MO House District 48","rep":"Tim Taylor","w":1.0}],"ss":[{"d":"MO Senate District 21","rep":"Kurtis Gregory","w":1.0}]},"munis":[{"m":"Fayette","p":[{"n":"Greg Stidham","r":"Mayor, Fayette, MO"}]}],"slug":"howard"},"29091":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 154","rep":"Lisa Durnell","w":0.97},{"d":"MO House District 153","rep":"Keith Elliott","w":0.03}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[],"slug":"howell"},"29093":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 144","rep":"Tony Harbison","w":1.0}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[],"slug":"iron"},"29095":{"county":[],"districts":{"cd":[{"d":"MO-05","rep":"Emanuel Cleaver","w":0.572},{"d":"MO-04","rep":"Mark Alford","w":0.25},{"d":"MO-06","rep":"Sam Graves","w":0.178}],"sh":[{"d":"MO House District 32","rep":"Jeff Coleman","w":0.233},{"d":"MO House District 33","rep":"Carolyn Caton","w":0.19},{"d":"MO House District 20","rep":"Mike Steinmeyer","w":0.101},{"d":"MO House District 35","rep":"Keri Ingle","w":0.069},{"d":"MO House District 36","rep":"Anthony Ealy","w":0.063},{"d":"MO House District 34","rep":"Kemp Strickler","w":0.04},{"d":"MO House District 30","rep":"Jon Patterson","w":0.036},{"d":"MO House District 19","rep":"Wick Thomas","w":0.035},{"d":"MO House District 26","rep":"Tiffany Price","w":0.029},{"d":"MO House District 37","rep":"Mark Sharp","w":0.028},{"d":"MO House District 27","rep":"Melissa Douglas","w":0.026},{"d":"MO House District 22","rep":"Yolanda Young","w":0.024},{"d":"MO House District 29","rep":"Aaron Crossley","w":0.022},{"d":"MO House District 21","rep":"Will Jobe","w":0.022},{"d":"MO House District 31","rep":"Ron Fowler","w":0.022},{"d":"MO House District 28","rep":"Donna Barnes","w":0.021},{"d":"MO House District 23","rep":"Michael Johnson","w":0.016},{"d":"MO House District 25","rep":"Pattie Mansur","w":0.013},{"d":"MO House District 24","rep":"Emily Weber","w":0.01}],"ss":[{"d":"MO Senate District 11","rep":"Joe Nicola","w":0.376},{"d":"MO Senate District 8","rep":"Mike Cierpiot","w":0.354},{"d":"MO Senate District 9","rep":"Barbara Washington","w":0.148},{"d":"MO Senate District 7","rep":"Patty Lewis","w":0.121}]},"munis":[{"m":"Independence","p":[{"n":"Rory Rowland","r":"Mayor, Independence, MO"}]},{"m":"Kansas City","p":[{"n":"Quinton Lucas","r":"Mayor, Kansas City, MO"}]},{"m":"Lee S Summit","p":[{"n":"William A. Baird","r":"Mayor, Lee's Summit, MO"}]}],"slug":"jackson"},"29097":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 127","rep":"Ann Kelley","w":0.452},{"d":"MO House District 163","rep":"Cathy Loy","w":0.3},{"d":"MO House District 162","rep":"Bob Bromley","w":0.22},{"d":"MO House District 161","rep":"Lane Roberts","w":0.027}],"ss":[{"d":"MO Senate District 32","rep":"Jill Carter","w":1.0}]},"munis":[{"m":"Joplin","p":[{"n":"Douglas Lawson","r":"Mayor, Joplin, MO"}]}],"slug":"jasper"},"29099":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.503},{"d":"MO-08","rep":"Jason Smith","w":0.494}],"sh":[{"d":"MO House District 115","rep":"Bill Lucas","w":0.48},{"d":"MO House District 111","rep":"Cecelie Williams","w":0.235},{"d":"MO House District 112","rep":"Renee Reuter","w":0.082},{"d":"MO House District 97","rep":"David Casteel","w":0.05},{"d":"MO House District 113","rep":"Phil Amato","w":0.041}],"ss":[{"d":"MO Senate District 3","rep":"Mike Henderson","w":0.521},{"d":"MO Senate District 22","rep":"Mary Elizabeth Coleman","w":0.478}]},"munis":[],"slug":"jefferson"},"29101":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 54","rep":"Brandon Phelps","w":0.519},{"d":"MO House District 57","rep":"Rodger Reedy","w":0.481}],"ss":[{"d":"MO Senate District 31","rep":"Rick Brattin","w":1.0}]},"munis":[],"slug":"johnson"},"29103":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 4","rep":"Greg Sharpe","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"knox"},"29105":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 141","rep":"Melissa Schmidt","w":0.891},{"d":"MO House District 142","rep":"Jeff Knight","w":0.109}],"ss":[{"d":"MO Senate District 16","rep":"Justin Brown","w":1.0}]},"munis":[],"slug":"laclede"},"29107":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.997}],"sh":[{"d":"MO House District 51","rep":"Mark Nolte","w":0.617},{"d":"MO House District 53","rep":"Terry Thompson","w":0.383}],"ss":[{"d":"MO Senate District 21","rep":"Kurtis Gregory","w":1.0}]},"munis":[],"slug":"lafayette"},"29109":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 157","rep":"Mitch Boggs","w":1.0}],"ss":[{"d":"MO Senate District 29","rep":"Mike Moon","w":1.0}]},"munis":[],"slug":"lawrence"},"29111":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 4","rep":"Greg Sharpe","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"lewis"},"29113":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":0.997}],"sh":[{"d":"MO House District 40","rep":"Chad Perkins","w":0.717},{"d":"MO House District 41","rep":"Doyle Justus","w":0.283}],"ss":[{"d":"MO Senate District 10","rep":"Travis Fitzwater","w":1.0}]},"munis":[],"slug":"lincoln"},"29115":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 7","rep":"Peggy McGaugh","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"linn"},"29117":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 7","rep":"Peggy McGaugh","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"livingston"},"29119":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 159","rep":"Dirk Deaton","w":0.716},{"d":"MO House District 158","rep":"Scott Cupps","w":0.284}],"ss":[{"d":"MO Senate District 29","rep":"Mike Moon","w":1.0}]},"munis":[],"slug":"mcdonald"},"29121":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 6","rep":"Ed Lewis","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"macon"},"29123":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 144","rep":"Tony Harbison","w":0.559},{"d":"MO House District 116","rep":"Dale Wright","w":0.441}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[],"slug":"madison"},"29125":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.999}],"sh":[{"d":"MO House District 143","rep":"Bennie Cook","w":1.0}],"ss":[{"d":"MO Senate District 16","rep":"Justin Brown","w":1.0}]},"munis":[],"slug":"maries"},"29127":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 5","rep":"Louis Riggs","w":0.999}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"marion"},"29129":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 3","rep":"Danny Busick","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"mercer"},"29131":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":1.0}],"sh":[{"d":"MO House District 124","rep":"Don Mayhew","w":0.85},{"d":"MO House District 61","rep":"Bruce Sassmann","w":0.15}],"ss":[{"d":"MO Senate District 6","rep":"Mike Bernskoetter","w":1.0}]},"munis":[],"slug":"miller"},"29133":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"mississippi"},"29135":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":1.0}],"sh":[{"d":"MO House District 58","rep":"Willard Haley","w":1.0}],"ss":[{"d":"MO Senate District 6","rep":"Mike Bernskoetter","w":1.0}]},"munis":[],"slug":"moniteau"},"29137":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 43","rep":"Kent Haden","w":0.859},{"d":"MO House District 4","rep":"Greg Sharpe","w":0.141}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"monroe"},"29139":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.999}],"sh":[{"d":"MO House District 61","rep":"Bruce Sassmann","w":0.666},{"d":"MO House District 42","rep":"Jeff Myers","w":0.334}],"ss":[{"d":"MO Senate District 10","rep":"Travis Fitzwater","w":1.0}]},"munis":[],"slug":"montgomery"},"29141":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 58","rep":"Willard Haley","w":1.0}],"ss":[{"d":"MO Senate District 6","rep":"Mike Bernskoetter","w":1.0}]},"munis":[],"slug":"morgan"},"29143":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"new-madrid"},"29145":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 159","rep":"Dirk Deaton","w":0.608}],"ss":[{"d":"MO Senate District 32","rep":"Jill Carter","w":1.0}]},"munis":[],"slug":"newton"},"29147":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 1","rep":"Jeff Farnan","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"nodaway"},"29149":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 153","rep":"Keith Elliott","w":1.0}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"oregon"},"29151":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":1.0}],"sh":[{"d":"MO House District 61","rep":"Bruce Sassmann","w":1.0}],"ss":[{"d":"MO Senate District 26","rep":"Ben Brown","w":1.0}]},"munis":[],"slug":"osage"},"29153":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 155","rep":"Matthew Overcast","w":1.0}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[],"slug":"ozark"},"29155":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 150","rep":"Cameron Parker","w":0.64}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"pemiscot"},"29157":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 145","rep":"Bryant Wolfin","w":1.0}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[],"slug":"perry"},"29159":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 52","rep":"Brad Pollitt","w":0.701},{"d":"MO House District 57","rep":"Rodger Reedy","w":0.299}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[{"m":"Sedalia","p":[{"n":"Andrew Dawson","r":"Mayor, Sedalia, MO"}]}],"slug":"pettis"},"29161":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":0.999}],"sh":[{"d":"MO House District 122","rep":"Tara Peters","w":0.506},{"d":"MO House District 143","rep":"Bennie Cook","w":0.493}],"ss":[{"d":"MO Senate District 16","rep":"Justin Brown","w":1.0}]},"munis":[],"slug":"phelps"},"29163":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 40","rep":"Chad Perkins","w":1.0}],"ss":[{"d":"MO Senate District 10","rep":"Travis Fitzwater","w":1.0}]},"munis":[],"slug":"pike"},"29165":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 13","rep":"Sean Pouche","w":0.848},{"d":"MO House District 12","rep":"Mike Jones","w":0.085},{"d":"MO House District 14","rep":"Ashley Aune","w":0.066}],"ss":[{"d":"MO Senate District 34","rep":"Tony Luetkemeyer","w":1.0}]},"munis":[],"slug":"platte"},"29167":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 128","rep":"Chris Warwick","w":1.0}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"polk"},"29169":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.999}],"sh":[{"d":"MO House District 124","rep":"Don Mayhew","w":0.579},{"d":"MO House District 121","rep":"Bill Hardwick","w":0.421}],"ss":[{"d":"MO Senate District 16","rep":"Justin Brown","w":1.0}]},"munis":[],"slug":"pulaski"},"29171":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 3","rep":"Danny Busick","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"putnam"},"29173":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 5","rep":"Louis Riggs","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"ralls"},"29175":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 6","rep":"Ed Lewis","w":0.652},{"d":"MO House District 48","rep":"Tim Taylor","w":0.348}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"randolph"},"29177":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":0.998}],"sh":[{"d":"MO House District 53","rep":"Terry Thompson","w":0.552},{"d":"MO House District 7","rep":"Peggy McGaugh","w":0.448}],"ss":[{"d":"MO Senate District 21","rep":"Kurtis Gregory","w":1.0}]},"munis":[],"slug":"ray"},"29179":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 144","rep":"Tony Harbison","w":1.0}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[],"slug":"reynolds"},"29181":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 153","rep":"Keith Elliott","w":1.0}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"ripley"},"29183":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.615},{"d":"MO-02","rep":"Ann Wagner","w":0.381}],"sh":[{"d":"MO House District 102","rep":"Richard West","w":0.339},{"d":"MO House District 65","rep":"Wendy Hausman","w":0.295},{"d":"MO House District 64","rep":"Deanna Self","w":0.16},{"d":"MO House District 69","rep":"Scott Miller","w":0.043},{"d":"MO House District 63","rep":"Tricia Byrnes","w":0.033},{"d":"MO House District 108","rep":"Mike Costlow","w":0.028},{"d":"MO House District 106","rep":"Travis Wilson","w":0.026},{"d":"MO House District 107","rep":"Mark Matthiesen","w":0.02},{"d":"MO House District 103","rep":"Dave Hinman","w":0.02},{"d":"MO House District 105","rep":"Colin Wellenkamp","w":0.018},{"d":"MO House District 104","rep":"Terri Violet","w":0.017}],"ss":[{"d":"MO Senate District 2","rep":"Nick Schroer","w":0.508},{"d":"MO Senate District 23","rep":"Adam Schnelting","w":0.404},{"d":"MO Senate District 10","rep":"Travis Fitzwater","w":0.086}]},"munis":[{"m":"O Fallon","p":[{"n":"Bill Hennessy","r":"Mayor, O'Fallon, MO"}]},{"m":"St Charles","p":[{"n":"Dan Borgmeyer","r":"Mayor, St. Charles, MO"}]},{"m":"St Peters","p":[{"n":"Len Pagano","r":"Mayor, St. Peters, MO"}]}],"slug":"st-charles"},"29185":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 126","rep":"Jim Kalberloh","w":1.0}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"st-clair"},"29186":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":0.999}],"sh":[{"d":"MO House District 145","rep":"Bryant Wolfin","w":1.0}],"ss":[{"d":"MO Senate District 3","rep":"Mike Henderson","w":1.0}]},"munis":[],"slug":"ste-genevieve"},"29187":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 117","rep":"Becky Laubinger","w":0.523},{"d":"MO House District 116","rep":"Dale Wright","w":0.477}],"ss":[{"d":"MO Senate District 3","rep":"Mike Henderson","w":1.0}]},"munis":[],"slug":"st-francois"},"29189":{"county":[],"districts":{"cd":[{"d":"MO-02","rep":"Ann Wagner","w":0.629},{"d":"MO-01","rep":"Wesley Bell","w":0.365}],"sh":[{"d":"MO House District 88","rep":"Holly Jones","w":0.091},{"d":"MO House District 70","rep":"Stephanie Boykin","w":0.066},{"d":"MO House District 87","rep":"Connie Steinmetz","w":0.058},{"d":"MO House District 67","rep":"Tonya Rush","w":0.052},{"d":"MO House District 66","rep":"Marlene Terry","w":0.051},{"d":"MO House District 101","rep":"Ben Keathley","w":0.05},{"d":"MO House District 89","rep":"George Hruza","w":0.049},{"d":"MO House District 96","rep":"Brad Christ","w":0.045},{"d":"MO House District 73","rep":"Raychel Proudie","w":0.031},{"d":"MO House District 71","rep":"LaDonna Appelbaum","w":0.029},{"d":"MO House District 99","rep":"Ian Mackey","w":0.028},{"d":"MO House District 94","rep":"Jim Murphy","w":0.025},{"d":"MO House District 98","rep":"Jaclyn Zimmermann","w":0.025},{"d":"MO House District 74","rep":"Marla Smith","w":0.023},{"d":"MO House District 90","rep":"Mark Boyko","w":0.023},{"d":"MO House District 100","rep":"Philip Oehlerking","w":0.021},{"d":"MO House District 75","rep":"Chanel Mosley","w":0.021},{"d":"MO House District 92","rep":"Michael Burton","w":0.019},{"d":"MO House District 72","rep":"Doug Clemens","w":0.019},{"d":"MO House District 91","rep":"Jo Doll","w":0.018},{"d":"MO House District 93","rep":"Bridget Moore","w":0.018},{"d":"MO House District 85","rep":"Yolonda Fountain-Henderson","w":0.018},{"d":"MO House District 68","rep":"Kem Smith","w":0.017},{"d":"MO House District 83","rep":"Ray Reed","w":0.017},{"d":"MO House District 86","rep":"Jeff Hales","w":0.012}],"ss":[{"d":"MO Senate District 15","rep":"David Gregory","w":0.307},{"d":"MO Senate District 24","rep":"Tracy McCreery","w":0.201},{"d":"MO Senate District 13","rep":"Angela Mosley","w":0.159},{"d":"MO Senate District 14","rep":"Brian Williams","w":0.153},{"d":"MO Senate District 1","rep":"Doug Beck","w":0.114},{"d":"MO Senate District 26","rep":"Ben Brown","w":0.038},{"d":"MO Senate District 4","rep":"Karla May","w":0.025}]},"munis":[{"m":"Creve Coeur","p":[{"n":"Robert Hoffman","r":"Mayor, Creve Coeur, MO"}]},{"m":"Shrewsbury","p":[{"n":"Mike Travaglini","r":"Mayor, Shrewsbury, MO"}]},{"m":"Velda City","p":[{"n":"Melda B. Collins","r":"Mayor, Velda City, MO"}]},{"m":"Vinita Park","p":[{"n":"James W. McGee","r":"Mayor, Vinita Park, MO"}]},{"m":"Warson Woods","p":[{"n":"Laurance M. Howe","r":"Mayor, Warson Woods, MO"}]}],"slug":"st-louis"},"29195":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.997}],"sh":[{"d":"MO House District 51","rep":"Mark Nolte","w":1.0}],"ss":[{"d":"MO Senate District 21","rep":"Kurtis Gregory","w":1.0}]},"munis":[],"slug":"saline"},"29197":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 4","rep":"Greg Sharpe","w":0.999}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"schuyler"},"29199":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 4","rep":"Greg Sharpe","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"scotland"},"29201":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 148","rep":"David Dolan","w":1.0}],"ss":[{"d":"MO Senate District 27","rep":"Jamie Burger","w":1.0}]},"munis":[],"slug":"scott"},"29203":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 144","rep":"Tony Harbison","w":0.758},{"d":"MO House District 153","rep":"Keith Elliott","w":0.242}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[],"slug":"shannon"},"29205":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 4","rep":"Greg Sharpe","w":1.0}],"ss":[{"d":"MO Senate District 18","rep":"Cindy O'Laughlin","w":1.0}]},"munis":[],"slug":"shelby"},"29207":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 151","rep":"Steve Jordan","w":1.0}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"stoddard"},"29209":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 138","rep":"Burt Whaley","w":0.837},{"d":"MO House District 155","rep":"Matthew Overcast","w":0.163}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[],"slug":"stone"},"29211":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 3","rep":"Danny Busick","w":1.0}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"sullivan"},"29213":{"county":[],"districts":{"cd":[{"d":"MO-07","rep":"Eric Burlison","w":1.0}],"sh":[{"d":"MO House District 155","rep":"Matthew Overcast","w":0.785},{"d":"MO House District 156","rep":"Brian Seitz","w":0.215}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[{"m":"Branson","p":[{"n":"Larry Milton","r":"Mayor, Branson, MO"}]}],"slug":"taney"},"29215":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 143","rep":"Bennie Cook","w":1.0}],"ss":[{"d":"MO Senate District 33","rep":"Brad Hudson","w":1.0}]},"munis":[],"slug":"texas"},"29217":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":1.0}],"sh":[{"d":"MO House District 125","rep":"Dane Diehl","w":1.0}],"ss":[{"d":"MO Senate District 28","rep":"Sandy Crawford","w":1.0}]},"munis":[],"slug":"vernon"},"29219":{"county":[],"districts":{"cd":[{"d":"MO-02","rep":"Ann Wagner","w":0.763},{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":0.236}],"sh":[{"d":"MO House District 42","rep":"Jeff Myers","w":1.0}],"ss":[{"d":"MO Senate District 26","rep":"Ben Brown","w":1.0}]},"munis":[{"m":"Warrenton","p":[{"n":"Eric Schleuter","r":"Mayor, Warrenton, MO"}]}],"slug":"warren"},"29221":{"county":[],"districts":{"cd":[{"d":"MO-03","rep":"Robert F. Onder, Jr.","w":1.0}],"sh":[{"d":"MO House District 144","rep":"Tony Harbison","w":0.753},{"d":"MO House District 118","rep":"Mike McGirl","w":0.247}],"ss":[{"d":"MO Senate District 3","rep":"Mike Henderson","w":1.0}]},"munis":[],"slug":"washington"},"29223":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 153","rep":"Keith Elliott","w":0.837},{"d":"MO House District 144","rep":"Tony Harbison","w":0.163}],"ss":[{"d":"MO Senate District 25","rep":"Jason Bean","w":1.0}]},"munis":[],"slug":"wayne"},"29225":{"county":[],"districts":{"cd":[{"d":"MO-04","rep":"Mark Alford","w":0.581},{"d":"MO-07","rep":"Eric Burlison","w":0.419}],"sh":[{"d":"MO House District 129","rep":"John Black","w":0.983},{"d":"MO House District 141","rep":"Melissa Schmidt","w":0.017}],"ss":[{"d":"MO Senate District 20","rep":"Curtis Trent","w":1.0}]},"munis":[],"slug":"webster"},"29227":{"county":[],"districts":{"cd":[{"d":"MO-06","rep":"Sam Graves","w":1.0}],"sh":[{"d":"MO House District 2","rep":"Mazzie Christensen","w":0.999}],"ss":[{"d":"MO Senate District 12","rep":"Rusty Black","w":1.0}]},"munis":[],"slug":"worth"},"29229":{"county":[],"districts":{"cd":[{"d":"MO-08","rep":"Jason Smith","w":1.0}],"sh":[{"d":"MO House District 141","rep":"Melissa Schmidt","w":1.0}],"ss":[{"d":"MO Senate District 16","rep":"Justin Brown","w":1.0}]},"munis":[],"slug":"wright"},"29510":{"county":[],"districts":{"cd":[{"d":"MO-01","rep":"Wesley Bell","w":0.998}],"sh":[{"d":"MO House District 76","rep":"Marlon Anderson","w":0.291},{"d":"MO House District 84","rep":"Del Taylor","w":0.14},{"d":"MO House District 79","rep":"LaKeySha Bosley","w":0.109},{"d":"MO House District 82","rep":"Nick Kimble","w":0.108},{"d":"MO House District 81","rep":"Steve Butz","w":0.104},{"d":"MO House District 77","rep":"Kimberly-Ann Collins","w":0.099},{"d":"MO House District 78","rep":"Marty Murray","w":0.076},{"d":"MO House District 80","rep":"Lilly Fuchs","w":0.072}],"ss":[{"d":"MO Senate District 5","rep":"Steve Roberts","w":0.681},{"d":"MO Senate District 4","rep":"Karla May","w":0.318}]},"munis":[],"slug":"st-louis-city"},"30001":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":0.999}],"sh":[{"d":"MT House District 70","rep":"Shannon Maness","w":1.0}],"ss":[{"d":"MT Senate District 35","rep":"Tony Tezak","w":1.0}]},"munis":[],"slug":"beaverhead"},"30003":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 42","rep":"Chip Fitzpatrick","w":0.443},{"d":"MT House District 41","rep":"Jade Sooktis","w":0.386},{"d":"MT House District 35","rep":"Gary Parry","w":0.171}],"ss":[{"d":"MT Senate District 21","rep":"Gayle Lammers","w":0.829},{"d":"MT Senate District 18","rep":"Ken Bogner","w":0.171}]},"munis":[],"slug":"big-horn"},"30005":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 32","rep":"Mike Fox","w":0.551},{"d":"MT House District 28","rep":"Eric Albus","w":0.418},{"d":"MT House District 31","rep":"Frank Smith","w":0.031}],"ss":[{"d":"MT Senate District 16","rep":"Jonathan Windy Boy","w":0.582},{"d":"MT Senate District 14","rep":"Russel Tempel","w":0.418}]},"munis":[],"slug":"blaine"},"30007":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.998}],"sh":[{"d":"MT House District 77","rep":"Jane Gillette","w":1.0}],"ss":[{"d":"MT Senate District 39","rep":"Wylie Galt","w":1.0}]},"munis":[{"m":"Townsend","p":[{"n":"Mike Evans","r":"Mayor, Townsend, MT"}]}],"slug":"broadwater"},"30009":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 55","rep":"Brad Barker","w":1.0}],"ss":[{"d":"MT Senate District 28","rep":"Forrest Mandeville","w":1.0}]},"munis":[],"slug":"carbon"},"30011":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"carter"},"30013":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 25","rep":"Steve Gist","w":0.525},{"d":"MT House District 78","rep":"Randyn Gregg","w":0.244},{"d":"MT House District 26","rep":"Russ Miner","w":0.217},{"d":"MT House District 22","rep":"George Nikolakakos","w":0.005}],"ss":[{"d":"MT Senate District 13","rep":"Josh Kassmier","w":0.742},{"d":"MT Senate District 39","rep":"Wylie Galt","w":0.244},{"d":"MT Senate District 11","rep":"Daniel Emrich","w":0.008}]},"munis":[{"m":"Great Falls","p":[{"n":"Bob Kelly","r":"Mayor, Great Falls, MT"}]}],"slug":"cascade"},"30015":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 26","rep":"Russ Miner","w":0.983},{"d":"MT House District 32","rep":"Mike Fox","w":0.017}],"ss":[{"d":"MT Senate District 13","rep":"Josh Kassmier","w":0.983},{"d":"MT Senate District 16","rep":"Jonathan Windy Boy","w":0.017}]},"munis":[],"slug":"chouteau"},"30017":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":0.778},{"d":"MT House District 36","rep":"Greg Kmetz","w":0.222}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":0.778},{"d":"MT Senate District 18","rep":"Ken Bogner","w":0.222}]},"munis":[],"slug":"custer"},"30019":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 29","rep":"Valerie Moore","w":1.0}],"ss":[{"d":"MT Senate District 15","rep":"Gregg Hunter","w":1.0}]},"munis":[],"slug":"daniels"},"30021":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 33","rep":"Brandon Ler","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"dawson"},"30023":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 71","rep":"Scott DeMarois","w":0.949},{"d":"MT House District 76","rep":"John Fitzpatrick","w":0.051}],"ss":[{"d":"MT Senate District 36","rep":"Sara Novak","w":0.949},{"d":"MT Senate District 38","rep":"Becky Beard","w":0.051}]},"munis":[],"slug":"deer-lodge"},"30025":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"fallon"},"30027":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 37","rep":"Shane Klakken","w":0.808},{"d":"MT House District 78","rep":"Randyn Gregg","w":0.192}],"ss":[{"d":"MT Senate District 19","rep":"Barry Usher","w":0.808},{"d":"MT Senate District 39","rep":"Wylie Galt","w":0.192}]},"munis":[],"slug":"fergus"},"30029":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 3","rep":"Debo Powers","w":0.427},{"d":"MT House District 15","rep":"Thedis Crowe","w":0.242},{"d":"MT House District 2","rep":"Tom Millett","w":0.102},{"d":"MT House District 11","rep":"Ed Byrne","w":0.067},{"d":"MT House District 9","rep":"Steve Kelly","w":0.049},{"d":"MT House District 6","rep":"Amy Regier","w":0.049},{"d":"MT House District 5","rep":"Braxton Mitchell","w":0.037},{"d":"MT House District 10","rep":"Terry Falk","w":0.011},{"d":"MT House District 12","rep":"Tracy Sharp","w":0.01}],"ss":[{"d":"MT Senate District 2","rep":"Dave Fern","w":0.43},{"d":"MT Senate District 8","rep":"Susan Webber","w":0.242},{"d":"MT Senate District 1","rep":"Mike Cuffe","w":0.102},{"d":"MT Senate District 3","rep":"Carl Glimm","w":0.086},{"d":"MT Senate District 6","rep":"Mark Noland","w":0.077},{"d":"MT Senate District 5","rep":"Matt Regier","w":0.06}]},"munis":[],"slug":"flathead"},"30031":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":0.998}],"sh":[{"d":"MT House District 60","rep":"Alanah Griffith","w":0.447},{"d":"MT House District 66","rep":"Eric Matthews","w":0.155},{"d":"MT House District 57","rep":"Scott Rosenzweig","w":0.133},{"d":"MT House District 68","rep":"Caleb Hinkle","w":0.078},{"d":"MT House District 77","rep":"Jane Gillette","w":0.078},{"d":"MT House District 69","rep":"Ken Walsh","w":0.042},{"d":"MT House District 59","rep":"Katie Fire Thunder","w":0.04},{"d":"MT House District 65","rep":"Brian Close","w":0.009}],"ss":[{"d":"MT Senate District 30","rep":"Cora Neumann","w":0.487},{"d":"MT Senate District 33","rep":"Chris Pope","w":0.164},{"d":"MT Senate District 29","rep":"John Esp","w":0.133},{"d":"MT Senate District 34","rep":"Shelley Vance","w":0.083},{"d":"MT Senate District 39","rep":"Wylie Galt","w":0.078},{"d":"MT Senate District 35","rep":"Tony Tezak","w":0.042},{"d":"MT Senate District 32","rep":"Denise Hayman","w":0.008},{"d":"MT Senate District 31","rep":"Pat Flowers","w":0.005}]},"munis":[{"m":"Belgrade","p":[{"n":"Russell C. Nelson","r":"Mayor, Belgrade, MT"}]},{"m":"Bozeman","p":[{"n":"Terry Cunningham","r":"Mayor, Bozeman, MT"}]}],"slug":"gallatin"},"30033":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 35","rep":"Gary Parry","w":1.0}],"ss":[{"d":"MT Senate District 18","rep":"Ken Bogner","w":1.0}]},"munis":[],"slug":"garfield"},"30035":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 16","rep":"Tyson Running Wolf","w":0.879},{"d":"MT House District 15","rep":"Thedis Crowe","w":0.121}],"ss":[{"d":"MT Senate District 8","rep":"Susan Webber","w":1.0}]},"munis":[{"m":"Cut Bank","p":[{"n":"Kim Winchell","r":"Mayor, Cut Bank, MT"}]}],"slug":"glacier"},"30037":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 38","rep":"Greg Oblander","w":1.0}],"ss":[{"d":"MT Senate District 19","rep":"Barry Usher","w":1.0}]},"munis":[],"slug":"golden-valley"},"30039":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 76","rep":"John Fitzpatrick","w":1.0}],"ss":[{"d":"MT Senate District 38","rep":"Becky Beard","w":1.0}]},"munis":[],"slug":"granite"},"30041":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 28","rep":"Eric Albus","w":0.836},{"d":"MT House District 32","rep":"Mike Fox","w":0.157},{"d":"MT House District 27","rep":"Paul Tuss","w":0.007}],"ss":[{"d":"MT Senate District 14","rep":"Russel Tempel","w":0.843},{"d":"MT Senate District 16","rep":"Jonathan Windy Boy","w":0.157}]},"munis":[],"slug":"hill"},"30043":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.998}],"sh":[{"d":"MT House District 75","rep":"Mark Reinschmidt","w":0.934},{"d":"MT House District 69","rep":"Ken Walsh","w":0.062}],"ss":[{"d":"MT Senate District 38","rep":"Becky Beard","w":0.934},{"d":"MT Senate District 35","rep":"Tony Tezak","w":0.062}]},"munis":[],"slug":"jefferson"},"30045":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 78","rep":"Randyn Gregg","w":1.0}],"ss":[{"d":"MT Senate District 39","rep":"Wylie Galt","w":1.0}]},"munis":[],"slug":"judith-basin"},"30047":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 15","rep":"Thedis Crowe","w":0.309},{"d":"MT House District 12","rep":"Tracy Sharp","w":0.286},{"d":"MT House District 13","rep":"Linda Reksten","w":0.207},{"d":"MT House District 91","rep":"Shelly Fyant","w":0.198}],"ss":[{"d":"MT Senate District 8","rep":"Susan Webber","w":0.309},{"d":"MT Senate District 6","rep":"Mark Noland","w":0.286},{"d":"MT Senate District 7","rep":"Greg Hertz","w":0.207},{"d":"MT Senate District 46","rep":"Jacinda Morigeau","w":0.198}]},"munis":[{"m":"Polson","p":[{"n":"Eric Huffine","r":"Mayor, Polson, MT"}]}],"slug":"lake"},"30049":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.998}],"sh":[{"d":"MT House District 17","rep":"Zack Wirth","w":0.79},{"d":"MT House District 84","rep":"Julie Darling","w":0.102},{"d":"MT House District 79","rep":"Luke Muszkiewicz","w":0.046},{"d":"MT House District 76","rep":"John Fitzpatrick","w":0.044},{"d":"MT House District 81","rep":"Mary Caferro","w":0.008}],"ss":[{"d":"MT Senate District 9","rep":"Butch Gillespie","w":0.79},{"d":"MT Senate District 42","rep":"Mary Ann Dunwell","w":0.106},{"d":"MT Senate District 40","rep":"Laura Smith","w":0.048},{"d":"MT Senate District 38","rep":"Becky Beard","w":0.044},{"d":"MT Senate District 41","rep":"Janet Ellis","w":0.012}]},"munis":[{"m":"Helena","p":[{"n":"Wilmot Collins","r":"Mayor, Helena, MT"}]}],"slug":"lewis-and-clark"},"30051":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 28","rep":"Eric Albus","w":1.0}],"ss":[{"d":"MT Senate District 14","rep":"Russel Tempel","w":1.0}]},"munis":[],"slug":"liberty"},"30053":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 1","rep":"Neil Duram","w":0.716},{"d":"MT House District 2","rep":"Tom Millett","w":0.284}],"ss":[{"d":"MT Senate District 1","rep":"Mike Cuffe","w":1.0}]},"munis":[],"slug":"lincoln"},"30055":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"mccone"},"30057":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 69","rep":"Ken Walsh","w":0.991},{"d":"MT House District 60","rep":"Alanah Griffith","w":0.009}],"ss":[{"d":"MT Senate District 35","rep":"Tony Tezak","w":0.991},{"d":"MT Senate District 30","rep":"Cora Neumann","w":0.009}]},"munis":[],"slug":"madison"},"30059":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 78","rep":"Randyn Gregg","w":1.0}],"ss":[{"d":"MT Senate District 39","rep":"Wylie Galt","w":1.0}]},"munis":[],"slug":"meagher"},"30061":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":0.998}],"sh":[{"d":"MT House District 90","rep":"Curt Cochran","w":0.999}],"ss":[{"d":"MT Senate District 45","rep":"Denley Loge","w":0.999}]},"munis":[],"slug":"mineral"},"30063":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 92","rep":"Connie Keogh","w":0.423},{"d":"MT House District 90","rep":"Curt Cochran","w":0.268},{"d":"MT House District 93","rep":"Katie Sullivan","w":0.115},{"d":"MT House District 91","rep":"Shelly Fyant","w":0.099},{"d":"MT House District 99","rep":"Tom France","w":0.037},{"d":"MT House District 96","rep":"Bob Carter","w":0.022},{"d":"MT House District 76","rep":"John Fitzpatrick","w":0.013},{"d":"MT House District 89","rep":"Mark Thane","w":0.01}],"ss":[{"d":"MT Senate District 46","rep":"Jacinda Morigeau","w":0.523},{"d":"MT Senate District 45","rep":"Denley Loge","w":0.278},{"d":"MT Senate District 47","rep":"Ellie Boldman","w":0.118},{"d":"MT Senate District 50","rep":"Shane Morigeau","w":0.038},{"d":"MT Senate District 48","rep":"Andrea Olsen","w":0.023},{"d":"MT Senate District 38","rep":"Becky Beard","w":0.013},{"d":"MT Senate District 49","rep":"Willis Curdy","w":0.009}]},"munis":[{"m":"Missoula","p":[{"n":"Jordan Hess","r":"Mayor, Missoula, MT"}]}],"slug":"missoula"},"30065":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 38","rep":"Greg Oblander","w":1.0}],"ss":[{"d":"MT Senate District 19","rep":"Barry Usher","w":1.0}]},"munis":[],"slug":"musselshell"},"30067":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.999}],"sh":[{"d":"MT House District 57","rep":"Scott Rosenzweig","w":0.963},{"d":"MT House District 58","rep":"Jamie Isaly","w":0.037}],"ss":[{"d":"MT Senate District 29","rep":"John Esp","w":1.0}]},"munis":[],"slug":"park"},"30069":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 37","rep":"Shane Klakken","w":1.0}],"ss":[{"d":"MT Senate District 19","rep":"Barry Usher","w":1.0}]},"munis":[],"slug":"petroleum"},"30071":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 28","rep":"Eric Albus","w":0.387},{"d":"MT House District 31","rep":"Frank Smith","w":0.32},{"d":"MT House District 32","rep":"Mike Fox","w":0.293}],"ss":[{"d":"MT Senate District 16","rep":"Jonathan Windy Boy","w":0.613},{"d":"MT Senate District 14","rep":"Russel Tempel","w":0.387}]},"munis":[],"slug":"phillips"},"30073":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.517},{"d":"MT-01","rep":"Ryan K. Zinke","w":0.483}],"sh":[{"d":"MT House District 18","rep":"Llew Jones","w":0.827},{"d":"MT House District 15","rep":"Thedis Crowe","w":0.173}],"ss":[{"d":"MT Senate District 9","rep":"Butch Gillespie","w":0.827},{"d":"MT Senate District 8","rep":"Susan Webber","w":0.173}]},"munis":[],"slug":"pondera"},"30075":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"powder-river"},"30077":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":0.999}],"sh":[{"d":"MT House District 76","rep":"John Fitzpatrick","w":1.0}],"ss":[{"d":"MT Senate District 38","rep":"Becky Beard","w":1.0}]},"munis":[],"slug":"powell"},"30079":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"prairie"},"30081":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":0.998}],"sh":[{"d":"MT House District 85","rep":"Kathy Love","w":0.747},{"d":"MT House District 87","rep":"Terry Nelson","w":0.165},{"d":"MT House District 88","rep":"Greg Overstreet","w":0.074},{"d":"MT House District 86","rep":"Dave Bedey","w":0.014}],"ss":[{"d":"MT Senate District 43","rep":"Jason Ellsworth","w":0.76},{"d":"MT Senate District 44","rep":"Theresa Manzella","w":0.239}]},"munis":[],"slug":"ravalli"},"30083":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 30","rep":"Morgan Thiel","w":0.688},{"d":"MT House District 33","rep":"Brandon Ler","w":0.311}],"ss":[{"d":"MT Senate District 15","rep":"Gregg Hunter","w":0.688},{"d":"MT Senate District 17","rep":"Bob Phalen","w":0.312}]},"munis":[],"slug":"richland"},"30085":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 29","rep":"Valerie Moore","w":0.658},{"d":"MT House District 31","rep":"Frank Smith","w":0.242},{"d":"MT House District 30","rep":"Morgan Thiel","w":0.1}],"ss":[{"d":"MT Senate District 15","rep":"Gregg Hunter","w":0.758},{"d":"MT Senate District 16","rep":"Jonathan Windy Boy","w":0.242}]},"munis":[{"m":"Wolf Point","p":[{"n":"Chris M. Dschaak","r":"Mayor, Wolf Point, MT"}]}],"slug":"roosevelt"},"30087":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 35","rep":"Gary Parry","w":0.82},{"d":"MT House District 41","rep":"Jade Sooktis","w":0.18}],"ss":[{"d":"MT Senate District 18","rep":"Ken Bogner","w":0.82},{"d":"MT Senate District 21","rep":"Gayle Lammers","w":0.18}]},"munis":[],"slug":"rosebud"},"30089":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":1.0}],"sh":[{"d":"MT House District 14","rep":"Paul Fielder","w":0.746},{"d":"MT House District 91","rep":"Shelly Fyant","w":0.189},{"d":"MT House District 90","rep":"Curt Cochran","w":0.065}],"ss":[{"d":"MT Senate District 7","rep":"Greg Hertz","w":0.746},{"d":"MT Senate District 46","rep":"Jacinda Morigeau","w":0.189},{"d":"MT Senate District 45","rep":"Denley Loge","w":0.065}]},"munis":[{"m":"Thompson Falls","p":[{"n":"Mark Sheets","r":"Mayor, Thompson Falls, MT"}]}],"slug":"sanders"},"30091":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.999}],"sh":[{"d":"MT House District 29","rep":"Valerie Moore","w":1.0}],"ss":[{"d":"MT Senate District 15","rep":"Gregg Hunter","w":1.0}]},"munis":[],"slug":"sheridan"},"30093":{"county":[],"districts":{"cd":[{"d":"MT-01","rep":"Ryan K. Zinke","w":0.998}],"sh":[{"d":"MT House District 70","rep":"Shannon Maness","w":0.577},{"d":"MT House District 74","rep":"Marc Lee","w":0.192},{"d":"MT House District 71","rep":"Scott DeMarois","w":0.184},{"d":"MT House District 72","rep":"Donavon Hawk","w":0.041}],"ss":[{"d":"MT Senate District 35","rep":"Tony Tezak","w":0.577},{"d":"MT Senate District 36","rep":"Sara Novak","w":0.225},{"d":"MT Senate District 37","rep":"Derek Harvey","w":0.197}]},"munis":[],"slug":"silver-bow"},"30095":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 56","rep":"Fiona Nave","w":1.0}],"ss":[{"d":"MT Senate District 28","rep":"Forrest Mandeville","w":1.0}]},"munis":[],"slug":"stillwater"},"30097":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 56","rep":"Fiona Nave","w":0.739},{"d":"MT House District 78","rep":"Randyn Gregg","w":0.261}],"ss":[{"d":"MT Senate District 28","rep":"Forrest Mandeville","w":0.739},{"d":"MT Senate District 39","rep":"Wylie Galt","w":0.261}]},"munis":[],"slug":"sweet-grass"},"30099":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":0.999}],"sh":[{"d":"MT House District 17","rep":"Zack Wirth","w":0.769},{"d":"MT House District 18","rep":"Llew Jones","w":0.231}],"ss":[{"d":"MT Senate District 9","rep":"Butch Gillespie","w":1.0}]},"munis":[],"slug":"teton"},"30101":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 18","rep":"Llew Jones","w":1.0}],"ss":[{"d":"MT Senate District 9","rep":"Butch Gillespie","w":1.0}]},"munis":[],"slug":"toole"},"30103":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 35","rep":"Gary Parry","w":1.0}],"ss":[{"d":"MT Senate District 18","rep":"Ken Bogner","w":1.0}]},"munis":[],"slug":"treasure"},"30105":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 28","rep":"Eric Albus","w":0.35},{"d":"MT House District 29","rep":"Valerie Moore","w":0.251},{"d":"MT House District 31","rep":"Frank Smith","w":0.218},{"d":"MT House District 32","rep":"Mike Fox","w":0.181}],"ss":[{"d":"MT Senate District 16","rep":"Jonathan Windy Boy","w":0.399},{"d":"MT Senate District 14","rep":"Russel Tempel","w":0.35},{"d":"MT Senate District 15","rep":"Gregg Hunter","w":0.251}]},"munis":[],"slug":"valley"},"30107":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 78","rep":"Randyn Gregg","w":1.0}],"ss":[{"d":"MT Senate District 39","rep":"Wylie Galt","w":1.0}]},"munis":[],"slug":"wheatland"},"30109":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 34","rep":"Jerry Schillinger","w":1.0}],"ss":[{"d":"MT Senate District 17","rep":"Bob Phalen","w":1.0}]},"munis":[],"slug":"wibaux"},"30111":{"county":[],"districts":{"cd":[{"d":"MT-02","rep":"Troy Downing","w":1.0}],"sh":[{"d":"MT House District 35","rep":"Gary Parry","w":0.408},{"d":"MT House District 38","rep":"Greg Oblander","w":0.263},{"d":"MT House District 42","rep":"Chip Fitzpatrick","w":0.145},{"d":"MT House District 54","rep":"Lee Deming","w":0.073},{"d":"MT House District 44","rep":"Katie Zolnikov","w":0.033},{"d":"MT House District 53","rep":"Nelly Nicol","w":0.027},{"d":"MT House District 40","rep":"Mike Vinton","w":0.026},{"d":"MT House District 52","rep":"Stacy Zinn","w":0.009}],"ss":[{"d":"MT Senate District 18","rep":"Ken Bogner","w":0.408},{"d":"MT Senate District 19","rep":"Barry Usher","w":0.263},{"d":"MT Senate District 21","rep":"Gayle Lammers","w":0.145},{"d":"MT Senate District 27","rep":"Vince Ricci","w":0.1},{"d":"MT Senate District 22","rep":"Daniel Zolnikov","w":0.034},{"d":"MT Senate District 20","rep":"Sue Vinton","w":0.029},{"d":"MT Senate District 26","rep":"Tom McGillvray","w":0.01},{"d":"MT Senate District 24","rep":"Mike Yakawich","w":0.006}]},"munis":[{"m":"Billings","p":[{"n":"Bill Cole","r":"Mayor, Billings, MT"}]}],"slug":"yellowstone"},"31001":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"adams"},"31003":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"antelope"},"31005":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"arthur"},"31007":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"banner"},"31009":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"blaine"},"31011":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"boone"},"31013":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"box-butte"},"31015":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"boyd"},"31017":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"brown"},"31019":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"buffalo"},"31021":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"burt"},"31023":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"butler"},"31025":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"cass"},"31027":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"cedar"},"31029":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"chase"},"31031":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"cherry"},"31033":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"cheyenne"},"31035":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"clay"},"31037":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"colfax"},"31039":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"cuming"},"31041":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Broken Bow","p":[{"n":"mayor","r":"Mayor, Broken Bow, NE"}]}],"slug":"custer"},"31043":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"dakota"},"31045":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"dawes"},"31047":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"dawson"},"31049":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"deuel"},"31051":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"dixon"},"31053":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":0.997}],"sh":[],"ss":[]},"munis":[],"slug":"dodge"},"31055":{"county":[],"districts":{"cd":[{"d":"NE-02","rep":"Don Bacon","w":0.997}],"sh":[],"ss":[]},"munis":[],"slug":"douglas"},"31057":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"dundy"},"31059":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"fillmore"},"31061":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"franklin"},"31063":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"frontier"},"31065":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"furnas"},"31067":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"gage"},"31069":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"garden"},"31071":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"garfield"},"31073":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"gosper"},"31075":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"grant"},"31077":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"greeley"},"31079":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"hall"},"31081":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"hamilton"},"31083":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"harlan"},"31085":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"hayes"},"31087":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"hitchcock"},"31089":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"holt"},"31091":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"hooker"},"31093":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"howard"},"31095":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"jefferson"},"31097":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"johnson"},"31099":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"kearney"},"31101":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"keith"},"31103":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"keya-paha"},"31105":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"kimball"},"31107":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"knox"},"31109":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Lincoln","p":[{"n":"Leirion Gaylor Baird","r":"Mayor, Lincoln, NE"}]}],"slug":"lancaster"},"31111":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"lincoln"},"31113":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"logan"},"31115":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"loup"},"31117":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"mcpherson"},"31119":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"madison"},"31121":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"merrick"},"31123":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"morrill"},"31125":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"nance"},"31127":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"nemaha"},"31129":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"nuckolls"},"31131":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"otoe"},"31133":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"pawnee"},"31135":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"perkins"},"31137":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"phelps"},"31139":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"pierce"},"31141":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"platte"},"31143":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":0.656},{"d":"NE-01","rep":"Mike Flood","w":0.344}],"sh":[],"ss":[]},"munis":[],"slug":"polk"},"31145":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"red-willow"},"31147":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"richardson"},"31149":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"rock"},"31151":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"saline"},"31153":{"county":[],"districts":{"cd":[{"d":"NE-02","rep":"Don Bacon","w":0.603},{"d":"NE-01","rep":"Mike Flood","w":0.396}],"sh":[],"ss":[]},"munis":[],"slug":"sarpy"},"31155":{"county":[],"districts":{"cd":[{"d":"NE-02","rep":"Don Bacon","w":0.998}],"sh":[],"ss":[]},"munis":[],"slug":"saunders"},"31157":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"scotts-bluff"},"31159":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Seward","p":[{"n":"Joshua Eickmeier","r":"Mayor, Seward, NE"}]}],"slug":"seward"},"31161":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"sheridan"},"31163":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"sherman"},"31165":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"sioux"},"31167":{"county":[],"districts":{"cd":[{"d":"NE-01","rep":"Mike Flood","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"stanton"},"31169":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"thayer"},"31171":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"thomas"},"31173":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"thurston"},"31175":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"valley"},"31177":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"washington"},"31179":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"wayne"},"31181":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"webster"},"31183":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"wheeler"},"31185":{"county":[],"districts":{"cd":[{"d":"NE-03","rep":"Adrian Smith","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Henderson","p":[{"n":"Don Regier","r":"Mayor, Henderson, NE"}]}],"slug":"york"},"32001":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":0.986},{"d":"NV-04","rep":"Steven Horsford","w":0.014}],"sh":[{"d":"NV House District 38","rep":"Gregory Koenig","w":1.0}],"ss":[{"d":"NV Senate District 17","rep":"Robin Titus","w":1.0}]},"munis":[],"slug":"churchill"},"32003":{"county":[],"districts":{"cd":[{"d":"NV-04","rep":"Steven Horsford","w":0.624},{"d":"NV-03","rep":"Susie Lee","w":0.249},{"d":"NV-01","rep":"Dina Titus","w":0.125}],"sh":[{"d":"NV House District 36","rep":"Greg Hafen","w":0.401},{"d":"NV House District 19","rep":"Jason Patchett","w":0.335},{"d":"NV House District 23","rep":"Danielle Gallant","w":0.204},{"d":"NV House District 12","rep":"Max Carter","w":0.008}],"ss":[{"d":"NV Senate District 20","rep":"Jeff Stone","w":0.538},{"d":"NV Senate District 19","rep":"John Ellison","w":0.401},{"d":"NV Senate District 21","rep":"James Ohrenschall","w":0.009},{"d":"NV Senate District 11","rep":"Lori Rogich","w":0.006},{"d":"NV Senate District 1","rep":"Shelly Crawford","w":0.005},{"d":"NV Senate District 10","rep":"Fabian Doñate","w":0.005}]},"munis":[{"m":"Henderson","p":[{"n":"Michelle Romero","r":"Mayor, Henderson, NV"}]},{"m":"Las Vegas","p":[{"n":"Carolyn Goodman","r":"Mayor, Las Vegas, NV"}]},{"m":"North Las Vegas","p":[{"n":"John Jay Lee","r":"Mayor, North Las Vegas, NV"}]}],"slug":"clark"},"32005":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 39","rep":"Blayne Osborn","w":1.0}],"ss":[{"d":"NV Senate District 17","rep":"Robin Titus","w":1.0}]},"munis":[],"slug":"douglas"},"32007":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 33","rep":"Bert Gurr","w":0.798},{"d":"NV House District 32","rep":"Alexis Hansen","w":0.202}],"ss":[{"d":"NV Senate District 19","rep":"John Ellison","w":0.798},{"d":"NV Senate District 14","rep":"Ira Hansen","w":0.202}]},"munis":[],"slug":"elko"},"32009":{"county":[],"districts":{"cd":[{"d":"NV-04","rep":"Steven Horsford","w":1.0}],"sh":[{"d":"NV House District 38","rep":"Gregory Koenig","w":1.0}],"ss":[{"d":"NV Senate District 17","rep":"Robin Titus","w":1.0}]},"munis":[],"slug":"esmeralda"},"32011":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 33","rep":"Bert Gurr","w":0.874},{"d":"NV House District 32","rep":"Alexis Hansen","w":0.126}],"ss":[{"d":"NV Senate District 19","rep":"John Ellison","w":0.874},{"d":"NV Senate District 14","rep":"Ira Hansen","w":0.126}]},"munis":[],"slug":"eureka"},"32013":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 32","rep":"Alexis Hansen","w":1.0}],"ss":[{"d":"NV Senate District 14","rep":"Ira Hansen","w":1.0}]},"munis":[],"slug":"humboldt"},"32015":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 32","rep":"Alexis Hansen","w":1.0}],"ss":[{"d":"NV Senate District 14","rep":"Ira Hansen","w":1.0}]},"munis":[],"slug":"lander"},"32017":{"county":[],"districts":{"cd":[{"d":"NV-04","rep":"Steven Horsford","w":0.995}],"sh":[{"d":"NV House District 33","rep":"Bert Gurr","w":1.0}],"ss":[{"d":"NV Senate District 19","rep":"John Ellison","w":1.0}]},"munis":[],"slug":"lincoln"},"32019":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":0.637},{"d":"NV-04","rep":"Steven Horsford","w":0.363}],"sh":[{"d":"NV House District 38","rep":"Gregory Koenig","w":0.834},{"d":"NV House District 39","rep":"Blayne Osborn","w":0.166}],"ss":[{"d":"NV Senate District 17","rep":"Robin Titus","w":1.0}]},"munis":[],"slug":"lyon"},"32021":{"county":[],"districts":{"cd":[{"d":"NV-04","rep":"Steven Horsford","w":1.0}],"sh":[{"d":"NV House District 38","rep":"Gregory Koenig","w":1.0}],"ss":[{"d":"NV Senate District 17","rep":"Robin Titus","w":1.0}]},"munis":[],"slug":"mineral"},"32023":{"county":[],"districts":{"cd":[{"d":"NV-04","rep":"Steven Horsford","w":1.0}],"sh":[{"d":"NV House District 33","rep":"Bert Gurr","w":0.731},{"d":"NV House District 38","rep":"Gregory Koenig","w":0.259},{"d":"NV House District 36","rep":"Greg Hafen","w":0.01}],"ss":[{"d":"NV Senate District 19","rep":"John Ellison","w":0.741},{"d":"NV Senate District 17","rep":"Robin Titus","w":0.259}]},"munis":[],"slug":"nye"},"32027":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 32","rep":"Alexis Hansen","w":1.0}],"ss":[{"d":"NV Senate District 14","rep":"Ira Hansen","w":1.0}]},"munis":[],"slug":"pershing"},"32029":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 40","rep":"P.K. O'Neill","w":1.0}],"ss":[{"d":"NV Senate District 16","rep":"Lisa Krasner","w":1.0}]},"munis":[],"slug":"storey"},"32031":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 32","rep":"Alexis Hansen","w":0.917},{"d":"NV House District 26","rep":"Rich DeLong","w":0.039},{"d":"NV House District 31","rep":"Jill Dickman","w":0.014},{"d":"NV House District 40","rep":"P.K. O'Neill","w":0.013},{"d":"NV House District 27","rep":"Heather Goulding","w":0.007}],"ss":[{"d":"NV Senate District 14","rep":"Ira Hansen","w":0.931},{"d":"NV Senate District 16","rep":"Lisa Krasner","w":0.052},{"d":"NV Senate District 15","rep":"Angie Taylor","w":0.011},{"d":"NV Senate District 13","rep":"Skip Daly","w":0.005}]},"munis":[{"m":"Reno","p":[{"n":"Hillary Schieve","r":"Mayor, Reno, NV"}]},{"m":"Sparks","p":[{"n":"Ed Lawson","r":"Mayor, Sparks, NV"}]}],"slug":"washoe"},"32033":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 33","rep":"Bert Gurr","w":1.0}],"ss":[{"d":"NV Senate District 19","rep":"John Ellison","w":1.0}]},"munis":[],"slug":"white-pine"},"32510":{"county":[],"districts":{"cd":[{"d":"NV-02","rep":"Mark E. Amodei","w":1.0}],"sh":[{"d":"NV House District 40","rep":"P.K. O'Neill","w":1.0}],"ss":[{"d":"NV Senate District 16","rep":"Lisa Krasner","w":1.0}]},"munis":[],"slug":"carson-city"},"33001":{"county":[],"districts":{"cd":[{"d":"NH-01","rep":"Chris Pappas","w":0.883},{"d":"NH-02","rep":"Maggie Goodlander","w":0.117}],"sh":[],"ss":[{"d":"NH Senate District 2","rep":"Tim Lang","w":0.575},{"d":"NH Senate District 6","rep":"James Gray","w":0.304},{"d":"NH Senate District 17","rep":"Howard Pearl","w":0.095},{"d":"NH Senate District 7","rep":"Dan Innis","w":0.025}]},"munis":[{"m":"Laconia","p":[{"n":"Andrew Hosmer","r":"Mayor, Laconia, NH"}]}],"slug":"belknap"},"33003":{"county":[],"districts":{"cd":[{"d":"NH-01","rep":"Chris Pappas","w":0.76},{"d":"NH-02","rep":"Maggie Goodlander","w":0.24}],"sh":[],"ss":[{"d":"NH Senate District 3","rep":"Mark McConkey","w":0.905},{"d":"NH Senate District 2","rep":"Tim Lang","w":0.095}]},"munis":[],"slug":"carroll"},"33005":{"county":[],"districts":{"cd":[{"d":"NH-02","rep":"Maggie Goodlander","w":1.0}],"sh":[],"ss":[{"d":"NH Senate District 10","rep":"Donovan Fenton","w":0.526},{"d":"NH Senate District 9","rep":"Denise Ricciardi","w":0.287},{"d":"NH Senate District 8","rep":"Ruth Ward","w":0.132},{"d":"NH Senate District 12","rep":"Kevin Avard","w":0.054}]},"munis":[{"m":"Keene","p":[{"n":"Q109468854","r":"Mayor, Keene, NH"}]}],"slug":"cheshire"},"33007":{"county":[],"districts":{"cd":[{"d":"NH-02","rep":"Maggie Goodlander","w":0.999}],"sh":[],"ss":[{"d":"NH Senate District 1","rep":"David Rochefort","w":0.913},{"d":"NH Senate District 3","rep":"Mark McConkey","w":0.086}]},"munis":[{"m":"Berlin","p":[{"n":"Robert Cone","r":"Mayor, Berlin, NH"}]}],"slug":"coos"},"33009":{"county":[],"districts":{"cd":[{"d":"NH-02","rep":"Maggie Goodlander","w":0.999}],"sh":[],"ss":[{"d":"NH Senate District 1","rep":"David Rochefort","w":0.412},{"d":"NH Senate District 5","rep":"Sue Prentiss","w":0.256},{"d":"NH Senate District 3","rep":"Mark McConkey","w":0.148},{"d":"NH Senate District 7","rep":"Dan Innis","w":0.098},{"d":"NH Senate District 2","rep":"Tim Lang","w":0.086}]},"munis":[{"m":"Lebanon","p":[{"n":"Timothy J. McNamara","r":"Mayor, Lebanon, NH"}]}],"slug":"grafton"},"33011":{"county":[],"districts":{"cd":[{"d":"NH-02","rep":"Maggie Goodlander","w":0.844},{"d":"NH-01","rep":"Chris Pappas","w":0.156}],"sh":[],"ss":[{"d":"NH Senate District 9","rep":"Denise Ricciardi","w":0.211},{"d":"NH Senate District 8","rep":"Ruth Ward","w":0.2},{"d":"NH Senate District 12","rep":"Kevin Avard","w":0.148},{"d":"NH Senate District 11","rep":"Tim McGough","w":0.133},{"d":"NH Senate District 10","rep":"Donovan Fenton","w":0.078},{"d":"NH Senate District 7","rep":"Dan Innis","w":0.05},{"d":"NH Senate District 16","rep":"Keith Murphy","w":0.046},{"d":"NH Senate District 18","rep":"Victoria Sullivan","w":0.038},{"d":"NH Senate District 14","rep":"Sharon Carson","w":0.033},{"d":"NH Senate District 22","rep":"Daryl Abbas","w":0.03},{"d":"NH Senate District 13","rep":"Cindy Rosenwald","w":0.017},{"d":"NH Senate District 20","rep":"Pat Long","w":0.015}]},"munis":[{"m":"Manchester","p":[{"n":"Joyce Craig","r":"Mayor, Manchester, NH"}]},{"m":"Nashua","p":[{"n":"James W. Donchess","r":"Mayor, Nashua, NH"}]}],"slug":"hillsborough"},"33013":{"county":[],"districts":{"cd":[{"d":"NH-02","rep":"Maggie Goodlander","w":0.96},{"d":"NH-01","rep":"Chris Pappas","w":0.04}],"sh":[],"ss":[{"d":"NH Senate District 7","rep":"Dan Innis","w":0.499},{"d":"NH Senate District 17","rep":"Howard Pearl","w":0.255},{"d":"NH Senate District 15","rep":"Tara Reardon","w":0.147},{"d":"NH Senate District 16","rep":"Keith Murphy","w":0.039},{"d":"NH Senate District 8","rep":"Ruth Ward","w":0.033},{"d":"NH Senate District 5","rep":"Sue Prentiss","w":0.027}]},"munis":[{"m":"Concord","p":[{"n":"Byron O. Champlin","r":"Mayor, Concord, NH"}]},{"m":"Franklin","p":[{"n":"Desiree McLaughlin","r":"Mayor, Franklin, NH"}]}],"slug":"merrimack"},"33015":{"county":[],"districts":{"cd":[{"d":"NH-01","rep":"Chris Pappas","w":0.727},{"d":"NH-02","rep":"Maggie Goodlander","w":0.186}],"sh":[],"ss":[{"d":"NH Senate District 23","rep":"Bill Gannon","w":0.231},{"d":"NH Senate District 17","rep":"Howard Pearl","w":0.165},{"d":"NH Senate District 24","rep":"Debra Altschiller","w":0.129},{"d":"NH Senate District 19","rep":"Regina Birdsell","w":0.098},{"d":"NH Senate District 14","rep":"Sharon Carson","w":0.089},{"d":"NH Senate District 16","rep":"Keith Murphy","w":0.076},{"d":"NH Senate District 21","rep":"Rebecca Perkins Kwoka","w":0.066},{"d":"NH Senate District 22","rep":"Daryl Abbas","w":0.06}]},"munis":[{"m":"Portsmouth","p":[{"n":"Deaglan McEachern","r":"Mayor, Portsmouth, NH"}]}],"slug":"rockingham"},"33017":{"county":[],"districts":{"cd":[{"d":"NH-01","rep":"Chris Pappas","w":0.999}],"sh":[],"ss":[{"d":"NH Senate District 6","rep":"James Gray","w":0.464},{"d":"NH Senate District 4","rep":"David Watters","w":0.248},{"d":"NH Senate District 21","rep":"Rebecca Perkins Kwoka","w":0.149},{"d":"NH Senate District 3","rep":"Mark McConkey","w":0.138}]},"munis":[{"m":"Dover","p":[{"n":"Robert Carrier","r":"Mayor, Dover, NH"}]},{"m":"Rochester","p":[{"n":"Paul Callaghan","r":"Mayor, Rochester, NH"}]},{"m":"Somersworth","p":[{"n":"Matt Gerding","r":"Mayor, Somersworth, NH"}]}],"slug":"strafford"},"33019":{"county":[],"districts":{"cd":[{"d":"NH-02","rep":"Maggie Goodlander","w":1.0}],"sh":[],"ss":[{"d":"NH Senate District 8","rep":"Ruth Ward","w":0.654},{"d":"NH Senate District 5","rep":"Sue Prentiss","w":0.305},{"d":"NH Senate District 7","rep":"Dan Innis","w":0.041}]},"munis":[{"m":"Claremont","p":[{"n":"Dale Girard","r":"Mayor, Claremont, NH"}]}],"slug":"sullivan"},"34001":{"county":[],"districts":{"cd":[{"d":"NJ-02","rep":"Jefferson Van Drew","w":0.906}],"sh":[{"d":"NJ House District 2","rep":"Don Guardian, Maureen Rowan","w":0.544},{"d":"NJ House District 8","rep":"Andrea Katz, Anthony Angelozzi","w":0.176},{"d":"NJ House District 1","rep":"Antwan McClellan, Erik Simonsen","w":0.113},{"d":"NJ House District 4","rep":"Cody Miller, Dan Hutchison","w":0.073}],"ss":[{"d":"NJ Senate District 2","rep":"Vince Polistina","w":0.544},{"d":"NJ Senate District 8","rep":"Latham Tiver","w":0.176},{"d":"NJ Senate District 1","rep":"Mike Testa","w":0.113},{"d":"NJ Senate District 4","rep":"Paul Moriarty","w":0.073}]},"munis":[{"m":"Absecon","p":[{"n":"Kimberly Horton","r":"Mayor, Absecon, NJ"}]},{"m":"Atlantic City","p":[{"n":"Marty Small, Sr.","r":"Mayor, Atlantic City, NJ"}]},{"m":"Brigantine","p":[{"n":"Vince Sera","r":"Mayor, Brigantine, NJ"}]},{"m":"Corbin City","p":[{"n":"Wayne M. Smith","r":"Mayor, Corbin City, NJ"}]},{"m":"Egg Harbor City","p":[{"n":"Lisa Jiampetti","r":"Mayor, Egg Harbor City, NJ"}]},{"m":"Estell Manor","p":[{"n":"Elizabeth Owen","r":"Mayor, Estell Manor, NJ"}]},{"m":"Linwood","p":[{"n":"Darren Matik","r":"Mayor, Linwood, NJ"}]},{"m":"Margate City","p":[{"n":"Michael Collins","r":"Mayor, Margate City, NJ"}]},{"m":"Northfield","p":[{"n":"Erland Chau","r":"Mayor, Northfield, NJ"}]},{"m":"Pleasantville","p":[{"n":"Judy Ward","r":"Mayor, Pleasantville, NJ"}]},{"m":"Port Republic","p":[{"n":"Monica Giberson","r":"Mayor, Port Republic, NJ"}]},{"m":"Somers Point","p":[{"n":"Dennis Tapp","r":"Mayor, Somers Point, NJ"}]},{"m":"Ventnor City","p":[{"n":"Tim Kriebel","r":"Mayor, Ventnor City, NJ"}]}],"slug":"atlantic"},"34003":{"county":[],"districts":{"cd":[{"d":"NJ-05","rep":"Josh Gottheimer","w":0.735},{"d":"NJ-09","rep":"Nellie Pou","w":0.262}],"sh":[{"d":"NJ House District 39","rep":"Bob Auth, John Azzariti","w":0.473},{"d":"NJ House District 38","rep":"Chris Tully, Lisa Swain","w":0.172},{"d":"NJ House District 37","rep":"Ellen Park, Shama Haider","w":0.132},{"d":"NJ House District 36","rep":"Clinton Calabrese, Gary Schaer","w":0.113},{"d":"NJ House District 40","rep":"Al Barlas, Chris DePhillips","w":0.091},{"d":"NJ House District 35","rep":"Al Abdelaziz, Kenyatta Stewart","w":0.02}],"ss":[{"d":"NJ Senate District 39","rep":"Holly Schepisi","w":0.473},{"d":"NJ Senate District 38","rep":"Joe Lagana","w":0.172},{"d":"NJ Senate District 37","rep":"Gordon Johnson","w":0.132},{"d":"NJ Senate District 36","rep":"Paul Sarlo","w":0.113},{"d":"NJ Senate District 40","rep":"Kristin Corrado","w":0.091},{"d":"NJ Senate District 35","rep":"Benjie Wimberly","w":0.02}]},"munis":[{"m":"Englewood","p":[{"n":"Michael Wildes","r":"Mayor, Englewood, NJ"}]},{"m":"Garfield","p":[{"n":"Richard Rigoglioso","r":"Mayor, Garfield, NJ"}]}],"slug":"bergen"},"34005":{"county":[],"districts":{"cd":[{"d":"NJ-03","rep":"Herbert C. Conaway, Jr.","w":0.989},{"d":"NJ-01","rep":"Donald Norcross","w":0.008}],"sh":[{"d":"NJ House District 8","rep":"Andrea Katz, Anthony Angelozzi","w":0.838},{"d":"NJ House District 7","rep":"Balvir Singh, Carol Murphy","w":0.136},{"d":"NJ House District 12","rep":"Alex Sauickie, Rob Clifton","w":0.021}],"ss":[{"d":"NJ Senate District 8","rep":"Latham Tiver","w":0.838},{"d":"NJ Senate District 7","rep":"Troy Singleton","w":0.136},{"d":"NJ Senate District 12","rep":"Owen Henry","w":0.021}]},"munis":[{"m":"Burlington","p":[{"n":"Barry W. Conaway","r":"Mayor, Burlington City, NJ"}]}],"slug":"burlington"},"34007":{"county":[],"districts":{"cd":[{"d":"NJ-01","rep":"Donald Norcross","w":0.998}],"sh":[{"d":"NJ House District 4","rep":"Cody Miller, Dan Hutchison","w":0.524},{"d":"NJ House District 6","rep":"Lou Greenwald, Melinda Kane","w":0.302},{"d":"NJ House District 5","rep":"Bill Moen, Bill Spearman","w":0.172}],"ss":[{"d":"NJ Senate District 4","rep":"Paul Moriarty","w":0.524},{"d":"NJ Senate District 6","rep":"Jim Beach","w":0.302},{"d":"NJ Senate District 5","rep":"Nilsa Cruz-Perez","w":0.172}]},"munis":[{"m":"Camden","p":[{"n":"Victor G. Carstarphen","r":"Mayor, Camden, NJ"}]},{"m":"Gloucester City","p":[{"n":"Dayl Baile","r":"Mayor, Gloucester City, NJ"}]}],"slug":"camden"},"34009":{"county":[],"districts":{"cd":[{"d":"NJ-02","rep":"Jefferson Van Drew","w":0.459}],"sh":[{"d":"NJ House District 1","rep":"Antwan McClellan, Erik Simonsen","w":0.459}],"ss":[{"d":"NJ Senate District 1","rep":"Mike Testa","w":0.459}]},"munis":[{"m":"Cape May","p":[{"n":"Zack Mullock","r":"Mayor, Cape May, NJ"}]},{"m":"Ocean City","p":[{"n":"Jay A. Gillian","r":"Mayor, Ocean City, NJ"}]}],"slug":"cape-may"},"34011":{"county":[],"districts":{"cd":[{"d":"NJ-02","rep":"Jefferson Van Drew","w":0.744}],"sh":[{"d":"NJ House District 1","rep":"Antwan McClellan, Erik Simonsen","w":0.566},{"d":"NJ House District 3","rep":"Dave Bailey, Heather Simmons","w":0.174}],"ss":[{"d":"NJ Senate District 1","rep":"Mike Testa","w":0.566},{"d":"NJ Senate District 3","rep":"John Burzichelli","w":0.174}]},"munis":[{"m":"Bridgeton","p":[{"n":"Albert B. Kelly","r":"Mayor, Bridgeton, NJ"}]},{"m":"Millville","p":[{"n":"Benjamin Romanik","r":"Mayor, Millville, NJ"}]},{"m":"Vineland","p":[{"n":"Anthony R. Fanucci","r":"Mayor, Vineland, NJ"}]}],"slug":"cumberland"},"34013":{"county":[],"districts":{"cd":[{"d":"NJ-11","rep":"Analilia Mejia","w":0.587},{"d":"NJ-10","rep":"LaMonica McIver","w":0.365},{"d":"NJ-08","rep":"Robert Menendez","w":0.046}],"sh":[{"d":"NJ House District 27","rep":"Alixon Collazos-Gill, Rosy Bagolie","w":0.355},{"d":"NJ House District 40","rep":"Al Barlas, Chris DePhillips","w":0.218},{"d":"NJ House District 34","rep":"Carmen Morales, Mike Venezia","w":0.151},{"d":"NJ House District 29","rep":"Eliana Pintor Marin, Shanique Speight","w":0.15},{"d":"NJ House District 28","rep":"Chigozie Onyema, Cleopatra Tucker","w":0.116}],"ss":[{"d":"NJ Senate District 27","rep":"John McKeon","w":0.355},{"d":"NJ Senate District 40","rep":"Kristin Corrado","w":0.218},{"d":"NJ Senate District 34","rep":"Britnee Timberlake","w":0.151},{"d":"NJ Senate District 29","rep":"Teresa Ruiz","w":0.15},{"d":"NJ Senate District 28","rep":"Renee Burgess","w":0.116}]},"munis":[{"m":"East Orange","p":[{"n":"Ted R. Green","r":"Mayor, East Orange, NJ"}]},{"m":"Newark","p":[{"n":"Q7294641","r":"Mayor, Newark, NJ"}]}],"slug":"essex"},"34015":{"county":[],"districts":{"cd":[{"d":"NJ-02","rep":"Jefferson Van Drew","w":0.562},{"d":"NJ-01","rep":"Donald Norcross","w":0.437}],"sh":[{"d":"NJ House District 3","rep":"Dave Bailey, Heather Simmons","w":0.562},{"d":"NJ House District 4","rep":"Cody Miller, Dan Hutchison","w":0.376},{"d":"NJ House District 5","rep":"Bill Moen, Bill Spearman","w":0.062}],"ss":[{"d":"NJ Senate District 3","rep":"John Burzichelli","w":0.562},{"d":"NJ Senate District 4","rep":"Paul Moriarty","w":0.376},{"d":"NJ Senate District 5","rep":"Nilsa Cruz-Perez","w":0.062}]},"munis":[{"m":"Woodbury","p":[{"n":"Kyle Miller","r":"Mayor, Woodbury, NJ"}]}],"slug":"gloucester"},"34017":{"county":[],"districts":{"cd":[{"d":"NJ-08","rep":"Robert Menendez","w":0.677},{"d":"NJ-09","rep":"Nellie Pou","w":0.14},{"d":"NJ-10","rep":"LaMonica McIver","w":0.104},{"d":"NY-10","rep":"Daniel S. Goldman","w":0.014}],"sh":[{"d":"NJ House District 31","rep":"Jerry Walker, Will Sampson","w":0.41},{"d":"NJ House District 33","rep":"Gabe Rodriguez, Larry Wainstein","w":0.263},{"d":"NJ House District 32","rep":"Katie Brennan, Ravi Bhalla","w":0.143},{"d":"NJ House District 29","rep":"Eliana Pintor Marin, Shanique Speight","w":0.023}],"ss":[{"d":"NJ Senate District 31","rep":"Angela McKnight","w":0.41},{"d":"NJ Senate District 33","rep":"Brian Stack","w":0.263},{"d":"NJ Senate District 32","rep":"Raj Mukherji","w":0.143},{"d":"NJ Senate District 29","rep":"Teresa Ruiz","w":0.023}]},"munis":[{"m":"Bayonne","p":[{"n":"Jimmy Davis","r":"Mayor, Bayonne, NJ"}]},{"m":"Hoboken","p":[{"n":"Ravinder Bhalla","r":"Mayor, Hoboken, NJ"}]},{"m":"Jersey City","p":[{"n":"Steven Fulop","r":"Mayor, Jersey City, NJ"}]},{"m":"Union City","p":[{"n":"Brian P. Stack","r":"Mayor, Union City, NJ"}]}],"slug":"hudson"},"34019":{"county":[],"districts":{"cd":[{"d":"NJ-07","rep":"Thomas H. Kean, Jr.","w":0.999}],"sh":[{"d":"NJ House District 23","rep":"Erik Peterson, John DiMaio","w":0.426},{"d":"NJ House District 15","rep":"Anthony Verrelli, Verlina Reynolds-Jackson","w":0.288},{"d":"NJ House District 16","rep":"Mitchelle Drulis, Roy Freiman","w":0.286}],"ss":[{"d":"NJ Senate District 23","rep":"Doug Steinhardt","w":0.426},{"d":"NJ Senate District 15","rep":"Shirley Turner","w":0.288},{"d":"NJ Senate District 16","rep":"Andrew Zwicker","w":0.286}]},"munis":[],"slug":"hunterdon"},"34021":{"county":[],"districts":{"cd":[{"d":"NJ-12","rep":"Bonnie Watson Coleman","w":0.567},{"d":"NJ-03","rep":"Herbert C. Conaway, Jr.","w":0.433}],"sh":[{"d":"NJ House District 15","rep":"Anthony Verrelli, Verlina Reynolds-Jackson","w":0.58},{"d":"NJ House District 14","rep":"Tennille McCoy, Wayne DeAngelo","w":0.34},{"d":"NJ House District 16","rep":"Mitchelle Drulis, Roy Freiman","w":0.081}],"ss":[{"d":"NJ Senate District 15","rep":"Shirley Turner","w":0.58},{"d":"NJ Senate District 14","rep":"Linda Greenstein","w":0.34},{"d":"NJ Senate District 16","rep":"Andrew Zwicker","w":0.081}]},"munis":[{"m":"Trenton","p":[{"n":"Eric Jackson","r":"Mayor, Trenton, NJ"}]}],"slug":"mercer"},"34023":{"county":[],"districts":{"cd":[{"d":"NJ-12","rep":"Bonnie Watson Coleman","w":0.575},{"d":"NJ-06","rep":"Frank Pallone, Jr.","w":0.412}],"sh":[{"d":"NJ House District 18","rep":"Robert Karabinchak, Sterley Stanley","w":0.219},{"d":"NJ House District 14","rep":"Tennille McCoy, Wayne DeAngelo","w":0.212},{"d":"NJ House District 19","rep":"Craig Coughlin, Yvonne Lopez","w":0.166},{"d":"NJ House District 12","rep":"Alex Sauickie, Rob Clifton","w":0.13},{"d":"NJ House District 16","rep":"Mitchelle Drulis, Roy Freiman","w":0.127},{"d":"NJ House District 17","rep":"Joe Danielsen, Kevin Egan","w":0.115},{"d":"NJ House District 21","rep":"Andrew Macurdy, Vinnie Kearney","w":0.014}],"ss":[{"d":"NJ Senate District 18","rep":"Patrick Diegnan","w":0.219},{"d":"NJ Senate District 14","rep":"Linda Greenstein","w":0.212},{"d":"NJ Senate District 19","rep":"Joe Vitale","w":0.166},{"d":"NJ Senate District 12","rep":"Owen Henry","w":0.13},{"d":"NJ Senate District 16","rep":"Andrew Zwicker","w":0.127},{"d":"NJ Senate District 17","rep":"Bob Smith","w":0.115},{"d":"NJ Senate District 21","rep":"Jon Bramnick","w":0.014}]},"munis":[{"m":"New Brunswick","p":[{"n":"Jim Cahill","r":"Mayor, New Brunswick, NJ"}]},{"m":"Perth Amboy","p":[{"n":"Helmin J. Caba","r":"Mayor, Perth Amboy, NJ"}]},{"m":"South Amboy","p":[{"n":"Fred A. Henry","r":"Mayor, South Amboy, NJ"}]}],"slug":"middlesex"},"34025":{"county":[],"districts":{"cd":[{"d":"NJ-04","rep":"Christopher H. Smith","w":0.335},{"d":"NJ-03","rep":"Herbert C. Conaway, Jr.","w":0.287},{"d":"NJ-06","rep":"Frank Pallone, Jr.","w":0.113}],"sh":[{"d":"NJ House District 11","rep":"Luanne Peterpaul, Margie Donlon","w":0.198},{"d":"NJ House District 13","rep":"Gerry Scharfenberger, Vicky Flynn","w":0.197},{"d":"NJ House District 12","rep":"Alex Sauickie, Rob Clifton","w":0.183},{"d":"NJ House District 30","rep":"Avi Schnall, Sean Kean","w":0.144},{"d":"NJ House District 10","rep":"Greg McGuckin, Paul Kanitra","w":0.012}],"ss":[{"d":"NJ Senate District 11","rep":"Vin Gopal","w":0.198},{"d":"NJ Senate District 13","rep":"Declan O'Scanlon","w":0.197},{"d":"NJ Senate District 12","rep":"Owen Henry","w":0.183},{"d":"NJ Senate District 30","rep":"Bob Singer","w":0.144},{"d":"NJ Senate District 10","rep":"Jim Holzapfel","w":0.012}]},"munis":[{"m":"Long Branch","p":[{"n":"John Pallone","r":"Mayor, Long Branch, NJ"}]}],"slug":"monmouth"},"34027":{"county":[],"districts":{"cd":[{"d":"NJ-11","rep":"Analilia Mejia","w":0.642},{"d":"NJ-07","rep":"Thomas H. Kean, Jr.","w":0.356}],"sh":[{"d":"NJ House District 25","rep":"Aura Dunn, Marisa Sweeney","w":0.458},{"d":"NJ House District 24","rep":"Dawn Fantasia, Mike Inganamort","w":0.269},{"d":"NJ House District 26","rep":"Brian Bergen, Jay Webber","w":0.223},{"d":"NJ House District 21","rep":"Andrew Macurdy, Vinnie Kearney","w":0.049}],"ss":[{"d":"NJ Senate District 25","rep":"Tony Bucco","w":0.458},{"d":"NJ Senate District 24","rep":"Parker Space","w":0.269},{"d":"NJ Senate District 26","rep":"Joe Pennacchio","w":0.223},{"d":"NJ Senate District 21","rep":"Jon Bramnick","w":0.049}]},"munis":[],"slug":"morris"},"34029":{"county":[],"districts":{"cd":[{"d":"NJ-04","rep":"Christopher H. Smith","w":0.527},{"d":"NJ-02","rep":"Jefferson Van Drew","w":0.298}],"sh":[{"d":"NJ House District 9","rep":"Brian Rumpf, Greg Myhre","w":0.537},{"d":"NJ House District 12","rep":"Alex Sauickie, Rob Clifton","w":0.154},{"d":"NJ House District 10","rep":"Greg McGuckin, Paul Kanitra","w":0.106},{"d":"NJ House District 30","rep":"Avi Schnall, Sean Kean","w":0.028}],"ss":[{"d":"NJ Senate District 9","rep":"Carmen Amato","w":0.537},{"d":"NJ Senate District 12","rep":"Owen Henry","w":0.154},{"d":"NJ Senate District 10","rep":"Jim Holzapfel","w":0.106},{"d":"NJ Senate District 30","rep":"Bob Singer","w":0.028}]},"munis":[],"slug":"ocean"},"34031":{"county":[],"districts":{"cd":[{"d":"NJ-05","rep":"Josh Gottheimer","w":0.644},{"d":"NJ-09","rep":"Nellie Pou","w":0.218},{"d":"NJ-11","rep":"Analilia Mejia","w":0.138}],"sh":[{"d":"NJ House District 25","rep":"Aura Dunn, Marisa Sweeney","w":0.409},{"d":"NJ House District 26","rep":"Brian Bergen, Jay Webber","w":0.253},{"d":"NJ House District 40","rep":"Al Barlas, Chris DePhillips","w":0.194},{"d":"NJ House District 35","rep":"Al Abdelaziz, Kenyatta Stewart","w":0.07},{"d":"NJ House District 27","rep":"Alixon Collazos-Gill, Rosy Bagolie","w":0.057},{"d":"NJ House District 36","rep":"Clinton Calabrese, Gary Schaer","w":0.016}],"ss":[{"d":"NJ Senate District 25","rep":"Tony Bucco","w":0.409},{"d":"NJ Senate District 26","rep":"Joe Pennacchio","w":0.253},{"d":"NJ Senate District 40","rep":"Kristin Corrado","w":0.194},{"d":"NJ Senate District 35","rep":"Benjie Wimberly","w":0.07},{"d":"NJ Senate District 27","rep":"John McKeon","w":0.057},{"d":"NJ Senate District 36","rep":"Paul Sarlo","w":0.016}]},"munis":[{"m":"Clifton","p":[{"n":"Raymond Grabowski","r":"Mayor, Clifton, NJ"}]},{"m":"Passaic","p":[{"n":"Hector C. Lora","r":"Mayor, Passaic, NJ"}]},{"m":"Paterson","p":[{"n":"Andre Sayegh","r":"Mayor, Paterson, NJ"}]}],"slug":"passaic"},"34033":{"county":[],"districts":{"cd":[{"d":"NJ-02","rep":"Jefferson Van Drew","w":0.935}],"sh":[{"d":"NJ House District 3","rep":"Dave Bailey, Heather Simmons","w":0.935}],"ss":[{"d":"NJ Senate District 3","rep":"John Burzichelli","w":0.935}]},"munis":[{"m":"Salem","p":[{"n":"Jody Veler","r":"Mayor, Salem, NJ"}]}],"slug":"salem"},"34035":{"county":[],"districts":{"cd":[{"d":"NJ-07","rep":"Thomas H. Kean, Jr.","w":0.591},{"d":"NJ-12","rep":"Bonnie Watson Coleman","w":0.409}],"sh":[{"d":"NJ House District 16","rep":"Mitchelle Drulis, Roy Freiman","w":0.358},{"d":"NJ House District 21","rep":"Andrew Macurdy, Vinnie Kearney","w":0.256},{"d":"NJ House District 23","rep":"Erik Peterson, John DiMaio","w":0.221},{"d":"NJ House District 17","rep":"Joe Danielsen, Kevin Egan","w":0.156},{"d":"NJ House District 22","rep":"Jim Kennedy, Linda Carter","w":0.009}],"ss":[{"d":"NJ Senate District 16","rep":"Andrew Zwicker","w":0.358},{"d":"NJ Senate District 21","rep":"Jon Bramnick","w":0.256},{"d":"NJ Senate District 23","rep":"Doug Steinhardt","w":0.221},{"d":"NJ Senate District 17","rep":"Bob Smith","w":0.156},{"d":"NJ Senate District 22","rep":"Nick Scutari","w":0.009}]},"munis":[],"slug":"somerset"},"34037":{"county":[],"districts":{"cd":[{"d":"NJ-05","rep":"Josh Gottheimer","w":0.688},{"d":"NJ-07","rep":"Thomas H. Kean, Jr.","w":0.311}],"sh":[{"d":"NJ House District 24","rep":"Dawn Fantasia, Mike Inganamort","w":0.999}],"ss":[{"d":"NJ Senate District 24","rep":"Parker Space","w":0.999}]},"munis":[],"slug":"sussex"},"34039":{"county":[],"districts":{"cd":[{"d":"NJ-07","rep":"Thomas H. Kean, Jr.","w":0.561},{"d":"NJ-10","rep":"LaMonica McIver","w":0.248},{"d":"NJ-08","rep":"Robert Menendez","w":0.128},{"d":"NJ-12","rep":"Bonnie Watson Coleman","w":0.057}],"sh":[{"d":"NJ House District 22","rep":"Jim Kennedy, Linda Carter","w":0.401},{"d":"NJ House District 21","rep":"Andrew Macurdy, Vinnie Kearney","w":0.31},{"d":"NJ House District 20","rep":"Annette Quijano, Ed Rodriguez","w":0.251},{"d":"NJ House District 28","rep":"Chigozie Onyema, Cleopatra Tucker","w":0.026}],"ss":[{"d":"NJ Senate District 22","rep":"Nick Scutari","w":0.401},{"d":"NJ Senate District 21","rep":"Jon Bramnick","w":0.31},{"d":"NJ Senate District 20","rep":"Joe Cryan","w":0.251},{"d":"NJ Senate District 28","rep":"Renee Burgess","w":0.026}]},"munis":[{"m":"Elizabeth","p":[{"n":"Chris Bollwage","r":"Mayor, Elizabeth, NJ"}]},{"m":"Linden","p":[{"n":"Derek Armstead","r":"Mayor, Linden, NJ"}]},{"m":"Plainfield","p":[{"n":"Adrian O. Mapp","r":"Mayor, Plainfield, NJ"}]},{"m":"Rahway","p":[{"n":"Raymond A. Giacobbe","r":"Mayor, Rahway, NJ"}]},{"m":"Summit","p":[{"n":"Elizabeth Fagan","r":"Mayor, Summit, NJ"}]}],"slug":"union"},"34041":{"county":[],"districts":{"cd":[{"d":"NJ-07","rep":"Thomas H. Kean, Jr.","w":0.999}],"sh":[{"d":"NJ House District 23","rep":"Erik Peterson, John DiMaio","w":0.888},{"d":"NJ House District 24","rep":"Dawn Fantasia, Mike Inganamort","w":0.111}],"ss":[{"d":"NJ Senate District 23","rep":"Doug Steinhardt","w":0.888},{"d":"NJ Senate District 24","rep":"Parker Space","w":0.111}]},"munis":[],"slug":"warren"},"35001":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":0.545},{"d":"NM-01","rep":"Melanie A. Stansbury","w":0.455}],"sh":[{"d":"NM House District 69","rep":"Paulene Abeyta","w":0.31},{"d":"NM House District 22","rep":"Stefani Lord","w":0.249},{"d":"NM House District 29","rep":"Joy Garratt","w":0.12},{"d":"NM House District 10","rep":"Andrés Romero","w":0.113},{"d":"NM House District 26","rep":"Eleanor Chávez","w":0.061},{"d":"NM House District 20","rep":"Meredith Dixon","w":0.017},{"d":"NM House District 31","rep":"Nicole Chavez","w":0.016},{"d":"NM House District 15","rep":"Day Hochman-Vigil","w":0.015},{"d":"NM House District 11","rep":"Javier Martínez","w":0.01},{"d":"NM House District 12","rep":"Art De La Cruz","w":0.008},{"d":"NM House District 17","rep":"Cynthia Borrego","w":0.008},{"d":"NM House District 68","rep":"Charlotte Little","w":0.008},{"d":"NM House District 14","rep":"Miguel García","w":0.007},{"d":"NM House District 16","rep":"Yanira Gurrola","w":0.006},{"d":"NM House District 18","rep":"Marianna Anaya","w":0.006},{"d":"NM House District 44","rep":"Kathleen Cates","w":0.006},{"d":"NM House District 28","rep":"Pamelya Herndon","w":0.006},{"d":"NM House District 25","rep":"Cristina Parajón","w":0.006},{"d":"NM House District 27","rep":"Marian Matthews","w":0.005},{"d":"NM House District 24","rep":"Liz Thomson","w":0.005},{"d":"NM House District 21","rep":"Debbie Sariñana","w":0.005}],"ss":[{"d":"NM Senate District 19","rep":"Ant Thornton","w":0.252},{"d":"NM Senate District 30","rep":"Angel Charley","w":0.199},{"d":"NM Senate District 22","rep":"Benny Shendo","w":0.173},{"d":"NM Senate District 23","rep":"Harold Pope","w":0.126},{"d":"NM Senate District 14","rep":"Michael Padilla","w":0.086},{"d":"NM Senate District 16","rep":"Antoinette Sedillo Lopez","w":0.034},{"d":"NM Senate District 20","rep":"Martin Hickey","w":0.025},{"d":"NM Senate District 10","rep":"Katy Duhigg","w":0.025},{"d":"NM Senate District 13","rep":"Debbie O'Malley","w":0.017},{"d":"NM Senate District 21","rep":"Nicole Tobiassen","w":0.014},{"d":"NM Senate District 15","rep":"Heather Berghmans","w":0.01},{"d":"NM Senate District 26","rep":"Moe Maestas","w":0.009},{"d":"NM Senate District 11","rep":"Linda López","w":0.009},{"d":"NM Senate District 18","rep":"Natalie Figueroa","w":0.008},{"d":"NM Senate District 17","rep":"Mimi Stewart","w":0.007}]},"munis":[{"m":"Albuquerque","p":[{"n":"Q7807370","r":"Mayor, Albuquerque, NM"}]}],"slug":"bernalillo"},"35003":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 49","rep":"Gail Armstrong","w":0.883},{"d":"NM House District 39","rep":"Luis Terrazas","w":0.116}],"ss":[{"d":"NM Senate District 35","rep":"Crystal Brantley","w":1.0}]},"munis":[],"slug":"catron"},"35005":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":0.454},{"d":"NM-01","rep":"Melanie A. Stansbury","w":0.352},{"d":"NM-02","rep":"Gabe Vasquez","w":0.195}],"sh":[{"d":"NM House District 64","rep":"Andi Reeb","w":0.328},{"d":"NM House District 66","rep":"Jimmy Mason","w":0.253},{"d":"NM House District 54","rep":"Jon Henry","w":0.194},{"d":"NM House District 58","rep":"Angelita Mejia","w":0.184},{"d":"NM House District 59","rep":"Mark Murphy","w":0.04}],"ss":[{"d":"NM Senate District 27","rep":"Pat Boone","w":0.517},{"d":"NM Senate District 32","rep":"Candy Ezzell","w":0.327},{"d":"NM Senate District 42","rep":"Larry Scott","w":0.09},{"d":"NM Senate District 33","rep":"Rex Wilson","w":0.067}]},"munis":[],"slug":"chaves"},"35006":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 6","rep":"Martha Garcia","w":0.555},{"d":"NM House District 69","rep":"Paulene Abeyta","w":0.445}],"ss":[{"d":"NM Senate District 30","rep":"Angel Charley","w":0.687},{"d":"NM Senate District 4","rep":"George Muñoz","w":0.313}]},"munis":[],"slug":"cibola"},"35007":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 40","rep":"Joseph Sanchez","w":0.83},{"d":"NM House District 67","rep":"Jack Chatfield","w":0.17}],"ss":[{"d":"NM Senate District 8","rep":"Pete Campos","w":1.0}]},"munis":[],"slug":"colfax"},"35009":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 67","rep":"Jack Chatfield","w":0.514},{"d":"NM House District 63","rep":"Martin Zamora","w":0.325},{"d":"NM House District 64","rep":"Andi Reeb","w":0.161}],"ss":[{"d":"NM Senate District 7","rep":"Pat Woods","w":0.864},{"d":"NM Senate District 27","rep":"Pat Boone","w":0.136}]},"munis":[],"slug":"curry"},"35011":{"county":[],"districts":{"cd":[{"d":"NM-01","rep":"Melanie A. Stansbury","w":1.0}],"sh":[{"d":"NM House District 63","rep":"Martin Zamora","w":1.0}],"ss":[{"d":"NM Senate District 27","rep":"Pat Boone","w":1.0}]},"munis":[],"slug":"de-baca"},"35013":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 38","rep":"Rebecca Dow","w":0.314},{"d":"NM House District 34","rep":"Ray Lara","w":0.281},{"d":"NM House District 36","rep":"Nathan Small","w":0.117},{"d":"NM House District 53","rep":"Sarah Silva","w":0.113},{"d":"NM House District 32","rep":"Jenifer Jones","w":0.084},{"d":"NM House District 33","rep":"Micaela Cadena","w":0.047},{"d":"NM House District 52","rep":"Doreen Gallegos","w":0.036}],"ss":[{"d":"NM Senate District 35","rep":"Crystal Brantley","w":0.42},{"d":"NM Senate District 38","rep":"Carrie Hamblen","w":0.322},{"d":"NM Senate District 37","rep":"Bill Soules","w":0.105},{"d":"NM Senate District 36","rep":"Jeff Steinborn","w":0.101},{"d":"NM Senate District 31","rep":"Joe Cervantes","w":0.051}]},"munis":[{"m":"Las Cruces","p":[{"n":"Ken Miyagishima","r":"Mayor, Las Cruces, NM"}]}],"slug":"dona-ana"},"35015":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":0.921},{"d":"NM-03","rep":"Teresa Leger Fernandez","w":0.079}],"sh":[{"d":"NM House District 66","rep":"Jimmy Mason","w":0.339},{"d":"NM House District 54","rep":"Jon Henry","w":0.331},{"d":"NM House District 55","rep":"Cathrynn Brown","w":0.33}],"ss":[{"d":"NM Senate District 34","rep":"Jim Townsend","w":0.454},{"d":"NM Senate District 42","rep":"Larry Scott","w":0.305},{"d":"NM Senate District 41","rep":"David Gallegos","w":0.184},{"d":"NM Senate District 32","rep":"Candy Ezzell","w":0.058}]},"munis":[],"slug":"eddy"},"35017":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 39","rep":"Luis Terrazas","w":1.0}],"ss":[{"d":"NM Senate District 35","rep":"Crystal Brantley","w":0.609},{"d":"NM Senate District 28","rep":"Gabriel Ramos","w":0.391}]},"munis":[],"slug":"grant"},"35019":{"county":[],"districts":{"cd":[{"d":"NM-01","rep":"Melanie A. Stansbury","w":1.0}],"sh":[{"d":"NM House District 63","rep":"Martin Zamora","w":1.0}],"ss":[{"d":"NM Senate District 8","rep":"Pete Campos","w":1.0}]},"munis":[],"slug":"guadalupe"},"35021":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 67","rep":"Jack Chatfield","w":1.0}],"ss":[{"d":"NM Senate District 8","rep":"Pete Campos","w":0.96},{"d":"NM Senate District 7","rep":"Pat Woods","w":0.04}]},"munis":[],"slug":"harding"},"35023":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":0.999}],"sh":[{"d":"NM House District 32","rep":"Jenifer Jones","w":0.955},{"d":"NM House District 39","rep":"Luis Terrazas","w":0.045}],"ss":[{"d":"NM Senate District 28","rep":"Gabriel Ramos","w":0.955},{"d":"NM Senate District 35","rep":"Crystal Brantley","w":0.045}]},"munis":[],"slug":"hidalgo"},"35025":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":0.535},{"d":"NM-02","rep":"Gabe Vasquez","w":0.465}],"sh":[{"d":"NM House District 66","rep":"Jimmy Mason","w":0.404},{"d":"NM House District 55","rep":"Cathrynn Brown","w":0.319},{"d":"NM House District 61","rep":"Randy Pettigrew","w":0.226},{"d":"NM House District 62","rep":"Elaine Sena Cortez","w":0.051}],"ss":[{"d":"NM Senate District 41","rep":"David Gallegos","w":0.544},{"d":"NM Senate District 27","rep":"Pat Boone","w":0.272},{"d":"NM Senate District 42","rep":"Larry Scott","w":0.183}]},"munis":[],"slug":"lea"},"35027":{"county":[],"districts":{"cd":[{"d":"NM-01","rep":"Melanie A. Stansbury","w":1.0}],"sh":[{"d":"NM House District 56","rep":"Harlan Vincent","w":1.0}],"ss":[{"d":"NM Senate District 33","rep":"Rex Wilson","w":1.0}]},"munis":[],"slug":"lincoln"},"35028":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 43","rep":"Chris Chandler","w":1.0}],"ss":[{"d":"NM Senate District 5","rep":"Leo Jaramillo","w":0.571},{"d":"NM Senate District 6","rep":"Bobby Gonzales","w":0.428}]},"munis":[],"slug":"los-alamos"},"35029":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 32","rep":"Jenifer Jones","w":1.0}],"ss":[{"d":"NM Senate District 28","rep":"Gabriel Ramos","w":0.717},{"d":"NM Senate District 35","rep":"Crystal Brantley","w":0.283}]},"munis":[{"m":"Deming","p":[{"n":"Michele Shillito","r":"Mayor, Deming, NM"}]}],"slug":"luna"},"35031":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":0.921},{"d":"NM-02","rep":"Gabe Vasquez","w":0.079}],"sh":[{"d":"NM House District 69","rep":"Paulene Abeyta","w":0.357},{"d":"NM House District 6","rep":"Martha Garcia","w":0.266},{"d":"NM House District 5","rep":"Wonda Johnson","w":0.236},{"d":"NM House District 9","rep":"Patty Lundstrom","w":0.141}],"ss":[{"d":"NM Senate District 22","rep":"Benny Shendo","w":0.492},{"d":"NM Senate District 4","rep":"George Muñoz","w":0.29},{"d":"NM Senate District 3","rep":"Shannon Pinto","w":0.157},{"d":"NM Senate District 30","rep":"Angel Charley","w":0.061}]},"munis":[],"slug":"mckinley"},"35033":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 40","rep":"Joseph Sanchez","w":1.0}],"ss":[{"d":"NM Senate District 8","rep":"Pete Campos","w":1.0}]},"munis":[],"slug":"mora"},"35035":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":0.917},{"d":"NM-01","rep":"Melanie A. Stansbury","w":0.083}],"sh":[{"d":"NM House District 54","rep":"Jon Henry","w":0.737},{"d":"NM House District 56","rep":"Harlan Vincent","w":0.248},{"d":"NM House District 51","rep":"John Block","w":0.01}],"ss":[{"d":"NM Senate District 34","rep":"Jim Townsend","w":0.789},{"d":"NM Senate District 33","rep":"Rex Wilson","w":0.209}]},"munis":[],"slug":"otero"},"35037":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 67","rep":"Jack Chatfield","w":1.0}],"ss":[{"d":"NM Senate District 7","rep":"Pat Woods","w":0.897},{"d":"NM Senate District 8","rep":"Pete Campos","w":0.103}]},"munis":[],"slug":"quay"},"35039":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 41","rep":"Susan Herrera","w":0.645},{"d":"NM House District 65","rep":"Derrick Lente","w":0.307},{"d":"NM House District 40","rep":"Joseph Sanchez","w":0.048}],"ss":[{"d":"NM Senate District 22","rep":"Benny Shendo","w":0.575},{"d":"NM Senate District 5","rep":"Leo Jaramillo","w":0.395},{"d":"NM Senate District 6","rep":"Bobby Gonzales","w":0.029}]},"munis":[],"slug":"rio-arriba"},"35041":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 64","rep":"Andi Reeb","w":0.727},{"d":"NM House District 63","rep":"Martin Zamora","w":0.273}],"ss":[{"d":"NM Senate District 27","rep":"Pat Boone","w":1.0}]},"munis":[],"slug":"roosevelt"},"35043":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":0.897},{"d":"NM-01","rep":"Melanie A. Stansbury","w":0.103}],"sh":[{"d":"NM House District 65","rep":"Derrick Lente","w":0.613},{"d":"NM House District 43","rep":"Chris Chandler","w":0.198},{"d":"NM House District 41","rep":"Susan Herrera","w":0.057},{"d":"NM House District 57","rep":"Catherine Cullen","w":0.054},{"d":"NM House District 50","rep":"Matthew McQueen","w":0.045},{"d":"NM House District 60","rep":"Josh Hernandez","w":0.024}],"ss":[{"d":"NM Senate District 22","rep":"Benny Shendo","w":0.853},{"d":"NM Senate District 40","rep":"Craig Brandt","w":0.078},{"d":"NM Senate District 9","rep":"Cindy Nava","w":0.038},{"d":"NM Senate District 19","rep":"Ant Thornton","w":0.028}]},"munis":[{"m":"Rio Rancho","p":[{"n":"Greggory D. Hull","r":"Mayor, Rio Rancho, NM"}]}],"slug":"sandoval"},"35045":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 4","rep":"Joseph Hernandez","w":0.277},{"d":"NM House District 65","rep":"Derrick Lente","w":0.221},{"d":"NM House District 5","rep":"Wonda Johnson","w":0.221},{"d":"NM House District 3","rep":"Bill Hall","w":0.143},{"d":"NM House District 1","rep":"Rod Montoya","w":0.064},{"d":"NM House District 69","rep":"Paulene Abeyta","w":0.057},{"d":"NM House District 2","rep":"Mark Duncan","w":0.017}],"ss":[{"d":"NM Senate District 3","rep":"Shannon Pinto","w":0.368},{"d":"NM Senate District 22","rep":"Benny Shendo","w":0.278},{"d":"NM Senate District 4","rep":"George Muñoz","w":0.169},{"d":"NM Senate District 2","rep":"Steve Lanier","w":0.155},{"d":"NM Senate District 1","rep":"Bill Sharer","w":0.03}]},"munis":[],"slug":"san-juan"},"35047":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 70","rep":"Anita Gonzales","w":0.704},{"d":"NM House District 67","rep":"Jack Chatfield","w":0.226},{"d":"NM House District 40","rep":"Joseph Sanchez","w":0.06},{"d":"NM House District 63","rep":"Martin Zamora","w":0.01}],"ss":[{"d":"NM Senate District 8","rep":"Pete Campos","w":0.804},{"d":"NM Senate District 39","rep":"Liz Stefanics","w":0.196}]},"munis":[],"slug":"san-miguel"},"35049":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":0.933},{"d":"NM-01","rep":"Melanie A. Stansbury","w":0.067}],"sh":[{"d":"NM House District 50","rep":"Matthew McQueen","w":0.539},{"d":"NM House District 46","rep":"Andrea Romero","w":0.25},{"d":"NM House District 47","rep":"Reena Szczepanski","w":0.126},{"d":"NM House District 43","rep":"Chris Chandler","w":0.074},{"d":"NM House District 45","rep":"Linda Serrato","w":0.007}],"ss":[{"d":"NM Senate District 39","rep":"Liz Stefanics","w":0.357},{"d":"NM Senate District 19","rep":"Ant Thornton","w":0.26},{"d":"NM Senate District 25","rep":"Peter Wirth","w":0.218},{"d":"NM Senate District 6","rep":"Bobby Gonzales","w":0.153},{"d":"NM Senate District 24","rep":"Linda Trujillo","w":0.008}]},"munis":[{"m":"Santa Fe","p":[{"n":"Alan Webber","r":"Mayor, Santa Fe, NM"}]}],"slug":"santa-fe"},"35051":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 38","rep":"Rebecca Dow","w":0.531},{"d":"NM House District 49","rep":"Gail Armstrong","w":0.469}],"ss":[{"d":"NM Senate District 35","rep":"Crystal Brantley","w":1.0}]},"munis":[],"slug":"sierra"},"35053":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":1.0}],"sh":[{"d":"NM House District 49","rep":"Gail Armstrong","w":0.708},{"d":"NM House District 38","rep":"Rebecca Dow","w":0.222},{"d":"NM House District 69","rep":"Paulene Abeyta","w":0.07}],"ss":[{"d":"NM Senate District 35","rep":"Crystal Brantley","w":0.707},{"d":"NM Senate District 29","rep":"Joshua Sanchez","w":0.165},{"d":"NM Senate District 30","rep":"Angel Charley","w":0.128}]},"munis":[],"slug":"socorro"},"35055":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 42","rep":"Kristina Ortez","w":0.668},{"d":"NM House District 41","rep":"Susan Herrera","w":0.327}],"ss":[{"d":"NM Senate District 6","rep":"Bobby Gonzales","w":0.805},{"d":"NM Senate District 8","rep":"Pete Campos","w":0.195}]},"munis":[],"slug":"taos"},"35057":{"county":[],"districts":{"cd":[{"d":"NM-01","rep":"Melanie A. Stansbury","w":1.0}],"sh":[{"d":"NM House District 70","rep":"Anita Gonzales","w":0.53},{"d":"NM House District 22","rep":"Stefani Lord","w":0.469}],"ss":[{"d":"NM Senate District 39","rep":"Liz Stefanics","w":0.924},{"d":"NM Senate District 19","rep":"Ant Thornton","w":0.076}]},"munis":[],"slug":"torrance"},"35059":{"county":[],"districts":{"cd":[{"d":"NM-03","rep":"Teresa Leger Fernandez","w":1.0}],"sh":[{"d":"NM House District 67","rep":"Jack Chatfield","w":1.0}],"ss":[{"d":"NM Senate District 7","rep":"Pat Woods","w":1.0}]},"munis":[],"slug":"union"},"35061":{"county":[],"districts":{"cd":[{"d":"NM-02","rep":"Gabe Vasquez","w":0.692},{"d":"NM-01","rep":"Melanie A. Stansbury","w":0.308}],"sh":[{"d":"NM House District 49","rep":"Gail Armstrong","w":0.611},{"d":"NM House District 69","rep":"Paulene Abeyta","w":0.246},{"d":"NM House District 7","rep":"Tanya Moya","w":0.094},{"d":"NM House District 8","rep":"Brian Baca","w":0.05}],"ss":[{"d":"NM Senate District 30","rep":"Angel Charley","w":0.61},{"d":"NM Senate District 39","rep":"Liz Stefanics","w":0.261},{"d":"NM Senate District 29","rep":"Joshua Sanchez","w":0.13}]},"munis":[],"slug":"valencia"},"36001":{"county":[],"districts":{"cd":[{"d":"NY-20","rep":"Paul Tonko","w":0.999}],"sh":[{"d":"NY House District 102","rep":"Chris Tague","w":0.554},{"d":"NY House District 109","rep":"Gabriella Romero","w":0.233},{"d":"NY House District 110","rep":"Phil Steck","w":0.136},{"d":"NY House District 107","rep":"Scott Bendett","w":0.064},{"d":"NY House District 108","rep":"John McDonald","w":0.013}],"ss":[{"d":"NY Senate District 46","rep":"Pat Fahy","w":0.879},{"d":"NY Senate District 43","rep":"Jake Ashby","w":0.121}]},"munis":[{"m":"Albany","p":[{"n":"Kathy Sheehan","r":"Mayor, Albany, NY"}]},{"m":"Cohoes","p":[{"n":"William T. Keeler","r":"Mayor, Cohoes, NY"}]},{"m":"Green Island","p":[{"n":"James Oddo","r":"Mayor, Staten Island, NY"}]},{"m":"Watervliet","p":[{"n":"Charles Patricelli","r":"Mayor, Watervliet, NY"}]}],"slug":"albany"},"36003":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":1.0}],"sh":[{"d":"NY House District 148","rep":"Joe Sempolinski","w":1.0}],"ss":[{"d":"NY Senate District 57","rep":"George Borrello","w":0.594},{"d":"NY Senate District 58","rep":"Tom O'Mara","w":0.406}]},"munis":[],"slug":"allegany"},"36005":{"county":[],"districts":{"cd":[{"d":"NY-14","rep":"Alexandria Ocasio-Cortez","w":0.429},{"d":"NY-15","rep":"Ritchie Torres","w":0.345},{"d":"NY-13","rep":"Adriano Espaillat","w":0.05},{"d":"NY-16","rep":"George Latimer","w":0.039}],"sh":[{"d":"NY House District 82","rep":"Michael Benedetto","w":0.206},{"d":"NY House District 81","rep":"Jeffrey Dinowitz","w":0.139},{"d":"NY House District 85","rep":"Emérita Torres","w":0.104},{"d":"NY House District 84","rep":"Amanda Septimo","w":0.069},{"d":"NY House District 83","rep":"Carl Heastie","w":0.065},{"d":"NY House District 80","rep":"John Zaccaro","w":0.064},{"d":"NY House District 87","rep":"Karines Reyes","w":0.048},{"d":"NY House District 78","rep":"George Alvarez","w":0.039},{"d":"NY House District 79","rep":"Chantel Jackson","w":0.036},{"d":"NY House District 86","rep":"Yudelka Tapia","w":0.029},{"d":"NY House District 77","rep":"Landon Dais","w":0.029}],"ss":[{"d":"NY Senate District 34","rep":"Nathalia Fernández","w":0.254},{"d":"NY Senate District 33","rep":"Gustavo Rivera","w":0.188},{"d":"NY Senate District 29","rep":"Jose Serrano","w":0.128},{"d":"NY Senate District 36","rep":"Jamaal Bailey","w":0.122},{"d":"NY Senate District 32","rep":"Luis Sepúlveda","w":0.081},{"d":"NY Senate District 31","rep":"Robert Jackson","w":0.038},{"d":"NY Senate District 11","rep":"Toby Stavisky","w":0.018}]},"munis":[],"slug":"bronx"},"36007":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.999}],"sh":[{"d":"NY House District 121","rep":"Joe Angelino","w":0.582},{"d":"NY House District 124","rep":"Chris Friend","w":0.222},{"d":"NY House District 123","rep":"Donna Lupardo","w":0.139},{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.056}],"ss":[{"d":"NY Senate District 51","rep":"Peter Oberacker","w":0.551},{"d":"NY Senate District 52","rep":"Lea Webb","w":0.449}]},"munis":[{"m":"Binghamton","p":[{"n":"Jared Kraham","r":"Mayor, Binghamton, NY"}]}],"slug":"broome"},"36009":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":1.0}],"sh":[{"d":"NY House District 148","rep":"Joe Sempolinski","w":1.0}],"ss":[{"d":"NY Senate District 57","rep":"George Borrello","w":1.0}]},"munis":[{"m":"Olean","p":[{"n":"William J. Aiello","r":"Mayor, Olean, NY"}]}],"slug":"cattaraugus"},"36011":{"county":[],"districts":{"cd":[{"d":"NY-22","rep":"John W. Mannion","w":0.504},{"d":"NY-24","rep":"Claudia Tenney","w":0.346}],"sh":[{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.493},{"d":"NY House District 126","rep":"John Lemondes","w":0.222},{"d":"NY House District 120","rep":"Will Barclay","w":0.135}],"ss":[{"d":"NY Senate District 48","rep":"Rachel May","w":0.85}]},"munis":[{"m":"Auburn","p":[{"n":"James N. Giannettino, Jr.","r":"Mayor, Auburn, NY"}]}],"slug":"cayuga"},"36013":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":0.722}],"sh":[{"d":"NY House District 150","rep":"Andrew Molitor","w":0.722}],"ss":[{"d":"NY Senate District 57","rep":"George Borrello","w":0.722}]},"munis":[{"m":"Dunkirk","p":[{"n":"Kate Wdowiasz","r":"Mayor, Dunkirk, NY"}]},{"m":"Jamestown","p":[{"n":"Kimberly Ecklund","r":"Mayor, Jamestown, NY"}]}],"slug":"chautauqua"},"36015":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":1.0}],"sh":[{"d":"NY House District 124","rep":"Chris Friend","w":0.604},{"d":"NY House District 132","rep":"Phil Palmesano","w":0.396}],"ss":[{"d":"NY Senate District 58","rep":"Tom O'Mara","w":1.0}]},"munis":[],"slug":"chemung"},"36017":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":1.0}],"sh":[{"d":"NY House District 121","rep":"Joe Angelino","w":0.721},{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.28}],"ss":[{"d":"NY Senate District 53","rep":"Joe Griffo","w":0.587},{"d":"NY Senate District 51","rep":"Peter Oberacker","w":0.413}]},"munis":[],"slug":"chenango"},"36019":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 115","rep":"Michael Cashman","w":1.0}],"ss":[{"d":"NY Senate District 45","rep":"Dan Stec","w":1.0}]},"munis":[],"slug":"clinton"},"36021":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":1.0}],"sh":[{"d":"NY House District 106","rep":"Didi Barrett","w":0.815},{"d":"NY House District 107","rep":"Scott Bendett","w":0.185}],"ss":[{"d":"NY Senate District 41","rep":"Michelle Hinchey","w":1.0}]},"munis":[],"slug":"columbia"},"36023":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.516},{"d":"NY-22","rep":"John W. Mannion","w":0.484}],"sh":[{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.7},{"d":"NY House District 125","rep":"Anna Kelles","w":0.3}],"ss":[{"d":"NY Senate District 52","rep":"Lea Webb","w":1.0}]},"munis":[{"m":"Cortland","p":[{"n":"Scott Steve","r":"Mayor, Cortland, NY"}]}],"slug":"cortland"},"36025":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":1.0}],"sh":[{"d":"NY House District 102","rep":"Chris Tague","w":0.478},{"d":"NY House District 101","rep":"Brian Maher","w":0.349},{"d":"NY House District 121","rep":"Joe Angelino","w":0.173}],"ss":[{"d":"NY Senate District 51","rep":"Peter Oberacker","w":1.0}]},"munis":[],"slug":"delaware"},"36027":{"county":[],"districts":{"cd":[{"d":"NY-18","rep":"Patrick Ryan","w":0.863},{"d":"NY-17","rep":"Michael Lawler","w":0.137}],"sh":[{"d":"NY House District 105","rep":"Anil Beephan","w":0.447},{"d":"NY House District 106","rep":"Didi Barrett","w":0.441},{"d":"NY House District 103","rep":"Sarahana Shrestha","w":0.097},{"d":"NY House District 104","rep":"Jonathan Jacobson","w":0.015}],"ss":[{"d":"NY Senate District 41","rep":"Michelle Hinchey","w":0.621},{"d":"NY Senate District 39","rep":"Rob Rolison","w":0.379}]},"munis":[{"m":"Beacon","p":[{"n":"Lee Kyriacou","r":"Mayor, Beacon, NY"}]},{"m":"Poughkeepsie","p":[{"n":"Yvonne Flowers","r":"Mayor, Poughkeepsie, NY"}]}],"slug":"dutchess"},"36029":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":0.687},{"d":"NY-26","rep":"Timothy M. Kennedy","w":0.172}],"sh":[{"d":"NY House District 147","rep":"Dave DiPietro","w":0.498},{"d":"NY House District 144","rep":"Paul Bologna","w":0.109},{"d":"NY House District 142","rep":"Pat Burke","w":0.045},{"d":"NY House District 149","rep":"Jon Rivera","w":0.044},{"d":"NY House District 146","rep":"Karen McMahon","w":0.044},{"d":"NY House District 143","rep":"Pat Chludzinski","w":0.033},{"d":"NY House District 145","rep":"Angelo Morinello","w":0.027},{"d":"NY House District 140","rep":"Bill Conrad","w":0.022},{"d":"NY House District 150","rep":"Andrew Molitor","w":0.021},{"d":"NY House District 141","rep":"Crystal Peoples-Stokes","w":0.014}],"ss":[{"d":"NY Senate District 60","rep":"Patrick Gallivan","w":0.704},{"d":"NY Senate District 61","rep":"Jeremy Zellner","w":0.099},{"d":"NY Senate District 63","rep":"April Baskin","w":0.056}]},"munis":[{"m":"Buffalo","p":[{"n":"Byron Brown","r":"Mayor, Buffalo, NY"}]},{"m":"Lackawanna","p":[{"n":"Annette Iafallo","r":"Mayor, Lackawanna, NY"}]},{"m":"Tonawanda","p":[{"n":"John White","r":"Mayor, Tonawanda, NY"}]}],"slug":"erie"},"36031":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 114","rep":"Matt Simpson","w":0.736},{"d":"NY House District 115","rep":"Michael Cashman","w":0.264}],"ss":[{"d":"NY Senate District 45","rep":"Dan Stec","w":1.0}]},"munis":[],"slug":"essex"},"36033":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 115","rep":"Michael Cashman","w":1.0}],"ss":[{"d":"NY Senate District 45","rep":"Dan Stec","w":1.0}]},"munis":[],"slug":"franklin"},"36035":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 118","rep":"Robert Smullen","w":0.811},{"d":"NY House District 112","rep":"Mary Beth Walsh","w":0.123},{"d":"NY House District 114","rep":"Matt Simpson","w":0.065}],"ss":[{"d":"NY Senate District 49","rep":"Mark Walczyk","w":1.0}]},"munis":[{"m":"Gloversville","p":[{"n":"Vincent DeSantis","r":"Mayor, Gloversville, NY"}]}],"slug":"fulton"},"36037":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":1.0}],"sh":[{"d":"NY House District 139","rep":"Steve Hawley","w":1.0}],"ss":[{"d":"NY Senate District 57","rep":"George Borrello","w":1.0}]},"munis":[],"slug":"genesee"},"36039":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.999}],"sh":[{"d":"NY House District 102","rep":"Chris Tague","w":1.0}],"ss":[{"d":"NY Senate District 41","rep":"Michelle Hinchey","w":1.0}]},"munis":[],"slug":"greene"},"36041":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 118","rep":"Robert Smullen","w":1.0}],"ss":[{"d":"NY Senate District 49","rep":"Mark Walczyk","w":1.0}]},"munis":[],"slug":"hamilton"},"36043":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 118","rep":"Robert Smullen","w":0.963},{"d":"NY House District 122","rep":"Brian Miller","w":0.037}],"ss":[{"d":"NY Senate District 49","rep":"Mark Walczyk","w":0.939},{"d":"NY Senate District 53","rep":"Joe Griffo","w":0.06}]},"munis":[{"m":"Little Falls","p":[{"n":"Deborah A. Kaufman","r":"Mayor, Little Falls, NY"}]}],"slug":"herkimer"},"36045":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.595},{"d":"NY-21","rep":"Elise M. Stefanik","w":0.151}],"sh":[{"d":"NY House District 116","rep":"Scott Gray","w":0.456},{"d":"NY House District 117","rep":"Ken Blankenbush","w":0.154},{"d":"NY House District 120","rep":"Will Barclay","w":0.114}],"ss":[{"d":"NY Senate District 49","rep":"Mark Walczyk","w":0.723}]},"munis":[{"m":"Watertown","p":[{"n":"Jeffrey M. Smith","r":"Mayor, Watertown, NY"}]}],"slug":"jefferson"},"36047":{"county":[],"districts":{"cd":[{"d":"NY-08","rep":"Hakeem S. Jeffries","w":0.394},{"d":"NY-09","rep":"Yvette D. Clarke","w":0.157},{"d":"NY-10","rep":"Daniel S. Goldman","w":0.119},{"d":"NY-07","rep":"Nydia M. Velázquez","w":0.108},{"d":"NY-11","rep":"Nicole Malliotakis","w":0.072}],"sh":[{"d":"NY House District 59","rep":"Jaime Williams","w":0.198},{"d":"NY House District 60","rep":"Nikki Lucas","w":0.052},{"d":"NY House District 46","rep":"Alec Brook-Krasny","w":0.048},{"d":"NY House District 51","rep":"Marcela Mitaynes","w":0.047},{"d":"NY House District 45","rep":"Misha Novakhov","w":0.038},{"d":"NY House District 41","rep":"Kalman Yeger","w":0.037},{"d":"NY House District 52","rep":"Jo Anne Simon","w":0.036},{"d":"NY House District 58","rep":"Monique Chandler-Waterman","w":0.035},{"d":"NY House District 44","rep":"Robert Carroll","w":0.035},{"d":"NY House District 50","rep":"Emily Gallagher","w":0.031},{"d":"NY House District 54","rep":"Erik Dilan","w":0.03},{"d":"NY House District 53","rep":"Maritza Davila","w":0.03},{"d":"NY House District 48","rep":"Simcha Eichenstein","w":0.027},{"d":"NY House District 47","rep":"William Colton","w":0.026},{"d":"NY House District 55","rep":"Latrice Walker","w":0.026},{"d":"NY House District 49","rep":"Lester Chang","w":0.024},{"d":"NY House District 56","rep":"Stefani Zinerman","w":0.024},{"d":"NY House District 57","rep":"Phara Souffrant Forrest","w":0.023},{"d":"NY House District 42","rep":"Rodneyse Bichotte Hermelyn","w":0.023},{"d":"NY House District 43","rep":"Brian Cunningham","w":0.022},{"d":"NY House District 64","rep":"Mike Tannousis","w":0.009}],"ss":[{"d":"NY Senate District 19","rep":"Roxanne Persaud","w":0.229},{"d":"NY Senate District 22","rep":"Sam Sutton","w":0.093},{"d":"NY Senate District 26","rep":"Andrew Gounardes","w":0.09},{"d":"NY Senate District 21","rep":"Kevin Parker","w":0.084},{"d":"NY Senate District 17","rep":"Steve Chan","w":0.064},{"d":"NY Senate District 20","rep":"Zellnor Myrie","w":0.064},{"d":"NY Senate District 18","rep":"Julia Salazar","w":0.064},{"d":"NY Senate District 25","rep":"Jabari Brisport","w":0.062},{"d":"NY Senate District 23","rep":"Jessica Scarcella-Spanton","w":0.051},{"d":"NY Senate District 59","rep":"Kristen Gonzalez","w":0.018}]},"munis":[],"slug":"kings"},"36049":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 117","rep":"Ken Blankenbush","w":1.0}],"ss":[{"d":"NY Senate District 49","rep":"Mark Walczyk","w":1.0}]},"munis":[],"slug":"lewis"},"36051":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":1.0}],"sh":[{"d":"NY House District 133","rep":"Andrea Bailey","w":1.0}],"ss":[{"d":"NY Senate District 54","rep":"Pam Helming","w":1.0}]},"munis":[],"slug":"livingston"},"36053":{"county":[],"districts":{"cd":[{"d":"NY-22","rep":"John W. Mannion","w":0.998}],"sh":[{"d":"NY House District 121","rep":"Joe Angelino","w":0.378},{"d":"NY House District 122","rep":"Brian Miller","w":0.37},{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.174},{"d":"NY House District 127","rep":"Al Stirpe","w":0.078}],"ss":[{"d":"NY Senate District 53","rep":"Joe Griffo","w":1.0}]},"munis":[],"slug":"madison"},"36055":{"county":[],"districts":{"cd":[{"d":"NY-25","rep":"Joseph D. Morelle","w":0.486}],"sh":[{"d":"NY House District 139","rep":"Steve Hawley","w":0.103},{"d":"NY House District 135","rep":"Jen Lunsford","w":0.1},{"d":"NY House District 134","rep":"Josh Jensen","w":0.094},{"d":"NY House District 138","rep":"Harry Bronson","w":0.088},{"d":"NY House District 136","rep":"Sarah Clark","w":0.032},{"d":"NY House District 130","rep":"Brian Manktelow","w":0.025},{"d":"NY House District 133","rep":"Andrea Bailey","w":0.022},{"d":"NY House District 137","rep":"Demond Meeks","w":0.022}],"ss":[{"d":"NY Senate District 62","rep":"Rob Ortt","w":0.138},{"d":"NY Senate District 54","rep":"Pam Helming","w":0.129},{"d":"NY Senate District 55","rep":"Samra Brouk","w":0.119},{"d":"NY Senate District 56","rep":"Jeremy Cooney","w":0.101}]},"munis":[{"m":"Rochester","p":[{"n":"Malik Evans","r":"Mayor, Rochester, NY"}]}],"slug":"monroe"},"36057":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":0.787},{"d":"NY-20","rep":"Paul Tonko","w":0.213}],"sh":[{"d":"NY House District 118","rep":"Robert Smullen","w":0.785},{"d":"NY House District 111","rep":"Angelo Santabarbara","w":0.215}],"ss":[{"d":"NY Senate District 46","rep":"Pat Fahy","w":1.0}]},"munis":[],"slug":"montgomery"},"36059":{"county":[],"districts":{"cd":[{"d":"NY-03","rep":"Thomas R. Suozzi","w":0.363},{"d":"NY-04","rep":"Laura Gillen","w":0.294},{"d":"NY-02","rep":"Andrew R. Garbarino","w":0.051}],"sh":[{"d":"NY House District 15","rep":"Jake Blumencranz","w":0.134},{"d":"NY House District 14","rep":"Dave McDonough","w":0.097},{"d":"NY House District 13","rep":"Charles Lavine","w":0.087},{"d":"NY House District 16","rep":"Danny Norber","w":0.078},{"d":"NY House District 20","rep":"Ari Brown","w":0.063},{"d":"NY House District 19","rep":"Ed Ra","w":0.049},{"d":"NY House District 17","rep":"John Mikulin","w":0.041},{"d":"NY House District 9","rep":"Michael Durso","w":0.037},{"d":"NY House District 21","rep":"Judy Griffin","w":0.037},{"d":"NY House District 18","rep":"Noah Burroughs","w":0.029},{"d":"NY House District 22","rep":"Michaelle Solages","w":0.027},{"d":"NY House District 10","rep":"Steve Stern","w":0.013}],"ss":[{"d":"NY Senate District 7","rep":"Jack Martins","w":0.27},{"d":"NY Senate District 5","rep":"Steve Rhoads","w":0.168},{"d":"NY Senate District 9","rep":"Patricia Canzoneri-Fitzpatrick","w":0.106},{"d":"NY Senate District 6","rep":"Siela Bynoe","w":0.093},{"d":"NY Senate District 8","rep":"Alexis Weik","w":0.057}]},"munis":[{"m":"Glen Cove","p":[{"n":"Pamela D. Panzenbeck","r":"Mayor, Glen Cove, NY"}]}],"slug":"nassau"},"36061":{"county":[],"districts":{"cd":[{"d":"NY-12","rep":"Jerrold Nadler","w":0.381},{"d":"NY-13","rep":"Adriano Espaillat","w":0.359},{"d":"NY-10","rep":"Daniel S. Goldman","w":0.249}],"sh":[{"d":"NY House District 71","rep":"Al Taylor","w":0.127},{"d":"NY House District 68","rep":"Eddie Gibbs","w":0.107},{"d":"NY House District 75","rep":"Tony Simone","w":0.094},{"d":"NY House District 66","rep":"Deborah Glick","w":0.08},{"d":"NY House District 74","rep":"Keith Powers","w":0.079},{"d":"NY House District 69","rep":"Micah Lasher","w":0.073},{"d":"NY House District 67","rep":"Linda Rosenthal","w":0.071},{"d":"NY House District 76","rep":"Rebecca Seawright","w":0.062},{"d":"NY House District 70","rep":"Jordan Wright","w":0.056},{"d":"NY House District 65","rep":"Grace Lee","w":0.056},{"d":"NY House District 72","rep":"Manny De Los Santos","w":0.056},{"d":"NY House District 73","rep":"Alex Bores","w":0.049},{"d":"NY House District 61","rep":"Charles Fall","w":0.026}],"ss":[{"d":"NY Senate District 47","rep":"Erik Bottcher","w":0.172},{"d":"NY Senate District 28","rep":"Liz Krueger","w":0.153},{"d":"NY Senate District 27","rep":"Brian Kavanagh","w":0.151},{"d":"NY Senate District 31","rep":"Robert Jackson","w":0.148},{"d":"NY Senate District 30","rep":"Cordell Cleare","w":0.148},{"d":"NY Senate District 29","rep":"Jose Serrano","w":0.084},{"d":"NY Senate District 59","rep":"Kristen Gonzalez","w":0.063},{"d":"NY Senate District 26","rep":"Andrew Gounardes","w":0.016}]},"munis":[],"slug":"new-york"},"36063":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.364},{"d":"NY-26","rep":"Timothy M. Kennedy","w":0.056},{"d":"NY-23","rep":"Nicholas A. Langworthy","w":0.045}],"sh":[{"d":"NY House District 144","rep":"Paul Bologna","w":0.299},{"d":"NY House District 145","rep":"Angelo Morinello","w":0.159},{"d":"NY House District 140","rep":"Bill Conrad","w":0.006}],"ss":[{"d":"NY Senate District 62","rep":"Rob Ortt","w":0.466}]},"munis":[{"m":"Lockport","p":[{"n":"John Lombardi III","r":"Mayor, Lockport, NY"}]},{"m":"Niagara Falls","p":[{"n":"Robert Restaino","r":"Mayor, Niagara Falls, NY"}]},{"m":"North Tonawanda","p":[{"n":"Austin J. Tylec","r":"Mayor, North Tonawanda, NY"}]}],"slug":"niagara"},"36065":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":0.725},{"d":"NY-22","rep":"John W. Mannion","w":0.275}],"sh":[{"d":"NY House District 117","rep":"Ken Blankenbush","w":0.398},{"d":"NY House District 122","rep":"Brian Miller","w":0.285},{"d":"NY House District 119","rep":"Marianne Buttenschon","w":0.176},{"d":"NY House District 118","rep":"Robert Smullen","w":0.142}],"ss":[{"d":"NY Senate District 53","rep":"Joe Griffo","w":1.0}]},"munis":[{"m":"Utica","p":[{"n":"Michael P. Galime","r":"Mayor, Utica, NY"}]}],"slug":"oneida"},"36067":{"county":[],"districts":{"cd":[{"d":"NY-22","rep":"John W. Mannion","w":0.998}],"sh":[{"d":"NY House District 126","rep":"John Lemondes","w":0.581},{"d":"NY House District 127","rep":"Al Stirpe","w":0.183},{"d":"NY House District 128","rep":"Pamela Hunter","w":0.154},{"d":"NY House District 129","rep":"Bill Magnarelli","w":0.082}],"ss":[{"d":"NY Senate District 48","rep":"Rachel May","w":0.698},{"d":"NY Senate District 50","rep":"Chris Ryan","w":0.302}]},"munis":[{"m":"Syracuse","p":[{"n":"Sharon Owens","r":"Mayor, Syracuse, NY"}]}],"slug":"onondaga"},"36069":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.923},{"d":"NY-25","rep":"Joseph D. Morelle","w":0.077}],"sh":[{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.503},{"d":"NY House District 133","rep":"Andrea Bailey","w":0.497}],"ss":[{"d":"NY Senate District 54","rep":"Pam Helming","w":1.0}]},"munis":[],"slug":"ontario"},"36071":{"county":[],"districts":{"cd":[{"d":"NY-18","rep":"Patrick Ryan","w":0.999}],"sh":[{"d":"NY House District 98","rep":"Karl Brabenec","w":0.417},{"d":"NY House District 101","rep":"Brian Maher","w":0.266},{"d":"NY House District 99","rep":"Chris Eachus","w":0.174},{"d":"NY House District 100","rep":"Paula Kay","w":0.081},{"d":"NY House District 104","rep":"Jonathan Jacobson","w":0.062}],"ss":[{"d":"NY Senate District 42","rep":"James Skoufis","w":0.877},{"d":"NY Senate District 39","rep":"Rob Rolison","w":0.123}]},"munis":[{"m":"Newburgh","p":[{"n":"Torrance Harvey","r":"Mayor, Newburgh, NY"}]},{"m":"Port Jervis","p":[{"n":"Dominic M. Cicalese","r":"Mayor, Port Jervis, NY"}]}],"slug":"orange"},"36073":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.479}],"sh":[{"d":"NY House District 139","rep":"Steve Hawley","w":0.48}],"ss":[{"d":"NY Senate District 62","rep":"Rob Ortt","w":0.48}]},"munis":[],"slug":"orleans"},"36075":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.774}],"sh":[{"d":"NY House District 120","rep":"Will Barclay","w":0.776}],"ss":[{"d":"NY Senate District 49","rep":"Mark Walczyk","w":0.399},{"d":"NY Senate District 50","rep":"Chris Ryan","w":0.377}]},"munis":[],"slug":"oswego"},"36077":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.999}],"sh":[{"d":"NY House District 102","rep":"Chris Tague","w":0.39},{"d":"NY House District 122","rep":"Brian Miller","w":0.314},{"d":"NY House District 121","rep":"Joe Angelino","w":0.263},{"d":"NY House District 118","rep":"Robert Smullen","w":0.032}],"ss":[{"d":"NY Senate District 51","rep":"Peter Oberacker","w":1.0}]},"munis":[],"slug":"otsego"},"36079":{"county":[],"districts":{"cd":[{"d":"NY-17","rep":"Michael Lawler","w":0.999}],"sh":[{"d":"NY House District 94","rep":"Matt Slater","w":0.79},{"d":"NY House District 95","rep":"Dana Levenberg","w":0.209}],"ss":[{"d":"NY Senate District 40","rep":"Pete Harckham","w":0.617},{"d":"NY Senate District 39","rep":"Rob Rolison","w":0.383}]},"munis":[],"slug":"putnam"},"36081":{"county":[],"districts":{"cd":[{"d":"NY-05","rep":"Gregory W. Meeks","w":0.316},{"d":"NY-06","rep":"Grace Meng","w":0.144},{"d":"NY-03","rep":"Thomas R. Suozzi","w":0.089},{"d":"NY-14","rep":"Alexandria Ocasio-Cortez","w":0.078},{"d":"NY-07","rep":"Nydia M. Velázquez","w":0.066}],"sh":[{"d":"NY House District 31","rep":"Khaleel Anderson","w":0.11},{"d":"NY House District 23","rep":"Stacey Pheffer Amato","w":0.089},{"d":"NY House District 27","rep":"Sam Berger","w":0.059},{"d":"NY House District 26","rep":"Ed Braunstein","w":0.058},{"d":"NY House District 25","rep":"Nily Rozic","w":0.037},{"d":"NY House District 33","rep":"Clyde Vanel","w":0.035},{"d":"NY House District 29","rep":"Alicia Hyndman","w":0.034},{"d":"NY House District 37","rep":"Claire Valdez","w":0.032},{"d":"NY House District 24","rep":"David Weprin","w":0.032},{"d":"NY House District 28","rep":"Andrew Hevesi","w":0.029},{"d":"NY House District 35","rep":"Larinda Hooks","w":0.027},{"d":"NY House District 38","rep":"Jenifer Rajkumar","w":0.025},{"d":"NY House District 32","rep":"Vivian Cook","w":0.024},{"d":"NY House District 34","rep":"Jessica González-Rojas","w":0.023},{"d":"NY House District 40","rep":"Ron Kim","w":0.018},{"d":"NY House District 36","rep":"Diana Moreno","w":0.018},{"d":"NY House District 30","rep":"Steven Raga","w":0.016},{"d":"NY House District 39","rep":"Catalina Cruz","w":0.011}],"ss":[{"d":"NY Senate District 10","rep":"James Sanders","w":0.205},{"d":"NY Senate District 11","rep":"Toby Stavisky","w":0.142},{"d":"NY Senate District 16","rep":"John Liu","w":0.083},{"d":"NY Senate District 14","rep":"Leroy Comrie","w":0.074},{"d":"NY Senate District 15","rep":"Joe Addabbo","w":0.057},{"d":"NY Senate District 12","rep":"Mike Gianaris","w":0.057},{"d":"NY Senate District 13","rep":"Jessica Ramos","w":0.027},{"d":"NY Senate District 59","rep":"Kristen Gonzalez","w":0.019},{"d":"NY Senate District 18","rep":"Julia Salazar","w":0.008},{"d":"NY Senate District 19","rep":"Roxanne Persaud","w":0.008}]},"munis":[],"slug":"queens"},"36083":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.673},{"d":"NY-20","rep":"Paul Tonko","w":0.327}],"sh":[{"d":"NY House District 107","rep":"Scott Bendett","w":0.913},{"d":"NY House District 108","rep":"John McDonald","w":0.087}],"ss":[{"d":"NY Senate District 43","rep":"Jake Ashby","w":1.0}]},"munis":[{"m":"Rensselaer","p":[{"n":"Michael Stammel","r":"Mayor, Rensselaer, NY"}]},{"m":"Troy","p":[{"n":"Carmella Mantello","r":"Mayor, Troy, NY"}]}],"slug":"rensselaer"},"36085":{"county":[],"districts":{"cd":[{"d":"NY-11","rep":"Nicole Malliotakis","w":0.603}],"sh":[{"d":"NY House District 62","rep":"Mike Reilly","w":0.197},{"d":"NY House District 63","rep":"Sam Pirozzolo","w":0.182},{"d":"NY House District 64","rep":"Mike Tannousis","w":0.119},{"d":"NY House District 61","rep":"Charles Fall","w":0.064}],"ss":[{"d":"NY Senate District 24","rep":"Andrew Lanza","w":0.444},{"d":"NY Senate District 23","rep":"Jessica Scarcella-Spanton","w":0.117}]},"munis":[],"slug":"richmond"},"36087":{"county":[],"districts":{"cd":[{"d":"NY-17","rep":"Michael Lawler","w":1.0}],"sh":[{"d":"NY House District 96","rep":"Pat Carroll","w":0.39},{"d":"NY House District 97","rep":"Aron Wieder","w":0.227},{"d":"NY House District 98","rep":"Karl Brabenec","w":0.224},{"d":"NY House District 99","rep":"Chris Eachus","w":0.159}],"ss":[{"d":"NY Senate District 38","rep":"Bill Weber","w":0.841},{"d":"NY Senate District 40","rep":"Pete Harckham","w":0.159}]},"munis":[],"slug":"rockland"},"36089":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 117","rep":"Ken Blankenbush","w":0.673},{"d":"NY House District 116","rep":"Scott Gray","w":0.327}],"ss":[{"d":"NY Senate District 45","rep":"Dan Stec","w":0.608},{"d":"NY Senate District 49","rep":"Mark Walczyk","w":0.392}]},"munis":[],"slug":"st-lawrence"},"36091":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":0.579},{"d":"NY-20","rep":"Paul Tonko","w":0.421}],"sh":[{"d":"NY House District 114","rep":"Matt Simpson","w":0.36},{"d":"NY House District 112","rep":"Mary Beth Walsh","w":0.323},{"d":"NY House District 113","rep":"Carrie Woerner","w":0.308},{"d":"NY House District 108","rep":"John McDonald","w":0.009}],"ss":[{"d":"NY Senate District 44","rep":"Jim Tedisco","w":1.0}]},"munis":[{"m":"Mechanicville","p":[{"n":"Mike Butler","r":"Mayor, Mechanicville, NY"}]},{"m":"Saratoga Springs","p":[{"n":"Meg Kelly","r":"Mayor, Saratoga Springs, NY"}]}],"slug":"saratoga"},"36093":{"county":[],"districts":{"cd":[{"d":"NY-20","rep":"Paul Tonko","w":0.996}],"sh":[{"d":"NY House District 111","rep":"Angelo Santabarbara","w":0.681},{"d":"NY House District 112","rep":"Mary Beth Walsh","w":0.233},{"d":"NY House District 110","rep":"Phil Steck","w":0.086}],"ss":[{"d":"NY Senate District 46","rep":"Pat Fahy","w":0.876},{"d":"NY Senate District 44","rep":"Jim Tedisco","w":0.124}]},"munis":[{"m":"Schenectady","p":[{"n":"Gary McCarthy","r":"Mayor, Schenectady, NY"}]}],"slug":"schenectady"},"36095":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":0.998}],"sh":[{"d":"NY House District 102","rep":"Chris Tague","w":1.0}],"ss":[{"d":"NY Senate District 51","rep":"Peter Oberacker","w":1.0}]},"munis":[],"slug":"schoharie"},"36097":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.524},{"d":"NY-23","rep":"Nicholas A. Langworthy","w":0.475}],"sh":[{"d":"NY House District 132","rep":"Phil Palmesano","w":1.0}],"ss":[{"d":"NY Senate District 58","rep":"Tom O'Mara","w":1.0}]},"munis":[],"slug":"schuyler"},"36099":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.999}],"sh":[{"d":"NY House District 132","rep":"Phil Palmesano","w":0.545},{"d":"NY House District 131","rep":"Jeff Gallahan","w":0.455}],"ss":[{"d":"NY Senate District 58","rep":"Tom O'Mara","w":1.0}]},"munis":[],"slug":"seneca"},"36101":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":0.775},{"d":"NY-24","rep":"Claudia Tenney","w":0.225}],"sh":[{"d":"NY House District 132","rep":"Phil Palmesano","w":0.597},{"d":"NY House District 148","rep":"Joe Sempolinski","w":0.204},{"d":"NY House District 133","rep":"Andrea Bailey","w":0.199}],"ss":[{"d":"NY Senate District 58","rep":"Tom O'Mara","w":1.0}]},"munis":[{"m":"Corning","p":[{"n":"William M. Boland Jr.","r":"Mayor, Corning, NY"}]}],"slug":"steuben"},"36103":{"county":[],"districts":{"cd":[{"d":"NY-01","rep":"Nick LaLota","w":0.34},{"d":"NY-02","rep":"Andrew R. Garbarino","w":0.138},{"d":"NY-03","rep":"Thomas R. Suozzi","w":0.011}],"sh":[{"d":"NY House District 1","rep":"Tommy John Schiavoni","w":0.168},{"d":"NY House District 2","rep":"Jodi Giglio","w":0.071},{"d":"NY House District 7","rep":"Jarett Gandolfo","w":0.058},{"d":"NY House District 3","rep":"Joe DeStefano","w":0.034},{"d":"NY House District 8","rep":"Mike Fitzpatrick","w":0.027},{"d":"NY House District 12","rep":"Keith Brown","w":0.024},{"d":"NY House District 4","rep":"Rebecca Kassay","w":0.023},{"d":"NY House District 10","rep":"Steve Stern","w":0.021},{"d":"NY House District 9","rep":"Michael Durso","w":0.019},{"d":"NY House District 5","rep":"Doug Smith","w":0.017},{"d":"NY House District 11","rep":"Kwani O'Pharrow","w":0.012},{"d":"NY House District 6","rep":"Phil Ramos","w":0.009}],"ss":[{"d":"NY Senate District 1","rep":"Tony Palumbo","w":0.231},{"d":"NY Senate District 3","rep":"Dean Murray","w":0.102},{"d":"NY Senate District 2","rep":"Mario Mattera","w":0.064},{"d":"NY Senate District 8","rep":"Alexis Weik","w":0.057},{"d":"NY Senate District 4","rep":"Monica Martinez","w":0.03}]},"munis":[],"slug":"suffolk"},"36105":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.999}],"sh":[{"d":"NY House District 100","rep":"Paula Kay","w":0.766},{"d":"NY House District 101","rep":"Brian Maher","w":0.234}],"ss":[{"d":"NY Senate District 51","rep":"Peter Oberacker","w":1.0}]},"munis":[],"slug":"sullivan"},"36107":{"county":[],"districts":{"cd":[{"d":"NY-23","rep":"Nicholas A. Langworthy","w":0.997}],"sh":[{"d":"NY House District 124","rep":"Chris Friend","w":1.0}],"ss":[{"d":"NY Senate District 58","rep":"Tom O'Mara","w":1.0}]},"munis":[],"slug":"tioga"},"36109":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.997}],"sh":[{"d":"NY House District 125","rep":"Anna Kelles","w":1.0}],"ss":[{"d":"NY Senate District 52","rep":"Lea Webb","w":1.0}]},"munis":[{"m":"Ithaca","p":[{"n":"Svante Myrick","r":"Mayor, Ithaca, NY"}]}],"slug":"tompkins"},"36111":{"county":[],"districts":{"cd":[{"d":"NY-19","rep":"Josh Riley","w":0.669},{"d":"NY-18","rep":"Patrick Ryan","w":0.331}],"sh":[{"d":"NY House District 101","rep":"Brian Maher","w":0.505},{"d":"NY House District 103","rep":"Sarahana Shrestha","w":0.412},{"d":"NY House District 104","rep":"Jonathan Jacobson","w":0.082}],"ss":[{"d":"NY Senate District 51","rep":"Peter Oberacker","w":0.543},{"d":"NY Senate District 41","rep":"Michelle Hinchey","w":0.456}]},"munis":[{"m":"Kingston","p":[{"n":"Steve Noble","r":"Mayor, Kingston, NY"}]}],"slug":"ulster"},"36113":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":1.0}],"sh":[{"d":"NY House District 114","rep":"Matt Simpson","w":0.996}],"ss":[{"d":"NY Senate District 45","rep":"Dan Stec","w":1.0}]},"munis":[{"m":"Glens Falls","p":[{"n":"William Collins","r":"Mayor, Glens Falls, NY"}]}],"slug":"warren"},"36115":{"county":[],"districts":{"cd":[{"d":"NY-21","rep":"Elise M. Stefanik","w":0.999}],"sh":[{"d":"NY House District 114","rep":"Matt Simpson","w":0.739},{"d":"NY House District 107","rep":"Scott Bendett","w":0.174},{"d":"NY House District 113","rep":"Carrie Woerner","w":0.087}],"ss":[{"d":"NY Senate District 43","rep":"Jake Ashby","w":0.644},{"d":"NY Senate District 45","rep":"Dan Stec","w":0.356}]},"munis":[],"slug":"washington"},"36117":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":0.44}],"sh":[{"d":"NY House District 130","rep":"Brian Manktelow","w":0.441}],"ss":[{"d":"NY Senate District 54","rep":"Pam Helming","w":0.441}]},"munis":[],"slug":"wayne"},"36119":{"county":[],"districts":{"cd":[{"d":"NY-17","rep":"Michael Lawler","w":0.69},{"d":"NY-16","rep":"George Latimer","w":0.266}],"sh":[{"d":"NY House District 93","rep":"Chris Burdick","w":0.38},{"d":"NY House District 95","rep":"Dana Levenberg","w":0.185},{"d":"NY House District 92","rep":"MaryJane Shimsky","w":0.135},{"d":"NY House District 94","rep":"Matt Slater","w":0.102},{"d":"NY House District 88","rep":"Amy Paulin","w":0.057},{"d":"NY House District 91","rep":"Steve Otis","w":0.048},{"d":"NY House District 90","rep":"Nader Sayegh","w":0.03},{"d":"NY House District 89","rep":"Gary Pretlow","w":0.016}],"ss":[{"d":"NY Senate District 40","rep":"Pete Harckham","w":0.523},{"d":"NY Senate District 37","rep":"Shelley Mayer","w":0.239},{"d":"NY Senate District 35","rep":"Andrea Stewart-Cousins","w":0.17},{"d":"NY Senate District 34","rep":"Nathalia Fernández","w":0.012},{"d":"NY Senate District 36","rep":"Jamaal Bailey","w":0.009}]},"munis":[{"m":"Mount Vernon","p":[{"n":"Shawyn Patterson-Howard","r":"Mayor, Mount Vernon, NY"}]},{"m":"New Rochelle","p":[{"n":"Yadira Ramos-Herbert","r":"Mayor, New Rochelle, NY"}]},{"m":"White Plains","p":[{"n":"Thomas Roach","r":"Mayor, White Plains, NY"}]},{"m":"Yonkers","p":[{"n":"Mike Spano","r":"Mayor, Yonkers, NY"}]}],"slug":"westchester"},"36121":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":1.0}],"sh":[{"d":"NY House District 147","rep":"Dave DiPietro","w":0.83},{"d":"NY House District 133","rep":"Andrea Bailey","w":0.17}],"ss":[{"d":"NY Senate District 57","rep":"George Borrello","w":1.0}]},"munis":[],"slug":"wyoming"},"36123":{"county":[],"districts":{"cd":[{"d":"NY-24","rep":"Claudia Tenney","w":1.0}],"sh":[{"d":"NY House District 132","rep":"Phil Palmesano","w":1.0}],"ss":[{"d":"NY Senate District 58","rep":"Tom O'Mara","w":1.0}]},"munis":[],"slug":"yates"},"37001":{"county":[],"districts":{"cd":[{"d":"NC-09","rep":"Richard Hudson","w":0.999}],"sh":[{"d":"NC House District 64","rep":"Dennis Riddell","w":0.549},{"d":"NC House District 63","rep":"Stephen Ross","w":0.451}],"ss":[{"d":"NC Senate District 25","rep":"Amy Galey","w":1.0}]},"munis":[{"m":"Burlington","p":[{"n":"James B. Butler","r":"Mayor, Burlington, NC"}]},{"m":"Graham","p":[{"n":"Jennifer Talley","r":"Mayor, Graham, NC"}]},{"m":"Mebane","p":[{"n":"Ed Hooks","r":"Mayor, Mebane, NC"}]}],"slug":"alamance"},"37003":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":0.998}],"sh":[{"d":"NC House District 94","rep":"Blair Eddins","w":1.0}],"ss":[{"d":"NC Senate District 36","rep":"Eddie Settle","w":1.0}]},"munis":[],"slug":"alexander"},"37005":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":1.0}],"sh":[{"d":"NC House District 93","rep":"Ray Pickett","w":1.0}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":1.0}]},"munis":[],"slug":"alleghany"},"37007":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":1.0}],"sh":[{"d":"NC House District 55","rep":"Mark Brody","w":1.0}],"ss":[{"d":"NC Senate District 29","rep":"Dave Craven","w":1.0}]},"munis":[],"slug":"anson"},"37009":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":0.999}],"sh":[{"d":"NC House District 93","rep":"Ray Pickett","w":0.999}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":0.999}]},"munis":[],"slug":"ashe"},"37011":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.995}],"sh":[{"d":"NC House District 85","rep":"Dudley Greene","w":0.999}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":1.0}]},"munis":[],"slug":"avery"},"37013":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.896}],"sh":[{"d":"NC House District 79","rep":"Keith Kidwell","w":0.894}],"ss":[{"d":"NC Senate District 3","rep":"Bob Brinson","w":0.894}]},"munis":[{"m":"Washington","p":[{"n":"Donald Sadler","r":"Mayor, Washington, NC"}]}],"slug":"beaufort"},"37015":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.965}],"sh":[{"d":"NC House District 23","rep":"Shelly Willingham","w":0.956}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.956}]},"munis":[],"slug":"bertie"},"37017":{"county":[],"districts":{"cd":[{"d":"NC-07","rep":"David Rouzer","w":0.999}],"sh":[{"d":"NC House District 22","rep":"William Brisson","w":1.0}],"ss":[{"d":"NC Senate District 9","rep":"Brent Jackson","w":1.0}]},"munis":[],"slug":"bladen"},"37019":{"county":[],"districts":{"cd":[{"d":"NC-07","rep":"David Rouzer","w":0.851}],"sh":[{"d":"NC House District 17","rep":"Frank Iler","w":0.617},{"d":"NC House District 19","rep":"Charlie Miller","w":0.23}],"ss":[{"d":"NC Senate District 8","rep":"Bill Rabon","w":0.848}]},"munis":[],"slug":"brunswick"},"37021":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 115","rep":"Lindsey Prather","w":0.533},{"d":"NC House District 114","rep":"Eric Ager","w":0.383},{"d":"NC House District 116","rep":"Brian Turner","w":0.084}],"ss":[{"d":"NC Senate District 46","rep":"Warren Daniel","w":0.563},{"d":"NC Senate District 49","rep":"Julie Mayfield","w":0.437}]},"munis":[{"m":"Asheville","p":[{"n":"Esther Manheimer","r":"Mayor, Asheville, NC"}]},{"m":"Woodfin","p":[{"n":"Jim McAllister","r":"Mayor, Woodfin, NC"}]}],"slug":"buncombe"},"37023":{"county":[],"districts":{"cd":[{"d":"NC-14","rep":"Tim Moore","w":0.997}],"sh":[{"d":"NC House District 86","rep":"Hugh Blackwell","w":1.0}],"ss":[{"d":"NC Senate District 46","rep":"Warren Daniel","w":1.0}]},"munis":[{"m":"Morganton","p":[{"n":"Ronnie Thompson","r":"Mayor, Morganton, NC"}]}],"slug":"burke"},"37025":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":0.773},{"d":"NC-06","rep":"Addison P. McDowell","w":0.226}],"sh":[{"d":"NC House District 82","rep":"Brian Echevarria","w":0.474},{"d":"NC House District 73","rep":"Jonathan Almond","w":0.403},{"d":"NC House District 83","rep":"Grant Campbell","w":0.123}],"ss":[{"d":"NC Senate District 34","rep":"Chris Measmer","w":0.939},{"d":"NC Senate District 35","rep":"Todd Johnson","w":0.06}]},"munis":[{"m":"Concord","p":[{"n":"William C. \"Bill\" Dusch","r":"Mayor, Concord, NC"}]},{"m":"Kannapolis","p":[{"n":"M. Darrell Hinnant","r":"Mayor, Kannapolis, NC"}]}],"slug":"cabarrus"},"37027":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":0.997}],"sh":[{"d":"NC House District 87","rep":"Destin Hall","w":1.0}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":0.726},{"d":"NC Senate District 45","rep":"Mark Hollo","w":0.274}]},"munis":[{"m":"Lenoir","p":[{"n":"Joseph L. Gibbons","r":"Mayor, Lenoir, NC"}]}],"slug":"caldwell"},"37029":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.798}],"sh":[{"d":"NC House District 5","rep":"Bill Ward","w":0.785}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.785}]},"munis":[],"slug":"camden"},"37031":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.492}],"sh":[{"d":"NC House District 13","rep":"Celeste Cairns","w":0.425}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":0.425}]},"munis":[{"m":"Atlantic Beach","p":[{"n":"Danny Navey","r":"Mayor, Atlantic Beach, NC"}]},{"m":"Beaufort","p":[{"n":"Sharon Harker","r":"Mayor, Beaufort, NC"}]},{"m":"Morehead City","p":[{"n":"Jerry Jones, Jr.","r":"Mayor, Morehead City, NC"}]}],"slug":"carteret"},"37033":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.999}],"sh":[{"d":"NC House District 50","rep":"Renée Price","w":0.999}],"ss":[{"d":"NC Senate District 23","rep":"Jonah Garson","w":0.999}]},"munis":[],"slug":"caswell"},"37035":{"county":[],"districts":{"cd":[{"d":"NC-10","rep":"Pat Harrigan","w":0.999}],"sh":[{"d":"NC House District 89","rep":"Mitchell Setzer","w":0.714},{"d":"NC House District 96","rep":"Jay Adams","w":0.285}],"ss":[{"d":"NC Senate District 45","rep":"Mark Hollo","w":1.0}]},"munis":[{"m":"Hickory","p":[{"n":"Hank Guess","r":"Mayor, Hickory, NC"}]}],"slug":"catawba"},"37037":{"county":[],"districts":{"cd":[{"d":"NC-09","rep":"Richard Hudson","w":0.693},{"d":"NC-04","rep":"Valerie P. Foushee","w":0.306}],"sh":[{"d":"NC House District 54","rep":"Robert Reives","w":1.0}],"ss":[{"d":"NC Senate District 20","rep":"Natalie Murdock","w":1.0}]},"munis":[],"slug":"chatham"},"37039":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 120","rep":"Karl Gillespie","w":1.0}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":1.0}]},"munis":[],"slug":"cherokee"},"37041":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.769}],"sh":[{"d":"NC House District 1","rep":"Ed Goodwin","w":0.757}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":0.757}]},"munis":[],"slug":"chowan"},"37043":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 120","rep":"Karl Gillespie","w":0.999}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":0.999}]},"munis":[],"slug":"clay"},"37045":{"county":[],"districts":{"cd":[{"d":"NC-14","rep":"Tim Moore","w":0.999}],"sh":[{"d":"NC House District 110","rep":"Kelly Hastings","w":0.51},{"d":"NC House District 111","rep":"Paul Scott","w":0.49}],"ss":[{"d":"NC Senate District 44","rep":"Ted Alexander","w":1.0}]},"munis":[{"m":"Kings Mountain","p":[{"n":"Rob Wagman","r":"Mayor, Kings Mountain, NC"}]},{"m":"Shelby","p":[{"n":"Stan Anthony","r":"Mayor, Shelby, NC"}]}],"slug":"cleveland"},"37047":{"county":[],"districts":{"cd":[{"d":"NC-07","rep":"David Rouzer","w":1.0}],"sh":[{"d":"NC House District 46","rep":"Brenden Jones","w":1.0}],"ss":[{"d":"NC Senate District 8","rep":"Bill Rabon","w":1.0}]},"munis":[{"m":"Chadbourn","p":[{"n":"Phillip C. Britt","r":"Mayor, Chadbourn, NC"}]}],"slug":"columbus"},"37049":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.959}],"sh":[{"d":"NC House District 3","rep":"Steve Tyson","w":0.836},{"d":"NC House District 13","rep":"Celeste Cairns","w":0.108}],"ss":[{"d":"NC Senate District 3","rep":"Bob Brinson","w":0.944}]},"munis":[],"slug":"craven"},"37051":{"county":[],"districts":{"cd":[{"d":"NC-07","rep":"David Rouzer","w":0.795},{"d":"NC-09","rep":"Richard Hudson","w":0.204}],"sh":[{"d":"NC House District 43","rep":"Diane Wheatley","w":0.701},{"d":"NC House District 42","rep":"Mike Colvin","w":0.158},{"d":"NC House District 45","rep":"Frances Jackson","w":0.077},{"d":"NC House District 44","rep":"Charles Smith","w":0.064}],"ss":[{"d":"NC Senate District 21","rep":"Tom McInnis","w":0.805},{"d":"NC Senate District 19","rep":"Val Applewhite","w":0.194}]},"munis":[{"m":"Fayetteville","p":[{"n":"Mitch Colvin","r":"Mayor, Fayetteville, NC"}]}],"slug":"cumberland"},"37053":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.564}],"sh":[{"d":"NC House District 1","rep":"Ed Goodwin","w":0.547}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.547}]},"munis":[],"slug":"currituck"},"37055":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.293}],"sh":[{"d":"NC House District 1","rep":"Ed Goodwin","w":0.213},{"d":"NC House District 79","rep":"Keith Kidwell","w":0.052}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.265}]},"munis":[{"m":"Duck","p":[{"n":"Don Kingston","r":"Mayor, Duck, NC"}]},{"m":"Kill Devil Hills","p":[{"n":"John Windley","r":"Mayor, Kill Devil Hills, NC"}]},{"m":"Kitty Hawk","p":[{"n":"Craig Garriss","r":"Mayor, Kitty Hawk, NC"}]},{"m":"Manteo","p":[{"n":"Sherry Butcher Wickstrom","r":"Mayor, Manteo, NC"}]},{"m":"Nags Head","p":[{"n":"Ben Cahoon","r":"Mayor, Nags Head, NC"}]}],"slug":"dare"},"37057":{"county":[],"districts":{"cd":[{"d":"NC-06","rep":"Addison P. McDowell","w":1.0}],"sh":[{"d":"NC House District 80","rep":"Sam Watford","w":0.53},{"d":"NC House District 81","rep":"Larry Potts","w":0.47}],"ss":[{"d":"NC Senate District 30","rep":"Steve Jarvis","w":1.0}]},"munis":[{"m":"Denton","p":[{"n":"Larry D. Ward","r":"Mayor, Denton, NC"}]},{"m":"Lexington","p":[{"n":"Jason Hayes","r":"Mayor, Lexington, NC"}]},{"m":"Midway","p":[{"n":"John Byrum","r":"Mayor, Midway, NC"}]},{"m":"Thomasville","p":[{"n":"Joe G. Bennett","r":"Mayor, Thomasville, NC"}]},{"m":"Wallburg","p":[{"n":"Allen Todd","r":"Mayor, Wallburg, NC"}]}],"slug":"davidson"},"37059":{"county":[],"districts":{"cd":[{"d":"NC-06","rep":"Addison P. McDowell","w":1.0}],"sh":[{"d":"NC House District 77","rep":"Julia Howard","w":1.0}],"ss":[{"d":"NC Senate District 30","rep":"Steve Jarvis","w":1.0}]},"munis":[{"m":"Mocksville","p":[{"n":"William J. Marklin III","r":"Mayor, Mocksville, NC"}]}],"slug":"davie"},"37061":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.998}],"sh":[{"d":"NC House District 4","rep":"Jimmy Dixon","w":1.0}],"ss":[{"d":"NC Senate District 9","rep":"Brent Jackson","w":1.0}]},"munis":[{"m":"Wallace","p":[{"n":"Jason Wells","r":"Mayor, Wallace, NC"}]}],"slug":"duplin"},"37063":{"county":[],"districts":{"cd":[{"d":"NC-04","rep":"Valerie P. Foushee","w":0.999}],"sh":[{"d":"NC House District 2","rep":"Ray Jeffers","w":0.446},{"d":"NC House District 31","rep":"Zack Hawkins","w":0.274},{"d":"NC House District 29","rep":"Vernetta Alston","w":0.151},{"d":"NC House District 30","rep":"Marcia Morey","w":0.129}],"ss":[{"d":"NC Senate District 22","rep":"Sophia Chitlik","w":0.745},{"d":"NC Senate District 20","rep":"Natalie Murdock","w":0.255}]},"munis":[{"m":"Durham","p":[{"n":"Steve Schewel","r":"Mayor, Durham, NC"}]}],"slug":"durham"},"37065":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.999}],"sh":[{"d":"NC House District 23","rep":"Shelly Willingham","w":1.0}],"ss":[{"d":"NC Senate District 5","rep":"Kandie Smith","w":1.0}]},"munis":[],"slug":"edgecombe"},"37067":{"county":[],"districts":{"cd":[{"d":"NC-10","rep":"Pat Harrigan","w":0.648},{"d":"NC-06","rep":"Addison P. McDowell","w":0.352}],"sh":[{"d":"NC House District 74","rep":"Jeff Zenger","w":0.319},{"d":"NC House District 75","rep":"Donny Lambeth","w":0.291},{"d":"NC House District 91","rep":"Kyle Hall","w":0.183},{"d":"NC House District 71","rep":"Kanika Brown","w":0.111},{"d":"NC House District 72","rep":"Amber Baker","w":0.096}],"ss":[{"d":"NC Senate District 31","rep":"Dana Jones","w":0.715},{"d":"NC Senate District 32","rep":"Paul Lowe","w":0.284}]},"munis":[{"m":"Clemmons","p":[{"n":"Michael Rogers","r":"Mayor, Clemmons, NC"}]},{"m":"Kernersville","p":[{"n":"Dawn H. Morgan","r":"Mayor, Kernersville, NC"}]},{"m":"Lewisville","p":[{"n":"Mike Horn","r":"Mayor, Lewisville, NC"}]},{"m":"Winston Salem","p":[{"n":"Allen Joines","r":"Mayor, Winston-Salem, NC"}]}],"slug":"forsyth"},"37069":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.999}],"sh":[{"d":"NC House District 7","rep":"Matthew Winslow","w":1.0}],"ss":[{"d":"NC Senate District 11","rep":"Lisa Barnes","w":1.0}]},"munis":[{"m":"Franklinton","p":[{"n":"Arthur Wright","r":"Mayor, Franklinton, NC"}]}],"slug":"franklin"},"37071":{"county":[],"districts":{"cd":[{"d":"NC-14","rep":"Tim Moore","w":1.0}],"sh":[{"d":"NC House District 108","rep":"John Torbett","w":0.395},{"d":"NC House District 110","rep":"Kelly Hastings","w":0.361},{"d":"NC House District 109","rep":"Donnie Loftis","w":0.243}],"ss":[{"d":"NC Senate District 43","rep":"Brad Overcash","w":0.819},{"d":"NC Senate District 44","rep":"Ted Alexander","w":0.18}]},"munis":[{"m":"Belmont","p":[{"n":"Jim Hefferan","r":"Mayor, Belmont, NC"}]},{"m":"Gastonia","p":[{"n":"Richard Franks","r":"Mayor, Gastonia, NC"}]},{"m":"Stanley","p":[{"n":"Cathy Kirkland","r":"Mayor, Stanley, NC"}]}],"slug":"gaston"},"37073":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":1.0}],"sh":[{"d":"NC House District 5","rep":"Bill Ward","w":0.999}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.999}]},"munis":[],"slug":"gates"},"37075":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 120","rep":"Karl Gillespie","w":0.999}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":0.999}]},"munis":[{"m":"Fontana Dam","p":[{"n":"Rob Hardy","r":"Mayor, Fontana Dam, NC"}]}],"slug":"graham"},"37077":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.942},{"d":"NC-01","rep":"Donald G. Davis","w":0.058}],"sh":[{"d":"NC House District 32","rep":"Bryan Cohn","w":1.0}],"ss":[{"d":"NC Senate District 18","rep":"Haseeb Fatmi","w":1.0}]},"munis":[],"slug":"granville"},"37079":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.997}],"sh":[{"d":"NC House District 12","rep":"Chris Humphrey","w":1.0}],"ss":[{"d":"NC Senate District 4","rep":"Buck Newton","w":1.0}]},"munis":[],"slug":"greene"},"37081":{"county":[],"districts":{"cd":[{"d":"NC-09","rep":"Richard Hudson","w":0.54},{"d":"NC-05","rep":"Virginia Foxx","w":0.304},{"d":"NC-06","rep":"Addison P. McDowell","w":0.155}],"sh":[{"d":"NC House District 59","rep":"Alan Branson","w":0.49},{"d":"NC House District 62","rep":"John Blust","w":0.243},{"d":"NC House District 58","rep":"Amos Quick","w":0.083},{"d":"NC House District 57","rep":"Tracy Clark","w":0.075},{"d":"NC House District 60","rep":"Amanda Cook","w":0.067},{"d":"NC House District 61","rep":"Pricey Harrison","w":0.041}],"ss":[{"d":"NC Senate District 26","rep":"Phil Berger","w":0.628},{"d":"NC Senate District 27","rep":"Michael Garrett","w":0.231},{"d":"NC Senate District 28","rep":"Gladys Robinson","w":0.141}]},"munis":[{"m":"Greensboro","p":[{"n":"Marikay Abuzuaiter","r":"Mayor, Greensboro, NC"}]},{"m":"High Point","p":[{"n":"Cyril Jefferson","r":"Mayor, High Point, NC"}]},{"m":"Stokesdale","p":[{"n":"Mike Crawford","r":"Mayor, Stokesdale, NC"}]}],"slug":"guilford"},"37083":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":1.0}],"sh":[{"d":"NC House District 27","rep":"Rodney Pierce","w":1.0}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":1.0}]},"munis":[],"slug":"halifax"},"37085":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.998}],"sh":[{"d":"NC House District 6","rep":"Joe Pike","w":0.748},{"d":"NC House District 53","rep":"Howard Penny","w":0.252}],"ss":[{"d":"NC Senate District 12","rep":"Jim Burgin","w":1.0}]},"munis":[{"m":"Dunn","p":[{"n":"William P. Elmore Jr.","r":"Mayor, Dunn, NC"}]}],"slug":"harnett"},"37087":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":1.0}],"sh":[{"d":"NC House District 118","rep":"Mark Pless","w":0.999}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":0.737},{"d":"NC Senate District 47","rep":"Ralph Hise","w":0.262}]},"munis":[{"m":"Canton","p":[{"n":"Zeb Smathers","r":"Mayor, Canton, NC"}]}],"slug":"haywood"},"37089":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.998}],"sh":[{"d":"NC House District 117","rep":"Jennifer Balkcom","w":0.667},{"d":"NC House District 113","rep":"Jake Johnson","w":0.332}],"ss":[{"d":"NC Senate District 48","rep":"Tim Moffitt","w":0.999}]},"munis":[{"m":"Hendersonville","p":[{"n":"Barbara G. Volk","r":"Mayor, Hendersonville, NC"}]}],"slug":"henderson"},"37091":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.996}],"sh":[{"d":"NC House District 5","rep":"Bill Ward","w":0.995}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.995}]},"munis":[],"slug":"hertford"},"37093":{"county":[],"districts":{"cd":[{"d":"NC-09","rep":"Richard Hudson","w":0.999}],"sh":[{"d":"NC House District 48","rep":"Garland Pierce","w":1.0}],"ss":[{"d":"NC Senate District 24","rep":"Danny Britt","w":1.0}]},"munis":[],"slug":"hoke"},"37095":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.515}],"sh":[{"d":"NC House District 79","rep":"Keith Kidwell","w":0.483}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":0.483}]},"munis":[],"slug":"hyde"},"37097":{"county":[],"districts":{"cd":[{"d":"NC-10","rep":"Pat Harrigan","w":0.999}],"sh":[{"d":"NC House District 84","rep":"Jeff McNeely","w":0.74},{"d":"NC House District 95","rep":"Todd Carver","w":0.166},{"d":"NC House District 89","rep":"Mitchell Setzer","w":0.094}],"ss":[{"d":"NC Senate District 37","rep":"Vickie Sawyer","w":1.0}]},"munis":[{"m":"Mooresville","p":[{"n":"Chris Carney","r":"Mayor, Mooresville, NC"}]},{"m":"Statesville","p":[{"n":"Costi Kutteh","r":"Mayor, Statesville, NC"}]}],"slug":"iredell"},"37099":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":1.0}],"sh":[{"d":"NC House District 119","rep":"Anna Ferguson","w":0.999}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":1.0}]},"munis":[],"slug":"jackson"},"37101":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.999}],"sh":[{"d":"NC House District 28","rep":"Larry Strickland","w":0.651},{"d":"NC House District 26","rep":"Donna White","w":0.254},{"d":"NC House District 53","rep":"Howard Penny","w":0.095}],"ss":[{"d":"NC Senate District 10","rep":"Benton Sawrey","w":1.0}]},"munis":[{"m":"Clayton","p":[{"n":"Jody McLeod","r":"Mayor, Clayton, NC"}]},{"m":"Selma","p":[{"n":"Byron McAllister","r":"Mayor, Selma, NC"}]}],"slug":"johnston"},"37103":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":1.0}],"sh":[{"d":"NC House District 12","rep":"Chris Humphrey","w":1.0}],"ss":[{"d":"NC Senate District 9","rep":"Brent Jackson","w":1.0}]},"munis":[{"m":"Pollocksville","p":[{"n":"Jay Bender","r":"Mayor, Pollocksville, NC"}]}],"slug":"jones"},"37105":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.992},{"d":"NC-09","rep":"Richard Hudson","w":0.008}],"sh":[{"d":"NC House District 51","rep":"John Sauls","w":1.0}],"ss":[{"d":"NC Senate District 12","rep":"Jim Burgin","w":1.0}]},"munis":[],"slug":"lee"},"37107":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.998}],"sh":[{"d":"NC House District 12","rep":"Chris Humphrey","w":1.0}],"ss":[{"d":"NC Senate District 3","rep":"Bob Brinson","w":1.0}]},"munis":[],"slug":"lenoir"},"37109":{"county":[],"districts":{"cd":[{"d":"NC-10","rep":"Pat Harrigan","w":0.999}],"sh":[{"d":"NC House District 97","rep":"Heather Rhyne","w":1.0}],"ss":[{"d":"NC Senate District 44","rep":"Ted Alexander","w":1.0}]},"munis":[],"slug":"lincoln"},"37111":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.997}],"sh":[{"d":"NC House District 85","rep":"Dudley Greene","w":0.826},{"d":"NC House District 113","rep":"Jake Johnson","w":0.173}],"ss":[{"d":"NC Senate District 46","rep":"Warren Daniel","w":1.0}]},"munis":[],"slug":"mcdowell"},"37113":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":1.0}],"sh":[{"d":"NC House District 120","rep":"Karl Gillespie","w":0.999}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":1.0}]},"munis":[],"slug":"macon"},"37115":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.998}],"sh":[{"d":"NC House District 118","rep":"Mark Pless","w":0.999}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":0.999}]},"munis":[{"m":"Mars Hill","p":[{"n":"John L. Chandler","r":"Mayor, Mars Hill, NC"}]}],"slug":"madison"},"37117":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":1.0}],"sh":[{"d":"NC House District 23","rep":"Shelly Willingham","w":1.0}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":1.0}]},"munis":[],"slug":"martin"},"37119":{"county":[],"districts":{"cd":[{"d":"NC-12","rep":"Alma S. Adams","w":0.502},{"d":"NC-14","rep":"Tim Moore","w":0.361},{"d":"NC-08","rep":"Mark Harris","w":0.136}],"sh":[{"d":"NC House District 92","rep":"Terry Brown","w":0.131},{"d":"NC House District 101","rep":"Carolyn Logan","w":0.127},{"d":"NC House District 98","rep":"Beth Gardner Helfrich","w":0.123},{"d":"NC House District 105","rep":"Tricia Cotham","w":0.111},{"d":"NC House District 106","rep":"Carla Cunningham","w":0.074},{"d":"NC House District 107","rep":"Aisha Dew","w":0.069},{"d":"NC House District 112","rep":"Jordan Lopez","w":0.065},{"d":"NC House District 103","rep":"Laura Budd","w":0.059},{"d":"NC House District 99","rep":"Nasif Majeed","w":0.052},{"d":"NC House District 100","rep":"Julia Greenfield","w":0.052},{"d":"NC House District 104","rep":"Brandon Lofton","w":0.05},{"d":"NC House District 88","rep":"Mary Belk","w":0.048},{"d":"NC House District 102","rep":"Becky Carney","w":0.038}],"ss":[{"d":"NC Senate District 38","rep":"Mujtaba Mohammed","w":0.247},{"d":"NC Senate District 39","rep":"DeAndrea Salvador","w":0.208},{"d":"NC Senate District 42","rep":"Woodson Bradley","w":0.193},{"d":"NC Senate District 41","rep":"Caleb Theodros","w":0.163},{"d":"NC Senate District 40","rep":"Joyce Waddell","w":0.135},{"d":"NC Senate District 37","rep":"Vickie Sawyer","w":0.053}]},"munis":[{"m":"Charlotte","p":[{"n":"Vi Lyles","r":"Mayor, Charlotte, NC"}]},{"m":"Davidson","p":[{"n":"Rusty Knox","r":"Mayor, Davidson, NC"}]},{"m":"Huntersville","p":[{"n":"Christy Clark","r":"Mayor, Huntersville, NC"}]}],"slug":"mecklenburg"},"37121":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 85","rep":"Dudley Greene","w":0.999}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":0.999}]},"munis":[{"m":"Spruce Pine","p":[{"n":"Phillip Hise","r":"Mayor, Spruce Pine, NC"}]}],"slug":"mitchell"},"37123":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":1.0}],"sh":[{"d":"NC House District 67","rep":"Cody Huneycutt","w":1.0}],"ss":[{"d":"NC Senate District 29","rep":"Dave Craven","w":1.0}]},"munis":[],"slug":"montgomery"},"37125":{"county":[],"districts":{"cd":[{"d":"NC-09","rep":"Richard Hudson","w":0.995}],"sh":[{"d":"NC House District 78","rep":"Neal Jackson","w":0.471},{"d":"NC House District 51","rep":"John Sauls","w":0.328},{"d":"NC House District 52","rep":"Ben Moss","w":0.2}],"ss":[{"d":"NC Senate District 21","rep":"Tom McInnis","w":1.0}]},"munis":[{"m":"Pinehurst","p":[{"n":"Patrick Pizzella","r":"Mayor, Pinehurst, NC"}]},{"m":"Southern Pines","p":[{"n":"Taylor Clement","r":"Mayor, Southern Pines, NC"}]}],"slug":"moore"},"37127":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.999}],"sh":[{"d":"NC House District 25","rep":"Allen Chesser","w":0.965},{"d":"NC House District 24","rep":"Dante Pittman","w":0.035}],"ss":[{"d":"NC Senate District 11","rep":"Lisa Barnes","w":1.0}]},"munis":[{"m":"Rocky Mount","p":[{"n":"Sandy Roberson","r":"Mayor, Rocky Mount, NC"}]}],"slug":"nash"},"37129":{"county":[],"districts":{"cd":[{"d":"NC-07","rep":"David Rouzer","w":0.664}],"sh":[{"d":"NC House District 20","rep":"Ted Davis","w":0.408},{"d":"NC House District 19","rep":"Charlie Miller","w":0.137},{"d":"NC House District 18","rep":"Deb Butler","w":0.121}],"ss":[{"d":"NC Senate District 7","rep":"Michael Lee","w":0.636},{"d":"NC Senate District 8","rep":"Bill Rabon","w":0.031}]},"munis":[{"m":"Carolina Beach","p":[{"n":"Lynn Barbee","r":"Mayor, Carolina Beach, NC"}]},{"m":"Kure Beach","p":[{"n":"Allen Oliver","r":"Mayor, Kure Beach, NC"}]},{"m":"Wilmington","p":[{"n":"Bill Saffo","r":"Mayor, Wilmington, NC"}]},{"m":"Wrightsville Beach","p":[{"n":"Darryl Mills","r":"Mayor, Wrightsville Beach, NC"}]}],"slug":"new-hanover"},"37131":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":1.0}],"sh":[{"d":"NC House District 27","rep":"Rodney Pierce","w":1.0}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":1.0}]},"munis":[],"slug":"northampton"},"37133":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.899}],"sh":[{"d":"NC House District 14","rep":"Wyatt Gable","w":0.353},{"d":"NC House District 15","rep":"Phil Shepard","w":0.338},{"d":"NC House District 16","rep":"Carson Smith","w":0.195}],"ss":[{"d":"NC Senate District 6","rep":"Michael Lazzara","w":0.885}]},"munis":[{"m":"Jacksonville","p":[{"n":"Sammy Phillips","r":"Mayor, Jacksonville, NC"}]}],"slug":"onslow"},"37135":{"county":[],"districts":{"cd":[{"d":"NC-04","rep":"Valerie P. Foushee","w":0.999}],"sh":[{"d":"NC House District 50","rep":"Renée Price","w":0.86},{"d":"NC House District 56","rep":"Allen Buansi","w":0.14}],"ss":[{"d":"NC Senate District 23","rep":"Jonah Garson","w":1.0}]},"munis":[{"m":"Carrboro","p":[{"n":"Barbara Foushee","r":"Mayor, Carrboro, NC"}]},{"m":"Chapel Hill","p":[{"n":"Jessica Anderson","r":"Mayor, Chapel Hill, NC"}]}],"slug":"orange"},"37137":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.689}],"sh":[{"d":"NC House District 79","rep":"Keith Kidwell","w":0.649}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":0.649}]},"munis":[],"slug":"pamlico"},"37139":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.805}],"sh":[{"d":"NC House District 5","rep":"Bill Ward","w":0.8}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.8}]},"munis":[{"m":"Elizabeth City","p":[{"n":"E. Kirk Rivers","r":"Mayor, Elizabeth City, NC"}]}],"slug":"pasquotank"},"37141":{"county":[],"districts":{"cd":[{"d":"NC-07","rep":"David Rouzer","w":0.943}],"sh":[{"d":"NC House District 16","rep":"Carson Smith","w":0.944}],"ss":[{"d":"NC Senate District 9","rep":"Brent Jackson","w":0.944}]},"munis":[],"slug":"pender"},"37143":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.777}],"sh":[{"d":"NC House District 1","rep":"Ed Goodwin","w":0.766}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.766}]},"munis":[],"slug":"perquimans"},"37145":{"county":[],"districts":{"cd":[{"d":"NC-13","rep":"Brad Knott","w":0.999}],"sh":[{"d":"NC House District 2","rep":"Ray Jeffers","w":1.0}],"ss":[{"d":"NC Senate District 23","rep":"Jonah Garson","w":1.0}]},"munis":[],"slug":"person"},"37147":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.997}],"sh":[{"d":"NC House District 9","rep":"Tim Reeder","w":0.596},{"d":"NC House District 8","rep":"Gloristine Brown","w":0.403}],"ss":[{"d":"NC Senate District 5","rep":"Kandie Smith","w":1.0}]},"munis":[{"m":"Greenville","p":[{"n":"P.J. Connelly","r":"Mayor, Greenville, NC"}]}],"slug":"pitt"},"37149":{"county":[],"districts":{"cd":[{"d":"NC-14","rep":"Tim Moore","w":0.52},{"d":"NC-11","rep":"Chuck Edwards","w":0.48}],"sh":[{"d":"NC House District 113","rep":"Jake Johnson","w":0.999}],"ss":[{"d":"NC Senate District 48","rep":"Tim Moffitt","w":0.999}]},"munis":[],"slug":"polk"},"37151":{"county":[],"districts":{"cd":[{"d":"NC-09","rep":"Richard Hudson","w":1.0}],"sh":[{"d":"NC House District 78","rep":"Neal Jackson","w":0.628},{"d":"NC House District 70","rep":"Brian Biggs","w":0.303},{"d":"NC House District 54","rep":"Robert Reives","w":0.069}],"ss":[{"d":"NC Senate District 29","rep":"Dave Craven","w":0.769},{"d":"NC Senate District 25","rep":"Amy Galey","w":0.231}]},"munis":[{"m":"Asheboro","p":[{"n":"David Smith","r":"Mayor, Asheboro, NC"}]},{"m":"Ramseur","p":[{"n":"Hampton Spivey","r":"Mayor, Ramseur, NC"}]}],"slug":"randolph"},"37153":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":0.998}],"sh":[{"d":"NC House District 52","rep":"Ben Moss","w":1.0}],"ss":[{"d":"NC Senate District 29","rep":"Dave Craven","w":1.0}]},"munis":[{"m":"Rockingham","p":[{"n":"John Hutchinson","r":"Mayor, Rockingham, NC"}]}],"slug":"richmond"},"37155":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":0.558},{"d":"NC-07","rep":"David Rouzer","w":0.442}],"sh":[{"d":"NC House District 47","rep":"John Lowery","w":0.597},{"d":"NC House District 46","rep":"Brenden Jones","w":0.403}],"ss":[{"d":"NC Senate District 24","rep":"Danny Britt","w":1.0}]},"munis":[{"m":"Lumberton","p":[{"n":"Bruce Davis","r":"Mayor, Lumberton, NC"}]}],"slug":"robeson"},"37157":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":1.0}],"sh":[{"d":"NC House District 65","rep":"Reece Pyrtle","w":1.0}],"ss":[{"d":"NC Senate District 26","rep":"Phil Berger","w":1.0}]},"munis":[{"m":"Eden","p":[{"n":"Neville Hall","r":"Mayor, Eden, NC"}]}],"slug":"rockingham"},"37159":{"county":[],"districts":{"cd":[{"d":"NC-06","rep":"Addison P. McDowell","w":1.0}],"sh":[{"d":"NC House District 76","rep":"Harry Warren","w":0.5},{"d":"NC House District 77","rep":"Julia Howard","w":0.266},{"d":"NC House District 83","rep":"Grant Campbell","w":0.234}],"ss":[{"d":"NC Senate District 33","rep":"Carl Ford","w":1.0}]},"munis":[{"m":"Salisbury","p":[{"n":"Karen K. Alexander","r":"Mayor, Salisbury, NC"}]}],"slug":"rowan"},"37161":{"county":[],"districts":{"cd":[{"d":"NC-14","rep":"Tim Moore","w":0.998}],"sh":[{"d":"NC House District 113","rep":"Jake Johnson","w":0.545},{"d":"NC House District 111","rep":"Paul Scott","w":0.455}],"ss":[{"d":"NC Senate District 48","rep":"Tim Moffitt","w":1.0}]},"munis":[],"slug":"rutherford"},"37163":{"county":[],"districts":{"cd":[{"d":"NC-03","rep":"Gregory F. Murphy","w":0.811},{"d":"NC-07","rep":"David Rouzer","w":0.189}],"sh":[{"d":"NC House District 22","rep":"William Brisson","w":1.0}],"ss":[{"d":"NC Senate District 9","rep":"Brent Jackson","w":0.959},{"d":"NC Senate District 12","rep":"Jim Burgin","w":0.041}]},"munis":[{"m":"Clinton","p":[{"n":"Lew Starling","r":"Mayor, Clinton, NC"}]}],"slug":"sampson"},"37165":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":0.998}],"sh":[{"d":"NC House District 48","rep":"Garland Pierce","w":0.999}],"ss":[{"d":"NC Senate District 24","rep":"Danny Britt","w":0.999}]},"munis":[{"m":"Laurinburg","p":[{"n":"Jim Willis","r":"Mayor, Laurinburg, NC"}]}],"slug":"scotland"},"37167":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":1.0}],"sh":[{"d":"NC House District 67","rep":"Cody Huneycutt","w":1.0}],"ss":[{"d":"NC Senate District 33","rep":"Carl Ford","w":1.0}]},"munis":[{"m":"Albemarle","p":[{"n":"Q131798851","r":"Mayor, Albemarle, NC"}]}],"slug":"stanly"},"37169":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":1.0}],"sh":[{"d":"NC House District 91","rep":"Kyle Hall","w":1.0}],"ss":[{"d":"NC Senate District 31","rep":"Dana Jones","w":1.0}]},"munis":[],"slug":"stokes"},"37171":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":0.998}],"sh":[{"d":"NC House District 90","rep":"Sarah Stevens","w":0.999}],"ss":[{"d":"NC Senate District 36","rep":"Eddie Settle","w":1.0}]},"munis":[{"m":"Mount Airy","p":[{"n":"Jon Cawley","r":"Mayor, Mount Airy, NC"}]}],"slug":"surry"},"37173":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 119","rep":"Anna Ferguson","w":0.998}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":0.999}]},"munis":[],"slug":"swain"},"37175":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":0.999}],"sh":[{"d":"NC House District 119","rep":"Anna Ferguson","w":0.999}],"ss":[{"d":"NC Senate District 50","rep":"Kevin Corbin","w":0.999}]},"munis":[],"slug":"transylvania"},"37177":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.694}],"sh":[{"d":"NC House District 1","rep":"Ed Goodwin","w":0.685}],"ss":[{"d":"NC Senate District 1","rep":"Bobby Hanig","w":0.685}]},"munis":[],"slug":"tyrrell"},"37179":{"county":[],"districts":{"cd":[{"d":"NC-08","rep":"Mark Harris","w":1.0}],"sh":[{"d":"NC House District 55","rep":"Mark Brody","w":0.585},{"d":"NC House District 69","rep":"Dean Arp","w":0.221},{"d":"NC House District 68","rep":"David Willis","w":0.194}],"ss":[{"d":"NC Senate District 35","rep":"Todd Johnson","w":0.717},{"d":"NC Senate District 29","rep":"Dave Craven","w":0.283}]},"munis":[{"m":"Wesley Chapel","p":[{"n":"Amanda Fuller","r":"Mayor, Wesley Chapel, NC"}]}],"slug":"union"},"37181":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.998}],"sh":[{"d":"NC House District 32","rep":"Bryan Cohn","w":0.594},{"d":"NC House District 7","rep":"Matthew Winslow","w":0.406}],"ss":[{"d":"NC Senate District 11","rep":"Lisa Barnes","w":1.0}]},"munis":[{"m":"Henderson","p":[{"n":"Melissa Elliott","r":"Mayor, Henderson, NC"}]}],"slug":"vance"},"37183":{"county":[],"districts":{"cd":[{"d":"NC-02","rep":"Deborah K. Ross","w":0.48},{"d":"NC-13","rep":"Brad Knott","w":0.323},{"d":"NC-04","rep":"Valerie P. Foushee","w":0.197}],"sh":[{"d":"NC House District 35","rep":"Mike Schietzelt","w":0.193},{"d":"NC House District 39","rep":"James Roberson","w":0.141},{"d":"NC House District 37","rep":"Erin Paré","w":0.134},{"d":"NC House District 33","rep":"Monika Johnson-Hostler","w":0.088},{"d":"NC House District 21","rep":"Ya Liu","w":0.087},{"d":"NC House District 36","rep":"Julie von Haefen","w":0.073},{"d":"NC House District 41","rep":"Maria Cervania","w":0.055},{"d":"NC House District 40","rep":"Phil Rubin","w":0.048},{"d":"NC House District 66","rep":"Sarah Crawford","w":0.043},{"d":"NC House District 49","rep":"Cynthia Ball","w":0.037},{"d":"NC House District 38","rep":"Abe Jones","w":0.036},{"d":"NC House District 11","rep":"Allison Dahle","w":0.033},{"d":"NC House District 34","rep":"Tim Longest","w":0.032}],"ss":[{"d":"NC Senate District 13","rep":"Lisa Grafstein","w":0.302},{"d":"NC Senate District 18","rep":"Haseeb Fatmi","w":0.264},{"d":"NC Senate District 14","rep":"Dan Blue","w":0.155},{"d":"NC Senate District 17","rep":"Sydney Batch","w":0.104},{"d":"NC Senate District 16","rep":"Gale Adcock","w":0.102},{"d":"NC Senate District 15","rep":"Jay Chaudhuri","w":0.073}]},"munis":[{"m":"Apex","p":[{"n":"Jacques Gilbert","r":"Mayor, Apex, NC"}]},{"m":"Cary","p":[{"n":"Harold Weinbrecht","r":"Mayor, Cary, NC"}]},{"m":"Garner","p":[{"n":"Buddy Gupton","r":"Mayor, Garner, NC"}]},{"m":"Knightdale","p":[{"n":"Jessica Day","r":"Mayor, Knightdale, NC"}]},{"m":"Raleigh","p":[{"n":"Nancy McFarlane","r":"Mayor, Raleigh, NC"}]},{"m":"Wake Forest","p":[{"n":"Vivian A. Jones","r":"Mayor, Wake Forest, NC"}]},{"m":"Zebulon","p":[{"n":"Glenn L. York","r":"Mayor, Zebulon, NC"}]}],"slug":"wake"},"37185":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.998}],"sh":[{"d":"NC House District 27","rep":"Rodney Pierce","w":1.0}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":1.0}]},"munis":[],"slug":"warren"},"37187":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.892}],"sh":[{"d":"NC House District 1","rep":"Ed Goodwin","w":0.888}],"ss":[{"d":"NC Senate District 2","rep":"Norman Sanderson","w":0.888}]},"munis":[],"slug":"washington"},"37189":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":0.997}],"sh":[{"d":"NC House District 93","rep":"Ray Pickett","w":0.911},{"d":"NC House District 87","rep":"Destin Hall","w":0.088}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":0.999}]},"munis":[{"m":"Boone","p":[{"n":"Tim Futrelle","r":"Mayor, Boone, NC"}]}],"slug":"watauga"},"37191":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.998}],"sh":[{"d":"NC House District 10","rep":"John Bell","w":0.541},{"d":"NC House District 4","rep":"Jimmy Dixon","w":0.459}],"ss":[{"d":"NC Senate District 4","rep":"Buck Newton","w":1.0}]},"munis":[{"m":"Goldsboro","p":[{"n":"Charles Gaylor","r":"Mayor, Goldsboro, NC"}]}],"slug":"wayne"},"37193":{"county":[],"districts":{"cd":[{"d":"NC-05","rep":"Virginia Foxx","w":1.0}],"sh":[{"d":"NC House District 94","rep":"Blair Eddins","w":0.723},{"d":"NC House District 90","rep":"Sarah Stevens","w":0.277}],"ss":[{"d":"NC Senate District 36","rep":"Eddie Settle","w":1.0}]},"munis":[],"slug":"wilkes"},"37195":{"county":[],"districts":{"cd":[{"d":"NC-01","rep":"Donald G. Davis","w":0.999}],"sh":[{"d":"NC House District 24","rep":"Dante Pittman","w":1.0}],"ss":[{"d":"NC Senate District 4","rep":"Buck Newton","w":1.0}]},"munis":[{"m":"Wilson","p":[{"n":"Carlton L. Stevens","r":"Mayor, Wilson, NC"}]}],"slug":"wilson"},"37197":{"county":[],"districts":{"cd":[{"d":"NC-10","rep":"Pat Harrigan","w":0.995},{"d":"NC-05","rep":"Virginia Foxx","w":0.005}],"sh":[{"d":"NC House District 77","rep":"Julia Howard","w":1.0}],"ss":[{"d":"NC Senate District 36","rep":"Eddie Settle","w":1.0}]},"munis":[{"m":"Yadkinville","p":[{"n":"Eddie Norman","r":"Mayor, Yadkinville, NC"}]}],"slug":"yadkin"},"37199":{"county":[],"districts":{"cd":[{"d":"NC-11","rep":"Chuck Edwards","w":1.0}],"sh":[{"d":"NC House District 85","rep":"Dudley Greene","w":1.0}],"ss":[{"d":"NC Senate District 47","rep":"Ralph Hise","w":1.0}]},"munis":[],"slug":"yancey"},"38001":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":1.0}],"ss":[{"d":"ND Senate District 39","rep":"Greg Kessel","w":1.0}]},"munis":[],"slug":"adams"},"38003":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 24","rep":"Dan Johnston, Dwight Kiefert","w":1.0}],"ss":[{"d":"ND Senate District 24","rep":"Mike Wobbema","w":1.0}]},"munis":[],"slug":"barnes"},"38005":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 9","rep":"Collette Brown, Jayme Davis","w":0.644},{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":0.355}],"ss":[{"d":"ND Senate District 9","rep":"Richard Marcellais","w":0.644},{"d":"ND Senate District 14","rep":"Jerry Klein","w":0.355}]},"munis":[],"slug":"benson"},"38007":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":1.0}],"ss":[{"d":"ND Senate District 39","rep":"Greg Kessel","w":1.0}]},"munis":[],"slug":"billings"},"38009":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 6","rep":"Dan Vollmer, Dick Anderson","w":1.0}],"ss":[{"d":"ND Senate District 6","rep":"Paul Thomas","w":1.0}]},"munis":[],"slug":"bottineau"},"38011":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":1.0}],"ss":[{"d":"ND Senate District 39","rep":"Greg Kessel","w":1.0}]},"munis":[],"slug":"bowman"},"38013":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 2","rep":"Bert Anderson, Donald Longmuir","w":1.0}],"ss":[{"d":"ND Senate District 2","rep":"Mark Enget","w":1.0}]},"munis":[],"slug":"burke"},"38015":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":0.58},{"d":"ND House District 8","rep":"Mike Berg, SuAnn Olson","w":0.36},{"d":"ND House District 30","rep":"Glenn Bosch, Mike Nathe","w":0.032},{"d":"ND House District 7","rep":"Jason Dockter, Matt Heilman","w":0.014},{"d":"ND House District 47","rep":"Larry Klemin, Mike Motschenbacher","w":0.007}],"ss":[{"d":"ND Senate District 14","rep":"Jerry Klein","w":0.58},{"d":"ND Senate District 8","rep":"Jeff Magrum","w":0.36},{"d":"ND Senate District 30","rep":"Diane Larson","w":0.032},{"d":"ND Senate District 7","rep":"Michelle Axtman","w":0.014},{"d":"ND Senate District 47","rep":"Mike Dwyer","w":0.007}]},"munis":[{"m":"Bismarck","p":[{"n":"Mike Schmitz","r":"Mayor, Bismarck, ND"}]}],"slug":"burleigh"},"38017":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":0.999}],"sh":[{"d":"ND House District 22","rep":"Brandy Pyle, Jonathan Warrey","w":0.793},{"d":"ND House District 45","rep":"Carrie McLeod, Scott Wagner","w":0.14},{"d":"ND House District 27","rep":"Greg Stemen, T.J. Brown","w":0.043}],"ss":[{"d":"ND Senate District 22","rep":"Mark Weber","w":0.793},{"d":"ND Senate District 45","rep":"Ron Sorvaag","w":0.14},{"d":"ND Senate District 27","rep":"Kristin Roers","w":0.043}]},"munis":[{"m":"Fargo","p":[{"n":"Tim Mahoney","r":"Mayor, Fargo, ND"}]}],"slug":"cass"},"38019":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 15","rep":"Donna Henderson, Kathy Frelich","w":0.75},{"d":"ND House District 19","rep":"Dave Monson, Karen Anderson","w":0.25}],"ss":[{"d":"ND Senate District 15","rep":"Kent Weston","w":0.75},{"d":"ND Senate District 19","rep":"Janne Myrdal","w":0.25}]},"munis":[],"slug":"cavalier"},"38021":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 28","rep":"Jim Grueneich, Mike Brandenburg","w":1.0}],"ss":[{"d":"ND Senate District 28","rep":"Robert Erbele","w":1.0}]},"munis":[],"slug":"dickey"},"38023":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 2","rep":"Bert Anderson, Donald Longmuir","w":1.0}],"ss":[{"d":"ND Senate District 2","rep":"Mark Enget","w":1.0}]},"munis":[],"slug":"divide"},"38025":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 26","rep":"Kelby Timmons, Roger Maki","w":0.59},{"d":"ND House District 4A","rep":"Lisa Finley-DeVille","w":0.202},{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":0.185},{"d":"ND House District 36","rep":"Dori Hauck, Ty Dressler","w":0.023}],"ss":[{"d":"ND Senate District 26","rep":"Dale Patten","w":0.59},{"d":"ND Senate District 4","rep":"Chuck Walen","w":0.202},{"d":"ND Senate District 39","rep":"Greg Kessel","w":0.185},{"d":"ND Senate District 36","rep":"Desiree Van Oosting","w":0.023}]},"munis":[],"slug":"dunn"},"38027":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":0.874},{"d":"ND House District 9","rep":"Collette Brown, Jayme Davis","w":0.126}],"ss":[{"d":"ND Senate District 14","rep":"Jerry Klein","w":0.874},{"d":"ND Senate District 9","rep":"Richard Marcellais","w":0.126}]},"munis":[],"slug":"eddy"},"38029":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 8","rep":"Mike Berg, SuAnn Olson","w":1.0}],"ss":[{"d":"ND Senate District 8","rep":"Jeff Magrum","w":1.0}]},"munis":[],"slug":"emmons"},"38031":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 29","rep":"Craig Headland, Don Vigesaa","w":1.0}],"ss":[{"d":"ND Senate District 29","rep":"Terry Wanzek","w":1.0}]},"munis":[],"slug":"foster"},"38033":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":1.0}],"ss":[{"d":"ND Senate District 39","rep":"Greg Kessel","w":1.0}]},"munis":[],"slug":"golden-valley"},"38035":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":0.999}],"sh":[{"d":"ND House District 20","rep":"Dave Rustebakke","w":0.824},{"d":"ND House District 42","rep":"Doug Osowski, Dustin McNally","w":0.094},{"d":"ND House District 18","rep":"Nels Christianson, Steve Vetter","w":0.05},{"d":"ND House District 17","rep":"Landon Bahl, Mark Sanford","w":0.029}],"ss":[{"d":"ND Senate District 20","rep":"Randy Lemm","w":0.824},{"d":"ND Senate District 42","rep":"Claire Cory","w":0.094},{"d":"ND Senate District 18","rep":"Scott Meyer","w":0.05},{"d":"ND Senate District 17","rep":"Jonathan Sickler","w":0.029}]},"munis":[],"slug":"grand-forks"},"38037":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 31","rep":"Dawson Holle, Karen Rohr","w":1.0}],"ss":[{"d":"ND Senate District 31","rep":"Don Schaible","w":1.0}]},"munis":[],"slug":"grant"},"38039":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 29","rep":"Craig Headland, Don Vigesaa","w":1.0}],"ss":[{"d":"ND Senate District 29","rep":"Terry Wanzek","w":1.0}]},"munis":[],"slug":"griggs"},"38041":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 31","rep":"Dawson Holle, Karen Rohr","w":0.505},{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":0.495}],"ss":[{"d":"ND Senate District 31","rep":"Don Schaible","w":0.505},{"d":"ND Senate District 39","rep":"Greg Kessel","w":0.495}]},"munis":[],"slug":"hettinger"},"38043":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":1.0}],"ss":[{"d":"ND Senate District 14","rep":"Jerry Klein","w":1.0}]},"munis":[],"slug":"kidder"},"38045":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 28","rep":"Jim Grueneich, Mike Brandenburg","w":1.0}],"ss":[{"d":"ND Senate District 28","rep":"Robert Erbele","w":1.0}]},"munis":[],"slug":"lamoure"},"38047":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 28","rep":"Jim Grueneich, Mike Brandenburg","w":1.0}],"ss":[{"d":"ND Senate District 28","rep":"Robert Erbele","w":1.0}]},"munis":[],"slug":"logan"},"38049":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 6","rep":"Dan Vollmer, Dick Anderson","w":1.0}],"ss":[{"d":"ND Senate District 6","rep":"Paul Thomas","w":1.0}]},"munis":[],"slug":"mchenry"},"38051":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 28","rep":"Jim Grueneich, Mike Brandenburg","w":1.0}],"ss":[{"d":"ND Senate District 28","rep":"Robert Erbele","w":1.0}]},"munis":[{"m":"Ashley","p":[{"n":"Erich Schock","r":"Mayor, Ashley, ND"}]}],"slug":"mcintosh"},"38053":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 26","rep":"Kelby Timmons, Roger Maki","w":0.943},{"d":"ND House District 4A","rep":"Lisa Finley-DeVille","w":0.057}],"ss":[{"d":"ND Senate District 26","rep":"Dale Patten","w":0.943},{"d":"ND Senate District 4","rep":"Chuck Walen","w":0.057}]},"munis":[],"slug":"mckenzie"},"38055":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 6","rep":"Dan Vollmer, Dick Anderson","w":0.432},{"d":"ND House District 4B","rep":"Clayton Fegley","w":0.211},{"d":"ND House District 4A","rep":"Lisa Finley-DeVille","w":0.205},{"d":"ND House District 33","rep":"Anna Novak, Bill Tveit","w":0.152}],"ss":[{"d":"ND Senate District 6","rep":"Paul Thomas","w":0.432},{"d":"ND Senate District 4","rep":"Chuck Walen","w":0.415},{"d":"ND Senate District 33","rep":"Keith Boehm","w":0.152}]},"munis":[],"slug":"mclean"},"38057":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 33","rep":"Anna Novak, Bill Tveit","w":0.923},{"d":"ND House District 4A","rep":"Lisa Finley-DeVille","w":0.077}],"ss":[{"d":"ND Senate District 33","rep":"Keith Boehm","w":0.923},{"d":"ND Senate District 4","rep":"Chuck Walen","w":0.077}]},"munis":[],"slug":"mercer"},"38059":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 31","rep":"Dawson Holle, Karen Rohr","w":0.491},{"d":"ND House District 36","rep":"Dori Hauck, Ty Dressler","w":0.427},{"d":"ND House District 33","rep":"Anna Novak, Bill Tveit","w":0.077},{"d":"ND House District 34","rep":"Nathan Toman, Todd Porter","w":0.005}],"ss":[{"d":"ND Senate District 31","rep":"Don Schaible","w":0.491},{"d":"ND Senate District 36","rep":"Desiree Van Oosting","w":0.427},{"d":"ND Senate District 33","rep":"Keith Boehm","w":0.077},{"d":"ND Senate District 34","rep":"Justin Gerhardt","w":0.005}]},"munis":[],"slug":"morton"},"38061":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 4B","rep":"Clayton Fegley","w":0.561},{"d":"ND House District 2","rep":"Bert Anderson, Donald Longmuir","w":0.225},{"d":"ND House District 4A","rep":"Lisa Finley-DeVille","w":0.214}],"ss":[{"d":"ND Senate District 4","rep":"Chuck Walen","w":0.775},{"d":"ND Senate District 2","rep":"Mark Enget","w":0.225}]},"munis":[],"slug":"mountrail"},"38063":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 29","rep":"Craig Headland, Don Vigesaa","w":0.999}],"ss":[{"d":"ND Senate District 29","rep":"Terry Wanzek","w":0.999}]},"munis":[],"slug":"nelson"},"38065":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 33","rep":"Anna Novak, Bill Tveit","w":1.0}],"ss":[{"d":"ND Senate District 33","rep":"Keith Boehm","w":1.0}]},"munis":[],"slug":"oliver"},"38067":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":0.998}],"sh":[{"d":"ND House District 19","rep":"Dave Monson, Karen Anderson","w":1.0}],"ss":[{"d":"ND Senate District 19","rep":"Janne Myrdal","w":1.0}]},"munis":[],"slug":"pembina"},"38069":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":0.91},{"d":"ND House District 9","rep":"Collette Brown, Jayme Davis","w":0.09}],"ss":[{"d":"ND Senate District 14","rep":"Jerry Klein","w":0.91},{"d":"ND Senate District 9","rep":"Richard Marcellais","w":0.09}]},"munis":[],"slug":"pierce"},"38071":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 15","rep":"Donna Henderson, Kathy Frelich","w":0.997}],"ss":[{"d":"ND Senate District 15","rep":"Kent Weston","w":0.997}]},"munis":[],"slug":"ramsey"},"38073":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 24","rep":"Dan Johnston, Dwight Kiefert","w":1.0}],"ss":[{"d":"ND Senate District 24","rep":"Mike Wobbema","w":1.0}]},"munis":[],"slug":"ransom"},"38075":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 6","rep":"Dan Vollmer, Dick Anderson","w":1.0}],"ss":[{"d":"ND Senate District 6","rep":"Paul Thomas","w":1.0}]},"munis":[],"slug":"renville"},"38077":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":0.999}],"sh":[{"d":"ND House District 25","rep":"Alisa Mitskog, Kathy Skroch","w":1.0}],"ss":[{"d":"ND Senate District 25","rep":"Larry Luick","w":1.0}]},"munis":[],"slug":"richland"},"38079":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 9","rep":"Collette Brown, Jayme Davis","w":1.0}],"ss":[{"d":"ND Senate District 9","rep":"Richard Marcellais","w":1.0}]},"munis":[],"slug":"rolette"},"38081":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 28","rep":"Jim Grueneich, Mike Brandenburg","w":0.924},{"d":"ND House District 25","rep":"Alisa Mitskog, Kathy Skroch","w":0.076}],"ss":[{"d":"ND Senate District 28","rep":"Robert Erbele","w":0.924},{"d":"ND Senate District 25","rep":"Larry Luick","w":0.076}]},"munis":[],"slug":"sargent"},"38083":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":1.0}],"ss":[{"d":"ND Senate District 14","rep":"Jerry Klein","w":1.0}]},"munis":[],"slug":"sheridan"},"38085":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 31","rep":"Dawson Holle, Karen Rohr","w":1.0}],"ss":[{"d":"ND Senate District 31","rep":"Don Schaible","w":1.0}]},"munis":[],"slug":"sioux"},"38087":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":1.0}],"ss":[{"d":"ND Senate District 39","rep":"Greg Kessel","w":1.0}]},"munis":[],"slug":"slope"},"38089":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 39","rep":"Keith Kempenich, Mike Schatz","w":0.503},{"d":"ND House District 36","rep":"Dori Hauck, Ty Dressler","w":0.49},{"d":"ND House District 37","rep":"Mike Lefor, Vicky Steiner","w":0.006}],"ss":[{"d":"ND Senate District 39","rep":"Greg Kessel","w":0.503},{"d":"ND Senate District 36","rep":"Desiree Van Oosting","w":0.49},{"d":"ND Senate District 37","rep":"Dean Rummel","w":0.006}]},"munis":[{"m":"Dickinson","p":[{"n":"Scott Decker","r":"Mayor, Dickinson, ND"}]}],"slug":"stark"},"38091":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 29","rep":"Craig Headland, Don Vigesaa","w":1.0}],"ss":[{"d":"ND Senate District 29","rep":"Terry Wanzek","w":1.0}]},"munis":[],"slug":"steele"},"38093":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 29","rep":"Craig Headland, Don Vigesaa","w":0.823},{"d":"ND House District 12","rep":"Bernie Satrom, Mitch Ostlie","w":0.177}],"ss":[{"d":"ND Senate District 29","rep":"Terry Wanzek","w":0.823},{"d":"ND Senate District 12","rep":"Cole Conley","w":0.177}]},"munis":[],"slug":"stutsman"},"38095":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 15","rep":"Donna Henderson, Kathy Frelich","w":1.0}],"ss":[{"d":"ND Senate District 15","rep":"Kent Weston","w":1.0}]},"munis":[],"slug":"towner"},"38097":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":0.998}],"sh":[{"d":"ND House District 20","rep":"Dave Rustebakke","w":1.0}],"ss":[{"d":"ND Senate District 20","rep":"Randy Lemm","w":1.0}]},"munis":[],"slug":"traill"},"38099":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":0.997}],"sh":[{"d":"ND House District 19","rep":"Dave Monson, Karen Anderson","w":0.835},{"d":"ND House District 20","rep":"Dave Rustebakke","w":0.165}],"ss":[{"d":"ND Senate District 19","rep":"Janne Myrdal","w":0.835},{"d":"ND Senate District 20","rep":"Randy Lemm","w":0.165}]},"munis":[],"slug":"walsh"},"38101":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 4B","rep":"Clayton Fegley","w":0.529},{"d":"ND House District 38","rep":"Christina Wolff, Dan Ruby","w":0.177},{"d":"ND House District 6","rep":"Dan Vollmer, Dick Anderson","w":0.125},{"d":"ND House District 40","rep":"Macy Bolinske, Matt Ruby","w":0.084},{"d":"ND House District 3","rep":"Jeff Hoverson, Lori VanWinkle","w":0.07},{"d":"ND House District 4A","rep":"Lisa Finley-DeVille","w":0.012}],"ss":[{"d":"ND Senate District 4","rep":"Chuck Walen","w":0.541},{"d":"ND Senate District 38","rep":"David Hogue","w":0.177},{"d":"ND Senate District 6","rep":"Paul Thomas","w":0.125},{"d":"ND Senate District 40","rep":"Jose Castaneda","w":0.084},{"d":"ND Senate District 3","rep":"Bob Paulson","w":0.07}]},"munis":[{"m":"Minot","p":[{"n":"Shaun Sipma","r":"Mayor, Minot, ND"}]}],"slug":"ward"},"38103":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 14","rep":"Jon Nelson, Robin Weisz","w":1.0}],"ss":[{"d":"ND Senate District 14","rep":"Jerry Klein","w":1.0}]},"munis":[],"slug":"wells"},"38105":{"county":[],"districts":{"cd":[{"d":"ND-00","rep":"Julie Fedorchak","w":1.0}],"sh":[{"d":"ND House District 2","rep":"Bert Anderson, Donald Longmuir","w":0.903},{"d":"ND House District 23","rep":"Dennis Nehring, Nico Rios","w":0.09},{"d":"ND House District 1","rep":"David Richter, Patrick Hatlestad","w":0.007}],"ss":[{"d":"ND Senate District 2","rep":"Mark Enget","w":0.903},{"d":"ND Senate District 23","rep":"Todd Beard","w":0.09},{"d":"ND Senate District 1","rep":"Brad Bekkedahl","w":0.007}]},"munis":[],"slug":"williams"},"39001":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":0.999}],"sh":[{"d":"OH House District 90","rep":"Justin Pizzulli","w":1.0}],"ss":[{"d":"OH Senate District 14","rep":"Terry Johnson","w":1.0}]},"munis":[],"slug":"adams"},"39003":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 78","rep":"Matt Huffman","w":1.0}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":1.0}]},"munis":[{"m":"Delphos","p":[{"n":"Andre McConnahea","r":"Mayor, Delphos, OH"}]},{"m":"Lima","p":[{"n":"Sharetta Smith","r":"Mayor, Lima, OH"}]}],"slug":"allen"},"39005":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 67","rep":"Melanie Miller","w":1.0}],"ss":[{"d":"OH Senate District 22","rep":"Mark Romanchuk","w":1.0}]},"munis":[{"m":"Ashland","p":[{"n":"Matt Miller","r":"Mayor, Ashland, OH"}]}],"slug":"ashland"},"39007":{"county":[],"districts":{"cd":[{"d":"OH-14","rep":"David P. Joyce","w":0.517}],"sh":[{"d":"OH House District 65","rep":"David Thomas","w":0.393},{"d":"OH House District 99","rep":"Sarah Fowler Arthur","w":0.124}],"ss":[{"d":"OH Senate District 32","rep":"Sandy O'Brien","w":0.517}]},"munis":[],"slug":"ashtabula"},"39009":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":0.998}],"sh":[{"d":"OH House District 94","rep":"Kevin Ritter","w":0.732},{"d":"OH House District 95","rep":"Ty Moore","w":0.268}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[],"slug":"athens"},"39011":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 84","rep":"Angie King","w":0.507},{"d":"OH House District 78","rep":"Matt Huffman","w":0.492}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":1.0}]},"munis":[{"m":"St Marys","p":[{"n":"Joseph Hurlburt Jr.","r":"Mayor, St. Marys, OH"}]},{"m":"Wapakoneta","p":[{"n":"Dan Lee","r":"Mayor, Wapakoneta, OH"}]}],"slug":"auglaize"},"39013":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 95","rep":"Ty Moore","w":0.55},{"d":"OH House District 96","rep":"Ron Ferguson","w":0.45}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[{"m":"Martins Ferry","p":[{"n":"John Davies","r":"Mayor, Martins Ferry, OH"}]},{"m":"St Clairsville","p":[{"n":"Kathryn Thalman","r":"Mayor, St. Clairsville, OH"}]}],"slug":"belmont"},"39015":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 63","rep":"Adam Bird","w":0.543},{"d":"OH House District 90","rep":"Justin Pizzulli","w":0.457}],"ss":[{"d":"OH Senate District 14","rep":"Terry Johnson","w":1.0}]},"munis":[],"slug":"brown"},"39017":{"county":[],"districts":{"cd":[{"d":"OH-08","rep":"Warren Davidson","w":1.0}],"sh":[{"d":"OH House District 47","rep":"Diane Mullins","w":0.305},{"d":"OH House District 45","rep":"Jennifer Gross","w":0.267},{"d":"OH House District 46","rep":"Thomas Hall","w":0.262},{"d":"OH House District 40","rep":"Rodney Creech","w":0.167}],"ss":[{"d":"OH Senate District 4","rep":"George Lang","w":0.833},{"d":"OH Senate District 5","rep":"Steve Huffman","w":0.167}]},"munis":[{"m":"Fairfield","p":[{"n":"Mitch Rhodus","r":"Mayor, Fairfield, OH"}]},{"m":"Hamilton","p":[{"n":"Pat Moeller","r":"Mayor, Hamilton, OH"}]},{"m":"Middletown","p":[{"n":"Elizabeth Slamka","r":"Mayor, Middletown, OH"}]},{"m":"Monroe","p":[{"n":"Keith Funk","r":"Mayor, Monroe, OH"}]}],"slug":"butler"},"39019":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 79","rep":"Monica Blasdel","w":1.0}],"ss":[{"d":"OH Senate District 33","rep":"Al Cutrona","w":1.0}]},"munis":[],"slug":"carroll"},"39021":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":0.999}],"sh":[{"d":"OH House District 85","rep":"Tim Barhorst","w":1.0}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":1.0}]},"munis":[{"m":"Urbana","p":[{"n":"Bill Bean","r":"Mayor, Urbana, OH"}]}],"slug":"champaign"},"39023":{"county":[],"districts":{"cd":[{"d":"OH-15","rep":"Mike Carey","w":0.71},{"d":"OH-10","rep":"Michael R. Turner","w":0.29}],"sh":[{"d":"OH House District 74","rep":"Bernie Willis","w":0.598},{"d":"OH House District 71","rep":"Levi Dean","w":0.402}],"ss":[{"d":"OH Senate District 10","rep":"Kyle Koehler","w":1.0}]},"munis":[{"m":"Springfield","p":[{"n":"Warren R. Copeland","r":"Mayor, Springfield, OH"}]}],"slug":"clark"},"39025":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":0.999}],"sh":[{"d":"OH House District 63","rep":"Adam Bird","w":0.713},{"d":"OH House District 62","rep":"Jean Schmidt","w":0.286}],"ss":[{"d":"OH Senate District 14","rep":"Terry Johnson","w":0.999}]},"munis":[],"slug":"clermont"},"39027":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 71","rep":"Levi Dean","w":1.0}],"ss":[{"d":"OH Senate District 10","rep":"Kyle Koehler","w":1.0}]},"munis":[{"m":"Wilmington","p":[{"n":"Patrick Haley","r":"Mayor, Wilmington, OH"}]}],"slug":"clinton"},"39029":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 79","rep":"Monica Blasdel","w":0.872},{"d":"OH House District 59","rep":"Tex Fischer","w":0.128}],"ss":[{"d":"OH Senate District 33","rep":"Al Cutrona","w":1.0}]},"munis":[{"m":"Columbiana","p":[{"n":"Rick Noel","r":"Mayor, Columbiana, OH"}]},{"m":"East Liverpool","p":[{"n":"Robert J. Smith","r":"Mayor, East Liverpool, OH"}]},{"m":"Salem","p":[{"n":"Cyndi Baronzzi Dickey","r":"Mayor, Salem, OH"}]}],"slug":"columbiana"},"39031":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":1.0}],"sh":[{"d":"OH House District 98","rep":"Mark Hiner","w":1.0}],"ss":[{"d":"OH Senate District 19","rep":"Andrew Brenner","w":1.0}]},"munis":[{"m":"Coshocton","p":[{"n":"Mark Mills","r":"Mayor, Coshocton, OH"}]}],"slug":"coshocton"},"39033":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":0.999}],"sh":[{"d":"OH House District 87","rep":"Riordan McClain","w":1.0}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":1.0}]},"munis":[{"m":"Bucyrus","p":[{"n":"Bruce Truka","r":"Mayor, Bucyrus, OH"}]},{"m":"Galion","p":[{"n":"Thomas M. O'Leary","r":"Mayor, Galion, OH"}]}],"slug":"crawford"},"39035":{"county":[],"districts":{"cd":[{"d":"OH-07","rep":"Max L. Miller","w":0.194},{"d":"OH-11","rep":"Shontel M. Brown","w":0.174}],"sh":[{"d":"OH House District 19","rep":"Phil Robinson","w":0.094},{"d":"OH House District 17","rep":"Mike Dovilla","w":0.055},{"d":"OH House District 15","rep":"Chris Glassburn","w":0.041},{"d":"OH House District 16","rep":"Bride Sweeney","w":0.029},{"d":"OH House District 20","rep":"Terrence Upchurch","w":0.026},{"d":"OH House District 18","rep":"Juanita Brent","w":0.026},{"d":"OH House District 22","rep":"Darnell Brewer","w":0.024},{"d":"OH House District 21","rep":"Eric Synenberg","w":0.023},{"d":"OH House District 14","rep":"Sean Brennan","w":0.022},{"d":"OH House District 23","rep":"Dan Troy","w":0.014},{"d":"OH House District 13","rep":"Tristan Rader","w":0.013}],"ss":[{"d":"OH Senate District 24","rep":"Tom Patton","w":0.119},{"d":"OH Senate District 18","rep":"Jerry Cirino","w":0.108},{"d":"OH Senate District 21","rep":"Kent Smith","w":0.073},{"d":"OH Senate District 23","rep":"Nickie Antonio","w":0.068}]},"munis":[{"m":"Bay Village","p":[{"n":"Paul Koomar","r":"Mayor, Bay Village, OH"}]},{"m":"Beachwood","p":[{"n":"Justin Berns","r":"Mayor, Beachwood, OH"}]},{"m":"Bedford Heights","p":[{"n":"Phillip Stevens","r":"Mayor, Bedford Heights, OH"}]},{"m":"Berea","p":[{"n":"Cyril Kleem","r":"Mayor, Berea, OH"}]},{"m":"Brecksville","p":[{"n":"Jerry N. Hruby","r":"Mayor, Brecksville, OH"}]},{"m":"Broadview Heights","p":[{"n":"Samuel J. Alai","r":"Mayor, Broadview Heights, OH"}]},{"m":"Brook Park","p":[{"n":"Edward Orcutt","r":"Mayor, Brook Park, OH"}]},{"m":"Brooklyn","p":[{"n":"Ron Van Kirk","r":"Mayor, Brooklyn, OH"}]},{"m":"Cleveland","p":[{"n":"Frank G. Jackson","r":"Mayor, Cleveland, OH"}]},{"m":"Cleveland Heights","p":[{"n":"Kahlil Seren","r":"Mayor, Cleveland Heights, OH"}]},{"m":"East Cleveland","p":[{"n":"Brandon L. King","r":"Mayor, East Cleveland, OH"}]},{"m":"Euclid","p":[{"n":"Kirsten Holzheimer Gail","r":"Mayor, Euclid, OH"}]},{"m":"Fairview Park","p":[{"n":"Bill Schneider","r":"Mayor, Fairview Park, OH"}]},{"m":"Garfield Heights","p":[{"n":"Matthew Burke","r":"Mayor, Garfield Heights, OH"}]},{"m":"Highland Heights","p":[{"n":"Chuck Brunello, Jr.","r":"Mayor, Highland Heights, OH"}]},{"m":"Independence","p":[{"n":"Gregory P. Kurtz","r":"Mayor, Independence, OH"}]},{"m":"Lakewood","p":[{"n":"Meghan George","r":"Mayor, Lakewood, OH"}]},{"m":"Lyndhurst","p":[{"n":"Patrick A. Ward","r":"Mayor, Lyndhurst, OH"}]},{"m":"Maple Heights","p":[{"n":"Annette M. Blackwell","r":"Mayor, Maple Heights, OH"}]},{"m":"Mayfield Heights","p":[{"n":"Anthony DiCicco","r":"Mayor, Mayfield Heights, OH"}]},{"m":"Middleburg Heights","p":[{"n":"Matthew J. Castelli","r":"Mayor, Middleburg Heights, OH"}]},{"m":"North Olmsted","p":[{"n":"Nicole Dailey Jones","r":"Mayor, North Olmsted, OH"}]},{"m":"North Royalton","p":[{"n":"Larry Antoskiewicz","r":"Mayor, North Royalton, OH"}]},{"m":"Olmsted Falls","p":[{"n":"James Patrick Graven","r":"Mayor, Olmsted Falls, OH"}]},{"m":"Parma","p":[{"n":"Timothy J. DeGeeter","r":"Mayor, Parma, OH"}]},{"m":"Parma Heights","p":[{"n":"Marie Gallo","r":"Mayor, Parma Heights, OH"}]},{"m":"Richmond Heights","p":[{"n":"Kim A. Thomas","r":"Mayor, Richmond Heights, OH"}]},{"m":"Rocky River","p":[{"n":"Pamela E. Bobst","r":"Mayor, Rocky River, OH"}]},{"m":"Shaker Heights","p":[{"n":"David E. Weiss","r":"Mayor, Shaker Heights, OH"}]},{"m":"Solon","p":[{"n":"Edward H. Kraus","r":"Mayor, Solon, OH"}]},{"m":"South Euclid","p":[{"n":"Georgine Welo","r":"Mayor, South Euclid, OH"}]},{"m":"Strongsville","p":[{"n":"Thomas P. Perciak","r":"Mayor, Strongsville, OH"}]},{"m":"University Heights","p":[{"n":"Michael Dylan Brennan","r":"Mayor, University Heights, OH"}]},{"m":"Warrensville Heights","p":[{"n":"Bradley D. Sellers","r":"Mayor, Warrensville Heights, OH"}]},{"m":"Westlake","p":[{"n":"Dennis M. Clough","r":"Mayor, Westlake, OH"}]}],"slug":"cuyahoga"},"39037":{"county":[],"districts":{"cd":[{"d":"OH-08","rep":"Warren Davidson","w":1.0}],"sh":[{"d":"OH House District 84","rep":"Angie King","w":0.616},{"d":"OH House District 80","rep":"Johnathan Newman","w":0.384}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":0.616},{"d":"OH Senate District 5","rep":"Steve Huffman","w":0.384}]},"munis":[{"m":"Greenville","p":[{"n":"Jeff Whitaker","r":"Mayor, Greenville, OH"}]}],"slug":"darke"},"39039":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":0.999}],"sh":[{"d":"OH House District 82","rep":"Roy Klopfenstein","w":0.566},{"d":"OH House District 81","rep":"Jim Hoops","w":0.434}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Defiance","p":[{"n":"Mike McCann","r":"Mayor, Defiance, OH"}]}],"slug":"defiance"},"39041":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":0.674},{"d":"OH-12","rep":"Troy Balderson","w":0.326}],"sh":[{"d":"OH House District 61","rep":"Beth Lear","w":0.681},{"d":"OH House District 60","rep":"Brian Lorenz","w":0.319}],"ss":[{"d":"OH Senate District 19","rep":"Andrew Brenner","w":1.0}]},"munis":[{"m":"Delaware","p":[{"n":"Carolyn Kay Riggle","r":"Mayor, Delaware, OH"}]}],"slug":"delaware"},"39043":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":0.455}],"sh":[{"d":"OH House District 89","rep":"D.J. Swearingen","w":0.41}],"ss":[{"d":"OH Senate District 2","rep":"Theresa Gavarone","w":0.41}]},"munis":[{"m":"Huron","p":[{"n":"Monty Tapp","r":"Mayor, Huron, OH"}]}],"slug":"erie"},"39045":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":1.0}],"sh":[{"d":"OH House District 69","rep":"Kevin Miller","w":0.549},{"d":"OH House District 73","rep":"Jeff LaRe","w":0.451}],"ss":[{"d":"OH Senate District 20","rep":"Tim Schaffer","w":1.0}]},"munis":[{"m":"Lancaster","p":[{"n":"Don McDaniel","r":"Mayor, Lancaster, OH"}]},{"m":"Pickerington","p":[{"n":"Lee Gray","r":"Mayor, Pickerington, OH"}]}],"slug":"fairfield"},"39047":{"county":[],"districts":{"cd":[{"d":"OH-15","rep":"Mike Carey","w":0.875},{"d":"OH-02","rep":"David J. Taylor","w":0.125}],"sh":[{"d":"OH House District 91","rep":"Bob Peterson","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[],"slug":"fayette"},"39049":{"county":[],"districts":{"cd":[{"d":"OH-15","rep":"Mike Carey","w":0.594},{"d":"OH-03","rep":"Joyce Beatty","w":0.406}],"sh":[{"d":"OH House District 5","rep":"Meredith Lawson‐Rowe","w":0.159},{"d":"OH House District 11","rep":"Crystal Lett","w":0.122},{"d":"OH House District 4","rep":"Beryl Piccolantonio","w":0.122},{"d":"OH House District 10","rep":"Mark Sigrist","w":0.12},{"d":"OH House District 12","rep":"Brian Stewart","w":0.11},{"d":"OH House District 2","rep":"Latyna Humphrey","w":0.067},{"d":"OH House District 6","rep":"Christine Cockley","w":0.056},{"d":"OH House District 8","rep":"Anita Somani","w":0.054},{"d":"OH House District 1","rep":"Dontavius Jarrells","w":0.052},{"d":"OH House District 7","rep":"Allison Russo","w":0.049},{"d":"OH House District 9","rep":"Munira Abdullahi","w":0.046},{"d":"OH House District 3","rep":"Ismail Mohamed","w":0.043}],"ss":[{"d":"OH Senate District 3","rep":"Michele Reynolds","w":0.39},{"d":"OH Senate District 16","rep":"Beth Liston","w":0.298},{"d":"OH Senate District 15","rep":"Hearcel Craig","w":0.161},{"d":"OH Senate District 25","rep":"Bill DeMora","w":0.152}]},"munis":[{"m":"Columbus","p":[{"n":"Andrew Ginther","r":"Mayor, Columbus, OH"}]},{"m":"Dublin","p":[{"n":"Chris Amorose Groomes","r":"Mayor, Dublin, OH"}]},{"m":"Gahanna","p":[{"n":"Laurie Jadwin","r":"Mayor, Gahanna, OH"}]},{"m":"Grove City","p":[{"n":"Q132673219","r":"Mayor, Grove City, OH"}]},{"m":"Reynoldsburg","p":[{"n":"Joe Begeny","r":"Mayor, Reynoldsburg, OH"}]},{"m":"Westerville","p":[{"n":"Kenneth L. Wright","r":"Mayor, Westerville, OH"}]}],"slug":"franklin"},"39051":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":1.0}],"sh":[{"d":"OH House District 81","rep":"Jim Hoops","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Wauseon","p":[{"n":"Kathy Huner","r":"Mayor, Wauseon, OH"}]}],"slug":"fulton"},"39053":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 93","rep":"Jason Stephens","w":0.999}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":0.999}]},"munis":[],"slug":"gallia"},"39055":{"county":[],"districts":{"cd":[{"d":"OH-14","rep":"David P. Joyce","w":1.0}],"sh":[{"d":"OH House District 99","rep":"Sarah Fowler Arthur","w":0.854},{"d":"OH House District 35","rep":"Steve Demetriou","w":0.146}],"ss":[{"d":"OH Senate District 32","rep":"Sandy O'Brien","w":0.854},{"d":"OH Senate District 27","rep":"Kristina Roegner","w":0.146}]},"munis":[{"m":"Chardon","p":[{"n":"Christopher Grau","r":"Mayor, Chardon, OH"}]}],"slug":"geauga"},"39057":{"county":[],"districts":{"cd":[{"d":"OH-10","rep":"Michael R. Turner","w":0.999}],"sh":[{"d":"OH House District 71","rep":"Levi Dean","w":0.634},{"d":"OH House District 70","rep":"Brian Lampton","w":0.366}],"ss":[{"d":"OH Senate District 10","rep":"Kyle Koehler","w":1.0}]},"munis":[{"m":"Fairborn","p":[{"n":"Dan Kirkpatrick","r":"Mayor, Fairborn, OH"}]},{"m":"Xenia","p":[{"n":"William Urschel","r":"Mayor, Xenia, OH"}]}],"slug":"greene"},"39059":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":0.999}],"sh":[{"d":"OH House District 95","rep":"Ty Moore","w":0.537},{"d":"OH House District 97","rep":"Adam Holmes","w":0.463}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":0.537},{"d":"OH Senate District 31","rep":"Al Landis","w":0.463}]},"munis":[{"m":"Cambridge","p":[{"n":"Thomas D. Orr","r":"Mayor, Cambridge, OH"}]}],"slug":"guernsey"},"39061":{"county":[],"districts":{"cd":[{"d":"OH-08","rep":"Warren Davidson","w":0.507},{"d":"OH-01","rep":"Greg Landsman","w":0.492}],"sh":[{"d":"OH House District 29","rep":"Cindy Abrams","w":0.295},{"d":"OH House District 27","rep":"Rachel Baker","w":0.198},{"d":"OH House District 30","rep":"Mike Odioso","w":0.152},{"d":"OH House District 28","rep":"Karen Brownlee","w":0.14},{"d":"OH House District 26","rep":"Ashley Bryant Bailey","w":0.078},{"d":"OH House District 25","rep":"Cecil Thomas","w":0.074},{"d":"OH House District 24","rep":"Dani Isaacsohn","w":0.062}],"ss":[{"d":"OH Senate District 8","rep":"Bill Blessing","w":0.645},{"d":"OH Senate District 9","rep":"Catherine Ingram","w":0.215},{"d":"OH Senate District 7","rep":"Steve Wilson","w":0.14}]},"munis":[{"m":"Blue Ash","p":[{"n":"Jill Cole","r":"Mayor, Blue Ash, OH"}]},{"m":"Cincinnati","p":[{"n":"Aftab Pureval","r":"Mayor, Cincinnati, OH"}]},{"m":"Deer Park","p":[{"n":"John Donnellon","r":"Mayor, Deer Park, OH"}]},{"m":"Forest Park","p":[{"n":"Aharon Brown","r":"Mayor, Forest Park, OH"}]},{"m":"Montgomery","p":[{"n":"Ronald Messer","r":"Mayor, Montgomery, OH"}]},{"m":"Norwood","p":[{"n":"Victor Schneider","r":"Mayor, Norwood, OH"}]},{"m":"Reading","p":[{"n":"Robert Bemmes","r":"Mayor, Reading, OH"}]},{"m":"Sharonville","p":[{"n":"Kevin M. Hardman","r":"Mayor, Sharonville, OH"}]},{"m":"Springdale","p":[{"n":"Lawrence C. Hawkins","r":"Mayor, Springdale, OH"}]}],"slug":"hamilton"},"39063":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":1.0}],"sh":[{"d":"OH House District 83","rep":"Ty Mathews","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Findlay","p":[{"n":"Christina Muryn","r":"Mayor, Findlay, OH"}]}],"slug":"hancock"},"39065":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 83","rep":"Ty Mathews","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Kenton","p":[{"n":"Lynn Webb","r":"Mayor, Kenton, OH"}]}],"slug":"hardin"},"39067":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 95","rep":"Ty Moore","w":1.0}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[],"slug":"harrison"},"39069":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":1.0}],"sh":[{"d":"OH House District 81","rep":"Jim Hoops","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Napoleon","p":[{"n":"Joseph Bialorucki","r":"Mayor, Napoleon, OH"}]}],"slug":"henry"},"39071":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 91","rep":"Bob Peterson","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[{"m":"Hillsboro","p":[{"n":"Justin Harsha","r":"Mayor, Hillsboro, OH"}]}],"slug":"highland"},"39073":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 92","rep":"Mark Johnson","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[{"m":"Logan","p":[{"n":"Greg Fraunfelter","r":"Mayor, Logan, OH"}]}],"slug":"hocking"},"39075":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":0.753},{"d":"OH-07","rep":"Max L. Miller","w":0.247}],"sh":[{"d":"OH House District 98","rep":"Mark Hiner","w":1.0}],"ss":[{"d":"OH Senate District 19","rep":"Andrew Brenner","w":1.0}]},"munis":[],"slug":"holmes"},"39077":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":1.0}],"sh":[{"d":"OH House District 54","rep":"Kellie Deeter","w":0.895},{"d":"OH House District 89","rep":"D.J. Swearingen","w":0.105}],"ss":[{"d":"OH Senate District 13","rep":"Nathan Manning","w":0.895},{"d":"OH Senate District 2","rep":"Theresa Gavarone","w":0.105}]},"munis":[{"m":"Bellevue","p":[{"n":"Kevin Strecker","r":"Mayor, Bellevue, OH"}]},{"m":"Norwalk","p":[{"n":"David W. Light","r":"Mayor, Norwalk, OH"}]}],"slug":"huron"},"39079":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 93","rep":"Jason Stephens","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[{"m":"Jackson","p":[{"n":"Randy Evans","r":"Mayor, Jackson, OH"}]}],"slug":"jackson"},"39081":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 96","rep":"Ron Ferguson","w":0.999}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":0.999}]},"munis":[{"m":"Steubenville","p":[{"n":"Jerry Barilla","r":"Mayor, Steubenville, OH"}]},{"m":"Toronto","p":[{"n":"John Parker","r":"Mayor, Toronto, OH"}]}],"slug":"jefferson"},"39083":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":0.999}],"sh":[{"d":"OH House District 98","rep":"Mark Hiner","w":0.621},{"d":"OH House District 61","rep":"Beth Lear","w":0.379}],"ss":[{"d":"OH Senate District 19","rep":"Andrew Brenner","w":1.0}]},"munis":[{"m":"Mount Vernon","p":[{"n":"Matthew T. Starr","r":"Mayor, Mount Vernon, OH"}]}],"slug":"knox"},"39085":{"county":[],"districts":{"cd":[{"d":"OH-14","rep":"David P. Joyce","w":0.236}],"sh":[{"d":"OH House District 57","rep":"Jamie Callender","w":0.185},{"d":"OH House District 23","rep":"Dan Troy","w":0.05}],"ss":[{"d":"OH Senate District 18","rep":"Jerry Cirino","w":0.235}]},"munis":[{"m":"Eastlake","p":[{"n":"Jim Overstreet","r":"Mayor, Eastlake, OH"}]},{"m":"Wickliffe","p":[{"n":"Joe Sakacs","r":"Mayor, Wickliffe, OH"}]},{"m":"Willoughby","p":[{"n":"Robert A. Fiala","r":"Mayor, Willoughby, OH"}]}],"slug":"lake"},"39087":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":0.999}],"sh":[{"d":"OH House District 93","rep":"Jason Stephens","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[{"m":"Ironton","p":[{"n":"Samuel Cramblit","r":"Mayor, Ironton, OH"}]}],"slug":"lawrence"},"39089":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":1.0}],"sh":[{"d":"OH House District 69","rep":"Kevin Miller","w":0.668},{"d":"OH House District 68","rep":"Thad Claggett","w":0.332}],"ss":[{"d":"OH Senate District 20","rep":"Tim Schaffer","w":1.0}]},"munis":[{"m":"Heath","p":[{"n":"Mark Johns","r":"Mayor, Heath, OH"}]},{"m":"Newark","p":[{"n":"Jeff Hall","r":"Mayor, Newark, OH"}]},{"m":"Pataskala","p":[{"n":"Mike Compton","r":"Mayor, Pataskala, OH"}]}],"slug":"licking"},"39091":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 85","rep":"Tim Barhorst","w":0.516},{"d":"OH House District 83","rep":"Ty Mathews","w":0.483}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":0.517},{"d":"OH Senate District 1","rep":"Rob McColley","w":0.483}]},"munis":[{"m":"Bellefontaine","p":[{"n":"David Crissman","r":"Mayor, Bellefontaine, OH"}]}],"slug":"logan"},"39093":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":0.534}],"sh":[{"d":"OH House District 54","rep":"Kellie Deeter","w":0.379},{"d":"OH House District 52","rep":"Gayle Manning","w":0.093},{"d":"OH House District 53","rep":"Joe Miller","w":0.062}],"ss":[{"d":"OH Senate District 13","rep":"Nathan Manning","w":0.534}]},"munis":[{"m":"Avon","p":[{"n":"Bryan K. Jensen","r":"Mayor, Avon, OH"}]},{"m":"Avon Lake","p":[{"n":"Mark Spaetzel","r":"Mayor, Avon Lake, OH"}]},{"m":"Elyria","p":[{"n":"Kevin Brubaker","r":"Mayor, Elyria, OH"}]},{"m":"Lorain","p":[{"n":"Jack Bradley","r":"Mayor, Lorain, OH"}]},{"m":"North Ridgeville","p":[{"n":"Kevin Corcoran","r":"Mayor, North Ridgeville, OH"}]},{"m":"Oberlin","p":[{"n":"Henry F. Smith","r":"Mayor, Oberlin, OH"}]},{"m":"Vermilion","p":[{"n":"Jim Forthofer","r":"Mayor, Vermilion, OH"}]}],"slug":"lorain"},"39095":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":0.583}],"sh":[{"d":"OH House District 44","rep":"Josh Williams","w":0.28},{"d":"OH House District 42","rep":"Elgin Rogers","w":0.149},{"d":"OH House District 41","rep":"Erika White","w":0.094},{"d":"OH House District 43","rep":"Michele Grim","w":0.058}],"ss":[{"d":"OH Senate District 11","rep":"Paula Hicks-Hudson","w":0.302},{"d":"OH Senate District 2","rep":"Theresa Gavarone","w":0.28}]},"munis":[{"m":"Maumee","p":[{"n":"Jim MacDonald","r":"Mayor, Maumee, OH"}]},{"m":"Oregon","p":[{"n":"Michael J. Seferian","r":"Mayor, Oregon, OH"}]},{"m":"Sylvania","p":[{"n":"Mark Frye","r":"Mayor, Sylvania, OH"}]},{"m":"Toledo","p":[{"n":"Wade Kapszukiewicz","r":"Mayor, Toledo, OH"}]}],"slug":"lucas"},"39097":{"county":[],"districts":{"cd":[{"d":"OH-15","rep":"Mike Carey","w":1.0}],"sh":[{"d":"OH House District 12","rep":"Brian Stewart","w":1.0}],"ss":[{"d":"OH Senate District 3","rep":"Michele Reynolds","w":1.0}]},"munis":[{"m":"London","p":[{"n":"Patrick J. Closser","r":"Mayor, London, OH"}]}],"slug":"madison"},"39099":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 59","rep":"Tex Fischer","w":0.656},{"d":"OH House District 58","rep":"Lauren McNally","w":0.343}],"ss":[{"d":"OH Senate District 33","rep":"Al Cutrona","w":1.0}]},"munis":[{"m":"Youngstown","p":[{"n":"Jamael Tito Brown","r":"Mayor, Youngstown, OH"}]}],"slug":"mahoning"},"39101":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 87","rep":"Riordan McClain","w":0.778},{"d":"OH House District 86","rep":"Tracy Richardson","w":0.222}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":1.0}]},"munis":[{"m":"Marion","p":[{"n":"Bill Collins","r":"Mayor, Marion, OH"}]}],"slug":"marion"},"39103":{"county":[],"districts":{"cd":[{"d":"OH-07","rep":"Max L. Miller","w":1.0}],"sh":[{"d":"OH House District 66","rep":"Sharon Ray","w":0.6},{"d":"OH House District 67","rep":"Melanie Miller","w":0.4}],"ss":[{"d":"OH Senate District 22","rep":"Mark Romanchuk","w":1.0}]},"munis":[{"m":"Brunswick","p":[{"n":"Ron Falconi","r":"Mayor, Brunswick, OH"}]},{"m":"Medina","p":[{"n":"Dennis Hanwell","r":"Mayor, Medina, OH"}]}],"slug":"medina"},"39105":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 94","rep":"Kevin Ritter","w":1.0}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[],"slug":"meigs"},"39107":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":0.999}],"sh":[{"d":"OH House District 84","rep":"Angie King","w":1.0}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":1.0}]},"munis":[{"m":"Celina","p":[{"n":"Jeffrey Hazel","r":"Mayor, Celina, OH"}]}],"slug":"mercer"},"39109":{"county":[],"districts":{"cd":[{"d":"OH-15","rep":"Mike Carey","w":0.76},{"d":"OH-08","rep":"Warren Davidson","w":0.24}],"sh":[{"d":"OH House District 80","rep":"Johnathan Newman","w":1.0}],"ss":[{"d":"OH Senate District 5","rep":"Steve Huffman","w":1.0}]},"munis":[{"m":"Piqua","p":[{"n":"Kris Lee","r":"Mayor, Piqua, OH"}]},{"m":"Troy","p":[{"n":"Robin Oda","r":"Mayor, Troy, OH"}]}],"slug":"miami"},"39111":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 96","rep":"Ron Ferguson","w":0.999}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[],"slug":"monroe"},"39113":{"county":[],"districts":{"cd":[{"d":"OH-10","rep":"Michael R. Turner","w":1.0}],"sh":[{"d":"OH House District 40","rep":"Rodney Creech","w":0.378},{"d":"OH House District 37","rep":"Tom Young","w":0.213},{"d":"OH House District 39","rep":"Phil Plummer","w":0.176},{"d":"OH House District 38","rep":"Desireè Tims","w":0.143},{"d":"OH House District 36","rep":"Andrea White","w":0.091}],"ss":[{"d":"OH Senate District 5","rep":"Steve Huffman","w":0.554},{"d":"OH Senate District 6","rep":"Willis Blackshear","w":0.446}]},"munis":[{"m":"Centerville","p":[{"n":"Brooks Compton","r":"Mayor, Centerville, OH"}]},{"m":"Clayton","p":[{"n":"Mike Stevens","r":"Mayor, Clayton, OH"}]},{"m":"Dayton","p":[{"n":"Jeffrey J. Mims, Jr.","r":"Mayor, Dayton, OH"}]},{"m":"Huber Heights","p":[{"n":"Jeff Gore","r":"Mayor, Huber Heights, OH"}]},{"m":"Kettering","p":[{"n":"Peggy Lehner","r":"Mayor, Kettering, OH"}]},{"m":"Miamisburg","p":[{"n":"Michelle Collins","r":"Mayor, Miamisburg, OH"}]},{"m":"Riverside","p":[{"n":"Peter J. Williams","r":"Mayor, Riverside, OH"}]},{"m":"Trotwood","p":[{"n":"Yvette F. Page","r":"Mayor, Trotwood, OH"}]},{"m":"Vandalia","p":[{"n":"Richard Herbst","r":"Mayor, Vandalia, OH"}]},{"m":"West Carrollton","p":[{"n":"Rick Barnhart","r":"Mayor, West Carrollton, OH"}]}],"slug":"montgomery"},"39115":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":0.998}],"sh":[{"d":"OH House District 95","rep":"Ty Moore","w":1.0}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[],"slug":"morgan"},"39117":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 87","rep":"Riordan McClain","w":1.0}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":1.0}]},"munis":[],"slug":"morrow"},"39119":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":1.0}],"sh":[{"d":"OH House District 97","rep":"Adam Holmes","w":1.0}],"ss":[{"d":"OH Senate District 31","rep":"Al Landis","w":1.0}]},"munis":[{"m":"Zanesville","p":[{"n":"Donald L. Mason","r":"Mayor, Zanesville, OH"}]}],"slug":"muskingum"},"39121":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":1.0}],"sh":[{"d":"OH House District 95","rep":"Ty Moore","w":1.0}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[],"slug":"noble"},"39123":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":0.499}],"sh":[{"d":"OH House District 89","rep":"D.J. Swearingen","w":0.363},{"d":"OH House District 44","rep":"Josh Williams","w":0.088}],"ss":[{"d":"OH Senate District 2","rep":"Theresa Gavarone","w":0.451}]},"munis":[{"m":"Port Clinton","p":[{"n":"Michael Snider","r":"Mayor, Port Clinton, OH"}]}],"slug":"ottawa"},"39125":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":1.0}],"sh":[{"d":"OH House District 82","rep":"Roy Klopfenstein","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[],"slug":"paulding"},"39127":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":1.0}],"sh":[{"d":"OH House District 69","rep":"Kevin Miller","w":0.589},{"d":"OH House District 92","rep":"Mark Johnson","w":0.411}],"ss":[{"d":"OH Senate District 20","rep":"Tim Schaffer","w":0.589},{"d":"OH Senate District 17","rep":"Shane Wilkin","w":0.411}]},"munis":[],"slug":"perry"},"39129":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 12","rep":"Brian Stewart","w":1.0}],"ss":[{"d":"OH Senate District 3","rep":"Michele Reynolds","w":1.0}]},"munis":[{"m":"Circleville","p":[{"n":"Michelle L. Blanton","r":"Mayor, Circleville, OH"}]}],"slug":"pickaway"},"39131":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 91","rep":"Bob Peterson","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[],"slug":"pike"},"39133":{"county":[],"districts":{"cd":[{"d":"OH-14","rep":"David P. Joyce","w":0.991},{"d":"OH-13","rep":"Emilia Strong Sykes","w":0.009}],"sh":[{"d":"OH House District 72","rep":"Heidi Workman","w":0.851},{"d":"OH House District 35","rep":"Steve Demetriou","w":0.149}],"ss":[{"d":"OH Senate District 27","rep":"Kristina Roegner","w":1.0}]},"munis":[{"m":"Aurora","p":[{"n":"Ann Womer Benjamin","r":"Mayor, Aurora, OH"}]},{"m":"Kent","p":[{"n":"Jerry T. Fiala","r":"Mayor, Kent, OH"}]},{"m":"Ravenna","p":[{"n":"Frank Seman","r":"Mayor, Ravenna, OH"}]},{"m":"Streetsboro","p":[{"n":"Glenn M. Broska","r":"Mayor, Streetsboro, OH"}]}],"slug":"portage"},"39135":{"county":[],"districts":{"cd":[{"d":"OH-08","rep":"Warren Davidson","w":1.0}],"sh":[{"d":"OH House District 40","rep":"Rodney Creech","w":1.0}],"ss":[{"d":"OH Senate District 5","rep":"Steve Huffman","w":1.0}]},"munis":[{"m":"Eaton","p":[{"n":"Matt Venable","r":"Mayor, Eaton, OH"}]}],"slug":"preble"},"39137":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":1.0}],"sh":[{"d":"OH House District 82","rep":"Roy Klopfenstein","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[],"slug":"putnam"},"39139":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 76","rep":"Marilyn John","w":1.0}],"ss":[{"d":"OH Senate District 22","rep":"Mark Romanchuk","w":1.0}]},"munis":[{"m":"Mansfield","p":[{"n":"Jodie Perry","r":"Mayor, Mansfield, OH"}]},{"m":"Shelby","p":[{"n":"Steven L. Schag","r":"Mayor, Shelby, OH"}]}],"slug":"richland"},"39141":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 92","rep":"Mark Johnson","w":0.589},{"d":"OH House District 91","rep":"Bob Peterson","w":0.411}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[{"m":"Chillicothe","p":[{"n":"Luke M. Feeney","r":"Mayor, Chillicothe, OH"}]}],"slug":"ross"},"39143":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":1.0}],"sh":[{"d":"OH House District 88","rep":"Gary Click","w":0.985}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":0.985}]},"munis":[{"m":"Clyde","p":[{"n":"Doug McCauley","r":"Mayor, Clyde, OH"}]},{"m":"Fremont","p":[{"n":"Danny Sanchez","r":"Mayor, Fremont, OH"}]}],"slug":"sandusky"},"39145":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":0.999}],"sh":[{"d":"OH House District 90","rep":"Justin Pizzulli","w":0.999}],"ss":[{"d":"OH Senate District 14","rep":"Terry Johnson","w":0.999}]},"munis":[{"m":"Portsmouth","p":[{"n":"Charlotte Gordon","r":"Mayor, Portsmouth, OH"}]}],"slug":"scioto"},"39147":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":0.999}],"sh":[{"d":"OH House District 88","rep":"Gary Click","w":1.0}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":1.0}]},"munis":[{"m":"Fostoria","p":[{"n":"Donald Mennel","r":"Mayor, Fostoria, OH"}]},{"m":"Tiffin","p":[{"n":"Lee Wilkinson","r":"Mayor, Tiffin, OH"}]}],"slug":"seneca"},"39149":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":0.51},{"d":"OH-15","rep":"Mike Carey","w":0.489}],"sh":[{"d":"OH House District 85","rep":"Tim Barhorst","w":1.0}],"ss":[{"d":"OH Senate District 12","rep":"Susan Manchester","w":1.0}]},"munis":[{"m":"Sidney","p":[{"n":"Mike Barhorst","r":"Mayor, Sidney, OH"}]}],"slug":"shelby"},"39151":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":0.645},{"d":"OH-13","rep":"Emilia Strong Sykes","w":0.354}],"sh":[{"d":"OH House District 50","rep":"Matt Kishman","w":0.391},{"d":"OH House District 48","rep":"Scott Oelslager","w":0.285},{"d":"OH House District 51","rep":"Jodi Salvo","w":0.214},{"d":"OH House District 49","rep":"Jim Thomas","w":0.109}],"ss":[{"d":"OH Senate District 29","rep":"Jane Timken","w":0.785},{"d":"OH Senate District 31","rep":"Al Landis","w":0.214}]},"munis":[{"m":"Alliance","p":[{"n":"Andrew Grove","r":"Mayor, Alliance, OH"}]},{"m":"Canal Fulton","p":[{"n":"Joseph A. Schultz","r":"Mayor, Canal Fulton, OH"}]},{"m":"Canton","p":[{"n":"William Sherer","r":"Mayor, Canton, OH"}]},{"m":"Louisville","p":[{"n":"Patricia A. Fallot","r":"Mayor, Louisville, OH"}]},{"m":"Massillon","p":[{"n":"Jamie Slutz","r":"Mayor, Massillon, OH"}]},{"m":"North Canton","p":[{"n":"Stephan B. Wilder","r":"Mayor, North Canton, OH"}]}],"slug":"stark"},"39153":{"county":[],"districts":{"cd":[{"d":"OH-13","rep":"Emilia Strong Sykes","w":0.999}],"sh":[{"d":"OH House District 31","rep":"Bill Roemer","w":0.358},{"d":"OH House District 32","rep":"Jack Daniels","w":0.254},{"d":"OH House District 34","rep":"Derrick Hall","w":0.175},{"d":"OH House District 35","rep":"Steve Demetriou","w":0.119},{"d":"OH House District 33","rep":"Veronica Sims","w":0.093}],"ss":[{"d":"OH Senate District 28","rep":"Casey Weinstein","w":0.523},{"d":"OH Senate District 27","rep":"Kristina Roegner","w":0.477}]},"munis":[{"m":"Akron","p":[{"n":"Shammas Malik","r":"Mayor, Akron, OH"}]},{"m":"Cuyahoga Falls","p":[{"n":"Don Walters","r":"Mayor, Cuyahoga Falls, OH"}]},{"m":"Hudson","p":[{"n":"Jeffrey Anzevino","r":"Mayor, Hudson, OH"}]},{"m":"Macedonia","p":[{"n":"Nicholas Molnar","r":"Mayor, Macedonia, OH"}]},{"m":"Stow","p":[{"n":"John Pribonic","r":"Mayor, Stow, OH"}]},{"m":"Tallmadge","p":[{"n":"Carol Siciliano-Kilway","r":"Mayor, Tallmadge, OH"}]},{"m":"Twinsburg","p":[{"n":"Sam Scaffide","r":"Mayor, Twinsburg, OH"}]}],"slug":"summit"},"39155":{"county":[],"districts":{"cd":[{"d":"OH-14","rep":"David P. Joyce","w":1.0}],"sh":[{"d":"OH House District 65","rep":"David Thomas","w":0.607},{"d":"OH House District 64","rep":"Nick Santucci","w":0.393}],"ss":[{"d":"OH Senate District 32","rep":"Sandy O'Brien","w":1.0}]},"munis":[{"m":"Newton Falls","p":[{"n":"David Hanson","r":"Mayor, Newton Falls, OH"}]},{"m":"Niles","p":[{"n":"Steven Mientkiewicz","r":"Mayor, Niles, OH"}]},{"m":"Warren","p":[{"n":"William Franklin","r":"Mayor, Warren, OH"}]}],"slug":"trumbull"},"39157":{"county":[],"districts":{"cd":[{"d":"OH-12","rep":"Troy Balderson","w":0.573},{"d":"OH-06","rep":"Michael A. Rulli","w":0.427}],"sh":[{"d":"OH House District 51","rep":"Jodi Salvo","w":1.0}],"ss":[{"d":"OH Senate District 31","rep":"Al Landis","w":1.0}]},"munis":[{"m":"Dover","p":[{"n":"Shane Gunnoe","r":"Mayor, Dover, OH"}]},{"m":"New Philadelphia","p":[{"n":"Joel Day","r":"Mayor, New Philadelphia, OH"}]},{"m":"Uhrichsville","p":[{"n":"James Zucal","r":"Mayor, Uhrichsville, OH"}]}],"slug":"tuscarawas"},"39159":{"county":[],"districts":{"cd":[{"d":"OH-04","rep":"Jim Jordan","w":1.0}],"sh":[{"d":"OH House District 86","rep":"Tracy Richardson","w":1.0}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":1.0}]},"munis":[],"slug":"union"},"39161":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":1.0}],"sh":[{"d":"OH House District 82","rep":"Roy Klopfenstein","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Van Wert","p":[{"n":"Kenneth J. Markward","r":"Mayor, Van Wert, OH"}]}],"slug":"van-wert"},"39163":{"county":[],"districts":{"cd":[{"d":"OH-02","rep":"David J. Taylor","w":1.0}],"sh":[{"d":"OH House District 92","rep":"Mark Johnson","w":1.0}],"ss":[{"d":"OH Senate District 17","rep":"Shane Wilkin","w":1.0}]},"munis":[],"slug":"vinton"},"39165":{"county":[],"districts":{"cd":[{"d":"OH-01","rep":"Greg Landsman","w":0.999}],"sh":[{"d":"OH House District 55","rep":"Michelle Teska","w":0.696},{"d":"OH House District 56","rep":"Adam Mathews","w":0.303}],"ss":[{"d":"OH Senate District 7","rep":"Steve Wilson","w":1.0}]},"munis":[{"m":"Franklin","p":[{"n":"Brent Centers","r":"Mayor, Franklin, OH"}]},{"m":"Lebanon","p":[{"n":"Mark Messer","r":"Mayor, Lebanon, OH"}]},{"m":"Springboro","p":[{"n":"John Agenbroad","r":"Mayor, Springboro, OH"}]}],"slug":"warren"},"39167":{"county":[],"districts":{"cd":[{"d":"OH-06","rep":"Michael A. Rulli","w":0.999}],"sh":[{"d":"OH House District 94","rep":"Kevin Ritter","w":1.0}],"ss":[{"d":"OH Senate District 30","rep":"Brian Chavez","w":1.0}]},"munis":[{"m":"Marietta","p":[{"n":"Josh Schlicher","r":"Mayor, Marietta, OH"}]}],"slug":"washington"},"39169":{"county":[],"districts":{"cd":[{"d":"OH-07","rep":"Max L. Miller","w":1.0}],"sh":[{"d":"OH House District 77","rep":"Meredith Craig","w":1.0}],"ss":[{"d":"OH Senate District 31","rep":"Al Landis","w":1.0}]},"munis":[{"m":"Orrville","p":[{"n":"Matthew Plybon","r":"Mayor, Orrville, OH"}]},{"m":"Wooster","p":[{"n":"Robert J. Reynolds","r":"Mayor, Wooster, OH"}]}],"slug":"wayne"},"39171":{"county":[],"districts":{"cd":[{"d":"OH-09","rep":"Marcy Kaptur","w":1.0}],"sh":[{"d":"OH House District 81","rep":"Jim Hoops","w":1.0}],"ss":[{"d":"OH Senate District 1","rep":"Rob McColley","w":1.0}]},"munis":[{"m":"Bryan","p":[{"n":"Carrie Schlade","r":"Mayor, Bryan, OH"}]}],"slug":"williams"},"39173":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":0.84},{"d":"OH-09","rep":"Marcy Kaptur","w":0.16}],"sh":[{"d":"OH House District 75","rep":"Haraz Ghanbari","w":0.955},{"d":"OH House District 44","rep":"Josh Williams","w":0.045}],"ss":[{"d":"OH Senate District 2","rep":"Theresa Gavarone","w":1.0}]},"munis":[{"m":"Bowling Green","p":[{"n":"Mike Aspacher","r":"Mayor, Bowling Green, OH"}]},{"m":"Perrysburg","p":[{"n":"Tom Mackin","r":"Mayor, Perrysburg, OH"}]},{"m":"Rossford","p":[{"n":"Neil A. MacKinnon III","r":"Mayor, Rossford, OH"}]}],"slug":"wood"},"39175":{"county":[],"districts":{"cd":[{"d":"OH-05","rep":"Robert E. Latta","w":0.871},{"d":"OH-04","rep":"Jim Jordan","w":0.129}],"sh":[{"d":"OH House District 87","rep":"Riordan McClain","w":1.0}],"ss":[{"d":"OH Senate District 26","rep":"Bill Reineke","w":1.0}]},"munis":[],"slug":"wyandot"},"40001":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 86","rep":"David Hardin","w":1.0}],"ss":[{"d":"OK Senate District 4","rep":"Tom Woods","w":1.0}]},"munis":[],"slug":"adair"},"40003":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 58","rep":"Carl Newton","w":1.0}],"ss":[{"d":"OK Senate District 19","rep":"Roland Pederson","w":1.0}]},"munis":[],"slug":"alfalfa"},"40005":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 22","rep":"Ryan Eaves","w":0.81},{"d":"OK House District 19","rep":"Justin Humphrey","w":0.19}],"ss":[{"d":"OK Senate District 6","rep":"David Bullard","w":1.0}]},"munis":[],"slug":"atoka"},"40007":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 61","rep":"Kenton Patzkowsky","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"beaver"},"40009":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 57","rep":"Anthony Moore","w":0.669},{"d":"OK House District 55","rep":"Nick Archer","w":0.331}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"beckham"},"40011":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 59","rep":"Mike Dobrinski","w":0.773},{"d":"OK House District 55","rep":"Nick Archer","w":0.226}],"ss":[{"d":"OK Senate District 26","rep":"Darcy Jech","w":1.0}]},"munis":[],"slug":"blaine"},"40013":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":0.998}],"sh":[{"d":"OK House District 19","rep":"Justin Humphrey","w":0.728},{"d":"OK House District 21","rep":"Cody Maynard","w":0.272}],"ss":[{"d":"OK Senate District 6","rep":"David Bullard","w":0.999}]},"munis":[],"slug":"bryan"},"40015":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 65","rep":"Toni Hasenbeck","w":0.82},{"d":"OK House District 55","rep":"Nick Archer","w":0.133},{"d":"OK House District 56","rep":"Dick Lowe","w":0.048}],"ss":[{"d":"OK Senate District 26","rep":"Darcy Jech","w":1.0}]},"munis":[],"slug":"caddo"},"40017":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":0.814},{"d":"OK-05","rep":"Stephanie I. Bice","w":0.185}],"sh":[{"d":"OK House District 55","rep":"Nick Archer","w":0.364},{"d":"OK House District 56","rep":"Dick Lowe","w":0.306},{"d":"OK House District 60","rep":"Mike Kelley","w":0.155},{"d":"OK House District 41","rep":"Denise Crosswhite Hader","w":0.082},{"d":"OK House District 47","rep":"Brian Hill","w":0.077},{"d":"OK House District 43","rep":"Jay Steagall","w":0.016}],"ss":[{"d":"OK Senate District 26","rep":"Darcy Jech","w":0.503},{"d":"OK Senate District 23","rep":"Lonnie Paxton","w":0.294},{"d":"OK Senate District 22","rep":"Kristen Thompson","w":0.109},{"d":"OK Senate District 18","rep":"Jack Stewart","w":0.067},{"d":"OK Senate District 45","rep":"Paul Rosino","w":0.024}]},"munis":[],"slug":"canadian"},"40019":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":1.0}],"sh":[{"d":"OK House District 48","rep":"Tammy Townley","w":0.557},{"d":"OK House District 49","rep":"Josh Cantrell","w":0.443}],"ss":[{"d":"OK Senate District 14","rep":"Jerry Alvord","w":1.0}]},"munis":[],"slug":"carter"},"40021":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 4","rep":"Bob Culver","w":0.597},{"d":"OK House District 86","rep":"David Hardin","w":0.307},{"d":"OK House District 14","rep":"Chris Sneed","w":0.096}],"ss":[{"d":"OK Senate District 3","rep":"Julie McIntosh","w":0.574},{"d":"OK Senate District 9","rep":"Avery Frix","w":0.213},{"d":"OK Senate District 4","rep":"Tom Woods","w":0.213}]},"munis":[],"slug":"cherokee"},"40023":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":0.997}],"sh":[{"d":"OK House District 19","rep":"Justin Humphrey","w":0.999}],"ss":[{"d":"OK Senate District 6","rep":"David Bullard","w":0.999}]},"munis":[{"m":"Hugo","p":[{"n":"Ernest McCarty","r":"Mayor, Hugo, OK"}]}],"slug":"choctaw"},"40025":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 61","rep":"Kenton Patzkowsky","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"cimarron"},"40027":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":1.0}],"sh":[{"d":"OK House District 27","rep":"Danny Sterling","w":0.34},{"d":"OK House District 20","rep":"Jonathan Wilk","w":0.153},{"d":"OK House District 42","rep":"Cindy Roe","w":0.103},{"d":"OK House District 45","rep":"Annie Menz","w":0.096},{"d":"OK House District 46","rep":"Jacob Rosecrants","w":0.068},{"d":"OK House District 36","rep":"John George","w":0.068},{"d":"OK House District 90","rep":"Emily Gise","w":0.037},{"d":"OK House District 95","rep":"Max Wolfley","w":0.035},{"d":"OK House District 91","rep":"Chris Kannady","w":0.035},{"d":"OK House District 53","rep":"Jason Blair","w":0.03},{"d":"OK House District 44","rep":"Jared Deck","w":0.019},{"d":"OK House District 54","rep":"Kevin West","w":0.017}],"ss":[{"d":"OK Senate District 15","rep":"Lisa Standridge","w":0.625},{"d":"OK Senate District 43","rep":"Kendal Sacchieri","w":0.152},{"d":"OK Senate District 16","rep":"Mary Boren","w":0.084},{"d":"OK Senate District 24","rep":"Darrell Weaver","w":0.065},{"d":"OK Senate District 45","rep":"Paul Rosino","w":0.05},{"d":"OK Senate District 17","rep":"Shane Jett","w":0.025}]},"munis":[{"m":"Moore","p":[{"n":"Glenn Lewis","r":"Mayor, Moore, OK"}]},{"m":"Norman","p":[{"n":"Larry Heikkila","r":"Mayor, Norman, OK"}]}],"slug":"cleveland"},"40029":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 18","rep":"David Smith","w":0.708},{"d":"OK House District 22","rep":"Ryan Eaves","w":0.292}],"ss":[{"d":"OK Senate District 14","rep":"Jerry Alvord","w":1.0}]},"munis":[],"slug":"coal"},"40031":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":1.0}],"sh":[{"d":"OK House District 63","rep":"Trey Caldwell","w":0.624},{"d":"OK House District 65","rep":"Toni Hasenbeck","w":0.264},{"d":"OK House District 64","rep":"Rande Worthen","w":0.094},{"d":"OK House District 62","rep":"Daniel Pae","w":0.017}],"ss":[{"d":"OK Senate District 32","rep":"Dusty Deevers","w":0.544},{"d":"OK Senate District 31","rep":"Spencer Kern","w":0.456}]},"munis":[{"m":"Lawton","p":[{"n":"Stan Booker","r":"Mayor, Lawton, OK"}]}],"slug":"comanche"},"40033":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.999}],"sh":[{"d":"OK House District 63","rep":"Trey Caldwell","w":1.0}],"ss":[{"d":"OK Senate District 31","rep":"Spencer Kern","w":1.0}]},"munis":[],"slug":"cotton"},"40035":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 7","rep":"Steve Bashore","w":0.677},{"d":"OK House District 6","rep":"Rusty Cornwell","w":0.323}],"ss":[{"d":"OK Senate District 1","rep":"Micheal Bergstrom","w":1.0}]},"munis":[],"slug":"craig"},"40037":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":0.866},{"d":"OK-01","rep":"Kevin Hern","w":0.134}],"sh":[{"d":"OK House District 29","rep":"Kyle Hilbert","w":0.727},{"d":"OK House District 35","rep":"Dillon Travis","w":0.158},{"d":"OK House District 30","rep":"Mark Lawson","w":0.081},{"d":"OK House District 24","rep":"Chris Banning","w":0.033}],"ss":[{"d":"OK Senate District 12","rep":"Todd Gollihare","w":0.509},{"d":"OK Senate District 8","rep":"Bryan Logan","w":0.275},{"d":"OK Senate District 21","rep":"Randy Grellner","w":0.216}]},"munis":[{"m":"Sapulpa","p":[{"n":"Craig Henderson","r":"Mayor, Sapulpa, OK"}]}],"slug":"creek"},"40039":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 57","rep":"Anthony Moore","w":1.0}],"ss":[{"d":"OK Senate District 26","rep":"Darcy Jech","w":1.0}]},"munis":[],"slug":"custer"},"40041":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 5","rep":"Josh West","w":0.622},{"d":"OK House District 86","rep":"David Hardin","w":0.321},{"d":"OK House District 7","rep":"Steve Bashore","w":0.057}],"ss":[{"d":"OK Senate District 4","rep":"Tom Woods","w":0.886},{"d":"OK Senate District 1","rep":"Micheal Bergstrom","w":0.114}]},"munis":[],"slug":"delaware"},"40043":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 59","rep":"Mike Dobrinski","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"dewey"},"40045":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 61","rep":"Kenton Patzkowsky","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"ellis"},"40047":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 38","rep":"John Pfeiffer","w":0.55},{"d":"OK House District 59","rep":"Mike Dobrinski","w":0.271},{"d":"OK House District 58","rep":"Carl Newton","w":0.161},{"d":"OK House District 40","rep":"Chad Caldwell","w":0.017}],"ss":[{"d":"OK Senate District 19","rep":"Roland Pederson","w":1.0}]},"munis":[{"m":"Enid","p":[{"n":"David Mason","r":"Mayor, Enid, OK"}]}],"slug":"garfield"},"40049":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":1.0}],"sh":[{"d":"OK House District 42","rep":"Cindy Roe","w":0.601},{"d":"OK House District 48","rep":"Tammy Townley","w":0.399}],"ss":[{"d":"OK Senate District 13","rep":"Jonathan Wingard","w":0.985},{"d":"OK Senate District 43","rep":"Kendal Sacchieri","w":0.015}]},"munis":[],"slug":"garvin"},"40051":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.998}],"sh":[{"d":"OK House District 51","rep":"Brad Boles","w":0.664},{"d":"OK House District 56","rep":"Dick Lowe","w":0.336}],"ss":[{"d":"OK Senate District 23","rep":"Lonnie Paxton","w":0.541},{"d":"OK Senate District 43","rep":"Kendal Sacchieri","w":0.459}]},"munis":[],"slug":"grady"},"40053":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 38","rep":"John Pfeiffer","w":1.0}],"ss":[{"d":"OK Senate District 19","rep":"Roland Pederson","w":1.0}]},"munis":[],"slug":"grant"},"40055":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 52","rep":"Gerrid Kendrix","w":1.0}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"greer"},"40057":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 52","rep":"Gerrid Kendrix","w":1.0}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"harmon"},"40059":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 61","rep":"Kenton Patzkowsky","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"harper"},"40061":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 15","rep":"Tim Turner","w":1.0}],"ss":[{"d":"OK Senate District 7","rep":"Warren Hamilton","w":1.0}]},"munis":[],"slug":"haskell"},"40063":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":0.999}],"sh":[{"d":"OK House District 18","rep":"David Smith","w":1.0}],"ss":[{"d":"OK Senate District 13","rep":"Jonathan Wingard","w":1.0}]},"munis":[],"slug":"hughes"},"40065":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":0.995}],"sh":[{"d":"OK House District 52","rep":"Gerrid Kendrix","w":0.999}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"jackson"},"40067":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.998}],"sh":[{"d":"OK House District 50","rep":"Stacy Adams","w":0.999}],"ss":[{"d":"OK Senate District 31","rep":"Spencer Kern","w":0.999}]},"munis":[],"slug":"jefferson"},"40069":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 22","rep":"Ryan Eaves","w":1.0}],"ss":[{"d":"OK Senate District 14","rep":"Jerry Alvord","w":0.774},{"d":"OK Senate District 6","rep":"David Bullard","w":0.226}]},"munis":[],"slug":"johnston"},"40071":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 38","rep":"John Pfeiffer","w":0.671},{"d":"OK House District 37","rep":"Ken Luttrell","w":0.329}],"ss":[{"d":"OK Senate District 10","rep":"Bill Coleman","w":0.606},{"d":"OK Senate District 19","rep":"Roland Pederson","w":0.394}]},"munis":[],"slug":"kay"},"40073":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 59","rep":"Mike Dobrinski","w":0.947},{"d":"OK House District 41","rep":"Denise Crosswhite Hader","w":0.053}],"ss":[{"d":"OK Senate District 26","rep":"Darcy Jech","w":0.709},{"d":"OK Senate District 20","rep":"Chuck Hall","w":0.291}]},"munis":[],"slug":"kingfisher"},"40075":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 63","rep":"Trey Caldwell","w":0.572},{"d":"OK House District 52","rep":"Gerrid Kendrix","w":0.428}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"kiowa"},"40077":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 17","rep":"Jim Grego","w":1.0}],"ss":[{"d":"OK Senate District 7","rep":"Warren Hamilton","w":1.0}]},"munis":[],"slug":"latimer"},"40079":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 1","rep":"Eddy Dempsey","w":0.537},{"d":"OK House District 3","rep":"Rick West","w":0.392},{"d":"OK House District 15","rep":"Tim Turner","w":0.072}],"ss":[{"d":"OK Senate District 5","rep":"George Burns","w":0.969},{"d":"OK Senate District 7","rep":"Warren Hamilton","w":0.03}]},"munis":[],"slug":"le-flore"},"40081":{"county":[],"districts":{"cd":[{"d":"OK-05","rep":"Stephanie I. Bice","w":0.999}],"sh":[{"d":"OK House District 32","rep":"Jim Shaw","w":1.0}],"ss":[{"d":"OK Senate District 28","rep":"Grant Green","w":1.0}]},"munis":[],"slug":"lincoln"},"40083":{"county":[],"districts":{"cd":[{"d":"OK-05","rep":"Stephanie I. Bice","w":0.574},{"d":"OK-03","rep":"Frank D. Lucas","w":0.426}],"sh":[{"d":"OK House District 38","rep":"John Pfeiffer","w":0.489},{"d":"OK House District 31","rep":"Collin Duel","w":0.232},{"d":"OK House District 33","rep":"Molly Jenkins","w":0.139},{"d":"OK House District 32","rep":"Jim Shaw","w":0.086},{"d":"OK House District 41","rep":"Denise Crosswhite Hader","w":0.054}],"ss":[{"d":"OK Senate District 20","rep":"Chuck Hall","w":0.81},{"d":"OK Senate District 28","rep":"Grant Green","w":0.19}]},"munis":[],"slug":"logan"},"40085":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.996}],"sh":[{"d":"OK House District 49","rep":"Josh Cantrell","w":0.998}],"ss":[{"d":"OK Senate District 31","rep":"Spencer Kern","w":0.998}]},"munis":[],"slug":"love"},"40087":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.999}],"sh":[{"d":"OK House District 42","rep":"Cindy Roe","w":0.62},{"d":"OK House District 20","rep":"Jonathan Wilk","w":0.292},{"d":"OK House District 25","rep":"Ronny Johns","w":0.088}],"ss":[{"d":"OK Senate District 43","rep":"Kendal Sacchieri","w":0.822},{"d":"OK Senate District 13","rep":"Jonathan Wingard","w":0.178}]},"munis":[],"slug":"mcclain"},"40089":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":0.993},{"d":"TX-04","rep":"Pat Fallon","w":0.007}],"sh":[{"d":"OK House District 1","rep":"Eddy Dempsey","w":0.999}],"ss":[{"d":"OK Senate District 5","rep":"George Burns","w":0.999}]},"munis":[],"slug":"mccurtain"},"40091":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 15","rep":"Tim Turner","w":0.864},{"d":"OK House District 13","rep":"Neil Hays","w":0.136}],"ss":[{"d":"OK Senate District 8","rep":"Bryan Logan","w":1.0}]},"munis":[],"slug":"mcintosh"},"40093":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 58","rep":"Carl Newton","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"major"},"40095":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 49","rep":"Josh Cantrell","w":0.71},{"d":"OK House District 21","rep":"Cody Maynard","w":0.289}],"ss":[{"d":"OK Senate District 14","rep":"Jerry Alvord","w":1.0}]},"munis":[],"slug":"marshall"},"40097":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 8","rep":"Tom Gann","w":0.361},{"d":"OK House District 5","rep":"Josh West","w":0.331},{"d":"OK House District 6","rep":"Rusty Cornwell","w":0.183},{"d":"OK House District 86","rep":"David Hardin","w":0.125}],"ss":[{"d":"OK Senate District 1","rep":"Micheal Bergstrom","w":0.597},{"d":"OK Senate District 3","rep":"Julie McIntosh","w":0.403}]},"munis":[],"slug":"mayes"},"40099":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":1.0}],"sh":[{"d":"OK House District 22","rep":"Ryan Eaves","w":0.75},{"d":"OK House District 48","rep":"Tammy Townley","w":0.25}],"ss":[{"d":"OK Senate District 14","rep":"Jerry Alvord","w":0.609},{"d":"OK Senate District 13","rep":"Jonathan Wingard","w":0.391}]},"munis":[],"slug":"murray"},"40101":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 13","rep":"Neil Hays","w":0.43},{"d":"OK House District 15","rep":"Tim Turner","w":0.385},{"d":"OK House District 14","rep":"Chris Sneed","w":0.12},{"d":"OK House District 16","rep":"Scott Fetgatter","w":0.064}],"ss":[{"d":"OK Senate District 8","rep":"Bryan Logan","w":0.513},{"d":"OK Senate District 9","rep":"Avery Frix","w":0.487}]},"munis":[],"slug":"muskogee"},"40103":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 38","rep":"John Pfeiffer","w":0.6},{"d":"OK House District 35","rep":"Dillon Travis","w":0.4}],"ss":[{"d":"OK Senate District 20","rep":"Chuck Hall","w":1.0}]},"munis":[],"slug":"noble"},"40105":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 10","rep":"Judd Strom","w":0.726},{"d":"OK House District 6","rep":"Rusty Cornwell","w":0.274}],"ss":[{"d":"OK Senate District 29","rep":"Julie Daniels","w":1.0}]},"munis":[],"slug":"nowata"},"40107":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":0.998}],"sh":[{"d":"OK House District 18","rep":"David Smith","w":1.0}],"ss":[{"d":"OK Senate District 8","rep":"Bryan Logan","w":1.0}]},"munis":[],"slug":"okfuskee"},"40109":{"county":[],"districts":{"cd":[{"d":"OK-05","rep":"Stephanie I. Bice","w":0.814},{"d":"OK-03","rep":"Frank D. Lucas","w":0.121},{"d":"OK-04","rep":"Tom Cole","w":0.064}],"sh":[{"d":"OK House District 36","rep":"John George","w":0.283},{"d":"OK House District 97","rep":"Aletia Timmons","w":0.114},{"d":"OK House District 96","rep":"Preston Stinson","w":0.103},{"d":"OK House District 101","rep":"Robert Manger","w":0.064},{"d":"OK House District 90","rep":"Emily Gise","w":0.053},{"d":"OK House District 41","rep":"Denise Crosswhite Hader","w":0.043},{"d":"OK House District 95","rep":"Max Wolfley","w":0.042},{"d":"OK House District 39","rep":"Erick Harris","w":0.028},{"d":"OK House District 82","rep":"Nicole Miller","w":0.028},{"d":"OK House District 94","rep":"Andy Fugate","w":0.026},{"d":"OK House District 85","rep":"Cyndi Munson","w":0.025},{"d":"OK House District 81","rep":"Mike Osburn","w":0.021},{"d":"OK House District 83","rep":"Eric Roberts","w":0.018},{"d":"OK House District 31","rep":"Collin Duel","w":0.018},{"d":"OK House District 100","rep":"Marilyn Stark","w":0.016},{"d":"OK House District 84","rep":"Tammy West","w":0.015},{"d":"OK House District 89","rep":"Arturo Alonso","w":0.015},{"d":"OK House District 87","rep":"Ellyn Hefner","w":0.013},{"d":"OK House District 88","rep":"Ellen Pogemiller","w":0.011},{"d":"OK House District 93","rep":"Mickey Dollens","w":0.009},{"d":"OK House District 54","rep":"Kevin West","w":0.006}],"ss":[{"d":"OK Senate District 42","rep":"Brenda Stanley","w":0.167},{"d":"OK Senate District 28","rep":"Grant Green","w":0.14},{"d":"OK Senate District 48","rep":"Nikki Nice","w":0.125},{"d":"OK Senate District 41","rep":"Adam Pugh","w":0.119},{"d":"OK Senate District 17","rep":"Shane Jett","w":0.111},{"d":"OK Senate District 22","rep":"Kristen Thompson","w":0.073},{"d":"OK Senate District 47","rep":"Kelly Hines","w":0.054},{"d":"OK Senate District 46","rep":"Mark Mann","w":0.049},{"d":"OK Senate District 40","rep":"Carri Hicks","w":0.046},{"d":"OK Senate District 44","rep":"Michael Brooks","w":0.043},{"d":"OK Senate District 45","rep":"Paul Rosino","w":0.034},{"d":"OK Senate District 30","rep":"Julia Kirt","w":0.03},{"d":"OK Senate District 18","rep":"Jack Stewart","w":0.009}]},"munis":[{"m":"Oklahoma City","p":[{"n":"Mick Cornett","r":"Mayor, Oklahoma City, OK"}]}],"slug":"oklahoma"},"40111":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 16","rep":"Scott Fetgatter","w":0.832},{"d":"OK House District 24","rep":"Chris Banning","w":0.168}],"ss":[{"d":"OK Senate District 8","rep":"Bryan Logan","w":1.0}]},"munis":[],"slug":"okmulgee"},"40113":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 37","rep":"Ken Luttrell","w":0.522},{"d":"OK House District 10","rep":"Judd Strom","w":0.291},{"d":"OK House District 35","rep":"Dillon Travis","w":0.105},{"d":"OK House District 66","rep":"Clay Staires","w":0.079}],"ss":[{"d":"OK Senate District 10","rep":"Bill Coleman","w":0.99},{"d":"OK Senate District 11","rep":"Regina Goodwin","w":0.01}]},"munis":[],"slug":"osage"},"40115":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 7","rep":"Steve Bashore","w":1.0}],"ss":[{"d":"OK Senate District 1","rep":"Micheal Bergstrom","w":1.0}]},"munis":[],"slug":"ottawa"},"40117":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 35","rep":"Dillon Travis","w":1.0}],"ss":[{"d":"OK Senate District 20","rep":"Chuck Hall","w":1.0}]},"munis":[],"slug":"pawnee"},"40119":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":0.999}],"sh":[{"d":"OK House District 33","rep":"Molly Jenkins","w":0.801},{"d":"OK House District 35","rep":"Dillon Travis","w":0.105},{"d":"OK House District 32","rep":"Jim Shaw","w":0.062},{"d":"OK House District 34","rep":"Trish Ranson","w":0.032}],"ss":[{"d":"OK Senate District 21","rep":"Randy Grellner","w":0.603},{"d":"OK Senate District 20","rep":"Chuck Hall","w":0.398}]},"munis":[{"m":"Stillwater","p":[{"n":"Will Joyce","r":"Mayor, Stillwater, OK"}]}],"slug":"payne"},"40121":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 17","rep":"Jim Grego","w":0.616},{"d":"OK House District 18","rep":"David Smith","w":0.354},{"d":"OK House District 15","rep":"Tim Turner","w":0.03}],"ss":[{"d":"OK Senate District 7","rep":"Warren Hamilton","w":1.0}]},"munis":[],"slug":"pittsburg"},"40123":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.998}],"sh":[{"d":"OK House District 25","rep":"Ronny Johns","w":1.0}],"ss":[{"d":"OK Senate District 13","rep":"Jonathan Wingard","w":1.0}]},"munis":[],"slug":"pontotoc"},"40125":{"county":[],"districts":{"cd":[{"d":"OK-05","rep":"Stephanie I. Bice","w":0.999}],"sh":[{"d":"OK House District 28","rep":"Danny Williams","w":0.429},{"d":"OK House District 27","rep":"Danny Sterling","w":0.345},{"d":"OK House District 26","rep":"Dell Kerbs","w":0.154},{"d":"OK House District 25","rep":"Ronny Johns","w":0.072}],"ss":[{"d":"OK Senate District 17","rep":"Shane Jett","w":0.792},{"d":"OK Senate District 28","rep":"Grant Green","w":0.208}]},"munis":[],"slug":"pottawatomie"},"40127":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 19","rep":"Justin Humphrey","w":1.0}],"ss":[{"d":"OK Senate District 5","rep":"George Burns","w":0.65},{"d":"OK Senate District 6","rep":"David Bullard","w":0.349}]},"munis":[],"slug":"pushmataha"},"40129":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 57","rep":"Anthony Moore","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"roger-mills"},"40131":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":0.947},{"d":"OK-01","rep":"Kevin Hern","w":0.053}],"sh":[{"d":"OK House District 6","rep":"Rusty Cornwell","w":0.509},{"d":"OK House District 8","rep":"Tom Gann","w":0.275},{"d":"OK House District 23","rep":"Derrick Hildebrant","w":0.109},{"d":"OK House District 9","rep":"Mark Lepak","w":0.087},{"d":"OK House District 74","rep":"Kevin Norwood","w":0.019}],"ss":[{"d":"OK Senate District 29","rep":"Julie Daniels","w":0.458},{"d":"OK Senate District 2","rep":"Ally Seifried","w":0.386},{"d":"OK Senate District 3","rep":"Julie McIntosh","w":0.095},{"d":"OK Senate District 1","rep":"Micheal Bergstrom","w":0.061}]},"munis":[],"slug":"rogers"},"40133":{"county":[],"districts":{"cd":[{"d":"OK-05","rep":"Stephanie I. Bice","w":0.995}],"sh":[{"d":"OK House District 28","rep":"Danny Williams","w":1.0}],"ss":[{"d":"OK Senate District 28","rep":"Grant Green","w":1.0}]},"munis":[],"slug":"seminole"},"40135":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 2","rep":"Jim Olsen","w":1.0}],"ss":[{"d":"OK Senate District 4","rep":"Tom Woods","w":0.747},{"d":"OK Senate District 7","rep":"Warren Hamilton","w":0.253}]},"munis":[],"slug":"sequoyah"},"40137":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":1.0}],"sh":[{"d":"OK House District 50","rep":"Stacy Adams","w":0.669},{"d":"OK House District 51","rep":"Brad Boles","w":0.331}],"ss":[{"d":"OK Senate District 31","rep":"Spencer Kern","w":0.799},{"d":"OK Senate District 43","rep":"Kendal Sacchieri","w":0.201}]},"munis":[],"slug":"stephens"},"40139":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 61","rep":"Kenton Patzkowsky","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"texas"},"40141":{"county":[],"districts":{"cd":[{"d":"OK-04","rep":"Tom Cole","w":0.997}],"sh":[{"d":"OK House District 63","rep":"Trey Caldwell","w":1.0}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"tillman"},"40143":{"county":[],"districts":{"cd":[{"d":"OK-01","rep":"Kevin Hern","w":1.0}],"sh":[{"d":"OK House District 11","rep":"John Kane","w":0.124},{"d":"OK House District 24","rep":"Chris Banning","w":0.106},{"d":"OK House District 66","rep":"Clay Staires","w":0.085},{"d":"OK House District 16","rep":"Scott Fetgatter","w":0.081},{"d":"OK House District 29","rep":"Kyle Hilbert","w":0.07},{"d":"OK House District 72","rep":"Michelle McCane","w":0.069},{"d":"OK House District 77","rep":"John Waldron","w":0.065},{"d":"OK House District 68","rep":"Mike Lay","w":0.062},{"d":"OK House District 80","rep":"Stan May","w":0.039},{"d":"OK House District 69","rep":"Mark Tedford","w":0.036},{"d":"OK House District 74","rep":"Kevin Norwood","w":0.036},{"d":"OK House District 75","rep":"T.J. Marti","w":0.026},{"d":"OK House District 73","rep":"Ron Stewart","w":0.025},{"d":"OK House District 70","rep":"Suzanne Schreiber","w":0.023},{"d":"OK House District 23","rep":"Derrick Hildebrant","w":0.022},{"d":"OK House District 79","rep":"Melissa Provenzano","w":0.021},{"d":"OK House District 76","rep":"Ross Ford","w":0.02},{"d":"OK House District 78","rep":"Meloyde Blancett","w":0.019},{"d":"OK House District 67","rep":"Rob Hall","w":0.018},{"d":"OK House District 71","rep":"Amanda Clinton","w":0.016},{"d":"OK House District 30","rep":"Mark Lawson","w":0.016},{"d":"OK House District 98","rep":"Gabe Woolley","w":0.015},{"d":"OK House District 9","rep":"Mark Lepak","w":0.005}],"ss":[{"d":"OK Senate District 25","rep":"Brian Guthrie","w":0.2},{"d":"OK Senate District 34","rep":"Dana Prieto","w":0.174},{"d":"OK Senate District 37","rep":"Aaron Reinhardt","w":0.126},{"d":"OK Senate District 12","rep":"Todd Gollihare","w":0.118},{"d":"OK Senate District 10","rep":"Bill Coleman","w":0.088},{"d":"OK Senate District 33","rep":"Christi Gillespie","w":0.062},{"d":"OK Senate District 11","rep":"Regina Goodwin","w":0.062},{"d":"OK Senate District 39","rep":"Dave Rader","w":0.045},{"d":"OK Senate District 2","rep":"Ally Seifried","w":0.045},{"d":"OK Senate District 35","rep":"Jo Anna Dossett","w":0.044},{"d":"OK Senate District 36","rep":"John Haste","w":0.035}]},"munis":[{"m":"Broken Arrow","p":[{"n":"Debra Wimpee","r":"Mayor, Broken Arrow, OK"}]},{"m":"Tulsa","p":[{"n":"Monroe Nichols","r":"Mayor, Tulsa, OK"}]}],"slug":"tulsa"},"40145":{"county":[],"districts":{"cd":[{"d":"OK-01","rep":"Kevin Hern","w":0.591},{"d":"OK-02","rep":"Josh Brecheen","w":0.409}],"sh":[{"d":"OK House District 12","rep":"Mark Chapman","w":0.677},{"d":"OK House District 14","rep":"Chris Sneed","w":0.126},{"d":"OK House District 4","rep":"Bob Culver","w":0.053},{"d":"OK House District 13","rep":"Neil Hays","w":0.046},{"d":"OK House District 8","rep":"Tom Gann","w":0.043},{"d":"OK House District 23","rep":"Derrick Hildebrant","w":0.031},{"d":"OK House District 98","rep":"Gabe Woolley","w":0.025}],"ss":[{"d":"OK Senate District 3","rep":"Julie McIntosh","w":0.918},{"d":"OK Senate District 36","rep":"John Haste","w":0.082}]},"munis":[],"slug":"wagoner"},"40147":{"county":[],"districts":{"cd":[{"d":"OK-02","rep":"Josh Brecheen","w":1.0}],"sh":[{"d":"OK House District 10","rep":"Judd Strom","w":0.653},{"d":"OK House District 11","rep":"John Kane","w":0.347}],"ss":[{"d":"OK Senate District 29","rep":"Julie Daniels","w":1.0}]},"munis":[],"slug":"washington"},"40149":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 55","rep":"Nick Archer","w":1.0}],"ss":[{"d":"OK Senate District 38","rep":"Brent Howard","w":1.0}]},"munis":[],"slug":"washita"},"40151":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 58","rep":"Carl Newton","w":1.0}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"woods"},"40153":{"county":[],"districts":{"cd":[{"d":"OK-03","rep":"Frank D. Lucas","w":1.0}],"sh":[{"d":"OK House District 58","rep":"Carl Newton","w":0.485},{"d":"OK House District 61","rep":"Kenton Patzkowsky","w":0.289},{"d":"OK House District 59","rep":"Mike Dobrinski","w":0.227}],"ss":[{"d":"OK Senate District 27","rep":"Casey Murdock","w":1.0}]},"munis":[],"slug":"woodward"},"41001":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":0.999}],"sh":[{"d":"OR House District 60","rep":"Mark Owens","w":1.0}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":1.0}]},"munis":[],"slug":"baker"},"41003":{"county":[],"districts":{"cd":[{"d":"OR-04","rep":"Val T. Hoyle","w":0.997}],"sh":[{"d":"OR House District 10","rep":"David Gomberg","w":0.821},{"d":"OR House District 16","rep":"Sarah McDonald","w":0.168},{"d":"OR House District 15","rep":"Shelly Davis","w":0.011}],"ss":[{"d":"OR Senate District 5","rep":"Dick Anderson","w":0.821},{"d":"OR Senate District 8","rep":"Sara Gelser Blouin","w":0.179}]},"munis":[{"m":"Corvallis","p":[{"n":"Biff Traber","r":"Mayor, Corvallis, OR"}]}],"slug":"benton"},"41005":{"county":[],"districts":{"cd":[{"d":"OR-05","rep":"Janelle S. Bynum","w":0.68},{"d":"OR-03","rep":"Maxine Dexter","w":0.289},{"d":"OR-06","rep":"Andrea Salinas","w":0.018},{"d":"OR-02","rep":"Cliff Bentz","w":0.013}],"sh":[{"d":"OR House District 18","rep":"Rick Lewis","w":0.575},{"d":"OR House District 52","rep":"Jeff Helfrich","w":0.2},{"d":"OR House District 51","rep":"Matt Bunch","w":0.12},{"d":"OR House District 48","rep":"Lamar Wise","w":0.02},{"d":"OR House District 37","rep":"Jules Walters","w":0.019},{"d":"OR House District 26","rep":"Sue Rieke Smith","w":0.016},{"d":"OR House District 39","rep":"April Dobson","w":0.014},{"d":"OR House District 57","rep":"Greg Smith","w":0.013},{"d":"OR House District 40","rep":"Annessa Hartman","w":0.012},{"d":"OR House District 38","rep":"Daniel Nguyen","w":0.006},{"d":"OR House District 41","rep":"Mark Gamba","w":0.005}],"ss":[{"d":"OR Senate District 9","rep":"Fred Girod","w":0.575},{"d":"OR Senate District 26","rep":"Christine Drazan","w":0.32},{"d":"OR Senate District 20","rep":"Mark Meek","w":0.026},{"d":"OR Senate District 19","rep":"Rob Wagner","w":0.025},{"d":"OR Senate District 24","rep":"Kayse Jama","w":0.02},{"d":"OR Senate District 13","rep":"Courtney Neron Misslin","w":0.016},{"d":"OR Senate District 29","rep":"Todd Nash","w":0.013},{"d":"OR Senate District 21","rep":"Kathleen Taylor","w":0.005}]},"munis":[{"m":"Estacada","p":[{"n":"Sean Drinkwine","r":"Mayor, Estacada, OR"}]},{"m":"Lake Oswego","p":[{"n":"Kent Studebaker","r":"Mayor, Lake Oswego, OR"}]},{"m":"Wilsonville","p":[{"n":"Julie Fitzgerald","r":"Mayor, Wilsonville, OR"}]}],"slug":"clackamas"},"41007":{"county":[],"districts":{"cd":[{"d":"OR-01","rep":"Suzanne Bonamici","w":0.786}],"sh":[{"d":"OR House District 32","rep":"Cyrus Javadi","w":0.787}],"ss":[{"d":"OR Senate District 16","rep":"Suzanne Weber","w":0.787}]},"munis":[{"m":"Astoria","p":[{"n":"Bruce Jones","r":"Mayor, Astoria, OR"}]},{"m":"Cannon Beach","p":[{"n":"Sam Steidel","r":"Mayor, Cannon Beach, OR"}]}],"slug":"clatsop"},"41009":{"county":[],"districts":{"cd":[{"d":"OR-01","rep":"Suzanne Bonamici","w":1.0}],"sh":[{"d":"OR House District 31","rep":"Darcey Edwards","w":0.927},{"d":"OR House District 32","rep":"Cyrus Javadi","w":0.073}],"ss":[{"d":"OR Senate District 16","rep":"Suzanne Weber","w":1.0}]},"munis":[],"slug":"columbia"},"41011":{"county":[],"districts":{"cd":[{"d":"OR-04","rep":"Val T. Hoyle","w":0.9}],"sh":[{"d":"OR House District 1","rep":"Court Boice","w":0.745},{"d":"OR House District 9","rep":"Boomer Wright","w":0.156}],"ss":[{"d":"OR Senate District 1","rep":"David Smith","w":0.745},{"d":"OR Senate District 5","rep":"Dick Anderson","w":0.156}]},"munis":[{"m":"Coos Bay","p":[{"n":"Joe Benetti","r":"Mayor, Coos Bay, OR"}]},{"m":"Coquille","p":[{"n":"Sam Flaherty","r":"Mayor, Coquille, OR"}]}],"slug":"coos"},"41013":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 59","rep":"Vikki Breese Iverson","w":1.0}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":1.0}]},"munis":[{"m":"Prineville","p":[{"n":"Jason Beebe","r":"Mayor, Prineville, OR"}]}],"slug":"crook"},"41015":{"county":[],"districts":{"cd":[{"d":"OR-04","rep":"Val T. Hoyle","w":0.82}],"sh":[{"d":"OR House District 1","rep":"Court Boice","w":0.822}],"ss":[{"d":"OR Senate District 1","rep":"David Smith","w":0.822}]},"munis":[],"slug":"curry"},"41017":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":0.608},{"d":"OR-05","rep":"Janelle S. Bynum","w":0.391}],"sh":[{"d":"OR House District 55","rep":"Werner Reschke","w":0.512},{"d":"OR House District 60","rep":"Mark Owens","w":0.222},{"d":"OR House District 53","rep":"Em Levy","w":0.177},{"d":"OR House District 59","rep":"Vikki Breese Iverson","w":0.079},{"d":"OR House District 54","rep":"Jason Kropf","w":0.009}],"ss":[{"d":"OR Senate District 28","rep":"Diane Linthicum","w":0.512},{"d":"OR Senate District 30","rep":"Mike McLane","w":0.302},{"d":"OR Senate District 27","rep":"Anthony Broadman","w":0.186}]},"munis":[{"m":"Bend","p":[{"n":"Melanie Kebler","r":"Mayor, Bend, OR"}]}],"slug":"deschutes"},"41019":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":0.558},{"d":"OR-04","rep":"Val T. Hoyle","w":0.429}],"sh":[{"d":"OR House District 2","rep":"Virgle Osborne","w":0.619},{"d":"OR House District 4","rep":"Alek Skarlatos","w":0.165},{"d":"OR House District 1","rep":"Court Boice","w":0.102},{"d":"OR House District 9","rep":"Boomer Wright","w":0.102}],"ss":[{"d":"OR Senate District 1","rep":"David Smith","w":0.721},{"d":"OR Senate District 2","rep":"Noah Robinson","w":0.165},{"d":"OR Senate District 5","rep":"Dick Anderson","w":0.102}]},"munis":[{"m":"Roseburg","p":[{"n":"Larry Rich","r":"Mayor, Roseburg, OR"}]},{"m":"Sutherlin","p":[{"n":"Michelle Sumner","r":"Mayor, Sutherlin, OR"}]}],"slug":"douglas"},"41021":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 57","rep":"Greg Smith","w":1.0}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[],"slug":"gilliam"},"41023":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 60","rep":"Mark Owens","w":1.0}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":1.0}]},"munis":[],"slug":"grant"},"41025":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 60","rep":"Mark Owens","w":1.0}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":1.0}]},"munis":[],"slug":"harney"},"41027":{"county":[],"districts":{"cd":[{"d":"OR-03","rep":"Maxine Dexter","w":1.0}],"sh":[{"d":"OR House District 52","rep":"Jeff Helfrich","w":1.0}],"ss":[{"d":"OR Senate District 26","rep":"Christine Drazan","w":1.0}]},"munis":[],"slug":"hood-river"},"41029":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 56","rep":"Emily McIntire","w":0.468},{"d":"OR House District 5","rep":"Pam Marsh","w":0.336},{"d":"OR House District 4","rep":"Alek Skarlatos","w":0.188},{"d":"OR House District 6","rep":"Kim Wallan","w":0.009}],"ss":[{"d":"OR Senate District 28","rep":"Diane Linthicum","w":0.468},{"d":"OR Senate District 3","rep":"Jeff Golden","w":0.344},{"d":"OR Senate District 2","rep":"Noah Robinson","w":0.188}]},"munis":[{"m":"Medford","p":[{"n":"Randy Sparacino","r":"Mayor, Medford, OR"}]}],"slug":"jackson"},"41031":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":0.99},{"d":"OR-05","rep":"Janelle S. Bynum","w":0.01}],"sh":[{"d":"OR House District 59","rep":"Vikki Breese Iverson","w":0.718},{"d":"OR House District 57","rep":"Greg Smith","w":0.282}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":0.718},{"d":"OR Senate District 29","rep":"Todd Nash","w":0.282}]},"munis":[],"slug":"jefferson"},"41033":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":0.998}],"sh":[{"d":"OR House District 3","rep":"Dwayne Yunker","w":0.768},{"d":"OR House District 4","rep":"Alek Skarlatos","w":0.232}],"ss":[{"d":"OR Senate District 2","rep":"Noah Robinson","w":1.0}]},"munis":[{"m":"Grants Pass","p":[{"n":"Sara Bristol","r":"Mayor, Grants Pass, OR"}]}],"slug":"josephine"},"41035":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 55","rep":"Werner Reschke","w":0.788},{"d":"OR House District 56","rep":"Emily McIntire","w":0.212}],"ss":[{"d":"OR Senate District 28","rep":"Diane Linthicum","w":1.0}]},"munis":[],"slug":"klamath"},"41037":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 60","rep":"Mark Owens","w":1.0}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":1.0}]},"munis":[],"slug":"lake"},"41039":{"county":[],"districts":{"cd":[{"d":"OR-04","rep":"Val T. Hoyle","w":0.977}],"sh":[{"d":"OR House District 12","rep":"Darin Harbick","w":0.655},{"d":"OR House District 9","rep":"Boomer Wright","w":0.168},{"d":"OR House District 10","rep":"David Gomberg","w":0.095},{"d":"OR House District 8","rep":"Lisa Fragala","w":0.025},{"d":"OR House District 14","rep":"Julie Fahey","w":0.024},{"d":"OR House District 7","rep":"John Lively","w":0.007}],"ss":[{"d":"OR Senate District 6","rep":"Cedric Hayden","w":0.655},{"d":"OR Senate District 5","rep":"Dick Anderson","w":0.263},{"d":"OR Senate District 4","rep":"Floyd Prozanski","w":0.031},{"d":"OR Senate District 7","rep":"James Manning","w":0.028}]},"munis":[{"m":"Cottage Grove","p":[{"n":"Candace Solesbee","r":"Mayor, Cottage Grove, OR"}]},{"m":"Eugene","p":[{"n":"Lucy Vinis","r":"Mayor, Eugene, OR"}]},{"m":"Springfield","p":[{"n":"Sean VanGordon","r":"Mayor, Springfield, OR"}]}],"slug":"lane"},"41041":{"county":[],"districts":{"cd":[{"d":"OR-04","rep":"Val T. Hoyle","w":0.832}],"sh":[{"d":"OR House District 10","rep":"David Gomberg","w":0.832}],"ss":[{"d":"OR Senate District 5","rep":"Dick Anderson","w":0.832}]},"munis":[{"m":"Newport","p":[{"n":"Dean Sawyer","r":"Mayor, Newport, OR"}]}],"slug":"lincoln"},"41043":{"county":[],"districts":{"cd":[{"d":"OR-05","rep":"Janelle S. Bynum","w":0.993},{"d":"OR-04","rep":"Val T. Hoyle","w":0.006}],"sh":[{"d":"OR House District 11","rep":"Jami Cate","w":0.75},{"d":"OR House District 17","rep":"Ed Diehl","w":0.199},{"d":"OR House District 15","rep":"Shelly Davis","w":0.049}],"ss":[{"d":"OR Senate District 6","rep":"Cedric Hayden","w":0.752},{"d":"OR Senate District 9","rep":"Fred Girod","w":0.199},{"d":"OR Senate District 8","rep":"Sara Gelser Blouin","w":0.049}]},"munis":[],"slug":"linn"},"41045":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 60","rep":"Mark Owens","w":1.0}],"ss":[{"d":"OR Senate District 30","rep":"Mike McLane","w":1.0}]},"munis":[],"slug":"malheur"},"41047":{"county":[],"districts":{"cd":[{"d":"OR-05","rep":"Janelle S. Bynum","w":0.699},{"d":"OR-06","rep":"Andrea Salinas","w":0.296},{"d":"OR-02","rep":"Cliff Bentz","w":0.006}],"sh":[{"d":"OR House District 17","rep":"Ed Diehl","w":0.509},{"d":"OR House District 18","rep":"Rick Lewis","w":0.305},{"d":"OR House District 22","rep":"Lesly Muñoz","w":0.062},{"d":"OR House District 15","rep":"Shelly Davis","w":0.037},{"d":"OR House District 57","rep":"Greg Smith","w":0.023},{"d":"OR House District 20","rep":"Paul Evans","w":0.02},{"d":"OR House District 11","rep":"Jami Cate","w":0.016},{"d":"OR House District 19","rep":"Tom Andersen","w":0.015},{"d":"OR House District 21","rep":"Kevin Mannix","w":0.013}],"ss":[{"d":"OR Senate District 9","rep":"Fred Girod","w":0.814},{"d":"OR Senate District 11","rep":"Kim Thatcher","w":0.075},{"d":"OR Senate District 8","rep":"Sara Gelser Blouin","w":0.037},{"d":"OR Senate District 10","rep":"Deb Patterson","w":0.035},{"d":"OR Senate District 29","rep":"Todd Nash","w":0.023},{"d":"OR Senate District 6","rep":"Cedric Hayden","w":0.016}]},"munis":[{"m":"Salem","p":[{"n":"Anna Peterson","r":"Mayor, Salem, OR"}]},{"m":"Woodburn","p":[{"n":"Eric Swenson","r":"Mayor, Woodburn, OR"}]}],"slug":"marion"},"41049":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 57","rep":"Greg Smith","w":1.0}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[],"slug":"morrow"},"41051":{"county":[],"districts":{"cd":[{"d":"OR-03","rep":"Maxine Dexter","w":0.753},{"d":"OR-01","rep":"Suzanne Bonamici","w":0.221},{"d":"OR-05","rep":"Janelle S. Bynum","w":0.025}],"sh":[{"d":"OR House District 52","rep":"Jeff Helfrich","w":0.443},{"d":"OR House District 31","rep":"Darcey Edwards","w":0.12},{"d":"OR House District 44","rep":"Travis Nelson","w":0.091},{"d":"OR House District 33","rep":"Shannon Isadore","w":0.065},{"d":"OR House District 49","rep":"Zach Hudson","w":0.054},{"d":"OR House District 50","rep":"Ricki Ruiz","w":0.034},{"d":"OR House District 45","rep":"Thuy Tran","w":0.03},{"d":"OR House District 48","rep":"Lamar Wise","w":0.025},{"d":"OR House District 28","rep":"Dacia Grayber","w":0.025},{"d":"OR House District 47","rep":"Andrea Valderrama","w":0.022},{"d":"OR House District 46","rep":"Willy Chotzen","w":0.021},{"d":"OR House District 38","rep":"Daniel Nguyen","w":0.021},{"d":"OR House District 43","rep":"Tawna Sanchez","w":0.017},{"d":"OR House District 42","rep":"Rob Nosse","w":0.017},{"d":"OR House District 41","rep":"Mark Gamba","w":0.013}],"ss":[{"d":"OR Senate District 26","rep":"Christine Drazan","w":0.443},{"d":"OR Senate District 16","rep":"Suzanne Weber","w":0.12},{"d":"OR Senate District 22","rep":"Lew Frederick","w":0.108},{"d":"OR Senate District 25","rep":"Chris Gorsek","w":0.088},{"d":"OR Senate District 17","rep":"Lisa Reynolds","w":0.067},{"d":"OR Senate District 23","rep":"Khanh Pham","w":0.051},{"d":"OR Senate District 24","rep":"Kayse Jama","w":0.047},{"d":"OR Senate District 21","rep":"Kathleen Taylor","w":0.03},{"d":"OR Senate District 14","rep":"Kate Lieber","w":0.025},{"d":"OR Senate District 19","rep":"Rob Wagner","w":0.021}]},"munis":[{"m":"Gresham","p":[{"n":"Travis Stovall","r":"Mayor, Gresham, OR"}]},{"m":"Portland","p":[{"n":"Keith Wilson","r":"Mayor, Portland, OR"}]},{"m":"Troutdale","p":[{"n":"Randy Lauer","r":"Mayor, Troutdale, OR"}]}],"slug":"multnomah"},"41053":{"county":[],"districts":{"cd":[{"d":"OR-06","rep":"Andrea Salinas","w":1.0}],"sh":[{"d":"OR House District 23","rep":"Anna Scharf","w":0.823},{"d":"OR House District 24","rep":"Lucetta Elmer","w":0.142},{"d":"OR House District 20","rep":"Paul Evans","w":0.035}],"ss":[{"d":"OR Senate District 12","rep":"Bruce Starr","w":0.965},{"d":"OR Senate District 10","rep":"Deb Patterson","w":0.035}]},"munis":[],"slug":"polk"},"41055":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 57","rep":"Greg Smith","w":1.0}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[],"slug":"sherman"},"41057":{"county":[],"districts":{"cd":[{"d":"OR-01","rep":"Suzanne Bonamici","w":0.844}],"sh":[{"d":"OR House District 32","rep":"Cyrus Javadi","w":0.844}],"ss":[{"d":"OR Senate District 16","rep":"Suzanne Weber","w":0.844}]},"munis":[{"m":"Tillamook","p":[{"n":"Aaron Burris","r":"Mayor, Tillamook, OR"}]}],"slug":"tillamook"},"41059":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 58","rep":"Bobby Levy","w":0.834},{"d":"OR House District 57","rep":"Greg Smith","w":0.166}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[{"m":"Pendleton","p":[{"n":"John H. Turner","r":"Mayor, Pendleton, OR"}]}],"slug":"umatilla"},"41061":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 58","rep":"Bobby Levy","w":1.0}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[],"slug":"union"},"41063":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 58","rep":"Bobby Levy","w":1.0}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[],"slug":"wallowa"},"41065":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":0.999}],"sh":[{"d":"OR House District 57","rep":"Greg Smith","w":0.953},{"d":"OR House District 52","rep":"Jeff Helfrich","w":0.047}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":0.953},{"d":"OR Senate District 26","rep":"Christine Drazan","w":0.047}]},"munis":[],"slug":"wasco"},"41067":{"county":[],"districts":{"cd":[{"d":"OR-01","rep":"Suzanne Bonamici","w":0.919},{"d":"OR-06","rep":"Andrea Salinas","w":0.081}],"sh":[{"d":"OR House District 31","rep":"Darcey Edwards","w":0.622},{"d":"OR House District 36","rep":"Hai Pham","w":0.107},{"d":"OR House District 29","rep":"Susan McLain","w":0.096},{"d":"OR House District 30","rep":"Nathan Sosa","w":0.048},{"d":"OR House District 26","rep":"Sue Rieke Smith","w":0.031},{"d":"OR House District 27","rep":"Ken Helm","w":0.02},{"d":"OR House District 25","rep":"Ben Bowman","w":0.02},{"d":"OR House District 34","rep":"Mari Watanabe","w":0.018},{"d":"OR House District 37","rep":"Jules Walters","w":0.016},{"d":"OR House District 35","rep":"Farrah Chaichi","w":0.015},{"d":"OR House District 28","rep":"Dacia Grayber","w":0.006}],"ss":[{"d":"OR Senate District 16","rep":"Suzanne Weber","w":0.622},{"d":"OR Senate District 15","rep":"Janeen Sollman","w":0.144},{"d":"OR Senate District 18","rep":"Wlnsvey Campos","w":0.122},{"d":"OR Senate District 13","rep":"Courtney Neron Misslin","w":0.051},{"d":"OR Senate District 14","rep":"Kate Lieber","w":0.026},{"d":"OR Senate District 17","rep":"Lisa Reynolds","w":0.019},{"d":"OR Senate District 19","rep":"Rob Wagner","w":0.016}]},"munis":[{"m":"Beaverton","p":[{"n":"Lacey Beaty","r":"Mayor, Beaverton, OR"}]},{"m":"Hillsboro","p":[{"n":"Beach Pace","r":"Mayor, Hillsboro, OR"}]}],"slug":"washington"},"41069":{"county":[],"districts":{"cd":[{"d":"OR-02","rep":"Cliff Bentz","w":1.0}],"sh":[{"d":"OR House District 57","rep":"Greg Smith","w":1.0}],"ss":[{"d":"OR Senate District 29","rep":"Todd Nash","w":1.0}]},"munis":[],"slug":"wheeler"},"41071":{"county":[],"districts":{"cd":[{"d":"OR-06","rep":"Andrea Salinas","w":0.999}],"sh":[{"d":"OR House District 24","rep":"Lucetta Elmer","w":0.827},{"d":"OR House District 23","rep":"Anna Scharf","w":0.154},{"d":"OR House District 26","rep":"Sue Rieke Smith","w":0.018}],"ss":[{"d":"OR Senate District 12","rep":"Bruce Starr","w":0.981},{"d":"OR Senate District 13","rep":"Courtney Neron Misslin","w":0.018}]},"munis":[{"m":"Newberg","p":[{"n":"Rick Rogers","r":"Mayor, Newberg, OR"}]}],"slug":"yamhill"},"42001":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":0.998}],"sh":[{"d":"PA House District 91","rep":"Dan Moul","w":0.622},{"d":"PA House District 193","rep":"Catherine Wallen","w":0.378}],"ss":[{"d":"PA Senate District 33","rep":"Doug Mastriano","w":1.0}]},"munis":[],"slug":"adams"},"42003":{"county":[],"districts":{"cd":[{"d":"PA-17","rep":"Christopher R. Deluzio","w":0.625},{"d":"PA-12","rep":"Summer L. Lee","w":0.373}],"sh":[{"d":"PA House District 44","rep":"Valerie Gaydos","w":0.145},{"d":"PA House District 28","rep":"Jeremy Shaffer","w":0.118},{"d":"PA House District 33","rep":"Mandy Steele","w":0.106},{"d":"PA House District 39","rep":"Andrew Kuzma","w":0.097},{"d":"PA House District 30","rep":"Arvind Venkat","w":0.062},{"d":"PA House District 45","rep":"Anita Kulik","w":0.06},{"d":"PA House District 32","rep":"Joe McAndrew","w":0.057},{"d":"PA House District 25","rep":"Brandon Markosek","w":0.052},{"d":"PA House District 35","rep":"Dan Goughnour","w":0.042},{"d":"PA House District 38","rep":"John Inglis","w":0.039},{"d":"PA House District 46","rep":"Jason Ortitay","w":0.028},{"d":"PA House District 21","rep":"Lindsay Powell","w":0.027},{"d":"PA House District 20","rep":"Emily Kinkead","w":0.026},{"d":"PA House District 27","rep":"Dan Deasy","w":0.022},{"d":"PA House District 40","rep":"Natalie Mihalek","w":0.022},{"d":"PA House District 34","rep":"Abigail Salisbury","w":0.022},{"d":"PA House District 42","rep":"Jen Mazzocco","w":0.019},{"d":"PA House District 19","rep":"Aerion Abney","w":0.018},{"d":"PA House District 36","rep":"Jessica Benham","w":0.014},{"d":"PA House District 24","rep":"La'Tasha Mayes","w":0.012},{"d":"PA House District 23","rep":"Dan Frankel","w":0.01}],"ss":[{"d":"PA Senate District 37","rep":"Devlin Robinson","w":0.338},{"d":"PA Senate District 38","rep":"Lindsey Williams","w":0.278},{"d":"PA Senate District 45","rep":"Nick Pisciottano","w":0.224},{"d":"PA Senate District 42","rep":"Wayne Fontana","w":0.081},{"d":"PA Senate District 43","rep":"Jay Costa","w":0.079}]},"munis":[{"m":"Mckeesport","p":[{"n":"Michael Cherepko","r":"Mayor, McKeesport, PA"}]},{"m":"Pittsburgh","p":[{"n":"mayor of Pittsburgh","r":"Mayor, Pittsburgh, PA"}]}],"slug":"allegheny"},"42005":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":0.999}],"sh":[{"d":"PA House District 63","rep":"Josh Bashline","w":0.639},{"d":"PA House District 60","rep":"Abby Major","w":0.361}],"ss":[{"d":"PA Senate District 41","rep":"Joe Pittman","w":1.0}]},"munis":[],"slug":"armstrong"},"42007":{"county":[],"districts":{"cd":[{"d":"PA-17","rep":"Christopher R. Deluzio","w":1.0}],"sh":[{"d":"PA House District 15","rep":"Josh Kail","w":0.481},{"d":"PA House District 14","rep":"Roman Kozak","w":0.397},{"d":"PA House District 16","rep":"Rob Matzie","w":0.122}],"ss":[{"d":"PA Senate District 47","rep":"Elder Vogel","w":0.846},{"d":"PA Senate District 46","rep":"Camera Bartolotta","w":0.154}]},"munis":[],"slug":"beaver"},"42009":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":1.0}],"sh":[{"d":"PA House District 78","rep":"Jesse Topper","w":1.0}],"ss":[{"d":"PA Senate District 32","rep":"Pat Stefano","w":1.0}]},"munis":[],"slug":"bedford"},"42011":{"county":[],"districts":{"cd":[{"d":"PA-04","rep":"Madeleine Dean","w":0.43},{"d":"PA-09","rep":"Daniel Meuser","w":0.367},{"d":"PA-06","rep":"Chrissy Houlahan","w":0.203}],"sh":[{"d":"PA House District 5","rep":"Eric Weaknecht","w":0.29},{"d":"PA House District 130","rep":"David Maloney","w":0.242},{"d":"PA House District 124","rep":"Jamie Barton","w":0.213},{"d":"PA House District 128","rep":"Mark Gillen","w":0.161},{"d":"PA House District 99","rep":"Dave Zimmerman","w":0.041},{"d":"PA House District 126","rep":"Jacklyn Rusnock","w":0.03},{"d":"PA House District 129","rep":"Johanny Cepeda-Freytiz","w":0.015},{"d":"PA House District 127","rep":"Manny Guzman","w":0.009}],"ss":[{"d":"PA Senate District 48","rep":"Chris Gebhard","w":0.483},{"d":"PA Senate District 11","rep":"Judy Schwank","w":0.237},{"d":"PA Senate District 24","rep":"Tracy Pennycuick","w":0.174},{"d":"PA Senate District 13","rep":"Scott Martin","w":0.077},{"d":"PA Senate District 44","rep":"Katie Muth","w":0.029}]},"munis":[{"m":"Reading","p":[{"n":"Eddie Morán","r":"Mayor, Reading, PA"}]}],"slug":"berks"},"42013":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":1.0}],"sh":[{"d":"PA House District 80","rep":"Scott Barger","w":0.836},{"d":"PA House District 79","rep":"Andrea Verobish","w":0.164}],"ss":[{"d":"PA Senate District 30","rep":"Judy Ward","w":1.0}]},"munis":[{"m":"Altoona","p":[{"n":"Matthew A. Pacifico","r":"Mayor, Altoona, PA"}]}],"slug":"blair"},"42015":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":1.0}],"sh":[{"d":"PA House District 68","rep":"Clint Owlett","w":0.501},{"d":"PA House District 110","rep":"Tina Pickett","w":0.498}],"ss":[{"d":"PA Senate District 23","rep":"Gene Yaw","w":1.0}]},"munis":[],"slug":"bradford"},"42017":{"county":[],"districts":{"cd":[{"d":"PA-01","rep":"Brian K. Fitzpatrick","w":0.999}],"sh":[{"d":"PA House District 145","rep":"Craig Staats","w":0.279},{"d":"PA House District 143","rep":"Shelby Labs","w":0.216},{"d":"PA House District 29","rep":"Tim Brennan","w":0.132},{"d":"PA House District 31","rep":"Perry Warren","w":0.086},{"d":"PA House District 178","rep":"Kristin Marcell","w":0.08},{"d":"PA House District 140","rep":"Jim Prokopiak","w":0.055},{"d":"PA House District 142","rep":"Joe Hogan","w":0.044},{"d":"PA House District 144","rep":"Brian Munroe","w":0.042},{"d":"PA House District 18","rep":"K.C. Tomlinson","w":0.034},{"d":"PA House District 141","rep":"Tina Davis","w":0.031}],"ss":[{"d":"PA Senate District 16","rep":"Jarrett Coleman","w":0.43},{"d":"PA Senate District 10","rep":"Steve Santarsiero","w":0.366},{"d":"PA Senate District 6","rep":"Frank Farry","w":0.203}]},"munis":[],"slug":"bucks"},"42019":{"county":[],"districts":{"cd":[{"d":"PA-16","rep":"Mike Kelly","w":1.0}],"sh":[{"d":"PA House District 8","rep":"Aaron Bernstine","w":0.335},{"d":"PA House District 17","rep":"Tim Bonner","w":0.304},{"d":"PA House District 11","rep":"Marci Mustello","w":0.27}],"ss":[{"d":"PA Senate District 21","rep":"Scott Hutchinson","w":0.822},{"d":"PA Senate District 47","rep":"Elder Vogel","w":0.178}]},"munis":[{"m":"Butler","p":[{"n":"Robert A. Dandoy","r":"Mayor, Butler, PA"}]}],"slug":"butler"},"42021":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":0.998}],"sh":[{"d":"PA House District 71","rep":"Jim Rigby","w":0.519},{"d":"PA House District 72","rep":"Frank Burns","w":0.317},{"d":"PA House District 73","rep":"Dallas Kephart","w":0.164}],"ss":[{"d":"PA Senate District 35","rep":"Wayne Langerholc","w":1.0}]},"munis":[{"m":"Johnstown","p":[{"n":"Frank J. Janakovic","r":"Mayor, Johnstown, PA"}]}],"slug":"cambria"},"42023":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 67","rep":"Marty Causer","w":0.999}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":1.0}]},"munis":[],"slug":"cameron"},"42025":{"county":[],"districts":{"cd":[{"d":"PA-07","rep":"Ryan Mackenzie","w":0.997}],"sh":[{"d":"PA House District 122","rep":"Doyle Heffley","w":1.0}],"ss":[{"d":"PA Senate District 29","rep":"Dave Argall","w":1.0}]},"munis":[],"slug":"carbon"},"42027":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 82","rep":"Paul Takac","w":0.417},{"d":"PA House District 77","rep":"Scott Conklin","w":0.292},{"d":"PA House District 171","rep":"Kerry Benninghoff","w":0.291}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":0.709},{"d":"PA Senate District 35","rep":"Wayne Langerholc","w":0.291}]},"munis":[],"slug":"centre"},"42029":{"county":[],"districts":{"cd":[{"d":"PA-06","rep":"Chrissy Houlahan","w":0.996}],"sh":[{"d":"PA House District 13","rep":"John Lawrence","w":0.25},{"d":"PA House District 158","rep":"Christina Sappey","w":0.159},{"d":"PA House District 26","rep":"Paul Friel","w":0.144},{"d":"PA House District 74","rep":"Dan Williams","w":0.11},{"d":"PA House District 167","rep":"Kristine Howard","w":0.095},{"d":"PA House District 155","rep":"Danielle Otten","w":0.084},{"d":"PA House District 157","rep":"Melissa Shusterman","w":0.073},{"d":"PA House District 156","rep":"Chris Pielli","w":0.048},{"d":"PA House District 160","rep":"Craig Williams","w":0.038}],"ss":[{"d":"PA Senate District 19","rep":"Carolyn Comitta","w":0.432},{"d":"PA Senate District 44","rep":"Katie Muth","w":0.4},{"d":"PA Senate District 9","rep":"John Kane","w":0.167}]},"munis":[],"slug":"chester"},"42031":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 63","rep":"Josh Bashline","w":1.0}],"ss":[{"d":"PA Senate District 21","rep":"Scott Hutchinson","w":1.0}]},"munis":[],"slug":"clarion"},"42033":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 73","rep":"Dallas Kephart","w":0.664},{"d":"PA House District 75","rep":"Mike Armanini","w":0.336}],"ss":[{"d":"PA Senate District 35","rep":"Wayne Langerholc","w":1.0}]},"munis":[],"slug":"clearfield"},"42035":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 76","rep":"Stephanie Borowicz","w":1.0}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":1.0}]},"munis":[],"slug":"clinton"},"42037":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":1.0}],"sh":[{"d":"PA House District 109","rep":"Robert Leadbeter","w":1.0}],"ss":[{"d":"PA Senate District 27","rep":"Lynda Culver","w":1.0}]},"munis":[],"slug":"columbia"},"42039":{"county":[],"districts":{"cd":[{"d":"PA-16","rep":"Mike Kelly","w":1.0}],"sh":[{"d":"PA House District 6","rep":"Brad Roae","w":0.577},{"d":"PA House District 65","rep":"Kathy Rapp","w":0.292},{"d":"PA House District 64","rep":"Lee James","w":0.13}],"ss":[{"d":"PA Senate District 50","rep":"Michele Brooks","w":1.0}]},"munis":[{"m":"Meadville","p":[{"n":"Jaime Kinder","r":"Mayor, Meadville, PA"}]}],"slug":"crawford"},"42041":{"county":[],"districts":{"cd":[{"d":"PA-10","rep":"Scott Perry","w":0.702},{"d":"PA-13","rep":"John Joyce","w":0.298}],"sh":[{"d":"PA House District 199","rep":"Barb Gleim","w":0.419},{"d":"PA House District 193","rep":"Catherine Wallen","w":0.295},{"d":"PA House District 87","rep":"Thomas Kutz","w":0.206},{"d":"PA House District 88","rep":"Sheryl Delozier","w":0.051},{"d":"PA House District 103","rep":"Nate Davidson","w":0.028}],"ss":[{"d":"PA Senate District 34","rep":"Greg Rothman","w":0.946},{"d":"PA Senate District 31","rep":"Dawn Keefer","w":0.054}]},"munis":[],"slug":"cumberland"},"42043":{"county":[],"districts":{"cd":[{"d":"PA-10","rep":"Scott Perry","w":0.996}],"sh":[{"d":"PA House District 125","rep":"Joe Kerwin","w":0.641},{"d":"PA House District 106","rep":"Tom Mehaffie","w":0.243},{"d":"PA House District 105","rep":"Justin Fleming","w":0.052},{"d":"PA House District 104","rep":"Dave Madsen","w":0.048},{"d":"PA House District 103","rep":"Nate Davidson","w":0.016}],"ss":[{"d":"PA Senate District 15","rep":"Patty Kim","w":0.533},{"d":"PA Senate District 34","rep":"Greg Rothman","w":0.466}]},"munis":[{"m":"Harrisburg","p":[{"n":"Wanda Williams","r":"Mayor, Harrisburg, PA"}]}],"slug":"dauphin"},"42045":{"county":[],"districts":{"cd":[{"d":"PA-05","rep":"Mary Gay Scanlon","w":0.993},{"d":"PA-06","rep":"Chrissy Houlahan","w":0.006}],"sh":[{"d":"PA House District 168","rep":"Lisa Borowski","w":0.226},{"d":"PA House District 160","rep":"Craig Williams","w":0.206},{"d":"PA House District 165","rep":"Jenn O'Mara","w":0.114},{"d":"PA House District 161","rep":"Leanne Krueger","w":0.109},{"d":"PA House District 159","rep":"Carol Kazeem","w":0.097},{"d":"PA House District 166","rep":"Greg Vitali","w":0.071},{"d":"PA House District 162","rep":"Dave Delloso","w":0.054},{"d":"PA House District 185","rep":"Regina Young","w":0.047},{"d":"PA House District 163","rep":"Heather Boyd","w":0.038},{"d":"PA House District 164","rep":"Gina Curry","w":0.024},{"d":"PA House District 191","rep":"Joanna McClinton","w":0.013}],"ss":[{"d":"PA Senate District 9","rep":"John Kane","w":0.504},{"d":"PA Senate District 26","rep":"Tim Kearney","w":0.283},{"d":"PA Senate District 17","rep":"Amanda Cappelletti","w":0.125},{"d":"PA Senate District 8","rep":"Tony Williams","w":0.088}]},"munis":[{"m":"Chester","p":[{"n":"Stefan Roots","r":"Mayor, Chester, PA"}]}],"slug":"delaware"},"42047":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 75","rep":"Mike Armanini","w":1.0}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":1.0}]},"munis":[],"slug":"elk"},"42049":{"county":[],"districts":{"cd":[{"d":"PA-16","rep":"Mike Kelly","w":0.518}],"sh":[{"d":"PA House District 4","rep":"Jake Banta","w":0.325},{"d":"PA House District 6","rep":"Brad Roae","w":0.075},{"d":"PA House District 2","rep":"Bob Merski","w":0.066},{"d":"PA House District 3","rep":"Ryan Bizzarro","w":0.04},{"d":"PA House District 1","rep":"Pat Harkins","w":0.012}],"ss":[{"d":"PA Senate District 49","rep":"Dan Laughlin","w":0.468},{"d":"PA Senate District 21","rep":"Scott Hutchinson","w":0.05}]},"munis":[{"m":"Erie","p":[{"n":"Joseph V. Schember","r":"Mayor, Erie, PA"}]}],"slug":"erie"},"42051":{"county":[],"districts":{"cd":[{"d":"PA-14","rep":"Guy Reschenthaler","w":1.0}],"sh":[{"d":"PA House District 52","rep":"Ryan Warner","w":0.542},{"d":"PA House District 51","rep":"Charity Krupa","w":0.457}],"ss":[{"d":"PA Senate District 32","rep":"Pat Stefano","w":1.0}]},"munis":[{"m":"Connellsville","p":[{"n":"Greg Lincoln","r":"Mayor, Connellsville, PA"}]},{"m":"Uniontown","p":[{"n":"Bill Gerke","r":"Mayor, Uniontown, PA"}]}],"slug":"fayette"},"42053":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 65","rep":"Kathy Rapp","w":1.0}],"ss":[{"d":"PA Senate District 21","rep":"Scott Hutchinson","w":1.0}]},"munis":[],"slug":"forest"},"42055":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":1.0}],"sh":[{"d":"PA House District 90","rep":"Chad Reichard","w":0.406},{"d":"PA House District 81","rep":"Rich Irvin","w":0.398},{"d":"PA House District 89","rep":"Rob Kauffman","w":0.195}],"ss":[{"d":"PA Senate District 33","rep":"Doug Mastriano","w":1.0}]},"munis":[],"slug":"franklin"},"42057":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":1.0}],"sh":[{"d":"PA House District 78","rep":"Jesse Topper","w":1.0}],"ss":[{"d":"PA Senate District 30","rep":"Judy Ward","w":1.0}]},"munis":[],"slug":"fulton"},"42059":{"county":[],"districts":{"cd":[{"d":"PA-14","rep":"Guy Reschenthaler","w":1.0}],"sh":[{"d":"PA House District 50","rep":"Bud Cook","w":0.999}],"ss":[{"d":"PA Senate District 46","rep":"Camera Bartolotta","w":1.0}]},"munis":[],"slug":"greene"},"42061":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":0.999}],"sh":[{"d":"PA House District 81","rep":"Rich Irvin","w":0.931},{"d":"PA House District 80","rep":"Scott Barger","w":0.069}],"ss":[{"d":"PA Senate District 30","rep":"Judy Ward","w":1.0}]},"munis":[],"slug":"huntingdon"},"42063":{"county":[],"districts":{"cd":[{"d":"PA-14","rep":"Guy Reschenthaler","w":0.749},{"d":"PA-15","rep":"Glenn Thompson","w":0.251}],"sh":[{"d":"PA House District 62","rep":"Jim Struzzi","w":0.597},{"d":"PA House District 66","rep":"Brian Smith","w":0.403}],"ss":[{"d":"PA Senate District 41","rep":"Joe Pittman","w":1.0}]},"munis":[],"slug":"indiana"},"42065":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 66","rep":"Brian Smith","w":1.0}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":0.688},{"d":"PA Senate District 41","rep":"Joe Pittman","w":0.311}]},"munis":[],"slug":"jefferson"},"42067":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":0.999}],"sh":[{"d":"PA House District 86","rep":"Perry Stambaugh","w":0.848},{"d":"PA House District 85","rep":"David Rowe","w":0.151}],"ss":[{"d":"PA Senate District 30","rep":"Judy Ward","w":1.0}]},"munis":[],"slug":"juniata"},"42069":{"county":[],"districts":{"cd":[{"d":"PA-08","rep":"Robert P. Bresnahan, Jr.","w":0.999}],"sh":[{"d":"PA House District 113","rep":"Kyle Donahue","w":0.344},{"d":"PA House District 112","rep":"Kyle Mullins","w":0.254},{"d":"PA House District 114","rep":"Bridget Malloy Kosierowski","w":0.247},{"d":"PA House District 118","rep":"Jim Haddock","w":0.154}],"ss":[{"d":"PA Senate District 40","rep":"Rosemary Brown","w":0.537},{"d":"PA Senate District 22","rep":"Marty Flynn","w":0.463}]},"munis":[{"m":"Scranton","p":[{"n":"Paige Gebhardt Cognetti","r":"Mayor, Scranton, PA"}]}],"slug":"lackawanna"},"42071":{"county":[],"districts":{"cd":[{"d":"PA-11","rep":"Lloyd Smucker","w":0.998}],"sh":[{"d":"PA House District 100","rep":"Bryan Cutler","w":0.314},{"d":"PA House District 37","rep":"Mindy Fee","w":0.144},{"d":"PA House District 99","rep":"Dave Zimmerman","w":0.14},{"d":"PA House District 97","rep":"Steve Mentzer","w":0.121},{"d":"PA House District 43","rep":"Keith Greiner","w":0.104},{"d":"PA House District 98","rep":"Tom Jones","w":0.093},{"d":"PA House District 41","rep":"Brett Miller","w":0.05},{"d":"PA House District 96","rep":"Nikki Rivera","w":0.022},{"d":"PA House District 49","rep":"Izzy Smith-Wade-El","w":0.012}],"ss":[{"d":"PA Senate District 13","rep":"Scott Martin","w":0.549},{"d":"PA Senate District 36","rep":"James Malone","w":0.351},{"d":"PA Senate District 48","rep":"Chris Gebhard","w":0.1}]},"munis":[{"m":"Lancaster","p":[{"n":"Danene Sorace","r":"Mayor, Lancaster, PA"}]}],"slug":"lancaster"},"42073":{"county":[],"districts":{"cd":[{"d":"PA-16","rep":"Mike Kelly","w":1.0}],"sh":[{"d":"PA House District 9","rep":"Marla Brown","w":0.564},{"d":"PA House District 8","rep":"Aaron Bernstine","w":0.436}],"ss":[{"d":"PA Senate District 50","rep":"Michele Brooks","w":0.796},{"d":"PA Senate District 47","rep":"Elder Vogel","w":0.204}]},"munis":[{"m":"New Castle","p":[{"n":"Bryan Cameron","r":"Mayor, New Castle, PA"}]}],"slug":"lawrence"},"42075":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":1.0}],"sh":[{"d":"PA House District 102","rep":"Russ Diamond","w":0.683},{"d":"PA House District 101","rep":"John Schlegel","w":0.196},{"d":"PA House District 98","rep":"Tom Jones","w":0.121}],"ss":[{"d":"PA Senate District 48","rep":"Chris Gebhard","w":1.0}]},"munis":[{"m":"Lebanon","p":[{"n":"Sherry Capello","r":"Mayor, Lebanon, PA"}]}],"slug":"lebanon"},"42077":{"county":[],"districts":{"cd":[{"d":"PA-07","rep":"Ryan Mackenzie","w":0.999}],"sh":[{"d":"PA House District 187","rep":"Gary Day","w":0.442},{"d":"PA House District 131","rep":"Milou Mackenzie","w":0.188},{"d":"PA House District 183","rep":"Zach Mako","w":0.127},{"d":"PA House District 132","rep":"Mike Schlossberg","w":0.1},{"d":"PA House District 133","rep":"Jeanne McNeill","w":0.07},{"d":"PA House District 134","rep":"Pete Schweyer","w":0.038},{"d":"PA House District 22","rep":"Ana Tiburcio","w":0.035}],"ss":[{"d":"PA Senate District 16","rep":"Jarrett Coleman","w":0.827},{"d":"PA Senate District 14","rep":"Nick Miller","w":0.16},{"d":"PA Senate District 18","rep":"Lisa Boscola","w":0.013}]},"munis":[{"m":"Allentown","p":[{"n":"Matthew Tuerk","r":"Mayor, Allentown, PA"}]}],"slug":"lehigh"},"42079":{"county":[],"districts":{"cd":[{"d":"PA-08","rep":"Robert P. Bresnahan, Jr.","w":0.565},{"d":"PA-09","rep":"Daniel Meuser","w":0.434}],"sh":[{"d":"PA House District 117","rep":"Jamie Walsh","w":0.557},{"d":"PA House District 121","rep":"Eddie Pashinski","w":0.129},{"d":"PA House District 119","rep":"Alec Ryncavage","w":0.11},{"d":"PA House District 120","rep":"Brenda Pugh","w":0.1},{"d":"PA House District 116","rep":"Dane Watro","w":0.058},{"d":"PA House District 118","rep":"Jim Haddock","w":0.045}],"ss":[{"d":"PA Senate District 20","rep":"Lisa Baker","w":0.381},{"d":"PA Senate District 27","rep":"Lynda Culver","w":0.293},{"d":"PA Senate District 29","rep":"Dave Argall","w":0.246},{"d":"PA Senate District 22","rep":"Marty Flynn","w":0.079}]},"munis":[{"m":"Hazleton","p":[{"n":"Jeff Cusat","r":"Mayor, Hazleton, PA"}]},{"m":"Pittston","p":[{"n":"Charles Calvin Bowman","r":"Mayor, Pittston, PA"}]},{"m":"Wilkes Barre","p":[{"n":"George C. Brown","r":"Mayor, Wilkes-Barre, PA"}]}],"slug":"luzerne"},"42081":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":0.722},{"d":"PA-09","rep":"Daniel Meuser","w":0.278}],"sh":[{"d":"PA House District 84","rep":"Joe Hamm","w":0.877},{"d":"PA House District 83","rep":"Jamie Flick","w":0.122}],"ss":[{"d":"PA Senate District 23","rep":"Gene Yaw","w":1.0}]},"munis":[{"m":"Williamsport","p":[{"n":"Derek J. Slaughter","r":"Mayor, Williamsport, PA"}]}],"slug":"lycoming"},"42083":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 67","rep":"Marty Causer","w":1.0}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":1.0}]},"munis":[{"m":"Bradford","p":[{"n":"Tom Riel","r":"Mayor, Bradford, PA"}]}],"slug":"mckean"},"42085":{"county":[],"districts":{"cd":[{"d":"PA-16","rep":"Mike Kelly","w":1.0}],"sh":[{"d":"PA House District 17","rep":"Tim Bonner","w":0.695},{"d":"PA House District 7","rep":"Parke Wentling","w":0.305}],"ss":[{"d":"PA Senate District 50","rep":"Michele Brooks","w":1.0}]},"munis":[],"slug":"mercer"},"42087":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":1.0}],"sh":[{"d":"PA House District 171","rep":"Kerry Benninghoff","w":0.814},{"d":"PA House District 85","rep":"David Rowe","w":0.186}],"ss":[{"d":"PA Senate District 30","rep":"Judy Ward","w":1.0}]},"munis":[],"slug":"mifflin"},"42089":{"county":[],"districts":{"cd":[{"d":"PA-08","rep":"Robert P. Bresnahan, Jr.","w":0.885},{"d":"PA-07","rep":"Ryan Mackenzie","w":0.115}],"sh":[{"d":"PA House District 176","rep":"Jack Rader","w":0.447},{"d":"PA House District 115","rep":"Maureen Madden","w":0.432},{"d":"PA House District 189","rep":"Tarah Probst","w":0.121}],"ss":[{"d":"PA Senate District 40","rep":"Rosemary Brown","w":1.0}]},"munis":[],"slug":"monroe"},"42091":{"county":[],"districts":{"cd":[{"d":"PA-04","rep":"Madeleine Dean","w":0.742},{"d":"PA-01","rep":"Brian K. Fitzpatrick","w":0.199},{"d":"PA-05","rep":"Mary Gay Scanlon","w":0.057}],"sh":[{"d":"PA House District 147","rep":"Donna Scheuren","w":0.195},{"d":"PA House District 70","rep":"Matt Bradford","w":0.101},{"d":"PA House District 131","rep":"Milou Mackenzie","w":0.094},{"d":"PA House District 150","rep":"Joe Webster","w":0.081},{"d":"PA House District 146","rep":"Joe Ciresi","w":0.08},{"d":"PA House District 61","rep":"Liz Hanbidge","w":0.076},{"d":"PA House District 151","rep":"Missy Cerrato","w":0.065},{"d":"PA House District 148","rep":"Mary Jo Daley","w":0.061},{"d":"PA House District 149","rep":"Tim Briggs","w":0.057},{"d":"PA House District 53","rep":"Steve Malagari","w":0.044},{"d":"PA House District 152","rep":"Nancy Guenst","w":0.042},{"d":"PA House District 153","rep":"Ben Sanchez","w":0.042},{"d":"PA House District 154","rep":"Napoleon Nelson","w":0.034},{"d":"PA House District 54","rep":"Greg Scott","w":0.027}],"ss":[{"d":"PA Senate District 24","rep":"Tracy Pennycuick","w":0.41},{"d":"PA Senate District 12","rep":"Maria Collett","w":0.3},{"d":"PA Senate District 17","rep":"Amanda Cappelletti","w":0.121},{"d":"PA Senate District 44","rep":"Katie Muth","w":0.071},{"d":"PA Senate District 4","rep":"Art Haywood","w":0.066},{"d":"PA Senate District 7","rep":"Vincent Hughes","w":0.032}]},"munis":[],"slug":"montgomery"},"42093":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":1.0}],"sh":[{"d":"PA House District 108","rep":"Michael Stender","w":0.999}],"ss":[{"d":"PA Senate District 27","rep":"Lynda Culver","w":1.0}]},"munis":[],"slug":"montour"},"42095":{"county":[],"districts":{"cd":[{"d":"PA-07","rep":"Ryan Mackenzie","w":1.0}],"sh":[{"d":"PA House District 138","rep":"Ann Flood","w":0.465},{"d":"PA House District 183","rep":"Zach Mako","w":0.212},{"d":"PA House District 137","rep":"Joe Emrick","w":0.126},{"d":"PA House District 136","rep":"Bob Freeman","w":0.114},{"d":"PA House District 135","rep":"Steve Samuelson","w":0.054},{"d":"PA House District 131","rep":"Milou Mackenzie","w":0.029}],"ss":[{"d":"PA Senate District 18","rep":"Lisa Boscola","w":0.654},{"d":"PA Senate District 14","rep":"Nick Miller","w":0.346}]},"munis":[{"m":"Bethlehem","p":[{"n":"J. William Reynolds","r":"Mayor, Bethlehem, PA"}]},{"m":"Easton","p":[{"n":"Salvatore J. Panto, Jr.","r":"Mayor, Easton, PA"}]}],"slug":"northampton"},"42097":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":0.995}],"sh":[{"d":"PA House District 107","rep":"Joanne Stehr","w":0.559},{"d":"PA House District 108","rep":"Michael Stender","w":0.441}],"ss":[{"d":"PA Senate District 27","rep":"Lynda Culver","w":1.0}]},"munis":[{"m":"Shamokin","p":[{"n":"Richard Ulrich","r":"Mayor, Shamokin, PA"}]}],"slug":"northumberland"},"42099":{"county":[],"districts":{"cd":[{"d":"PA-13","rep":"John Joyce","w":0.997}],"sh":[{"d":"PA House District 86","rep":"Perry Stambaugh","w":1.0}],"ss":[{"d":"PA Senate District 34","rep":"Greg Rothman","w":1.0}]},"munis":[],"slug":"perry"},"42101":{"county":[],"districts":{"cd":[{"d":"PA-02","rep":"Brendan F. Boyle","w":0.469},{"d":"PA-03","rep":"Dwight Evans","w":0.384},{"d":"PA-05","rep":"Mary Gay Scanlon","w":0.144}],"sh":[{"d":"PA House District 185","rep":"Regina Young","w":0.101},{"d":"PA House District 194","rep":"Tarik Khan","w":0.082},{"d":"PA House District 170","rep":"Martina White","w":0.076},{"d":"PA House District 173","rep":"Pat Gallagher","w":0.058},{"d":"PA House District 190","rep":"Roni Green","w":0.057},{"d":"PA House District 172","rep":"Sean Dougherty","w":0.056},{"d":"PA House District 177","rep":"Joe Hohenstein","w":0.053},{"d":"PA House District 174","rep":"Ed Neilson","w":0.053},{"d":"PA House District 184","rep":"Elizabeth Fiedler","w":0.05},{"d":"PA House District 200","rep":"Chris Rabb","w":0.045},{"d":"PA House District 201","rep":"Andre Carroll","w":0.031},{"d":"PA House District 179","rep":"Jason Dawkins","w":0.03},{"d":"PA House District 192","rep":"Morgan Cephas","w":0.028},{"d":"PA House District 198","rep":"Darisha Parker","w":0.028},{"d":"PA House District 180","rep":"José Giral","w":0.027},{"d":"PA House District 175","rep":"Mary Isaacson","w":0.027},{"d":"PA House District 203","rep":"Anthony Bellmon","w":0.025},{"d":"PA House District 186","rep":"Jordan Harris","w":0.024},{"d":"PA House District 197","rep":"Danilo Burgos","w":0.023},{"d":"PA House District 10","rep":"Amen Brown","w":0.021},{"d":"PA House District 188","rep":"Rick Krajewski","w":0.02},{"d":"PA House District 195","rep":"Keith Harris","w":0.02},{"d":"PA House District 181","rep":"Malcolm Kenyatta","w":0.019},{"d":"PA House District 202","rep":"Jared Solomon","w":0.018},{"d":"PA House District 191","rep":"Joanna McClinton","w":0.015},{"d":"PA House District 182","rep":"Ben Waxman","w":0.011}],"ss":[{"d":"PA Senate District 5","rep":"Joe Picozzi","w":0.252},{"d":"PA Senate District 1","rep":"Nikil Saval","w":0.185},{"d":"PA Senate District 7","rep":"Vincent Hughes","w":0.173},{"d":"PA Senate District 2","rep":"Tina Tartaglione","w":0.121},{"d":"PA Senate District 3","rep":"Sharif Street","w":0.099},{"d":"PA Senate District 4","rep":"Art Haywood","w":0.09},{"d":"PA Senate District 8","rep":"Tony Williams","w":0.078}]},"munis":[{"m":"Philadelphia","p":[{"n":"Cherelle Parker","r":"Mayor, Philadelphia, PA"}]}],"slug":"philadelphia"},"42103":{"county":[],"districts":{"cd":[{"d":"PA-08","rep":"Robert P. Bresnahan, Jr.","w":1.0}],"sh":[{"d":"PA House District 139","rep":"Jeff Olsommer","w":0.724},{"d":"PA House District 189","rep":"Tarah Probst","w":0.275}],"ss":[{"d":"PA Senate District 20","rep":"Lisa Baker","w":0.999}]},"munis":[],"slug":"pike"},"42105":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 67","rep":"Marty Causer","w":1.0}],"ss":[{"d":"PA Senate District 25","rep":"Cris Dush","w":1.0}]},"munis":[],"slug":"potter"},"42107":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":0.999}],"sh":[{"d":"PA House District 107","rep":"Joanne Stehr","w":0.32},{"d":"PA House District 124","rep":"Jamie Barton","w":0.309},{"d":"PA House District 123","rep":"Tim Twardzik","w":0.237},{"d":"PA House District 116","rep":"Dane Watro","w":0.134}],"ss":[{"d":"PA Senate District 29","rep":"Dave Argall","w":1.0}]},"munis":[{"m":"Pottsville","p":[{"n":"Mark J. Atkinson","r":"Mayor, Pottsville, PA"}]}],"slug":"schuylkill"},"42109":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":0.995}],"sh":[{"d":"PA House District 85","rep":"David Rowe","w":1.0}],"ss":[{"d":"PA Senate District 27","rep":"Lynda Culver","w":1.0}]},"munis":[],"slug":"snyder"},"42111":{"county":[],"districts":{"cd":[{"d":"PA-14","rep":"Guy Reschenthaler","w":0.983},{"d":"PA-13","rep":"John Joyce","w":0.017}],"sh":[{"d":"PA House District 69","rep":"Carl Metzgar","w":0.935},{"d":"PA House District 71","rep":"Jim Rigby","w":0.065}],"ss":[{"d":"PA Senate District 32","rep":"Pat Stefano","w":1.0}]},"munis":[],"slug":"somerset"},"42113":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":1.0}],"sh":[{"d":"PA House District 84","rep":"Joe Hamm","w":1.0}],"ss":[{"d":"PA Senate District 23","rep":"Gene Yaw","w":1.0}]},"munis":[],"slug":"sullivan"},"42115":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":1.0}],"sh":[{"d":"PA House District 111","rep":"Jonathan Fritz","w":1.0}],"ss":[{"d":"PA Senate District 20","rep":"Lisa Baker","w":1.0}]},"munis":[],"slug":"susquehanna"},"42117":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 68","rep":"Clint Owlett","w":1.0}],"ss":[{"d":"PA Senate District 23","rep":"Gene Yaw","w":1.0}]},"munis":[],"slug":"tioga"},"42119":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":0.999}],"sh":[{"d":"PA House District 76","rep":"Stephanie Borowicz","w":0.723},{"d":"PA House District 83","rep":"Jamie Flick","w":0.194},{"d":"PA House District 85","rep":"David Rowe","w":0.083}],"ss":[{"d":"PA Senate District 23","rep":"Gene Yaw","w":1.0}]},"munis":[],"slug":"union"},"42121":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":0.686},{"d":"PA-16","rep":"Mike Kelly","w":0.314}],"sh":[{"d":"PA House District 64","rep":"Lee James","w":1.0}],"ss":[{"d":"PA Senate District 21","rep":"Scott Hutchinson","w":1.0}]},"munis":[{"m":"Oil City","p":[{"n":"John Kluck","r":"Mayor, Oil City, PA"}]}],"slug":"venango"},"42123":{"county":[],"districts":{"cd":[{"d":"PA-15","rep":"Glenn Thompson","w":1.0}],"sh":[{"d":"PA House District 65","rep":"Kathy Rapp","w":1.0}],"ss":[{"d":"PA Senate District 21","rep":"Scott Hutchinson","w":1.0}]},"munis":[{"m":"Warren","p":[{"n":"David G. Wortman","r":"Mayor, Warren, PA"}]}],"slug":"warren"},"42125":{"county":[],"districts":{"cd":[{"d":"PA-14","rep":"Guy Reschenthaler","w":0.999}],"sh":[{"d":"PA House District 48","rep":"Tim O'Neal","w":0.361},{"d":"PA House District 15","rep":"Josh Kail","w":0.338},{"d":"PA House District 50","rep":"Bud Cook","w":0.141},{"d":"PA House District 46","rep":"Jason Ortitay","w":0.109},{"d":"PA House District 39","rep":"Andrew Kuzma","w":0.028},{"d":"PA House District 40","rep":"Natalie Mihalek","w":0.023}],"ss":[{"d":"PA Senate District 46","rep":"Camera Bartolotta","w":1.0}]},"munis":[{"m":"Monongahela","p":[{"n":"Greg Garry","r":"Mayor, Monongahela, PA"}]},{"m":"Washington","p":[{"n":"JoJo Burgess","r":"Mayor, Washington, PA"}]}],"slug":"washington"},"42127":{"county":[],"districts":{"cd":[{"d":"PA-08","rep":"Robert P. Bresnahan, Jr.","w":1.0}],"sh":[{"d":"PA House District 111","rep":"Jonathan Fritz","w":0.712},{"d":"PA House District 139","rep":"Jeff Olsommer","w":0.288}],"ss":[{"d":"PA Senate District 20","rep":"Lisa Baker","w":0.722},{"d":"PA Senate District 40","rep":"Rosemary Brown","w":0.277}]},"munis":[],"slug":"wayne"},"42129":{"county":[],"districts":{"cd":[{"d":"PA-14","rep":"Guy Reschenthaler","w":0.85},{"d":"PA-12","rep":"Summer L. Lee","w":0.149}],"sh":[{"d":"PA House District 59","rep":"Leslie Rossi","w":0.44},{"d":"PA House District 55","rep":"Jill Cooper","w":0.216},{"d":"PA House District 58","rep":"Eric Davanzo","w":0.16},{"d":"PA House District 57","rep":"Eric Nelson","w":0.086},{"d":"PA House District 56","rep":"Brian Rasel","w":0.056},{"d":"PA House District 60","rep":"Abby Major","w":0.041}],"ss":[{"d":"PA Senate District 39","rep":"Kim Ward","w":0.585},{"d":"PA Senate District 41","rep":"Joe Pittman","w":0.414}]},"munis":[{"m":"Greensburg","p":[{"n":"Robert L. Bell","r":"Mayor, Greensburg, PA"}]}],"slug":"westmoreland"},"42131":{"county":[],"districts":{"cd":[{"d":"PA-09","rep":"Daniel Meuser","w":0.999}],"sh":[{"d":"PA House District 110","rep":"Tina Pickett","w":1.0}],"ss":[{"d":"PA Senate District 20","rep":"Lisa Baker","w":1.0}]},"munis":[],"slug":"wyoming"},"42133":{"county":[],"districts":{"cd":[{"d":"PA-11","rep":"Lloyd Smucker","w":0.614},{"d":"PA-10","rep":"Scott Perry","w":0.384}],"sh":[{"d":"PA House District 92","rep":"Marc Anderson","w":0.224},{"d":"PA House District 94","rep":"Wendy Fink","w":0.198},{"d":"PA House District 93","rep":"Mike Jones","w":0.172},{"d":"PA House District 196","rep":"George Margetas","w":0.143},{"d":"PA House District 169","rep":"Kate Klunk","w":0.138},{"d":"PA House District 47","rep":"Joe D'Orsie","w":0.11},{"d":"PA House District 95","rep":"Carol Hill-Evans","w":0.014}],"ss":[{"d":"PA Senate District 28","rep":"Kristin Phillips-Hill","w":0.662},{"d":"PA Senate District 31","rep":"Dawn Keefer","w":0.338}]},"munis":[{"m":"York","p":[{"n":"Q124818167","r":"Mayor, York, PA"}]}],"slug":"york"},"44001":{"county":[],"districts":{"cd":[{"d":"RI-01","rep":"Gabe Amo","w":0.674}],"sh":[{"d":"RI House District 67","rep":"Jason Knight","w":0.252},{"d":"RI House District 68","rep":"June Speakman","w":0.155},{"d":"RI House District 69","rep":"Susan Donovan","w":0.117},{"d":"RI House District 66","rep":"Jennifer Boylan","w":0.109}],"ss":[{"d":"RI Senate District 32","rep":"Pam Lauria","w":0.318},{"d":"RI Senate District 10","rep":"Walter Felag","w":0.235},{"d":"RI Senate District 11","rep":"Linda Ujifusa","w":0.079}]},"munis":[],"slug":"bristol"},"44003":{"county":[],"districts":{"cd":[{"d":"RI-02","rep":"Seth Magaziner","w":0.932}],"sh":[{"d":"RI House District 29","rep":"Sherry Roberts","w":0.21},{"d":"RI House District 30","rep":"Justine Caldwell","w":0.176},{"d":"RI House District 28","rep":"George Nardone","w":0.153},{"d":"RI House District 40","rep":"Mike Chippendale","w":0.12},{"d":"RI House District 24","rep":"Evan Shanley","w":0.053},{"d":"RI House District 20","rep":"David Bennett","w":0.041},{"d":"RI House District 26","rep":"Earl Read","w":0.033},{"d":"RI House District 21","rep":"Marie Hopkins","w":0.03},{"d":"RI House District 22","rep":"Joseph Solomon","w":0.03},{"d":"RI House District 27","rep":"Pat Serpa","w":0.028},{"d":"RI House District 23","rep":"Joe Shekarchi","w":0.025},{"d":"RI House District 25","rep":"Tom Noret","w":0.017},{"d":"RI House District 19","rep":"Joseph McNamara","w":0.017}],"ss":[{"d":"RI Senate District 21","rep":"Gordon Rogers","w":0.298},{"d":"RI Senate District 33","rep":"Lou Raptakis","w":0.222},{"d":"RI Senate District 35","rep":"Bridget Valverde","w":0.088},{"d":"RI Senate District 30","rep":"Mark McKenney","w":0.085},{"d":"RI Senate District 34","rep":"Elaine Morgan","w":0.084},{"d":"RI Senate District 31","rep":"Matt LaMountain","w":0.06},{"d":"RI Senate District 29","rep":"Pete Appollonio","w":0.052},{"d":"RI Senate District 9","rep":"John Burke","w":0.041}]},"munis":[{"m":"Warwick","p":[{"n":"Joseph J. Solomon","r":"Mayor, Warwick, RI"}]}],"slug":"kent"},"44005":{"county":[],"districts":{"cd":[{"d":"RI-01","rep":"Gabe Amo","w":0.362}],"sh":[{"d":"RI House District 71","rep":"Michelle McGaw","w":0.121},{"d":"RI House District 70","rep":"Jay Edwards","w":0.072},{"d":"RI House District 72","rep":"Terri Cortvriend","w":0.058},{"d":"RI House District 74","rep":"Alex Finkelman","w":0.048},{"d":"RI House District 69","rep":"Susan Donovan","w":0.021},{"d":"RI House District 75","rep":"Lauren Carson","w":0.019},{"d":"RI House District 73","rep":"Marvin Abney","w":0.011}],"ss":[{"d":"RI Senate District 12","rep":"Lou DiPalma","w":0.184},{"d":"RI Senate District 11","rep":"Linda Ujifusa","w":0.079},{"d":"RI Senate District 13","rep":"Dawn Euer","w":0.056},{"d":"RI Senate District 10","rep":"Walter Felag","w":0.03}]},"munis":[{"m":"Newport","p":[{"n":"Charles M. Holder","r":"Mayor, Newport, RI"}]}],"slug":"newport"},"44007":{"county":[],"districts":{"cd":[{"d":"RI-02","rep":"Seth Magaziner","w":0.648},{"d":"RI-01","rep":"Gabe Amo","w":0.344}],"sh":[{"d":"RI House District 40","rep":"Mike Chippendale","w":0.235},{"d":"RI House District 41","rep":"Bob Quattrocchi","w":0.143},{"d":"RI House District 47","rep":"David Place","w":0.108},{"d":"RI House District 48","rep":"Brian Newberry","w":0.087},{"d":"RI House District 53","rep":"Paul Santucci","w":0.051},{"d":"RI House District 52","rep":"Alex Marszalkowski","w":0.038},{"d":"RI House District 44","rep":"Greg Costantino","w":0.037},{"d":"RI House District 42","rep":"Dick Fascia","w":0.028},{"d":"RI House District 46","rep":"Mary Ann Shallcross-Smith","w":0.028},{"d":"RI House District 43","rep":"Deb Fellela","w":0.02},{"d":"RI House District 15","rep":"Chris Paplauskas","w":0.019},{"d":"RI House District 45","rep":"Mia Ackerman","w":0.017},{"d":"RI House District 51","rep":"Bob Phillips","w":0.011},{"d":"RI House District 63","rep":"Katie Kazarian","w":0.011},{"d":"RI House District 57","rep":"Brandon Voas","w":0.011},{"d":"RI House District 65","rep":"Matthew Dawson","w":0.01},{"d":"RI House District 17","rep":"Jackie Baginski","w":0.009},{"d":"RI House District 64","rep":"Jenni Furtado","w":0.008},{"d":"RI House District 49","rep":"Jon Brien","w":0.007},{"d":"RI House District 12","rep":"Jose Batista","w":0.007},{"d":"RI House District 50","rep":"Stephen Casey","w":0.007},{"d":"RI House District 55","rep":"Doc Corvese","w":0.006},{"d":"RI House District 4","rep":"Rebecca Kislak","w":0.006},{"d":"RI House District 54","rep":"Bill O'Brien","w":0.006},{"d":"RI House District 66","rep":"Jennifer Boylan","w":0.006},{"d":"RI House District 16","rep":"Brandon Potter","w":0.006},{"d":"RI House District 14","rep":"Charlene Lima","w":0.006},{"d":"RI House District 62","rep":"Mary Messier","w":0.005}],"ss":[{"d":"RI Senate District 23","rep":"Jessica de la Cruz","w":0.269},{"d":"RI Senate District 21","rep":"Gordon Rogers","w":0.244},{"d":"RI Senate District 17","rep":"Thomas Paolino","w":0.086},{"d":"RI Senate District 22","rep":"David Tikoian","w":0.068},{"d":"RI Senate District 25","rep":"Andrew Dimitri","w":0.055},{"d":"RI Senate District 19","rep":"Ryan Pearson","w":0.045},{"d":"RI Senate District 26","rep":"Todd Patalano","w":0.039},{"d":"RI Senate District 20","rep":"Brian Thompson","w":0.032},{"d":"RI Senate District 18","rep":"Bob Britto","w":0.017},{"d":"RI Senate District 27","rep":"Hanna Gallo","w":0.017},{"d":"RI Senate District 14","rep":"Val Lawson","w":0.014},{"d":"RI Senate District 28","rep":"Lammis Vargas","w":0.014},{"d":"RI Senate District 24","rep":"Melissa Murray","w":0.012},{"d":"RI Senate District 4","rep":"Stefano Famiglietti","w":0.011},{"d":"RI Senate District 3","rep":"Sam Zurier","w":0.009},{"d":"RI Senate District 15","rep":"Meghan Kallman","w":0.009},{"d":"RI Senate District 8","rep":"Lori Urso","w":0.008},{"d":"RI Senate District 6","rep":"Tiara Mack","w":0.007},{"d":"RI Senate District 7","rep":"Frank Ciccone","w":0.007},{"d":"RI Senate District 1","rep":"Jake Bissaillon","w":0.007},{"d":"RI Senate District 32","rep":"Pam Lauria","w":0.006},{"d":"RI Senate District 5","rep":"Sam Bell","w":0.005},{"d":"RI Senate District 2","rep":"Ana Quezada","w":0.005}]},"munis":[{"m":"Central Falls","p":[{"n":"Maria Rivera","r":"Mayor, Central Falls, RI"}]},{"m":"Cranston","p":[{"n":"Kenneth Hopkins","r":"Mayor, Cranston, RI"}]},{"m":"East Providence","p":[{"n":"Roberto L. DaSilva","r":"Mayor, East Providence, RI"}]},{"m":"Pawtucket","p":[{"n":"Donald R. Grebien","r":"Mayor, Pawtucket, RI"}]},{"m":"Providence","p":[{"n":"Brett Smiley","r":"Mayor, Providence, RI"}]},{"m":"Woonsocket","p":[{"n":"Christopher Beauchamp","r":"Mayor, Woonsocket, RI"}]}],"slug":"providence"},"44009":{"county":[],"districts":{"cd":[{"d":"RI-02","rep":"Seth Magaziner","w":0.624}],"sh":[{"d":"RI House District 39","rep":"Megan Cotter","w":0.184},{"d":"RI House District 36","rep":"Tina Spears","w":0.13},{"d":"RI House District 38","rep":"Brian Kennedy","w":0.074},{"d":"RI House District 35","rep":"Kathleen Fogarty","w":0.056},{"d":"RI House District 32","rep":"Robert Craven","w":0.046},{"d":"RI House District 31","rep":"Julie Casimiro","w":0.045},{"d":"RI House District 33","rep":"Carol McEntee","w":0.034},{"d":"RI House District 37","rep":"Sam Azzinaro","w":0.031},{"d":"RI House District 34","rep":"Teresa Tanzi","w":0.026}],"ss":[{"d":"RI Senate District 34","rep":"Elaine Morgan","w":0.292},{"d":"RI Senate District 38","rep":"Victoria Gu","w":0.102},{"d":"RI Senate District 37","rep":"Sue Sosnowski","w":0.097},{"d":"RI Senate District 36","rep":"Alana DiMario","w":0.09},{"d":"RI Senate District 35","rep":"Bridget Valverde","w":0.044}]},"munis":[],"slug":"washington"},"45001":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":1.0}],"sh":[{"d":"SC House District 11","rep":"Craig Gagnon","w":1.0}],"ss":[{"d":"SC Senate District 4","rep":"Mike Gambrell","w":1.0}]},"munis":[{"m":"Abbeville","p":[{"n":"Trey Edwards","r":"Mayor, Abbeville, SC"}]}],"slug":"abbeville"},"45003":{"county":[],"districts":{"cd":[{"d":"SC-02","rep":"Joe Wilson","w":0.999}],"sh":[{"d":"SC House District 86","rep":"Bill Taylor","w":0.692},{"d":"SC House District 84","rep":"Melissa Oremus","w":0.172},{"d":"SC House District 81","rep":"Charlie Hartz","w":0.065},{"d":"SC House District 82","rep":"Bill Clyburn","w":0.05},{"d":"SC House District 83","rep":"Bill Hixon","w":0.021}],"ss":[{"d":"SC Senate District 24","rep":"Tom Young","w":0.438},{"d":"SC Senate District 40","rep":"Brad Hutto","w":0.428},{"d":"SC Senate District 25","rep":"Shane Massey","w":0.133}]},"munis":[{"m":"Aiken","p":[{"n":"Teddy Milner","r":"Mayor, Aiken, SC"}]}],"slug":"aiken"},"45005":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.993},{"d":"GA-12","rep":"Rick W. Allen","w":0.006}],"sh":[{"d":"SC House District 91","rep":"Lonnie Hosey","w":0.999}],"ss":[{"d":"SC Senate District 40","rep":"Brad Hutto","w":1.0}]},"munis":[],"slug":"allendale"},"45007":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":0.999}],"sh":[{"d":"SC House District 7","rep":"Lee Gilreath","w":0.317},{"d":"SC House District 6","rep":"April Cromer","w":0.204},{"d":"SC House District 8","rep":"Don Chapman","w":0.183},{"d":"SC House District 11","rep":"Craig Gagnon","w":0.165},{"d":"SC House District 9","rep":"Blake Sanders","w":0.068},{"d":"SC House District 10","rep":"Thomas Beach","w":0.063}],"ss":[{"d":"SC Senate District 4","rep":"Mike Gambrell","w":0.532},{"d":"SC Senate District 3","rep":"Richard Cash","w":0.467}]},"munis":[{"m":"Anderson","p":[{"n":"Terence Roberts","r":"Mayor, Anderson, SC"}]}],"slug":"anderson"},"45009":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.997}],"sh":[{"d":"SC House District 90","rep":"Justin Bamberg","w":0.999}],"ss":[{"d":"SC Senate District 40","rep":"Brad Hutto","w":1.0}]},"munis":[{"m":"Bamberg","p":[{"n":"Nancy Foster","r":"Mayor, Bamberg, SC"}]}],"slug":"bamberg"},"45011":{"county":[],"districts":{"cd":[{"d":"SC-02","rep":"Joe Wilson","w":0.999}],"sh":[{"d":"SC House District 91","rep":"Lonnie Hosey","w":0.999}],"ss":[{"d":"SC Senate District 40","rep":"Brad Hutto","w":0.999}]},"munis":[],"slug":"barnwell"},"45013":{"county":[],"districts":{"cd":[{"d":"SC-01","rep":"Nancy Mace","w":0.76}],"sh":[{"d":"SC House District 121","rep":"Michael Rivers","w":0.339},{"d":"SC House District 120","rep":"Weston Newton","w":0.184},{"d":"SC House District 124","rep":"Shannon Erickson","w":0.126},{"d":"SC House District 123","rep":"Jeff Bradley","w":0.066},{"d":"SC House District 118","rep":"Bill Herbkersman","w":0.049}],"ss":[{"d":"SC Senate District 43","rep":"Chip Campsen","w":0.297},{"d":"SC Senate District 46","rep":"Tom Davis","w":0.234},{"d":"SC Senate District 45","rep":"Margie Bright Matthews","w":0.234}]},"munis":[{"m":"Beaufort","p":[{"n":"Phil Cromer","r":"Mayor, Beaufort, SC"}]}],"slug":"beaufort"},"45015":{"county":[],"districts":{"cd":[{"d":"SC-01","rep":"Nancy Mace","w":0.996}],"sh":[{"d":"SC House District 103","rep":"Carl Anderson","w":0.311},{"d":"SC House District 102","rep":"Harriet Holman","w":0.307},{"d":"SC House District 100","rep":"Sylleste Davis","w":0.163},{"d":"SC House District 101","rep":"Roger Kirby","w":0.129},{"d":"SC House District 99","rep":"Mark Smith","w":0.045},{"d":"SC House District 117","rep":"Jordan Pace","w":0.028},{"d":"SC House District 92","rep":"Brandon Cox","w":0.013},{"d":"SC House District 15","rep":"J.A. Moore","w":0.005}],"ss":[{"d":"SC Senate District 37","rep":"Larry Grooms","w":0.572},{"d":"SC Senate District 32","rep":"Ronnie Sabb","w":0.254},{"d":"SC Senate District 39","rep":"Tom Fernandez","w":0.139},{"d":"SC Senate District 44","rep":"Brian Adams","w":0.035}]},"munis":[{"m":"Goose Creek","p":[{"n":"Gregory Habib","r":"Mayor, Goose Creek, SC"}]}],"slug":"berkeley"},"45017":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.996}],"sh":[{"d":"SC House District 93","rep":"Jerry Govan","w":1.0}],"ss":[{"d":"SC Senate District 26","rep":"Russell Ott","w":0.502},{"d":"SC Senate District 36","rep":"Jeff Zell","w":0.498}]},"munis":[],"slug":"calhoun"},"45019":{"county":[],"districts":{"cd":[{"d":"SC-01","rep":"Nancy Mace","w":0.497},{"d":"SC-06","rep":"James E. Clyburn","w":0.249}],"sh":[{"d":"SC House District 116","rep":"James Teeple","w":0.268},{"d":"SC House District 108","rep":"Lee Hewitt","w":0.174},{"d":"SC House District 112","rep":"Joe Bustos","w":0.085},{"d":"SC House District 115","rep":"Spencer Wetmore","w":0.081},{"d":"SC House District 119","rep":"Leon Stavrinakis","w":0.026},{"d":"SC House District 113","rep":"Courtney Waters","w":0.024},{"d":"SC House District 114","rep":"Gary Brewer","w":0.022},{"d":"SC House District 80","rep":"Kathy Landing","w":0.021},{"d":"SC House District 110","rep":"Tom Hartnett","w":0.015},{"d":"SC House District 111","rep":"Wendell Gilliard","w":0.013},{"d":"SC House District 109","rep":"Tiffany Spann-Wilder","w":0.011},{"d":"SC House District 15","rep":"J.A. Moore","w":0.007}],"ss":[{"d":"SC Senate District 32","rep":"Ronnie Sabb","w":0.194},{"d":"SC Senate District 45","rep":"Margie Bright Matthews","w":0.183},{"d":"SC Senate District 43","rep":"Chip Campsen","w":0.159},{"d":"SC Senate District 41","rep":"Matt Leber","w":0.098},{"d":"SC Senate District 42","rep":"Deon Tedder","w":0.044},{"d":"SC Senate District 20","rep":"Ed Sutton","w":0.037},{"d":"SC Senate District 37","rep":"Larry Grooms","w":0.017},{"d":"SC Senate District 44","rep":"Brian Adams","w":0.013}]},"munis":[{"m":"Charleston","p":[{"n":"John Tecklenburg","r":"Mayor, Charleston, SC"}]}],"slug":"charleston"},"45021":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.999}],"sh":[{"d":"SC House District 29","rep":"Dennis Moss","w":0.502},{"d":"SC House District 30","rep":"Brian Lawson","w":0.498}],"ss":[{"d":"SC Senate District 14","rep":"Harvey Peeler","w":0.999}]},"munis":[],"slug":"cherokee"},"45023":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":1.0}],"sh":[{"d":"SC House District 43","rep":"Randy Ligon","w":0.731},{"d":"SC House District 41","rep":"Annie McDaniel","w":0.269}],"ss":[{"d":"SC Senate District 17","rep":"Everett Stubbs","w":1.0}]},"munis":[],"slug":"chester"},"45025":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.997}],"sh":[{"d":"SC House District 53","rep":"Richie Yow","w":0.651},{"d":"SC House District 65","rep":"Cody Mitchell","w":0.194},{"d":"SC House District 54","rep":"Jason Luck","w":0.154}],"ss":[{"d":"SC Senate District 27","rep":"Allen Blackmon","w":0.846},{"d":"SC Senate District 29","rep":"J.D. Chaplin","w":0.154}]},"munis":[],"slug":"chesterfield"},"45027":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.998}],"sh":[{"d":"SC House District 64","rep":"Fawn Pedalino","w":1.0}],"ss":[{"d":"SC Senate District 36","rep":"Jeff Zell","w":1.0}]},"munis":[],"slug":"clarendon"},"45029":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.772},{"d":"SC-01","rep":"Nancy Mace","w":0.178}],"sh":[{"d":"SC House District 121","rep":"Michael Rivers","w":0.37},{"d":"SC House District 97","rep":"Robby Robbins","w":0.31},{"d":"SC House District 122","rep":"Bill Hager","w":0.143},{"d":"SC House District 90","rep":"Justin Bamberg","w":0.12},{"d":"SC House District 116","rep":"James Teeple","w":0.006}],"ss":[{"d":"SC Senate District 45","rep":"Margie Bright Matthews","w":0.443},{"d":"SC Senate District 41","rep":"Matt Leber","w":0.214},{"d":"SC Senate District 40","rep":"Brad Hutto","w":0.201},{"d":"SC Senate District 43","rep":"Chip Campsen","w":0.092}]},"munis":[],"slug":"colleton"},"45031":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.998}],"sh":[{"d":"SC House District 62","rep":"Robert Williams","w":0.43},{"d":"SC House District 54","rep":"Jason Luck","w":0.237},{"d":"SC House District 65","rep":"Cody Mitchell","w":0.199},{"d":"SC House District 53","rep":"Richie Yow","w":0.133}],"ss":[{"d":"SC Senate District 29","rep":"J.D. Chaplin","w":0.975},{"d":"SC Senate District 30","rep":"Kent Williams","w":0.025}]},"munis":[],"slug":"darlington"},"45033":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.999}],"sh":[{"d":"SC House District 55","rep":"Jackie Hayes","w":0.857},{"d":"SC House District 54","rep":"Jason Luck","w":0.142}],"ss":[{"d":"SC Senate District 30","rep":"Kent Williams","w":0.999}]},"munis":[],"slug":"dillon"},"45035":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.813},{"d":"SC-01","rep":"Nancy Mace","w":0.187}],"sh":[{"d":"SC House District 97","rep":"Robby Robbins","w":0.34},{"d":"SC House District 102","rep":"Harriet Holman","w":0.168},{"d":"SC House District 95","rep":"Gilda Cobb-Hunter","w":0.161},{"d":"SC House District 90","rep":"Justin Bamberg","w":0.141},{"d":"SC House District 114","rep":"Gary Brewer","w":0.131},{"d":"SC House District 94","rep":"Gil Gatch","w":0.026},{"d":"SC House District 98","rep":"Greg Ford","w":0.023},{"d":"SC House District 109","rep":"Tiffany Spann-Wilder","w":0.01}],"ss":[{"d":"SC Senate District 39","rep":"Tom Fernandez","w":0.537},{"d":"SC Senate District 41","rep":"Matt Leber","w":0.33},{"d":"SC Senate District 38","rep":"Sean Bennett","w":0.128}]},"munis":[{"m":"North Charleston","p":[{"n":"R. Keith Summey","r":"Mayor, North Charleston, SC"}]}],"slug":"dorchester"},"45037":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":1.0}],"sh":[{"d":"SC House District 82","rep":"Bill Clyburn","w":0.663},{"d":"SC House District 83","rep":"Bill Hixon","w":0.337}],"ss":[{"d":"SC Senate District 25","rep":"Shane Massey","w":1.0}]},"munis":[],"slug":"edgefield"},"45039":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.998}],"sh":[{"d":"SC House District 41","rep":"Annie McDaniel","w":1.0}],"ss":[{"d":"SC Senate District 17","rep":"Everett Stubbs","w":1.0}]},"munis":[],"slug":"fairfield"},"45041":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.906},{"d":"SC-06","rep":"James E. Clyburn","w":0.094}],"sh":[{"d":"SC House District 60","rep":"Phillip Lowe","w":0.56},{"d":"SC House District 59","rep":"Terry Alexander","w":0.21},{"d":"SC House District 55","rep":"Jackie Hayes","w":0.068},{"d":"SC House District 62","rep":"Robert Williams","w":0.068},{"d":"SC House District 101","rep":"Roger Kirby","w":0.061},{"d":"SC House District 63","rep":"Jay Jordan","w":0.033}],"ss":[{"d":"SC Senate District 31","rep":"Mike Reichenbach","w":0.852},{"d":"SC Senate District 30","rep":"Kent Williams","w":0.104},{"d":"SC Senate District 32","rep":"Ronnie Sabb","w":0.044}]},"munis":[{"m":"Florence","p":[{"n":"Lethonia Barnes","r":"Mayor, Florence, SC"}]}],"slug":"florence"},"45043":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.847}],"sh":[{"d":"SC House District 103","rep":"Carl Anderson","w":0.574},{"d":"SC House District 108","rep":"Lee Hewitt","w":0.275}],"ss":[{"d":"SC Senate District 32","rep":"Ronnie Sabb","w":0.711},{"d":"SC Senate District 34","rep":"Stephen Goldfinch","w":0.137}]},"munis":[],"slug":"georgetown"},"45045":{"county":[],"districts":{"cd":[{"d":"SC-04","rep":"William R. Timmons IV","w":0.749},{"d":"SC-03","rep":"Sheri Biggs","w":0.249}],"sh":[{"d":"SC House District 17","rep":"Mike Burns","w":0.377},{"d":"SC House District 28","rep":"Chris Huff","w":0.157},{"d":"SC House District 18","rep":"Alan Morgan","w":0.091},{"d":"SC House District 25","rep":"Wendell Jones","w":0.071},{"d":"SC House District 16","rep":"Mark Willis","w":0.052},{"d":"SC House District 19","rep":"Patrick Haddon","w":0.038},{"d":"SC House District 21","rep":"Dianne Mitchell","w":0.031},{"d":"SC House District 20","rep":"Stephen Frank","w":0.031},{"d":"SC House District 27","rep":"David Vaughan","w":0.029},{"d":"SC House District 24","rep":"Bruce Bannister","w":0.027},{"d":"SC House District 7","rep":"Lee Gilreath","w":0.026},{"d":"SC House District 22","rep":"Paul Wickensimer","w":0.023},{"d":"SC House District 23","rep":"Chandra Dillard","w":0.019},{"d":"SC House District 35","rep":"Bill Chumley","w":0.012},{"d":"SC House District 10","rep":"Thomas Beach","w":0.01}],"ss":[{"d":"SC Senate District 5","rep":"Tom Corbin","w":0.446},{"d":"SC Senate District 9","rep":"Danny Verdin","w":0.19},{"d":"SC Senate District 7","rep":"Karl Allen","w":0.116},{"d":"SC Senate District 6","rep":"Jason Elliott","w":0.102},{"d":"SC Senate District 8","rep":"Ross Turner","w":0.088},{"d":"SC Senate District 12","rep":"Lee Bright","w":0.023},{"d":"SC Senate District 13","rep":"Shane Martin","w":0.021},{"d":"SC Senate District 2","rep":"Rex Rice","w":0.012}]},"munis":[{"m":"Greenville","p":[{"n":"Knox H. White","r":"Mayor, Greenville, SC"}]},{"m":"Greer","p":[{"n":"Richard W. Danner","r":"Mayor, Greer, SC"}]},{"m":"Mauldin","p":[{"n":"Terry Merritt","r":"Mayor, Mauldin, SC"}]}],"slug":"greenville"},"45047":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":1.0}],"sh":[{"d":"SC House District 13","rep":"John McCravy","w":0.734},{"d":"SC House District 12","rep":"Daniel Gibson","w":0.266}],"ss":[{"d":"SC Senate District 10","rep":"Billy Garrett","w":1.0}]},"munis":[],"slug":"greenwood"},"45049":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.999}],"sh":[{"d":"SC House District 122","rep":"Bill Hager","w":1.0}],"ss":[{"d":"SC Senate District 45","rep":"Margie Bright Matthews","w":1.0}]},"munis":[],"slug":"hampton"},"45051":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.912}],"sh":[{"d":"SC House District 105","rep":"Kevin Hardee","w":0.217},{"d":"SC House District 58","rep":"Jeff Johnson","w":0.199},{"d":"SC House District 57","rep":"Lucas Atkinson","w":0.176},{"d":"SC House District 55","rep":"Jackie Hayes","w":0.067},{"d":"SC House District 104","rep":"William Bailey","w":0.06},{"d":"SC House District 103","rep":"Carl Anderson","w":0.046},{"d":"SC House District 56","rep":"Tim McGinnis","w":0.045},{"d":"SC House District 68","rep":"Heather Crawford","w":0.034},{"d":"SC House District 107","rep":"Case Brittain","w":0.024},{"d":"SC House District 61","rep":"Carla Schuessler","w":0.023},{"d":"SC House District 106","rep":"Val Guest","w":0.021}],"ss":[{"d":"SC Senate District 30","rep":"Kent Williams","w":0.339},{"d":"SC Senate District 28","rep":"Greg Hembree","w":0.303},{"d":"SC Senate District 33","rep":"Luke Rankin","w":0.108},{"d":"SC Senate District 32","rep":"Ronnie Sabb","w":0.107},{"d":"SC Senate District 34","rep":"Stephen Goldfinch","w":0.056}]},"munis":[{"m":"Conway","p":[{"n":"Barbara Blain-Bellamy","r":"Mayor, Conway, SC"}]},{"m":"Loris","p":[{"n":"Michael E. Suggs","r":"Mayor, Loris, SC"}]},{"m":"Myrtle Beach","p":[{"n":"John Rhodes","r":"Mayor, Myrtle Beach, SC"}]}],"slug":"horry"},"45053":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.925},{"d":"SC-01","rep":"Nancy Mace","w":0.03}],"sh":[{"d":"SC House District 122","rep":"Bill Hager","w":0.766},{"d":"SC House District 123","rep":"Jeff Bradley","w":0.163},{"d":"SC House District 120","rep":"Weston Newton","w":0.027}],"ss":[{"d":"SC Senate District 45","rep":"Margie Bright Matthews","w":0.929},{"d":"SC Senate District 46","rep":"Tom Davis","w":0.027}]},"munis":[],"slug":"jasper"},"45055":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.999}],"sh":[{"d":"SC House District 65","rep":"Cody Mitchell","w":0.321},{"d":"SC House District 45","rep":"Brandon Newton","w":0.223},{"d":"SC House District 50","rep":"Keishan Scott","w":0.221},{"d":"SC House District 70","rep":"Robert Reese","w":0.147},{"d":"SC House District 52","rep":"Jermaine Johnson","w":0.088}],"ss":[{"d":"SC Senate District 27","rep":"Allen Blackmon","w":0.559},{"d":"SC Senate District 35","rep":"Jeffrey Graham","w":0.441}]},"munis":[{"m":"Camden","p":[{"n":"Vincent Sheheen","r":"Mayor, Camden, SC"}]}],"slug":"kershaw"},"45057":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.998}],"sh":[{"d":"SC House District 45","rep":"Brandon Newton","w":0.468},{"d":"SC House District 65","rep":"Cody Mitchell","w":0.254},{"d":"SC House District 53","rep":"Richie Yow","w":0.174},{"d":"SC House District 44","rep":"Mike Neese","w":0.105}],"ss":[{"d":"SC Senate District 27","rep":"Allen Blackmon","w":0.858},{"d":"SC Senate District 16","rep":"Michael Johnson","w":0.071},{"d":"SC Senate District 17","rep":"Everett Stubbs","w":0.07}]},"munis":[],"slug":"lancaster"},"45059":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":0.998}],"sh":[{"d":"SC House District 14","rep":"Luke Rankin","w":0.616},{"d":"SC House District 42","rep":"Doug Gilliam","w":0.209},{"d":"SC House District 16","rep":"Mark Willis","w":0.08},{"d":"SC House District 11","rep":"Craig Gagnon","w":0.062},{"d":"SC House District 13","rep":"John McCravy","w":0.032}],"ss":[{"d":"SC Senate District 9","rep":"Danny Verdin","w":1.0}]},"munis":[],"slug":"laurens"},"45061":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.995}],"sh":[{"d":"SC House District 50","rep":"Keishan Scott","w":1.0}],"ss":[{"d":"SC Senate District 29","rep":"J.D. Chaplin","w":0.538},{"d":"SC Senate District 35","rep":"Jeffrey Graham","w":0.462}]},"munis":[],"slug":"lee"},"45063":{"county":[],"districts":{"cd":[{"d":"SC-02","rep":"Joe Wilson","w":0.998}],"sh":[{"d":"SC House District 39","rep":"Cal Forrest","w":0.219},{"d":"SC House District 96","rep":"Ryan McCabe","w":0.214},{"d":"SC House District 86","rep":"Bill Taylor","w":0.102},{"d":"SC House District 87","rep":"Paula Calhoon","w":0.094},{"d":"SC House District 93","rep":"Jerry Govan","w":0.09},{"d":"SC House District 85","rep":"Jay Kilmartin","w":0.084},{"d":"SC House District 88","rep":"John Lastinger","w":0.083},{"d":"SC House District 69","rep":"Chris Wooten","w":0.05},{"d":"SC House District 89","rep":"Micah Caskey","w":0.043},{"d":"SC House District 40","rep":"Joe White","w":0.015},{"d":"SC House District 71","rep":"Nathan Ballentine","w":0.006}],"ss":[{"d":"SC Senate District 23","rep":"Carlisle Kennedy","w":0.463},{"d":"SC Senate District 25","rep":"Shane Massey","w":0.166},{"d":"SC Senate District 26","rep":"Russell Ott","w":0.161},{"d":"SC Senate District 18","rep":"Ronnie Cromer","w":0.111},{"d":"SC Senate District 10","rep":"Billy Garrett","w":0.099}]},"munis":[],"slug":"lexington"},"45065":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":0.999}],"sh":[{"d":"SC House District 12","rep":"Daniel Gibson","w":1.0}],"ss":[{"d":"SC Senate District 25","rep":"Shane Massey","w":1.0}]},"munis":[],"slug":"mccormick"},"45067":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":1.0}],"sh":[{"d":"SC House District 57","rep":"Lucas Atkinson","w":0.631},{"d":"SC House District 59","rep":"Terry Alexander","w":0.369}],"ss":[{"d":"SC Senate District 30","rep":"Kent Williams","w":1.0}]},"munis":[{"m":"Marion","p":[{"n":"Ashley Brady","r":"Mayor, Marion, SC"}]}],"slug":"marion"},"45069":{"county":[],"districts":{"cd":[{"d":"SC-07","rep":"Russell Fry","w":0.999}],"sh":[{"d":"SC House District 54","rep":"Jason Luck","w":0.928},{"d":"SC House District 55","rep":"Jackie Hayes","w":0.071}],"ss":[{"d":"SC Senate District 29","rep":"J.D. Chaplin","w":0.999}]},"munis":[],"slug":"marlboro"},"45071":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":0.997}],"sh":[{"d":"SC House District 40","rep":"Joe White","w":1.0}],"ss":[{"d":"SC Senate District 18","rep":"Ronnie Cromer","w":1.0}]},"munis":[],"slug":"newberry"},"45073":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":0.997}],"sh":[{"d":"SC House District 1","rep":"Bill Whitmire","w":0.727},{"d":"SC House District 2","rep":"Adam Duncan","w":0.272}],"ss":[{"d":"SC Senate District 1","rep":"Tom Alexander","w":0.999}]},"munis":[{"m":"Seneca","p":[{"n":"Daniel W. Alexander","r":"Mayor, Seneca, SC"}]}],"slug":"oconee"},"45075":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.602},{"d":"SC-02","rep":"Joe Wilson","w":0.398}],"sh":[{"d":"SC House District 90","rep":"Justin Bamberg","w":0.309},{"d":"SC House District 95","rep":"Gilda Cobb-Hunter","w":0.267},{"d":"SC House District 91","rep":"Lonnie Hosey","w":0.24},{"d":"SC House District 93","rep":"Jerry Govan","w":0.184}],"ss":[{"d":"SC Senate District 40","rep":"Brad Hutto","w":0.452},{"d":"SC Senate District 39","rep":"Tom Fernandez","w":0.365},{"d":"SC Senate District 36","rep":"Jeff Zell","w":0.183}]},"munis":[],"slug":"orangeburg"},"45077":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":0.997}],"sh":[{"d":"SC House District 4","rep":"Davey Hiott","w":0.496},{"d":"SC House District 1","rep":"Bill Whitmire","w":0.209},{"d":"SC House District 3","rep":"Phillip Bowers","w":0.178},{"d":"SC House District 5","rep":"Neal Collins","w":0.104},{"d":"SC House District 10","rep":"Thomas Beach","w":0.012}],"ss":[{"d":"SC Senate District 2","rep":"Rex Rice","w":0.912},{"d":"SC Senate District 1","rep":"Tom Alexander","w":0.087}]},"munis":[],"slug":"pickens"},"45079":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.535},{"d":"SC-02","rep":"Joe Wilson","w":0.46}],"sh":[{"d":"SC House District 70","rep":"Robert Reese","w":0.334},{"d":"SC House District 52","rep":"Jermaine Johnson","w":0.126},{"d":"SC House District 73","rep":"Chris Hart","w":0.115},{"d":"SC House District 78","rep":"Beth Bernstein","w":0.106},{"d":"SC House District 71","rep":"Nathan Ballentine","w":0.086},{"d":"SC House District 77","rep":"Kambrell Garvin","w":0.075},{"d":"SC House District 41","rep":"Annie McDaniel","w":0.042},{"d":"SC House District 72","rep":"Seth Rose","w":0.028},{"d":"SC House District 76","rep":"Leon Howard","w":0.024},{"d":"SC House District 79","rep":"Hamilton Grant","w":0.022},{"d":"SC House District 74","rep":"Todd Rutherford","w":0.021},{"d":"SC House District 75","rep":"Heather Bauer","w":0.02}],"ss":[{"d":"SC Senate District 21","rep":"Darrell Jackson","w":0.455},{"d":"SC Senate District 19","rep":"Tameika Isaac Devine","w":0.181},{"d":"SC Senate District 35","rep":"Jeffrey Graham","w":0.148},{"d":"SC Senate District 22","rep":"Overture Walker","w":0.121},{"d":"SC Senate District 18","rep":"Ronnie Cromer","w":0.082},{"d":"SC Senate District 26","rep":"Russell Ott","w":0.013}]},"munis":[{"m":"Columbia","p":[{"n":"Daniel Rickenmann","r":"Mayor, Columbia, SC"}]}],"slug":"richland"},"45081":{"county":[],"districts":{"cd":[{"d":"SC-03","rep":"Sheri Biggs","w":1.0}],"sh":[{"d":"SC House District 39","rep":"Cal Forrest","w":0.771},{"d":"SC House District 82","rep":"Bill Clyburn","w":0.228}],"ss":[{"d":"SC Senate District 25","rep":"Shane Massey","w":0.635},{"d":"SC Senate District 10","rep":"Billy Garrett","w":0.365}]},"munis":[],"slug":"saluda"},"45083":{"county":[],"districts":{"cd":[{"d":"SC-04","rep":"William R. Timmons IV","w":0.788},{"d":"SC-05","rep":"Ralph Norman","w":0.21}],"sh":[{"d":"SC House District 33","rep":"Travis Moore","w":0.304},{"d":"SC House District 38","rep":"Josiah Magnuson","w":0.202},{"d":"SC House District 35","rep":"Bill Chumley","w":0.111},{"d":"SC House District 36","rep":"Rob Harris","w":0.088},{"d":"SC House District 32","rep":"Scott Montgomery","w":0.078},{"d":"SC House District 34","rep":"Sarita Edgerton","w":0.075},{"d":"SC House District 37","rep":"Steven Long","w":0.047},{"d":"SC House District 30","rep":"Brian Lawson","w":0.036},{"d":"SC House District 31","rep":"Rosalyn Henderson-Myers","w":0.03},{"d":"SC House District 29","rep":"Dennis Moss","w":0.029}],"ss":[{"d":"SC Senate District 13","rep":"Shane Martin","w":0.445},{"d":"SC Senate District 11","rep":"Josh Kimbrell","w":0.219},{"d":"SC Senate District 12","rep":"Lee Bright","w":0.159},{"d":"SC Senate District 5","rep":"Tom Corbin","w":0.097},{"d":"SC Senate District 14","rep":"Harvey Peeler","w":0.08}]},"munis":[{"m":"Spartanburg","p":[{"n":"Jerome Rice","r":"Mayor, Spartanburg, SC"}]}],"slug":"spartanburg"},"45085":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.685},{"d":"SC-06","rep":"James E. Clyburn","w":0.314}],"sh":[{"d":"SC House District 64","rep":"Fawn Pedalino","w":0.337},{"d":"SC House District 50","rep":"Keishan Scott","w":0.317},{"d":"SC House District 51","rep":"David Weeks","w":0.209},{"d":"SC House District 67","rep":"Murrell Smith","w":0.136}],"ss":[{"d":"SC Senate District 35","rep":"Jeffrey Graham","w":0.549},{"d":"SC Senate District 36","rep":"Jeff Zell","w":0.292},{"d":"SC Senate District 29","rep":"J.D. Chaplin","w":0.158}]},"munis":[{"m":"Sumter","p":[{"n":"David Merchant","r":"Mayor, Sumter, SC"}]}],"slug":"sumter"},"45087":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":0.997}],"sh":[{"d":"SC House District 42","rep":"Doug Gilliam","w":1.0}],"ss":[{"d":"SC Senate District 13","rep":"Shane Martin","w":0.409},{"d":"SC Senate District 9","rep":"Danny Verdin","w":0.396},{"d":"SC Senate District 14","rep":"Harvey Peeler","w":0.195}]},"munis":[],"slug":"union"},"45089":{"county":[],"districts":{"cd":[{"d":"SC-06","rep":"James E. Clyburn","w":0.996}],"sh":[{"d":"SC House District 101","rep":"Roger Kirby","w":0.81},{"d":"SC House District 57","rep":"Lucas Atkinson","w":0.19}],"ss":[{"d":"SC Senate District 32","rep":"Ronnie Sabb","w":1.0}]},"munis":[{"m":"Kingstree","p":[{"n":"Darren Tisdale","r":"Mayor, Kingstree, SC"}]}],"slug":"williamsburg"},"45091":{"county":[],"districts":{"cd":[{"d":"SC-05","rep":"Ralph Norman","w":1.0}],"sh":[{"d":"SC House District 29","rep":"Dennis Moss","w":0.333},{"d":"SC House District 47","rep":"Tommy Pope","w":0.262},{"d":"SC House District 43","rep":"Randy Ligon","w":0.102},{"d":"SC House District 49","rep":"John King","w":0.101},{"d":"SC House District 48","rep":"Brandon Guffey","w":0.073},{"d":"SC House District 26","rep":"David Martin","w":0.051},{"d":"SC House District 46","rep":"Heath Sessions","w":0.049},{"d":"SC House District 66","rep":"Jackie Terribile","w":0.03}],"ss":[{"d":"SC Senate District 15","rep":"Wes Climer","w":0.429},{"d":"SC Senate District 14","rep":"Harvey Peeler","w":0.324},{"d":"SC Senate District 17","rep":"Everett Stubbs","w":0.166},{"d":"SC Senate District 16","rep":"Michael Johnson","w":0.081}]},"munis":[{"m":"Rock Hill","p":[{"n":"John Gettys","r":"Mayor, Rock Hill, SC"}]}],"slug":"york"},"46003":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 21","rep":"Jim Halverson, Marty Overweg","w":1.0}],"ss":[{"d":"SD Senate District 21","rep":"MyKala Voita","w":1.0}]},"munis":[],"slug":"aurora"},"46005":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 22","rep":"Kevin Van Diepen, Lana Greenfield","w":1.0}],"ss":[{"d":"SD Senate District 22","rep":"Brandon Wipf","w":1.0}]},"munis":[],"slug":"beadle"},"46007":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 27","rep":"Liz May, Peri Pourier","w":1.0}],"ss":[{"d":"SD Senate District 27","rep":"Red Dawn Foster","w":1.0}]},"munis":[],"slug":"bennett"},"46009":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 19","rep":"Drew Peterson, Jessica Bahmuller","w":0.999}],"ss":[{"d":"SD Senate District 19","rep":"Kyle Schoenfish","w":0.999}]},"munis":[],"slug":"bon-homme"},"46011":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 8","rep":"Tim Reisch, Tim Walburg","w":0.865},{"d":"SD House District 7","rep":"Mellissa Heermann, Roger DeGroot","w":0.135}],"ss":[{"d":"SD Senate District 8","rep":"Casey Crabtree","w":0.865},{"d":"SD Senate District 7","rep":"Tim Reed","w":0.135}]},"munis":[{"m":"Brookings","p":[{"n":"Oepke \"Ope\" Niemeyer","r":"Mayor, Brookings, SD"}]},{"m":"Volga","p":[{"n":"Ken Fideler","r":"Mayor, Volga, SD"}]}],"slug":"brookings"},"46013":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 1","rep":"Logan Manhart, Nick Fosness","w":0.954},{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":0.025},{"d":"SD House District 3","rep":"Al Novstrup, Brandei Schaefbauer","w":0.021}],"ss":[{"d":"SD Senate District 1","rep":"Michael Rohl","w":0.954},{"d":"SD Senate District 23","rep":"Mark Lapka","w":0.025},{"d":"SD Senate District 3","rep":"Carl Perry","w":0.021}]},"munis":[{"m":"Aberdeen","p":[{"n":"Travis Schaunaman","r":"Mayor, Aberdeen, SD"}]}],"slug":"brown"},"46015":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 26B","rep":"Rebecca Reimer","w":1.0}],"ss":[{"d":"SD Senate District 26","rep":"Tamara Grove","w":1.0}]},"munis":[],"slug":"brule"},"46017":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 26B","rep":"Rebecca Reimer","w":1.0}],"ss":[{"d":"SD Senate District 26","rep":"Tamara Grove","w":1.0}]},"munis":[],"slug":"buffalo"},"46019":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 28B","rep":"Travis Ismay","w":1.0}],"ss":[{"d":"SD Senate District 28","rep":"Sam Marty","w":1.0}]},"munis":[],"slug":"butte"},"46021":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"campbell"},"46023":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 21","rep":"Jim Halverson, Marty Overweg","w":1.0}],"ss":[{"d":"SD Senate District 21","rep":"MyKala Voita","w":1.0}]},"munis":[],"slug":"charles-mix"},"46025":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 4","rep":"Dylan Jordan, Kent Roe","w":0.816},{"d":"SD House District 22","rep":"Kevin Van Diepen, Lana Greenfield","w":0.184}],"ss":[{"d":"SD Senate District 4","rep":"Stephanie Sauder","w":0.816},{"d":"SD Senate District 22","rep":"Brandon Wipf","w":0.184}]},"munis":[],"slug":"clark"},"46027":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":0.999}],"sh":[{"d":"SD House District 17","rep":"Chris Kassin, William Shorma","w":0.828},{"d":"SD House District 18","rep":"Julie Auch, Mike Stevens","w":0.172}],"ss":[{"d":"SD Senate District 17","rep":"Sydney Davis","w":0.828},{"d":"SD Senate District 18","rep":"Lauren Nelson","w":0.172}]},"munis":[{"m":"Vermillion","p":[{"n":"Jon Cole","r":"Mayor, Vermillion, SD"}]}],"slug":"clay"},"46029":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 4","rep":"Dylan Jordan, Kent Roe","w":0.8},{"d":"SD House District 5","rep":"Josephine Garcia, Matt Roby","w":0.199}],"ss":[{"d":"SD Senate District 4","rep":"Stephanie Sauder","w":0.8},{"d":"SD Senate District 5","rep":"Glen Vilhauer","w":0.199}]},"munis":[],"slug":"codington"},"46031":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 28A","rep":"Jana Hunt","w":1.0}],"ss":[{"d":"SD Senate District 28","rep":"Sam Marty","w":1.0}]},"munis":[],"slug":"corson"},"46033":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 30","rep":"Tim Goodwin, Trish Ladner","w":1.0}],"ss":[{"d":"SD Senate District 30","rep":"Amber Hulse","w":1.0}]},"munis":[],"slug":"custer"},"46035":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 20","rep":"Jeff Bathke, Kaley Nolz","w":1.0}],"ss":[{"d":"SD Senate District 20","rep":"Paul Miskimins","w":1.0}]},"munis":[],"slug":"davison"},"46037":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 1","rep":"Logan Manhart, Nick Fosness","w":1.0}],"ss":[{"d":"SD Senate District 1","rep":"Michael Rohl","w":1.0}]},"munis":[],"slug":"day"},"46039":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 4","rep":"Dylan Jordan, Kent Roe","w":1.0}],"ss":[{"d":"SD Senate District 4","rep":"Stephanie Sauder","w":1.0}]},"munis":[],"slug":"deuel"},"46041":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 28A","rep":"Jana Hunt","w":1.0}],"ss":[{"d":"SD Senate District 28","rep":"Sam Marty","w":1.0}]},"munis":[],"slug":"dewey"},"46043":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 21","rep":"Jim Halverson, Marty Overweg","w":1.0}],"ss":[{"d":"SD Senate District 21","rep":"MyKala Voita","w":1.0}]},"munis":[],"slug":"douglas"},"46045":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"edmunds"},"46047":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 30","rep":"Tim Goodwin, Trish Ladner","w":1.0}],"ss":[{"d":"SD Senate District 30","rep":"Amber Hulse","w":1.0}]},"munis":[],"slug":"fall-river"},"46049":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"faulk"},"46051":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 4","rep":"Dylan Jordan, Kent Roe","w":1.0}],"ss":[{"d":"SD Senate District 4","rep":"Stephanie Sauder","w":1.0}]},"munis":[{"m":"Milbank","p":[{"n":"Pat Raffety","r":"Mayor, Milbank, SD"}]}],"slug":"grant"},"46053":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 21","rep":"Jim Halverson, Marty Overweg","w":1.0}],"ss":[{"d":"SD Senate District 21","rep":"MyKala Voita","w":1.0}]},"munis":[],"slug":"gregory"},"46055":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 24","rep":"Mike Weisgram, Will Mortenson","w":1.0}],"ss":[{"d":"SD Senate District 24","rep":"Jim Mehlhaff","w":1.0}]},"munis":[],"slug":"haakon"},"46057":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 4","rep":"Dylan Jordan, Kent Roe","w":1.0}],"ss":[{"d":"SD Senate District 4","rep":"Stephanie Sauder","w":1.0}]},"munis":[],"slug":"hamlin"},"46059":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"hand"},"46061":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 19","rep":"Drew Peterson, Jessica Bahmuller","w":1.0}],"ss":[{"d":"SD Senate District 19","rep":"Kyle Schoenfish","w":1.0}]},"munis":[],"slug":"hanson"},"46063":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 28B","rep":"Travis Ismay","w":1.0}],"ss":[{"d":"SD Senate District 28","rep":"Sam Marty","w":1.0}]},"munis":[],"slug":"harding"},"46065":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 24","rep":"Mike Weisgram, Will Mortenson","w":0.85},{"d":"SD House District 26B","rep":"Rebecca Reimer","w":0.15}],"ss":[{"d":"SD Senate District 24","rep":"Jim Mehlhaff","w":0.85},{"d":"SD Senate District 26","rep":"Tamara Grove","w":0.15}]},"munis":[{"m":"Pierre","p":[{"n":"Steve Harding","r":"Mayor, Pierre, SD"}]}],"slug":"hughes"},"46067":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 19","rep":"Drew Peterson, Jessica Bahmuller","w":1.0}],"ss":[{"d":"SD Senate District 19","rep":"Kyle Schoenfish","w":1.0}]},"munis":[],"slug":"hutchinson"},"46069":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 24","rep":"Mike Weisgram, Will Mortenson","w":0.902},{"d":"SD House District 26B","rep":"Rebecca Reimer","w":0.098}],"ss":[{"d":"SD Senate District 24","rep":"Jim Mehlhaff","w":0.902},{"d":"SD Senate District 26","rep":"Tamara Grove","w":0.098}]},"munis":[],"slug":"hyde"},"46071":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 27","rep":"Liz May, Peri Pourier","w":1.0}],"ss":[{"d":"SD Senate District 27","rep":"Red Dawn Foster","w":1.0}]},"munis":[],"slug":"jackson"},"46073":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 20","rep":"Jeff Bathke, Kaley Nolz","w":1.0}],"ss":[{"d":"SD Senate District 20","rep":"Paul Miskimins","w":1.0}]},"munis":[],"slug":"jerauld"},"46075":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 26A","rep":"Eric Emery","w":0.572},{"d":"SD House District 26B","rep":"Rebecca Reimer","w":0.427}],"ss":[{"d":"SD Senate District 26","rep":"Tamara Grove","w":1.0}]},"munis":[],"slug":"jones"},"46077":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 8","rep":"Tim Reisch, Tim Walburg","w":1.0}],"ss":[{"d":"SD Senate District 8","rep":"Casey Crabtree","w":1.0}]},"munis":[{"m":"Arlington","p":[{"n":"Curt Lundquist","r":"Mayor, Arlington, SD"}]}],"slug":"kingsbury"},"46079":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 8","rep":"Tim Reisch, Tim Walburg","w":1.0}],"ss":[{"d":"SD Senate District 8","rep":"Casey Crabtree","w":1.0}]},"munis":[{"m":"Madison","p":[{"n":"Roy Lindsay","r":"Mayor, Madison, SD"}]}],"slug":"lake"},"46081":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 31","rep":"Mary Fitzgerald, Scott Odenbach","w":1.0}],"ss":[{"d":"SD Senate District 31","rep":"Randy Deibert","w":1.0}]},"munis":[],"slug":"lawrence"},"46083":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":0.999}],"sh":[{"d":"SD House District 16","rep":"John Shubeck, Karla Lems","w":0.799},{"d":"SD House District 6","rep":"Aaron Aylward, Tim Czmowski","w":0.179},{"d":"SD House District 13","rep":"Jack Kolbeck, John Hughes","w":0.012},{"d":"SD House District 12","rep":"Amber Arlint, Greg Jamison","w":0.008}],"ss":[{"d":"SD Senate District 16","rep":"Kevin Jensen","w":0.799},{"d":"SD Senate District 6","rep":"Ernie Otten","w":0.179},{"d":"SD Senate District 13","rep":"Sue Peterson","w":0.012},{"d":"SD Senate District 12","rep":"Arch Beal","w":0.008}]},"munis":[{"m":"Canton","p":[{"n":"Sandi Lundstrom","r":"Mayor, Canton, SD"}]},{"m":"Harrisburg","p":[{"n":"Derick Wenck","r":"Mayor, Harrisburg, SD"}]},{"m":"Lennox","p":[{"n":"Stacy DuChene","r":"Mayor, Lennox, SD"}]},{"m":"Tea","p":[{"n":"Casey Voelker","r":"Mayor, Tea, SD"}]}],"slug":"lincoln"},"46085":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 26B","rep":"Rebecca Reimer","w":1.0}],"ss":[{"d":"SD Senate District 26","rep":"Tamara Grove","w":1.0}]},"munis":[],"slug":"lyman"},"46087":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 19","rep":"Drew Peterson, Jessica Bahmuller","w":1.0}],"ss":[{"d":"SD Senate District 19","rep":"Kyle Schoenfish","w":1.0}]},"munis":[],"slug":"mccook"},"46089":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"mcpherson"},"46091":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":0.999}],"sh":[{"d":"SD House District 1","rep":"Logan Manhart, Nick Fosness","w":0.999}],"ss":[{"d":"SD Senate District 1","rep":"Michael Rohl","w":0.999}]},"munis":[],"slug":"marshall"},"46093":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 29","rep":"Kathy Rice, Terri Jorgenson","w":0.994},{"d":"SD House District 33","rep":"Curt Massie, Phil Jensen","w":0.006}],"ss":[{"d":"SD Senate District 29","rep":"John Carley","w":0.994},{"d":"SD Senate District 33","rep":"Curt Voight","w":0.006}]},"munis":[{"m":"Sturgis","p":[{"n":"Angela Wilkerson","r":"Mayor, Sturgis, SD"}]}],"slug":"meade"},"46095":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 26A","rep":"Eric Emery","w":1.0}],"ss":[{"d":"SD Senate District 26","rep":"Tamara Grove","w":1.0}]},"munis":[],"slug":"mellette"},"46097":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 8","rep":"Tim Reisch, Tim Walburg","w":0.811},{"d":"SD House District 20","rep":"Jeff Bathke, Kaley Nolz","w":0.189}],"ss":[{"d":"SD Senate District 8","rep":"Casey Crabtree","w":0.811},{"d":"SD Senate District 20","rep":"Paul Miskimins","w":0.189}]},"munis":[],"slug":"miner"},"46099":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 25","rep":"Jon Hansen, Les Heinemann","w":0.708},{"d":"SD House District 2","rep":"David Kull, John Sjaarda","w":0.123},{"d":"SD House District 9","rep":"Bethany Soye, Tesa Schwans","w":0.108},{"d":"SD House District 15","rep":"Erik Muckey, Kadyn Wittman","w":0.02},{"d":"SD House District 10","rep":"Bobbi Andera, Erin Healy","w":0.015},{"d":"SD House District 14","rep":"Taylor Rehfeldt, Tony Kayser","w":0.008},{"d":"SD House District 11","rep":"Brian Mulder, Keri Weems","w":0.008},{"d":"SD House District 12","rep":"Amber Arlint, Greg Jamison","w":0.006}],"ss":[{"d":"SD Senate District 25","rep":"Tom Pischke","w":0.708},{"d":"SD Senate District 2","rep":"Steve Kolbeck","w":0.123},{"d":"SD Senate District 9","rep":"Joy Hohn","w":0.108},{"d":"SD Senate District 15","rep":"Jamie Smith","w":0.02},{"d":"SD Senate District 10","rep":"Liz Larson","w":0.015},{"d":"SD Senate District 14","rep":"Larry Zikmund","w":0.008},{"d":"SD Senate District 11","rep":"Chris Karr","w":0.008},{"d":"SD Senate District 12","rep":"Arch Beal","w":0.006}]},"munis":[{"m":"Brandon","p":[{"n":"Harry Buck","r":"Mayor, Brandon, SD"}]},{"m":"Dell Rapids","p":[{"n":"Tom Earley","r":"Mayor, Dell Rapids, SD"}]},{"m":"Hartford","p":[{"n":"Arden Jones","r":"Mayor, Hartford, SD"}]},{"m":"Sioux Falls","p":[{"n":"Paul Ten Haken","r":"Mayor, Sioux Falls, SD"}]}],"slug":"minnehaha"},"46101":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 25","rep":"Jon Hansen, Les Heinemann","w":1.0}],"ss":[{"d":"SD Senate District 25","rep":"Tom Pischke","w":1.0}]},"munis":[{"m":"Flandreau","p":[{"n":"Daniel D. Sutton","r":"Mayor, Flandreau, SD"}]}],"slug":"moody"},"46102":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 27","rep":"Liz May, Peri Pourier","w":1.0}],"ss":[{"d":"SD Senate District 27","rep":"Red Dawn Foster","w":1.0}]},"munis":[],"slug":""},"46103":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 27","rep":"Liz May, Peri Pourier","w":0.639},{"d":"SD House District 30","rep":"Tim Goodwin, Trish Ladner","w":0.278},{"d":"SD House District 33","rep":"Curt Massie, Phil Jensen","w":0.05},{"d":"SD House District 35","rep":"Tina Mulally, Tony Randolph","w":0.016},{"d":"SD House District 34","rep":"Heather Baxter, Mike Derby","w":0.013}],"ss":[{"d":"SD Senate District 27","rep":"Red Dawn Foster","w":0.639},{"d":"SD Senate District 30","rep":"Amber Hulse","w":0.278},{"d":"SD Senate District 33","rep":"Curt Voight","w":0.05},{"d":"SD Senate District 35","rep":"Greg Blanc","w":0.016},{"d":"SD Senate District 34","rep":"Taffy Howard","w":0.013}]},"munis":[{"m":"Rapid City","p":[{"n":"Steve Allender","r":"Mayor, Rapid City, SD"}]}],"slug":"pennington"},"46105":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 28A","rep":"Jana Hunt","w":0.673},{"d":"SD House District 28B","rep":"Travis Ismay","w":0.327}],"ss":[{"d":"SD Senate District 28","rep":"Sam Marty","w":1.0}]},"munis":[],"slug":"perkins"},"46107":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"potter"},"46109":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 1","rep":"Logan Manhart, Nick Fosness","w":0.808},{"d":"SD House District 4","rep":"Dylan Jordan, Kent Roe","w":0.191}],"ss":[{"d":"SD Senate District 1","rep":"Michael Rohl","w":0.808},{"d":"SD Senate District 4","rep":"Stephanie Sauder","w":0.191}]},"munis":[],"slug":"roberts"},"46111":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 20","rep":"Jeff Bathke, Kaley Nolz","w":1.0}],"ss":[{"d":"SD Senate District 20","rep":"Paul Miskimins","w":1.0}]},"munis":[],"slug":"sanborn"},"46115":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 22","rep":"Kevin Van Diepen, Lana Greenfield","w":1.0}],"ss":[{"d":"SD Senate District 22","rep":"Brandon Wipf","w":1.0}]},"munis":[],"slug":"spink"},"46117":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 24","rep":"Mike Weisgram, Will Mortenson","w":1.0}],"ss":[{"d":"SD Senate District 24","rep":"Jim Mehlhaff","w":1.0}]},"munis":[{"m":"Fort Pierre","p":[{"n":"Gloria Hanson","r":"Mayor, Fort Pierre, SD"}]}],"slug":"stanley"},"46119":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 24","rep":"Mike Weisgram, Will Mortenson","w":1.0}],"ss":[{"d":"SD Senate District 24","rep":"Jim Mehlhaff","w":1.0}]},"munis":[],"slug":"sully"},"46121":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 26A","rep":"Eric Emery","w":1.0}],"ss":[{"d":"SD Senate District 26","rep":"Tamara Grove","w":1.0}]},"munis":[],"slug":"todd"},"46123":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 21","rep":"Jim Halverson, Marty Overweg","w":1.0}],"ss":[{"d":"SD Senate District 21","rep":"MyKala Voita","w":1.0}]},"munis":[],"slug":"tripp"},"46125":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 16","rep":"John Shubeck, Karla Lems","w":0.825},{"d":"SD House District 19","rep":"Drew Peterson, Jessica Bahmuller","w":0.175}],"ss":[{"d":"SD Senate District 16","rep":"Kevin Jensen","w":0.825},{"d":"SD Senate District 19","rep":"Kyle Schoenfish","w":0.175}]},"munis":[],"slug":"turner"},"46127":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":0.996}],"sh":[{"d":"SD House District 16","rep":"John Shubeck, Karla Lems","w":0.639},{"d":"SD House District 17","rep":"Chris Kassin, William Shorma","w":0.359}],"ss":[{"d":"SD Senate District 16","rep":"Kevin Jensen","w":0.639},{"d":"SD Senate District 17","rep":"Sydney Davis","w":0.359}]},"munis":[{"m":"Beresford","p":[{"n":"Eli Seeley","r":"Mayor, Beresford, SD"}]},{"m":"Elk Point","p":[{"n":"Deborah McCreary","r":"Mayor, Elk Point, SD"}]},{"m":"North Sioux City","p":[{"n":"Patricia Teel","r":"Mayor, North Sioux City, SD"}]}],"slug":"union"},"46129":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 23","rep":"Scott Moore, Spencer Gosch","w":1.0}],"ss":[{"d":"SD Senate District 23","rep":"Mark Lapka","w":1.0}]},"munis":[],"slug":"walworth"},"46135":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 18","rep":"Julie Auch, Mike Stevens","w":1.0}],"ss":[{"d":"SD Senate District 18","rep":"Lauren Nelson","w":1.0}]},"munis":[{"m":"Yankton","p":[{"n":"Stephanie Moser","r":"Mayor, Yankton, SD"}]}],"slug":"yankton"},"46137":{"county":[],"districts":{"cd":[{"d":"SD-00","rep":"Dusty Johnson","w":1.0}],"sh":[{"d":"SD House District 28A","rep":"Jana Hunt","w":1.0}],"ss":[{"d":"SD Senate District 28","rep":"Sam Marty","w":1.0}]},"munis":[],"slug":"ziebach"},"47001":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.993},{"d":"TN-02","rep":"Tim Burchett","w":0.007}],"sh":[{"d":"TN House District 33","rep":"Rick Scarbrough","w":0.585},{"d":"TN House District 41","rep":"Ed Butler","w":0.415}],"ss":[{"d":"TN Senate District 5","rep":"Randy McNally","w":1.0}]},"munis":[{"m":"Clinton","p":[{"n":"Scott Burton","r":"Mayor, Clinton, TN"}]},{"m":"Rocky Top","p":[{"n":"Kerry Templin","r":"Mayor, Rocky Top, TN"}]}],"slug":"anderson"},"47003":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.999}],"sh":[{"d":"TN House District 62","rep":"Pat Marsh","w":1.0}],"ss":[{"d":"TN Senate District 14","rep":"Shane Reeves","w":1.0}]},"munis":[{"m":"Shelbyville","p":[{"n":"Randy Carroll","r":"Mayor, Shelbyville, TN"}]}],"slug":"bedford"},"47005":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.826},{"d":"TN-08","rep":"David Kustoff","w":0.174}],"sh":[{"d":"TN House District 74","rep":"Jay Reedy","w":1.0}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[{"m":"Camden","p":[{"n":"Roger G. Pafford","r":"Mayor, Camden, TN"}]}],"slug":"benton"},"47007":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.998}],"sh":[{"d":"TN House District 31","rep":"Ron Travis","w":1.0}],"ss":[{"d":"TN Senate District 10","rep":"Todd Gardenhire","w":1.0}]},"munis":[],"slug":"bledsoe"},"47009":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":0.996}],"sh":[{"d":"TN House District 8","rep":"Jerome Moon","w":0.782},{"d":"TN House District 20","rep":"Tommy Stinnett","w":0.218}],"ss":[{"d":"TN Senate District 2","rep":"Tom Hatcher","w":0.999}]},"munis":[{"m":"Alcoa","p":[{"n":"Tanya Martin","r":"Mayor, Alcoa, TN"}]},{"m":"Maryville","p":[{"n":"Andy White","r":"Mayor, Maryville, TN"}]}],"slug":"blount"},"47011":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.999}],"sh":[{"d":"TN House District 22","rep":"Dan Howell","w":0.734},{"d":"TN House District 24","rep":"Kevin Raper","w":0.266}],"ss":[{"d":"TN Senate District 1","rep":"Adam Lowe","w":0.894},{"d":"TN Senate District 2","rep":"Tom Hatcher","w":0.105}]},"munis":[{"m":"Charleston","p":[{"n":"Donna McDermott","r":"Mayor, Charleston, TN"}]},{"m":"Cleveland","p":[{"n":"Kevin Brooks","r":"Mayor, Cleveland, TN"}]}],"slug":"bradley"},"47013":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":0.689},{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.309}],"sh":[{"d":"TN House District 36","rep":"Dennis Powers","w":1.0}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[],"slug":"campbell"},"47015":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.993},{"d":"TN-04","rep":"Scott DesJarlais","w":0.007}],"sh":[{"d":"TN House District 40","rep":"Michael Hale","w":1.0}],"ss":[{"d":"TN Senate District 14","rep":"Shane Reeves","w":1.0}]},"munis":[],"slug":"cannon"},"47017":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 79","rep":"Brock Martin","w":0.656},{"d":"TN House District 76","rep":"Tandy Darby","w":0.344}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"carroll"},"47019":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.999}],"sh":[{"d":"TN House District 4","rep":"Renea Jones","w":0.604},{"d":"TN House District 3","rep":"Timothy Hill","w":0.396}],"ss":[{"d":"TN Senate District 3","rep":"Rusty Crowe","w":0.999}]},"munis":[],"slug":"carter"},"47021":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":1.0}],"sh":[{"d":"TN House District 78","rep":"Mary Littleton","w":1.0}],"ss":[{"d":"TN Senate District 23","rep":"Kerry Roberts","w":1.0}]},"munis":[],"slug":"cheatham"},"47023":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 72","rep":"Kirk Haston","w":1.0}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"chester"},"47025":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":0.999}],"sh":[{"d":"TN House District 9","rep":"Gary Hicks","w":0.521},{"d":"TN House District 36","rep":"Dennis Powers","w":0.479}],"ss":[{"d":"TN Senate District 8","rep":"Jessie Seal","w":1.0}]},"munis":[],"slug":"claiborne"},"47027":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.999}],"sh":[{"d":"TN House District 38","rep":"Kelly Keisling","w":0.999}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":0.999}]},"munis":[],"slug":"clay"},"47029":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.999}],"sh":[{"d":"TN House District 11","rep":"Jeremy Faison","w":0.999}],"ss":[{"d":"TN Senate District 9","rep":"Steve Southerland","w":0.999}]},"munis":[],"slug":"cocke"},"47031":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.999}],"sh":[{"d":"TN House District 47","rep":"Rush Bricken","w":1.0}],"ss":[{"d":"TN Senate District 16","rep":"Janice Bowling","w":1.0}]},"munis":[{"m":"Manchester","p":[{"n":"Joey Hobbs","r":"Mayor, Manchester, TN"}]}],"slug":"coffee"},"47033":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 82","rep":"Chris Hurt","w":1.0}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":0.999}]},"munis":[],"slug":"crockett"},"47035":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.999}],"sh":[{"d":"TN House District 25","rep":"Cameron Sexton","w":1.0}],"ss":[{"d":"TN Senate District 15","rep":"Paul Bailey","w":1.0}]},"munis":[{"m":"Crossville","p":[{"n":"RJ Crawford","r":"Mayor, Crossville, TN"}]}],"slug":"cumberland"},"47037":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.4},{"d":"TN-05","rep":"Andrew Ogles","w":0.377},{"d":"TN-06","rep":"John W. Rose","w":0.222}],"sh":[{"d":"TN House District 50","rep":"Bo Mitchell","w":0.311},{"d":"TN House District 59","rep":"Caleb Hemmer","w":0.15},{"d":"TN House District 54","rep":"Vincent Dixie","w":0.118},{"d":"TN House District 52","rep":"Justin Jones","w":0.109},{"d":"TN House District 60","rep":"Shaundelle Brooks","w":0.089},{"d":"TN House District 51","rep":"Aftyn Behn","w":0.068},{"d":"TN House District 53","rep":"Jason Powell","w":0.052},{"d":"TN House District 58","rep":"Harold Love","w":0.038},{"d":"TN House District 55","rep":"John Clemmons","w":0.035},{"d":"TN House District 56","rep":"Bob Freeman","w":0.031}],"ss":[{"d":"TN Senate District 20","rep":"Heidi Campbell","w":0.537},{"d":"TN Senate District 19","rep":"Charlane Oliver","w":0.227},{"d":"TN Senate District 21","rep":"Jeff Yarbro","w":0.119},{"d":"TN Senate District 17","rep":"Mark Pody","w":0.117}]},"munis":[],"slug":"davidson"},"47039":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.997}],"sh":[{"d":"TN House District 72","rep":"Kirk Haston","w":1.0}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":1.0}]},"munis":[],"slug":"decatur"},"47041":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.997}],"sh":[{"d":"TN House District 40","rep":"Michael Hale","w":1.0}],"ss":[{"d":"TN Senate District 16","rep":"Janice Bowling","w":1.0}]},"munis":[],"slug":"dekalb"},"47043":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":1.0}],"sh":[{"d":"TN House District 69","rep":"Jody Barrett","w":0.602},{"d":"TN House District 78","rep":"Mary Littleton","w":0.398}],"ss":[{"d":"TN Senate District 23","rep":"Kerry Roberts","w":1.0}]},"munis":[],"slug":"dickson"},"47045":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 77","rep":"Rusty Grills","w":1.0}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":1.0}]},"munis":[{"m":"Dyersburg","p":[{"n":"John Holden","r":"Mayor, Dyersburg, TN"}]}],"slug":"dyer"},"47047":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 94","rep":"Ron Gant","w":1.0}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"fayette"},"47049":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.998}],"sh":[{"d":"TN House District 38","rep":"Kelly Keisling","w":0.576},{"d":"TN House District 41","rep":"Ed Butler","w":0.424}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[],"slug":"fentress"},"47051":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":1.0}],"sh":[{"d":"TN House District 39","rep":"Iris Rudder","w":0.999}],"ss":[{"d":"TN Senate District 16","rep":"Janice Bowling","w":0.999}]},"munis":[],"slug":"franklin"},"47053":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 82","rep":"Chris Hurt","w":0.501},{"d":"TN House District 79","rep":"Brock Martin","w":0.499}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"gibson"},"47055":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.997}],"sh":[{"d":"TN House District 70","rep":"Clay Doggett","w":1.0}],"ss":[{"d":"TN Senate District 28","rep":"Joey Hensley","w":1.0}]},"munis":[{"m":"Pulaski","p":[{"n":"J.J. Brindley","r":"Mayor, Pulaski, TN"}]}],"slug":"giles"},"47057":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":0.989},{"d":"TN-01","rep":"Diana Harshbarger","w":0.011}],"sh":[{"d":"TN House District 10","rep":"Rick Eldridge","w":0.999}],"ss":[{"d":"TN Senate District 8","rep":"Jessie Seal","w":1.0}]},"munis":[],"slug":"grainger"},"47059":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":1.0}],"sh":[{"d":"TN House District 5","rep":"David Hawk","w":0.999}],"ss":[{"d":"TN Senate District 9","rep":"Steve Southerland","w":0.999}]},"munis":[],"slug":"greene"},"47061":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":1.0}],"sh":[{"d":"TN House District 47","rep":"Rush Bricken","w":1.0}],"ss":[{"d":"TN Senate District 16","rep":"Janice Bowling","w":1.0}]},"munis":[],"slug":"grundy"},"47063":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.993},{"d":"TN-02","rep":"Tim Burchett","w":0.007}],"sh":[{"d":"TN House District 11","rep":"Jeremy Faison","w":0.537},{"d":"TN House District 10","rep":"Rick Eldridge","w":0.463}],"ss":[{"d":"TN Senate District 9","rep":"Steve Southerland","w":0.999}]},"munis":[],"slug":"hamblen"},"47065":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.997}],"sh":[{"d":"TN House District 27","rep":"Michele Reneau","w":0.317},{"d":"TN House District 29","rep":"Greg Vital","w":0.261},{"d":"TN House District 26","rep":"Greg Martin","w":0.24},{"d":"TN House District 30","rep":"Esther Helton-Haynes","w":0.099},{"d":"TN House District 28","rep":"Yusuf Hakeem","w":0.083}],"ss":[{"d":"TN Senate District 11","rep":"Bo Watson","w":0.779},{"d":"TN Senate District 10","rep":"Todd Gardenhire","w":0.22}]},"munis":[{"m":"Chattanooga","p":[{"n":"Q4760428","r":"Mayor, Chattanooga, TN"}]}],"slug":"hamilton"},"47067":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.998}],"sh":[{"d":"TN House District 9","rep":"Gary Hicks","w":0.999}],"ss":[{"d":"TN Senate District 8","rep":"Jessie Seal","w":0.999}]},"munis":[],"slug":"hancock"},"47069":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 80","rep":"Johnny Shaw","w":0.872},{"d":"TN House District 94","rep":"Ron Gant","w":0.128}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"hardeman"},"47071":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":0.998}],"sh":[{"d":"TN House District 72","rep":"Kirk Haston","w":0.87},{"d":"TN House District 71","rep":"Kip Capley","w":0.13}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"hardin"},"47073":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":1.0}],"sh":[{"d":"TN House District 9","rep":"Gary Hicks","w":0.809},{"d":"TN House District 3","rep":"Timothy Hill","w":0.191}],"ss":[{"d":"TN Senate District 4","rep":"Bobby Harshbarger","w":1.0}]},"munis":[],"slug":"hawkins"},"47075":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 81","rep":"Debra Moody","w":0.715},{"d":"TN House District 80","rep":"Johnny Shaw","w":0.284}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[{"m":"Brownsville","p":[{"n":"William D. Rawls, Jr.","r":"Mayor, Brownsville, TN"}]}],"slug":"haywood"},"47077":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":0.996}],"sh":[{"d":"TN House District 79","rep":"Brock Martin","w":0.595},{"d":"TN House District 72","rep":"Kirk Haston","w":0.405}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":1.0}]},"munis":[],"slug":"henderson"},"47079":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":0.998}],"sh":[{"d":"TN House District 76","rep":"Tandy Darby","w":0.79},{"d":"TN House District 74","rep":"Jay Reedy","w":0.21}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"henry"},"47081":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.998}],"sh":[{"d":"TN House District 69","rep":"Jody Barrett","w":1.0}],"ss":[{"d":"TN Senate District 23","rep":"Kerry Roberts","w":1.0}]},"munis":[],"slug":"hickman"},"47083":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":1.0}],"sh":[{"d":"TN House District 74","rep":"Jay Reedy","w":1.0}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"houston"},"47085":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":1.0}],"sh":[{"d":"TN House District 74","rep":"Jay Reedy","w":1.0}],"ss":[{"d":"TN Senate District 23","rep":"Kerry Roberts","w":1.0}]},"munis":[],"slug":"humphreys"},"47087":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":1.0}],"sh":[{"d":"TN House District 40","rep":"Michael Hale","w":1.0}],"ss":[{"d":"TN Senate District 15","rep":"Paul Bailey","w":1.0}]},"munis":[],"slug":"jackson"},"47089":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.969},{"d":"TN-02","rep":"Tim Burchett","w":0.032}],"sh":[{"d":"TN House District 17","rep":"Andrew Farmer","w":0.644},{"d":"TN House District 11","rep":"Jeremy Faison","w":0.355}],"ss":[{"d":"TN Senate District 8","rep":"Jessie Seal","w":1.0}]},"munis":[],"slug":"jefferson"},"47091":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.999}],"sh":[{"d":"TN House District 3","rep":"Timothy Hill","w":0.999}],"ss":[{"d":"TN Senate District 3","rep":"Rusty Crowe","w":0.999}]},"munis":[],"slug":"johnson"},"47093":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":0.996}],"sh":[{"d":"TN House District 19","rep":"Dave Wright","w":0.419},{"d":"TN House District 89","rep":"Justin Lafferty","w":0.128},{"d":"TN House District 18","rep":"Elaine Davis","w":0.127},{"d":"TN House District 16","rep":"Michele Carringer","w":0.111},{"d":"TN House District 14","rep":"Jason Zachary","w":0.105},{"d":"TN House District 15","rep":"Sam McKenzie","w":0.058},{"d":"TN House District 90","rep":"Gloria Johnson","w":0.053}],"ss":[{"d":"TN Senate District 6","rep":"Becky Massey","w":0.626},{"d":"TN Senate District 7","rep":"Richard Briggs","w":0.259},{"d":"TN Senate District 5","rep":"Randy McNally","w":0.115}]},"munis":[{"m":"Knoxville","p":[{"n":"Indya Kincannon","r":"Mayor, Knoxville, TN"}]}],"slug":"knox"},"47095":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":0.999}],"sh":[{"d":"TN House District 77","rep":"Rusty Grills","w":0.999}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":0.999}]},"munis":[],"slug":"lake"},"47097":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":0.996}],"sh":[{"d":"TN House District 82","rep":"Chris Hurt","w":0.999}],"ss":[{"d":"TN Senate District 32","rep":"Paul Rose","w":0.999}]},"munis":[],"slug":"lauderdale"},"47099":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.996}],"sh":[{"d":"TN House District 70","rep":"Clay Doggett","w":0.623},{"d":"TN House District 71","rep":"Kip Capley","w":0.377}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"lawrence"},"47101":{"county":[],"districts":{"cd":[{"d":"TN-05","rep":"Andrew Ogles","w":0.995}],"sh":[{"d":"TN House District 69","rep":"Jody Barrett","w":1.0}],"ss":[{"d":"TN Senate District 28","rep":"Joey Hensley","w":1.0}]},"munis":[],"slug":"lewis"},"47103":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.999}],"sh":[{"d":"TN House District 70","rep":"Clay Doggett","w":0.51},{"d":"TN House District 62","rep":"Pat Marsh","w":0.49}],"ss":[{"d":"TN Senate District 16","rep":"Janice Bowling","w":1.0}]},"munis":[{"m":"Fayetteville","p":[{"n":"Donna Hartman","r":"Mayor, Fayetteville, TN"}]}],"slug":"lincoln"},"47105":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":0.981},{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.019}],"sh":[{"d":"TN House District 21","rep":"Lowell Russell","w":0.805},{"d":"TN House District 32","rep":"Monty Fritts","w":0.195}],"ss":[{"d":"TN Senate District 5","rep":"Randy McNally","w":1.0}]},"munis":[],"slug":"loudon"},"47107":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.997}],"sh":[{"d":"TN House District 23","rep":"Mark Cochran","w":1.0}],"ss":[{"d":"TN Senate District 1","rep":"Adam Lowe","w":1.0}]},"munis":[],"slug":"mcminn"},"47109":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 94","rep":"Ron Gant","w":1.0}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"mcnairy"},"47111":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.999}],"sh":[{"d":"TN House District 38","rep":"Kelly Keisling","w":0.999}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":0.999}]},"munis":[],"slug":"macon"},"47113":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 73","rep":"Chris Todd","w":0.718},{"d":"TN House District 80","rep":"Johnny Shaw","w":0.282}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":1.0}]},"munis":[{"m":"Jackson","p":[{"n":"Scott Conger","r":"Mayor, Jackson, TN"}]}],"slug":"madison"},"47115":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.999}],"sh":[{"d":"TN House District 39","rep":"Iris Rudder","w":1.0}],"ss":[{"d":"TN Senate District 10","rep":"Todd Gardenhire","w":0.993},{"d":"TN Senate District 16","rep":"Janice Bowling","w":0.007}]},"munis":[],"slug":"marion"},"47117":{"county":[],"districts":{"cd":[{"d":"TN-05","rep":"Andrew Ogles","w":0.993},{"d":"TN-04","rep":"Scott DesJarlais","w":0.007}],"sh":[{"d":"TN House District 92","rep":"Todd Warner","w":1.0}],"ss":[{"d":"TN Senate District 28","rep":"Joey Hensley","w":1.0}]},"munis":[],"slug":"marshall"},"47119":{"county":[],"districts":{"cd":[{"d":"TN-05","rep":"Andrew Ogles","w":0.997}],"sh":[{"d":"TN House District 71","rep":"Kip Capley","w":0.573},{"d":"TN House District 64","rep":"Scott Cepicky","w":0.427}],"ss":[{"d":"TN Senate District 28","rep":"Joey Hensley","w":1.0}]},"munis":[{"m":"Spring Hill","p":[{"n":"Jim Hagaman","r":"Mayor, Spring Hill, TN"}]}],"slug":"maury"},"47121":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.985},{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.015}],"sh":[{"d":"TN House District 22","rep":"Dan Howell","w":0.999}],"ss":[{"d":"TN Senate District 1","rep":"Adam Lowe","w":1.0}]},"munis":[],"slug":"meigs"},"47123":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.996}],"sh":[{"d":"TN House District 23","rep":"Mark Cochran","w":0.678},{"d":"TN House District 21","rep":"Lowell Russell","w":0.322}],"ss":[{"d":"TN Senate District 2","rep":"Tom Hatcher","w":1.0}]},"munis":[],"slug":"monroe"},"47125":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":1.0}],"sh":[{"d":"TN House District 68","rep":"Aron Maberry","w":0.492},{"d":"TN House District 75","rep":"Michael Lankford","w":0.431},{"d":"TN House District 67","rep":"Ronnie Glynn","w":0.076}],"ss":[{"d":"TN Senate District 22","rep":"Bill Powers","w":0.967},{"d":"TN Senate District 23","rep":"Kerry Roberts","w":0.033}]},"munis":[{"m":"Clarksville","p":[{"n":"Joe Pitts","r":"Mayor, Clarksville, TN"}]}],"slug":"montgomery"},"47127":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":1.0}],"sh":[{"d":"TN House District 62","rep":"Pat Marsh","w":1.0}],"ss":[{"d":"TN Senate District 14","rep":"Shane Reeves","w":0.999}]},"munis":[],"slug":"moore"},"47129":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.996}],"sh":[{"d":"TN House District 41","rep":"Ed Butler","w":1.0}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[],"slug":"morgan"},"47131":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 77","rep":"Rusty Grills","w":0.702},{"d":"TN House District 82","rep":"Chris Hurt","w":0.298}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"obion"},"47133":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":1.0}],"sh":[{"d":"TN House District 41","rep":"Ed Butler","w":1.0}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[],"slug":"overton"},"47135":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":1.0}],"sh":[{"d":"TN House District 72","rep":"Kirk Haston","w":1.0}],"ss":[{"d":"TN Senate District 25","rep":"Ed Jackson","w":1.0}]},"munis":[],"slug":"perry"},"47137":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":1.0}],"sh":[{"d":"TN House District 38","rep":"Kelly Keisling","w":0.999}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[],"slug":"pickett"},"47139":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":1.0}],"sh":[{"d":"TN House District 22","rep":"Dan Howell","w":1.0}],"ss":[{"d":"TN Senate District 2","rep":"Tom Hatcher","w":1.0}]},"munis":[],"slug":"polk"},"47141":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":1.0}],"sh":[{"d":"TN House District 42","rep":"Ryan Williams","w":0.669},{"d":"TN House District 25","rep":"Cameron Sexton","w":0.331}],"ss":[{"d":"TN Senate District 15","rep":"Paul Bailey","w":1.0}]},"munis":[],"slug":"putnam"},"47143":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.998}],"sh":[{"d":"TN House District 31","rep":"Ron Travis","w":1.0}],"ss":[{"d":"TN Senate District 1","rep":"Adam Lowe","w":1.0}]},"munis":[{"m":"Dayton","p":[{"n":"Hurley Marsh","r":"Mayor, Dayton, TN"}]}],"slug":"rhea"},"47145":{"county":[],"districts":{"cd":[{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.992}],"sh":[{"d":"TN House District 32","rep":"Monty Fritts","w":0.955},{"d":"TN House District 41","rep":"Ed Butler","w":0.045}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[{"m":"Rockwood","p":[{"n":"Jason Jolly","r":"Mayor, Rockwood, TN"}]}],"slug":"roane"},"47147":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.999}],"sh":[{"d":"TN House District 66","rep":"Doc Kumar","w":1.0}],"ss":[{"d":"TN Senate District 23","rep":"Kerry Roberts","w":1.0}]},"munis":[{"m":"Springfield","p":[{"n":"Ann Williams","r":"Mayor, Springfield, TN"}]}],"slug":"robertson"},"47149":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.992},{"d":"TN-05","rep":"Andrew Ogles","w":0.007}],"sh":[{"d":"TN House District 48","rep":"Bryan Terry","w":0.424},{"d":"TN House District 13","rep":"Robert Stevens","w":0.195},{"d":"TN House District 34","rep":"Tim Rudd","w":0.162},{"d":"TN House District 37","rep":"Charlie Baum","w":0.127},{"d":"TN House District 49","rep":"Mike Sparks","w":0.091}],"ss":[{"d":"TN Senate District 13","rep":"Dawn White","w":0.568},{"d":"TN Senate District 14","rep":"Shane Reeves","w":0.432}]},"munis":[{"m":"La Vergne","p":[{"n":"Jason Cole","r":"Mayor, La Vergne, TN"}]},{"m":"Murfreesboro","p":[{"n":"Shane McFarland","r":"Mayor, Murfreesboro, TN"}]}],"slug":"rutherford"},"47151":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.59},{"d":"TN-03","rep":"Charles J. \"Chuck\" Fleischmann","w":0.409}],"sh":[{"d":"TN House District 38","rep":"Kelly Keisling","w":0.999}],"ss":[{"d":"TN Senate District 12","rep":"Ken Yager","w":1.0}]},"munis":[],"slug":"scott"},"47153":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.998}],"sh":[{"d":"TN House District 31","rep":"Ron Travis","w":1.0}],"ss":[{"d":"TN Senate District 10","rep":"Todd Gardenhire","w":1.0}]},"munis":[],"slug":"sequatchie"},"47155":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.997}],"sh":[{"d":"TN House District 12","rep":"Fred Atchley","w":0.738},{"d":"TN House District 17","rep":"Andrew Farmer","w":0.261}],"ss":[{"d":"TN Senate District 9","rep":"Steve Southerland","w":0.583},{"d":"TN Senate District 8","rep":"Jessie Seal","w":0.416}]},"munis":[{"m":"Sevierville","p":[{"n":"Robert W. Fox","r":"Mayor, Sevierville, TN"}]}],"slug":"sevier"},"47157":{"county":[],"districts":{"cd":[{"d":"TN-09","rep":"Steve Cohen","w":0.696},{"d":"TN-08","rep":"David Kustoff","w":0.302}],"sh":[{"d":"TN House District 86","rep":"Justin Pearson","w":0.29},{"d":"TN House District 99","rep":"Tom Leatherwood","w":0.211},{"d":"TN House District 95","rep":"Kevin Vaughan","w":0.106},{"d":"TN House District 85","rep":"Jesse Chism","w":0.049},{"d":"TN House District 88","rep":"Larry Miller","w":0.045},{"d":"TN House District 97","rep":"John Gillespie","w":0.044},{"d":"TN House District 83","rep":"Mark White","w":0.044},{"d":"TN House District 84","rep":"Joe Towns","w":0.041},{"d":"TN House District 96","rep":"Gabby Salinas","w":0.04},{"d":"TN House District 98","rep":"Antonio Parkinson","w":0.035},{"d":"TN House District 91","rep":"Torrey Harris","w":0.035},{"d":"TN House District 87","rep":"Karen Camper","w":0.03},{"d":"TN House District 93","rep":"T.J. Hardaway","w":0.026}],"ss":[{"d":"TN Senate District 29","rep":"Raumesh Akbari","w":0.397},{"d":"TN Senate District 31","rep":"Brent Taylor","w":0.216},{"d":"TN Senate District 32","rep":"Paul Rose","w":0.171},{"d":"TN Senate District 33","rep":"London Lamar","w":0.114},{"d":"TN Senate District 30","rep":"Sara Kyle","w":0.101}]},"munis":[{"m":"Bartlett","p":[{"n":"David Parsons","r":"Mayor, Bartlett, TN"}]},{"m":"Germantown","p":[{"n":"Mike Palazzolo","r":"Mayor, Germantown, TN"}]},{"m":"Memphis","p":[{"n":"Paul Young","r":"Mayor, Memphis, TN"}]}],"slug":"shelby"},"47159":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":1.0}],"sh":[{"d":"TN House District 40","rep":"Michael Hale","w":1.0}],"ss":[{"d":"TN Senate District 15","rep":"Paul Bailey","w":1.0}]},"munis":[],"slug":"smith"},"47161":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.998}],"sh":[{"d":"TN House District 74","rep":"Jay Reedy","w":1.0}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"stewart"},"47163":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":1.0}],"sh":[{"d":"TN House District 1","rep":"John Crawford","w":0.36},{"d":"TN House District 3","rep":"Timothy Hill","w":0.357},{"d":"TN House District 2","rep":"Bud Hulsey","w":0.283}],"ss":[{"d":"TN Senate District 4","rep":"Bobby Harshbarger","w":0.999}]},"munis":[{"m":"Bristol","p":[{"n":"Vince Turner","r":"Mayor, Bristol, TN"}]},{"m":"Kingsport","p":[{"n":"Patrick W. Shull","r":"Mayor, Kingsport, TN"}]}],"slug":"sullivan"},"47165":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.998}],"sh":[{"d":"TN House District 44","rep":"William Lamberth","w":0.593},{"d":"TN House District 35","rep":"William Slater","w":0.221},{"d":"TN House District 45","rep":"Johnny Garrett","w":0.184}],"ss":[{"d":"TN Senate District 18","rep":"Ferrell Haile","w":0.998}]},"munis":[{"m":"Hendersonville","p":[{"n":"Jamie Clary","r":"Mayor, Hendersonville, TN"}]},{"m":"Portland","p":[{"n":"Mike Callis","r":"Mayor, Portland, TN"}]}],"slug":"sumner"},"47167":{"county":[],"districts":{"cd":[{"d":"TN-09","rep":"Steve Cohen","w":0.56},{"d":"TN-08","rep":"David Kustoff","w":0.438}],"sh":[{"d":"TN House District 81","rep":"Debra Moody","w":0.999}],"ss":[{"d":"TN Senate District 32","rep":"Paul Rose","w":1.0}]},"munis":[],"slug":"tipton"},"47169":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":1.0}],"sh":[{"d":"TN House District 35","rep":"William Slater","w":1.0}],"ss":[{"d":"TN Senate District 18","rep":"Ferrell Haile","w":1.0}]},"munis":[],"slug":"trousdale"},"47171":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":0.998}],"sh":[{"d":"TN House District 4","rep":"Renea Jones","w":0.998}],"ss":[{"d":"TN Senate District 9","rep":"Steve Southerland","w":0.998}]},"munis":[],"slug":"unicoi"},"47173":{"county":[],"districts":{"cd":[{"d":"TN-02","rep":"Tim Burchett","w":1.0}],"sh":[{"d":"TN House District 36","rep":"Dennis Powers","w":1.0}],"ss":[{"d":"TN Senate District 8","rep":"Jessie Seal","w":1.0}]},"munis":[],"slug":"union"},"47175":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.998}],"sh":[{"d":"TN House District 31","rep":"Ron Travis","w":1.0}],"ss":[{"d":"TN Senate District 15","rep":"Paul Bailey","w":1.0}]},"munis":[],"slug":"van-buren"},"47177":{"county":[],"districts":{"cd":[{"d":"TN-04","rep":"Scott DesJarlais","w":0.984},{"d":"TN-06","rep":"John W. Rose","w":0.016}],"sh":[{"d":"TN House District 43","rep":"Paul Sherrell","w":1.0}],"ss":[{"d":"TN Senate District 16","rep":"Janice Bowling","w":1.0}]},"munis":[],"slug":"warren"},"47179":{"county":[],"districts":{"cd":[{"d":"TN-01","rep":"Diana Harshbarger","w":1.0}],"sh":[{"d":"TN House District 7","rep":"Becky Jo Alexander","w":0.513},{"d":"TN House District 6","rep":"Tim Hicks","w":0.487}],"ss":[{"d":"TN Senate District 3","rep":"Rusty Crowe","w":1.0}]},"munis":[{"m":"Johnson City","p":[{"n":"Todd Fowler","r":"Mayor, Johnson City, TN"}]}],"slug":"washington"},"47181":{"county":[],"districts":{"cd":[{"d":"TN-07","rep":"Matt Van Epps","w":0.999}],"sh":[{"d":"TN House District 71","rep":"Kip Capley","w":1.0}],"ss":[{"d":"TN Senate District 26","rep":"Page Walley","w":1.0}]},"munis":[],"slug":"wayne"},"47183":{"county":[],"districts":{"cd":[{"d":"TN-08","rep":"David Kustoff","w":1.0}],"sh":[{"d":"TN House District 76","rep":"Tandy Darby","w":1.0}],"ss":[{"d":"TN Senate District 24","rep":"John Stevens","w":1.0}]},"munis":[],"slug":"weakley"},"47185":{"county":[],"districts":{"cd":[{"d":"TN-06","rep":"John W. Rose","w":0.999}],"sh":[{"d":"TN House District 43","rep":"Paul Sherrell","w":1.0}],"ss":[{"d":"TN Senate District 15","rep":"Paul Bailey","w":1.0}]},"munis":[],"slug":"white"},"47187":{"county":[],"districts":{"cd":[{"d":"TN-05","rep":"Andrew Ogles","w":0.531},{"d":"TN-07","rep":"Matt Van Epps","w":0.466}],"sh":[{"d":"TN House District 65","rep":"Lee Reeves","w":0.469},{"d":"TN House District 63","rep":"Jake McCalmon","w":0.297},{"d":"TN House District 61","rep":"Gino Bulso","w":0.153},{"d":"TN House District 92","rep":"Todd Warner","w":0.08}],"ss":[{"d":"TN Senate District 27","rep":"Jack Johnson","w":0.984},{"d":"TN Senate District 28","rep":"Joey Hensley","w":0.016}]},"munis":[{"m":"Brentwood","p":[{"n":"Mark Gorman","r":"Mayor, Brentwood, TN"}]},{"m":"Franklin","p":[{"n":"Ken Moore","r":"Mayor, Franklin, TN"}]}],"slug":"williamson"},"47189":{"county":[],"districts":{"cd":[{"d":"TN-05","rep":"Andrew Ogles","w":0.502},{"d":"TN-06","rep":"John W. Rose","w":0.496}],"sh":[{"d":"TN House District 46","rep":"Clark Boyd","w":0.739},{"d":"TN House District 57","rep":"Susan Lynn","w":0.197},{"d":"TN House District 40","rep":"Michael Hale","w":0.064}],"ss":[{"d":"TN Senate District 17","rep":"Mark Pody","w":1.0}]},"munis":[{"m":"Lebanon","p":[{"n":"Rick Bell","r":"Mayor, Lebanon, TN"}]}],"slug":"wilson"},"48001":{"county":[],"districts":{"cd":[{"d":"TX-06","rep":"Jake Ellzey","w":0.999}],"sh":[{"d":"TX House District 8","rep":"Cody Harris","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Palestine","p":[{"n":"Mitchell Jordan","r":"Mayor, Palestine, TX"}]}],"slug":"anderson"},"48003":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Andrews","p":[{"n":"Flora Braly","r":"Mayor, Andrews, TX"}]}],"slug":"andrews"},"48005":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":0.998}],"sh":[{"d":"TX House District 9","rep":"Trent Ashby","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Lufkin","p":[{"n":"Mark Hicks","r":"Mayor, Lufkin, TX"}]}],"slug":"angelina"},"48007":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.593}],"sh":[{"d":"TX House District 32","rep":"Todd Hunter","w":0.549}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.549}]},"munis":[{"m":"Rockport","p":[{"n":"Lowell Timothy Jayroe","r":"Mayor, Rockport, TX"}]}],"slug":"aransas"},"48009":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":1.0}]},"munis":[],"slug":"archer"},"48011":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"armstrong"},"48013":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":1.0}],"sh":[{"d":"TX House District 80","rep":"Don McLaughlin","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":0.756},{"d":"TX Senate District 24","rep":"Pete Flores","w":0.244}]},"munis":[],"slug":"atascosa"},"48015":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.998}],"sh":[{"d":"TX House District 85","rep":"Stan Kitzman","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Bellville","p":[{"n":"James Harrison","r":"Mayor, Bellville, TX"}]}],"slug":"austin"},"48017":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"bailey"},"48019":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":0.999}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[],"slug":"bandera"},"48021":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.515},{"d":"TX-27","rep":"Michael Cloud","w":0.485}],"sh":[{"d":"TX House District 17","rep":"Stan Gerdes","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[{"m":"Bastrop","p":[{"n":"Lyle Nelson","r":"Mayor, Bastrop, TX"}]},{"m":"Elgin","p":[{"n":"Theresa McShan","r":"Mayor, Elgin, TX"}]}],"slug":"bastrop"},"48023":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"baylor"},"48025":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.999}],"sh":[{"d":"TX House District 43","rep":"J.M. Lozano","w":1.0}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":1.0}]},"munis":[],"slug":"bee"},"48027":{"county":[],"districts":{"cd":[{"d":"TX-31","rep":"John R. Carter","w":0.835},{"d":"TX-11","rep":"August Pfluger","w":0.165}],"sh":[{"d":"TX House District 54","rep":"Brad Buckley","w":0.806},{"d":"TX House District 55","rep":"Hillary Hickland","w":0.194}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Belton","p":[{"n":"David K. Leigh","r":"Mayor, Belton, TX"}]},{"m":"Harker Heights","p":[{"n":"Michael Blomquist","r":"Mayor, Harker Heights, TX"}]},{"m":"Killeen","p":[{"n":"Debbie Nash-King","r":"Mayor, Killeen, TX"}]},{"m":"Temple","p":[{"n":"Timothy Davis","r":"Mayor, Temple, TX"}]}],"slug":"bell"},"48029":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.401},{"d":"TX-28","rep":"Henry Cuellar","w":0.274},{"d":"TX-20","rep":"Joaquin Castro","w":0.143},{"d":"TX-21","rep":"Chip Roy","w":0.114},{"d":"TX-35","rep":"Greg Casar","w":0.069}],"sh":[{"d":"TX House District 118","rep":"John Lujan","w":0.383},{"d":"TX House District 122","rep":"Mark Dorazio","w":0.194},{"d":"TX House District 121","rep":"Marc LaHood","w":0.082},{"d":"TX House District 119","rep":"Liz Campos","w":0.074},{"d":"TX House District 117","rep":"Philip Cortez","w":0.073},{"d":"TX House District 120","rep":"Barbara Gervin-Hawkins","w":0.05},{"d":"TX House District 124","rep":"Josey Garcia","w":0.042},{"d":"TX House District 125","rep":"Ray Lopez","w":0.036},{"d":"TX House District 123","rep":"Diego Bernal","w":0.035},{"d":"TX House District 116","rep":"Trey Martinez Fischer","w":0.032}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":0.508},{"d":"TX Senate District 25","rep":"Donna Campbell","w":0.244},{"d":"TX Senate District 26","rep":"José Menéndez","w":0.161},{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":0.087}]},"munis":[{"m":"Converse","p":[{"n":"Al Suarez","r":"Mayor, Converse, TX"}]},{"m":"Hill Country Village","p":[{"n":"Gabriel Durand-Hollis","r":"Mayor, Hill Country Village, TX"}]},{"m":"Leon Valley","p":[{"n":"Chris Riley","r":"Mayor, Leon Valley, TX"}]},{"m":"San Antonio","p":[{"n":"Gina Ortiz Jones","r":"Mayor, San Antonio, TX"}]}],"slug":"bexar"},"48031":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":1.0}],"sh":[{"d":"TX House District 19","rep":"Ellen Troxclair","w":1.0}],"ss":[{"d":"TX Senate District 25","rep":"Donna Campbell","w":1.0}]},"munis":[],"slug":"blanco"},"48033":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"borden"},"48035":{"county":[],"districts":{"cd":[{"d":"TX-31","rep":"John R. Carter","w":0.996}],"sh":[{"d":"TX House District 13","rep":"Angelia Orr","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[],"slug":"bosque"},"48037":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.641},{"d":"TX-04","rep":"Pat Fallon","w":0.351}],"sh":[{"d":"TX House District 1","rep":"Gary VanDeaver","w":0.999}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":0.999}]},"munis":[{"m":"De Kalb","p":[{"n":"Lowell Walker","r":"Mayor, De Kalb, TX"}]},{"m":"New Boston","p":[{"n":"Ronald Humphrey","r":"Mayor, New Boston, TX"}]},{"m":"Texarkana","p":[{"n":"Bob Bruggeman","r":"Mayor, Texarkana, TX"}]}],"slug":"bowie"},"48039":{"county":[],"districts":{"cd":[{"d":"TX-14","rep":"Randy K. Weber, Sr.","w":0.748},{"d":"TX-22","rep":"Troy E. Nehls","w":0.141},{"d":"TX-09","rep":"Al Green","w":0.019}],"sh":[{"d":"TX House District 25","rep":"Cody Vasut","w":0.583},{"d":"TX House District 29","rep":"Jeff Barry","w":0.323}],"ss":[{"d":"TX Senate District 17","rep":"Joan Huffman","w":0.673},{"d":"TX Senate District 11","rep":"Mayes Middleton","w":0.233}]},"munis":[{"m":"Alvin","p":[{"n":"Gabe Adame","r":"Mayor, Alvin, TX"}]},{"m":"Angleton","p":[{"n":"John Wright","r":"Mayor, Angleton, TX"}]},{"m":"Clute","p":[{"n":"Calvin Shiflet","r":"Mayor, Clute, TX"}]},{"m":"Freeport","p":[{"n":"Brooks Bass","r":"Mayor, Freeport, TX"}]},{"m":"Lake Jackson","p":[{"n":"Gerald Roznovsky","r":"Mayor, Lake Jackson, TX"}]},{"m":"Pearland","p":[{"n":"Kevin Cole","r":"Mayor, Pearland, TX"}]}],"slug":"brazoria"},"48041":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.998}],"sh":[{"d":"TX House District 12","rep":"Trey Wharton","w":0.598},{"d":"TX House District 14","rep":"Paul Dyson","w":0.402}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":0.999}]},"munis":[{"m":"Bryan","p":[{"n":"Bobby Gutierrez","r":"Mayor, Bryan, TX"}]},{"m":"College Station","p":[{"n":"Karl Mooney","r":"Mayor, College Station, TX"}]}],"slug":"brazos"},"48043":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":0.56},{"d":"TX Senate District 29","rep":"César Blanco","w":0.439}]},"munis":[{"m":"Alpine","p":[{"n":"Catherine Eaves","r":"Mayor, Alpine, TX"}]}],"slug":"brewster"},"48045":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"briscoe"},"48047":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 20","rep":"Chuy Hinojosa","w":1.0}]},"munis":[],"slug":"brooks"},"48049":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":1.0}]},"munis":[{"m":"Brownwood","p":[{"n":"Stephen E. Haynes","r":"Mayor, Brownwood, TX"}]}],"slug":"brown"},"48051":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.999}],"sh":[{"d":"TX House District 17","rep":"Stan Gerdes","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Caldwell","p":[{"n":"Janice Easter","r":"Mayor, Caldwell, TX"}]}],"slug":"burleson"},"48053":{"county":[],"districts":{"cd":[{"d":"TX-31","rep":"John R. Carter","w":0.997}],"sh":[{"d":"TX House District 19","rep":"Ellen Troxclair","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Burnet","p":[{"n":"Gary Wideman","r":"Mayor, Burnet, TX"}]},{"m":"Marble Falls","p":[{"n":"Dave Rhodes","r":"Mayor, Marble Falls, TX"}]}],"slug":"burnet"},"48055":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.996}],"sh":[{"d":"TX House District 17","rep":"Stan Gerdes","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[{"m":"Lockhart","p":[{"n":"Lew White","r":"Mayor, Lockhart, TX"}]}],"slug":"caldwell"},"48057":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.734}],"sh":[{"d":"TX House District 43","rep":"J.M. Lozano","w":0.722}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.722}]},"munis":[],"slug":"calhoun"},"48059":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":0.917},{"d":"TX-19","rep":"Jodey C. Arrington","w":0.083}],"sh":[{"d":"TX House District 71","rep":"Stan Lambert","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":1.0}]},"munis":[{"m":"Clyde","p":[{"n":"Rodger Brown","r":"Mayor, Clyde, TX"}]}],"slug":"callahan"},"48061":{"county":[],"districts":{"cd":[{"d":"TX-34","rep":"Vicente Gonzalez","w":0.79}],"sh":[{"d":"TX House District 37","rep":"Janie Lopez","w":0.585},{"d":"TX House District 35","rep":"Oscar Longoria","w":0.145},{"d":"TX House District 38","rep":"Erin Gámez","w":0.055}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.785}]},"munis":[{"m":"Brownsville","p":[{"n":"John Cowen Jr.","r":"Mayor, Brownsville, TX"}]},{"m":"Harlingen","p":[{"n":"Norma Sepulveda","r":"Mayor, Harlingen, TX"}]},{"m":"La Feria","p":[{"n":"Olga H. Maldonado","r":"Mayor, La Feria, TX"}]},{"m":"Port Isabel","p":[{"n":"Martin Cantu, Jr.","r":"Mayor, Port Isabel, TX"}]},{"m":"San Benito","p":[{"n":"Ricardo \"Rick\" Guerra","r":"Mayor, San Benito, TX"}]}],"slug":"cameron"},"48063":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.997}],"sh":[{"d":"TX House District 5","rep":"Cole Hefner","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Pittsburg","p":[{"n":"David Abernathy","r":"Mayor, Pittsburg, TX"}]}],"slug":"camp"},"48065":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"carson"},"48067":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":1.0}],"sh":[{"d":"TX House District 1","rep":"Gary VanDeaver","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"cass"},"48069":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"castro"},"48071":{"county":[],"districts":{"cd":[{"d":"TX-36","rep":"Brian Babin","w":0.717},{"d":"TX-14","rep":"Randy K. Weber, Sr.","w":0.006}],"sh":[{"d":"TX House District 23","rep":"Terri Leo-Wilson","w":0.726}],"ss":[{"d":"TX Senate District 4","rep":"Brett Ligon","w":0.726}]},"munis":[],"slug":"chambers"},"48073":{"county":[],"districts":{"cd":[{"d":"TX-06","rep":"Jake Ellzey","w":0.997}],"sh":[{"d":"TX House District 8","rep":"Cody Harris","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Jacksonville","p":[{"n":"Randy Gorham","r":"Mayor, Jacksonville, TX"}]}],"slug":"cherokee"},"48075":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"childress"},"48077":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":0.998}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":1.0}]},"munis":[],"slug":"clay"},"48079":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"cochran"},"48081":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"coke"},"48083":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"coleman"},"48085":{"county":[],"districts":{"cd":[{"d":"TX-03","rep":"Keith Self","w":0.807},{"d":"TX-04","rep":"Pat Fallon","w":0.171},{"d":"TX-32","rep":"Julie Johnson","w":0.022}],"sh":[{"d":"TX House District 67","rep":"Jeff Leach","w":0.376},{"d":"TX House District 89","rep":"Candy Noble","w":0.245},{"d":"TX House District 66","rep":"Matt Shaheen","w":0.16},{"d":"TX House District 61","rep":"Keresa Richardson","w":0.15},{"d":"TX House District 70","rep":"Mihaela Pleșa","w":0.041},{"d":"TX House District 33","rep":"Katrina Pierson","w":0.028}],"ss":[{"d":"TX Senate District 8","rep":"Angela Paxton","w":0.929},{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":0.051},{"d":"TX Senate District 2","rep":"Bob Hall","w":0.021}]},"munis":[{"m":"Allen","p":[{"n":"Ken Fulk","r":"Mayor, Allen, TX"}]},{"m":"Farmersville","p":[{"n":"Bryon Wiebold","r":"Mayor, Farmersville, TX"}]},{"m":"Frisco","p":[{"n":"Jeff Cheney","r":"Mayor, Frisco, TX"}]},{"m":"Lucas","p":[{"n":"Jim Olk","r":"Mayor, Lucas, TX"}]},{"m":"Mckinney","p":[{"n":"George Fuller","r":"Mayor, McKinney, TX"}]},{"m":"Murphy","p":[{"n":"Scott Bradley","r":"Mayor, Murphy, TX"}]},{"m":"Parker","p":[{"n":"Lee Pettle","r":"Mayor, Parker, TX"}]},{"m":"Plano","p":[{"n":"Harry LaRosiliere","r":"Mayor, Plano, TX"}]},{"m":"Wylie","p":[{"n":"Matthew Porter","r":"Mayor, Wylie, TX"}]}],"slug":"collin"},"48087":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"collingsworth"},"48089":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.999}],"sh":[{"d":"TX House District 85","rep":"Stan Kitzman","w":1.0}],"ss":[{"d":"TX Senate District 17","rep":"Joan Huffman","w":1.0}]},"munis":[{"m":"Columbus","p":[{"n":"Lori An Gobert","r":"Mayor, Columbus, TX"}]},{"m":"Weimar","p":[{"n":"Milton R. Koller","r":"Mayor, Weimar, TX"}]}],"slug":"colorado"},"48091":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":0.95},{"d":"TX-35","rep":"Greg Casar","w":0.049}],"sh":[{"d":"TX House District 73","rep":"Carrie Isaac","w":1.0}],"ss":[{"d":"TX Senate District 25","rep":"Donna Campbell","w":1.0}]},"munis":[{"m":"New Braunfels","p":[{"n":"Rusty Brockman","r":"Mayor, New Braunfels, TX"}]}],"slug":"comal"},"48093":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[],"slug":"comanche"},"48095":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Eden","p":[{"n":"Agapito Torres","r":"Mayor, Eden, TX"}]}],"slug":"concho"},"48097":{"county":[],"districts":{"cd":[{"d":"TX-26","rep":"Brandon Gill","w":0.998}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":0.999}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":0.999}]},"munis":[],"slug":"cooke"},"48099":{"county":[],"districts":{"cd":[{"d":"TX-31","rep":"John R. Carter","w":1.0}],"sh":[{"d":"TX House District 59","rep":"Shelby Slawson","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Gatesville","p":[{"n":"Gary Chumley","r":"Mayor, Gatesville, TX"}]}],"slug":"coryell"},"48101":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"cottle"},"48103":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"crane"},"48105":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"crockett"},"48107":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Lorenzo","p":[{"n":"Tim Tiner","r":"Mayor, Lorenzo, TX"}]}],"slug":"crosby"},"48109":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":1.0}]},"munis":[],"slug":"culberson"},"48111":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"dallam"},"48113":{"county":[],"districts":{"cd":[{"d":"TX-30","rep":"Jasmine Crockett","w":0.39},{"d":"TX-05","rep":"Lance Gooden","w":0.194},{"d":"TX-32","rep":"Julie Johnson","w":0.14},{"d":"TX-33","rep":"Marc A. Veasey","w":0.115},{"d":"TX-24","rep":"Beth Van Duyne","w":0.104},{"d":"TX-06","rep":"Jake Ellzey","w":0.056}],"sh":[{"d":"TX House District 109","rep":"Aicha Davis","w":0.225},{"d":"TX House District 112","rep":"Angie Button","w":0.092},{"d":"TX House District 110","rep":"Toni Rose","w":0.081},{"d":"TX House District 111","rep":"Yvonne Davis","w":0.074},{"d":"TX House District 103","rep":"Rafael Anchía","w":0.07},{"d":"TX House District 115","rep":"Cas Garcia Hernandez","w":0.067},{"d":"TX House District 104","rep":"Jessica González","w":0.066},{"d":"TX House District 113","rep":"Rhetta Bowers","w":0.061},{"d":"TX House District 100","rep":"Venton Jones","w":0.054},{"d":"TX House District 105","rep":"Terry Meza","w":0.051},{"d":"TX House District 108","rep":"Morgan Meyer","w":0.048},{"d":"TX House District 107","rep":"Linda Garcia","w":0.042},{"d":"TX House District 102","rep":"Ana-Maria Rodriguez Ramos","w":0.035},{"d":"TX House District 114","rep":"John Bryant","w":0.035}],"ss":[{"d":"TX Senate District 23","rep":"Royce West","w":0.409},{"d":"TX Senate District 16","rep":"Nathan Johnson","w":0.289},{"d":"TX Senate District 2","rep":"Bob Hall","w":0.189},{"d":"TX Senate District 12","rep":"Tan Parker","w":0.112}]},"munis":[{"m":"Balch Springs","p":[{"n":"Carrie Gordon","r":"Mayor, Balch Springs, TX"}]},{"m":"Carrollton","p":[{"n":"Steve Babick","r":"Mayor, Carrollton, TX"}]},{"m":"Cedar Hill","p":[{"n":"Stephen Mason","r":"Mayor, Cedar Hill, TX"}]},{"m":"Cockrell Hill","p":[{"n":"Luis D. Carrera","r":"Mayor, Cockrell Hill, TX"}]},{"m":"Coppell","p":[{"n":"Wes Mays","r":"Mayor, Coppell, TX"}]},{"m":"Dallas","p":[{"n":"Eric Johnson","r":"Mayor, Dallas, TX"}]},{"m":"Duncanville","p":[{"n":"Barry L. Gordon","r":"Mayor, Duncanville, TX"}]},{"m":"Farmers Branch","p":[{"n":"Terry Lynne","r":"Mayor, Farmers Branch, TX"}]},{"m":"Garland","p":[{"n":"Scott LeMay","r":"Mayor, Garland, TX"}]},{"m":"Grand Prairie","p":[{"n":"Ron Jensen","r":"Mayor, Grand Prairie, TX"}]},{"m":"Irving","p":[{"n":"Rick Stopfer","r":"Mayor, Irving, TX"}]},{"m":"Lancaster","p":[{"n":"Clyde C. Hairston","r":"Mayor, Lancaster, TX"}]},{"m":"Richardson","p":[{"n":"Robert (Bob) Dubey","r":"Mayor, Richardson, TX"}]},{"m":"Rowlett","p":[{"n":"Blake Margolis","r":"Mayor, Rowlett, TX"}]},{"m":"Sachse","p":[{"n":"Jeff Bickerstaff","r":"Mayor, Sachse, TX"}]}],"slug":"dallas"},"48115":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 82","rep":"Tom Craddick","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Lamesa","p":[{"n":"Josh Stevens","r":"Mayor, Lamesa, TX"}]}],"slug":"dawson"},"48117":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"deaf-smith"},"48119":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":1.0}],"sh":[{"d":"TX House District 62","rep":"Shelley Luther","w":0.998}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"delta"},"48121":{"county":[],"districts":{"cd":[{"d":"TX-26","rep":"Brandon Gill","w":0.74},{"d":"TX-13","rep":"Ronny Jackson","w":0.238},{"d":"TX-04","rep":"Pat Fallon","w":0.018}],"sh":[{"d":"TX House District 106","rep":"Jared Patterson","w":0.3},{"d":"TX House District 64","rep":"Andy Hopper","w":0.255},{"d":"TX House District 57","rep":"Richard Hayes","w":0.203},{"d":"TX House District 65","rep":"Mitch Little","w":0.159},{"d":"TX House District 63","rep":"Ben Bumgarner","w":0.082}],"ss":[{"d":"TX Senate District 12","rep":"Tan Parker","w":0.552},{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":0.448}]},"munis":[{"m":"Argyle","p":[{"n":"Rick Bradford","r":"Mayor, Argyle, TX"}]},{"m":"Denton","p":[{"n":"Gerard Hudspeth","r":"Mayor, Denton, TX"}]},{"m":"Highland Village","p":[{"n":"Daniel Jaworski","r":"Mayor, Highland Village, TX"}]},{"m":"Krum","p":[{"n":"Rhonda Harrison","r":"Mayor, Krum, TX"}]},{"m":"Lake Dallas","p":[{"n":"Andi Nolan","r":"Mayor, Lake Dallas, TX"}]},{"m":"Lewisville","p":[{"n":"TJ Gilmore","r":"Mayor, Lewisville, TX"}]},{"m":"Little Elm","p":[{"n":"Q111217466","r":"Mayor, Little Elm, TX"}]},{"m":"Oak Point","p":[{"n":"Dena Meek","r":"Mayor, Oak Point, TX"}]},{"m":"Roanoke","p":[{"n":"Scooter Gierisch","r":"Mayor, Roanoke, TX"}]}],"slug":"denton"},"48123":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":1.0}],"sh":[{"d":"TX House District 30","rep":"A.J. Louderback","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Cuero","p":[{"n":"Sara Post-Meyer","r":"Mayor, Cuero, TX"}]}],"slug":"dewitt"},"48125":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"dickens"},"48127":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 80","rep":"Don McLaughlin","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[{"m":"Carrizo Springs","p":[{"n":"Oscar E. Puente","r":"Mayor, Carrizo Springs, TX"}]}],"slug":"dimmit"},"48129":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"donley"},"48131":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"duval"},"48133":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[{"m":"Cisco","p":[{"n":"Stephen Forester","r":"Mayor, Cisco, TX"}]},{"m":"Eastland","p":[{"n":"Larry Vernon","r":"Mayor, Eastland, TX"}]},{"m":"Rising Star","p":[{"n":"Jimmy L. Carpenter","r":"Mayor, Rising Star, TX"}]}],"slug":"eastland"},"48135":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":0.999}],"sh":[{"d":"TX House District 81","rep":"Brooks Landgraf","w":0.999}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Odessa","p":[{"n":"Javier Joven","r":"Mayor, Odessa, TX"}]}],"slug":"ector"},"48137":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"edwards"},"48139":{"county":[],"districts":{"cd":[{"d":"TX-06","rep":"Jake Ellzey","w":0.998}],"sh":[{"d":"TX House District 10","rep":"Brian Harrison","w":1.0}],"ss":[{"d":"TX Senate District 2","rep":"Bob Hall","w":0.594},{"d":"TX Senate District 22","rep":"Brian Birdwell","w":0.406}]},"munis":[{"m":"Ennis","p":[{"n":"Kameron Raburn","r":"Mayor, Ennis, TX"}]},{"m":"Glenn Heights","p":[{"n":"Sonja A. Brown","r":"Mayor, Glenn Heights, TX"}]},{"m":"Maypearl","p":[{"n":"Chance Lynch","r":"Mayor, Maypearl, TX"}]},{"m":"Midlothian","p":[{"n":"Justin Coffman","r":"Mayor, Midlothian, TX"}]},{"m":"Red Oak","p":[{"n":"Mark Stanfill","r":"Mayor, Red Oak, TX"}]},{"m":"Waxahachie","p":[{"n":"David Hill","r":"Mayor, Waxahachie, TX"}]}],"slug":"ellis"},"48141":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.686},{"d":"TX-16","rep":"Veronica Escobar","w":0.312}],"sh":[{"d":"TX House District 75","rep":"Mary González","w":0.469},{"d":"TX House District 74","rep":"Eddie Morales","w":0.232},{"d":"TX House District 78","rep":"Joe Moody","w":0.146},{"d":"TX House District 79","rep":"Claudia Ordaz","w":0.094},{"d":"TX House District 77","rep":"Vince Perez","w":0.059}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":0.999}]},"munis":[{"m":"El Paso","p":[{"n":"Renard Johnson","r":"Mayor, El Paso, TX"}]}],"slug":"el-paso"},"48143":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 59","rep":"Shelby Slawson","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[],"slug":"erath"},"48145":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":1.0}],"sh":[{"d":"TX House District 13","rep":"Angelia Orr","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[],"slug":"falls"},"48147":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":0.998}],"sh":[{"d":"TX House District 62","rep":"Shelley Luther","w":0.999}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"fannin"},"48149":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":1.0}],"sh":[{"d":"TX House District 85","rep":"Stan Kitzman","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"La Grange","p":[{"n":"Jan Dockery","r":"Mayor, La Grange, TX"}]}],"slug":"fayette"},"48151":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"fisher"},"48153":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Floydada","p":[{"n":"Bobby Gilliland","r":"Mayor, Floydada, TX"}]}],"slug":"floyd"},"48155":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"foard"},"48157":{"county":[],"districts":{"cd":[{"d":"TX-22","rep":"Troy E. Nehls","w":0.856},{"d":"TX-09","rep":"Al Green","w":0.075},{"d":"TX-07","rep":"Lizzie Fletcher","w":0.068}],"sh":[{"d":"TX House District 28","rep":"Gary Gates","w":0.476},{"d":"TX House District 85","rep":"Stan Kitzman","w":0.264},{"d":"TX House District 27","rep":"Ron Reynolds","w":0.104},{"d":"TX House District 26","rep":"Matt Morgan","w":0.093},{"d":"TX House District 76","rep":"Suleman Lalani","w":0.062}],"ss":[{"d":"TX Senate District 17","rep":"Joan Huffman","w":0.576},{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.332},{"d":"TX Senate District 13","rep":"Borris Miles","w":0.092}]},"munis":[{"m":"Missouri City","p":[{"n":"Robin J. Elackatt","r":"Mayor, Missouri City, TX"}]},{"m":"Richmond","p":[{"n":"Becky Haas","r":"Mayor, Richmond, TX"}]},{"m":"Rosenberg","p":[{"n":"Kevin Raines","r":"Mayor, Rosenberg, TX"}]},{"m":"Stafford","p":[{"n":"Ken Mathew","r":"Mayor, Stafford, TX"}]},{"m":"Sugar Land","p":[{"n":"Joe R. Zimmerman","r":"Mayor, Sugar Land, TX"}]}],"slug":"fort-bend"},"48159":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.999}],"sh":[{"d":"TX House District 62","rep":"Shelley Luther","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"franklin"},"48161":{"county":[],"districts":{"cd":[{"d":"TX-06","rep":"Jake Ellzey","w":0.588},{"d":"TX-17","rep":"Pete Sessions","w":0.412}],"sh":[{"d":"TX House District 13","rep":"Angelia Orr","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"freestone"},"48163":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 80","rep":"Don McLaughlin","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"frio"},"48165":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"gaines"},"48167":{"county":[],"districts":{"cd":[{"d":"TX-14","rep":"Randy K. Weber, Sr.","w":0.488}],"sh":[{"d":"TX House District 24","rep":"Greg Bonnen","w":0.24},{"d":"TX House District 23","rep":"Terri Leo-Wilson","w":0.231}],"ss":[{"d":"TX Senate District 11","rep":"Mayes Middleton","w":0.404},{"d":"TX Senate District 4","rep":"Brett Ligon","w":0.067}]},"munis":[{"m":"Dickinson","p":[{"n":"Sean Skipworth","r":"Mayor, Dickinson, TX"}]},{"m":"Friendswood","p":[{"n":"Mike Foreman","r":"Mayor, Friendswood, TX"}]},{"m":"Galveston","p":[{"n":"Craig Brown","r":"Mayor, Galveston, TX"}]},{"m":"Jamaica Beach","p":[{"n":"Sharon Bower","r":"Mayor, Jamaica Beach, TX"}]},{"m":"Kemah","p":[{"n":"Robin Collins","r":"Mayor, Kemah, TX"}]},{"m":"La Marque","p":[{"n":"Keith Bell","r":"Mayor, La Marque, TX"}]},{"m":"League City","p":[{"n":"Nick Long","r":"Mayor, League City, TX"}]},{"m":"Texas City","p":[{"n":"Dedrick Johnson, Sr.","r":"Mayor, Texas City, TX"}]}],"slug":"galveston"},"48169":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Post","p":[{"n":"Marvin Self","r":"Mayor, Post, TX"}]}],"slug":"garza"},"48171":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":1.0}],"sh":[{"d":"TX House District 19","rep":"Ellen Troxclair","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Fredericksburg","p":[{"n":"Jeryl Hoover","r":"Mayor, Fredericksburg, TX"}]}],"slug":"gillespie"},"48173":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"glasscock"},"48175":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":1.0}],"sh":[{"d":"TX House District 30","rep":"A.J. Louderback","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[],"slug":"goliad"},"48177":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":1.0}],"sh":[{"d":"TX House District 44","rep":"Alan Schoolcraft","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Gonzales","p":[{"n":"Steve Sucher","r":"Mayor, Gonzales, TX"}]}],"slug":"gonzales"},"48179":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Pampa","p":[{"n":"Lance DeFever","r":"Mayor, Pampa, TX"}]}],"slug":"gray"},"48181":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":0.999}],"sh":[{"d":"TX House District 62","rep":"Shelley Luther","w":1.0}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":1.0}]},"munis":[{"m":"Denison","p":[{"n":"Janet Gott","r":"Mayor, Denison, TX"}]},{"m":"Sherman","p":[{"n":"Shawn Teamann","r":"Mayor, Sherman, TX"}]}],"slug":"grayson"},"48183":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.999}],"sh":[{"d":"TX House District 7","rep":"Jay Dean","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Kilgore","p":[{"n":"Ronnie E. Spradlin III","r":"Mayor, Kilgore, TX"}]},{"m":"Longview","p":[{"n":"James Andrew Mack","r":"Mayor, Longview, TX"}]}],"slug":"gregg"},"48185":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.999}],"sh":[{"d":"TX House District 12","rep":"Trey Wharton","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[],"slug":"grimes"},"48187":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":0.786},{"d":"TX-28","rep":"Henry Cuellar","w":0.211}],"sh":[{"d":"TX House District 44","rep":"Alan Schoolcraft","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":0.601},{"d":"TX Senate District 25","rep":"Donna Campbell","w":0.232},{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":0.167}]},"munis":[{"m":"Cibolo","p":[{"n":"Mark Allen","r":"Mayor, Cibolo, TX"}]},{"m":"Seguin","p":[{"n":"Donna Dodgen","r":"Mayor, Seguin, TX"}]}],"slug":"guadalupe"},"48189":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Plainview","p":[{"n":"Charles Starnes","r":"Mayor, Plainview, TX"}]}],"slug":"hale"},"48191":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"hall"},"48193":{"county":[],"districts":{"cd":[{"d":"TX-31","rep":"John R. Carter","w":1.0}],"sh":[{"d":"TX House District 59","rep":"Shelby Slawson","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[],"slug":"hamilton"},"48195":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"hansford"},"48197":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":0.999}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"hardeman"},"48199":{"county":[],"districts":{"cd":[{"d":"TX-36","rep":"Brian Babin","w":1.0}],"sh":[{"d":"TX House District 18","rep":"Janis Holt","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Lumberton","p":[{"n":"Don Surratt","r":"Mayor, Lumberton, TX"}]},{"m":"Silsbee","p":[{"n":"Danny Reneau","r":"Mayor, Silsbee, TX"}]}],"slug":"hardin"},"48201":{"county":[],"districts":{"cd":[{"d":"TX-38","rep":"Wesley Hunt","w":0.175},{"d":"TX-02","rep":"Dan Crenshaw","w":0.17},{"d":"TX-36","rep":"Brian Babin","w":0.156},{"d":"TX-18","rep":"Christian D. Menefee","w":0.131},{"d":"TX-08","rep":"Morgan Luttrell","w":0.129},{"d":"TX-29","rep":"Sylvia R. Garcia","w":0.118},{"d":"TX-09","rep":"Al Green","w":0.069},{"d":"TX-07","rep":"Lizzie Fletcher","w":0.041},{"d":"TX-22","rep":"Troy E. Nehls","w":0.01}],"sh":[{"d":"TX House District 128","rep":"Briscoe Cain","w":0.12},{"d":"TX House District 130","rep":"Tom Oliverson","w":0.09},{"d":"TX House District 132","rep":"Mike Schofield","w":0.084},{"d":"TX House District 127","rep":"Charles Cunningham","w":0.062},{"d":"TX House District 142","rep":"Harold Dutton","w":0.061},{"d":"TX House District 129","rep":"Dennis Paul","w":0.056},{"d":"TX House District 141","rep":"Senfronia Thompson","w":0.053},{"d":"TX House District 143","rep":"Ana Hernandez","w":0.051},{"d":"TX House District 150","rep":"Valoree Swanson","w":0.043},{"d":"TX House District 138","rep":"Lacey Hull","w":0.038},{"d":"TX House District 144","rep":"Mary Ann Perez","w":0.033},{"d":"TX House District 149","rep":"Hubert Vo","w":0.03},{"d":"TX House District 131","rep":"Alma Allen","w":0.029},{"d":"TX House District 126","rep":"Sam Harless","w":0.029},{"d":"TX House District 140","rep":"Armando Walle","w":0.027},{"d":"TX House District 148","rep":"Penny Morales Shaw","w":0.027},{"d":"TX House District 139","rep":"Charlene Ward Johnson","w":0.025},{"d":"TX House District 147","rep":"Jo Jones","w":0.024},{"d":"TX House District 146","rep":"Lauren Simmons","w":0.024},{"d":"TX House District 135","rep":"Jon Rosenthal","w":0.022},{"d":"TX House District 145","rep":"Christina Morales","w":0.021},{"d":"TX House District 134","rep":"Ann Johnson","w":0.019},{"d":"TX House District 133","rep":"Mano DeAyala","w":0.018},{"d":"TX House District 137","rep":"Gene Wu","w":0.012}],"ss":[{"d":"TX Senate District 6","rep":"Carol Alvarado","w":0.189},{"d":"TX Senate District 7","rep":"Paul Bettencourt","w":0.188},{"d":"TX Senate District 15","rep":"Molly Cook","w":0.146},{"d":"TX Senate District 4","rep":"Brett Ligon","w":0.144},{"d":"TX Senate District 11","rep":"Mayes Middleton","w":0.097},{"d":"TX Senate District 13","rep":"Borris Miles","w":0.09},{"d":"TX Senate District 17","rep":"Joan Huffman","w":0.074},{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.069}]},"munis":[{"m":"Baytown","p":[{"n":"Charles Johnson","r":"Mayor, Baytown, TX"}]},{"m":"Bellaire","p":[{"n":"Gus E. Pappas","r":"Mayor, Bellaire, TX"}]},{"m":"Deer Park","p":[{"n":"Jerry Mouton, Jr.","r":"Mayor, Deer Park, TX"}]},{"m":"Hilshire Village","p":[{"n":"Robert (Bob) Buesinger","r":"Mayor, Hilshire Village, TX"}]},{"m":"Houston","p":[{"n":"John Whitmire","r":"Mayor, Houston, TX"}]},{"m":"La Porte","p":[{"n":"Louis R. Rigby","r":"Mayor, La Porte, TX"}]},{"m":"Nassau Bay","p":[{"n":"Phil Johnson","r":"Mayor, Nassau Bay, TX"}]},{"m":"Pasadena","p":[{"n":"Jeff Wagner","r":"Mayor, Pasadena, TX"}]},{"m":"Tomball","p":[{"n":"Lori Klein Quinn","r":"Mayor, Tomball, TX"}]},{"m":"Webster","p":[{"n":"Donna Jasso","r":"Mayor, Webster, TX"}]}],"slug":"harris"},"48203":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":1.0}],"sh":[{"d":"TX House District 7","rep":"Jay Dean","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Marshall","p":[{"n":"Amy Ware","r":"Mayor, Marshall, TX"}]}],"slug":"harrison"},"48205":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Dalhart","p":[{"n":"Justin Moore","r":"Mayor, Dalhart, TX"}]}],"slug":"hartley"},"48207":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"haskell"},"48209":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":0.82},{"d":"TX-35","rep":"Greg Casar","w":0.18}],"sh":[{"d":"TX House District 73","rep":"Carrie Isaac","w":0.539},{"d":"TX House District 45","rep":"Erin Zwiener","w":0.461}],"ss":[{"d":"TX Senate District 25","rep":"Donna Campbell","w":0.693},{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":0.307}]},"munis":[{"m":"Buda","p":[{"n":"Lee Urbanovsky","r":"Mayor, Buda, TX"}]},{"m":"Kyle","p":[{"n":"Travis Mitchell","r":"Mayor, Kyle, TX"}]},{"m":"San Marcos","p":[{"n":"Jane Hughson","r":"Mayor, San Marcos, TX"}]}],"slug":"hays"},"48211":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"hemphill"},"48213":{"county":[],"districts":{"cd":[{"d":"TX-05","rep":"Lance Gooden","w":0.997}],"sh":[{"d":"TX House District 8","rep":"Cody Harris","w":0.614},{"d":"TX House District 4","rep":"Keith Bell","w":0.386}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[],"slug":"henderson"},"48215":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":0.806},{"d":"TX-34","rep":"Vicente Gonzalez","w":0.191}],"sh":[{"d":"TX House District 35","rep":"Oscar Longoria","w":0.601},{"d":"TX House District 40","rep":"Terry Canales","w":0.147},{"d":"TX House District 39","rep":"Mando Martinez","w":0.141},{"d":"TX House District 36","rep":"Sergio Muñoz","w":0.069},{"d":"TX House District 41","rep":"Bobby Guerra","w":0.041}],"ss":[{"d":"TX Senate District 20","rep":"Chuy Hinojosa","w":0.71},{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.289}]},"munis":[{"m":"Donna","p":[{"n":"David Moreno","r":"Mayor, Donna, TX"}]},{"m":"Edinburg","p":[{"n":"Ramiro Garza Jr.","r":"Mayor, Edinburg, TX"}]},{"m":"Hidalgo","p":[{"n":"Sergio Coronado","r":"Mayor, Hidalgo, TX"}]},{"m":"Mcallen","p":[{"n":"Jim Darling","r":"Mayor, McAllen, TX"}]},{"m":"Mercedes","p":[{"n":"Oscar D. Montoya Sr.","r":"Mayor, Mercedes, TX"}]},{"m":"Mission","p":[{"n":"Norie Gonzalez Garza","r":"Mayor, Mission, TX"}]},{"m":"Pharr","p":[{"n":"Ambrosio “Amos” Hernandez","r":"Mayor, Pharr, TX"}]},{"m":"Progreso","p":[{"n":"Gerardo Alanis","r":"Mayor, Progreso, TX"}]},{"m":"Weslaco","p":[{"n":"Adrian Gonzalez","r":"Mayor, Weslaco, TX"}]}],"slug":"hidalgo"},"48217":{"county":[],"districts":{"cd":[{"d":"TX-06","rep":"Jake Ellzey","w":0.998}],"sh":[{"d":"TX House District 13","rep":"Angelia Orr","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[{"m":"Hillsboro","p":[{"n":"Scott Johnson","r":"Mayor, Hillsboro, TX"}]}],"slug":"hill"},"48219":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Levelland","p":[{"n":"Barbra Pinner","r":"Mayor, Levelland, TX"}]}],"slug":"hockley"},"48221":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 59","rep":"Shelby Slawson","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[{"m":"Granbury","p":[{"n":"Jim Jarratt","r":"Mayor, Granbury, TX"}]}],"slug":"hood"},"48223":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":1.0}],"sh":[{"d":"TX House District 2","rep":"Brent Money","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Sulphur Springs","p":[{"n":"Jay Julian","r":"Mayor, Sulphur Springs, TX"}]}],"slug":"hopkins"},"48225":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":0.998}],"sh":[{"d":"TX House District 9","rep":"Trent Ashby","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Crockett","p":[{"n":"Ianthia Fisher","r":"Mayor, Crockett, TX"}]}],"slug":"houston"},"48227":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Big Spring","p":[{"n":"Robert Moore","r":"Mayor, Big Spring, TX"}]}],"slug":"howard"},"48229":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":1.0}]},"munis":[],"slug":"hudspeth"},"48231":{"county":[],"districts":{"cd":[{"d":"TX-03","rep":"Keith Self","w":0.886},{"d":"TX-04","rep":"Pat Fallon","w":0.113}],"sh":[{"d":"TX House District 2","rep":"Brent Money","w":1.0}],"ss":[{"d":"TX Senate District 8","rep":"Angela Paxton","w":1.0}]},"munis":[{"m":"Greenville","p":[{"n":"Jerry Ransom","r":"Mayor, Greenville, TX"}]}],"slug":"hunt"},"48233":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Borger","p":[{"n":"Karen Felker","r":"Mayor, Borger, TX"}]}],"slug":"hutchinson"},"48235":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"irion"},"48237":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":1.0}]},"munis":[],"slug":"jack"},"48239":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":1.0}],"sh":[{"d":"TX House District 30","rep":"A.J. Louderback","w":1.0}],"ss":[{"d":"TX Senate District 17","rep":"Joan Huffman","w":1.0}]},"munis":[],"slug":"jackson"},"48241":{"county":[],"districts":{"cd":[{"d":"TX-36","rep":"Brian Babin","w":1.0}],"sh":[{"d":"TX House District 21","rep":"Dade Phelan","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Jasper","p":[{"n":"Anderson Land","r":"Mayor, Jasper, TX"}]}],"slug":"jasper"},"48243":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":1.0}]},"munis":[],"slug":"jeff-davis"},"48245":{"county":[],"districts":{"cd":[{"d":"TX-14","rep":"Randy K. Weber, Sr.","w":0.654},{"d":"TX-36","rep":"Brian Babin","w":0.232}],"sh":[{"d":"TX House District 21","rep":"Dade Phelan","w":0.677},{"d":"TX House District 22","rep":"Christian Manuel","w":0.209}],"ss":[{"d":"TX Senate District 4","rep":"Brett Ligon","w":0.733},{"d":"TX Senate District 3","rep":"Robert Nichols","w":0.153}]},"munis":[{"m":"Beaumont","p":[{"n":"Roy West","r":"Mayor, Beaumont, TX"}]},{"m":"Port Arthur","p":[{"n":"Thurman \"Bill\" Bartie","r":"Mayor, Port Arthur, TX"}]}],"slug":"jefferson"},"48247":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"jim-hogg"},"48249":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":0.999}],"sh":[{"d":"TX House District 43","rep":"J.M. Lozano","w":1.0}],"ss":[{"d":"TX Senate District 20","rep":"Chuy Hinojosa","w":1.0}]},"munis":[{"m":"Alice","p":[{"n":"Cynthia Carrasco","r":"Mayor, Alice, TX"}]}],"slug":"jim-wells"},"48251":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":0.68},{"d":"TX-06","rep":"Jake Ellzey","w":0.319}],"sh":[{"d":"TX House District 58","rep":"Helen Kerwin","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":1.0}]},"munis":[{"m":"Burleson","p":[{"n":"Chris Fletcher","r":"Mayor, Burleson, TX"}]},{"m":"Cleburne","p":[{"n":"Scott Cain","r":"Mayor, Cleburne, TX"}]},{"m":"Venus","p":[{"n":"Alejandro Galaviz","r":"Mayor, Venus, TX"}]}],"slug":"johnson"},"48253":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 71","rep":"Stan Lambert","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"jones"},"48255":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"karnes"},"48257":{"county":[],"districts":{"cd":[{"d":"TX-05","rep":"Lance Gooden","w":0.998}],"sh":[{"d":"TX House District 4","rep":"Keith Bell","w":1.0}],"ss":[{"d":"TX Senate District 2","rep":"Bob Hall","w":1.0}]},"munis":[{"m":"Forney","p":[{"n":"Jason Roberson","r":"Mayor, Forney, TX"}]}],"slug":"kaufman"},"48259":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":0.999}],"sh":[{"d":"TX House District 19","rep":"Ellen Troxclair","w":1.0}],"ss":[{"d":"TX Senate District 25","rep":"Donna Campbell","w":1.0}]},"munis":[],"slug":"kendall"},"48261":{"county":[],"districts":{"cd":[{"d":"TX-34","rep":"Vicente Gonzalez","w":0.803}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":0.793}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.793}]},"munis":[],"slug":"kenedy"},"48263":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":0.998}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"kent"},"48265":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Kerrville","p":[{"n":"Judy Eychner","r":"Mayor, Kerrville, TX"}]}],"slug":"kerr"},"48267":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[],"slug":"kimble"},"48269":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"king"},"48271":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"kinney"},"48273":{"county":[],"districts":{"cd":[{"d":"TX-34","rep":"Vicente Gonzalez","w":0.852}],"sh":[{"d":"TX House District 43","rep":"J.M. Lozano","w":0.833}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.833}]},"munis":[{"m":"Kingsville","p":[{"n":"Sam Fugate","r":"Mayor, Kingsville, TX"}]}],"slug":"kleberg"},"48275":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"knox"},"48277":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":0.997}],"sh":[{"d":"TX House District 1","rep":"Gary VanDeaver","w":0.999}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"lamar"},"48279":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"lamb"},"48281":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Lampasas","p":[{"n":"Herb Pearce","r":"Mayor, Lampasas, TX"}]}],"slug":"lampasas"},"48283":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":0.999}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"la-salle"},"48285":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":1.0}],"sh":[{"d":"TX House District 30","rep":"A.J. Louderback","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[],"slug":"lavaca"},"48287":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":1.0}],"sh":[{"d":"TX House District 17","rep":"Stan Gerdes","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Giddings","p":[{"n":"Joel Lopez","r":"Mayor, Giddings, TX"}]}],"slug":"lee"},"48289":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":0.999}],"sh":[{"d":"TX House District 13","rep":"Angelia Orr","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[{"m":"Buffalo","p":[{"n":"Jerrod Jones","r":"Mayor, Buffalo, TX"}]}],"slug":"leon"},"48291":{"county":[],"districts":{"cd":[{"d":"TX-36","rep":"Brian Babin","w":1.0}],"sh":[{"d":"TX House District 18","rep":"Janis Holt","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Cleveland","p":[{"n":"Danny Lee","r":"Mayor, Cleveland, TX"}]},{"m":"Daisetta","p":[{"n":"Eric Thaxton","r":"Mayor, Daisetta, TX"}]},{"m":"Dayton","p":[{"n":"Martin Mudd","r":"Mayor, Dayton, TX"}]}],"slug":"liberty"},"48293":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":1.0}],"sh":[{"d":"TX House District 13","rep":"Angelia Orr","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"limestone"},"48295":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"lipscomb"},"48297":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"live-oak"},"48299":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":0.997}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[],"slug":"llano"},"48301":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 81","rep":"Brooks Landgraf","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"loving"},"48303":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":0.692},{"d":"TX House District 84","rep":"Carl Tepper","w":0.308}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Lubbock","p":[{"n":"Tray Payne","r":"Mayor, Lubbock, TX"}]}],"slug":"lubbock"},"48305":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"lynn"},"48307":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Brady","p":[{"n":"Aaron Garcia","r":"Mayor, Brady, TX"}]}],"slug":"mcculloch"},"48309":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":1.0}],"sh":[{"d":"TX House District 56","rep":"Pat Curry","w":0.757},{"d":"TX House District 13","rep":"Angelia Orr","w":0.243}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[{"m":"Bellmead","p":[{"n":"Jasmine Neal","r":"Mayor, Bellmead, TX"}]},{"m":"Hewitt","p":[{"n":"Steve Fortenberry","r":"Mayor, Hewitt, TX"}]},{"m":"Lacy Lakeview","p":[{"n":"A. Niecey Payne","r":"Mayor, Lacy Lakeview, TX"}]},{"m":"Robinson","p":[{"n":"Bert Echterling","r":"Mayor, Robinson, TX"}]},{"m":"Waco","p":[{"n":"Dillon Meek","r":"Mayor, Waco, TX"}]}],"slug":"mclennan"},"48311":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":0.999}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"mcmullen"},"48313":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.997}],"sh":[{"d":"TX House District 12","rep":"Trey Wharton","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"madison"},"48315":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.998}],"sh":[{"d":"TX House District 7","rep":"Jay Dean","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"marion"},"48317":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 82","rep":"Tom Craddick","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"martin"},"48319":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"mason"},"48321":{"county":[],"districts":{"cd":[{"d":"TX-22","rep":"Troy E. Nehls","w":0.857}],"sh":[{"d":"TX House District 30","rep":"A.J. Louderback","w":0.858}],"ss":[{"d":"TX Senate District 17","rep":"Joan Huffman","w":0.858}]},"munis":[{"m":"Bay City","p":[{"n":"Robert Nelson","r":"Mayor, Bay City, TX"}]}],"slug":"matagorda"},"48323":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[{"m":"Eagle Pass","p":[{"n":"Rolando Salinas Jr.","r":"Mayor, Eagle Pass, TX"}]}],"slug":"maverick"},"48325":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[{"m":"Castroville","p":[{"n":"Darrin Schroeder","r":"Mayor, Castroville, TX"}]}],"slug":"medina"},"48327":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Menard","p":[{"n":"Barbara Hooten","r":"Mayor, Menard, TX"}]}],"slug":"menard"},"48329":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 82","rep":"Tom Craddick","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Midland","p":[{"n":"Lori Blong","r":"Mayor, Midland, TX"}]}],"slug":"midland"},"48331":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":1.0}],"sh":[{"d":"TX House District 17","rep":"Stan Gerdes","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"milam"},"48333":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":0.999}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"mills"},"48335":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"mitchell"},"48337":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":0.998}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":1.0}]},"munis":[],"slug":"montague"},"48339":{"county":[],"districts":{"cd":[{"d":"TX-08","rep":"Morgan Luttrell","w":0.667},{"d":"TX-02","rep":"Dan Crenshaw","w":0.332}],"sh":[{"d":"TX House District 16","rep":"Will Metcalf","w":0.497},{"d":"TX House District 3","rep":"Cecil Bell","w":0.325},{"d":"TX House District 15","rep":"Steve Toth","w":0.1},{"d":"TX House District 18","rep":"Janis Holt","w":0.077}],"ss":[{"d":"TX Senate District 4","rep":"Brett Ligon","w":0.762},{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.151},{"d":"TX Senate District 7","rep":"Paul Bettencourt","w":0.087}]},"munis":[{"m":"Conroe","p":[{"n":"Jody Czajkoski","r":"Mayor, Conroe, TX"}]}],"slug":"montgomery"},"48341":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Dumas","p":[{"n":"Bob Brinkmann","r":"Mayor, Dumas, TX"}]}],"slug":"moore"},"48343":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":1.0}],"sh":[{"d":"TX House District 1","rep":"Gary VanDeaver","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"morris"},"48345":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"motley"},"48347":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":0.997}],"sh":[{"d":"TX House District 11","rep":"Joanne Shofner","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Nacogdoches","p":[{"n":"Jimmy Mize","r":"Mayor, Nacogdoches, TX"}]}],"slug":"nacogdoches"},"48349":{"county":[],"districts":{"cd":[{"d":"TX-06","rep":"Jake Ellzey","w":0.998}],"sh":[{"d":"TX House District 8","rep":"Cody Harris","w":1.0}],"ss":[{"d":"TX Senate District 2","rep":"Bob Hall","w":1.0}]},"munis":[{"m":"Corsicana","p":[{"n":"Mike Fletcher","r":"Mayor, Corsicana, TX"}]}],"slug":"navarro"},"48351":{"county":[],"districts":{"cd":[{"d":"TX-36","rep":"Brian Babin","w":0.995},{"d":"LA-04","rep":"Mike Johnson","w":0.005}],"sh":[{"d":"TX House District 11","rep":"Joanne Shofner","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":0.999}]},"munis":[],"slug":"newton"},"48353":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 71","rep":"Stan Lambert","w":0.999}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Sweetwater","p":[{"n":"Jim McKenzie","r":"Mayor, Sweetwater, TX"}]}],"slug":"nolan"},"48355":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.75}],"sh":[{"d":"TX House District 34","rep":"Denise Villalobos","w":0.536},{"d":"TX House District 32","rep":"Todd Hunter","w":0.211}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.476},{"d":"TX Senate District 20","rep":"Chuy Hinojosa","w":0.271}]},"munis":[{"m":"Corpus Christi","p":[{"n":"Paulette Guajardo","r":"Mayor, Corpus Christi, TX"}]},{"m":"Port Aransas","p":[{"n":"Wendy Moore","r":"Mayor, Port Aransas, TX"}]}],"slug":"nueces"},"48357":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"ochiltree"},"48359":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"oldham"},"48361":{"county":[],"districts":{"cd":[{"d":"TX-14","rep":"Randy K. Weber, Sr.","w":0.995}],"sh":[{"d":"TX House District 21","rep":"Dade Phelan","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":0.999}]},"munis":[{"m":"Bridge City","p":[{"n":"David Rutledge","r":"Mayor, Bridge City, TX"}]},{"m":"Orange","p":[{"n":"Larry Spears, Jr.","r":"Mayor, Orange, TX"}]}],"slug":"orange"},"48363":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 60","rep":"Mike Olcott","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":1.0}]},"munis":[],"slug":"palo-pinto"},"48365":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":1.0}],"sh":[{"d":"TX House District 11","rep":"Joanne Shofner","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"panola"},"48367":{"county":[],"districts":{"cd":[{"d":"TX-12","rep":"Craig A. Goldman","w":0.659},{"d":"TX-25","rep":"Roger Williams","w":0.34}],"sh":[{"d":"TX House District 60","rep":"Mike Olcott","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":0.596},{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":0.404}]},"munis":[{"m":"Azle","p":[{"n":"Alan Brundrett","r":"Mayor, Azle, TX"}]}],"slug":"parker"},"48369":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":0.999}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"parmer"},"48371":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":1.0}]},"munis":[{"m":"Fort Stockton","p":[{"n":"Paul Casias","r":"Mayor, Fort Stockton, TX"}]}],"slug":"pecos"},"48373":{"county":[],"districts":{"cd":[{"d":"TX-08","rep":"Morgan Luttrell","w":0.999}],"sh":[{"d":"TX House District 9","rep":"Trent Ashby","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[{"m":"Livingston","p":[{"n":"Judy B. Cochran","r":"Mayor, Livingston, TX"}]},{"m":"Onalaska","p":[{"n":"James W. Arnett","r":"Mayor, Onalaska, TX"}]}],"slug":"polk"},"48375":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Amarillo","p":[{"n":"Cole Stanley","r":"Mayor, Amarillo, TX"}]}],"slug":"potter"},"48377":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.998}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":1.0}]},"munis":[{"m":"Presidio","p":[{"n":"John Ferguson","r":"Mayor, Presidio, TX"}]}],"slug":"presidio"},"48379":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":0.997}],"sh":[{"d":"TX House District 5","rep":"Cole Hefner","w":0.999}],"ss":[{"d":"TX Senate District 8","rep":"Angela Paxton","w":0.999}]},"munis":[],"slug":"rains"},"48381":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 86","rep":"John Smithee","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[{"m":"Canyon","p":[{"n":"Gary Hinders","r":"Mayor, Canyon, TX"}]}],"slug":"randall"},"48383":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"reagan"},"48385":{"county":[],"districts":{"cd":[{"d":"TX-21","rep":"Chip Roy","w":0.998}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"real"},"48387":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":0.508},{"d":"TX-01","rep":"Nathaniel Moran","w":0.486},{"d":"OK-02","rep":"Josh Brecheen","w":0.006}],"sh":[{"d":"TX House District 1","rep":"Gary VanDeaver","w":0.999}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":0.999}]},"munis":[{"m":"Clarksville","p":[{"n":"Ann Rushing","r":"Mayor, Clarksville, TX"}]}],"slug":"red-river"},"48389":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 29","rep":"César Blanco","w":1.0}]},"munis":[{"m":"Town Of Pecos","p":[{"n":"Teresa Winkles","r":"Mayor, Pecos, TX"}]}],"slug":"reeves"},"48391":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.977}],"sh":[{"d":"TX House District 43","rep":"J.M. Lozano","w":0.959}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.96}]},"munis":[],"slug":"refugio"},"48393":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"roberts"},"48395":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":1.0}],"sh":[{"d":"TX House District 12","rep":"Trey Wharton","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"robertson"},"48397":{"county":[],"districts":{"cd":[{"d":"TX-04","rep":"Pat Fallon","w":0.999}],"sh":[{"d":"TX House District 33","rep":"Katrina Pierson","w":1.0}],"ss":[{"d":"TX Senate District 2","rep":"Bob Hall","w":1.0}]},"munis":[{"m":"Rockwall","p":[{"n":"Trace Johannesen","r":"Mayor, Rockwall, TX"}]}],"slug":"rockwall"},"48399":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"runnels"},"48401":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":1.0}],"sh":[{"d":"TX House District 11","rep":"Joanne Shofner","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Henderson","p":[{"n":"John 'Buzz' Fullen","r":"Mayor, Henderson, TX"}]},{"m":"Overton","p":[{"n":"Curtis Gilbert","r":"Mayor, Overton, TX"}]}],"slug":"rusk"},"48403":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.991},{"d":"LA-04","rep":"Mike Johnson","w":0.009}],"sh":[{"d":"TX House District 11","rep":"Joanne Shofner","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":0.999}]},"munis":[],"slug":"sabine"},"48405":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.994},{"d":"TX-17","rep":"Pete Sessions","w":0.006}],"sh":[{"d":"TX House District 9","rep":"Trent Ashby","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[],"slug":"san-augustine"},"48407":{"county":[],"districts":{"cd":[{"d":"TX-08","rep":"Morgan Luttrell","w":0.999}],"sh":[{"d":"TX House District 18","rep":"Janis Holt","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"san-jacinto"},"48409":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":0.991}],"sh":[{"d":"TX House District 43","rep":"J.M. Lozano","w":0.997}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.997}]},"munis":[{"m":"Ingleside On The Bay","p":[{"n":"Jo Ann Ehmann","r":"Mayor, Ingleside on the Bay, TX"}]},{"m":"Mathis","p":[{"n":"Ciriaco \"Ciri\" Villarreal","r":"Mayor, Mathis, TX"}]},{"m":"Portland","p":[{"n":"Cathy Skurow","r":"Mayor, Portland, TX"}]}],"slug":"san-patricio"},"48411":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"San Saba","p":[{"n":"Ken Jordan","r":"Mayor, San Saba, TX"}]}],"slug":"san-saba"},"48413":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":0.999}]},"munis":[],"slug":"schleicher"},"48415":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"scurry"},"48417":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":1.0}]},"munis":[],"slug":"shackelford"},"48419":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.996}],"sh":[{"d":"TX House District 11","rep":"Joanne Shofner","w":0.999}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":0.999}]},"munis":[{"m":"Timpson","p":[{"n":"Debra Smith","r":"Mayor, Timpson, TX"}]}],"slug":"shelby"},"48421":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 87","rep":"Caroline Fairly","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"sherman"},"48423":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":0.997}],"sh":[{"d":"TX House District 6","rep":"Daniel Alders","w":0.5},{"d":"TX House District 5","rep":"Cole Hefner","w":0.499}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Lindale","p":[{"n":"Jeff Daugherty","r":"Mayor, Lindale, TX"}]},{"m":"Tyler","p":[{"n":"Don Warren","r":"Mayor, Tyler, TX"}]}],"slug":"smith"},"48425":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":0.998}],"sh":[{"d":"TX House District 58","rep":"Helen Kerwin","w":1.0}],"ss":[{"d":"TX Senate District 22","rep":"Brian Birdwell","w":1.0}]},"munis":[],"slug":"somervell"},"48427":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":0.997}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":0.999}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":0.999}]},"munis":[{"m":"Rio Grande City","p":[{"n":"Joel Villarreal","r":"Mayor, Rio Grande City, TX"}]},{"m":"Roma","p":[{"n":"Jaime Escobar Jr.","r":"Mayor, Roma, TX"}]}],"slug":"starr"},"48429":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 60","rep":"Mike Olcott","w":1.0}],"ss":[{"d":"TX Senate District 10","rep":"Phil King","w":1.0}]},"munis":[{"m":"Breckenridge","p":[{"n":"Bob Sims","r":"Mayor, Breckenridge, TX"}]}],"slug":"stephens"},"48431":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"sterling"},"48433":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"stonewall"},"48435":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 24","rep":"Pete Flores","w":1.0}]},"munis":[],"slug":"sutton"},"48437":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"swisher"},"48439":{"county":[],"districts":{"cd":[{"d":"TX-12","rep":"Craig A. Goldman","w":0.436},{"d":"TX-24","rep":"Beth Van Duyne","w":0.203},{"d":"TX-25","rep":"Roger Williams","w":0.159},{"d":"TX-33","rep":"Marc A. Veasey","w":0.132},{"d":"TX-06","rep":"Jake Ellzey","w":0.051},{"d":"TX-30","rep":"Jasmine Crockett","w":0.016}],"sh":[{"d":"TX House District 99","rep":"Charlie Geren","w":0.165},{"d":"TX House District 97","rep":"John McQueeney","w":0.155},{"d":"TX House District 98","rep":"Giovanni Capriglione","w":0.116},{"d":"TX House District 96","rep":"David Cook","w":0.112},{"d":"TX House District 93","rep":"Nate Schatzline","w":0.1},{"d":"TX House District 94","rep":"Tony Tinderholt","w":0.072},{"d":"TX House District 95","rep":"Nicole Collier","w":0.072},{"d":"TX House District 90","rep":"Ramon Romero","w":0.06},{"d":"TX House District 101","rep":"Chris Turner","w":0.05},{"d":"TX House District 92","rep":"Salman Bhojani","w":0.049},{"d":"TX House District 91","rep":"David Lowe","w":0.049}],"ss":[{"d":"TX Senate District 9","rep":"Taylor Rehmet","w":0.53},{"d":"TX Senate District 10","rep":"Phil King","w":0.27},{"d":"TX Senate District 22","rep":"Brian Birdwell","w":0.113},{"d":"TX Senate District 12","rep":"Tan Parker","w":0.06},{"d":"TX Senate District 23","rep":"Royce West","w":0.027}]},"munis":[{"m":"Arlington","p":[{"n":"Jim Ross","r":"Mayor, Arlington, TX"}]},{"m":"Bedford","p":[{"n":"Dan Cogan","r":"Mayor, Bedford, TX"}]},{"m":"Benbrook","p":[{"n":"Jason Ward","r":"Mayor, Benbrook, TX"}]},{"m":"Colleyville","p":[{"n":"Bobby Lindamood","r":"Mayor, Colleyville, TX"}]},{"m":"Crowley","p":[{"n":"Billy P. Davis","r":"Mayor, Crowley, TX"}]},{"m":"Euless","p":[{"n":"Linda Martin","r":"Mayor, Euless, TX"}]},{"m":"Fort Worth","p":[{"n":"Mattie Parker","r":"Mayor, Fort Worth, TX"}]},{"m":"Grapevine","p":[{"n":"William Tate","r":"Mayor, Grapevine, TX"}]},{"m":"Haltom City","p":[{"n":"An Truong","r":"Mayor, Haltom City, TX"}]},{"m":"Hurst","p":[{"n":"Henry Wilson","r":"Mayor, Hurst, TX"}]},{"m":"Keller","p":[{"n":"Armin Mizani","r":"Mayor, Keller, TX"}]},{"m":"Kennedale","p":[{"n":"Jan Joplin","r":"Mayor, Kennedale, TX"}]},{"m":"Mansfield","p":[{"n":"Michael Evans","r":"Mayor, Mansfield, TX"}]},{"m":"North Richland Hills","p":[{"n":"Oscar Trevino","r":"Mayor, North Richland Hills, TX"}]},{"m":"River Oaks","p":[{"n":"Darren Houk","r":"Mayor, River Oaks, TX"}]},{"m":"Saginaw","p":[{"n":"Todd Flippo","r":"Mayor, Saginaw, TX"}]},{"m":"Southlake","p":[{"n":"John Huffman","r":"Mayor, Southlake, TX"}]}],"slug":"tarrant"},"48441":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":0.999}],"sh":[{"d":"TX House District 71","rep":"Stan Lambert","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"Abilene","p":[{"n":"Weldon Hurt","r":"Mayor, Abilene, TX"}]}],"slug":"taylor"},"48443":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"terrell"},"48445":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 83","rep":"Dustin Burrows","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"terry"},"48447":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"throckmorton"},"48449":{"county":[],"districts":{"cd":[{"d":"TX-01","rep":"Nathaniel Moran","w":1.0}],"sh":[{"d":"TX House District 5","rep":"Cole Hefner","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Mount Pleasant","p":[{"n":"Tracy Craig Sr.","r":"Mayor, Mount Pleasant, TX"}]}],"slug":"titus"},"48451":{"county":[],"districts":{"cd":[{"d":"TX-11","rep":"August Pfluger","w":1.0}],"sh":[{"d":"TX House District 72","rep":"Drew Darby","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[{"m":"San Angelo","p":[{"n":"Brenda Gunter","r":"Mayor, San Angelo, TX"}]}],"slug":"tom-green"},"48453":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.403},{"d":"TX-35","rep":"Greg Casar","w":0.282},{"d":"TX-37","rep":"Lloyd Doggett","w":0.206},{"d":"TX-17","rep":"Pete Sessions","w":0.063},{"d":"TX-21","rep":"Chip Roy","w":0.045}],"sh":[{"d":"TX House District 19","rep":"Ellen Troxclair","w":0.241},{"d":"TX House District 46","rep":"Sheryl Cole","w":0.221},{"d":"TX House District 47","rep":"Vikki Goodwin","w":0.196},{"d":"TX House District 51","rep":"Lulu Flores","w":0.169},{"d":"TX House District 48","rep":"Donna Howard","w":0.083},{"d":"TX House District 50","rep":"James Talarico","w":0.054},{"d":"TX House District 49","rep":"Gina Hinojosa","w":0.035}],"ss":[{"d":"TX Senate District 14","rep":"Sarah Eckhardt","w":0.507},{"d":"TX Senate District 25","rep":"Donna Campbell","w":0.328},{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":0.165}]},"munis":[{"m":"Austin","p":[{"n":"Kirk Watson","r":"Mayor, Austin, TX"}]},{"m":"Bee Cave","p":[{"n":"Kara King","r":"Mayor, Bee Cave, TX"}]},{"m":"Lakeway","p":[{"n":"Tom Kilgore","r":"Mayor, Lakeway, TX"}]},{"m":"Pflugerville","p":[{"n":"Victor Gonzales","r":"Mayor, Pflugerville, TX"}]}],"slug":"travis"},"48455":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":1.0}],"sh":[{"d":"TX House District 9","rep":"Trent Ashby","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[],"slug":"trinity"},"48457":{"county":[],"districts":{"cd":[{"d":"TX-36","rep":"Brian Babin","w":1.0}],"sh":[{"d":"TX House District 9","rep":"Trent Ashby","w":1.0}],"ss":[{"d":"TX Senate District 3","rep":"Robert Nichols","w":1.0}]},"munis":[],"slug":"tyler"},"48459":{"county":[],"districts":{"cd":[{"d":"TX-05","rep":"Lance Gooden","w":0.503},{"d":"TX-01","rep":"Nathaniel Moran","w":0.497}],"sh":[{"d":"TX House District 5","rep":"Cole Hefner","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[{"m":"Gilmer","p":[{"n":"Tim Marshall","r":"Mayor, Gilmer, TX"}]}],"slug":"upshur"},"48461":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 53","rep":"Wes Virdell","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"upton"},"48463":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 80","rep":"Don McLaughlin","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"uvalde"},"48465":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 74","rep":"Eddie Morales","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[{"m":"Del Rio","p":[{"n":"Q125217476","r":"Mayor, Del Rio, TX"}]}],"slug":"val-verde"},"48467":{"county":[],"districts":{"cd":[{"d":"TX-05","rep":"Lance Gooden","w":0.998}],"sh":[{"d":"TX House District 2","rep":"Brent Money","w":1.0}],"ss":[{"d":"TX Senate District 2","rep":"Bob Hall","w":1.0}]},"munis":[{"m":"Canton","p":[{"n":"Lou Ann Everett","r":"Mayor, Canton, TX"}]}],"slug":"van-zandt"},"48469":{"county":[],"districts":{"cd":[{"d":"TX-27","rep":"Michael Cloud","w":1.0}],"sh":[{"d":"TX House District 30","rep":"A.J. Louderback","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Victoria","p":[{"n":"Jeff Bauknight","r":"Mayor, Victoria, TX"}]}],"slug":"victoria"},"48471":{"county":[],"districts":{"cd":[{"d":"TX-17","rep":"Pete Sessions","w":0.605},{"d":"TX-08","rep":"Morgan Luttrell","w":0.393}],"sh":[{"d":"TX House District 12","rep":"Trey Wharton","w":1.0}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":1.0}]},"munis":[],"slug":"walker"},"48473":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":0.999}],"sh":[{"d":"TX House District 85","rep":"Stan Kitzman","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":0.701},{"d":"TX Senate District 17","rep":"Joan Huffman","w":0.299}]},"munis":[{"m":"Brookshire","p":[{"n":"Darrell Branch","r":"Mayor, Brookshire, TX"}]},{"m":"Hempstead","p":[{"n":"Erica Gillum","r":"Mayor, Hempstead, TX"}]},{"m":"Katy","p":[{"n":"William H. \"Dusty\" Thiele","r":"Mayor, Katy, TX"}]}],"slug":"waller"},"48475":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 81","rep":"Brooks Landgraf","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"ward"},"48477":{"county":[],"districts":{"cd":[{"d":"TX-10","rep":"Michael T. McCaul","w":1.0}],"sh":[{"d":"TX House District 12","rep":"Trey Wharton","w":1.0}],"ss":[{"d":"TX Senate District 18","rep":"Lois Kolkhorst","w":1.0}]},"munis":[{"m":"Brenham","p":[{"n":"Atwood C. Kenjura","r":"Mayor, Brenham, TX"}]}],"slug":"washington"},"48479":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":0.999}],"sh":[{"d":"TX House District 80","rep":"Don McLaughlin","w":0.861},{"d":"TX House District 42","rep":"Richard Raymond","w":0.139}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[{"m":"Laredo","p":[{"n":"Victor Treviño","r":"Mayor, Laredo, TX"}]}],"slug":"webb"},"48481":{"county":[],"districts":{"cd":[{"d":"TX-22","rep":"Troy E. Nehls","w":0.999}],"sh":[{"d":"TX House District 85","rep":"Stan Kitzman","w":1.0}],"ss":[{"d":"TX Senate District 17","rep":"Joan Huffman","w":1.0}]},"munis":[{"m":"Wharton","p":[{"n":"Tim Barker","r":"Mayor, Wharton, TX"}]}],"slug":"wharton"},"48483":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"wheeler"},"48485":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":0.999}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":0.852},{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":0.147}]},"munis":[{"m":"Burkburnett","p":[{"n":"Lori Kemp","r":"Mayor, Burkburnett, TX"}]},{"m":"Iowa Park","p":[{"n":"Ray Schultz","r":"Mayor, Iowa Park, TX"}]},{"m":"Wichita Falls","p":[{"n":"Stephen Santellana","r":"Mayor, Wichita Falls, TX"}]}],"slug":"wichita"},"48487":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":0.998}],"sh":[{"d":"TX House District 69","rep":"James Frank","w":1.0}],"ss":[{"d":"TX Senate District 28","rep":"Charles Perry","w":1.0}]},"munis":[],"slug":"wilbarger"},"48489":{"county":[],"districts":{"cd":[{"d":"TX-34","rep":"Vicente Gonzalez","w":0.809}],"sh":[{"d":"TX House District 37","rep":"Janie Lopez","w":0.802}],"ss":[{"d":"TX Senate District 27","rep":"Adam Hinojosa","w":0.803}]},"munis":[{"m":"Raymondville","p":[{"n":"Gilbert Gonzales","r":"Mayor, Raymondville, TX"}]}],"slug":"willacy"},"48491":{"county":[],"districts":{"cd":[{"d":"TX-31","rep":"John R. Carter","w":0.782},{"d":"TX-17","rep":"Pete Sessions","w":0.187},{"d":"TX-10","rep":"Michael T. McCaul","w":0.018},{"d":"TX-37","rep":"Lloyd Doggett","w":0.014}],"sh":[{"d":"TX House District 52","rep":"Caroline Harris Davila","w":0.608},{"d":"TX House District 20","rep":"Terry Wilson","w":0.34},{"d":"TX House District 136","rep":"John Bucy","w":0.052}],"ss":[{"d":"TX Senate District 5","rep":"Charles Schwertner","w":0.901},{"d":"TX Senate District 24","rep":"Pete Flores","w":0.099}]},"munis":[{"m":"Cedar Park","p":[{"n":"Jim Penniman-Morin","r":"Mayor, Cedar Park, TX"}]},{"m":"Georgetown","p":[{"n":"Josh Schroeder","r":"Mayor, Georgetown, TX"}]},{"m":"Hutto","p":[{"n":"Mike Snyder","r":"Mayor, Hutto, TX"}]},{"m":"Leander","p":[{"n":"Christine DeLisle","r":"Mayor, Leander, TX"}]},{"m":"Round Rock","p":[{"n":"Craig Morgan","r":"Mayor, Round Rock, TX"}]}],"slug":"williamson"},"48493":{"county":[],"districts":{"cd":[{"d":"TX-15","rep":"Monica De La Cruz","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"wilson"},"48495":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":0.999}],"sh":[{"d":"TX House District 81","rep":"Brooks Landgraf","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"winkler"},"48497":{"county":[],"districts":{"cd":[{"d":"TX-13","rep":"Ronny Jackson","w":0.509},{"d":"TX-26","rep":"Brandon Gill","w":0.49}],"sh":[{"d":"TX House District 64","rep":"Andy Hopper","w":1.0}],"ss":[{"d":"TX Senate District 12","rep":"Tan Parker","w":1.0}]},"munis":[{"m":"Bridgeport","p":[{"n":"Randy Singleton","r":"Mayor, Bridgeport, TX"}]}],"slug":"wise"},"48499":{"county":[],"districts":{"cd":[{"d":"TX-05","rep":"Lance Gooden","w":0.996}],"sh":[{"d":"TX House District 5","rep":"Cole Hefner","w":1.0}],"ss":[{"d":"TX Senate District 1","rep":"Bryan Hughes","w":1.0}]},"munis":[],"slug":"wood"},"48501":{"county":[],"districts":{"cd":[{"d":"TX-19","rep":"Jodey C. Arrington","w":1.0}],"sh":[{"d":"TX House District 88","rep":"Ken King","w":1.0}],"ss":[{"d":"TX Senate District 31","rep":"Kevin Sparks","w":1.0}]},"munis":[],"slug":"yoakum"},"48503":{"county":[],"districts":{"cd":[{"d":"TX-25","rep":"Roger Williams","w":1.0}],"sh":[{"d":"TX House District 68","rep":"David Spiller","w":1.0}],"ss":[{"d":"TX Senate District 30","rep":"Brent Hagenbuch","w":1.0}]},"munis":[{"m":"Graham","p":[{"n":"Alex Heartfield","r":"Mayor, Graham, TX"}]}],"slug":"young"},"48505":{"county":[],"districts":{"cd":[{"d":"TX-28","rep":"Henry Cuellar","w":1.0}],"sh":[{"d":"TX House District 31","rep":"Ryan Guillen","w":1.0}],"ss":[{"d":"TX Senate District 21","rep":"Judith Zaffirini","w":1.0}]},"munis":[],"slug":"zapata"},"48507":{"county":[],"districts":{"cd":[{"d":"TX-23","rep":"Vacant","w":1.0}],"sh":[{"d":"TX House District 80","rep":"Don McLaughlin","w":1.0}],"ss":[{"d":"TX Senate District 19","rep":"Roland Gutierrez","w":1.0}]},"munis":[],"slug":"zavala"},"49001":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 70","rep":"Carl Albrecht","w":1.0}],"ss":[{"d":"UT Senate District 28","rep":"Evan Vickers","w":1.0}]},"munis":[{"m":"Beaver","p":[{"n":"Matt Robinson","r":"Mayor, Beaver, UT"}]}],"slug":"beaver"},"49003":{"county":[],"districts":{"cd":[{"d":"UT-01","rep":"Blake D. Moore","w":1.0}],"sh":[{"d":"UT House District 1","rep":"Tom Peterson","w":0.99},{"d":"UT House District 6","rep":"Rob Bishop","w":0.01}],"ss":[{"d":"UT Senate District 1","rep":"Scott Sandall","w":1.0}]},"munis":[{"m":"Brigham City","p":[{"n":"DJ Bott","r":"Mayor, Brigham City, UT"}]}],"slug":"box-elder"},"49005":{"county":[],"districts":{"cd":[{"d":"UT-01","rep":"Blake D. Moore","w":1.0}],"sh":[{"d":"UT House District 5","rep":"Casey Snider","w":0.433},{"d":"UT House District 3","rep":"Jason Thompson","w":0.355},{"d":"UT House District 2","rep":"Mike Petersen","w":0.139},{"d":"UT House District 1","rep":"Tom Peterson","w":0.074}],"ss":[{"d":"UT Senate District 2","rep":"Chris Wilson","w":0.616},{"d":"UT Senate District 1","rep":"Scott Sandall","w":0.384}]},"munis":[{"m":"Logan","p":[{"n":"Holly H. Daines","r":"Mayor, Logan, UT"}]},{"m":"Nibley","p":[{"n":"Larry Jacobsen","r":"Mayor, Nibley, UT"}]}],"slug":"cache"},"49007":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":1.0}],"sh":[{"d":"UT House District 67","rep":"Christine Watkins","w":1.0}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":1.0}]},"munis":[{"m":"Price","p":[{"n":"Michael Kourianos","r":"Mayor, Price, UT"}]}],"slug":"carbon"},"49009":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":1.0}],"sh":[{"d":"UT House District 68","rep":"Scott Chew","w":1.0}],"ss":[{"d":"UT Senate District 20","rep":"Ron Winterton","w":1.0}]},"munis":[],"slug":"daggett"},"49011":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":0.63},{"d":"UT-01","rep":"Blake D. Moore","w":0.37}],"sh":[{"d":"UT House District 15","rep":"Ariel Defay","w":0.58},{"d":"UT House District 18","rep":"Paul Cutler","w":0.105},{"d":"UT House District 12","rep":"Mike Schultz","w":0.077},{"d":"UT House District 19","rep":"Ray Ward","w":0.058},{"d":"UT House District 17","rep":"Stewart Barlow","w":0.052},{"d":"UT House District 16","rep":"Trevor Lee","w":0.032},{"d":"UT House District 20","rep":"Melissa Ballard","w":0.032},{"d":"UT House District 11","rep":"Katy Hall","w":0.026},{"d":"UT House District 14","rep":"Karianne Lisonbee","w":0.02},{"d":"UT House District 13","rep":"Karen Peterson","w":0.018}],"ss":[{"d":"UT Senate District 6","rep":"Jerry Stevenson","w":0.671},{"d":"UT Senate District 7","rep":"Stuart Adams","w":0.182},{"d":"UT Senate District 8","rep":"Todd Weiler","w":0.092},{"d":"UT Senate District 5","rep":"Ann Millner","w":0.028},{"d":"UT Senate District 4","rep":"Cal Musselman","w":0.026}]},"munis":[{"m":"Bountiful","p":[{"n":"Kendalyn Harris","r":"Mayor, Bountiful, UT"}]},{"m":"Farmington","p":[{"n":"Brett Anderson","r":"Mayor, Farmington, UT"}]},{"m":"Layton","p":[{"n":"Joy Petro","r":"Mayor, Layton, UT"}]},{"m":"North Salt Lake","p":[{"n":"Brian Horrocks","r":"Mayor, North Salt Lake, UT"}]},{"m":"Woods Cross","p":[{"n":"Ryan Westergard","r":"Mayor, Woods Cross, UT"}]}],"slug":"davis"},"49013":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":1.0}],"sh":[{"d":"UT House District 67","rep":"Christine Watkins","w":0.506},{"d":"UT House District 68","rep":"Scott Chew","w":0.494}],"ss":[{"d":"UT Senate District 20","rep":"Ron Winterton","w":1.0}]},"munis":[],"slug":"duchesne"},"49015":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":1.0}],"sh":[{"d":"UT House District 69","rep":"Logan Monson","w":0.836},{"d":"UT House District 67","rep":"Christine Watkins","w":0.164}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":1.0}]},"munis":[{"m":"Green River","p":[{"n":"Ren Hatt","r":"Mayor, Green River, UT"}]},{"m":"Orangeville","p":[{"n":"David Robertson","r":"Mayor, Orangeville, UT"}]}],"slug":"emery"},"49017":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 69","rep":"Logan Monson","w":1.0}],"ss":[{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.701},{"d":"UT Senate District 26","rep":"David Hinkins","w":0.299}]},"munis":[],"slug":"garfield"},"49019":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":1.0}],"sh":[{"d":"UT House District 69","rep":"Logan Monson","w":1.0}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":1.0}]},"munis":[{"m":"Moab","p":[{"n":"Joette Langianese","r":"Mayor, Moab, UT"}]}],"slug":"grand"},"49021":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 70","rep":"Carl Albrecht","w":0.718},{"d":"UT House District 71","rep":"Rex Shipp","w":0.281}],"ss":[{"d":"UT Senate District 28","rep":"Evan Vickers","w":1.0}]},"munis":[{"m":"Cedar City","p":[{"n":"Garth Green","r":"Mayor, Cedar City, UT"}]},{"m":"Parowan","p":[{"n":"Mollie Halterman","r":"Mayor, Parowan, UT"}]}],"slug":"iron"},"49023":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":0.726},{"d":"UT-04","rep":"Burgess Owens","w":0.274}],"sh":[{"d":"UT House District 29","rep":"Bridger Bolinder","w":0.705},{"d":"UT House District 66","rep":"Troy Shelley","w":0.295}],"ss":[{"d":"UT Senate District 28","rep":"Evan Vickers","w":0.554},{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.445}]},"munis":[{"m":"Nephi","p":[{"n":"Justin Seely","r":"Mayor, Nephi, UT"}]}],"slug":"juab"},"49025":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":0.999}],"sh":[{"d":"UT House District 69","rep":"Logan Monson","w":1.0}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":0.769},{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.231}]},"munis":[{"m":"Kanab","p":[{"n":"Troy Colten Johnson","r":"Mayor, Kanab, UT"}]}],"slug":"kane"},"49027":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 29","rep":"Bridger Bolinder","w":1.0}],"ss":[{"d":"UT Senate District 28","rep":"Evan Vickers","w":0.809},{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.191}]},"munis":[{"m":"Fillmore","p":[{"n":"Michael D. Holt","r":"Mayor, Fillmore, UT"}]}],"slug":"millard"},"49029":{"county":[],"districts":{"cd":[{"d":"UT-01","rep":"Blake D. Moore","w":1.0}],"sh":[{"d":"UT House District 4","rep":"Tiara Auxier","w":0.978},{"d":"UT House District 8","rep":"Jason Kyle","w":0.021}],"ss":[{"d":"UT Senate District 3","rep":"John Johnson","w":0.831},{"d":"UT Senate District 5","rep":"Ann Millner","w":0.086},{"d":"UT Senate District 7","rep":"Stuart Adams","w":0.083}]},"munis":[],"slug":"morgan"},"49031":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 70","rep":"Carl Albrecht","w":1.0}],"ss":[{"d":"UT Senate District 27","rep":"Derrin Owens","w":1.0}]},"munis":[],"slug":"piute"},"49033":{"county":[],"districts":{"cd":[{"d":"UT-01","rep":"Blake D. Moore","w":1.0}],"sh":[{"d":"UT House District 4","rep":"Tiara Auxier","w":1.0}],"ss":[{"d":"UT Senate District 2","rep":"Chris Wilson","w":1.0}]},"munis":[],"slug":"rich"},"49035":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":0.327},{"d":"UT-04","rep":"Burgess Owens","w":0.274},{"d":"UT-03","rep":"Mike Kennedy","w":0.249},{"d":"UT-01","rep":"Blake D. Moore","w":0.151}],"sh":[{"d":"UT House District 27","rep":"Anthony Loubet","w":0.156},{"d":"UT House District 21","rep":"Sandra Hollins","w":0.149},{"d":"UT House District 41","rep":"John Arthur","w":0.119},{"d":"UT House District 23","rep":"Hoang Nguyen","w":0.1},{"d":"UT House District 49","rep":"Candice Pierucci","w":0.062},{"d":"UT House District 33","rep":"Doug Owens","w":0.056},{"d":"UT House District 22","rep":"Jen Dailey-Provost","w":0.05},{"d":"UT House District 46","rep":"Cal Roberts","w":0.042},{"d":"UT House District 25","rep":"Angela Romero","w":0.031},{"d":"UT House District 26","rep":"Matt MacPherson","w":0.025},{"d":"UT House District 47","rep":"Mark Strong","w":0.021},{"d":"UT House District 42","rep":"Clint Okerlund","w":0.017},{"d":"UT House District 38","rep":"Cheryl Acton","w":0.016},{"d":"UT House District 48","rep":"Doug Fiefia","w":0.016},{"d":"UT House District 45","rep":"Tracy Miller","w":0.014},{"d":"UT House District 39","rep":"Ken Ivory","w":0.013},{"d":"UT House District 43","rep":"Steve Eliason","w":0.013},{"d":"UT House District 35","rep":"Rosalba Dominguez","w":0.013},{"d":"UT House District 32","rep":"Sahara Hayes","w":0.012},{"d":"UT House District 44","rep":"Jordan Teuscher","w":0.011},{"d":"UT House District 34","rep":"Carol Moss","w":0.011},{"d":"UT House District 40","rep":"Andrew Stoddard","w":0.01},{"d":"UT House District 36","rep":"Jim Dunnigan","w":0.01},{"d":"UT House District 31","rep":"Verona Mauga","w":0.009},{"d":"UT House District 24","rep":"Grant Miller","w":0.009},{"d":"UT House District 30","rep":"Jake Fitisemanu","w":0.008},{"d":"UT House District 37","rep":"Ashlee Matthews","w":0.007}],"ss":[{"d":"UT Senate District 10","rep":"Luz Escamilla","w":0.221},{"d":"UT Senate District 11","rep":"Emily Buss","w":0.166},{"d":"UT Senate District 15","rep":"Kathleen Riebe","w":0.151},{"d":"UT Senate District 9","rep":"Jen Plumb","w":0.126},{"d":"UT Senate District 19","rep":"Kirk Cullimore","w":0.081},{"d":"UT Senate District 18","rep":"Dan McCay","w":0.063},{"d":"UT Senate District 17","rep":"Lincoln Fillmore","w":0.042},{"d":"UT Senate District 8","rep":"Todd Weiler","w":0.035},{"d":"UT Senate District 14","rep":"Stephanie Pitcher","w":0.033},{"d":"UT Senate District 16","rep":"Wayne Harper","w":0.029},{"d":"UT Senate District 13","rep":"Nate Blouin","w":0.028},{"d":"UT Senate District 12","rep":"Karen Kwan","w":0.02},{"d":"UT Senate District 22","rep":"Heidi Balderree","w":0.006}]},"munis":[{"m":"Draper","p":[{"n":"Troy Walker","r":"Mayor, Draper, UT"}]},{"m":"Midvale","p":[{"n":"Marcus Stevenson","r":"Mayor, Midvale, UT"}]},{"m":"Millcreek","p":[{"n":"Jeff Silvestrini","r":"Mayor, Millcreek, UT"}]},{"m":"Murray","p":[{"n":"Brett A. Hales","r":"Mayor, Murray, UT"}]},{"m":"Riverton","p":[{"n":"Trent Staggs","r":"Mayor, Riverton, UT"}]},{"m":"Salt Lake City","p":[{"n":"Erin Mendenhall","r":"Mayor, Salt Lake City, UT"}]},{"m":"Sandy","p":[{"n":"Monica Zoltanski","r":"Mayor, Sandy, UT"}]},{"m":"South Jordan","p":[{"n":"Dawn R. Ramsey","r":"Mayor, South Jordan, UT"}]},{"m":"Taylorsville","p":[{"n":"Kristie S. Overson","r":"Mayor, Taylorsville, UT"}]},{"m":"West Jordan","p":[{"n":"Dirk Burton","r":"Mayor, West Jordan, UT"}]},{"m":"West Valley City","p":[{"n":"Ron C. Bigelow","r":"Mayor, West Valley City, UT"}]}],"slug":"salt-lake"},"49037":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":0.999}],"sh":[{"d":"UT House District 69","rep":"Logan Monson","w":1.0}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":1.0}]},"munis":[{"m":"Monticello","p":[{"n":"Bayley Hedglin","r":"Mayor, Monticello, UT"}]}],"slug":"san-juan"},"49039":{"county":[],"districts":{"cd":[{"d":"UT-04","rep":"Burgess Owens","w":0.999}],"sh":[{"d":"UT House District 66","rep":"Troy Shelley","w":1.0}],"ss":[{"d":"UT Senate District 27","rep":"Derrin Owens","w":1.0}]},"munis":[{"m":"Manti","p":[{"n":"Alfred \"Chuck\" Bigelow","r":"Mayor, Manti, UT"}]}],"slug":"sanpete"},"49041":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 70","rep":"Carl Albrecht","w":1.0}],"ss":[{"d":"UT Senate District 27","rep":"Derrin Owens","w":1.0}]},"munis":[{"m":"Richfield","p":[{"n":"Bryan L. Burrows","r":"Mayor, Richfield, UT"}]}],"slug":"sevier"},"49043":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":0.604},{"d":"UT-01","rep":"Blake D. Moore","w":0.396}],"sh":[{"d":"UT House District 4","rep":"Tiara Auxier","w":0.628},{"d":"UT House District 68","rep":"Scott Chew","w":0.349},{"d":"UT House District 59","rep":"Mike Kohler","w":0.021}],"ss":[{"d":"UT Senate District 20","rep":"Ron Winterton","w":0.762},{"d":"UT Senate District 3","rep":"John Johnson","w":0.238}]},"munis":[],"slug":"summit"},"49045":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 29","rep":"Bridger Bolinder","w":0.985},{"d":"UT House District 28","rep":"Nicholeen Peck","w":0.015}],"ss":[{"d":"UT Senate District 11","rep":"Emily Buss","w":0.753},{"d":"UT Senate District 1","rep":"Scott Sandall","w":0.247}]},"munis":[{"m":"Tooele","p":[{"n":"Debbie Winn","r":"Mayor, Tooele, UT"}]}],"slug":"tooele"},"49047":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":1.0}],"sh":[{"d":"UT House District 68","rep":"Scott Chew","w":1.0}],"ss":[{"d":"UT Senate District 20","rep":"Ron Winterton","w":1.0}]},"munis":[],"slug":"uintah"},"49049":{"county":[],"districts":{"cd":[{"d":"UT-04","rep":"Burgess Owens","w":0.828},{"d":"UT-03","rep":"Mike Kennedy","w":0.171}],"sh":[{"d":"UT House District 66","rep":"Troy Shelley","w":0.276},{"d":"UT House District 50","rep":"Stephanie Gricius","w":0.222},{"d":"UT House District 63","rep":"Stephen Whyte","w":0.211},{"d":"UT House District 65","rep":"Doug Welton","w":0.052},{"d":"UT House District 58","rep":"Dave Shallenberger","w":0.051},{"d":"UT House District 61","rep":"Lisa Shepherd","w":0.045},{"d":"UT House District 54","rep":"Kristen Chevrier","w":0.045},{"d":"UT House District 64","rep":"Jackie Larson","w":0.03},{"d":"UT House District 51","rep":"Leah Hansen","w":0.013},{"d":"UT House District 55","rep":"Jon Hawkins","w":0.011},{"d":"UT House District 52","rep":"Cory Maloy","w":0.009},{"d":"UT House District 62","rep":"Norm Thurston","w":0.009},{"d":"UT House District 60","rep":"Grant Pace","w":0.007},{"d":"UT House District 53","rep":"Kay Christofferson","w":0.007},{"d":"UT House District 56","rep":"Val Peterson","w":0.007}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":0.409},{"d":"UT Senate District 25","rep":"Mike McKell","w":0.146},{"d":"UT Senate District 11","rep":"Emily Buss","w":0.136},{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.133},{"d":"UT Senate District 24","rep":"Keven Stratton","w":0.059},{"d":"UT Senate District 21","rep":"Brady Brammer","w":0.048},{"d":"UT Senate District 22","rep":"Heidi Balderree","w":0.031},{"d":"UT Senate District 19","rep":"Kirk Cullimore","w":0.016},{"d":"UT Senate District 23","rep":"Keith Grover","w":0.015},{"d":"UT Senate District 18","rep":"Dan McCay","w":0.006}]},"munis":[{"m":"American Fork","p":[{"n":"Brad Frost","r":"Mayor, American Fork, UT"}]},{"m":"Lehi","p":[{"n":"Mark Johnson","r":"Mayor, Lehi, UT"}]},{"m":"Orem","p":[{"n":"David Young","r":"Mayor, Orem, UT"}]},{"m":"Payson","p":[{"n":"Bill Wright","r":"Mayor, Payson, UT"}]},{"m":"Provo","p":[{"n":"Michelle Kaufusi","r":"Mayor, Provo, UT"}]}],"slug":"utah"},"49051":{"county":[],"districts":{"cd":[{"d":"UT-03","rep":"Mike Kennedy","w":0.999}],"sh":[{"d":"UT House District 59","rep":"Mike Kohler","w":1.0}],"ss":[{"d":"UT Senate District 20","rep":"Ron Winterton","w":0.805},{"d":"UT Senate District 26","rep":"David Hinkins","w":0.146},{"d":"UT Senate District 24","rep":"Keven Stratton","w":0.049}]},"munis":[{"m":"Heber","p":[{"n":"Heidi Franco","r":"Mayor, Heber City, UT"}]}],"slug":"wasatch"},"49053":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":1.0}],"sh":[{"d":"UT House District 72","rep":"Joseph Elison","w":0.406},{"d":"UT House District 75","rep":"Walt Brooks","w":0.356},{"d":"UT House District 74","rep":"Neil Walter","w":0.175},{"d":"UT House District 73","rep":"Colin Jack","w":0.062}],"ss":[{"d":"UT Senate District 29","rep":"Don Ipson","w":0.537},{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.336},{"d":"UT Senate District 28","rep":"Evan Vickers","w":0.127}]},"munis":[{"m":"St George","p":[{"n":"Michele Randall","r":"Mayor, St. George, UT"}]}],"slug":"washington"},"49055":{"county":[],"districts":{"cd":[{"d":"UT-02","rep":"Celeste Maloy","w":0.999}],"sh":[{"d":"UT House District 69","rep":"Logan Monson","w":1.0}],"ss":[{"d":"UT Senate District 26","rep":"David Hinkins","w":0.633},{"d":"UT Senate District 27","rep":"Derrin Owens","w":0.367}]},"munis":[],"slug":"wayne"},"49057":{"county":[],"districts":{"cd":[{"d":"UT-01","rep":"Blake D. Moore","w":1.0}],"sh":[{"d":"UT House District 8","rep":"Jason Kyle","w":0.554},{"d":"UT House District 12","rep":"Mike Schultz","w":0.212},{"d":"UT House District 6","rep":"Rob Bishop","w":0.135},{"d":"UT House District 9","rep":"Jake Sawyer","w":0.034},{"d":"UT House District 10","rep":"Jill Koford","w":0.028},{"d":"UT House District 7","rep":"Ryan Wilcox","w":0.02},{"d":"UT House District 11","rep":"Katy Hall","w":0.016}],"ss":[{"d":"UT Senate District 3","rep":"John Johnson","w":0.535},{"d":"UT Senate District 4","rep":"Cal Musselman","w":0.37},{"d":"UT Senate District 5","rep":"Ann Millner","w":0.094}]},"munis":[{"m":"Ogden","p":[{"n":"Benjamin K. Nadolski","r":"Mayor, Ogden, UT"}]}],"slug":"weber"},"50001":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Vergennes","p":[{"n":"Mathew Chabot","r":"Mayor, Vergennes, VT"}]}],"slug":"addison"},"50003":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"bennington"},"50005":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"caledonia"},"50007":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Burlington","p":[{"n":"Miro Weinberger","r":"Mayor, Burlington, VT"}]},{"m":"Winooski","p":[{"n":"Kristine Lott","r":"Mayor, Winooski, VT"}]}],"slug":"chittenden"},"50009":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":0.997}],"sh":[],"ss":[]},"munis":[],"slug":"essex"},"50011":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"St Albans","p":[{"n":"Tim Smith","r":"Mayor, St. Albans, VT"}]}],"slug":"franklin"},"50013":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"grand-isle"},"50015":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"lamoille"},"50017":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":0.999}],"sh":[],"ss":[]},"munis":[],"slug":"orange"},"50019":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"orleans"},"50021":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Rutland","p":[{"n":"Mike Doenges","r":"Mayor, Rutland, VT"}]}],"slug":"rutland"},"50023":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[{"m":"Barre","p":[{"n":"Lucas J. Herring","r":"Mayor, Barre, VT"}]},{"m":"Montpelier","p":[{"n":"Jack McCullough","r":"Mayor, Montpelier, VT"}]}],"slug":"washington"},"50025":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"windham"},"50027":{"county":[],"districts":{"cd":[{"d":"VT-00","rep":"Becca Balint","w":1.0}],"sh":[],"ss":[]},"munis":[],"slug":"windsor"},"51001":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.449}],"sh":[{"d":"VA House District 100","rep":"Rob Bloxom","w":0.429}],"ss":[{"d":"VA Senate District 20","rep":"Bill DeSteph","w":0.429}]},"munis":[],"slug":"accomack"},"51003":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.987},{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.012}],"sh":[{"d":"VA House District 55","rep":"Amy Laufer","w":0.972},{"d":"VA House District 54","rep":"Katrina Callsen","w":0.028}],"ss":[{"d":"VA Senate District 11","rep":"Creigh Deeds","w":1.0}]},"munis":[],"slug":"albemarle"},"51005":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.998}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":1.0}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[],"slug":"alleghany"},"51007":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.995}],"sh":[{"d":"VA House District 72","rep":"Lee Ware","w":1.0}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"amelia"},"51009":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.997}],"sh":[{"d":"VA House District 53","rep":"Tim Griffin","w":1.0}],"ss":[{"d":"VA Senate District 11","rep":"Creigh Deeds","w":1.0}]},"munis":[],"slug":"amherst"},"51011":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 56","rep":"Tom Garrett","w":1.0}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"appomattox"},"51013":{"county":[],"districts":{"cd":[{"d":"VA-08","rep":"Donald S. Beyer, Jr.","w":0.993}],"sh":[{"d":"VA House District 1","rep":"Patrick Hope","w":0.444},{"d":"VA House District 2","rep":"Adele McClure","w":0.334},{"d":"VA House District 3","rep":"Alfonso Lopez","w":0.216}],"ss":[{"d":"VA Senate District 40","rep":"Barbara Favola","w":0.871},{"d":"VA Senate District 39","rep":"Elizabeth Bennett-Parker","w":0.124}]},"munis":[],"slug":"arlington"},"51015":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.998}],"sh":[{"d":"VA House District 35","rep":"Chris Runion","w":0.758},{"d":"VA House District 36","rep":"Ellen McLaughlin","w":0.242}],"ss":[{"d":"VA Senate District 2","rep":"Mark Obenshain","w":0.758},{"d":"VA Senate District 3","rep":"Chris Head","w":0.242}]},"munis":[],"slug":"augusta"},"51017":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 35","rep":"Chris Runion","w":1.0}],"ss":[{"d":"VA Senate District 2","rep":"Mark Obenshain","w":1.0}]},"munis":[],"slug":"bath"},"51019":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.861},{"d":"VA-05","rep":"John J. McGuire III","w":0.135}],"sh":[{"d":"VA House District 51","rep":"Eric Zehr","w":0.522},{"d":"VA House District 53","rep":"Tim Griffin","w":0.478}],"ss":[{"d":"VA Senate District 8","rep":"Mark Peake","w":1.0}]},"munis":[],"slug":"bedford"},"51021":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 43","rep":"Will Morefield","w":1.0}],"ss":[{"d":"VA Senate District 5","rep":"Travis Hackworth","w":1.0}]},"munis":[],"slug":"bland"},"51023":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.999}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":1.0}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[],"slug":"botetourt"},"51025":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.999}],"sh":[{"d":"VA House District 83","rep":"Otto Wachsmann","w":1.0}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":1.0}]},"munis":[],"slug":"brunswick"},"51027":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 43","rep":"Will Morefield","w":0.999}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":0.999}]},"munis":[],"slug":"buchanan"},"51029":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 56","rep":"Tom Garrett","w":1.0}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"buckingham"},"51031":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 51","rep":"Eric Zehr","w":0.99},{"d":"VA House District 52","rep":"Wendell Walker","w":0.01}],"ss":[{"d":"VA Senate District 8","rep":"Mark Peake","w":1.0}]},"munis":[],"slug":"campbell"},"51033":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.993}],"sh":[{"d":"VA House District 67","rep":"Hillary Pugh Kent","w":0.623},{"d":"VA House District 66","rep":"Nicole Cole","w":0.377}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":1.0}]},"munis":[],"slug":"caroline"},"51035":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 47","rep":"Wren Williams","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[],"slug":"carroll"},"51036":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.969},{"d":"VA-01","rep":"Robert J. Wittman","w":0.011}],"sh":[{"d":"VA House District 81","rep":"Delores McQuinn","w":0.98}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":0.98}]},"munis":[],"slug":"charles-city"},"51037":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 50","rep":"Tommy Wright","w":1.0}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[],"slug":"charlotte"},"51041":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.511},{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.486}],"sh":[{"d":"VA House District 73","rep":"Leslie Mehta","w":0.355},{"d":"VA House District 74","rep":"Mike Cherry","w":0.309},{"d":"VA House District 75","rep":"Lindsey Dougherty","w":0.128},{"d":"VA House District 76","rep":"Debra Gardner","w":0.098},{"d":"VA House District 72","rep":"Lee Ware","w":0.043},{"d":"VA House District 77","rep":"Charlie Schmidt","w":0.036},{"d":"VA House District 81","rep":"Delores McQuinn","w":0.03}],"ss":[{"d":"VA Senate District 12","rep":"Glen Sturtevant","w":0.721},{"d":"VA Senate District 15","rep":"Mike Jones","w":0.278}]},"munis":[],"slug":"chesterfield"},"51043":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.997}],"sh":[{"d":"VA House District 31","rep":"Delores Oates","w":1.0}],"ss":[{"d":"VA Senate District 1","rep":"Timmy French","w":1.0}]},"munis":[],"slug":"clarke"},"51045":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.997}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":1.0}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[],"slug":"craig"},"51047":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.996}],"sh":[{"d":"VA House District 62","rep":"Karen Hamilton","w":0.672},{"d":"VA House District 61","rep":"Mike Webert","w":0.328}],"ss":[{"d":"VA Senate District 28","rep":"Bryce Reeves","w":1.0}]},"munis":[],"slug":"culpeper"},"51049":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 56","rep":"Tom Garrett","w":1.0}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"cumberland"},"51051":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 43","rep":"Will Morefield","w":0.78},{"d":"VA House District 45","rep":"Terry Kilgore","w":0.219}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":1.0}]},"munis":[],"slug":"dickenson"},"51053":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.998}],"sh":[{"d":"VA House District 82","rep":"Kim Adams","w":0.789},{"d":"VA House District 83","rep":"Otto Wachsmann","w":0.21}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":0.51},{"d":"VA Senate District 17","rep":"Emily Jordan","w":0.489}]},"munis":[],"slug":"dinwiddie"},"51057":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.921},{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.006}],"sh":[{"d":"VA House District 68","rep":"Keith Hodges","w":0.927}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.927}]},"munis":[],"slug":"essex"},"51059":{"county":[],"districts":{"cd":[{"d":"VA-11","rep":"James R. Walkinshaw","w":0.609},{"d":"VA-08","rep":"Donald S. Beyer, Jr.","w":0.282},{"d":"VA-10","rep":"Suhas Subramanyam","w":0.107}],"sh":[{"d":"VA House District 6","rep":"Rip Sullivan","w":0.15},{"d":"VA House District 10","rep":"Dan Helmer","w":0.119},{"d":"VA House District 9","rep":"Karrie Delaney","w":0.103},{"d":"VA House District 19","rep":"J.R. Henson","w":0.088},{"d":"VA House District 15","rep":"Laura Jane Cohen","w":0.086},{"d":"VA House District 7","rep":"Karen Keys-Gamarra","w":0.069},{"d":"VA House District 18","rep":"Kathy Tran","w":0.066},{"d":"VA House District 16","rep":"Paul Krizek","w":0.059},{"d":"VA House District 14","rep":"Vivian Watts","w":0.047},{"d":"VA House District 12","rep":"Holly Seibold","w":0.044},{"d":"VA House District 17","rep":"Garrett McGuire","w":0.043},{"d":"VA House District 8","rep":"Irene Shin","w":0.041},{"d":"VA House District 11","rep":"Gretchen Bulova","w":0.036},{"d":"VA House District 13","rep":"Marcus Simon","w":0.031},{"d":"VA House District 4","rep":"Charniele Herring","w":0.007}],"ss":[{"d":"VA Senate District 36","rep":"Stella Pekarsky","w":0.238},{"d":"VA Senate District 38","rep":"Jennifer Boysko","w":0.22},{"d":"VA Senate District 34","rep":"Scott Surovell","w":0.207},{"d":"VA Senate District 35","rep":"Dave Marsden","w":0.127},{"d":"VA Senate District 37","rep":"Saddam Salim","w":0.1},{"d":"VA Senate District 33","rep":"Jennifer Carroll Foy","w":0.089},{"d":"VA Senate District 39","rep":"Elizabeth Bennett-Parker","w":0.007}]},"munis":[{"m":"West Falls Church","p":[{"n":"Letty Hardi","r":"Mayor, Falls Church, VA"}]}],"slug":"fairfax"},"51061":{"county":[],"districts":{"cd":[{"d":"VA-10","rep":"Suhas Subramanyam","w":0.996}],"sh":[{"d":"VA House District 61","rep":"Mike Webert","w":0.569},{"d":"VA House District 30","rep":"John McAuliff","w":0.431}],"ss":[{"d":"VA Senate District 31","rep":"Russet Perry","w":0.561},{"d":"VA Senate District 28","rep":"Bryce Reeves","w":0.439}]},"munis":[],"slug":"fauquier"},"51063":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 47","rep":"Wren Williams","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[],"slug":"floyd"},"51065":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 56","rep":"Tom Garrett","w":1.0}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"fluvanna"},"51067":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 39","rep":"Will Davis","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[],"slug":"franklin"},"51069":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.999}],"sh":[{"d":"VA House District 32","rep":"Bill Wiley","w":0.823},{"d":"VA House District 31","rep":"Delores Oates","w":0.176}],"ss":[{"d":"VA Senate District 1","rep":"Timmy French","w":0.999}]},"munis":[],"slug":"frederick"},"51071":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 42","rep":"Jason Ballard","w":0.999}],"ss":[{"d":"VA Senate District 5","rep":"Travis Hackworth","w":0.999}]},"munis":[],"slug":"giles"},"51073":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.879}],"sh":[{"d":"VA House District 68","rep":"Keith Hodges","w":0.832},{"d":"VA House District 69","rep":"Mark Downey","w":0.03}],"ss":[{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.862}]},"munis":[],"slug":"gloucester"},"51075":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.998}],"sh":[{"d":"VA House District 56","rep":"Tom Garrett","w":0.826},{"d":"VA House District 57","rep":"May Nivar","w":0.173}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"goochland"},"51077":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 46","rep":"Mitchell Cornett","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[],"slug":"grayson"},"51079":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.988},{"d":"VA-06","rep":"Ben Cline","w":0.01}],"sh":[{"d":"VA House District 62","rep":"Karen Hamilton","w":1.0}],"ss":[{"d":"VA Senate District 28","rep":"Bryce Reeves","w":1.0}]},"munis":[],"slug":"greene"},"51081":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 83","rep":"Otto Wachsmann","w":1.0}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":0.999}]},"munis":[],"slug":"greensville"},"51083":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 50","rep":"Tommy Wright","w":0.524},{"d":"VA House District 49","rep":"Madison Whittle","w":0.476}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[],"slug":"halifax"},"51085":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.514},{"d":"VA-05","rep":"John J. McGuire III","w":0.479},{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.006}],"sh":[{"d":"VA House District 59","rep":"Buddy Fowler","w":0.62},{"d":"VA House District 60","rep":"Scott Wyatt","w":0.38}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":0.669},{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.331}]},"munis":[],"slug":"hanover"},"51087":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.697},{"d":"VA-01","rep":"Robert J. Wittman","w":0.302}],"sh":[{"d":"VA House District 81","rep":"Delores McQuinn","w":0.543},{"d":"VA House District 80","rep":"Destiny LeVere Bolling","w":0.162},{"d":"VA House District 58","rep":"Rod Willett","w":0.132},{"d":"VA House District 57","rep":"May Nivar","w":0.109},{"d":"VA House District 59","rep":"Buddy Fowler","w":0.053}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":0.557},{"d":"VA Senate District 16","rep":"Schuyler VanValkenburg","w":0.348},{"d":"VA Senate District 14","rep":"Lamont Bagby","w":0.094}]},"munis":[],"slug":"henrico"},"51089":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 48","rep":"Eric Phillips","w":0.694},{"d":"VA House District 47","rep":"Wren Williams","w":0.305}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[],"slug":"henry"},"51091":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.999}],"sh":[{"d":"VA House District 35","rep":"Chris Runion","w":1.0}],"ss":[{"d":"VA Senate District 2","rep":"Mark Obenshain","w":1.0}]},"munis":[],"slug":"highland"},"51093":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.892}],"sh":[{"d":"VA House District 83","rep":"Otto Wachsmann","w":0.489},{"d":"VA House District 84","rep":"Nadarius Clark","w":0.399}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":0.889}]},"munis":[],"slug":"isle-of-wight"},"51095":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.868}],"sh":[{"d":"VA House District 71","rep":"Jessica Anderson","w":0.703},{"d":"VA House District 69","rep":"Mark Downey","w":0.169}],"ss":[{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.823},{"d":"VA Senate District 24","rep":"Danny Diggs","w":0.049}]},"munis":[],"slug":"james-city"},"51097":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":1.0}],"sh":[{"d":"VA House District 68","rep":"Keith Hodges","w":1.0}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.879},{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.121}]},"munis":[],"slug":"king-and-queen"},"51099":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.994}],"sh":[{"d":"VA House District 67","rep":"Hillary Pugh Kent","w":0.991}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.991}]},"munis":[],"slug":"king-george"},"51101":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.999}],"sh":[{"d":"VA House District 68","rep":"Keith Hodges","w":0.999}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.999}]},"munis":[],"slug":"king-william"},"51103":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.64}],"sh":[{"d":"VA House District 67","rep":"Hillary Pugh Kent","w":0.62}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.62}]},"munis":[],"slug":"lancaster"},"51105":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.998}],"sh":[{"d":"VA House District 45","rep":"Terry Kilgore","w":0.999}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":0.999}]},"munis":[],"slug":"lee"},"51107":{"county":[],"districts":{"cd":[{"d":"VA-10","rep":"Suhas Subramanyam","w":0.999}],"sh":[{"d":"VA House District 30","rep":"John McAuliff","w":0.727},{"d":"VA House District 29","rep":"Marty Martinez","w":0.092},{"d":"VA House District 27","rep":"Atoosa Reaser","w":0.073},{"d":"VA House District 28","rep":"David Reid","w":0.054},{"d":"VA House District 26","rep":"J.J. Singh","w":0.053}],"ss":[{"d":"VA Senate District 31","rep":"Russet Perry","w":0.824},{"d":"VA Senate District 32","rep":"Kannan Srinivasan","w":0.175}]},"munis":[],"slug":"loudoun"},"51109":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.997}],"sh":[{"d":"VA House District 59","rep":"Buddy Fowler","w":0.778},{"d":"VA House District 55","rep":"Amy Laufer","w":0.222}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":0.778},{"d":"VA Senate District 11","rep":"Creigh Deeds","w":0.222}]},"munis":[],"slug":"louisa"},"51111":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 50","rep":"Tommy Wright","w":1.0}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[],"slug":"lunenburg"},"51113":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.998}],"sh":[{"d":"VA House District 62","rep":"Karen Hamilton","w":1.0}],"ss":[{"d":"VA Senate District 28","rep":"Bryce Reeves","w":1.0}]},"munis":[],"slug":"madison"},"51115":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.41}],"sh":[{"d":"VA House District 68","rep":"Keith Hodges","w":0.389}],"ss":[{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.389}]},"munis":[],"slug":"mathews"},"51117":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 50","rep":"Tommy Wright","w":1.0}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[],"slug":"mecklenburg"},"51119":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.67}],"sh":[{"d":"VA House District 68","rep":"Keith Hodges","w":0.662}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.662}]},"munis":[],"slug":"middlesex"},"51121":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 41","rep":"Lily Franklin","w":0.839},{"d":"VA House District 42","rep":"Jason Ballard","w":0.161}],"ss":[{"d":"VA Senate District 4","rep":"David Suetterlein","w":0.591},{"d":"VA Senate District 5","rep":"Travis Hackworth","w":0.409}]},"munis":[],"slug":"montgomery"},"51125":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.997}],"sh":[{"d":"VA House District 53","rep":"Tim Griffin","w":0.718},{"d":"VA House District 55","rep":"Amy Laufer","w":0.282}],"ss":[{"d":"VA Senate District 11","rep":"Creigh Deeds","w":1.0}]},"munis":[],"slug":"nelson"},"51127":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.994},{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.006}],"sh":[{"d":"VA House District 71","rep":"Jessica Anderson","w":0.594},{"d":"VA House District 60","rep":"Scott Wyatt","w":0.405}],"ss":[{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.999}]},"munis":[],"slug":"new-kent"},"51131":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.438}],"sh":[{"d":"VA House District 100","rep":"Rob Bloxom","w":0.433}],"ss":[{"d":"VA Senate District 20","rep":"Bill DeSteph","w":0.433}]},"munis":[],"slug":"northampton"},"51133":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.761}],"sh":[{"d":"VA House District 67","rep":"Hillary Pugh Kent","w":0.742}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.742}]},"munis":[],"slug":"northumberland"},"51135":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.998}],"sh":[{"d":"VA House District 72","rep":"Lee Ware","w":1.0}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[],"slug":"nottoway"},"51137":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.998}],"sh":[{"d":"VA House District 62","rep":"Karen Hamilton","w":0.543},{"d":"VA House District 63","rep":"Phil Scott","w":0.457}],"ss":[{"d":"VA Senate District 28","rep":"Bryce Reeves","w":1.0}]},"munis":[],"slug":"orange"},"51139":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.995}],"sh":[{"d":"VA House District 33","rep":"Justin Pence","w":1.0}],"ss":[{"d":"VA Senate District 2","rep":"Mark Obenshain","w":1.0}]},"munis":[],"slug":"page"},"51141":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 47","rep":"Wren Williams","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[],"slug":"patrick"},"51143":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.999}],"sh":[{"d":"VA House District 48","rep":"Eric Phillips","w":0.774},{"d":"VA House District 49","rep":"Madison Whittle","w":0.193},{"d":"VA House District 51","rep":"Eric Zehr","w":0.033}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[],"slug":"pittsylvania"},"51145":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":0.998}],"sh":[{"d":"VA House District 72","rep":"Lee Ware","w":1.0}],"ss":[{"d":"VA Senate District 10","rep":"Luther Cifers","w":1.0}]},"munis":[],"slug":"powhatan"},"51147":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 50","rep":"Tommy Wright","w":0.817},{"d":"VA House District 56","rep":"Tom Garrett","w":0.183}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":0.76},{"d":"VA Senate District 10","rep":"Luther Cifers","w":0.24}]},"munis":[],"slug":"prince-edward"},"51149":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 82","rep":"Kim Adams","w":0.872},{"d":"VA House District 75","rep":"Lindsey Dougherty","w":0.128}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":1.0}]},"munis":[],"slug":"prince-george"},"51153":{"county":[],"districts":{"cd":[{"d":"VA-10","rep":"Suhas Subramanyam","w":0.603},{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.395}],"sh":[{"d":"VA House District 22","rep":"Liz Guzmán","w":0.298},{"d":"VA House District 21","rep":"Josh Thomas","w":0.248},{"d":"VA House District 23","rep":"Margaret Franklin","w":0.219},{"d":"VA House District 25","rep":"Briana Sewell","w":0.095},{"d":"VA House District 24","rep":"Luke Torian","w":0.07},{"d":"VA House District 19","rep":"J.R. Henson","w":0.037}],"ss":[{"d":"VA Senate District 29","rep":"Jeremy McPike","w":0.553},{"d":"VA Senate District 30","rep":"Danica Roem","w":0.316},{"d":"VA Senate District 33","rep":"Jennifer Carroll Foy","w":0.117}]},"munis":[],"slug":"prince-william"},"51155":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 42","rep":"Jason Ballard","w":0.79},{"d":"VA House District 46","rep":"Mitchell Cornett","w":0.209}],"ss":[{"d":"VA Senate District 5","rep":"Travis Hackworth","w":1.0}]},"munis":[],"slug":"pulaski"},"51157":{"county":[],"districts":{"cd":[{"d":"VA-10","rep":"Suhas Subramanyam","w":0.992}],"sh":[{"d":"VA House District 61","rep":"Mike Webert","w":1.0}],"ss":[{"d":"VA Senate District 28","rep":"Bryce Reeves","w":1.0}]},"munis":[],"slug":"rappahannock"},"51159":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.908}],"sh":[{"d":"VA House District 67","rep":"Hillary Pugh Kent","w":0.902}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.902}]},"munis":[],"slug":"richmond"},"51161":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.652},{"d":"VA-09","rep":"H. Morgan Griffith","w":0.348}],"sh":[{"d":"VA House District 41","rep":"Lily Franklin","w":0.653},{"d":"VA House District 39","rep":"Will Davis","w":0.211},{"d":"VA House District 40","rep":"Joe McNamara","w":0.135}],"ss":[{"d":"VA Senate District 4","rep":"David Suetterlein","w":0.504},{"d":"VA Senate District 3","rep":"Chris Head","w":0.496}]},"munis":[],"slug":"roanoke"},"51163":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.997}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":0.685},{"d":"VA House District 36","rep":"Ellen McLaughlin","w":0.315}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[{"m":"East Lexington","p":[{"n":"Frank W. Friedman","r":"Mayor, Lexington, VA"}]}],"slug":"rockbridge"},"51165":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.999}],"sh":[{"d":"VA House District 34","rep":"Tony Wilt","w":0.364},{"d":"VA House District 35","rep":"Chris Runion","w":0.337},{"d":"VA House District 33","rep":"Justin Pence","w":0.298}],"ss":[{"d":"VA Senate District 2","rep":"Mark Obenshain","w":1.0}]},"munis":[],"slug":"rockingham"},"51167":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 44","rep":"Israel O'Quinn","w":0.624},{"d":"VA House District 43","rep":"Will Morefield","w":0.376}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":1.0}]},"munis":[],"slug":"russell"},"51169":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 45","rep":"Terry Kilgore","w":1.0}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":1.0}]},"munis":[],"slug":"scott"},"51171":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 33","rep":"Justin Pence","w":1.0}],"ss":[{"d":"VA Senate District 1","rep":"Timmy French","w":1.0}]},"munis":[],"slug":"shenandoah"},"51173":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 46","rep":"Mitchell Cornett","w":1.0}],"ss":[{"d":"VA Senate District 5","rep":"Travis Hackworth","w":1.0}]},"munis":[],"slug":"smyth"},"51175":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.62},{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.38}],"sh":[{"d":"VA House District 83","rep":"Otto Wachsmann","w":1.0}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":1.0}]},"munis":[],"slug":"southampton"},"51177":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.998}],"sh":[{"d":"VA House District 63","rep":"Phil Scott","w":0.556},{"d":"VA House District 66","rep":"Nicole Cole","w":0.429},{"d":"VA House District 65","rep":"Josh Cole","w":0.015}],"ss":[{"d":"VA Senate District 28","rep":"Bryce Reeves","w":0.472},{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.403},{"d":"VA Senate District 27","rep":"Tara Durant","w":0.124}]},"munis":[],"slug":"spotsylvania"},"51179":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":0.997}],"sh":[{"d":"VA House District 64","rep":"Stacey Carroll","w":0.498},{"d":"VA House District 23","rep":"Margaret Franklin","w":0.265},{"d":"VA House District 65","rep":"Josh Cole","w":0.233}],"ss":[{"d":"VA Senate District 27","rep":"Tara Durant","w":0.724},{"d":"VA Senate District 29","rep":"Jeremy McPike","w":0.271}]},"munis":[],"slug":"stafford"},"51181":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.91}],"sh":[{"d":"VA House District 82","rep":"Kim Adams","w":0.912}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":0.913}]},"munis":[],"slug":"surry"},"51183":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 83","rep":"Otto Wachsmann","w":1.0}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":1.0}]},"munis":[],"slug":"sussex"},"51185":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 43","rep":"Will Morefield","w":0.999}],"ss":[{"d":"VA Senate District 5","rep":"Travis Hackworth","w":0.999}]},"munis":[],"slug":"tazewell"},"51187":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.996}],"sh":[{"d":"VA House District 31","rep":"Delores Oates","w":0.727},{"d":"VA House District 33","rep":"Justin Pence","w":0.273}],"ss":[{"d":"VA Senate District 1","rep":"Timmy French","w":1.0}]},"munis":[],"slug":"warren"},"51191":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 44","rep":"Israel O'Quinn","w":1.0}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":1.0}]},"munis":[],"slug":"washington"},"51193":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.992}],"sh":[{"d":"VA House District 67","rep":"Hillary Pugh Kent","w":0.963}],"ss":[{"d":"VA Senate District 25","rep":"Richard Stuart","w":0.963}]},"munis":[],"slug":"westmoreland"},"51195":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 45","rep":"Terry Kilgore","w":0.999}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":0.999}]},"munis":[{"m":"The University Of Virginia S College At Wise","p":[{"n":"Will Sessoms","r":"Mayor, Virginia Beach, VA"}]}],"slug":"wise"},"51197":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 46","rep":"Mitchell Cornett","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":0.622},{"d":"VA Senate District 5","rep":"Travis Hackworth","w":0.378}]},"munis":[],"slug":"wythe"},"51199":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.584}],"sh":[{"d":"VA House District 69","rep":"Mark Downey","w":0.541},{"d":"VA House District 86","rep":"Virgil Thornton","w":0.039}],"ss":[{"d":"VA Senate District 24","rep":"Danny Diggs","w":0.58}]},"munis":[],"slug":"york"},"51510":{"county":[],"districts":{"cd":[{"d":"VA-08","rep":"Donald S. Beyer, Jr.","w":0.999}],"sh":[{"d":"VA House District 5","rep":"Kirk McPike","w":0.58},{"d":"VA House District 4","rep":"Charniele Herring","w":0.224},{"d":"VA House District 3","rep":"Alfonso Lopez","w":0.193}],"ss":[{"d":"VA Senate District 39","rep":"Elizabeth Bennett-Parker","w":0.998}]},"munis":[{"m":"Alexandria","p":[{"n":"Justin Wilson","r":"Mayor, Alexandria, VA"}]}],"slug":"alexandria-city"},"51520":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":0.999}],"sh":[{"d":"VA House District 44","rep":"Israel O'Quinn","w":0.999}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":0.999}]},"munis":[{"m":"Bristol","p":[{"n":"Becky Nave","r":"Mayor, Bristol, VA"}]}],"slug":"bristol-city"},"51530":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":1.0}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[{"m":"Buena Vista","p":[{"n":"Tyson Cooper","r":"Mayor, Buena Vista, VA"}]}],"slug":"buena-vista-city"},"51540":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 54","rep":"Katrina Callsen","w":1.0}],"ss":[{"d":"VA Senate District 11","rep":"Creigh Deeds","w":1.0}]},"munis":[{"m":"Charlottesville","p":[{"n":"Lloyd Snook","r":"Mayor, Charlottesville, VA"}]}],"slug":"charlottesville-city"},"51550":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.862},{"d":"VA-03","rep":"Robert C. \"Bobby\" Scott","w":0.138}],"sh":[{"d":"VA House District 90","rep":"Jay Leftwich","w":0.532},{"d":"VA House District 89","rep":"Kacey Carnegie","w":0.347},{"d":"VA House District 91","rep":"Cliff Hayes","w":0.103},{"d":"VA House District 92","rep":"Bonita Anthony","w":0.017}],"ss":[{"d":"VA Senate District 19","rep":"Christie Craig","w":0.805},{"d":"VA Senate District 18","rep":"Louise Lucas","w":0.194}]},"munis":[{"m":"Chesapeake","p":[{"n":"Rick West","r":"Mayor, Chesapeake, VA"}]}],"slug":"chesapeake-city"},"51570":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 74","rep":"Mike Cherry","w":0.996}],"ss":[{"d":"VA Senate District 12","rep":"Glen Sturtevant","w":0.996}]},"munis":[{"m":"Colonial Heights","p":[{"n":"T. Gregory Kochuba","r":"Mayor, Colonial Heights, VA"}]}],"slug":"colonial-heights-city"},"51580":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":1.0}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[{"m":"Covington","p":[{"n":"Tom H. Sibold Jr.","r":"Mayor, Covington, VA"}]}],"slug":"covington-city"},"51590":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 49","rep":"Madison Whittle","w":0.999}],"ss":[{"d":"VA Senate District 9","rep":"Tammy Mulchi","w":1.0}]},"munis":[{"m":"Danville","p":[{"n":"Alonzo Jones","r":"Mayor, Danville, VA"}]}],"slug":"danville-city"},"51595":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 83","rep":"Otto Wachsmann","w":1.0}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":1.0}]},"munis":[{"m":"Emporia","p":[{"n":"Carolyn Carey","r":"Mayor, Emporia, VA"}]}],"slug":"emporia-city"},"51600":{"county":[],"districts":{"cd":[{"d":"VA-11","rep":"James R. Walkinshaw","w":1.0}],"sh":[{"d":"VA House District 11","rep":"Gretchen Bulova","w":0.999}],"ss":[{"d":"VA Senate District 37","rep":"Saddam Salim","w":0.998}]},"munis":[{"m":"Fairfax","p":[{"n":"Catherine S. Read","r":"Mayor, Fairfax, VA"}]}],"slug":"fairfax-city"},"51610":{"county":[],"districts":{"cd":[{"d":"VA-08","rep":"Donald S. Beyer, Jr.","w":1.0}],"sh":[{"d":"VA House District 13","rep":"Marcus Simon","w":1.0}],"ss":[{"d":"VA Senate District 37","rep":"Saddam Salim","w":1.0}]},"munis":[],"slug":"falls-church-city"},"51620":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":1.0}],"sh":[{"d":"VA House District 84","rep":"Nadarius Clark","w":0.998}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":1.0}]},"munis":[{"m":"Franklin","p":[{"n":"Robert \"Bobby\" Cutchins","r":"Mayor, Franklin, VA"}]}],"slug":"franklin-city"},"51630":{"county":[],"districts":{"cd":[{"d":"VA-07","rep":"Eugene Simon Vindman","w":1.0}],"sh":[{"d":"VA House District 65","rep":"Josh Cole","w":0.997}],"ss":[{"d":"VA Senate District 27","rep":"Tara Durant","w":0.998}]},"munis":[{"m":"Fredericksburg","p":[{"n":"Kerry P. Devine","r":"Mayor, Fredericksburg, VA"}]}],"slug":"fredericksburg-city"},"51640":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 47","rep":"Wren Williams","w":0.999}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[{"m":"Galax","p":[{"n":"Willie Greene","r":"Mayor, Galax, VA"}]}],"slug":"galax-city"},"51650":{"county":[],"districts":{"cd":[{"d":"VA-03","rep":"Robert C. \"Bobby\" Scott","w":0.427}],"sh":[{"d":"VA House District 87","rep":"Jeion Ward","w":0.215},{"d":"VA House District 86","rep":"Virgil Thornton","w":0.214}],"ss":[{"d":"VA Senate District 23","rep":"Mamie Locke","w":0.429}]},"munis":[{"m":"Hampton","p":[{"n":"Donnie Tuck","r":"Mayor, Hampton, VA"}]}],"slug":"hampton-city"},"51660":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 34","rep":"Tony Wilt","w":0.999}],"ss":[{"d":"VA Senate District 2","rep":"Mark Obenshain","w":1.0}]},"munis":[{"m":"Harrisonburg","p":[{"n":"Deanna R. Reed","r":"Mayor, Harrisonburg, VA"}]}],"slug":"harrisonburg-city"},"51670":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 75","rep":"Lindsey Dougherty","w":1.0}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":0.999}]},"munis":[{"m":"Hopewell","p":[{"n":"Patience Bennett","r":"Mayor, Hopewell, VA"}]}],"slug":"hopewell-city"},"51678":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 37","rep":"Terry Austin","w":0.996}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":1.0}]},"munis":[],"slug":"lexington-city"},"51680":{"county":[],"districts":{"cd":[{"d":"VA-05","rep":"John J. McGuire III","w":1.0}],"sh":[{"d":"VA House District 52","rep":"Wendell Walker","w":0.999}],"ss":[{"d":"VA Senate District 8","rep":"Mark Peake","w":1.0}]},"munis":[{"m":"Lynchburg","p":[{"n":"Larry Taylor","r":"Mayor, Lynchburg, VA"}]}],"slug":"lynchburg-city"},"51683":{"county":[],"districts":{"cd":[{"d":"VA-10","rep":"Suhas Subramanyam","w":1.0}],"sh":[],"ss":[{"d":"VA Senate District 30","rep":"Danica Roem","w":0.996}]},"munis":[],"slug":"manassas-city"},"51685":{"county":[],"districts":{"cd":[{"d":"VA-10","rep":"Suhas Subramanyam","w":1.0}],"sh":[],"ss":[{"d":"VA Senate District 30","rep":"Danica Roem","w":0.991},{"d":"VA Senate District 29","rep":"Jeremy McPike","w":0.009}]},"munis":[{"m":"Manassas Park","p":[{"n":"Jeanette Rishell","r":"Mayor, Manassas Park, VA"},{"n":"Michelle Davis-Younger","r":"Mayor, Manassas, VA"}]}],"slug":"manassas-park-city"},"51690":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 48","rep":"Eric Phillips","w":1.0}],"ss":[{"d":"VA Senate District 7","rep":"Bill Stanley","w":1.0}]},"munis":[{"m":"Martinsville","p":[{"n":"LC Jones","r":"Mayor, Martinsville, VA"}]}],"slug":"martinsville-city"},"51700":{"county":[],"districts":{"cd":[{"d":"VA-03","rep":"Robert C. \"Bobby\" Scott","w":0.6}],"sh":[{"d":"VA House District 70","rep":"Shelly Simonds","w":0.239},{"d":"VA House District 85","rep":"Cia Price","w":0.217},{"d":"VA House District 69","rep":"Mark Downey","w":0.13}],"ss":[{"d":"VA Senate District 24","rep":"Danny Diggs","w":0.402},{"d":"VA Senate District 23","rep":"Mamie Locke","w":0.185}]},"munis":[{"m":"Newport News","p":[{"n":"McKinley L. Price","r":"Mayor, Newport News, VA"}]}],"slug":"newport-news-city"},"51710":{"county":[],"districts":{"cd":[{"d":"VA-03","rep":"Robert C. \"Bobby\" Scott","w":0.639},{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.005}],"sh":[{"d":"VA House District 94","rep":"Phil Hernandez","w":0.222},{"d":"VA House District 93","rep":"Jackie Glass","w":0.219},{"d":"VA House District 92","rep":"Bonita Anthony","w":0.135},{"d":"VA House District 95","rep":"Alex Askew","w":0.044}],"ss":[{"d":"VA Senate District 21","rep":"Angelia Graves","w":0.569},{"d":"VA Senate District 20","rep":"Bill DeSteph","w":0.051}]},"munis":[],"slug":"norfolk-city"},"51720":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 45","rep":"Terry Kilgore","w":1.0}],"ss":[{"d":"VA Senate District 6","rep":"Todd Pillion","w":1.0}]},"munis":[],"slug":"norton-city"},"51730":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":1.0}],"sh":[{"d":"VA House District 82","rep":"Kim Adams","w":0.998}],"ss":[{"d":"VA Senate District 13","rep":"Lashrecse Aird","w":0.999}]},"munis":[{"m":"Petersburg","p":[{"n":"Samuel Parham","r":"Mayor, Petersburg, VA"}]}],"slug":"petersburg-city"},"51735":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":0.259}],"sh":[{"d":"VA House District 86","rep":"Virgil Thornton","w":0.25}],"ss":[{"d":"VA Senate District 24","rep":"Danny Diggs","w":0.25}]},"munis":[{"m":"Poquoson","p":[{"n":"David A. Hux","r":"Mayor, Poquoson, VA"}]}],"slug":"poquoson-city"},"51740":{"county":[],"districts":{"cd":[{"d":"VA-03","rep":"Robert C. \"Bobby\" Scott","w":0.841}],"sh":[{"d":"VA House District 88","rep":"Don Scott","w":0.685},{"d":"VA House District 91","rep":"Cliff Hayes","w":0.077}],"ss":[{"d":"VA Senate District 18","rep":"Louise Lucas","w":0.496},{"d":"VA Senate District 17","rep":"Emily Jordan","w":0.266}]},"munis":[{"m":"Portsmouth","p":[{"n":"Shannon E. Glover","r":"Mayor, Portsmouth, VA"}]}],"slug":"portsmouth-city"},"51750":{"county":[],"districts":{"cd":[{"d":"VA-09","rep":"H. Morgan Griffith","w":1.0}],"sh":[{"d":"VA House District 42","rep":"Jason Ballard","w":0.997}],"ss":[{"d":"VA Senate District 5","rep":"Travis Hackworth","w":1.0}]},"munis":[{"m":"Radford","p":[{"n":"David Horton","r":"Mayor, Radford, VA"}]}],"slug":"radford-city"},"51760":{"county":[],"districts":{"cd":[{"d":"VA-04","rep":"Jennifer L. McClellan","w":0.991},{"d":"VA-01","rep":"Robert J. Wittman","w":0.009}],"sh":[{"d":"VA House District 78","rep":"Betsy Carr","w":0.397},{"d":"VA House District 79","rep":"Rae Cousins","w":0.369},{"d":"VA House District 77","rep":"Charlie Schmidt","w":0.232}],"ss":[{"d":"VA Senate District 14","rep":"Lamont Bagby","w":0.713},{"d":"VA Senate District 15","rep":"Mike Jones","w":0.286}]},"munis":[{"m":"Richmond","p":[{"n":"Danny Avula","r":"Mayor, Richmond, VA"}]}],"slug":"richmond-city"},"51770":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.996}],"sh":[{"d":"VA House District 38","rep":"Sam Rasoul","w":0.867},{"d":"VA House District 40","rep":"Joe McNamara","w":0.132}],"ss":[{"d":"VA Senate District 4","rep":"David Suetterlein","w":1.0}]},"munis":[{"m":"Roanoke","p":[{"n":"Sherman Lea","r":"Mayor, Roanoke, VA"}]}],"slug":"roanoke-city"},"51775":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":0.995}],"sh":[{"d":"VA House District 40","rep":"Joe McNamara","w":1.0}],"ss":[{"d":"VA Senate District 4","rep":"David Suetterlein","w":0.998}]},"munis":[{"m":"Salem","p":[{"n":"Renée Ferris Turk","r":"Mayor, Salem, VA"}]}],"slug":"salem-city"},"51790":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 36","rep":"Ellen McLaughlin","w":0.999}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":0.999}]},"munis":[{"m":"Staunton","p":[{"n":"Michele Edwards","r":"Mayor, Staunton, VA"}]}],"slug":"staunton-city"},"51800":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.972}],"sh":[{"d":"VA House District 89","rep":"Kacey Carnegie","w":0.712},{"d":"VA House District 84","rep":"Nadarius Clark","w":0.258}],"ss":[{"d":"VA Senate District 17","rep":"Emily Jordan","w":0.97}]},"munis":[{"m":"Suffolk","p":[{"n":"Michael Duman","r":"Mayor, Suffolk, VA"}]}],"slug":"suffolk-city"},"51810":{"county":[],"districts":{"cd":[{"d":"VA-02","rep":"Jennifer A. Kiggans","w":0.615}],"sh":[{"d":"VA House District 98","rep":"Andrew Rice","w":0.399},{"d":"VA House District 99","rep":"Anne Ferrell Tata","w":0.081},{"d":"VA House District 97","rep":"Michael Feggans","w":0.04},{"d":"VA House District 100","rep":"Rob Bloxom","w":0.035},{"d":"VA House District 95","rep":"Alex Askew","w":0.031},{"d":"VA House District 96","rep":"Kelly Fowler","w":0.031}],"ss":[{"d":"VA Senate District 19","rep":"Christie Craig","w":0.408},{"d":"VA Senate District 20","rep":"Bill DeSteph","w":0.124},{"d":"VA Senate District 22","rep":"Aaron Rouse","w":0.084}]},"munis":[],"slug":"virginia-beach-city"},"51820":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 36","rep":"Ellen McLaughlin","w":0.998}],"ss":[{"d":"VA Senate District 3","rep":"Chris Head","w":0.998}]},"munis":[{"m":"Waynesboro","p":[{"n":"Kenny Lee","r":"Mayor, Waynesboro, VA"}]}],"slug":"waynesboro-city"},"51830":{"county":[],"districts":{"cd":[{"d":"VA-01","rep":"Robert J. Wittman","w":1.0}],"sh":[{"d":"VA House District 71","rep":"Jessica Anderson","w":0.996}],"ss":[{"d":"VA Senate District 24","rep":"Danny Diggs","w":0.995},{"d":"VA Senate District 26","rep":"Ryan McDougle","w":0.005}]},"munis":[{"m":"Williamsburg","p":[{"n":"Douglas G. Pons","r":"Mayor, Williamsburg, VA"}]}],"slug":"williamsburg-city"},"51840":{"county":[],"districts":{"cd":[{"d":"VA-06","rep":"Ben Cline","w":1.0}],"sh":[{"d":"VA House District 32","rep":"Bill Wiley","w":0.999}],"ss":[{"d":"VA Senate District 1","rep":"Timmy French","w":1.0}]},"munis":[{"m":"Winchester","p":[{"n":"John David Smith, Jr.","r":"Mayor, Winchester, VA"}]}],"slug":"winchester-city"},"53001":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":0.929},{"d":"WA-04","rep":"Dan Newhouse","w":0.071}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":0.932},{"d":"WA House District 13","rep":"Alex Ybarra, Tom Dent","w":0.068}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":0.932},{"d":"WA Senate District 13","rep":"Judy Warnick","w":0.068}]},"munis":[{"m":"Othello","p":[{"n":"Shawn Logan","r":"Mayor, Othello, WA"}]}],"slug":"adams"},"53003":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":0.999}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":1.0}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":1.0}]},"munis":[{"m":"Clarkston","p":[{"n":"Monika Lawrence","r":"Mayor, Clarkston, WA"}]}],"slug":"asotin"},"53005":{"county":[],"districts":{"cd":[{"d":"WA-04","rep":"Dan Newhouse","w":0.999}],"sh":[{"d":"WA House District 16","rep":"Mark Klicker, Skyler Rude","w":0.354},{"d":"WA House District 8","rep":"April Connors, Stephanie Barnard","w":0.289},{"d":"WA House District 14","rep":"Deb Manjarrez, Gloria Mendoza","w":0.246},{"d":"WA House District 15","rep":"Chris Corry, Jeremie Dufault","w":0.111}],"ss":[{"d":"WA Senate District 16","rep":"Perry Dozier","w":0.354},{"d":"WA Senate District 8","rep":"Matt Boehnke","w":0.289},{"d":"WA Senate District 14","rep":"Curtis King","w":0.246},{"d":"WA Senate District 15","rep":"Nikki Torres","w":0.111}]},"munis":[{"m":"Richland","p":[{"n":"Theresa Richardson","r":"Mayor, Richland, WA"}]}],"slug":"benton"},"53007":{"county":[],"districts":{"cd":[{"d":"WA-08","rep":"Kim Schrier","w":0.998}],"sh":[{"d":"WA House District 12","rep":"Brian Burnett, Mike Steele","w":0.999}],"ss":[{"d":"WA Senate District 12","rep":"Keith Goehner","w":0.999}]},"munis":[{"m":"Chelan","p":[{"n":"Erin McCardle","r":"Mayor, Chelan, WA"}]},{"m":"Leavenworth","p":[{"n":"Carl Florea","r":"Mayor, Leavenworth, WA"}]},{"m":"Wenatchee","p":[{"n":"Mike Poirier","r":"Mayor, Wenatchee, WA"}]}],"slug":"chelan"},"53009":{"county":[],"districts":{"cd":[{"d":"WA-06","rep":"Emily Randall","w":0.663}],"sh":[{"d":"WA House District 24","rep":"Adam Bernbaum, Steve Tharinger","w":0.662}],"ss":[{"d":"WA Senate District 24","rep":"Mike Chapman","w":0.662}]},"munis":[{"m":"Forks","p":[{"n":"Tim Fletcher","r":"Mayor, Forks, WA"}]},{"m":"Port Angeles","p":[{"n":"Kate Dexter","r":"Mayor, Port Angeles, WA"}]}],"slug":"clallam"},"53011":{"county":[],"districts":{"cd":[{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":1.0}],"sh":[{"d":"WA House District 20","rep":"Ed Orcutt, Peter Abbarno","w":0.573},{"d":"WA House District 17","rep":"Dave Stuebe, Kevin Waters","w":0.215},{"d":"WA House District 18","rep":"John Ley, Stephanie McClintock","w":0.125},{"d":"WA House District 49","rep":"Monica Stonier, Sharon Wylie","w":0.086}],"ss":[{"d":"WA Senate District 20","rep":"John Braun","w":0.573},{"d":"WA Senate District 17","rep":"Paul Harris","w":0.215},{"d":"WA Senate District 18","rep":"Adrian Cortes","w":0.125},{"d":"WA Senate District 49","rep":"Annette Cleveland","w":0.086}]},"munis":[{"m":"Battle Ground","p":[{"n":"Troy McCoy","r":"Mayor, Battle Ground, WA"}]},{"m":"Camas","p":[{"n":"Steve Hogan","r":"Mayor, Camas, WA"}]},{"m":"Vancouver","p":[{"n":"Anne McEnerny-Ogle","r":"Mayor, Vancouver, WA"}]}],"slug":"clark"},"53013":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":1.0}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":1.0}]},"munis":[],"slug":"columbia"},"53015":{"county":[],"districts":{"cd":[{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":1.0}],"sh":[{"d":"WA House District 20","rep":"Ed Orcutt, Peter Abbarno","w":0.778},{"d":"WA House District 19","rep":"Jim Walsh, Joel McEntire","w":0.221}],"ss":[{"d":"WA Senate District 20","rep":"John Braun","w":0.778},{"d":"WA Senate District 19","rep":"Jeff Wilson","w":0.221}]},"munis":[{"m":"Kelso","p":[{"n":"Veryl Anderson","r":"Mayor, Kelso, WA"}]},{"m":"Longview","p":[{"n":"Spencer Boudreau","r":"Mayor, Longview, WA"}]}],"slug":"cowlitz"},"53017":{"county":[],"districts":{"cd":[{"d":"WA-04","rep":"Dan Newhouse","w":0.998}],"sh":[{"d":"WA House District 7","rep":"Andrew Engell, Hunter Abell","w":0.921},{"d":"WA House District 13","rep":"Alex Ybarra, Tom Dent","w":0.079}],"ss":[{"d":"WA Senate District 7","rep":"Shelly Short","w":0.921},{"d":"WA Senate District 13","rep":"Judy Warnick","w":0.079}]},"munis":[{"m":"Bridgeport","p":[{"n":"Sergio Orozco","r":"Mayor, Bridgeport, WA"}]}],"slug":"douglas"},"53019":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 7","rep":"Andrew Engell, Hunter Abell","w":1.0}],"ss":[{"d":"WA Senate District 7","rep":"Shelly Short","w":1.0}]},"munis":[],"slug":"ferry"},"53021":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":0.899},{"d":"WA-04","rep":"Dan Newhouse","w":0.101}],"sh":[{"d":"WA House District 16","rep":"Mark Klicker, Skyler Rude","w":0.983},{"d":"WA House District 14","rep":"Deb Manjarrez, Gloria Mendoza","w":0.009},{"d":"WA House District 8","rep":"April Connors, Stephanie Barnard","w":0.008}],"ss":[{"d":"WA Senate District 16","rep":"Perry Dozier","w":0.983},{"d":"WA Senate District 14","rep":"Curtis King","w":0.009},{"d":"WA Senate District 8","rep":"Matt Boehnke","w":0.008}]},"munis":[{"m":"Pasco","p":[{"n":"Pete Serrano","r":"Mayor, Pasco, WA"}]}],"slug":"franklin"},"53023":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":1.0}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":1.0}]},"munis":[],"slug":"garfield"},"53025":{"county":[],"districts":{"cd":[{"d":"WA-04","rep":"Dan Newhouse","w":1.0}],"sh":[{"d":"WA House District 13","rep":"Alex Ybarra, Tom Dent","w":0.921},{"d":"WA House District 16","rep":"Mark Klicker, Skyler Rude","w":0.079}],"ss":[{"d":"WA Senate District 13","rep":"Judy Warnick","w":0.921},{"d":"WA Senate District 16","rep":"Perry Dozier","w":0.079}]},"munis":[{"m":"Electric City","p":[{"n":"Diane Kohout","r":"Mayor, Electric City, WA"}]},{"m":"Ephrata","p":[{"n":"Bruce Reim","r":"Mayor, Ephrata, WA"}]},{"m":"Mattawa","p":[{"n":"Maria M. Celaya","r":"Mayor, Mattawa, WA"}]},{"m":"Moses Lake","p":[{"n":"Dustin Swartz","r":"Mayor, Moses Lake, WA"}]},{"m":"Quincy","p":[{"n":"Paul Worley","r":"Mayor, Quincy, WA"}]}],"slug":"grant"},"53027":{"county":[],"districts":{"cd":[{"d":"WA-06","rep":"Emily Randall","w":0.871}],"sh":[{"d":"WA House District 24","rep":"Adam Bernbaum, Steve Tharinger","w":0.613},{"d":"WA House District 19","rep":"Jim Walsh, Joel McEntire","w":0.258}],"ss":[{"d":"WA Senate District 24","rep":"Mike Chapman","w":0.613},{"d":"WA Senate District 19","rep":"Jeff Wilson","w":0.258}]},"munis":[{"m":"Aberdeen","p":[{"n":"Douglas Orr","r":"Mayor, Aberdeen, WA"}]},{"m":"Hoquiam","p":[{"n":"Ben Winkelman","r":"Mayor, Hoquiam, WA"}]},{"m":"Westport","p":[{"n":"Ed Welter","r":"Mayor, Westport, WA"}]}],"slug":"grays-harbor"},"53029":{"county":[],"districts":{"cd":[{"d":"WA-02","rep":"Rick Larsen","w":0.411}],"sh":[{"d":"WA House District 10","rep":"Clyde Shavers, Dave Paul","w":0.41}],"ss":[{"d":"WA Senate District 10","rep":"Ron Muzzall","w":0.41}]},"munis":[{"m":"Oak Harbor","p":[{"n":"Ronnie Wright","r":"Mayor, Oak Harbor, WA"}]}],"slug":"island"},"53031":{"county":[],"districts":{"cd":[{"d":"WA-06","rep":"Emily Randall","w":0.836}],"sh":[{"d":"WA House District 24","rep":"Adam Bernbaum, Steve Tharinger","w":0.834}],"ss":[{"d":"WA Senate District 24","rep":"Mike Chapman","w":0.834}]},"munis":[{"m":"Port Townsend","p":[{"n":"David Faber","r":"Mayor, Port Townsend, WA"}]}],"slug":"jefferson"},"53033":{"county":[],"districts":{"cd":[{"d":"WA-08","rep":"Kim Schrier","w":0.761},{"d":"WA-09","rep":"Adam Smith","w":0.087},{"d":"WA-07","rep":"Pramila Jayapal","w":0.066},{"d":"WA-01","rep":"Suzan K. DelBene","w":0.037}],"sh":[{"d":"WA House District 12","rep":"Brian Burnett, Mike Steele","w":0.347},{"d":"WA House District 5","rep":"Lisa Callan, Zach Hall","w":0.334},{"d":"WA House District 45","rep":"Larry Springer, Roger Goodman","w":0.045},{"d":"WA House District 34","rep":"Brianna Thomas, Joe Fitzgibbon","w":0.029},{"d":"WA House District 47","rep":"Chris Stearns, Debra Entenman","w":0.028},{"d":"WA House District 41","rep":"Janice Zahn, My-Linh Thai","w":0.026},{"d":"WA House District 33","rep":"Edwin Obras, Mia Gregerson","w":0.02},{"d":"WA House District 11","rep":"David Hackney, Steve Bergquist","w":0.018},{"d":"WA House District 48","rep":"Amy Walen, Osman Salahuddin","w":0.018},{"d":"WA House District 30","rep":"Jamila Taylor, Kristine Reeves","w":0.017},{"d":"WA House District 31","rep":"Drew Stokesbary, Josh Penner","w":0.015},{"d":"WA House District 1","rep":"Davina Duerr, Shelley Kloba","w":0.013},{"d":"WA House District 37","rep":"Chipalo Street, Sharon Tomiko Santos","w":0.011},{"d":"WA House District 46","rep":"Darya Farivar, Gerry Pollet","w":0.009},{"d":"WA House District 36","rep":"Julia Reed, Liz Berry","w":0.007},{"d":"WA House District 43","rep":"Nicole Macri, Shaun Scott","w":0.006},{"d":"WA House District 32","rep":"Cindy Ryu, Lauren Davis","w":0.006}],"ss":[{"d":"WA Senate District 12","rep":"Keith Goehner","w":0.347},{"d":"WA Senate District 5","rep":"Victoria Hunt","w":0.334},{"d":"WA Senate District 45","rep":"Manka Dhingra","w":0.045},{"d":"WA Senate District 34","rep":"Emily Alvarado","w":0.029},{"d":"WA Senate District 47","rep":"Claudia Kauffman","w":0.028},{"d":"WA Senate District 41","rep":"Lisa Wellman","w":0.026},{"d":"WA Senate District 33","rep":"Tina Orwall","w":0.02},{"d":"WA Senate District 11","rep":"Bob Hasegawa","w":0.018},{"d":"WA Senate District 48","rep":"Vandana Slatter","w":0.018},{"d":"WA Senate District 30","rep":"Claire Wilson","w":0.017},{"d":"WA Senate District 31","rep":"Phil Fortunato","w":0.015},{"d":"WA Senate District 1","rep":"Derek Stanford","w":0.013},{"d":"WA Senate District 37","rep":"Rebecca Saldaña","w":0.011},{"d":"WA Senate District 46","rep":"Javier Valdez","w":0.009},{"d":"WA Senate District 36","rep":"Noel Frame","w":0.007},{"d":"WA Senate District 43","rep":"Jamie Pedersen","w":0.006},{"d":"WA Senate District 32","rep":"Jesse Salomon","w":0.006}]},"munis":[{"m":"Algona","p":[{"n":"Troy Linnell","r":"Mayor, Algona, WA"}]},{"m":"Auburn","p":[{"n":"Nancy Backus","r":"Mayor, Auburn, WA"}]},{"m":"Bellevue","p":[{"n":"Lynne Robinson","r":"Mayor, Bellevue, WA"}]},{"m":"Bothell","p":[{"n":"Mason Thompson","r":"Mayor, Bothell, WA"}]},{"m":"Burien","p":[{"n":"Kevin Schilling","r":"Mayor, Burien, WA"}]},{"m":"Carnation","p":[{"n":"Jim Ribail","r":"Mayor, Carnation, WA"}]},{"m":"Des Moines","p":[{"n":"Matt Mahoney","r":"Mayor, Des Moines, WA"}]},{"m":"Duvall","p":[{"n":"Amy Ockerlander","r":"Mayor, Duvall, WA"}]},{"m":"Enumclaw","p":[{"n":"Jan Molinaro","r":"Mayor, Enumclaw, WA"}]},{"m":"Federal Way","p":[{"n":"Jim Ferrell","r":"Mayor, Federal Way, WA"}]},{"m":"Issaquah","p":[{"n":"Mary Lou Pauly","r":"Mayor, Issaquah, WA"}]},{"m":"Kenmore","p":[{"n":"Nigel Herbig","r":"Mayor, Kenmore, WA"}]},{"m":"Kent","p":[{"n":"Dana Ralph","r":"Mayor, Kent, WA"}]},{"m":"Kirkland","p":[{"n":"Kelli Curtis","r":"Mayor, Kirkland, WA"}]},{"m":"Lake Forest Park","p":[{"n":"Tom French","r":"Mayor, Lake Forest Park, WA"}]},{"m":"Maple Valley","p":[{"n":"Sean P. Kelly","r":"Mayor, Maple Valley, WA"}]},{"m":"Mercer Island","p":[{"n":"Salim Nice","r":"Mayor, Mercer Island, WA"}]},{"m":"North Bend","p":[{"n":"Mary Miller","r":"Mayor, North Bend, WA"}]},{"m":"Redmond","p":[{"n":"Angela Birney","r":"Mayor, Redmond, WA"}]},{"m":"Renton","p":[{"n":"Armondo Pavone","r":"Mayor, Renton, WA"}]},{"m":"Seatac","p":[{"n":"Mohamed Egal","r":"Mayor, SeaTac, WA"}]},{"m":"Seattle","p":[{"n":"Katie Wilson","r":"Mayor, Seattle, WA"}]},{"m":"Shoreline","p":[{"n":"Chris Roberts","r":"Mayor, Shoreline, WA"}]},{"m":"Tukwila","p":[{"n":"Thomas McLeod","r":"Mayor, Tukwila, WA"}]},{"m":"Woodinville","p":[{"n":"Mike Millman","r":"Mayor, Woodinville, WA"}]}],"slug":"king"},"53035":{"county":[],"districts":{"cd":[{"d":"WA-06","rep":"Emily Randall","w":0.778}],"sh":[{"d":"WA House District 23","rep":"Greg Nance, Tarra Simmons","w":0.312},{"d":"WA House District 35","rep":"Dan Griffey, Travis Couture","w":0.228},{"d":"WA House District 26","rep":"Adison Richards, Michelle Valdez","w":0.185}],"ss":[{"d":"WA Senate District 23","rep":"Drew Hansen","w":0.312},{"d":"WA Senate District 35","rep":"Drew MacEwen","w":0.228},{"d":"WA Senate District 26","rep":"Deb Krishnadasan","w":0.185}]},"munis":[{"m":"Bremerton","p":[{"n":"Greg Wheeler","r":"Mayor, Bremerton, WA"}]}],"slug":"kitsap"},"53037":{"county":[],"districts":{"cd":[{"d":"WA-08","rep":"Kim Schrier","w":0.999}],"sh":[{"d":"WA House District 13","rep":"Alex Ybarra, Tom Dent","w":0.999}],"ss":[{"d":"WA Senate District 13","rep":"Judy Warnick","w":0.999}]},"munis":[{"m":"Cle Elum","p":[{"n":"Matthew Lundh","r":"Mayor, Cle Elum, WA"}]},{"m":"Ellensburg","p":[{"n":"Rich Elliott","r":"Mayor, Ellensburg, WA"}]}],"slug":"kittitas"},"53039":{"county":[],"districts":{"cd":[{"d":"WA-04","rep":"Dan Newhouse","w":1.0}],"sh":[{"d":"WA House District 14","rep":"Deb Manjarrez, Gloria Mendoza","w":0.671},{"d":"WA House District 17","rep":"Dave Stuebe, Kevin Waters","w":0.329}],"ss":[{"d":"WA Senate District 14","rep":"Curtis King","w":0.671},{"d":"WA Senate District 17","rep":"Paul Harris","w":0.329}]},"munis":[{"m":"White Salmon","p":[{"n":"Marla Keethler","r":"Mayor, White Salmon, WA"}]}],"slug":"klickitat"},"53041":{"county":[],"districts":{"cd":[{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":0.999}],"sh":[{"d":"WA House District 20","rep":"Ed Orcutt, Peter Abbarno","w":0.769},{"d":"WA House District 19","rep":"Jim Walsh, Joel McEntire","w":0.231}],"ss":[{"d":"WA Senate District 20","rep":"John Braun","w":0.769},{"d":"WA Senate District 19","rep":"Jeff Wilson","w":0.231}]},"munis":[{"m":"Centralia","p":[{"n":"Kelly Smith Johnston","r":"Mayor, Centralia, WA"}]},{"m":"Chehalis","p":[{"n":"Tony Ketchum","r":"Mayor, Chehalis, WA"}]}],"slug":"lewis"},"53043":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":1.0}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":1.0}]},"munis":[{"m":"Davenport","p":[{"n":"Jonathan Chapman","r":"Mayor, Davenport, WA"}]}],"slug":"lincoln"},"53045":{"county":[],"districts":{"cd":[{"d":"WA-06","rep":"Emily Randall","w":0.953}],"sh":[{"d":"WA House District 35","rep":"Dan Griffey, Travis Couture","w":0.95}],"ss":[{"d":"WA Senate District 35","rep":"Drew MacEwen","w":0.95}]},"munis":[],"slug":"mason"},"53047":{"county":[],"districts":{"cd":[{"d":"WA-04","rep":"Dan Newhouse","w":0.999}],"sh":[{"d":"WA House District 7","rep":"Andrew Engell, Hunter Abell","w":1.0}],"ss":[{"d":"WA Senate District 7","rep":"Shelly Short","w":1.0}]},"munis":[{"m":"Brewster","p":[{"n":"Art Smyth","r":"Mayor, Brewster, WA"}]},{"m":"Okanogan","p":[{"n":"Wayne L. Turner","r":"Mayor, Okanogan, WA"}]},{"m":"Omak","p":[{"n":"Cindy Gagné","r":"Mayor, Omak, WA"}]},{"m":"Oroville","p":[{"n":"Ed Naillon","r":"Mayor, Oroville, WA"}]},{"m":"Pateros","p":[{"n":"Kelly Hook","r":"Mayor, Pateros, WA"}]},{"m":"Tonasket","p":[{"n":"René Maldonado","r":"Mayor, Tonasket, WA"}]}],"slug":"okanogan"},"53049":{"county":[],"districts":{"cd":[{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":0.77}],"sh":[{"d":"WA House District 19","rep":"Jim Walsh, Joel McEntire","w":0.769}],"ss":[{"d":"WA Senate District 19","rep":"Jeff Wilson","w":0.769}]},"munis":[],"slug":"pacific"},"53051":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 7","rep":"Andrew Engell, Hunter Abell","w":1.0}],"ss":[{"d":"WA Senate District 7","rep":"Shelly Short","w":1.0}]},"munis":[],"slug":"pend-oreille"},"53053":{"county":[],"districts":{"cd":[{"d":"WA-08","rep":"Kim Schrier","w":0.695},{"d":"WA-10","rep":"Marilyn Strickland","w":0.155},{"d":"WA-06","rep":"Emily Randall","w":0.101}],"sh":[{"d":"WA House District 2","rep":"Andrew Barkis, Matt Marshall","w":0.412},{"d":"WA House District 31","rep":"Drew Stokesbary, Josh Penner","w":0.293},{"d":"WA House District 28","rep":"Dan Bronoske, Mari Leavitt","w":0.09},{"d":"WA House District 26","rep":"Adison Richards, Michelle Valdez","w":0.064},{"d":"WA House District 25","rep":"Cyndy Jacobsen, Michael Keaton","w":0.037},{"d":"WA House District 27","rep":"Jake Fey, Laurie Jinkins","w":0.025},{"d":"WA House District 29","rep":"Melanie Morgan, Sharlett Mena","w":0.019}],"ss":[{"d":"WA Senate District 2","rep":"Jim McCune","w":0.412},{"d":"WA Senate District 31","rep":"Phil Fortunato","w":0.293},{"d":"WA Senate District 28","rep":"T'wina Nobles","w":0.09},{"d":"WA Senate District 26","rep":"Deb Krishnadasan","w":0.064},{"d":"WA Senate District 25","rep":"Chris Gildon","w":0.037},{"d":"WA Senate District 27","rep":"Yasmin Trudeau","w":0.025},{"d":"WA Senate District 29","rep":"Steve Conway","w":0.019}]},"munis":[{"m":"Buckley","p":[{"n":"Beau Burkett","r":"Mayor, Buckley, WA"}]},{"m":"Edgewood","p":[{"n":"Dave Olson","r":"Mayor, Edgewood, WA"}]},{"m":"Fife","p":[{"n":"Kim Roscoe","r":"Mayor, Fife, WA"}]},{"m":"Gig Harbor","p":[{"n":"Tracie Markley","r":"Mayor, Gig Harbor, WA"}]},{"m":"Orting","p":[{"n":"Joshua Penner","r":"Mayor, Orting, WA"}]},{"m":"Roy","p":[{"n":"Kimber Ivy","r":"Mayor, Roy, WA"}]},{"m":"Tacoma","p":[{"n":"Victoria Woodards","r":"Mayor, Tacoma, WA"}]}],"slug":"pierce"},"53055":{"county":[],"districts":{"cd":[{"d":"WA-02","rep":"Rick Larsen","w":0.413}],"sh":[{"d":"WA House District 40","rep":"Alex Ramel, Debra Lekanoff","w":0.309}],"ss":[{"d":"WA Senate District 40","rep":"Liz Lovelett","w":0.309}]},"munis":[],"slug":"san-juan"},"53057":{"county":[],"districts":{"cd":[{"d":"WA-02","rep":"Rick Larsen","w":0.916}],"sh":[{"d":"WA House District 39","rep":"Carolyn Eslick, Sam Low","w":0.794},{"d":"WA House District 40","rep":"Alex Ramel, Debra Lekanoff","w":0.073},{"d":"WA House District 10","rep":"Clyde Shavers, Dave Paul","w":0.049}],"ss":[{"d":"WA Senate District 39","rep":"Keith Wagoner","w":0.794},{"d":"WA Senate District 40","rep":"Liz Lovelett","w":0.073},{"d":"WA Senate District 10","rep":"Ron Muzzall","w":0.049}]},"munis":[{"m":"Anacortes","p":[{"n":"Matt Miller","r":"Mayor, Anacortes, WA"}]},{"m":"Mount Vernon","p":[{"n":"Peter Donovan","r":"Mayor, Mount Vernon, WA"}]}],"slug":"skagit"},"53059":{"county":[],"districts":{"cd":[{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":1.0}],"sh":[{"d":"WA House District 17","rep":"Dave Stuebe, Kevin Waters","w":1.0}],"ss":[{"d":"WA Senate District 17","rep":"Paul Harris","w":1.0}]},"munis":[],"slug":"skamania"},"53061":{"county":[],"districts":{"cd":[{"d":"WA-08","rep":"Kim Schrier","w":0.754},{"d":"WA-01","rep":"Suzan K. DelBene","w":0.119},{"d":"WA-02","rep":"Rick Larsen","w":0.089}],"sh":[{"d":"WA House District 39","rep":"Carolyn Eslick, Sam Low","w":0.588},{"d":"WA House District 12","rep":"Brian Burnett, Mike Steele","w":0.207},{"d":"WA House District 44","rep":"April Berg, Brandy Donaghy","w":0.049},{"d":"WA House District 10","rep":"Clyde Shavers, Dave Paul","w":0.046},{"d":"WA House District 38","rep":"Julio Cortes, Mary Fosse","w":0.037},{"d":"WA House District 21","rep":"Lillian Ortiz-Self, Strom Peterson","w":0.016},{"d":"WA House District 1","rep":"Davina Duerr, Shelley Kloba","w":0.011},{"d":"WA House District 32","rep":"Cindy Ryu, Lauren Davis","w":0.007}],"ss":[{"d":"WA Senate District 39","rep":"Keith Wagoner","w":0.588},{"d":"WA Senate District 12","rep":"Keith Goehner","w":0.207},{"d":"WA Senate District 44","rep":"John Lovick","w":0.049},{"d":"WA Senate District 10","rep":"Ron Muzzall","w":0.046},{"d":"WA Senate District 38","rep":"June Robinson","w":0.037},{"d":"WA Senate District 21","rep":"Marko Liias","w":0.016},{"d":"WA Senate District 1","rep":"Derek Stanford","w":0.011},{"d":"WA Senate District 32","rep":"Jesse Salomon","w":0.007}]},"munis":[{"m":"Arlington","p":[{"n":"Barbara Tolbert","r":"Mayor, Arlington, WA"}]},{"m":"Edmonds","p":[{"n":"Mike Rosen","r":"Mayor, Edmonds, WA"}]},{"m":"Everett","p":[{"n":"Cassie Franklin","r":"Mayor, Everett, WA"}]},{"m":"Granite Falls","p":[{"n":"Matt Hartman","r":"Mayor, Granite Falls, WA"}]},{"m":"Marysville","p":[{"n":"Jon Nehring","r":"Mayor, Marysville, WA"}]},{"m":"Mountlake Terrace","p":[{"n":"Kyoko Matsumoto Wright","r":"Mayor, Mountlake Terrace, WA"}]},{"m":"Snohomish","p":[{"n":"Linda Redmon","r":"Mayor, Snohomish, WA"}]},{"m":"Stanwood","p":[{"n":"Sid Roberts","r":"Mayor, Stanwood, WA"}]}],"slug":"snohomish"},"53063":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":0.483},{"d":"WA House District 6","rep":"Jenny Graham, Mike Volz","w":0.233},{"d":"WA House District 4","rep":"Rob Chase, Suzanne Schmidt","w":0.225},{"d":"WA House District 7","rep":"Andrew Engell, Hunter Abell","w":0.036},{"d":"WA House District 3","rep":"Natasha Hill, Timm Ormsby","w":0.023}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":0.483},{"d":"WA Senate District 6","rep":"Jeff Holy","w":0.233},{"d":"WA Senate District 4","rep":"Leonard Christian","w":0.225},{"d":"WA Senate District 7","rep":"Shelly Short","w":0.036},{"d":"WA Senate District 3","rep":"Marcus Riccelli","w":0.023}]},"munis":[{"m":"Cheney","p":[{"n":"Chris Grover","r":"Mayor, Cheney, WA"}]},{"m":"Deer Park","p":[{"n":"Tim Verzal","r":"Mayor, Deer Park, WA"}]},{"m":"Liberty Lake","p":[{"n":"Cris Kaminskas","r":"Mayor, Liberty Lake, WA"}]},{"m":"Medical Lake","p":[{"n":"Terri Cooper","r":"Mayor, Medical Lake, WA"}]},{"m":"Spokane","p":[{"n":"Lisa Brown","r":"Mayor, Spokane, WA"}]},{"m":"Spokane Valley","p":[{"n":"Pam Haley","r":"Mayor, Spokane Valley, WA"}]}],"slug":"spokane"},"53065":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 7","rep":"Andrew Engell, Hunter Abell","w":1.0}],"ss":[{"d":"WA Senate District 7","rep":"Shelly Short","w":1.0}]},"munis":[],"slug":"stevens"},"53067":{"county":[],"districts":{"cd":[{"d":"WA-10","rep":"Marilyn Strickland","w":0.615},{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":0.368}],"sh":[{"d":"WA House District 35","rep":"Dan Griffey, Travis Couture","w":0.399},{"d":"WA House District 2","rep":"Andrew Barkis, Matt Marshall","w":0.342},{"d":"WA House District 22","rep":"Beth Doglio, Lisa Parshley","w":0.155},{"d":"WA House District 20","rep":"Ed Orcutt, Peter Abbarno","w":0.047},{"d":"WA House District 19","rep":"Jim Walsh, Joel McEntire","w":0.037}],"ss":[{"d":"WA Senate District 35","rep":"Drew MacEwen","w":0.399},{"d":"WA Senate District 2","rep":"Jim McCune","w":0.342},{"d":"WA Senate District 22","rep":"Jess Bateman","w":0.155},{"d":"WA Senate District 20","rep":"John Braun","w":0.047},{"d":"WA Senate District 19","rep":"Jeff Wilson","w":0.037}]},"munis":[{"m":"Lacey","p":[{"n":"Andy Ryder","r":"Mayor, Lacey, WA"}]},{"m":"Olympia","p":[{"n":"Dontae Payne","r":"Mayor, Olympia, WA"}]}],"slug":"thurston"},"53069":{"county":[],"districts":{"cd":[{"d":"WA-03","rep":"Marie Gluesenkamp Perez","w":0.964}],"sh":[{"d":"WA House District 19","rep":"Jim Walsh, Joel McEntire","w":0.965}],"ss":[{"d":"WA Senate District 19","rep":"Jeff Wilson","w":0.965}]},"munis":[],"slug":"wahkiakum"},"53071":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 16","rep":"Mark Klicker, Skyler Rude","w":1.0}],"ss":[{"d":"WA Senate District 16","rep":"Perry Dozier","w":1.0}]},"munis":[{"m":"Walla Walla","p":[{"n":"Tom Scribner","r":"Mayor, Walla Walla, WA"}]}],"slug":"walla-walla"},"53073":{"county":[],"districts":{"cd":[{"d":"WA-02","rep":"Rick Larsen","w":0.866}],"sh":[{"d":"WA House District 42","rep":"Alicia Rule, Joe Timmons","w":0.823},{"d":"WA House District 40","rep":"Alex Ramel, Debra Lekanoff","w":0.043}],"ss":[{"d":"WA Senate District 42","rep":"Sharon Shewmake","w":0.823},{"d":"WA Senate District 40","rep":"Liz Lovelett","w":0.043}]},"munis":[{"m":"Bellingham","p":[{"n":"Kim Lund","r":"Mayor, Bellingham, WA"}]},{"m":"Ferndale","p":[{"n":"Greg Hansen","r":"Mayor, Ferndale, WA"}]}],"slug":"whatcom"},"53075":{"county":[],"districts":{"cd":[{"d":"WA-05","rep":"Michael Baumgartner","w":1.0}],"sh":[{"d":"WA House District 9","rep":"Joe Schmick, Mary Dye","w":1.0}],"ss":[{"d":"WA Senate District 9","rep":"Mark Schoesler","w":1.0}]},"munis":[{"m":"Colfax","p":[{"n":"Jim Retzer","r":"Mayor, Colfax, WA"}]},{"m":"Palouse","p":[{"n":"Tim Sievers","r":"Mayor, Palouse, WA"}]},{"m":"Pullman","p":[{"n":"Francis A. Benjamin","r":"Mayor, Pullman, WA"}]}],"slug":"whitman"},"53077":{"county":[],"districts":{"cd":[{"d":"WA-04","rep":"Dan Newhouse","w":0.999}],"sh":[{"d":"WA House District 14","rep":"Deb Manjarrez, Gloria Mendoza","w":0.512},{"d":"WA House District 15","rep":"Chris Corry, Jeremie Dufault","w":0.488}],"ss":[{"d":"WA Senate District 14","rep":"Curtis King","w":0.512},{"d":"WA Senate District 15","rep":"Nikki Torres","w":0.488}]},"munis":[{"m":"Sunnyside","p":[{"n":"Dean R. Broersma","r":"Mayor, Sunnyside, WA"}]},{"m":"Yakima","p":[{"n":"Patricia Byers","r":"Mayor, Yakima, WA"}]}],"slug":"yakima"},"54001":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 68","rep":"Chris Phillips","w":1.0}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[{"m":"Philippi","p":[{"n":"Philip Bowers","r":"Mayor, Philippi, WV"}]}],"slug":"barbour"},"54003":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 91","rep":"Ian Masters","w":0.243},{"d":"WV House District 90","rep":"George Miller","w":0.161},{"d":"WV House District 92","rep":"Mike Hite","w":0.157},{"d":"WV House District 97","rep":"Chris Anders","w":0.108},{"d":"WV House District 93","rep":"Mike Hornby","w":0.105},{"d":"WV House District 96","rep":"Lisa White","w":0.088},{"d":"WV House District 94","rep":"Donald Bennett","w":0.069},{"d":"WV House District 95","rep":"Chuck Horst","w":0.068}],"ss":[{"d":"WV Senate District 15","rep":"Darren Thorne, Tom Willis","w":0.656},{"d":"WV Senate District 16","rep":"Jason Barrett, Patricia Rucker","w":0.344}]},"munis":[{"m":"Martinsburg","p":[{"n":"Kevin Knowles","r":"Mayor, Martinsburg, WV"}]}],"slug":"berkeley"},"54005":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 32","rep":"Josh Holstein","w":0.921},{"d":"WV House District 31","rep":"Margitta Mazzocchi","w":0.078}],"ss":[{"d":"WV Senate District 7","rep":"Rupie Phillips, Zack Maynard","w":1.0}]},"munis":[],"slug":"boone"},"54007":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.999}],"sh":[{"d":"WV House District 63","rep":"Lori Dittman","w":1.0}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[],"slug":"braxton"},"54009":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 3","rep":"Jimmy Willis","w":0.639},{"d":"WV House District 2","rep":"Mark Zatezalo","w":0.264},{"d":"WV House District 1","rep":"Pat McGeehan","w":0.097}],"ss":[{"d":"WV Senate District 1","rep":"Laura Chapman, Ryan Weld","w":1.0}]},"munis":[],"slug":"brooke"},"54011":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 22","rep":"Daniel Linville","w":0.501},{"d":"WV House District 23","rep":"Evan Worrell","w":0.26},{"d":"WV House District 26","rep":"Matthew Rohrbach","w":0.095},{"d":"WV House District 24","rep":"Patrick Lucas","w":0.073},{"d":"WV House District 27","rep":"Michael Amos","w":0.055},{"d":"WV House District 25","rep":"Sean Hornbuckle","w":0.016}],"ss":[{"d":"WV Senate District 4","rep":"Amy Grady, Eric Tarr","w":0.568},{"d":"WV Senate District 5","rep":"Mike Woelfel, Scott Fuller","w":0.432}]},"munis":[{"m":"Huntington","p":[{"n":"Patrick Farrell","r":"Mayor, Huntington, WV"}]}],"slug":"cabell"},"54013":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.998}],"sh":[{"d":"WV House District 62","rep":"Roger Hanshaw","w":1.0}],"ss":[{"d":"WV Senate District 12","rep":"Ben Queen, Patrick Martin","w":1.0}]},"munis":[],"slug":"calhoun"},"54015":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 62","rep":"Roger Hanshaw","w":1.0}],"ss":[{"d":"WV Senate District 8","rep":"Glenn Jeffries, Kevan Bartlett","w":1.0}]},"munis":[],"slug":"clay"},"54017":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 8","rep":"Bill Bell","w":1.0}],"ss":[{"d":"WV Senate District 2","rep":"Charles Clements, Chris Rose","w":1.0}]},"munis":[],"slug":"doddridge"},"54019":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 51","rep":"Marshall Clay","w":0.553},{"d":"WV House District 50","rep":"Elliott Pritt","w":0.35},{"d":"WV House District 45","rep":"Eric Brooks","w":0.094}],"ss":[{"d":"WV Senate District 10","rep":"Jack Woodrum, Vince Deeds","w":0.859},{"d":"WV Senate District 9","rep":"Brian Helton, Rollan Roberts","w":0.141}]},"munis":[],"slug":"fayette"},"54021":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.997}],"sh":[{"d":"WV House District 62","rep":"Roger Hanshaw","w":0.699},{"d":"WV House District 63","rep":"Lori Dittman","w":0.301}],"ss":[{"d":"WV Senate District 12","rep":"Ben Queen, Patrick Martin","w":1.0}]},"munis":[],"slug":"gilmer"},"54023":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.999}],"sh":[{"d":"WV House District 85","rep":"John Paul Hott","w":1.0}],"ss":[{"d":"WV Senate District 14","rep":"Jay Taylor, Randy Smith","w":1.0}]},"munis":[],"slug":"grant"},"54025":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 47","rep":"Ray Canterbury","w":0.448},{"d":"WV House District 46","rep":"Jeff Campbell","w":0.35},{"d":"WV House District 48","rep":"Greg Watt","w":0.201}],"ss":[{"d":"WV Senate District 10","rep":"Jack Woodrum, Vince Deeds","w":1.0}]},"munis":[],"slug":"greenbrier"},"54027":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 89","rep":"David Cannon","w":0.586},{"d":"WV House District 88","rep":"Rick Hillenbrand","w":0.413}],"ss":[{"d":"WV Senate District 15","rep":"Darren Thorne, Tom Willis","w":1.0}]},"munis":[{"m":"Romney","p":[{"n":"Beverly C. Keadle","r":"Mayor, Romney, WV"}]}],"slug":"hampshire"},"54029":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.998}],"sh":[{"d":"WV House District 1","rep":"Pat McGeehan","w":0.889},{"d":"WV House District 2","rep":"Mark Zatezalo","w":0.11}],"ss":[{"d":"WV Senate District 1","rep":"Laura Chapman, Ryan Weld","w":0.998}]},"munis":[],"slug":"hancock"},"54031":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 86","rep":"Bryan Ward","w":0.999}],"ss":[{"d":"WV Senate District 14","rep":"Jay Taylor, Randy Smith","w":0.999}]},"munis":[],"slug":"hardy"},"54033":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 69","rep":"Keith Marple","w":0.51},{"d":"WV House District 72","rep":"Clay Riley","w":0.355},{"d":"WV House District 71","rep":"Laura Kimble","w":0.114},{"d":"WV House District 70","rep":"Mickey Petitto","w":0.02}],"ss":[{"d":"WV Senate District 12","rep":"Ben Queen, Patrick Martin","w":1.0}]},"munis":[{"m":"Clarksburg","p":[{"n":"Jim Malfregeot","r":"Mayor, Clarksburg, WV"}]}],"slug":"harrison"},"54035":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 16","rep":"Joe Parsons","w":0.78},{"d":"WV House District 17","rep":"Jonathan Pinson","w":0.22}],"ss":[{"d":"WV Senate District 4","rep":"Amy Grady, Eric Tarr","w":0.543},{"d":"WV Senate District 8","rep":"Glenn Jeffries, Kevan Bartlett","w":0.456}]},"munis":[],"slug":"jackson"},"54037":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.998}],"sh":[{"d":"WV House District 98","rep":"Joe Funkhouser","w":0.433},{"d":"WV House District 100","rep":"Bill Ridenour","w":0.302},{"d":"WV House District 97","rep":"Chris Anders","w":0.137},{"d":"WV House District 99","rep":"Wayne Clark","w":0.126}],"ss":[{"d":"WV Senate District 16","rep":"Jason Barrett, Patricia Rucker","w":0.999}]},"munis":[],"slug":"jefferson"},"54039":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 61","rep":"Dean Jeffries","w":0.228},{"d":"WV House District 53","rep":"Tristan Leavitt","w":0.219},{"d":"WV House District 52","rep":"Tresa Howell","w":0.174},{"d":"WV House District 60","rep":"Dana Ferrell","w":0.155},{"d":"WV House District 55","rep":"J.B. Akers","w":0.141},{"d":"WV House District 56","rep":"Kayla Young","w":0.031},{"d":"WV House District 59","rep":"Andy Shamblin","w":0.019},{"d":"WV House District 58","rep":"Walter Hall","w":0.015},{"d":"WV House District 57","rep":"Hollis Lewis","w":0.01},{"d":"WV House District 54","rep":"Mike Pushkin","w":0.007}],"ss":[{"d":"WV Senate District 17","rep":"Anne Charnock, Tom Takubo","w":0.607},{"d":"WV Senate District 7","rep":"Rupie Phillips, Zack Maynard","w":0.292},{"d":"WV Senate District 8","rep":"Glenn Jeffries, Kevan Bartlett","w":0.101}]},"munis":[{"m":"Charleston","p":[{"n":"Amy Shuler Goodwin","r":"Mayor, Charleston, WV"}]}],"slug":"kanawha"},"54041":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.997}],"sh":[{"d":"WV House District 64","rep":"Adam Burkhammer","w":0.828},{"d":"WV House District 69","rep":"Keith Marple","w":0.172}],"ss":[{"d":"WV Senate District 12","rep":"Ben Queen, Patrick Martin","w":1.0}]},"munis":[{"m":"Weston","p":[{"n":"Kim Harrison","r":"Mayor, Weston, WV"}]}],"slug":"lewis"},"54043":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 30","rep":"Jeff Eldridge","w":0.912},{"d":"WV House District 31","rep":"Margitta Mazzocchi","w":0.088}],"ss":[{"d":"WV Senate District 7","rep":"Rupie Phillips, Zack Maynard","w":1.0}]},"munis":[],"slug":"lincoln"},"54045":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 33","rep":"Jordan Bridges","w":0.51},{"d":"WV House District 31","rep":"Margitta Mazzocchi","w":0.489}],"ss":[{"d":"WV Senate District 7","rep":"Rupie Phillips, Zack Maynard","w":1.0}]},"munis":[],"slug":"logan"},"54047":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.999}],"sh":[{"d":"WV House District 36","rep":"David Green","w":0.973},{"d":"WV House District 34","rep":"Mark Dean","w":0.026}],"ss":[{"d":"WV Senate District 6","rep":"Craig Hart, Mark Maynard","w":0.999}]},"munis":[],"slug":"mcdowell"},"54049":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 74","rep":"Guy Ward","w":0.518},{"d":"WV House District 76","rep":"Rick Garcia","w":0.234},{"d":"WV House District 75","rep":"Phil Mallow","w":0.188},{"d":"WV House District 73","rep":"Bryan Smith","w":0.059}],"ss":[{"d":"WV Senate District 2","rep":"Charles Clements, Chris Rose","w":0.693},{"d":"WV Senate District 13","rep":"Joey Garcia, Mike Oliverio","w":0.307}]},"munis":[{"m":"Fairmont","p":[{"n":"Anne Bolyard","r":"Mayor, Fairmont, WV"}]}],"slug":"marion"},"54051":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.999}],"sh":[{"d":"WV House District 7","rep":"Chuck Sheedy","w":0.849},{"d":"WV House District 6","rep":"Jeff Stephens","w":0.15}],"ss":[{"d":"WV Senate District 1","rep":"Laura Chapman, Ryan Weld","w":0.674},{"d":"WV Senate District 2","rep":"Charles Clements, Chris Rose","w":0.326}]},"munis":[],"slug":"marshall"},"54053":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.999}],"sh":[{"d":"WV House District 18","rep":"Jim Butler","w":0.665},{"d":"WV House District 17","rep":"Jonathan Pinson","w":0.335}],"ss":[{"d":"WV Senate District 4","rep":"Amy Grady, Eric Tarr","w":0.999}]},"munis":[{"m":"Point Pleasant","p":[{"n":"Amber Tatterson","r":"Mayor, Point Pleasant, WV"}]}],"slug":"mason"},"54055":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 39","rep":"Doug Smith","w":0.429},{"d":"WV House District 41","rep":"Jordan Maynor","w":0.247},{"d":"WV House District 37","rep":"Marty Gearheart","w":0.225},{"d":"WV House District 38","rep":"Joe Ellington","w":0.099}],"ss":[{"d":"WV Senate District 6","rep":"Craig Hart, Mark Maynard","w":1.0}]},"munis":[{"m":"Bluefield","p":[{"n":"Ron Martin","r":"Mayor, Bluefield, WV"}]}],"slug":"mercer"},"54057":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.992},{"d":"MD-06","rep":"April McClain Delaney","w":0.008}],"sh":[{"d":"WV House District 88","rep":"Rick Hillenbrand","w":0.601},{"d":"WV House District 87","rep":"Gary Howell","w":0.397}],"ss":[{"d":"WV Senate District 14","rep":"Jay Taylor, Randy Smith","w":0.998}]},"munis":[],"slug":"mineral"},"54059":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.992},{"d":"KY-05","rep":"Harold Rogers","w":0.007}],"sh":[{"d":"WV House District 34","rep":"Mark Dean","w":0.627},{"d":"WV House District 29","rep":"Corby Dillon","w":0.371}],"ss":[{"d":"WV Senate District 6","rep":"Craig Hart, Mark Maynard","w":0.999}]},"munis":[],"slug":"mingo"},"54061":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 77","rep":"Joe Statler","w":0.63},{"d":"WV House District 78","rep":"Geno Chiarelli","w":0.19},{"d":"WV House District 82","rep":"Dave McCormick","w":0.13},{"d":"WV House District 80","rep":"John Williams","w":0.021},{"d":"WV House District 81","rep":"Anitra Hamilton","w":0.016},{"d":"WV House District 79","rep":"Evan Hansen","w":0.012}],"ss":[{"d":"WV Senate District 2","rep":"Charles Clements, Chris Rose","w":0.69},{"d":"WV Senate District 13","rep":"Joey Garcia, Mike Oliverio","w":0.31}]},"munis":[{"m":"Morgantown","p":[{"n":"Joe Abu-Ghannam","r":"Mayor, Morgantown, WV"}]}],"slug":"monongalia"},"54063":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 40","rep":"Roy Cooper","w":0.999}],"ss":[{"d":"WV Senate District 10","rep":"Jack Woodrum, Vince Deeds","w":1.0}]},"munis":[],"slug":"monroe"},"54065":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.996}],"sh":[{"d":"WV House District 90","rep":"George Miller","w":0.6},{"d":"WV House District 89","rep":"David Cannon","w":0.398}],"ss":[{"d":"WV Senate District 15","rep":"Darren Thorne, Tom Willis","w":0.999}]},"munis":[],"slug":"morgan"},"54067":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 49","rep":"Stan Adkins","w":0.77},{"d":"WV House District 48","rep":"Greg Watt","w":0.23}],"ss":[{"d":"WV Senate District 10","rep":"Jack Woodrum, Vince Deeds","w":1.0}]},"munis":[{"m":"Summersville","p":[{"n":"Robert Shafer","r":"Mayor, Summersville, WV"}]}],"slug":"nicholas"},"54069":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.998}],"sh":[{"d":"WV House District 4","rep":"Bill Flanigan","w":0.591},{"d":"WV House District 3","rep":"Jimmy Willis","w":0.322},{"d":"WV House District 5","rep":"Shawn Fluharty","w":0.085}],"ss":[{"d":"WV Senate District 1","rep":"Laura Chapman, Ryan Weld","w":0.998}]},"munis":[{"m":"Wheeling","p":[{"n":"Denny Magruder","r":"Mayor, Wheeling, WV"}]}],"slug":"ohio"},"54071":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.997}],"sh":[{"d":"WV House District 67","rep":"Elías Coop-González","w":0.513},{"d":"WV House District 86","rep":"Bryan Ward","w":0.486}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[],"slug":"pendleton"},"54073":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 9","rep":"Betsy Kelly","w":0.999}],"ss":[{"d":"WV Senate District 3","rep":"Mike Azinger, Trenton Barnhart","w":1.0}]},"munis":[],"slug":"pleasants"},"54075":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.998}],"sh":[{"d":"WV House District 66","rep":"Jonathan Kyle","w":0.63},{"d":"WV House District 46","rep":"Jeff Campbell","w":0.37}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[],"slug":"pocahontas"},"54077":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 84","rep":"Buck Jennings","w":0.562},{"d":"WV House District 83","rep":"George Street","w":0.438}],"ss":[{"d":"WV Senate District 14","rep":"Jay Taylor, Randy Smith","w":1.0}]},"munis":[],"slug":"preston"},"54079":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 19","rep":"Kathie Hess Crouse","w":0.486},{"d":"WV House District 21","rep":"Jarred Cannon","w":0.299},{"d":"WV House District 20","rep":"Sarah Drennan","w":0.14},{"d":"WV House District 18","rep":"Jim Butler","w":0.075}],"ss":[{"d":"WV Senate District 4","rep":"Amy Grady, Eric Tarr","w":0.543},{"d":"WV Senate District 8","rep":"Glenn Jeffries, Kevan Bartlett","w":0.457}]},"munis":[],"slug":"putnam"},"54081":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 43","rep":"Chris Toney","w":0.425},{"d":"WV House District 42","rep":"John Jordan","w":0.279},{"d":"WV House District 45","rep":"Eric Brooks","w":0.15},{"d":"WV House District 41","rep":"Jordan Maynor","w":0.129},{"d":"WV House District 44","rep":"Bill Roop","w":0.017}],"ss":[{"d":"WV Senate District 9","rep":"Brian Helton, Rollan Roberts","w":1.0}]},"munis":[{"m":"Beckley","p":[{"n":"Ryan Neal","r":"Mayor, Beckley, WV"}]}],"slug":"raleigh"},"54083":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.998}],"sh":[{"d":"WV House District 66","rep":"Jonathan Kyle","w":0.604},{"d":"WV House District 67","rep":"Elías Coop-González","w":0.396}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[],"slug":"randolph"},"54085":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.996}],"sh":[{"d":"WV House District 9","rep":"Betsy Kelly","w":1.0}],"ss":[{"d":"WV Senate District 3","rep":"Mike Azinger, Trenton Barnhart","w":1.0}]},"munis":[],"slug":"ritchie"},"54087":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 15","rep":"Erica Moore","w":1.0}],"ss":[{"d":"WV Senate District 8","rep":"Glenn Jeffries, Kevan Bartlett","w":1.0}]},"munis":[],"slug":"roane"},"54089":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 41","rep":"Jordan Maynor","w":0.633},{"d":"WV House District 40","rep":"Roy Cooper","w":0.367}],"ss":[{"d":"WV Senate District 10","rep":"Jack Woodrum, Vince Deeds","w":1.0}]},"munis":[],"slug":"summers"},"54091":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 73","rep":"Bryan Smith","w":1.0}],"ss":[{"d":"WV Senate District 12","rep":"Ben Queen, Patrick Martin","w":0.536},{"d":"WV Senate District 14","rep":"Jay Taylor, Randy Smith","w":0.464}]},"munis":[],"slug":"taylor"},"54093":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 85","rep":"John Paul Hott","w":1.0}],"ss":[{"d":"WV Senate District 14","rep":"Jay Taylor, Randy Smith","w":1.0}]},"munis":[],"slug":"tucker"},"54095":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 9","rep":"Betsy Kelly","w":0.531},{"d":"WV House District 8","rep":"Bill Bell","w":0.469}],"ss":[{"d":"WV Senate District 2","rep":"Charles Clements, Chris Rose","w":1.0}]},"munis":[],"slug":"tyler"},"54097":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.998}],"sh":[{"d":"WV House District 65","rep":"Robbie Martin","w":0.701},{"d":"WV House District 68","rep":"Chris Phillips","w":0.181},{"d":"WV House District 64","rep":"Adam Burkhammer","w":0.118}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[],"slug":"upshur"},"54099":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.998}],"sh":[{"d":"WV House District 29","rep":"Corby Dillon","w":0.687},{"d":"WV House District 28","rep":"Ryan Browning","w":0.291},{"d":"WV House District 27","rep":"Michael Amos","w":0.022}],"ss":[{"d":"WV Senate District 5","rep":"Mike Woelfel, Scott Fuller","w":0.671},{"d":"WV Senate District 6","rep":"Craig Hart, Mark Maynard","w":0.328}]},"munis":[],"slug":"wayne"},"54101":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.999}],"sh":[{"d":"WV House District 48","rep":"Greg Watt","w":1.0}],"ss":[{"d":"WV Senate District 11","rep":"Bill Hamilton, Robbie Morris","w":1.0}]},"munis":[],"slug":"webster"},"54103":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":1.0}],"sh":[{"d":"WV House District 72","rep":"Clay Riley","w":0.405},{"d":"WV House District 8","rep":"Bill Bell","w":0.313},{"d":"WV House District 7","rep":"Chuck Sheedy","w":0.248},{"d":"WV House District 77","rep":"Joe Statler","w":0.034}],"ss":[{"d":"WV Senate District 2","rep":"Charles Clements, Chris Rose","w":1.0}]},"munis":[],"slug":"wetzel"},"54105":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":0.995},{"d":"WV-02","rep":"Riley M. Moore","w":0.005}],"sh":[{"d":"WV House District 15","rep":"Erica Moore","w":0.776},{"d":"WV House District 14","rep":"Dave Foggin","w":0.223}],"ss":[{"d":"WV Senate District 3","rep":"Mike Azinger, Trenton Barnhart","w":1.0}]},"munis":[],"slug":"wirt"},"54107":{"county":[],"districts":{"cd":[{"d":"WV-02","rep":"Riley M. Moore","w":0.999}],"sh":[{"d":"WV House District 14","rep":"Dave Foggin","w":0.48},{"d":"WV House District 10","rep":"Bill Anderson","w":0.388},{"d":"WV House District 13","rep":"Scot Heckert","w":0.069},{"d":"WV House District 12","rep":"Vernon Criss","w":0.039},{"d":"WV House District 11","rep":"Bob Fehrenbacher","w":0.024}],"ss":[{"d":"WV Senate District 3","rep":"Mike Azinger, Trenton Barnhart","w":1.0}]},"munis":[{"m":"Parkersburg","p":[{"n":"Tom Joyce","r":"Mayor, Parkersburg, WV"}]}],"slug":"wood"},"54109":{"county":[],"districts":{"cd":[{"d":"WV-01","rep":"Carol D. Miller","w":1.0}],"sh":[{"d":"WV House District 35","rep":"Adam Vance","w":0.892},{"d":"WV House District 43","rep":"Chris Toney","w":0.107}],"ss":[{"d":"WV Senate District 9","rep":"Brian Helton, Rollan Roberts","w":0.999}]},"munis":[],"slug":"wyoming"},"55001":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":0.997}],"sh":[{"d":"WI House District 72","rep":"Scott Krug","w":0.481},{"d":"WI House District 41","rep":"Tony Kurtz","w":0.211},{"d":"WI House District 39","rep":"Alex Dallman","w":0.15},{"d":"WI House District 57","rep":"Kevin Petersen","w":0.104},{"d":"WI House District 71","rep":"Vinnie Miresse","w":0.054}],"ss":[{"d":"WI Senate District 24","rep":"Patrick Testin","w":0.535},{"d":"WI Senate District 14","rep":"Sarah Keyeski","w":0.211},{"d":"WI Senate District 13","rep":"John Jagler","w":0.15},{"d":"WI Senate District 19","rep":"Rachael Cabral-Guevara","w":0.104}]},"munis":[],"slug":"adams"},"55003":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.459}],"sh":[{"d":"WI House District 74","rep":"Chanz Green","w":0.331},{"d":"WI House District 73","rep":"Angela Stroud","w":0.126}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":0.457}]},"munis":[{"m":"Ashland","p":[{"n":"Matthew MacKenzie","r":"Mayor, Ashland, WI"}]}],"slug":"ashland"},"55005":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 67","rep":"Dave Armstrong","w":1.0}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":1.0}]},"munis":[{"m":"Barron","p":[{"n":"Rod Nordby","r":"Mayor, Barron, WI"}]}],"slug":"barron"},"55007":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.738}],"sh":[{"d":"WI House District 73","rep":"Angela Stroud","w":0.398},{"d":"WI House District 74","rep":"Chanz Green","w":0.341}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":0.739}]},"munis":[{"m":"Bayfield","p":[{"n":"Ted Dougherty","r":"Mayor, Bayfield, WI"}]}],"slug":"bayfield"},"55009":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":0.869}],"sh":[{"d":"WI House District 2","rep":"Shae Sortwell","w":0.334},{"d":"WI House District 1","rep":"Joel Kitchens","w":0.147},{"d":"WI House District 4","rep":"David Steffen","w":0.092},{"d":"WI House District 5","rep":"Joy Goeben","w":0.08},{"d":"WI House District 88","rep":"Ben Franklin","w":0.07},{"d":"WI House District 6","rep":"Elijah Behnke","w":0.056},{"d":"WI House District 90","rep":"Amaad Rivera-Wagner","w":0.047},{"d":"WI House District 89","rep":"Ryan Spaude","w":0.042}],"ss":[{"d":"WI Senate District 1","rep":"André Jacque","w":0.481},{"d":"WI Senate District 2","rep":"Eric Wimberger","w":0.228},{"d":"WI Senate District 30","rep":"Jamie Wall","w":0.159}]},"munis":[{"m":"De Pere","p":[{"n":"James Boyd","r":"Mayor, De Pere, WI"}]},{"m":"Green Bay","p":[{"n":"Eric Genrich","r":"Mayor, Green Bay, WI"}]}],"slug":"brown"},"55011":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 29","rep":"Treig Pronschinske","w":1.0}],"ss":[{"d":"WI Senate District 10","rep":"Rob Stafsholt","w":1.0}]},"munis":[{"m":"Alma","p":[{"n":"Richard Champeny","r":"Mayor, Alma, WI"}]}],"slug":"buffalo"},"55013":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 75","rep":"Duke Tucker","w":0.809},{"d":"WI House District 74","rep":"Chanz Green","w":0.191}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":1.0}]},"munis":[],"slug":"burnett"},"55015":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":0.776},{"d":"WI-06","rep":"Glenn Grothman","w":0.224}],"sh":[{"d":"WI House District 3","rep":"Ron Tusler","w":0.805}],"ss":[{"d":"WI Senate District 1","rep":"André Jacque","w":0.805}]},"munis":[],"slug":"calumet"},"55017":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.788},{"d":"WI-03","rep":"Derrick Van Orden","w":0.212}],"sh":[{"d":"WI House District 68","rep":"Rob Summerfield","w":0.697},{"d":"WI House District 92","rep":"Clint Moses","w":0.13},{"d":"WI House District 91","rep":"Jodi Emerson","w":0.089},{"d":"WI House District 69","rep":"Karen Hurd","w":0.046},{"d":"WI House District 67","rep":"Dave Armstrong","w":0.037}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":0.781},{"d":"WI Senate District 31","rep":"Jeff Smith","w":0.219}]},"munis":[{"m":"Chippewa Falls","p":[{"n":"Gregory S. Hoffman","r":"Mayor, Chippewa Falls, WI"}]}],"slug":"chippewa"},"55019":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 69","rep":"Karen Hurd","w":1.0}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":1.0}]},"munis":[{"m":"Abbotsford","p":[{"n":"James Weix","r":"Mayor, Abbotsford, WI"}]}],"slug":"clark"},"55021":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":0.998}],"sh":[{"d":"WI House District 42","rep":"Maureen McCarville","w":0.505},{"d":"WI House District 40","rep":"Karen DeSanto","w":0.327},{"d":"WI House District 39","rep":"Alex Dallman","w":0.136},{"d":"WI House District 41","rep":"Tony Kurtz","w":0.031}],"ss":[{"d":"WI Senate District 14","rep":"Sarah Keyeski","w":0.863},{"d":"WI Senate District 13","rep":"John Jagler","w":0.137}]},"munis":[{"m":"Columbus","p":[{"n":"Joe Hammer","r":"Mayor, Columbus, WI"}]},{"m":"Portage","p":[{"n":"Mitchel Craig","r":"Mayor, Portage, WI"}]}],"slug":"columbia"},"55023":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 49","rep":"Travis Tranel","w":1.0}],"ss":[{"d":"WI Senate District 17","rep":"Howard Marklein","w":1.0}]},"munis":[],"slug":"crawford"},"55025":{"county":[],"districts":{"cd":[{"d":"WI-02","rep":"Mark Pocan","w":1.0}],"sh":[{"d":"WI House District 81","rep":"Alex Joers","w":0.194},{"d":"WI House District 47","rep":"Randy Udell","w":0.159},{"d":"WI House District 50","rep":"Jenna Jacobson","w":0.144},{"d":"WI House District 46","rep":"Joan Fitzgerald","w":0.13},{"d":"WI House District 48","rep":"Andrew Hysell","w":0.101},{"d":"WI House District 80","rep":"Mike Bare","w":0.075},{"d":"WI House District 42","rep":"Maureen McCarville","w":0.071},{"d":"WI House District 51","rep":"Todd Novak","w":0.059},{"d":"WI House District 78","rep":"Shelia Stubbs","w":0.03},{"d":"WI House District 77","rep":"Renuka Mayadev","w":0.016},{"d":"WI House District 79","rep":"Lisa Subeck","w":0.012},{"d":"WI House District 76","rep":"Francesca Hong","w":0.008}],"ss":[{"d":"WI Senate District 16","rep":"Melissa Ratcliff","w":0.39},{"d":"WI Senate District 27","rep":"Dianne Hesselbein","w":0.281},{"d":"WI Senate District 17","rep":"Howard Marklein","w":0.203},{"d":"WI Senate District 14","rep":"Sarah Keyeski","w":0.071},{"d":"WI Senate District 26","rep":"Kelda Roys","w":0.054}]},"munis":[{"m":"Fitchburg","p":[{"n":"Julia Arata-Fratta","r":"Mayor, Fitchburg, WI"}]},{"m":"Madison","p":[{"n":"Satya Rhodes-Conway","r":"Mayor, Madison, WI"}]},{"m":"Middleton","p":[{"n":"Emily Kuhn","r":"Mayor, Middleton, WI"}]},{"m":"Stoughton","p":[{"n":"Tim Swadley","r":"Mayor, Stoughton, WI"}]},{"m":"Sun Prairie","p":[{"n":"Paul Esser","r":"Mayor, Sun Prairie, WI"}]},{"m":"Verona","p":[{"n":"Luke Diaz","r":"Mayor, Verona, WI"}]}],"slug":"dane"},"55027":{"county":[],"districts":{"cd":[{"d":"WI-05","rep":"Scott Fitzgerald","w":0.625},{"d":"WI-06","rep":"Glenn Grothman","w":0.374}],"sh":[{"d":"WI House District 37","rep":"Mark Born","w":0.435},{"d":"WI House District 38","rep":"Will Penterman","w":0.328},{"d":"WI House District 99","rep":"Barbara Dittrich","w":0.118},{"d":"WI House District 48","rep":"Andrew Hysell","w":0.079},{"d":"WI House District 59","rep":"Rob Brooks","w":0.04}],"ss":[{"d":"WI Senate District 13","rep":"John Jagler","w":0.763},{"d":"WI Senate District 33","rep":"Chris Kapenga","w":0.118},{"d":"WI Senate District 16","rep":"Melissa Ratcliff","w":0.079},{"d":"WI Senate District 20","rep":"Dan Feyen","w":0.04}]},"munis":[{"m":"Beaver Dam","p":[{"n":"Mike Wissell","r":"Mayor, Beaver Dam, WI"}]},{"m":"Waupun","p":[{"n":"Rohn W. Bishop","r":"Mayor, Waupun, WI"}]}],"slug":"dodge"},"55029":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":0.215}],"sh":[{"d":"WI House District 1","rep":"Joel Kitchens","w":0.206}],"ss":[{"d":"WI Senate District 1","rep":"André Jacque","w":0.206}]},"munis":[],"slug":"door"},"55031":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.906}],"sh":[{"d":"WI House District 74","rep":"Chanz Green","w":0.583},{"d":"WI House District 73","rep":"Angela Stroud","w":0.323}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":0.907}]},"munis":[{"m":"Superior","p":[{"n":"Jim Paine","r":"Mayor, Superior, WI"}]}],"slug":"douglas"},"55033":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 67","rep":"Dave Armstrong","w":0.46},{"d":"WI House District 93","rep":"Christian Phelps","w":0.197},{"d":"WI House District 28","rep":"Rob Kreibich","w":0.189},{"d":"WI House District 92","rep":"Clint Moses","w":0.154}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":0.46},{"d":"WI Senate District 31","rep":"Jeff Smith","w":0.351},{"d":"WI Senate District 10","rep":"Rob Stafsholt","w":0.189}]},"munis":[{"m":"Menomonie","p":[{"n":"Randy Knaack","r":"Mayor, Menomonie, WI"}]}],"slug":"dunn"},"55035":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 91","rep":"Jodi Emerson","w":0.633},{"d":"WI House District 93","rep":"Christian Phelps","w":0.367}],"ss":[{"d":"WI Senate District 31","rep":"Jeff Smith","w":1.0}]},"munis":[{"m":"Altoona","p":[{"n":"Brendan Pratt","r":"Mayor, Altoona, WI"}]}],"slug":"eau-claire"},"55037":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.996}],"sh":[{"d":"WI House District 36","rep":"Jeff Mursau","w":1.0}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":1.0}]},"munis":[],"slug":"florence"},"55039":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":1.0}],"sh":[{"d":"WI House District 39","rep":"Alex Dallman","w":0.332},{"d":"WI House District 59","rep":"Rob Brooks","w":0.237},{"d":"WI House District 37","rep":"Mark Born","w":0.143},{"d":"WI House District 27","rep":"Lindee Brill","w":0.126},{"d":"WI House District 60","rep":"Jerry O'Connor","w":0.111}],"ss":[{"d":"WI Senate District 13","rep":"John Jagler","w":0.475},{"d":"WI Senate District 20","rep":"Dan Feyen","w":0.348},{"d":"WI Senate District 9","rep":"Devin LeMahieu","w":0.126}]},"munis":[],"slug":"fond-du-lac"},"55041":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.999}],"sh":[{"d":"WI House District 36","rep":"Jeff Mursau","w":1.0}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":1.0}]},"munis":[],"slug":"forest"},"55043":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 49","rep":"Travis Tranel","w":0.82},{"d":"WI House District 51","rep":"Todd Novak","w":0.18}],"ss":[{"d":"WI Senate District 17","rep":"Howard Marklein","w":1.0}]},"munis":[],"slug":"grant"},"55045":{"county":[],"districts":{"cd":[{"d":"WI-02","rep":"Mark Pocan","w":1.0}],"sh":[{"d":"WI House District 50","rep":"Jenna Jacobson","w":1.0}],"ss":[{"d":"WI Senate District 17","rep":"Howard Marklein","w":1.0}]},"munis":[{"m":"Monroe","p":[{"n":"Donna Douglas","r":"Mayor, Monroe, WI"}]}],"slug":"green"},"55047":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":1.0}],"sh":[{"d":"WI House District 39","rep":"Alex Dallman","w":1.0}],"ss":[{"d":"WI Senate District 13","rep":"John Jagler","w":1.0}]},"munis":[{"m":"Berlin","p":[{"n":"Joel Bruessel","r":"Mayor, Berlin, WI"}]}],"slug":"green-lake"},"55049":{"county":[],"districts":{"cd":[{"d":"WI-02","rep":"Mark Pocan","w":0.999}],"sh":[{"d":"WI House District 51","rep":"Todd Novak","w":1.0}],"ss":[{"d":"WI Senate District 17","rep":"Howard Marklein","w":1.0}]},"munis":[],"slug":"iowa"},"55051":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.872}],"sh":[{"d":"WI House District 74","rep":"Chanz Green","w":0.872}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":0.872}]},"munis":[],"slug":"iron"},"55053":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":0.68},{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.32}],"sh":[{"d":"WI House District 70","rep":"Nancy VanderMeer","w":1.0}],"ss":[{"d":"WI Senate District 24","rep":"Patrick Testin","w":1.0}]},"munis":[],"slug":"jackson"},"55055":{"county":[],"districts":{"cd":[{"d":"WI-05","rep":"Scott Fitzgerald","w":1.0}],"sh":[{"d":"WI House District 46","rep":"Joan Fitzgerald","w":0.386},{"d":"WI House District 38","rep":"Will Penterman","w":0.27},{"d":"WI House District 97","rep":"Cindi Duchow","w":0.237},{"d":"WI House District 99","rep":"Barbara Dittrich","w":0.063},{"d":"WI House District 43","rep":"Brienne Brown","w":0.044}],"ss":[{"d":"WI Senate District 16","rep":"Melissa Ratcliff","w":0.386},{"d":"WI Senate District 33","rep":"Chris Kapenga","w":0.3},{"d":"WI Senate District 13","rep":"John Jagler","w":0.27},{"d":"WI Senate District 15","rep":"Mark Spreitzer","w":0.044}]},"munis":[{"m":"Watertown","p":[{"n":"Emily McFarland","r":"Mayor, Watertown, WI"}]}],"slug":"jefferson"},"55057":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":0.541},{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.459}],"sh":[{"d":"WI House District 72","rep":"Scott Krug","w":0.536},{"d":"WI House District 70","rep":"Nancy VanderMeer","w":0.252},{"d":"WI House District 41","rep":"Tony Kurtz","w":0.212}],"ss":[{"d":"WI Senate District 24","rep":"Patrick Testin","w":0.788},{"d":"WI Senate District 14","rep":"Sarah Keyeski","w":0.212}]},"munis":[],"slug":"juneau"},"55059":{"county":[],"districts":{"cd":[{"d":"WI-01","rep":"Bryan Steil","w":0.369}],"sh":[{"d":"WI House District 32","rep":"Amanda Nedweski","w":0.282},{"d":"WI House District 64","rep":"Tip McGuire","w":0.06},{"d":"WI House District 65","rep":"Ben DeSmidt","w":0.028}],"ss":[{"d":"WI Senate District 11","rep":"Steve Nass","w":0.282},{"d":"WI Senate District 22","rep":"Bob Wirch","w":0.087}]},"munis":[{"m":"Kenosha","p":[{"n":"David Bogdala","r":"Mayor, Kenosha, WI"}]}],"slug":"kenosha"},"55061":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":0.317}],"sh":[{"d":"WI House District 1","rep":"Joel Kitchens","w":0.317}],"ss":[{"d":"WI Senate District 1","rep":"André Jacque","w":0.317}]},"munis":[{"m":"Algoma","p":[{"n":"Steve Lautenbach","r":"Mayor, Algoma, WI"}]}],"slug":"kewaunee"},"55063":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 94","rep":"Steve Doyle","w":0.496},{"d":"WI House District 95","rep":"Jill Billings","w":0.367},{"d":"WI House District 96","rep":"Tara Johnson","w":0.136}],"ss":[{"d":"WI Senate District 32","rep":"Brad Pfaff","w":1.0}]},"munis":[{"m":"La Crosse","p":[{"n":"Mitch Reynolds","r":"Mayor, La Crosse, WI"}]},{"m":"Onalaska","p":[{"n":"Kim Smith","r":"Mayor, Onalaska, WI"}]}],"slug":"la-crosse"},"55065":{"county":[],"districts":{"cd":[{"d":"WI-02","rep":"Mark Pocan","w":1.0}],"sh":[{"d":"WI House District 51","rep":"Todd Novak","w":1.0}],"ss":[{"d":"WI Senate District 17","rep":"Howard Marklein","w":1.0}]},"munis":[],"slug":"lafayette"},"55067":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 35","rep":"Calvin Callahan","w":1.0}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":1.0}]},"munis":[{"m":"Antigo","p":[{"n":"Thomas Bauknecht","r":"Mayor, Antigo, WI"}]}],"slug":"langlade"},"55069":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 35","rep":"Calvin Callahan","w":1.0}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":1.0}]},"munis":[],"slug":"lincoln"},"55071":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":0.399}],"sh":[{"d":"WI House District 2","rep":"Shae Sortwell","w":0.154},{"d":"WI House District 25","rep":"Paul Tittl","w":0.124},{"d":"WI House District 3","rep":"Ron Tusler","w":0.096},{"d":"WI House District 27","rep":"Lindee Brill","w":0.024}],"ss":[{"d":"WI Senate District 1","rep":"André Jacque","w":0.25},{"d":"WI Senate District 9","rep":"Devin LeMahieu","w":0.148}]},"munis":[{"m":"Manitowoc","p":[{"n":"Justin M. Nickels","r":"Mayor, Manitowoc, WI"}]}],"slug":"manitowoc"},"55073":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 86","rep":"John Spiros","w":0.288},{"d":"WI House District 87","rep":"Brent Jacobson","w":0.279},{"d":"WI House District 69","rep":"Karen Hurd","w":0.199},{"d":"WI House District 35","rep":"Calvin Callahan","w":0.179},{"d":"WI House District 85","rep":"Pat Snyder","w":0.055}],"ss":[{"d":"WI Senate District 29","rep":"Cory Tomczyk","w":0.621},{"d":"WI Senate District 23","rep":"Jesse James","w":0.199},{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":0.179}]},"munis":[{"m":"Wausau","p":[{"n":"Doug Diny","r":"Mayor, Wausau, WI"}]}],"slug":"marathon"},"55075":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":0.92}],"sh":[{"d":"WI House District 36","rep":"Jeff Mursau","w":0.922}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":0.922}]},"munis":[{"m":"Marinette","p":[{"n":"Steve Genisot","r":"Mayor, Marinette, WI"}]}],"slug":"marinette"},"55077":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":1.0}],"sh":[{"d":"WI House District 39","rep":"Alex Dallman","w":1.0}],"ss":[{"d":"WI Senate District 13","rep":"John Jagler","w":1.0}]},"munis":[],"slug":"marquette"},"55078":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":1.0}],"sh":[{"d":"WI House District 6","rep":"Elijah Behnke","w":1.0}],"ss":[{"d":"WI Senate District 2","rep":"Eric Wimberger","w":1.0}]},"munis":[],"slug":"menominee"},"55079":{"county":[],"districts":{"cd":[{"d":"WI-04","rep":"Gwen Moore","w":0.118},{"d":"WI-01","rep":"Bryan Steil","w":0.07},{"d":"WI-05","rep":"Scott Fitzgerald","w":0.015}],"sh":[{"d":"WI House District 21","rep":"Jessie Rodriguez","w":0.031},{"d":"WI House District 63","rep":"Bob Wittke","w":0.029},{"d":"WI House District 12","rep":"Russell Goodwin","w":0.017},{"d":"WI House District 61","rep":"Bob Donovan","w":0.016},{"d":"WI House District 23","rep":"Deb Andraca","w":0.014},{"d":"WI House District 20","rep":"Christine Sinicki","w":0.012},{"d":"WI House District 11","rep":"Sequanna Taylor","w":0.011},{"d":"WI House District 10","rep":"Darrin Madison","w":0.01},{"d":"WI House District 14","rep":"Angelito Tenorio","w":0.01},{"d":"WI House District 7","rep":"Karen Kirsch","w":0.009},{"d":"WI House District 13","rep":"Robyn Vining","w":0.009},{"d":"WI House District 9","rep":"Priscilla Prado","w":0.007},{"d":"WI House District 17","rep":"Supreme Moore Omokunde","w":0.007},{"d":"WI House District 18","rep":"Margaret Arney","w":0.006},{"d":"WI House District 16","rep":"Kalan Haywood","w":0.006},{"d":"WI House District 19","rep":"Ryan Clancy","w":0.005}],"ss":[{"d":"WI Senate District 7","rep":"Chris Larson","w":0.048},{"d":"WI Senate District 21","rep":"Van Wanggaard","w":0.044},{"d":"WI Senate District 4","rep":"Dora Drake","w":0.038},{"d":"WI Senate District 3","rep":"Tim Carpenter","w":0.021},{"d":"WI Senate District 5","rep":"Rob Hutton","w":0.019},{"d":"WI Senate District 6","rep":"LaTonya Johnson","w":0.019},{"d":"WI Senate District 8","rep":"Jodi Habush Sinykin","w":0.014}]},"munis":[{"m":"Cudahy","p":[{"n":"Thomas Pavlic","r":"Mayor, Cudahy, WI"}]},{"m":"Franklin","p":[{"n":"John Nelson","r":"Mayor, Franklin, WI"}]},{"m":"Glendale","p":[{"n":"Bryan Kennedy","r":"Mayor, Glendale, WI"}]},{"m":"Greenfield","p":[{"n":"Michael J. Neitzke","r":"Mayor, Greenfield, WI"}]},{"m":"Milwaukee","p":[{"n":"Cavalier Johnson","r":"Mayor, Milwaukee, WI"}]},{"m":"Oak Creek","p":[{"n":"Daniel Bukiewicz","r":"Mayor, Oak Creek, WI"}]},{"m":"South Milwaukee","p":[{"n":"Jim Shelenske","r":"Mayor, South Milwaukee, WI"}]},{"m":"Wauwatosa","p":[{"n":"Q91356856","r":"Mayor, Wauwatosa, WI"}]},{"m":"West Allis","p":[{"n":"Dan Devine","r":"Mayor, West Allis, WI"}]}],"slug":"milwaukee"},"55081":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":0.847},{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.153}],"sh":[{"d":"WI House District 70","rep":"Nancy VanderMeer","w":0.665},{"d":"WI House District 95","rep":"Jill Billings","w":0.334}],"ss":[{"d":"WI Senate District 24","rep":"Patrick Testin","w":0.666},{"d":"WI Senate District 32","rep":"Brad Pfaff","w":0.334}]},"munis":[{"m":"Sparta","p":[{"n":"Kevin Riley","r":"Mayor, Sparta, WI"}]}],"slug":"monroe"},"55083":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":0.885}],"sh":[{"d":"WI House District 36","rep":"Jeff Mursau","w":0.331},{"d":"WI House District 4","rep":"David Steffen","w":0.331},{"d":"WI House District 6","rep":"Elijah Behnke","w":0.186},{"d":"WI House District 35","rep":"Calvin Callahan","w":0.037}],"ss":[{"d":"WI Senate District 2","rep":"Eric Wimberger","w":0.517},{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":0.368}]},"munis":[],"slug":"oconto"},"55085":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 34","rep":"Rob Swearingen","w":0.97},{"d":"WI House District 35","rep":"Calvin Callahan","w":0.03}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":1.0}]},"munis":[],"slug":"oneida"},"55087":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":1.0}],"sh":[{"d":"WI House District 56","rep":"Dave Murphy","w":0.533},{"d":"WI House District 5","rep":"Joy Goeben","w":0.34},{"d":"WI House District 57","rep":"Kevin Petersen","w":0.047},{"d":"WI House District 2","rep":"Shae Sortwell","w":0.037},{"d":"WI House District 52","rep":"Lee Snodgrass","w":0.034},{"d":"WI House District 55","rep":"Gus Gustafson","w":0.006}],"ss":[{"d":"WI Senate District 19","rep":"Rachael Cabral-Guevara","w":0.587},{"d":"WI Senate District 2","rep":"Eric Wimberger","w":0.34},{"d":"WI Senate District 1","rep":"André Jacque","w":0.037},{"d":"WI Senate District 18","rep":"Kristin Dassler-Alfheim","w":0.036}]},"munis":[{"m":"Appleton","p":[{"n":"Jake Woodford","r":"Mayor, Appleton, WI"}]}],"slug":"outagamie"},"55089":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":0.209}],"sh":[{"d":"WI House District 59","rep":"Rob Brooks","w":0.099},{"d":"WI House District 22","rep":"Paul Melotik","w":0.093},{"d":"WI House District 23","rep":"Deb Andraca","w":0.018}],"ss":[{"d":"WI Senate District 8","rep":"Jodi Habush Sinykin","w":0.111},{"d":"WI Senate District 20","rep":"Dan Feyen","w":0.099}]},"munis":[{"m":"Mequon","p":[{"n":"Andrew Nerbun","r":"Mayor, Mequon, WI"}]},{"m":"Port Washington","p":[{"n":"Ted Neitzke IV","r":"Mayor, Port Washington, WI"}]}],"slug":"ozaukee"},"55091":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 29","rep":"Treig Pronschinske","w":1.0}],"ss":[{"d":"WI Senate District 10","rep":"Rob Stafsholt","w":1.0}]},"munis":[],"slug":"pepin"},"55093":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":0.999}],"sh":[{"d":"WI House District 29","rep":"Treig Pronschinske","w":0.68},{"d":"WI House District 28","rep":"Rob Kreibich","w":0.179},{"d":"WI House District 30","rep":"Shannon Zimmerman","w":0.141}],"ss":[{"d":"WI Senate District 10","rep":"Rob Stafsholt","w":1.0}]},"munis":[],"slug":"pierce"},"55095":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 75","rep":"Duke Tucker","w":1.0}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":1.0}]},"munis":[{"m":"Amery","p":[{"n":"Rick Van Blaricom","r":"Mayor, Amery, WI"}]}],"slug":"polk"},"55097":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 71","rep":"Vinnie Miresse","w":0.494},{"d":"WI House District 87","rep":"Brent Jacobson","w":0.226},{"d":"WI House District 57","rep":"Kevin Petersen","w":0.141},{"d":"WI House District 86","rep":"John Spiros","w":0.139}],"ss":[{"d":"WI Senate District 24","rep":"Patrick Testin","w":0.494},{"d":"WI Senate District 29","rep":"Cory Tomczyk","w":0.365},{"d":"WI Senate District 19","rep":"Rachael Cabral-Guevara","w":0.141}]},"munis":[{"m":"Stevens Point","p":[{"n":"Mike Wiza","r":"Mayor, Stevens Point, WI"}]}],"slug":"portage"},"55099":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 68","rep":"Rob Summerfield","w":1.0}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":1.0}]},"munis":[],"slug":"price"},"55101":{"county":[],"districts":{"cd":[{"d":"WI-01","rep":"Bryan Steil","w":0.429}],"sh":[{"d":"WI House District 33","rep":"Robin Vos","w":0.166},{"d":"WI House District 63","rep":"Bob Wittke","w":0.096},{"d":"WI House District 84","rep":"Chuck Wichgers","w":0.091},{"d":"WI House District 66","rep":"Greta Neubauer","w":0.053},{"d":"WI House District 62","rep":"Angelina Cruz","w":0.024}],"ss":[{"d":"WI Senate District 11","rep":"Steve Nass","w":0.166},{"d":"WI Senate District 21","rep":"Van Wanggaard","w":0.119},{"d":"WI Senate District 28","rep":"Julian Bradley","w":0.091},{"d":"WI Senate District 22","rep":"Bob Wirch","w":0.053}]},"munis":[{"m":"Burlington","p":[{"n":"Jon Schultz","r":"Mayor, Burlington, WI"}]},{"m":"Racine","p":[{"n":"John Dickert","r":"Mayor, Racine, WI"}]}],"slug":"racine"},"55103":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 41","rep":"Tony Kurtz","w":1.0}],"ss":[{"d":"WI Senate District 14","rep":"Sarah Keyeski","w":1.0}]},"munis":[],"slug":"richland"},"55105":{"county":[],"districts":{"cd":[{"d":"WI-02","rep":"Mark Pocan","w":0.548},{"d":"WI-01","rep":"Bryan Steil","w":0.451}],"sh":[{"d":"WI House District 45","rep":"Clint Anderson","w":0.349},{"d":"WI House District 44","rep":"Ann Roe","w":0.308},{"d":"WI House District 43","rep":"Brienne Brown","w":0.242},{"d":"WI House District 31","rep":"Tyler August","w":0.1}],"ss":[{"d":"WI Senate District 15","rep":"Mark Spreitzer","w":0.899},{"d":"WI Senate District 11","rep":"Steve Nass","w":0.1}]},"munis":[],"slug":"rock"},"55107":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 68","rep":"Rob Summerfield","w":1.0}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":1.0}]},"munis":[],"slug":"rusk"},"55109":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 28","rep":"Rob Kreibich","w":0.801},{"d":"WI House District 30","rep":"Shannon Zimmerman","w":0.199}],"ss":[{"d":"WI Senate District 10","rep":"Rob Stafsholt","w":1.0}]},"munis":[{"m":"Hudson","p":[{"n":"Rich O'Connor","r":"Mayor, Hudson, WI"}]},{"m":"New Richmond","p":[{"n":"Jim Zajkowsk","r":"Mayor, New Richmond, WI"}]}],"slug":"st-croix"},"55111":{"county":[],"districts":{"cd":[{"d":"WI-02","rep":"Mark Pocan","w":0.876},{"d":"WI-03","rep":"Derrick Van Orden","w":0.122}],"sh":[{"d":"WI House District 40","rep":"Karen DeSanto","w":0.532},{"d":"WI House District 41","rep":"Tony Kurtz","w":0.468}],"ss":[{"d":"WI Senate District 14","rep":"Sarah Keyeski","w":1.0}]},"munis":[{"m":"Baraboo","p":[{"n":"Rob Nelson","r":"Mayor, Baraboo, WI"}]}],"slug":"sauk"},"55113":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 74","rep":"Chanz Green","w":1.0}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":1.0}]},"munis":[],"slug":"sawyer"},"55115":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":1.0}],"sh":[{"d":"WI House District 6","rep":"Elijah Behnke","w":0.644},{"d":"WI House District 87","rep":"Brent Jacobson","w":0.278},{"d":"WI House District 35","rep":"Calvin Callahan","w":0.078}],"ss":[{"d":"WI Senate District 2","rep":"Eric Wimberger","w":0.644},{"d":"WI Senate District 29","rep":"Cory Tomczyk","w":0.278},{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":0.078}]},"munis":[],"slug":"shawano"},"55117":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":0.407}],"sh":[{"d":"WI House District 27","rep":"Lindee Brill","w":0.262},{"d":"WI House District 59","rep":"Rob Brooks","w":0.091},{"d":"WI House District 26","rep":"Joe Sheehan","w":0.035},{"d":"WI House District 25","rep":"Paul Tittl","w":0.02}],"ss":[{"d":"WI Senate District 9","rep":"Devin LeMahieu","w":0.316},{"d":"WI Senate District 20","rep":"Dan Feyen","w":0.091}]},"munis":[{"m":"Sheboygan","p":[{"n":"Ryan Sorenson","r":"Mayor, Sheboygan, WI"}]}],"slug":"sheboygan"},"55119":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 68","rep":"Rob Summerfield","w":0.814},{"d":"WI House District 69","rep":"Karen Hurd","w":0.186}],"ss":[{"d":"WI Senate District 23","rep":"Jesse James","w":1.0}]},"munis":[],"slug":"taylor"},"55121":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 29","rep":"Treig Pronschinske","w":0.638},{"d":"WI House District 94","rep":"Steve Doyle","w":0.216},{"d":"WI House District 93","rep":"Christian Phelps","w":0.145}],"ss":[{"d":"WI Senate District 10","rep":"Rob Stafsholt","w":0.638},{"d":"WI Senate District 32","rep":"Brad Pfaff","w":0.216},{"d":"WI Senate District 31","rep":"Jeff Smith","w":0.145}]},"munis":[{"m":"Arcadia","p":[{"n":"John Kimmel","r":"Mayor, Arcadia, WI"}]}],"slug":"trempealeau"},"55123":{"county":[],"districts":{"cd":[{"d":"WI-03","rep":"Derrick Van Orden","w":1.0}],"sh":[{"d":"WI House District 96","rep":"Tara Johnson","w":0.998}],"ss":[{"d":"WI Senate District 32","rep":"Brad Pfaff","w":0.998}]},"munis":[],"slug":"vernon"},"55125":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 34","rep":"Rob Swearingen","w":1.0}],"ss":[{"d":"WI Senate District 12","rep":"Mary Felzkowski","w":1.0}]},"munis":[],"slug":"vilas"},"55127":{"county":[],"districts":{"cd":[{"d":"WI-01","rep":"Bryan Steil","w":0.938},{"d":"WI-05","rep":"Scott Fitzgerald","w":0.062}],"sh":[{"d":"WI House District 31","rep":"Tyler August","w":0.536},{"d":"WI House District 33","rep":"Robin Vos","w":0.274},{"d":"WI House District 43","rep":"Brienne Brown","w":0.125},{"d":"WI House District 32","rep":"Amanda Nedweski","w":0.062}],"ss":[{"d":"WI Senate District 11","rep":"Steve Nass","w":0.872},{"d":"WI Senate District 15","rep":"Mark Spreitzer","w":0.125}]},"munis":[{"m":"Elkhorn","p":[{"n":"Tim Shiroda","r":"Mayor, Elkhorn, WI"}]}],"slug":"walworth"},"55129":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":1.0}],"sh":[{"d":"WI House District 74","rep":"Chanz Green","w":1.0}],"ss":[{"d":"WI Senate District 25","rep":"Romaine Quinn","w":1.0}]},"munis":[],"slug":"washburn"},"55131":{"county":[],"districts":{"cd":[{"d":"WI-05","rep":"Scott Fitzgerald","w":1.0}],"sh":[{"d":"WI House District 59","rep":"Rob Brooks","w":0.356},{"d":"WI House District 58","rep":"Rick Gundrum","w":0.314},{"d":"WI House District 98","rep":"Jim Piwowarczyk","w":0.253},{"d":"WI House District 22","rep":"Paul Melotik","w":0.044},{"d":"WI House District 24","rep":"Dan Knodl","w":0.032}],"ss":[{"d":"WI Senate District 20","rep":"Dan Feyen","w":0.671},{"d":"WI Senate District 33","rep":"Chris Kapenga","w":0.253},{"d":"WI Senate District 8","rep":"Jodi Habush Sinykin","w":0.076}]},"munis":[{"m":"Hartford","p":[{"n":"Timothy Michalak","r":"Mayor, Hartford, WI"}]},{"m":"West Bend","p":[{"n":"Joel Ongert","r":"Mayor, West Bend, WI"}]}],"slug":"washington"},"55133":{"county":[],"districts":{"cd":[{"d":"WI-05","rep":"Scott Fitzgerald","w":1.0}],"sh":[{"d":"WI House District 97","rep":"Cindi Duchow","w":0.326},{"d":"WI House District 99","rep":"Barbara Dittrich","w":0.144},{"d":"WI House District 84","rep":"Chuck Wichgers","w":0.143},{"d":"WI House District 83","rep":"Dave Maxey","w":0.095},{"d":"WI House District 15","rep":"Adam Neylon","w":0.084},{"d":"WI House District 98","rep":"Jim Piwowarczyk","w":0.067},{"d":"WI House District 24","rep":"Dan Knodl","w":0.063},{"d":"WI House District 82","rep":"Scott Allen","w":0.051},{"d":"WI House District 13","rep":"Robyn Vining","w":0.026}],"ss":[{"d":"WI Senate District 33","rep":"Chris Kapenga","w":0.537},{"d":"WI Senate District 28","rep":"Julian Bradley","w":0.289},{"d":"WI Senate District 5","rep":"Rob Hutton","w":0.11},{"d":"WI Senate District 8","rep":"Jodi Habush Sinykin","w":0.063}]},"munis":[{"m":"Brookfield","p":[{"n":"Steven V. Ponto","r":"Mayor, Brookfield, WI"}]},{"m":"Muskego","p":[{"n":"Rick Petfalski","r":"Mayor, Muskego, WI"}]},{"m":"New Berlin","p":[{"n":"Dave Ament","r":"Mayor, New Berlin, WI"}]},{"m":"Oconomowoc","p":[{"n":"Robert P. Magnus","r":"Mayor, Oconomowoc, WI"}]},{"m":"Pewaukee","p":[{"n":"Steve Bierce","r":"Mayor, Pewaukee, WI"}]},{"m":"Waukesha","p":[{"n":"Shawn Reilly","r":"Mayor, Waukesha, WI"}]}],"slug":"waukesha"},"55135":{"county":[],"districts":{"cd":[{"d":"WI-08","rep":"Tony Wied","w":1.0}],"sh":[{"d":"WI House District 57","rep":"Kevin Petersen","w":0.424},{"d":"WI House District 87","rep":"Brent Jacobson","w":0.334},{"d":"WI House District 56","rep":"Dave Murphy","w":0.142},{"d":"WI House District 6","rep":"Elijah Behnke","w":0.1}],"ss":[{"d":"WI Senate District 19","rep":"Rachael Cabral-Guevara","w":0.566},{"d":"WI Senate District 29","rep":"Cory Tomczyk","w":0.334},{"d":"WI Senate District 2","rep":"Eric Wimberger","w":0.1}]},"munis":[],"slug":"waupaca"},"55137":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":1.0}],"sh":[{"d":"WI House District 57","rep":"Kevin Petersen","w":0.999}],"ss":[{"d":"WI Senate District 19","rep":"Rachael Cabral-Guevara","w":0.999}]},"munis":[],"slug":"waushara"},"55139":{"county":[],"districts":{"cd":[{"d":"WI-06","rep":"Glenn Grothman","w":0.92},{"d":"WI-08","rep":"Tony Wied","w":0.08}],"sh":[{"d":"WI House District 55","rep":"Gus Gustafson","w":0.546},{"d":"WI House District 57","rep":"Kevin Petersen","w":0.118},{"d":"WI House District 54","rep":"Lori Palmeri","w":0.071},{"d":"WI House District 39","rep":"Alex Dallman","w":0.062},{"d":"WI House District 53","rep":"Dean Kaufert","w":0.046}],"ss":[{"d":"WI Senate District 19","rep":"Rachael Cabral-Guevara","w":0.665},{"d":"WI Senate District 18","rep":"Kristin Dassler-Alfheim","w":0.117},{"d":"WI Senate District 13","rep":"John Jagler","w":0.062}]},"munis":[{"m":"Menasha","p":[{"n":"Austin Hammond","r":"Mayor, Menasha, WI"}]},{"m":"Neenah","p":[{"n":"Jane B Lang","r":"Mayor, Neenah, WI"}]},{"m":"Oshkosh","p":[{"n":"Matt Mugerauer","r":"Mayor, Oshkosh, WI"}]}],"slug":"winnebago"},"55141":{"county":[],"districts":{"cd":[{"d":"WI-07","rep":"Thomas P. Tiffany","w":0.563},{"d":"WI-03","rep":"Derrick Van Orden","w":0.437}],"sh":[{"d":"WI House District 86","rep":"John Spiros","w":0.557},{"d":"WI House District 72","rep":"Scott Krug","w":0.443}],"ss":[{"d":"WI Senate District 29","rep":"Cory Tomczyk","w":0.557},{"d":"WI Senate District 24","rep":"Patrick Testin","w":0.443}]},"munis":[{"m":"Marshfield","p":[{"n":"Lois TeStrake","r":"Mayor, Marshfield, WI"}]},{"m":"Wisconsin Rapids","p":[{"n":"Matt Zacher","r":"Mayor, Wisconsin Rapids, WI"}]}],"slug":"wood"},"56001":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 14","rep":"Trey Sherwood","w":0.631},{"d":"WY House District 46","rep":"Ocean Andrew","w":0.367}],"ss":[{"d":"WY Senate District 10","rep":"Gary Crum","w":0.998}]},"munis":[{"m":"Laramie","p":[{"n":"Brian Harrington","r":"Mayor, Laramie, WY"}]}],"slug":"albany"},"56003":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 26","rep":"Dalton Banks","w":0.577},{"d":"WY House District 27","rep":"Martha Lawley","w":0.245},{"d":"WY House District 28","rep":"John Winter","w":0.179}],"ss":[{"d":"WY Senate District 19","rep":"Dan Laursen","w":0.577},{"d":"WY Senate District 20","rep":"Ed Cooper","w":0.423}]},"munis":[],"slug":"big-horn"},"56005":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 3","rep":"Abby Angelos","w":0.532},{"d":"WY House District 52","rep":"Reuben Tarver","w":0.463}],"ss":[{"d":"WY Senate District 23","rep":"Eric Barlow","w":0.534},{"d":"WY Senate District 1","rep":"Ogden Driskill","w":0.463}]},"munis":[{"m":"Gillette","p":[{"n":"Shay Lundvall","r":"Mayor, Gillette, WY"}]}],"slug":"campbell"},"56007":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 47","rep":"Bob Davis","w":0.694},{"d":"WY House District 15","rep":"Pam Thayer","w":0.305}],"ss":[{"d":"WY Senate District 11","rep":"Larry Hicks","w":1.0}]},"munis":[],"slug":"carbon"},"56009":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 6","rep":"Tomi Strock","w":0.659},{"d":"WY House District 62","rep":"Kevin Campbell","w":0.341}],"ss":[{"d":"WY Senate District 2","rep":"Brian Boner","w":1.0}]},"munis":[{"m":"Douglas","p":[{"n":"Kim Pexton","r":"Mayor, Douglas, WY"}]}],"slug":"converse"},"56011":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 1","rep":"Chip Neiman","w":1.0}],"ss":[{"d":"WY Senate District 1","rep":"Ogden Driskill","w":1.0}]},"munis":[],"slug":"crook"},"56013":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 34","rep":"Pepper Ottman","w":0.554},{"d":"WY House District 33","rep":"Ivan Posey","w":0.285},{"d":"WY House District 28","rep":"John Winter","w":0.15},{"d":"WY House District 54","rep":"Lloyd Larsen","w":0.01}],"ss":[{"d":"WY Senate District 26","rep":"Tim Salazar","w":0.555},{"d":"WY Senate District 25","rep":"Cale Case","w":0.295},{"d":"WY Senate District 20","rep":"Ed Cooper","w":0.15}]},"munis":[],"slug":"fremont"},"56015":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 5","rep":"Scott Smith","w":0.588},{"d":"WY House District 2","rep":"J.D. Williams","w":0.412}],"ss":[{"d":"WY Senate District 3","rep":"Cheri Steinmetz","w":1.0}]},"munis":[],"slug":"goshen"},"56017":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 28","rep":"John Winter","w":1.0}],"ss":[{"d":"WY Senate District 20","rep":"Ed Cooper","w":1.0}]},"munis":[],"slug":"hot-springs"},"56019":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 40","rep":"Marilyn Connolly","w":1.0}],"ss":[{"d":"WY Senate District 22","rep":"Barry Crago","w":1.0}]},"munis":[{"m":"Buffalo","p":[{"n":"Shane J. Schrader","r":"Mayor, Buffalo, WY"}]}],"slug":"johnson"},"56021":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 10","rep":"Justin Fornstrom","w":0.463},{"d":"WY House District 4","rep":"Jeremy Haroldson","w":0.26},{"d":"WY House District 42","rep":"Rob Geringer","w":0.193},{"d":"WY House District 43","rep":"Ann Lucas","w":0.044},{"d":"WY House District 8","rep":"Steve Johnson","w":0.017},{"d":"WY House District 12","rep":"Clarence Styvar","w":0.013}],"ss":[{"d":"WY Senate District 6","rep":"Taft Love","w":0.722},{"d":"WY Senate District 5","rep":"Lynn Hutchings","w":0.206},{"d":"WY Senate District 31","rep":"Evie Brennan","w":0.045},{"d":"WY Senate District 4","rep":"Tara Nethercott","w":0.018},{"d":"WY Senate District 8","rep":"Jared Olsen","w":0.005}]},"munis":[{"m":"Cheyenne","p":[{"n":"Patrick Collins","r":"Mayor, Cheyenne, WY"}]}],"slug":"laramie"},"56023":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 18","rep":"Scott Heiner","w":0.571},{"d":"WY House District 22","rep":"Andrew Byron","w":0.209},{"d":"WY House District 21","rep":"McKay Erickson","w":0.115},{"d":"WY House District 20","rep":"Mike Schmid","w":0.105}],"ss":[{"d":"WY Senate District 14","rep":"Laura Pearson","w":0.675},{"d":"WY Senate District 16","rep":"Dan Dockstader","w":0.325}]},"munis":[{"m":"Kemmerer","p":[{"n":"William Thek","r":"Mayor, Kemmerer, WY"}]}],"slug":"lincoln"},"56025":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 38","rep":"Jayme Lien","w":0.702},{"d":"WY House District 58","rep":"Bill Allemand","w":0.186},{"d":"WY House District 62","rep":"Kevin Campbell","w":0.092},{"d":"WY House District 37","rep":"Steve Harshman","w":0.014}],"ss":[{"d":"WY Senate District 30","rep":"Charles Scott","w":0.888},{"d":"WY Senate District 2","rep":"Brian Boner","w":0.092},{"d":"WY Senate District 29","rep":"Bob Ide","w":0.015}]},"munis":[{"m":"Casper","p":[{"n":"Steve Cathey","r":"Mayor, Casper, WY"}]}],"slug":"natrona"},"56027":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 2","rep":"J.D. Williams","w":1.0}],"ss":[{"d":"WY Senate District 3","rep":"Cheri Steinmetz","w":1.0}]},"munis":[],"slug":"niobrara"},"56029":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 24","rep":"Nina Webber","w":0.521},{"d":"WY House District 50","rep":"Rachel Rodriguez-Williams","w":0.233},{"d":"WY House District 28","rep":"John Winter","w":0.208},{"d":"WY House District 26","rep":"Dalton Banks","w":0.028},{"d":"WY House District 25","rep":"Paul Hoeft","w":0.01}],"ss":[{"d":"WY Senate District 18","rep":"Tim French","w":0.753},{"d":"WY Senate District 20","rep":"Ed Cooper","w":0.208},{"d":"WY Senate District 19","rep":"Dan Laursen","w":0.038}]},"munis":[],"slug":"park"},"56031":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 4","rep":"Jeremy Haroldson","w":1.0}],"ss":[{"d":"WY Senate District 6","rep":"Taft Love","w":1.0}]},"munis":[],"slug":"platte"},"56033":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 51","rep":"Laurie Bratten","w":0.438},{"d":"WY House District 40","rep":"Marilyn Connolly","w":0.322},{"d":"WY House District 30","rep":"Tom Kelly","w":0.238}],"ss":[{"d":"WY Senate District 22","rep":"Barry Crago","w":0.527},{"d":"WY Senate District 21","rep":"Bo Biteman","w":0.473}]},"munis":[{"m":"Sheridan","p":[{"n":"Richard Bridger","r":"Mayor, Sheridan, WY"}]}],"slug":"sheridan"},"56035":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 20","rep":"Mike Schmid","w":1.0}],"ss":[{"d":"WY Senate District 14","rep":"Laura Pearson","w":1.0}]},"munis":[],"slug":"sublette"},"56037":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 47","rep":"Bob Davis","w":0.799},{"d":"WY House District 18","rep":"Scott Heiner","w":0.194}],"ss":[{"d":"WY Senate District 11","rep":"Larry Hicks","w":0.802},{"d":"WY Senate District 14","rep":"Laura Pearson","w":0.194}]},"munis":[{"m":"Green River","p":[{"n":"Pete Rust","r":"Mayor, Green River, WY"}]}],"slug":"sweetwater"},"56039":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 23","rep":"Liz Storer","w":0.932},{"d":"WY House District 22","rep":"Andrew Byron","w":0.067}],"ss":[{"d":"WY Senate District 17","rep":"Mike Gierau","w":0.933},{"d":"WY Senate District 16","rep":"Dan Dockstader","w":0.067}]},"munis":[],"slug":"teton"},"56041":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 19","rep":"Joe Webb","w":0.751},{"d":"WY House District 18","rep":"Scott Heiner","w":0.245}],"ss":[{"d":"WY Senate District 15","rep":"Wendy Schuler","w":0.754},{"d":"WY Senate District 14","rep":"Laura Pearson","w":0.245}]},"munis":[{"m":"Evanston","p":[{"n":"Kent Williams","r":"Mayor, Evanston, WY"}]}],"slug":"uinta"},"56043":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 27","rep":"Martha Lawley","w":1.0}],"ss":[{"d":"WY Senate District 20","rep":"Ed Cooper","w":1.0}]},"munis":[{"m":"Worland","p":[{"n":"Jim Gill","r":"Mayor, Worland, WY"}]}],"slug":"washakie"},"56045":{"county":[],"districts":{"cd":[{"d":"WY-00","rep":"Harriet M. Hageman","w":1.0}],"sh":[{"d":"WY House District 1","rep":"Chip Neiman","w":0.548},{"d":"WY House District 2","rep":"J.D. Williams","w":0.451}],"ss":[{"d":"WY Senate District 1","rep":"Ogden Driskill","w":0.548},{"d":"WY Senate District 3","rep":"Cheri Steinmetz","w":0.451}]},"munis":[],"slug":"weston"},"72001":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 23","rep":"Ensol Rodríguez","w":0.628},{"d":"PR House District 22","rep":"Joito Colón","w":0.372}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":1.0}]},"munis":[],"slug":""},"72003":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 18","rep":"Odalys González","w":0.677}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.678}]},"munis":[],"slug":""},"72005":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 17","rep":"Wilson Román","w":0.453},{"d":"PR House District 16","rep":"Rey Figueroa","w":0.03}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.483}]},"munis":[],"slug":""},"72007":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 5","rep":"Jorge Navarro Suárez","w":0.998}],"ss":[{"d":"PR Senate District 1","rep":"Juan Oscar Morales, Nitza Morán","w":0.998}]},"munis":[],"slug":""},"72009":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 27","rep":"Estrella Martínez Soto","w":0.997}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":1.0}]},"munis":[],"slug":""},"72011":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 18","rep":"Odalys González","w":0.88}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.881}]},"munis":[],"slug":""},"72013":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 14","rep":"Edgar Robles","w":0.606},{"d":"PR House District 13","rep":"Jerry Nieves","w":0.134}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.74}]},"munis":[],"slug":""},"72015":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 30","rep":"Fernando Sanabria Colón","w":0.421}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.421}]},"munis":[],"slug":""},"72017":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 13","rep":"Jerry Nieves","w":0.606}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.606}]},"munis":[],"slug":""},"72019":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 26","rep":"Josean Jiménez","w":0.818},{"d":"PR House District 28","rep":"Chino Roque","w":0.181}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":1.0}]},"munis":[],"slug":""},"72021":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 8","rep":"Yashira Lebrón","w":0.396},{"d":"PR House District 7","rep":"Luis Pérez","w":0.294},{"d":"PR House District 9","rep":"Félix Pacheco","w":0.279},{"d":"PR House District 6","rep":"Ángel Morey Noble","w":0.029}],"ss":[{"d":"PR Senate District 2","rep":"Carmelo Ríos Santiago, Migdalia Padilla Alvelo","w":0.999}]},"munis":[],"slug":""},"72023":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 20","rep":"Emilio Carlo","w":0.407}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.407}]},"munis":[],"slug":""},"72025":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 32","rep":"Conny Varela","w":0.617},{"d":"PR House District 31","rep":"Roberto López","w":0.381}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.999}]},"munis":[],"slug":""},"72027":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 15","rep":"Joel Franqui Atiles","w":0.747}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.747}]},"munis":[],"slug":""},"72029":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 37","rep":"Carmen Medina Calderón","w":0.764},{"d":"PR House District 38","rep":"Wanda Del Valle Correa","w":0.235}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.999}]},"munis":[],"slug":""},"72031":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 38","rep":"Wanda Del Valle Correa","w":0.345},{"d":"PR House District 40","rep":"Sergio Estévez","w":0.244},{"d":"PR House District 39","rep":"Roberto Rivera Ruiz de Porras","w":0.2}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.791}]},"munis":[],"slug":""},"72033":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 6","rep":"Ángel Morey Noble","w":0.449},{"d":"PR House District 10","rep":"Pellé Santiago","w":0.264}],"ss":[{"d":"PR Senate District 2","rep":"Carmelo Ríos Santiago, Migdalia Padilla Alvelo","w":0.713}]},"munis":[],"slug":""},"72035":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 29","rep":"Gretchen Hau","w":0.998}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":1.0}]},"munis":[],"slug":""},"72037":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 36","rep":"Johnny Méndez Núñez","w":0.182}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.182}]},"munis":[],"slug":""},"72039":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 22","rep":"Joito Colón","w":0.998}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.998}]},"munis":[],"slug":""},"72041":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 29","rep":"Gretchen Hau","w":0.998}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.999}]},"munis":[],"slug":""},"72043":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 26","rep":"Josean Jiménez","w":0.545},{"d":"PR House District 27","rep":"Estrella Martínez Soto","w":0.455}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":1.0}]},"munis":[],"slug":""},"72045":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 28","rep":"Chino Roque","w":0.998}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.999}]},"munis":[],"slug":""},"72047":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 28","rep":"Chino Roque","w":0.667},{"d":"PR House District 26","rep":"Josean Jiménez","w":0.332}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.999}]},"munis":[],"slug":""},"72049":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 36","rep":"Johnny Méndez Núñez","w":0.07}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.07}]},"munis":[],"slug":""},"72051":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 11","rep":"Elinette González Aguayo","w":0.434}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.434}]},"munis":[],"slug":""},"72053":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 36","rep":"Johnny Méndez Núñez","w":0.286}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.286}]},"munis":[],"slug":""},"72054":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 13","rep":"Jerry Nieves","w":0.998}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.999}]},"munis":[],"slug":""},"72055":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 21","rep":"Omayra Martínez","w":0.467}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.467}]},"munis":[],"slug":""},"72057":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 30","rep":"Fernando Sanabria Colón","w":0.614}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.614}]},"munis":[],"slug":""},"72059":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 23","rep":"Ensol Rodríguez","w":0.659}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.659}]},"munis":[],"slug":""},"72061":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 5","rep":"Jorge Navarro Suárez","w":0.674},{"d":"PR House District 6","rep":"Ángel Morey Noble","w":0.318}],"ss":[{"d":"PR Senate District 1","rep":"Juan Oscar Morales, Nitza Morán","w":0.675},{"d":"PR Senate District 2","rep":"Carmelo Ríos Santiago, Migdalia Padilla Alvelo","w":0.32}]},"munis":[],"slug":""},"72063":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 31","rep":"Roberto López","w":0.891},{"d":"PR House District 33","rep":"Ángel Peña Ramírez","w":0.108}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.999}]},"munis":[],"slug":""},"72065":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 14","rep":"Edgar Robles","w":0.386},{"d":"PR House District 15","rep":"Joel Franqui Atiles","w":0.325}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.711}]},"munis":[],"slug":""},"72067":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 20","rep":"Emilio Carlo","w":0.996}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":1.0}]},"munis":[],"slug":""},"72069":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 35","rep":"Sol Higgins","w":0.628}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.628}]},"munis":[],"slug":""},"72071":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 16","rep":"Rey Figueroa","w":0.602}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.602}]},"munis":[],"slug":""},"72073":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 25","rep":"Domingo Torres García","w":0.628},{"d":"PR House District 22","rep":"Joito Colón","w":0.372}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":1.0}]},"munis":[],"slug":""},"72075":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 25","rep":"Domingo Torres García","w":0.306},{"d":"PR House District 27","rep":"Estrella Martínez Soto","w":0.26}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.306},{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.261}]},"munis":[],"slug":""},"72077":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 33","rep":"Ángel Peña Ramírez","w":0.999}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":1.0}]},"munis":[],"slug":""},"72079":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 21","rep":"Omayra Martínez","w":0.595}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.595}]},"munis":[],"slug":""},"72081":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 22","rep":"Joito Colón","w":0.999}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":1.0}]},"munis":[],"slug":""},"72083":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 21","rep":"Omayra Martínez","w":0.998}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.998}]},"munis":[],"slug":""},"72085":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 33","rep":"Ángel Peña Ramírez","w":0.628},{"d":"PR House District 35","rep":"Sol Higgins","w":0.371}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":1.0}]},"munis":[],"slug":""},"72087":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 37","rep":"Carmen Medina Calderón","w":0.309}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.31}]},"munis":[],"slug":""},"72089":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 36","rep":"Johnny Méndez Núñez","w":0.553}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.553}]},"munis":[],"slug":""},"72091":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 13","rep":"Jerry Nieves","w":0.471},{"d":"PR House District 12","rep":"Edgardo Feliciano","w":0.179}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.651}]},"munis":[],"slug":""},"72093":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 21","rep":"Omayra Martínez","w":0.999}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.999}]},"munis":[],"slug":""},"72095":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 34","rep":"Christian Muriel","w":0.55}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.55}]},"munis":[],"slug":""},"72097":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 19","rep":"Lilly Rosas","w":0.279}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.28}]},"munis":[],"slug":""},"72099":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 17","rep":"Wilson Román","w":0.769},{"d":"PR House District 18","rep":"Odalys González","w":0.23}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":1.0}]},"munis":[],"slug":""},"72101":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 12","rep":"Edgardo Feliciano","w":0.999}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.999}]},"munis":[],"slug":""},"72103":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 35","rep":"Sol Higgins","w":0.713}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.713}]},"munis":[],"slug":""},"72105":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 28","rep":"Chino Roque","w":0.998}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.999}]},"munis":[],"slug":""},"72107":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 26","rep":"Josean Jiménez","w":0.999}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.999}]},"munis":[],"slug":""},"72109":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 34","rep":"Christian Muriel","w":0.625}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.625}]},"munis":[],"slug":""},"72111":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 23","rep":"Ensol Rodríguez","w":0.658}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.658}]},"munis":[],"slug":""},"72113":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 25","rep":"Domingo Torres García","w":0.44},{"d":"PR House District 24","rep":"Ángel Fourquet","w":0.113},{"d":"PR House District 23","rep":"Ensol Rodríguez","w":0.051}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.604}]},"munis":[],"slug":""},"72115":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 15","rep":"Joel Franqui Atiles","w":0.671}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.671}]},"munis":[],"slug":""},"72117":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 18","rep":"Odalys González","w":0.262}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.262}]},"munis":[],"slug":""},"72119":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 37","rep":"Carmen Medina Calderón","w":0.492},{"d":"PR House District 36","rep":"Johnny Méndez Núñez","w":0.185}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.678}]},"munis":[],"slug":""},"72121":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 21","rep":"Omayra Martínez","w":1.0}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":1.0}]},"munis":[],"slug":""},"72123":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 30","rep":"Fernando Sanabria Colón","w":0.602}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.602}]},"munis":[],"slug":""},"72125":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 20","rep":"Emilio Carlo","w":0.52},{"d":"PR House District 19","rep":"Lilly Rosas","w":0.479}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.999}]},"munis":[],"slug":""},"72127":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 4","rep":"Víctor Parés","w":0.152},{"d":"PR House District 2","rep":"Chino Ocasio","w":0.145},{"d":"PR House District 5","rep":"Jorge Navarro Suárez","w":0.138},{"d":"PR House District 3","rep":"Cheíto Hernández","w":0.112},{"d":"PR House District 1","rep":"Eddie Charbonier","w":0.095}],"ss":[{"d":"PR Senate District 1","rep":"Juan Oscar Morales, Nitza Morán","w":0.641}]},"munis":[],"slug":""},"72129":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 34","rep":"Christian Muriel","w":0.804},{"d":"PR House District 33","rep":"Ángel Peña Ramírez","w":0.195}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":1.0}]},"munis":[],"slug":""},"72131":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 16","rep":"Rey Figueroa","w":0.998}],"ss":[{"d":"PR Senate District 4","rep":"Jeison Rosa, Karen Román","w":0.999}]},"munis":[],"slug":""},"72133":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 27","rep":"Estrella Martínez Soto","w":0.297},{"d":"PR House District 30","rep":"Fernando Sanabria Colón","w":0.147}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":0.445}]},"munis":[],"slug":""},"72135":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 9","rep":"Félix Pacheco","w":0.998}],"ss":[{"d":"PR Senate District 2","rep":"Carmelo Ríos Santiago, Migdalia Padilla Alvelo","w":0.998}]},"munis":[],"slug":""},"72137":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 10","rep":"Pellé Santiago","w":0.559}],"ss":[{"d":"PR Senate District 2","rep":"Carmelo Ríos Santiago, Migdalia Padilla Alvelo","w":0.56}]},"munis":[],"slug":""},"72139":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 38","rep":"Wanda Del Valle Correa","w":0.725},{"d":"PR House District 39","rep":"Roberto Rivera Ruiz de Porras","w":0.273}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.998}]},"munis":[],"slug":""},"72141":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 22","rep":"Joito Colón","w":0.999}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":1.0}]},"munis":[],"slug":""},"72143":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 11","rep":"Elinette González Aguayo","w":0.411},{"d":"PR House District 12","rep":"Edgardo Feliciano","w":0.325}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.737}]},"munis":[],"slug":""},"72145":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 12","rep":"Edgardo Feliciano","w":0.474},{"d":"PR House District 11","rep":"Elinette González Aguayo","w":0.209}],"ss":[{"d":"PR Senate District 3","rep":"Brenda Pérez Soto, Gaby González","w":0.682}]},"munis":[],"slug":""},"72147":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 36","rep":"Johnny Méndez Núñez","w":0.194}],"ss":[{"d":"PR Senate District 8","rep":"Héctor Sánchez Álvarez, Marissa Jiménez","w":0.194}]},"munis":[],"slug":""},"72149":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 26","rep":"Josean Jiménez","w":0.999}],"ss":[{"d":"PR Senate District 6","rep":"Rafy Santos, Wilmer Reyes Berríos","w":1.0}]},"munis":[],"slug":""},"72151":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 34","rep":"Christian Muriel","w":0.662}],"ss":[{"d":"PR Senate District 7","rep":"Luis Daniel Colón La Santa, Wandy Soto","w":0.663}]},"munis":[],"slug":""},"72153":{"county":[],"districts":{"cd":[],"sh":[{"d":"PR House District 21","rep":"Omayra Martínez","w":0.646},{"d":"PR House District 23","rep":"Ensol Rodríguez","w":0.352}],"ss":[{"d":"PR Senate District 5","rep":"Jamie Barlucea, Marially González","w":0.999}]},"munis":[],"slug":""}}; const W=1000,H=620,PAD=14; const map=document.getElementById("map"); map.setAttribute("viewBox",`0 0 ${W} ${H}`); const fmtN=n=>n==null?"—":n.toLocaleString(); @@ -230,16 +230,25 @@ const slugify=s=>s.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-|-$/g,"") function flip(n){ if(n&&n.includes(",")){const p=n.split(",").map(s=>s.trim()); return [p[1],p[0],p[2]].filter(Boolean).join(" ");} return n||""; } function dcell(k,val){ return `
${k}
${val}
`; } function offRows(list){ return list.map(o=>`
${flip(o.n)}${o.r||""}
`).join(""); } +function distRows(list){ return list.map(d=>`
${d.rep||"—"}${d.d} · ${Math.round(d.w*100)}%
`).join(""); } function openDetail(fips){ const v=D[fips]; if(!v)return; const det=CDETAIL[fips]; const st=v.state, slug=det?det.slug:slugify(v.name.replace(/\s+County$/,"")); const total=det?det.county.length+det.munis.reduce((a,m)=>a+m.p.length,0):0; + const repN=(det&&det.districts)?["cd","ss","sh"].reduce((a,k)=>a+det.districts[k].filter(d=>d.rep).length,0):0; + const bits=[]; if(total)bits.push(total+" local officials"); if(repN)bits.push(repN+" representatives"); let h=`
${v.name}
-
${st}${det?` · ${total} officeholders mirrored`:""}
-
${dcell("Population",fmtN(v.pop))}${dcell("Median income",fmt$(v.income))}${dcell("Poverty",fmtP(v.poverty))}${dcell("Homeownership",fmtP(v.home))}${dcell("Unemployment",fmtP(v.unemp))}${dcell("Officeholders",total||"—")}
`; +
${st}${bits.length?" · "+bits.join(" · "):""}
+
${dcell("Population",fmtN(v.pop))}${dcell("Median income",fmt$(v.income))}${dcell("Poverty",fmtP(v.poverty))}${dcell("Homeownership",fmtP(v.home))}${dcell("Unemployment",fmtP(v.unemp))}${dcell("Officeholders",total||"\u2014")}
`; if(det){ if(det.county.length) h+=`

County government ${det.county.length}

${offRows(det.county)}
`; det.munis.forEach(m=>{ h+=`

${m.m} ${m.p.length}

${offRows(m.p)}
`; }); + if(det.districts){ const dd=det.districts; + const seg=(lab,list)=>(list&&list.length)?`

${lab} ${list.length}

${distRows(list)}
`:""; + h+=seg("In Congress",dd.cd)+seg("State Senate",dd.ss)+seg("State House",dd.sh); + } + if(!det.county.length&&!det.munis.length&&!det.districts) + h+=`
This county's demographic node is in the mirror; its officeholders haven't been added yet.
`; } else { h+=`
This county's demographic node is in the mirror; its officeholders haven't been added yet. Florida is mirrored to the municipal level today.
`; } diff --git a/viz/county_detail.json b/viz/county_detail.json index 59ae56479c..1bcacb5123 100644 --- a/viz/county_detail.json +++ b/viz/county_detail.json @@ -1 +1 @@ -{"01001": {"county": [], "munis": [{"m": "Prattville", "p": [{"n": "Bill Gillespie, Jr.", "r": "Mayor, Prattville, AL"}]}], "slug": "autauga"}, "01003": {"county": [], "munis": [{"m": "Bay Minette", "p": [{"n": "Robert Wills", "r": "Mayor, Bay Minette, AL"}]}, {"m": "Daphne", "p": [{"n": "Robin LeJeune", "r": "Mayor, Daphne, AL"}]}, {"m": "Fairhope", "p": [{"n": "Sherry Sullivan", "r": "Mayor, Fairhope, AL"}]}, {"m": "Foley", "p": [{"n": "Ralph Hellmich", "r": "Mayor, Foley, AL"}]}, {"m": "Robertsdale", "p": [{"n": "Charles H. Murphy", "r": "Mayor, Robertsdale, AL"}]}, {"m": "Spanish Fort", "p": [{"n": "Michael M. McMillan", "r": "Mayor, Spanish Fort, AL"}]}], "slug": "baldwin"}, "01009": {"county": [], "munis": [{"m": "Oneonta", "p": [{"n": "Richard M. Phillips", "r": "Mayor, Oneonta, AL"}]}], "slug": "blount"}, "01021": {"county": [], "munis": [{"m": "Clanton", "p": [{"n": "Jeff Mims", "r": "Mayor, Clanton, AL"}]}], "slug": "chilton"}, "01031": {"county": [], "munis": [{"m": "Enterprise", "p": [{"n": "William E. Cooper", "r": "Mayor, Enterprise, AL"}]}], "slug": "coffee"}, "01043": {"county": [], "munis": [{"m": "Cullman", "p": [{"n": "Woody Jacobs", "r": "Mayor, Cullman, AL"}]}], "slug": "cullman"}, "01051": {"county": [], "munis": [{"m": "Wetumpka", "p": [{"n": "Jerry Willis", "r": "Mayor, Wetumpka, AL"}]}], "slug": "elmore"}, "01055": {"county": [], "munis": [{"m": "Gadsden", "p": [{"n": "Craig Ford", "r": "Mayor, Gadsden, AL"}]}, {"m": "Glencoe", "p": [{"n": "Chris Hare", "r": "Mayor, Glencoe, AL"}]}], "slug": "etowah"}, "01069": {"county": [], "munis": [{"m": "Dothan", "p": [{"n": "Mike Schmitz", "r": "Mayor, Dothan, AL"}]}], "slug": "houston"}, "01073": {"county": [], "munis": [{"m": "Bessemer", "p": [{"n": "Kenneth E. Gulley", "r": "Mayor, Bessemer, AL"}]}, {"m": "Birmingham", "p": [{"n": "Randall Woodfin", "r": "Mayor, Birmingham, AL"}]}, {"m": "Hoover", "p": [{"n": "Frank Brocato", "r": "Mayor, Hoover, AL"}]}, {"m": "Trussville", "p": [{"n": "Buddy Choat", "r": "Mayor, Trussville, AL"}]}, {"m": "Vestavia Hills", "p": [{"n": "Ashley Curry", "r": "Mayor, Vestavia Hills, AL"}]}], "slug": "jefferson"}, "01077": {"county": [], "munis": [{"m": "Florence", "p": [{"n": "Andrew Betterton", "r": "Mayor, Florence, AL"}]}], "slug": "lauderdale"}, "01081": {"county": [], "munis": [{"m": "Auburn", "p": [{"n": "Ron Anders, Jr.", "r": "Mayor, Auburn, AL"}]}, {"m": "Opelika", "p": [{"n": "Gary Fuller", "r": "Mayor, Opelika, AL"}]}], "slug": "lee"}, "01083": {"county": [], "munis": [{"m": "Athens", "p": [{"n": "William R. \"Ronnie\" Marks", "r": "Mayor, Athens, AL"}]}], "slug": "limestone"}, "01089": {"county": [], "munis": [{"m": "Huntsville", "p": [{"n": "Tommy Battle", "r": "Mayor, Huntsville, AL"}]}, {"m": "Madison", "p": [{"n": "Paul Finley", "r": "Mayor, Madison, AL"}]}], "slug": "madison"}, "01095": {"county": [], "munis": [{"m": "Albertville", "p": [{"n": "Tracy Honea", "r": "Mayor, Albertville, AL"}]}, {"m": "Boaz", "p": [{"n": "David Dyar", "r": "Mayor, Boaz, AL"}]}], "slug": "marshall"}, "01097": {"county": [], "munis": [{"m": "Bayou La Batre", "p": [{"n": "Henry Barnes, Sr.", "r": "Mayor, Bayou La Batre, AL"}]}, {"m": "Citronelle", "p": [{"n": "Jason Stringer", "r": "Mayor, Citronelle, AL"}]}, {"m": "Mobile", "p": [{"n": "Sandy Stimpson", "r": "Mayor, Mobile, AL"}]}, {"m": "Semmes", "p": [{"n": "Brandon Van Hook", "r": "Mayor, Semmes, AL"}]}], "slug": "mobile"}, "01101": {"county": [], "munis": [{"m": "Montgomery", "p": [{"n": "Steven Reed", "r": "Mayor, Montgomery, AL"}]}], "slug": "montgomery"}, "01103": {"county": [], "munis": [{"m": "Decatur", "p": [{"n": "Tab Bowling", "r": "Mayor, Decatur, AL"}]}], "slug": "morgan"}, "01113": {"county": [], "munis": [{"m": "Phenix City", "p": [{"n": "Eddie N. Lowe", "r": "Mayor, Phenix City, AL"}]}], "slug": "russell"}, "01117": {"county": [], "munis": [{"m": "Alabaster", "p": [{"n": "Scott Brakefield", "r": "Mayor, Alabaster, AL"}]}], "slug": "shelby"}, "01123": {"county": [], "munis": [{"m": "Alexander City", "p": [{"n": "James Douglas Nabors", "r": "Mayor, Alexander City, AL"}]}], "slug": "tallapoosa"}, "01125": {"county": [], "munis": [{"m": "Northport", "p": [{"n": "John Hinton", "r": "Mayor, Northport, AL"}]}, {"m": "Tuscaloosa", "p": [{"n": "Walter Maddox", "r": "Mayor, Tuscaloosa, AL"}]}], "slug": "tuscaloosa"}, "02090": {"county": [], "munis": [{"m": "Fairbanks", "p": [{"n": "David Pruhs", "r": "Mayor, Fairbanks, AK"}]}], "slug": "fairbanks-north-star-borough"}, "04003": {"county": [], "munis": [{"m": "Bisbee", "p": [{"n": "Ken Budge", "r": "Mayor, Bisbee, AZ"}]}], "slug": "cochise"}, "04005": {"county": [], "munis": [{"m": "Flagstaff", "p": [{"n": "Paul Deasy", "r": "Mayor, Flagstaff, AZ"}]}], "slug": "coconino"}, "04009": {"county": [], "munis": [{"m": "Safford", "p": [{"n": "Jason Kouts", "r": "Mayor, Safford, AZ"}]}], "slug": "graham"}, "04013": {"county": [], "munis": [{"m": "Avondale", "p": [{"n": "Kenneth Weise", "r": "Mayor, Avondale, AZ"}]}, {"m": "Buckeye", "p": [{"n": "Eric Orsborn", "r": "Mayor, Buckeye, AZ"}]}, {"m": "Chandler", "p": [{"n": "Jay Tibshraeny", "r": "Mayor, Chandler, AZ"}]}, {"m": "El Mirage", "p": [{"n": "Alexis Hermosillo", "r": "Mayor, El Mirage, AZ"}]}, {"m": "Glendale", "p": [{"n": "Q61858351", "r": "Mayor, Glendale, AZ"}]}, {"m": "Goodyear", "p": [{"n": "Joe Pizzillo", "r": "Mayor, Goodyear, AZ"}]}, {"m": "Mesa", "p": [{"n": "John Giles", "r": "Mayor, Mesa, AZ"}]}, {"m": "Peoria", "p": [{"n": "Cathy Carlat", "r": "Mayor, Peoria, AZ"}]}, {"m": "Phoenix", "p": [{"n": "Kate Gallego", "r": "Mayor, Phoenix, AZ"}]}, {"m": "Scottsdale", "p": [{"n": "Lisa Borowsky", "r": "Mayor, Scottsdale, AZ"}]}, {"m": "Surprise", "p": [{"n": "Skip Hall", "r": "Mayor, Surprise, AZ"}]}, {"m": "Tempe", "p": [{"n": "Corey Woods", "r": "Mayor, Tempe, AZ"}]}], "slug": "maricopa"}, "04015": {"county": [], "munis": [{"m": "Kingman", "p": [{"n": "Jen Miles", "r": "Mayor, Kingman, AZ"}]}], "slug": "mohave"}, "04017": {"county": [], "munis": [{"m": "Holbrook", "p": [{"n": "J. Merrill Young", "r": "Mayor, Holbrook, AZ"}]}], "slug": "navajo"}, "04019": {"county": [], "munis": [{"m": "Tucson", "p": [{"n": "Regina Romero", "r": "Mayor, Tucson, AZ"}]}], "slug": "pima"}, "04023": {"county": [], "munis": [{"m": "Nogales", "p": [{"n": "Arturo Garino", "r": "Mayor, Nogales, AZ"}]}], "slug": "santa-cruz"}, "04025": {"county": [], "munis": [{"m": "Prescott", "p": [{"n": "Phil Goode", "r": "Mayor, Prescott, AZ"}]}], "slug": "yavapai"}, "05007": {"county": [], "munis": [{"m": "Bentonville", "p": [{"n": "Stephanie Orman", "r": "Mayor, Bentonville, AR"}]}], "slug": "benton"}, "05021": {"county": [], "munis": [{"m": "Piggott", "p": [{"n": "Jeff Benbrook", "r": "Mayor, Piggott, AR"}]}], "slug": "clay"}, "05027": {"county": [], "munis": [{"m": "Magnolia", "p": [{"n": "Parnell Vann", "r": "Mayor, Magnolia, AR"}]}], "slug": "columbia"}, "05031": {"county": [], "munis": [{"m": "Jonesboro", "p": [{"n": "Harold Copenhaver", "r": "Mayor, Jonesboro, AR"}]}], "slug": "craighead"}, "05033": {"county": [], "munis": [{"m": "Van Buren", "p": [{"n": "Joe Hurst", "r": "Mayor, Van Buren, AR"}]}], "slug": "crawford"}, "05035": {"county": [], "munis": [{"m": "West Memphis", "p": [{"n": "Marco McClendon", "r": "Mayor, West Memphis, AR"}]}], "slug": "crittenden"}, "05057": {"county": [], "munis": [{"m": "Hope", "p": [{"n": "Don Still", "r": "Mayor, Hope, AR"}]}], "slug": "hempstead"}, "05063": {"county": [], "munis": [{"m": "Batesville", "p": [{"n": "Rick Elumbaugh", "r": "Mayor, Batesville, AR"}]}], "slug": "independence"}, "05085": {"county": [], "munis": [{"m": "Cabot", "p": [{"n": "Ken Kincade", "r": "Mayor, Cabot, AR"}]}], "slug": "lonoke"}, "05119": {"county": [], "munis": [{"m": "Little Rock", "p": [{"n": "Frank Scott Jr.", "r": "Mayor, Little Rock, AR"}]}], "slug": "pulaski"}, "05123": {"county": [], "munis": [{"m": "Hughes", "p": [{"n": "Shelby C. Pulliam", "r": "Mayor, Hughes, AR"}]}], "slug": "st-francis"}, "05125": {"county": [], "munis": [{"m": "Benton", "p": [{"n": "Tom Farmer", "r": "Mayor, Benton, AR"}]}], "slug": "saline"}, "05131": {"county": [], "munis": [{"m": "Fort Smith", "p": [{"n": "George McGill", "r": "Mayor, Fort Smith, AR"}]}], "slug": "sebastian"}, "05133": {"county": [], "munis": [{"m": "De Queen", "p": [{"n": "Jeff Brown", "r": "Mayor, De Queen, AR"}]}], "slug": "sevier"}, "05143": {"county": [], "munis": [{"m": "Fayetteville", "p": [{"n": "Lioneld Jordan", "r": "Mayor, Fayetteville, AR"}]}], "slug": "washington"}, "06001": {"county": [], "munis": [{"m": "Berkeley", "p": [{"n": "Adena Ishii", "r": "Mayor, Berkeley, CA"}]}, {"m": "Fremont", "p": [{"n": "Lily Mei", "r": "Mayor, Fremont, CA"}]}, {"m": "Oakland", "p": [{"n": "Sheng Thao", "r": "Mayor, Oakland, CA"}]}], "slug": "alameda"}, "06007": {"county": [], "munis": [{"m": "Chico", "p": [{"n": "Kasey Reynolds", "r": "Mayor, Chico, CA"}]}, {"m": "Oroville", "p": [{"n": "Chuck Reynolds", "r": "Mayor, Oroville, CA"}]}], "slug": "butte"}, "06013": {"county": [], "munis": [{"m": "Antioch", "p": [{"n": "Ron Bernal", "r": "Mayor, Antioch, CA"}]}, {"m": "Brentwood", "p": [{"n": "Joel Bryant", "r": "Mayor, Brentwood, CA"}]}, {"m": "Concord", "p": [{"n": "Laura Hoffmeister", "r": "Mayor, Concord, CA"}]}, {"m": "Martinez", "p": [{"n": "Rob Schroder", "r": "Mayor, Martinez, CA"}]}, {"m": "Oakley", "p": [{"n": "Randy Pope", "r": "Mayor, Oakley, CA"}]}, {"m": "Richmond", "p": [{"n": "Eduardo Martinez", "r": "Mayor, Richmond, CA"}]}, {"m": "San Pablo", "p": [{"n": "Rita Xavier", "r": "Mayor, San Pablo, CA"}]}], "slug": "contra-costa"}, "06019": {"county": [], "munis": [{"m": "Clovis", "p": [{"n": "Jose Flores", "r": "Mayor, Clovis, CA"}]}, {"m": "Fresno", "p": [{"n": "Jerry Dyer", "r": "Mayor, Fresno, CA"}]}], "slug": "fresno"}, "06025": {"county": [], "munis": [{"m": "El Centro", "p": [{"n": "Tomas Olivia", "r": "Mayor, El Centro, CA"}]}, {"m": "Imperial", "p": [{"n": "Geoffrey Dale", "r": "Mayor, Imperial, CA"}]}], "slug": "imperial"}, "06029": {"county": [], "munis": [{"m": "Arvin", "p": [{"n": "Olivia Calderon", "r": "Mayor, Arvin, CA"}]}, {"m": "Bakersfield", "p": [{"n": "Karen Goh", "r": "Mayor, Bakersfield, CA"}]}], "slug": "kern"}, "06037": {"county": [], "munis": [{"m": "Alhambra", "p": [{"n": "Jeffrey Koji Maloney", "r": "Mayor, Alhambra, CA"}]}, {"m": "Beverly Hills", "p": [{"n": "Bob Wunderlich", "r": "Mayor, Beverly Hills, CA"}]}, {"m": "Carson", "p": [{"n": "Lula Davis-Holmes", "r": "Mayor, Carson, CA"}]}, {"m": "Compton", "p": [{"n": "Aja Brown", "r": "Mayor, Compton, CA"}]}, {"m": "Downey", "p": [{"n": "Claudia Frometa", "r": "Mayor, Downey, CA"}]}, {"m": "El Monte", "p": [{"n": "Jessica Ancona", "r": "Mayor, El Monte, CA"}]}, {"m": "Glendale", "p": [{"n": "Zareh Sinanyan", "r": "Mayor, Glendale, CA"}]}, {"m": "Glendora", "p": [{"n": "Gary Boyer", "r": "Mayor, Glendora, CA"}]}, {"m": "Hawthorne", "p": [{"n": "Alex Vargas", "r": "Mayor, Hawthorne, CA"}]}, {"m": "Hermosa Beach", "p": [{"n": "Michael Detoy", "r": "Mayor, Hermosa Beach, CA"}]}, {"m": "Industry", "p": [{"n": "Cory C. Moss", "r": "Mayor, City of Industry, CA"}]}, {"m": "Inglewood", "p": [{"n": "James T. Butts Jr.", "r": "Mayor, Inglewood, CA"}]}, {"m": "Lancaster", "p": [{"n": "R. Rex Parris", "r": "Mayor, Lancaster, CA"}]}, {"m": "Long Beach", "p": [{"n": "Robert Garcia", "r": "Mayor, Long Beach, CA"}]}, {"m": "Los Angeles", "p": [{"n": "Karen Bass", "r": "Mayor, Los Angeles, CA"}]}, {"m": "Norwalk", "p": [{"n": "Rick Ramirez", "r": "Mayor, Norwalk, CA"}]}, {"m": "Palmdale", "p": [{"n": "Steve Hofbauer", "r": "Mayor, Palmdale, CA"}]}, {"m": "Pasadena", "p": [{"n": "Victor Gordo", "r": "Mayor, Pasadena, CA"}]}, {"m": "Pomona", "p": [{"n": "Tim Sandoval", "r": "Mayor, Pomona, CA"}]}, {"m": "Rolling Hills Estates", "p": [{"n": "Debby Stegura", "r": "Mayor, Rolling Hills Estates, CA"}]}, {"m": "Santa Clarita", "p": [{"n": "Jason Gibbs", "r": "Mayor, Santa Clarita, CA"}]}, {"m": "Santa Monica", "p": [{"n": "Gleam Davis", "r": "Mayor, Santa Monica, CA"}]}, {"m": "South Gate", "p": [{"n": "Maria del Pilar Avalos", "r": "Mayor, South Gate, CA"}]}, {"m": "Torrance", "p": [{"n": "George Chen", "r": "Mayor, Torrance, CA"}]}, {"m": "West Covina", "p": [{"n": "Dario Castellanos", "r": "Mayor, West Covina, CA"}]}, {"m": "West Hollywood", "p": [{"n": "Q6238541", "r": "Mayor, West Hollywood, CA"}]}], "slug": "los-angeles"}, "06041": {"county": [], "munis": [{"m": "Mill Valley", "p": [{"n": "John McCauley", "r": "Mayor, Mill Valley, CA"}]}], "slug": "marin"}, "06053": {"county": [], "munis": [{"m": "Salinas", "p": [{"n": "Kimbley Craig", "r": "Mayor, Salinas, CA"}]}], "slug": "monterey"}, "06055": {"county": [], "munis": [{"m": "St Helena", "p": [{"n": "Paul Dohring", "r": "Mayor, St. Helena, CA"}]}], "slug": "napa"}, "06059": {"county": [], "munis": [{"m": "Anaheim", "p": [{"n": "Ashleigh Aitken", "r": "Mayor, Anaheim, CA"}]}, {"m": "Buena Park", "p": [{"n": "Joyce Ahn", "r": "Mayor, Buena Park, CA"}]}, {"m": "Costa Mesa", "p": [{"n": "John Stephens", "r": "Mayor, Costa Mesa, CA"}]}, {"m": "Fullerton", "p": [{"n": "Fred Jung", "r": "Mayor, Fullerton, CA"}]}, {"m": "Garden Grove", "p": [{"n": "Steve Jones", "r": "Mayor, Garden Grove, CA"}]}, {"m": "Huntington Beach", "p": [{"n": "Tony Strickland", "r": "Mayor, Huntington Beach, CA"}]}, {"m": "Irvine", "p": [{"n": "Larry Agran", "r": "Mayor, Irvine, CA"}]}, {"m": "Orange", "p": [{"n": "Dan Slater", "r": "Mayor, Orange, CA"}]}, {"m": "Santa Ana", "p": [{"n": "Valerie Amezcua", "r": "Mayor, Santa Ana, CA"}]}], "slug": "orange"}, "06065": {"county": [], "munis": [{"m": "Corona", "p": [{"n": "Wes Speake", "r": "Mayor, Corona, CA"}]}, {"m": "Indio", "p": [{"n": "Glenn Miller", "r": "Mayor, Indio, CA"}]}, {"m": "Jurupa Valley", "p": [{"n": "Chris Barajas", "r": "Mayor, Jurupa Valley, CA"}]}, {"m": "Menifee", "p": [{"n": "Bill Zimmerman", "r": "Mayor, Menifee, CA"}]}, {"m": "Moreno Valley", "p": [{"n": "Yxstian Gutierrez", "r": "Mayor, Moreno Valley, CA"}]}, {"m": "Murrieta", "p": [{"n": "Lisa DeForest", "r": "Mayor, Murrieta, CA"}]}, {"m": "Riverside", "p": [{"n": "Patricia Lock Dawson", "r": "Mayor, Riverside, CA"}]}, {"m": "Temecula", "p": [{"n": "Matt Rahn", "r": "Mayor, Temecula, CA"}]}], "slug": "riverside"}, "06067": {"county": [], "munis": [{"m": "Elk Grove", "p": [{"n": "Bobbie Singh-Allen", "r": "Mayor, Elk Grove, CA"}]}, {"m": "Sacramento", "p": [{"n": "Darrell Steinberg", "r": "Mayor, Sacramento, CA"}]}], "slug": "sacramento"}, "06071": {"county": [], "munis": [{"m": "Chino", "p": [{"n": "Eunice Ulloa", "r": "Mayor, Chino, CA"}]}, {"m": "Chino Hills", "p": [{"n": "Peter Rogers", "r": "Mayor, Chino Hills, CA"}]}, {"m": "Fontana", "p": [{"n": "Acquanetta Warren", "r": "Mayor, Fontana, CA"}]}, {"m": "Hesperia", "p": [{"n": "Brigit Bennington", "r": "Mayor, Hesperia, CA"}]}, {"m": "Ontario", "p": [{"n": "Paul Leon", "r": "Mayor, Ontario, CA"}]}, {"m": "Rancho Cucamonga", "p": [{"n": "L. Dennis Michael", "r": "Mayor, Rancho Cucamonga, CA"}]}, {"m": "Redlands", "p": [{"n": "Paul Barich", "r": "Mayor, Redlands, CA"}]}, {"m": "Rialto", "p": [{"n": "Deborah Robertson", "r": "Mayor, Rialto, CA"}]}, {"m": "San Bernardino", "p": [{"n": "Helen Tran", "r": "Mayor, San Bernardino, CA"}]}, {"m": "Victorville", "p": [{"n": "Debra Jones", "r": "Mayor, Victorville, CA"}]}], "slug": "san-bernardino"}, "06073": {"county": [], "munis": [{"m": "Carlsbad", "p": [{"n": "Matt Hall", "r": "Mayor, Carlsbad, CA"}]}, {"m": "Chula Vista", "p": [{"n": "John McCann", "r": "Mayor, Chula Vista, CA"}]}, {"m": "El Cajon", "p": [{"n": "Bill Wells", "r": "Mayor, El Cajon, CA"}]}, {"m": "Escondido", "p": [{"n": "Q133980654", "r": "Mayor, Escondido, CA"}]}, {"m": "Lemon Grove", "p": [{"n": "Q64492156", "r": "Mayor, Lemon Grove, CA"}]}, {"m": "Oceanside", "p": [{"n": "Esther C. Sanchez", "r": "Mayor, Oceanside, CA"}]}, {"m": "San Diego", "p": [{"n": "Todd Gloria", "r": "Mayor, San Diego, CA"}]}, {"m": "San Marcos", "p": [{"n": "Rebecca Jones", "r": "Mayor, San Marcos, CA"}]}, {"m": "Vista", "p": [{"n": "John Franklin", "r": "Mayor, Vista, CA"}]}], "slug": "san-diego"}, "06079": {"county": [], "munis": [{"m": "Arroyo Grande", "p": [{"n": "Caren Ray Russom", "r": "Mayor, Arroyo Grande, CA"}]}, {"m": "Atascadero", "p": [{"n": "Charles Bourbeau", "r": "Mayor, Atascadero, CA"}]}], "slug": "san-luis-obispo"}, "06081": {"county": [], "munis": [{"m": "Daly City", "p": [{"n": "Rod Daus-Magbual", "r": "Mayor, Daly City, CA"}]}, {"m": "Menlo Park", "p": [{"n": "Cecilia Taylor", "r": "Mayor, Menlo Park, CA"}]}, {"m": "Pacifica", "p": [{"n": "Q105071623", "r": "Mayor, Pacifica, CA"}]}, {"m": "San Mateo", "p": [{"n": "Rick Bonilla", "r": "Mayor, San Mateo, CA"}]}], "slug": "san-mateo"}, "06083": {"county": [], "munis": [{"m": "Guadalupe", "p": [{"n": "Ariston Julian", "r": "Mayor, Guadalupe, CA"}]}, {"m": "Santa Barbara", "p": [{"n": "Cathy Murillo", "r": "Mayor, Santa Barbara, CA"}]}], "slug": "santa-barbara"}, "06085": {"county": [], "munis": [{"m": "Los Altos", "p": [{"n": "Sally Meadows", "r": "Mayor, Los Altos, CA"}]}, {"m": "Palo Alto", "p": [{"n": "Adrian Fine", "r": "Mayor, Palo Alto, CA"}]}, {"m": "San Jose", "p": [{"n": "Matt Mahan", "r": "Mayor, San Jose, CA"}]}, {"m": "Santa Clara", "p": [{"n": "Lisa Gillmor", "r": "Mayor, Santa Clara, CA"}]}, {"m": "Sunnyvale", "p": [{"n": "Larry Klein", "r": "Mayor, Sunnyvale, CA"}]}], "slug": "santa-clara"}, "06089": {"county": [], "munis": [{"m": "Anderson", "p": [{"n": "Susie Baugh", "r": "Mayor, Anderson, CA"}]}, {"m": "Redding", "p": [{"n": "Michael Dacquisto", "r": "Mayor, Redding, CA"}]}], "slug": "shasta"}, "06095": {"county": [], "munis": [{"m": "Fairfield", "p": [{"n": "Harry T. Price", "r": "Mayor, Fairfield, CA"}]}, {"m": "Vacaville", "p": [{"n": "Ron Rowlett", "r": "Mayor, Vacaville, CA"}]}, {"m": "Vallejo", "p": [{"n": "Robert H. McConnell", "r": "Mayor, Vallejo, CA"}]}], "slug": "solano"}, "06097": {"county": [], "munis": [{"m": "Healdsburg", "p": [{"n": "Oswaldo Jimenez", "r": "Mayor, Healdsburg, CA"}]}, {"m": "Santa Rosa", "p": [{"n": "Chris Rogers", "r": "Mayor, Santa Rosa, CA"}]}], "slug": "sonoma"}, "06099": {"county": [], "munis": [{"m": "Modesto", "p": [{"n": "Sue Zwahlen", "r": "Mayor, Modesto, CA"}]}], "slug": "stanislaus"}, "06107": {"county": [], "munis": [{"m": "Visalia", "p": [{"n": "Brian Poochigian", "r": "Mayor, Visalia, CA"}]}], "slug": "tulare"}, "06111": {"county": [], "munis": [{"m": "Oxnard", "p": [{"n": "John C. Zaragoza", "r": "Mayor, Oxnard, CA"}]}, {"m": "Port Hueneme", "p": [{"n": "Richard W. Rollins", "r": "Mayor, Port Hueneme, CA"}]}, {"m": "San Buenaventura Ventura", "p": [{"n": "Joe Schroeder", "r": "Mayor, Ventura, CA"}]}, {"m": "Simi Valley", "p": [{"n": "Keith Mashburn", "r": "Mayor, Simi Valley, CA"}]}, {"m": "Thousand Oaks", "p": [{"n": "Bob Engler", "r": "Mayor, Thousand Oaks, CA"}]}], "slug": "ventura"}, "06113": {"county": [], "munis": [{"m": "Woodland", "p": [{"n": "Mayra Vega", "r": "Mayor, Woodland, CA"}]}], "slug": "yolo"}, "08001": {"county": [], "munis": [{"m": "Thornton", "p": [{"n": "Janifer Kulmann", "r": "Mayor, Thornton, CO"}]}, {"m": "Westminster", "p": [{"n": "Nancy McNally", "r": "Mayor, Westminster, CO"}]}], "slug": "adams"}, "08005": {"county": [], "munis": [{"m": "Aurora", "p": [{"n": "Mike Coffman", "r": "Mayor, Aurora, CO"}]}, {"m": "Centennial", "p": [{"n": "Stephanie Piko", "r": "Mayor, Centennial, CO"}]}, {"m": "Englewood", "p": [{"n": "Othoniel Sierra", "r": "Mayor, Englewood, CO"}]}], "slug": "arapahoe"}, "08013": {"county": [], "munis": [{"m": "Boulder", "p": [{"n": "Aaron Brockett", "r": "Mayor, Boulder, CO"}]}, {"m": "Longmont", "p": [{"n": "Jean Peck", "r": "Mayor, Longmont, CO"}]}], "slug": "boulder"}, "08041": {"county": [], "munis": [{"m": "Colorado Springs", "p": [{"n": "Yemi Mobolade", "r": "Mayor, Colorado Springs, CO"}]}], "slug": "el-paso"}, "08051": {"county": [], "munis": [{"m": "Gunnison", "p": [{"n": "Diego Plata", "r": "Mayor, Gunnison, CO"}]}], "slug": "gunnison"}, "08059": {"county": [], "munis": [{"m": "Arvada", "p": [{"n": "Marc Williams", "r": "Mayor, Arvada, CO"}]}], "slug": "jefferson"}, "08069": {"county": [], "munis": [{"m": "Fort Collins", "p": [{"n": "Jeni Arndt", "r": "Mayor, Fort Collins, CO"}]}], "slug": "larimer"}, "08101": {"county": [], "munis": [{"m": "Pueblo", "p": [{"n": "Nick Gradisar", "r": "Mayor, Pueblo, CO"}]}], "slug": "pueblo"}, "08123": {"county": [], "munis": [{"m": "Greeley", "p": [{"n": "John Gates", "r": "Mayor, Greeley, CO"}]}], "slug": "weld"}, "10001": {"county": [], "munis": [{"m": "Dover", "p": [{"n": "Robin Christiansen", "r": "Mayor, Dover, DE"}]}], "slug": "kent"}, "10003": {"county": [], "munis": [{"m": "New Castle", "p": [{"n": "Valarie Leary", "r": "Mayor, New Castle, DE"}]}, {"m": "Newark", "p": [{"n": "Jerry Clifton", "r": "Mayor, Newark, DE"}]}, {"m": "Wilmington", "p": [{"n": "Mike Purzycki", "r": "Mayor, Wilmington, DE"}]}], "slug": "new-castle"}, "10005": {"county": [], "munis": [{"m": "Milford", "p": [{"n": "Todd Culotta", "r": "Mayor, Milford, DE"}]}, {"m": "Seaford", "p": [{"n": "Matthew MacCoy", "r": "Mayor, Seaford, DE"}]}], "slug": "sussex"}, "12001": {"county": [{"n": "Anna Prizzia", "r": "Commissioner, Alachua County"}, {"n": "Ayesha Solomon", "r": "Property Appraiser, Alachua County"}, {"n": "Charles S. Chestnut", "r": "Commissioner, Alachua County"}, {"n": "Diyonne L. McGraw", "r": "Alachua County School Board"}, {"n": "Jess Irby", "r": "Clerk of Court, Alachua County"}, {"n": "John Power", "r": "Tax Collector, Alachua County"}, {"n": "Jr., Clovis Watson", "r": "Sheriff, Alachua County"}, {"n": "Kay G. Abbitt", "r": "Alachua County School Board"}, {"n": "Ken Cornell", "r": "Commissioner, Alachua County"}, {"n": "Kim Barton", "r": "Supervisor of Elections, Alachua County"}, {"n": "Leanetta McNealy", "r": "Alachua County School Board"}, {"n": "Marihelen Wheeler", "r": "Commissioner, Alachua County"}, {"n": "Mary Alford", "r": "Commissioner, Alachua County"}, {"n": "Sarah Rockwell", "r": "Alachua County School Board"}, {"n": "Thomas Vu", "r": "Alachua County School Board"}], "munis": [{"m": "Alachua", "p": [{"n": "Jackson M. Youmas", "r": "Alachua City Council"}, {"n": "Jacob Fletcher", "r": "Alachua City Council"}, {"n": "Jennifer Ringersen", "r": "Alachua City Council"}, {"n": "Shirley Green Brown", "r": "Alachua City Council"}, {"n": "Walter M. Welch", "r": "Mayor of Alachua"}]}, {"m": "Archer", "p": [{"n": "Bill Lewandowski", "r": "Archer City Council"}, {"n": "Fletcher Hope", "r": "Mayor of Archer"}, {"n": "Iris D. Bailey", "r": "Archer City Council"}, {"n": "Jennifer Rossi", "r": "Archer City Council"}, {"n": "Karen Fiore", "r": "Archer City Council"}]}, {"m": "Gainesville", "p": [{"n": "Bryan Eastman", "r": "Gainesville City Council"}, {"n": "Bryan Eastman", "r": "Gainesville City Council - City Commissioner"}, {"n": "Casey Willits", "r": "Gainesville City Council"}, {"n": "Casey Willits", "r": "Gainesville City Council - City Commissioner"}, {"n": "Cynthia Chestnut", "r": "Gainesville City Council"}, {"n": "Cynthia Moore Chestnut", "r": "Gainesville City Council - City Commissioner"}, {"n": "Desmon Duncan-Walker", "r": "Gainesville City Council"}, {"n": "Desmon Duncan-Walker", "r": "Gainesville City Council - City Commissioner"}, {"n": "Ed Book", "r": "Gainesville City Council"}, {"n": "Ed Book", "r": "Gainesville City Council - City Commissioner"}, {"n": "Harvey Ward", "r": "Mayor of Gainesville"}, {"n": "James Ingle", "r": "Gainesville City Council - City Commissioner"}, {"n": "Reina Saco", "r": "Gainesville City Council"}]}, {"m": "Hawthorne", "p": [{"n": "Jacquelyn Randall", "r": "Mayor of Hawthorne"}, {"n": "Patricia B. Hutchinson", "r": "Hawthorne City Council"}, {"n": "Randy Martin", "r": "Hawthorne City Council"}, {"n": "Raymond Cue", "r": "Hawthorne City Council"}, {"n": "Tommie C. Howard", "r": "Hawthorne City Council"}]}, {"m": "High Springs", "p": [{"n": "Andrew Miller", "r": "High Springs City Council"}, {"n": "Chad Howell", "r": "High Springs City Council"}, {"n": "Katherine Weitz", "r": "High Springs City Council"}, {"n": "Tristan Grunder", "r": "Mayor of High Springs"}, {"n": "Wayne Bloodsworth", "r": "High Springs City Council"}]}, {"m": "La Crosse", "p": [{"n": "Anthony Kelley", "r": "La Crosse City Council"}, {"n": "Barbara Thomas", "r": "La Crosse City Council"}, {"n": "C. Dianne Dubberly", "r": "Mayor of La Crosse"}, {"n": "Johnny Ho", "r": "La Crosse City Council"}, {"n": "Kyle Cheshire", "r": "La Crosse City Council"}, {"n": "Sheila Dubberly", "r": "La Crosse City Council"}]}, {"m": "Micanopy", "p": [{"n": "David Massey", "r": "Micanopy City Council"}, {"n": "Jiana Bradshaw Williams", "r": "Mayor of Micanopy"}, {"n": "Judy Galloway", "r": "Micanopy City Council"}, {"n": "Ken Wessberg", "r": "Micanopy City Council"}, {"n": "Kevin Putansu", "r": "Micanopy City Council"}]}, {"m": "Newberry", "p": [{"n": "Donald Long", "r": "Newberry City Council"}, {"n": "Mark Clark", "r": "Newberry City Council"}, {"n": "Monty Farnsworth", "r": "Newberry City Council"}, {"n": "Rick Coleman", "r": "Newberry City Council"}, {"n": "Timothy Marden", "r": "Mayor of Newberry"}, {"n": "Tony Mazon", "r": "Newberry City Council"}]}, {"m": "Waldo", "p": [{"n": "Glen Johnson", "r": "Waldo City Council"}, {"n": "Louie Davis", "r": "Mayor of Waldo"}]}], "slug": "alachua"}, "12003": {"county": [{"n": "Amanda Rhoden Hodges", "r": "Baker County School Board"}, {"n": "Amy Dugger", "r": "Tax Collector, Baker County"}, {"n": "Cathy Rhoden", "r": "Commissioner, Baker County"}, {"n": "Christopher Milton", "r": "Supervisor of Elections, Baker County"}, {"n": "Jack Baker Jr.", "r": "Baker County School Board"}, {"n": "James Bennett", "r": "Commissioner, Baker County"}, {"n": "James Croft", "r": "Commissioner, Baker County"}, {"n": "Jimmy Anderson", "r": "Commissioner, Baker County"}, {"n": "Mandi Canaday", "r": "Baker County School Board"}, {"n": "Mark Hartley", "r": "Commissioner, Baker County"}, {"n": "Paula Barton", "r": "Baker County School Board"}, {"n": "Scotty Rhoden", "r": "Sheriff, Baker County"}, {"n": "Stacie Harvey", "r": "Clerk of Court, Baker County"}, {"n": "Tiffany McInarnay", "r": "Baker County School Board"}, {"n": "Timothy Sweat", "r": "Property Appraiser, Baker County"}], "munis": [{"m": "Glen Saint Mary", "p": [{"n": "Juanice Padgett", "r": "Mayor of Glen Saint Mary"}]}, {"m": "Macclenny", "p": [{"n": "Cecil Horne", "r": "Macclenny City Council"}, {"n": "Danny Norton", "r": "Macclenny City Council"}, {"n": "Lynward Bones", "r": "Macclenny City Council"}, {"n": "Mark Bryant", "r": "Mayor of Macclenny"}, {"n": "Sam Kitching", "r": "Macclenny City Council"}]}, {"m": "_Unresolved", "p": [{"n": "Lola Chandler", "r": "Glen Saint Mary City Council"}, {"n": "Stormy Greer", "r": "Glen Saint Mary City Council"}, {"n": "Susan Wallace", "r": "Glen Saint Mary City Council"}, {"n": "Terry Clardy", "r": "Glen Saint Mary City Council"}]}], "slug": "baker"}, "12005": {"county": [{"n": "Ann Leonard", "r": "Bay County School Board"}, {"n": "Bill Dozier", "r": "Commissioner, Bay County"}, {"n": "Bill Kinsaul", "r": "Clerk of Court, Bay County"}, {"n": "Christopher Moore", "r": "Bay County School Board"}, {"n": "Clair Pease", "r": "Commissioner, Bay County"}, {"n": "Dan Sowell", "r": "Property Appraiser, Bay County"}, {"n": "Doug Moore", "r": "Commissioner, Bay County"}, {"n": "Jerry Register", "r": "Bay County School Board"}, {"n": "Nina Ward", "r": "Supervisor of Elections, Bay County"}, {"n": "Robert Carroll", "r": "Commissioner, Bay County"}, {"n": "Steve Moss", "r": "Bay County School Board"}, {"n": "Tommy Ford", "r": "Sheriff, Bay County"}, {"n": "Tommy Hamm", "r": "Commissioner, Bay County"}, {"n": "William Perdue", "r": "Tax Collector, Bay County"}, {"n": "Winston Chester", "r": "Bay County School Board"}], "munis": [{"m": "Callaway", "p": [{"n": "Bob Pelletier", "r": "Callaway City Council"}, {"n": "David Griggs", "r": "Callaway City Council"}, {"n": "Kenneth L. Ayers", "r": "Callaway City Council"}, {"n": "Pamn Henderson", "r": "Mayor of Callaway"}, {"n": "Scott Davis", "r": "Callaway City Council"}]}, {"m": "Lynn Haven", "p": [{"n": "Dave Lowery", "r": "Mayor of Lynn Haven"}, {"n": "Jamie Warrick", "r": "Lynn Haven City Council"}, {"n": "Judy Tinder", "r": "Lynn Haven City Council"}, {"n": "Pat Perno", "r": "Lynn Haven City Council"}, {"n": "Sam Peebles", "r": "Lynn Haven City Council"}]}, {"m": "Mexico Beach", "p": [{"n": "Erik Fosshage", "r": "Mexico Beach City Council"}, {"n": "Linda Hamilton", "r": "Mexico Beach City Council"}, {"n": "Lisa Logan", "r": "Mexico Beach City Council"}, {"n": "Richard Wolff", "r": "Mayor of Mexico Beach"}, {"n": "Steve Cox", "r": "Mexico Beach City Council"}]}, {"m": "Panama City", "p": [{"n": "Allan Branch", "r": "Mayor of Panama City"}, {"n": "Brian Grainger", "r": "Panama City City Council"}, {"n": "Janice Lucas", "r": "Panama City City Council"}, {"n": "Josh Street", "r": "Panama City City Council"}, {"n": "Robbie Hughes", "r": "Panama City City Council"}]}, {"m": "Panama City Beach", "p": [{"n": "Ethan Register", "r": "Panama City Beach City Council"}, {"n": "Mary Coburn", "r": "Panama City Beach City Council"}, {"n": "Michael Jarman", "r": "Panama City Beach City Council"}, {"n": "Paul Casto", "r": "Panama City Beach City Council"}, {"n": "Stuart Tettemer", "r": "Mayor of Panama City Beach"}]}, {"m": "Parker", "p": [{"n": "Andrew Kelly", "r": "Mayor of Parker"}, {"n": "John Haney", "r": "Parker City Council"}, {"n": "Ronald Chaple", "r": "Parker City Council"}, {"n": "Stacie Galbreath", "r": "Parker City Council"}, {"n": "Tonya Barrow", "r": "Parker City Council"}]}, {"m": "Springfield", "p": [{"n": "Cindy Hamre", "r": "Springfield City Council"}, {"n": "Jack Griffis", "r": "Springfield City Council"}, {"n": "Jackie Kennington", "r": "Springfield City Council"}, {"n": "Ralph Hammond", "r": "Mayor of Springfield"}, {"n": "Richard Chval", "r": "Springfield City Council"}]}], "slug": "bay"}, "12007": {"county": [{"n": "Amanda Seyfang", "r": "Supervisor of Elections, Bradford County"}, {"n": "Candace Cragg Osteen", "r": "Bradford County School Board"}, {"n": "Carolyn Spooner", "r": "Commissioner, Bradford County"}, {"n": "Chris Dougherty", "r": "Commissioner, Bradford County"}, {"n": "Daniel Riddick", "r": "Commissioner, Bradford County"}, {"n": "Denny Thompson", "r": "Clerk of Court, Bradford County"}, {"n": "Diane Andrews", "r": "Commissioner, Bradford County"}, {"n": "Gayle Shuford Nicula", "r": "Bradford County School Board"}, {"n": "Gordon Smith", "r": "Sheriff, Bradford County"}, {"n": "Julie Johnson", "r": "Bradford County School Board"}, {"n": "Kenneth Thompson", "r": "Commissioner, Bradford County"}, {"n": "Kenny Clark", "r": "Property Appraiser, Bradford County"}, {"n": "Lynn Melvin", "r": "Bradford County School Board"}, {"n": "Sheila Fayson Cummings", "r": "Bradford County School Board"}, {"n": "Teresa Phillips", "r": "Tax Collector, Bradford County"}], "munis": [{"m": "Brooker", "p": [{"n": "Chris Caldwell", "r": "Brooker City Council"}, {"n": "Gene Melvin", "r": "Mayor of Brooker"}, {"n": "Joe Tolleson", "r": "Brooker City Council"}, {"n": "Linda Bennett", "r": "Brooker City Council"}, {"n": "Randy Starling", "r": "Brooker City Council"}]}, {"m": "Hampton", "p": [{"n": "Dale Wiseman", "r": "Mayor of Hampton"}, {"n": "Dorothy Shealey", "r": "Hampton City Council"}, {"n": "Douglas Williamson", "r": "Hampton City Council"}, {"n": "Janeece Mullett", "r": "Hampton City Council"}, {"n": "Lillian Sams", "r": "Hampton City Council"}, {"n": "William Goodge", "r": "Hampton City Council"}]}, {"m": "Lawtey", "p": [{"n": "Amy Blom", "r": "Lawtey City Council"}, {"n": "Debra Norman", "r": "Lawtey City Council"}, {"n": "Jimmie L. Scott", "r": "Mayor of Lawtey"}, {"n": "Virginia Warner", "r": "Lawtey City Council"}]}, {"m": "Starke", "p": [{"n": "Andy Redding", "r": "Mayor of Starke"}, {"n": "Bob Milner", "r": "Starke City Council"}, {"n": "Daniel Nugent", "r": "Starke City Council"}, {"n": "Janice D. Mortimer", "r": "Starke City Council"}, {"n": "Scott Roberts", "r": "Starke City Council"}]}], "slug": "bradford"}, "12009": {"county": [{"n": "Dana Blickley", "r": "Property Appraiser, Brevard County"}, {"n": "Gene Trent", "r": "Brevard County School Board"}, {"n": "Jason Steele", "r": "Commissioner, Brevard County"}, {"n": "John Thomas", "r": "Brevard County School Board"}, {"n": "John Tobia", "r": "Commissioner, Brevard County"}, {"n": "Katye Campbell", "r": "Brevard County School Board"}, {"n": "Kristine Zonka", "r": "Commissioner, Brevard County"}, {"n": "Lisa Cullen", "r": "Tax Collector, Brevard County"}, {"n": "Lori Scott", "r": "Supervisor of Elections, Brevard County"}, {"n": "Matt Susin", "r": "Brevard County School Board"}, {"n": "Megan Wright", "r": "Brevard County School Board"}, {"n": "Rachel Sadoff", "r": "Clerk of Court, Brevard County"}, {"n": "Rita Pritchett", "r": "Commissioner, Brevard County"}, {"n": "Rob Feltner", "r": "Commissioner, Brevard County"}, {"n": "Robert Ivey", "r": "Sheriff, Brevard County"}, {"n": "Thad Altman", "r": "Commissioner, Brevard County"}, {"n": "Tim Bobanic", "r": "Supervisor of Elections, Brevard County"}, {"n": "Tom Goodson", "r": "Commissioner, Brevard County"}], "munis": [{"m": "Cape Canaveral", "p": [{"n": "Andrea King", "r": "Cape Canaveral City Council"}, {"n": "Don Willis", "r": "Cape Canaveral City Council"}, {"n": "Kay Jackson", "r": "Cape Canaveral City Council"}, {"n": "Tom Shoriak", "r": "Cape Canaveral City Council"}, {"n": "Wes Morrison", "r": "Mayor of Cape Canaveral"}]}, {"m": "Cocoa", "p": [{"n": "James Goins", "r": "Cocoa City Council"}, {"n": "Lavander Hearn", "r": "Cocoa City Council"}, {"n": "Lorraine Koss", "r": "Cocoa City Council"}, {"n": "Michael C. Blake", "r": "Mayor of Cocoa"}, {"n": "Patricia Weeks", "r": "Cocoa City Council"}]}, {"m": "Cocoa Beach", "p": [{"n": "Jeremy Hutcherson", "r": "Cocoa Beach City Council"}, {"n": "Joshua Jackson", "r": "Cocoa Beach City Council"}, {"n": "Keith Capizzi", "r": "Mayor of Cocoa Beach"}, {"n": "Skip Williams", "r": "Cocoa Beach City Council"}, {"n": "Tim Tumulty", "r": "Cocoa Beach City Council"}]}, {"m": "Grant-Valkaria", "p": [{"n": "Brent Jackson", "r": "Grant-Valkaria City Council"}, {"n": "Dan Faden", "r": "Grant-Valkaria City Council"}, {"n": "Dan Robino", "r": "Grant-Valkaria City Council"}, {"n": "Lisette Kolar", "r": "Grant-Valkaria City Council"}, {"n": "Mike Bradvarevic", "r": "Grant-Valkaria City Council"}, {"n": "Tom Sammon", "r": "Grant-Valkaria City Council"}]}, {"m": "Indialantic", "p": [{"n": "Carrie Foy", "r": "Indialantic City Council"}, {"n": "Doug Wright", "r": "Indialantic City Council"}, {"n": "Julie McKnight", "r": "Indialantic City Council"}, {"n": "Mark McDermott", "r": "Mayor of Indialantic"}]}, {"m": "Indian Harbour Beach", "p": [{"n": "Adam Dyer", "r": "Indian Harbour Beach City Council"}, {"n": "Neil Yorio", "r": "Indian Harbour Beach City Council"}, {"n": "Scott Nickle", "r": "Mayor of Indian Harbour Beach"}, {"n": "Susan Ruimy", "r": "Indian Harbour Beach City Council"}]}, {"m": "Malabar", "p": [{"n": "Frederick Heiler", "r": "Malabar City Council"}, {"n": "Jim Clevenger", "r": "Malabar City Council"}, {"n": "Marisa Acquaviva", "r": "Malabar City Council"}, {"n": "Mary Hofmeister", "r": "Malabar City Council"}, {"n": "Steve Rivet", "r": "Mayor of Malabar"}, {"n": "Wayne Abare", "r": "Malabar City Council"}]}, {"m": "Melbourne", "p": [{"n": "David Neuman", "r": "Melbourne City Council"}, {"n": "Julie Kennedy", "r": "Melbourne City Council"}, {"n": "Marcus Smith", "r": "Melbourne City Council"}, {"n": "Mark A. LaRusso", "r": "Melbourne City Council"}, {"n": "Mimi Hanley", "r": "Melbourne City Council"}, {"n": "Paul Alfrey", "r": "Mayor of Melbourne"}, {"n": "Rachael Bassett", "r": "Melbourne City Council"}]}, {"m": "Melbourne Beach", "p": [{"n": "Alison Dennington", "r": "Mayor of Melbourne Beach"}, {"n": "Anna Butler", "r": "Melbourne Beach City Council"}, {"n": "Sherri Quarrie", "r": "Melbourne Beach City Council"}, {"n": "Terry Cronin", "r": "Melbourne Beach City Council"}, {"n": "Tim Reed", "r": "Melbourne Beach City Council"}]}, {"m": "Melbourne Village", "p": [{"n": "Bridget Foster", "r": "Melbourne Village City Council"}, {"n": "David Jones", "r": "Melbourne Village City Council"}, {"n": "Fred Anderson", "r": "Melbourne Village City Council"}, {"n": "Gary Ingram", "r": "Melbourne Village City Council"}, {"n": "Norton Muzzone", "r": "Melbourne Village City Council"}, {"n": "Sue Ditty", "r": "Mayor of Melbourne Village"}, {"n": "Valerie Calenda", "r": "Melbourne Village City Council"}]}, {"m": "Palm Bay", "p": [{"n": "Kenny Johnson", "r": "Palm Bay City Council"}, {"n": "Mike Hammer", "r": "Palm Bay City Council"}, {"n": "Mike Jaffe", "r": "Palm Bay City Council"}, {"n": "Robert Medina", "r": "Mayor of Palm Bay"}]}, {"m": "Palm Shores", "p": [{"n": "Barbara Mathewson", "r": "Palm Shores City Council"}, {"n": "Charles Chambliss", "r": "Mayor of Palm Shores"}, {"n": "Paul Bonville", "r": "Palm Shores City Council"}, {"n": "Sharon Secord", "r": "Palm Shores City Council"}]}, {"m": "Rockledge", "p": [{"n": "Duane Daski", "r": "Rockledge City Council"}, {"n": "Frank T. Forester", "r": "Rockledge City Council"}, {"n": "Michael Cadore", "r": "Rockledge City Council"}, {"n": "Sammie Brown Martin", "r": "Rockledge City Council"}, {"n": "Shaun Ferguson", "r": "Rockledge City Council"}, {"n": "Tara L. Connor", "r": "Rockledge City Council"}, {"n": "Thomas J. Price", "r": "Mayor of Rockledge"}]}, {"m": "Satellite Beach", "p": [{"n": "Mark Boyd", "r": "Satellite Beach City Council"}, {"n": "Mike Chase", "r": "Satellite Beach City Council"}, {"n": "Steve L. Osmer", "r": "Mayor of Satellite Beach"}]}, {"m": "Titusville", "p": [{"n": "Andrew Connors", "r": "Mayor of Titusville"}, {"n": "Herman A. Cole", "r": "Titusville City Council"}, {"n": "Jo Lynn Nelson", "r": "Titusville City Council"}, {"n": "Megan Moscoso", "r": "Titusville City Council"}, {"n": "Sarah Stoeckel", "r": "Titusville City Council"}]}, {"m": "West Melbourne", "p": [{"n": "Alexis McGuire", "r": "West Melbourne City Council"}, {"n": "Andrea Young", "r": "Mayor of West Melbourne"}, {"n": "Austin Gaylord", "r": "West Melbourne City Council"}, {"n": "Diana Adams", "r": "West Melbourne City Council"}, {"n": "Helen Voltz", "r": "West Melbourne City Council"}, {"n": "Pat Bentley", "r": "West Melbourne City Council"}, {"n": "Stephen Phrampus", "r": "West Melbourne City Council"}]}], "slug": "brevard"}, "12011": {"county": [{"n": "Abbey Ajayi", "r": "Tax Collector, Broward County"}, {"n": "Allen Zeman", "r": "Broward County School Board"}, {"n": "Beam Furr", "r": "Commissioner, Broward County"}, {"n": "Brenda Fam", "r": "Broward County School Board"}, {"n": "Brenda Forman", "r": "Clerk of Court, Broward County"}, {"n": "Debra \"Debbi\" Hixon", "r": "Broward County School Board"}, {"n": "Gregory Tony", "r": "Sheriff, Broward County"}, {"n": "Hazelle Rogers", "r": "Commissioner, Broward County"}, {"n": "Jeff Holness", "r": "Broward County School Board"}, {"n": "Joe Scott", "r": "Supervisor of Elections, Broward County"}, {"n": "Lamar Fisher", "r": "Commissioner, Broward County"}, {"n": "Lori Alhadeff", "r": "Broward County School Board"}, {"n": "Mark Bogen", "r": "Commissioner, Broward County"}, {"n": "Martin Kiar", "r": "Property Appraiser, Broward County"}, {"n": "Maura McCarthy Bulman", "r": "Broward County School Board"}, {"n": "Michael Udine", "r": "Commissioner, Broward County"}, {"n": "Nan Rich", "r": "Commissioner, Broward County"}, {"n": "Nora Rupert", "r": "Broward County School Board"}, {"n": "Rebecca Thompson", "r": "Broward County School Board"}, {"n": "Robert McKinzie", "r": "Commissioner, Broward County"}, {"n": "Rodney \"Rod\" Velez", "r": "Broward County School Board"}, {"n": "Sarah Leonardi", "r": "Broward County School Board"}, {"n": "Steve Geller", "r": "Commissioner, Broward County"}, {"n": "Tim Ryan", "r": "Commissioner, Broward County"}, {"n": "Torey Alston", "r": "Commissioner, Broward County"}], "munis": [{"m": "Coconut Creek", "p": [{"n": "Jacqueline L. Railey", "r": "Coconut Creek City Council"}, {"n": "Jeffrey Wasserman", "r": "Mayor of Coconut Creek"}, {"n": "John A. Brodie", "r": "Coconut Creek City Council"}, {"n": "Joshua Rydell", "r": "Coconut Creek City Council"}, {"n": "Sandra L. Welch", "r": "Coconut Creek City Council"}]}, {"m": "Cooper City", "p": [{"n": "James Curran", "r": "Mayor of Cooper City"}, {"n": "Jason Smith", "r": "Cooper City City Council"}, {"n": "Jeremy Katzman", "r": "Cooper City City Council"}, {"n": "Lisa Mallozzi", "r": "Cooper City City Council"}, {"n": "Ryan C. Shrouder", "r": "Cooper City City Council"}]}, {"m": "Coral Springs", "p": [{"n": "Joseph McHugh", "r": "Coral Springs City Council"}, {"n": "Joshua Simmons", "r": "Coral Springs City Council"}, {"n": "Scott J. Brook", "r": "Mayor of Coral Springs"}, {"n": "Shawn Michael Cerra", "r": "Coral Springs City Council"}]}, {"m": "Dania Beach", "p": [{"n": "Archibald J. Ryan", "r": "Dania Beach City Council"}, {"n": "Joyce L. Davis", "r": "Mayor of Dania Beach"}, {"n": "Lori Lewellen", "r": "Dania Beach City Council"}, {"n": "Luis Rimoli", "r": "Dania Beach City Council"}, {"n": "Marco A. Salvino", "r": "Dania Beach City Council"}]}, {"m": "Davie", "p": [{"n": "Daniel J. Alfonso", "r": "Davie City Council"}, {"n": "Judy Paul", "r": "Mayor of Davie"}, {"n": "Marlon Luis", "r": "Davie City Council"}, {"n": "Michelle Whitman", "r": "Davie City Council"}, {"n": "Susan Starkey", "r": "Davie City Council"}]}, {"m": "Deerfield Beach", "p": [{"n": "Ben Preston", "r": "Deerfield Beach City Council"}, {"n": "Daniel Shanetzky", "r": "Deerfield Beach City Council"}, {"n": "Michael Hudak", "r": "Deerfield Beach City Council"}, {"n": "Thomas Plaut", "r": "Deerfield Beach City Council"}, {"n": "Todd Drosky", "r": "Mayor of Deerfield Beach"}]}, {"m": "Fort Lauderdale", "p": [{"n": "Ben Sorensen", "r": "Fort Lauderdale City Council"}, {"n": "Dean J. Trantalis", "r": "Mayor of Fort Lauderdale"}, {"n": "John C. Herbst", "r": "Fort Lauderdale City Council"}, {"n": "Pamela Beasley-Pittman", "r": "Fort Lauderdale City Council"}]}, {"m": "Hallandale Beach", "p": [{"n": "Anabelle Lima-Taub", "r": "Hallandale Beach City Council"}, {"n": "Joy D. Adams", "r": "Hallandale Beach City Council"}, {"n": "Joy F. Cooper", "r": "Mayor of Hallandale Beach"}, {"n": "Michele Lazarow", "r": "Hallandale Beach City Council"}, {"n": "Mike Butler", "r": "Hallandale Beach City Council"}]}, {"m": "Hillsboro Beach", "p": [{"n": "David A. Ravanesi", "r": "Hillsboro Beach City Council"}, {"n": "Dawn Miller", "r": "Mayor of Hillsboro Beach"}, {"n": "Heather Berman", "r": "Hillsboro Beach City Council"}, {"n": "Jane Reiser", "r": "Hillsboro Beach City Council"}, {"n": "Vinnie Andreano", "r": "Hillsboro Beach City Council"}]}, {"m": "Hollywood", "p": [{"n": "Adam Gruber", "r": "Hollywood City Council"}, {"n": "Caryl Shuham", "r": "Hollywood City Council"}, {"n": "Idelma Quintana", "r": "Hollywood City Council"}, {"n": "Josh Levy", "r": "Mayor of Hollywood"}, {"n": "Kevin D. Biederman", "r": "Hollywood City Council"}, {"n": "Peter D. Hernandez", "r": "Hollywood City Council"}]}, {"m": "Lauderdale Lakes", "p": [{"n": "Easton Harrison", "r": "Lauderdale Lakes City Council"}, {"n": "Karlene Maxwell-Williams", "r": "Lauderdale Lakes City Council"}, {"n": "Sharon Thomas", "r": "Lauderdale Lakes City Council"}, {"n": "Tycie Causwell", "r": "Lauderdale Lakes City Council"}, {"n": "Veronica Edwards Phillips", "r": "Mayor of Lauderdale Lakes"}]}, {"m": "Lauderdale-By-The-Sea", "p": [{"n": "Edmund Malkoon", "r": "Mayor of Lauderdale-By-The-Sea"}, {"n": "John Graziano", "r": "Lauderdale-By-The-Sea City Council"}, {"n": "Randy Strauss", "r": "Lauderdale-By-The-Sea City Council"}, {"n": "Richard DeNapoli", "r": "Lauderdale-By-The-Sea City Council"}, {"n": "Theo Poulopoulos", "r": "Lauderdale-By-The-Sea City Council"}]}, {"m": "Lauderhill", "p": [{"n": "Denise D. Grant", "r": "Mayor of Lauderhill"}, {"n": "John Hodgson", "r": "Lauderhill City Council"}, {"n": "Melissa P. Dunn", "r": "Lauderhill City Council"}, {"n": "Richard Campbell", "r": "Lauderhill City Council"}, {"n": "Sarai Martin", "r": "Lauderhill City Council"}]}, {"m": "Lazy Lake", "p": [{"n": "Arnold Aliff", "r": "Lazy Lake City Council"}, {"n": "Dana Merrill", "r": "Lazy Lake City Council"}, {"n": "Jeff Grenell", "r": "Lazy Lake City Council"}, {"n": "Patrick Kaufman", "r": "Lazy Lake City Council"}, {"n": "Ray Nyhuis", "r": "Mayor of Lazy Lake"}, {"n": "William Daughtry", "r": "Lazy Lake City Council"}]}, {"m": "Lighthouse Point", "p": [{"n": "Abby J. Stafford", "r": "Lighthouse Point City Council"}, {"n": "Everett Marshall", "r": "Lighthouse Point City Council"}, {"n": "Jason D. Joffe", "r": "Lighthouse Point City Council"}, {"n": "Kyle Van Buskirk", "r": "Mayor of Lighthouse Point"}, {"n": "Michael S. Long", "r": "Lighthouse Point City Council"}, {"n": "Patty Petrone", "r": "Lighthouse Point City Council"}]}, {"m": "Margate", "p": [{"n": "Anthony N. Caggiano", "r": "Margate City Council"}, {"n": "Antonio V. Arserio", "r": "Mayor of Margate"}, {"n": "Arlene R. Schwartz", "r": "Margate City Council"}, {"n": "Joanne Simone", "r": "Margate City Council"}, {"n": "Tommy Ruzzano", "r": "Margate City Council"}]}, {"m": "Miramar", "p": [{"n": "Avril Cherasard", "r": "Miramar City Council"}, {"n": "Carson Edwards", "r": "Miramar City Council"}, {"n": "Maxwell B. Chambers", "r": "Miramar City Council"}, {"n": "Wayne M. Messam", "r": "Mayor of Miramar"}, {"n": "Yvette Colbourne", "r": "Miramar City Council"}]}, {"m": "North Lauderdale", "p": [{"n": "Darrell Lewis-Ricketts", "r": "North Lauderdale City Council"}, {"n": "Luke Lewis", "r": "North Lauderdale City Council"}, {"n": "Mario Bustamante", "r": "North Lauderdale City Council"}, {"n": "Regina Martin", "r": "North Lauderdale City Council"}, {"n": "Samson Borgelin", "r": "Mayor of North Lauderdale"}]}, {"m": "Oakland Park", "p": [{"n": "Aisha Gordon", "r": "Oakland Park City Council"}, {"n": "Fitzgerald Budhoo", "r": "Oakland Park City Council"}, {"n": "Letitia Newbold", "r": "Oakland Park City Council"}, {"n": "Steven Arnst", "r": "Mayor of Oakland Park"}, {"n": "Tim Lonergan", "r": "Oakland Park City Council"}]}, {"m": "Parkland", "p": [{"n": "Cindy Murphy-Salomone", "r": "Parkland City Council"}, {"n": "Jordan Isrow", "r": "Parkland City Council"}, {"n": "Neil Kanterman", "r": "Parkland City Council"}, {"n": "Richard Walker", "r": "Mayor of Parkland"}, {"n": "Simeon Brier", "r": "Parkland City Council"}]}, {"m": "Pembroke Park", "p": [{"n": "Ashira B. Mohammed", "r": "Pembroke Park City Council"}, {"n": "Erik Morrissette", "r": "Pembroke Park City Council"}, {"n": "Geoffrey Jacobs", "r": "Mayor of Pembroke Park"}, {"n": "Musfika Kashem", "r": "Pembroke Park City Council"}, {"n": "William Hodgkins", "r": "Pembroke Park City Council"}]}, {"m": "Pembroke Pines", "p": [{"n": "Angelo Castillo", "r": "Mayor of Pembroke Pines"}, {"n": "Jay D. Schwartz", "r": "Pembroke Pines City Council"}, {"n": "Maria Rodriguez", "r": "Pembroke Pines City Council"}, {"n": "Michael Hernandez", "r": "Pembroke Pines City Council"}, {"n": "Thomas Good", "r": "Pembroke Pines City Council"}]}, {"m": "Plantation", "p": [{"n": "Denise Horland", "r": "Plantation City Council"}, {"n": "Erik Anderson", "r": "Plantation City Council"}, {"n": "Jennifer Andreu", "r": "Plantation City Council"}, {"n": "Louis Reinstein", "r": "Plantation City Council"}, {"n": "Nick Sortal", "r": "Mayor of Plantation"}, {"n": "Timothy J. Fadgen", "r": "Plantation City Council"}]}, {"m": "Pompano Beach", "p": [{"n": "Alison Fournier", "r": "Pompano Beach City Council"}, {"n": "Audrey Fesik", "r": "Pompano Beach City Council"}, {"n": "Beverly Perkins", "r": "Pompano Beach City Council"}, {"n": "Darlene Smith", "r": "Pompano Beach City Council"}, {"n": "Rex Hardin", "r": "Mayor of Pompano Beach"}, {"n": "Rhonda Eaton", "r": "Pompano Beach City Council"}]}, {"m": "Sea Ranch Lakes", "p": [{"n": "Chad Volkert", "r": "Sea Ranch Lakes City Council"}, {"n": "Denise Bryan", "r": "Sea Ranch Lakes City Council"}, {"n": "Douglas Hodgson", "r": "Sea Ranch Lakes City Council"}, {"n": "Jason Robichaux", "r": "Sea Ranch Lakes City Council"}, {"n": "Jeffrey Nelson", "r": "Mayor of Sea Ranch Lakes"}, {"n": "John L. Tomlinson", "r": "Sea Ranch Lakes City Council"}]}, {"m": "Southwest Ranches", "p": [{"n": "Bob Hartmann", "r": "Southwest Ranches City Council"}, {"n": "David Kuczenski", "r": "Southwest Ranches City Council"}, {"n": "Gary Jablonski", "r": "Southwest Ranches City Council"}, {"n": "Jim Allbritton", "r": "Southwest Ranches City Council"}, {"n": "Steve Breitkreuz", "r": "Mayor of Southwest Ranches"}]}, {"m": "Sunrise", "p": [{"n": "Joseph A. Scuotto", "r": "Sunrise City Council"}, {"n": "Latoya S. Clarke", "r": "Sunrise City Council"}, {"n": "Mark A. Douglas", "r": "Sunrise City Council"}, {"n": "Michael J. Ryan", "r": "Mayor of Sunrise"}, {"n": "Neil C. Kerch", "r": "Sunrise City Council"}]}, {"m": "Tamarac", "p": [{"n": "Kicia Daniel", "r": "Tamarac City Council"}, {"n": "Krystal Patterson", "r": "Tamarac City Council"}, {"n": "Marlon D. Bolton", "r": "Tamarac City Council"}, {"n": "Michelle J. Gomez", "r": "Mayor of Tamarac"}, {"n": "Morey Wright", "r": "Tamarac City Council"}]}, {"m": "West Park", "p": [{"n": "Brandon Smith", "r": "West Park City Council"}, {"n": "Cristina R. Eveillard", "r": "West Park City Council"}, {"n": "Felicia M. Brunson", "r": "Mayor of West Park"}, {"n": "Joy B. Smith", "r": "West Park City Council"}, {"n": "Katrina Touchstone", "r": "West Park City Council"}]}, {"m": "Weston", "p": [{"n": "Byron L. Jaffe", "r": "Weston City Council"}, {"n": "Fabio Andrade", "r": "Weston City Council"}, {"n": "Margaret Brown", "r": "Mayor of Weston"}, {"n": "Mary Molina-Macfie", "r": "Weston City Council"}]}, {"m": "Wilton Manors", "p": [{"n": "Chris Caputo", "r": "Wilton Manors City Council"}, {"n": "Don D'Arminio", "r": "Wilton Manors City Council"}, {"n": "Mike Bracchi", "r": "Wilton Manors City Council"}, {"n": "Paul Rolli", "r": "Wilton Manors City Council"}, {"n": "Scott Newton", "r": "Mayor of Wilton Manors"}]}], "slug": "broward"}, "12013": {"county": [{"n": "Becky Trickey-Smith", "r": "Tax Collector, Calhoun County"}, {"n": "Carla Hand", "r": "Clerk of Court, Calhoun County"}, {"n": "Carla Peacock", "r": "Property Appraiser, Calhoun County"}, {"n": "Chris Rogers", "r": "Tax Collector, Calhoun County"}, {"n": "Clifford Newsome", "r": "Calhoun County School Board"}, {"n": "Danny Hassig", "r": "Calhoun County School Board"}, {"n": "Danny Ryals", "r": "Calhoun County School Board"}, {"n": "Darryl O'Bryan", "r": "Commissioner, Calhoun County"}, {"n": "Gene Bailey", "r": "Commissioner, Calhoun County"}, {"n": "Glenn Kimbrel", "r": "Sheriff, Calhoun County"}, {"n": "Marion Brown", "r": "Commissioner, Calhoun County"}, {"n": "Michael Bryant", "r": "Sheriff, Calhoun County"}, {"n": "Ray Howell", "r": "Calhoun County School Board"}, {"n": "Robin Barfield", "r": "Clerk of Court, Calhoun County"}, {"n": "Scott Monlyn", "r": "Commissioner, Calhoun County"}, {"n": "Sharon Chason", "r": "Supervisor of Elections, Calhoun County"}, {"n": "Thomas Carter", "r": "Commissioner, Calhoun County"}], "munis": [{"m": "Altha", "p": [{"n": "Charlie McNew", "r": "Altha City Council"}, {"n": "Jamie Strickland", "r": "Altha City Council"}, {"n": "Jeffrey Waldorf", "r": "Mayor of Altha"}, {"n": "Jonathan Connelly", "r": "Altha City Council"}, {"n": "Linda Barrentine", "r": "Altha City Council"}]}, {"m": "Blountstown", "p": [{"n": "Bill Gaskin", "r": "Blountstown City Council"}, {"n": "Clifford Jackson", "r": "Blountstown City Council"}, {"n": "Martha Stephens", "r": "Blountstown City Council"}, {"n": "Sheila Blackburn", "r": "Blountstown City Council"}, {"n": "Tony Shoemake", "r": "Mayor of Blountstown"}]}], "slug": "calhoun"}, "12015": {"county": [{"n": "Bill Prummell", "r": "Sheriff, Charlotte County"}, {"n": "Bob Segur", "r": "Charlotte County School Board"}, {"n": "Cara M Reynolds", "r": "Charlotte County School Board"}, {"n": "Christopher Constance", "r": "Commissioner, Charlotte County"}, {"n": "John H LeClair", "r": "Charlotte County School Board"}, {"n": "Joseph Tiseo", "r": "Commissioner, Charlotte County"}, {"n": "Ken Doherty", "r": "Commissioner, Charlotte County"}, {"n": "Kim Amontree", "r": "Charlotte County School Board"}, {"n": "Leah Valenti", "r": "Supervisor of Elections, Charlotte County"}, {"n": "Paul Polk", "r": "Property Appraiser, Charlotte County"}, {"n": "Paul Stamoulis", "r": "Supervisor of Elections, Charlotte County"}, {"n": "Roger Eaton", "r": "Clerk of Court, Charlotte County"}, {"n": "Stephen R. Deutsch", "r": "Commissioner, Charlotte County"}, {"n": "Vickie Potts", "r": "Tax Collector, Charlotte County"}, {"n": "Wendy Atkinson", "r": "Charlotte County School Board"}, {"n": "William Truex", "r": "Commissioner, Charlotte County"}], "munis": [{"m": "Punta Gorda", "p": [{"n": "Deborah Lux", "r": "Mayor of Punta Gorda"}, {"n": "Gregory Julian", "r": "Punta Gorda City Council"}, {"n": "Janis Denton", "r": "Punta Gorda City Council"}, {"n": "Jeannine Polk", "r": "Punta Gorda City Council"}, {"n": "Melissa Lockhart", "r": "Punta Gorda City Council"}]}], "slug": "charlotte"}, "12017": {"county": [{"n": "Angela Vick", "r": "Clerk of Court, Citrus County"}, {"n": "Cregg Dalton", "r": "Property Appraiser, Citrus County"}, {"n": "David Vincent", "r": "Sheriff, Citrus County"}, {"n": "Diana Finegan", "r": "Commissioner, Citrus County"}, {"n": "Douglas A. Dodd", "r": "Citrus County School Board"}, {"n": "Holly Davis", "r": "Commissioner, Citrus County"}, {"n": "Janice Warren", "r": "Tax Collector, Citrus County"}, {"n": "Jeffery Kinnard", "r": "Commissioner, Citrus County"}, {"n": "Joseph \"Joe\" Faherty", "r": "Citrus County School Board"}, {"n": "Ken Frink", "r": "Citrus County School Board"}, {"n": "Leslie Cook", "r": "Property Appraiser, Citrus County"}, {"n": "Maureen Baird", "r": "Supervisor of Elections, Citrus County"}, {"n": "Michael Prendergast", "r": "Sheriff, Citrus County"}, {"n": "Rebecca Bays", "r": "Commissioner, Citrus County"}, {"n": "Ruthie Schlabach", "r": "Commissioner, Citrus County"}, {"n": "Sandy B. Counts", "r": "Citrus County School Board"}, {"n": "Thomas Kennedy", "r": "Citrus County School Board"}, {"n": "Traci Phillips", "r": "Clerk of Court, Citrus County"}], "munis": [{"m": "Crystal River", "p": [{"n": "Chris Ensing", "r": "Crystal River City Council"}, {"n": "Gabrielle Satchell", "r": "Crystal River City Council"}, {"n": "Joe Meek", "r": "Mayor of Crystal River"}, {"n": "Robert Holmes", "r": "Crystal River City Council"}]}, {"m": "Inverness", "p": [{"n": "Cabot McBride", "r": "Inverness City Council"}, {"n": "Crystal Lizanich", "r": "Inverness City Council"}, {"n": "Gene Davis", "r": "Inverness City Council"}, {"n": "Jacquie Hepfer", "r": "Inverness City Council"}, {"n": "Linda Bega", "r": "Inverness City Council"}, {"n": "Robert Plaisted", "r": "Mayor of Inverness"}]}], "slug": "citrus"}, "12019": {"county": [{"n": "Alexandra Compere", "r": "Commissioner, Clay County"}, {"n": "Ashley Hutchings Gilhousen", "r": "Clay County School Board"}, {"n": "Beth Clark", "r": "Clay County School Board"}, {"n": "Betsy Condon", "r": "Commissioner, Clay County"}, {"n": "Chris Chambless", "r": "Supervisor of Elections, Clay County"}, {"n": "Diane Hutchings", "r": "Tax Collector, Clay County"}, {"n": "Erin Skipper", "r": "Clay County School Board"}, {"n": "James Weeks", "r": "Tax Collector, Clay County"}, {"n": "Jim Renninger", "r": "Commissioner, Clay County"}, {"n": "Kristen Burke", "r": "Commissioner, Clay County"}, {"n": "Michele Hanson", "r": "Clay County School Board"}, {"n": "Michelle Cook", "r": "Sheriff, Clay County"}, {"n": "Robert Alvero", "r": "Clay County School Board"}, {"n": "Tara Green", "r": "Clerk of Court, Clay County"}, {"n": "Tracy Drake", "r": "Property Appraiser, Clay County"}], "munis": [{"m": "Green Cove Springs", "p": [{"n": "Cheryl Starnes", "r": "Green Cove Springs City Council"}, {"n": "Darren Stutts", "r": "Green Cove Springs City Council"}, {"n": "Edward Gaw", "r": "Green Cove Springs City Council"}, {"n": "Gloria Glisson", "r": "Green Cove Springs City Council"}, {"n": "Matt Johnson", "r": "Mayor of Green Cove Springs"}]}, {"m": "Keystone Heights", "p": [{"n": "Brandon Ludwig", "r": "Keystone Heights City Council"}, {"n": "Christine Thompson", "r": "Keystone Heights City Council"}, {"n": "Daniel Lewandowski", "r": "Keystone Heights City Council"}, {"n": "Nina Rodenroth", "r": "Mayor of Keystone Heights"}, {"n": "Ryan Knight", "r": "Keystone Heights City Council"}]}, {"m": "Orange Park", "p": [{"n": "Doug Benefield", "r": "Orange Park City Council"}, {"n": "Glenn Taylor", "r": "Orange Park City Council"}, {"n": "Kenneth Vogel", "r": "Orange Park City Council"}, {"n": "Randy Anderson", "r": "Orange Park City Council"}, {"n": "Winnette Sandlin", "r": "Mayor of Orange Park"}]}, {"m": "Penney Farms", "p": [{"n": "Adrian M. Andrews", "r": "Mayor of Penney Farms"}, {"n": "Annette Brooks", "r": "Penney Farms City Council"}, {"n": "Elizabeth Ryder", "r": "Penney Farms City Council"}, {"n": "Richard Hollowell", "r": "Penney Farms City Council"}, {"n": "Thomas E. DeVille", "r": "Penney Farms City Council"}]}], "slug": "clay"}, "12021": {"county": [{"n": "Abe Skinner", "r": "Property Appraiser, Collier County"}, {"n": "Burt Saunders", "r": "Commissioner, Collier County"}, {"n": "Chris Hall", "r": "Commissioner, Collier County"}, {"n": "Crystal Kinzel", "r": "Clerk of Court, Collier County"}, {"n": "Daniel Kowal", "r": "Commissioner, Collier County"}, {"n": "Erick Carter", "r": "Collier County School Board"}, {"n": "Erick Carter", "r": "Collier County School Board - Vice Chair, District 4"}, {"n": "Jennifer Edwards", "r": "Supervisor of Elections, Collier County"}, {"n": "Jerry D Rutherford", "r": "Collier County School Board"}, {"n": "Jerry Rutherford", "r": "Collier County School Board - District 1"}, {"n": "Kelly Lichter", "r": "Collier County School Board"}, {"n": "Kelly Mason", "r": "Collier County School Board - District 3"}, {"n": "Kevin Rambosk", "r": "Sheriff, Collier County"}, {"n": "Larry Ray", "r": "Tax Collector, Collier County"}, {"n": "Melissa Blazier", "r": "Supervisor of Elections, Collier County"}, {"n": "Rick LoCastro", "r": "Commissioner, Collier County"}, {"n": "Rob Stoneburner", "r": "Tax Collector, Collier County"}, {"n": "Stephanie Lucarelli", "r": "Collier County School Board"}, {"n": "Stephanie Lucarelli", "r": "Collier County School Board - Chair, District 2"}, {"n": "Tim Moshier", "r": "Collier County School Board - District 5"}, {"n": "Timothy Donald Moshier", "r": "Collier County School Board"}, {"n": "Vickie Downs", "r": "Property Appraiser, Collier County"}, {"n": "William McDaniel", "r": "Commissioner, Collier County"}], "munis": [{"m": "Everglades City", "p": [{"n": "Howell Grimm", "r": "Mayor of Everglades City"}]}, {"m": "Marco Island", "p": [{"n": "Bonita Schwan", "r": "Marco Island City Council"}, {"n": "Darrin Palumbo", "r": "Marco Island City Council"}, {"n": "Deb Henry", "r": "Marco Island City Council"}, {"n": "Open Position", "r": "Marco Island City Council"}, {"n": "Rene Champagne", "r": "Marco Island City Council"}, {"n": "Stephen Gray", "r": "Marco Island City Council"}, {"n": "Tamara Goehler", "r": "Marco Island City Council"}]}, {"m": "Naples", "p": [{"n": "Berne Barton", "r": "Naples City Council"}, {"n": "Bill Kramer", "r": "Naples City Council"}, {"n": "John Krol", "r": "Naples City Council"}, {"n": "Linda Penniman", "r": "Naples City Council"}, {"n": "Scott Schultz", "r": "Naples City Council"}, {"n": "Ted Blankenship", "r": "Naples City Council"}, {"n": "Teresa L. Heitmann", "r": "Mayor of Naples"}]}, {"m": "_Unresolved", "p": [{"n": "Josh Minton", "r": "Everglades City City Council"}, {"n": "Michael McComas", "r": "Everglades City City Council"}, {"n": "Parker Oglesby", "r": "Everglades City City Council"}, {"n": "Tony Pernas", "r": "Everglades City City Council"}, {"n": "Vicky Wells", "r": "Everglades City City Council"}]}], "slug": "collier"}, "12023": {"county": [{"n": "Cherie Dicks Hill", "r": "Columbia County School Board"}, {"n": "Dana Brady-Giddens", "r": "Columbia County School Board"}, {"n": "Everett Phillips", "r": "Commissioner, Columbia County"}, {"n": "Hunter Peeler", "r": "Columbia County School Board"}, {"n": "James Swisher", "r": "Clerk of Court, Columbia County"}, {"n": "James Swisher", "r": "Clerk of Court, Columbia County"}, {"n": "Jeff Hampton", "r": "Property Appraiser, Columbia County"}, {"n": "Keith Hudson", "r": "Columbia County School Board"}, {"n": "Kyle Keen", "r": "Tax Collector, Columbia County"}, {"n": "Mark Hunter", "r": "Sheriff, Columbia County"}, {"n": "Narragansett Mobley Smith", "r": "Columbia County School Board"}, {"n": "Robby Hollingsworth", "r": "Commissioner, Columbia County"}, {"n": "Rocky Ford", "r": "Commissioner, Columbia County"}, {"n": "Ronald Williams", "r": "Commissioner, Columbia County"}, {"n": "Timothy Murphy", "r": "Commissioner, Columbia County"}, {"n": "Tomi Brown", "r": "Supervisor of Elections, Columbia County"}, {"n": "Wallace Kitchings", "r": "Sheriff, Columbia County"}], "munis": [{"m": "Fort White", "p": [{"n": "Bill Koon", "r": "Fort White City Council"}, {"n": "George Thomas", "r": "Mayor of Fort White"}, {"n": "Kathryn Terry", "r": "Fort White City Council"}, {"n": "Lonnie Wayne Harrell", "r": "Fort White City Council"}, {"n": "Monica Merricks", "r": "Fort White City Council"}]}, {"m": "Lake City", "p": [{"n": "James Carter", "r": "Lake City City Council"}, {"n": "Noah Walker", "r": "Mayor of Lake City"}, {"n": "Ricky Jernigan", "r": "Lake City City Council"}, {"n": "Tammy Harris", "r": "Lake City City Council"}]}], "slug": "columbia"}, "12027": {"county": [{"n": "Asena Mott", "r": "DeSoto County School Board"}, {"n": "Ashley Coone", "r": "Commissioner, DeSoto County"}, {"n": "David Williams", "r": "Property Appraiser, DeSoto County"}, {"n": "Debbie Wertz", "r": "Supervisor of Elections, DeSoto County"}, {"n": "Debra Burtscher", "r": "Tax Collector, DeSoto County"}, {"n": "Elton Langford", "r": "Commissioner, DeSoto County"}, {"n": "James Potter", "r": "Sheriff, DeSoto County"}, {"n": "Jerod Gross", "r": "Commissioner, DeSoto County"}, {"n": "Joel Deriso", "r": "Commissioner, DeSoto County"}, {"n": "Judith Schaefer", "r": "Commissioner, DeSoto County"}, {"n": "Karen K Chancey", "r": "DeSoto County School Board"}, {"n": "Kelly Mercer", "r": "DeSoto County School Board"}, {"n": "Mark Negley", "r": "Supervisor of Elections, DeSoto County"}, {"n": "Nadia Daughtrey", "r": "Clerk of Court, DeSoto County"}, {"n": "Sharon T Goodman", "r": "DeSoto County School Board"}, {"n": "Steven Hickox", "r": "Commissioner, DeSoto County"}, {"n": "Susan Pooley", "r": "Tax Collector, DeSoto County"}], "munis": [{"m": "Arcadia", "p": [{"n": "Dee Washington", "r": "Arcadia City Council"}, {"n": "Judy Wertz Strickland", "r": "Mayor of Arcadia"}, {"n": "Keith Keene", "r": "Arcadia City Council"}, {"n": "Luis Velasco", "r": "Arcadia City Council"}, {"n": "Robert W. Heine", "r": "Arcadia City Council"}]}], "slug": "desoto"}, "12029": {"county": [{"n": "Amanda Mills NesSmith", "r": "Dixie County School Board"}, {"n": "Barbara Higginbotham", "r": "Clerk of Court, Dixie County"}, {"n": "Cheryl Pridgeon", "r": "Dixie County School Board"}, {"n": "Daniel Wood", "r": "Commissioner, Dixie County"}, {"n": "Darbi Chaires", "r": "Supervisor of Elections, Dixie County"}, {"n": "Darby Butler", "r": "Sheriff, Dixie County"}, {"n": "David Osteen", "r": "Commissioner, Dixie County"}, {"n": "Jamie Storey", "r": "Commissioner, Dixie County"}, {"n": "Lucas Rollison", "r": "Dixie County School Board"}, {"n": "Mark Hatch", "r": "Commissioner, Dixie County"}, {"n": "Michelle Cannon", "r": "Tax Collector, Dixie County"}, {"n": "Paul N Gainey", "r": "Dixie County School Board"}, {"n": "Paul Stephenson", "r": "Commissioner, Dixie County"}, {"n": "Robert Lee", "r": "Property Appraiser, Dixie County"}, {"n": "Starlet Cannon", "r": "Supervisor of Elections, Dixie County"}, {"n": "Timothy W. \"Tim\" Alexander", "r": "Dixie County School Board"}], "munis": [{"m": "Cross City", "p": [{"n": "Angela Carter", "r": "Cross City City Council"}, {"n": "Charlie Heidelburg", "r": "Cross City City Council"}, {"n": "Kenneth Lee", "r": "Cross City City Council"}, {"n": "Kirk Marhefka", "r": "Cross City City Council"}, {"n": "Ryan Fulford", "r": "Mayor of Cross City"}]}, {"m": "Horseshoe Beach", "p": [{"n": "Brett Selph", "r": "Horseshoe Beach City Council"}, {"n": "Bryan Dodd", "r": "Horseshoe Beach City Council"}, {"n": "Jeff Williams", "r": "Mayor of Horseshoe Beach"}, {"n": "Kelly Brooke Hiers", "r": "Horseshoe Beach City Council"}, {"n": "Scott Matthews", "r": "Horseshoe Beach City Council"}]}], "slug": "dixie"}, "12031": {"county": [{"n": "Al Ferraro", "r": "Council Member, Duval County"}, {"n": "April Carney", "r": "Duval County School Board"}, {"n": "Brenda Priestly Jackson", "r": "Council Member, Duval County"}, {"n": "Charlotte Joyce", "r": "Duval County School Board"}, {"n": "Chris Miller", "r": "Council Member, Duval County"}, {"n": "Cindy Pearson", "r": "Duval County School Board"}, {"n": "Danny Becton", "r": "Council Member, Duval County"}, {"n": "Darryl Willie", "r": "Duval County School Board"}, {"n": "Jerry Holland", "r": "Supervisor of Elections, Duval County"}, {"n": "Jerry Holland", "r": "Supervisor of Elections, Duval County"}, {"n": "Jim Overton", "r": "Tax Collector, Duval County"}, {"n": "Jimmy Peluso", "r": "Council Member, Duval County"}, {"n": "Jody Phillips", "r": "Clerk of Court, Duval County"}, {"n": "Joe Carlucci", "r": "Council Member, Duval County"}, {"n": "Joyce Morgan", "r": "Property Appraiser, Duval County"}, {"n": "Ju'Coby Pittman", "r": "Council Member, Duval County"}, {"n": "Ken Amaro", "r": "Council Member, Duval County"}, {"n": "Kevin Carrico", "r": "Council Member, Duval County"}, {"n": "LeAnna Cumber", "r": "Council Member, Duval County"}, {"n": "Matt Carlucci", "r": "Council Member, Duval County"}, {"n": "Melody Bolduc", "r": "Duval County School Board"}, {"n": "Michael Boylan", "r": "Council Member, Duval County"}, {"n": "Mike Gay", "r": "Council Member, Duval County"}, {"n": "Mike Hogan", "r": "Supervisor of Elections, Duval County"}, {"n": "Mike Williams", "r": "Sheriff, Duval County"}, {"n": "Nick Howland", "r": "Council Member, Duval County"}, {"n": "Rahman Johnson", "r": "Council Member, Duval County"}, {"n": "Randy DeFoor", "r": "Council Member, Duval County"}, {"n": "Randy White", "r": "Council Member, Duval County"}, {"n": "Reggie Gaffney", "r": "Council Member, Duval County"}, {"n": "Reginald \"Reggie\" Blount", "r": "Duval County School Board"}, {"n": "Ronald Salem", "r": "Council Member, Duval County"}, {"n": "Rory Diamond", "r": "Council Member, Duval County"}, {"n": "Samuel Newby", "r": "Council Member, Duval County"}, {"n": "Terrance Freeman", "r": "Council Member, Duval County"}, {"n": "Tony Ricardo", "r": "Duval County School Board"}, {"n": "Tyrona Clark-Murray", "r": "Council Member, Duval County"}, {"n": "William Lahnen", "r": "Council Member, Duval County"}], "munis": [{"m": "Atlantic Beach", "p": [{"n": "Bruce Bole", "r": "Atlantic Beach City Council"}, {"n": "Candace Kelly", "r": "Atlantic Beach City Council"}, {"n": "Curtis Ford", "r": "Mayor of Atlantic Beach"}, {"n": "Jessica Ring", "r": "Atlantic Beach City Council"}, {"n": "Thomas Grant", "r": "Atlantic Beach City Council"}]}, {"m": "Baldwin", "p": [{"n": "Georgeann L. McKenna", "r": "Baldwin City Council"}, {"n": "Harry D. Ervin", "r": "Baldwin City Council"}, {"n": "John A. Knoll", "r": "Baldwin City Council"}, {"n": "Manuel C. Dunlap", "r": "Baldwin City Council"}, {"n": "Sean T. Lynch", "r": "Mayor of Baldwin"}]}, {"m": "Jacksonville", "p": [{"n": "Chris Miller", "r": "Jacksonville City Council - At-Large Group 5"}, {"n": "Donna Deegan", "r": "Mayor of Jacksonville"}, {"n": "Jimmy Peluso", "r": "Jacksonville City Council"}, {"n": "Jimmy Peluso", "r": "Jacksonville City Council - District 7"}, {"n": "Joe Carlucci", "r": "Jacksonville City Council"}, {"n": "Joe Carlucci", "r": "Jacksonville City Council - District 5"}, {"n": "Ju'Coby Pittman", "r": "Jacksonville City Council"}, {"n": "Ju'Coby Pittman", "r": "Jacksonville City Council - District 10"}, {"n": "Ken Amaro", "r": "Jacksonville City Council - District 1"}, {"n": "Ken Stephens Amaro", "r": "Jacksonville City Council"}, {"n": "Kevin Carrico", "r": "Jacksonville City Council"}, {"n": "Kevin Carrico", "r": "Jacksonville City Council - District 4"}, {"n": "Matt Carlucci", "r": "Jacksonville City Council"}, {"n": "Matt Carlucci", "r": "Jacksonville City Council - At-Large Group 4"}, {"n": "Michael Boylan", "r": "Jacksonville City Council"}, {"n": "Michael Boylan", "r": "Jacksonville City Council - District 6"}, {"n": "Mike Gay", "r": "Jacksonville City Council"}, {"n": "Mike Gay", "r": "Jacksonville City Council - District 2"}, {"n": "Nick Howland", "r": "Jacksonville City Council"}, {"n": "Nick Howland", "r": "Jacksonville City Council - At-Large Group 3"}, {"n": "Rahman Johnson", "r": "Jacksonville City Council"}, {"n": "Rahman Johnson", "r": "Jacksonville City Council - District 14"}, {"n": "Randy White", "r": "Jacksonville City Council"}, {"n": "Randy White", "r": "Jacksonville City Council - District 12"}, {"n": "Raul Arias", "r": "Jacksonville City Council"}, {"n": "Raul Arias", "r": "Jacksonville City Council - District 11"}, {"n": "Reggie Gaffney", "r": "Jacksonville City Council"}, {"n": "Reggie Gaffney Jr.", "r": "Jacksonville City Council - District 8"}, {"n": "Ron Salem", "r": "Jacksonville City Council"}, {"n": "Ronald B. Salem", "r": "Jacksonville City Council - At-Large Group 2"}, {"n": "Rory Diamond", "r": "Jacksonville City Council"}, {"n": "Rory Diamond", "r": "Jacksonville City Council - District 13"}, {"n": "Terrance E. Freeman", "r": "Jacksonville City Council"}, {"n": "Terrance Freeman", "r": "Jacksonville City Council - At-Large Group 1"}, {"n": "Tyrona Clark-Murray", "r": "Jacksonville City Council"}, {"n": "Tyrona Clark-Murray", "r": "Jacksonville City Council - District 9"}, {"n": "Will Lahnen", "r": "Jacksonville City Council"}, {"n": "Will Lahnen", "r": "Jacksonville City Council - District 3"}]}, {"m": "Jacksonville Beach", "p": [{"n": "Bill Horn", "r": "Jacksonville Beach City Council"}, {"n": "Bruce Wouters", "r": "Jacksonville Beach City Council"}, {"n": "Chris Hoffman", "r": "Mayor of Jacksonville Beach"}, {"n": "Greg Sutton", "r": "Jacksonville Beach City Council"}, {"n": "John Wagner", "r": "Jacksonville Beach City Council"}]}, {"m": "Neptune Beach", "p": [{"n": "Brent Rogers", "r": "Neptune Beach City Council"}, {"n": "Cori Bylund", "r": "Mayor of Neptune Beach"}, {"n": "Josh Messinger", "r": "Neptune Beach City Council"}, {"n": "Nia Livingston", "r": "Neptune Beach City Council"}, {"n": "Tim Horvath", "r": "Neptune Beach City Council"}]}], "slug": "duval"}, "12033": {"county": [{"n": "Ashlee Hofberger", "r": "Commissioner, Escambia County"}, {"n": "Carissa Bergosh", "r": "Escambia County School Board"}, {"n": "Chip Simmons", "r": "Sheriff, Escambia County"}, {"n": "Chris Jones", "r": "Property Appraiser, Escambia County"}, {"n": "David Stafford", "r": "Supervisor of Elections, Escambia County"}, {"n": "David Williams", "r": "Escambia County School Board"}, {"n": "Gary Peters", "r": "Property Appraiser, Escambia County"}, {"n": "Jeff Bergosh", "r": "Commissioner, Escambia County"}, {"n": "Kevin Adams", "r": "Escambia County School Board"}, {"n": "Lumon May", "r": "Commissioner, Escambia County"}, {"n": "Michael Kohler", "r": "Commissioner, Escambia County"}, {"n": "Pamela Childers", "r": "Clerk of Court, Escambia County"}, {"n": "Paul Fetsko", "r": "Escambia County School Board"}, {"n": "Robert Bender", "r": "Supervisor of Elections, Escambia County"}, {"n": "Scott Lunsford", "r": "Tax Collector, Escambia County"}, {"n": "Steven Barry", "r": "Commissioner, Escambia County"}, {"n": "Tom Harrell", "r": "Escambia County School Board"}], "munis": [{"m": "Century", "p": [{"n": "Benjamin Boutwell", "r": "Mayor of Century"}, {"n": "Henry Cunningham", "r": "Century City Council"}, {"n": "John Bass", "r": "Century City Council"}, {"n": "Lizbeth A. Harrison", "r": "Century City Council"}, {"n": "Shelisa McCall Abraham", "r": "Century City Council"}]}, {"m": "Pensacola", "p": [{"n": "Allison Patton", "r": "Pensacola City Council"}, {"n": "Casey Jones", "r": "Pensacola City Council"}, {"n": "Charles Bare", "r": "Pensacola City Council"}, {"n": "D.C. Reeves", "r": "Mayor of Pensacola"}, {"n": "Delarian Wiggins", "r": "Pensacola City Council"}, {"n": "Jared Moore", "r": "Pensacola City Council"}, {"n": "Jennifer Brahier", "r": "Pensacola City Council"}, {"n": "Teniadé Broughton", "r": "Pensacola City Council"}]}], "slug": "escambia"}, "12035": {"county": [{"n": "Andy Dance", "r": "Commissioner, Flagler County"}, {"n": "Christy Chong", "r": "Flagler County School Board"}, {"n": "Donald O'Brien", "r": "Commissioner, Flagler County"}, {"n": "Gregory Hansen", "r": "Commissioner, Flagler County"}, {"n": "James Gardner", "r": "Property Appraiser, Flagler County"}, {"n": "Janie Ruddy", "r": "Flagler County School Board"}, {"n": "Kaiti Lenhart", "r": "Supervisor of Elections, Flagler County"}, {"n": "Lauren Ramirez", "r": "Flagler County School Board"}, {"n": "Leann Pennington", "r": "Commissioner, Flagler County"}, {"n": "Rick Staly", "r": "Sheriff, Flagler County"}, {"n": "Sally Hunt", "r": "Flagler County School Board"}, {"n": "Shelly Edmonson", "r": "Tax Collector, Flagler County"}, {"n": "Suzanne Johnston", "r": "Tax Collector, Flagler County"}, {"n": "Tom Bexley", "r": "Clerk of Court, Flagler County"}, {"n": "Will Furry", "r": "Flagler County School Board"}], "munis": [{"m": "Beverly Beach", "p": [{"n": "James Howard", "r": "Beverly Beach City Council"}, {"n": "Jeffrey Borges", "r": "Beverly Beach City Council"}, {"n": "Jeffrey Schuitema", "r": "Beverly Beach City Council"}, {"n": "Kyle Blake", "r": "Beverly Beach City Council"}, {"n": "Philip Krakowski", "r": "Beverly Beach City Council"}, {"n": "Stephen Emmett", "r": "Mayor of Beverly Beach"}]}, {"m": "Bunnell", "p": [{"n": "Catherine D. Robinson", "r": "Mayor of Bunnell"}, {"n": "David Atkinson", "r": "Bunnell City Council"}, {"n": "Dean Sechrist", "r": "Bunnell City Council"}, {"n": "John Rogers", "r": "Bunnell City Council"}, {"n": "Peter Young", "r": "Bunnell City Council"}]}, {"m": "Flagler Beach", "p": [{"n": "Eric Cooley", "r": "Flagler Beach City Council"}, {"n": "James Sherman", "r": "Flagler Beach City Council"}, {"n": "John Cunningham", "r": "Flagler Beach City Council"}, {"n": "Patti King", "r": "Mayor of Flagler Beach"}, {"n": "R.J. Santore", "r": "Flagler Beach City Council"}, {"n": "Scott Spradley", "r": "Flagler Beach City Council"}]}, {"m": "Marineland", "p": [{"n": "Jessica Finch", "r": "Marineland City Council"}, {"n": "Joseph B. Pinder", "r": "Mayor of Marineland"}]}, {"m": "Palm Coast", "p": [{"n": "Charles A. Gambarao", "r": "Palm Coast City Council"}, {"n": "Dave Sullivan", "r": "Palm Coast City Council"}, {"n": "Mike Norris", "r": "Mayor of Palm Coast"}, {"n": "Theresa Carli Pontieri", "r": "Palm Coast City Council"}, {"n": "Ty Miller", "r": "Palm Coast City Council"}]}], "slug": "flagler"}, "12037": {"county": [{"n": "A.J. Smith", "r": "Sheriff, Franklin County"}, {"n": "Amy Cook", "r": "Tax Collector, Franklin County"}, {"n": "Anthony Croom", "r": "Commissioner, Franklin County"}, {"n": "Fonda D. Davis Sr.", "r": "Franklin County School Board"}, {"n": "Heather Riley", "r": "Supervisor of Elections, Franklin County"}, {"n": "James Tipton", "r": "Property Appraiser, Franklin County"}, {"n": "Jared Mock", "r": "Franklin County School Board"}, {"n": "Jessica Varnes Ward", "r": "Commissioner, Franklin County"}, {"n": "Melonie Kay Inzetta", "r": "Franklin County School Board"}, {"n": "Ottice Amison", "r": "Commissioner, Franklin County"}, {"n": "Pamela Marshall", "r": "Franklin County School Board"}, {"n": "Rhonda Skipper", "r": "Property Appraiser, Franklin County"}, {"n": "Rick Watson", "r": "Tax Collector, Franklin County"}, {"n": "Ricky Jones", "r": "Commissioner, Franklin County"}, {"n": "Stacy Buck Kirvin", "r": "Franklin County School Board"}, {"n": "Suzanne Maxwell", "r": "Clerk of Court, Franklin County"}], "munis": [{"m": "Apalachicola", "p": [{"n": "Adriane Elliott", "r": "Apalachicola City Council"}, {"n": "Brenda Ash", "r": "Mayor of Apalachicola"}, {"n": "Despina George", "r": "Apalachicola City Council"}, {"n": "Donna Duncan", "r": "Apalachicola City Council"}, {"n": "Donna Knutson", "r": "Apalachicola City Council"}]}, {"m": "Carrabelle", "p": [{"n": "Anthony Millender", "r": "Carrabelle City Council"}, {"n": "Keith Walden", "r": "Carrabelle City Council"}, {"n": "Sebrina Brown", "r": "Mayor of Carrabelle"}, {"n": "Vance Pedrick", "r": "Carrabelle City Council"}, {"n": "William Gray", "r": "Carrabelle City Council"}]}], "slug": "franklin"}, "12039": {"county": [{"n": "Alonzetta Simpkins", "r": "Commissioner, Gadsden County"}, {"n": "Brenda Holt", "r": "Commissioner, Gadsden County"}, {"n": "Cathy Johnson", "r": "Gadsden County School Board"}, {"n": "Charlie Frost", "r": "Gadsden County School Board"}, {"n": "Eric Hinson", "r": "Commissioner, Gadsden County"}, {"n": "Kenya Williams", "r": "Supervisor of Elections, Gadsden County"}, {"n": "Kimblin Nesmith", "r": "Commissioner, Gadsden County"}, {"n": "Leroy McMillan", "r": "Gadsden County School Board"}, {"n": "Morris Young", "r": "Sheriff, Gadsden County"}, {"n": "Nicholas Thomas", "r": "Clerk of Court, Gadsden County"}, {"n": "Reginald Cunningham", "r": "Property Appraiser, Gadsden County"}, {"n": "Ronterious Green", "r": "Commissioner, Gadsden County"}, {"n": "Shawn Wood", "r": "Commissioner, Gadsden County"}, {"n": "Shirley Knight", "r": "Supervisor of Elections, Gadsden County"}, {"n": "Stacey Hannigon", "r": "Gadsden County School Board"}, {"n": "Steve Scott", "r": "Gadsden County School Board"}, {"n": "Tonjii Wiggins-McGriff", "r": "Tax Collector, Gadsden County"}, {"n": "W. Dale Summerford", "r": "Tax Collector, Gadsden County"}], "munis": [{"m": "Chattahoochee", "p": [{"n": "Amy M. Glass", "r": "Chattahoochee City Council"}, {"n": "Anquarnette Richardson", "r": "Mayor of Chattahoochee"}, {"n": "Christopher Moultry", "r": "Chattahoochee City Council"}, {"n": "Kenneth Kimrey", "r": "Chattahoochee City Council"}, {"n": "Loubennie A. Williams", "r": "Chattahoochee City Council"}]}, {"m": "Greensboro", "p": [{"n": "Brenda K. Martinez", "r": "Greensboro City Council"}, {"n": "Jacquelyn R. Barber", "r": "Greensboro City Council"}, {"n": "Justin Alday", "r": "Greensboro City Council"}, {"n": "Kimberly A. Boyer", "r": "Greensboro City Council"}, {"n": "Lamar Alday", "r": "Mayor of Greensboro"}, {"n": "Micah Nunamaker", "r": "Greensboro City Council"}]}, {"m": "Gretna", "p": [{"n": "Anthony Baker", "r": "Mayor of Gretna"}, {"n": "Dexter Wright", "r": "Gretna City Council"}, {"n": "Evelyn Riley Goldwire", "r": "Gretna City Council"}, {"n": "Gary Russ-Sills", "r": "Gretna City Council"}, {"n": "James Payne", "r": "Gretna City Council"}]}, {"m": "Havana", "p": [{"n": "Edward Bass", "r": "Mayor of Havana"}, {"n": "John Bryant", "r": "Havana City Council"}, {"n": "Landon Seymour", "r": "Havana City Council"}, {"n": "Lawrence Reed", "r": "Havana City Council"}, {"n": "Matthew Wesolowski", "r": "Havana City Council"}, {"n": "Penny Key", "r": "Havana City Council"}, {"n": "Tabatha Nelson", "r": "Havana City Council"}]}, {"m": "Midway", "p": [{"n": "Braheem Russ", "r": "Midway City Council"}, {"n": "Charles Williams", "r": "Midway City Council"}, {"n": "Ella Parker Dickey", "r": "Mayor of Midway"}, {"n": "NanDrycka King Albert", "r": "Midway City Council"}, {"n": "Valerie Ford", "r": "Midway City Council"}]}, {"m": "Quincy", "p": [{"n": "Beverly A. Nash", "r": "Mayor of Quincy"}, {"n": "Devonta Knight", "r": "Quincy City Council"}, {"n": "Lane Stephens", "r": "Quincy City Council"}, {"n": "Robin Wood", "r": "Quincy City Council"}, {"n": "Ronte R. Harris", "r": "Quincy City Council"}]}], "slug": "gadsden"}, "12041": {"county": [{"n": "Christie McElroy", "r": "Gilchrist County School Board"}, {"n": "Connie Sanchez", "r": "Supervisor of Elections, Gilchrist County"}, {"n": "Damon Leggett", "r": "Property Appraiser, Gilchrist County"}, {"n": "Dustin Deen Lancaster", "r": "Gilchrist County School Board"}, {"n": "Kenrick Thomas", "r": "Commissioner, Gilchrist County"}, {"n": "Michael McElroy", "r": "Tax Collector, Gilchrist County"}, {"n": "Michelle Walker-Crawford", "r": "Gilchrist County School Board"}, {"n": "Robert Schultz", "r": "Sheriff, Gilchrist County"}, {"n": "Ronald Smith", "r": "Commissioner, Gilchrist County"}, {"n": "Sharon Langford", "r": "Commissioner, Gilchrist County"}, {"n": "Susan P. Owens", "r": "Gilchrist County School Board"}, {"n": "Tammy Moore", "r": "Gilchrist County School Board"}, {"n": "Thomas Langford", "r": "Commissioner, Gilchrist County"}, {"n": "Todd Newton", "r": "Clerk of Court, Gilchrist County"}, {"n": "William Martin", "r": "Commissioner, Gilchrist County"}], "munis": [{"m": "Bell", "p": [{"n": "Chris Sandlin", "r": "Bell City Council"}, {"n": "Diana 'Katie' Lovett", "r": "Bell City Council"}, {"n": "Gary Blankenship", "r": "Bell City Council"}, {"n": "Michael Moore", "r": "Bell City Council"}, {"n": "Sandra Moore", "r": "Mayor of Bell"}]}, {"m": "Trenton", "p": [{"n": "Cloud Haley", "r": "Trenton City Council"}, {"n": "Mary Love Davis", "r": "Trenton City Council"}, {"n": "Randy Rutter", "r": "Trenton City Council"}, {"n": "Robbi Coarsey", "r": "Mayor of Trenton"}, {"n": "Russel Williams", "r": "Trenton City Council"}]}], "slug": "gilchrist"}, "12043": {"county": [{"n": "Aletris Farnam", "r": "Supervisor of Elections, Glades County"}, {"n": "Crystal Drake", "r": "Glades County School Board"}, {"n": "David Hardin", "r": "Sheriff, Glades County"}, {"n": "Donna Storter Long", "r": "Commissioner, Glades County"}, {"n": "Gail Jones", "r": "Tax Collector, Glades County"}, {"n": "Hattie Taylor", "r": "Commissioner, Glades County"}, {"n": "Jean H. Prowant", "r": "Glades County School Board"}, {"n": "Jeffrey Patterson", "r": "Commissioner, Glades County"}, {"n": "Jerry Sapp", "r": "Commissioner, Glades County"}, {"n": "Kimberly Lynn Clement", "r": "Glades County School Board"}, {"n": "Larry Luckey, II", "r": "Glades County School Board"}, {"n": "Lorie Ward", "r": "Property Appraiser, Glades County"}, {"n": "Patricia B Pearce", "r": "Glades County School Board"}, {"n": "Tami Simmons", "r": "Clerk of Court, Glades County"}, {"n": "Timothy Stanley", "r": "Commissioner, Glades County"}, {"n": "Tony Whidden", "r": "Commissioner, Glades County"}], "munis": [{"m": "Moore Haven", "p": [{"n": "Alisha Beck", "r": "Moore Haven City Council"}, {"n": "Bradley Smith", "r": "Moore Haven City Council"}, {"n": "Marcus Decker", "r": "Moore Haven City Council"}, {"n": "RaShondra Croskey", "r": "Moore Haven City Council"}, {"n": "Wayne Browning", "r": "Mayor of Moore Haven"}]}], "slug": "glades"}, "12045": {"county": [{"n": "Ashley Forehand", "r": "Tax Collector, Gulf County"}, {"n": "Brooke Wooten", "r": "Gulf County School Board"}, {"n": "David Rich", "r": "Commissioner, Gulf County"}, {"n": "Denny Mcglon", "r": "Gulf County School Board"}, {"n": "Equillar \"Gal\" Gainer", "r": "Gulf County School Board"}, {"n": "James \"Matt\" Terry", "r": "Gulf County School Board"}, {"n": "John Hanlon", "r": "Supervisor of Elections, Gulf County"}, {"n": "Mike Harrison", "r": "Sheriff, Gulf County"}, {"n": "Mitch Burke", "r": "Property Appraiser, Gulf County"}, {"n": "Patrick Farrell", "r": "Commissioner, Gulf County"}, {"n": "Phil McCroan", "r": "Commissioner, Gulf County"}, {"n": "Rebecca Norris", "r": "Clerk of Court, Gulf County"}, {"n": "Rhonda Pierce", "r": "Supervisor of Elections, Gulf County"}, {"n": "Ruby Knox", "r": "Gulf County School Board"}, {"n": "Sandy Quinn", "r": "Commissioner, Gulf County"}, {"n": "Shirley Jenkins", "r": "Tax Collector, Gulf County"}], "munis": [{"m": "Port St. Joe", "p": [{"n": "Brett Lowry", "r": "Port St. Joe City Council"}, {"n": "Scott Hoffman", "r": "Port St. Joe City Council"}, {"n": "Steve P. Kerigan", "r": "Port St. Joe City Council"}, {"n": "William R. Buzzett", "r": "Mayor of Port St. Joe"}]}, {"m": "Wewahitchka", "p": [{"n": "Brian Cox", "r": "Wewahitchka City Council"}, {"n": "John Paul", "r": "Wewahitchka City Council"}, {"n": "Phillip Gaskin", "r": "Mayor of Wewahitchka"}, {"n": "Ralph M. Fisher", "r": "Wewahitchka City Council"}, {"n": "Robert C. Pettis", "r": "Wewahitchka City Council"}]}], "slug": "gulf"}, "12047": {"county": [{"n": "Brian Creech", "r": "Sheriff, Hamilton County"}, {"n": "Cheryl Deas McCall", "r": "Hamilton County School Board"}, {"n": "Clayton Goolsby", "r": "Property Appraiser, Hamilton County"}, {"n": "David Goolsby", "r": "Property Appraiser, Hamilton County"}, {"n": "Gary Godwin", "r": "Hamilton County School Board"}, {"n": "J. Harrell Reid", "r": "Sheriff, Hamilton County"}, {"n": "James Murphy", "r": "Commissioner, Hamilton County"}, {"n": "Johnny Bullard", "r": "Hamilton County School Board"}, {"n": "Laura Hutto", "r": "Supervisor of Elections, Hamilton County"}, {"n": "Leslie Jones", "r": "Tax Collector, Hamilton County"}, {"n": "Mary Sue Adams", "r": "Tax Collector, Hamilton County"}, {"n": "Richard McCoy", "r": "Commissioner, Hamilton County"}, {"n": "Robby Roberson", "r": "Commissioner, Hamilton County"}, {"n": "Robert Brown", "r": "Commissioner, Hamilton County"}, {"n": "Sammy McCoy", "r": "Hamilton County School Board"}, {"n": "Saul Speights", "r": "Hamilton County School Board"}, {"n": "W. Greg Godwin", "r": "Clerk of Court, Hamilton County"}], "munis": [{"m": "Jasper", "p": [{"n": "Carlton G. Selph", "r": "Jasper City Council"}, {"n": "Jay Daigle", "r": "Jasper City Council"}, {"n": "Jhelecia Hawkins", "r": "Mayor of Jasper"}, {"n": "Vanessa Smith", "r": "Jasper City Council"}, {"n": "William S. Mitchell", "r": "Jasper City Council"}]}, {"m": "Jennings", "p": [{"n": "Antonette Crumedy", "r": "Jennings City Council"}, {"n": "Charles Barrett", "r": "Mayor of Jennings"}, {"n": "Cynthia Daniels", "r": "Jennings City Council"}, {"n": "John Prine", "r": "Jennings City Council"}, {"n": "Philip Jackson", "r": "Jennings City Council"}]}, {"m": "White Springs", "p": [{"n": "Cheryl McCall", "r": "White Springs City Council"}, {"n": "Nicole Williams", "r": "White Springs City Council"}, {"n": "Nikki Williams", "r": "White Springs City Council"}, {"n": "Robert Gamsby", "r": "White Springs City Council"}, {"n": "Tonja R. Brown", "r": "Mayor of White Springs"}]}], "slug": "hamilton"}, "12049": {"county": [{"n": "Alisa Lee", "r": "Tax Collector, Hardee County"}, {"n": "Andrew Brian Smith", "r": "Hardee County School Board"}, {"n": "April Lambert", "r": "Tax Collector, Hardee County"}, {"n": "Arnold Lanier", "r": "Sheriff, Hardee County"}, {"n": "Claire Cornell", "r": "Hardee County School Board"}, {"n": "Diane Smith", "r": "Supervisor of Elections, Hardee County"}, {"n": "Judith George", "r": "Commissioner, Hardee County"}, {"n": "Kathy Crawford", "r": "Property Appraiser, Hardee County"}, {"n": "Marie Albritton Dasher", "r": "Hardee County School Board"}, {"n": "Mark Edward Gilliard", "r": "Hardee County School Board"}, {"n": "Noey Flores", "r": "Commissioner, Hardee County"}, {"n": "Renee Wyatt", "r": "Commissioner, Hardee County"}, {"n": "Russell Melendy", "r": "Commissioner, Hardee County"}, {"n": "Stacy Denise Sharp", "r": "Hardee County School Board"}, {"n": "Victoria Rogers", "r": "Clerk of Court, Hardee County"}, {"n": "Vincent Crawford", "r": "Sheriff, Hardee County"}], "munis": [{"m": "Bowling Green", "p": [{"n": "David Durastanti", "r": "Bowling Green City Council"}, {"n": "Francisco Arreola", "r": "Bowling Green City Council"}, {"n": "Kent Peterson", "r": "Bowling Green City Council"}, {"n": "N'Kosi L. Jones", "r": "Bowling Green City Council"}, {"n": "Sam Fite", "r": "Mayor of Bowling Green"}]}, {"m": "Wauchula", "p": [{"n": "Anne Miller", "r": "Wauchula City Council"}, {"n": "Gary D. Smith", "r": "Wauchula City Council"}, {"n": "Richard Keith Nadaskay", "r": "Mayor of Wauchula"}, {"n": "Russell G. Smith", "r": "Wauchula City Council"}, {"n": "Sherri Albritton", "r": "Wauchula City Council"}]}, {"m": "Zolfo Springs", "p": [{"n": "Didi White", "r": "Zolfo Springs City Council"}, {"n": "Howard E. Schofield", "r": "Zolfo Springs City Council"}, {"n": "Martina O. Zuniga", "r": "Zolfo Springs City Council"}, {"n": "Rodney A. Cannon", "r": "Mayor of Zolfo Springs"}, {"n": "Sara Ann Schofield", "r": "Zolfo Springs City Council"}]}], "slug": "hardee"}, "12051": {"county": [{"n": "Amanda S. Nelson", "r": "Hendry County School Board"}, {"n": "Amy Collins", "r": "Tax Collector, Hendry County"}, {"n": "Brenda Hoots", "r": "Supervisor of Elections, Hendry County"}, {"n": "Dena Pittman", "r": "Property Appraiser, Hendry County"}, {"n": "Dwayne E. Brown", "r": "Hendry County School Board"}, {"n": "Emma Byrd", "r": "Commissioner, Hendry County"}, {"n": "Emory Howard", "r": "Commissioner, Hendry County"}, {"n": "Jon Basquin", "r": "Hendry County School Board"}, {"n": "Karson Turner", "r": "Commissioner, Hendry County"}, {"n": "Kimberley Barrineau", "r": "Clerk of Court, Hendry County"}, {"n": "Michael Atkinson", "r": "Commissioner, Hendry County"}, {"n": "Mitch Wills", "r": "Commissioner, Hendry County"}, {"n": "Patrick Langford", "r": "Tax Collector, Hendry County"}, {"n": "Paul Samerdyke", "r": "Hendry County School Board"}, {"n": "Ramon Iglesias", "r": "Commissioner, Hendry County"}, {"n": "Sherry Taylor", "r": "Supervisor of Elections, Hendry County"}, {"n": "Stephanie Busin", "r": "Hendry County School Board"}, {"n": "Steve Whidden", "r": "Sheriff, Hendry County"}], "munis": [{"m": "Clewiston", "p": [{"n": "Barbara Edmonds", "r": "Clewiston City Council"}, {"n": "Hillary Hyslope", "r": "Clewiston City Council"}, {"n": "James L. Pittman", "r": "Mayor of Clewiston"}, {"n": "Jason Williams", "r": "Clewiston City Council"}, {"n": "Mali Gardner", "r": "Clewiston City Council"}]}, {"m": "LaBelle", "p": [{"n": "Barbara Spratt", "r": "LaBelle City Council"}, {"n": "Hugo Vargas", "r": "LaBelle City Council"}, {"n": "Jacqueline Ratica", "r": "LaBelle City Council"}, {"n": "Julie C. Wilkins", "r": "Mayor of LaBelle"}, {"n": "Kevin Holland", "r": "LaBelle City Council"}]}], "slug": "hendry"}, "12053": {"county": [{"n": "Alvin Nienhuis", "r": "Sheriff, Hernando County"}, {"n": "Amy Blackburn", "r": "Tax Collector, Hernando County"}, {"n": "Brian Hawkins", "r": "Commissioner, Hernando County"}, {"n": "Denise LaVancher", "r": "Supervisor of Elections, Hernando County"}, {"n": "Douglas Chorvat", "r": "Clerk of Court, Hernando County"}, {"n": "Elizabeth Narverud", "r": "Commissioner, Hernando County"}, {"n": "John Allocco", "r": "Commissioner, Hernando County"}, {"n": "John Emerson", "r": "Property Appraiser, Hernando County"}, {"n": "John Mitten", "r": "Commissioner, Hernando County"}, {"n": "Kayce Hawkins", "r": "Hernando County School Board"}, {"n": "Mark C. Johnson", "r": "Hernando County School Board"}, {"n": "Michelle Bonczek", "r": "Hernando County School Board"}, {"n": "Randolph Mazourek", "r": "Property Appraiser, Hernando County"}, {"n": "Sally Daniel", "r": "Tax Collector, Hernando County"}, {"n": "Shannon Rodriguez", "r": "Hernando County School Board"}, {"n": "Shirley Anderson", "r": "Supervisor of Elections, Hernando County"}, {"n": "Steven Champion", "r": "Commissioner, Hernando County"}, {"n": "Susan D. Duval", "r": "Hernando County School Board"}], "munis": [{"m": "Brooksville", "p": [{"n": "Betty Erhard", "r": "Brooksville City Council"}, {"n": "Christa Tanner", "r": "Mayor of Brooksville"}, {"n": "J.W. McKethan", "r": "Brooksville City Council"}, {"n": "Louis Hallal", "r": "Brooksville City Council"}, {"n": "Thomas Bronson", "r": "Brooksville City Council"}]}], "slug": "hernando"}, "12055": {"county": [{"n": "Arlene Tuck", "r": "Commissioner, Highlands County"}, {"n": "C. Raymond McIntyre", "r": "Property Appraiser, Highlands County"}, {"n": "Chris Campbell", "r": "Commissioner, Highlands County"}, {"n": "Don Elwell", "r": "Commissioner, Highlands County"}, {"n": "Donna Howerton", "r": "Highlands County School Board"}, {"n": "Eric Zwayer", "r": "Tax Collector, Highlands County"}, {"n": "Isaac Durrance", "r": "Highlands County School Board"}, {"n": "Jerome Kaszubowski", "r": "Clerk of Court, Highlands County"}, {"n": "Karen Healy", "r": "Supervisor of Elections, Highlands County"}, {"n": "Kathleen Rapp", "r": "Commissioner, Highlands County"}, {"n": "Kevin Roberts", "r": "Commissioner, Highlands County"}, {"n": "Mason Whidden", "r": "Highlands County School Board"}, {"n": "Nicole Radonski", "r": "Highlands County School Board"}, {"n": "Paul Blackman", "r": "Sheriff, Highlands County"}, {"n": "Reese Martin", "r": "Highlands County School Board"}, {"n": "Scott Kirouac", "r": "Commissioner, Highlands County"}], "munis": [{"m": "Avon Park", "p": [{"n": "Berniece Taylor", "r": "Avon Park City Council"}, {"n": "Brittany McGuire", "r": "Avon Park City Council"}, {"n": "Garrett Anderson", "r": "Mayor of Avon Park"}, {"n": "Jim Barnard", "r": "Avon Park City Council"}, {"n": "Michelle Mercure", "r": "Avon Park City Council"}]}, {"m": "Lake Placid", "p": [{"n": "Colleen Charles", "r": "Mayor of Lake Placid"}, {"n": "Debra Worley", "r": "Lake Placid City Council"}, {"n": "Joy Eberhardt", "r": "Lake Placid City Council"}, {"n": "Nell Frewin-Hays", "r": "Lake Placid City Council"}]}, {"m": "Sebring", "p": [{"n": "David Leidel", "r": "Sebring City Council"}, {"n": "Harrison Havery", "r": "Sebring City Council"}, {"n": "John C. Shoop", "r": "Mayor of Sebring"}, {"n": "Josh Stewart", "r": "Sebring City Council"}, {"n": "Rebekah Kogelschatz", "r": "Sebring City Council"}, {"n": "Roland Bishop", "r": "Sebring City Council"}]}], "slug": "highlands"}, "12057": {"county": [{"n": "Bob Henriquez", "r": "Property Appraiser, Hillsborough County"}, {"n": "Chad Chronister", "r": "Sheriff, Hillsborough County"}, {"n": "Christine Miller", "r": "Commissioner, Hillsborough County"}, {"n": "Cindy Stuart", "r": "Clerk of Court, Hillsborough County"}, {"n": "Craig Latimer", "r": "Supervisor of Elections, Hillsborough County"}, {"n": "Donna Cameron-Cepeda", "r": "Commissioner, Hillsborough County"}, {"n": "Doug Belden", "r": "Tax Collector, Hillsborough County"}, {"n": "Gwen Myers", "r": "Commissioner, Hillsborough County"}, {"n": "Harry Cohen", "r": "Commissioner, Hillsborough County"}, {"n": "Henry Washington", "r": "Hillsborough County School Board"}, {"n": "Jessica Vaughn", "r": "Hillsborough County School Board"}, {"n": "Joshua Wostal", "r": "Commissioner, Hillsborough County"}, {"n": "Ken Hagan", "r": "Commissioner, Hillsborough County"}, {"n": "Lynn Gray", "r": "Hillsborough County School Board"}, {"n": "Nadia Combs", "r": "Hillsborough County School Board"}, {"n": "Nancy Millan", "r": "Tax Collector, Hillsborough County"}, {"n": "Patricia \"Patti\" Rendon", "r": "Hillsborough County School Board"}, {"n": "Patricia Kemp", "r": "Commissioner, Hillsborough County"}, {"n": "Stacy Hahn", "r": "Hillsborough County School Board"}], "munis": [{"m": "Plant City", "p": [{"n": "Jason Jones", "r": "Plant City City Council"}, {"n": "John L. Haney", "r": "Plant City City Council"}, {"n": "Karen Kerr", "r": "Plant City City Council"}, {"n": "Mary Thomas Mathis", "r": "Plant City City Council"}, {"n": "Nathan A. Kilton", "r": "Mayor of Plant City"}]}, {"m": "Tampa", "p": [{"n": "Alan Clendenin", "r": "Tampa City Council - At-Large Chairman"}, {"n": "Bill Carlson", "r": "Tampa City Council"}, {"n": "Bill Carlson", "r": "Tampa City Council - District 4"}, {"n": "Charlie Miranda", "r": "Tampa City Council"}, {"n": "Charlie Miranda", "r": "Tampa City Council - District 6"}, {"n": "Guido Maniscalco", "r": "Tampa City Council"}, {"n": "Guido Maniscalco", "r": "Tampa City Council - At-Large"}, {"n": "Gwendolyn Henderson", "r": "Tampa City Council"}, {"n": "Jane Castor", "r": "Mayor of Tampa"}, {"n": "Luis E. Viera", "r": "Tampa City Council"}, {"n": "Luis Viera", "r": "Tampa City Council - District 7"}, {"n": "Lynn Hurtak", "r": "Tampa City Council"}, {"n": "Lynn Hurtak", "r": "Tampa City Council - At-Large"}, {"n": "Naya Young", "r": "Tampa City Council - District 5"}]}, {"m": "Temple Terrace", "p": [{"n": "Alison Fernandez", "r": "Temple Terrace City Council"}, {"n": "Andrew R. Ross", "r": "Mayor of Temple Terrace"}, {"n": "Erik Kravets", "r": "Temple Terrace City Council"}, {"n": "Gil Schisler", "r": "Temple Terrace City Council"}, {"n": "James Chambers", "r": "Temple Terrace City Council"}]}], "slug": "hillsborough"}, "12059": {"county": [{"n": "Brandon Newsom", "r": "Commissioner, Holmes County"}, {"n": "Bryan Bell", "r": "Property Appraiser, Holmes County"}, {"n": "Charley Wilson", "r": "Holmes County School Board"}, {"n": "Clint Erickson", "r": "Commissioner, Holmes County"}, {"n": "Derek Worley", "r": "Holmes County School Board"}, {"n": "Earl Stafford", "r": "Commissioner, Holmes County"}, {"n": "Harry Bell", "r": "Tax Collector, Holmes County"}, {"n": "Howard Williams", "r": "Supervisor of Elections, Holmes County"}, {"n": "Jeff Good", "r": "Commissioner, Holmes County"}, {"n": "John Tate", "r": "Sheriff, Holmes County"}, {"n": "Leesa Manning Lee", "r": "Holmes County School Board"}, {"n": "Natalie Motley Miller", "r": "Holmes County School Board"}, {"n": "Phillip Music", "r": "Commissioner, Holmes County"}, {"n": "Samuel Bailey", "r": "Clerk of Court, Holmes County"}, {"n": "Therisa Meadows", "r": "Supervisor of Elections, Holmes County"}, {"n": "Wilburn Baker", "r": "Holmes County School Board"}], "munis": [{"m": "Bonifay", "p": [{"n": "Eddie Dixon", "r": "Bonifay City Council"}, {"n": "James W. Sellers", "r": "Bonifay City Council"}, {"n": "Larry Cook", "r": "Mayor of Bonifay"}, {"n": "Rick Crews", "r": "Bonifay City Council"}, {"n": "Shelley Carroll", "r": "Bonifay City Council"}]}, {"m": "Esto", "p": [{"n": "Donna Davis", "r": "Esto City Council"}, {"n": "Gregg Wells", "r": "Esto City Council"}, {"n": "Joshua Davenport", "r": "Esto City Council"}]}, {"m": "Noma", "p": [{"n": "Betty Forthman", "r": "Noma City Council"}, {"n": "Daniel Arrant", "r": "Noma City Council"}, {"n": "Eric Hudson", "r": "Noma City Council"}, {"n": "Literman Joseph", "r": "Noma City Council"}]}, {"m": "Ponce De Leon", "p": [{"n": "Ashley Johnson", "r": "Ponce De Leon City Council"}, {"n": "Johnny Sutton", "r": "Ponce De Leon City Council"}, {"n": "Kimberly Mason", "r": "Ponce De Leon City Council"}, {"n": "Laura Johnson", "r": "Ponce De Leon City Council"}, {"n": "Shane Busby", "r": "Mayor of Ponce De Leon"}, {"n": "William Glenister", "r": "Ponce De Leon City Council"}]}, {"m": "Westville", "p": [{"n": "BJ Taunton", "r": "Westville City Council"}, {"n": "Brittney Simmons", "r": "Westville City Council"}, {"n": "Samanatha Webster", "r": "Westville City Council"}, {"n": "Stephen L. Herrington", "r": "Mayor of Westville"}, {"n": "Susan Bergeron", "r": "Westville City Council"}]}], "slug": "holmes"}, "12061": {"county": [{"n": "Carole Jean Jordan", "r": "Tax Collector, Indian River County"}, {"n": "David Dyer", "r": "Indian River County School Board"}, {"n": "Deryl Loar", "r": "Commissioner, Indian River County"}, {"n": "Eric Flowers", "r": "Sheriff, Indian River County"}, {"n": "Gene Posca", "r": "Indian River County School Board"}, {"n": "Joseph Earman", "r": "Commissioner, Indian River County"}, {"n": "Joseph Flescher", "r": "Commissioner, Indian River County"}, {"n": "Laura Moss", "r": "Commissioner, Indian River County"}, {"n": "Leslie Swan", "r": "Supervisor of Elections, Indian River County"}, {"n": "Peggy Jones", "r": "Indian River County School Board"}, {"n": "Ryan Butler", "r": "Clerk of Court, Indian River County"}, {"n": "Susan Adams", "r": "Commissioner, Indian River County"}, {"n": "Teri Lee Barenborg", "r": "Indian River County School Board"}, {"n": "Wesley Davis", "r": "Property Appraiser, Indian River County"}], "munis": [{"m": "Fellsmere", "p": [{"n": "Fernando Herrera", "r": "Fellsmere City Council"}, {"n": "Inocensia Hernandez", "r": "Fellsmere City Council"}, {"n": "Jessica Salgado", "r": "Mayor of Fellsmere"}, {"n": "Shayla Macias", "r": "Fellsmere City Council"}]}, {"m": "Indian River Shores", "p": [{"n": "Brian T. Foley", "r": "Mayor of Indian River Shores"}, {"n": "James Altieri", "r": "Indian River Shores City Council"}, {"n": "Jesse L. 'Sam' Carroll", "r": "Indian River Shores City Council"}, {"n": "Peter A. Tedesko", "r": "Indian River Shores City Council"}, {"n": "Robert 'Bob' F. Auwaerter", "r": "Indian River Shores City Council"}]}, {"m": "Orchid", "p": [{"n": "Daniel McEvoy", "r": "Orchid City Council"}, {"n": "James Raphalian", "r": "Orchid City Council"}, {"n": "John Heanue", "r": "Orchid City Council"}, {"n": "Paul Knapp", "r": "Orchid City Council"}, {"n": "Robert J. Gibbons", "r": "Mayor of Orchid"}]}, {"m": "Sebastian", "p": [{"n": "Bob McPartlan", "r": "Sebastian City Council"}, {"n": "Christopher R. Nunn", "r": "Sebastian City Council"}, {"n": "Ed Dodd", "r": "Sebastian City Council"}, {"n": "Frederick Jones", "r": "Mayor of Sebastian"}, {"n": "Sherrie Matthews", "r": "Sebastian City Council"}]}, {"m": "Vero Beach", "p": [{"n": "Aaron Vos", "r": "Vero Beach City Council"}, {"n": "John Cotugno", "r": "Mayor of Vero Beach"}, {"n": "John M. Carroll", "r": "Vero Beach City Council"}, {"n": "Linda Moore", "r": "Vero Beach City Council"}, {"n": "Taylor Dingle", "r": "Vero Beach City Council"}]}], "slug": "indian-river"}, "12063": {"county": [{"n": "Alex McKinnie", "r": "Commissioner, Jackson County"}, {"n": "CHRISTOPHER M JOHNSON", "r": "Jackson County School Board"}, {"n": "Carol Dunaway", "r": "Supervisor of Elections, Jackson County"}, {"n": "Chephus D. Granberry", "r": "Jackson County School Board"}, {"n": "Clayton Rooks", "r": "Clerk of Court, Jackson County"}, {"n": "Donald Edenfield", "r": "Sheriff, Jackson County"}, {"n": "Edward Crutchfield", "r": "Commissioner, Jackson County"}, {"n": "James Peacock", "r": "Commissioner, Jackson County"}, {"n": "Jamey Westbrook", "r": "Commissioner, Jackson County"}, {"n": "Mary Murdock", "r": "Tax Collector, Jackson County"}, {"n": "Michael \"M.J.\" Jackson", "r": "Jackson County School Board"}, {"n": "Paul Donofro", "r": "Commissioner, Jackson County"}, {"n": "Rebecca Morris-Haid", "r": "Property Appraiser, Jackson County"}, {"n": "Rex Torbett", "r": "Jackson County School Board"}, {"n": "Tony Pumphrey", "r": "Jackson County School Board"}, {"n": "Willie Spires", "r": "Commissioner, Jackson County"}], "munis": [{"m": "Alford", "p": [{"n": "Brad Griffin", "r": "Alford City Council"}, {"n": "Daniel Warren", "r": "Alford City Council"}, {"n": "George Gay", "r": "Mayor of Alford"}, {"n": "Somer Holland", "r": "Alford City Council"}, {"n": "Stephanie Jenkins", "r": "Alford City Council"}]}, {"m": "Bascom", "p": [{"n": "Betty James", "r": "Bascom City Council"}, {"n": "Billy James", "r": "Mayor of Bascom"}, {"n": "Gernard Russ", "r": "Bascom City Council"}, {"n": "Tony Pelham", "r": "Bascom City Council"}]}, {"m": "Campbellton", "p": [{"n": "Conswellor White", "r": "Campbellton City Council"}, {"n": "Danny Taylor", "r": "Campbellton City Council"}, {"n": "Douglas Cotton", "r": "Mayor of Campbellton"}, {"n": "Kenneth Fey", "r": "Campbellton City Council"}, {"n": "Pamela Williams", "r": "Campbellton City Council"}]}, {"m": "Cottondale", "p": [{"n": "Carroll Benefield", "r": "Cottondale City Council"}, {"n": "Dennis Sloan", "r": "Cottondale City Council"}, {"n": "Jerrard Deese", "r": "Cottondale City Council"}, {"n": "Thomas T. Daniel", "r": "Cottondale City Council"}]}, {"m": "Graceville", "p": [{"n": "Arthur P.W. Obar", "r": "Mayor of Graceville"}, {"n": "Curtis Pinkard", "r": "Graceville City Council"}, {"n": "John McClendon", "r": "Graceville City Council"}, {"n": "Marshall Davis", "r": "Graceville City Council"}, {"n": "Walter Olds", "r": "Graceville City Council"}]}, {"m": "Grand Ridge", "p": [{"n": "Catelyn Sprague", "r": "Grand Ridge City Council"}, {"n": "Chris Harrell", "r": "Mayor of Grand Ridge"}, {"n": "Chris Wright", "r": "Grand Ridge City Council"}, {"n": "Kim Applewhite", "r": "Grand Ridge City Council"}, {"n": "Tim Baggett", "r": "Grand Ridge City Council"}]}, {"m": "Greenwood", "p": [{"n": "Ben Rogers", "r": "Greenwood City Council"}, {"n": "Bryan Johnson", "r": "Mayor of Greenwood"}, {"n": "Charles Sanders", "r": "Greenwood City Council"}, {"n": "Jacky Ditty", "r": "Greenwood City Council"}]}, {"m": "Jacob City", "p": [{"n": "Donna Pittman", "r": "Jacob City City Council"}, {"n": "Ernest Hall", "r": "Jacob City City Council"}, {"n": "Felix George", "r": "Mayor of Jacob City"}, {"n": "Jonitha Williams", "r": "Jacob City City Council"}, {"n": "Josephine Henderson", "r": "Jacob City City Council"}]}, {"m": "Malone", "p": [{"n": "Billy Smith", "r": "Malone City Council"}, {"n": "Brandon Watford", "r": "Mayor of Malone"}, {"n": "Florence Jackson", "r": "Malone City Council"}, {"n": "Sallie Gibson", "r": "Malone City Council"}, {"n": "Terry Taylor", "r": "Malone City Council"}]}, {"m": "Marianna", "p": [{"n": "Allen Ward", "r": "Marianna City Council"}, {"n": "Kenneth Hamilton", "r": "Marianna City Council"}, {"n": "Rick Pettis", "r": "Marianna City Council"}, {"n": "Rico Williams", "r": "Marianna City Council"}, {"n": "Travis Ephriam", "r": "Mayor of Marianna"}]}, {"m": "Sneads", "p": [{"n": "Kay Neel", "r": "Sneads City Council"}, {"n": "Mike Weeks", "r": "Sneads City Council"}, {"n": "Timothy Perry", "r": "Sneads City Council"}]}], "slug": "jackson"}, "12065": {"county": [{"n": "\"Joy Beth\" Frisby", "r": "Jefferson County School Board"}, {"n": "Angela Gray", "r": "Property Appraiser, Jefferson County"}, {"n": "Benjamin White", "r": "Commissioner, Jefferson County"}, {"n": "Bill Brumfield", "r": "Jefferson County School Board"}, {"n": "Brenda Wirick", "r": "Jefferson County School Board"}, {"n": "Cecil Hightower", "r": "Clerk of Court, Jefferson County"}, {"n": "Chris Tuten", "r": "Commissioner, Jefferson County"}, {"n": "Gene Hall", "r": "Commissioner, Jefferson County"}, {"n": "J.T. Surles", "r": "Commissioner, Jefferson County"}, {"n": "Jason Welty", "r": "Clerk of Court, Jefferson County"}, {"n": "Lois Howell-Hunter", "r": "Tax Collector, Jefferson County"}, {"n": "Mac McNeill", "r": "Sheriff, Jefferson County"}, {"n": "Mags Flynt", "r": "Jefferson County School Board"}, {"n": "Michelle Milligan", "r": "Supervisor of Elections, Jefferson County"}, {"n": "Shanna Boutwell", "r": "Tax Collector, Jefferson County"}, {"n": "Tyler McNeill", "r": "Supervisor of Elections, Jefferson County"}, {"n": "Willie Ann Dickey", "r": "Jefferson County School Board"}], "munis": [{"m": "Monticello", "p": [{"n": "Brian Bachman", "r": "Monticello City Council"}, {"n": "George Evans", "r": "Monticello City Council"}, {"n": "Gloria Cox", "r": "Monticello City Council"}, {"n": "John S. Jones", "r": "Mayor of Monticello"}]}], "slug": "jefferson"}, "12067": {"county": [{"n": "Alicia Walker", "r": "Commissioner, Lafayette County"}, {"n": "Anthony Adams", "r": "Commissioner, Lafayette County"}, {"n": "Brian Lamb", "r": "Sheriff, Lafayette County"}, {"n": "Charles Hewett", "r": "Tax Collector, Lafayette County"}, {"n": "Darren Driver", "r": "Lafayette County School Board"}, {"n": "Earnest Jones", "r": "Commissioner, Lafayette County"}, {"n": "Jeff Walker", "r": "Lafayette County School Board"}, {"n": "Kimberly Adams", "r": "Lafayette County School Board"}, {"n": "Lance Lamb", "r": "Commissioner, Lafayette County"}, {"n": "Marion McCray", "r": "Lafayette County School Board"}, {"n": "Mason Byrd", "r": "Commissioner, Lafayette County"}, {"n": "Steve Land", "r": "Clerk of Court, Lafayette County"}, {"n": "Taylor McGrew", "r": "Lafayette County School Board"}, {"n": "Timothy Walker", "r": "Property Appraiser, Lafayette County"}, {"n": "Travis Hart", "r": "Supervisor of Elections, Lafayette County"}, {"n": "Wayne McCray", "r": "Property Appraiser, Lafayette County"}], "munis": [{"m": "Mayo", "p": [{"n": "Ann Murphy", "r": "Mayor of Mayo"}, {"n": "Jessica Lawson", "r": "Mayo City Council"}, {"n": "Mamie A. Thomas", "r": "Mayo City Council"}, {"n": "Virginia McCray", "r": "Mayo City Council"}, {"n": "Wayne Hamlin", "r": "Mayo City Council"}]}], "slug": "lafayette"}, "12069": {"county": [{"n": "Alan Hays", "r": "Supervisor of Elections, Lake County"}, {"n": "Bill Mathias", "r": "Lake County School Board"}, {"n": "Carey Baker", "r": "Property Appraiser, Lake County"}, {"n": "David Jordan", "r": "Tax Collector, Lake County"}, {"n": "Gary Cooney", "r": "Clerk of Court, Lake County"}, {"n": "Kirby Smith", "r": "Commissioner, Lake County"}, {"n": "Leslie Campione", "r": "Commissioner, Lake County"}, {"n": "Marc A. Dodd", "r": "Lake County School Board"}, {"n": "Mark Jordan", "r": "Property Appraiser, Lake County"}, {"n": "Mollie R. Cunningham", "r": "Lake County School Board"}, {"n": "Peyton Grinnell", "r": "Sheriff, Lake County"}, {"n": "Sean Parks", "r": "Commissioner, Lake County"}, {"n": "Stephanie Ann Luke", "r": "Lake County School Board"}, {"n": "Tyler Brandeburg", "r": "Lake County School Board"}], "munis": [{"m": "Astatula", "p": [{"n": "Cheryl Marinelli", "r": "Astatula City Council"}, {"n": "Kay MacQueen", "r": "Astatula City Council"}, {"n": "Kim Hanawalt", "r": "Astatula City Council"}, {"n": "Susan Richert", "r": "Astatula City Council"}, {"n": "Zane Teeters", "r": "Mayor of Astatula"}]}, {"m": "Clermont", "p": [{"n": "Alison Strange", "r": "Clermont City Council"}, {"n": "Bryan L. Bain", "r": "Clermont City Council"}, {"n": "Chandra L. Myers", "r": "Clermont City Council"}, {"n": "Tim Murry", "r": "Mayor of Clermont"}, {"n": "William Petersen", "r": "Clermont City Council"}]}, {"m": "Eustis", "p": [{"n": "Emily A. Lee", "r": "Mayor of Eustis"}, {"n": "Gary Ashcraft", "r": "Eustis City Council"}, {"n": "George Asbate", "r": "Eustis City Council"}, {"n": "Michael Holland", "r": "Eustis City Council"}, {"n": "Willie Hawkins", "r": "Eustis City Council"}]}, {"m": "Fruitland Park", "p": [{"n": "Christopher Cheshire", "r": "Mayor of Fruitland Park"}, {"n": "Christopher J. Bell", "r": "Fruitland Park City Council"}, {"n": "John Mobilian", "r": "Fruitland Park City Council"}, {"n": "Joseph Cosenza", "r": "Fruitland Park City Council"}, {"n": "Patrick DeGrave", "r": "Fruitland Park City Council"}]}, {"m": "Groveland", "p": [{"n": "Amy Jo Carroll", "r": "Groveland City Council"}, {"n": "Barbara Gaines", "r": "Groveland City Council"}, {"n": "Keith Keogh", "r": "Mayor of Groveland"}, {"n": "Michael Jaycox", "r": "Groveland City Council"}, {"n": "Stephen Shylkohski", "r": "Groveland City Council"}]}, {"m": "Howey-in-the-Hills", "p": [{"n": "David Miles", "r": "Howey-in-the-Hills City Council"}, {"n": "Graham Wells", "r": "Mayor of Howey-in-the-Hills"}, {"n": "Jonathan Arnold", "r": "Howey-in-the-Hills City Council"}, {"n": "Reneé Lannaman", "r": "Howey-in-the-Hills City Council"}, {"n": "Timothy Everline", "r": "Howey-in-the-Hills City Council"}]}, {"m": "Lady Lake", "p": [{"n": "Ed Freeman", "r": "Mayor of Lady Lake"}, {"n": "Ed Regan", "r": "Lady Lake City Council"}, {"n": "John Gourlie", "r": "Lady Lake City Council"}, {"n": "Mike Sage", "r": "Lady Lake City Council"}, {"n": "Treva Roberts", "r": "Lady Lake City Council"}]}, {"m": "Leesburg", "p": [{"n": "Alan Reisman", "r": "Leesburg City Council"}, {"n": "Allyson Berry", "r": "Mayor of Leesburg"}, {"n": "Jay Connell", "r": "Leesburg City Council"}, {"n": "Jimmy Burry", "r": "Leesburg City Council"}, {"n": "Michael Pederson", "r": "Leesburg City Council"}]}, {"m": "Mascotte", "p": [{"n": "Jessica Bruno", "r": "Mascotte City Council"}, {"n": "Meghan DeSoto", "r": "Mascotte City Council"}, {"n": "Randy Brasher", "r": "Mascotte City Council"}, {"n": "Robin Hughes", "r": "Mascotte City Council"}, {"n": "Steven A. Sheffield", "r": "Mayor of Mascotte"}]}, {"m": "Minneola", "p": [{"n": "Debbie Flinn", "r": "Minneola City Council"}, {"n": "Erick Hernandez", "r": "Minneola City Council"}, {"n": "Joseph Saunders", "r": "Minneola City Council"}, {"n": "Pam Serviss", "r": "Minneola City Council"}, {"n": "Pat Kelley", "r": "Mayor of Minneola"}]}, {"m": "Montverde", "p": [{"n": "Bryan Rubio", "r": "Montverde City Council"}, {"n": "Grant Roberts", "r": "Montverde City Council"}, {"n": "Joe Morganelli", "r": "Montverde City Council"}, {"n": "Joe Wynkoop", "r": "Mayor of Montverde"}]}, {"m": "Mount Dora", "p": [{"n": "Cal Rolfson", "r": "Mount Dora City Council"}, {"n": "Dennis Dawson", "r": "Mount Dora City Council"}, {"n": "Doug Bryant", "r": "Mount Dora City Council"}, {"n": "James L. Homich", "r": "Mayor of Mount Dora"}, {"n": "John Cataldo", "r": "Mount Dora City Council"}, {"n": "Marc Crail", "r": "Mount Dora City Council"}, {"n": "Nate Walker", "r": "Mount Dora City Council"}]}, {"m": "Tavares", "p": [{"n": "Bob Grenier", "r": "Tavares City Council"}, {"n": "Doug Keown", "r": "Tavares City Council"}, {"n": "Lori Pfister", "r": "Mayor of Tavares"}, {"n": "Sandy Gamble", "r": "Tavares City Council"}, {"n": "Walter B. Price", "r": "Tavares City Council"}]}, {"m": "Umatilla", "p": [{"n": "Bear Crockett", "r": "Umatilla City Council"}, {"n": "Chris Creech", "r": "Mayor of Umatilla"}, {"n": "Fred Fetterolf", "r": "Umatilla City Council"}, {"n": "Katherine L. Adams", "r": "Umatilla City Council"}]}], "slug": "lake"}, "12071": {"county": [{"n": "Armor Persons", "r": "Lee County School Board"}, {"n": "Bill Ribble", "r": "Lee County School Board"}, {"n": "Brian Hamman", "r": "Commissioner, Lee County"}, {"n": "Carmine Marceno", "r": "Sheriff, Lee County"}, {"n": "Cecil Pendergrass", "r": "Commissioner, Lee County"}, {"n": "David Mulicka", "r": "Commissioner, Lee County"}, {"n": "Debbie Jordan", "r": "Lee County School Board"}, {"n": "Jada Langford Fleming", "r": "Lee County School Board"}, {"n": "Kenneth Wilkinson", "r": "Property Appraiser, Lee County"}, {"n": "Kevin Karnes", "r": "Clerk of Court, Lee County"}, {"n": "Kevin Ruane", "r": "Commissioner, Lee County"}, {"n": "Larry Hart", "r": "Tax Collector, Lee County"}, {"n": "Matt Caldwell", "r": "Property Appraiser, Lee County"}, {"n": "Melisa W Giovannelli", "r": "Lee County School Board"}, {"n": "Michael Greenwell", "r": "Commissioner, Lee County"}, {"n": "Noelle Branning", "r": "Tax Collector, Lee County"}, {"n": "Raymond Sandelli", "r": "Commissioner, Lee County"}, {"n": "Sam Fisher", "r": "Lee County School Board"}, {"n": "Tommy Doyle", "r": "Supervisor of Elections, Lee County"}, {"n": "Vanessa Chaviano", "r": "Lee County School Board"}], "munis": [{"m": "Bonita Springs", "p": [{"n": "Chris Corrie", "r": "Bonita Springs City Council"}, {"n": "Jamie Bogacz", "r": "Bonita Springs City Council"}, {"n": "Jesse Purdon", "r": "Bonita Springs City Council"}, {"n": "Jim Fitzpatrick", "r": "Bonita Springs City Council"}, {"n": "Laura Carr", "r": "Bonita Springs City Council"}, {"n": "Mike Gibson", "r": "Mayor of Bonita Springs"}, {"n": "Nigel P. Fullick", "r": "Bonita Springs City Council"}]}, {"m": "Cape Coral", "p": [{"n": "Bill Steinke", "r": "Cape Coral City Council"}, {"n": "Derrick L. Donnell", "r": "Cape Coral City Council"}, {"n": "Jennifer Nelson-Lastra", "r": "Cape Coral City Council"}, {"n": "Joe Kilraine", "r": "Cape Coral City Council"}, {"n": "John Gunter", "r": "Mayor of Cape Coral"}, {"n": "Keith Long", "r": "Cape Coral City Council"}, {"n": "Laurie Lehmann", "r": "Cape Coral City Council"}, {"n": "Rachel Kaduk", "r": "Cape Coral City Council"}]}, {"m": "Fort Myers", "p": [{"n": "Darla Bonk", "r": "Fort Myers City Council"}, {"n": "Diana Giraldo", "r": "Fort Myers City Council"}, {"n": "Fred Burson", "r": "Fort Myers City Council"}, {"n": "Kevin B. Anderson", "r": "Mayor of Fort Myers"}, {"n": "Liston D. Bochette", "r": "Fort Myers City Council"}, {"n": "Teresa Watkins Brown", "r": "Fort Myers City Council"}]}, {"m": "Fort Myers Beach", "p": [{"n": "Daniel Allers", "r": "Mayor of Fort Myers Beach"}, {"n": "Jim Atterholt", "r": "Fort Myers Beach City Council"}, {"n": "John McLean", "r": "Fort Myers Beach City Council"}, {"n": "John R. King", "r": "Fort Myers Beach City Council"}, {"n": "Rebecca Link", "r": "Fort Myers Beach City Council"}]}, {"m": "Sanibel", "p": [{"n": "Holly D. Smith", "r": "Sanibel City Council"}, {"n": "Holly D. Smith", "r": "Sanibel City Council"}, {"n": "John Henshaw", "r": "Sanibel City Council"}, {"n": "Michael Miller", "r": "Mayor of Sanibel"}, {"n": "Richard Johnson", "r": "Sanibel City Council"}]}], "slug": "lee"}, "12073": {"county": [{"n": "Akin Akinyemi", "r": "Property Appraiser, Leon County"}, {"n": "Alva Swafford Smith", "r": "Leon County School Board - District 1"}, {"n": "Alva Swafford Striplin", "r": "Leon County School Board"}, {"n": "Brian Welch", "r": "Commissioner, Leon County"}, {"n": "Carolyn Cummings", "r": "Commissioner, Leon County"}, {"n": "Christian Caban", "r": "Commissioner, Leon County"}, {"n": "Darryl Jones", "r": "Leon County School Board"}, {"n": "Darryl Jones", "r": "Leon County School Board - Vice Chair, District 3"}, {"n": "David O'Keefe", "r": "Commissioner, Leon County"}, {"n": "Doris Maloy", "r": "Tax Collector, Leon County"}, {"n": "Dr. Marcus Nicolas", "r": "Leon County School Board - Chair, District 5"}, {"n": "Gwen Marshall Knight", "r": "Clerk of Court, Leon County"}, {"n": "Laurie Lawson Cox", "r": "Leon County School Board"}, {"n": "Laurie Lawson Cox", "r": "Leon County School Board - District 4"}, {"n": "Marcus Bernard Nicolas", "r": "Leon County School Board"}, {"n": "Mark Earley", "r": "Supervisor of Elections, Leon County"}, {"n": "Nick Maddox", "r": "Commissioner, Leon County"}, {"n": "Rick Minor", "r": "Commissioner, Leon County"}, {"n": "Rosanne Wood", "r": "Leon County School Board"}, {"n": "Rosanne Wood", "r": "Leon County School Board - District 2"}, {"n": "Walt McNeil", "r": "Sheriff, Leon County"}, {"n": "William Proctor", "r": "Commissioner, Leon County"}], "munis": [{"m": "Tallahassee", "p": [{"n": "Curtis B. Richardson", "r": "Tallahassee City Council"}, {"n": "Dianne Williams-Cox", "r": "Tallahassee City Council"}, {"n": "Jacqueline Porter", "r": "Tallahassee City Council"}, {"n": "Jeremy Matlow", "r": "Tallahassee City Council"}, {"n": "John E. Dailey", "r": "Mayor of Tallahassee"}]}], "slug": "leon"}, "12075": {"county": [{"n": "Ashley Breeden Clemenzi", "r": "Levy County School Board"}, {"n": "Bobby McCallum", "r": "Sheriff, Levy County"}, {"n": "Cameron Asbell", "r": "Levy County School Board"}, {"n": "Danny Shipp", "r": "Clerk of Court, Levy County"}, {"n": "Desiree Mills", "r": "Commissioner, Levy County"}, {"n": "Devin Whitehurst", "r": "Levy County School Board"}, {"n": "John Meeks", "r": "Commissioner, Levy County"}, {"n": "Johnny Hiers", "r": "Commissioner, Levy County"}, {"n": "Linda Campbell", "r": "Levy County School Board"}, {"n": "Lisa Quincey Baxter", "r": "Levy County School Board"}, {"n": "Matt Brooks", "r": "Clerk of Court, Levy County"}, {"n": "Michele Langford", "r": "Tax Collector, Levy County"}, {"n": "Russell Meeks", "r": "Commissioner, Levy County"}, {"n": "Tammy Jones", "r": "Supervisor of Elections, Levy County"}, {"n": "Tim Hodge", "r": "Commissioner, Levy County"}], "munis": [{"m": "Bronson", "p": [{"n": "Bruce A. Greenlee", "r": "Mayor of Bronson"}, {"n": "Franklin Schuler", "r": "Bronson City Council"}, {"n": "Rachel Weeks", "r": "Bronson City Council"}, {"n": "Reggie Stacy", "r": "Bronson City Council"}, {"n": "Virginia Phillips", "r": "Bronson City Council"}]}, {"m": "Cedar Key", "p": [{"n": "Dell Weible", "r": "Cedar Key City Council"}, {"n": "Jim Wortham", "r": "Mayor of Cedar Key"}, {"n": "Jolie Davis", "r": "Cedar Key City Council"}, {"n": "Mel Beckham", "r": "Cedar Key City Council"}, {"n": "Nancy Sera", "r": "Cedar Key City Council"}]}, {"m": "Chiefland", "p": [{"n": "Chris Jones", "r": "Chiefland City Council"}, {"n": "Kim Bennett", "r": "Chiefland City Council"}, {"n": "LaWanda Jones", "r": "Chiefland City Council"}, {"n": "Lewrissa Johns", "r": "Mayor of Chiefland"}, {"n": "Norman Weaver", "r": "Chiefland City Council"}]}, {"m": "Fanning Springs", "p": [{"n": "Barry Cannon", "r": "Fanning Springs City Council"}, {"n": "Howell E. Lancaster", "r": "Mayor of Fanning Springs"}, {"n": "Jonathan Smith", "r": "Fanning Springs City Council"}, {"n": "Matthew Lunsford", "r": "Fanning Springs City Council"}, {"n": "Wanda Michaud", "r": "Fanning Springs City Council"}]}, {"m": "Inglis", "p": [{"n": "Coley Robinson", "r": "Inglis City Council"}, {"n": "Daryl Lynaugh", "r": "Inglis City Council"}, {"n": "Deborah LaClair", "r": "Inglis City Council"}, {"n": "Isaac Young", "r": "Mayor of Inglis"}, {"n": "Mike Ahern", "r": "Inglis City Council"}]}, {"m": "Otter Creek", "p": [{"n": "Don Severino", "r": "Otter Creek City Council"}, {"n": "Russell Meeks", "r": "Otter Creek City Council"}, {"n": "Sonya Gail Lamb", "r": "Otter Creek City Council"}, {"n": "Therese Granger", "r": "Mayor of Otter Creek"}, {"n": "Zim Padgett", "r": "Otter Creek City Council"}]}, {"m": "Williston", "p": [{"n": "Charles Goodman", "r": "Mayor of Williston"}, {"n": "Darfeness Hinds", "r": "Williston City Council"}, {"n": "Debra F. Jones", "r": "Williston City Council"}, {"n": "Meredith Martin", "r": "Williston City Council"}, {"n": "Michael Cox", "r": "Williston City Council"}, {"n": "Shanna Church", "r": "Williston City Council"}]}, {"m": "Yankeetown", "p": [{"n": "Bob Terrian", "r": "Yankeetown City Council"}, {"n": "Laurence Vorisek", "r": "Mayor of Yankeetown"}, {"n": "Tim Ecker", "r": "Yankeetown City Council"}]}], "slug": "levy"}, "12077": {"county": [{"n": "Buddy Money", "r": "Sheriff, Liberty County"}, {"n": "Charles \"Boo\" Morris", "r": "Liberty County School Board"}, {"n": "Chris Rudd", "r": "Property Appraiser, Liberty County"}, {"n": "Cindy Walker", "r": "Property Appraiser, Liberty County"}, {"n": "Daniel Stanley", "r": "Clerk of Court, Liberty County"}, {"n": "Darrel \"Doobie\" Hayes", "r": "Liberty County School Board"}, {"n": "Derrick Arnold", "r": "Commissioner, Liberty County"}, {"n": "Dewayne Branch", "r": "Commissioner, Liberty County"}, {"n": "Doyle Brown", "r": "Commissioner, Liberty County"}, {"n": "Grant Conyers", "r": "Supervisor of Elections, Liberty County"}, {"n": "Hannah Sumner Causseaux", "r": "Commissioner, Liberty County"}, {"n": "Jace Ford", "r": "Clerk of Court, Liberty County"}, {"n": "Jason Singletary", "r": "Liberty County School Board"}, {"n": "Jim Johnson", "r": "Commissioner, Liberty County"}, {"n": "Jodi Lindsey Bailey", "r": "Liberty County School Board"}, {"n": "Marie Goodman", "r": "Tax Collector, Liberty County"}, {"n": "Mason Kever", "r": "Liberty County School Board"}, {"n": "Robert Arnold", "r": "Sheriff, Liberty County"}, {"n": "Scott Phillips", "r": "Commissioner, Liberty County"}], "munis": [{"m": "Bristol", "p": [{"n": "James P. Kersey", "r": "Mayor of Bristol"}, {"n": "Mary Jennifer Hudgins", "r": "Bristol City Council"}, {"n": "Mattie Janie Boyd", "r": "Bristol City Council"}, {"n": "Micah McCaskill", "r": "Bristol City Council"}, {"n": "Thomas Rankin", "r": "Bristol City Council"}]}], "slug": "liberty"}, "12079": {"county": [{"n": "Alfred Martin", "r": "Commissioner, Madison County"}, {"n": "Alston Kelley", "r": "Commissioner, Madison County"}, {"n": "Benjamin Stewart", "r": "Sheriff, Madison County"}, {"n": "Brian Williams", "r": "Commissioner, Madison County"}, {"n": "Carol Gibson", "r": "Madison County School Board"}, {"n": "David Harper", "r": "Sheriff, Madison County"}, {"n": "Devin K Thompson", "r": "Madison County School Board"}, {"n": "Donnie Waldrep", "r": "Commissioner, Madison County"}, {"n": "Frankie Carroll", "r": "Madison County School Board"}, {"n": "Heath Driggers", "r": "Supervisor of Elections, Madison County"}, {"n": "Jane Barfield", "r": "Property Appraiser, Madison County"}, {"n": "Katie Knight", "r": "Madison County School Board"}, {"n": "Lisa Tuten", "r": "Tax Collector, Madison County"}, {"n": "Marie Smith", "r": "Property Appraiser, Madison County"}, {"n": "Rick Davis", "r": "Commissioner, Madison County"}, {"n": "Robin Hart", "r": "Tax Collector, Madison County"}, {"n": "Ronnie Moore", "r": "Commissioner, Madison County"}, {"n": "Ronnie Moore", "r": "Commissioner, Madison County"}, {"n": "VeEtta L Hagan", "r": "Madison County School Board"}, {"n": "William Washington", "r": "Clerk of Court, Madison County"}], "munis": [{"m": "Greenville", "p": [{"n": "Barbara Dansey", "r": "Greenville City Council"}, {"n": "Brittni Brown", "r": "Greenville City Council"}, {"n": "Carl Livingston", "r": "Greenville City Council"}, {"n": "Chiquila Pleas", "r": "Greenville City Council"}, {"n": "Ryan Kornegay", "r": "Mayor of Greenville"}]}, {"m": "Lee", "p": [{"n": "Cindy Thomas", "r": "Lee City Council"}, {"n": "Edwin McMullen", "r": "Lee City Council"}, {"n": "James Ruzicka", "r": "Mayor of Lee"}, {"n": "Ken Szostek", "r": "Lee City Council"}, {"n": "Lloyd Burke", "r": "Lee City Council"}, {"n": "Ronnie Bass", "r": "Lee City Council"}]}, {"m": "Madison", "p": [{"n": "Craig Anderson", "r": "Madison City Council"}, {"n": "Jamarien Moore", "r": "Mayor of Madison"}, {"n": "Rene Alexander", "r": "Madison City Council"}, {"n": "Terry Martin", "r": "Madison City Council"}, {"n": "Voncyle Wilson", "r": "Madison City Council"}]}], "slug": "madison"}, "12081": {"county": [{"n": "Amanda Ballard", "r": "Commissioner, Manatee County"}, {"n": "Angelina Colonneso", "r": "Clerk of Court, Manatee County"}, {"n": "Chad Choate", "r": "Manatee County School Board"}, {"n": "Charles Hackney", "r": "Property Appraiser, Manatee County"}, {"n": "Charlie Kennedy", "r": "Manatee County School Board"}, {"n": "Cindy L Spray", "r": "Manatee County School Board"}, {"n": "George Kruse", "r": "Commissioner, Manatee County"}, {"n": "James Satcher", "r": "Supervisor of Elections, Manatee County"}, {"n": "Jason Bearden", "r": "Commissioner, Manatee County"}, {"n": "Ken Burton", "r": "Tax Collector, Manatee County"}, {"n": "Kevin Van Ostenbridge", "r": "Commissioner, Manatee County"}, {"n": "Mike Rahn", "r": "Commissioner, Manatee County"}, {"n": "Raymond Turner", "r": "Commissioner, Manatee County"}, {"n": "Richard Tatem", "r": "Manatee County School Board"}, {"n": "Rick Wells", "r": "Sheriff, Manatee County"}, {"n": "Scott Farrington", "r": "Supervisor of Elections, Manatee County"}], "munis": [{"m": "Anna Maria", "p": [{"n": "Charles Salem", "r": "Anna Maria City Council"}, {"n": "Chris Arendt", "r": "Anna Maria City Council"}, {"n": "Gary McMullen", "r": "Anna Maria City Council"}, {"n": "John Lynch", "r": "Anna Maria City Council"}, {"n": "Kathy Morgan-Johnson", "r": "Anna Maria City Council"}, {"n": "Mark Short", "r": "Mayor of Anna Maria"}]}, {"m": "Bradenton", "p": [{"n": "Gene Brown", "r": "Mayor of Bradenton"}, {"n": "Jayne Kocher", "r": "Bradenton City Council"}, {"n": "Kemp Schuessler", "r": "Bradenton City Council"}, {"n": "Lisa Gonzalez Moore", "r": "Bradenton City Council"}, {"n": "Marianne A. Barnebey", "r": "Bradenton City Council"}, {"n": "Pamela Coachman", "r": "Bradenton City Council"}]}, {"m": "Bradenton Beach", "p": [{"n": "Deborah M. Scaccianoce", "r": "Bradenton Beach City Council"}, {"n": "John Chappie", "r": "Mayor of Bradenton Beach"}, {"n": "Ralph Cole", "r": "Bradenton Beach City Council"}, {"n": "Scott Bear", "r": "Bradenton Beach City Council"}]}, {"m": "Holmes Beach", "p": [{"n": "Dan Diggins", "r": "Holmes Beach City Council"}, {"n": "Jessica Patel", "r": "Holmes Beach City Council"}, {"n": "Judy Titsworth", "r": "Mayor of Holmes Beach"}, {"n": "Steve Oelfke", "r": "Holmes Beach City Council"}, {"n": "Terry W. Schaefer", "r": "Holmes Beach City Council"}]}, {"m": "Palmetto", "p": [{"n": "Brian T. Williams", "r": "Palmetto City Council"}, {"n": "Daniel West", "r": "Mayor of Palmetto"}, {"n": "Harold Smith", "r": "Palmetto City Council"}, {"n": "Scott Whitaker", "r": "Palmetto City Council"}, {"n": "Sunshine Joiner", "r": "Palmetto City Council"}, {"n": "Tamara Cornwell", "r": "Palmetto City Council"}]}], "slug": "manatee"}, "12083": {"county": [{"n": "Allison B. Campbell", "r": "Marion County School Board"}, {"n": "Carl Zalak", "r": "Commissioner, Marion County"}, {"n": "Craig Curry", "r": "Commissioner, Marion County"}, {"n": "David Ellspermann", "r": "Clerk of Court, Marion County"}, {"n": "George Albright", "r": "Tax Collector, Marion County"}, {"n": "Greg Harrell", "r": "Clerk of Court, Marion County"}, {"n": "Jimmy Cowan", "r": "Property Appraiser, Marion County"}, {"n": "Kathy Bryant", "r": "Commissioner, Marion County"}, {"n": "Lori Conrad", "r": "Marion County School Board"}, {"n": "Matthew McClain", "r": "Commissioner, Marion County"}, {"n": "Michelle Stone", "r": "Commissioner, Marion County"}, {"n": "Nancy Thrower", "r": "Marion County School Board"}, {"n": "Sarah James", "r": "Marion County School Board"}, {"n": "Villie Smith", "r": "Property Appraiser, Marion County"}, {"n": "Wesley Wilcox", "r": "Supervisor of Elections, Marion County"}, {"n": "William Woods", "r": "Sheriff, Marion County"}], "munis": [{"m": "Belleview", "p": [{"n": "Christine Dobkowski", "r": "Mayor of Belleview"}, {"n": "Michael J. Goldman", "r": "Belleview City Council"}, {"n": "Ray Dwyer", "r": "Belleview City Council"}, {"n": "Robert Smith", "r": "Belleview City Council"}, {"n": "Ron T. Livsey", "r": "Belleview City Council"}]}, {"m": "Dunnellon", "p": [{"n": "Reese Taschenberger", "r": "Dunnellon City Council"}, {"n": "Rex Lehmann", "r": "Dunnellon City Council"}, {"n": "Tim Inskeep", "r": "Dunnellon City Council"}, {"n": "Valerie Hanchar", "r": "Dunnellon City Council"}, {"n": "Walter Green", "r": "Mayor of Dunnellon"}]}, {"m": "McIntosh", "p": [{"n": "Alison Scott", "r": "Mayor of McIntosh"}, {"n": "Donald Medeiros", "r": "McIntosh City Council"}, {"n": "Frank Ciotti", "r": "McIntosh City Council"}, {"n": "Lee Deaderick", "r": "McIntosh City Council"}, {"n": "Melinda Jones", "r": "McIntosh City Council"}, {"n": "Scott Mullikin", "r": "McIntosh City Council"}]}, {"m": "Ocala", "p": [{"n": "Barry Mansfield", "r": "Ocala City Council"}, {"n": "Ben Marciano", "r": "Mayor of Ocala"}, {"n": "Ire J. Bethea", "r": "Ocala City Council"}, {"n": "James Hilty", "r": "Ocala City Council"}, {"n": "Jay Musleh", "r": "Ocala City Council"}, {"n": "Kristen M. Dreyer", "r": "Ocala City Council"}]}, {"m": "Reddick", "p": [{"n": "Andrea Barnes", "r": "Reddick City Council"}, {"n": "Myra Sherman", "r": "Mayor of Reddick"}, {"n": "Nadine Stokes", "r": "Reddick City Council"}, {"n": "Shirley Youmans", "r": "Reddick City Council"}]}], "slug": "marion"}, "12085": {"county": [{"n": "Amy Pritchett", "r": "Martin County School Board"}, {"n": "Brian Michael Moriarty", "r": "Martin County School Board"}, {"n": "Carolyn Timmann", "r": "Clerk of Court, Martin County"}, {"n": "Christia Li Roberts", "r": "Martin County School Board"}, {"n": "Doug Smith", "r": "Commissioner, Martin County"}, {"n": "Edward Ciampi", "r": "Commissioner, Martin County"}, {"n": "Harold Jenkins", "r": "Commissioner, Martin County"}, {"n": "Jennifer Russell", "r": "Martin County School Board"}, {"n": "Jenny Fields", "r": "Property Appraiser, Martin County"}, {"n": "John Budensiek", "r": "Sheriff, Martin County"}, {"n": "Laurel Kelly", "r": "Property Appraiser, Martin County"}, {"n": "Marsha Powers", "r": "Martin County School Board"}, {"n": "Ruth Pietruszewski", "r": "Tax Collector, Martin County"}, {"n": "Sarah Heard", "r": "Commissioner, Martin County"}, {"n": "Stacey Hetherington", "r": "Commissioner, Martin County"}, {"n": "Vicki Davis", "r": "Supervisor of Elections, Martin County"}, {"n": "William Snyder", "r": "Sheriff, Martin County"}], "munis": [{"m": "Jupiter Island", "p": [{"n": "Anne Scott", "r": "Jupiter Island City Council"}, {"n": "Joseph Taddeo", "r": "Jupiter Island City Council"}, {"n": "Marshall Field", "r": "Jupiter Island City Council"}, {"n": "Patricia Warner", "r": "Jupiter Island City Council"}, {"n": "Penny Townsend", "r": "Mayor of Jupiter Island"}]}, {"m": "Ocean Breeze", "p": [{"n": "Gail Balogna", "r": "Ocean Breeze City Council"}, {"n": "George Ciaschi", "r": "Ocean Breeze City Council"}, {"n": "Janet Galante", "r": "Ocean Breeze City Council"}, {"n": "Karen M. Ostrand", "r": "Mayor of Ocean Breeze"}, {"n": "Kevin Docherty", "r": "Ocean Breeze City Council"}, {"n": "Margaret Pugsley", "r": "Ocean Breeze City Council"}, {"n": "Sandy Keblbeck-Kelley", "r": "Ocean Breeze City Council"}]}, {"m": "Sewall's Point", "p": [{"n": "David Kurzman", "r": "Sewall's Point City Council"}, {"n": "Frank Fender", "r": "Sewall's Point City Council"}, {"n": "Frank Tidikis", "r": "Sewall's Point City Council"}, {"n": "Kaija Mayfield", "r": "Sewall's Point City Council"}, {"n": "Vincent N. Barile", "r": "Mayor of Sewall's Point"}]}, {"m": "Stuart", "p": [{"n": "Campbell Rich", "r": "Stuart City Council"}, {"n": "Eula R. Clarke", "r": "Stuart City Council"}, {"n": "Laura Giobbi", "r": "Stuart City Council"}, {"n": "Sean Reed", "r": "Stuart City Council"}]}], "slug": "martin"}, "12086": {"county": [{"n": "Alina Garcia", "r": "Supervisor of Elections, Miami-Dade County"}, {"n": "Anthony Rodriguez", "r": "Commissioner, Miami-Dade County"}, {"n": "Christina White", "r": "Supervisor of Elections, Miami-Dade County"}, {"n": "Danielle Higgins", "r": "Commissioner, Miami-Dade County"}, {"n": "Danny Espino", "r": "Miami-Dade County School Board"}, {"n": "Dariel Fernandez", "r": "Tax Collector, Miami-Dade County"}, {"n": "Dorothy Bendross-Mindingall", "r": "Miami-Dade County School Board"}, {"n": "Eileen Higgins", "r": "Commissioner, Miami-Dade County"}, {"n": "Joseph \"Joe\" Geller", "r": "Miami-Dade County School Board"}, {"n": "Juan Bermudez", "r": "Commissioner, Miami-Dade County"}, {"n": "Keon Hardemon", "r": "Commissioner, Miami-Dade County"}, {"n": "Kevin Cabrera", "r": "Commissioner, Miami-Dade County"}, {"n": "Kionne McGhee", "r": "Commissioner, Miami-Dade County"}, {"n": "Luisa Santos", "r": "Miami-Dade County School Board"}, {"n": "Marleine Bastien", "r": "Commissioner, Miami-Dade County"}, {"n": "Mary Blanco", "r": "Miami-Dade County School Board"}, {"n": "Micky Steinberg", "r": "Commissioner, Miami-Dade County"}, {"n": "Monica Colucci", "r": "Miami-Dade County School Board"}, {"n": "Oliver Gilbert", "r": "Commissioner, Miami-Dade County"}, {"n": "Pedro Garcia", "r": "Property Appraiser, Miami-Dade County"}, {"n": "Peter Cam", "r": "Tax Collector, Miami-Dade County"}, {"n": "Raquel Regalado", "r": "Commissioner, Miami-Dade County"}, {"n": "Rene Garcia", "r": "Commissioner, Miami-Dade County"}, {"n": "Roberto Gonzalez", "r": "Commissioner, Miami-Dade County"}, {"n": "Roberto J. Alonso", "r": "Miami-Dade County School Board"}, {"n": "Rosanna Cordero-Stutz", "r": "Sheriff, Miami-Dade County"}, {"n": "Steve Gallon III", "r": "Miami-Dade County School Board"}], "munis": [{"m": "Aventura", "p": [{"n": "Amit Bloom", "r": "Aventura City Council"}, {"n": "Cindy Orlinsky", "r": "Aventura City Council"}, {"n": "Clifford B. Ain", "r": "Aventura City Council"}, {"n": "Gustavo Blachman", "r": "Aventura City Council"}, {"n": "Howard S. Weinberg", "r": "Mayor of Aventura"}, {"n": "Paul A. Kruss", "r": "Aventura City Council"}, {"n": "Rachel S. Friedland", "r": "Aventura City Council"}]}, {"m": "Bal Harbour", "p": [{"n": "Buzzy Sklar", "r": "Bal Harbour City Council"}, {"n": "David Wolf", "r": "Bal Harbour City Council"}, {"n": "Jeffrey Freimark", "r": "Bal Harbour City Council"}, {"n": "Seth E. Salver", "r": "Mayor of Bal Harbour"}]}, {"m": "Bay Harbor Islands", "p": [{"n": "Elchonon Shagalov", "r": "Bay Harbor Islands City Council"}, {"n": "Eric Rappaport", "r": "Bay Harbor Islands City Council"}, {"n": "Isaac Salver", "r": "Mayor of Bay Harbor Islands"}, {"n": "Joshua D. Fuller", "r": "Bay Harbor Islands City Council"}, {"n": "Molly Diallo", "r": "Bay Harbor Islands City Council"}, {"n": "Robert H. Yaffe", "r": "Bay Harbor Islands City Council"}, {"n": "Stephanie Bruder", "r": "Bay Harbor Islands City Council"}]}, {"m": "Biscayne Park", "p": [{"n": "Art Gonzalez", "r": "Biscayne Park City Council"}, {"n": "Dan Samaria", "r": "Biscayne Park City Council"}, {"n": "Jonathan Groth", "r": "Mayor of Biscayne Park"}, {"n": "Ryan Huntington", "r": "Biscayne Park City Council"}, {"n": "Veronica Amsler", "r": "Biscayne Park City Council"}]}, {"m": "Coral Gables", "p": [{"n": "Ariel Fernandez", "r": "Coral Gables City Council"}, {"n": "Melissa Castro", "r": "Coral Gables City Council"}, {"n": "Rhonda Anderson", "r": "Coral Gables City Council"}, {"n": "Richard D. Lara", "r": "Coral Gables City Council"}, {"n": "Vince Lago", "r": "Mayor of Coral Gables"}]}, {"m": "Cutler Bay", "p": [{"n": "Michael P. Callahan", "r": "Cutler Bay City Council"}, {"n": "Richard Ramirez", "r": "Cutler Bay City Council"}, {"n": "Robert 'BJ' Duncan", "r": "Cutler Bay City Council"}, {"n": "Suzy Lord", "r": "Cutler Bay City Council"}, {"n": "Timothy J. Meerbott", "r": "Mayor of Cutler Bay"}]}, {"m": "Doral", "p": [{"n": "Christi Fraga", "r": "Mayor of Doral"}, {"n": "Digna Cabral", "r": "Doral City Council"}, {"n": "Maureen Porras", "r": "Doral City Council"}, {"n": "Nicole Reinoso", "r": "Doral City Council"}, {"n": "Rafael Pineyro", "r": "Doral City Council"}]}, {"m": "El Portal", "p": [{"n": "Anders Urbom", "r": "El Portal City Council"}, {"n": "Anna E. Lightfoot-Ward", "r": "El Portal City Council"}, {"n": "Charles Winters", "r": "El Portal City Council"}, {"n": "Darian Martin", "r": "El Portal City Council"}, {"n": "Omarr C. Nickerson", "r": "Mayor of El Portal"}]}, {"m": "Florida City", "p": [{"n": "Charlotte Thompson", "r": "Mayor of Florida City"}, {"n": "James Gold", "r": "Florida City City Council"}, {"n": "Richard Brown", "r": "Florida City City Council"}, {"n": "Ronda Yvette Cobb", "r": "Florida City City Council"}, {"n": "Trina Wilborn", "r": "Florida City City Council"}]}, {"m": "Golden Beach", "p": [{"n": "Bernard Einstein", "r": "Golden Beach City Council"}, {"n": "Glenn Singer", "r": "Mayor of Golden Beach"}, {"n": "Jessie Mendal", "r": "Golden Beach City Council"}, {"n": "Judy Lusskin", "r": "Golden Beach City Council"}, {"n": "Kenneth Bernstein", "r": "Golden Beach City Council"}]}, {"m": "Hialeah", "p": [{"n": "Bryan Calvo", "r": "Mayor of Hialeah"}, {"n": "Carl Zogby", "r": "Hialeah City Council"}, {"n": "Gelien Perez", "r": "Hialeah City Council"}, {"n": "Luis Rodriguez", "r": "Hialeah City Council"}, {"n": "Melinda De La Vega", "r": "Hialeah City Council"}, {"n": "Monica Perez", "r": "Hialeah City Council"}, {"n": "William Marrero", "r": "Hialeah City Council"}]}, {"m": "Hialeah Gardens", "p": [{"n": "Elmo L. Urra", "r": "Hialeah Gardens City Council"}, {"n": "Jorge A. Merida", "r": "Hialeah Gardens City Council"}, {"n": "Jorge Gutierrez", "r": "Hialeah Gardens City Council"}, {"n": "Luciano Garcia", "r": "Hialeah Gardens City Council"}, {"n": "Rolando Piña", "r": "Hialeah Gardens City Council"}, {"n": "Yioset De La Cruz", "r": "Mayor of Hialeah Gardens"}]}, {"m": "Homestead", "p": [{"n": "Clemente Canabal", "r": "Homestead City Council"}, {"n": "Erica G. Àvila", "r": "Homestead City Council"}, {"n": "Jenifer N. Bailey", "r": "Homestead City Council"}, {"n": "Kimberly Konsky", "r": "Homestead City Council"}, {"n": "Larry Roth", "r": "Homestead City Council"}, {"n": "Sean L. Fletcher", "r": "Homestead City Council"}, {"n": "Steven D. Losner", "r": "Mayor of Homestead"}]}, {"m": "Indian Creek", "p": [{"n": "Bernard Klepach", "r": "Mayor of Indian Creek"}, {"n": "Irma Braman", "r": "Indian Creek City Council"}, {"n": "Irwin Tauber", "r": "Indian Creek City Council"}, {"n": "Jared Kushner", "r": "Indian Creek City Council"}, {"n": "Robert Diener", "r": "Indian Creek City Council"}]}, {"m": "Key Biscayne", "p": [{"n": "Edward London", "r": "Key Biscayne City Council"}, {"n": "Fernando A. Vazquez", "r": "Key Biscayne City Council"}, {"n": "Franklin H. Caplan", "r": "Key Biscayne City Council"}, {"n": "Joe I. Rasco", "r": "Mayor of Key Biscayne"}, {"n": "Michael Bracken", "r": "Key Biscayne City Council"}, {"n": "Nancy Stoner", "r": "Key Biscayne City Council"}, {"n": "Oscar Sardiñas", "r": "Key Biscayne City Council"}]}, {"m": "Medley", "p": [{"n": "Ana Stefano", "r": "Mayor of Medley"}, {"n": "Arturo Jinete", "r": "Medley City Council"}, {"n": "Edgar Ayala", "r": "Medley City Council"}, {"n": "Lizelh Rodriguez", "r": "Medley City Council"}, {"n": "Lourdes Rodriguez", "r": "Medley City Council"}]}, {"m": "Miami", "p": [{"n": "Christine King", "r": "Miami City Council"}, {"n": "Damian Pardo", "r": "Miami City Council"}, {"n": "Eileen Higgins", "r": "Mayor of Miami"}, {"n": "Miguel Angel Gabela", "r": "Miami City Council"}, {"n": "Ralph Rosado", "r": "Miami City Council"}, {"n": "Rolando Escalona", "r": "Miami City Council"}]}, {"m": "Miami Beach", "p": [{"n": "Joseph Magazine", "r": "Miami Beach City Council"}, {"n": "Laura Dominguez", "r": "Miami Beach City Council"}, {"n": "Monica Matteo-Salinas", "r": "Miami Beach City Council"}, {"n": "Steven Meiner", "r": "Mayor of Miami Beach"}, {"n": "Tanya K. Bhatt", "r": "Miami Beach City Council"}]}, {"m": "Miami Gardens", "p": [{"n": "Katrina L. Baskin", "r": "Miami Gardens City Council"}, {"n": "Katrina Wilson", "r": "Miami Gardens City Council"}, {"n": "Linda Julien", "r": "Miami Gardens City Council"}, {"n": "Michelle C. Powell", "r": "Miami Gardens City Council"}, {"n": "Reggie Leon", "r": "Miami Gardens City Council"}, {"n": "Robert L. Stephens", "r": "Miami Gardens City Council"}, {"n": "Rodney Harris", "r": "Mayor of Miami Gardens"}]}, {"m": "Miami Lakes", "p": [{"n": "Alejandro Sanchez", "r": "Miami Lakes City Council"}, {"n": "Angelo Cuadra Garcia", "r": "Miami Lakes City Council"}, {"n": "Bryan Morera", "r": "Miami Lakes City Council"}, {"n": "Joshua Dieguez", "r": "Mayor of Miami Lakes"}, {"n": "Juan Carlos Fernandez", "r": "Miami Lakes City Council"}, {"n": "Ray Garcia", "r": "Miami Lakes City Council"}, {"n": "Steven Herzberg", "r": "Miami Lakes City Council"}]}, {"m": "Miami Shores Village", "p": [{"n": "Jerome Charles", "r": "Mayor of Miami Shores Village"}]}, {"m": "Miami Springs", "p": [{"n": "Jorge Santin", "r": "Miami Springs City Council"}, {"n": "Jospeh Dion", "r": "Miami Springs City Council"}, {"n": "Orlando Lamas", "r": "Miami Springs City Council"}, {"n": "Walter Fajet", "r": "Mayor of Miami Springs"}]}, {"m": "Miami-Dade County", "p": [{"n": "Daniella Levine Cava", "r": "Mayor of Miami-Dade County"}]}, {"m": "North Bay Village", "p": [{"n": "Andy Daro", "r": "North Bay Village City Council"}, {"n": "Doris Acosta", "r": "North Bay Village City Council"}, {"n": "Goran Cuk", "r": "North Bay Village City Council"}, {"n": "Rachel Streitfeld", "r": "Mayor of North Bay Village"}, {"n": "Richard Chervony", "r": "North Bay Village City Council"}]}, {"m": "North Miami", "p": [{"n": "Alix Desulme", "r": "Mayor of North Miami"}, {"n": "Kassandra Timothe", "r": "North Miami City Council"}, {"n": "Kevin A. Burns", "r": "North Miami City Council"}, {"n": "Mary Estimé-Irvin", "r": "North Miami City Council"}, {"n": "Pierre Frantz Charles", "r": "North Miami City Council"}]}, {"m": "North Miami Beach", "p": [{"n": "Daniela Jean", "r": "North Miami Beach City Council"}, {"n": "Fortuna Smukler", "r": "North Miami Beach City Council"}, {"n": "Jay R. Chernoff", "r": "North Miami Beach City Council"}, {"n": "Lynn Su", "r": "North Miami Beach City Council"}, {"n": "McKenzie Fleurimond", "r": "North Miami Beach City Council"}, {"n": "Michael Joseph", "r": "Mayor of North Miami Beach"}, {"n": "Phyllis S. Smith", "r": "North Miami Beach City Council"}]}, {"m": "Opa Locka", "p": [{"n": "John H. Taylor Jr.", "r": "Mayor, Opa-locka, FL"}]}, {"m": "Opa-locka", "p": [{"n": "John H. Taylor", "r": "Mayor of Opa-locka"}, {"n": "Joseph L. Kelley", "r": "Opa-locka City Council"}, {"n": "Luis B. Santiago", "r": "Opa-locka City Council"}, {"n": "Natasha L. Ervin", "r": "Opa-locka City Council"}, {"n": "Sherelean Bass", "r": "Opa-locka City Council"}]}, {"m": "Palmetto Bay", "p": [{"n": "Karyn Cunningham", "r": "Mayor of Palmetto Bay"}, {"n": "Mark Merwitzer", "r": "Palmetto Bay City Council"}, {"n": "Marsha Matson", "r": "Palmetto Bay City Council"}, {"n": "Patrick Fiore", "r": "Palmetto Bay City Council"}, {"n": "Steve Cody", "r": "Palmetto Bay City Council"}]}, {"m": "Pinecrest", "p": [{"n": "Ariel Meyer", "r": "Pinecrest City Council"}, {"n": "Jerry Greenberg", "r": "Pinecrest City Council"}, {"n": "Joseph M. Corradino", "r": "Mayor of Pinecrest"}, {"n": "Ken Fairman", "r": "Pinecrest City Council"}]}, {"m": "South Miami", "p": [{"n": "Brian Corey", "r": "South Miami City Council"}, {"n": "Danny Rodriguez", "r": "South Miami City Council"}, {"n": "Javier E. Fernández", "r": "Mayor of South Miami"}, {"n": "Lisa Bonich", "r": "South Miami City Council"}, {"n": "Steve Calle", "r": "South Miami City Council"}]}, {"m": "Sunny Isles Beach", "p": [{"n": "Alex Lama", "r": "Sunny Isles Beach City Council"}, {"n": "Fabiola Stuyvesant", "r": "Sunny Isles Beach City Council"}, {"n": "Jeniffer Viscarra", "r": "Sunny Isles Beach City Council"}, {"n": "Jerry Joseph", "r": "Sunny Isles Beach City Council"}, {"n": "Larisa Svechin", "r": "Mayor of Sunny Isles Beach"}]}, {"m": "Surfside", "p": [{"n": "Andrea Travani", "r": "Surfside City Council"}, {"n": "David Weingot", "r": "Surfside City Council"}, {"n": "Dayana Benmergui", "r": "Surfside City Council"}, {"n": "Gerardo Vildostegui", "r": "Surfside City Council"}, {"n": "Shlomo Danzinger", "r": "Mayor of Surfside"}]}, {"m": "Sweetwater", "p": [{"n": "Idania Llanio", "r": "Sweetwater City Council"}, {"n": "Isidro Ruiz", "r": "Sweetwater City Council"}, {"n": "Jose P. Diaz", "r": "Mayor of Sweetwater"}, {"n": "Reinaldo Rey", "r": "Sweetwater City Council"}, {"n": "Saul Diaz", "r": "Sweetwater City Council"}]}, {"m": "Virginia Gardens", "p": [{"n": "Deborah Conover", "r": "Virginia Gardens City Council"}, {"n": "Elizabeth Taylor Martinez", "r": "Virginia Gardens City Council"}, {"n": "Fred Spencer Deno", "r": "Mayor of Virginia Gardens"}, {"n": "Gabriel Fernandez", "r": "Virginia Gardens City Council"}, {"n": "Jorge Arce", "r": "Virginia Gardens City Council"}, {"n": "Richard L. Block", "r": "Virginia Gardens City Council"}]}, {"m": "West Miami", "p": [{"n": "Eric Diaz-Padron", "r": "Mayor of West Miami"}, {"n": "Gustavo J. Ceballos", "r": "West Miami City Council"}, {"n": "Ivan Chavez", "r": "West Miami City Council"}, {"n": "Juan M. Blanes", "r": "West Miami City Council"}, {"n": "Victoria De La Torre Gans", "r": "West Miami City Council"}]}, {"m": "_Unresolved", "p": [{"n": "Danielle Cohen Higgins", "r": "Miami-Dade County City Council"}, {"n": "Juan Carlos Bermudez", "r": "Miami-Dade County City Council"}, {"n": "Keon Hardemon", "r": "Miami-Dade County City Council"}, {"n": "Kevin M. Cabrera", "r": "Miami-Dade County City Council"}, {"n": "Kionne L. McGhee", "r": "Miami-Dade County City Council"}, {"n": "Marleine Bastien", "r": "Miami-Dade County City Council"}, {"n": "Micky Steinberg", "r": "Miami-Dade County City Council"}, {"n": "Neil Cantor", "r": "Miami Shores Village City Council"}, {"n": "Raquel A. Regalado", "r": "Miami-Dade County City Council"}, {"n": "René Garcia", "r": "Miami-Dade County City Council"}, {"n": "Roberto J. Gonzalez", "r": "Miami-Dade County City Council"}, {"n": "Sandra Harris", "r": "Miami Shores Village City Council"}]}], "slug": "miami-dade"}, "12087": {"county": [{"n": "Craig Cates", "r": "Commissioner, Monroe County"}, {"n": "Darren M. Horan", "r": "Monroe County School Board"}, {"n": "David Rice", "r": "Commissioner, Monroe County"}, {"n": "Holly Raschein", "r": "Commissioner, Monroe County"}, {"n": "John R Dick", "r": "Monroe County School Board"}, {"n": "Joyce Griffin", "r": "Supervisor of Elections, Monroe County"}, {"n": "Kevin Madok", "r": "Clerk of Court, Monroe County"}, {"n": "Michelle Lincoln", "r": "Commissioner, Monroe County"}, {"n": "Rick Ramsay", "r": "Sheriff, Monroe County"}, {"n": "Sam Steele", "r": "Tax Collector, Monroe County"}, {"n": "Scott Russell", "r": "Property Appraiser, Monroe County"}, {"n": "Sherri Hodies", "r": "Supervisor of Elections, Monroe County"}, {"n": "Sue Woltanski", "r": "Monroe County School Board"}, {"n": "Yvette Mira-Talbott", "r": "Monroe County School Board"}], "munis": [{"m": "Islamorada, Village of Islands", "p": [{"n": "Donald Horton", "r": "Mayor of Islamorada, Village of Islands"}, {"n": "Sharon Mahoney", "r": "Islamorada, Village of Islands City Council"}, {"n": "Steve Friedman", "r": "Islamorada, Village of Islands City Council"}]}, {"m": "Key Colony Beach", "p": [{"n": "Doug Colonell", "r": "Key Colony Beach City Council"}, {"n": "Freddie Foster", "r": "Mayor of Key Colony Beach"}, {"n": "Kirk Diehl", "r": "Key Colony Beach City Council"}, {"n": "Tom DiFransico", "r": "Key Colony Beach City Council"}, {"n": "Tom Harding", "r": "Key Colony Beach City Council"}]}, {"m": "Key West", "p": [{"n": "Aaron Castillo", "r": "Key West City Council"}, {"n": "Danise Henriquez", "r": "Mayor of Key West"}, {"n": "Donald Lee", "r": "Key West City Council"}, {"n": "Lissette Cuervo Carey", "r": "Key West City Council"}, {"n": "Mary Lou Hoover", "r": "Key West City Council"}, {"n": "Monica Haskell", "r": "Key West City Council"}, {"n": "Sam Kaufman", "r": "Key West City Council"}]}, {"m": "Layton", "p": [{"n": "Bruce Halle", "r": "Mayor of Layton"}, {"n": "Cynthia Lewis", "r": "Layton City Council"}, {"n": "Gregory Lewis", "r": "Layton City Council"}, {"n": "Jared Rodriguez", "r": "Layton City Council"}, {"n": "Megan Jones", "r": "Layton City Council"}, {"n": "Susan Grant", "r": "Layton City Council"}]}, {"m": "Marathon", "p": [{"n": "Debra Struyf", "r": "Marathon City Council"}, {"n": "Kenny Matlock", "r": "Marathon City Council"}, {"n": "Lynn Landry", "r": "Marathon City Council"}, {"n": "Lynny Del Gaizo", "r": "Mayor of Marathon"}, {"n": "Robyn Still", "r": "Marathon City Council"}]}], "slug": "monroe"}, "12089": {"county": [{"n": "A. Michael Hickox", "r": "Property Appraiser, Nassau County"}, {"n": "A.M. \"Hupp\" Huppmann", "r": "Commissioner, Nassau County"}, {"n": "Alyson McCullough", "r": "Commissioner, Nassau County"}, {"n": "Bill Leeper", "r": "Sheriff, Nassau County"}, {"n": "Curtis Gaus", "r": "Nassau County School Board"}, {"n": "Gail G. Cook", "r": "Nassau County School Board"}, {"n": "Janet Adkins", "r": "Supervisor of Elections, Nassau County"}, {"n": "Jeff Gray", "r": "Commissioner, Nassau County"}, {"n": "John Crawford", "r": "Clerk of Court, Nassau County"}, {"n": "John Drew", "r": "Tax Collector, Nassau County"}, {"n": "John Martin", "r": "Commissioner, Nassau County"}, {"n": "Kevin Lilly", "r": "Property Appraiser, Nassau County"}, {"n": "Klynt Farmer", "r": "Commissioner, Nassau County"}, {"n": "Kristi Loyd Simpkins", "r": "Nassau County School Board"}, {"n": "Lissa Braddock", "r": "Nassau County School Board"}, {"n": "Mitchell Keiter", "r": "Clerk of Court, Nassau County"}, {"n": "Shannon Hogue", "r": "Nassau County School Board"}, {"n": "Vicki Cannon", "r": "Supervisor of Elections, Nassau County"}], "munis": [{"m": "Callahan", "p": [{"n": "Ashton Bishop-Vargas", "r": "Callahan City Council"}, {"n": "Jacquelyn Fleming", "r": "Callahan City Council"}, {"n": "Janet Shaw", "r": "Callahan City Council"}, {"n": "Matthew Davis", "r": "Callahan City Council"}, {"n": "Randy Knagge", "r": "Mayor of Callahan"}, {"n": "Wendi Williams", "r": "Callahan City Council"}]}, {"m": "Fernandina Beach", "p": [{"n": "Darron Ayscue", "r": "Fernandina Beach City Council"}, {"n": "Genece Minshew", "r": "Fernandina Beach City Council"}, {"n": "James Antun", "r": "Mayor of Fernandina Beach"}, {"n": "Joyce Tuten", "r": "Fernandina Beach City Council"}, {"n": "Tim Poynter", "r": "Fernandina Beach City Council"}]}, {"m": "Hilliard", "p": [{"n": "Jared Wollitz", "r": "Hilliard City Council"}, {"n": "Joe Michaels", "r": "Hilliard City Council"}, {"n": "John P. Beasley", "r": "Mayor of Hilliard"}, {"n": "Kenneth A. Sims", "r": "Hilliard City Council"}, {"n": "Lee Pickett", "r": "Hilliard City Council"}, {"n": "Richard Dallis Hunter", "r": "Hilliard City Council"}]}], "slug": "nassau"}, "12091": {"county": [{"n": "Benjamin Anderson", "r": "Tax Collector, Okaloosa County"}, {"n": "Brad Embry", "r": "Clerk of Court, Okaloosa County"}, {"n": "Carolyn Ketchel", "r": "Commissioner, Okaloosa County"}, {"n": "Dewey Parker Destin", "r": "Okaloosa County School Board"}, {"n": "Diane Kelley", "r": "Okaloosa County School Board"}, {"n": "Eric Aden", "r": "Sheriff, Okaloosa County"}, {"n": "J.D. Peacock", "r": "Clerk of Court, Okaloosa County"}, {"n": "Lamar White", "r": "Okaloosa County School Board"}, {"n": "Linda Evanchyk", "r": "Okaloosa County School Board"}, {"n": "Mack Busbee", "r": "Property Appraiser, Okaloosa County"}, {"n": "Mel Ponder", "r": "Commissioner, Okaloosa County"}, {"n": "Nathaniel Boyles", "r": "Commissioner, Okaloosa County"}, {"n": "Paul Lux", "r": "Supervisor of Elections, Okaloosa County"}, {"n": "Paul Mixon", "r": "Commissioner, Okaloosa County"}, {"n": "Timothy Bryant", "r": "Okaloosa County School Board"}, {"n": "Trey Goodwin", "r": "Commissioner, Okaloosa County"}], "munis": [{"m": "Cinco Bayou", "p": [{"n": "Chris Washack", "r": "Cinco Bayou City Council"}, {"n": "Danny Dillard", "r": "Cinco Bayou City Council"}, {"n": "Jean M. Hood", "r": "Mayor of Cinco Bayou"}, {"n": "Laura Driver", "r": "Cinco Bayou City Council"}, {"n": "Mary Ann Hawkins", "r": "Cinco Bayou City Council"}]}, {"m": "Crestview", "p": [{"n": "Brandon Frost", "r": "Crestview City Council"}, {"n": "Douglas Capps", "r": "Crestview City Council"}, {"n": "Dusty B. Allison", "r": "Crestview City Council"}, {"n": "J. B. Whitten", "r": "Mayor of Crestview"}, {"n": "Shannon D. Hayes", "r": "Crestview City Council"}, {"n": "Sylvester L. Echols", "r": "Crestview City Council"}]}, {"m": "Destin", "p": [{"n": "Bobby Wagner", "r": "Mayor of Destin"}, {"n": "Dewey Destin", "r": "Destin City Council"}, {"n": "Jim Bagby", "r": "Destin City Council"}, {"n": "Kevin Schmidt", "r": "Destin City Council"}, {"n": "Rodney J. Braden", "r": "Destin City Council"}, {"n": "Sandra K. Trammell", "r": "Destin City Council"}, {"n": "Terésa Hebert", "r": "Destin City Council"}, {"n": "Torey Geile", "r": "Destin City Council"}]}, {"m": "Fort Walton Beach", "p": [{"n": "Ben Merrell", "r": "Fort Walton Beach City Council"}, {"n": "Bryce Jeter", "r": "Fort Walton Beach City Council"}, {"n": "David Schmidt", "r": "Fort Walton Beach City Council"}, {"n": "Logan Browning", "r": "Fort Walton Beach City Council"}, {"n": "Nic Allegretto", "r": "Mayor of Fort Walton Beach"}, {"n": "Payne Walker", "r": "Fort Walton Beach City Council"}]}, {"m": "Laurel Hill", "p": [{"n": "Amanda Rosen", "r": "Laurel Hill City Council"}, {"n": "Debra Adams", "r": "Laurel Hill City Council"}, {"n": "Jacob Locke", "r": "Laurel Hill City Council"}, {"n": "Kristine Gaskin", "r": "Laurel Hill City Council"}, {"n": "Robby Adams", "r": "Mayor of Laurel Hill"}, {"n": "Shawn Cogan", "r": "Laurel Hill City Council"}]}, {"m": "Mary Esther", "p": [{"n": "April Sutton", "r": "Mary Esther City Council"}, {"n": "Bernard W. Oder", "r": "Mary Esther City Council"}, {"n": "Chris Stein", "r": "Mayor of Mary Esther"}, {"n": "Larry J. Carter", "r": "Mary Esther City Council"}, {"n": "Richard Lawson", "r": "Mary Esther City Council"}, {"n": "Susan Coxwell", "r": "Mary Esther City Council"}]}, {"m": "Niceville", "p": [{"n": "Cathy Alley", "r": "Niceville City Council"}, {"n": "Daniel L. Henkel", "r": "Mayor of Niceville"}, {"n": "Doug Tolbert", "r": "Niceville City Council"}, {"n": "Douglas Stauffer", "r": "Niceville City Council"}, {"n": "Heath Rominger", "r": "Niceville City Council"}, {"n": "William G. Schaetzle", "r": "Niceville City Council"}]}, {"m": "Shalimar", "p": [{"n": "Brad Gable", "r": "Shalimar City Council"}, {"n": "Brian Taylor", "r": "Shalimar City Council"}, {"n": "Jerry McCallister", "r": "Shalimar City Council"}, {"n": "Mark Franks", "r": "Mayor of Shalimar"}, {"n": "Ricardo Garcia", "r": "Shalimar City Council"}]}, {"m": "Valparaiso", "p": [{"n": "Bryan L. Griffin", "r": "Valparaiso City Council"}, {"n": "Clark T. Browning", "r": "Valparaiso City Council"}, {"n": "Hubert B. Smith", "r": "Mayor of Valparaiso"}, {"n": "Kay Hamilton", "r": "Valparaiso City Council"}]}], "slug": "okaloosa"}, "12093": {"county": [{"n": "Amanda Riedel", "r": "Okeechobee County School Board"}, {"n": "Bradley Goodbread", "r": "Commissioner, Okeechobee County"}, {"n": "Celeste Watford", "r": "Tax Collector, Okeechobee County"}, {"n": "Christine Brennan Bishop", "r": "Okeechobee County School Board"}, {"n": "David Hazellief", "r": "Commissioner, Okeechobee County"}, {"n": "David May", "r": "Supervisor of Elections, Okeechobee County"}, {"n": "Frank DeCarlo", "r": "Commissioner, Okeechobee County"}, {"n": "Jerald Bryant", "r": "Clerk of Court, Okeechobee County"}, {"n": "Jill Clericuzio Holcomb", "r": "Okeechobee County School Board"}, {"n": "Kelly Owens", "r": "Commissioner, Okeechobee County"}, {"n": "Melisa Jahner", "r": "Okeechobee County School Board"}, {"n": "Melissa Arnold", "r": "Supervisor of Elections, Okeechobee County"}, {"n": "Michael Bandi", "r": "Property Appraiser, Okeechobee County"}, {"n": "Michael Sumner", "r": "Commissioner, Okeechobee County"}, {"n": "Noel Stephen", "r": "Sheriff, Okeechobee County"}, {"n": "Sharon Robertson", "r": "Clerk of Court, Okeechobee County"}, {"n": "Terry Burroughs", "r": "Commissioner, Okeechobee County"}], "munis": [{"m": "Okeechobee", "p": [{"n": "David McAuley", "r": "Okeechobee City Council"}, {"n": "Dowling R. Watford", "r": "Mayor of Okeechobee"}, {"n": "Noel Chandler", "r": "Okeechobee City Council"}, {"n": "Robert Jarriel", "r": "Okeechobee City Council"}]}], "slug": "okeechobee"}, "12095": {"county": [{"n": "Alicia Farrant", "r": "Orange County School Board"}, {"n": "Amy Mercado", "r": "Property Appraiser, Orange County"}, {"n": "Angie Gallo", "r": "Orange County School Board"}, {"n": "Anne Douglas", "r": "Orange County School Board"}, {"n": "Christine Moore", "r": "Commissioner, Orange County"}, {"n": "Emily Bonilla", "r": "Commissioner, Orange County"}, {"n": "Glen Gilzean", "r": "Supervisor of Elections, Orange County"}, {"n": "John Mina", "r": "Sheriff, Orange County"}, {"n": "Karen Dentel", "r": "Supervisor of Elections, Orange County"}, {"n": "Maria Salamanca", "r": "Orange County School Board"}, {"n": "Maribel Gomez Cordero", "r": "Commissioner, Orange County"}, {"n": "Mayra Uribe", "r": "Commissioner, Orange County"}, {"n": "Melissa Mitchell Byrd", "r": "Orange County School Board"}, {"n": "Michael Scott", "r": "Commissioner, Orange County"}, {"n": "Nicole Wilson", "r": "Commissioner, Orange County"}, {"n": "Rick Singh", "r": "Property Appraiser, Orange County"}, {"n": "Scott Randolph", "r": "Tax Collector, Orange County"}, {"n": "Stephanie Vanos", "r": "Orange County School Board"}, {"n": "Teresa Jacobs", "r": "Orange County School Board"}, {"n": "Tiffany Moore Russell", "r": "Clerk of Court, Orange County"}, {"n": "Vicki-Elaine Felder", "r": "Orange County School Board"}, {"n": "Victoria Siplin", "r": "Commissioner, Orange County"}], "munis": [{"m": "Apopka", "p": [{"n": "Nadia Anderson", "r": "Apopka City Council"}, {"n": "Nick Nesta", "r": "Mayor of Apopka"}, {"n": "Sam Ruth", "r": "Apopka City Council"}, {"n": "Yesenia Leon Baron", "r": "Apopka City Council"}]}, {"m": "Bay Lake", "p": [{"n": "Bryan Swartz", "r": "Bay Lake City Council"}, {"n": "Sue McCall", "r": "Bay Lake City Council"}, {"n": "Tanya Peak-Smith", "r": "Bay Lake City Council"}, {"n": "Tim Burns", "r": "Bay Lake City Council"}, {"n": "Todd Watzel", "r": "Mayor of Bay Lake"}]}, {"m": "Belle Isle", "p": [{"n": "Beth Lowell", "r": "Belle Isle City Council"}, {"n": "Bobby Lance", "r": "Belle Isle City Council"}, {"n": "Ed Gold", "r": "Belle Isle City Council"}, {"n": "Holly Bobrowski", "r": "Belle Isle City Council"}, {"n": "Jason Carson", "r": "Mayor of Belle Isle"}, {"n": "Jim Partin", "r": "Belle Isle City Council"}, {"n": "Karl Shuck", "r": "Belle Isle City Council"}]}, {"m": "Eatonville", "p": [{"n": "Angela Y. Thomas", "r": "Eatonville City Council"}, {"n": "LaDwyana Jordan", "r": "Eatonville City Council"}, {"n": "Ruth Critton", "r": "Mayor of Eatonville"}, {"n": "Theo E. Washington", "r": "Eatonville City Council"}, {"n": "Wanda Randolph", "r": "Eatonville City Council"}]}, {"m": "Edgewood", "p": [{"n": "Beth Steele", "r": "Edgewood City Council"}, {"n": "Casey McElroy", "r": "Edgewood City Council"}, {"n": "Chris Rader", "r": "Edgewood City Council"}, {"n": "John Dowless", "r": "Mayor of Edgewood"}, {"n": "Richard Horn", "r": "Edgewood City Council"}, {"n": "Susan Lomas", "r": "Edgewood City Council"}]}, {"m": "Lake Buena Vista", "p": [{"n": "Andrea Fay", "r": "Lake Buena Vista City Council"}, {"n": "Angie Sola", "r": "Lake Buena Vista City Council"}, {"n": "Renee Raper", "r": "Mayor of Lake Buena Vista"}, {"n": "Tom McCoy", "r": "Lake Buena Vista City Council"}]}, {"m": "Maitland", "p": [{"n": "Bill Randolph", "r": "Maitland City Council"}, {"n": "John P. Lowndes", "r": "Mayor of Maitland"}, {"n": "Keith Givens", "r": "Maitland City Council"}, {"n": "Scot A. French", "r": "Maitland City Council"}, {"n": "Stephen B. Schoene", "r": "Maitland City Council"}]}, {"m": "Oakland", "p": [{"n": "Joseph McMullen", "r": "Oakland City Council"}, {"n": "Kris Keller", "r": "Oakland City Council"}, {"n": "Michael Satterfield", "r": "Oakland City Council"}, {"n": "Shane Taylor", "r": "Mayor of Oakland"}, {"n": "Yumeko Motley", "r": "Oakland City Council"}]}, {"m": "Ocoee", "p": [{"n": "George Oliver", "r": "Ocoee City Council"}, {"n": "Richard Firstner", "r": "Ocoee City Council"}, {"n": "Rosemary Wilsen", "r": "Ocoee City Council"}, {"n": "Rusty Johnson", "r": "Mayor of Ocoee"}, {"n": "Scott Kennedy", "r": "Ocoee City Council"}]}, {"m": "Orlando", "p": [{"n": "Antonio L. Ortiz", "r": "Orlando City Council"}, {"n": "Antonio Ortiz", "r": "Orlando City Council - District 2"}, {"n": "Bakari F. Burns", "r": "Orlando City Council"}, {"n": "Bakari F. Burns", "r": "Orlando City Council - District 6"}, {"n": "Buddy Dyer", "r": "Mayor of Orlando"}, {"n": "Patty Sheehan", "r": "Orlando City Council"}, {"n": "Patty Sheehan", "r": "Orlando City Council - District 4"}, {"n": "Roger Chapin", "r": "Orlando City Council"}, {"n": "Roger Chapin", "r": "Orlando City Council - District 3"}, {"n": "Shan Rose", "r": "Orlando City Council"}, {"n": "Shan Rose", "r": "Orlando City Council - District 5"}, {"n": "Tom Keen", "r": "Orlando City Council"}, {"n": "Tom Keen", "r": "Orlando City Council - District 1"}]}, {"m": "Windermere", "p": [{"n": "Brandi Haines", "r": "Windermere City Council"}, {"n": "CT Allen", "r": "Windermere City Council"}, {"n": "Jim O'Brien", "r": "Mayor of Windermere"}, {"n": "Mandy David", "r": "Windermere City Council"}, {"n": "Tom Stroup", "r": "Windermere City Council"}, {"n": "Tony Davit", "r": "Windermere City Council"}]}, {"m": "Winter Garden", "p": [{"n": "Chloe Johnson", "r": "Winter Garden City Council"}, {"n": "Colin Sharman", "r": "Winter Garden City Council"}, {"n": "Iliana R. Jones", "r": "Winter Garden City Council"}, {"n": "John Rees", "r": "Mayor of Winter Garden"}, {"n": "Lisa L. Bennett", "r": "Winter Garden City Council"}]}, {"m": "Winter Park", "p": [{"n": "Craig Russell", "r": "Winter Park City Council"}, {"n": "Elizabeth Ingram", "r": "Winter Park City Council"}, {"n": "Kristopher Cruzada", "r": "Winter Park City Council"}, {"n": "Sheila DeCiccio", "r": "Mayor of Winter Park"}, {"n": "Warren Lindsey", "r": "Winter Park City Council"}]}], "slug": "orange"}, "12097": {"county": [{"n": "Anthony Cook", "r": "Osceola County School Board"}, {"n": "Armando Ramirez", "r": "Clerk of Court, Osceola County"}, {"n": "Brandon Arrington", "r": "Commissioner, Osceola County"}, {"n": "Bruce Vickers", "r": "Tax Collector, Osceola County"}, {"n": "Cheryl Grieb", "r": "Commissioner, Osceola County"}, {"n": "Erika Booth", "r": "Osceola County School Board"}, {"n": "Heather Kahoun", "r": "Osceola County School Board"}, {"n": "Katrina Scarborough", "r": "Property Appraiser, Osceola County"}, {"n": "Kelvin Soto", "r": "Clerk of Court, Osceola County"}, {"n": "Marcos Lopez", "r": "Sheriff, Osceola County"}, {"n": "Mary Jane Arrington", "r": "Supervisor of Elections, Osceola County"}, {"n": "Paula Bronson", "r": "Osceola County School Board"}, {"n": "Peggy Choudhry", "r": "Commissioner, Osceola County"}, {"n": "Ricky Booth", "r": "Commissioner, Osceola County"}, {"n": "Russell Gibson", "r": "Sheriff, Osceola County"}, {"n": "Teresa \"Terry\" Castillo", "r": "Osceola County School Board"}, {"n": "Viviana Janer", "r": "Commissioner, Osceola County"}], "munis": [{"m": "Kissimmee", "p": [{"n": "Carlos Alvarez", "r": "Kissimmee City Council"}, {"n": "Jackie Espinosa", "r": "Mayor of Kissimmee"}, {"n": "Janette Martinez", "r": "Kissimmee City Council"}, {"n": "Noel Ortiz", "r": "Kissimmee City Council"}]}, {"m": "St. Cloud", "p": [{"n": "Chris Robertson", "r": "Mayor of St. Cloud"}, {"n": "Jennifer Paul", "r": "St. Cloud City Council"}, {"n": "Ken Gilbert", "r": "St. Cloud City Council"}, {"n": "Kolby Urban", "r": "St. Cloud City Council"}, {"n": "Shawn Fletcher", "r": "St. Cloud City Council"}]}], "slug": "osceola"}, "12099": {"county": [{"n": "Anne Gannon", "r": "Tax Collector, Palm Beach County"}, {"n": "Bobby Powell", "r": "Commissioner, Palm Beach County"}, {"n": "David Kerner", "r": "Commissioner, Palm Beach County"}, {"n": "Dorothy Jacks", "r": "Property Appraiser, Palm Beach County"}, {"n": "Edwin Ferguson", "r": "Palm Beach County School Board"}, {"n": "Erica Whitfield", "r": "Palm Beach County School Board"}, {"n": "Gloria Branch", "r": "Palm Beach County School Board"}, {"n": "Gregg Weiss", "r": "Commissioner, Palm Beach County"}, {"n": "Joel Flores", "r": "Commissioner, Palm Beach County"}, {"n": "Joseph Abruzzo", "r": "Clerk of Court, Palm Beach County"}, {"n": "Karen Brill", "r": "Palm Beach County School Board"}, {"n": "Mack Bernard", "r": "Commissioner, Palm Beach County"}, {"n": "Marcia Andrews", "r": "Palm Beach County School Board"}, {"n": "Marcia Woodward", "r": "Commissioner, Palm Beach County"}, {"n": "Maria Sachs", "r": "Commissioner, Palm Beach County"}, {"n": "Matthew Jay Lane", "r": "Palm Beach County School Board"}, {"n": "Michael Barnett", "r": "Commissioner, Palm Beach County"}, {"n": "Ric Bradshaw", "r": "Sheriff, Palm Beach County"}, {"n": "Sara Baxter", "r": "Commissioner, Palm Beach County"}, {"n": "Sharon Bock", "r": "Clerk of Court, Palm Beach County"}, {"n": "Virginia Savietto", "r": "Palm Beach County School Board"}, {"n": "Wendy Sartory Link", "r": "Supervisor of Elections, Palm Beach County"}, {"n": "Wendy Sartory-Link", "r": "Supervisor of Elections, Palm Beach County"}], "munis": [{"m": "Atlantis", "p": [{"n": "Allan Kaulbach", "r": "Atlantis City Council"}, {"n": "Derek Cooper", "r": "Atlantis City Council"}, {"n": "Keller Lanahan", "r": "Mayor of Atlantis"}, {"n": "Michael LaCoursiere", "r": "Atlantis City Council"}]}, {"m": "Belle Glade", "p": [{"n": "Joaquin Almazan", "r": "Belle Glade City Council"}, {"n": "Robert L. Rease", "r": "Belle Glade City Council"}, {"n": "Sorilinda Santiago", "r": "Belle Glade City Council"}, {"n": "Steve B. Wilson", "r": "Mayor of Belle Glade"}, {"n": "Tequella Collins", "r": "Belle Glade City Council"}]}, {"m": "Boca Raton", "p": [{"n": "Jon Pearlman", "r": "Boca Raton City Council"}, {"n": "Marc Wigder", "r": "Boca Raton City Council"}, {"n": "Michelle Grau", "r": "Boca Raton City Council"}, {"n": "Scott Singer", "r": "Mayor of Boca Raton"}, {"n": "Yvette Drucker", "r": "Boca Raton City Council"}]}, {"m": "Boynton Beach", "p": [{"n": "Aimee Kelley", "r": "Boynton Beach City Council"}, {"n": "Angela Cruz", "r": "Boynton Beach City Council"}, {"n": "Mack McCray", "r": "Boynton Beach City Council"}, {"n": "Rebecca Shelton", "r": "Mayor of Boynton Beach"}, {"n": "Woodrow L. Hay", "r": "Boynton Beach City Council"}]}, {"m": "Briny Breezes", "p": [{"n": "Bill Birch", "r": "Mayor of Briny Breezes"}, {"n": "David White", "r": "Briny Breezes City Council"}, {"n": "Holly Reitnauer", "r": "Briny Breezes City Council"}, {"n": "Jeff Duncan", "r": "Briny Breezes City Council"}, {"n": "Liz Loper", "r": "Briny Breezes City Council"}]}, {"m": "Cloud Lake", "p": [{"n": "Alexandra Powell Sardinas", "r": "Cloud Lake City Council"}, {"n": "John Tyson", "r": "Cloud Lake City Council"}, {"n": "Kathleen Hoock", "r": "Cloud Lake City Council"}, {"n": "Marion Chateau-Flagg", "r": "Cloud Lake City Council"}, {"n": "Russell E. Nidy", "r": "Mayor of Cloud Lake"}]}, {"m": "Delray Beach", "p": [{"n": "Angela Burns", "r": "Delray Beach City Council"}, {"n": "Judy Mollica", "r": "Delray Beach City Council"}, {"n": "Juli Casale", "r": "Delray Beach City Council"}, {"n": "Thomas Markert", "r": "Delray Beach City Council"}, {"n": "Tom Carney", "r": "Mayor of Delray Beach"}]}, {"m": "Glen Ridge", "p": [{"n": "Alice McLane", "r": "Mayor of Glen Ridge"}, {"n": "Eusebio Morales", "r": "Glen Ridge City Council"}, {"n": "Leila Rothe", "r": "Glen Ridge City Council"}, {"n": "Taylor Jantz", "r": "Glen Ridge City Council"}, {"n": "Thomas Lisi", "r": "Glen Ridge City Council"}]}, {"m": "Golf", "p": [{"n": "Angela Holiday", "r": "Golf City Council"}, {"n": "Betsy Hvide", "r": "Golf City Council"}, {"n": "J. Marshall Duane", "r": "Golf City Council"}, {"n": "Peter Hamilton", "r": "Mayor of Golf"}, {"n": "Susannah Rothenberg", "r": "Golf City Council"}]}, {"m": "Greenacres", "p": [{"n": "Charles E. Shaw", "r": "Mayor of Greenacres"}, {"n": "Elisa Leheny", "r": "Greenacres City Council"}, {"n": "John Tharp", "r": "Greenacres City Council"}, {"n": "Judith Dugo", "r": "Greenacres City Council"}, {"n": "Peter A. Noble", "r": "Greenacres City Council"}, {"n": "Susy Diaz", "r": "Greenacres City Council"}]}, {"m": "Gulf Stream", "p": [{"n": "Joan K. Orthwein", "r": "Gulf Stream City Council"}, {"n": "Michael Greene", "r": "Gulf Stream City Council"}, {"n": "Robert Canfield", "r": "Gulf Stream City Council"}, {"n": "Scott W. Morgan", "r": "Mayor of Gulf Stream"}, {"n": "Thomas Stanley", "r": "Gulf Stream City Council"}]}, {"m": "Haverhill", "p": [{"n": "Dennis Withington", "r": "Haverhill City Council"}, {"n": "Jay G. Foy", "r": "Mayor of Haverhill"}, {"n": "Lawrence Gordon", "r": "Haverhill City Council"}, {"n": "Mark C. Uptegraph", "r": "Haverhill City Council"}, {"n": "Teresa Johnson", "r": "Haverhill City Council"}]}, {"m": "Highland Beach", "p": [{"n": "David Stern", "r": "Highland Beach City Council"}, {"n": "Donald Peters", "r": "Highland Beach City Council"}, {"n": "Jason Chudnofsky", "r": "Highland Beach City Council"}, {"n": "Judith M. Goldberg", "r": "Highland Beach City Council"}, {"n": "Natasha Moore", "r": "Mayor of Highland Beach"}]}, {"m": "Hypoluxo", "p": [{"n": "Bradley Doyle", "r": "Hypoluxo City Council"}, {"n": "Christine Nagy", "r": "Hypoluxo City Council"}, {"n": "Linda Allen", "r": "Hypoluxo City Council"}, {"n": "Michael C. Brown", "r": "Mayor of Hypoluxo"}, {"n": "Richard J. Roney", "r": "Hypoluxo City Council"}, {"n": "Robert Leupp", "r": "Hypoluxo City Council"}]}, {"m": "Juno Beach", "p": [{"n": "DD Halpern", "r": "Juno Beach City Council"}, {"n": "Dave Santilli", "r": "Mayor of Juno Beach"}, {"n": "Diana Davis", "r": "Juno Beach City Council"}, {"n": "Jacob Rosengarten", "r": "Juno Beach City Council"}, {"n": "Max Fraser", "r": "Juno Beach City Council"}]}, {"m": "Jupiter", "p": [{"n": "Dan Guisinger", "r": "Jupiter City Council"}, {"n": "Jim Kuretski", "r": "Mayor of Jupiter"}, {"n": "Malise Sundstrom", "r": "Jupiter City Council"}, {"n": "Phyllis Choy", "r": "Jupiter City Council"}, {"n": "Ron Delaney", "r": "Jupiter City Council"}]}, {"m": "Jupiter Inlet Colony", "p": [{"n": "Anna Nemes", "r": "Jupiter Inlet Colony City Council"}, {"n": "Bill Muir", "r": "Mayor of Jupiter Inlet Colony"}, {"n": "David Shula", "r": "Jupiter Inlet Colony City Council"}, {"n": "Janet Saura", "r": "Jupiter Inlet Colony City Council"}, {"n": "Mark Ciarfella", "r": "Jupiter Inlet Colony City Council"}]}, {"m": "Lake Clarke Shores", "p": [{"n": "Bridget Keating", "r": "Lake Clarke Shores City Council"}, {"n": "Christy Maasbach", "r": "Mayor of Lake Clarke Shores"}, {"n": "Gregory Freebold", "r": "Lake Clarke Shores City Council"}, {"n": "Taylor Materio", "r": "Lake Clarke Shores City Council"}]}, {"m": "Lake Park", "p": [{"n": "John L. Linden", "r": "Lake Park City Council"}, {"n": "Judith Thomas", "r": "Lake Park City Council"}, {"n": "Michael Hensley", "r": "Lake Park City Council"}, {"n": "Michael O'Rourke", "r": "Lake Park City Council"}, {"n": "Roger Michaud", "r": "Mayor of Lake Park"}]}, {"m": "Lake Worth Beach", "p": [{"n": "Anthony Segrich", "r": "Lake Worth Beach City Council"}, {"n": "Betty Resch", "r": "Mayor of Lake Worth Beach"}, {"n": "Christopher McVoy", "r": "Lake Worth Beach City Council"}, {"n": "Mimi May", "r": "Lake Worth Beach City Council"}, {"n": "Sarah Malega", "r": "Lake Worth Beach City Council"}]}, {"m": "Lantana", "p": [{"n": "Chris Castle", "r": "Lantana City Council"}, {"n": "Jesse Rivero", "r": "Lantana City Council"}, {"n": "Karen Lythgoe", "r": "Mayor of Lantana"}, {"n": "Kem Mason", "r": "Lantana City Council"}, {"n": "Mark Zeitler", "r": "Lantana City Council"}]}, {"m": "Manalapan", "p": [{"n": "Cindy McMackin", "r": "Manalapan City Council"}, {"n": "David Knobel", "r": "Manalapan City Council"}, {"n": "Dwight Kulwin", "r": "Manalapan City Council"}, {"n": "Elliot Bonner", "r": "Manalapan City Council"}, {"n": "John Deese", "r": "Mayor of Manalapan"}, {"n": "Orla Imbesi", "r": "Manalapan City Council"}, {"n": "Simone Bonutti", "r": "Manalapan City Council"}]}, {"m": "Mangonia Park", "p": [{"n": "Clarence R. McConnell", "r": "Mangonia Park City Council"}, {"n": "Kelisha Buchanan-Webb", "r": "Mangonia Park City Council"}, {"n": "Lisa Davis-Quince", "r": "Mangonia Park City Council"}, {"n": "Sarita C. Johnson", "r": "Mangonia Park City Council"}, {"n": "William H. Albury", "r": "Mayor of Mangonia Park"}]}, {"m": "North Palm Beach", "p": [{"n": "Deborah Searcy", "r": "North Palm Beach City Council"}, {"n": "Kendra Zellner", "r": "North Palm Beach City Council"}, {"n": "Lisa Interlandi", "r": "Mayor of North Palm Beach"}, {"n": "Orlando Puyol", "r": "North Palm Beach City Council"}, {"n": "Susan Bickel", "r": "North Palm Beach City Council"}]}, {"m": "Ocean Ridge", "p": [{"n": "Ainar Aijala", "r": "Ocean Ridge City Council"}, {"n": "Carolyn Cassidy", "r": "Ocean Ridge City Council"}, {"n": "Geoffrey A. Pugh", "r": "Mayor of Ocean Ridge"}, {"n": "Steve Coz", "r": "Ocean Ridge City Council"}]}, {"m": "Pahokee", "p": [{"n": "Everett D. McPherson", "r": "Pahokee City Council"}, {"n": "Isabelle J. McDonald", "r": "Pahokee City Council"}, {"n": "James H. Scott", "r": "Pahokee City Council"}, {"n": "Keith W. Babb", "r": "Mayor of Pahokee"}, {"n": "Sanquetta Cowan-Williams", "r": "Pahokee City Council"}]}, {"m": "Palm Beach", "p": [{"n": "Bridget Moran", "r": "Palm Beach City Council"}, {"n": "Danielle H. Moore", "r": "Mayor of Palm Beach"}, {"n": "Edward Cooney", "r": "Palm Beach City Council"}, {"n": "Julie Araskog", "r": "Palm Beach City Council"}, {"n": "Lewis S.W. Crampton", "r": "Palm Beach City Council"}, {"n": "Nicki McDonald", "r": "Palm Beach City Council"}]}, {"m": "Palm Beach Gardens", "p": [{"n": "Dana P. Middleton", "r": "Mayor of Palm Beach Gardens"}, {"n": "John D. Kemp", "r": "Palm Beach Gardens City Council"}, {"n": "Marcie Tinsley", "r": "Palm Beach Gardens City Council"}, {"n": "Rachelle A. Litt", "r": "Palm Beach Gardens City Council"}, {"n": "Robert G. Premuroso", "r": "Palm Beach Gardens City Council"}]}, {"m": "Palm Beach Shores", "p": [{"n": "Anastasia Karloutsos", "r": "Palm Beach Shores City Council"}, {"n": "Roby DeReuil", "r": "Palm Beach Shores City Council"}, {"n": "Steven Smith", "r": "Palm Beach Shores City Council"}, {"n": "Tony Lembo", "r": "Palm Beach Shores City Council"}, {"n": "Tracy Larcher", "r": "Mayor of Palm Beach Shores"}]}, {"m": "Palm Springs", "p": [{"n": "Bev Smith", "r": "Mayor of Palm Springs"}, {"n": "Gary M. Ready", "r": "Palm Springs City Council"}, {"n": "Johnnie Tieche", "r": "Palm Springs City Council"}, {"n": "Kimberly Ann Schmitz", "r": "Palm Springs City Council"}, {"n": "Patricia Waller", "r": "Palm Springs City Council"}]}, {"m": "Riviera Beach", "p": [{"n": "Bruce Guyton", "r": "Riviera Beach City Council"}, {"n": "Douglas Lawson", "r": "Mayor of Riviera Beach"}, {"n": "Fercella Davis Panier", "r": "Riviera Beach City Council"}, {"n": "Glen Spiritis", "r": "Riviera Beach City Council"}, {"n": "KaShamba Miller-Anderson", "r": "Riviera Beach City Council"}, {"n": "Shirley Lanier", "r": "Riviera Beach City Council"}]}, {"m": "Royal Palm Beach", "p": [{"n": "Jan Rodusky", "r": "Royal Palm Beach City Council"}, {"n": "Jeff Hmara", "r": "Mayor of Royal Palm Beach"}, {"n": "Richard Valuntas", "r": "Royal Palm Beach City Council"}, {"n": "Selena Samios", "r": "Royal Palm Beach City Council"}, {"n": "Sylvia Sharps", "r": "Royal Palm Beach City Council"}]}, {"m": "South Bay", "p": [{"n": "Albert L. Polk", "r": "South Bay City Council"}, {"n": "Barbara King", "r": "South Bay City Council"}, {"n": "Betty Barnard", "r": "South Bay City Council"}, {"n": "Joe Kyles", "r": "Mayor of South Bay"}, {"n": "Taranza McKelvin", "r": "South Bay City Council"}]}, {"m": "South Palm Beach", "p": [{"n": "Adrian J. Burcet", "r": "South Palm Beach City Council"}, {"n": "Francesca Attardi", "r": "South Palm Beach City Council"}, {"n": "Rafael Pineiro", "r": "Mayor of South Palm Beach"}, {"n": "Raymond McMillan", "r": "South Palm Beach City Council"}, {"n": "Sandra Beckett", "r": "South Palm Beach City Council"}]}, {"m": "Tequesta", "p": [{"n": "Kyle Stone", "r": "Tequesta City Council"}, {"n": "Laurie Brandon", "r": "Tequesta City Council"}, {"n": "Molly Young", "r": "Mayor of Tequesta"}, {"n": "Patrick Painter", "r": "Tequesta City Council"}, {"n": "Rick Sartory", "r": "Tequesta City Council"}]}, {"m": "Wellington", "p": [{"n": "Maria Antuña", "r": "Wellington City Council"}, {"n": "Michael Napoleone", "r": "Mayor of Wellington"}, {"n": "Stephen A. Levin", "r": "Wellington City Council"}]}, {"m": "West Palm Beach", "p": [{"n": "Cathleen Ward", "r": "West Palm Beach City Council"}, {"n": "Christy Fox", "r": "West Palm Beach City Council"}, {"n": "Joseph A. Peduzzi", "r": "West Palm Beach City Council"}, {"n": "Keith A. James", "r": "Mayor of West Palm Beach"}, {"n": "Shalonda Warren", "r": "West Palm Beach City Council"}, {"n": "Stephen Sylvester", "r": "West Palm Beach City Council"}]}], "slug": "palm-beach"}, "12101": {"county": [{"n": "Al Hernandez", "r": "Pasco County School Board"}, {"n": "Brian Corley", "r": "Supervisor of Elections, Pasco County"}, {"n": "Chris Nocco", "r": "Sheriff, Pasco County"}, {"n": "Colleen Beaudoin", "r": "Pasco County School Board"}, {"n": "Cynthia Armstrong", "r": "Pasco County School Board"}, {"n": "Gary Joiner", "r": "Property Appraiser, Pasco County"}, {"n": "Jack Mariano", "r": "Commissioner, Pasco County"}, {"n": "Jessica Wright", "r": "Pasco County School Board"}, {"n": "Kathryn Starkey", "r": "Commissioner, Pasco County"}, {"n": "Lisa Yeager", "r": "Commissioner, Pasco County"}, {"n": "Megan Harding", "r": "Pasco County School Board"}, {"n": "Mike Fasano", "r": "Tax Collector, Pasco County"}, {"n": "Mike Wells", "r": "Property Appraiser, Pasco County"}, {"n": "Nikki Alvarez-Sowles", "r": "Clerk of Court, Pasco County"}, {"n": "Paula O'Neil", "r": "Clerk of Court, Pasco County"}, {"n": "Ronald Oakley", "r": "Commissioner, Pasco County"}, {"n": "Seth Weightman", "r": "Commissioner, Pasco County"}], "munis": [{"m": "Dade City", "p": [{"n": "Ann Cosentino", "r": "Dade City City Council"}, {"n": "James D. Shive", "r": "Dade City City Council"}, {"n": "Kristin Church", "r": "Dade City City Council"}, {"n": "Normita Woodard", "r": "Dade City City Council"}, {"n": "Scott Black", "r": "Mayor of Dade City"}]}, {"m": "New Port Richey", "p": [{"n": "Bertell Butler", "r": "New Port Richey City Council"}, {"n": "Brian Jonas", "r": "New Port Richey City Council"}, {"n": "Chopper Davis", "r": "Mayor of New Port Richey"}, {"n": "Matt Murphy", "r": "New Port Richey City Council"}, {"n": "Peter Altman", "r": "New Port Richey City Council"}]}, {"m": "Port Richey", "p": [{"n": "Chris Maher", "r": "Port Richey City Council"}, {"n": "John Eric Hoover", "r": "Mayor of Port Richey"}, {"n": "Lisa Burke", "r": "Port Richey City Council"}, {"n": "Robert Hubbard", "r": "Port Richey City Council"}]}, {"m": "San Antonio", "p": [{"n": "Blaze Drinkwine", "r": "San Antonio City Council"}, {"n": "Caitlin Bolender", "r": "San Antonio City Council"}, {"n": "John Vogel", "r": "Mayor of San Antonio"}, {"n": "Randy Huckabee", "r": "San Antonio City Council"}, {"n": "Sasha Madden", "r": "San Antonio City Council"}]}, {"m": "St. Leo", "p": [{"n": "Apollo Rodriguez", "r": "St. Leo City Council"}, {"n": "Curtis Dwyer", "r": "St. Leo City Council"}, {"n": "Donna DeWitt", "r": "St. Leo City Council"}, {"n": "Vincent D'Ambrosio", "r": "Mayor of St. Leo"}, {"n": "William E. Hamilton", "r": "St. Leo City Council"}]}, {"m": "Zephyrhills", "p": [{"n": "Charles E. Proctor", "r": "Zephyrhills City Council"}, {"n": "Jodi Wilkeson", "r": "Zephyrhills City Council"}, {"n": "Kenneth M. Burgess", "r": "Zephyrhills City Council"}, {"n": "Lance A. Smith", "r": "Zephyrhills City Council"}, {"n": "Melonie Bahr Monson", "r": "Mayor of Zephyrhills"}, {"n": "Steven F. Spina", "r": "Zephyrhills City Council"}]}], "slug": "pasco"}, "12103": {"county": [{"n": "Adam Ross", "r": "Tax Collector, Pinellas County"}, {"n": "Brian Scott", "r": "Commissioner, Pinellas County"}, {"n": "Caprice Edmond", "r": "Pinellas County School Board"}, {"n": "Caprice Edmond", "r": "Pinellas County School Board - Chair, District 7"}, {"n": "Charles Thomas", "r": "Tax Collector, Pinellas County"}, {"n": "Charlie Justice", "r": "Commissioner, Pinellas County"}, {"n": "Chris Latvala", "r": "Commissioner, Pinellas County"}, {"n": "Chris Scherer", "r": "Commissioner, Pinellas County"}, {"n": "Dave Eggers", "r": "Commissioner, Pinellas County"}, {"n": "Dawn M. Peters", "r": "Pinellas County School Board - Vice Chair, At Large 3"}, {"n": "Dawn Peters", "r": "Pinellas County School Board"}, {"n": "Eileen M. Long", "r": "Pinellas County School Board"}, {"n": "Eileen M. Long", "r": "Pinellas County School Board - District 4"}, {"n": "Janet Long", "r": "Commissioner, Pinellas County"}, {"n": "Julie Marcus", "r": "Supervisor of Elections, Pinellas County"}, {"n": "Kathleen Peters", "r": "Commissioner, Pinellas County"}, {"n": "Katie Blaxberg", "r": "Pinellas County School Board"}, {"n": "Katie Blaxberg", "r": "Pinellas County School Board - District 5"}, {"n": "Ken Burke", "r": "Clerk of Court, Pinellas County"}, {"n": "Laura Hine", "r": "Pinellas County School Board"}, {"n": "Laura Hine", "r": "Pinellas County School Board - At Large 1"}, {"n": "Lisa Cane", "r": "Pinellas County School Board"}, {"n": "Lisa N. Cane", "r": "Pinellas County School Board - At Large 2"}, {"n": "Mike Twitty", "r": "Property Appraiser, Pinellas County"}, {"n": "Rene Flowers", "r": "Commissioner, Pinellas County"}, {"n": "Robert Gualtieri", "r": "Sheriff, Pinellas County"}, {"n": "Stephanie Meyer", "r": "Pinellas County School Board - District 6"}, {"n": "Vince Nowicki", "r": "Commissioner, Pinellas County"}], "munis": [{"m": "Belleair", "p": [{"n": "Michael Wilkinson", "r": "Mayor of Belleair"}, {"n": "Patricia Barris", "r": "Belleair City Council"}, {"n": "Thomas E. Shelly", "r": "Belleair City Council"}, {"n": "Thomas Kelly", "r": "Belleair City Council"}, {"n": "Todd Jennings", "r": "Belleair City Council"}]}, {"m": "Belleair Beach", "p": [{"n": "Anders Wellings", "r": "Belleair Beach City Council"}, {"n": "Frank Bankard", "r": "Belleair Beach City Council"}, {"n": "Jody Shirley", "r": "Belleair Beach City Council"}, {"n": "Kimberly Shaw Elliott", "r": "Belleair Beach City Council"}, {"n": "Lloyd Roberts", "r": "Belleair Beach City Council"}, {"n": "Michael D. Gattis", "r": "Mayor of Belleair Beach"}, {"n": "Todd Harper", "r": "Belleair Beach City Council"}]}, {"m": "Belleair Bluffs", "p": [{"n": "Chris Arbutine", "r": "Mayor of Belleair Bluffs"}, {"n": "David Roberts", "r": "Belleair Bluffs City Council"}, {"n": "Joseph Barkley", "r": "Belleair Bluffs City Council"}, {"n": "Karen Rafferty", "r": "Belleair Bluffs City Council"}, {"n": "Suzy S. Sofer", "r": "Belleair Bluffs City Council"}]}, {"m": "Belleair Shore", "p": [{"n": "Daniel Storie", "r": "Belleair Shore City Council"}, {"n": "Michael Tolbert", "r": "Belleair Shore City Council"}, {"n": "Robert Lally", "r": "Belleair Shore City Council"}, {"n": "Steve Blume", "r": "Mayor of Belleair Shore"}, {"n": "Susan Cain", "r": "Belleair Shore City Council"}]}, {"m": "Clearwater", "p": [{"n": "Bruce Rector", "r": "Mayor of Clearwater"}, {"n": "David Allbritton", "r": "Clearwater City Council"}, {"n": "Lina Teixeira", "r": "Clearwater City Council"}, {"n": "Michael Mannino", "r": "Clearwater City Council"}, {"n": "Ryan Cotton", "r": "Clearwater City Council"}]}, {"m": "Dunedin", "p": [{"n": "Jeff Gow", "r": "Dunedin City Council"}, {"n": "Maureen 'Moe' Freaney", "r": "Mayor of Dunedin"}, {"n": "Robert Walker", "r": "Dunedin City Council"}, {"n": "Steven Sandbergen", "r": "Dunedin City Council"}, {"n": "William Dugard", "r": "Dunedin City Council"}]}, {"m": "Gulfport", "p": [{"n": "Jennifer Daunch", "r": "Gulfport City Council"}, {"n": "Karen Love", "r": "Mayor of Gulfport"}, {"n": "Marlene Shaw", "r": "Gulfport City Council"}, {"n": "Nancy Earley", "r": "Gulfport City Council"}]}, {"m": "Indian Rocks Beach", "p": [{"n": "Hilary King", "r": "Indian Rocks Beach City Council"}, {"n": "Janet Wilson", "r": "Indian Rocks Beach City Council"}, {"n": "John Bigelow", "r": "Indian Rocks Beach City Council"}, {"n": "Kellee Watt", "r": "Indian Rocks Beach City Council"}, {"n": "Lan Vaughan", "r": "Mayor of Indian Rocks Beach"}]}, {"m": "Indian Shores", "p": [{"n": "Diantha Schear", "r": "Mayor of Indian Shores"}, {"n": "Ellen Bauer", "r": "Indian Shores City Council"}, {"n": "Mark Housman", "r": "Indian Shores City Council"}, {"n": "Michael Howard", "r": "Indian Shores City Council"}, {"n": "Nicholas Menchise", "r": "Indian Shores City Council"}]}, {"m": "Kenneth City", "p": [{"n": "Bonnie A. Noble", "r": "Kenneth City City Council"}, {"n": "Donald Kinney", "r": "Kenneth City City Council"}, {"n": "Robert Arrison", "r": "Mayor of Kenneth City"}, {"n": "Tony Chan", "r": "Kenneth City City Council"}]}, {"m": "Largo", "p": [{"n": "Christopher Johnson", "r": "Largo City Council"}, {"n": "Curtis A. Holmes", "r": "Largo City Council"}, {"n": "Donna Holck", "r": "Largo City Council"}, {"n": "John Lauser", "r": "Largo City Council"}, {"n": "Michael DiBrizzi", "r": "Largo City Council"}, {"n": "Michael Smith", "r": "Largo City Council"}, {"n": "Woody Brown", "r": "Mayor of Largo"}]}, {"m": "Madeira Beach", "p": [{"n": "Anne-Marie Brooks", "r": "Mayor of Madeira Beach"}, {"n": "Charles Dillon", "r": "Madeira Beach City Council"}, {"n": "David Tagliarini", "r": "Madeira Beach City Council"}, {"n": "Eddie McGeehen", "r": "Madeira Beach City Council"}, {"n": "Housh Ghovaee", "r": "Madeira Beach City Council"}]}, {"m": "North Redington Beach", "p": [{"n": "Corey Thornton", "r": "North Redington Beach City Council"}, {"n": "Jay A. Super", "r": "Mayor of North Redington Beach"}, {"n": "John Messmore", "r": "North Redington Beach City Council"}, {"n": "Kevin Kennedy", "r": "North Redington Beach City Council"}, {"n": "Richard Nagrabski", "r": "North Redington Beach City Council"}]}, {"m": "Oldsmar", "p": [{"n": "Cyndi Olmstead", "r": "Oldsmar City Council"}, {"n": "Katie Gannon", "r": "Mayor of Oldsmar"}, {"n": "Sean Swauger", "r": "Oldsmar City Council"}, {"n": "Steve Graber", "r": "Oldsmar City Council"}, {"n": "Valerie Tatarzewksi", "r": "Oldsmar City Council"}]}, {"m": "Pinellas Park", "p": [{"n": "Keith V. Sabiel", "r": "Pinellas Park City Council"}, {"n": "Patti Reed", "r": "Pinellas Park City Council"}, {"n": "Ricky Butler", "r": "Pinellas Park City Council"}, {"n": "Sandra L. Bradbury", "r": "Mayor of Pinellas Park"}, {"n": "Tim Caddell", "r": "Pinellas Park City Council"}]}, {"m": "Redington Beach", "p": [{"n": "David Will", "r": "Mayor of Redington Beach"}, {"n": "James Murray", "r": "Redington Beach City Council"}, {"n": "Rich Cariello", "r": "Redington Beach City Council"}, {"n": "Tim Thompson", "r": "Redington Beach City Council"}]}, {"m": "Redington Shores", "p": [{"n": "CJ Hoyt", "r": "Redington Shores City Council"}, {"n": "Erin Schoos", "r": "Redington Shores City Council"}, {"n": "Larry Maynard", "r": "Redington Shores City Council"}, {"n": "Tom Kapper", "r": "Mayor of Redington Shores"}]}, {"m": "Safety Harbor", "p": [{"n": "Andy Steingold", "r": "Safety Harbor City Council"}, {"n": "Jacob Burnett", "r": "Safety Harbor City Council"}, {"n": "Joe Ayoub", "r": "Mayor of Safety Harbor"}, {"n": "Kevin Shanks", "r": "Safety Harbor City Council"}, {"n": "Nancy Besore", "r": "Safety Harbor City Council"}]}, {"m": "Seminole", "p": [{"n": "Alan Shields", "r": "Seminole City Council"}, {"n": "Christopher Burke", "r": "Seminole City Council"}, {"n": "James Quinn", "r": "Seminole City Council"}, {"n": "Latisha 'Trish' Springer", "r": "Seminole City Council"}, {"n": "Leslie Waters", "r": "Mayor of Seminole"}, {"n": "Raymond Beliveau", "r": "Seminole City Council"}, {"n": "Thomas Barnhorn", "r": "Seminole City Council"}]}, {"m": "South Pasadena", "p": [{"n": "Arthur Penny", "r": "Mayor of South Pasadena"}, {"n": "Gail Neidinger", "r": "South Pasadena City Council"}, {"n": "Lynda Thompson", "r": "South Pasadena City Council"}, {"n": "Mark McAlees", "r": "South Pasadena City Council"}, {"n": "Thomas B. Reid", "r": "South Pasadena City Council"}]}, {"m": "St. Pete Beach", "p": [{"n": "Al Causey", "r": "St. Pete Beach City Council"}, {"n": "Jon Maldonado", "r": "St. Pete Beach City Council"}, {"n": "Karen Marriott", "r": "St. Pete Beach City Council"}, {"n": "Lisa Robinson", "r": "St. Pete Beach City Council"}, {"n": "Scott Tate", "r": "Mayor of St. Pete Beach"}]}, {"m": "St. Petersburg", "p": [{"n": "Brandi Gabbard", "r": "St. Petersburg City Council"}, {"n": "Copley Gerdes", "r": "St. Petersburg City Council"}, {"n": "Corey Givens", "r": "St. Petersburg City Council"}, {"n": "Gina Driscoll", "r": "St. Petersburg City Council"}, {"n": "Kenneth T. Welch", "r": "Mayor of St. Petersburg"}, {"n": "Lisset Hanewicz", "r": "St. Petersburg City Council"}, {"n": "Mike Harting", "r": "St. Petersburg City Council"}, {"n": "Richie Floyd", "r": "St. Petersburg City Council"}]}, {"m": "Tarpon Springs", "p": [{"n": "David Banther", "r": "Tarpon Springs City Council"}, {"n": "Frank DiDonato", "r": "Tarpon Springs City Council"}, {"n": "John Koulianos", "r": "Mayor of Tarpon Springs"}, {"n": "Mike Eisner", "r": "Tarpon Springs City Council"}, {"n": "Panagiotis Koulias", "r": "Tarpon Springs City Council"}]}, {"m": "Treasure Island", "p": [{"n": "Arden Dickey", "r": "Treasure Island City Council"}, {"n": "Arthur Czyszczon", "r": "Treasure Island City Council"}, {"n": "Chris Clark", "r": "Treasure Island City Council"}, {"n": "John Doctor", "r": "Mayor of Treasure Island"}]}], "slug": "pinellas"}, "12105": {"county": [{"n": "Becky Troutman", "r": "Commissioner, Polk County"}, {"n": "Bill Braswell", "r": "Commissioner, Polk County"}, {"n": "Dr. William Allen", "r": "Polk County School Board - District 1"}, {"n": "George Lindsey", "r": "Commissioner, Polk County"}, {"n": "Grady Judd", "r": "Sheriff, Polk County"}, {"n": "Joe Tedder", "r": "Tax Collector, Polk County"}, {"n": "Justin Sharpless", "r": "Polk County School Board"}, {"n": "Kate Wallace", "r": "Polk County School Board - District 3"}, {"n": "Kay Fields", "r": "Polk County School Board"}, {"n": "Lisa Miller", "r": "Polk County School Board"}, {"n": "Lori Edwards", "r": "Supervisor of Elections, Polk County"}, {"n": "Marsha Faux", "r": "Property Appraiser, Polk County"}, {"n": "Martha Santiago", "r": "Commissioner, Polk County"}, {"n": "Melony Bell", "r": "Supervisor of Elections, Polk County"}, {"n": "Mike Scott", "r": "Commissioner, Polk County"}, {"n": "Neil Combee", "r": "Property Appraiser, Polk County"}, {"n": "Rick Nolte", "r": "Polk County School Board"}, {"n": "Rick Wilson", "r": "Commissioner, Polk County"}, {"n": "Sara Beth Reynolds Wyatt", "r": "Polk County School Board"}, {"n": "Sara Beth Wyatt", "r": "Polk County School Board - District 4"}, {"n": "Stacy Butterfield", "r": "Clerk of Court, Polk County"}, {"n": "Travis Keyes", "r": "Polk County School Board"}, {"n": "Travis L. Keyes", "r": "Polk County School Board - Vice Chair, District 2"}, {"n": "William Allen", "r": "Polk County School Board"}], "munis": [{"m": "Auburndale", "p": [{"n": "Alex Cam", "r": "Mayor of Auburndale"}, {"n": "Crystal Tijerina", "r": "Auburndale City Council"}, {"n": "Jordan Helms", "r": "Auburndale City Council"}, {"n": "Keith Cowie", "r": "Auburndale City Council"}, {"n": "Travis Avery", "r": "Auburndale City Council"}]}, {"m": "Bartow", "p": [{"n": "Gary Ball", "r": "Bartow City Council"}, {"n": "Laura Simpson", "r": "Bartow City Council"}, {"n": "Leo E. Longworth", "r": "Bartow City Council"}, {"n": "Tanya Tucker", "r": "Mayor of Bartow"}, {"n": "Trish Pfeiffer", "r": "Bartow City Council"}]}, {"m": "Davenport", "p": [{"n": "Donna Fellows-Coffey", "r": "Mayor of Davenport"}, {"n": "Frank Rivera", "r": "Davenport City Council"}, {"n": "Jeremy Clark", "r": "Davenport City Council"}, {"n": "Linda Robinson", "r": "Davenport City Council"}, {"n": "Tom Fellows", "r": "Davenport City Council"}]}, {"m": "Dundee", "p": [{"n": "Annette Wilson", "r": "Dundee City Council"}, {"n": "Joe Garrison", "r": "Mayor of Dundee"}, {"n": "Julia Hunt", "r": "Dundee City Council"}, {"n": "Mary Richardson", "r": "Dundee City Council"}, {"n": "Ray Hunt", "r": "Dundee City Council"}]}, {"m": "Eagle Lake", "p": [{"n": "Cory Coler", "r": "Mayor of Eagle Lake"}, {"n": "Kristen Pita", "r": "Eagle Lake City Council"}, {"n": "Randy Billings", "r": "Eagle Lake City Council"}, {"n": "Steven Metosh", "r": "Eagle Lake City Council"}, {"n": "Steven Williams", "r": "Eagle Lake City Council"}]}, {"m": "Fort Meade", "p": [{"n": "James E. Watts", "r": "Mayor of Fort Meade"}, {"n": "James W. Schaill", "r": "Fort Meade City Council"}, {"n": "Jaret Landon Williams", "r": "Fort Meade City Council"}, {"n": "Petrina McCutchen", "r": "Fort Meade City Council"}]}, {"m": "Frostproof", "p": [{"n": "Adam W. Greenway", "r": "Frostproof City Council"}, {"n": "Austin Gravley", "r": "Frostproof City Council"}, {"n": "Leslie Brewer", "r": "Frostproof City Council"}, {"n": "Michael Hutto", "r": "Mayor of Frostproof"}, {"n": "Tashana True", "r": "Frostproof City Council"}]}, {"m": "Haines City", "p": [{"n": "Anne Huffman", "r": "Haines City City Council"}, {"n": "Kimberly Downing", "r": "Haines City City Council"}, {"n": "Lekia Johnson", "r": "Haines City City Council"}, {"n": "Morris L. West", "r": "Haines City City Council"}, {"n": "Vernel Smith", "r": "Mayor of Haines City"}]}, {"m": "Highland Park", "p": [{"n": "Amanda Updike", "r": "Highland Park City Council"}, {"n": "Steve Railey", "r": "Highland Park City Council"}]}, {"m": "Hillcrest Heights", "p": [{"n": "Jason Harmeling", "r": "Hillcrest Heights City Council"}, {"n": "Jerry Dohoney", "r": "Hillcrest Heights City Council"}, {"n": "Michael Bishop", "r": "Mayor of Hillcrest Heights"}, {"n": "Richard Lee", "r": "Hillcrest Heights City Council"}, {"n": "Sam Knight", "r": "Hillcrest Heights City Council"}]}, {"m": "Lake Alfred", "p": [{"n": "Brent Eden", "r": "Lake Alfred City Council"}, {"n": "Jack Dearmin", "r": "Lake Alfred City Council"}, {"n": "Mac Fuller", "r": "Mayor of Lake Alfred"}, {"n": "Nancy Z. Daley", "r": "Lake Alfred City Council"}, {"n": "Ronnie Robinson", "r": "Lake Alfred City Council"}]}, {"m": "Lake Hamilton", "p": [{"n": "Carmen Demanche", "r": "Lake Hamilton City Council"}, {"n": "Joshua Collier", "r": "Lake Hamilton City Council"}, {"n": "Marsol Ortega", "r": "Lake Hamilton City Council"}, {"n": "Phyllis Hall", "r": "Mayor of Lake Hamilton"}, {"n": "Robert Mathis", "r": "Lake Hamilton City Council"}]}, {"m": "Lake Wales", "p": [{"n": "Carol Gillespie", "r": "Lake Wales City Council"}, {"n": "Daniel Williams", "r": "Lake Wales City Council"}, {"n": "Jack Hilligoss", "r": "Mayor of Lake Wales"}, {"n": "Keith Thompson", "r": "Lake Wales City Council"}, {"n": "Terri Miller", "r": "Lake Wales City Council"}]}, {"m": "Lakeland", "p": [{"n": "Ashley C. Troutman", "r": "Lakeland City Council"}, {"n": "Chad McLeod", "r": "Lakeland City Council"}, {"n": "Guy LaLonde", "r": "Lakeland City Council"}, {"n": "Mike Musick", "r": "Lakeland City Council"}, {"n": "Sara R. McCarley", "r": "Mayor of Lakeland"}, {"n": "Stephanie Madden", "r": "Lakeland City Council"}, {"n": "Terry Coney", "r": "Lakeland City Council"}]}, {"m": "Mulberry", "p": [{"n": "Collins L. Smith", "r": "Mulberry City Council"}, {"n": "Dawn McDonald", "r": "Mulberry City Council"}, {"n": "George H. Hatch", "r": "Mayor of Mulberry"}, {"n": "Kathryn Smith Barsotti", "r": "Mulberry City Council"}, {"n": "Neil Devine", "r": "Mulberry City Council"}, {"n": "Rosa Ayersman", "r": "Mulberry City Council"}]}, {"m": "Polk City", "p": [{"n": "Brian Knouff", "r": "Polk City City Council"}, {"n": "Donna Martin", "r": "Polk City City Council"}, {"n": "Joe LaCascia", "r": "Mayor of Polk City"}, {"n": "Micheal T. Blethen", "r": "Polk City City Council"}, {"n": "Rick Wilson", "r": "Polk City City Council"}]}, {"m": "Winter Haven", "p": [{"n": "Chad Davis", "r": "Winter Haven City Council"}, {"n": "Clifton E. Dollison", "r": "Winter Haven City Council"}, {"n": "L. Tracy Mercer", "r": "Winter Haven City Council"}, {"n": "Nathaniel J. Birdsong", "r": "Winter Haven City Council"}, {"n": "William B. Yates", "r": "Mayor of Winter Haven"}]}], "slug": "polk"}, "12107": {"county": [{"n": "Bill Pickens", "r": "Commissioner, Putnam County"}, {"n": "Brenda Bridges", "r": "Tax Collector, Putnam County"}, {"n": "Charles Overturf", "r": "Supervisor of Elections, Putnam County"}, {"n": "Clay Davis", "r": "Property Appraiser, Putnam County"}, {"n": "David Buckles", "r": "Putnam County School Board"}, {"n": "H.D. DeLoach", "r": "Sheriff, Putnam County"}, {"n": "Holly H. Pickens", "r": "Putnam County School Board"}, {"n": "Larry Harvey", "r": "Commissioner, Putnam County"}, {"n": "Linda A. Wagner", "r": "Putnam County School Board"}, {"n": "Linda Myers", "r": "Tax Collector, Putnam County"}, {"n": "Paul Adamczyk", "r": "Commissioner, Putnam County"}, {"n": "Phil Leary", "r": "Putnam County School Board"}, {"n": "Sandra \"Sandy\" Gilyard", "r": "Putnam County School Board"}, {"n": "Terry Turner", "r": "Commissioner, Putnam County"}, {"n": "Tim Parker", "r": "Property Appraiser, Putnam County"}, {"n": "Tim Smith", "r": "Clerk of Court, Putnam County"}, {"n": "Walton Pellicer", "r": "Commissioner, Putnam County"}], "munis": [{"m": "Crescent City", "p": [{"n": "Cynthia Burton", "r": "Crescent City City Council"}, {"n": "Linda Moore", "r": "Crescent City City Council"}, {"n": "Lisa Kane DeVitto", "r": "Crescent City City Council"}, {"n": "Michele Myers", "r": "Mayor of Crescent City"}, {"n": "William Laurie", "r": "Crescent City City Council"}]}, {"m": "Interlachen", "p": [{"n": "Anna Rose Larson", "r": "Interlachen City Council"}, {"n": "Beverly Bakker", "r": "Interlachen City Council"}, {"n": "Carolyn Bennett", "r": "Interlachen City Council"}, {"n": "Carolyn Meadows", "r": "Interlachen City Council"}, {"n": "James R. Hanes", "r": "Mayor of Interlachen"}, {"n": "Joni Conner", "r": "Interlachen City Council"}]}, {"m": "Palatka", "p": [{"n": "Annie H. Davis", "r": "Palatka City Council"}, {"n": "Justin R. Campbell", "r": "Palatka City Council"}, {"n": "Roberta Correa", "r": "Mayor of Palatka"}, {"n": "Rufus J. Borom", "r": "Palatka City Council"}, {"n": "Will Jones", "r": "Palatka City Council"}]}, {"m": "Pomona Park", "p": [{"n": "Alisha Kuleski", "r": "Pomona Park City Council"}, {"n": "Anthony Cuevas", "r": "Mayor of Pomona Park"}, {"n": "CarrieAnn Evans", "r": "Pomona Park City Council"}, {"n": "Donna Cooney", "r": "Pomona Park City Council"}, {"n": "Mark Swanson", "r": "Pomona Park City Council"}, {"n": "Mike Rohrabough", "r": "Pomona Park City Council"}, {"n": "Pat Mead", "r": "Pomona Park City Council"}]}, {"m": "Welaka", "p": [{"n": "Kathy Washington", "r": "Mayor of Welaka"}, {"n": "Kenneth Pagano", "r": "Welaka City Council"}, {"n": "Sandra Walker", "r": "Welaka City Council"}, {"n": "Thomas Emerson", "r": "Welaka City Council"}, {"n": "Tonya Long", "r": "Welaka City Council"}]}], "slug": "putnam"}, "12109": {"county": [{"n": "Ann Taylor", "r": "Commissioner, St. Johns County"}, {"n": "Beverly Slough", "r": "St. Johns County School Board"}, {"n": "Brandon Patty", "r": "Clerk of Court, St. Johns County"}, {"n": "Christian Whitehurst", "r": "Commissioner, St. Johns County"}, {"n": "Clay Murphy", "r": "Commissioner, St. Johns County"}, {"n": "Dennis Hollingsworth", "r": "Tax Collector, St. Johns County"}, {"n": "Eddie Creamer", "r": "Property Appraiser, St. Johns County"}, {"n": "Henry Dean", "r": "Commissioner, St. Johns County"}, {"n": "Jennifer Collins", "r": "St. Johns County School Board"}, {"n": "Jennifer Ravan", "r": "Tax Collector, St. Johns County"}, {"n": "Kelly Barrera", "r": "St. Johns County School Board"}, {"n": "Krista Joseph", "r": "Commissioner, St. Johns County"}, {"n": "Linda Thomson", "r": "St. Johns County School Board"}, {"n": "Paul Waldron", "r": "Commissioner, St. Johns County"}, {"n": "Rob Hardwick", "r": "Sheriff, St. Johns County"}, {"n": "Roy Alaimo", "r": "Commissioner, St. Johns County"}, {"n": "Sarah Arnold", "r": "Commissioner, St. Johns County"}, {"n": "Vicky Oakes", "r": "Supervisor of Elections, St. Johns County"}], "munis": [{"m": "St. Augustine", "p": [{"n": "Barbara Blonder", "r": "St. Augustine City Council"}, {"n": "Cynthia Garris", "r": "St. Augustine City Council"}, {"n": "James T. Springfield", "r": "St. Augustine City Council"}, {"n": "Jon DePreter", "r": "St. Augustine City Council"}, {"n": "Nancy Sikes-Kline", "r": "Mayor of St. Augustine"}]}, {"m": "St. Augustine Beach", "p": [{"n": "Beth Sweeny", "r": "Mayor of St. Augustine Beach"}, {"n": "Donald Samora", "r": "St. Augustine Beach City Council"}, {"n": "Dylan Rumrell", "r": "St. Augustine Beach City Council"}, {"n": "Undine George", "r": "St. Augustine Beach City Council"}, {"n": "Virginia Snyder Morgan", "r": "St. Augustine Beach City Council"}]}], "slug": "st-johns"}, "12111": {"county": [{"n": "Cathy Townsend", "r": "Commissioner, St. Lucie County"}, {"n": "Christopher Craft", "r": "Tax Collector, St. Lucie County"}, {"n": "Christopher Dzadovsky", "r": "Commissioner, St. Lucie County"}, {"n": "Debbie Hawley", "r": "St. Lucie County School Board"}, {"n": "Donna Mills", "r": "St. Lucie County School Board"}, {"n": "Erin Lowry", "r": "Commissioner, St. Lucie County"}, {"n": "Gertrude Walker", "r": "Supervisor of Elections, St. Lucie County"}, {"n": "James Clasby", "r": "Commissioner, St. Lucie County"}, {"n": "Jamie Fowler", "r": "Commissioner, St. Lucie County"}, {"n": "Jennifer Anne Richardson", "r": "St. Lucie County School Board"}, {"n": "Keith Pearson", "r": "Sheriff, St. Lucie County"}, {"n": "Larry Leet", "r": "Commissioner, St. Lucie County"}, {"n": "Linda Bartz", "r": "Commissioner, St. Lucie County"}, {"n": "Michelle Franklin", "r": "Property Appraiser, St. Lucie County"}, {"n": "Michelle Miller", "r": "Clerk of Court, St. Lucie County"}, {"n": "Richard DelToro", "r": "Sheriff, St. Lucie County"}, {"n": "Terissa Aronson", "r": "St. Lucie County School Board"}, {"n": "Troy Ingersoll", "r": "St. Lucie County School Board"}], "munis": [{"m": "Fort Pierce", "p": [{"n": "Arnold S. Gaines", "r": "Fort Pierce City Council"}, {"n": "Curtis Johnson", "r": "Fort Pierce City Council"}, {"n": "James Taylor", "r": "Fort Pierce City Council"}, {"n": "Linda Hudson", "r": "Mayor of Fort Pierce"}, {"n": "Michael Broderick", "r": "Fort Pierce City Council"}]}, {"m": "Port St. Lucie", "p": [{"n": "Anthony Bonna", "r": "Port St. Lucie City Council"}, {"n": "David Pickett", "r": "Port St. Lucie City Council"}, {"n": "Jolien Caraballo", "r": "Port St. Lucie City Council"}, {"n": "Shannon M. Martin", "r": "Mayor of Port St. Lucie"}, {"n": "Stephanie Morgan", "r": "Port St. Lucie City Council"}]}, {"m": "St. Lucie Village", "p": [{"n": "Dale Reed", "r": "St. Lucie Village City Council"}, {"n": "John Langel", "r": "St. Lucie Village City Council"}, {"n": "Lisa K. Price", "r": "St. Lucie Village City Council"}, {"n": "Paul Sinnott", "r": "St. Lucie Village City Council"}, {"n": "William G. Thiess", "r": "Mayor of St. Lucie Village"}]}], "slug": "st-lucie"}, "12113": {"county": [{"n": "Bobby Burkett", "r": "Commissioner, Santa Rosa County"}, {"n": "Carol Boston", "r": "Santa Rosa County School Board"}, {"n": "Charles \"Charlie\" Elliott", "r": "Santa Rosa County School Board"}, {"n": "Colten Wright", "r": "Commissioner, Santa Rosa County"}, {"n": "Donald Spencer", "r": "Clerk of Court, Santa Rosa County"}, {"n": "Elizabeth Hewey", "r": "Santa Rosa County School Board"}, {"n": "Gregory Brown", "r": "Property Appraiser, Santa Rosa County"}, {"n": "James Calkins", "r": "Commissioner, Santa Rosa County"}, {"n": "Jason English", "r": "Clerk of Court, Santa Rosa County"}, {"n": "Kerry Smith", "r": "Commissioner, Santa Rosa County"}, {"n": "Linda Sanborn", "r": "Santa Rosa County School Board"}, {"n": "Ray Eddington", "r": "Commissioner, Santa Rosa County"}, {"n": "Robert Johnson", "r": "Sheriff, Santa Rosa County"}, {"n": "Sam Parker", "r": "Commissioner, Santa Rosa County"}, {"n": "Scott Peden", "r": "Santa Rosa County School Board"}, {"n": "Stan Nichols", "r": "Tax Collector, Santa Rosa County"}, {"n": "Tappie Villane", "r": "Supervisor of Elections, Santa Rosa County"}], "munis": [{"m": "Gulf Breeze", "p": [{"n": "J. B. Schluter", "r": "Mayor of Gulf Breeze"}, {"n": "Randy Hebert", "r": "Gulf Breeze City Council"}, {"n": "Tim Burr", "r": "Gulf Breeze City Council"}, {"n": "Todd Torgersen", "r": "Gulf Breeze City Council"}]}, {"m": "Jay", "p": [{"n": "Brent Freeman", "r": "Jay City Council"}, {"n": "Cade Diamond", "r": "Jay City Council"}, {"n": "Nina Hendricks", "r": "Jay City Council"}, {"n": "Shon Owens", "r": "Mayor of Jay"}]}, {"m": "Milton", "p": [{"n": "Ashley Fretwell", "r": "Milton City Council"}, {"n": "Casey Powell", "r": "Milton City Council"}, {"n": "Gavin Hawthorne", "r": "Milton City Council"}, {"n": "Heather F. Lindsay", "r": "Mayor of Milton"}, {"n": "Larry McKee", "r": "Milton City Council"}, {"n": "Marilynn Farrow", "r": "Milton City Council"}, {"n": "Mike Cusak", "r": "Milton City Council"}, {"n": "Robert Leek", "r": "Milton City Council"}, {"n": "Tom Powers", "r": "Milton City Council"}]}], "slug": "santa-rosa"}, "12115": {"county": [{"n": "Barbara Ford-Coates", "r": "Tax Collector, Sarasota County"}, {"n": "Bill Furst", "r": "Property Appraiser, Sarasota County"}, {"n": "Bridget Ziegler", "r": "Sarasota County School Board"}, {"n": "Joseph Neunder", "r": "Commissioner, Sarasota County"}, {"n": "Karen Rushing", "r": "Clerk of Court, Sarasota County"}, {"n": "Kurt Hoffman", "r": "Sheriff, Sarasota County"}, {"n": "Liz Barker", "r": "Sarasota County School Board"}, {"n": "Mark Smith", "r": "Commissioner, Sarasota County"}, {"n": "Michael Moran", "r": "Tax Collector, Sarasota County"}, {"n": "Neil Rainford", "r": "Commissioner, Sarasota County"}, {"n": "Robyn A. Marinelli", "r": "Sarasota County School Board"}, {"n": "Ron Cutsinger", "r": "Commissioner, Sarasota County"}, {"n": "Ron Turner", "r": "Supervisor of Elections, Sarasota County"}, {"n": "Timothy Enos", "r": "Sarasota County School Board"}, {"n": "Tom Edwards", "r": "Sarasota County School Board"}], "munis": [{"m": "Longboat Key", "p": [{"n": "BJ Bishop", "r": "Longboat Key City Council"}, {"n": "Debra Williams", "r": "Mayor of Longboat Key"}, {"n": "Gary Coffin", "r": "Longboat Key City Council"}, {"n": "Nick Gladding", "r": "Longboat Key City Council"}, {"n": "Penelope Gold", "r": "Longboat Key City Council"}, {"n": "Sarah Karon", "r": "Longboat Key City Council"}, {"n": "Steve Branham", "r": "Longboat Key City Council"}]}, {"m": "North Port", "p": [{"n": "Barbara Langdon", "r": "North Port City Council"}, {"n": "David Duval", "r": "North Port City Council"}, {"n": "Demetrius Petrow", "r": "North Port City Council"}, {"n": "Pete Emrich", "r": "Mayor of North Port"}, {"n": "Phil Stokes", "r": "North Port City Council"}]}, {"m": "Sarasota", "p": [{"n": "Debbie Trice", "r": "Mayor of Sarasota"}, {"n": "Jen Ahearn-Koch", "r": "Sarasota City Council"}, {"n": "Kathy Kelley Ohlrich", "r": "Sarasota City Council"}, {"n": "Kyle Battie", "r": "Sarasota City Council"}, {"n": "Liz Alpert", "r": "Sarasota City Council"}]}, {"m": "Venice", "p": [{"n": "Jim Boldt", "r": "Venice City Council"}, {"n": "Kevin Engelke", "r": "Venice City Council"}, {"n": "Lloyd Weed", "r": "Venice City Council"}, {"n": "Nicholas Pachota", "r": "Mayor of Venice"}, {"n": "Rachel Frank", "r": "Venice City Council"}, {"n": "Rick Howard", "r": "Venice City Council"}, {"n": "Ron Smith", "r": "Venice City Council"}]}], "slug": "sarasota"}, "12117": {"county": [{"n": "Abby Sanchez", "r": "Seminole County School Board"}, {"n": "Amy Lockhart", "r": "Commissioner, Seminole County"}, {"n": "Amy Pennock", "r": "Supervisor of Elections, Seminole County"}, {"n": "Andria Herr", "r": "Commissioner, Seminole County"}, {"n": "Autumn Huff Garick", "r": "Seminole County School Board"}, {"n": "Bob Dallari", "r": "Commissioner, Seminole County"}, {"n": "Chris Anderson", "r": "Supervisor of Elections, Seminole County"}, {"n": "David Johnson", "r": "Property Appraiser, Seminole County"}, {"n": "Dennis Lemma", "r": "Sheriff, Seminole County"}, {"n": "Grant Maloy", "r": "Clerk of Court, Seminole County"}, {"n": "J.R. Kroll", "r": "Tax Collector, Seminole County"}, {"n": "Jacqueline Kelley Davis", "r": "Seminole County School Board"}, {"n": "Jay Zembower", "r": "Commissioner, Seminole County"}, {"n": "Joel Greenberg", "r": "Tax Collector, Seminole County"}, {"n": "Kristine L. Kraus", "r": "Seminole County School Board"}, {"n": "Lee Constantine", "r": "Commissioner, Seminole County"}, {"n": "Robin Dehlinger", "r": "Seminole County School Board"}], "munis": [{"m": "Altamonte Springs", "p": [{"n": "Bob O'Malley", "r": "Altamonte Springs City Council"}, {"n": "Jim Turney", "r": "Altamonte Springs City Council"}, {"n": "Mike Brunscheen", "r": "Altamonte Springs City Council"}, {"n": "Patricia J. Bates", "r": "Mayor of Altamonte Springs"}, {"n": "Sarah Reece", "r": "Altamonte Springs City Council"}]}, {"m": "Casselberry", "p": [{"n": "Anthony Aramendia", "r": "Casselberry City Council"}, {"n": "David Henson", "r": "Mayor of Casselberry"}, {"n": "Mark Busch", "r": "Casselberry City Council"}, {"n": "Nancy Divita", "r": "Casselberry City Council"}, {"n": "Thomas E. Kirk", "r": "Casselberry City Council"}]}, {"m": "Lake Mary", "p": [{"n": "David J. Mealor", "r": "Mayor of Lake Mary"}, {"n": "Jordan S. Smith", "r": "Lake Mary City Council"}, {"n": "Justin York", "r": "Lake Mary City Council"}, {"n": "Justin York", "r": "Lake Mary City Council"}]}, {"m": "Longwood", "p": [{"n": "Abby Shoemaker", "r": "Longwood City Council"}, {"n": "Brian D. Sackett", "r": "Longwood City Council"}, {"n": "Matt Morgan", "r": "Longwood City Council"}, {"n": "Matthew McMillan", "r": "Longwood City Council"}, {"n": "Tony Boni", "r": "Mayor of Longwood"}]}, {"m": "Oviedo", "p": [{"n": "Alan Ott", "r": "Oviedo City Council"}, {"n": "Jeff Boddiford", "r": "Oviedo City Council"}, {"n": "Keith Britton", "r": "Oviedo City Council"}, {"n": "Megan Sladek", "r": "Mayor of Oviedo"}, {"n": "Natalie Teuchert", "r": "Oviedo City Council"}]}, {"m": "Sanford", "p": [{"n": "Art Woodruff", "r": "Mayor of Sanford"}, {"n": "Claudia Thomas", "r": "Sanford City Council"}, {"n": "Kerry S. Wiggins", "r": "Sanford City Council"}, {"n": "Patrick Austin", "r": "Sanford City Council"}, {"n": "Sheena Britton", "r": "Sanford City Council"}]}, {"m": "Winter Springs", "p": [{"n": "Cade Resnick", "r": "Winter Springs City Council"}, {"n": "Kevin McCann", "r": "Mayor of Winter Springs"}, {"n": "Mark Caruso", "r": "Winter Springs City Council"}, {"n": "Paul Diaz", "r": "Winter Springs City Council"}, {"n": "Sarah Baker", "r": "Winter Springs City Council"}, {"n": "Victoria Bruce", "r": "Winter Springs City Council"}]}], "slug": "seminole"}, "12119": {"county": [{"n": "Andrew Bilardello", "r": "Commissioner, Sumter County"}, {"n": "Brett Sherman", "r": "Sumter County School Board"}, {"n": "Craig Estep", "r": "Commissioner, Sumter County"}, {"n": "David A Williams", "r": "Sumter County School Board"}, {"n": "Donald Wiley", "r": "Commissioner, Sumter County"}, {"n": "Erin Munz", "r": "Clerk of Court, Sumter County"}, {"n": "Gloria Hayward", "r": "Clerk of Court, Sumter County"}, {"n": "Jeff Bogue", "r": "Commissioner, Sumter County"}, {"n": "Joey Hooten", "r": "Property Appraiser, Sumter County"}, {"n": "Kathie L Joiner", "r": "Sumter County School Board"}, {"n": "Oren Miller", "r": "Commissioner, Sumter County"}, {"n": "Patrick Breeden", "r": "Sheriff, Sumter County"}, {"n": "Randy Mask", "r": "Tax Collector, Sumter County"}, {"n": "Roberta Ulrich", "r": "Commissioner, Sumter County"}, {"n": "Russell G Hogan", "r": "Sumter County School Board"}, {"n": "Russell Hogan", "r": "Sumter County School Board"}, {"n": "Sally Moss", "r": "Sumter County School Board"}, {"n": "William Farmer", "r": "Sheriff, Sumter County"}, {"n": "William Keen", "r": "Supervisor of Elections, Sumter County"}], "munis": [{"m": "Bushnell", "p": [{"n": "Dale Barnes", "r": "Bushnell City Council"}, {"n": "Dale Swain", "r": "Bushnell City Council"}, {"n": "Jessie Simmons", "r": "Mayor of Bushnell"}, {"n": "Karen Davis", "r": "Bushnell City Council"}, {"n": "Victoria Summerlin", "r": "Bushnell City Council"}]}, {"m": "Center Hill", "p": [{"n": "Billy Bowles", "r": "Center Hill City Council"}, {"n": "Dan Shimasaki", "r": "Center Hill City Council"}, {"n": "Donnie Buckner", "r": "Center Hill City Council"}, {"n": "Ginger Howard", "r": "Mayor of Center Hill"}, {"n": "Jack Nash", "r": "Center Hill City Council"}, {"n": "Tonota Parker", "r": "Center Hill City Council"}]}, {"m": "Coleman", "p": [{"n": "Charles Felton", "r": "Coleman City Council"}, {"n": "James Sears", "r": "Coleman City Council"}, {"n": "Ke'Marein Williams", "r": "Coleman City Council"}, {"n": "Mary Stone", "r": "Coleman City Council"}, {"n": "Milton Hill", "r": "Mayor of Coleman"}, {"n": "Sonia Shearer", "r": "Coleman City Council"}]}, {"m": "Webster", "p": [{"n": "Allen Dorsey", "r": "Webster City Council"}, {"n": "Ana Vigoa", "r": "Mayor of Webster"}, {"n": "Loretta Ramirez", "r": "Webster City Council"}, {"n": "Nancy Cherry", "r": "Webster City Council"}, {"n": "Shadae Solomon", "r": "Webster City Council"}]}, {"m": "Wildwood", "p": [{"n": "Ed Wolf", "r": "Mayor of Wildwood"}, {"n": "Joe Elliott", "r": "Wildwood City Council"}, {"n": "Julian A. Green", "r": "Wildwood City Council"}, {"n": "Marcos Flores", "r": "Wildwood City Council"}, {"n": "Pamala Harrison-Bivins", "r": "Wildwood City Council"}]}], "slug": "sumter"}, "12121": {"county": [{"n": "Barry Baker", "r": "Clerk of Court, Suwannee County"}, {"n": "Edward DaSilva", "r": "Suwannee County School Board"}, {"n": "Franklin White", "r": "Commissioner, Suwannee County"}, {"n": "Jennifer Kinsey", "r": "Supervisor of Elections, Suwannee County"}, {"n": "Lamar Jenkins", "r": "Property Appraiser, Suwannee County"}, {"n": "Leo Mobley", "r": "Commissioner, Suwannee County"}, {"n": "Lesley Fry", "r": "Suwannee County School Board"}, {"n": "Maurice Perkins", "r": "Commissioner, Suwannee County"}, {"n": "Norman Crawford", "r": "Suwannee County School Board"}, {"n": "Richard Gamble", "r": "Property Appraiser, Suwannee County"}, {"n": "Ronald White", "r": "Suwannee County School Board"}, {"n": "Samuel St. John", "r": "Sheriff, Suwannee County"}, {"n": "Sharon Jordan", "r": "Tax Collector, Suwannee County"}, {"n": "Tim Alcorn", "r": "Suwannee County School Board"}, {"n": "Travis Land", "r": "Commissioner, Suwannee County"}, {"n": "William Hale", "r": "Commissioner, Suwannee County"}], "munis": [{"m": "Branford", "p": [{"n": "Alice Childress", "r": "Branford City Council"}, {"n": "Jay Hatch", "r": "Branford City Council"}, {"n": "Ken Saunders", "r": "Mayor of Branford"}, {"n": "Kevin Knighton", "r": "Branford City Council"}, {"n": "Tera Kelley", "r": "Branford City Council"}]}, {"m": "Live Oak", "p": [{"n": "David Alford", "r": "Live Oak City Council"}, {"n": "Frank C. Davis", "r": "Mayor of Live Oak"}, {"n": "Gladys Owens", "r": "Live Oak City Council"}, {"n": "Matthew Campbell", "r": "Live Oak City Council"}, {"n": "Tommie Jefferson", "r": "Live Oak City Council"}, {"n": "Vanessa Brown Robinson", "r": "Live Oak City Council"}]}], "slug": "suwannee"}, "12123": {"county": [{"n": "Annie Mae Murphy", "r": "Clerk of Court, Taylor County"}, {"n": "Bonnie Sue Agner", "r": "Taylor County School Board"}, {"n": "Brenda Carlton", "r": "Taylor County School Board"}, {"n": "Bruce Ratliff", "r": "Property Appraiser, Taylor County"}, {"n": "Dana Southerland", "r": "Supervisor of Elections, Taylor County"}, {"n": "Danny Lundy", "r": "Taylor County School Board"}, {"n": "Deidra Dunnell", "r": "Taylor County School Board"}, {"n": "Gary Knowles", "r": "Clerk of Court, Taylor County"}, {"n": "Jamie English", "r": "Commissioner, Taylor County"}, {"n": "Jeanne Ellen Mathis", "r": "Taylor County School Board"}, {"n": "Jim Moody", "r": "Commissioner, Taylor County"}, {"n": "Mark Wiggins", "r": "Tax Collector, Taylor County"}, {"n": "Michael Newman", "r": "Commissioner, Taylor County"}, {"n": "Pam Feagle", "r": "Commissioner, Taylor County"}, {"n": "Shawna Beach", "r": "Property Appraiser, Taylor County"}, {"n": "Thomas Demps", "r": "Commissioner, Taylor County"}, {"n": "Wayne Padgett", "r": "Sheriff, Taylor County"}], "munis": [{"m": "Perry", "p": [{"n": "Diane C. Landry", "r": "Perry City Council"}, {"n": "Shirlie Hampton", "r": "Perry City Council"}, {"n": "Venita Woodfaulk", "r": "Perry City Council"}, {"n": "Ward Ketring", "r": "Mayor of Perry"}, {"n": "William E. Brynes", "r": "Perry City Council"}]}], "slug": "taylor"}, "12125": {"county": [{"n": "Brad Whitehead", "r": "Sheriff, Union County"}, {"n": "Bruce Dukes", "r": "Property Appraiser, Union County"}, {"n": "Channing Dobbs", "r": "Commissioner, Union County"}, {"n": "Christopher Hodgson", "r": "Union County School Board"}, {"n": "Curtis Clyatt", "r": "Union County School Board"}, {"n": "Deborah Osborne", "r": "Supervisor of Elections, Union County"}, {"n": "Donna Jackson", "r": "Commissioner, Union County"}, {"n": "James Tallman", "r": "Commissioner, Union County"}, {"n": "Kellie Rhoades", "r": "Clerk of Court, Union County"}, {"n": "Lisa Johnson", "r": "Tax Collector, Union County"}, {"n": "Mac Johns", "r": "Commissioner, Union County"}, {"n": "Melissa McNeal", "r": "Commissioner, Union County"}, {"n": "Rebekah G. Raulerson", "r": "Union County School Board"}, {"n": "Russell Gordon Jr.", "r": "Union County School Board"}, {"n": "Terra T Johnson", "r": "Union County School Board"}, {"n": "Travis Croft", "r": "Commissioner, Union County"}], "munis": [{"m": "Lake Butler", "p": [{"n": "Annette G. Redman", "r": "Lake Butler City Council"}, {"n": "Fred Sirmones", "r": "Lake Butler City Council"}, {"n": "Jill Melissa Hendrix", "r": "Mayor of Lake Butler"}, {"n": "Joe Stephenson", "r": "Lake Butler City Council"}, {"n": "Rondoll Huggins", "r": "Lake Butler City Council"}]}, {"m": "Raiford", "p": [{"n": "Benita Griffis", "r": "Raiford City Council"}, {"n": "Deana Rainey", "r": "Raiford City Council"}, {"n": "Lamar Griffis", "r": "Mayor of Raiford"}, {"n": "Randall Griffis", "r": "Raiford City Council"}, {"n": "Sherry Richard", "r": "Raiford City Council"}]}, {"m": "Worthington Springs", "p": [{"n": "Nita Elixson", "r": "Worthington Springs City Council"}, {"n": "Pam Williams", "r": "Worthington Springs City Council"}, {"n": "Shane Massey", "r": "Worthington Springs City Council"}, {"n": "Travis Hemphill", "r": "Worthington Springs City Council"}]}], "slug": "union"}, "12127": {"county": [{"n": "Danny Robins", "r": "Council Member, Volusia County"}, {"n": "David Santiago", "r": "Council Member, Volusia County"}, {"n": "Don Dempsey", "r": "Council Member, Volusia County"}, {"n": "Donna Brosemer", "r": "Volusia County School Board"}, {"n": "Ed Kelley", "r": "Council Member, Volusia County"}, {"n": "Jake Johansson", "r": "Council Member, Volusia County"}, {"n": "Jamie Haynes", "r": "Volusia County School Board"}, {"n": "Jeff Brower", "r": "Council Member, Volusia County"}, {"n": "Jessie Thompson", "r": "Volusia County School Board"}, {"n": "Krista Goodrich", "r": "Volusia County School Board"}, {"n": "Laura Roth", "r": "Clerk of Court, Volusia County"}, {"n": "Laurence Bartlett", "r": "Property Appraiser, Volusia County"}, {"n": "Lisa Lewis", "r": "Supervisor of Elections, Volusia County"}, {"n": "Matt Reinhart", "r": "Council Member, Volusia County"}, {"n": "Michael Chitwood", "r": "Sheriff, Volusia County"}, {"n": "Rhonda Orr", "r": "Tax Collector, Volusia County"}, {"n": "Ruben Colon", "r": "Volusia County School Board"}, {"n": "Troy Kent", "r": "Council Member, Volusia County"}, {"n": "Will Roberts", "r": "Tax Collector, Volusia County"}], "munis": [{"m": "Daytona Beach", "p": [{"n": "Dannette Henry", "r": "Daytona Beach City Council"}, {"n": "Derrick L. Henry", "r": "Mayor of Daytona Beach"}, {"n": "Ken Strickland", "r": "Daytona Beach City Council"}, {"n": "Monica Paris", "r": "Daytona Beach City Council"}, {"n": "Paula R. Reed", "r": "Daytona Beach City Council"}, {"n": "Quanita May", "r": "Daytona Beach City Council"}, {"n": "Stacy Cantu", "r": "Daytona Beach City Council"}]}, {"m": "Daytona Beach Shores", "p": [{"n": "Chris Conomos", "r": "Daytona Beach Shores City Council"}, {"n": "Mark Card", "r": "Daytona Beach Shores City Council"}, {"n": "Michael Politis", "r": "Daytona Beach Shores City Council"}, {"n": "Nancy J. Miller", "r": "Mayor of Daytona Beach Shores"}, {"n": "Stephen Dembinsky", "r": "Daytona Beach Shores City Council"}]}, {"m": "DeBary", "p": [{"n": "Jim Pappalardo", "r": "DeBary City Council"}, {"n": "Karen Chasez", "r": "Mayor of DeBary"}, {"n": "Patricia Stevenson", "r": "DeBary City Council"}, {"n": "Phyllis Butlien", "r": "DeBary City Council"}, {"n": "William Sell", "r": "DeBary City Council"}]}, {"m": "DeLand", "p": [{"n": "Christopher M. Cloudman", "r": "Mayor of DeLand"}, {"n": "Dan F. Reed", "r": "DeLand City Council"}, {"n": "Jessica Davis", "r": "DeLand City Council"}, {"n": "Kevin Reid", "r": "DeLand City Council"}, {"n": "Richard C. Paiva", "r": "DeLand City Council"}]}, {"m": "Deltona", "p": [{"n": "Dana McCool", "r": "Deltona City Council"}, {"n": "Davison Heriot", "r": "Deltona City Council"}, {"n": "Emma Santiago", "r": "Deltona City Council"}, {"n": "Julio Shimkus", "r": "Deltona City Council"}, {"n": "Maritza Avila-Vazquez", "r": "Deltona City Council"}, {"n": "Santiago Avila", "r": "Mayor of Deltona"}, {"n": "Stephen Colwell", "r": "Deltona City Council"}]}, {"m": "Edgewater", "p": [{"n": "Debbie Dolbow", "r": "Edgewater City Council"}, {"n": "Diezel DePew", "r": "Mayor of Edgewater"}, {"n": "Mike Thomas", "r": "Edgewater City Council"}]}, {"m": "Holly Hill", "p": [{"n": "Debra Snow", "r": "Holly Hill City Council"}, {"n": "Jeffrey DeLanoy", "r": "Holly Hill City Council"}, {"n": "John Penny", "r": "Mayor of Holly Hill"}, {"n": "Penny Currie", "r": "Holly Hill City Council"}, {"n": "Roy Johnson", "r": "Holly Hill City Council"}]}, {"m": "Lake Helen", "p": [{"n": "Charlene Bishop", "r": "Lake Helen City Council"}, {"n": "Earl Farmer", "r": "Lake Helen City Council"}, {"n": "Heather Rutledge", "r": "Lake Helen City Council"}, {"n": "Roger Eckert", "r": "Mayor of Lake Helen"}, {"n": "Sean Abshire", "r": "Lake Helen City Council"}]}, {"m": "New Smyrna Beach", "p": [{"n": "Andrew J. McGuirk", "r": "New Smyrna Beach City Council"}, {"n": "Brian Ashley", "r": "New Smyrna Beach City Council"}, {"n": "Fred Cleveland", "r": "Mayor of New Smyrna Beach"}, {"n": "Lisa Martin", "r": "New Smyrna Beach City Council"}, {"n": "Valli Perrine", "r": "New Smyrna Beach City Council"}]}, {"m": "Oak Hill", "p": [{"n": "Carrie Werning", "r": "Oak Hill City Council"}, {"n": "Joseph Catigano", "r": "Oak Hill City Council"}, {"n": "Linda Hyatt", "r": "Oak Hill City Council"}, {"n": "Mark Drollinger", "r": "Oak Hill City Council"}, {"n": "Ricky Taylor", "r": "Mayor of Oak Hill"}]}, {"m": "Orange City", "p": [{"n": "Alisa Stafford", "r": "Orange City City Council"}, {"n": "Anthony J. Pupello", "r": "Orange City City Council"}, {"n": "Fran Darms", "r": "Orange City City Council"}, {"n": "Harold Grimm", "r": "Orange City City Council"}, {"n": "Kelli Marks", "r": "Mayor of Orange City"}, {"n": "Lisa Richardson", "r": "Orange City City Council"}]}, {"m": "Ormond Beach", "p": [{"n": "Harold Briley", "r": "Ormond Beach City Council"}, {"n": "Jason Leslie", "r": "Mayor of Ormond Beach"}, {"n": "Kristin Deaton", "r": "Ormond Beach City Council"}, {"n": "Travis Sargent", "r": "Ormond Beach City Council"}]}, {"m": "Pierson", "p": [{"n": "Brandy Peterson", "r": "Pierson City Council"}, {"n": "David Gray Leonhard", "r": "Mayor of Pierson"}, {"n": "James Anderson", "r": "Pierson City Council"}, {"n": "Linnie R. Richardson", "r": "Pierson City Council"}, {"n": "Robert F. Greenlund", "r": "Pierson City Council"}]}, {"m": "Ponce Inlet", "p": [{"n": "Bill Milano", "r": "Ponce Inlet City Council"}, {"n": "Gary Smith", "r": "Ponce Inlet City Council"}, {"n": "Joe Villanella", "r": "Ponce Inlet City Council"}, {"n": "Lois Paritsky", "r": "Mayor of Ponce Inlet"}, {"n": "Skip White", "r": "Ponce Inlet City Council"}]}, {"m": "Port Orange", "p": [{"n": "Jonathan Foley", "r": "Port Orange City Council"}, {"n": "Lance Green", "r": "Port Orange City Council"}, {"n": "Scott Stiltner", "r": "Mayor of Port Orange"}, {"n": "Shawn Goepfert", "r": "Port Orange City Council"}, {"n": "Tracy Grubbs", "r": "Port Orange City Council"}]}, {"m": "South Daytona", "p": [{"n": "Brandon L. Young", "r": "South Daytona City Council"}, {"n": "Douglas Quartier", "r": "South Daytona City Council"}, {"n": "Eric Sander", "r": "South Daytona City Council"}, {"n": "William C. Hall", "r": "Mayor of South Daytona"}]}], "slug": "volusia"}, "12129": {"county": [{"n": "Angie Nichols", "r": "Wakulla County School Board"}, {"n": "Brent Thurmond", "r": "Clerk of Court, Wakulla County"}, {"n": "Cale Langston", "r": "Wakulla County School Board"}, {"n": "Cheryll Olah", "r": "Tax Collector, Wakulla County"}, {"n": "Chuck Hess", "r": "Commissioner, Wakulla County"}, {"n": "Donnie Sparkman", "r": "Property Appraiser, Wakulla County"}, {"n": "Eddie Hand", "r": "Wakulla County School Board"}, {"n": "Edward Brimner", "r": "Property Appraiser, Wakulla County"}, {"n": "Fred Nichols", "r": "Commissioner, Wakulla County"}, {"n": "Greg James", "r": "Clerk of Court, Wakulla County"}, {"n": "Jared Miller", "r": "Sheriff, Wakulla County"}, {"n": "Joe Morgan", "r": "Supervisor of Elections, Wakulla County"}, {"n": "Josh Brown", "r": "Wakulla County School Board"}, {"n": "Laura Lawhon", "r": "Wakulla County School Board"}, {"n": "Lisa Craze", "r": "Tax Collector, Wakulla County"}, {"n": "Mike Kemp", "r": "Commissioner, Wakulla County"}, {"n": "Quincee Messersmith", "r": "Commissioner, Wakulla County"}, {"n": "Ralph Thomas", "r": "Commissioner, Wakulla County"}], "munis": [{"m": "Sopchoppy", "p": [{"n": "Fred McClendon", "r": "Sopchoppy City Council"}, {"n": "Lara Edwards", "r": "Sopchoppy City Council"}, {"n": "Leonard Tartt", "r": "Mayor of Sopchoppy"}, {"n": "Mary K. Westmark", "r": "Sopchoppy City Council"}, {"n": "Nathan Lewis", "r": "Sopchoppy City Council"}]}, {"m": "St. Marks", "p": [{"n": "Crystal Wonsch", "r": "St. Marks City Council"}, {"n": "John Gunter", "r": "St. Marks City Council"}, {"n": "Sharon Rudd", "r": "St. Marks City Council"}, {"n": "Tim Lawrence", "r": "Mayor of St. Marks"}]}], "slug": "wakulla"}, "12131": {"county": [{"n": "Alex Alford", "r": "Clerk of Court, Walton County"}, {"n": "Brad Drake", "r": "Commissioner, Walton County"}, {"n": "Crystal Sconiers", "r": "Clerk of Court, Walton County"}, {"n": "Dan Curry", "r": "Commissioner, Walton County"}, {"n": "Danny Glidewell", "r": "Commissioner, Walton County"}, {"n": "Donna Johns", "r": "Commissioner, Walton County"}, {"n": "Gary Gregor", "r": "Property Appraiser, Walton County"}, {"n": "Jason Catalano", "r": "Walton County School Board"}, {"n": "Jeri Michie", "r": "Walton County School Board"}, {"n": "Kim Kirby", "r": "Walton County School Board"}, {"n": "Michael Adkinson", "r": "Sheriff, Walton County"}, {"n": "Rhonda Skipper", "r": "Tax Collector, Walton County"}, {"n": "Robert Beasley", "r": "Supervisor of Elections, Walton County"}, {"n": "Tammy Smith", "r": "Walton County School Board"}, {"n": "Tony Anderson", "r": "Commissioner, Walton County"}, {"n": "William \"Bill\" Eddins Jr", "r": "Walton County School Board"}, {"n": "William McCormick", "r": "Commissioner, Walton County"}], "munis": [{"m": "DeFuniak Springs", "p": [{"n": "Amy Heavilin", "r": "DeFuniak Springs City Council"}, {"n": "Anthony Vallee", "r": "DeFuniak Springs City Council"}, {"n": "Josh Sconiers", "r": "DeFuniak Springs City Council"}, {"n": "Robert A. Campbell", "r": "Mayor of DeFuniak Springs"}, {"n": "Todd Bierbaum", "r": "DeFuniak Springs City Council"}]}, {"m": "Freeport", "p": [{"n": "Eddie E. Farris", "r": "Freeport City Council"}, {"n": "Elizabeth Brannon", "r": "Freeport City Council"}, {"n": "Elizabeth Haffner", "r": "Freeport City Council"}, {"n": "Heather Hurst", "r": "Freeport City Council"}, {"n": "Sidney R. Barley", "r": "Mayor of Freeport"}, {"n": "Tracey Dickey", "r": "Freeport City Council"}]}, {"m": "Paxton", "p": [{"n": "Donna Smith", "r": "Mayor of Paxton"}, {"n": "Doug Constantine", "r": "Paxton City Council"}, {"n": "Jenice Armstrong", "r": "Paxton City Council"}, {"n": "Perry Thomas", "r": "Paxton City Council"}, {"n": "Travis McMillian", "r": "Paxton City Council"}]}], "slug": "walton"}, "12133": {"county": [{"n": "Alan Bush", "r": "Commissioner, Washington County"}, {"n": "Carol Rudd", "r": "Supervisor of Elections, Washington County"}, {"n": "Cheryl Ann Williams", "r": "Washington County School Board"}, {"n": "Cynthia \"Cindy\" Johnson Brown", "r": "Washington County School Board"}, {"n": "David Corbin", "r": "Commissioner, Washington County"}, {"n": "David Pettis", "r": "Commissioner, Washington County"}, {"n": "Deidra Pettis", "r": "Supervisor of Elections, Washington County"}, {"n": "Gil Carter", "r": "Property Appraiser, Washington County"}, {"n": "John Hawkins", "r": "Commissioner, Washington County"}, {"n": "Ken Naker", "r": "Tax Collector, Washington County"}, {"n": "Kevin Crews", "r": "Sheriff, Washington County"}, {"n": "Lora Bell", "r": "Clerk of Court, Washington County"}, {"n": "Lou Cleveland", "r": "Washington County School Board"}, {"n": "Milton L Brown", "r": "Washington County School Board"}, {"n": "Renea Peters", "r": "Property Appraiser, Washington County"}, {"n": "Wesley Griffin", "r": "Commissioner, Washington County"}, {"n": "Will \"Tonka\" Taylor", "r": "Washington County School Board"}], "munis": [{"m": "Caryville", "p": [{"n": "Chris Callahan", "r": "Caryville City Council"}, {"n": "Larry Palmer", "r": "Caryville City Council"}, {"n": "Mary Pate", "r": "Caryville City Council"}, {"n": "Michael Brandon Sasser", "r": "Caryville City Council"}, {"n": "Timothy Williams", "r": "Caryville City Council"}]}, {"m": "Chipley", "p": [{"n": "Cheryl McCall", "r": "Chipley City Council"}, {"n": "Kevin Russell", "r": "Chipley City Council"}, {"n": "Leonard Blount", "r": "Chipley City Council"}, {"n": "Linda Cain", "r": "Chipley City Council"}, {"n": "Tracy Andrews", "r": "Mayor of Chipley"}]}, {"m": "Ebro", "p": [{"n": "Charles Scott", "r": "Ebro City Council"}, {"n": "David Evans", "r": "Mayor of Ebro"}, {"n": "Gina Rutherford", "r": "Ebro City Council"}, {"n": "Jordan Gambrell", "r": "Ebro City Council"}, {"n": "Regina Kincaid", "r": "Ebro City Council"}, {"n": "Sally Young", "r": "Ebro City Council"}]}, {"m": "Vernon", "p": [{"n": "Angel LeCompte", "r": "Mayor of Vernon"}, {"n": "Becky Baxley", "r": "Vernon City Council"}, {"n": "F. Brittan Brock", "r": "Vernon City Council"}, {"n": "Frank Zurica", "r": "Vernon City Council"}, {"n": "Gwendolyn March", "r": "Vernon City Council"}, {"n": "Tina Sloan", "r": "Vernon City Council"}]}, {"m": "Wausau", "p": [{"n": "Charles W. Park", "r": "Wausau City Council"}, {"n": "Joe Phillips", "r": "Wausau City Council"}, {"n": "Judy Carter", "r": "Wausau City Council"}, {"n": "Roger D. Hagan", "r": "Mayor of Wausau"}, {"n": "Shirley Rightenburg", "r": "Wausau City Council"}]}], "slug": "washington"}, "13015": {"county": [], "munis": [{"m": "Cartersville", "p": [{"n": "Matt Santini", "r": "Mayor, Cartersville, GA"}]}], "slug": "bartow"}, "13017": {"county": [], "munis": [{"m": "Fitzgerald", "p": [{"n": "Jason Holt", "r": "Mayor, Fitzgerald, GA"}]}], "slug": "ben-hill"}, "13031": {"county": [], "munis": [{"m": "Statesboro", "p": [{"n": "Jonathan M. McCollar", "r": "Mayor, Statesboro, GA"}]}], "slug": "bulloch"}, "13045": {"county": [], "munis": [{"m": "Carrollton", "p": [{"n": "Betty B. Cason", "r": "Mayor, Carrollton, GA"}]}], "slug": "carroll"}, "13051": {"county": [], "munis": [{"m": "Savannah", "p": [{"n": "Edna Jackson", "r": "Mayor, Savannah, GA"}]}], "slug": "chatham"}, "13057": {"county": [], "munis": [{"m": "Canton", "p": [{"n": "Bill Grant", "r": "Mayor, Canton, GA"}]}, {"m": "Woodstock", "p": [{"n": "Michael Caldwell", "r": "Mayor, Woodstock, GA"}]}], "slug": "cherokee"}, "13067": {"county": [], "munis": [{"m": "Acworth", "p": [{"n": "Tommy Allegood", "r": "Mayor, Acworth, GA"}]}, {"m": "Kennesaw", "p": [{"n": "Derek Easterling", "r": "Mayor, Kennesaw, GA"}]}, {"m": "Mableton", "p": [{"n": "Michael Owens", "r": "Mayor, Mableton, GA"}]}, {"m": "Marietta", "p": [{"n": "Steve Tumlin", "r": "Mayor, Marietta, GA"}]}, {"m": "Smyrna", "p": [{"n": "Derek Norton", "r": "Mayor, Smyrna, GA"}]}], "slug": "cobb"}, "13077": {"county": [], "munis": [{"m": "Newnan", "p": [{"n": "Keith Brady", "r": "Mayor, Newnan, GA"}]}], "slug": "coweta"}, "13089": {"county": [], "munis": [{"m": "Brookhaven", "p": [{"n": "John Park", "r": "Mayor, Brookhaven, GA"}]}, {"m": "Chamblee", "p": [{"n": "Brian Mock", "r": "Mayor, Chamblee, GA"}]}, {"m": "Decatur", "p": [{"n": "Patti Garrett", "r": "Mayor, Decatur, GA"}]}, {"m": "Dunwoody", "p": [{"n": "Lynn Deutsch", "r": "Mayor, Dunwoody, GA"}]}, {"m": "Stonecrest", "p": [{"n": "Jazzmin Cobble", "r": "Mayor, Stonecrest, GA"}]}], "slug": "dekalb"}, "13095": {"county": [], "munis": [{"m": "Albany", "p": [{"n": "Bo Dorough", "r": "Mayor, Albany, GA"}]}], "slug": "dougherty"}, "13097": {"county": [], "munis": [{"m": "Douglasville", "p": [{"n": "Rochelle Robinson", "r": "Mayor, Douglasville, GA"}]}], "slug": "douglas"}, "13113": {"county": [], "munis": [{"m": "Peachtree City", "p": [{"n": "Kim Learnard", "r": "Mayor, Peachtree City, GA"}]}], "slug": "fayette"}, "13115": {"county": [], "munis": [{"m": "Rome", "p": [{"n": "Craig McDaniel", "r": "Mayor, Rome, GA"}]}], "slug": "floyd"}, "13121": {"county": [], "munis": [{"m": "Alpharetta", "p": [{"n": "Jim Gilvin", "r": "Mayor, Alpharetta, GA"}]}, {"m": "Atlanta", "p": [{"n": "Andre Dickens", "r": "Mayor, Atlanta, GA"}]}, {"m": "East Point", "p": [{"n": "Deana Holiday Ingraham", "r": "Mayor, East Point, GA"}]}, {"m": "Johns Creek", "p": [{"n": "John Bradberry", "r": "Mayor, Johns Creek, GA"}]}, {"m": "Milton", "p": [{"n": "Peyton Jamison", "r": "Mayor, Milton, GA"}]}, {"m": "Sandy Springs", "p": [{"n": "Rusty Paul", "r": "Mayor, Sandy Springs, GA"}]}, {"m": "South Fulton", "p": [{"n": "Theron Griffin", "r": "Mayor, South Fulton, GA"}]}], "slug": "fulton"}, "13127": {"county": [], "munis": [{"m": "Brunswick", "p": [{"n": "Cosby H. Johnson", "r": "Mayor, Brunswick, GA"}]}], "slug": "glynn"}, "13135": {"county": [], "munis": [{"m": "Duluth", "p": [{"n": "Greg Whitlock", "r": "Mayor, Duluth, GA"}]}, {"m": "Lawrenceville", "p": [{"n": "David Still", "r": "Mayor, Lawrenceville, GA"}]}, {"m": "Peachtree Corners", "p": [{"n": "Mike Mason", "r": "Mayor, Peachtree Corners, GA"}]}, {"m": "Snellville", "p": [{"n": "Barbara Bender", "r": "Mayor, Snellville, GA"}]}, {"m": "Suwanee", "p": [{"n": "James Burnette", "r": "Mayor, Suwanee, GA"}]}], "slug": "gwinnett"}, "13139": {"county": [], "munis": [{"m": "Gainesville", "p": [{"n": "Sam Couvillon", "r": "Mayor, Gainesville, GA"}]}], "slug": "hall"}, "13145": {"county": [], "munis": [{"m": "Hamilton", "p": [{"n": "Patrick Whearley", "r": "Mayor, Hamilton, GA"}]}], "slug": "harris"}, "13151": {"county": [], "munis": [{"m": "Mcdonough", "p": [{"n": "Sandra Vincent", "r": "Mayor, McDonough, GA"}]}, {"m": "Stockbridge", "p": [{"n": "Anthony S. Ford", "r": "Mayor, Stockbridge, GA"}]}], "slug": "henry"}, "13153": {"county": [], "munis": [{"m": "Warner Robins", "p": [{"n": "LaRhonda W. Patrick", "r": "Mayor, Warner Robins, GA"}]}], "slug": "houston"}, "13179": {"county": [], "munis": [{"m": "Hinesville", "p": [{"n": "Karl Riles", "r": "Mayor, Hinesville, GA"}]}], "slug": "liberty"}, "13185": {"county": [], "munis": [{"m": "Valdosta", "p": [{"n": "Scott James Matheson", "r": "Mayor, Valdosta, GA"}]}], "slug": "lowndes"}, "13215": {"county": [], "munis": [{"m": "Columbus", "p": [{"n": "B. H. \"Skip\" Henderson III", "r": "Mayor, Columbus, GA"}]}], "slug": "muscogee"}, "13237": {"county": [], "munis": [{"m": "Eatonton", "p": [{"n": "John Reid", "r": "Mayor, Eatonton, GA"}]}], "slug": "putnam"}, "13255": {"county": [], "munis": [{"m": "Griffin", "p": [{"n": "Douglas S. Hollberg", "r": "Mayor, Griffin, GA"}]}], "slug": "spalding"}, "13285": {"county": [], "munis": [{"m": "Lagrange", "p": [{"n": "Jim Arrington", "r": "Mayor, LaGrange, GA"}]}], "slug": "troup"}, "13297": {"county": [], "munis": [{"m": "Monroe", "p": [{"n": "John Howard", "r": "Mayor, Monroe, GA"}]}], "slug": "walton"}, "13301": {"county": [], "munis": [{"m": "Warrenton", "p": [{"n": "Chris McCorkle", "r": "Mayor, Warrenton, GA"}]}], "slug": "warren"}, "13313": {"county": [], "munis": [{"m": "Dalton", "p": [{"n": "Annalee Sams", "r": "Mayor, Dalton, GA"}]}], "slug": "whitfield"}, "15003": {"county": [], "munis": [{"m": "East Honolulu", "p": [{"n": "Rick Blangiardi", "r": "Mayor, Honolulu, HI"}]}], "slug": "honolulu"}, "16001": {"county": [], "munis": [{"m": "Boise City", "p": [{"n": "Lauren McLean", "r": "Mayor, Boise, ID"}]}, {"m": "Meridian", "p": [{"n": "Robert E. Simison", "r": "Mayor, Meridian, ID"}]}], "slug": "ada"}, "16005": {"county": [], "munis": [{"m": "Pocatello", "p": [{"n": "Brian Blad", "r": "Mayor, Pocatello, ID"}]}], "slug": "bannock"}, "16027": {"county": [], "munis": [{"m": "Nampa", "p": [{"n": "Debbie Kling", "r": "Mayor, Nampa, ID"}]}], "slug": "canyon"}, "16079": {"county": [], "munis": [{"m": "Kellogg", "p": [{"n": "Mac Pooler", "r": "Mayor, Kellogg, ID"}]}], "slug": "shoshone"}, "16083": {"county": [], "munis": [{"m": "Twin Falls", "p": [{"n": "Ruth Pierce", "r": "Mayor, Twin Falls, ID"}]}], "slug": "twin-falls"}, "16087": {"county": [], "munis": [{"m": "Weiser", "p": [{"n": "Randy Hibberd", "r": "Mayor, Weiser, ID"}]}], "slug": "washington"}, "17007": {"county": [], "munis": [{"m": "Belvidere", "p": [{"n": "Clinton Morris", "r": "Mayor, Belvidere, IL"}]}], "slug": "boone"}, "17011": {"county": [], "munis": [{"m": "Princeton", "p": [{"n": "Joel Quiram", "r": "Mayor, Princeton, IL"}]}], "slug": "bureau"}, "17031": {"county": [], "munis": [{"m": "Chicago", "p": [{"n": "Brandon Johnson", "r": "Mayor, Chicago, IL"}]}], "slug": "cook"}, "17043": {"county": [], "munis": [{"m": "Naperville", "p": [{"n": "Scott Wehrli", "r": "Mayor, Naperville, IL"}]}], "slug": "dupage"}, "17089": {"county": [], "munis": [{"m": "Aurora", "p": [{"n": "Richard C. Irvin", "r": "Mayor, Aurora, IL"}]}, {"m": "Elgin", "p": [{"n": "Dave Kaptain", "r": "Mayor, Elgin, IL"}]}], "slug": "kane"}, "17097": {"county": [], "munis": [{"m": "Highland Park", "p": [{"n": "Nancy Rotering", "r": "Mayor, Highland Park, IL"}]}, {"m": "Lake Forest", "p": [{"n": "George A. Pandaleon", "r": "Mayor, Lake Forest, IL"}]}], "slug": "lake"}, "17099": {"county": [], "munis": [{"m": "Mendota", "p": [{"n": "David Boelk", "r": "Mayor, Mendota, IL"}]}], "slug": "lasalle"}, "17113": {"county": [], "munis": [{"m": "Bloomington", "p": [{"n": "Mboka Mwilambwe", "r": "Mayor, Bloomington, IL"}]}], "slug": "mclean"}, "17115": {"county": [], "munis": [{"m": "Decatur", "p": [{"n": "Julie Moore Wolfe", "r": "Mayor, Decatur, IL"}]}], "slug": "macon"}, "17135": {"county": [], "munis": [{"m": "Litchfield", "p": [{"n": "Steve Dougherty", "r": "Mayor, Litchfield, IL"}]}], "slug": "montgomery"}, "17143": {"county": [], "munis": [{"m": "Peoria", "p": [{"n": "Rita Ali", "r": "Mayor, Peoria, IL"}]}], "slug": "peoria"}, "17167": {"county": [], "munis": [{"m": "Springfield", "p": [{"n": "Misty Buscher", "r": "Mayor, Springfield, IL"}]}], "slug": "sangamon"}, "17179": {"county": [], "munis": [{"m": "Pekin", "p": [{"n": "Q106024909", "r": "Mayor, Pekin, IL"}]}], "slug": "tazewell"}, "17197": {"county": [], "munis": [{"m": "Joliet", "p": [{"n": "Bob O’Dekirk", "r": "Mayor, Joliet, IL"}]}], "slug": "will"}, "17201": {"county": [], "munis": [{"m": "Loves Park", "p": [{"n": "Greg Jury", "r": "Mayor, Loves Park, IL"}]}, {"m": "Rockford", "p": [{"n": "Thomas McNamara", "r": "Mayor, Rockford, IL"}]}], "slug": "winnebago"}, "18003": {"county": [], "munis": [{"m": "Fort Wayne", "p": [{"n": "Tom Henry", "r": "Mayor, Fort Wayne, IN"}]}], "slug": "allen"}, "18043": {"county": [], "munis": [{"m": "New Albany", "p": [{"n": "Jeff Gahan", "r": "Mayor, New Albany, IN"}]}], "slug": "floyd"}, "18057": {"county": [], "munis": [{"m": "Carmel", "p": [{"n": "Sue Finkam", "r": "Mayor, Carmel, IN"}]}], "slug": "hamilton"}, "18097": {"county": [], "munis": [{"m": "Indianapolis City Balance", "p": [{"n": "Joe Hogsett", "r": "Mayor, Indianapolis, IN"}]}], "slug": "marion"}, "18141": {"county": [], "munis": [{"m": "South Bend", "p": [{"n": "James Mueller", "r": "Mayor, South Bend, IN"}]}], "slug": "st-joseph"}, "18159": {"county": [], "munis": [{"m": "Tipton", "p": [{"n": "Tom Dolezal", "r": "Mayor, Tipton, IN"}]}], "slug": "tipton"}, "18163": {"county": [], "munis": [{"m": "Evansville", "p": [{"n": "Lloyd Winnecke", "r": "Mayor, Evansville, IN"}]}], "slug": "vanderburgh"}, "19001": {"county": [], "munis": [{"m": "Fontanelle", "p": [{"n": "Michael Walker", "r": "Mayor, Fontanelle, IA"}]}], "slug": "adair"}, "19013": {"county": [], "munis": [{"m": "Cedar Falls", "p": [{"n": "Danny Laudick", "r": "Mayor, Cedar Falls, IA"}]}, {"m": "Waterloo", "p": [{"n": "Quentin M. Hart", "r": "Mayor, Waterloo, IA"}]}], "slug": "black-hawk"}, "19017": {"county": [], "munis": [{"m": "Sumner", "p": [{"n": "Billy Lehmkuhl", "r": "Mayor, Sumner, IA"}]}], "slug": "bremer"}, "19023": {"county": [], "munis": [{"m": "Greene", "p": [{"n": "Warren Van Dyke", "r": "Mayor, Greene, IA"}]}], "slug": "butler"}, "19027": {"county": [], "munis": [{"m": "Glidden", "p": [{"n": "Roger Hartwigsen", "r": "Mayor, Glidden, IA"}]}], "slug": "carroll"}, "19031": {"county": [], "munis": [{"m": "West Branch", "p": [{"n": "Roger Laughlin", "r": "Mayor, West Branch, IA"}]}], "slug": "cedar"}, "19033": {"county": [], "munis": [{"m": "Clear Lake", "p": [{"n": "Nelson P. Crabb", "r": "Mayor, Clear Lake, IA"}]}], "slug": "cerro-gordo"}, "19037": {"county": [], "munis": [{"m": "Nashua", "p": [{"n": "Alex Anthofer", "r": "Mayor, Nashua, IA"}]}, {"m": "New Hampton", "p": [{"n": "Steven Geerts", "r": "Mayor, New Hampton, IA"}]}], "slug": "chickasaw"}, "19041": {"county": [], "munis": [{"m": "Everly", "p": [{"n": "Ron Thompson", "r": "Mayor, Everly, IA"}]}, {"m": "Spencer", "p": [{"n": "Steve Bomgaars", "r": "Mayor, Spencer, IA"}]}], "slug": "clay"}, "19043": {"county": [], "munis": [{"m": "Guttenberg", "p": [{"n": "Fred Schaub", "r": "Mayor, Guttenberg, IA"}]}, {"m": "Marquette", "p": [{"n": "Brittany Hemmer", "r": "Mayor, Marquette, IA"}]}], "slug": "clayton"}, "19045": {"county": [], "munis": [{"m": "Andover", "p": [{"n": "Jason Johnson", "r": "Mayor, Andover, IA"}]}, {"m": "Calamus", "p": [{"n": "Lance Goettsch", "r": "Mayor, Calamus, IA"}]}, {"m": "Camanche", "p": [{"n": "Austin Pruett", "r": "Mayor, Camanche, IA"}]}, {"m": "Clinton", "p": [{"n": "Scott Maddasion", "r": "Mayor, Clinton, IA"}]}, {"m": "Delmar", "p": [{"n": "Patty Hardin", "r": "Mayor, Delmar, IA"}]}, {"m": "Dewitt", "p": [{"n": "Steve Hasenmiller", "r": "Mayor, DeWitt, IA"}]}, {"m": "Goose Lake", "p": [{"n": "Ken Schoon", "r": "Mayor, Goose Lake, IA"}]}, {"m": "Grand Mound", "p": [{"n": "Kurt Crosthwaite", "r": "Mayor, Grand Mound, IA"}]}, {"m": "Lost Nation", "p": [{"n": "Ramon Gilroy", "r": "Mayor, Lost Nation, IA"}]}, {"m": "Low Moor", "p": [{"n": "Tom Goldensoph", "r": "Mayor, Low Moor, IA"}]}, {"m": "Welton", "p": [{"n": "Ashley Paulsen", "r": "Mayor, Welton, IA"}]}, {"m": "Wheatland", "p": [{"n": "Jeremiah Wiese", "r": "Mayor, Wheatland, IA"}]}], "slug": "clinton"}, "19047": {"county": [], "munis": [{"m": "Denison", "p": [{"n": "Pam Soseman", "r": "Mayor, Denison, IA"}]}, {"m": "Schleswig", "p": [{"n": "Beth Winquist", "r": "Mayor, Schleswig, IA"}]}], "slug": "crawford"}, "19049": {"county": [], "munis": [{"m": "Adel", "p": [{"n": "James F. Peters", "r": "Mayor, Adel, IA"}]}, {"m": "Dexter", "p": [{"n": "Dennis Clemetson", "r": "Mayor, Dexter, IA"}]}, {"m": "Waukee", "p": [{"n": "Courtney Clarke", "r": "Mayor, Waukee, IA"}]}], "slug": "dallas"}, "19051": {"county": [], "munis": [{"m": "Bloomfield", "p": [{"n": "Chris Miller", "r": "Mayor, Bloomfield, IA"}]}, {"m": "Drakesville", "p": [{"n": "Bob Sampson", "r": "Mayor, Drakesville, IA"}]}], "slug": "davis"}, "19053": {"county": [], "munis": [{"m": "Lamoni", "p": [{"n": "Douglas L. Foster", "r": "Mayor, Lamoni, IA"}]}, {"m": "Leon", "p": [{"n": "Bob Frey", "r": "Mayor, Leon, IA"}]}], "slug": "decatur"}, "19055": {"county": [], "munis": [{"m": "Edgewood", "p": [{"n": "Bruce Hemann", "r": "Mayor, Edgewood, IA"}]}, {"m": "Manchester", "p": [{"n": "Connie L. Behnken", "r": "Mayor, Manchester, IA"}]}], "slug": "delaware"}, "19057": {"county": [], "munis": [{"m": "Burlington", "p": [{"n": "Jon D. Billups", "r": "Mayor, Burlington, IA"}]}, {"m": "Mediapolis", "p": [{"n": "Thomas Young", "r": "Mayor, Mediapolis, IA"}]}, {"m": "Middletown", "p": [{"n": "Eric Gerst", "r": "Mayor, Middletown, IA"}]}, {"m": "West Burlington", "p": [{"n": "Ron Teater", "r": "Mayor, West Burlington, IA"}]}], "slug": "des-moines"}, "19059": {"county": [], "munis": [{"m": "Arnolds Park", "p": [{"n": "Jim Hussong", "r": "Mayor, Arnolds Park, IA"}]}, {"m": "Lake Park", "p": [{"n": "Matt Carstensen", "r": "Mayor, Lake Park, IA"}]}, {"m": "Milford", "p": [{"n": "Steve Anderson", "r": "Mayor, Milford, IA"}]}, {"m": "Okoboji", "p": [{"n": "Mary VanderWoude", "r": "Mayor, Okoboji, IA"}]}, {"m": "Spirit Lake", "p": [{"n": "Kevin Bice", "r": "Mayor, Spirit Lake, IA"}]}], "slug": "dickinson"}, "19061": {"county": [], "munis": [{"m": "Asbury", "p": [{"n": "Jim Adams", "r": "Mayor, Asbury, IA"}]}, {"m": "Dubuque", "p": [{"n": "Brad Cavanagh", "r": "Mayor, Dubuque, IA"}]}, {"m": "Epworth", "p": [{"n": "Sandra Gassman", "r": "Mayor, Epworth, IA"}]}], "slug": "dubuque"}, "19063": {"county": [], "munis": [{"m": "Estherville", "p": [{"n": "Kenny Billings", "r": "Mayor, Estherville, IA"}]}], "slug": "emmet"}, "19065": {"county": [], "munis": [{"m": "Fayette", "p": [{"n": "Nathan Post", "r": "Mayor, Fayette, IA"}]}, {"m": "Oelwein", "p": [{"n": "Brett DeVore", "r": "Mayor, Oelwein, IA"}]}], "slug": "fayette"}, "19067": {"county": [], "munis": [{"m": "Charles City", "p": [{"n": "Dean Andrews", "r": "Mayor, Charles City, IA"}]}, {"m": "Rockford", "p": [{"n": "Scott Johnson", "r": "Mayor, Rockford, IA"}]}], "slug": "floyd"}, "19077": {"county": [], "munis": [{"m": "Guthrie Center", "p": [{"n": "Mike Herbert", "r": "Mayor, Guthrie Center, IA"}]}, {"m": "Panora", "p": [{"n": "Curtis Thornberry", "r": "Mayor, Panora, IA"}]}], "slug": "guthrie"}, "19081": {"county": [], "munis": [{"m": "Forest City", "p": [{"n": "Ron Holland", "r": "Mayor, Forest City, IA"}]}], "slug": "hancock"}, "19087": {"county": [], "munis": [{"m": "Mount Pleasant", "p": [{"n": "Steven Brimhall", "r": "Mayor, Mount Pleasant, IA"}]}], "slug": "henry"}, "19091": {"county": [], "munis": [{"m": "Humboldt", "p": [{"n": "Dan Scholl", "r": "Mayor, Humboldt, IA"}]}], "slug": "humboldt"}, "19093": {"county": [], "munis": [{"m": "Battle Creek", "p": [{"n": "Charles Pierce", "r": "Mayor, Battle Creek, IA"}]}, {"m": "Galva", "p": [{"n": "Gary Wanberg", "r": "Mayor, Galva, IA"}]}, {"m": "Ida Grove", "p": [{"n": "Nathan Weitl", "r": "Mayor, Ida Grove, IA"}]}], "slug": "ida"}, "19095": {"county": [], "munis": [{"m": "Marengo", "p": [{"n": "Adam Rabe", "r": "Mayor, Marengo, IA"}]}], "slug": "iowa"}, "19097": {"county": [], "munis": [{"m": "Maquoketa", "p": [{"n": "Tom Messerli", "r": "Mayor, Maquoketa, IA"}]}], "slug": "jackson"}, "19099": {"county": [], "munis": [{"m": "Baxter", "p": [{"n": "Doug Bishop", "r": "Mayor, Baxter, IA"}]}, {"m": "Colfax", "p": [{"n": "David Mast", "r": "Mayor, Colfax, IA"}]}, {"m": "Lynnville", "p": [{"n": "Roy James", "r": "Mayor, Lynnville, IA"}]}, {"m": "Monroe", "p": [{"n": "Doug Duinink", "r": "Mayor, Monroe, IA"}]}, {"m": "Newton", "p": [{"n": "Evelyn George", "r": "Mayor, Newton, IA"}]}, {"m": "Prairie City", "p": [{"n": "Chad Alleger", "r": "Mayor, Prairie City, IA"}]}, {"m": "Sully", "p": [{"n": "Ben Ahrens", "r": "Mayor, Sully, IA"}]}], "slug": "jasper"}, "19103": {"county": [], "munis": [{"m": "Coralville", "p": [{"n": "Meghann Foster", "r": "Mayor, Coralville, IA"}]}, {"m": "Iowa City", "p": [{"n": "Bruce Teague", "r": "Mayor, Iowa City, IA"}]}, {"m": "North Liberty", "p": [{"n": "Chris Hoffman", "r": "Mayor, North Liberty, IA"}]}], "slug": "johnson"}, "19105": {"county": [], "munis": [{"m": "Monticello", "p": [{"n": "Wayne Peach", "r": "Mayor, Monticello, IA"}]}], "slug": "jones"}, "19111": {"county": [], "munis": [{"m": "Fort Madison", "p": [{"n": "Matt J. Mohrfeld", "r": "Mayor, Fort Madison, IA"}]}, {"m": "Keokuk", "p": [{"n": "Kathie Mahoney", "r": "Mayor, Keokuk, IA"}]}], "slug": "lee"}, "19113": {"county": [], "munis": [{"m": "Cedar Rapids", "p": [{"n": "Tiffany O'Donnell", "r": "Mayor, Cedar Rapids, IA"}]}, {"m": "Marion", "p": [{"n": "Nicolas AbouAssaly", "r": "Mayor, Marion, IA"}]}], "slug": "linn"}, "19115": {"county": [], "munis": [{"m": "Grandview", "p": [{"n": "Steve Schwandkie", "r": "Mayor, Grandview, IA"}]}], "slug": "louisa"}, "19117": {"county": [], "munis": [{"m": "Chariton", "p": [{"n": "Jayma Hoch", "r": "Mayor, Chariton, IA"}]}], "slug": "lucas"}, "19121": {"county": [], "munis": [{"m": "Earlham", "p": [{"n": "Jeff Lillie", "r": "Mayor, Earlham, IA"}]}, {"m": "Winterset", "p": [{"n": "Thomas Leners", "r": "Mayor, Winterset, IA"}]}], "slug": "madison"}, "19123": {"county": [], "munis": [{"m": "Oskaloosa", "p": [{"n": "David Krutzfeldt", "r": "Mayor, Oskaloosa, IA"}]}], "slug": "mahaska"}, "19125": {"county": [], "munis": [{"m": "Knoxville", "p": [{"n": "Brian Hatch", "r": "Mayor, Knoxville, IA"}]}, {"m": "Pella", "p": [{"n": "Don DeWaard", "r": "Mayor, Pella, IA"}]}, {"m": "Pleasantville", "p": [{"n": "Kody Jurgens", "r": "Mayor, Pleasantville, IA"}]}], "slug": "marion"}, "19127": {"county": [], "munis": [{"m": "Marshalltown", "p": [{"n": "Joel T.S. Greer", "r": "Mayor, Marshalltown, IA"}]}, {"m": "Melbourne", "p": [{"n": "Cynthia Mansager", "r": "Mayor, Melbourne, IA"}]}, {"m": "State Center", "p": [{"n": "Craig Pfantz", "r": "Mayor, State Center, IA"}]}], "slug": "marshall"}, "19141": {"county": [], "munis": [{"m": "Sheldon", "p": [{"n": "Greg Geels", "r": "Mayor, Sheldon, IA"}]}], "slug": "o-brien"}, "19145": {"county": [], "munis": [{"m": "Shenandoah", "p": [{"n": "Roger McQueen", "r": "Mayor, Shenandoah, IA"}]}], "slug": "page"}, "19149": {"county": [], "munis": [{"m": "Akron", "p": [{"n": "Alex Pick", "r": "Mayor, Akron, IA"}]}, {"m": "Hinton", "p": [{"n": "Kelly Kreber", "r": "Mayor, Hinton, IA"}]}, {"m": "Kingsley", "p": [{"n": "Rick Bohle", "r": "Mayor, Kingsley, IA"}]}, {"m": "Le Mars", "p": [{"n": "Rob Bixenman", "r": "Mayor, Le Mars, IA"}]}, {"m": "Merrill", "p": [{"n": "Bruce Norgaard", "r": "Mayor, Merrill, IA"}]}], "slug": "plymouth"}, "19151": {"county": [], "munis": [{"m": "Fonda", "p": [{"n": "Donald Wolf", "r": "Mayor, Fonda, IA"}]}, {"m": "Laurens", "p": [{"n": "Rod Johnson", "r": "Mayor, Laurens, IA"}]}, {"m": "Pocahontas", "p": [{"n": "Wes Beneke", "r": "Mayor, Pocahontas, IA"}]}, {"m": "Rolfe", "p": [{"n": "James Pentico", "r": "Mayor, Rolfe, IA"}]}], "slug": "pocahontas"}, "19153": {"county": [], "munis": [{"m": "Altoona", "p": [{"n": "Q124630277", "r": "Mayor, Altoona, IA"}]}, {"m": "Ankeny", "p": [{"n": "Mark Holm", "r": "Mayor, Ankeny, IA"}]}, {"m": "Des Moines", "p": [{"n": "Connie Boesen", "r": "Mayor, Des Moines, IA"}]}, {"m": "Johnston", "p": [{"n": "Paula Dierenfeld", "r": "Mayor, Johnston, IA"}]}, {"m": "Mitchellville", "p": [{"n": "Jessica Trobaugh", "r": "Mayor, Mitchellville, IA"}]}, {"m": "Pleasant Hill", "p": [{"n": "Sara Kurovski", "r": "Mayor, Pleasant Hill, IA"}]}, {"m": "Polk City", "p": [{"n": "Steve Karsjen", "r": "Mayor, Polk City, IA"}]}, {"m": "Urbandale", "p": [{"n": "Bob Andeweg", "r": "Mayor, Urbandale, IA"}]}, {"m": "West Des Moines", "p": [{"n": "Russ Trimble", "r": "Mayor, West Des Moines, IA"}]}, {"m": "Windsor Heights", "p": [{"n": "Mike Jones", "r": "Mayor, Windsor Heights, IA"}]}], "slug": "polk"}, "19155": {"county": [], "munis": [{"m": "Carter Lake", "p": [{"n": "Ron Cumberledge", "r": "Mayor, Carter Lake, IA"}]}, {"m": "Council Bluffs", "p": [{"n": "Matt Walsh", "r": "Mayor, Council Bluffs, IA"}]}, {"m": "Macedonia", "p": [{"n": "Melia Clark", "r": "Mayor, Macedonia, IA"}]}, {"m": "Oakland", "p": [{"n": "Brant Miller", "r": "Mayor, Oakland, IA"}]}, {"m": "Underwood", "p": [{"n": "Dennis Bardsley", "r": "Mayor, Underwood, IA"}]}], "slug": "pottawattamie"}, "19157": {"county": [], "munis": [{"m": "Brooklyn", "p": [{"n": "Les Taylor", "r": "Mayor, Brooklyn, IA"}]}, {"m": "Grinnell", "p": [{"n": "Dan F. Agnew", "r": "Mayor, Grinnell, IA"}]}, {"m": "Montezuma", "p": [{"n": "Colin Watts", "r": "Mayor, Montezuma, IA"}]}], "slug": "poweshiek"}, "19161": {"county": [], "munis": [{"m": "Lake View", "p": [{"n": "John Westergaard", "r": "Mayor, Lake View, IA"}]}, {"m": "Sac City", "p": [{"n": "Scott Bundt", "r": "Mayor, Sac City, IA"}]}, {"m": "Schaller", "p": [{"n": "Sean Ehrp", "r": "Mayor, Schaller, IA"}]}, {"m": "Wall Lake", "p": [{"n": "Jamie Rohlf", "r": "Mayor, Wall Lake, IA"}]}], "slug": "sac"}, "19163": {"county": [], "munis": [{"m": "Bettendorf", "p": [{"n": "Robert S. Gallagher", "r": "Mayor, Bettendorf, IA"}]}, {"m": "Buffalo", "p": [{"n": "Sally Rodriguez", "r": "Mayor, Buffalo, IA"}]}, {"m": "Davenport", "p": [{"n": "Mike Matson", "r": "Mayor, Davenport, IA"}]}, {"m": "Eldridge", "p": [{"n": "Frank King", "r": "Mayor, Eldridge, IA"}]}, {"m": "Le Claire", "p": [{"n": "Dennis Gerard", "r": "Mayor, Le Claire, IA"}]}, {"m": "Riverdale", "p": [{"n": "Anthony Heddlesten", "r": "Mayor, Riverdale, IA"}]}, {"m": "Walcott", "p": [{"n": "John Kostichek", "r": "Mayor, Walcott, IA"}]}], "slug": "scott"}, "19165": {"county": [], "munis": [{"m": "Harlan", "p": [{"n": "Jay Christensen", "r": "Mayor, Harlan, IA"}]}], "slug": "shelby"}, "19167": {"county": [], "munis": [{"m": "Hawarden", "p": [{"n": "Larry Gregg", "r": "Mayor, Hawarden, IA"}]}, {"m": "Hull", "p": [{"n": "Arlan Moss", "r": "Mayor, Hull, IA"}]}, {"m": "Orange City", "p": [{"n": "Deb de Haan", "r": "Mayor, Orange City, IA"}]}, {"m": "Rock Valley", "p": [{"n": "Kevin van Otterloo", "r": "Mayor, Rock Valley, IA"}]}, {"m": "Sioux Center", "p": [{"n": "Dale Vander Berg", "r": "Mayor, Sioux Center, IA"}]}], "slug": "sioux"}, "19169": {"county": [], "munis": [{"m": "Ames", "p": [{"n": "John Haila", "r": "Mayor, Ames, IA"}]}, {"m": "Cambridge", "p": [{"n": "Robert Chubbic", "r": "Mayor, Cambridge, IA"}]}, {"m": "Colo", "p": [{"n": "Brent Bappe", "r": "Mayor, Colo, IA"}]}, {"m": "Maxwell", "p": [{"n": "Dale Higgins", "r": "Mayor, Maxwell, IA"}]}, {"m": "Nevada", "p": [{"n": "Brett Barker", "r": "Mayor, Nevada, IA"}]}, {"m": "Roland", "p": [{"n": "Kurtis Bower", "r": "Mayor, Roland, IA"}]}, {"m": "Slater", "p": [{"n": "Taylor Christensen", "r": "Mayor, Slater, IA"}]}, {"m": "Story City", "p": [{"n": "Mike Jensen", "r": "Mayor, Story City, IA"}]}], "slug": "story"}, "19171": {"county": [], "munis": [{"m": "Dysart", "p": [{"n": "Tim Glenn", "r": "Mayor, Dysart, IA"}]}, {"m": "Tama", "p": [{"n": "Doug Ray", "r": "Mayor, Tama, IA"}]}, {"m": "Toledo", "p": [{"n": "Brian Sokol", "r": "Mayor, Toledo, IA"}]}, {"m": "Traer", "p": [{"n": "Pete Holden", "r": "Mayor, Traer, IA"}]}], "slug": "tama"}, "19173": {"county": [], "munis": [{"m": "Bedford", "p": [{"n": "Aaron Hardee", "r": "Mayor, Bedford, IA"}]}, {"m": "Lenox", "p": [{"n": "Melissa Douglas", "r": "Mayor, Lenox, IA"}]}], "slug": "taylor"}, "19175": {"county": [], "munis": [{"m": "Creston", "p": [{"n": "Waylon Clayton", "r": "Mayor, Creston, IA"}]}], "slug": "union"}, "19177": {"county": [], "munis": [{"m": "Farmington", "p": [{"n": "Janet Browning", "r": "Mayor, Farmington, IA"}]}], "slug": "van-buren"}, "19179": {"county": [], "munis": [{"m": "Ottumwa", "p": [{"n": "Tom X. Lazio", "r": "Mayor, Ottumwa, IA"}]}], "slug": "wapello"}, "19181": {"county": [], "munis": [{"m": "Indianola", "p": [{"n": "Stephanie Erickson", "r": "Mayor, Indianola, IA"}]}, {"m": "Norwalk", "p": [{"n": "Tom Phillips", "r": "Mayor, Norwalk, IA"}]}], "slug": "warren"}, "19183": {"county": [], "munis": [{"m": "Kalona", "p": [{"n": "Mark Robe", "r": "Mayor, Kalona, IA"}]}, {"m": "Riverside", "p": [{"n": "Allen Schneider", "r": "Mayor, Riverside, IA"}]}, {"m": "Washington", "p": [{"n": "Jaron Rosien", "r": "Mayor, Washington, IA"}]}, {"m": "Wellman", "p": [{"n": "Ryan Miller", "r": "Mayor, Wellman, IA"}]}], "slug": "washington"}, "19185": {"county": [], "munis": [{"m": "Corydon", "p": [{"n": "Nathan Bennett", "r": "Mayor, Corydon, IA"}]}], "slug": "wayne"}, "19187": {"county": [], "munis": [{"m": "Badger", "p": [{"n": "Chris Wendell", "r": "Mayor, Badger, IA"}]}, {"m": "Dayton", "p": [{"n": "Dave Bills", "r": "Mayor, Dayton, IA"}]}, {"m": "Fort Dodge", "p": [{"n": "Matt Bemrich", "r": "Mayor, Fort Dodge, IA"}]}, {"m": "Gowrie", "p": [{"n": "Bruce Towne", "r": "Mayor, Gowrie, IA"}]}], "slug": "webster"}, "19189": {"county": [], "munis": [{"m": "Buffalo Center", "p": [{"n": "Rick Hofbauer", "r": "Mayor, Buffalo Center, IA"}]}, {"m": "Lake Mills", "p": [{"n": "Mark Peterson", "r": "Mayor, Lake Mills, IA"}]}], "slug": "winnebago"}, "19191": {"county": [], "munis": [{"m": "Calmar", "p": [{"n": "Keith Frana", "r": "Mayor, Calmar, IA"}]}, {"m": "Decorah", "p": [{"n": "Lorraine Borowski", "r": "Mayor, Decorah, IA"}]}, {"m": "Fort Atkinson", "p": [{"n": "Paul Herold", "r": "Mayor, Fort Atkinson, IA"}]}], "slug": "winneshiek"}, "19193": {"county": [], "munis": [{"m": "Correctionville", "p": [{"n": "Ken Bauer", "r": "Mayor, Correctionville, IA"}]}, {"m": "Lawton", "p": [{"n": "Jesse Pedersen", "r": "Mayor, Lawton, IA"}]}, {"m": "Sergeant Bluff", "p": [{"n": "Jon Winkel", "r": "Mayor, Sergeant Bluff, IA"}]}, {"m": "Sioux City", "p": [{"n": "Bob Scott", "r": "Mayor, Sioux City, IA"}]}, {"m": "Sloan", "p": [{"n": "Charles Thorpe", "r": "Mayor, Sloan, IA"}]}], "slug": "woodbury"}, "19195": {"county": [], "munis": [{"m": "Fertile", "p": [{"n": "Nick Bailey", "r": "Mayor, Fertile, IA"}]}], "slug": "worth"}, "19197": {"county": [], "munis": [{"m": "Belmond", "p": [{"n": "Frank Beminio", "r": "Mayor, Belmond, IA"}]}, {"m": "Clarion", "p": [{"n": "Rodney Heiden", "r": "Mayor, Clarion, IA"}]}, {"m": "Eagle Grove", "p": [{"n": "Michael Boyd", "r": "Mayor, Eagle Grove, IA"}]}], "slug": "wright"}, "20015": {"county": [], "munis": [{"m": "Andover", "p": [{"n": "Ronnie Price", "r": "Mayor, Andover, KS"}]}], "slug": "butler"}, "20031": {"county": [], "munis": [{"m": "Burlington", "p": [{"n": "Robert S. Luke (Stan)", "r": "Mayor, Burlington, KS"}]}], "slug": "coffey"}, "20033": {"county": [], "munis": [{"m": "Coldwater", "p": [{"n": "Joe Ceballos", "r": "Mayor, Coldwater, KS"}]}], "slug": "comanche"}, "20035": {"county": [], "munis": [{"m": "Arkansas City", "p": [{"n": "Jay Warren", "r": "Mayor, Arkansas City, KS"}]}], "slug": "cowley"}, "20037": {"county": [], "munis": [{"m": "Pittsburg", "p": [{"n": "Stu Hite", "r": "Mayor, Pittsburg, KS"}]}], "slug": "crawford"}, "20045": {"county": [], "munis": [{"m": "Lawrence", "p": [{"n": "Bart Littlejohn", "r": "Mayor, Lawrence, KS"}]}], "slug": "douglas"}, "20051": {"county": [], "munis": [{"m": "Hays", "p": [{"n": "Shaun Musil", "r": "Mayor, Hays, KS"}]}], "slug": "ellis"}, "20055": {"county": [], "munis": [{"m": "Holcomb", "p": [{"n": "Nicole Faulconer", "r": "Mayor, Holcomb, KS"}]}], "slug": "finney"}, "20059": {"county": [], "munis": [{"m": "Wellsville", "p": [{"n": "Bill Lytle", "r": "Mayor, Wellsville, KS"}]}], "slug": "franklin"}, "20061": {"county": [], "munis": [{"m": "Junction City", "p": [{"n": "Pat Landes", "r": "Mayor, Junction City, KS"}]}], "slug": "geary"}, "20067": {"county": [], "munis": [{"m": "Ulysses", "p": [{"n": "Tim McCauley", "r": "Mayor, Ulysses, KS"}]}], "slug": "grant"}, "20091": {"county": [], "munis": [{"m": "Gardner", "p": [{"n": "Steve Shute", "r": "Mayor, Gardner, KS"}]}, {"m": "Lenexa", "p": [{"n": "Julie Sayers", "r": "Mayor, Lenexa, KS"}]}, {"m": "Olathe", "p": [{"n": "John Bacon", "r": "Mayor, Olathe, KS"}]}, {"m": "Overland Park", "p": [{"n": "Carl R. Gerlach", "r": "Mayor, Overland Park, KS"}]}], "slug": "johnson"}, "20097": {"county": [], "munis": [{"m": "Greensburg", "p": [{"n": "Matt Christenson", "r": "Mayor, Greensburg, KS"}]}], "slug": "kiowa"}, "20099": {"county": [], "munis": [{"m": "Parsons", "p": [{"n": "Eric Strait", "r": "Mayor, Parsons, KS"}]}], "slug": "labette"}, "20103": {"county": [], "munis": [{"m": "Lansing", "p": [{"n": "Tony McNeill", "r": "Mayor, Lansing, KS"}]}, {"m": "Leavenworth", "p": [{"n": "Griff Martin", "r": "Mayor, Leavenworth, KS"}]}], "slug": "leavenworth"}, "20111": {"county": [], "munis": [{"m": "Emporia", "p": [{"n": "Erren Harter", "r": "Mayor, Emporia, KS"}]}], "slug": "lyon"}, "20127": {"county": [], "munis": [{"m": "Council Grove", "p": [{"n": "Debi Schwerdtfeger", "r": "Mayor, Council Grove, KS"}]}], "slug": "morris"}, "20131": {"county": [], "munis": [{"m": "Bern", "p": [{"n": "Ralph Schiffbauer", "r": "Mayor, Bern, KS"}]}], "slug": "nemaha"}, "20161": {"county": [], "munis": [{"m": "Manhattan", "p": [{"n": "Mark Hatesohl", "r": "Mayor, Manhattan, KS"}]}], "slug": "riley"}, "20165": {"county": [], "munis": [{"m": "Liebenthal", "p": [{"n": "Darrell Warner", "r": "Mayor, Liebenthal, KS"}]}], "slug": "rush"}, "20173": {"county": [], "munis": [{"m": "Wichita", "p": [{"n": "Lily Wu", "r": "Mayor, Wichita, KS"}]}], "slug": "sedgwick"}, "20177": {"county": [], "munis": [{"m": "Topeka", "p": [{"n": "Spencer L. Duncan", "r": "Mayor, Topeka, KS"}]}], "slug": "shawnee"}, "20209": {"county": [], "munis": [{"m": "Kansas City", "p": [{"n": "Tyrone Garner", "r": "Mayor, Kansas City, KS"}]}], "slug": "wyandotte"}, "21001": {"county": [], "munis": [{"m": "Columbia", "p": [{"n": "Pamela Hoots", "r": "Mayor, Columbia, KY"}]}], "slug": "adair"}, "21005": {"county": [], "munis": [{"m": "Lawrenceburg", "p": [{"n": "Troy Young", "r": "Mayor, Lawrenceburg, KY"}]}], "slug": "anderson"}, "21009": {"county": [], "munis": [{"m": "Glasgow", "p": [{"n": "Henry Royse", "r": "Mayor, Glasgow, KY"}]}], "slug": "barren"}, "21013": {"county": [], "munis": [{"m": "Middlesborough", "p": [{"n": "Boone Bowling", "r": "Mayor, Middlesboro, KY"}]}], "slug": "bell"}, "21015": {"county": [], "munis": [{"m": "Florence", "p": [{"n": "Julie Metzger Aubuchon", "r": "Mayor, Florence, KY"}]}, {"m": "Union", "p": [{"n": "Larry Solomon", "r": "Mayor, Union, KY"}]}], "slug": "boone"}, "21017": {"county": [], "munis": [{"m": "Paris", "p": [{"n": "John A. Plummer", "r": "Mayor, Paris, KY"}]}], "slug": "bourbon"}, "21019": {"county": [], "munis": [{"m": "Ashland", "p": [{"n": "Matt Perkins", "r": "Mayor, Ashland, KY"}]}], "slug": "boyd"}, "21021": {"county": [], "munis": [{"m": "Danville", "p": [{"n": "Q132194982", "r": "Mayor, Danville, KY"}]}, {"m": "Perryville", "p": [{"n": "Rob Kernodle", "r": "Mayor, Perryville, KY"}]}], "slug": "boyle"}, "21027": {"county": [], "munis": [{"m": "Hardinsburg", "p": [{"n": "Wayne Macy", "r": "Mayor, Hardinsburg, KY"}]}], "slug": "breckinridge"}, "21029": {"county": [], "munis": [{"m": "Mount Washington", "p": [{"n": "Stuart Owen", "r": "Mayor, Mount Washington, KY"}]}], "slug": "bullitt"}, "21035": {"county": [], "munis": [{"m": "Murray", "p": [{"n": "Bob Rogers", "r": "Mayor, Murray, KY"}]}], "slug": "calloway"}, "21037": {"county": [], "munis": [{"m": "Alexandria", "p": [{"n": "Andy Schabell", "r": "Mayor, Alexandria, KY"}]}, {"m": "Fort Thomas", "p": [{"n": "Eric Haas", "r": "Mayor, Fort Thomas, KY"}]}], "slug": "campbell"}, "21041": {"county": [], "munis": [{"m": "Ghent", "p": [{"n": "Jimmy Lewellyn", "r": "Mayor, Ghent, KY"}]}], "slug": "carroll"}, "21043": {"county": [], "munis": [{"m": "Olive Hill", "p": [{"n": "Jerry Callihan", "r": "Mayor, Olive Hill, KY"}]}], "slug": "carter"}, "21047": {"county": [], "munis": [{"m": "Hopkinsville", "p": [{"n": "James R. Knight, Jr.", "r": "Mayor, Hopkinsville, KY"}]}], "slug": "christian"}, "21049": {"county": [], "munis": [{"m": "Winchester", "p": [{"n": "JoEllen Reed", "r": "Mayor, Winchester, KY"}]}], "slug": "clark"}, "21059": {"county": [], "munis": [{"m": "Owensboro", "p": [{"n": "Tom Watson", "r": "Mayor, Owensboro, KY"}]}], "slug": "daviess"}, "21067": {"county": [], "munis": [{"m": "Lexington Fayette", "p": [{"n": "Linda Gorton", "r": "Mayor, Lexington, KY"}]}], "slug": "fayette"}, "21071": {"county": [], "munis": [{"m": "Allen", "p": [{"n": "Ernestine Hall", "r": "Mayor, Allen, KY"}]}], "slug": "floyd"}, "21073": {"county": [], "munis": [{"m": "Frankfort", "p": [{"n": "Layne Wilkerson", "r": "Mayor, Frankfort, KY"}]}], "slug": "franklin"}, "21075": {"county": [], "munis": [{"m": "Hickman", "p": [{"n": "Heath Carlton", "r": "Mayor, Hickman, KY"}]}], "slug": "fulton"}, "21083": {"county": [], "munis": [{"m": "Mayfield", "p": [{"n": "Kathy Stewart O'Nan", "r": "Mayor, Mayfield, KY"}]}], "slug": "graves"}, "21087": {"county": [], "munis": [{"m": "Greensburg", "p": [{"n": "John Michael Shuffett", "r": "Mayor, Greensburg, KY"}]}], "slug": "green"}, "21089": {"county": [], "munis": [{"m": "Flatwoods", "p": [{"n": "Buford Hurley II", "r": "Mayor, Flatwoods, KY"}]}], "slug": "greenup"}, "21093": {"county": [], "munis": [{"m": "Elizabethtown", "p": [{"n": "Jeff Gregory", "r": "Mayor, Elizabethtown, KY"}]}, {"m": "Radcliff", "p": [{"n": "JJ Duvall", "r": "Mayor, Radcliff, KY"}]}], "slug": "hardin"}, "21097": {"county": [], "munis": [{"m": "Cynthiana", "p": [{"n": "Isaac T. Dailey", "r": "Mayor, Cynthiana, KY"}]}], "slug": "harrison"}, "21101": {"county": [], "munis": [{"m": "Henderson", "p": [{"n": "Brad Staton", "r": "Mayor, Henderson, KY"}]}], "slug": "henderson"}, "21107": {"county": [], "munis": [{"m": "Madisonville", "p": [{"n": "Kevin Cotton", "r": "Mayor, Madisonville, KY"}]}], "slug": "hopkins"}, "21111": {"county": [], "munis": [{"m": "Jeffersontown", "p": [{"n": "Carol Pike", "r": "Mayor, Jeffersontown, KY"}]}, {"m": "Louisville", "p": [{"n": "Craig Greenberg", "r": "Mayor, Louisville, KY"}]}, {"m": "Lyndon", "p": [{"n": "Brent Hagan", "r": "Mayor, Lyndon, KY"}]}, {"m": "Shively", "p": [{"n": "Maria D. Johnson", "r": "Mayor, Shively, KY"}]}, {"m": "St Matthews", "p": [{"n": "Richard J. Tonini", "r": "Mayor, St. Matthews, KY"}]}], "slug": "jefferson"}, "21113": {"county": [], "munis": [{"m": "Nicholasville", "p": [{"n": "Alex Carter", "r": "Mayor, Nicholasville, KY"}]}], "slug": "jessamine"}, "21117": {"county": [], "munis": [{"m": "Covington", "p": [{"n": "Ron Washington", "r": "Mayor, Covington, KY"}]}, {"m": "Erlanger", "p": [{"n": "Jessica Fette", "r": "Mayor, Erlanger, KY"}]}, {"m": "Independence", "p": [{"n": "Chris Reinersman", "r": "Mayor, Independence, KY"}]}], "slug": "kenton"}, "21119": {"county": [], "munis": [{"m": "Hindman", "p": [{"n": "Patricia Hall", "r": "Mayor, Hindman, KY"}]}], "slug": "knott"}, "21121": {"county": [], "munis": [{"m": "Barbourville", "p": [{"n": "David Thompson", "r": "Mayor, Barbourville, KY"}]}], "slug": "knox"}, "21127": {"county": [], "munis": [{"m": "Louisa", "p": [{"n": "Harold E. Slone", "r": "Mayor, Louisa, KY"}]}], "slug": "lawrence"}, "21145": {"county": [], "munis": [{"m": "Paducah", "p": [{"n": "George P. Bray", "r": "Mayor, Paducah, KY"}]}], "slug": "mccracken"}, "21151": {"county": [], "munis": [{"m": "Berea", "p": [{"n": "Bruce Fraley", "r": "Mayor, Berea, KY"}]}], "slug": "madison"}, "21157": {"county": [], "munis": [{"m": "Calvert City", "p": [{"n": "Gene Colburn", "r": "Mayor, Calvert City, KY"}]}], "slug": "marshall"}, "21161": {"county": [], "munis": [{"m": "Maysville", "p": [{"n": "Debra L. Cotterill", "r": "Mayor, Maysville, KY"}]}], "slug": "mason"}, "21167": {"county": [], "munis": [{"m": "Harrodsburg", "p": [{"n": "Robert Williams", "r": "Mayor, Harrodsburg, KY"}]}], "slug": "mercer"}, "21169": {"county": [], "munis": [{"m": "Edmonton", "p": [{"n": "Doug Smith", "r": "Mayor, Edmonton, KY"}]}], "slug": "metcalfe"}, "21177": {"county": [], "munis": [{"m": "Central City", "p": [{"n": "Tony Armour", "r": "Mayor, Central City, KY"}]}], "slug": "muhlenberg"}, "21179": {"county": [], "munis": [{"m": "Bardstown", "p": [{"n": "Richard Heaton", "r": "Mayor, Bardstown, KY"}]}], "slug": "nelson"}, "21185": {"county": [], "munis": [{"m": "Goshen", "p": [{"n": "Bob Thacker", "r": "Mayor, Goshen, KY"}]}, {"m": "La Grange", "p": [{"n": "John Black", "r": "Mayor, La Grange, KY"}]}], "slug": "oldham"}, "21193": {"county": [], "munis": [{"m": "Hazard", "p": [{"n": "Donald Mobelini", "r": "Mayor, Hazard, KY"}]}], "slug": "perry"}, "21195": {"county": [], "munis": [{"m": "Pikeville", "p": [{"n": "James A. Carter", "r": "Mayor, Pikeville, KY"}]}], "slug": "pike"}, "21199": {"county": [], "munis": [{"m": "Somerset", "p": [{"n": "Alan Keck", "r": "Mayor, Somerset, KY"}]}], "slug": "pulaski"}, "21209": {"county": [], "munis": [{"m": "Georgetown", "p": [{"n": "Burney Jenkins", "r": "Mayor, Georgetown, KY"}]}], "slug": "scott"}, "21211": {"county": [], "munis": [{"m": "Shelbyville", "p": [{"n": "David B. Eaton", "r": "Mayor, Shelbyville, KY"}]}], "slug": "shelby"}, "21213": {"county": [], "munis": [{"m": "Franklin", "p": [{"n": "Larry Dixon", "r": "Mayor, Franklin, KY"}]}], "slug": "simpson"}, "21215": {"county": [], "munis": [{"m": "Taylorsville", "p": [{"n": "Karen Spencer", "r": "Mayor, Taylorsville, KY"}]}], "slug": "spencer"}, "21217": {"county": [], "munis": [{"m": "Campbellsville", "p": [{"n": "Dennis Benningfield", "r": "Mayor, Campbellsville, KY"}]}], "slug": "taylor"}, "21227": {"county": [], "munis": [{"m": "Bowling Green", "p": [{"n": "Todd Alcott", "r": "Mayor, Bowling Green, KY"}]}], "slug": "warren"}, "21229": {"county": [], "munis": [{"m": "Springfield", "p": [{"n": "Debbie Wakefield", "r": "Mayor, Springfield, KY"}]}], "slug": "washington"}, "21235": {"county": [], "munis": [{"m": "Corbin", "p": [{"n": "Suzie Razmus", "r": "Mayor, Corbin, KY"}]}, {"m": "Williamsburg", "p": [{"n": "Roddy Harrison", "r": "Mayor, Williamsburg, KY"}]}], "slug": "whitley"}, "21239": {"county": [], "munis": [{"m": "Versailles", "p": [{"n": "Laura Dake", "r": "Mayor, Versailles, KY"}]}], "slug": "woodford"}, "22015": {"county": [], "munis": [{"m": "Bossier City", "p": [{"n": "Thomas Chandler", "r": "Mayor, Bossier City, LA"}]}], "slug": "bossier-parish"}, "22017": {"county": [], "munis": [{"m": "Shreveport", "p": [{"n": "Tom Arceneaux", "r": "Mayor, Shreveport, LA"}]}], "slug": "caddo-parish"}, "22019": {"county": [], "munis": [{"m": "Lake Charles", "p": [{"n": "Nic Hunter", "r": "Mayor, Lake Charles, LA"}]}], "slug": "calcasieu-parish"}, "22033": {"county": [], "munis": [{"m": "Baker", "p": [{"n": "Darnell Waites", "r": "Mayor, Baker, LA"}]}, {"m": "Baton Rouge", "p": [{"n": "Sharon Weston Broome", "r": "Mayor, Baton Rouge, LA"}]}], "slug": "east-baton-rouge-parish"}, "22045": {"county": [], "munis": [{"m": "New Iberia", "p": [{"n": "Freddie DeCourt", "r": "Mayor, New Iberia, LA"}]}], "slug": "iberia-parish"}, "22051": {"county": [], "munis": [{"m": "Kenner", "p": [{"n": "Michael Glaser", "r": "Mayor, Kenner, LA"}]}], "slug": "jefferson-parish"}, "22055": {"county": [], "munis": [{"m": "Lafayette", "p": [{"n": "Josh Guillory", "r": "Mayor, Lafayette, LA"}]}], "slug": "lafayette-parish"}, "22067": {"county": [], "munis": [{"m": "Bastrop", "p": [{"n": "Henry Cotton", "r": "Mayor, Bastrop, LA"}]}], "slug": "morehouse-parish"}, "22069": {"county": [], "munis": [{"m": "Natchitoches", "p": [{"n": "Ronnie Williams. Jr", "r": "Mayor, Natchitoches, LA"}]}], "slug": "natchitoches-parish"}, "22071": {"county": [], "munis": [{"m": "New Orleans", "p": [{"n": "Helena Moreno", "r": "Mayor, New Orleans, LA"}]}], "slug": "orleans-parish"}, "22073": {"county": [], "munis": [{"m": "Monroe", "p": [{"n": "Friday Ellis", "r": "Mayor, Monroe, LA"}]}], "slug": "ouachita-parish"}, "22079": {"county": [], "munis": [{"m": "Alexandria", "p": [{"n": "Jacques Roy", "r": "Mayor, Alexandria, LA"}]}, {"m": "Pineville", "p": [{"n": "Clarence Fields", "r": "Mayor, Pineville, LA"}]}], "slug": "rapides-parish"}, "22097": {"county": [], "munis": [{"m": "Opelousas", "p": [{"n": "Julius Alsandor", "r": "Mayor, Opelousas, LA"}]}], "slug": "st-landry-parish"}, "22103": {"county": [], "munis": [{"m": "Slidell", "p": [{"n": "Greg Cromer", "r": "Mayor, Slidell, LA"}]}], "slug": "st-tammany-parish"}, "22113": {"county": [], "munis": [{"m": "Abbeville", "p": [{"n": "Roslyn R. White", "r": "Mayor, Abbeville, LA"}]}], "slug": "vermilion-parish"}, "23001": {"county": [], "munis": [{"m": "Auburn", "p": [{"n": "Jeffrey D. Harmon", "r": "Mayor, Auburn, ME"}]}, {"m": "Lewiston", "p": [{"n": "Carl L. Sheline", "r": "Mayor, Lewiston, ME"}]}], "slug": "androscoggin"}, "23005": {"county": [], "munis": [{"m": "Portland", "p": [{"n": "Mark Dion", "r": "Mayor, Portland, ME"}]}, {"m": "South Portland", "p": [{"n": "Misha C. Pride", "r": "Mayor, South Portland, ME"}]}, {"m": "Westbrook", "p": [{"n": "David Morse", "r": "Mayor, Westbrook, ME"}]}], "slug": "cumberland"}, "23011": {"county": [], "munis": [{"m": "Augusta", "p": [{"n": "Mark O’Brien", "r": "Mayor, Augusta, ME"}]}, {"m": "Waterville", "p": [{"n": "Michael Morris", "r": "Mayor, Waterville, ME"}]}], "slug": "kennebec"}, "23031": {"county": [], "munis": [{"m": "Biddeford", "p": [{"n": "Martin Grohman", "r": "Mayor, Biddeford, ME"}]}, {"m": "Saco", "p": [{"n": "Jodi MacPhail", "r": "Mayor, Saco, ME"}]}, {"m": "Sanford", "p": [{"n": "Becky A. Brink", "r": "Mayor, Sanford, ME"}]}], "slug": "york"}, "24001": {"county": [], "munis": [{"m": "Frostburg", "p": [{"n": "W. Robert Flanigan", "r": "Mayor, Frostburg, MD"}]}], "slug": "allegany"}, "24021": {"county": [], "munis": [{"m": "Frederick", "p": [{"n": "Michael O'Connor", "r": "Mayor, Frederick, MD"}]}], "slug": "frederick"}, "24031": {"county": [], "munis": [{"m": "Gaithersburg", "p": [{"n": "Jud Ashman", "r": "Mayor, Gaithersburg, MD"}]}, {"m": "Rockville", "p": [{"n": "Monique Ashton", "r": "Mayor, Rockville, MD"}]}], "slug": "montgomery"}, "24033": {"county": [], "munis": [{"m": "Bowie", "p": [{"n": "Tim Adams", "r": "Mayor, Bowie, MD"}]}], "slug": "prince-george-s"}, "24043": {"county": [], "munis": [{"m": "Hagerstown", "p": [{"n": "William McIntire", "r": "Mayor, Hagerstown, MD"}]}], "slug": "washington"}, "24045": {"county": [], "munis": [{"m": "Salisbury", "p": [{"n": "Randolph J. Taylor", "r": "Mayor, Salisbury, MD"}]}], "slug": "wicomico"}, "25005": {"county": [], "munis": [{"m": "Fall River", "p": [{"n": "Paul Coogan", "r": "Mayor, Fall River, MA"}]}, {"m": "New Bedford", "p": [{"n": "Jonathan F. Mitchell", "r": "Mayor, New Bedford, MA"}]}, {"m": "Taunton", "p": [{"n": "Shaunna O'Connell", "r": "Mayor, Taunton, MA"}]}], "slug": "bristol"}, "25009": {"county": [], "munis": [{"m": "Amesbury", "p": [{"n": "Kassandra Gove", "r": "Mayor, Amesbury, MA"}]}, {"m": "Beverly", "p": [{"n": "Michael P. Cahill", "r": "Mayor, Beverly, MA"}]}, {"m": "Haverhill", "p": [{"n": "Melinda E. Barrett", "r": "Mayor, Haverhill, MA"}]}, {"m": "Lawrence", "p": [{"n": "Q124247832", "r": "Mayor, Lawrence, MA"}]}, {"m": "Lynn", "p": [{"n": "Jared C. Nicholson", "r": "Mayor, Lynn, MA"}]}, {"m": "Methuen", "p": [{"n": "Q131176725", "r": "Mayor, Methuen, MA"}]}, {"m": "Peabody", "p": [{"n": "Edward Bettencourt", "r": "Mayor, Peabody, MA"}]}, {"m": "Salem", "p": [{"n": "Dominick Pangallo", "r": "Mayor, Salem, MA"}]}], "slug": "essex"}, "25013": {"county": [], "munis": [{"m": "Holyoke", "p": [{"n": "Joshua A. Garcia", "r": "Mayor, Holyoke, MA"}]}, {"m": "Springfield", "p": [{"n": "Domenic Sarno", "r": "Mayor, Springfield, MA"}]}], "slug": "hampden"}, "25015": {"county": [], "munis": [{"m": "Northampton", "p": [{"n": "Gina-Louise Sciarra", "r": "Mayor, Northampton, MA"}]}], "slug": "hampshire"}, "25017": {"county": [], "munis": [{"m": "Cambridge", "p": [{"n": "Denise Simmons", "r": "Mayor, Cambridge, MA"}]}, {"m": "Lowell", "p": [{"n": "Sokhary Chau", "r": "Mayor, Lowell, MA"}]}, {"m": "Malden", "p": [{"n": "Gary Christenson", "r": "Mayor, Malden, MA"}]}, {"m": "Medford", "p": [{"n": "Breanna Lungo-Koehn", "r": "Mayor, Medford, MA"}]}, {"m": "Newton", "p": [{"n": "Ruthanne Fuller", "r": "Mayor, Newton, MA"}]}, {"m": "Somerville", "p": [{"n": "Katjana Ballantyne", "r": "Mayor, Somerville, MA"}]}, {"m": "Waltham", "p": [{"n": "Jeannette A. McCarthy", "r": "Mayor, Waltham, MA"}]}], "slug": "middlesex"}, "25021": {"county": [], "munis": [{"m": "Quincy", "p": [{"n": "Thomas P. Koch", "r": "Mayor, Quincy, MA"}]}, {"m": "Weymouth Town", "p": [{"n": "Robert L. Hedlund", "r": "Mayor, Weymouth, MA"}]}], "slug": "norfolk"}, "25023": {"county": [], "munis": [{"m": "Brockton", "p": [{"n": "Robert F. Sullivan", "r": "Mayor, Brockton, MA"}]}], "slug": "plymouth"}, "25025": {"county": [], "munis": [{"m": "Boston", "p": [{"n": "Michelle Wu", "r": "Mayor, Boston, MA"}]}, {"m": "Revere", "p": [{"n": "Patrick M. Keefe Jr.", "r": "Mayor, Revere, MA"}]}], "slug": "suffolk"}, "25027": {"county": [], "munis": [{"m": "Worcester", "p": [{"n": "Joseph Petty", "r": "Mayor, Worcester, MA"}]}], "slug": "worcester"}, "26017": {"county": [], "munis": [{"m": "Bay City", "p": [{"n": "Christopher Girard", "r": "Mayor, Bay City, MI"}]}], "slug": "bay"}, "26025": {"county": [], "munis": [{"m": "Battle Creek", "p": [{"n": "Mark Behnke", "r": "Mayor, Battle Creek, MI"}]}], "slug": "calhoun"}, "26041": {"county": [], "munis": [{"m": "Escanaba", "p": [{"n": "Mark Ammel", "r": "Mayor, Escanaba, MI"}]}], "slug": "delta"}, "26045": {"county": [], "munis": [{"m": "Olivet", "p": [{"n": "Laura Barlond-Maas", "r": "Mayor, Olivet, MI"}]}], "slug": "eaton"}, "26049": {"county": [], "munis": [{"m": "Flint", "p": [{"n": "Karen Weaver", "r": "Mayor, Flint, MI"}]}], "slug": "genesee"}, "26055": {"county": [], "munis": [{"m": "Traverse City", "p": [{"n": "Amy Shamroe", "r": "Mayor, Traverse City, MI"}]}], "slug": "grand-traverse"}, "26065": {"county": [], "munis": [{"m": "Lansing", "p": [{"n": "Virgil Bernero", "r": "Mayor, Lansing, MI"}]}], "slug": "ingham"}, "26077": {"county": [], "munis": [{"m": "Kalamazoo", "p": [{"n": "David Anderson", "r": "Mayor, Kalamazoo, MI"}]}], "slug": "kalamazoo"}, "26081": {"county": [], "munis": [{"m": "Grand Rapids", "p": [{"n": "Rosalynn Bliss", "r": "Mayor, Grand Rapids, MI"}]}, {"m": "Kentwood", "p": [{"n": "Stephen Kepley", "r": "Mayor, Kentwood, MI"}]}, {"m": "Wyoming", "p": [{"n": "Kent Vanderwood", "r": "Mayor, Wyoming, MI"}]}], "slug": "kent"}, "26097": {"county": [], "munis": [{"m": "Mackinac Island", "p": [{"n": "Margaret Doud", "r": "Mayor, Mackinac Island, MI"}]}], "slug": "mackinac"}, "26099": {"county": [], "munis": [{"m": "Sterling Heights", "p": [{"n": "Michael C. Taylor", "r": "Mayor, Sterling Heights, MI"}]}, {"m": "Warren", "p": [{"n": "James R. Fouts", "r": "Mayor, Warren, MI"}]}], "slug": "macomb"}, "26107": {"county": [], "munis": [{"m": "Big Rapids", "p": [{"n": "Q124459604", "r": "Mayor, Big Rapids, MI"}]}], "slug": "mecosta"}, "26111": {"county": [], "munis": [{"m": "Midland", "p": [{"n": "Maureen Donker", "r": "Mayor, Midland, MI"}]}], "slug": "midland"}, "26121": {"county": [], "munis": [{"m": "Muskegon", "p": [{"n": "Ken Johnson", "r": "Mayor, Muskegon, MI"}]}], "slug": "muskegon"}, "26125": {"county": [], "munis": [{"m": "Rochester Hills", "p": [{"n": "Bryan Barnett", "r": "Mayor, Rochester Hills, MI"}]}, {"m": "Southfield", "p": [{"n": "Kenson Siver", "r": "Mayor, Southfield, MI"}]}, {"m": "Troy", "p": [{"n": "Ethan Baker", "r": "Mayor, Troy, MI"}]}], "slug": "oakland"}, "26147": {"county": [], "munis": [{"m": "Port Huron", "p": [{"n": "Anita Ashford", "r": "Mayor, Port Huron, MI"}]}], "slug": "st-clair"}, "26161": {"county": [], "munis": [{"m": "Ann Arbor", "p": [{"n": "Christopher Taylor", "r": "Mayor, Ann Arbor, MI"}]}], "slug": "washtenaw"}, "26163": {"county": [], "munis": [{"m": "Dearborn", "p": [{"n": "Abdullah Hammoud", "r": "Mayor, Dearborn, MI"}]}, {"m": "Detroit", "p": [{"n": "Mary Sheffield", "r": "Mayor, Detroit, MI"}]}, {"m": "Grosse Pointe Woods", "p": [{"n": "Arthur Bryant", "r": "Mayor, Grosse Pointe Woods, MI"}]}, {"m": "Highland Park", "p": [{"n": "Glenda McDonald", "r": "Mayor, Highland Park, MI"}]}, {"m": "Livonia", "p": [{"n": "Maureen Miller Brosnan", "r": "Mayor, Livonia, MI"}]}], "slug": "wayne"}, "27003": {"county": [], "munis": [{"m": "Columbus", "p": [{"n": "Jesse Preiner", "r": "Mayor, Columbus, MN"}]}], "slug": "anoka"}, "27043": {"county": [], "munis": [{"m": "Minnesota Lake", "p": [{"n": "Q40249461", "r": "Mayor, Minnesota Lake, MN"}]}], "slug": "faribault"}, "27053": {"county": [], "munis": [{"m": "Bloomington", "p": [{"n": "Tim Busse", "r": "Mayor, Bloomington, MN"}]}, {"m": "Brooklyn Park", "p": [{"n": "Lisa Jacobson", "r": "Mayor, Brooklyn Park, MN"}]}, {"m": "Minneapolis", "p": [{"n": "Jacob Frey", "r": "Mayor, Minneapolis, MN"}]}, {"m": "Plymouth", "p": [{"n": "Jeffry Wosje", "r": "Mayor, Plymouth, MN"}]}], "slug": "hennepin"}, "27059": {"county": [], "munis": [{"m": "Braham", "p": [{"n": "Patricia Carlson", "r": "Mayor, Braham, MN"}]}], "slug": "isanti"}, "27093": {"county": [], "munis": [{"m": "Watkins", "p": [{"n": "Christopher Rowan", "r": "Mayor, Watkins, MN"}]}], "slug": "meeker"}, "27097": {"county": [], "munis": [{"m": "Motley", "p": [{"n": "Mike Schmidt", "r": "Mayor, Motley, MN"}]}], "slug": "morrison"}, "27109": {"county": [], "munis": [{"m": "Rochester", "p": [{"n": "Kim Norton", "r": "Mayor, Rochester, MN"}]}], "slug": "olmsted"}, "27123": {"county": [], "munis": [{"m": "Maplewood", "p": [{"n": "Marylee Abrams", "r": "Mayor, Maplewood, MN"}]}, {"m": "St Paul", "p": [{"n": "Kaohly Her", "r": "Mayor, Saint Paul, MN"}]}], "slug": "ramsey"}, "27131": {"county": [], "munis": [{"m": "Northfield", "p": [{"n": "Rhonda Pownell", "r": "Mayor, Northfield, MN"}]}], "slug": "rice"}, "27137": {"county": [], "munis": [{"m": "Duluth", "p": [{"n": "Roger Reinert", "r": "Mayor, Duluth, MN"}]}, {"m": "Floodwood", "p": [{"n": "Tad Farrell", "r": "Mayor, Floodwood, MN"}]}], "slug": "st-louis"}, "27141": {"county": [], "munis": [{"m": "Becker", "p": [{"n": "Tracy Bertram", "r": "Mayor, Becker, MN"}]}, {"m": "Elk River", "p": [{"n": "Calvin Portner", "r": "Mayor, Elk River, MN"}]}], "slug": "sherburne"}, "27143": {"county": [], "munis": [{"m": "Winthrop", "p": [{"n": "Kelly Pierson", "r": "Mayor, Winthrop, MN"}]}], "slug": "sibley"}, "27145": {"county": [], "munis": [{"m": "St Cloud", "p": [{"n": "Dave Kleis", "r": "Mayor, St. Cloud, MN"}]}], "slug": "stearns"}, "27147": {"county": [], "munis": [{"m": "Blooming Prairie", "p": [{"n": "Curt Esplan", "r": "Mayor, Blooming Prairie, MN"}]}], "slug": "steele"}, "27171": {"county": [], "munis": [{"m": "Hanover", "p": [{"n": "Chris Kauffman", "r": "Mayor, Hanover, MN"}]}], "slug": "wright"}, "28001": {"county": [], "munis": [{"m": "Natchez", "p": [{"n": "Dan M. Gibson", "r": "Mayor, Natchez, MS"}]}], "slug": "adams"}, "28011": {"county": [], "munis": [{"m": "Cleveland", "p": [{"n": "Billy Nowell", "r": "Mayor, Cleveland, MS"}]}], "slug": "bolivar"}, "28025": {"county": [], "munis": [{"m": "West Point", "p": [{"n": "Rod Bobo", "r": "Mayor, West Point, MS"}]}], "slug": "clay"}, "28027": {"county": [], "munis": [{"m": "Clarksdale", "p": [{"n": "Chuck Espy", "r": "Mayor, Clarksdale, MS"}]}], "slug": "coahoma"}, "28033": {"county": [], "munis": [{"m": "Hernando", "p": [{"n": "Chip Johnson", "r": "Mayor, Hernando, MS"}]}, {"m": "Horn Lake", "p": [{"n": "Allen Latimer", "r": "Mayor, Horn Lake, MS"}]}, {"m": "Olive Branch", "p": [{"n": "Ken Adams", "r": "Mayor, Olive Branch, MS"}]}, {"m": "Southaven", "p": [{"n": "Darren Musselwhite", "r": "Mayor, Southaven, MS"}]}], "slug": "desoto"}, "28035": {"county": [], "munis": [{"m": "Hattiesburg", "p": [{"n": "Toby Barker", "r": "Mayor, Hattiesburg, MS"}]}], "slug": "forrest"}, "28043": {"county": [], "munis": [{"m": "Grenada", "p": [{"n": "Charles H. Latham", "r": "Mayor, Grenada, MS"}]}], "slug": "grenada"}, "28047": {"county": [], "munis": [{"m": "Biloxi", "p": [{"n": "Andrew Gilich", "r": "Mayor, Biloxi, MS"}]}, {"m": "Gulfport", "p": [{"n": "William Gardner Hewes", "r": "Mayor, Gulfport, MS"}]}, {"m": "Long Beach", "p": [{"n": "George L. Bass", "r": "Mayor, Long Beach, MS"}]}], "slug": "harrison"}, "28049": {"county": [], "munis": [{"m": "Byram", "p": [{"n": "Richard White", "r": "Mayor, Byram, MS"}]}, {"m": "Clinton", "p": [{"n": "Phil Fisher", "r": "Mayor, Clinton, MS"}]}, {"m": "Jackson", "p": [{"n": "Chokwe Antar Lumumba", "r": "Mayor, Jackson, MS"}]}], "slug": "hinds"}, "28059": {"county": [], "munis": [{"m": "Gautier", "p": [{"n": "Casey Vaughan", "r": "Mayor, Gautier, MS"}]}, {"m": "Moss Point", "p": [{"n": "Billy Knight, Sr.", "r": "Mayor, Moss Point, MS"}]}, {"m": "Ocean Springs", "p": [{"n": "Kenny Holloway", "r": "Mayor, Ocean Springs, MS"}]}, {"m": "Pascagoula", "p": [{"n": "Jay Willis", "r": "Mayor, Pascagoula, MS"}]}], "slug": "jackson"}, "28067": {"county": [], "munis": [{"m": "Laurel", "p": [{"n": "Johnny Magee", "r": "Mayor, Laurel, MS"}]}], "slug": "jones"}, "28071": {"county": [], "munis": [{"m": "Oxford", "p": [{"n": "Robyn Tannehill", "r": "Mayor, Oxford, MS"}]}], "slug": "lafayette"}, "28075": {"county": [], "munis": [{"m": "Meridian", "p": [{"n": "Q109905488", "r": "Mayor, Meridian, MS"}]}], "slug": "lauderdale"}, "28081": {"county": [], "munis": [{"m": "Tupelo", "p": [{"n": "Todd Jordan", "r": "Mayor, Tupelo, MS"}]}], "slug": "lee"}, "28083": {"county": [], "munis": [{"m": "Greenwood", "p": [{"n": "Carolyn McAdams", "r": "Mayor, Greenwood, MS"}]}], "slug": "leflore"}, "28085": {"county": [], "munis": [{"m": "Brookhaven", "p": [{"n": "Joe C. Cox", "r": "Mayor, Brookhaven, MS"}]}], "slug": "lincoln"}, "28087": {"county": [], "munis": [{"m": "Columbus", "p": [{"n": "Keith Gaskin", "r": "Mayor, Columbus, MS"}]}], "slug": "lowndes"}, "28089": {"county": [], "munis": [{"m": "Canton", "p": [{"n": "William Truly, Jr.", "r": "Mayor, Canton, MS"}]}, {"m": "Madison", "p": [{"n": "Mary Hawkins Butler", "r": "Mayor, Madison, MS"}]}, {"m": "Ridgeland", "p": [{"n": "Gene F. McGee", "r": "Mayor, Ridgeland, MS"}]}], "slug": "madison"}, "28105": {"county": [], "munis": [{"m": "Starkville", "p": [{"n": "Lynn Spruill", "r": "Mayor, Starkville, MS"}]}], "slug": "oktibbeha"}, "28109": {"county": [], "munis": [{"m": "Picayune", "p": [{"n": "Jim Luke", "r": "Mayor, Picayune, MS"}]}], "slug": "pearl-river"}, "28113": {"county": [], "munis": [{"m": "Mccomb", "p": [{"n": "Quordiniah N. Lockley", "r": "Mayor, McComb, MS"}]}], "slug": "pike"}, "28121": {"county": [], "munis": [{"m": "Brandon", "p": [{"n": "Butch Lee", "r": "Mayor, Brandon, MS"}]}, {"m": "Flowood", "p": [{"n": "Gary Rhoads", "r": "Mayor, Flowood, MS"}]}, {"m": "Pearl", "p": [{"n": "Jake Windham", "r": "Mayor, Pearl, MS"}]}], "slug": "rankin"}, "28133": {"county": [], "munis": [{"m": "Indianola", "p": [{"n": "Ken Featherstone", "r": "Mayor, Indianola, MS"}]}], "slug": "sunflower"}, "28149": {"county": [], "munis": [{"m": "Vicksburg", "p": [{"n": "George Flaggs Jr.", "r": "Mayor, Vicksburg, MS"}]}], "slug": "warren"}, "28151": {"county": [], "munis": [{"m": "Greenville", "p": [{"n": "Errick D. Simmons", "r": "Mayor, Greenville, MS"}]}], "slug": "washington"}, "28163": {"county": [], "munis": [{"m": "Yazoo City", "p": [{"n": "Q131346619", "r": "Mayor, Yazoo City, MS"}]}], "slug": "yazoo"}, "29013": {"county": [], "munis": [{"m": "Butler", "p": [{"n": "Jim Henry", "r": "Mayor, Butler, MO"}]}], "slug": "bates"}, "29019": {"county": [], "munis": [{"m": "Columbia", "p": [{"n": "Barbara Buffaloe", "r": "Mayor, Columbia, MO"}]}], "slug": "boone"}, "29021": {"county": [], "munis": [{"m": "St Joseph", "p": [{"n": "John Josendale", "r": "Mayor, St. Joseph, MO"}]}], "slug": "buchanan"}, "29023": {"county": [], "munis": [{"m": "Poplar Bluff", "p": [{"n": "Shane Cornman", "r": "Mayor, Poplar Bluff, MO"}]}], "slug": "butler"}, "29031": {"county": [], "munis": [{"m": "Jackson", "p": [{"n": "Dwain Hahs", "r": "Mayor, Jackson, MO"}]}], "slug": "cape-girardeau"}, "29051": {"county": [], "munis": [{"m": "Jefferson City", "p": [{"n": "Ron Fitzwater", "r": "Mayor, Jefferson City, MO"}]}], "slug": "cole"}, "29073": {"county": [], "munis": [{"m": "Hermann", "p": [{"n": "Bruce Cox", "r": "Mayor, Hermann, MO"}]}], "slug": "gasconade"}, "29077": {"county": [], "munis": [{"m": "Springfield", "p": [{"n": "Ken McClure", "r": "Mayor, Springfield, MO"}]}], "slug": "greene"}, "29081": {"county": [], "munis": [{"m": "Bethany", "p": [{"n": "Lance Johns", "r": "Mayor, Bethany, MO"}]}], "slug": "harrison"}, "29089": {"county": [], "munis": [{"m": "Fayette", "p": [{"n": "Greg Stidham", "r": "Mayor, Fayette, MO"}]}], "slug": "howard"}, "29095": {"county": [], "munis": [{"m": "Independence", "p": [{"n": "Rory Rowland", "r": "Mayor, Independence, MO"}]}, {"m": "Kansas City", "p": [{"n": "Quinton Lucas", "r": "Mayor, Kansas City, MO"}]}, {"m": "Lee S Summit", "p": [{"n": "William A. Baird", "r": "Mayor, Lee's Summit, MO"}]}], "slug": "jackson"}, "29097": {"county": [], "munis": [{"m": "Joplin", "p": [{"n": "Douglas Lawson", "r": "Mayor, Joplin, MO"}]}], "slug": "jasper"}, "29159": {"county": [], "munis": [{"m": "Sedalia", "p": [{"n": "Andrew Dawson", "r": "Mayor, Sedalia, MO"}]}], "slug": "pettis"}, "29183": {"county": [], "munis": [{"m": "O Fallon", "p": [{"n": "Bill Hennessy", "r": "Mayor, O'Fallon, MO"}]}, {"m": "St Charles", "p": [{"n": "Dan Borgmeyer", "r": "Mayor, St. Charles, MO"}]}, {"m": "St Peters", "p": [{"n": "Len Pagano", "r": "Mayor, St. Peters, MO"}]}], "slug": "st-charles"}, "29189": {"county": [], "munis": [{"m": "Creve Coeur", "p": [{"n": "Robert Hoffman", "r": "Mayor, Creve Coeur, MO"}]}, {"m": "Shrewsbury", "p": [{"n": "Mike Travaglini", "r": "Mayor, Shrewsbury, MO"}]}, {"m": "Velda City", "p": [{"n": "Melda B. Collins", "r": "Mayor, Velda City, MO"}]}, {"m": "Vinita Park", "p": [{"n": "James W. McGee", "r": "Mayor, Vinita Park, MO"}]}, {"m": "Warson Woods", "p": [{"n": "Laurance M. Howe", "r": "Mayor, Warson Woods, MO"}]}], "slug": "st-louis"}, "29213": {"county": [], "munis": [{"m": "Branson", "p": [{"n": "Larry Milton", "r": "Mayor, Branson, MO"}]}], "slug": "taney"}, "29219": {"county": [], "munis": [{"m": "Warrenton", "p": [{"n": "Eric Schleuter", "r": "Mayor, Warrenton, MO"}]}], "slug": "warren"}, "30007": {"county": [], "munis": [{"m": "Townsend", "p": [{"n": "Mike Evans", "r": "Mayor, Townsend, MT"}]}], "slug": "broadwater"}, "30013": {"county": [], "munis": [{"m": "Great Falls", "p": [{"n": "Bob Kelly", "r": "Mayor, Great Falls, MT"}]}], "slug": "cascade"}, "30031": {"county": [], "munis": [{"m": "Belgrade", "p": [{"n": "Russell C. Nelson", "r": "Mayor, Belgrade, MT"}]}, {"m": "Bozeman", "p": [{"n": "Terry Cunningham", "r": "Mayor, Bozeman, MT"}]}], "slug": "gallatin"}, "30035": {"county": [], "munis": [{"m": "Cut Bank", "p": [{"n": "Kim Winchell", "r": "Mayor, Cut Bank, MT"}]}], "slug": "glacier"}, "30047": {"county": [], "munis": [{"m": "Polson", "p": [{"n": "Eric Huffine", "r": "Mayor, Polson, MT"}]}], "slug": "lake"}, "30049": {"county": [], "munis": [{"m": "Helena", "p": [{"n": "Wilmot Collins", "r": "Mayor, Helena, MT"}]}], "slug": "lewis-and-clark"}, "30063": {"county": [], "munis": [{"m": "Missoula", "p": [{"n": "Jordan Hess", "r": "Mayor, Missoula, MT"}]}], "slug": "missoula"}, "30085": {"county": [], "munis": [{"m": "Wolf Point", "p": [{"n": "Chris M. Dschaak", "r": "Mayor, Wolf Point, MT"}]}], "slug": "roosevelt"}, "30089": {"county": [], "munis": [{"m": "Thompson Falls", "p": [{"n": "Mark Sheets", "r": "Mayor, Thompson Falls, MT"}]}], "slug": "sanders"}, "30111": {"county": [], "munis": [{"m": "Billings", "p": [{"n": "Bill Cole", "r": "Mayor, Billings, MT"}]}], "slug": "yellowstone"}, "31041": {"county": [], "munis": [{"m": "Broken Bow", "p": [{"n": "mayor", "r": "Mayor, Broken Bow, NE"}]}], "slug": "custer"}, "31109": {"county": [], "munis": [{"m": "Lincoln", "p": [{"n": "Leirion Gaylor Baird", "r": "Mayor, Lincoln, NE"}]}], "slug": "lancaster"}, "31159": {"county": [], "munis": [{"m": "Seward", "p": [{"n": "Joshua Eickmeier", "r": "Mayor, Seward, NE"}]}], "slug": "seward"}, "31185": {"county": [], "munis": [{"m": "Henderson", "p": [{"n": "Don Regier", "r": "Mayor, Henderson, NE"}]}], "slug": "york"}, "32003": {"county": [], "munis": [{"m": "Henderson", "p": [{"n": "Michelle Romero", "r": "Mayor, Henderson, NV"}]}, {"m": "Las Vegas", "p": [{"n": "Carolyn Goodman", "r": "Mayor, Las Vegas, NV"}]}, {"m": "North Las Vegas", "p": [{"n": "John Jay Lee", "r": "Mayor, North Las Vegas, NV"}]}], "slug": "clark"}, "32031": {"county": [], "munis": [{"m": "Reno", "p": [{"n": "Hillary Schieve", "r": "Mayor, Reno, NV"}]}, {"m": "Sparks", "p": [{"n": "Ed Lawson", "r": "Mayor, Sparks, NV"}]}], "slug": "washoe"}, "33001": {"county": [], "munis": [{"m": "Laconia", "p": [{"n": "Andrew Hosmer", "r": "Mayor, Laconia, NH"}]}], "slug": "belknap"}, "33005": {"county": [], "munis": [{"m": "Keene", "p": [{"n": "Q109468854", "r": "Mayor, Keene, NH"}]}], "slug": "cheshire"}, "33007": {"county": [], "munis": [{"m": "Berlin", "p": [{"n": "Robert Cone", "r": "Mayor, Berlin, NH"}]}], "slug": "coos"}, "33009": {"county": [], "munis": [{"m": "Lebanon", "p": [{"n": "Timothy J. McNamara", "r": "Mayor, Lebanon, NH"}]}], "slug": "grafton"}, "33011": {"county": [], "munis": [{"m": "Manchester", "p": [{"n": "Joyce Craig", "r": "Mayor, Manchester, NH"}]}, {"m": "Nashua", "p": [{"n": "James W. Donchess", "r": "Mayor, Nashua, NH"}]}], "slug": "hillsborough"}, "33013": {"county": [], "munis": [{"m": "Concord", "p": [{"n": "Byron O. Champlin", "r": "Mayor, Concord, NH"}]}, {"m": "Franklin", "p": [{"n": "Desiree McLaughlin", "r": "Mayor, Franklin, NH"}]}], "slug": "merrimack"}, "33015": {"county": [], "munis": [{"m": "Portsmouth", "p": [{"n": "Deaglan McEachern", "r": "Mayor, Portsmouth, NH"}]}], "slug": "rockingham"}, "33017": {"county": [], "munis": [{"m": "Dover", "p": [{"n": "Robert Carrier", "r": "Mayor, Dover, NH"}]}, {"m": "Rochester", "p": [{"n": "Paul Callaghan", "r": "Mayor, Rochester, NH"}]}, {"m": "Somersworth", "p": [{"n": "Matt Gerding", "r": "Mayor, Somersworth, NH"}]}], "slug": "strafford"}, "33019": {"county": [], "munis": [{"m": "Claremont", "p": [{"n": "Dale Girard", "r": "Mayor, Claremont, NH"}]}], "slug": "sullivan"}, "34001": {"county": [], "munis": [{"m": "Absecon", "p": [{"n": "Kimberly Horton", "r": "Mayor, Absecon, NJ"}]}, {"m": "Atlantic City", "p": [{"n": "Marty Small, Sr.", "r": "Mayor, Atlantic City, NJ"}]}, {"m": "Brigantine", "p": [{"n": "Vince Sera", "r": "Mayor, Brigantine, NJ"}]}, {"m": "Corbin City", "p": [{"n": "Wayne M. Smith", "r": "Mayor, Corbin City, NJ"}]}, {"m": "Egg Harbor City", "p": [{"n": "Lisa Jiampetti", "r": "Mayor, Egg Harbor City, NJ"}]}, {"m": "Estell Manor", "p": [{"n": "Elizabeth Owen", "r": "Mayor, Estell Manor, NJ"}]}, {"m": "Linwood", "p": [{"n": "Darren Matik", "r": "Mayor, Linwood, NJ"}]}, {"m": "Margate City", "p": [{"n": "Michael Collins", "r": "Mayor, Margate City, NJ"}]}, {"m": "Northfield", "p": [{"n": "Erland Chau", "r": "Mayor, Northfield, NJ"}]}, {"m": "Pleasantville", "p": [{"n": "Judy Ward", "r": "Mayor, Pleasantville, NJ"}]}, {"m": "Port Republic", "p": [{"n": "Monica Giberson", "r": "Mayor, Port Republic, NJ"}]}, {"m": "Somers Point", "p": [{"n": "Dennis Tapp", "r": "Mayor, Somers Point, NJ"}]}, {"m": "Ventnor City", "p": [{"n": "Tim Kriebel", "r": "Mayor, Ventnor City, NJ"}]}], "slug": "atlantic"}, "34003": {"county": [], "munis": [{"m": "Englewood", "p": [{"n": "Michael Wildes", "r": "Mayor, Englewood, NJ"}]}, {"m": "Garfield", "p": [{"n": "Richard Rigoglioso", "r": "Mayor, Garfield, NJ"}]}], "slug": "bergen"}, "34005": {"county": [], "munis": [{"m": "Burlington", "p": [{"n": "Barry W. Conaway", "r": "Mayor, Burlington City, NJ"}]}], "slug": "burlington"}, "34007": {"county": [], "munis": [{"m": "Camden", "p": [{"n": "Victor G. Carstarphen", "r": "Mayor, Camden, NJ"}]}, {"m": "Gloucester City", "p": [{"n": "Dayl Baile", "r": "Mayor, Gloucester City, NJ"}]}], "slug": "camden"}, "34009": {"county": [], "munis": [{"m": "Cape May", "p": [{"n": "Zack Mullock", "r": "Mayor, Cape May, NJ"}]}, {"m": "Ocean City", "p": [{"n": "Jay A. Gillian", "r": "Mayor, Ocean City, NJ"}]}], "slug": "cape-may"}, "34011": {"county": [], "munis": [{"m": "Bridgeton", "p": [{"n": "Albert B. Kelly", "r": "Mayor, Bridgeton, NJ"}]}, {"m": "Millville", "p": [{"n": "Benjamin Romanik", "r": "Mayor, Millville, NJ"}]}, {"m": "Vineland", "p": [{"n": "Anthony R. Fanucci", "r": "Mayor, Vineland, NJ"}]}], "slug": "cumberland"}, "34013": {"county": [], "munis": [{"m": "East Orange", "p": [{"n": "Ted R. Green", "r": "Mayor, East Orange, NJ"}]}, {"m": "Newark", "p": [{"n": "Q7294641", "r": "Mayor, Newark, NJ"}]}], "slug": "essex"}, "34015": {"county": [], "munis": [{"m": "Woodbury", "p": [{"n": "Kyle Miller", "r": "Mayor, Woodbury, NJ"}]}], "slug": "gloucester"}, "34017": {"county": [], "munis": [{"m": "Bayonne", "p": [{"n": "Jimmy Davis", "r": "Mayor, Bayonne, NJ"}]}, {"m": "Hoboken", "p": [{"n": "Ravinder Bhalla", "r": "Mayor, Hoboken, NJ"}]}, {"m": "Jersey City", "p": [{"n": "Steven Fulop", "r": "Mayor, Jersey City, NJ"}]}, {"m": "Union City", "p": [{"n": "Brian P. Stack", "r": "Mayor, Union City, NJ"}]}], "slug": "hudson"}, "34021": {"county": [], "munis": [{"m": "Trenton", "p": [{"n": "Eric Jackson", "r": "Mayor, Trenton, NJ"}]}], "slug": "mercer"}, "34023": {"county": [], "munis": [{"m": "New Brunswick", "p": [{"n": "Jim Cahill", "r": "Mayor, New Brunswick, NJ"}]}, {"m": "Perth Amboy", "p": [{"n": "Helmin J. Caba", "r": "Mayor, Perth Amboy, NJ"}]}, {"m": "South Amboy", "p": [{"n": "Fred A. Henry", "r": "Mayor, South Amboy, NJ"}]}], "slug": "middlesex"}, "34025": {"county": [], "munis": [{"m": "Long Branch", "p": [{"n": "John Pallone", "r": "Mayor, Long Branch, NJ"}]}], "slug": "monmouth"}, "34031": {"county": [], "munis": [{"m": "Clifton", "p": [{"n": "Raymond Grabowski", "r": "Mayor, Clifton, NJ"}]}, {"m": "Passaic", "p": [{"n": "Hector C. Lora", "r": "Mayor, Passaic, NJ"}]}, {"m": "Paterson", "p": [{"n": "Andre Sayegh", "r": "Mayor, Paterson, NJ"}]}], "slug": "passaic"}, "34033": {"county": [], "munis": [{"m": "Salem", "p": [{"n": "Jody Veler", "r": "Mayor, Salem, NJ"}]}], "slug": "salem"}, "34039": {"county": [], "munis": [{"m": "Elizabeth", "p": [{"n": "Chris Bollwage", "r": "Mayor, Elizabeth, NJ"}]}, {"m": "Linden", "p": [{"n": "Derek Armstead", "r": "Mayor, Linden, NJ"}]}, {"m": "Plainfield", "p": [{"n": "Adrian O. Mapp", "r": "Mayor, Plainfield, NJ"}]}, {"m": "Rahway", "p": [{"n": "Raymond A. Giacobbe", "r": "Mayor, Rahway, NJ"}]}, {"m": "Summit", "p": [{"n": "Elizabeth Fagan", "r": "Mayor, Summit, NJ"}]}], "slug": "union"}, "35001": {"county": [], "munis": [{"m": "Albuquerque", "p": [{"n": "Q7807370", "r": "Mayor, Albuquerque, NM"}]}], "slug": "bernalillo"}, "35013": {"county": [], "munis": [{"m": "Las Cruces", "p": [{"n": "Ken Miyagishima", "r": "Mayor, Las Cruces, NM"}]}], "slug": "dona-ana"}, "35029": {"county": [], "munis": [{"m": "Deming", "p": [{"n": "Michele Shillito", "r": "Mayor, Deming, NM"}]}], "slug": "luna"}, "35043": {"county": [], "munis": [{"m": "Rio Rancho", "p": [{"n": "Greggory D. Hull", "r": "Mayor, Rio Rancho, NM"}]}], "slug": "sandoval"}, "35049": {"county": [], "munis": [{"m": "Santa Fe", "p": [{"n": "Alan Webber", "r": "Mayor, Santa Fe, NM"}]}], "slug": "santa-fe"}, "36001": {"county": [], "munis": [{"m": "Albany", "p": [{"n": "Kathy Sheehan", "r": "Mayor, Albany, NY"}]}, {"m": "Cohoes", "p": [{"n": "William T. Keeler", "r": "Mayor, Cohoes, NY"}]}, {"m": "Green Island", "p": [{"n": "James Oddo", "r": "Mayor, Staten Island, NY"}]}, {"m": "Watervliet", "p": [{"n": "Charles Patricelli", "r": "Mayor, Watervliet, NY"}]}], "slug": "albany"}, "36007": {"county": [], "munis": [{"m": "Binghamton", "p": [{"n": "Jared Kraham", "r": "Mayor, Binghamton, NY"}]}], "slug": "broome"}, "36009": {"county": [], "munis": [{"m": "Olean", "p": [{"n": "William J. Aiello", "r": "Mayor, Olean, NY"}]}], "slug": "cattaraugus"}, "36011": {"county": [], "munis": [{"m": "Auburn", "p": [{"n": "James N. Giannettino, Jr.", "r": "Mayor, Auburn, NY"}]}], "slug": "cayuga"}, "36013": {"county": [], "munis": [{"m": "Dunkirk", "p": [{"n": "Kate Wdowiasz", "r": "Mayor, Dunkirk, NY"}]}, {"m": "Jamestown", "p": [{"n": "Kimberly Ecklund", "r": "Mayor, Jamestown, NY"}]}], "slug": "chautauqua"}, "36023": {"county": [], "munis": [{"m": "Cortland", "p": [{"n": "Scott Steve", "r": "Mayor, Cortland, NY"}]}], "slug": "cortland"}, "36027": {"county": [], "munis": [{"m": "Beacon", "p": [{"n": "Lee Kyriacou", "r": "Mayor, Beacon, NY"}]}, {"m": "Poughkeepsie", "p": [{"n": "Yvonne Flowers", "r": "Mayor, Poughkeepsie, NY"}]}], "slug": "dutchess"}, "36029": {"county": [], "munis": [{"m": "Buffalo", "p": [{"n": "Byron Brown", "r": "Mayor, Buffalo, NY"}]}, {"m": "Lackawanna", "p": [{"n": "Annette Iafallo", "r": "Mayor, Lackawanna, NY"}]}, {"m": "Tonawanda", "p": [{"n": "John White", "r": "Mayor, Tonawanda, NY"}]}], "slug": "erie"}, "36035": {"county": [], "munis": [{"m": "Gloversville", "p": [{"n": "Vincent DeSantis", "r": "Mayor, Gloversville, NY"}]}], "slug": "fulton"}, "36043": {"county": [], "munis": [{"m": "Little Falls", "p": [{"n": "Deborah A. Kaufman", "r": "Mayor, Little Falls, NY"}]}], "slug": "herkimer"}, "36045": {"county": [], "munis": [{"m": "Watertown", "p": [{"n": "Jeffrey M. Smith", "r": "Mayor, Watertown, NY"}]}], "slug": "jefferson"}, "36055": {"county": [], "munis": [{"m": "Rochester", "p": [{"n": "Malik Evans", "r": "Mayor, Rochester, NY"}]}], "slug": "monroe"}, "36059": {"county": [], "munis": [{"m": "Glen Cove", "p": [{"n": "Pamela D. Panzenbeck", "r": "Mayor, Glen Cove, NY"}]}], "slug": "nassau"}, "36063": {"county": [], "munis": [{"m": "Lockport", "p": [{"n": "John Lombardi III", "r": "Mayor, Lockport, NY"}]}, {"m": "Niagara Falls", "p": [{"n": "Robert Restaino", "r": "Mayor, Niagara Falls, NY"}]}, {"m": "North Tonawanda", "p": [{"n": "Austin J. Tylec", "r": "Mayor, North Tonawanda, NY"}]}], "slug": "niagara"}, "36065": {"county": [], "munis": [{"m": "Utica", "p": [{"n": "Michael P. Galime", "r": "Mayor, Utica, NY"}]}], "slug": "oneida"}, "36067": {"county": [], "munis": [{"m": "Syracuse", "p": [{"n": "Sharon Owens", "r": "Mayor, Syracuse, NY"}]}], "slug": "onondaga"}, "36071": {"county": [], "munis": [{"m": "Newburgh", "p": [{"n": "Torrance Harvey", "r": "Mayor, Newburgh, NY"}]}, {"m": "Port Jervis", "p": [{"n": "Dominic M. Cicalese", "r": "Mayor, Port Jervis, NY"}]}], "slug": "orange"}, "36083": {"county": [], "munis": [{"m": "Rensselaer", "p": [{"n": "Michael Stammel", "r": "Mayor, Rensselaer, NY"}]}, {"m": "Troy", "p": [{"n": "Carmella Mantello", "r": "Mayor, Troy, NY"}]}], "slug": "rensselaer"}, "36091": {"county": [], "munis": [{"m": "Mechanicville", "p": [{"n": "Mike Butler", "r": "Mayor, Mechanicville, NY"}]}, {"m": "Saratoga Springs", "p": [{"n": "Meg Kelly", "r": "Mayor, Saratoga Springs, NY"}]}], "slug": "saratoga"}, "36093": {"county": [], "munis": [{"m": "Schenectady", "p": [{"n": "Gary McCarthy", "r": "Mayor, Schenectady, NY"}]}], "slug": "schenectady"}, "36101": {"county": [], "munis": [{"m": "Corning", "p": [{"n": "William M. Boland Jr.", "r": "Mayor, Corning, NY"}]}], "slug": "steuben"}, "36109": {"county": [], "munis": [{"m": "Ithaca", "p": [{"n": "Svante Myrick", "r": "Mayor, Ithaca, NY"}]}], "slug": "tompkins"}, "36111": {"county": [], "munis": [{"m": "Kingston", "p": [{"n": "Steve Noble", "r": "Mayor, Kingston, NY"}]}], "slug": "ulster"}, "36113": {"county": [], "munis": [{"m": "Glens Falls", "p": [{"n": "William Collins", "r": "Mayor, Glens Falls, NY"}]}], "slug": "warren"}, "36119": {"county": [], "munis": [{"m": "Mount Vernon", "p": [{"n": "Shawyn Patterson-Howard", "r": "Mayor, Mount Vernon, NY"}]}, {"m": "New Rochelle", "p": [{"n": "Yadira Ramos-Herbert", "r": "Mayor, New Rochelle, NY"}]}, {"m": "White Plains", "p": [{"n": "Thomas Roach", "r": "Mayor, White Plains, NY"}]}, {"m": "Yonkers", "p": [{"n": "Mike Spano", "r": "Mayor, Yonkers, NY"}]}], "slug": "westchester"}, "37001": {"county": [], "munis": [{"m": "Burlington", "p": [{"n": "James B. Butler", "r": "Mayor, Burlington, NC"}]}, {"m": "Graham", "p": [{"n": "Jennifer Talley", "r": "Mayor, Graham, NC"}]}, {"m": "Mebane", "p": [{"n": "Ed Hooks", "r": "Mayor, Mebane, NC"}]}], "slug": "alamance"}, "37013": {"county": [], "munis": [{"m": "Washington", "p": [{"n": "Donald Sadler", "r": "Mayor, Washington, NC"}]}], "slug": "beaufort"}, "37021": {"county": [], "munis": [{"m": "Asheville", "p": [{"n": "Esther Manheimer", "r": "Mayor, Asheville, NC"}]}, {"m": "Woodfin", "p": [{"n": "Jim McAllister", "r": "Mayor, Woodfin, NC"}]}], "slug": "buncombe"}, "37023": {"county": [], "munis": [{"m": "Morganton", "p": [{"n": "Ronnie Thompson", "r": "Mayor, Morganton, NC"}]}], "slug": "burke"}, "37025": {"county": [], "munis": [{"m": "Concord", "p": [{"n": "William C. \"Bill\" Dusch", "r": "Mayor, Concord, NC"}]}, {"m": "Kannapolis", "p": [{"n": "M. Darrell Hinnant", "r": "Mayor, Kannapolis, NC"}]}], "slug": "cabarrus"}, "37027": {"county": [], "munis": [{"m": "Lenoir", "p": [{"n": "Joseph L. Gibbons", "r": "Mayor, Lenoir, NC"}]}], "slug": "caldwell"}, "37031": {"county": [], "munis": [{"m": "Atlantic Beach", "p": [{"n": "Danny Navey", "r": "Mayor, Atlantic Beach, NC"}]}, {"m": "Beaufort", "p": [{"n": "Sharon Harker", "r": "Mayor, Beaufort, NC"}]}, {"m": "Morehead City", "p": [{"n": "Jerry Jones, Jr.", "r": "Mayor, Morehead City, NC"}]}], "slug": "carteret"}, "37035": {"county": [], "munis": [{"m": "Hickory", "p": [{"n": "Hank Guess", "r": "Mayor, Hickory, NC"}]}], "slug": "catawba"}, "37045": {"county": [], "munis": [{"m": "Kings Mountain", "p": [{"n": "Rob Wagman", "r": "Mayor, Kings Mountain, NC"}]}, {"m": "Shelby", "p": [{"n": "Stan Anthony", "r": "Mayor, Shelby, NC"}]}], "slug": "cleveland"}, "37047": {"county": [], "munis": [{"m": "Chadbourn", "p": [{"n": "Phillip C. Britt", "r": "Mayor, Chadbourn, NC"}]}], "slug": "columbus"}, "37051": {"county": [], "munis": [{"m": "Fayetteville", "p": [{"n": "Mitch Colvin", "r": "Mayor, Fayetteville, NC"}]}], "slug": "cumberland"}, "37055": {"county": [], "munis": [{"m": "Duck", "p": [{"n": "Don Kingston", "r": "Mayor, Duck, NC"}]}, {"m": "Kill Devil Hills", "p": [{"n": "John Windley", "r": "Mayor, Kill Devil Hills, NC"}]}, {"m": "Kitty Hawk", "p": [{"n": "Craig Garriss", "r": "Mayor, Kitty Hawk, NC"}]}, {"m": "Manteo", "p": [{"n": "Sherry Butcher Wickstrom", "r": "Mayor, Manteo, NC"}]}, {"m": "Nags Head", "p": [{"n": "Ben Cahoon", "r": "Mayor, Nags Head, NC"}]}], "slug": "dare"}, "37057": {"county": [], "munis": [{"m": "Denton", "p": [{"n": "Larry D. Ward", "r": "Mayor, Denton, NC"}]}, {"m": "Lexington", "p": [{"n": "Jason Hayes", "r": "Mayor, Lexington, NC"}]}, {"m": "Midway", "p": [{"n": "John Byrum", "r": "Mayor, Midway, NC"}]}, {"m": "Thomasville", "p": [{"n": "Joe G. Bennett", "r": "Mayor, Thomasville, NC"}]}, {"m": "Wallburg", "p": [{"n": "Allen Todd", "r": "Mayor, Wallburg, NC"}]}], "slug": "davidson"}, "37059": {"county": [], "munis": [{"m": "Mocksville", "p": [{"n": "William J. Marklin III", "r": "Mayor, Mocksville, NC"}]}], "slug": "davie"}, "37061": {"county": [], "munis": [{"m": "Wallace", "p": [{"n": "Jason Wells", "r": "Mayor, Wallace, NC"}]}], "slug": "duplin"}, "37063": {"county": [], "munis": [{"m": "Durham", "p": [{"n": "Steve Schewel", "r": "Mayor, Durham, NC"}]}], "slug": "durham"}, "37067": {"county": [], "munis": [{"m": "Clemmons", "p": [{"n": "Michael Rogers", "r": "Mayor, Clemmons, NC"}]}, {"m": "Kernersville", "p": [{"n": "Dawn H. Morgan", "r": "Mayor, Kernersville, NC"}]}, {"m": "Lewisville", "p": [{"n": "Mike Horn", "r": "Mayor, Lewisville, NC"}]}, {"m": "Winston Salem", "p": [{"n": "Allen Joines", "r": "Mayor, Winston-Salem, NC"}]}], "slug": "forsyth"}, "37069": {"county": [], "munis": [{"m": "Franklinton", "p": [{"n": "Arthur Wright", "r": "Mayor, Franklinton, NC"}]}], "slug": "franklin"}, "37071": {"county": [], "munis": [{"m": "Belmont", "p": [{"n": "Jim Hefferan", "r": "Mayor, Belmont, NC"}]}, {"m": "Gastonia", "p": [{"n": "Richard Franks", "r": "Mayor, Gastonia, NC"}]}, {"m": "Stanley", "p": [{"n": "Cathy Kirkland", "r": "Mayor, Stanley, NC"}]}], "slug": "gaston"}, "37075": {"county": [], "munis": [{"m": "Fontana Dam", "p": [{"n": "Rob Hardy", "r": "Mayor, Fontana Dam, NC"}]}], "slug": "graham"}, "37081": {"county": [], "munis": [{"m": "Greensboro", "p": [{"n": "Marikay Abuzuaiter", "r": "Mayor, Greensboro, NC"}]}, {"m": "High Point", "p": [{"n": "Cyril Jefferson", "r": "Mayor, High Point, NC"}]}, {"m": "Stokesdale", "p": [{"n": "Mike Crawford", "r": "Mayor, Stokesdale, NC"}]}], "slug": "guilford"}, "37085": {"county": [], "munis": [{"m": "Dunn", "p": [{"n": "William P. Elmore Jr.", "r": "Mayor, Dunn, NC"}]}], "slug": "harnett"}, "37087": {"county": [], "munis": [{"m": "Canton", "p": [{"n": "Zeb Smathers", "r": "Mayor, Canton, NC"}]}], "slug": "haywood"}, "37089": {"county": [], "munis": [{"m": "Hendersonville", "p": [{"n": "Barbara G. Volk", "r": "Mayor, Hendersonville, NC"}]}], "slug": "henderson"}, "37097": {"county": [], "munis": [{"m": "Mooresville", "p": [{"n": "Chris Carney", "r": "Mayor, Mooresville, NC"}]}, {"m": "Statesville", "p": [{"n": "Costi Kutteh", "r": "Mayor, Statesville, NC"}]}], "slug": "iredell"}, "37101": {"county": [], "munis": [{"m": "Clayton", "p": [{"n": "Jody McLeod", "r": "Mayor, Clayton, NC"}]}, {"m": "Selma", "p": [{"n": "Byron McAllister", "r": "Mayor, Selma, NC"}]}], "slug": "johnston"}, "37103": {"county": [], "munis": [{"m": "Pollocksville", "p": [{"n": "Jay Bender", "r": "Mayor, Pollocksville, NC"}]}], "slug": "jones"}, "37115": {"county": [], "munis": [{"m": "Mars Hill", "p": [{"n": "John L. Chandler", "r": "Mayor, Mars Hill, NC"}]}], "slug": "madison"}, "37119": {"county": [], "munis": [{"m": "Charlotte", "p": [{"n": "Vi Lyles", "r": "Mayor, Charlotte, NC"}]}, {"m": "Davidson", "p": [{"n": "Rusty Knox", "r": "Mayor, Davidson, NC"}]}, {"m": "Huntersville", "p": [{"n": "Christy Clark", "r": "Mayor, Huntersville, NC"}]}], "slug": "mecklenburg"}, "37121": {"county": [], "munis": [{"m": "Spruce Pine", "p": [{"n": "Phillip Hise", "r": "Mayor, Spruce Pine, NC"}]}], "slug": "mitchell"}, "37125": {"county": [], "munis": [{"m": "Pinehurst", "p": [{"n": "Patrick Pizzella", "r": "Mayor, Pinehurst, NC"}]}, {"m": "Southern Pines", "p": [{"n": "Taylor Clement", "r": "Mayor, Southern Pines, NC"}]}], "slug": "moore"}, "37127": {"county": [], "munis": [{"m": "Rocky Mount", "p": [{"n": "Sandy Roberson", "r": "Mayor, Rocky Mount, NC"}]}], "slug": "nash"}, "37129": {"county": [], "munis": [{"m": "Carolina Beach", "p": [{"n": "Lynn Barbee", "r": "Mayor, Carolina Beach, NC"}]}, {"m": "Kure Beach", "p": [{"n": "Allen Oliver", "r": "Mayor, Kure Beach, NC"}]}, {"m": "Wilmington", "p": [{"n": "Bill Saffo", "r": "Mayor, Wilmington, NC"}]}, {"m": "Wrightsville Beach", "p": [{"n": "Darryl Mills", "r": "Mayor, Wrightsville Beach, NC"}]}], "slug": "new-hanover"}, "37133": {"county": [], "munis": [{"m": "Jacksonville", "p": [{"n": "Sammy Phillips", "r": "Mayor, Jacksonville, NC"}]}], "slug": "onslow"}, "37135": {"county": [], "munis": [{"m": "Carrboro", "p": [{"n": "Barbara Foushee", "r": "Mayor, Carrboro, NC"}]}, {"m": "Chapel Hill", "p": [{"n": "Jessica Anderson", "r": "Mayor, Chapel Hill, NC"}]}], "slug": "orange"}, "37139": {"county": [], "munis": [{"m": "Elizabeth City", "p": [{"n": "E. Kirk Rivers", "r": "Mayor, Elizabeth City, NC"}]}], "slug": "pasquotank"}, "37147": {"county": [], "munis": [{"m": "Greenville", "p": [{"n": "P.J. Connelly", "r": "Mayor, Greenville, NC"}]}], "slug": "pitt"}, "37151": {"county": [], "munis": [{"m": "Asheboro", "p": [{"n": "David Smith", "r": "Mayor, Asheboro, NC"}]}, {"m": "Ramseur", "p": [{"n": "Hampton Spivey", "r": "Mayor, Ramseur, NC"}]}], "slug": "randolph"}, "37153": {"county": [], "munis": [{"m": "Rockingham", "p": [{"n": "John Hutchinson", "r": "Mayor, Rockingham, NC"}]}], "slug": "richmond"}, "37155": {"county": [], "munis": [{"m": "Lumberton", "p": [{"n": "Bruce Davis", "r": "Mayor, Lumberton, NC"}]}], "slug": "robeson"}, "37157": {"county": [], "munis": [{"m": "Eden", "p": [{"n": "Neville Hall", "r": "Mayor, Eden, NC"}]}], "slug": "rockingham"}, "37159": {"county": [], "munis": [{"m": "Salisbury", "p": [{"n": "Karen K. Alexander", "r": "Mayor, Salisbury, NC"}]}], "slug": "rowan"}, "37163": {"county": [], "munis": [{"m": "Clinton", "p": [{"n": "Lew Starling", "r": "Mayor, Clinton, NC"}]}], "slug": "sampson"}, "37165": {"county": [], "munis": [{"m": "Laurinburg", "p": [{"n": "Jim Willis", "r": "Mayor, Laurinburg, NC"}]}], "slug": "scotland"}, "37167": {"county": [], "munis": [{"m": "Albemarle", "p": [{"n": "Q131798851", "r": "Mayor, Albemarle, NC"}]}], "slug": "stanly"}, "37171": {"county": [], "munis": [{"m": "Mount Airy", "p": [{"n": "Jon Cawley", "r": "Mayor, Mount Airy, NC"}]}], "slug": "surry"}, "37179": {"county": [], "munis": [{"m": "Wesley Chapel", "p": [{"n": "Amanda Fuller", "r": "Mayor, Wesley Chapel, NC"}]}], "slug": "union"}, "37181": {"county": [], "munis": [{"m": "Henderson", "p": [{"n": "Melissa Elliott", "r": "Mayor, Henderson, NC"}]}], "slug": "vance"}, "37183": {"county": [], "munis": [{"m": "Apex", "p": [{"n": "Jacques Gilbert", "r": "Mayor, Apex, NC"}]}, {"m": "Cary", "p": [{"n": "Harold Weinbrecht", "r": "Mayor, Cary, NC"}]}, {"m": "Garner", "p": [{"n": "Buddy Gupton", "r": "Mayor, Garner, NC"}]}, {"m": "Knightdale", "p": [{"n": "Jessica Day", "r": "Mayor, Knightdale, NC"}]}, {"m": "Raleigh", "p": [{"n": "Nancy McFarlane", "r": "Mayor, Raleigh, NC"}]}, {"m": "Wake Forest", "p": [{"n": "Vivian A. Jones", "r": "Mayor, Wake Forest, NC"}]}, {"m": "Zebulon", "p": [{"n": "Glenn L. York", "r": "Mayor, Zebulon, NC"}]}], "slug": "wake"}, "37189": {"county": [], "munis": [{"m": "Boone", "p": [{"n": "Tim Futrelle", "r": "Mayor, Boone, NC"}]}], "slug": "watauga"}, "37191": {"county": [], "munis": [{"m": "Goldsboro", "p": [{"n": "Charles Gaylor", "r": "Mayor, Goldsboro, NC"}]}], "slug": "wayne"}, "37195": {"county": [], "munis": [{"m": "Wilson", "p": [{"n": "Carlton L. Stevens", "r": "Mayor, Wilson, NC"}]}], "slug": "wilson"}, "37197": {"county": [], "munis": [{"m": "Yadkinville", "p": [{"n": "Eddie Norman", "r": "Mayor, Yadkinville, NC"}]}], "slug": "yadkin"}, "38015": {"county": [], "munis": [{"m": "Bismarck", "p": [{"n": "Mike Schmitz", "r": "Mayor, Bismarck, ND"}]}], "slug": "burleigh"}, "38017": {"county": [], "munis": [{"m": "Fargo", "p": [{"n": "Tim Mahoney", "r": "Mayor, Fargo, ND"}]}], "slug": "cass"}, "38051": {"county": [], "munis": [{"m": "Ashley", "p": [{"n": "Erich Schock", "r": "Mayor, Ashley, ND"}]}], "slug": "mcintosh"}, "38089": {"county": [], "munis": [{"m": "Dickinson", "p": [{"n": "Scott Decker", "r": "Mayor, Dickinson, ND"}]}], "slug": "stark"}, "38101": {"county": [], "munis": [{"m": "Minot", "p": [{"n": "Shaun Sipma", "r": "Mayor, Minot, ND"}]}], "slug": "ward"}, "39003": {"county": [], "munis": [{"m": "Delphos", "p": [{"n": "Andre McConnahea", "r": "Mayor, Delphos, OH"}]}, {"m": "Lima", "p": [{"n": "Sharetta Smith", "r": "Mayor, Lima, OH"}]}], "slug": "allen"}, "39005": {"county": [], "munis": [{"m": "Ashland", "p": [{"n": "Matt Miller", "r": "Mayor, Ashland, OH"}]}], "slug": "ashland"}, "39011": {"county": [], "munis": [{"m": "St Marys", "p": [{"n": "Joseph Hurlburt Jr.", "r": "Mayor, St. Marys, OH"}]}, {"m": "Wapakoneta", "p": [{"n": "Dan Lee", "r": "Mayor, Wapakoneta, OH"}]}], "slug": "auglaize"}, "39013": {"county": [], "munis": [{"m": "Martins Ferry", "p": [{"n": "John Davies", "r": "Mayor, Martins Ferry, OH"}]}, {"m": "St Clairsville", "p": [{"n": "Kathryn Thalman", "r": "Mayor, St. Clairsville, OH"}]}], "slug": "belmont"}, "39017": {"county": [], "munis": [{"m": "Fairfield", "p": [{"n": "Mitch Rhodus", "r": "Mayor, Fairfield, OH"}]}, {"m": "Hamilton", "p": [{"n": "Pat Moeller", "r": "Mayor, Hamilton, OH"}]}, {"m": "Middletown", "p": [{"n": "Elizabeth Slamka", "r": "Mayor, Middletown, OH"}]}, {"m": "Monroe", "p": [{"n": "Keith Funk", "r": "Mayor, Monroe, OH"}]}], "slug": "butler"}, "39021": {"county": [], "munis": [{"m": "Urbana", "p": [{"n": "Bill Bean", "r": "Mayor, Urbana, OH"}]}], "slug": "champaign"}, "39023": {"county": [], "munis": [{"m": "Springfield", "p": [{"n": "Warren R. Copeland", "r": "Mayor, Springfield, OH"}]}], "slug": "clark"}, "39027": {"county": [], "munis": [{"m": "Wilmington", "p": [{"n": "Patrick Haley", "r": "Mayor, Wilmington, OH"}]}], "slug": "clinton"}, "39029": {"county": [], "munis": [{"m": "Columbiana", "p": [{"n": "Rick Noel", "r": "Mayor, Columbiana, OH"}]}, {"m": "East Liverpool", "p": [{"n": "Robert J. Smith", "r": "Mayor, East Liverpool, OH"}]}, {"m": "Salem", "p": [{"n": "Cyndi Baronzzi Dickey", "r": "Mayor, Salem, OH"}]}], "slug": "columbiana"}, "39031": {"county": [], "munis": [{"m": "Coshocton", "p": [{"n": "Mark Mills", "r": "Mayor, Coshocton, OH"}]}], "slug": "coshocton"}, "39033": {"county": [], "munis": [{"m": "Bucyrus", "p": [{"n": "Bruce Truka", "r": "Mayor, Bucyrus, OH"}]}, {"m": "Galion", "p": [{"n": "Thomas M. O'Leary", "r": "Mayor, Galion, OH"}]}], "slug": "crawford"}, "39035": {"county": [], "munis": [{"m": "Bay Village", "p": [{"n": "Paul Koomar", "r": "Mayor, Bay Village, OH"}]}, {"m": "Beachwood", "p": [{"n": "Justin Berns", "r": "Mayor, Beachwood, OH"}]}, {"m": "Bedford Heights", "p": [{"n": "Phillip Stevens", "r": "Mayor, Bedford Heights, OH"}]}, {"m": "Berea", "p": [{"n": "Cyril Kleem", "r": "Mayor, Berea, OH"}]}, {"m": "Brecksville", "p": [{"n": "Jerry N. Hruby", "r": "Mayor, Brecksville, OH"}]}, {"m": "Broadview Heights", "p": [{"n": "Samuel J. Alai", "r": "Mayor, Broadview Heights, OH"}]}, {"m": "Brook Park", "p": [{"n": "Edward Orcutt", "r": "Mayor, Brook Park, OH"}]}, {"m": "Brooklyn", "p": [{"n": "Ron Van Kirk", "r": "Mayor, Brooklyn, OH"}]}, {"m": "Cleveland", "p": [{"n": "Frank G. Jackson", "r": "Mayor, Cleveland, OH"}]}, {"m": "Cleveland Heights", "p": [{"n": "Kahlil Seren", "r": "Mayor, Cleveland Heights, OH"}]}, {"m": "East Cleveland", "p": [{"n": "Brandon L. King", "r": "Mayor, East Cleveland, OH"}]}, {"m": "Euclid", "p": [{"n": "Kirsten Holzheimer Gail", "r": "Mayor, Euclid, OH"}]}, {"m": "Fairview Park", "p": [{"n": "Bill Schneider", "r": "Mayor, Fairview Park, OH"}]}, {"m": "Garfield Heights", "p": [{"n": "Matthew Burke", "r": "Mayor, Garfield Heights, OH"}]}, {"m": "Highland Heights", "p": [{"n": "Chuck Brunello, Jr.", "r": "Mayor, Highland Heights, OH"}]}, {"m": "Independence", "p": [{"n": "Gregory P. Kurtz", "r": "Mayor, Independence, OH"}]}, {"m": "Lakewood", "p": [{"n": "Meghan George", "r": "Mayor, Lakewood, OH"}]}, {"m": "Lyndhurst", "p": [{"n": "Patrick A. Ward", "r": "Mayor, Lyndhurst, OH"}]}, {"m": "Maple Heights", "p": [{"n": "Annette M. Blackwell", "r": "Mayor, Maple Heights, OH"}]}, {"m": "Mayfield Heights", "p": [{"n": "Anthony DiCicco", "r": "Mayor, Mayfield Heights, OH"}]}, {"m": "Middleburg Heights", "p": [{"n": "Matthew J. Castelli", "r": "Mayor, Middleburg Heights, OH"}]}, {"m": "North Olmsted", "p": [{"n": "Nicole Dailey Jones", "r": "Mayor, North Olmsted, OH"}]}, {"m": "North Royalton", "p": [{"n": "Larry Antoskiewicz", "r": "Mayor, North Royalton, OH"}]}, {"m": "Olmsted Falls", "p": [{"n": "James Patrick Graven", "r": "Mayor, Olmsted Falls, OH"}]}, {"m": "Parma", "p": [{"n": "Timothy J. DeGeeter", "r": "Mayor, Parma, OH"}]}, {"m": "Parma Heights", "p": [{"n": "Marie Gallo", "r": "Mayor, Parma Heights, OH"}]}, {"m": "Richmond Heights", "p": [{"n": "Kim A. Thomas", "r": "Mayor, Richmond Heights, OH"}]}, {"m": "Rocky River", "p": [{"n": "Pamela E. Bobst", "r": "Mayor, Rocky River, OH"}]}, {"m": "Shaker Heights", "p": [{"n": "David E. Weiss", "r": "Mayor, Shaker Heights, OH"}]}, {"m": "Solon", "p": [{"n": "Edward H. Kraus", "r": "Mayor, Solon, OH"}]}, {"m": "South Euclid", "p": [{"n": "Georgine Welo", "r": "Mayor, South Euclid, OH"}]}, {"m": "Strongsville", "p": [{"n": "Thomas P. Perciak", "r": "Mayor, Strongsville, OH"}]}, {"m": "University Heights", "p": [{"n": "Michael Dylan Brennan", "r": "Mayor, University Heights, OH"}]}, {"m": "Warrensville Heights", "p": [{"n": "Bradley D. Sellers", "r": "Mayor, Warrensville Heights, OH"}]}, {"m": "Westlake", "p": [{"n": "Dennis M. Clough", "r": "Mayor, Westlake, OH"}]}], "slug": "cuyahoga"}, "39037": {"county": [], "munis": [{"m": "Greenville", "p": [{"n": "Jeff Whitaker", "r": "Mayor, Greenville, OH"}]}], "slug": "darke"}, "39039": {"county": [], "munis": [{"m": "Defiance", "p": [{"n": "Mike McCann", "r": "Mayor, Defiance, OH"}]}], "slug": "defiance"}, "39041": {"county": [], "munis": [{"m": "Delaware", "p": [{"n": "Carolyn Kay Riggle", "r": "Mayor, Delaware, OH"}]}], "slug": "delaware"}, "39043": {"county": [], "munis": [{"m": "Huron", "p": [{"n": "Monty Tapp", "r": "Mayor, Huron, OH"}]}], "slug": "erie"}, "39045": {"county": [], "munis": [{"m": "Lancaster", "p": [{"n": "Don McDaniel", "r": "Mayor, Lancaster, OH"}]}, {"m": "Pickerington", "p": [{"n": "Lee Gray", "r": "Mayor, Pickerington, OH"}]}], "slug": "fairfield"}, "39049": {"county": [], "munis": [{"m": "Columbus", "p": [{"n": "Andrew Ginther", "r": "Mayor, Columbus, OH"}]}, {"m": "Dublin", "p": [{"n": "Chris Amorose Groomes", "r": "Mayor, Dublin, OH"}]}, {"m": "Gahanna", "p": [{"n": "Laurie Jadwin", "r": "Mayor, Gahanna, OH"}]}, {"m": "Grove City", "p": [{"n": "Q132673219", "r": "Mayor, Grove City, OH"}]}, {"m": "Reynoldsburg", "p": [{"n": "Joe Begeny", "r": "Mayor, Reynoldsburg, OH"}]}, {"m": "Westerville", "p": [{"n": "Kenneth L. Wright", "r": "Mayor, Westerville, OH"}]}], "slug": "franklin"}, "39051": {"county": [], "munis": [{"m": "Wauseon", "p": [{"n": "Kathy Huner", "r": "Mayor, Wauseon, OH"}]}], "slug": "fulton"}, "39055": {"county": [], "munis": [{"m": "Chardon", "p": [{"n": "Christopher Grau", "r": "Mayor, Chardon, OH"}]}], "slug": "geauga"}, "39057": {"county": [], "munis": [{"m": "Fairborn", "p": [{"n": "Dan Kirkpatrick", "r": "Mayor, Fairborn, OH"}]}, {"m": "Xenia", "p": [{"n": "William Urschel", "r": "Mayor, Xenia, OH"}]}], "slug": "greene"}, "39059": {"county": [], "munis": [{"m": "Cambridge", "p": [{"n": "Thomas D. Orr", "r": "Mayor, Cambridge, OH"}]}], "slug": "guernsey"}, "39061": {"county": [], "munis": [{"m": "Blue Ash", "p": [{"n": "Jill Cole", "r": "Mayor, Blue Ash, OH"}]}, {"m": "Cincinnati", "p": [{"n": "Aftab Pureval", "r": "Mayor, Cincinnati, OH"}]}, {"m": "Deer Park", "p": [{"n": "John Donnellon", "r": "Mayor, Deer Park, OH"}]}, {"m": "Forest Park", "p": [{"n": "Aharon Brown", "r": "Mayor, Forest Park, OH"}]}, {"m": "Montgomery", "p": [{"n": "Ronald Messer", "r": "Mayor, Montgomery, OH"}]}, {"m": "Norwood", "p": [{"n": "Victor Schneider", "r": "Mayor, Norwood, OH"}]}, {"m": "Reading", "p": [{"n": "Robert Bemmes", "r": "Mayor, Reading, OH"}]}, {"m": "Sharonville", "p": [{"n": "Kevin M. Hardman", "r": "Mayor, Sharonville, OH"}]}, {"m": "Springdale", "p": [{"n": "Lawrence C. Hawkins", "r": "Mayor, Springdale, OH"}]}], "slug": "hamilton"}, "39063": {"county": [], "munis": [{"m": "Findlay", "p": [{"n": "Christina Muryn", "r": "Mayor, Findlay, OH"}]}], "slug": "hancock"}, "39065": {"county": [], "munis": [{"m": "Kenton", "p": [{"n": "Lynn Webb", "r": "Mayor, Kenton, OH"}]}], "slug": "hardin"}, "39069": {"county": [], "munis": [{"m": "Napoleon", "p": [{"n": "Joseph Bialorucki", "r": "Mayor, Napoleon, OH"}]}], "slug": "henry"}, "39071": {"county": [], "munis": [{"m": "Hillsboro", "p": [{"n": "Justin Harsha", "r": "Mayor, Hillsboro, OH"}]}], "slug": "highland"}, "39073": {"county": [], "munis": [{"m": "Logan", "p": [{"n": "Greg Fraunfelter", "r": "Mayor, Logan, OH"}]}], "slug": "hocking"}, "39077": {"county": [], "munis": [{"m": "Bellevue", "p": [{"n": "Kevin Strecker", "r": "Mayor, Bellevue, OH"}]}, {"m": "Norwalk", "p": [{"n": "David W. Light", "r": "Mayor, Norwalk, OH"}]}], "slug": "huron"}, "39079": {"county": [], "munis": [{"m": "Jackson", "p": [{"n": "Randy Evans", "r": "Mayor, Jackson, OH"}]}], "slug": "jackson"}, "39081": {"county": [], "munis": [{"m": "Steubenville", "p": [{"n": "Jerry Barilla", "r": "Mayor, Steubenville, OH"}]}, {"m": "Toronto", "p": [{"n": "John Parker", "r": "Mayor, Toronto, OH"}]}], "slug": "jefferson"}, "39083": {"county": [], "munis": [{"m": "Mount Vernon", "p": [{"n": "Matthew T. Starr", "r": "Mayor, Mount Vernon, OH"}]}], "slug": "knox"}, "39085": {"county": [], "munis": [{"m": "Eastlake", "p": [{"n": "Jim Overstreet", "r": "Mayor, Eastlake, OH"}]}, {"m": "Wickliffe", "p": [{"n": "Joe Sakacs", "r": "Mayor, Wickliffe, OH"}]}, {"m": "Willoughby", "p": [{"n": "Robert A. Fiala", "r": "Mayor, Willoughby, OH"}]}], "slug": "lake"}, "39087": {"county": [], "munis": [{"m": "Ironton", "p": [{"n": "Samuel Cramblit", "r": "Mayor, Ironton, OH"}]}], "slug": "lawrence"}, "39089": {"county": [], "munis": [{"m": "Heath", "p": [{"n": "Mark Johns", "r": "Mayor, Heath, OH"}]}, {"m": "Newark", "p": [{"n": "Jeff Hall", "r": "Mayor, Newark, OH"}]}, {"m": "Pataskala", "p": [{"n": "Mike Compton", "r": "Mayor, Pataskala, OH"}]}], "slug": "licking"}, "39091": {"county": [], "munis": [{"m": "Bellefontaine", "p": [{"n": "David Crissman", "r": "Mayor, Bellefontaine, OH"}]}], "slug": "logan"}, "39093": {"county": [], "munis": [{"m": "Avon", "p": [{"n": "Bryan K. Jensen", "r": "Mayor, Avon, OH"}]}, {"m": "Avon Lake", "p": [{"n": "Mark Spaetzel", "r": "Mayor, Avon Lake, OH"}]}, {"m": "Elyria", "p": [{"n": "Kevin Brubaker", "r": "Mayor, Elyria, OH"}]}, {"m": "Lorain", "p": [{"n": "Jack Bradley", "r": "Mayor, Lorain, OH"}]}, {"m": "North Ridgeville", "p": [{"n": "Kevin Corcoran", "r": "Mayor, North Ridgeville, OH"}]}, {"m": "Oberlin", "p": [{"n": "Henry F. Smith", "r": "Mayor, Oberlin, OH"}]}, {"m": "Vermilion", "p": [{"n": "Jim Forthofer", "r": "Mayor, Vermilion, OH"}]}], "slug": "lorain"}, "39095": {"county": [], "munis": [{"m": "Maumee", "p": [{"n": "Jim MacDonald", "r": "Mayor, Maumee, OH"}]}, {"m": "Oregon", "p": [{"n": "Michael J. Seferian", "r": "Mayor, Oregon, OH"}]}, {"m": "Sylvania", "p": [{"n": "Mark Frye", "r": "Mayor, Sylvania, OH"}]}, {"m": "Toledo", "p": [{"n": "Wade Kapszukiewicz", "r": "Mayor, Toledo, OH"}]}], "slug": "lucas"}, "39097": {"county": [], "munis": [{"m": "London", "p": [{"n": "Patrick J. Closser", "r": "Mayor, London, OH"}]}], "slug": "madison"}, "39099": {"county": [], "munis": [{"m": "Youngstown", "p": [{"n": "Jamael Tito Brown", "r": "Mayor, Youngstown, OH"}]}], "slug": "mahoning"}, "39101": {"county": [], "munis": [{"m": "Marion", "p": [{"n": "Bill Collins", "r": "Mayor, Marion, OH"}]}], "slug": "marion"}, "39103": {"county": [], "munis": [{"m": "Brunswick", "p": [{"n": "Ron Falconi", "r": "Mayor, Brunswick, OH"}]}, {"m": "Medina", "p": [{"n": "Dennis Hanwell", "r": "Mayor, Medina, OH"}]}], "slug": "medina"}, "39107": {"county": [], "munis": [{"m": "Celina", "p": [{"n": "Jeffrey Hazel", "r": "Mayor, Celina, OH"}]}], "slug": "mercer"}, "39109": {"county": [], "munis": [{"m": "Piqua", "p": [{"n": "Kris Lee", "r": "Mayor, Piqua, OH"}]}, {"m": "Troy", "p": [{"n": "Robin Oda", "r": "Mayor, Troy, OH"}]}], "slug": "miami"}, "39113": {"county": [], "munis": [{"m": "Centerville", "p": [{"n": "Brooks Compton", "r": "Mayor, Centerville, OH"}]}, {"m": "Clayton", "p": [{"n": "Mike Stevens", "r": "Mayor, Clayton, OH"}]}, {"m": "Dayton", "p": [{"n": "Jeffrey J. Mims, Jr.", "r": "Mayor, Dayton, OH"}]}, {"m": "Huber Heights", "p": [{"n": "Jeff Gore", "r": "Mayor, Huber Heights, OH"}]}, {"m": "Kettering", "p": [{"n": "Peggy Lehner", "r": "Mayor, Kettering, OH"}]}, {"m": "Miamisburg", "p": [{"n": "Michelle Collins", "r": "Mayor, Miamisburg, OH"}]}, {"m": "Riverside", "p": [{"n": "Peter J. Williams", "r": "Mayor, Riverside, OH"}]}, {"m": "Trotwood", "p": [{"n": "Yvette F. Page", "r": "Mayor, Trotwood, OH"}]}, {"m": "Vandalia", "p": [{"n": "Richard Herbst", "r": "Mayor, Vandalia, OH"}]}, {"m": "West Carrollton", "p": [{"n": "Rick Barnhart", "r": "Mayor, West Carrollton, OH"}]}], "slug": "montgomery"}, "39119": {"county": [], "munis": [{"m": "Zanesville", "p": [{"n": "Donald L. Mason", "r": "Mayor, Zanesville, OH"}]}], "slug": "muskingum"}, "39123": {"county": [], "munis": [{"m": "Port Clinton", "p": [{"n": "Michael Snider", "r": "Mayor, Port Clinton, OH"}]}], "slug": "ottawa"}, "39129": {"county": [], "munis": [{"m": "Circleville", "p": [{"n": "Michelle L. Blanton", "r": "Mayor, Circleville, OH"}]}], "slug": "pickaway"}, "39133": {"county": [], "munis": [{"m": "Aurora", "p": [{"n": "Ann Womer Benjamin", "r": "Mayor, Aurora, OH"}]}, {"m": "Kent", "p": [{"n": "Jerry T. Fiala", "r": "Mayor, Kent, OH"}]}, {"m": "Ravenna", "p": [{"n": "Frank Seman", "r": "Mayor, Ravenna, OH"}]}, {"m": "Streetsboro", "p": [{"n": "Glenn M. Broska", "r": "Mayor, Streetsboro, OH"}]}], "slug": "portage"}, "39135": {"county": [], "munis": [{"m": "Eaton", "p": [{"n": "Matt Venable", "r": "Mayor, Eaton, OH"}]}], "slug": "preble"}, "39139": {"county": [], "munis": [{"m": "Mansfield", "p": [{"n": "Jodie Perry", "r": "Mayor, Mansfield, OH"}]}, {"m": "Shelby", "p": [{"n": "Steven L. Schag", "r": "Mayor, Shelby, OH"}]}], "slug": "richland"}, "39141": {"county": [], "munis": [{"m": "Chillicothe", "p": [{"n": "Luke M. Feeney", "r": "Mayor, Chillicothe, OH"}]}], "slug": "ross"}, "39143": {"county": [], "munis": [{"m": "Clyde", "p": [{"n": "Doug McCauley", "r": "Mayor, Clyde, OH"}]}, {"m": "Fremont", "p": [{"n": "Danny Sanchez", "r": "Mayor, Fremont, OH"}]}], "slug": "sandusky"}, "39145": {"county": [], "munis": [{"m": "Portsmouth", "p": [{"n": "Charlotte Gordon", "r": "Mayor, Portsmouth, OH"}]}], "slug": "scioto"}, "39147": {"county": [], "munis": [{"m": "Fostoria", "p": [{"n": "Donald Mennel", "r": "Mayor, Fostoria, OH"}]}, {"m": "Tiffin", "p": [{"n": "Lee Wilkinson", "r": "Mayor, Tiffin, OH"}]}], "slug": "seneca"}, "39149": {"county": [], "munis": [{"m": "Sidney", "p": [{"n": "Mike Barhorst", "r": "Mayor, Sidney, OH"}]}], "slug": "shelby"}, "39151": {"county": [], "munis": [{"m": "Alliance", "p": [{"n": "Andrew Grove", "r": "Mayor, Alliance, OH"}]}, {"m": "Canal Fulton", "p": [{"n": "Joseph A. Schultz", "r": "Mayor, Canal Fulton, OH"}]}, {"m": "Canton", "p": [{"n": "William Sherer", "r": "Mayor, Canton, OH"}]}, {"m": "Louisville", "p": [{"n": "Patricia A. Fallot", "r": "Mayor, Louisville, OH"}]}, {"m": "Massillon", "p": [{"n": "Jamie Slutz", "r": "Mayor, Massillon, OH"}]}, {"m": "North Canton", "p": [{"n": "Stephan B. Wilder", "r": "Mayor, North Canton, OH"}]}], "slug": "stark"}, "39153": {"county": [], "munis": [{"m": "Akron", "p": [{"n": "Shammas Malik", "r": "Mayor, Akron, OH"}]}, {"m": "Cuyahoga Falls", "p": [{"n": "Don Walters", "r": "Mayor, Cuyahoga Falls, OH"}]}, {"m": "Hudson", "p": [{"n": "Jeffrey Anzevino", "r": "Mayor, Hudson, OH"}]}, {"m": "Macedonia", "p": [{"n": "Nicholas Molnar", "r": "Mayor, Macedonia, OH"}]}, {"m": "Stow", "p": [{"n": "John Pribonic", "r": "Mayor, Stow, OH"}]}, {"m": "Tallmadge", "p": [{"n": "Carol Siciliano-Kilway", "r": "Mayor, Tallmadge, OH"}]}, {"m": "Twinsburg", "p": [{"n": "Sam Scaffide", "r": "Mayor, Twinsburg, OH"}]}], "slug": "summit"}, "39155": {"county": [], "munis": [{"m": "Newton Falls", "p": [{"n": "David Hanson", "r": "Mayor, Newton Falls, OH"}]}, {"m": "Niles", "p": [{"n": "Steven Mientkiewicz", "r": "Mayor, Niles, OH"}]}, {"m": "Warren", "p": [{"n": "William Franklin", "r": "Mayor, Warren, OH"}]}], "slug": "trumbull"}, "39157": {"county": [], "munis": [{"m": "Dover", "p": [{"n": "Shane Gunnoe", "r": "Mayor, Dover, OH"}]}, {"m": "New Philadelphia", "p": [{"n": "Joel Day", "r": "Mayor, New Philadelphia, OH"}]}, {"m": "Uhrichsville", "p": [{"n": "James Zucal", "r": "Mayor, Uhrichsville, OH"}]}], "slug": "tuscarawas"}, "39161": {"county": [], "munis": [{"m": "Van Wert", "p": [{"n": "Kenneth J. Markward", "r": "Mayor, Van Wert, OH"}]}], "slug": "van-wert"}, "39165": {"county": [], "munis": [{"m": "Franklin", "p": [{"n": "Brent Centers", "r": "Mayor, Franklin, OH"}]}, {"m": "Lebanon", "p": [{"n": "Mark Messer", "r": "Mayor, Lebanon, OH"}]}, {"m": "Springboro", "p": [{"n": "John Agenbroad", "r": "Mayor, Springboro, OH"}]}], "slug": "warren"}, "39167": {"county": [], "munis": [{"m": "Marietta", "p": [{"n": "Josh Schlicher", "r": "Mayor, Marietta, OH"}]}], "slug": "washington"}, "39169": {"county": [], "munis": [{"m": "Orrville", "p": [{"n": "Matthew Plybon", "r": "Mayor, Orrville, OH"}]}, {"m": "Wooster", "p": [{"n": "Robert J. Reynolds", "r": "Mayor, Wooster, OH"}]}], "slug": "wayne"}, "39171": {"county": [], "munis": [{"m": "Bryan", "p": [{"n": "Carrie Schlade", "r": "Mayor, Bryan, OH"}]}], "slug": "williams"}, "39173": {"county": [], "munis": [{"m": "Bowling Green", "p": [{"n": "Mike Aspacher", "r": "Mayor, Bowling Green, OH"}]}, {"m": "Perrysburg", "p": [{"n": "Tom Mackin", "r": "Mayor, Perrysburg, OH"}]}, {"m": "Rossford", "p": [{"n": "Neil A. MacKinnon III", "r": "Mayor, Rossford, OH"}]}], "slug": "wood"}, "40023": {"county": [], "munis": [{"m": "Hugo", "p": [{"n": "Ernest McCarty", "r": "Mayor, Hugo, OK"}]}], "slug": "choctaw"}, "40027": {"county": [], "munis": [{"m": "Moore", "p": [{"n": "Glenn Lewis", "r": "Mayor, Moore, OK"}]}, {"m": "Norman", "p": [{"n": "Larry Heikkila", "r": "Mayor, Norman, OK"}]}], "slug": "cleveland"}, "40031": {"county": [], "munis": [{"m": "Lawton", "p": [{"n": "Stan Booker", "r": "Mayor, Lawton, OK"}]}], "slug": "comanche"}, "40037": {"county": [], "munis": [{"m": "Sapulpa", "p": [{"n": "Craig Henderson", "r": "Mayor, Sapulpa, OK"}]}], "slug": "creek"}, "40047": {"county": [], "munis": [{"m": "Enid", "p": [{"n": "David Mason", "r": "Mayor, Enid, OK"}]}], "slug": "garfield"}, "40109": {"county": [], "munis": [{"m": "Oklahoma City", "p": [{"n": "Mick Cornett", "r": "Mayor, Oklahoma City, OK"}]}], "slug": "oklahoma"}, "40119": {"county": [], "munis": [{"m": "Stillwater", "p": [{"n": "Will Joyce", "r": "Mayor, Stillwater, OK"}]}], "slug": "payne"}, "40143": {"county": [], "munis": [{"m": "Broken Arrow", "p": [{"n": "Debra Wimpee", "r": "Mayor, Broken Arrow, OK"}]}, {"m": "Tulsa", "p": [{"n": "Monroe Nichols", "r": "Mayor, Tulsa, OK"}]}], "slug": "tulsa"}, "41003": {"county": [], "munis": [{"m": "Corvallis", "p": [{"n": "Biff Traber", "r": "Mayor, Corvallis, OR"}]}], "slug": "benton"}, "41005": {"county": [], "munis": [{"m": "Estacada", "p": [{"n": "Sean Drinkwine", "r": "Mayor, Estacada, OR"}]}, {"m": "Lake Oswego", "p": [{"n": "Kent Studebaker", "r": "Mayor, Lake Oswego, OR"}]}, {"m": "Wilsonville", "p": [{"n": "Julie Fitzgerald", "r": "Mayor, Wilsonville, OR"}]}], "slug": "clackamas"}, "41007": {"county": [], "munis": [{"m": "Astoria", "p": [{"n": "Bruce Jones", "r": "Mayor, Astoria, OR"}]}, {"m": "Cannon Beach", "p": [{"n": "Sam Steidel", "r": "Mayor, Cannon Beach, OR"}]}], "slug": "clatsop"}, "41011": {"county": [], "munis": [{"m": "Coos Bay", "p": [{"n": "Joe Benetti", "r": "Mayor, Coos Bay, OR"}]}, {"m": "Coquille", "p": [{"n": "Sam Flaherty", "r": "Mayor, Coquille, OR"}]}], "slug": "coos"}, "41013": {"county": [], "munis": [{"m": "Prineville", "p": [{"n": "Jason Beebe", "r": "Mayor, Prineville, OR"}]}], "slug": "crook"}, "41017": {"county": [], "munis": [{"m": "Bend", "p": [{"n": "Melanie Kebler", "r": "Mayor, Bend, OR"}]}], "slug": "deschutes"}, "41019": {"county": [], "munis": [{"m": "Roseburg", "p": [{"n": "Larry Rich", "r": "Mayor, Roseburg, OR"}]}, {"m": "Sutherlin", "p": [{"n": "Michelle Sumner", "r": "Mayor, Sutherlin, OR"}]}], "slug": "douglas"}, "41029": {"county": [], "munis": [{"m": "Medford", "p": [{"n": "Randy Sparacino", "r": "Mayor, Medford, OR"}]}], "slug": "jackson"}, "41033": {"county": [], "munis": [{"m": "Grants Pass", "p": [{"n": "Sara Bristol", "r": "Mayor, Grants Pass, OR"}]}], "slug": "josephine"}, "41039": {"county": [], "munis": [{"m": "Cottage Grove", "p": [{"n": "Candace Solesbee", "r": "Mayor, Cottage Grove, OR"}]}, {"m": "Eugene", "p": [{"n": "Lucy Vinis", "r": "Mayor, Eugene, OR"}]}, {"m": "Springfield", "p": [{"n": "Sean VanGordon", "r": "Mayor, Springfield, OR"}]}], "slug": "lane"}, "41041": {"county": [], "munis": [{"m": "Newport", "p": [{"n": "Dean Sawyer", "r": "Mayor, Newport, OR"}]}], "slug": "lincoln"}, "41047": {"county": [], "munis": [{"m": "Salem", "p": [{"n": "Anna Peterson", "r": "Mayor, Salem, OR"}]}, {"m": "Woodburn", "p": [{"n": "Eric Swenson", "r": "Mayor, Woodburn, OR"}]}], "slug": "marion"}, "41051": {"county": [], "munis": [{"m": "Gresham", "p": [{"n": "Travis Stovall", "r": "Mayor, Gresham, OR"}]}, {"m": "Portland", "p": [{"n": "Keith Wilson", "r": "Mayor, Portland, OR"}]}, {"m": "Troutdale", "p": [{"n": "Randy Lauer", "r": "Mayor, Troutdale, OR"}]}], "slug": "multnomah"}, "41057": {"county": [], "munis": [{"m": "Tillamook", "p": [{"n": "Aaron Burris", "r": "Mayor, Tillamook, OR"}]}], "slug": "tillamook"}, "41059": {"county": [], "munis": [{"m": "Pendleton", "p": [{"n": "John H. Turner", "r": "Mayor, Pendleton, OR"}]}], "slug": "umatilla"}, "41067": {"county": [], "munis": [{"m": "Beaverton", "p": [{"n": "Lacey Beaty", "r": "Mayor, Beaverton, OR"}]}, {"m": "Hillsboro", "p": [{"n": "Beach Pace", "r": "Mayor, Hillsboro, OR"}]}], "slug": "washington"}, "41071": {"county": [], "munis": [{"m": "Newberg", "p": [{"n": "Rick Rogers", "r": "Mayor, Newberg, OR"}]}], "slug": "yamhill"}, "42003": {"county": [], "munis": [{"m": "Mckeesport", "p": [{"n": "Michael Cherepko", "r": "Mayor, McKeesport, PA"}]}, {"m": "Pittsburgh", "p": [{"n": "mayor of Pittsburgh", "r": "Mayor, Pittsburgh, PA"}]}], "slug": "allegheny"}, "42011": {"county": [], "munis": [{"m": "Reading", "p": [{"n": "Eddie Morán", "r": "Mayor, Reading, PA"}]}], "slug": "berks"}, "42013": {"county": [], "munis": [{"m": "Altoona", "p": [{"n": "Matthew A. Pacifico", "r": "Mayor, Altoona, PA"}]}], "slug": "blair"}, "42019": {"county": [], "munis": [{"m": "Butler", "p": [{"n": "Robert A. Dandoy", "r": "Mayor, Butler, PA"}]}], "slug": "butler"}, "42021": {"county": [], "munis": [{"m": "Johnstown", "p": [{"n": "Frank J. Janakovic", "r": "Mayor, Johnstown, PA"}]}], "slug": "cambria"}, "42039": {"county": [], "munis": [{"m": "Meadville", "p": [{"n": "Jaime Kinder", "r": "Mayor, Meadville, PA"}]}], "slug": "crawford"}, "42043": {"county": [], "munis": [{"m": "Harrisburg", "p": [{"n": "Wanda Williams", "r": "Mayor, Harrisburg, PA"}]}], "slug": "dauphin"}, "42045": {"county": [], "munis": [{"m": "Chester", "p": [{"n": "Stefan Roots", "r": "Mayor, Chester, PA"}]}], "slug": "delaware"}, "42049": {"county": [], "munis": [{"m": "Erie", "p": [{"n": "Joseph V. Schember", "r": "Mayor, Erie, PA"}]}], "slug": "erie"}, "42051": {"county": [], "munis": [{"m": "Connellsville", "p": [{"n": "Greg Lincoln", "r": "Mayor, Connellsville, PA"}]}, {"m": "Uniontown", "p": [{"n": "Bill Gerke", "r": "Mayor, Uniontown, PA"}]}], "slug": "fayette"}, "42069": {"county": [], "munis": [{"m": "Scranton", "p": [{"n": "Paige Gebhardt Cognetti", "r": "Mayor, Scranton, PA"}]}], "slug": "lackawanna"}, "42071": {"county": [], "munis": [{"m": "Lancaster", "p": [{"n": "Danene Sorace", "r": "Mayor, Lancaster, PA"}]}], "slug": "lancaster"}, "42073": {"county": [], "munis": [{"m": "New Castle", "p": [{"n": "Bryan Cameron", "r": "Mayor, New Castle, PA"}]}], "slug": "lawrence"}, "42075": {"county": [], "munis": [{"m": "Lebanon", "p": [{"n": "Sherry Capello", "r": "Mayor, Lebanon, PA"}]}], "slug": "lebanon"}, "42077": {"county": [], "munis": [{"m": "Allentown", "p": [{"n": "Matthew Tuerk", "r": "Mayor, Allentown, PA"}]}], "slug": "lehigh"}, "42079": {"county": [], "munis": [{"m": "Hazleton", "p": [{"n": "Jeff Cusat", "r": "Mayor, Hazleton, PA"}]}, {"m": "Pittston", "p": [{"n": "Charles Calvin Bowman", "r": "Mayor, Pittston, PA"}]}, {"m": "Wilkes Barre", "p": [{"n": "George C. Brown", "r": "Mayor, Wilkes-Barre, PA"}]}], "slug": "luzerne"}, "42081": {"county": [], "munis": [{"m": "Williamsport", "p": [{"n": "Derek J. Slaughter", "r": "Mayor, Williamsport, PA"}]}], "slug": "lycoming"}, "42083": {"county": [], "munis": [{"m": "Bradford", "p": [{"n": "Tom Riel", "r": "Mayor, Bradford, PA"}]}], "slug": "mckean"}, "42095": {"county": [], "munis": [{"m": "Bethlehem", "p": [{"n": "J. William Reynolds", "r": "Mayor, Bethlehem, PA"}]}, {"m": "Easton", "p": [{"n": "Salvatore J. Panto, Jr.", "r": "Mayor, Easton, PA"}]}], "slug": "northampton"}, "42097": {"county": [], "munis": [{"m": "Shamokin", "p": [{"n": "Richard Ulrich", "r": "Mayor, Shamokin, PA"}]}], "slug": "northumberland"}, "42101": {"county": [], "munis": [{"m": "Philadelphia", "p": [{"n": "Cherelle Parker", "r": "Mayor, Philadelphia, PA"}]}], "slug": "philadelphia"}, "42107": {"county": [], "munis": [{"m": "Pottsville", "p": [{"n": "Mark J. Atkinson", "r": "Mayor, Pottsville, PA"}]}], "slug": "schuylkill"}, "42121": {"county": [], "munis": [{"m": "Oil City", "p": [{"n": "John Kluck", "r": "Mayor, Oil City, PA"}]}], "slug": "venango"}, "42123": {"county": [], "munis": [{"m": "Warren", "p": [{"n": "David G. Wortman", "r": "Mayor, Warren, PA"}]}], "slug": "warren"}, "42125": {"county": [], "munis": [{"m": "Monongahela", "p": [{"n": "Greg Garry", "r": "Mayor, Monongahela, PA"}]}, {"m": "Washington", "p": [{"n": "JoJo Burgess", "r": "Mayor, Washington, PA"}]}], "slug": "washington"}, "42129": {"county": [], "munis": [{"m": "Greensburg", "p": [{"n": "Robert L. Bell", "r": "Mayor, Greensburg, PA"}]}], "slug": "westmoreland"}, "42133": {"county": [], "munis": [{"m": "York", "p": [{"n": "Q124818167", "r": "Mayor, York, PA"}]}], "slug": "york"}, "44003": {"county": [], "munis": [{"m": "Warwick", "p": [{"n": "Joseph J. Solomon", "r": "Mayor, Warwick, RI"}]}], "slug": "kent"}, "44005": {"county": [], "munis": [{"m": "Newport", "p": [{"n": "Charles M. Holder", "r": "Mayor, Newport, RI"}]}], "slug": "newport"}, "44007": {"county": [], "munis": [{"m": "Central Falls", "p": [{"n": "Maria Rivera", "r": "Mayor, Central Falls, RI"}]}, {"m": "Cranston", "p": [{"n": "Kenneth Hopkins", "r": "Mayor, Cranston, RI"}]}, {"m": "East Providence", "p": [{"n": "Roberto L. DaSilva", "r": "Mayor, East Providence, RI"}]}, {"m": "Pawtucket", "p": [{"n": "Donald R. Grebien", "r": "Mayor, Pawtucket, RI"}]}, {"m": "Providence", "p": [{"n": "Brett Smiley", "r": "Mayor, Providence, RI"}]}, {"m": "Woonsocket", "p": [{"n": "Christopher Beauchamp", "r": "Mayor, Woonsocket, RI"}]}], "slug": "providence"}, "45001": {"county": [], "munis": [{"m": "Abbeville", "p": [{"n": "Trey Edwards", "r": "Mayor, Abbeville, SC"}]}], "slug": "abbeville"}, "45003": {"county": [], "munis": [{"m": "Aiken", "p": [{"n": "Teddy Milner", "r": "Mayor, Aiken, SC"}]}], "slug": "aiken"}, "45007": {"county": [], "munis": [{"m": "Anderson", "p": [{"n": "Terence Roberts", "r": "Mayor, Anderson, SC"}]}], "slug": "anderson"}, "45009": {"county": [], "munis": [{"m": "Bamberg", "p": [{"n": "Nancy Foster", "r": "Mayor, Bamberg, SC"}]}], "slug": "bamberg"}, "45013": {"county": [], "munis": [{"m": "Beaufort", "p": [{"n": "Phil Cromer", "r": "Mayor, Beaufort, SC"}]}], "slug": "beaufort"}, "45015": {"county": [], "munis": [{"m": "Goose Creek", "p": [{"n": "Gregory Habib", "r": "Mayor, Goose Creek, SC"}]}], "slug": "berkeley"}, "45019": {"county": [], "munis": [{"m": "Charleston", "p": [{"n": "John Tecklenburg", "r": "Mayor, Charleston, SC"}]}], "slug": "charleston"}, "45035": {"county": [], "munis": [{"m": "North Charleston", "p": [{"n": "R. Keith Summey", "r": "Mayor, North Charleston, SC"}]}], "slug": "dorchester"}, "45041": {"county": [], "munis": [{"m": "Florence", "p": [{"n": "Lethonia Barnes", "r": "Mayor, Florence, SC"}]}], "slug": "florence"}, "45045": {"county": [], "munis": [{"m": "Greenville", "p": [{"n": "Knox H. White", "r": "Mayor, Greenville, SC"}]}, {"m": "Greer", "p": [{"n": "Richard W. Danner", "r": "Mayor, Greer, SC"}]}, {"m": "Mauldin", "p": [{"n": "Terry Merritt", "r": "Mayor, Mauldin, SC"}]}], "slug": "greenville"}, "45051": {"county": [], "munis": [{"m": "Conway", "p": [{"n": "Barbara Blain-Bellamy", "r": "Mayor, Conway, SC"}]}, {"m": "Loris", "p": [{"n": "Michael E. Suggs", "r": "Mayor, Loris, SC"}]}, {"m": "Myrtle Beach", "p": [{"n": "John Rhodes", "r": "Mayor, Myrtle Beach, SC"}]}], "slug": "horry"}, "45055": {"county": [], "munis": [{"m": "Camden", "p": [{"n": "Vincent Sheheen", "r": "Mayor, Camden, SC"}]}], "slug": "kershaw"}, "45067": {"county": [], "munis": [{"m": "Marion", "p": [{"n": "Ashley Brady", "r": "Mayor, Marion, SC"}]}], "slug": "marion"}, "45073": {"county": [], "munis": [{"m": "Seneca", "p": [{"n": "Daniel W. Alexander", "r": "Mayor, Seneca, SC"}]}], "slug": "oconee"}, "45079": {"county": [], "munis": [{"m": "Columbia", "p": [{"n": "Daniel Rickenmann", "r": "Mayor, Columbia, SC"}]}], "slug": "richland"}, "45083": {"county": [], "munis": [{"m": "Spartanburg", "p": [{"n": "Jerome Rice", "r": "Mayor, Spartanburg, SC"}]}], "slug": "spartanburg"}, "45085": {"county": [], "munis": [{"m": "Sumter", "p": [{"n": "David Merchant", "r": "Mayor, Sumter, SC"}]}], "slug": "sumter"}, "45089": {"county": [], "munis": [{"m": "Kingstree", "p": [{"n": "Darren Tisdale", "r": "Mayor, Kingstree, SC"}]}], "slug": "williamsburg"}, "45091": {"county": [], "munis": [{"m": "Rock Hill", "p": [{"n": "John Gettys", "r": "Mayor, Rock Hill, SC"}]}], "slug": "york"}, "46011": {"county": [], "munis": [{"m": "Brookings", "p": [{"n": "Oepke \"Ope\" Niemeyer", "r": "Mayor, Brookings, SD"}]}, {"m": "Volga", "p": [{"n": "Ken Fideler", "r": "Mayor, Volga, SD"}]}], "slug": "brookings"}, "46013": {"county": [], "munis": [{"m": "Aberdeen", "p": [{"n": "Travis Schaunaman", "r": "Mayor, Aberdeen, SD"}]}], "slug": "brown"}, "46027": {"county": [], "munis": [{"m": "Vermillion", "p": [{"n": "Jon Cole", "r": "Mayor, Vermillion, SD"}]}], "slug": "clay"}, "46051": {"county": [], "munis": [{"m": "Milbank", "p": [{"n": "Pat Raffety", "r": "Mayor, Milbank, SD"}]}], "slug": "grant"}, "46065": {"county": [], "munis": [{"m": "Pierre", "p": [{"n": "Steve Harding", "r": "Mayor, Pierre, SD"}]}], "slug": "hughes"}, "46077": {"county": [], "munis": [{"m": "Arlington", "p": [{"n": "Curt Lundquist", "r": "Mayor, Arlington, SD"}]}], "slug": "kingsbury"}, "46079": {"county": [], "munis": [{"m": "Madison", "p": [{"n": "Roy Lindsay", "r": "Mayor, Madison, SD"}]}], "slug": "lake"}, "46083": {"county": [], "munis": [{"m": "Canton", "p": [{"n": "Sandi Lundstrom", "r": "Mayor, Canton, SD"}]}, {"m": "Harrisburg", "p": [{"n": "Derick Wenck", "r": "Mayor, Harrisburg, SD"}]}, {"m": "Lennox", "p": [{"n": "Stacy DuChene", "r": "Mayor, Lennox, SD"}]}, {"m": "Tea", "p": [{"n": "Casey Voelker", "r": "Mayor, Tea, SD"}]}], "slug": "lincoln"}, "46093": {"county": [], "munis": [{"m": "Sturgis", "p": [{"n": "Angela Wilkerson", "r": "Mayor, Sturgis, SD"}]}], "slug": "meade"}, "46099": {"county": [], "munis": [{"m": "Brandon", "p": [{"n": "Harry Buck", "r": "Mayor, Brandon, SD"}]}, {"m": "Dell Rapids", "p": [{"n": "Tom Earley", "r": "Mayor, Dell Rapids, SD"}]}, {"m": "Hartford", "p": [{"n": "Arden Jones", "r": "Mayor, Hartford, SD"}]}, {"m": "Sioux Falls", "p": [{"n": "Paul Ten Haken", "r": "Mayor, Sioux Falls, SD"}]}], "slug": "minnehaha"}, "46101": {"county": [], "munis": [{"m": "Flandreau", "p": [{"n": "Daniel D. Sutton", "r": "Mayor, Flandreau, SD"}]}], "slug": "moody"}, "46103": {"county": [], "munis": [{"m": "Rapid City", "p": [{"n": "Steve Allender", "r": "Mayor, Rapid City, SD"}]}], "slug": "pennington"}, "46117": {"county": [], "munis": [{"m": "Fort Pierre", "p": [{"n": "Gloria Hanson", "r": "Mayor, Fort Pierre, SD"}]}], "slug": "stanley"}, "46127": {"county": [], "munis": [{"m": "Beresford", "p": [{"n": "Eli Seeley", "r": "Mayor, Beresford, SD"}]}, {"m": "Elk Point", "p": [{"n": "Deborah McCreary", "r": "Mayor, Elk Point, SD"}]}, {"m": "North Sioux City", "p": [{"n": "Patricia Teel", "r": "Mayor, North Sioux City, SD"}]}], "slug": "union"}, "46135": {"county": [], "munis": [{"m": "Yankton", "p": [{"n": "Stephanie Moser", "r": "Mayor, Yankton, SD"}]}], "slug": "yankton"}, "47001": {"county": [], "munis": [{"m": "Clinton", "p": [{"n": "Scott Burton", "r": "Mayor, Clinton, TN"}]}, {"m": "Rocky Top", "p": [{"n": "Kerry Templin", "r": "Mayor, Rocky Top, TN"}]}], "slug": "anderson"}, "47003": {"county": [], "munis": [{"m": "Shelbyville", "p": [{"n": "Randy Carroll", "r": "Mayor, Shelbyville, TN"}]}], "slug": "bedford"}, "47005": {"county": [], "munis": [{"m": "Camden", "p": [{"n": "Roger G. Pafford", "r": "Mayor, Camden, TN"}]}], "slug": "benton"}, "47009": {"county": [], "munis": [{"m": "Alcoa", "p": [{"n": "Tanya Martin", "r": "Mayor, Alcoa, TN"}]}, {"m": "Maryville", "p": [{"n": "Andy White", "r": "Mayor, Maryville, TN"}]}], "slug": "blount"}, "47011": {"county": [], "munis": [{"m": "Charleston", "p": [{"n": "Donna McDermott", "r": "Mayor, Charleston, TN"}]}, {"m": "Cleveland", "p": [{"n": "Kevin Brooks", "r": "Mayor, Cleveland, TN"}]}], "slug": "bradley"}, "47031": {"county": [], "munis": [{"m": "Manchester", "p": [{"n": "Joey Hobbs", "r": "Mayor, Manchester, TN"}]}], "slug": "coffee"}, "47035": {"county": [], "munis": [{"m": "Crossville", "p": [{"n": "RJ Crawford", "r": "Mayor, Crossville, TN"}]}], "slug": "cumberland"}, "47045": {"county": [], "munis": [{"m": "Dyersburg", "p": [{"n": "John Holden", "r": "Mayor, Dyersburg, TN"}]}], "slug": "dyer"}, "47055": {"county": [], "munis": [{"m": "Pulaski", "p": [{"n": "J.J. Brindley", "r": "Mayor, Pulaski, TN"}]}], "slug": "giles"}, "47065": {"county": [], "munis": [{"m": "Chattanooga", "p": [{"n": "Q4760428", "r": "Mayor, Chattanooga, TN"}]}], "slug": "hamilton"}, "47075": {"county": [], "munis": [{"m": "Brownsville", "p": [{"n": "William D. Rawls, Jr.", "r": "Mayor, Brownsville, TN"}]}], "slug": "haywood"}, "47093": {"county": [], "munis": [{"m": "Knoxville", "p": [{"n": "Indya Kincannon", "r": "Mayor, Knoxville, TN"}]}], "slug": "knox"}, "47103": {"county": [], "munis": [{"m": "Fayetteville", "p": [{"n": "Donna Hartman", "r": "Mayor, Fayetteville, TN"}]}], "slug": "lincoln"}, "47113": {"county": [], "munis": [{"m": "Jackson", "p": [{"n": "Scott Conger", "r": "Mayor, Jackson, TN"}]}], "slug": "madison"}, "47119": {"county": [], "munis": [{"m": "Spring Hill", "p": [{"n": "Jim Hagaman", "r": "Mayor, Spring Hill, TN"}]}], "slug": "maury"}, "47125": {"county": [], "munis": [{"m": "Clarksville", "p": [{"n": "Joe Pitts", "r": "Mayor, Clarksville, TN"}]}], "slug": "montgomery"}, "47143": {"county": [], "munis": [{"m": "Dayton", "p": [{"n": "Hurley Marsh", "r": "Mayor, Dayton, TN"}]}], "slug": "rhea"}, "47145": {"county": [], "munis": [{"m": "Rockwood", "p": [{"n": "Jason Jolly", "r": "Mayor, Rockwood, TN"}]}], "slug": "roane"}, "47147": {"county": [], "munis": [{"m": "Springfield", "p": [{"n": "Ann Williams", "r": "Mayor, Springfield, TN"}]}], "slug": "robertson"}, "47149": {"county": [], "munis": [{"m": "La Vergne", "p": [{"n": "Jason Cole", "r": "Mayor, La Vergne, TN"}]}, {"m": "Murfreesboro", "p": [{"n": "Shane McFarland", "r": "Mayor, Murfreesboro, TN"}]}], "slug": "rutherford"}, "47155": {"county": [], "munis": [{"m": "Sevierville", "p": [{"n": "Robert W. Fox", "r": "Mayor, Sevierville, TN"}]}], "slug": "sevier"}, "47157": {"county": [], "munis": [{"m": "Bartlett", "p": [{"n": "David Parsons", "r": "Mayor, Bartlett, TN"}]}, {"m": "Germantown", "p": [{"n": "Mike Palazzolo", "r": "Mayor, Germantown, TN"}]}, {"m": "Memphis", "p": [{"n": "Paul Young", "r": "Mayor, Memphis, TN"}]}], "slug": "shelby"}, "47163": {"county": [], "munis": [{"m": "Bristol", "p": [{"n": "Vince Turner", "r": "Mayor, Bristol, TN"}]}, {"m": "Kingsport", "p": [{"n": "Patrick W. Shull", "r": "Mayor, Kingsport, TN"}]}], "slug": "sullivan"}, "47165": {"county": [], "munis": [{"m": "Hendersonville", "p": [{"n": "Jamie Clary", "r": "Mayor, Hendersonville, TN"}]}, {"m": "Portland", "p": [{"n": "Mike Callis", "r": "Mayor, Portland, TN"}]}], "slug": "sumner"}, "47179": {"county": [], "munis": [{"m": "Johnson City", "p": [{"n": "Todd Fowler", "r": "Mayor, Johnson City, TN"}]}], "slug": "washington"}, "47187": {"county": [], "munis": [{"m": "Brentwood", "p": [{"n": "Mark Gorman", "r": "Mayor, Brentwood, TN"}]}, {"m": "Franklin", "p": [{"n": "Ken Moore", "r": "Mayor, Franklin, TN"}]}], "slug": "williamson"}, "47189": {"county": [], "munis": [{"m": "Lebanon", "p": [{"n": "Rick Bell", "r": "Mayor, Lebanon, TN"}]}], "slug": "wilson"}, "48001": {"county": [], "munis": [{"m": "Palestine", "p": [{"n": "Mitchell Jordan", "r": "Mayor, Palestine, TX"}]}], "slug": "anderson"}, "48003": {"county": [], "munis": [{"m": "Andrews", "p": [{"n": "Flora Braly", "r": "Mayor, Andrews, TX"}]}], "slug": "andrews"}, "48005": {"county": [], "munis": [{"m": "Lufkin", "p": [{"n": "Mark Hicks", "r": "Mayor, Lufkin, TX"}]}], "slug": "angelina"}, "48007": {"county": [], "munis": [{"m": "Rockport", "p": [{"n": "Lowell Timothy Jayroe", "r": "Mayor, Rockport, TX"}]}], "slug": "aransas"}, "48015": {"county": [], "munis": [{"m": "Bellville", "p": [{"n": "James Harrison", "r": "Mayor, Bellville, TX"}]}], "slug": "austin"}, "48021": {"county": [], "munis": [{"m": "Bastrop", "p": [{"n": "Lyle Nelson", "r": "Mayor, Bastrop, TX"}]}, {"m": "Elgin", "p": [{"n": "Theresa McShan", "r": "Mayor, Elgin, TX"}]}], "slug": "bastrop"}, "48027": {"county": [], "munis": [{"m": "Belton", "p": [{"n": "David K. Leigh", "r": "Mayor, Belton, TX"}]}, {"m": "Harker Heights", "p": [{"n": "Michael Blomquist", "r": "Mayor, Harker Heights, TX"}]}, {"m": "Killeen", "p": [{"n": "Debbie Nash-King", "r": "Mayor, Killeen, TX"}]}, {"m": "Temple", "p": [{"n": "Timothy Davis", "r": "Mayor, Temple, TX"}]}], "slug": "bell"}, "48029": {"county": [], "munis": [{"m": "Converse", "p": [{"n": "Al Suarez", "r": "Mayor, Converse, TX"}]}, {"m": "Hill Country Village", "p": [{"n": "Gabriel Durand-Hollis", "r": "Mayor, Hill Country Village, TX"}]}, {"m": "Leon Valley", "p": [{"n": "Chris Riley", "r": "Mayor, Leon Valley, TX"}]}, {"m": "San Antonio", "p": [{"n": "Gina Ortiz Jones", "r": "Mayor, San Antonio, TX"}]}], "slug": "bexar"}, "48037": {"county": [], "munis": [{"m": "De Kalb", "p": [{"n": "Lowell Walker", "r": "Mayor, De Kalb, TX"}]}, {"m": "New Boston", "p": [{"n": "Ronald Humphrey", "r": "Mayor, New Boston, TX"}]}, {"m": "Texarkana", "p": [{"n": "Bob Bruggeman", "r": "Mayor, Texarkana, TX"}]}], "slug": "bowie"}, "48039": {"county": [], "munis": [{"m": "Alvin", "p": [{"n": "Gabe Adame", "r": "Mayor, Alvin, TX"}]}, {"m": "Angleton", "p": [{"n": "John Wright", "r": "Mayor, Angleton, TX"}]}, {"m": "Clute", "p": [{"n": "Calvin Shiflet", "r": "Mayor, Clute, TX"}]}, {"m": "Freeport", "p": [{"n": "Brooks Bass", "r": "Mayor, Freeport, TX"}]}, {"m": "Lake Jackson", "p": [{"n": "Gerald Roznovsky", "r": "Mayor, Lake Jackson, TX"}]}, {"m": "Pearland", "p": [{"n": "Kevin Cole", "r": "Mayor, Pearland, TX"}]}], "slug": "brazoria"}, "48041": {"county": [], "munis": [{"m": "Bryan", "p": [{"n": "Bobby Gutierrez", "r": "Mayor, Bryan, TX"}]}, {"m": "College Station", "p": [{"n": "Karl Mooney", "r": "Mayor, College Station, TX"}]}], "slug": "brazos"}, "48043": {"county": [], "munis": [{"m": "Alpine", "p": [{"n": "Catherine Eaves", "r": "Mayor, Alpine, TX"}]}], "slug": "brewster"}, "48049": {"county": [], "munis": [{"m": "Brownwood", "p": [{"n": "Stephen E. Haynes", "r": "Mayor, Brownwood, TX"}]}], "slug": "brown"}, "48051": {"county": [], "munis": [{"m": "Caldwell", "p": [{"n": "Janice Easter", "r": "Mayor, Caldwell, TX"}]}], "slug": "burleson"}, "48053": {"county": [], "munis": [{"m": "Burnet", "p": [{"n": "Gary Wideman", "r": "Mayor, Burnet, TX"}]}, {"m": "Marble Falls", "p": [{"n": "Dave Rhodes", "r": "Mayor, Marble Falls, TX"}]}], "slug": "burnet"}, "48055": {"county": [], "munis": [{"m": "Lockhart", "p": [{"n": "Lew White", "r": "Mayor, Lockhart, TX"}]}], "slug": "caldwell"}, "48059": {"county": [], "munis": [{"m": "Clyde", "p": [{"n": "Rodger Brown", "r": "Mayor, Clyde, TX"}]}], "slug": "callahan"}, "48061": {"county": [], "munis": [{"m": "Brownsville", "p": [{"n": "John Cowen Jr.", "r": "Mayor, Brownsville, TX"}]}, {"m": "Harlingen", "p": [{"n": "Norma Sepulveda", "r": "Mayor, Harlingen, TX"}]}, {"m": "La Feria", "p": [{"n": "Olga H. Maldonado", "r": "Mayor, La Feria, TX"}]}, {"m": "Port Isabel", "p": [{"n": "Martin Cantu, Jr.", "r": "Mayor, Port Isabel, TX"}]}, {"m": "San Benito", "p": [{"n": "Ricardo \"Rick\" Guerra", "r": "Mayor, San Benito, TX"}]}], "slug": "cameron"}, "48063": {"county": [], "munis": [{"m": "Pittsburg", "p": [{"n": "David Abernathy", "r": "Mayor, Pittsburg, TX"}]}], "slug": "camp"}, "48073": {"county": [], "munis": [{"m": "Jacksonville", "p": [{"n": "Randy Gorham", "r": "Mayor, Jacksonville, TX"}]}], "slug": "cherokee"}, "48085": {"county": [], "munis": [{"m": "Allen", "p": [{"n": "Ken Fulk", "r": "Mayor, Allen, TX"}]}, {"m": "Farmersville", "p": [{"n": "Bryon Wiebold", "r": "Mayor, Farmersville, TX"}]}, {"m": "Frisco", "p": [{"n": "Jeff Cheney", "r": "Mayor, Frisco, TX"}]}, {"m": "Lucas", "p": [{"n": "Jim Olk", "r": "Mayor, Lucas, TX"}]}, {"m": "Mckinney", "p": [{"n": "George Fuller", "r": "Mayor, McKinney, TX"}]}, {"m": "Murphy", "p": [{"n": "Scott Bradley", "r": "Mayor, Murphy, TX"}]}, {"m": "Parker", "p": [{"n": "Lee Pettle", "r": "Mayor, Parker, TX"}]}, {"m": "Plano", "p": [{"n": "Harry LaRosiliere", "r": "Mayor, Plano, TX"}]}, {"m": "Wylie", "p": [{"n": "Matthew Porter", "r": "Mayor, Wylie, TX"}]}], "slug": "collin"}, "48089": {"county": [], "munis": [{"m": "Columbus", "p": [{"n": "Lori An Gobert", "r": "Mayor, Columbus, TX"}]}, {"m": "Weimar", "p": [{"n": "Milton R. Koller", "r": "Mayor, Weimar, TX"}]}], "slug": "colorado"}, "48091": {"county": [], "munis": [{"m": "New Braunfels", "p": [{"n": "Rusty Brockman", "r": "Mayor, New Braunfels, TX"}]}], "slug": "comal"}, "48095": {"county": [], "munis": [{"m": "Eden", "p": [{"n": "Agapito Torres", "r": "Mayor, Eden, TX"}]}], "slug": "concho"}, "48099": {"county": [], "munis": [{"m": "Gatesville", "p": [{"n": "Gary Chumley", "r": "Mayor, Gatesville, TX"}]}], "slug": "coryell"}, "48107": {"county": [], "munis": [{"m": "Lorenzo", "p": [{"n": "Tim Tiner", "r": "Mayor, Lorenzo, TX"}]}], "slug": "crosby"}, "48113": {"county": [], "munis": [{"m": "Balch Springs", "p": [{"n": "Carrie Gordon", "r": "Mayor, Balch Springs, TX"}]}, {"m": "Carrollton", "p": [{"n": "Steve Babick", "r": "Mayor, Carrollton, TX"}]}, {"m": "Cedar Hill", "p": [{"n": "Stephen Mason", "r": "Mayor, Cedar Hill, TX"}]}, {"m": "Cockrell Hill", "p": [{"n": "Luis D. Carrera", "r": "Mayor, Cockrell Hill, TX"}]}, {"m": "Coppell", "p": [{"n": "Wes Mays", "r": "Mayor, Coppell, TX"}]}, {"m": "Dallas", "p": [{"n": "Eric Johnson", "r": "Mayor, Dallas, TX"}]}, {"m": "Duncanville", "p": [{"n": "Barry L. Gordon", "r": "Mayor, Duncanville, TX"}]}, {"m": "Farmers Branch", "p": [{"n": "Terry Lynne", "r": "Mayor, Farmers Branch, TX"}]}, {"m": "Garland", "p": [{"n": "Scott LeMay", "r": "Mayor, Garland, TX"}]}, {"m": "Grand Prairie", "p": [{"n": "Ron Jensen", "r": "Mayor, Grand Prairie, TX"}]}, {"m": "Irving", "p": [{"n": "Rick Stopfer", "r": "Mayor, Irving, TX"}]}, {"m": "Lancaster", "p": [{"n": "Clyde C. Hairston", "r": "Mayor, Lancaster, TX"}]}, {"m": "Richardson", "p": [{"n": "Robert (Bob) Dubey", "r": "Mayor, Richardson, TX"}]}, {"m": "Rowlett", "p": [{"n": "Blake Margolis", "r": "Mayor, Rowlett, TX"}]}, {"m": "Sachse", "p": [{"n": "Jeff Bickerstaff", "r": "Mayor, Sachse, TX"}]}], "slug": "dallas"}, "48115": {"county": [], "munis": [{"m": "Lamesa", "p": [{"n": "Josh Stevens", "r": "Mayor, Lamesa, TX"}]}], "slug": "dawson"}, "48121": {"county": [], "munis": [{"m": "Argyle", "p": [{"n": "Rick Bradford", "r": "Mayor, Argyle, TX"}]}, {"m": "Denton", "p": [{"n": "Gerard Hudspeth", "r": "Mayor, Denton, TX"}]}, {"m": "Highland Village", "p": [{"n": "Daniel Jaworski", "r": "Mayor, Highland Village, TX"}]}, {"m": "Krum", "p": [{"n": "Rhonda Harrison", "r": "Mayor, Krum, TX"}]}, {"m": "Lake Dallas", "p": [{"n": "Andi Nolan", "r": "Mayor, Lake Dallas, TX"}]}, {"m": "Lewisville", "p": [{"n": "TJ Gilmore", "r": "Mayor, Lewisville, TX"}]}, {"m": "Little Elm", "p": [{"n": "Q111217466", "r": "Mayor, Little Elm, TX"}]}, {"m": "Oak Point", "p": [{"n": "Dena Meek", "r": "Mayor, Oak Point, TX"}]}, {"m": "Roanoke", "p": [{"n": "Scooter Gierisch", "r": "Mayor, Roanoke, TX"}]}], "slug": "denton"}, "48123": {"county": [], "munis": [{"m": "Cuero", "p": [{"n": "Sara Post-Meyer", "r": "Mayor, Cuero, TX"}]}], "slug": "dewitt"}, "48127": {"county": [], "munis": [{"m": "Carrizo Springs", "p": [{"n": "Oscar E. Puente", "r": "Mayor, Carrizo Springs, TX"}]}], "slug": "dimmit"}, "48133": {"county": [], "munis": [{"m": "Cisco", "p": [{"n": "Stephen Forester", "r": "Mayor, Cisco, TX"}]}, {"m": "Eastland", "p": [{"n": "Larry Vernon", "r": "Mayor, Eastland, TX"}]}, {"m": "Rising Star", "p": [{"n": "Jimmy L. Carpenter", "r": "Mayor, Rising Star, TX"}]}], "slug": "eastland"}, "48135": {"county": [], "munis": [{"m": "Odessa", "p": [{"n": "Javier Joven", "r": "Mayor, Odessa, TX"}]}], "slug": "ector"}, "48139": {"county": [], "munis": [{"m": "Ennis", "p": [{"n": "Kameron Raburn", "r": "Mayor, Ennis, TX"}]}, {"m": "Glenn Heights", "p": [{"n": "Sonja A. Brown", "r": "Mayor, Glenn Heights, TX"}]}, {"m": "Maypearl", "p": [{"n": "Chance Lynch", "r": "Mayor, Maypearl, TX"}]}, {"m": "Midlothian", "p": [{"n": "Justin Coffman", "r": "Mayor, Midlothian, TX"}]}, {"m": "Red Oak", "p": [{"n": "Mark Stanfill", "r": "Mayor, Red Oak, TX"}]}, {"m": "Waxahachie", "p": [{"n": "David Hill", "r": "Mayor, Waxahachie, TX"}]}], "slug": "ellis"}, "48141": {"county": [], "munis": [{"m": "El Paso", "p": [{"n": "Renard Johnson", "r": "Mayor, El Paso, TX"}]}], "slug": "el-paso"}, "48149": {"county": [], "munis": [{"m": "La Grange", "p": [{"n": "Jan Dockery", "r": "Mayor, La Grange, TX"}]}], "slug": "fayette"}, "48153": {"county": [], "munis": [{"m": "Floydada", "p": [{"n": "Bobby Gilliland", "r": "Mayor, Floydada, TX"}]}], "slug": "floyd"}, "48157": {"county": [], "munis": [{"m": "Missouri City", "p": [{"n": "Robin J. Elackatt", "r": "Mayor, Missouri City, TX"}]}, {"m": "Richmond", "p": [{"n": "Becky Haas", "r": "Mayor, Richmond, TX"}]}, {"m": "Rosenberg", "p": [{"n": "Kevin Raines", "r": "Mayor, Rosenberg, TX"}]}, {"m": "Stafford", "p": [{"n": "Ken Mathew", "r": "Mayor, Stafford, TX"}]}, {"m": "Sugar Land", "p": [{"n": "Joe R. Zimmerman", "r": "Mayor, Sugar Land, TX"}]}], "slug": "fort-bend"}, "48167": {"county": [], "munis": [{"m": "Dickinson", "p": [{"n": "Sean Skipworth", "r": "Mayor, Dickinson, TX"}]}, {"m": "Friendswood", "p": [{"n": "Mike Foreman", "r": "Mayor, Friendswood, TX"}]}, {"m": "Galveston", "p": [{"n": "Craig Brown", "r": "Mayor, Galveston, TX"}]}, {"m": "Jamaica Beach", "p": [{"n": "Sharon Bower", "r": "Mayor, Jamaica Beach, TX"}]}, {"m": "Kemah", "p": [{"n": "Robin Collins", "r": "Mayor, Kemah, TX"}]}, {"m": "La Marque", "p": [{"n": "Keith Bell", "r": "Mayor, La Marque, TX"}]}, {"m": "League City", "p": [{"n": "Nick Long", "r": "Mayor, League City, TX"}]}, {"m": "Texas City", "p": [{"n": "Dedrick Johnson, Sr.", "r": "Mayor, Texas City, TX"}]}], "slug": "galveston"}, "48169": {"county": [], "munis": [{"m": "Post", "p": [{"n": "Marvin Self", "r": "Mayor, Post, TX"}]}], "slug": "garza"}, "48171": {"county": [], "munis": [{"m": "Fredericksburg", "p": [{"n": "Jeryl Hoover", "r": "Mayor, Fredericksburg, TX"}]}], "slug": "gillespie"}, "48177": {"county": [], "munis": [{"m": "Gonzales", "p": [{"n": "Steve Sucher", "r": "Mayor, Gonzales, TX"}]}], "slug": "gonzales"}, "48179": {"county": [], "munis": [{"m": "Pampa", "p": [{"n": "Lance DeFever", "r": "Mayor, Pampa, TX"}]}], "slug": "gray"}, "48181": {"county": [], "munis": [{"m": "Denison", "p": [{"n": "Janet Gott", "r": "Mayor, Denison, TX"}]}, {"m": "Sherman", "p": [{"n": "Shawn Teamann", "r": "Mayor, Sherman, TX"}]}], "slug": "grayson"}, "48183": {"county": [], "munis": [{"m": "Kilgore", "p": [{"n": "Ronnie E. Spradlin III", "r": "Mayor, Kilgore, TX"}]}, {"m": "Longview", "p": [{"n": "James Andrew Mack", "r": "Mayor, Longview, TX"}]}], "slug": "gregg"}, "48187": {"county": [], "munis": [{"m": "Cibolo", "p": [{"n": "Mark Allen", "r": "Mayor, Cibolo, TX"}]}, {"m": "Seguin", "p": [{"n": "Donna Dodgen", "r": "Mayor, Seguin, TX"}]}], "slug": "guadalupe"}, "48189": {"county": [], "munis": [{"m": "Plainview", "p": [{"n": "Charles Starnes", "r": "Mayor, Plainview, TX"}]}], "slug": "hale"}, "48199": {"county": [], "munis": [{"m": "Lumberton", "p": [{"n": "Don Surratt", "r": "Mayor, Lumberton, TX"}]}, {"m": "Silsbee", "p": [{"n": "Danny Reneau", "r": "Mayor, Silsbee, TX"}]}], "slug": "hardin"}, "48201": {"county": [], "munis": [{"m": "Baytown", "p": [{"n": "Charles Johnson", "r": "Mayor, Baytown, TX"}]}, {"m": "Bellaire", "p": [{"n": "Gus E. Pappas", "r": "Mayor, Bellaire, TX"}]}, {"m": "Deer Park", "p": [{"n": "Jerry Mouton, Jr.", "r": "Mayor, Deer Park, TX"}]}, {"m": "Hilshire Village", "p": [{"n": "Robert (Bob) Buesinger", "r": "Mayor, Hilshire Village, TX"}]}, {"m": "Houston", "p": [{"n": "John Whitmire", "r": "Mayor, Houston, TX"}]}, {"m": "La Porte", "p": [{"n": "Louis R. Rigby", "r": "Mayor, La Porte, TX"}]}, {"m": "Nassau Bay", "p": [{"n": "Phil Johnson", "r": "Mayor, Nassau Bay, TX"}]}, {"m": "Pasadena", "p": [{"n": "Jeff Wagner", "r": "Mayor, Pasadena, TX"}]}, {"m": "Tomball", "p": [{"n": "Lori Klein Quinn", "r": "Mayor, Tomball, TX"}]}, {"m": "Webster", "p": [{"n": "Donna Jasso", "r": "Mayor, Webster, TX"}]}], "slug": "harris"}, "48203": {"county": [], "munis": [{"m": "Marshall", "p": [{"n": "Amy Ware", "r": "Mayor, Marshall, TX"}]}], "slug": "harrison"}, "48205": {"county": [], "munis": [{"m": "Dalhart", "p": [{"n": "Justin Moore", "r": "Mayor, Dalhart, TX"}]}], "slug": "hartley"}, "48209": {"county": [], "munis": [{"m": "Buda", "p": [{"n": "Lee Urbanovsky", "r": "Mayor, Buda, TX"}]}, {"m": "Kyle", "p": [{"n": "Travis Mitchell", "r": "Mayor, Kyle, TX"}]}, {"m": "San Marcos", "p": [{"n": "Jane Hughson", "r": "Mayor, San Marcos, TX"}]}], "slug": "hays"}, "48215": {"county": [], "munis": [{"m": "Donna", "p": [{"n": "David Moreno", "r": "Mayor, Donna, TX"}]}, {"m": "Edinburg", "p": [{"n": "Ramiro Garza Jr.", "r": "Mayor, Edinburg, TX"}]}, {"m": "Hidalgo", "p": [{"n": "Sergio Coronado", "r": "Mayor, Hidalgo, TX"}]}, {"m": "Mcallen", "p": [{"n": "Jim Darling", "r": "Mayor, McAllen, TX"}]}, {"m": "Mercedes", "p": [{"n": "Oscar D. Montoya Sr.", "r": "Mayor, Mercedes, TX"}]}, {"m": "Mission", "p": [{"n": "Norie Gonzalez Garza", "r": "Mayor, Mission, TX"}]}, {"m": "Pharr", "p": [{"n": "Ambrosio “Amos” Hernandez", "r": "Mayor, Pharr, TX"}]}, {"m": "Progreso", "p": [{"n": "Gerardo Alanis", "r": "Mayor, Progreso, TX"}]}, {"m": "Weslaco", "p": [{"n": "Adrian Gonzalez", "r": "Mayor, Weslaco, TX"}]}], "slug": "hidalgo"}, "48217": {"county": [], "munis": [{"m": "Hillsboro", "p": [{"n": "Scott Johnson", "r": "Mayor, Hillsboro, TX"}]}], "slug": "hill"}, "48219": {"county": [], "munis": [{"m": "Levelland", "p": [{"n": "Barbra Pinner", "r": "Mayor, Levelland, TX"}]}], "slug": "hockley"}, "48221": {"county": [], "munis": [{"m": "Granbury", "p": [{"n": "Jim Jarratt", "r": "Mayor, Granbury, TX"}]}], "slug": "hood"}, "48223": {"county": [], "munis": [{"m": "Sulphur Springs", "p": [{"n": "Jay Julian", "r": "Mayor, Sulphur Springs, TX"}]}], "slug": "hopkins"}, "48225": {"county": [], "munis": [{"m": "Crockett", "p": [{"n": "Ianthia Fisher", "r": "Mayor, Crockett, TX"}]}], "slug": "houston"}, "48227": {"county": [], "munis": [{"m": "Big Spring", "p": [{"n": "Robert Moore", "r": "Mayor, Big Spring, TX"}]}], "slug": "howard"}, "48231": {"county": [], "munis": [{"m": "Greenville", "p": [{"n": "Jerry Ransom", "r": "Mayor, Greenville, TX"}]}], "slug": "hunt"}, "48233": {"county": [], "munis": [{"m": "Borger", "p": [{"n": "Karen Felker", "r": "Mayor, Borger, TX"}]}], "slug": "hutchinson"}, "48241": {"county": [], "munis": [{"m": "Jasper", "p": [{"n": "Anderson Land", "r": "Mayor, Jasper, TX"}]}], "slug": "jasper"}, "48245": {"county": [], "munis": [{"m": "Beaumont", "p": [{"n": "Roy West", "r": "Mayor, Beaumont, TX"}]}, {"m": "Port Arthur", "p": [{"n": "Thurman \"Bill\" Bartie", "r": "Mayor, Port Arthur, TX"}]}], "slug": "jefferson"}, "48249": {"county": [], "munis": [{"m": "Alice", "p": [{"n": "Cynthia Carrasco", "r": "Mayor, Alice, TX"}]}], "slug": "jim-wells"}, "48251": {"county": [], "munis": [{"m": "Burleson", "p": [{"n": "Chris Fletcher", "r": "Mayor, Burleson, TX"}]}, {"m": "Cleburne", "p": [{"n": "Scott Cain", "r": "Mayor, Cleburne, TX"}]}, {"m": "Venus", "p": [{"n": "Alejandro Galaviz", "r": "Mayor, Venus, TX"}]}], "slug": "johnson"}, "48257": {"county": [], "munis": [{"m": "Forney", "p": [{"n": "Jason Roberson", "r": "Mayor, Forney, TX"}]}], "slug": "kaufman"}, "48265": {"county": [], "munis": [{"m": "Kerrville", "p": [{"n": "Judy Eychner", "r": "Mayor, Kerrville, TX"}]}], "slug": "kerr"}, "48273": {"county": [], "munis": [{"m": "Kingsville", "p": [{"n": "Sam Fugate", "r": "Mayor, Kingsville, TX"}]}], "slug": "kleberg"}, "48281": {"county": [], "munis": [{"m": "Lampasas", "p": [{"n": "Herb Pearce", "r": "Mayor, Lampasas, TX"}]}], "slug": "lampasas"}, "48287": {"county": [], "munis": [{"m": "Giddings", "p": [{"n": "Joel Lopez", "r": "Mayor, Giddings, TX"}]}], "slug": "lee"}, "48289": {"county": [], "munis": [{"m": "Buffalo", "p": [{"n": "Jerrod Jones", "r": "Mayor, Buffalo, TX"}]}], "slug": "leon"}, "48291": {"county": [], "munis": [{"m": "Cleveland", "p": [{"n": "Danny Lee", "r": "Mayor, Cleveland, TX"}]}, {"m": "Daisetta", "p": [{"n": "Eric Thaxton", "r": "Mayor, Daisetta, TX"}]}, {"m": "Dayton", "p": [{"n": "Martin Mudd", "r": "Mayor, Dayton, TX"}]}], "slug": "liberty"}, "48303": {"county": [], "munis": [{"m": "Lubbock", "p": [{"n": "Tray Payne", "r": "Mayor, Lubbock, TX"}]}], "slug": "lubbock"}, "48307": {"county": [], "munis": [{"m": "Brady", "p": [{"n": "Aaron Garcia", "r": "Mayor, Brady, TX"}]}], "slug": "mcculloch"}, "48309": {"county": [], "munis": [{"m": "Bellmead", "p": [{"n": "Jasmine Neal", "r": "Mayor, Bellmead, TX"}]}, {"m": "Hewitt", "p": [{"n": "Steve Fortenberry", "r": "Mayor, Hewitt, TX"}]}, {"m": "Lacy Lakeview", "p": [{"n": "A. Niecey Payne", "r": "Mayor, Lacy Lakeview, TX"}]}, {"m": "Robinson", "p": [{"n": "Bert Echterling", "r": "Mayor, Robinson, TX"}]}, {"m": "Waco", "p": [{"n": "Dillon Meek", "r": "Mayor, Waco, TX"}]}], "slug": "mclennan"}, "48321": {"county": [], "munis": [{"m": "Bay City", "p": [{"n": "Robert Nelson", "r": "Mayor, Bay City, TX"}]}], "slug": "matagorda"}, "48323": {"county": [], "munis": [{"m": "Eagle Pass", "p": [{"n": "Rolando Salinas Jr.", "r": "Mayor, Eagle Pass, TX"}]}], "slug": "maverick"}, "48325": {"county": [], "munis": [{"m": "Castroville", "p": [{"n": "Darrin Schroeder", "r": "Mayor, Castroville, TX"}]}], "slug": "medina"}, "48327": {"county": [], "munis": [{"m": "Menard", "p": [{"n": "Barbara Hooten", "r": "Mayor, Menard, TX"}]}], "slug": "menard"}, "48329": {"county": [], "munis": [{"m": "Midland", "p": [{"n": "Lori Blong", "r": "Mayor, Midland, TX"}]}], "slug": "midland"}, "48339": {"county": [], "munis": [{"m": "Conroe", "p": [{"n": "Jody Czajkoski", "r": "Mayor, Conroe, TX"}]}], "slug": "montgomery"}, "48341": {"county": [], "munis": [{"m": "Dumas", "p": [{"n": "Bob Brinkmann", "r": "Mayor, Dumas, TX"}]}], "slug": "moore"}, "48347": {"county": [], "munis": [{"m": "Nacogdoches", "p": [{"n": "Jimmy Mize", "r": "Mayor, Nacogdoches, TX"}]}], "slug": "nacogdoches"}, "48349": {"county": [], "munis": [{"m": "Corsicana", "p": [{"n": "Mike Fletcher", "r": "Mayor, Corsicana, TX"}]}], "slug": "navarro"}, "48353": {"county": [], "munis": [{"m": "Sweetwater", "p": [{"n": "Jim McKenzie", "r": "Mayor, Sweetwater, TX"}]}], "slug": "nolan"}, "48355": {"county": [], "munis": [{"m": "Corpus Christi", "p": [{"n": "Paulette Guajardo", "r": "Mayor, Corpus Christi, TX"}]}, {"m": "Port Aransas", "p": [{"n": "Wendy Moore", "r": "Mayor, Port Aransas, TX"}]}], "slug": "nueces"}, "48361": {"county": [], "munis": [{"m": "Bridge City", "p": [{"n": "David Rutledge", "r": "Mayor, Bridge City, TX"}]}, {"m": "Orange", "p": [{"n": "Larry Spears, Jr.", "r": "Mayor, Orange, TX"}]}], "slug": "orange"}, "48367": {"county": [], "munis": [{"m": "Azle", "p": [{"n": "Alan Brundrett", "r": "Mayor, Azle, TX"}]}], "slug": "parker"}, "48371": {"county": [], "munis": [{"m": "Fort Stockton", "p": [{"n": "Paul Casias", "r": "Mayor, Fort Stockton, TX"}]}], "slug": "pecos"}, "48373": {"county": [], "munis": [{"m": "Livingston", "p": [{"n": "Judy B. Cochran", "r": "Mayor, Livingston, TX"}]}, {"m": "Onalaska", "p": [{"n": "James W. Arnett", "r": "Mayor, Onalaska, TX"}]}], "slug": "polk"}, "48375": {"county": [], "munis": [{"m": "Amarillo", "p": [{"n": "Cole Stanley", "r": "Mayor, Amarillo, TX"}]}], "slug": "potter"}, "48377": {"county": [], "munis": [{"m": "Presidio", "p": [{"n": "John Ferguson", "r": "Mayor, Presidio, TX"}]}], "slug": "presidio"}, "48381": {"county": [], "munis": [{"m": "Canyon", "p": [{"n": "Gary Hinders", "r": "Mayor, Canyon, TX"}]}], "slug": "randall"}, "48387": {"county": [], "munis": [{"m": "Clarksville", "p": [{"n": "Ann Rushing", "r": "Mayor, Clarksville, TX"}]}], "slug": "red-river"}, "48389": {"county": [], "munis": [{"m": "Town Of Pecos", "p": [{"n": "Teresa Winkles", "r": "Mayor, Pecos, TX"}]}], "slug": "reeves"}, "48397": {"county": [], "munis": [{"m": "Rockwall", "p": [{"n": "Trace Johannesen", "r": "Mayor, Rockwall, TX"}]}], "slug": "rockwall"}, "48401": {"county": [], "munis": [{"m": "Henderson", "p": [{"n": "John 'Buzz' Fullen", "r": "Mayor, Henderson, TX"}]}, {"m": "Overton", "p": [{"n": "Curtis Gilbert", "r": "Mayor, Overton, TX"}]}], "slug": "rusk"}, "48409": {"county": [], "munis": [{"m": "Ingleside On The Bay", "p": [{"n": "Jo Ann Ehmann", "r": "Mayor, Ingleside on the Bay, TX"}]}, {"m": "Mathis", "p": [{"n": "Ciriaco \"Ciri\" Villarreal", "r": "Mayor, Mathis, TX"}]}, {"m": "Portland", "p": [{"n": "Cathy Skurow", "r": "Mayor, Portland, TX"}]}], "slug": "san-patricio"}, "48411": {"county": [], "munis": [{"m": "San Saba", "p": [{"n": "Ken Jordan", "r": "Mayor, San Saba, TX"}]}], "slug": "san-saba"}, "48419": {"county": [], "munis": [{"m": "Timpson", "p": [{"n": "Debra Smith", "r": "Mayor, Timpson, TX"}]}], "slug": "shelby"}, "48423": {"county": [], "munis": [{"m": "Lindale", "p": [{"n": "Jeff Daugherty", "r": "Mayor, Lindale, TX"}]}, {"m": "Tyler", "p": [{"n": "Don Warren", "r": "Mayor, Tyler, TX"}]}], "slug": "smith"}, "48427": {"county": [], "munis": [{"m": "Rio Grande City", "p": [{"n": "Joel Villarreal", "r": "Mayor, Rio Grande City, TX"}]}, {"m": "Roma", "p": [{"n": "Jaime Escobar Jr.", "r": "Mayor, Roma, TX"}]}], "slug": "starr"}, "48429": {"county": [], "munis": [{"m": "Breckenridge", "p": [{"n": "Bob Sims", "r": "Mayor, Breckenridge, TX"}]}], "slug": "stephens"}, "48439": {"county": [], "munis": [{"m": "Arlington", "p": [{"n": "Jim Ross", "r": "Mayor, Arlington, TX"}]}, {"m": "Bedford", "p": [{"n": "Dan Cogan", "r": "Mayor, Bedford, TX"}]}, {"m": "Benbrook", "p": [{"n": "Jason Ward", "r": "Mayor, Benbrook, TX"}]}, {"m": "Colleyville", "p": [{"n": "Bobby Lindamood", "r": "Mayor, Colleyville, TX"}]}, {"m": "Crowley", "p": [{"n": "Billy P. Davis", "r": "Mayor, Crowley, TX"}]}, {"m": "Euless", "p": [{"n": "Linda Martin", "r": "Mayor, Euless, TX"}]}, {"m": "Fort Worth", "p": [{"n": "Mattie Parker", "r": "Mayor, Fort Worth, TX"}]}, {"m": "Grapevine", "p": [{"n": "William Tate", "r": "Mayor, Grapevine, TX"}]}, {"m": "Haltom City", "p": [{"n": "An Truong", "r": "Mayor, Haltom City, TX"}]}, {"m": "Hurst", "p": [{"n": "Henry Wilson", "r": "Mayor, Hurst, TX"}]}, {"m": "Keller", "p": [{"n": "Armin Mizani", "r": "Mayor, Keller, TX"}]}, {"m": "Kennedale", "p": [{"n": "Jan Joplin", "r": "Mayor, Kennedale, TX"}]}, {"m": "Mansfield", "p": [{"n": "Michael Evans", "r": "Mayor, Mansfield, TX"}]}, {"m": "North Richland Hills", "p": [{"n": "Oscar Trevino", "r": "Mayor, North Richland Hills, TX"}]}, {"m": "River Oaks", "p": [{"n": "Darren Houk", "r": "Mayor, River Oaks, TX"}]}, {"m": "Saginaw", "p": [{"n": "Todd Flippo", "r": "Mayor, Saginaw, TX"}]}, {"m": "Southlake", "p": [{"n": "John Huffman", "r": "Mayor, Southlake, TX"}]}], "slug": "tarrant"}, "48441": {"county": [], "munis": [{"m": "Abilene", "p": [{"n": "Weldon Hurt", "r": "Mayor, Abilene, TX"}]}], "slug": "taylor"}, "48449": {"county": [], "munis": [{"m": "Mount Pleasant", "p": [{"n": "Tracy Craig Sr.", "r": "Mayor, Mount Pleasant, TX"}]}], "slug": "titus"}, "48451": {"county": [], "munis": [{"m": "San Angelo", "p": [{"n": "Brenda Gunter", "r": "Mayor, San Angelo, TX"}]}], "slug": "tom-green"}, "48453": {"county": [], "munis": [{"m": "Austin", "p": [{"n": "Kirk Watson", "r": "Mayor, Austin, TX"}]}, {"m": "Bee Cave", "p": [{"n": "Kara King", "r": "Mayor, Bee Cave, TX"}]}, {"m": "Lakeway", "p": [{"n": "Tom Kilgore", "r": "Mayor, Lakeway, TX"}]}, {"m": "Pflugerville", "p": [{"n": "Victor Gonzales", "r": "Mayor, Pflugerville, TX"}]}], "slug": "travis"}, "48459": {"county": [], "munis": [{"m": "Gilmer", "p": [{"n": "Tim Marshall", "r": "Mayor, Gilmer, TX"}]}], "slug": "upshur"}, "48465": {"county": [], "munis": [{"m": "Del Rio", "p": [{"n": "Q125217476", "r": "Mayor, Del Rio, TX"}]}], "slug": "val-verde"}, "48467": {"county": [], "munis": [{"m": "Canton", "p": [{"n": "Lou Ann Everett", "r": "Mayor, Canton, TX"}]}], "slug": "van-zandt"}, "48469": {"county": [], "munis": [{"m": "Victoria", "p": [{"n": "Jeff Bauknight", "r": "Mayor, Victoria, TX"}]}], "slug": "victoria"}, "48473": {"county": [], "munis": [{"m": "Brookshire", "p": [{"n": "Darrell Branch", "r": "Mayor, Brookshire, TX"}]}, {"m": "Hempstead", "p": [{"n": "Erica Gillum", "r": "Mayor, Hempstead, TX"}]}, {"m": "Katy", "p": [{"n": "William H. \"Dusty\" Thiele", "r": "Mayor, Katy, TX"}]}], "slug": "waller"}, "48477": {"county": [], "munis": [{"m": "Brenham", "p": [{"n": "Atwood C. Kenjura", "r": "Mayor, Brenham, TX"}]}], "slug": "washington"}, "48479": {"county": [], "munis": [{"m": "Laredo", "p": [{"n": "Victor Treviño", "r": "Mayor, Laredo, TX"}]}], "slug": "webb"}, "48481": {"county": [], "munis": [{"m": "Wharton", "p": [{"n": "Tim Barker", "r": "Mayor, Wharton, TX"}]}], "slug": "wharton"}, "48485": {"county": [], "munis": [{"m": "Burkburnett", "p": [{"n": "Lori Kemp", "r": "Mayor, Burkburnett, TX"}]}, {"m": "Iowa Park", "p": [{"n": "Ray Schultz", "r": "Mayor, Iowa Park, TX"}]}, {"m": "Wichita Falls", "p": [{"n": "Stephen Santellana", "r": "Mayor, Wichita Falls, TX"}]}], "slug": "wichita"}, "48489": {"county": [], "munis": [{"m": "Raymondville", "p": [{"n": "Gilbert Gonzales", "r": "Mayor, Raymondville, TX"}]}], "slug": "willacy"}, "48491": {"county": [], "munis": [{"m": "Cedar Park", "p": [{"n": "Jim Penniman-Morin", "r": "Mayor, Cedar Park, TX"}]}, {"m": "Georgetown", "p": [{"n": "Josh Schroeder", "r": "Mayor, Georgetown, TX"}]}, {"m": "Hutto", "p": [{"n": "Mike Snyder", "r": "Mayor, Hutto, TX"}]}, {"m": "Leander", "p": [{"n": "Christine DeLisle", "r": "Mayor, Leander, TX"}]}, {"m": "Round Rock", "p": [{"n": "Craig Morgan", "r": "Mayor, Round Rock, TX"}]}], "slug": "williamson"}, "48497": {"county": [], "munis": [{"m": "Bridgeport", "p": [{"n": "Randy Singleton", "r": "Mayor, Bridgeport, TX"}]}], "slug": "wise"}, "48503": {"county": [], "munis": [{"m": "Graham", "p": [{"n": "Alex Heartfield", "r": "Mayor, Graham, TX"}]}], "slug": "young"}, "49001": {"county": [], "munis": [{"m": "Beaver", "p": [{"n": "Matt Robinson", "r": "Mayor, Beaver, UT"}]}], "slug": "beaver"}, "49003": {"county": [], "munis": [{"m": "Brigham City", "p": [{"n": "DJ Bott", "r": "Mayor, Brigham City, UT"}]}], "slug": "box-elder"}, "49005": {"county": [], "munis": [{"m": "Logan", "p": [{"n": "Holly H. Daines", "r": "Mayor, Logan, UT"}]}, {"m": "Nibley", "p": [{"n": "Larry Jacobsen", "r": "Mayor, Nibley, UT"}]}], "slug": "cache"}, "49007": {"county": [], "munis": [{"m": "Price", "p": [{"n": "Michael Kourianos", "r": "Mayor, Price, UT"}]}], "slug": "carbon"}, "49011": {"county": [], "munis": [{"m": "Bountiful", "p": [{"n": "Kendalyn Harris", "r": "Mayor, Bountiful, UT"}]}, {"m": "Farmington", "p": [{"n": "Brett Anderson", "r": "Mayor, Farmington, UT"}]}, {"m": "Layton", "p": [{"n": "Joy Petro", "r": "Mayor, Layton, UT"}]}, {"m": "North Salt Lake", "p": [{"n": "Brian Horrocks", "r": "Mayor, North Salt Lake, UT"}]}, {"m": "Woods Cross", "p": [{"n": "Ryan Westergard", "r": "Mayor, Woods Cross, UT"}]}], "slug": "davis"}, "49015": {"county": [], "munis": [{"m": "Green River", "p": [{"n": "Ren Hatt", "r": "Mayor, Green River, UT"}]}, {"m": "Orangeville", "p": [{"n": "David Robertson", "r": "Mayor, Orangeville, UT"}]}], "slug": "emery"}, "49019": {"county": [], "munis": [{"m": "Moab", "p": [{"n": "Joette Langianese", "r": "Mayor, Moab, UT"}]}], "slug": "grand"}, "49021": {"county": [], "munis": [{"m": "Cedar City", "p": [{"n": "Garth Green", "r": "Mayor, Cedar City, UT"}]}, {"m": "Parowan", "p": [{"n": "Mollie Halterman", "r": "Mayor, Parowan, UT"}]}], "slug": "iron"}, "49023": {"county": [], "munis": [{"m": "Nephi", "p": [{"n": "Justin Seely", "r": "Mayor, Nephi, UT"}]}], "slug": "juab"}, "49025": {"county": [], "munis": [{"m": "Kanab", "p": [{"n": "Troy Colten Johnson", "r": "Mayor, Kanab, UT"}]}], "slug": "kane"}, "49027": {"county": [], "munis": [{"m": "Fillmore", "p": [{"n": "Michael D. Holt", "r": "Mayor, Fillmore, UT"}]}], "slug": "millard"}, "49035": {"county": [], "munis": [{"m": "Draper", "p": [{"n": "Troy Walker", "r": "Mayor, Draper, UT"}]}, {"m": "Midvale", "p": [{"n": "Marcus Stevenson", "r": "Mayor, Midvale, UT"}]}, {"m": "Millcreek", "p": [{"n": "Jeff Silvestrini", "r": "Mayor, Millcreek, UT"}]}, {"m": "Murray", "p": [{"n": "Brett A. Hales", "r": "Mayor, Murray, UT"}]}, {"m": "Riverton", "p": [{"n": "Trent Staggs", "r": "Mayor, Riverton, UT"}]}, {"m": "Salt Lake City", "p": [{"n": "Erin Mendenhall", "r": "Mayor, Salt Lake City, UT"}]}, {"m": "Sandy", "p": [{"n": "Monica Zoltanski", "r": "Mayor, Sandy, UT"}]}, {"m": "South Jordan", "p": [{"n": "Dawn R. Ramsey", "r": "Mayor, South Jordan, UT"}]}, {"m": "Taylorsville", "p": [{"n": "Kristie S. Overson", "r": "Mayor, Taylorsville, UT"}]}, {"m": "West Jordan", "p": [{"n": "Dirk Burton", "r": "Mayor, West Jordan, UT"}]}, {"m": "West Valley City", "p": [{"n": "Ron C. Bigelow", "r": "Mayor, West Valley City, UT"}]}], "slug": "salt-lake"}, "49037": {"county": [], "munis": [{"m": "Monticello", "p": [{"n": "Bayley Hedglin", "r": "Mayor, Monticello, UT"}]}], "slug": "san-juan"}, "49039": {"county": [], "munis": [{"m": "Manti", "p": [{"n": "Alfred \"Chuck\" Bigelow", "r": "Mayor, Manti, UT"}]}], "slug": "sanpete"}, "49041": {"county": [], "munis": [{"m": "Richfield", "p": [{"n": "Bryan L. Burrows", "r": "Mayor, Richfield, UT"}]}], "slug": "sevier"}, "49045": {"county": [], "munis": [{"m": "Tooele", "p": [{"n": "Debbie Winn", "r": "Mayor, Tooele, UT"}]}], "slug": "tooele"}, "49049": {"county": [], "munis": [{"m": "American Fork", "p": [{"n": "Brad Frost", "r": "Mayor, American Fork, UT"}]}, {"m": "Lehi", "p": [{"n": "Mark Johnson", "r": "Mayor, Lehi, UT"}]}, {"m": "Orem", "p": [{"n": "David Young", "r": "Mayor, Orem, UT"}]}, {"m": "Payson", "p": [{"n": "Bill Wright", "r": "Mayor, Payson, UT"}]}, {"m": "Provo", "p": [{"n": "Michelle Kaufusi", "r": "Mayor, Provo, UT"}]}], "slug": "utah"}, "49051": {"county": [], "munis": [{"m": "Heber", "p": [{"n": "Heidi Franco", "r": "Mayor, Heber City, UT"}]}], "slug": "wasatch"}, "49053": {"county": [], "munis": [{"m": "St George", "p": [{"n": "Michele Randall", "r": "Mayor, St. George, UT"}]}], "slug": "washington"}, "49057": {"county": [], "munis": [{"m": "Ogden", "p": [{"n": "Benjamin K. Nadolski", "r": "Mayor, Ogden, UT"}]}], "slug": "weber"}, "50001": {"county": [], "munis": [{"m": "Vergennes", "p": [{"n": "Mathew Chabot", "r": "Mayor, Vergennes, VT"}]}], "slug": "addison"}, "50007": {"county": [], "munis": [{"m": "Burlington", "p": [{"n": "Miro Weinberger", "r": "Mayor, Burlington, VT"}]}, {"m": "Winooski", "p": [{"n": "Kristine Lott", "r": "Mayor, Winooski, VT"}]}], "slug": "chittenden"}, "50011": {"county": [], "munis": [{"m": "St Albans", "p": [{"n": "Tim Smith", "r": "Mayor, St. Albans, VT"}]}], "slug": "franklin"}, "50021": {"county": [], "munis": [{"m": "Rutland", "p": [{"n": "Mike Doenges", "r": "Mayor, Rutland, VT"}]}], "slug": "rutland"}, "50023": {"county": [], "munis": [{"m": "Barre", "p": [{"n": "Lucas J. Herring", "r": "Mayor, Barre, VT"}]}, {"m": "Montpelier", "p": [{"n": "Jack McCullough", "r": "Mayor, Montpelier, VT"}]}], "slug": "washington"}, "51059": {"county": [], "munis": [{"m": "West Falls Church", "p": [{"n": "Letty Hardi", "r": "Mayor, Falls Church, VA"}]}], "slug": "fairfax"}, "51163": {"county": [], "munis": [{"m": "East Lexington", "p": [{"n": "Frank W. Friedman", "r": "Mayor, Lexington, VA"}]}], "slug": "rockbridge"}, "51195": {"county": [], "munis": [{"m": "The University Of Virginia S College At Wise", "p": [{"n": "Will Sessoms", "r": "Mayor, Virginia Beach, VA"}]}], "slug": "wise"}, "51510": {"county": [], "munis": [{"m": "Alexandria", "p": [{"n": "Justin Wilson", "r": "Mayor, Alexandria, VA"}]}], "slug": "alexandria-city"}, "51520": {"county": [], "munis": [{"m": "Bristol", "p": [{"n": "Becky Nave", "r": "Mayor, Bristol, VA"}]}], "slug": "bristol-city"}, "51530": {"county": [], "munis": [{"m": "Buena Vista", "p": [{"n": "Tyson Cooper", "r": "Mayor, Buena Vista, VA"}]}], "slug": "buena-vista-city"}, "51540": {"county": [], "munis": [{"m": "Charlottesville", "p": [{"n": "Lloyd Snook", "r": "Mayor, Charlottesville, VA"}]}], "slug": "charlottesville-city"}, "51550": {"county": [], "munis": [{"m": "Chesapeake", "p": [{"n": "Rick West", "r": "Mayor, Chesapeake, VA"}]}], "slug": "chesapeake-city"}, "51570": {"county": [], "munis": [{"m": "Colonial Heights", "p": [{"n": "T. Gregory Kochuba", "r": "Mayor, Colonial Heights, VA"}]}], "slug": "colonial-heights-city"}, "51580": {"county": [], "munis": [{"m": "Covington", "p": [{"n": "Tom H. Sibold Jr.", "r": "Mayor, Covington, VA"}]}], "slug": "covington-city"}, "51590": {"county": [], "munis": [{"m": "Danville", "p": [{"n": "Alonzo Jones", "r": "Mayor, Danville, VA"}]}], "slug": "danville-city"}, "51595": {"county": [], "munis": [{"m": "Emporia", "p": [{"n": "Carolyn Carey", "r": "Mayor, Emporia, VA"}]}], "slug": "emporia-city"}, "51600": {"county": [], "munis": [{"m": "Fairfax", "p": [{"n": "Catherine S. Read", "r": "Mayor, Fairfax, VA"}]}], "slug": "fairfax-city"}, "51620": {"county": [], "munis": [{"m": "Franklin", "p": [{"n": "Robert \"Bobby\" Cutchins", "r": "Mayor, Franklin, VA"}]}], "slug": "franklin-city"}, "51630": {"county": [], "munis": [{"m": "Fredericksburg", "p": [{"n": "Kerry P. Devine", "r": "Mayor, Fredericksburg, VA"}]}], "slug": "fredericksburg-city"}, "51640": {"county": [], "munis": [{"m": "Galax", "p": [{"n": "Willie Greene", "r": "Mayor, Galax, VA"}]}], "slug": "galax-city"}, "51650": {"county": [], "munis": [{"m": "Hampton", "p": [{"n": "Donnie Tuck", "r": "Mayor, Hampton, VA"}]}], "slug": "hampton-city"}, "51660": {"county": [], "munis": [{"m": "Harrisonburg", "p": [{"n": "Deanna R. Reed", "r": "Mayor, Harrisonburg, VA"}]}], "slug": "harrisonburg-city"}, "51670": {"county": [], "munis": [{"m": "Hopewell", "p": [{"n": "Patience Bennett", "r": "Mayor, Hopewell, VA"}]}], "slug": "hopewell-city"}, "51680": {"county": [], "munis": [{"m": "Lynchburg", "p": [{"n": "Larry Taylor", "r": "Mayor, Lynchburg, VA"}]}], "slug": "lynchburg-city"}, "51685": {"county": [], "munis": [{"m": "Manassas Park", "p": [{"n": "Jeanette Rishell", "r": "Mayor, Manassas Park, VA"}, {"n": "Michelle Davis-Younger", "r": "Mayor, Manassas, VA"}]}], "slug": "manassas-park-city"}, "51690": {"county": [], "munis": [{"m": "Martinsville", "p": [{"n": "LC Jones", "r": "Mayor, Martinsville, VA"}]}], "slug": "martinsville-city"}, "51700": {"county": [], "munis": [{"m": "Newport News", "p": [{"n": "McKinley L. Price", "r": "Mayor, Newport News, VA"}]}], "slug": "newport-news-city"}, "51730": {"county": [], "munis": [{"m": "Petersburg", "p": [{"n": "Samuel Parham", "r": "Mayor, Petersburg, VA"}]}], "slug": "petersburg-city"}, "51735": {"county": [], "munis": [{"m": "Poquoson", "p": [{"n": "David A. Hux", "r": "Mayor, Poquoson, VA"}]}], "slug": "poquoson-city"}, "51740": {"county": [], "munis": [{"m": "Portsmouth", "p": [{"n": "Shannon E. Glover", "r": "Mayor, Portsmouth, VA"}]}], "slug": "portsmouth-city"}, "51750": {"county": [], "munis": [{"m": "Radford", "p": [{"n": "David Horton", "r": "Mayor, Radford, VA"}]}], "slug": "radford-city"}, "51760": {"county": [], "munis": [{"m": "Richmond", "p": [{"n": "Danny Avula", "r": "Mayor, Richmond, VA"}]}], "slug": "richmond-city"}, "51770": {"county": [], "munis": [{"m": "Roanoke", "p": [{"n": "Sherman Lea", "r": "Mayor, Roanoke, VA"}]}], "slug": "roanoke-city"}, "51775": {"county": [], "munis": [{"m": "Salem", "p": [{"n": "Renée Ferris Turk", "r": "Mayor, Salem, VA"}]}], "slug": "salem-city"}, "51790": {"county": [], "munis": [{"m": "Staunton", "p": [{"n": "Michele Edwards", "r": "Mayor, Staunton, VA"}]}], "slug": "staunton-city"}, "51800": {"county": [], "munis": [{"m": "Suffolk", "p": [{"n": "Michael Duman", "r": "Mayor, Suffolk, VA"}]}], "slug": "suffolk-city"}, "51820": {"county": [], "munis": [{"m": "Waynesboro", "p": [{"n": "Kenny Lee", "r": "Mayor, Waynesboro, VA"}]}], "slug": "waynesboro-city"}, "51830": {"county": [], "munis": [{"m": "Williamsburg", "p": [{"n": "Douglas G. Pons", "r": "Mayor, Williamsburg, VA"}]}], "slug": "williamsburg-city"}, "51840": {"county": [], "munis": [{"m": "Winchester", "p": [{"n": "John David Smith, Jr.", "r": "Mayor, Winchester, VA"}]}], "slug": "winchester-city"}, "53001": {"county": [], "munis": [{"m": "Othello", "p": [{"n": "Shawn Logan", "r": "Mayor, Othello, WA"}]}], "slug": "adams"}, "53003": {"county": [], "munis": [{"m": "Clarkston", "p": [{"n": "Monika Lawrence", "r": "Mayor, Clarkston, WA"}]}], "slug": "asotin"}, "53005": {"county": [], "munis": [{"m": "Richland", "p": [{"n": "Theresa Richardson", "r": "Mayor, Richland, WA"}]}], "slug": "benton"}, "53007": {"county": [], "munis": [{"m": "Chelan", "p": [{"n": "Erin McCardle", "r": "Mayor, Chelan, WA"}]}, {"m": "Leavenworth", "p": [{"n": "Carl Florea", "r": "Mayor, Leavenworth, WA"}]}, {"m": "Wenatchee", "p": [{"n": "Mike Poirier", "r": "Mayor, Wenatchee, WA"}]}], "slug": "chelan"}, "53009": {"county": [], "munis": [{"m": "Forks", "p": [{"n": "Tim Fletcher", "r": "Mayor, Forks, WA"}]}, {"m": "Port Angeles", "p": [{"n": "Kate Dexter", "r": "Mayor, Port Angeles, WA"}]}], "slug": "clallam"}, "53011": {"county": [], "munis": [{"m": "Battle Ground", "p": [{"n": "Troy McCoy", "r": "Mayor, Battle Ground, WA"}]}, {"m": "Camas", "p": [{"n": "Steve Hogan", "r": "Mayor, Camas, WA"}]}, {"m": "Vancouver", "p": [{"n": "Anne McEnerny-Ogle", "r": "Mayor, Vancouver, WA"}]}], "slug": "clark"}, "53015": {"county": [], "munis": [{"m": "Kelso", "p": [{"n": "Veryl Anderson", "r": "Mayor, Kelso, WA"}]}, {"m": "Longview", "p": [{"n": "Spencer Boudreau", "r": "Mayor, Longview, WA"}]}], "slug": "cowlitz"}, "53017": {"county": [], "munis": [{"m": "Bridgeport", "p": [{"n": "Sergio Orozco", "r": "Mayor, Bridgeport, WA"}]}], "slug": "douglas"}, "53021": {"county": [], "munis": [{"m": "Pasco", "p": [{"n": "Pete Serrano", "r": "Mayor, Pasco, WA"}]}], "slug": "franklin"}, "53025": {"county": [], "munis": [{"m": "Electric City", "p": [{"n": "Diane Kohout", "r": "Mayor, Electric City, WA"}]}, {"m": "Ephrata", "p": [{"n": "Bruce Reim", "r": "Mayor, Ephrata, WA"}]}, {"m": "Mattawa", "p": [{"n": "Maria M. Celaya", "r": "Mayor, Mattawa, WA"}]}, {"m": "Moses Lake", "p": [{"n": "Dustin Swartz", "r": "Mayor, Moses Lake, WA"}]}, {"m": "Quincy", "p": [{"n": "Paul Worley", "r": "Mayor, Quincy, WA"}]}], "slug": "grant"}, "53027": {"county": [], "munis": [{"m": "Aberdeen", "p": [{"n": "Douglas Orr", "r": "Mayor, Aberdeen, WA"}]}, {"m": "Hoquiam", "p": [{"n": "Ben Winkelman", "r": "Mayor, Hoquiam, WA"}]}, {"m": "Westport", "p": [{"n": "Ed Welter", "r": "Mayor, Westport, WA"}]}], "slug": "grays-harbor"}, "53029": {"county": [], "munis": [{"m": "Oak Harbor", "p": [{"n": "Ronnie Wright", "r": "Mayor, Oak Harbor, WA"}]}], "slug": "island"}, "53031": {"county": [], "munis": [{"m": "Port Townsend", "p": [{"n": "David Faber", "r": "Mayor, Port Townsend, WA"}]}], "slug": "jefferson"}, "53033": {"county": [], "munis": [{"m": "Algona", "p": [{"n": "Troy Linnell", "r": "Mayor, Algona, WA"}]}, {"m": "Auburn", "p": [{"n": "Nancy Backus", "r": "Mayor, Auburn, WA"}]}, {"m": "Bellevue", "p": [{"n": "Lynne Robinson", "r": "Mayor, Bellevue, WA"}]}, {"m": "Bothell", "p": [{"n": "Mason Thompson", "r": "Mayor, Bothell, WA"}]}, {"m": "Burien", "p": [{"n": "Kevin Schilling", "r": "Mayor, Burien, WA"}]}, {"m": "Carnation", "p": [{"n": "Jim Ribail", "r": "Mayor, Carnation, WA"}]}, {"m": "Des Moines", "p": [{"n": "Matt Mahoney", "r": "Mayor, Des Moines, WA"}]}, {"m": "Duvall", "p": [{"n": "Amy Ockerlander", "r": "Mayor, Duvall, WA"}]}, {"m": "Enumclaw", "p": [{"n": "Jan Molinaro", "r": "Mayor, Enumclaw, WA"}]}, {"m": "Federal Way", "p": [{"n": "Jim Ferrell", "r": "Mayor, Federal Way, WA"}]}, {"m": "Issaquah", "p": [{"n": "Mary Lou Pauly", "r": "Mayor, Issaquah, WA"}]}, {"m": "Kenmore", "p": [{"n": "Nigel Herbig", "r": "Mayor, Kenmore, WA"}]}, {"m": "Kent", "p": [{"n": "Dana Ralph", "r": "Mayor, Kent, WA"}]}, {"m": "Kirkland", "p": [{"n": "Kelli Curtis", "r": "Mayor, Kirkland, WA"}]}, {"m": "Lake Forest Park", "p": [{"n": "Tom French", "r": "Mayor, Lake Forest Park, WA"}]}, {"m": "Maple Valley", "p": [{"n": "Sean P. Kelly", "r": "Mayor, Maple Valley, WA"}]}, {"m": "Mercer Island", "p": [{"n": "Salim Nice", "r": "Mayor, Mercer Island, WA"}]}, {"m": "North Bend", "p": [{"n": "Mary Miller", "r": "Mayor, North Bend, WA"}]}, {"m": "Redmond", "p": [{"n": "Angela Birney", "r": "Mayor, Redmond, WA"}]}, {"m": "Renton", "p": [{"n": "Armondo Pavone", "r": "Mayor, Renton, WA"}]}, {"m": "Seatac", "p": [{"n": "Mohamed Egal", "r": "Mayor, SeaTac, WA"}]}, {"m": "Seattle", "p": [{"n": "Katie Wilson", "r": "Mayor, Seattle, WA"}]}, {"m": "Shoreline", "p": [{"n": "Chris Roberts", "r": "Mayor, Shoreline, WA"}]}, {"m": "Tukwila", "p": [{"n": "Thomas McLeod", "r": "Mayor, Tukwila, WA"}]}, {"m": "Woodinville", "p": [{"n": "Mike Millman", "r": "Mayor, Woodinville, WA"}]}], "slug": "king"}, "53035": {"county": [], "munis": [{"m": "Bremerton", "p": [{"n": "Greg Wheeler", "r": "Mayor, Bremerton, WA"}]}], "slug": "kitsap"}, "53037": {"county": [], "munis": [{"m": "Cle Elum", "p": [{"n": "Matthew Lundh", "r": "Mayor, Cle Elum, WA"}]}, {"m": "Ellensburg", "p": [{"n": "Rich Elliott", "r": "Mayor, Ellensburg, WA"}]}], "slug": "kittitas"}, "53039": {"county": [], "munis": [{"m": "White Salmon", "p": [{"n": "Marla Keethler", "r": "Mayor, White Salmon, WA"}]}], "slug": "klickitat"}, "53041": {"county": [], "munis": [{"m": "Centralia", "p": [{"n": "Kelly Smith Johnston", "r": "Mayor, Centralia, WA"}]}, {"m": "Chehalis", "p": [{"n": "Tony Ketchum", "r": "Mayor, Chehalis, WA"}]}], "slug": "lewis"}, "53043": {"county": [], "munis": [{"m": "Davenport", "p": [{"n": "Jonathan Chapman", "r": "Mayor, Davenport, WA"}]}], "slug": "lincoln"}, "53047": {"county": [], "munis": [{"m": "Brewster", "p": [{"n": "Art Smyth", "r": "Mayor, Brewster, WA"}]}, {"m": "Okanogan", "p": [{"n": "Wayne L. Turner", "r": "Mayor, Okanogan, WA"}]}, {"m": "Omak", "p": [{"n": "Cindy Gagné", "r": "Mayor, Omak, WA"}]}, {"m": "Oroville", "p": [{"n": "Ed Naillon", "r": "Mayor, Oroville, WA"}]}, {"m": "Pateros", "p": [{"n": "Kelly Hook", "r": "Mayor, Pateros, WA"}]}, {"m": "Tonasket", "p": [{"n": "René Maldonado", "r": "Mayor, Tonasket, WA"}]}], "slug": "okanogan"}, "53053": {"county": [], "munis": [{"m": "Buckley", "p": [{"n": "Beau Burkett", "r": "Mayor, Buckley, WA"}]}, {"m": "Edgewood", "p": [{"n": "Dave Olson", "r": "Mayor, Edgewood, WA"}]}, {"m": "Fife", "p": [{"n": "Kim Roscoe", "r": "Mayor, Fife, WA"}]}, {"m": "Gig Harbor", "p": [{"n": "Tracie Markley", "r": "Mayor, Gig Harbor, WA"}]}, {"m": "Orting", "p": [{"n": "Joshua Penner", "r": "Mayor, Orting, WA"}]}, {"m": "Roy", "p": [{"n": "Kimber Ivy", "r": "Mayor, Roy, WA"}]}, {"m": "Tacoma", "p": [{"n": "Victoria Woodards", "r": "Mayor, Tacoma, WA"}]}], "slug": "pierce"}, "53057": {"county": [], "munis": [{"m": "Anacortes", "p": [{"n": "Matt Miller", "r": "Mayor, Anacortes, WA"}]}, {"m": "Mount Vernon", "p": [{"n": "Peter Donovan", "r": "Mayor, Mount Vernon, WA"}]}], "slug": "skagit"}, "53061": {"county": [], "munis": [{"m": "Arlington", "p": [{"n": "Barbara Tolbert", "r": "Mayor, Arlington, WA"}]}, {"m": "Edmonds", "p": [{"n": "Mike Rosen", "r": "Mayor, Edmonds, WA"}]}, {"m": "Everett", "p": [{"n": "Cassie Franklin", "r": "Mayor, Everett, WA"}]}, {"m": "Granite Falls", "p": [{"n": "Matt Hartman", "r": "Mayor, Granite Falls, WA"}]}, {"m": "Marysville", "p": [{"n": "Jon Nehring", "r": "Mayor, Marysville, WA"}]}, {"m": "Mountlake Terrace", "p": [{"n": "Kyoko Matsumoto Wright", "r": "Mayor, Mountlake Terrace, WA"}]}, {"m": "Snohomish", "p": [{"n": "Linda Redmon", "r": "Mayor, Snohomish, WA"}]}, {"m": "Stanwood", "p": [{"n": "Sid Roberts", "r": "Mayor, Stanwood, WA"}]}], "slug": "snohomish"}, "53063": {"county": [], "munis": [{"m": "Cheney", "p": [{"n": "Chris Grover", "r": "Mayor, Cheney, WA"}]}, {"m": "Deer Park", "p": [{"n": "Tim Verzal", "r": "Mayor, Deer Park, WA"}]}, {"m": "Liberty Lake", "p": [{"n": "Cris Kaminskas", "r": "Mayor, Liberty Lake, WA"}]}, {"m": "Medical Lake", "p": [{"n": "Terri Cooper", "r": "Mayor, Medical Lake, WA"}]}, {"m": "Spokane", "p": [{"n": "Lisa Brown", "r": "Mayor, Spokane, WA"}]}, {"m": "Spokane Valley", "p": [{"n": "Pam Haley", "r": "Mayor, Spokane Valley, WA"}]}], "slug": "spokane"}, "53067": {"county": [], "munis": [{"m": "Lacey", "p": [{"n": "Andy Ryder", "r": "Mayor, Lacey, WA"}]}, {"m": "Olympia", "p": [{"n": "Dontae Payne", "r": "Mayor, Olympia, WA"}]}], "slug": "thurston"}, "53071": {"county": [], "munis": [{"m": "Walla Walla", "p": [{"n": "Tom Scribner", "r": "Mayor, Walla Walla, WA"}]}], "slug": "walla-walla"}, "53073": {"county": [], "munis": [{"m": "Bellingham", "p": [{"n": "Kim Lund", "r": "Mayor, Bellingham, WA"}]}, {"m": "Ferndale", "p": [{"n": "Greg Hansen", "r": "Mayor, Ferndale, WA"}]}], "slug": "whatcom"}, "53075": {"county": [], "munis": [{"m": "Colfax", "p": [{"n": "Jim Retzer", "r": "Mayor, Colfax, WA"}]}, {"m": "Palouse", "p": [{"n": "Tim Sievers", "r": "Mayor, Palouse, WA"}]}, {"m": "Pullman", "p": [{"n": "Francis A. Benjamin", "r": "Mayor, Pullman, WA"}]}], "slug": "whitman"}, "53077": {"county": [], "munis": [{"m": "Sunnyside", "p": [{"n": "Dean R. Broersma", "r": "Mayor, Sunnyside, WA"}]}, {"m": "Yakima", "p": [{"n": "Patricia Byers", "r": "Mayor, Yakima, WA"}]}], "slug": "yakima"}, "54001": {"county": [], "munis": [{"m": "Philippi", "p": [{"n": "Philip Bowers", "r": "Mayor, Philippi, WV"}]}], "slug": "barbour"}, "54003": {"county": [], "munis": [{"m": "Martinsburg", "p": [{"n": "Kevin Knowles", "r": "Mayor, Martinsburg, WV"}]}], "slug": "berkeley"}, "54011": {"county": [], "munis": [{"m": "Huntington", "p": [{"n": "Patrick Farrell", "r": "Mayor, Huntington, WV"}]}], "slug": "cabell"}, "54027": {"county": [], "munis": [{"m": "Romney", "p": [{"n": "Beverly C. Keadle", "r": "Mayor, Romney, WV"}]}], "slug": "hampshire"}, "54033": {"county": [], "munis": [{"m": "Clarksburg", "p": [{"n": "Jim Malfregeot", "r": "Mayor, Clarksburg, WV"}]}], "slug": "harrison"}, "54039": {"county": [], "munis": [{"m": "Charleston", "p": [{"n": "Amy Shuler Goodwin", "r": "Mayor, Charleston, WV"}]}], "slug": "kanawha"}, "54041": {"county": [], "munis": [{"m": "Weston", "p": [{"n": "Kim Harrison", "r": "Mayor, Weston, WV"}]}], "slug": "lewis"}, "54049": {"county": [], "munis": [{"m": "Fairmont", "p": [{"n": "Anne Bolyard", "r": "Mayor, Fairmont, WV"}]}], "slug": "marion"}, "54053": {"county": [], "munis": [{"m": "Point Pleasant", "p": [{"n": "Amber Tatterson", "r": "Mayor, Point Pleasant, WV"}]}], "slug": "mason"}, "54055": {"county": [], "munis": [{"m": "Bluefield", "p": [{"n": "Ron Martin", "r": "Mayor, Bluefield, WV"}]}], "slug": "mercer"}, "54061": {"county": [], "munis": [{"m": "Morgantown", "p": [{"n": "Joe Abu-Ghannam", "r": "Mayor, Morgantown, WV"}]}], "slug": "monongalia"}, "54067": {"county": [], "munis": [{"m": "Summersville", "p": [{"n": "Robert Shafer", "r": "Mayor, Summersville, WV"}]}], "slug": "nicholas"}, "54069": {"county": [], "munis": [{"m": "Wheeling", "p": [{"n": "Denny Magruder", "r": "Mayor, Wheeling, WV"}]}], "slug": "ohio"}, "54081": {"county": [], "munis": [{"m": "Beckley", "p": [{"n": "Ryan Neal", "r": "Mayor, Beckley, WV"}]}], "slug": "raleigh"}, "54107": {"county": [], "munis": [{"m": "Parkersburg", "p": [{"n": "Tom Joyce", "r": "Mayor, Parkersburg, WV"}]}], "slug": "wood"}, "55003": {"county": [], "munis": [{"m": "Ashland", "p": [{"n": "Matthew MacKenzie", "r": "Mayor, Ashland, WI"}]}], "slug": "ashland"}, "55005": {"county": [], "munis": [{"m": "Barron", "p": [{"n": "Rod Nordby", "r": "Mayor, Barron, WI"}]}], "slug": "barron"}, "55007": {"county": [], "munis": [{"m": "Bayfield", "p": [{"n": "Ted Dougherty", "r": "Mayor, Bayfield, WI"}]}], "slug": "bayfield"}, "55009": {"county": [], "munis": [{"m": "De Pere", "p": [{"n": "James Boyd", "r": "Mayor, De Pere, WI"}]}, {"m": "Green Bay", "p": [{"n": "Eric Genrich", "r": "Mayor, Green Bay, WI"}]}], "slug": "brown"}, "55011": {"county": [], "munis": [{"m": "Alma", "p": [{"n": "Richard Champeny", "r": "Mayor, Alma, WI"}]}], "slug": "buffalo"}, "55017": {"county": [], "munis": [{"m": "Chippewa Falls", "p": [{"n": "Gregory S. Hoffman", "r": "Mayor, Chippewa Falls, WI"}]}], "slug": "chippewa"}, "55019": {"county": [], "munis": [{"m": "Abbotsford", "p": [{"n": "James Weix", "r": "Mayor, Abbotsford, WI"}]}], "slug": "clark"}, "55021": {"county": [], "munis": [{"m": "Columbus", "p": [{"n": "Joe Hammer", "r": "Mayor, Columbus, WI"}]}, {"m": "Portage", "p": [{"n": "Mitchel Craig", "r": "Mayor, Portage, WI"}]}], "slug": "columbia"}, "55025": {"county": [], "munis": [{"m": "Fitchburg", "p": [{"n": "Julia Arata-Fratta", "r": "Mayor, Fitchburg, WI"}]}, {"m": "Madison", "p": [{"n": "Satya Rhodes-Conway", "r": "Mayor, Madison, WI"}]}, {"m": "Middleton", "p": [{"n": "Emily Kuhn", "r": "Mayor, Middleton, WI"}]}, {"m": "Stoughton", "p": [{"n": "Tim Swadley", "r": "Mayor, Stoughton, WI"}]}, {"m": "Sun Prairie", "p": [{"n": "Paul Esser", "r": "Mayor, Sun Prairie, WI"}]}, {"m": "Verona", "p": [{"n": "Luke Diaz", "r": "Mayor, Verona, WI"}]}], "slug": "dane"}, "55027": {"county": [], "munis": [{"m": "Beaver Dam", "p": [{"n": "Mike Wissell", "r": "Mayor, Beaver Dam, WI"}]}, {"m": "Waupun", "p": [{"n": "Rohn W. Bishop", "r": "Mayor, Waupun, WI"}]}], "slug": "dodge"}, "55031": {"county": [], "munis": [{"m": "Superior", "p": [{"n": "Jim Paine", "r": "Mayor, Superior, WI"}]}], "slug": "douglas"}, "55033": {"county": [], "munis": [{"m": "Menomonie", "p": [{"n": "Randy Knaack", "r": "Mayor, Menomonie, WI"}]}], "slug": "dunn"}, "55035": {"county": [], "munis": [{"m": "Altoona", "p": [{"n": "Brendan Pratt", "r": "Mayor, Altoona, WI"}]}], "slug": "eau-claire"}, "55045": {"county": [], "munis": [{"m": "Monroe", "p": [{"n": "Donna Douglas", "r": "Mayor, Monroe, WI"}]}], "slug": "green"}, "55047": {"county": [], "munis": [{"m": "Berlin", "p": [{"n": "Joel Bruessel", "r": "Mayor, Berlin, WI"}]}], "slug": "green-lake"}, "55055": {"county": [], "munis": [{"m": "Watertown", "p": [{"n": "Emily McFarland", "r": "Mayor, Watertown, WI"}]}], "slug": "jefferson"}, "55059": {"county": [], "munis": [{"m": "Kenosha", "p": [{"n": "David Bogdala", "r": "Mayor, Kenosha, WI"}]}], "slug": "kenosha"}, "55061": {"county": [], "munis": [{"m": "Algoma", "p": [{"n": "Steve Lautenbach", "r": "Mayor, Algoma, WI"}]}], "slug": "kewaunee"}, "55063": {"county": [], "munis": [{"m": "La Crosse", "p": [{"n": "Mitch Reynolds", "r": "Mayor, La Crosse, WI"}]}, {"m": "Onalaska", "p": [{"n": "Kim Smith", "r": "Mayor, Onalaska, WI"}]}], "slug": "la-crosse"}, "55067": {"county": [], "munis": [{"m": "Antigo", "p": [{"n": "Thomas Bauknecht", "r": "Mayor, Antigo, WI"}]}], "slug": "langlade"}, "55071": {"county": [], "munis": [{"m": "Manitowoc", "p": [{"n": "Justin M. Nickels", "r": "Mayor, Manitowoc, WI"}]}], "slug": "manitowoc"}, "55073": {"county": [], "munis": [{"m": "Wausau", "p": [{"n": "Doug Diny", "r": "Mayor, Wausau, WI"}]}], "slug": "marathon"}, "55075": {"county": [], "munis": [{"m": "Marinette", "p": [{"n": "Steve Genisot", "r": "Mayor, Marinette, WI"}]}], "slug": "marinette"}, "55079": {"county": [], "munis": [{"m": "Cudahy", "p": [{"n": "Thomas Pavlic", "r": "Mayor, Cudahy, WI"}]}, {"m": "Franklin", "p": [{"n": "John Nelson", "r": "Mayor, Franklin, WI"}]}, {"m": "Glendale", "p": [{"n": "Bryan Kennedy", "r": "Mayor, Glendale, WI"}]}, {"m": "Greenfield", "p": [{"n": "Michael J. Neitzke", "r": "Mayor, Greenfield, WI"}]}, {"m": "Milwaukee", "p": [{"n": "Cavalier Johnson", "r": "Mayor, Milwaukee, WI"}]}, {"m": "Oak Creek", "p": [{"n": "Daniel Bukiewicz", "r": "Mayor, Oak Creek, WI"}]}, {"m": "South Milwaukee", "p": [{"n": "Jim Shelenske", "r": "Mayor, South Milwaukee, WI"}]}, {"m": "Wauwatosa", "p": [{"n": "Q91356856", "r": "Mayor, Wauwatosa, WI"}]}, {"m": "West Allis", "p": [{"n": "Dan Devine", "r": "Mayor, West Allis, WI"}]}], "slug": "milwaukee"}, "55081": {"county": [], "munis": [{"m": "Sparta", "p": [{"n": "Kevin Riley", "r": "Mayor, Sparta, WI"}]}], "slug": "monroe"}, "55087": {"county": [], "munis": [{"m": "Appleton", "p": [{"n": "Jake Woodford", "r": "Mayor, Appleton, WI"}]}], "slug": "outagamie"}, "55089": {"county": [], "munis": [{"m": "Mequon", "p": [{"n": "Andrew Nerbun", "r": "Mayor, Mequon, WI"}]}, {"m": "Port Washington", "p": [{"n": "Ted Neitzke IV", "r": "Mayor, Port Washington, WI"}]}], "slug": "ozaukee"}, "55095": {"county": [], "munis": [{"m": "Amery", "p": [{"n": "Rick Van Blaricom", "r": "Mayor, Amery, WI"}]}], "slug": "polk"}, "55097": {"county": [], "munis": [{"m": "Stevens Point", "p": [{"n": "Mike Wiza", "r": "Mayor, Stevens Point, WI"}]}], "slug": "portage"}, "55101": {"county": [], "munis": [{"m": "Burlington", "p": [{"n": "Jon Schultz", "r": "Mayor, Burlington, WI"}]}, {"m": "Racine", "p": [{"n": "John Dickert", "r": "Mayor, Racine, WI"}]}], "slug": "racine"}, "55109": {"county": [], "munis": [{"m": "Hudson", "p": [{"n": "Rich O'Connor", "r": "Mayor, Hudson, WI"}]}, {"m": "New Richmond", "p": [{"n": "Jim Zajkowsk", "r": "Mayor, New Richmond, WI"}]}], "slug": "st-croix"}, "55111": {"county": [], "munis": [{"m": "Baraboo", "p": [{"n": "Rob Nelson", "r": "Mayor, Baraboo, WI"}]}], "slug": "sauk"}, "55117": {"county": [], "munis": [{"m": "Sheboygan", "p": [{"n": "Ryan Sorenson", "r": "Mayor, Sheboygan, WI"}]}], "slug": "sheboygan"}, "55121": {"county": [], "munis": [{"m": "Arcadia", "p": [{"n": "John Kimmel", "r": "Mayor, Arcadia, WI"}]}], "slug": "trempealeau"}, "55127": {"county": [], "munis": [{"m": "Elkhorn", "p": [{"n": "Tim Shiroda", "r": "Mayor, Elkhorn, WI"}]}], "slug": "walworth"}, "55131": {"county": [], "munis": [{"m": "Hartford", "p": [{"n": "Timothy Michalak", "r": "Mayor, Hartford, WI"}]}, {"m": "West Bend", "p": [{"n": "Joel Ongert", "r": "Mayor, West Bend, WI"}]}], "slug": "washington"}, "55133": {"county": [], "munis": [{"m": "Brookfield", "p": [{"n": "Steven V. Ponto", "r": "Mayor, Brookfield, WI"}]}, {"m": "Muskego", "p": [{"n": "Rick Petfalski", "r": "Mayor, Muskego, WI"}]}, {"m": "New Berlin", "p": [{"n": "Dave Ament", "r": "Mayor, New Berlin, WI"}]}, {"m": "Oconomowoc", "p": [{"n": "Robert P. Magnus", "r": "Mayor, Oconomowoc, WI"}]}, {"m": "Pewaukee", "p": [{"n": "Steve Bierce", "r": "Mayor, Pewaukee, WI"}]}, {"m": "Waukesha", "p": [{"n": "Shawn Reilly", "r": "Mayor, Waukesha, WI"}]}], "slug": "waukesha"}, "55139": {"county": [], "munis": [{"m": "Menasha", "p": [{"n": "Austin Hammond", "r": "Mayor, Menasha, WI"}]}, {"m": "Neenah", "p": [{"n": "Jane B Lang", "r": "Mayor, Neenah, WI"}]}, {"m": "Oshkosh", "p": [{"n": "Matt Mugerauer", "r": "Mayor, Oshkosh, WI"}]}], "slug": "winnebago"}, "55141": {"county": [], "munis": [{"m": "Marshfield", "p": [{"n": "Lois TeStrake", "r": "Mayor, Marshfield, WI"}]}, {"m": "Wisconsin Rapids", "p": [{"n": "Matt Zacher", "r": "Mayor, Wisconsin Rapids, WI"}]}], "slug": "wood"}, "56001": {"county": [], "munis": [{"m": "Laramie", "p": [{"n": "Brian Harrington", "r": "Mayor, Laramie, WY"}]}], "slug": "albany"}, "56005": {"county": [], "munis": [{"m": "Gillette", "p": [{"n": "Shay Lundvall", "r": "Mayor, Gillette, WY"}]}], "slug": "campbell"}, "56009": {"county": [], "munis": [{"m": "Douglas", "p": [{"n": "Kim Pexton", "r": "Mayor, Douglas, WY"}]}], "slug": "converse"}, "56019": {"county": [], "munis": [{"m": "Buffalo", "p": [{"n": "Shane J. Schrader", "r": "Mayor, Buffalo, WY"}]}], "slug": "johnson"}, "56021": {"county": [], "munis": [{"m": "Cheyenne", "p": [{"n": "Patrick Collins", "r": "Mayor, Cheyenne, WY"}]}], "slug": "laramie"}, "56023": {"county": [], "munis": [{"m": "Kemmerer", "p": [{"n": "William Thek", "r": "Mayor, Kemmerer, WY"}]}], "slug": "lincoln"}, "56025": {"county": [], "munis": [{"m": "Casper", "p": [{"n": "Steve Cathey", "r": "Mayor, Casper, WY"}]}], "slug": "natrona"}, "56033": {"county": [], "munis": [{"m": "Sheridan", "p": [{"n": "Richard Bridger", "r": "Mayor, Sheridan, WY"}]}], "slug": "sheridan"}, "56037": {"county": [], "munis": [{"m": "Green River", "p": [{"n": "Pete Rust", "r": "Mayor, Green River, WY"}]}], "slug": "sweetwater"}, "56041": {"county": [], "munis": [{"m": "Evanston", "p": [{"n": "Kent Williams", "r": "Mayor, Evanston, WY"}]}], "slug": "uinta"}, "56043": {"county": [], "munis": [{"m": "Worland", "p": [{"n": "Jim Gill", "r": "Mayor, Worland, WY"}]}], "slug": "washakie"}} +{"01001": {"county": [], "districts": {"cd": [{"d": "AL-06", "rep": "Gary J. Palmer", "w": 0.994}], "sh": [{"d": "AL House District 69", "rep": "Kelvin Lawrence", "w": 0.662}, {"d": "AL House District 42", "rep": "Van Smith", "w": 0.29}, {"d": "AL House District 88", "rep": "Jerry Starnes", "w": 0.047}], "ss": [{"d": "AL Senate District 30", "rep": "Clyde Chambliss", "w": 1.0}]}, "munis": [{"m": "Prattville", "p": [{"n": "Bill Gillespie, Jr.", "r": "Mayor, Prattville, AL"}]}], "slug": "autauga"}, "01003": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.827}], "sh": [{"d": "AL House District 66", "rep": "Alan Baker", "w": 0.216}, {"d": "AL House District 65", "rep": "Brett Easterbrook", "w": 0.189}, {"d": "AL House District 64", "rep": "Donna Givens", "w": 0.137}, {"d": "AL House District 95", "rep": "Frances Holk-Jones", "w": 0.082}, {"d": "AL House District 102", "rep": "Shane Stringer", "w": 0.074}, {"d": "AL House District 96", "rep": "Matt Simpson", "w": 0.066}, {"d": "AL House District 94", "rep": "Jennifer Fidler", "w": 0.065}], "ss": [{"d": "AL Senate District 22", "rep": "Greg Albritton", "w": 0.593}, {"d": "AL Senate District 32", "rep": "Chris Elliott", "w": 0.189}, {"d": "AL Senate District 33", "rep": "Vivian Figures", "w": 0.047}]}, "munis": [{"m": "Bay Minette", "p": [{"n": "Robert Wills", "r": "Mayor, Bay Minette, AL"}]}, {"m": "Daphne", "p": [{"n": "Robin LeJeune", "r": "Mayor, Daphne, AL"}]}, {"m": "Fairhope", "p": [{"n": "Sherry Sullivan", "r": "Mayor, Fairhope, AL"}]}, {"m": "Foley", "p": [{"n": "Ralph Hellmich", "r": "Mayor, Foley, AL"}]}, {"m": "Robertsdale", "p": [{"n": "Charles H. Murphy", "r": "Mayor, Robertsdale, AL"}]}, {"m": "Spanish Fort", "p": [{"n": "Michael M. McMillan", "r": "Mayor, Spanish Fort, AL"}]}], "slug": "baldwin"}, "01005": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.998}], "sh": [{"d": "AL House District 84", "rep": "Berry Forte", "w": 1.0}], "ss": [{"d": "AL Senate District 28", "rep": "Billy Beasley", "w": 1.0}]}, "munis": [], "slug": "barbour"}, "01007": {"county": [], "districts": {"cd": [{"d": "AL-06", "rep": "Gary J. Palmer", "w": 0.999}], "sh": [{"d": "AL House District 49", "rep": "Russell Bedsole", "w": 0.681}, {"d": "AL House District 72", "rep": "Curtis Travis", "w": 0.319}], "ss": [{"d": "AL Senate District 14", "rep": "April Weaver", "w": 1.0}]}, "munis": [], "slug": "bibb"}, "01009": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.999}], "sh": [{"d": "AL House District 34", "rep": "David Standridge", "w": 0.663}, {"d": "AL House District 11", "rep": "Heath Allbright", "w": 0.337}], "ss": [{"d": "AL Senate District 17", "rep": "Shay Shelnutt", "w": 0.742}, {"d": "AL Senate District 9", "rep": "Wes Kitchens", "w": 0.258}]}, "munis": [{"m": "Oneonta", "p": [{"n": "Richard M. Phillips", "r": "Mayor, Oneonta, AL"}]}], "slug": "blount"}, "01011": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 1.0}], "sh": [{"d": "AL House District 84", "rep": "Berry Forte", "w": 1.0}], "ss": [{"d": "AL Senate District 28", "rep": "Billy Beasley", "w": 1.0}]}, "munis": [], "slug": "bullock"}, "01013": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.999}], "sh": [{"d": "AL House District 90", "rep": "Chris Sells", "w": 1.0}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "butler"}, "01015": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 1.0}], "sh": [{"d": "AL House District 29", "rep": "Mark Gidley", "w": 0.367}, {"d": "AL House District 40", "rep": "Chad Robertson", "w": 0.275}, {"d": "AL House District 36", "rep": "Randy Wood", "w": 0.191}, {"d": "AL House District 32", "rep": "Barbara Boyd", "w": 0.118}, {"d": "AL House District 35", "rep": "Steve Hurst", "w": 0.05}], "ss": [{"d": "AL Senate District 12", "rep": "Keith Kelley", "w": 1.0}]}, "munis": [], "slug": "calhoun"}, "01017": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 0.999}], "sh": [{"d": "AL House District 37", "rep": "Bob Fincher", "w": 0.773}, {"d": "AL House District 38", "rep": "Kristin Nelson", "w": 0.226}], "ss": [{"d": "AL Senate District 13", "rep": "Randy Price", "w": 1.0}]}, "munis": [], "slug": "chambers"}, "01019": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 0.998}], "sh": [{"d": "AL House District 39", "rep": "Ginny Shaver", "w": 1.0}], "ss": [{"d": "AL Senate District 10", "rep": "Andrew Jones", "w": 1.0}]}, "munis": [], "slug": "cherokee"}, "01021": {"county": [], "districts": {"cd": [{"d": "AL-06", "rep": "Gary J. Palmer", "w": 1.0}], "sh": [{"d": "AL House District 42", "rep": "Van Smith", "w": 0.89}, {"d": "AL House District 49", "rep": "Russell Bedsole", "w": 0.11}], "ss": [{"d": "AL Senate District 30", "rep": "Clyde Chambliss", "w": 0.537}, {"d": "AL Senate District 14", "rep": "April Weaver", "w": 0.463}]}, "munis": [{"m": "Clanton", "p": [{"n": "Jeff Mims", "r": "Mayor, Clanton, AL"}]}], "slug": "chilton"}, "01023": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 1.0}], "sh": [{"d": "AL House District 65", "rep": "Brett Easterbrook", "w": 1.0}], "ss": [{"d": "AL Senate District 24", "rep": "Bobby Singleton", "w": 1.0}]}, "munis": [], "slug": "choctaw"}, "01025": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.676}, {"d": "AL-02", "rep": "Shomari Figures", "w": 0.323}], "sh": [{"d": "AL House District 65", "rep": "Brett Easterbrook", "w": 0.51}, {"d": "AL House District 68", "rep": "Thomas Jackson", "w": 0.49}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "clarke"}, "01027": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 1.0}], "sh": [{"d": "AL House District 35", "rep": "Steve Hurst", "w": 1.0}], "ss": [{"d": "AL Senate District 13", "rep": "Randy Price", "w": 1.0}]}, "munis": [], "slug": "clay"}, "01029": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 1.0}], "sh": [{"d": "AL House District 40", "rep": "Chad Robertson", "w": 1.0}], "ss": [{"d": "AL Senate District 13", "rep": "Randy Price", "w": 1.0}]}, "munis": [], "slug": "cleburne"}, "01031": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.999}], "sh": [{"d": "AL House District 91", "rep": "Rhett Marques", "w": 0.58}, {"d": "AL House District 90", "rep": "Chris Sells", "w": 0.245}, {"d": "AL House District 92", "rep": "Matthew Hammett", "w": 0.175}], "ss": [{"d": "AL Senate District 31", "rep": "Josh Carnley", "w": 1.0}]}, "munis": [{"m": "Enterprise", "p": [{"n": "William E. Cooper", "r": "Mayor, Enterprise, AL"}]}], "slug": "coffee"}, "01033": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.998}], "sh": [{"d": "AL House District 18", "rep": "Jamie Kiel", "w": 0.702}, {"d": "AL House District 7", "rep": "Ernie Yarbrough", "w": 0.22}, {"d": "AL House District 3", "rep": "Bubba Underwood", "w": 0.078}], "ss": [{"d": "AL Senate District 6", "rep": "Larry Stutts", "w": 1.0}]}, "munis": [], "slug": "colbert"}, "01035": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.999}], "sh": [{"d": "AL House District 90", "rep": "Chris Sells", "w": 0.548}, {"d": "AL House District 68", "rep": "Thomas Jackson", "w": 0.451}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "conecuh"}, "01037": {"county": [], "districts": {"cd": [{"d": "AL-06", "rep": "Gary J. Palmer", "w": 1.0}], "sh": [{"d": "AL House District 33", "rep": "Ben Robbins", "w": 1.0}], "ss": [{"d": "AL Senate District 30", "rep": "Clyde Chambliss", "w": 1.0}]}, "munis": [], "slug": "coosa"}, "01039": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.999}], "sh": [{"d": "AL House District 92", "rep": "Matthew Hammett", "w": 1.0}], "ss": [{"d": "AL Senate District 31", "rep": "Josh Carnley", "w": 1.0}]}, "munis": [], "slug": "covington"}, "01041": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.999}], "sh": [{"d": "AL House District 90", "rep": "Chris Sells", "w": 1.0}], "ss": [{"d": "AL Senate District 25", "rep": "Will Barfoot", "w": 1.0}]}, "munis": [], "slug": "crenshaw"}, "01043": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 1.0}], "sh": [{"d": "AL House District 12", "rep": "Cindy Myrex", "w": 0.554}, {"d": "AL House District 11", "rep": "Heath Allbright", "w": 0.355}, {"d": "AL House District 14", "rep": "Tim Wadsworth", "w": 0.091}], "ss": [{"d": "AL Senate District 4", "rep": "Garlan Gudger", "w": 1.0}]}, "munis": [{"m": "Cullman", "p": [{"n": "Woody Jacobs", "r": "Mayor, Cullman, AL"}]}], "slug": "cullman"}, "01045": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 1.0}], "sh": [{"d": "AL House District 93", "rep": "Steve Clouse", "w": 0.595}, {"d": "AL House District 89", "rep": "Marcus Paramore", "w": 0.404}], "ss": [{"d": "AL Senate District 31", "rep": "Josh Carnley", "w": 0.589}, {"d": "AL Senate District 29", "rep": "Donnie Chesteen", "w": 0.411}]}, "munis": [], "slug": "dale"}, "01047": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.999}], "sh": [{"d": "AL House District 67", "rep": "Prince Chestnut", "w": 1.0}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "dallas"}, "01049": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.998}], "sh": [{"d": "AL House District 24", "rep": "Nathaniel Ledbetter", "w": 0.653}, {"d": "AL House District 39", "rep": "Ginny Shaver", "w": 0.347}], "ss": [{"d": "AL Senate District 8", "rep": "Steve Livingston", "w": 0.665}, {"d": "AL Senate District 10", "rep": "Andrew Jones", "w": 0.335}]}, "munis": [], "slug": "dekalb"}, "01051": {"county": [], "districts": {"cd": [{"d": "AL-06", "rep": "Gary J. Palmer", "w": 0.993}, {"d": "AL-02", "rep": "Shomari Figures", "w": 0.006}], "sh": [{"d": "AL House District 31", "rep": "Troy Stubbs", "w": 0.696}, {"d": "AL House District 75", "rep": "Reed Ingram", "w": 0.238}, {"d": "AL House District 88", "rep": "Jerry Starnes", "w": 0.066}], "ss": [{"d": "AL Senate District 25", "rep": "Will Barfoot", "w": 0.864}, {"d": "AL Senate District 30", "rep": "Clyde Chambliss", "w": 0.135}]}, "munis": [{"m": "Wetumpka", "p": [{"n": "Jerry Willis", "r": "Mayor, Wetumpka, AL"}]}], "slug": "elmore"}, "01053": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.999}], "sh": [{"d": "AL House District 66", "rep": "Alan Baker", "w": 0.678}, {"d": "AL House District 92", "rep": "Matthew Hammett", "w": 0.321}], "ss": [{"d": "AL Senate District 22", "rep": "Greg Albritton", "w": 0.999}]}, "munis": [], "slug": "escambia"}, "01055": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 1.0}], "sh": [{"d": "AL House District 29", "rep": "Mark Gidley", "w": 0.466}, {"d": "AL House District 30", "rep": "Craig Lipscomb", "w": 0.317}, {"d": "AL House District 28", "rep": "Mack Butler", "w": 0.217}], "ss": [{"d": "AL Senate District 10", "rep": "Andrew Jones", "w": 1.0}]}, "munis": [{"m": "Gadsden", "p": [{"n": "Craig Ford", "r": "Mayor, Gadsden, AL"}]}, {"m": "Glencoe", "p": [{"n": "Chris Hare", "r": "Mayor, Glencoe, AL"}]}], "slug": "etowah"}, "01057": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 1.0}], "sh": [{"d": "AL House District 16", "rep": "Bryan Brinyark", "w": 1.0}], "ss": [{"d": "AL Senate District 5", "rep": "Matt Woods", "w": 1.0}]}, "munis": [], "slug": "fayette"}, "01059": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 1.0}], "sh": [{"d": "AL House District 18", "rep": "Jamie Kiel", "w": 1.0}], "ss": [{"d": "AL Senate District 6", "rep": "Larry Stutts", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "01061": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 1.0}], "sh": [{"d": "AL House District 87", "rep": "Jeff Sorrells", "w": 1.0}], "ss": [{"d": "AL Senate District 29", "rep": "Donnie Chesteen", "w": 1.0}]}, "munis": [], "slug": "geneva"}, "01063": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.999}], "sh": [{"d": "AL House District 72", "rep": "Curtis Travis", "w": 1.0}], "ss": [{"d": "AL Senate District 24", "rep": "Bobby Singleton", "w": 1.0}]}, "munis": [], "slug": "greene"}, "01065": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 1.0}], "sh": [{"d": "AL House District 72", "rep": "Curtis Travis", "w": 1.0}], "ss": [{"d": "AL Senate District 24", "rep": "Bobby Singleton", "w": 1.0}]}, "munis": [], "slug": "hale"}, "01067": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.996}], "sh": [{"d": "AL House District 85", "rep": "Rick Rehm", "w": 1.0}], "ss": [{"d": "AL Senate District 28", "rep": "Billy Beasley", "w": 1.0}]}, "munis": [], "slug": "henry"}, "01069": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.998}], "sh": [{"d": "AL House District 86", "rep": "Paul Lee", "w": 0.764}, {"d": "AL House District 87", "rep": "Jeff Sorrells", "w": 0.129}, {"d": "AL House District 85", "rep": "Rick Rehm", "w": 0.088}, {"d": "AL House District 93", "rep": "Steve Clouse", "w": 0.018}], "ss": [{"d": "AL Senate District 29", "rep": "Donnie Chesteen", "w": 0.874}, {"d": "AL Senate District 28", "rep": "Billy Beasley", "w": 0.126}]}, "munis": [{"m": "Dothan", "p": [{"n": "Mike Schmitz", "r": "Mayor, Dothan, AL"}]}], "slug": "houston"}, "01071": {"county": [], "districts": {"cd": [{"d": "AL-05", "rep": "Dale W. Strong", "w": 0.998}], "sh": [{"d": "AL House District 23", "rep": "Mike Kirkland", "w": 0.878}, {"d": "AL House District 22", "rep": "Ritchie Whorton", "w": 0.121}], "ss": [{"d": "AL Senate District 8", "rep": "Steve Livingston", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "01073": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.597}, {"d": "AL-06", "rep": "Gary J. Palmer", "w": 0.402}], "sh": [{"d": "AL House District 16", "rep": "Bryan Brinyark", "w": 0.215}, {"d": "AL House District 51", "rep": "Allen Treadaway", "w": 0.178}, {"d": "AL House District 60", "rep": "Juandalynn Givan", "w": 0.081}, {"d": "AL House District 44", "rep": "Danny Garrett", "w": 0.076}, {"d": "AL House District 15", "rep": "Leigh Hulsey", "w": 0.074}, {"d": "AL House District 57", "rep": "Patrick Sellers", "w": 0.068}, {"d": "AL House District 56", "rep": "Ontario Tillman", "w": 0.053}, {"d": "AL House District 59", "rep": "Mary Moore", "w": 0.05}, {"d": "AL House District 45", "rep": "Susan DuBose", "w": 0.036}, {"d": "AL House District 58", "rep": "Rolanda Hollis", "w": 0.028}, {"d": "AL House District 14", "rep": "Tim Wadsworth", "w": 0.028}, {"d": "AL House District 48", "rep": "Jim Carns", "w": 0.026}, {"d": "AL House District 55", "rep": "Travis Hendrix", "w": 0.02}, {"d": "AL House District 46", "rep": "David Faulkner", "w": 0.018}, {"d": "AL House District 54", "rep": "Neil Rafferty", "w": 0.018}, {"d": "AL House District 47", "rep": "Mike Shaw", "w": 0.016}, {"d": "AL House District 52", "rep": "Kelvin Datcher", "w": 0.013}], "ss": [{"d": "AL Senate District 19", "rep": "Merika Coleman", "w": 0.276}, {"d": "AL Senate District 17", "rep": "Shay Shelnutt", "w": 0.23}, {"d": "AL Senate District 5", "rep": "Matt Woods", "w": 0.198}, {"d": "AL Senate District 20", "rep": "Linda Coleman-Madison", "w": 0.124}, {"d": "AL Senate District 15", "rep": "Dan Roberts", "w": 0.075}, {"d": "AL Senate District 18", "rep": "Rodger Smitherman", "w": 0.058}, {"d": "AL Senate District 16", "rep": "Jabo Waggoner", "w": 0.04}]}, "munis": [{"m": "Bessemer", "p": [{"n": "Kenneth E. Gulley", "r": "Mayor, Bessemer, AL"}]}, {"m": "Birmingham", "p": [{"n": "Randall Woodfin", "r": "Mayor, Birmingham, AL"}]}, {"m": "Hoover", "p": [{"n": "Frank Brocato", "r": "Mayor, Hoover, AL"}]}, {"m": "Trussville", "p": [{"n": "Buddy Choat", "r": "Mayor, Trussville, AL"}]}, {"m": "Vestavia Hills", "p": [{"n": "Ashley Curry", "r": "Mayor, Vestavia Hills, AL"}]}], "slug": "jefferson"}, "01075": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 1.0}], "sh": [{"d": "AL House District 17", "rep": "Tracy Estes", "w": 1.0}], "ss": [{"d": "AL Senate District 5", "rep": "Matt Woods", "w": 1.0}]}, "munis": [], "slug": "lamar"}, "01077": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.717}, {"d": "AL-05", "rep": "Dale W. Strong", "w": 0.283}], "sh": [{"d": "AL House District 1", "rep": "Phillip Pettus", "w": 0.513}, {"d": "AL House District 2", "rep": "Ben Harrison", "w": 0.35}, {"d": "AL House District 3", "rep": "Bubba Underwood", "w": 0.137}], "ss": [{"d": "AL Senate District 1", "rep": "Tim Melson", "w": 1.0}]}, "munis": [{"m": "Florence", "p": [{"n": "Andrew Betterton", "r": "Mayor, Florence, AL"}]}], "slug": "lauderdale"}, "01079": {"county": [], "districts": {"cd": [{"d": "AL-05", "rep": "Dale W. Strong", "w": 0.998}], "sh": [{"d": "AL House District 7", "rep": "Ernie Yarbrough", "w": 1.0}], "ss": [{"d": "AL Senate District 6", "rep": "Larry Stutts", "w": 1.0}]}, "munis": [], "slug": "lawrence"}, "01081": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 0.998}], "sh": [{"d": "AL House District 38", "rep": "Kristin Nelson", "w": 0.353}, {"d": "AL House District 83", "rep": "Jeremy Gray", "w": 0.167}, {"d": "AL House District 37", "rep": "Bob Fincher", "w": 0.127}, {"d": "AL House District 82", "rep": "Pebblin Warren", "w": 0.116}, {"d": "AL House District 81", "rep": "Ed Oliver", "w": 0.096}, {"d": "AL House District 80", "rep": "Chris Blackshear", "w": 0.075}, {"d": "AL House District 79", "rep": "Joe Lovvorn", "w": 0.067}], "ss": [{"d": "AL Senate District 27", "rep": "Jay Hovey", "w": 0.546}, {"d": "AL Senate District 13", "rep": "Randy Price", "w": 0.453}]}, "munis": [{"m": "Auburn", "p": [{"n": "Ron Anders, Jr.", "r": "Mayor, Auburn, AL"}]}, {"m": "Opelika", "p": [{"n": "Gary Fuller", "r": "Mayor, Opelika, AL"}]}], "slug": "lee"}, "01083": {"county": [], "districts": {"cd": [{"d": "AL-05", "rep": "Dale W. Strong", "w": 1.0}], "sh": [{"d": "AL House District 2", "rep": "Ben Harrison", "w": 0.403}, {"d": "AL House District 5", "rep": "Danny Crawford", "w": 0.337}, {"d": "AL House District 4", "rep": "Parker Moore", "w": 0.145}, {"d": "AL House District 6", "rep": "Andy Whitt", "w": 0.108}, {"d": "AL House District 25", "rep": "Phillip Rigsby", "w": 0.006}], "ss": [{"d": "AL Senate District 1", "rep": "Tim Melson", "w": 0.604}, {"d": "AL Senate District 3", "rep": "Arthur Orr", "w": 0.218}, {"d": "AL Senate District 6", "rep": "Larry Stutts", "w": 0.135}, {"d": "AL Senate District 2", "rep": "Tom Butler", "w": 0.043}]}, "munis": [{"m": "Athens", "p": [{"n": "William R. \"Ronnie\" Marks", "r": "Mayor, Athens, AL"}]}], "slug": "limestone"}, "01085": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.997}], "sh": [{"d": "AL House District 69", "rep": "Kelvin Lawrence", "w": 1.0}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "lowndes"}, "01087": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.998}], "sh": [{"d": "AL House District 82", "rep": "Pebblin Warren", "w": 0.999}], "ss": [{"d": "AL Senate District 28", "rep": "Billy Beasley", "w": 1.0}]}, "munis": [], "slug": "macon"}, "01089": {"county": [], "districts": {"cd": [{"d": "AL-05", "rep": "Dale W. Strong", "w": 0.999}], "sh": [{"d": "AL House District 22", "rep": "Ritchie Whorton", "w": 0.41}, {"d": "AL House District 10", "rep": "Marilyn Lands", "w": 0.132}, {"d": "AL House District 21", "rep": "Rex Reynolds", "w": 0.113}, {"d": "AL House District 6", "rep": "Andy Whitt", "w": 0.099}, {"d": "AL House District 20", "rep": "James Lomax", "w": 0.081}, {"d": "AL House District 19", "rep": "Laura Hall", "w": 0.078}, {"d": "AL House District 25", "rep": "Phillip Rigsby", "w": 0.041}, {"d": "AL House District 53", "rep": "Anthony Daniels", "w": 0.036}, {"d": "AL House District 4", "rep": "Parker Moore", "w": 0.01}], "ss": [{"d": "AL Senate District 7", "rep": "Sam Givhan", "w": 0.321}, {"d": "AL Senate District 8", "rep": "Steve Livingston", "w": 0.288}, {"d": "AL Senate District 9", "rep": "Wes Kitchens", "w": 0.218}, {"d": "AL Senate District 2", "rep": "Tom Butler", "w": 0.136}, {"d": "AL Senate District 3", "rep": "Arthur Orr", "w": 0.037}]}, "munis": [{"m": "Huntsville", "p": [{"n": "Tommy Battle", "r": "Mayor, Huntsville, AL"}]}, {"m": "Madison", "p": [{"n": "Paul Finley", "r": "Mayor, Madison, AL"}]}], "slug": "madison"}, "01091": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 1.0}], "sh": [{"d": "AL House District 68", "rep": "Thomas Jackson", "w": 0.546}, {"d": "AL House District 71", "rep": "A.J. McCampbell", "w": 0.453}], "ss": [{"d": "AL Senate District 24", "rep": "Bobby Singleton", "w": 1.0}]}, "munis": [], "slug": "marengo"}, "01093": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 1.0}], "sh": [{"d": "AL House District 17", "rep": "Tracy Estes", "w": 1.0}], "ss": [{"d": "AL Senate District 4", "rep": "Garlan Gudger", "w": 1.0}]}, "munis": [], "slug": "marion"}, "01095": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.998}], "sh": [{"d": "AL House District 27", "rep": "Jeana Ross", "w": 0.743}, {"d": "AL House District 26", "rep": "Brock Colvin", "w": 0.257}], "ss": [{"d": "AL Senate District 9", "rep": "Wes Kitchens", "w": 1.0}]}, "munis": [{"m": "Albertville", "p": [{"n": "Tracy Honea", "r": "Mayor, Albertville, AL"}]}, {"m": "Boaz", "p": [{"n": "David Dyar", "r": "Mayor, Boaz, AL"}]}], "slug": "marshall"}, "01097": {"county": [], "districts": {"cd": [{"d": "AL-01", "rep": "Barry Moore", "w": 0.467}, {"d": "AL-02", "rep": "Shomari Figures", "w": 0.318}], "sh": [{"d": "AL House District 102", "rep": "Shane Stringer", "w": 0.347}, {"d": "AL House District 105", "rep": "Chip Brown", "w": 0.163}, {"d": "AL House District 98", "rep": "Napoleon Bracy", "w": 0.089}, {"d": "AL House District 100", "rep": "Mark Shirey", "w": 0.044}, {"d": "AL House District 97", "rep": "Adline Clarke", "w": 0.037}, {"d": "AL House District 99", "rep": "Sam Jones", "w": 0.032}, {"d": "AL House District 101", "rep": "Chris Pringle", "w": 0.025}, {"d": "AL House District 104", "rep": "Margie Wilcox", "w": 0.018}, {"d": "AL House District 103", "rep": "Barbara Drummond", "w": 0.017}], "ss": [{"d": "AL Senate District 34", "rep": "Jack Williams", "w": 0.464}, {"d": "AL Senate District 35", "rep": "David Sessions", "w": 0.207}, {"d": "AL Senate District 33", "rep": "Vivian Figures", "w": 0.058}, {"d": "AL Senate District 22", "rep": "Greg Albritton", "w": 0.043}]}, "munis": [{"m": "Bayou La Batre", "p": [{"n": "Henry Barnes, Sr.", "r": "Mayor, Bayou La Batre, AL"}]}, {"m": "Citronelle", "p": [{"n": "Jason Stringer", "r": "Mayor, Citronelle, AL"}]}, {"m": "Mobile", "p": [{"n": "Sandy Stimpson", "r": "Mayor, Mobile, AL"}]}, {"m": "Semmes", "p": [{"n": "Brandon Van Hook", "r": "Mayor, Semmes, AL"}]}], "slug": "mobile"}, "01099": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.999}], "sh": [{"d": "AL House District 68", "rep": "Thomas Jackson", "w": 1.0}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "01101": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.996}], "sh": [{"d": "AL House District 90", "rep": "Chris Sells", "w": 0.388}, {"d": "AL House District 75", "rep": "Reed Ingram", "w": 0.208}, {"d": "AL House District 76", "rep": "Penni McClammy", "w": 0.143}, {"d": "AL House District 78", "rep": "Kenyatté Hassell", "w": 0.139}, {"d": "AL House District 69", "rep": "Kelvin Lawrence", "w": 0.072}, {"d": "AL House District 74", "rep": "Phillip Ensler", "w": 0.027}, {"d": "AL House District 77", "rep": "TaShina Morris", "w": 0.023}], "ss": [{"d": "AL Senate District 25", "rep": "Will Barfoot", "w": 0.633}, {"d": "AL Senate District 26", "rep": "Kirk Hatcher", "w": 0.366}]}, "munis": [{"m": "Montgomery", "p": [{"n": "Steven Reed", "r": "Mayor, Montgomery, AL"}]}], "slug": "montgomery"}, "01103": {"county": [], "districts": {"cd": [{"d": "AL-05", "rep": "Dale W. Strong", "w": 1.0}], "sh": [{"d": "AL House District 9", "rep": "Scott Stadthagen", "w": 0.676}, {"d": "AL House District 8", "rep": "Terri Collins", "w": 0.159}, {"d": "AL House District 4", "rep": "Parker Moore", "w": 0.131}, {"d": "AL House District 7", "rep": "Ernie Yarbrough", "w": 0.034}], "ss": [{"d": "AL Senate District 3", "rep": "Arthur Orr", "w": 1.0}]}, "munis": [{"m": "Decatur", "p": [{"n": "Tab Bowling", "r": "Mayor, Decatur, AL"}]}], "slug": "morgan"}, "01105": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 1.0}], "sh": [{"d": "AL House District 67", "rep": "Prince Chestnut", "w": 0.919}, {"d": "AL House District 68", "rep": "Thomas Jackson", "w": 0.08}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "perry"}, "01107": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.998}], "sh": [{"d": "AL House District 61", "rep": "Ron Bolton", "w": 0.61}, {"d": "AL House District 71", "rep": "A.J. McCampbell", "w": 0.39}], "ss": [{"d": "AL Senate District 21", "rep": "Gerald Allen", "w": 0.999}]}, "munis": [], "slug": "pickens"}, "01109": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 1.0}], "sh": [{"d": "AL House District 89", "rep": "Marcus Paramore", "w": 1.0}], "ss": [{"d": "AL Senate District 31", "rep": "Josh Carnley", "w": 1.0}]}, "munis": [], "slug": "pike"}, "01111": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 1.0}], "sh": [{"d": "AL House District 37", "rep": "Bob Fincher", "w": 0.999}], "ss": [{"d": "AL Senate District 13", "rep": "Randy Price", "w": 1.0}]}, "munis": [], "slug": "randolph"}, "01113": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.996}], "sh": [{"d": "AL House District 84", "rep": "Berry Forte", "w": 0.693}, {"d": "AL House District 83", "rep": "Jeremy Gray", "w": 0.27}, {"d": "AL House District 80", "rep": "Chris Blackshear", "w": 0.037}], "ss": [{"d": "AL Senate District 28", "rep": "Billy Beasley", "w": 0.78}, {"d": "AL Senate District 27", "rep": "Jay Hovey", "w": 0.22}]}, "munis": [{"m": "Phenix City", "p": [{"n": "Eddie N. Lowe", "r": "Mayor, Phenix City, AL"}]}], "slug": "russell"}, "01115": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 0.998}], "sh": [{"d": "AL House District 30", "rep": "Craig Lipscomb", "w": 0.456}, {"d": "AL House District 50", "rep": "Jim Hill", "w": 0.376}, {"d": "AL House District 36", "rep": "Randy Wood", "w": 0.138}, {"d": "AL House District 45", "rep": "Susan DuBose", "w": 0.03}], "ss": [{"d": "AL Senate District 11", "rep": "Lance Bell", "w": 0.577}, {"d": "AL Senate District 17", "rep": "Shay Shelnutt", "w": 0.423}]}, "munis": [], "slug": "st-clair"}, "01117": {"county": [], "districts": {"cd": [{"d": "AL-06", "rep": "Gary J. Palmer", "w": 0.998}], "sh": [{"d": "AL House District 41", "rep": "Corley Ellis", "w": 0.548}, {"d": "AL House District 49", "rep": "Russell Bedsole", "w": 0.17}, {"d": "AL House District 45", "rep": "Susan DuBose", "w": 0.123}, {"d": "AL House District 43", "rep": "Arnold Mooney", "w": 0.065}, {"d": "AL House District 73", "rep": "Kenneth Paschal", "w": 0.064}, {"d": "AL House District 15", "rep": "Leigh Hulsey", "w": 0.015}, {"d": "AL House District 48", "rep": "Jim Carns", "w": 0.014}], "ss": [{"d": "AL Senate District 15", "rep": "Dan Roberts", "w": 0.379}, {"d": "AL Senate District 11", "rep": "Lance Bell", "w": 0.289}, {"d": "AL Senate District 14", "rep": "April Weaver", "w": 0.282}, {"d": "AL Senate District 16", "rep": "Jabo Waggoner", "w": 0.05}]}, "munis": [{"m": "Alabaster", "p": [{"n": "Scott Brakefield", "r": "Mayor, Alabaster, AL"}]}], "slug": "shelby"}, "01119": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 1.0}], "sh": [{"d": "AL House District 71", "rep": "A.J. McCampbell", "w": 1.0}], "ss": [{"d": "AL Senate District 24", "rep": "Bobby Singleton", "w": 1.0}]}, "munis": [], "slug": "sumter"}, "01121": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 0.947}, {"d": "AL-06", "rep": "Gary J. Palmer", "w": 0.053}], "sh": [{"d": "AL House District 33", "rep": "Ben Robbins", "w": 0.475}, {"d": "AL House District 32", "rep": "Barbara Boyd", "w": 0.257}, {"d": "AL House District 35", "rep": "Steve Hurst", "w": 0.225}, {"d": "AL House District 36", "rep": "Randy Wood", "w": 0.042}], "ss": [{"d": "AL Senate District 11", "rep": "Lance Bell", "w": 0.503}, {"d": "AL Senate District 12", "rep": "Keith Kelley", "w": 0.497}]}, "munis": [], "slug": "talladega"}, "01123": {"county": [], "districts": {"cd": [{"d": "AL-03", "rep": "Mike Rogers", "w": 0.998}], "sh": [{"d": "AL House District 81", "rep": "Ed Oliver", "w": 1.0}], "ss": [{"d": "AL Senate District 27", "rep": "Jay Hovey", "w": 0.851}, {"d": "AL Senate District 30", "rep": "Clyde Chambliss", "w": 0.149}]}, "munis": [{"m": "Alexander City", "p": [{"n": "James Douglas Nabors", "r": "Mayor, Alexander City, AL"}]}], "slug": "tallapoosa"}, "01125": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.625}, {"d": "AL-07", "rep": "Terri A. Sewell", "w": 0.375}], "sh": [{"d": "AL House District 16", "rep": "Bryan Brinyark", "w": 0.377}, {"d": "AL House District 62", "rep": "Bill Lamb", "w": 0.239}, {"d": "AL House District 61", "rep": "Ron Bolton", "w": 0.165}, {"d": "AL House District 72", "rep": "Curtis Travis", "w": 0.096}, {"d": "AL House District 71", "rep": "A.J. McCampbell", "w": 0.086}, {"d": "AL House District 63", "rep": "Norman Crow", "w": 0.019}, {"d": "AL House District 70", "rep": "Chris England", "w": 0.019}], "ss": [{"d": "AL Senate District 5", "rep": "Matt Woods", "w": 0.484}, {"d": "AL Senate District 21", "rep": "Gerald Allen", "w": 0.346}, {"d": "AL Senate District 24", "rep": "Bobby Singleton", "w": 0.171}]}, "munis": [{"m": "Northport", "p": [{"n": "John Hinton", "r": "Mayor, Northport, AL"}]}, {"m": "Tuscaloosa", "p": [{"n": "Walter Maddox", "r": "Mayor, Tuscaloosa, AL"}]}], "slug": "tuscaloosa"}, "01127": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 0.998}], "sh": [{"d": "AL House District 13", "rep": "Greg Barnes", "w": 0.521}, {"d": "AL House District 14", "rep": "Tim Wadsworth", "w": 0.479}], "ss": [{"d": "AL Senate District 5", "rep": "Matt Woods", "w": 1.0}]}, "munis": [], "slug": "walker"}, "01129": {"county": [], "districts": {"cd": [{"d": "AL-02", "rep": "Shomari Figures", "w": 0.999}], "sh": [{"d": "AL House District 65", "rep": "Brett Easterbrook", "w": 1.0}], "ss": [{"d": "AL Senate District 22", "rep": "Greg Albritton", "w": 1.0}]}, "munis": [], "slug": "washington"}, "01131": {"county": [], "districts": {"cd": [{"d": "AL-07", "rep": "Terri A. Sewell", "w": 1.0}], "sh": [{"d": "AL House District 69", "rep": "Kelvin Lawrence", "w": 0.859}, {"d": "AL House District 68", "rep": "Thomas Jackson", "w": 0.141}], "ss": [{"d": "AL Senate District 23", "rep": "Rob Stewart", "w": 1.0}]}, "munis": [], "slug": "wilcox"}, "01133": {"county": [], "districts": {"cd": [{"d": "AL-04", "rep": "Robert B. Aderholt", "w": 1.0}], "sh": [{"d": "AL House District 14", "rep": "Tim Wadsworth", "w": 0.974}, {"d": "AL House District 17", "rep": "Tracy Estes", "w": 0.025}], "ss": [{"d": "AL Senate District 4", "rep": "Garlan Gudger", "w": 1.0}]}, "munis": [], "slug": "winston"}, "02013": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.495}], "sh": [{"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.477}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.477}]}, "munis": [], "slug": "aleutians-east-borough"}, "02016": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.341}], "sh": [{"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.322}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.322}]}, "munis": [], "slug": "aleutians-west-census-area"}, "02020": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.895}], "sh": [{"d": "AK House District 24", "rep": "Dan Saddler", "w": 0.351}, {"d": "AK House District 9", "rep": "Ky Holland", "w": 0.315}, {"d": "AK House District 23", "rep": "Jamie Allard", "w": 0.16}, {"d": "AK House District 18", "rep": "David Nelson", "w": 0.019}, {"d": "AK House District 16", "rep": "Carolyn Hall", "w": 0.011}, {"d": "AK House District 12", "rep": "Calvin Schrage", "w": 0.006}], "ss": [{"d": "AK Senate District L", "rep": "Kelly Merrick", "w": 0.511}, {"d": "AK Senate District E", "rep": "Cathy Giessel", "w": 0.319}, {"d": "AK Senate District I", "rep": "Löki Tobin", "w": 0.022}, {"d": "AK Senate District H", "rep": "Matt Claman", "w": 0.013}, {"d": "AK Senate District F", "rep": "James Kaufman", "w": 0.011}, {"d": "AK Senate District G", "rep": "Elvi Gray-Jackson", "w": 0.005}]}, "munis": [], "slug": "anchorage-municipality"}, "02050": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.934}], "sh": [{"d": "AK House District 38", "rep": "Nellie Jimmie", "w": 0.479}, {"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.455}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.934}]}, "munis": [], "slug": "bethel-census-area"}, "02060": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.604}], "sh": [{"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.602}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.602}]}, "munis": [], "slug": "bristol-bay-borough"}, "02063": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.689}], "sh": [{"d": "AK House District 5", "rep": "Louise Stutes", "w": 0.504}, {"d": "AK House District 29", "rep": "Garret Nelson", "w": 0.156}], "ss": [{"d": "AK Senate District C", "rep": "Gary Stevens", "w": 0.504}, {"d": "AK Senate District O", "rep": "George Rauscher", "w": 0.156}]}, "munis": [], "slug": ""}, "02066": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 1.0}], "sh": [{"d": "AK House District 36", "rep": "Becky Schwanke", "w": 0.874}, {"d": "AK House District 29", "rep": "Garret Nelson", "w": 0.126}], "ss": [{"d": "AK Senate District R", "rep": "Mike Cronk", "w": 0.874}, {"d": "AK Senate District O", "rep": "George Rauscher", "w": 0.126}]}, "munis": [], "slug": ""}, "02068": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 1.0}], "sh": [{"d": "AK House District 30", "rep": "Kevin McCabe", "w": 1.0}], "ss": [{"d": "AK Senate District O", "rep": "George Rauscher", "w": 1.0}]}, "munis": [], "slug": "denali-borough"}, "02070": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.923}], "sh": [{"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.921}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.921}]}, "munis": [], "slug": "dillingham-census-area"}, "02090": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 1.0}], "sh": [{"d": "AK House District 34", "rep": "Frank Tomaszewski", "w": 0.561}, {"d": "AK House District 36", "rep": "Becky Schwanke", "w": 0.214}, {"d": "AK House District 35", "rep": "Ashley Carrick", "w": 0.203}, {"d": "AK House District 33", "rep": "Mike Prax", "w": 0.015}, {"d": "AK House District 32", "rep": "Will Stapp", "w": 0.005}], "ss": [{"d": "AK Senate District Q", "rep": "Robert Myers", "w": 0.576}, {"d": "AK Senate District R", "rep": "Mike Cronk", "w": 0.417}, {"d": "AK Senate District P", "rep": "Scott Kawasaki", "w": 0.007}]}, "munis": [{"m": "Fairbanks", "p": [{"n": "David Pruhs", "r": "Mayor, Fairbanks, AK"}]}], "slug": "fairbanks-north-star-borough"}, "02100": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.881}], "sh": [{"d": "AK House District 3", "rep": "Andi Story", "w": 0.878}], "ss": [{"d": "AK Senate District B", "rep": "Jesse Kiehl", "w": 0.878}]}, "munis": [], "slug": "haines-borough"}, "02105": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.735}], "sh": [{"d": "AK House District 2", "rep": "Rebecca Himschoot", "w": 0.552}, {"d": "AK House District 3", "rep": "Andi Story", "w": 0.164}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.552}, {"d": "AK Senate District B", "rep": "Jesse Kiehl", "w": 0.164}]}, "munis": [], "slug": "hoonah-angoon-census-area"}, "02110": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.876}], "sh": [{"d": "AK House District 4", "rep": "Sara Hannan", "w": 0.656}, {"d": "AK House District 3", "rep": "Andi Story", "w": 0.207}], "ss": [{"d": "AK Senate District B", "rep": "Jesse Kiehl", "w": 0.863}]}, "munis": [], "slug": "juneau-city-and-borough"}, "02122": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.674}], "sh": [{"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.314}, {"d": "AK House District 8", "rep": "Bill Elam", "w": 0.176}, {"d": "AK House District 6", "rep": "Sarah Vance", "w": 0.105}, {"d": "AK House District 5", "rep": "Louise Stutes", "w": 0.068}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.314}, {"d": "AK Senate District D", "rep": "Jesse Bjorkman", "w": 0.179}, {"d": "AK Senate District C", "rep": "Gary Stevens", "w": 0.173}]}, "munis": [], "slug": "kenai-peninsula-borough"}, "02130": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.789}], "sh": [{"d": "AK House District 1", "rep": "Jeremy Bynum", "w": 0.775}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.775}]}, "munis": [], "slug": "ketchikan-gateway-borough"}, "02150": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.596}], "sh": [{"d": "AK House District 5", "rep": "Louise Stutes", "w": 0.431}, {"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.152}], "ss": [{"d": "AK Senate District C", "rep": "Gary Stevens", "w": 0.431}, {"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.152}]}, "munis": [], "slug": "kodiak-island-borough"}, "02158": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.922}], "sh": [{"d": "AK House District 39", "rep": "Neal Foster", "w": 0.728}, {"d": "AK House District 38", "rep": "Nellie Jimmie", "w": 0.181}, {"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.01}], "ss": [{"d": "AK Senate District T", "rep": "Donny Olson", "w": 0.728}, {"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.191}]}, "munis": [], "slug": ""}, "02164": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.793}], "sh": [{"d": "AK House District 37", "rep": "Bryce Edgmon", "w": 0.791}], "ss": [{"d": "AK Senate District S", "rep": "Lyman Hoffman", "w": 0.791}]}, "munis": [], "slug": "lake-and-peninsula-borough"}, "02170": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.99}], "sh": [{"d": "AK House District 30", "rep": "Kevin McCabe", "w": 0.495}, {"d": "AK House District 29", "rep": "Garret Nelson", "w": 0.48}, {"d": "AK House District 25", "rep": "DeLena Johnson", "w": 0.008}], "ss": [{"d": "AK Senate District O", "rep": "George Rauscher", "w": 0.974}, {"d": "AK Senate District M", "rep": "Cathy Tilton", "w": 0.011}]}, "munis": [], "slug": "matanuska-susitna-borough"}, "02180": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.843}], "sh": [{"d": "AK House District 39", "rep": "Neal Foster", "w": 0.841}], "ss": [{"d": "AK Senate District T", "rep": "Donny Olson", "w": 0.841}]}, "munis": [], "slug": "nome-census-area"}, "02185": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.95}], "sh": [{"d": "AK House District 40", "rep": "Robyn Frier", "w": 0.949}], "ss": [{"d": "AK Senate District T", "rep": "Donny Olson", "w": 0.949}]}, "munis": [], "slug": "north-slope-borough"}, "02188": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.907}], "sh": [{"d": "AK House District 40", "rep": "Robyn Frier", "w": 0.896}], "ss": [{"d": "AK Senate District T", "rep": "Donny Olson", "w": 0.896}]}, "munis": [], "slug": "northwest-arctic-borough"}, "02195": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.805}], "sh": [{"d": "AK House District 2", "rep": "Rebecca Himschoot", "w": 0.8}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.8}]}, "munis": [], "slug": "petersburg-borough"}, "02198": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.569}], "sh": [{"d": "AK House District 2", "rep": "Rebecca Himschoot", "w": 0.499}, {"d": "AK House District 1", "rep": "Jeremy Bynum", "w": 0.038}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.537}]}, "munis": [], "slug": "prince-of-wales-hyder-census-area"}, "02220": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.691}], "sh": [{"d": "AK House District 2", "rep": "Rebecca Himschoot", "w": 0.661}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.661}]}, "munis": [], "slug": "sitka-city-and-borough"}, "02230": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 1.0}], "sh": [{"d": "AK House District 3", "rep": "Andi Story", "w": 0.98}], "ss": [{"d": "AK Senate District B", "rep": "Jesse Kiehl", "w": 0.98}]}, "munis": [], "slug": "skagway-municipality"}, "02240": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 1.0}], "sh": [{"d": "AK House District 36", "rep": "Becky Schwanke", "w": 1.0}], "ss": [{"d": "AK Senate District R", "rep": "Mike Cronk", "w": 1.0}]}, "munis": [], "slug": "southeast-fairbanks-census-area"}, "02275": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.803}], "sh": [{"d": "AK House District 1", "rep": "Jeremy Bynum", "w": 0.771}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.771}]}, "munis": [], "slug": "wrangell-city-and-borough"}, "02282": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 0.869}], "sh": [{"d": "AK House District 2", "rep": "Rebecca Himschoot", "w": 0.867}], "ss": [{"d": "AK Senate District A", "rep": "Bert Stedman", "w": 0.867}]}, "munis": [], "slug": "yakutat-city-and-borough"}, "02290": {"county": [], "districts": {"cd": [{"d": "AK-00", "rep": "Nicholas J. Begich III", "w": 1.0}], "sh": [{"d": "AK House District 36", "rep": "Becky Schwanke", "w": 1.0}], "ss": [{"d": "AK Senate District R", "rep": "Mike Cronk", "w": 1.0}]}, "munis": [], "slug": "yukon-koyukuk-census-area"}, "04001": {"county": [], "districts": {"cd": [{"d": "AZ-02", "rep": "Elijah Crane", "w": 1.0}], "sh": [{"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 1.0}], "ss": [{"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 1.0}]}, "munis": [], "slug": "apache"}, "04003": {"county": [], "districts": {"cd": [{"d": "AZ-06", "rep": "Juan Ciscomani", "w": 0.93}, {"d": "AZ-07", "rep": "Adelita S. Grijalva", "w": 0.07}], "sh": [{"d": "AZ House District 19", "rep": "Gail Griffin, Lupe Diaz", "w": 0.954}, {"d": "AZ House District 21", "rep": "Consuelo Hernandez, Stephanie Stahl Hamilton", "w": 0.046}], "ss": [{"d": "AZ Senate District 19", "rep": "David Gowan", "w": 0.954}, {"d": "AZ Senate District 21", "rep": "Rosanna Gabaldón", "w": 0.046}]}, "munis": [{"m": "Bisbee", "p": [{"n": "Ken Budge", "r": "Mayor, Bisbee, AZ"}]}], "slug": "cochise"}, "04005": {"county": [], "districts": {"cd": [{"d": "AZ-02", "rep": "Elijah Crane", "w": 1.0}], "sh": [{"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 0.812}, {"d": "AZ House District 7", "rep": "Sylvia Allen, Walt Blackman", "w": 0.188}], "ss": [{"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 0.812}, {"d": "AZ Senate District 7", "rep": "Wendy Rogers", "w": 0.188}]}, "munis": [{"m": "Flagstaff", "p": [{"n": "Paul Deasy", "r": "Mayor, Flagstaff, AZ"}]}], "slug": "coconino"}, "04007": {"county": [], "districts": {"cd": [{"d": "AZ-02", "rep": "Elijah Crane", "w": 1.0}], "sh": [{"d": "AZ House District 7", "rep": "Sylvia Allen, Walt Blackman", "w": 0.616}, {"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 0.384}], "ss": [{"d": "AZ Senate District 7", "rep": "Wendy Rogers", "w": 0.616}, {"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 0.384}]}, "munis": [], "slug": "gila"}, "04009": {"county": [], "districts": {"cd": [{"d": "AZ-06", "rep": "Juan Ciscomani", "w": 0.633}, {"d": "AZ-02", "rep": "Elijah Crane", "w": 0.367}], "sh": [{"d": "AZ House District 19", "rep": "Gail Griffin, Lupe Diaz", "w": 0.633}, {"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 0.367}], "ss": [{"d": "AZ Senate District 19", "rep": "David Gowan", "w": 0.633}, {"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 0.367}]}, "munis": [{"m": "Safford", "p": [{"n": "Jason Kouts", "r": "Mayor, Safford, AZ"}]}], "slug": "graham"}, "04011": {"county": [], "districts": {"cd": [{"d": "AZ-06", "rep": "Juan Ciscomani", "w": 1.0}], "sh": [{"d": "AZ House District 19", "rep": "Gail Griffin, Lupe Diaz", "w": 1.0}], "ss": [{"d": "AZ Senate District 19", "rep": "David Gowan", "w": 1.0}]}, "munis": [], "slug": "greenlee"}, "04012": {"county": [], "districts": {"cd": [{"d": "AZ-09", "rep": "Paul A. Gosar", "w": 1.0}], "sh": [{"d": "AZ House District 30", "rep": "John Gillette, Leo Biasiucci", "w": 1.0}], "ss": [{"d": "AZ Senate District 30", "rep": "Hildy Angius", "w": 1.0}]}, "munis": [], "slug": "la-paz"}, "04013": {"county": [], "districts": {"cd": [{"d": "AZ-09", "rep": "Paul A. Gosar", "w": 0.353}, {"d": "AZ-07", "rep": "Adelita S. Grijalva", "w": 0.325}, {"d": "AZ-01", "rep": "David Schweikert", "w": 0.176}, {"d": "AZ-08", "rep": "Abraham J. Hamadeh", "w": 0.063}, {"d": "AZ-05", "rep": "Andy Biggs", "w": 0.025}, {"d": "AZ-03", "rep": "Yassamin Ansari", "w": 0.022}, {"d": "AZ-04", "rep": "Greg Stanton", "w": 0.019}, {"d": "AZ-02", "rep": "Elijah Crane", "w": 0.017}], "sh": [{"d": "AZ House District 23", "rep": "Mariana Sandoval, Michele Peña", "w": 0.289}, {"d": "AZ House District 25", "rep": "Michael Carbone, Nick Kupper", "w": 0.242}, {"d": "AZ House District 3", "rep": "Alex Kolodin, Cody Reim", "w": 0.162}, {"d": "AZ House District 30", "rep": "John Gillette, Leo Biasiucci", "w": 0.098}, {"d": "AZ House District 29", "rep": "James Taylor, Steve Montenegro", "w": 0.042}, {"d": "AZ House District 28", "rep": "Beverly Pingerelli, David Livingston", "w": 0.033}, {"d": "AZ House District 8", "rep": "Brian Garcia, Janeen Connolly", "w": 0.015}, {"d": "AZ House District 12", "rep": "Patty Contreras, Stacey Travers", "w": 0.014}, {"d": "AZ House District 22", "rep": "Elda Luna-Nájera, Lupe Contreras", "w": 0.012}, {"d": "AZ House District 11", "rep": "Junelle Cavero, Oscar De Los Santos", "w": 0.011}, {"d": "AZ House District 4", "rep": "Matt Gress, Pamela Carter", "w": 0.011}, {"d": "AZ House District 10", "rep": "Justin Olson, Ralph Heap", "w": 0.009}, {"d": "AZ House District 16", "rep": "Chris Lopez, Teresa Martinez", "w": 0.009}, {"d": "AZ House District 2", "rep": "Justin Wilmeth, Stephanie Simacek", "w": 0.009}, {"d": "AZ House District 15", "rep": "Michael Way, Neal Carter", "w": 0.008}, {"d": "AZ House District 14", "rep": "Khyl Powell, Laurin Hendrix", "w": 0.007}, {"d": "AZ House District 13", "rep": "Jeff Weninger, Julie Willoughby", "w": 0.007}, {"d": "AZ House District 27", "rep": "Lisa Fink, Tony Rivero", "w": 0.006}], "ss": [{"d": "AZ Senate District 23", "rep": "Brian Fernandez", "w": 0.289}, {"d": "AZ Senate District 25", "rep": "Tim Dunn", "w": 0.242}, {"d": "AZ Senate District 3", "rep": "John Kavanagh", "w": 0.162}, {"d": "AZ Senate District 30", "rep": "Hildy Angius", "w": 0.098}, {"d": "AZ Senate District 29", "rep": "Janae Shamp", "w": 0.042}, {"d": "AZ Senate District 28", "rep": "Frank Carroll", "w": 0.033}, {"d": "AZ Senate District 8", "rep": "Lauren Kuby", "w": 0.015}, {"d": "AZ Senate District 12", "rep": "Mitzi Epstein", "w": 0.014}, {"d": "AZ Senate District 22", "rep": "Eva Diaz", "w": 0.012}, {"d": "AZ Senate District 11", "rep": "Catherine Miranda", "w": 0.011}, {"d": "AZ Senate District 4", "rep": "Carine Werner", "w": 0.011}, {"d": "AZ Senate District 10", "rep": "Dave Farnsworth", "w": 0.009}, {"d": "AZ Senate District 16", "rep": "T.J. Shope", "w": 0.009}, {"d": "AZ Senate District 2", "rep": "Shawnna Bolick", "w": 0.009}, {"d": "AZ Senate District 15", "rep": "Jake Hoffman", "w": 0.008}, {"d": "AZ Senate District 14", "rep": "Warren Petersen", "w": 0.007}, {"d": "AZ Senate District 13", "rep": "J.D. Mesnard", "w": 0.007}, {"d": "AZ Senate District 27", "rep": "Kevin Payne", "w": 0.006}]}, "munis": [{"m": "Avondale", "p": [{"n": "Kenneth Weise", "r": "Mayor, Avondale, AZ"}]}, {"m": "Buckeye", "p": [{"n": "Eric Orsborn", "r": "Mayor, Buckeye, AZ"}]}, {"m": "Chandler", "p": [{"n": "Jay Tibshraeny", "r": "Mayor, Chandler, AZ"}]}, {"m": "El Mirage", "p": [{"n": "Alexis Hermosillo", "r": "Mayor, El Mirage, AZ"}]}, {"m": "Glendale", "p": [{"n": "Q61858351", "r": "Mayor, Glendale, AZ"}]}, {"m": "Goodyear", "p": [{"n": "Joe Pizzillo", "r": "Mayor, Goodyear, AZ"}]}, {"m": "Mesa", "p": [{"n": "John Giles", "r": "Mayor, Mesa, AZ"}]}, {"m": "Peoria", "p": [{"n": "Cathy Carlat", "r": "Mayor, Peoria, AZ"}]}, {"m": "Phoenix", "p": [{"n": "Kate Gallego", "r": "Mayor, Phoenix, AZ"}]}, {"m": "Scottsdale", "p": [{"n": "Lisa Borowsky", "r": "Mayor, Scottsdale, AZ"}]}, {"m": "Surprise", "p": [{"n": "Skip Hall", "r": "Mayor, Surprise, AZ"}]}, {"m": "Tempe", "p": [{"n": "Corey Woods", "r": "Mayor, Tempe, AZ"}]}], "slug": "maricopa"}, "04015": {"county": [], "districts": {"cd": [{"d": "AZ-09", "rep": "Paul A. Gosar", "w": 0.929}, {"d": "AZ-02", "rep": "Elijah Crane", "w": 0.07}], "sh": [{"d": "AZ House District 30", "rep": "John Gillette, Leo Biasiucci", "w": 0.929}, {"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 0.07}], "ss": [{"d": "AZ Senate District 30", "rep": "Hildy Angius", "w": 0.929}, {"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 0.07}]}, "munis": [{"m": "Kingman", "p": [{"n": "Jen Miles", "r": "Mayor, Kingman, AZ"}]}], "slug": "mohave"}, "04017": {"county": [], "districts": {"cd": [{"d": "AZ-02", "rep": "Elijah Crane", "w": 1.0}], "sh": [{"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 0.767}, {"d": "AZ House District 7", "rep": "Sylvia Allen, Walt Blackman", "w": 0.233}], "ss": [{"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 0.767}, {"d": "AZ Senate District 7", "rep": "Wendy Rogers", "w": 0.233}]}, "munis": [{"m": "Holbrook", "p": [{"n": "J. Merrill Young", "r": "Mayor, Holbrook, AZ"}]}], "slug": "navajo"}, "04019": {"county": [], "districts": {"cd": [{"d": "AZ-07", "rep": "Adelita S. Grijalva", "w": 0.806}, {"d": "AZ-06", "rep": "Juan Ciscomani", "w": 0.194}], "sh": [{"d": "AZ House District 23", "rep": "Mariana Sandoval, Michele Peña", "w": 0.63}, {"d": "AZ House District 21", "rep": "Consuelo Hernandez, Stephanie Stahl Hamilton", "w": 0.115}, {"d": "AZ House District 17", "rep": "Kevin Volk, Rachel Keshel", "w": 0.114}, {"d": "AZ House District 19", "rep": "Gail Griffin, Lupe Diaz", "w": 0.068}, {"d": "AZ House District 16", "rep": "Chris Lopez, Teresa Martinez", "w": 0.053}, {"d": "AZ House District 18", "rep": "Chris Mathis, Nancy Gutierrez", "w": 0.01}, {"d": "AZ House District 20", "rep": "Alma Hernández, Betty Villegas", "w": 0.009}], "ss": [{"d": "AZ Senate District 23", "rep": "Brian Fernandez", "w": 0.63}, {"d": "AZ Senate District 21", "rep": "Rosanna Gabaldón", "w": 0.115}, {"d": "AZ Senate District 17", "rep": "Vince Leach", "w": 0.114}, {"d": "AZ Senate District 19", "rep": "David Gowan", "w": 0.068}, {"d": "AZ Senate District 16", "rep": "T.J. Shope", "w": 0.053}, {"d": "AZ Senate District 18", "rep": "Priya Sundareshan", "w": 0.01}, {"d": "AZ Senate District 20", "rep": "Sally Gonzales", "w": 0.009}]}, "munis": [{"m": "Tucson", "p": [{"n": "Regina Romero", "r": "Mayor, Tucson, AZ"}]}], "slug": "pima"}, "04021": {"county": [], "districts": {"cd": [{"d": "AZ-02", "rep": "Elijah Crane", "w": 0.548}, {"d": "AZ-06", "rep": "Juan Ciscomani", "w": 0.252}, {"d": "AZ-07", "rep": "Adelita S. Grijalva", "w": 0.167}, {"d": "AZ-05", "rep": "Andy Biggs", "w": 0.033}], "sh": [{"d": "AZ House District 16", "rep": "Chris Lopez, Teresa Martinez", "w": 0.453}, {"d": "AZ House District 7", "rep": "Sylvia Allen, Walt Blackman", "w": 0.363}, {"d": "AZ House District 23", "rep": "Mariana Sandoval, Michele Peña", "w": 0.077}, {"d": "AZ House District 6", "rep": "Mae Peshlakai, Myron Tsosie", "w": 0.04}, {"d": "AZ House District 17", "rep": "Kevin Volk, Rachel Keshel", "w": 0.039}, {"d": "AZ House District 15", "rep": "Michael Way, Neal Carter", "w": 0.028}], "ss": [{"d": "AZ Senate District 16", "rep": "T.J. Shope", "w": 0.453}, {"d": "AZ Senate District 7", "rep": "Wendy Rogers", "w": 0.363}, {"d": "AZ Senate District 23", "rep": "Brian Fernandez", "w": 0.077}, {"d": "AZ Senate District 6", "rep": "Theresa Hatathlie", "w": 0.04}, {"d": "AZ Senate District 17", "rep": "Vince Leach", "w": 0.039}, {"d": "AZ Senate District 15", "rep": "Jake Hoffman", "w": 0.028}]}, "munis": [], "slug": "pinal"}, "04023": {"county": [], "districts": {"cd": [{"d": "AZ-07", "rep": "Adelita S. Grijalva", "w": 1.0}], "sh": [{"d": "AZ House District 21", "rep": "Consuelo Hernandez, Stephanie Stahl Hamilton", "w": 0.624}, {"d": "AZ House District 19", "rep": "Gail Griffin, Lupe Diaz", "w": 0.376}], "ss": [{"d": "AZ Senate District 21", "rep": "Rosanna Gabaldón", "w": 0.624}, {"d": "AZ Senate District 19", "rep": "David Gowan", "w": 0.376}]}, "munis": [{"m": "Nogales", "p": [{"n": "Arturo Garino", "r": "Mayor, Nogales, AZ"}]}], "slug": "santa-cruz"}, "04025": {"county": [], "districts": {"cd": [{"d": "AZ-02", "rep": "Elijah Crane", "w": 1.0}], "sh": [{"d": "AZ House District 1", "rep": "Quang Nguyen, Selina Bliss", "w": 0.999}], "ss": [{"d": "AZ Senate District 1", "rep": "Mark Finchem", "w": 0.999}]}, "munis": [{"m": "Prescott", "p": [{"n": "Phil Goode", "r": "Mayor, Prescott, AZ"}]}], "slug": "yavapai"}, "04027": {"county": [], "districts": {"cd": [{"d": "AZ-09", "rep": "Paul A. Gosar", "w": 0.562}, {"d": "AZ-07", "rep": "Adelita S. Grijalva", "w": 0.438}], "sh": [{"d": "AZ House District 25", "rep": "Michael Carbone, Nick Kupper", "w": 0.562}, {"d": "AZ House District 23", "rep": "Mariana Sandoval, Michele Peña", "w": 0.438}], "ss": [{"d": "AZ Senate District 25", "rep": "Tim Dunn", "w": 0.562}, {"d": "AZ Senate District 23", "rep": "Brian Fernandez", "w": 0.438}]}, "munis": [], "slug": "yuma"}, "05001": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.999}], "sh": [{"d": "AR House District 61", "rep": "Jeremiah Moore", "w": 0.612}, {"d": "AR House District 62", "rep": "Mark McElroy", "w": 0.357}, {"d": "AR House District 65", "rep": "Glenn Barnes", "w": 0.03}], "ss": [{"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.584}, {"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 0.416}]}, "munis": [], "slug": "arkansas"}, "05003": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 95", "rep": "Howard Beaty", "w": 1.0}], "ss": [{"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 1.0}]}, "munis": [], "slug": "ashley"}, "05005": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 3", "rep": "Stetson Painter", "w": 0.472}, {"d": "AR House District 4", "rep": "Jason Nazarenko", "w": 0.447}, {"d": "AR House District 27", "rep": "Steven Walker", "w": 0.081}], "ss": [{"d": "AR Senate District 23", "rep": "Scott Flippo", "w": 1.0}]}, "munis": [], "slug": "baxter"}, "05007": {"county": [], "districts": {"cd": [{"d": "AR-03", "rep": "Steve Womack", "w": 1.0}], "sh": [{"d": "AR House District 12", "rep": "Hope Duke", "w": 0.252}, {"d": "AR House District 7", "rep": "Brit McKenzie", "w": 0.242}, {"d": "AR House District 17", "rep": "Randy Torres", "w": 0.177}, {"d": "AR House District 8", "rep": "Austin McCollum", "w": 0.083}, {"d": "AR House District 16", "rep": "Kendon Underwood", "w": 0.077}, {"d": "AR House District 14", "rep": "Nick Burkes", "w": 0.058}, {"d": "AR House District 10", "rep": "Mindy McAlindon", "w": 0.037}, {"d": "AR House District 11", "rep": "Rebecca Burkes", "w": 0.035}, {"d": "AR House District 13", "rep": "Scott Richardson", "w": 0.021}, {"d": "AR House District 15", "rep": "John Carr", "w": 0.015}], "ss": [{"d": "AR Senate District 32", "rep": "Josh Bryant", "w": 0.345}, {"d": "AR Senate District 35", "rep": "Tyler Dees", "w": 0.303}, {"d": "AR Senate District 33", "rep": "Bart Hester", "w": 0.21}, {"d": "AR Senate District 34", "rep": "Jim Dotson", "w": 0.142}]}, "munis": [{"m": "Bentonville", "p": [{"n": "Stephanie Orman", "r": "Mayor, Bentonville, AR"}]}], "slug": "benton"}, "05009": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.999}], "sh": [{"d": "AR House District 5", "rep": "Ron McNair", "w": 0.603}, {"d": "AR House District 6", "rep": "Harlan Breaux", "w": 0.397}], "ss": [{"d": "AR Senate District 28", "rep": "Bryan King", "w": 0.605}, {"d": "AR Senate District 23", "rep": "Scott Flippo", "w": 0.395}]}, "munis": [], "slug": "boone"}, "05011": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 96", "rep": "Sonia Barker", "w": 0.575}, {"d": "AR House District 94", "rep": "Jeff Wardlaw", "w": 0.425}], "ss": [{"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 1.0}]}, "munis": [], "slug": "bradley"}, "05013": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 96", "rep": "Sonia Barker", "w": 1.0}], "ss": [{"d": "AR Senate District 2", "rep": "Matt Stone", "w": 1.0}]}, "munis": [], "slug": "calhoun"}, "05015": {"county": [], "districts": {"cd": [{"d": "AR-03", "rep": "Steve Womack", "w": 0.999}], "sh": [{"d": "AR House District 6", "rep": "Harlan Breaux", "w": 0.661}, {"d": "AR House District 26", "rep": "James Eaton", "w": 0.339}], "ss": [{"d": "AR Senate District 28", "rep": "Bryan King", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "05017": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.995}], "sh": [{"d": "AR House District 95", "rep": "Howard Beaty", "w": 0.999}], "ss": [{"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 0.999}]}, "munis": [], "slug": "chicot"}, "05019": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 89", "rep": "Justin Gonzales", "w": 0.918}, {"d": "AR House District 90", "rep": "Richard Womack", "w": 0.081}], "ss": [{"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 1.0}]}, "munis": [], "slug": "clark"}, "05021": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 1", "rep": "Jeremy Wooldridge", "w": 0.999}], "ss": [{"d": "AR Senate District 21", "rep": "Blake Johnson", "w": 0.999}]}, "munis": [{"m": "Piggott", "p": [{"n": "Jeff Benbrook", "r": "Mayor, Piggott, AR"}]}], "slug": "clay"}, "05023": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 1.0}], "sh": [{"d": "AR House District 41", "rep": "Alyssa Brown", "w": 0.89}, {"d": "AR House District 40", "rep": "Shad Pearce", "w": 0.081}, {"d": "AR House District 42", "rep": "Stephen Meeks", "w": 0.029}], "ss": [{"d": "AR Senate District 22", "rep": "John Payton", "w": 0.529}, {"d": "AR Senate District 18", "rep": "Jonathan Dismang", "w": 0.29}, {"d": "AR Senate District 24", "rep": "Missy Irvin", "w": 0.181}]}, "munis": [], "slug": "cleburne"}, "05025": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 96", "rep": "Sonia Barker", "w": 0.636}, {"d": "AR House District 93", "rep": "Mike Holcomb", "w": 0.364}], "ss": [{"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 1.0}]}, "munis": [], "slug": "cleveland"}, "05027": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 99", "rep": "Lane Jean", "w": 0.757}, {"d": "AR House District 98", "rep": "Wade Andrews", "w": 0.243}], "ss": [{"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 1.0}]}, "munis": [{"m": "Magnolia", "p": [{"n": "Parnell Vann", "r": "Mayor, Magnolia, AR"}]}], "slug": "columbia"}, "05029": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 0.999}], "sh": [{"d": "AR House District 43", "rep": "Rick Beck", "w": 1.0}], "ss": [{"d": "AR Senate District 25", "rep": "Breanne Davis", "w": 0.891}, {"d": "AR Senate District 5", "rep": "Terry Rice", "w": 0.109}]}, "munis": [], "slug": "conway"}, "05031": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 33", "rep": "Jon Milligan", "w": 0.446}, {"d": "AR House District 38", "rep": "Dwight Tosh", "w": 0.297}, {"d": "AR House District 30", "rep": "Fran Cavenaugh", "w": 0.135}, {"d": "AR House District 36", "rep": "Johnny Rye", "w": 0.089}, {"d": "AR House District 32", "rep": "Jack Ladyman", "w": 0.033}], "ss": [{"d": "AR Senate District 19", "rep": "Dave Wallace", "w": 0.795}, {"d": "AR Senate District 20", "rep": "Dan Sullivan", "w": 0.205}]}, "munis": [{"m": "Jonesboro", "p": [{"n": "Harold Copenhaver", "r": "Mayor, Jonesboro, AR"}]}], "slug": "craighead"}, "05033": {"county": [], "districts": {"cd": [{"d": "AR-03", "rep": "Steve Womack", "w": 0.999}], "sh": [{"d": "AR House District 24", "rep": "Brad Hall", "w": 0.573}, {"d": "AR House District 25", "rep": "Chad Puryear", "w": 0.328}, {"d": "AR House District 48", "rep": "Ryan Rose", "w": 0.098}], "ss": [{"d": "AR Senate District 29", "rep": "Jim Petty", "w": 1.0}]}, "munis": [{"m": "Van Buren", "p": [{"n": "Joe Hurst", "r": "Mayor, Van Buren, AR"}]}], "slug": "crawford"}, "05035": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 35", "rep": "Jessie McGruder", "w": 0.692}, {"d": "AR House District 63", "rep": "Lincoln Barnett", "w": 0.306}], "ss": [{"d": "AR Senate District 9", "rep": "Reginald Murdock", "w": 0.999}]}, "munis": [{"m": "West Memphis", "p": [{"n": "Marco McClendon", "r": "Mayor, West Memphis, AR"}]}], "slug": "crittenden"}, "05037": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 37", "rep": "Steve Hollowell", "w": 0.858}, {"d": "AR House District 35", "rep": "Jessie McGruder", "w": 0.141}], "ss": [{"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 1.0}]}, "munis": [], "slug": "cross"}, "05039": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 96", "rep": "Sonia Barker", "w": 1.0}], "ss": [{"d": "AR Senate District 2", "rep": "Matt Stone", "w": 1.0}]}, "munis": [], "slug": "dallas"}, "05041": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 62", "rep": "Mark McElroy", "w": 0.705}, {"d": "AR House District 94", "rep": "Jeff Wardlaw", "w": 0.2}, {"d": "AR House District 64", "rep": "Ken Ferguson", "w": 0.094}], "ss": [{"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.999}]}, "munis": [], "slug": "desha"}, "05043": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 94", "rep": "Jeff Wardlaw", "w": 0.93}, {"d": "AR House District 93", "rep": "Mike Holcomb", "w": 0.07}], "ss": [{"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 0.949}, {"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.051}]}, "munis": [], "slug": "drew"}, "05045": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 1.0}], "sh": [{"d": "AR House District 42", "rep": "Stephen Meeks", "w": 0.388}, {"d": "AR House District 57", "rep": "Cameron Cooper", "w": 0.275}, {"d": "AR House District 69", "rep": "David Ray", "w": 0.142}, {"d": "AR House District 54", "rep": "Mary Bentley", "w": 0.103}, {"d": "AR House District 56", "rep": "Steve Magie", "w": 0.068}, {"d": "AR House District 55", "rep": "Matt Brown", "w": 0.024}], "ss": [{"d": "AR Senate District 24", "rep": "Missy Irvin", "w": 0.678}, {"d": "AR Senate District 17", "rep": "Mark Johnson", "w": 0.228}, {"d": "AR Senate District 18", "rep": "Jonathan Dismang", "w": 0.094}]}, "munis": [], "slug": "faulkner"}, "05047": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 0.999}], "sh": [{"d": "AR House District 26", "rep": "James Eaton", "w": 0.501}, {"d": "AR House District 46", "rep": "Jon Eubanks", "w": 0.345}, {"d": "AR House District 25", "rep": "Chad Puryear", "w": 0.154}], "ss": [{"d": "AR Senate District 26", "rep": "Brad Simon", "w": 0.52}, {"d": "AR Senate District 28", "rep": "Bryan King", "w": 0.48}]}, "munis": [], "slug": "franklin"}, "05049": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 2", "rep": "Trey Steimel", "w": 0.662}, {"d": "AR House District 3", "rep": "Stetson Painter", "w": 0.338}], "ss": [{"d": "AR Senate District 23", "rep": "Scott Flippo", "w": 0.862}, {"d": "AR Senate District 22", "rep": "John Payton", "w": 0.138}]}, "munis": [], "slug": "fulton"}, "05051": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 0.999}], "sh": [{"d": "AR House District 85", "rep": "Richard McGrew", "w": 0.66}, {"d": "AR House District 84", "rep": "Les Warren", "w": 0.183}, {"d": "AR House District 90", "rep": "Richard Womack", "w": 0.075}, {"d": "AR House District 91", "rep": "Bruce Cozart", "w": 0.047}, {"d": "AR House District 89", "rep": "Justin Gonzales", "w": 0.034}], "ss": [{"d": "AR Senate District 6", "rep": "Matt McKee", "w": 0.844}, {"d": "AR Senate District 7", "rep": "Alan Clark", "w": 0.156}]}, "munis": [], "slug": "garland"}, "05053": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 92", "rep": "Julie Mayberry", "w": 1.0}], "ss": [{"d": "AR Senate District 2", "rep": "Matt Stone", "w": 0.47}, {"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 0.269}, {"d": "AR Senate District 7", "rep": "Alan Clark", "w": 0.26}]}, "munis": [], "slug": "grant"}, "05055": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.999}], "sh": [{"d": "AR House District 1", "rep": "Jeremy Wooldridge", "w": 0.691}, {"d": "AR House District 30", "rep": "Fran Cavenaugh", "w": 0.209}, {"d": "AR House District 31", "rep": "Jimmy Gazaway", "w": 0.101}], "ss": [{"d": "AR Senate District 21", "rep": "Blake Johnson", "w": 1.0}]}, "munis": [], "slug": "greene"}, "05057": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 88", "rep": "Dolly Henley", "w": 1.0}], "ss": [{"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 0.674}, {"d": "AR Senate District 4", "rep": "Jimmy Hickey", "w": 0.326}]}, "munis": [{"m": "Hope", "p": [{"n": "Don Still", "r": "Mayor, Hope, AR"}]}], "slug": "hempstead"}, "05059": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 90", "rep": "Richard Womack", "w": 0.489}, {"d": "AR House District 29", "rep": "Rick McClure", "w": 0.413}, {"d": "AR House District 89", "rep": "Justin Gonzales", "w": 0.098}], "ss": [{"d": "AR Senate District 7", "rep": "Alan Clark", "w": 0.819}, {"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 0.181}]}, "munis": [], "slug": "hot-spring"}, "05061": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 86", "rep": "John Maddox", "w": 0.625}, {"d": "AR House District 88", "rep": "Dolly Henley", "w": 0.305}, {"d": "AR House District 87", "rep": "DeAnn Vaught", "w": 0.071}], "ss": [{"d": "AR Senate District 4", "rep": "Jimmy Hickey", "w": 1.0}]}, "munis": [], "slug": "howard"}, "05063": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 28", "rep": "Bart Schulz", "w": 0.501}, {"d": "AR House District 40", "rep": "Shad Pearce", "w": 0.295}, {"d": "AR House District 39", "rep": "Wayne Long", "w": 0.204}], "ss": [{"d": "AR Senate District 22", "rep": "John Payton", "w": 1.0}]}, "munis": [{"m": "Batesville", "p": [{"n": "Rick Elumbaugh", "r": "Mayor, Batesville, AR"}]}], "slug": "independence"}, "05065": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 27", "rep": "Steven Walker", "w": 1.0}], "ss": [{"d": "AR Senate District 23", "rep": "Scott Flippo", "w": 0.752}, {"d": "AR Senate District 22", "rep": "John Payton", "w": 0.248}]}, "munis": [], "slug": "izard"}, "05067": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.999}], "sh": [{"d": "AR House District 39", "rep": "Wayne Long", "w": 0.454}, {"d": "AR House District 61", "rep": "Jeremiah Moore", "w": 0.3}, {"d": "AR House District 38", "rep": "Dwight Tosh", "w": 0.246}], "ss": [{"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "05069": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 0.997}], "sh": [{"d": "AR House District 65", "rep": "Glenn Barnes", "w": 0.575}, {"d": "AR House District 93", "rep": "Mike Holcomb", "w": 0.255}, {"d": "AR House District 64", "rep": "Ken Ferguson", "w": 0.169}], "ss": [{"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.858}, {"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 0.142}]}, "munis": [], "slug": "jefferson"}, "05071": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 45", "rep": "Aaron Pilkington", "w": 0.973}, {"d": "AR House District 46", "rep": "Jon Eubanks", "w": 0.027}], "ss": [{"d": "AR Senate District 26", "rep": "Brad Simon", "w": 0.594}, {"d": "AR Senate District 28", "rep": "Bryan King", "w": 0.405}]}, "munis": [], "slug": "johnson"}, "05073": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 99", "rep": "Lane Jean", "w": 0.826}, {"d": "AR House District 98", "rep": "Wade Andrews", "w": 0.174}], "ss": [{"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 1.0}]}, "munis": [], "slug": "lafayette"}, "05075": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 28", "rep": "Bart Schulz", "w": 0.776}, {"d": "AR House District 30", "rep": "Fran Cavenaugh", "w": 0.224}], "ss": [{"d": "AR Senate District 22", "rep": "John Payton", "w": 0.776}, {"d": "AR Senate District 21", "rep": "Blake Johnson", "w": 0.224}]}, "munis": [], "slug": "lawrence"}, "05077": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 62", "rep": "Mark McElroy", "w": 1.0}], "ss": [{"d": "AR Senate District 9", "rep": "Reginald Murdock", "w": 0.549}, {"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 0.45}]}, "munis": [], "slug": "lee"}, "05079": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 93", "rep": "Mike Holcomb", "w": 0.652}, {"d": "AR House District 64", "rep": "Ken Ferguson", "w": 0.345}], "ss": [{"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.536}, {"d": "AR Senate District 1", "rep": "Ben Gilmore", "w": 0.464}]}, "munis": [], "slug": "lincoln"}, "05081": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 0.985}, {"d": "TX-04", "rep": "Pat Fallon", "w": 0.009}, {"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.006}], "sh": [{"d": "AR House District 87", "rep": "DeAnn Vaught", "w": 0.999}], "ss": [{"d": "AR Senate District 4", "rep": "Jimmy Hickey", "w": 0.999}]}, "munis": [], "slug": "little-river"}, "05083": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 46", "rep": "Jon Eubanks", "w": 1.0}], "ss": [{"d": "AR Senate District 26", "rep": "Brad Simon", "w": 0.797}, {"d": "AR Senate District 5", "rep": "Terry Rice", "w": 0.203}]}, "munis": [], "slug": "logan"}, "05085": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 60", "rep": "Roger Lynch", "w": 0.819}, {"d": "AR House District 59", "rep": "Jim Wooten", "w": 0.094}, {"d": "AR House District 68", "rep": "Brian Evans", "w": 0.064}, {"d": "AR House District 57", "rep": "Cameron Cooper", "w": 0.022}], "ss": [{"d": "AR Senate District 11", "rep": "Ricky Hill", "w": 0.436}, {"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.292}, {"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 0.272}]}, "munis": [{"m": "Cabot", "p": [{"n": "Ken Kincade", "r": "Mayor, Cabot, AR"}]}], "slug": "lonoke"}, "05087": {"county": [], "districts": {"cd": [{"d": "AR-03", "rep": "Steve Womack", "w": 1.0}], "sh": [{"d": "AR House District 26", "rep": "James Eaton", "w": 1.0}], "ss": [{"d": "AR Senate District 28", "rep": "Bryan King", "w": 1.0}]}, "munis": [], "slug": "madison"}, "05089": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 4", "rep": "Jason Nazarenko", "w": 1.0}], "ss": [{"d": "AR Senate District 23", "rep": "Scott Flippo", "w": 1.0}]}, "munis": [], "slug": "marion"}, "05091": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 99", "rep": "Lane Jean", "w": 0.735}, {"d": "AR House District 88", "rep": "Dolly Henley", "w": 0.181}, {"d": "AR House District 100", "rep": "Carol Dalby", "w": 0.083}], "ss": [{"d": "AR Senate District 4", "rep": "Jimmy Hickey", "w": 1.0}]}, "munis": [], "slug": "miller"}, "05093": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 33", "rep": "Jon Milligan", "w": 0.533}, {"d": "AR House District 34", "rep": "Joey Carr", "w": 0.466}], "ss": [{"d": "AR Senate District 19", "rep": "Dave Wallace", "w": 0.999}]}, "munis": [], "slug": "mississippi"}, "05095": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 62", "rep": "Mark McElroy", "w": 0.559}, {"d": "AR House District 61", "rep": "Jeremiah Moore", "w": 0.441}], "ss": [{"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "05097": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 86", "rep": "John Maddox", "w": 0.999}], "ss": [{"d": "AR Senate District 5", "rep": "Terry Rice", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "05099": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 89", "rep": "Justin Gonzales", "w": 0.791}, {"d": "AR House District 98", "rep": "Wade Andrews", "w": 0.209}], "ss": [{"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 1.0}]}, "munis": [], "slug": "nevada"}, "05101": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 0.999}], "sh": [{"d": "AR House District 27", "rep": "Steven Walker", "w": 1.0}], "ss": [{"d": "AR Senate District 28", "rep": "Bryan King", "w": 0.77}, {"d": "AR Senate District 24", "rep": "Missy Irvin", "w": 0.23}]}, "munis": [], "slug": "newton"}, "05103": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 98", "rep": "Wade Andrews", "w": 0.71}, {"d": "AR House District 96", "rep": "Sonia Barker", "w": 0.29}], "ss": [{"d": "AR Senate District 2", "rep": "Matt Stone", "w": 1.0}]}, "munis": [], "slug": "ouachita"}, "05105": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 0.999}], "sh": [{"d": "AR House District 54", "rep": "Mary Bentley", "w": 1.0}], "ss": [{"d": "AR Senate District 5", "rep": "Terry Rice", "w": 1.0}]}, "munis": [], "slug": "perry"}, "05107": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.998}], "sh": [{"d": "AR House District 62", "rep": "Mark McElroy", "w": 1.0}], "ss": [{"d": "AR Senate District 9", "rep": "Reginald Murdock", "w": 0.999}]}, "munis": [], "slug": "phillips"}, "05109": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 89", "rep": "Justin Gonzales", "w": 1.0}], "ss": [{"d": "AR Senate District 3", "rep": "Steve Crowell", "w": 0.519}, {"d": "AR Senate District 5", "rep": "Terry Rice", "w": 0.48}]}, "munis": [], "slug": "pike"}, "05111": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 37", "rep": "Steve Hollowell", "w": 0.407}, {"d": "AR House District 38", "rep": "Dwight Tosh", "w": 0.402}, {"d": "AR House District 36", "rep": "Johnny Rye", "w": 0.191}], "ss": [{"d": "AR Senate District 19", "rep": "Dave Wallace", "w": 0.78}, {"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 0.22}]}, "munis": [], "slug": "poinsett"}, "05113": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 86", "rep": "John Maddox", "w": 1.0}], "ss": [{"d": "AR Senate District 5", "rep": "Terry Rice", "w": 1.0}]}, "munis": [], "slug": "polk"}, "05115": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 45", "rep": "Aaron Pilkington", "w": 0.15}, {"d": "AR House District 53", "rep": "Matt Duffield", "w": 0.06}, {"d": "AR House District 54", "rep": "Mary Bentley", "w": 0.01}], "ss": [{"d": "AR Senate District 25", "rep": "Breanne Davis", "w": 0.99}, {"d": "AR Senate District 5", "rep": "Terry Rice", "w": 0.01}]}, "munis": [], "slug": "pope"}, "05117": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.999}], "sh": [{"d": "AR House District 60", "rep": "Roger Lynch", "w": 0.67}, {"d": "AR House District 61", "rep": "Jeremiah Moore", "w": 0.33}], "ss": [{"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 1.0}]}, "munis": [], "slug": "prairie"}, "05119": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 0.696}, {"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.16}, {"d": "AR-04", "rep": "Bruce Westerman", "w": 0.144}], "sh": [{"d": "AR House District 78", "rep": "Keith Brooks", "w": 0.228}, {"d": "AR House District 66", "rep": "Mark Perry", "w": 0.188}, {"d": "AR House District 80", "rep": "Denise Ennett", "w": 0.176}, {"d": "AR House District 69", "rep": "David Ray", "w": 0.12}, {"d": "AR House District 70", "rep": "Alex Holladay", "w": 0.061}, {"d": "AR House District 71", "rep": "Brandon Achor", "w": 0.042}, {"d": "AR House District 73", "rep": "Andrew Collins", "w": 0.035}, {"d": "AR House District 72", "rep": "Tracy Steele", "w": 0.028}, {"d": "AR House District 77", "rep": "Fred Allen", "w": 0.028}, {"d": "AR House District 79", "rep": "Tara Shephard", "w": 0.025}, {"d": "AR House District 67", "rep": "Karilyn Brown", "w": 0.024}, {"d": "AR House District 75", "rep": "Ashley Hudson", "w": 0.02}, {"d": "AR House District 76", "rep": "Joy Springer", "w": 0.015}, {"d": "AR House District 74", "rep": "Tippi McCullough", "w": 0.012}], "ss": [{"d": "AR Senate District 12", "rep": "Jamie Scott", "w": 0.251}, {"d": "AR Senate District 17", "rep": "Mark Johnson", "w": 0.209}, {"d": "AR Senate District 8", "rep": "Stephanie Flowers", "w": 0.142}, {"d": "AR Senate District 13", "rep": "Jane English", "w": 0.142}, {"d": "AR Senate District 11", "rep": "Ricky Hill", "w": 0.102}, {"d": "AR Senate District 15", "rep": "Fred Love", "w": 0.071}, {"d": "AR Senate District 14", "rep": "Clarke Tucker", "w": 0.048}, {"d": "AR Senate District 16", "rep": "Kim Hammer", "w": 0.035}]}, "munis": [{"m": "Little Rock", "p": [{"n": "Frank Scott Jr.", "r": "Mayor, Little Rock, AR"}]}], "slug": "pulaski"}, "05121": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 1", "rep": "Jeremy Wooldridge", "w": 0.59}, {"d": "AR House District 2", "rep": "Trey Steimel", "w": 0.41}], "ss": [{"d": "AR Senate District 21", "rep": "Blake Johnson", "w": 1.0}]}, "munis": [], "slug": "randolph"}, "05123": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 63", "rep": "Lincoln Barnett", "w": 0.475}, {"d": "AR House District 37", "rep": "Steve Hollowell", "w": 0.463}, {"d": "AR House District 62", "rep": "Mark McElroy", "w": 0.063}], "ss": [{"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 0.556}, {"d": "AR Senate District 9", "rep": "Reginald Murdock", "w": 0.444}]}, "munis": [{"m": "Hughes", "p": [{"n": "Shelby C. Pulliam", "r": "Mayor, Hughes, AR"}]}], "slug": "st-francis"}, "05125": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 0.999}], "sh": [{"d": "AR House District 54", "rep": "Mary Bentley", "w": 0.408}, {"d": "AR House District 83", "rep": "Paul Childress", "w": 0.182}, {"d": "AR House District 92", "rep": "Julie Mayberry", "w": 0.115}, {"d": "AR House District 29", "rep": "Rick McClure", "w": 0.086}, {"d": "AR House District 78", "rep": "Keith Brooks", "w": 0.08}, {"d": "AR House District 82", "rep": "Tony Furman", "w": 0.075}, {"d": "AR House District 81", "rep": "R.J. Hawk", "w": 0.054}], "ss": [{"d": "AR Senate District 7", "rep": "Alan Clark", "w": 0.481}, {"d": "AR Senate District 6", "rep": "Matt McKee", "w": 0.342}, {"d": "AR Senate District 16", "rep": "Kim Hammer", "w": 0.177}]}, "munis": [{"m": "Benton", "p": [{"n": "Tom Farmer", "r": "Mayor, Benton, AR"}]}], "slug": "saline"}, "05127": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 52", "rep": "Marcus Richmond", "w": 1.0}], "ss": [{"d": "AR Senate District 5", "rep": "Terry Rice", "w": 1.0}]}, "munis": [], "slug": "scott"}, "05129": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.999}], "sh": [{"d": "AR House District 27", "rep": "Steven Walker", "w": 1.0}], "ss": [{"d": "AR Senate District 24", "rep": "Missy Irvin", "w": 1.0}]}, "munis": [], "slug": "searcy"}, "05131": {"county": [], "districts": {"cd": [{"d": "AR-03", "rep": "Steve Womack", "w": 0.6}, {"d": "AR-04", "rep": "Bruce Westerman", "w": 0.4}], "sh": [{"d": "AR House District 47", "rep": "Lee Johnson", "w": 0.584}, {"d": "AR House District 52", "rep": "Marcus Richmond", "w": 0.225}, {"d": "AR House District 51", "rep": "Cindy Crawford", "w": 0.069}, {"d": "AR House District 46", "rep": "Jon Eubanks", "w": 0.055}, {"d": "AR House District 50", "rep": "Zack Gramlich", "w": 0.029}, {"d": "AR House District 49", "rep": "Jay Richardson", "w": 0.027}, {"d": "AR House District 48", "rep": "Ryan Rose", "w": 0.011}], "ss": [{"d": "AR Senate District 5", "rep": "Terry Rice", "w": 0.466}, {"d": "AR Senate District 26", "rep": "Brad Simon", "w": 0.41}, {"d": "AR Senate District 27", "rep": "Justin Boyd", "w": 0.124}]}, "munis": [{"m": "Fort Smith", "p": [{"n": "George McGill", "r": "Mayor, Fort Smith, AR"}]}], "slug": "sebastian"}, "05133": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 87", "rep": "DeAnn Vaught", "w": 0.999}], "ss": [{"d": "AR Senate District 4", "rep": "Jimmy Hickey", "w": 1.0}]}, "munis": [{"m": "De Queen", "p": [{"n": "Jeff Brown", "r": "Mayor, De Queen, AR"}]}], "slug": "sevier"}, "05135": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 28", "rep": "Bart Schulz", "w": 0.655}, {"d": "AR House District 2", "rep": "Trey Steimel", "w": 0.344}], "ss": [{"d": "AR Senate District 22", "rep": "John Payton", "w": 1.0}]}, "munis": [], "slug": "sharp"}, "05137": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 1.0}], "sh": [{"d": "AR House District 41", "rep": "Alyssa Brown", "w": 0.472}, {"d": "AR House District 27", "rep": "Steven Walker", "w": 0.289}, {"d": "AR House District 28", "rep": "Bart Schulz", "w": 0.238}], "ss": [{"d": "AR Senate District 24", "rep": "Missy Irvin", "w": 1.0}]}, "munis": [], "slug": "stone"}, "05139": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 97", "rep": "Matthew Shepherd", "w": 0.587}, {"d": "AR House District 96", "rep": "Sonia Barker", "w": 0.413}], "ss": [{"d": "AR Senate District 2", "rep": "Matt Stone", "w": 1.0}]}, "munis": [], "slug": "union"}, "05141": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 1.0}], "sh": [{"d": "AR House District 43", "rep": "Rick Beck", "w": 0.545}, {"d": "AR House District 42", "rep": "Stephen Meeks", "w": 0.248}], "ss": [{"d": "AR Senate District 24", "rep": "Missy Irvin", "w": 1.0}]}, "munis": [], "slug": "van-buren"}, "05143": {"county": [], "districts": {"cd": [{"d": "AR-03", "rep": "Steve Womack", "w": 1.0}], "sh": [{"d": "AR House District 25", "rep": "Chad Puryear", "w": 0.362}, {"d": "AR House District 23", "rep": "Kendra Moore", "w": 0.302}, {"d": "AR House District 24", "rep": "Brad Hall", "w": 0.15}, {"d": "AR House District 18", "rep": "Robin Lundstrum", "w": 0.062}, {"d": "AR House District 22", "rep": "David Whitaker", "w": 0.034}, {"d": "AR House District 20", "rep": "Denise Garner", "w": 0.031}, {"d": "AR House District 19", "rep": "Steve Unger", "w": 0.022}, {"d": "AR House District 9", "rep": "Diana Gonzales Worthen", "w": 0.02}, {"d": "AR House District 21", "rep": "Nicole Clowney", "w": 0.013}], "ss": [{"d": "AR Senate District 29", "rep": "Jim Petty", "w": 0.495}, {"d": "AR Senate District 35", "rep": "Tyler Dees", "w": 0.318}, {"d": "AR Senate District 31", "rep": "Clint Penzo", "w": 0.071}, {"d": "AR Senate District 32", "rep": "Josh Bryant", "w": 0.062}, {"d": "AR Senate District 30", "rep": "Greg Leding", "w": 0.054}]}, "munis": [{"m": "Fayetteville", "p": [{"n": "Lioneld Jordan", "r": "Mayor, Fayetteville, AR"}]}], "slug": "washington"}, "05145": {"county": [], "districts": {"cd": [{"d": "AR-02", "rep": "J. French Hill", "w": 0.996}], "sh": [{"d": "AR House District 57", "rep": "Cameron Cooper", "w": 0.288}, {"d": "AR House District 39", "rep": "Wayne Long", "w": 0.269}, {"d": "AR House District 59", "rep": "Jim Wooten", "w": 0.222}, {"d": "AR House District 40", "rep": "Shad Pearce", "w": 0.142}, {"d": "AR House District 58", "rep": "Les Eaves", "w": 0.078}], "ss": [{"d": "AR Senate District 18", "rep": "Jonathan Dismang", "w": 1.0}]}, "munis": [], "slug": "white"}, "05147": {"county": [], "districts": {"cd": [{"d": "AR-01", "rep": "Eric A. \"Rick\" Crawford", "w": 0.995}], "sh": [{"d": "AR House District 61", "rep": "Jeremiah Moore", "w": 1.0}], "ss": [{"d": "AR Senate District 10", "rep": "Ron Caldwell", "w": 1.0}]}, "munis": [], "slug": "woodruff"}, "05149": {"county": [], "districts": {"cd": [{"d": "AR-04", "rep": "Bruce Westerman", "w": 1.0}], "sh": [{"d": "AR House District 52", "rep": "Marcus Richmond", "w": 0.791}, {"d": "AR House District 54", "rep": "Mary Bentley", "w": 0.209}], "ss": [{"d": "AR Senate District 5", "rep": "Terry Rice", "w": 0.994}, {"d": "AR Senate District 25", "rep": "Breanne Davis", "w": 0.006}]}, "munis": [], "slug": "yell"}, "06001": {"county": [], "districts": {"cd": [{"d": "CA-14", "rep": "Vacant", "w": 0.715}, {"d": "CA-12", "rep": "Lateefah Simon", "w": 0.117}, {"d": "CA-17", "rep": "Ro Khanna", "w": 0.066}, {"d": "CA-10", "rep": "Mark DeSaulnier", "w": 0.014}], "sh": [{"d": "CA House District 16", "rep": "Rebecca Bauer-Kahan", "w": 0.476}, {"d": "CA House District 20", "rep": "Liz Ortega", "w": 0.169}, {"d": "CA House District 24", "rep": "Alex Lee", "w": 0.149}, {"d": "CA House District 18", "rep": "Mia Bonta", "w": 0.09}, {"d": "CA House District 14", "rep": "Buffy Wicks", "w": 0.03}], "ss": [{"d": "CA Senate District 5", "rep": "Jerry McNerney", "w": 0.51}, {"d": "CA Senate District 10", "rep": "Aisha Wahab", "w": 0.209}, {"d": "CA Senate District 7", "rep": "Jesse Arreguín", "w": 0.105}, {"d": "CA Senate District 9", "rep": "Tim Grayson", "w": 0.09}]}, "munis": [{"m": "Berkeley", "p": [{"n": "Adena Ishii", "r": "Mayor, Berkeley, CA"}]}, {"m": "Fremont", "p": [{"n": "Lily Mei", "r": "Mayor, Fremont, CA"}]}, {"m": "Oakland", "p": [{"n": "Sheng Thao", "r": "Mayor, Oakland, CA"}]}], "slug": "alameda"}, "06003": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.999}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "alpine"}, "06005": {"county": [], "districts": {"cd": [{"d": "CA-05", "rep": "Tom McClintock", "w": 0.997}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 0.792}, {"d": "CA House District 9", "rep": "Heath Flora", "w": 0.207}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "amador"}, "06007": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.998}], "sh": [{"d": "CA House District 3", "rep": "James Gallagher", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [{"m": "Chico", "p": [{"n": "Kasey Reynolds", "r": "Mayor, Chico, CA"}]}, {"m": "Oroville", "p": [{"n": "Chuck Reynolds", "r": "Mayor, Oroville, CA"}]}], "slug": "butte"}, "06009": {"county": [], "districts": {"cd": [{"d": "CA-05", "rep": "Tom McClintock", "w": 1.0}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 0.813}, {"d": "CA House District 9", "rep": "Heath Flora", "w": 0.187}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "calaveras"}, "06011": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.999}], "sh": [{"d": "CA House District 4", "rep": "Cecilia Aguiar-Curry", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "colusa"}, "06013": {"county": [], "districts": {"cd": [{"d": "CA-10", "rep": "Mark DeSaulnier", "w": 0.682}, {"d": "CA-08", "rep": "John Garamendi", "w": 0.213}, {"d": "CA-09", "rep": "Josh Harder", "w": 0.049}], "sh": [{"d": "CA House District 15", "rep": "Anamarie Avila Farias", "w": 0.431}, {"d": "CA House District 16", "rep": "Rebecca Bauer-Kahan", "w": 0.29}, {"d": "CA House District 11", "rep": "Lori Wilson", "w": 0.134}, {"d": "CA House District 14", "rep": "Buffy Wicks", "w": 0.09}], "ss": [{"d": "CA Senate District 9", "rep": "Tim Grayson", "w": 0.682}, {"d": "CA Senate District 3", "rep": "Christopher Cabaldon", "w": 0.181}, {"d": "CA Senate District 7", "rep": "Jesse Arreguín", "w": 0.083}]}, "munis": [{"m": "Antioch", "p": [{"n": "Ron Bernal", "r": "Mayor, Antioch, CA"}]}, {"m": "Brentwood", "p": [{"n": "Joel Bryant", "r": "Mayor, Brentwood, CA"}]}, {"m": "Concord", "p": [{"n": "Laura Hoffmeister", "r": "Mayor, Concord, CA"}]}, {"m": "Martinez", "p": [{"n": "Rob Schroder", "r": "Mayor, Martinez, CA"}]}, {"m": "Oakley", "p": [{"n": "Randy Pope", "r": "Mayor, Oakley, CA"}]}, {"m": "Richmond", "p": [{"n": "Eduardo Martinez", "r": "Mayor, Richmond, CA"}]}, {"m": "San Pablo", "p": [{"n": "Rita Xavier", "r": "Mayor, San Pablo, CA"}]}], "slug": "contra-costa"}, "06015": {"county": [], "districts": {"cd": [{"d": "CA-02", "rep": "Jared Huffman", "w": 0.823}], "sh": [{"d": "CA House District 2", "rep": "Chris Rogers", "w": 0.825}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 0.825}]}, "munis": [], "slug": "del-norte"}, "06017": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.762}, {"d": "CA-05", "rep": "Tom McClintock", "w": 0.238}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 0.741}, {"d": "CA House District 5", "rep": "Joe Patterson", "w": 0.259}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "el-dorado"}, "06019": {"county": [], "districts": {"cd": [{"d": "CA-13", "rep": "Adam Gray", "w": 0.433}, {"d": "CA-05", "rep": "Tom McClintock", "w": 0.361}, {"d": "CA-20", "rep": "Vince Fong", "w": 0.128}, {"d": "CA-21", "rep": "Jim Costa", "w": 0.076}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 0.484}, {"d": "CA House District 27", "rep": "Esmeralda Soria", "w": 0.412}, {"d": "CA House District 31", "rep": "Joaquin Arambula", "w": 0.096}, {"d": "CA House District 33", "rep": "Ali Macedo", "w": 0.008}], "ss": [{"d": "CA Senate District 14", "rep": "Anna Caballero", "w": 0.509}, {"d": "CA Senate District 12", "rep": "Shannon Grove", "w": 0.485}, {"d": "CA Senate District 16", "rep": "Melissa Hurtado", "w": 0.006}]}, "munis": [{"m": "Clovis", "p": [{"n": "Jose Flores", "r": "Mayor, Clovis, CA"}]}, {"m": "Fresno", "p": [{"n": "Jerry Dyer", "r": "Mayor, Fresno, CA"}]}], "slug": "fresno"}, "06021": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 1.0}], "sh": [{"d": "CA House District 3", "rep": "James Gallagher", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "glenn"}, "06023": {"county": [], "districts": {"cd": [{"d": "CA-02", "rep": "Jared Huffman", "w": 0.891}], "sh": [{"d": "CA House District 2", "rep": "Chris Rogers", "w": 0.891}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 0.891}]}, "munis": [], "slug": "humboldt"}, "06025": {"county": [], "districts": {"cd": [{"d": "CA-25", "rep": "Raul Ruiz", "w": 0.999}], "sh": [{"d": "CA House District 36", "rep": "Jeff Gonzalez", "w": 1.0}], "ss": [{"d": "CA Senate District 18", "rep": "Steve Padilla", "w": 1.0}]}, "munis": [{"m": "El Centro", "p": [{"n": "Tomas Olivia", "r": "Mayor, El Centro, CA"}]}, {"m": "Imperial", "p": [{"n": "Geoffrey Dale", "r": "Mayor, Imperial, CA"}]}], "slug": "imperial"}, "06027": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.999}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 1.0}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "inyo"}, "06029": {"county": [], "districts": {"cd": [{"d": "CA-20", "rep": "Vince Fong", "w": 0.647}, {"d": "CA-22", "rep": "David G. Valadao", "w": 0.269}, {"d": "CA-23", "rep": "Jay Obernolte", "w": 0.084}], "sh": [{"d": "CA House District 32", "rep": "Stan Ellis", "w": 0.596}, {"d": "CA House District 35", "rep": "Jasmeet Bains", "w": 0.232}, {"d": "CA House District 34", "rep": "Tom Lackey", "w": 0.172}], "ss": [{"d": "CA Senate District 12", "rep": "Shannon Grove", "w": 0.799}, {"d": "CA Senate District 16", "rep": "Melissa Hurtado", "w": 0.201}]}, "munis": [{"m": "Arvin", "p": [{"n": "Olivia Calderon", "r": "Mayor, Arvin, CA"}]}, {"m": "Bakersfield", "p": [{"n": "Karen Goh", "r": "Mayor, Bakersfield, CA"}]}], "slug": "kern"}, "06031": {"county": [], "districts": {"cd": [{"d": "CA-22", "rep": "David G. Valadao", "w": 0.827}, {"d": "CA-20", "rep": "Vince Fong", "w": 0.172}], "sh": [{"d": "CA House District 33", "rep": "Ali Macedo", "w": 1.0}], "ss": [{"d": "CA Senate District 16", "rep": "Melissa Hurtado", "w": 1.0}]}, "munis": [], "slug": "kings"}, "06033": {"county": [], "districts": {"cd": [{"d": "CA-04", "rep": "Mike Thompson", "w": 0.993}], "sh": [{"d": "CA House District 4", "rep": "Cecilia Aguiar-Curry", "w": 1.0}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 1.0}]}, "munis": [], "slug": "lake"}, "06035": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.999}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "lassen"}, "06037": {"county": [], "districts": {"cd": [{"d": "CA-27", "rep": "George Whitesides", "w": 0.323}, {"d": "CA-28", "rep": "Judy Chu", "w": 0.124}, {"d": "CA-23", "rep": "Jay Obernolte", "w": 0.078}, {"d": "CA-32", "rep": "Brad Sherman", "w": 0.062}, {"d": "CA-42", "rep": "Robert Garcia", "w": 0.046}, {"d": "CA-31", "rep": "Gilbert Ray Cisneros, Jr.", "w": 0.044}, {"d": "CA-30", "rep": "Laura Friedman", "w": 0.038}, {"d": "CA-38", "rep": "Linda T. Sánchez", "w": 0.03}, {"d": "CA-29", "rep": "Luz M. Rivas", "w": 0.027}, {"d": "CA-36", "rep": "Ted Lieu", "w": 0.021}, {"d": "CA-44", "rep": "Nanette Diaz Barragán", "w": 0.02}, {"d": "CA-43", "rep": "Maxine Waters", "w": 0.015}, {"d": "CA-37", "rep": "Sydney Kamlager-Dove", "w": 0.011}, {"d": "CA-34", "rep": "Jimmy Gomez", "w": 0.011}, {"d": "CA-26", "rep": "Julia Brownley", "w": 0.006}], "sh": [{"d": "CA House District 34", "rep": "Tom Lackey", "w": 0.213}, {"d": "CA House District 39", "rep": "Juan Carrillo", "w": 0.146}, {"d": "CA House District 41", "rep": "John Harabedian", "w": 0.124}, {"d": "CA House District 40", "rep": "Pilar Schiavo", "w": 0.082}, {"d": "CA House District 42", "rep": "Jacqui Irwin", "w": 0.045}, {"d": "CA House District 69", "rep": "Josh Lowenthal", "w": 0.041}, {"d": "CA House District 56", "rep": "Lisa Calderon", "w": 0.025}, {"d": "CA House District 44", "rep": "Nick Schultz", "w": 0.021}, {"d": "CA House District 48", "rep": "Blanca Rubio", "w": 0.018}, {"d": "CA House District 66", "rep": "Al Muratsuchi", "w": 0.016}, {"d": "CA House District 46", "rep": "Jesse Gabriel", "w": 0.016}, {"d": "CA House District 65", "rep": "Mike Gipson", "w": 0.013}, {"d": "CA House District 49", "rep": "Mike Fong", "w": 0.012}, {"d": "CA House District 51", "rep": "Rick Zbur", "w": 0.012}, {"d": "CA House District 43", "rep": "Celeste Rodriguez", "w": 0.011}, {"d": "CA House District 64", "rep": "Blanca Pacheco", "w": 0.011}, {"d": "CA House District 61", "rep": "Tina McKinnor", "w": 0.01}, {"d": "CA House District 52", "rep": "Jessica Caloza", "w": 0.009}, {"d": "CA House District 54", "rep": "Mark González", "w": 0.009}, {"d": "CA House District 55", "rep": "Isaac Bryan", "w": 0.008}, {"d": "CA House District 62", "rep": "José Solache", "w": 0.008}, {"d": "CA House District 57", "rep": "Sade Elhawary", "w": 0.006}, {"d": "CA House District 53", "rep": "Michelle Rodriguez", "w": 0.005}], "ss": [{"d": "CA Senate District 23", "rep": "Suzette Valladares", "w": 0.41}, {"d": "CA Senate District 25", "rep": "Sasha Pérez", "w": 0.124}, {"d": "CA Senate District 24", "rep": "Ben Allen", "w": 0.069}, {"d": "CA Senate District 33", "rep": "Lena Gonzalez", "w": 0.05}, {"d": "CA Senate District 20", "rep": "Caroline Menjivar", "w": 0.047}, {"d": "CA Senate District 22", "rep": "Susan Rubio", "w": 0.042}, {"d": "CA Senate District 30", "rep": "Bob Archuleta", "w": 0.036}, {"d": "CA Senate District 27", "rep": "Henry Stern", "w": 0.026}, {"d": "CA Senate District 35", "rep": "Laura Richardson", "w": 0.024}, {"d": "CA Senate District 26", "rep": "María Elena Durazo", "w": 0.017}, {"d": "CA Senate District 28", "rep": "Lola Smallwood-Cuevas", "w": 0.015}]}, "munis": [{"m": "Alhambra", "p": [{"n": "Jeffrey Koji Maloney", "r": "Mayor, Alhambra, CA"}]}, {"m": "Beverly Hills", "p": [{"n": "Bob Wunderlich", "r": "Mayor, Beverly Hills, CA"}]}, {"m": "Carson", "p": [{"n": "Lula Davis-Holmes", "r": "Mayor, Carson, CA"}]}, {"m": "Compton", "p": [{"n": "Aja Brown", "r": "Mayor, Compton, CA"}]}, {"m": "Downey", "p": [{"n": "Claudia Frometa", "r": "Mayor, Downey, CA"}]}, {"m": "El Monte", "p": [{"n": "Jessica Ancona", "r": "Mayor, El Monte, CA"}]}, {"m": "Glendale", "p": [{"n": "Zareh Sinanyan", "r": "Mayor, Glendale, CA"}]}, {"m": "Glendora", "p": [{"n": "Gary Boyer", "r": "Mayor, Glendora, CA"}]}, {"m": "Hawthorne", "p": [{"n": "Alex Vargas", "r": "Mayor, Hawthorne, CA"}]}, {"m": "Hermosa Beach", "p": [{"n": "Michael Detoy", "r": "Mayor, Hermosa Beach, CA"}]}, {"m": "Industry", "p": [{"n": "Cory C. Moss", "r": "Mayor, City of Industry, CA"}]}, {"m": "Inglewood", "p": [{"n": "James T. Butts Jr.", "r": "Mayor, Inglewood, CA"}]}, {"m": "Lancaster", "p": [{"n": "R. Rex Parris", "r": "Mayor, Lancaster, CA"}]}, {"m": "Long Beach", "p": [{"n": "Robert Garcia", "r": "Mayor, Long Beach, CA"}]}, {"m": "Los Angeles", "p": [{"n": "Karen Bass", "r": "Mayor, Los Angeles, CA"}]}, {"m": "Norwalk", "p": [{"n": "Rick Ramirez", "r": "Mayor, Norwalk, CA"}]}, {"m": "Palmdale", "p": [{"n": "Steve Hofbauer", "r": "Mayor, Palmdale, CA"}]}, {"m": "Pasadena", "p": [{"n": "Victor Gordo", "r": "Mayor, Pasadena, CA"}]}, {"m": "Pomona", "p": [{"n": "Tim Sandoval", "r": "Mayor, Pomona, CA"}]}, {"m": "Rolling Hills Estates", "p": [{"n": "Debby Stegura", "r": "Mayor, Rolling Hills Estates, CA"}]}, {"m": "Santa Clarita", "p": [{"n": "Jason Gibbs", "r": "Mayor, Santa Clarita, CA"}]}, {"m": "Santa Monica", "p": [{"n": "Gleam Davis", "r": "Mayor, Santa Monica, CA"}]}, {"m": "South Gate", "p": [{"n": "Maria del Pilar Avalos", "r": "Mayor, South Gate, CA"}]}, {"m": "Torrance", "p": [{"n": "George Chen", "r": "Mayor, Torrance, CA"}]}, {"m": "West Covina", "p": [{"n": "Dario Castellanos", "r": "Mayor, West Covina, CA"}]}, {"m": "West Hollywood", "p": [{"n": "Q6238541", "r": "Mayor, West Hollywood, CA"}]}], "slug": "los-angeles"}, "06039": {"county": [], "districts": {"cd": [{"d": "CA-05", "rep": "Tom McClintock", "w": 0.686}, {"d": "CA-13", "rep": "Adam Gray", "w": 0.313}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 0.775}, {"d": "CA House District 27", "rep": "Esmeralda Soria", "w": 0.225}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 0.738}, {"d": "CA Senate District 14", "rep": "Anna Caballero", "w": 0.262}]}, "munis": [], "slug": "madera"}, "06041": {"county": [], "districts": {"cd": [{"d": "CA-02", "rep": "Jared Huffman", "w": 0.656}], "sh": [{"d": "CA House District 12", "rep": "Damon Connolly", "w": 0.656}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 0.656}]}, "munis": [{"m": "Mill Valley", "p": [{"n": "John McCauley", "r": "Mayor, Mill Valley, CA"}]}], "slug": "marin"}, "06043": {"county": [], "districts": {"cd": [{"d": "CA-05", "rep": "Tom McClintock", "w": 1.0}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 1.0}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "mariposa"}, "06045": {"county": [], "districts": {"cd": [{"d": "CA-02", "rep": "Jared Huffman", "w": 0.905}], "sh": [{"d": "CA House District 2", "rep": "Chris Rogers", "w": 0.906}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 0.906}]}, "munis": [], "slug": "mendocino"}, "06047": {"county": [], "districts": {"cd": [{"d": "CA-13", "rep": "Adam Gray", "w": 0.998}], "sh": [{"d": "CA House District 27", "rep": "Esmeralda Soria", "w": 0.816}, {"d": "CA House District 22", "rep": "Juan Alanis", "w": 0.184}], "ss": [{"d": "CA Senate District 14", "rep": "Anna Caballero", "w": 0.835}, {"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 0.165}]}, "munis": [], "slug": "merced"}, "06049": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 1.0}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "modoc"}, "06051": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.999}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 1.0}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "mono"}, "06053": {"county": [], "districts": {"cd": [{"d": "CA-18", "rep": "Zoe Lofgren", "w": 0.641}, {"d": "CA-19", "rep": "Jimmy Panetta", "w": 0.237}], "sh": [{"d": "CA House District 30", "rep": "Dawn Addis", "w": 0.541}, {"d": "CA House District 29", "rep": "Robert Rivas", "w": 0.337}], "ss": [{"d": "CA Senate District 17", "rep": "John Laird", "w": 0.878}]}, "munis": [{"m": "Salinas", "p": [{"n": "Kimbley Craig", "r": "Mayor, Salinas, CA"}]}], "slug": "monterey"}, "06055": {"county": [], "districts": {"cd": [{"d": "CA-04", "rep": "Mike Thompson", "w": 0.999}], "sh": [{"d": "CA House District 4", "rep": "Cecilia Aguiar-Curry", "w": 1.0}], "ss": [{"d": "CA Senate District 3", "rep": "Christopher Cabaldon", "w": 1.0}]}, "munis": [{"m": "St Helena", "p": [{"n": "Paul Dohring", "r": "Mayor, St. Helena, CA"}]}], "slug": "napa"}, "06057": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 1.0}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 0.929}, {"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 0.071}]}, "munis": [], "slug": "nevada"}, "06059": {"county": [], "districts": {"cd": [{"d": "CA-40", "rep": "Young Kim", "w": 0.364}, {"d": "CA-47", "rep": "Dave Min", "w": 0.184}, {"d": "CA-49", "rep": "Mike Levin", "w": 0.108}, {"d": "CA-45", "rep": "Derek Tran", "w": 0.098}, {"d": "CA-46", "rep": "J. Luis Correa", "w": 0.079}, {"d": "CA-38", "rep": "Linda T. Sánchez", "w": 0.009}], "sh": [{"d": "CA House District 71", "rep": "Kate Sanchez", "w": 0.214}, {"d": "CA House District 59", "rep": "Phillip Chen", "w": 0.162}, {"d": "CA House District 72", "rep": "Diane Dixon", "w": 0.128}, {"d": "CA House District 73", "rep": "Cottie Petrie-Norris", "w": 0.114}, {"d": "CA House District 74", "rep": "Laurie Davies", "w": 0.057}, {"d": "CA House District 70", "rep": "Tri Ta", "w": 0.057}, {"d": "CA House District 68", "rep": "Avelino Valencia", "w": 0.053}, {"d": "CA House District 67", "rep": "Sharon Quirk-Silva", "w": 0.048}, {"d": "CA House District 64", "rep": "Blanca Pacheco", "w": 0.008}], "ss": [{"d": "CA Senate District 37", "rep": "Steve Choi", "w": 0.398}, {"d": "CA Senate District 36", "rep": "Tony Strickland", "w": 0.185}, {"d": "CA Senate District 38", "rep": "Catherine Blakespear", "w": 0.114}, {"d": "CA Senate District 34", "rep": "Tom Umberg", "w": 0.095}, {"d": "CA Senate District 32", "rep": "Kelly Seyarto", "w": 0.032}, {"d": "CA Senate District 30", "rep": "Bob Archuleta", "w": 0.017}]}, "munis": [{"m": "Anaheim", "p": [{"n": "Ashleigh Aitken", "r": "Mayor, Anaheim, CA"}]}, {"m": "Buena Park", "p": [{"n": "Joyce Ahn", "r": "Mayor, Buena Park, CA"}]}, {"m": "Costa Mesa", "p": [{"n": "John Stephens", "r": "Mayor, Costa Mesa, CA"}]}, {"m": "Fullerton", "p": [{"n": "Fred Jung", "r": "Mayor, Fullerton, CA"}]}, {"m": "Garden Grove", "p": [{"n": "Steve Jones", "r": "Mayor, Garden Grove, CA"}]}, {"m": "Huntington Beach", "p": [{"n": "Tony Strickland", "r": "Mayor, Huntington Beach, CA"}]}, {"m": "Irvine", "p": [{"n": "Larry Agran", "r": "Mayor, Irvine, CA"}]}, {"m": "Orange", "p": [{"n": "Dan Slater", "r": "Mayor, Orange, CA"}]}, {"m": "Santa Ana", "p": [{"n": "Valerie Amezcua", "r": "Mayor, Santa Ana, CA"}]}], "slug": "orange"}, "06061": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 1.0}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 0.707}, {"d": "CA House District 5", "rep": "Joe Patterson", "w": 0.179}, {"d": "CA House District 3", "rep": "James Gallagher", "w": 0.114}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 0.453}, {"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 0.291}, {"d": "CA Senate District 6", "rep": "Roger Niello", "w": 0.256}]}, "munis": [], "slug": "placer"}, "06063": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.998}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "plumas"}, "06065": {"county": [], "districts": {"cd": [{"d": "CA-25", "rep": "Raul Ruiz", "w": 0.722}, {"d": "CA-41", "rep": "Ken Calvert", "w": 0.184}, {"d": "CA-48", "rep": "Darrell Issa", "w": 0.052}, {"d": "CA-39", "rep": "Mark Takano", "w": 0.039}], "sh": [{"d": "CA House District 36", "rep": "Jeff Gonzalez", "w": 0.535}, {"d": "CA House District 47", "rep": "Greg Wallis", "w": 0.307}, {"d": "CA House District 63", "rep": "Natasha Johnson", "w": 0.05}, {"d": "CA House District 71", "rep": "Kate Sanchez", "w": 0.047}, {"d": "CA House District 60", "rep": "Corey Jackson", "w": 0.042}, {"d": "CA House District 58", "rep": "Leticia Castillo", "w": 0.018}], "ss": [{"d": "CA Senate District 18", "rep": "Steve Padilla", "w": 0.415}, {"d": "CA Senate District 19", "rep": "Rosilicie Ochoa Bogh", "w": 0.326}, {"d": "CA Senate District 32", "rep": "Kelly Seyarto", "w": 0.212}, {"d": "CA Senate District 31", "rep": "Sabrina Cervantes", "w": 0.046}]}, "munis": [{"m": "Corona", "p": [{"n": "Wes Speake", "r": "Mayor, Corona, CA"}]}, {"m": "Indio", "p": [{"n": "Glenn Miller", "r": "Mayor, Indio, CA"}]}, {"m": "Jurupa Valley", "p": [{"n": "Chris Barajas", "r": "Mayor, Jurupa Valley, CA"}]}, {"m": "Menifee", "p": [{"n": "Bill Zimmerman", "r": "Mayor, Menifee, CA"}]}, {"m": "Moreno Valley", "p": [{"n": "Yxstian Gutierrez", "r": "Mayor, Moreno Valley, CA"}]}, {"m": "Murrieta", "p": [{"n": "Lisa DeForest", "r": "Mayor, Murrieta, CA"}]}, {"m": "Riverside", "p": [{"n": "Patricia Lock Dawson", "r": "Mayor, Riverside, CA"}]}, {"m": "Temecula", "p": [{"n": "Matt Rahn", "r": "Mayor, Temecula, CA"}]}], "slug": "riverside"}, "06067": {"county": [], "districts": {"cd": [{"d": "CA-07", "rep": "Doris O. Matsui", "w": 0.653}, {"d": "CA-06", "rep": "Ami Bera", "w": 0.256}, {"d": "CA-03", "rep": "Kevin Kiley", "w": 0.088}], "sh": [{"d": "CA House District 9", "rep": "Heath Flora", "w": 0.517}, {"d": "CA House District 7", "rep": "Joshua Hoover", "w": 0.163}, {"d": "CA House District 6", "rep": "Maggy Krell", "w": 0.151}, {"d": "CA House District 10", "rep": "Stephanie Nguyen", "w": 0.117}, {"d": "CA House District 11", "rep": "Lori Wilson", "w": 0.052}], "ss": [{"d": "CA Senate District 6", "rep": "Roger Niello", "w": 0.557}, {"d": "CA Senate District 8", "rep": "Angelique Ashby", "w": 0.274}, {"d": "CA Senate District 3", "rep": "Christopher Cabaldon", "w": 0.168}]}, "munis": [{"m": "Elk Grove", "p": [{"n": "Bobbie Singh-Allen", "r": "Mayor, Elk Grove, CA"}]}, {"m": "Sacramento", "p": [{"n": "Darrell Steinberg", "r": "Mayor, Sacramento, CA"}]}], "slug": "sacramento"}, "06069": {"county": [], "districts": {"cd": [{"d": "CA-18", "rep": "Zoe Lofgren", "w": 0.999}], "sh": [{"d": "CA House District 29", "rep": "Robert Rivas", "w": 1.0}], "ss": [{"d": "CA Senate District 17", "rep": "John Laird", "w": 1.0}]}, "munis": [], "slug": "san-benito"}, "06071": {"county": [], "districts": {"cd": [{"d": "CA-23", "rep": "Jay Obernolte", "w": 0.843}, {"d": "CA-25", "rep": "Raul Ruiz", "w": 0.129}, {"d": "CA-28", "rep": "Judy Chu", "w": 0.01}, {"d": "CA-33", "rep": "Pete Aguilar", "w": 0.009}, {"d": "CA-35", "rep": "Norma J. Torres", "w": 0.007}], "sh": [{"d": "CA House District 34", "rep": "Tom Lackey", "w": 0.792}, {"d": "CA House District 36", "rep": "Jeff Gonzalez", "w": 0.129}, {"d": "CA House District 47", "rep": "Greg Wallis", "w": 0.025}, {"d": "CA House District 39", "rep": "Juan Carrillo", "w": 0.018}, {"d": "CA House District 41", "rep": "John Harabedian", "w": 0.016}, {"d": "CA House District 45", "rep": "James Ramos", "w": 0.007}, {"d": "CA House District 50", "rep": "Robert Garcia", "w": 0.006}], "ss": [{"d": "CA Senate District 19", "rep": "Rosilicie Ochoa Bogh", "w": 0.816}, {"d": "CA Senate District 18", "rep": "Steve Padilla", "w": 0.129}, {"d": "CA Senate District 23", "rep": "Suzette Valladares", "w": 0.032}, {"d": "CA Senate District 29", "rep": "Eloise Reyes", "w": 0.012}]}, "munis": [{"m": "Chino", "p": [{"n": "Eunice Ulloa", "r": "Mayor, Chino, CA"}]}, {"m": "Chino Hills", "p": [{"n": "Peter Rogers", "r": "Mayor, Chino Hills, CA"}]}, {"m": "Fontana", "p": [{"n": "Acquanetta Warren", "r": "Mayor, Fontana, CA"}]}, {"m": "Hesperia", "p": [{"n": "Brigit Bennington", "r": "Mayor, Hesperia, CA"}]}, {"m": "Ontario", "p": [{"n": "Paul Leon", "r": "Mayor, Ontario, CA"}]}, {"m": "Rancho Cucamonga", "p": [{"n": "L. Dennis Michael", "r": "Mayor, Rancho Cucamonga, CA"}]}, {"m": "Redlands", "p": [{"n": "Paul Barich", "r": "Mayor, Redlands, CA"}]}, {"m": "Rialto", "p": [{"n": "Deborah Robertson", "r": "Mayor, Rialto, CA"}]}, {"m": "San Bernardino", "p": [{"n": "Helen Tran", "r": "Mayor, San Bernardino, CA"}]}, {"m": "Victorville", "p": [{"n": "Debra Jones", "r": "Mayor, Victorville, CA"}]}], "slug": "san-bernardino"}, "06073": {"county": [], "districts": {"cd": [{"d": "CA-48", "rep": "Darrell Issa", "w": 0.719}, {"d": "CA-49", "rep": "Mike Levin", "w": 0.088}, {"d": "CA-50", "rep": "Scott H. Peters", "w": 0.06}, {"d": "CA-51", "rep": "Sara Jacobs", "w": 0.042}, {"d": "CA-52", "rep": "Juan Vargas", "w": 0.032}], "sh": [{"d": "CA House District 75", "rep": "Carl DeMaio", "w": 0.724}, {"d": "CA House District 74", "rep": "Laurie Davies", "w": 0.072}, {"d": "CA House District 76", "rep": "Darsh Patel", "w": 0.047}, {"d": "CA House District 77", "rep": "Tasha Boerner", "w": 0.033}, {"d": "CA House District 78", "rep": "Chris Ward", "w": 0.027}, {"d": "CA House District 80", "rep": "David Alvarez", "w": 0.024}, {"d": "CA House District 79", "rep": "LaShae Sharp-Collins", "w": 0.013}], "ss": [{"d": "CA Senate District 32", "rep": "Kelly Seyarto", "w": 0.344}, {"d": "CA Senate District 40", "rep": "Brian Jones", "w": 0.282}, {"d": "CA Senate District 18", "rep": "Steve Padilla", "w": 0.169}, {"d": "CA Senate District 38", "rep": "Catherine Blakespear", "w": 0.103}, {"d": "CA Senate District 39", "rep": "Akilah Weber Pierson", "w": 0.043}]}, "munis": [{"m": "Carlsbad", "p": [{"n": "Matt Hall", "r": "Mayor, Carlsbad, CA"}]}, {"m": "Chula Vista", "p": [{"n": "John McCann", "r": "Mayor, Chula Vista, CA"}]}, {"m": "El Cajon", "p": [{"n": "Bill Wells", "r": "Mayor, El Cajon, CA"}]}, {"m": "Escondido", "p": [{"n": "Q133980654", "r": "Mayor, Escondido, CA"}]}, {"m": "Lemon Grove", "p": [{"n": "Q64492156", "r": "Mayor, Lemon Grove, CA"}]}, {"m": "Oceanside", "p": [{"n": "Esther C. Sanchez", "r": "Mayor, Oceanside, CA"}]}, {"m": "San Diego", "p": [{"n": "Todd Gloria", "r": "Mayor, San Diego, CA"}]}, {"m": "San Marcos", "p": [{"n": "Rebecca Jones", "r": "Mayor, San Marcos, CA"}]}, {"m": "Vista", "p": [{"n": "John Franklin", "r": "Mayor, Vista, CA"}]}], "slug": "san-diego"}, "06075": {"county": [], "districts": {"cd": [{"d": "CA-11", "rep": "Nancy Pelosi", "w": 0.185}, {"d": "CA-15", "rep": "Kevin Mullin", "w": 0.023}], "sh": [{"d": "CA House District 17", "rep": "Matt Haney", "w": 0.105}, {"d": "CA House District 19", "rep": "Catherine Stefani", "w": 0.099}], "ss": [{"d": "CA Senate District 11", "rep": "Scott Wiener", "w": 0.204}]}, "munis": [], "slug": "san-francisco"}, "06077": {"county": [], "districts": {"cd": [{"d": "CA-09", "rep": "Josh Harder", "w": 0.836}, {"d": "CA-13", "rep": "Adam Gray", "w": 0.16}], "sh": [{"d": "CA House District 9", "rep": "Heath Flora", "w": 0.657}, {"d": "CA House District 13", "rep": "Rhodesia Ransom", "w": 0.343}], "ss": [{"d": "CA Senate District 5", "rep": "Jerry McNerney", "w": 1.0}]}, "munis": [], "slug": "san-joaquin"}, "06079": {"county": [], "districts": {"cd": [{"d": "CA-24", "rep": "Salud O. Carbajal", "w": 0.555}, {"d": "CA-19", "rep": "Jimmy Panetta", "w": 0.364}], "sh": [{"d": "CA House District 30", "rep": "Dawn Addis", "w": 0.9}, {"d": "CA House District 37", "rep": "Gregg Hart", "w": 0.019}], "ss": [{"d": "CA Senate District 17", "rep": "John Laird", "w": 0.541}, {"d": "CA Senate District 21", "rep": "Monique Limón", "w": 0.378}]}, "munis": [{"m": "Arroyo Grande", "p": [{"n": "Caren Ray Russom", "r": "Mayor, Arroyo Grande, CA"}]}, {"m": "Atascadero", "p": [{"n": "Charles Bourbeau", "r": "Mayor, Atascadero, CA"}]}], "slug": "san-luis-obispo"}, "06081": {"county": [], "districts": {"cd": [{"d": "CA-16", "rep": "Sam T. Liccardo", "w": 0.461}, {"d": "CA-15", "rep": "Kevin Mullin", "w": 0.156}], "sh": [{"d": "CA House District 23", "rep": "Marc Berman", "w": 0.462}, {"d": "CA House District 21", "rep": "Diane Papan", "w": 0.132}, {"d": "CA House District 19", "rep": "Catherine Stefani", "w": 0.024}], "ss": [{"d": "CA Senate District 13", "rep": "Josh Becker", "w": 0.594}, {"d": "CA Senate District 11", "rep": "Scott Wiener", "w": 0.024}]}, "munis": [{"m": "Daly City", "p": [{"n": "Rod Daus-Magbual", "r": "Mayor, Daly City, CA"}]}, {"m": "Menlo Park", "p": [{"n": "Cecilia Taylor", "r": "Mayor, Menlo Park, CA"}]}, {"m": "Pacifica", "p": [{"n": "Q105071623", "r": "Mayor, Pacifica, CA"}]}, {"m": "San Mateo", "p": [{"n": "Rick Bonilla", "r": "Mayor, San Mateo, CA"}]}], "slug": "san-mateo"}, "06083": {"county": [], "districts": {"cd": [{"d": "CA-24", "rep": "Salud O. Carbajal", "w": 0.727}], "sh": [{"d": "CA House District 37", "rep": "Gregg Hart", "w": 0.727}], "ss": [{"d": "CA Senate District 21", "rep": "Monique Limón", "w": 0.727}]}, "munis": [{"m": "Guadalupe", "p": [{"n": "Ariston Julian", "r": "Mayor, Guadalupe, CA"}]}, {"m": "Santa Barbara", "p": [{"n": "Cathy Murillo", "r": "Mayor, Santa Barbara, CA"}]}], "slug": "santa-barbara"}, "06085": {"county": [], "districts": {"cd": [{"d": "CA-18", "rep": "Zoe Lofgren", "w": 0.576}, {"d": "CA-19", "rep": "Jimmy Panetta", "w": 0.175}, {"d": "CA-16", "rep": "Sam T. Liccardo", "w": 0.146}, {"d": "CA-17", "rep": "Ro Khanna", "w": 0.098}], "sh": [{"d": "CA House District 25", "rep": "Ash Kalra", "w": 0.538}, {"d": "CA House District 28", "rep": "Gail Pellerin", "w": 0.197}, {"d": "CA House District 23", "rep": "Marc Berman", "w": 0.095}, {"d": "CA House District 29", "rep": "Robert Rivas", "w": 0.069}, {"d": "CA House District 26", "rep": "Patrick Ahrens", "w": 0.063}, {"d": "CA House District 24", "rep": "Alex Lee", "w": 0.035}], "ss": [{"d": "CA Senate District 15", "rep": "Dave Cortese", "w": 0.803}, {"d": "CA Senate District 13", "rep": "Josh Becker", "w": 0.112}, {"d": "CA Senate District 10", "rep": "Aisha Wahab", "w": 0.082}]}, "munis": [{"m": "Los Altos", "p": [{"n": "Sally Meadows", "r": "Mayor, Los Altos, CA"}]}, {"m": "Palo Alto", "p": [{"n": "Adrian Fine", "r": "Mayor, Palo Alto, CA"}]}, {"m": "San Jose", "p": [{"n": "Matt Mahan", "r": "Mayor, San Jose, CA"}]}, {"m": "Santa Clara", "p": [{"n": "Lisa Gillmor", "r": "Mayor, Santa Clara, CA"}]}, {"m": "Sunnyvale", "p": [{"n": "Larry Klein", "r": "Mayor, Sunnyvale, CA"}]}], "slug": "santa-clara"}, "06087": {"county": [], "districts": {"cd": [{"d": "CA-19", "rep": "Jimmy Panetta", "w": 0.66}, {"d": "CA-18", "rep": "Zoe Lofgren", "w": 0.074}], "sh": [{"d": "CA House District 28", "rep": "Gail Pellerin", "w": 0.532}, {"d": "CA House District 29", "rep": "Robert Rivas", "w": 0.117}, {"d": "CA House District 30", "rep": "Dawn Addis", "w": 0.086}], "ss": [{"d": "CA Senate District 17", "rep": "John Laird", "w": 0.736}]}, "munis": [], "slug": "santa-cruz"}, "06089": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.999}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [{"m": "Anderson", "p": [{"n": "Susie Baugh", "r": "Mayor, Anderson, CA"}]}, {"m": "Redding", "p": [{"n": "Michael Dacquisto", "r": "Mayor, Redding, CA"}]}], "slug": "shasta"}, "06091": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.999}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "sierra"}, "06093": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.999}], "sh": [{"d": "CA House District 1", "rep": "Heather Hadwick", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "siskiyou"}, "06095": {"county": [], "districts": {"cd": [{"d": "CA-04", "rep": "Mike Thompson", "w": 0.54}, {"d": "CA-08", "rep": "John Garamendi", "w": 0.423}, {"d": "CA-07", "rep": "Doris O. Matsui", "w": 0.019}], "sh": [{"d": "CA House District 11", "rep": "Lori Wilson", "w": 0.982}], "ss": [{"d": "CA Senate District 3", "rep": "Christopher Cabaldon", "w": 0.982}]}, "munis": [{"m": "Fairfield", "p": [{"n": "Harry T. Price", "r": "Mayor, Fairfield, CA"}]}, {"m": "Vacaville", "p": [{"n": "Ron Rowlett", "r": "Mayor, Vacaville, CA"}]}, {"m": "Vallejo", "p": [{"n": "Robert H. McConnell", "r": "Mayor, Vallejo, CA"}]}], "slug": "solano"}, "06097": {"county": [], "districts": {"cd": [{"d": "CA-02", "rep": "Jared Huffman", "w": 0.718}, {"d": "CA-04", "rep": "Mike Thompson", "w": 0.181}], "sh": [{"d": "CA House District 2", "rep": "Chris Rogers", "w": 0.663}, {"d": "CA House District 12", "rep": "Damon Connolly", "w": 0.221}, {"d": "CA House District 4", "rep": "Cecilia Aguiar-Curry", "w": 0.015}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 0.806}, {"d": "CA Senate District 3", "rep": "Christopher Cabaldon", "w": 0.093}]}, "munis": [{"m": "Healdsburg", "p": [{"n": "Oswaldo Jimenez", "r": "Mayor, Healdsburg, CA"}]}, {"m": "Santa Rosa", "p": [{"n": "Chris Rogers", "r": "Mayor, Santa Rosa, CA"}]}], "slug": "sonoma"}, "06099": {"county": [], "districts": {"cd": [{"d": "CA-13", "rep": "Adam Gray", "w": 0.558}, {"d": "CA-05", "rep": "Tom McClintock", "w": 0.343}, {"d": "CA-09", "rep": "Josh Harder", "w": 0.098}], "sh": [{"d": "CA House District 22", "rep": "Juan Alanis", "w": 0.604}, {"d": "CA House District 9", "rep": "Heath Flora", "w": 0.396}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [{"m": "Modesto", "p": [{"n": "Sue Zwahlen", "r": "Mayor, Modesto, CA"}]}], "slug": "stanislaus"}, "06101": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.997}], "sh": [{"d": "CA House District 3", "rep": "James Gallagher", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "sutter"}, "06103": {"county": [], "districts": {"cd": [{"d": "CA-01", "rep": "James Gallagher", "w": 0.999}], "sh": [{"d": "CA House District 3", "rep": "James Gallagher", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "tehama"}, "06105": {"county": [], "districts": {"cd": [{"d": "CA-02", "rep": "Jared Huffman", "w": 0.998}], "sh": [{"d": "CA House District 2", "rep": "Chris Rogers", "w": 1.0}], "ss": [{"d": "CA Senate District 2", "rep": "Mike McGuire", "w": 1.0}]}, "munis": [], "slug": "trinity"}, "06107": {"county": [], "districts": {"cd": [{"d": "CA-20", "rep": "Vince Fong", "w": 0.706}, {"d": "CA-22", "rep": "David G. Valadao", "w": 0.202}, {"d": "CA-21", "rep": "Jim Costa", "w": 0.091}], "sh": [{"d": "CA House District 32", "rep": "Stan Ellis", "w": 0.742}, {"d": "CA House District 33", "rep": "Ali Macedo", "w": 0.258}], "ss": [{"d": "CA Senate District 12", "rep": "Shannon Grove", "w": 0.748}, {"d": "CA Senate District 16", "rep": "Melissa Hurtado", "w": 0.252}]}, "munis": [{"m": "Visalia", "p": [{"n": "Brian Poochigian", "r": "Mayor, Visalia, CA"}]}], "slug": "tulare"}, "06109": {"county": [], "districts": {"cd": [{"d": "CA-05", "rep": "Tom McClintock", "w": 0.998}], "sh": [{"d": "CA House District 8", "rep": "David Tangipa", "w": 1.0}], "ss": [{"d": "CA Senate District 4", "rep": "Marie Alvarado-Gil", "w": 1.0}]}, "munis": [], "slug": "tuolumne"}, "06111": {"county": [], "districts": {"cd": [{"d": "CA-26", "rep": "Julia Brownley", "w": 0.769}, {"d": "CA-24", "rep": "Salud O. Carbajal", "w": 0.073}], "sh": [{"d": "CA House District 38", "rep": "Steve Bennett", "w": 0.691}, {"d": "CA House District 42", "rep": "Jacqui Irwin", "w": 0.149}], "ss": [{"d": "CA Senate District 21", "rep": "Monique Limón", "w": 0.757}, {"d": "CA Senate District 27", "rep": "Henry Stern", "w": 0.085}]}, "munis": [{"m": "Oxnard", "p": [{"n": "John C. Zaragoza", "r": "Mayor, Oxnard, CA"}]}, {"m": "Port Hueneme", "p": [{"n": "Richard W. Rollins", "r": "Mayor, Port Hueneme, CA"}]}, {"m": "San Buenaventura Ventura", "p": [{"n": "Joe Schroeder", "r": "Mayor, Ventura, CA"}]}, {"m": "Simi Valley", "p": [{"n": "Keith Mashburn", "r": "Mayor, Simi Valley, CA"}]}, {"m": "Thousand Oaks", "p": [{"n": "Bob Engler", "r": "Mayor, Thousand Oaks, CA"}]}], "slug": "ventura"}, "06113": {"county": [], "districts": {"cd": [{"d": "CA-04", "rep": "Mike Thompson", "w": 0.959}, {"d": "CA-07", "rep": "Doris O. Matsui", "w": 0.038}], "sh": [{"d": "CA House District 4", "rep": "Cecilia Aguiar-Curry", "w": 1.0}], "ss": [{"d": "CA Senate District 3", "rep": "Christopher Cabaldon", "w": 1.0}]}, "munis": [{"m": "Woodland", "p": [{"n": "Mayra Vega", "r": "Mayor, Woodland, CA"}]}], "slug": "yolo"}, "06115": {"county": [], "districts": {"cd": [{"d": "CA-03", "rep": "Kevin Kiley", "w": 0.688}, {"d": "CA-01", "rep": "James Gallagher", "w": 0.312}], "sh": [{"d": "CA House District 3", "rep": "James Gallagher", "w": 1.0}], "ss": [{"d": "CA Senate District 1", "rep": "Megan Dahle", "w": 1.0}]}, "munis": [], "slug": "yuba"}, "08001": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 0.71}, {"d": "CO-08", "rep": "Gabe Evans", "w": 0.21}, {"d": "CO-06", "rep": "Jason Crow", "w": 0.079}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 0.722}, {"d": "CO House District 36", "rep": "Michael Carter", "w": 0.077}, {"d": "CO House District 32", "rep": "Manny Rutinel", "w": 0.076}, {"d": "CO House District 48", "rep": "Carlos Barron", "w": 0.053}, {"d": "CO House District 31", "rep": "Jacque Phillips", "w": 0.017}, {"d": "CO House District 34", "rep": "Jenny Willford", "w": 0.015}, {"d": "CO House District 33", "rep": "Kenny Nguyen", "w": 0.014}, {"d": "CO House District 35", "rep": "Lorena García", "w": 0.013}, {"d": "CO House District 29", "rep": "Lori Goldstein", "w": 0.012}], "ss": [{"d": "CO Senate District 28", "rep": "Mike Weissman", "w": 0.11}, {"d": "CO Senate District 24", "rep": "Kyle Mullica", "w": 0.05}, {"d": "CO Senate District 13", "rep": "Scott Bright", "w": 0.031}, {"d": "CO Senate District 25", "rep": "William Lindstedt", "w": 0.018}]}, "munis": [{"m": "Thornton", "p": [{"n": "Janifer Kulmann", "r": "Mayor, Thornton, CO"}]}, {"m": "Westminster", "p": [{"n": "Nancy McNally", "r": "Mayor, Westminster, CO"}]}], "slug": "adams"}, "08003": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 62", "rep": "Matt Martinez", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "alamosa"}, "08005": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 0.758}, {"d": "CO-06", "rep": "Jason Crow", "w": 0.239}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 0.739}, {"d": "CO House District 36", "rep": "Michael Carter", "w": 0.077}, {"d": "CO House District 37", "rep": "Chad Clifford", "w": 0.043}, {"d": "CO House District 61", "rep": "Eliza Hamrick", "w": 0.031}, {"d": "CO House District 38", "rep": "Gretchen Rydin", "w": 0.027}, {"d": "CO House District 40", "rep": "Naquetta Ricks", "w": 0.026}, {"d": "CO House District 3", "rep": "Meg Froelich", "w": 0.02}, {"d": "CO House District 41", "rep": "Jamie Jackson", "w": 0.017}, {"d": "CO House District 42", "rep": "Mandy Lindsay", "w": 0.016}], "ss": [{"d": "CO Senate District 27", "rep": "Tom Sullivan", "w": 0.214}, {"d": "CO Senate District 28", "rep": "Mike Weissman", "w": 0.12}, {"d": "CO Senate District 26", "rep": "Jeff Bridges", "w": 0.035}, {"d": "CO Senate District 16", "rep": "Chris Kolker", "w": 0.035}, {"d": "CO Senate District 29", "rep": "Iman Jodeh", "w": 0.029}]}, "munis": [{"m": "Aurora", "p": [{"n": "Mike Coffman", "r": "Mayor, Aurora, CO"}]}, {"m": "Centennial", "p": [{"n": "Stephanie Piko", "r": "Mayor, Centennial, CO"}]}, {"m": "Englewood", "p": [{"n": "Othoniel Sierra", "r": "Mayor, Englewood, CO"}]}], "slug": "arapahoe"}, "08007": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 59", "rep": "Katie Stewart", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "archuleta"}, "08009": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 0.999}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "baca"}, "08011": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "bent"}, "08013": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 0.999}], "sh": [{"d": "CO House District 49", "rep": "Lesley Smith", "w": 0.774}, {"d": "CO House District 12", "rep": "Kyle Brown", "w": 0.106}, {"d": "CO House District 19", "rep": "Dan Woog", "w": 0.046}, {"d": "CO House District 11", "rep": "Karen McCormick", "w": 0.039}, {"d": "CO House District 10", "rep": "Junie Joseph", "w": 0.034}], "ss": [{"d": "CO Senate District 15", "rep": "Janice Marchman", "w": 0.781}, {"d": "CO Senate District 18", "rep": "Judy Amabile", "w": 0.111}, {"d": "CO Senate District 17", "rep": "Katie Wallace", "w": 0.108}]}, "munis": [{"m": "Boulder", "p": [{"n": "Aaron Brockett", "r": "Mayor, Boulder, CO"}]}, {"m": "Longmont", "p": [{"n": "Jean Peck", "r": "Mayor, Longmont, CO"}]}], "slug": "boulder"}, "08014": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 0.977}, {"d": "CO-02", "rep": "Joe Neguse", "w": 0.017}, {"d": "CO-08", "rep": "Gabe Evans", "w": 0.006}], "sh": [{"d": "CO House District 33", "rep": "Kenny Nguyen", "w": 0.992}, {"d": "CO House District 12", "rep": "Kyle Brown", "w": 0.007}], "ss": [{"d": "CO Senate District 25", "rep": "William Lindstedt", "w": 0.992}, {"d": "CO Senate District 17", "rep": "Katie Wallace", "w": 0.007}]}, "munis": [], "slug": "broomfield"}, "08015": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 0.997}], "sh": [{"d": "CO House District 13", "rep": "Julie McCluskie", "w": 0.897}, {"d": "CO House District 60", "rep": "Stephanie Luck", "w": 0.103}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 1.0}]}, "munis": [], "slug": "chaffee"}, "08017": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "cheyenne"}, "08019": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 0.999}], "sh": [{"d": "CO House District 49", "rep": "Lesley Smith", "w": 0.999}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 0.999}]}, "munis": [], "slug": "clear-creek"}, "08021": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 62", "rep": "Matt Martinez", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "conejos"}, "08023": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 62", "rep": "Matt Martinez", "w": 0.999}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 0.999}]}, "munis": [], "slug": "costilla"}, "08025": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 0.997}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 0.999}]}, "munis": [], "slug": "crowley"}, "08027": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 0.996}], "sh": [{"d": "CO House District 60", "rep": "Stephanie Luck", "w": 1.0}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 1.0}]}, "munis": [], "slug": "custer"}, "08029": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 54", "rep": "Matt Soper", "w": 0.502}, {"d": "CO House District 58", "rep": "Larry Suckla", "w": 0.498}], "ss": [{"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 0.827}, {"d": "CO Senate District 7", "rep": "Janice Rich", "w": 0.173}]}, "munis": [], "slug": "delta"}, "08031": {"county": [], "districts": {"cd": [{"d": "CO-01", "rep": "Diana DeGette", "w": 0.977}, {"d": "CO-06", "rep": "Jason Crow", "w": 0.01}, {"d": "CO-08", "rep": "Gabe Evans", "w": 0.007}, {"d": "CO-07", "rep": "Brittany Pettersen", "w": 0.005}], "sh": [{"d": "CO House District 7", "rep": "Jennifer Bacon", "w": 0.373}, {"d": "CO House District 8", "rep": "Lindsay Gilchrist", "w": 0.113}, {"d": "CO House District 1", "rep": "Javier Mabrey", "w": 0.105}, {"d": "CO House District 5", "rep": "Alex Valdez", "w": 0.099}, {"d": "CO House District 2", "rep": "Steven Woodrow", "w": 0.081}, {"d": "CO House District 4", "rep": "Cecelia Espenoza", "w": 0.075}, {"d": "CO House District 9", "rep": "Emily Sirota", "w": 0.059}, {"d": "CO House District 6", "rep": "Sean Camacho", "w": 0.058}, {"d": "CO House District 3", "rep": "Meg Froelich", "w": 0.037}], "ss": [{"d": "CO Senate District 33", "rep": "James Coleman", "w": 0.477}, {"d": "CO Senate District 34", "rep": "Julie Gonzales", "w": 0.171}, {"d": "CO Senate District 32", "rep": "Robert Rodriguez", "w": 0.151}, {"d": "CO Senate District 31", "rep": "Matt Ball", "w": 0.12}, {"d": "CO Senate District 26", "rep": "Jeff Bridges", "w": 0.082}]}, "munis": [], "slug": "denver"}, "08033": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 58", "rep": "Larry Suckla", "w": 0.999}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "dolores"}, "08035": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 0.994}], "sh": [{"d": "CO House District 39", "rep": "Brandi Bradley", "w": 0.802}, {"d": "CO House District 45", "rep": "Max Brooks", "w": 0.094}, {"d": "CO House District 44", "rep": "Tony Hartsook", "w": 0.074}, {"d": "CO House District 43", "rep": "Bob Marshall", "w": 0.025}, {"d": "CO House District 61", "rep": "Eliza Hamrick", "w": 0.005}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 0.715}, {"d": "CO Senate District 30", "rep": "John Carson", "w": 0.143}, {"d": "CO Senate District 2", "rep": "Lisa Frizell", "w": 0.139}]}, "munis": [], "slug": "douglas"}, "08037": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 0.738}, {"d": "CO-03", "rep": "Jeff Hurd", "w": 0.262}], "sh": [{"d": "CO House District 26", "rep": "Meghan Lukens", "w": 0.869}, {"d": "CO House District 57", "rep": "Elizabeth Velasco", "w": 0.131}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 0.883}, {"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 0.117}]}, "munis": [], "slug": "eagle"}, "08039": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "elbert"}, "08041": {"county": [], "districts": {"cd": [{"d": "CO-05", "rep": "Jeff Crank", "w": 0.692}, {"d": "CO-04", "rep": "Lauren Boebert", "w": 0.307}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 0.575}, {"d": "CO House District 20", "rep": "Jarvis Caldwell", "w": 0.147}, {"d": "CO House District 21", "rep": "Mary Bradfield", "w": 0.096}, {"d": "CO House District 18", "rep": "Amy Paschal", "w": 0.085}, {"d": "CO House District 15", "rep": "Scott Bottoms", "w": 0.041}, {"d": "CO House District 14", "rep": "Ava Flanell", "w": 0.02}, {"d": "CO House District 17", "rep": "Regina English", "w": 0.016}, {"d": "CO House District 16", "rep": "Rebecca Keltie", "w": 0.012}, {"d": "CO House District 22", "rep": "Ken DeGraaf", "w": 0.008}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 0.657}, {"d": "CO Senate District 12", "rep": "Marc Snyder", "w": 0.186}, {"d": "CO Senate District 9", "rep": "Lynda Zamora Wilson", "w": 0.093}, {"d": "CO Senate District 11", "rep": "Tony Exum", "w": 0.041}, {"d": "CO Senate District 10", "rep": "Larry Liston", "w": 0.023}]}, "munis": [{"m": "Colorado Springs", "p": [{"n": "Yemi Mobolade", "r": "Mayor, Colorado Springs, CO"}]}], "slug": "el-paso"}, "08043": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 1.0}], "sh": [{"d": "CO House District 60", "rep": "Stephanie Luck", "w": 1.0}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 1.0}]}, "munis": [], "slug": "fremont"}, "08045": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 57", "rep": "Elizabeth Velasco", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 0.781}, {"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 0.219}]}, "munis": [], "slug": "garfield"}, "08047": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 1.0}], "sh": [{"d": "CO House District 49", "rep": "Lesley Smith", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "gilpin"}, "08049": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 1.0}], "sh": [{"d": "CO House District 13", "rep": "Julie McCluskie", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "grand"}, "08051": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 0.999}], "sh": [{"d": "CO House District 58", "rep": "Larry Suckla", "w": 1.0}], "ss": [{"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 1.0}]}, "munis": [{"m": "Gunnison", "p": [{"n": "Diego Plata", "r": "Mayor, Gunnison, CO"}]}], "slug": "gunnison"}, "08053": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 58", "rep": "Larry Suckla", "w": 1.0}], "ss": [{"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 1.0}]}, "munis": [], "slug": "hinsdale"}, "08055": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 0.999}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 0.627}, {"d": "CO House District 62", "rep": "Matt Martinez", "w": 0.373}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "huerfano"}, "08057": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 1.0}], "sh": [{"d": "CO House District 13", "rep": "Julie McCluskie", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "08059": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 0.93}, {"d": "CO-02", "rep": "Joe Neguse", "w": 0.043}, {"d": "CO-06", "rep": "Jason Crow", "w": 0.025}], "sh": [{"d": "CO House District 25", "rep": "Tammy Story", "w": 0.603}, {"d": "CO House District 27", "rep": "Brianna Titone", "w": 0.235}, {"d": "CO House District 23", "rep": "Monica Duran", "w": 0.038}, {"d": "CO House District 28", "rep": "Sheila Lieder", "w": 0.037}, {"d": "CO House District 24", "rep": "Lisa Feret", "w": 0.033}, {"d": "CO House District 29", "rep": "Lori Goldstein", "w": 0.025}, {"d": "CO House District 30", "rep": "Rebekah Stewart", "w": 0.023}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 0.486}, {"d": "CO Senate District 20", "rep": "Lisa Cutter", "w": 0.356}, {"d": "CO Senate District 22", "rep": "Jessie Danielson", "w": 0.067}, {"d": "CO Senate District 19", "rep": "Lindsey Daugherty", "w": 0.066}, {"d": "CO Senate District 16", "rep": "Chris Kolker", "w": 0.025}]}, "munis": [{"m": "Arvada", "p": [{"n": "Marc Williams", "r": "Mayor, Arvada, CO"}]}], "slug": "jefferson"}, "08061": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "kiowa"}, "08063": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "kit-carson"}, "08065": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 0.996}], "sh": [{"d": "CO House District 13", "rep": "Julie McCluskie", "w": 1.0}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 1.0}]}, "munis": [], "slug": "lake"}, "08067": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 59", "rep": "Katie Stewart", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "la-plata"}, "08069": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 0.932}, {"d": "CO-04", "rep": "Lauren Boebert", "w": 0.058}, {"d": "CO-08", "rep": "Gabe Evans", "w": 0.01}], "sh": [{"d": "CO House District 49", "rep": "Lesley Smith", "w": 0.877}, {"d": "CO House District 65", "rep": "Lori Garcia Sander", "w": 0.058}, {"d": "CO House District 51", "rep": "Ron Weinberg", "w": 0.028}, {"d": "CO House District 52", "rep": "Yara Zokaie", "w": 0.017}, {"d": "CO House District 53", "rep": "Andy Boesenecker", "w": 0.013}, {"d": "CO House District 64", "rep": "Scott Slaugh", "w": 0.008}], "ss": [{"d": "CO Senate District 15", "rep": "Janice Marchman", "w": 0.934}, {"d": "CO Senate District 23", "rep": "Barbara Kirkmeyer", "w": 0.036}, {"d": "CO Senate District 14", "rep": "Cathy Kipp", "w": 0.03}]}, "munis": [{"m": "Fort Collins", "p": [{"n": "Jeni Arndt", "r": "Mayor, Fort Collins, CO"}]}], "slug": "larimer"}, "08071": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "las-animas"}, "08073": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 56", "rep": "Chris Richardson", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "08075": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 1.0}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 1.0}]}, "munis": [], "slug": "logan"}, "08077": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 54", "rep": "Matt Soper", "w": 0.98}, {"d": "CO House District 55", "rep": "Rick Taggart", "w": 0.02}], "ss": [{"d": "CO Senate District 7", "rep": "Janice Rich", "w": 1.0}]}, "munis": [], "slug": "mesa"}, "08079": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 62", "rep": "Matt Martinez", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "mineral"}, "08081": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 26", "rep": "Meghan Lukens", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "moffat"}, "08083": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 59", "rep": "Katie Stewart", "w": 0.747}, {"d": "CO House District 58", "rep": "Larry Suckla", "w": 0.253}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "montezuma"}, "08085": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 58", "rep": "Larry Suckla", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 0.722}, {"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 0.278}]}, "munis": [], "slug": "montrose"}, "08087": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 1.0}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "08089": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 0.996}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "otero"}, "08091": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 58", "rep": "Larry Suckla", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "ouray"}, "08093": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 1.0}], "sh": [{"d": "CO House District 13", "rep": "Julie McCluskie", "w": 1.0}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 1.0}]}, "munis": [], "slug": "park"}, "08095": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 1.0}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 1.0}]}, "munis": [], "slug": "phillips"}, "08097": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 0.998}], "sh": [{"d": "CO House District 57", "rep": "Elizabeth Velasco", "w": 1.0}], "ss": [{"d": "CO Senate District 5", "rep": "Marc Catlin", "w": 1.0}]}, "munis": [], "slug": "pitkin"}, "08099": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 1.0}], "ss": [{"d": "CO Senate District 35", "rep": "Rod Pelton", "w": 1.0}]}, "munis": [], "slug": "prowers"}, "08101": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 47", "rep": "Ty Winter", "w": 0.584}, {"d": "CO House District 46", "rep": "Tisha Mauro", "w": 0.281}, {"d": "CO House District 60", "rep": "Stephanie Luck", "w": 0.079}, {"d": "CO House District 62", "rep": "Matt Martinez", "w": 0.056}], "ss": [{"d": "CO Senate District 3", "rep": "Nick Hinrichsen", "w": 1.0}]}, "munis": [{"m": "Pueblo", "p": [{"n": "Nick Gradisar", "r": "Mayor, Pueblo, CO"}]}], "slug": "pueblo"}, "08103": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 26", "rep": "Meghan Lukens", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "rio-blanco"}, "08105": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 62", "rep": "Matt Martinez", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "rio-grande"}, "08107": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 0.999}], "sh": [{"d": "CO House District 26", "rep": "Meghan Lukens", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "routt"}, "08109": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 62", "rep": "Matt Martinez", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "saguache"}, "08111": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 59", "rep": "Katie Stewart", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "san-juan"}, "08113": {"county": [], "districts": {"cd": [{"d": "CO-03", "rep": "Jeff Hurd", "w": 1.0}], "sh": [{"d": "CO House District 58", "rep": "Larry Suckla", "w": 1.0}], "ss": [{"d": "CO Senate District 6", "rep": "Cleave Simpson", "w": 1.0}]}, "munis": [], "slug": "san-miguel"}, "08115": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 1.0}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 1.0}]}, "munis": [], "slug": "sedgwick"}, "08117": {"county": [], "districts": {"cd": [{"d": "CO-02", "rep": "Joe Neguse", "w": 0.998}], "sh": [{"d": "CO House District 13", "rep": "Julie McCluskie", "w": 1.0}], "ss": [{"d": "CO Senate District 8", "rep": "Dylan Roberts", "w": 1.0}]}, "munis": [], "slug": "summit"}, "08119": {"county": [], "districts": {"cd": [{"d": "CO-07", "rep": "Brittany Pettersen", "w": 1.0}], "sh": [{"d": "CO House District 60", "rep": "Stephanie Luck", "w": 0.999}], "ss": [{"d": "CO Senate District 4", "rep": "Mark Baisley", "w": 0.999}]}, "munis": [], "slug": "teller"}, "08121": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 1.0}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 1.0}]}, "munis": [], "slug": "washington"}, "08123": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 0.803}, {"d": "CO-08", "rep": "Gabe Evans", "w": 0.187}, {"d": "CO-02", "rep": "Joe Neguse", "w": 0.01}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 0.775}, {"d": "CO House District 48", "rep": "Carlos Barron", "w": 0.119}, {"d": "CO House District 64", "rep": "Scott Slaugh", "w": 0.041}, {"d": "CO House District 65", "rep": "Lori Garcia Sander", "w": 0.029}, {"d": "CO House District 19", "rep": "Dan Woog", "w": 0.028}, {"d": "CO House District 50", "rep": "Ryan Gonzalez", "w": 0.008}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 0.875}, {"d": "CO Senate District 23", "rep": "Barbara Kirkmeyer", "w": 0.08}, {"d": "CO Senate District 13", "rep": "Scott Bright", "w": 0.039}, {"d": "CO Senate District 17", "rep": "Katie Wallace", "w": 0.007}]}, "munis": [{"m": "Greeley", "p": [{"n": "John Gates", "r": "Mayor, Greeley, CO"}]}], "slug": "weld"}, "08125": {"county": [], "districts": {"cd": [{"d": "CO-04", "rep": "Lauren Boebert", "w": 1.0}], "sh": [{"d": "CO House District 63", "rep": "Dusty Johnson", "w": 1.0}], "ss": [{"d": "CO Senate District 1", "rep": "Byron Pelton", "w": 1.0}]}, "munis": [], "slug": "yuma"}, "09110": {"county": [], "districts": {"cd": [{"d": "CT-02", "rep": "Joe Courtney", "w": 0.506}, {"d": "CT-01", "rep": "John B. Larson", "w": 0.365}, {"d": "CT-05", "rep": "Jahana Hayes", "w": 0.129}], "sh": [{"d": "CT House District 55", "rep": "Steve Weir", "w": 0.091}, {"d": "CT House District 52", "rep": "Kurt Vail", "w": 0.084}, {"d": "CT House District 53", "rep": "Tammy Nuccio", "w": 0.076}, {"d": "CT House District 8", "rep": "Tim Ackert", "w": 0.066}, {"d": "CT House District 61", "rep": "Tami Zawistowski", "w": 0.063}, {"d": "CT House District 57", "rep": "Jaime Foster", "w": 0.045}, {"d": "CT House District 62", "rep": "Mark Anderson", "w": 0.039}, {"d": "CT House District 17", "rep": "Eleni DeGraw", "w": 0.036}, {"d": "CT House District 16", "rep": "Melissa Osborne", "w": 0.033}, {"d": "CT House District 59", "rep": "Carol Hall", "w": 0.032}, {"d": "CT House District 54", "rep": "Gregg Haddad", "w": 0.031}, {"d": "CT House District 31", "rep": "Jill Barry", "w": 0.028}, {"d": "CT House District 60", "rep": "Jane Garibay", "w": 0.027}, {"d": "CT House District 15", "rep": "Bobby Gibson", "w": 0.026}, {"d": "CT House District 14", "rep": "Tom Delnicki", "w": 0.024}, {"d": "CT House District 21", "rep": "Mike Demicco", "w": 0.024}, {"d": "CT House District 30", "rep": "Donna Veach", "w": 0.024}, {"d": "CT House District 19", "rep": "Tammy Exum", "w": 0.022}, {"d": "CT House District 13", "rep": "Jason Doucette", "w": 0.019}, {"d": "CT House District 22", "rep": "Rebecca Martinez", "w": 0.018}, {"d": "CT House District 29", "rep": "Kerry Wood", "w": 0.016}, {"d": "CT House District 58", "rep": "John Santanella", "w": 0.015}, {"d": "CT House District 5", "rep": "Maryam Khan", "w": 0.013}, {"d": "CT House District 50", "rep": "Pat Boyd", "w": 0.013}, {"d": "CT House District 81", "rep": "Chris Poulos", "w": 0.012}, {"d": "CT House District 83", "rep": "Jack Fazzino", "w": 0.011}, {"d": "CT House District 9", "rep": "Jason Rojas", "w": 0.01}, {"d": "CT House District 11", "rep": "Patrick Biggins", "w": 0.01}, {"d": "CT House District 28", "rep": "Amy Morrin Bello", "w": 0.009}, {"d": "CT House District 80", "rep": "Gale Mastrofrancesco", "w": 0.009}, {"d": "CT House District 27", "rep": "Gary Turco", "w": 0.009}, {"d": "CT House District 10", "rep": "Henry Genga", "w": 0.009}, {"d": "CT House District 56", "rep": "Kevin Brown", "w": 0.009}, {"d": "CT House District 20", "rep": "Kate Farrar", "w": 0.008}, {"d": "CT House District 12", "rep": "Geoff Luxenberg", "w": 0.007}, {"d": "CT House District 24", "rep": "Manny Sanchez", "w": 0.005}], "ss": [{"d": "CT Senate District 35", "rep": "Jeff Gordon", "w": 0.194}, {"d": "CT Senate District 7", "rep": "John Kissel", "w": 0.164}, {"d": "CT Senate District 4", "rep": "M.D. Rahman", "w": 0.105}, {"d": "CT Senate District 8", "rep": "Paul Honig", "w": 0.089}, {"d": "CT Senate District 3", "rep": "Saud Anwar", "w": 0.088}, {"d": "CT Senate District 19", "rep": "Cathy Osten", "w": 0.079}, {"d": "CT Senate District 2", "rep": "Doug McCrory", "w": 0.053}, {"d": "CT Senate District 5", "rep": "Derek Slap", "w": 0.049}, {"d": "CT Senate District 29", "rep": "Mae Flexer", "w": 0.044}, {"d": "CT Senate District 6", "rep": "Rick Lopes", "w": 0.043}, {"d": "CT Senate District 16", "rep": "Rob Sampson", "w": 0.035}, {"d": "CT Senate District 9", "rep": "Matt Lesser", "w": 0.028}, {"d": "CT Senate District 1", "rep": "John Fonfara", "w": 0.02}, {"d": "CT Senate District 31", "rep": "Henri Martin", "w": 0.009}]}, "munis": [], "slug": ""}, "09120": {"county": [], "districts": {"cd": [{"d": "CT-04", "rep": "James A. Himes", "w": 0.529}, {"d": "CT-03", "rep": "Rosa L. DeLauro", "w": 0.079}], "sh": [{"d": "CT House District 112", "rep": "Tony Scott", "w": 0.153}, {"d": "CT House District 134", "rep": "Sarah Keitt", "w": 0.086}, {"d": "CT House District 135", "rep": "Anne Hughes", "w": 0.083}, {"d": "CT House District 123", "rep": "Dave Rutigliano", "w": 0.072}, {"d": "CT House District 120", "rep": "Kaitlyn Shake", "w": 0.032}, {"d": "CT House District 132", "rep": "Jenn Leeper", "w": 0.032}, {"d": "CT House District 121", "rep": "Joe Gresko", "w": 0.031}, {"d": "CT House District 122", "rep": "Ben McGorty", "w": 0.027}, {"d": "CT House District 133", "rep": "Cristin McCarthy Vahey", "w": 0.024}, {"d": "CT House District 126", "rep": "Fred Gee", "w": 0.016}, {"d": "CT House District 124", "rep": "Andre Baker", "w": 0.014}, {"d": "CT House District 130", "rep": "Tone Felipe", "w": 0.013}, {"d": "CT House District 129", "rep": "Steve Stafstrom", "w": 0.011}, {"d": "CT House District 127", "rep": "Marcus Brown", "w": 0.01}, {"d": "CT House District 128", "rep": "Christopher Rosario", "w": 0.007}], "ss": [{"d": "CT Senate District 28", "rep": "Tony Hwang", "w": 0.249}, {"d": "CT Senate District 22", "rep": "Sujata Gadkar-Wilcox", "w": 0.159}, {"d": "CT Senate District 21", "rep": "Jason Perillo", "w": 0.15}, {"d": "CT Senate District 23", "rep": "Herron Gaston", "w": 0.052}]}, "munis": [], "slug": ""}, "09130": {"county": [], "districts": {"cd": [{"d": "CT-02", "rep": "Joe Courtney", "w": 0.636}, {"d": "CT-03", "rep": "Rosa L. DeLauro", "w": 0.122}, {"d": "CT-01", "rep": "John B. Larson", "w": 0.105}], "sh": [{"d": "CT House District 34", "rep": "Irene Haines", "w": 0.181}, {"d": "CT House District 36", "rep": "Renee Muir", "w": 0.172}, {"d": "CT House District 23", "rep": "Devin Carney", "w": 0.154}, {"d": "CT House District 35", "rep": "Chris Aniskovich", "w": 0.127}, {"d": "CT House District 32", "rep": "Christie Carpino", "w": 0.073}, {"d": "CT House District 100", "rep": "Kai Belton", "w": 0.051}, {"d": "CT House District 101", "rep": "John-Michael Parker", "w": 0.035}, {"d": "CT House District 33", "rep": "Brandon Chafee", "w": 0.031}, {"d": "CT House District 90", "rep": "Craig Fishbein", "w": 0.026}, {"d": "CT House District 86", "rep": "Vin Candelora", "w": 0.011}], "ss": [{"d": "CT Senate District 33", "rep": "Norm Needleman", "w": 0.551}, {"d": "CT Senate District 12", "rep": "Christine Cohen", "w": 0.111}, {"d": "CT Senate District 9", "rep": "Matt Lesser", "w": 0.07}, {"d": "CT Senate District 20", "rep": "Martha Marx", "w": 0.062}, {"d": "CT Senate District 13", "rep": "Jan Hochadel", "w": 0.051}, {"d": "CT Senate District 34", "rep": "Paul Cicarella", "w": 0.017}]}, "munis": [], "slug": ""}, "09140": {"county": [], "districts": {"cd": [{"d": "CT-05", "rep": "Jahana Hayes", "w": 0.609}, {"d": "CT-03", "rep": "Rosa L. DeLauro", "w": 0.216}, {"d": "CT-04", "rep": "James A. Himes", "w": 0.111}, {"d": "CT-01", "rep": "John B. Larson", "w": 0.064}], "sh": [{"d": "CT House District 66", "rep": "Karen Reddington-Hughes", "w": 0.134}, {"d": "CT House District 131", "rep": "Arnie Jensen", "w": 0.108}, {"d": "CT House District 69", "rep": "Jason Buchsbaum", "w": 0.081}, {"d": "CT House District 68", "rep": "Joe Polletta", "w": 0.072}, {"d": "CT House District 78", "rep": "Joe Hoxha", "w": 0.071}, {"d": "CT House District 105", "rep": "Nicole Klarides-Ditria", "w": 0.062}, {"d": "CT House District 89", "rep": "Lezlye Zupkus", "w": 0.059}, {"d": "CT House District 71", "rep": "Bill Pizzuto", "w": 0.056}, {"d": "CT House District 80", "rep": "Gale Mastrofrancesco", "w": 0.05}, {"d": "CT House District 103", "rep": "Liz Linehan", "w": 0.04}, {"d": "CT House District 113", "rep": "Amy Romano", "w": 0.04}, {"d": "CT House District 122", "rep": "Ben McGorty", "w": 0.036}, {"d": "CT House District 76", "rep": "John Piscopo", "w": 0.029}, {"d": "CT House District 77", "rep": "Cara Pavalock-D'Amato", "w": 0.026}, {"d": "CT House District 70", "rep": "Seth Bronko", "w": 0.024}, {"d": "CT House District 79", "rep": "Mary Fortier", "w": 0.02}, {"d": "CT House District 104", "rep": "Kara Rochelle", "w": 0.017}, {"d": "CT House District 72", "rep": "Larry Butler", "w": 0.017}, {"d": "CT House District 83", "rep": "Jack Fazzino", "w": 0.017}, {"d": "CT House District 73", "rep": "Ron Napoli", "w": 0.015}, {"d": "CT House District 74", "rep": "Michael DiGiovancarlo", "w": 0.013}, {"d": "CT House District 75", "rep": "Geraldo Reyes", "w": 0.008}, {"d": "CT House District 114", "rep": "Mary Welander", "w": 0.007}], "ss": [{"d": "CT Senate District 32", "rep": "Eric Berthel", "w": 0.415}, {"d": "CT Senate District 31", "rep": "Henri Martin", "w": 0.146}, {"d": "CT Senate District 16", "rep": "Rob Sampson", "w": 0.13}, {"d": "CT Senate District 21", "rep": "Jason Perillo", "w": 0.093}, {"d": "CT Senate District 17", "rep": "Jorge Cabrera", "w": 0.079}, {"d": "CT Senate District 15", "rep": "Joan Hartley", "w": 0.076}, {"d": "CT Senate District 13", "rep": "Jan Hochadel", "w": 0.046}, {"d": "CT Senate District 30", "rep": "Stephen Harding", "w": 0.014}]}, "munis": [], "slug": ""}, "09150": {"county": [], "districts": {"cd": [{"d": "CT-02", "rep": "Joe Courtney", "w": 1.0}], "sh": [{"d": "CT House District 50", "rep": "Pat Boyd", "w": 0.333}, {"d": "CT House District 47", "rep": "Doug Dubitsky", "w": 0.18}, {"d": "CT House District 51", "rep": "Chris Stewart", "w": 0.171}, {"d": "CT House District 44", "rep": "Anne Dauphinais", "w": 0.137}, {"d": "CT House District 52", "rep": "Kurt Vail", "w": 0.109}, {"d": "CT House District 45", "rep": "Brian Lanoue", "w": 0.07}], "ss": [{"d": "CT Senate District 29", "rep": "Mae Flexer", "w": 0.43}, {"d": "CT Senate District 35", "rep": "Jeff Gordon", "w": 0.374}, {"d": "CT Senate District 18", "rep": "Heather Somers", "w": 0.195}]}, "munis": [], "slug": ""}, "09160": {"county": [], "districts": {"cd": [{"d": "CT-05", "rep": "Jahana Hayes", "w": 0.735}, {"d": "CT-01", "rep": "John B. Larson", "w": 0.265}], "sh": [{"d": "CT House District 64", "rep": "Maria Horn", "w": 0.493}, {"d": "CT House District 62", "rep": "Mark Anderson", "w": 0.138}, {"d": "CT House District 63", "rep": "Jay Case", "w": 0.122}, {"d": "CT House District 66", "rep": "Karen Reddington-Hughes", "w": 0.118}, {"d": "CT House District 76", "rep": "John Piscopo", "w": 0.085}, {"d": "CT House District 69", "rep": "Jason Buchsbaum", "w": 0.033}, {"d": "CT House District 65", "rep": "Joe Canino", "w": 0.01}], "ss": [{"d": "CT Senate District 30", "rep": "Stephen Harding", "w": 0.595}, {"d": "CT Senate District 8", "rep": "Paul Honig", "w": 0.271}, {"d": "CT Senate District 32", "rep": "Eric Berthel", "w": 0.07}, {"d": "CT Senate District 5", "rep": "Derek Slap", "w": 0.038}, {"d": "CT Senate District 31", "rep": "Henri Martin", "w": 0.026}]}, "munis": [], "slug": ""}, "09170": {"county": [], "districts": {"cd": [{"d": "CT-03", "rep": "Rosa L. DeLauro", "w": 0.512}, {"d": "CT-02", "rep": "Joe Courtney", "w": 0.06}, {"d": "CT-05", "rep": "Jahana Hayes", "w": 0.039}], "sh": [{"d": "CT House District 86", "rep": "Vin Candelora", "w": 0.075}, {"d": "CT House District 98", "rep": "Moira Rader", "w": 0.062}, {"d": "CT House District 101", "rep": "John-Michael Parker", "w": 0.059}, {"d": "CT House District 114", "rep": "Mary Welander", "w": 0.048}, {"d": "CT House District 90", "rep": "Craig Fishbein", "w": 0.044}, {"d": "CT House District 89", "rep": "Lezlye Zupkus", "w": 0.035}, {"d": "CT House District 87", "rep": "Dave Yaccarino", "w": 0.034}, {"d": "CT House District 119", "rep": "Kathy Kennedy", "w": 0.029}, {"d": "CT House District 102", "rep": "Robin Comey", "w": 0.025}, {"d": "CT House District 82", "rep": "Michael Quinn", "w": 0.022}, {"d": "CT House District 88", "rep": "Josh Elliott", "w": 0.021}, {"d": "CT House District 85", "rep": "Mary Mushinsky", "w": 0.017}, {"d": "CT House District 117", "rep": "M.J. Shannon", "w": 0.017}, {"d": "CT House District 99", "rep": "Joe Zullo", "w": 0.016}, {"d": "CT House District 103", "rep": "Liz Linehan", "w": 0.015}, {"d": "CT House District 118", "rep": "Frank Smith", "w": 0.013}, {"d": "CT House District 91", "rep": "Laurie Sweet", "w": 0.013}, {"d": "CT House District 83", "rep": "Jack Fazzino", "w": 0.011}, {"d": "CT House District 97", "rep": "Al Paolillo", "w": 0.008}, {"d": "CT House District 116", "rep": "Treneé McGee", "w": 0.008}, {"d": "CT House District 92", "rep": "Pat Dillon", "w": 0.006}, {"d": "CT House District 115", "rep": "Bill Heffernan", "w": 0.006}, {"d": "CT House District 84", "rep": "Hilda Santiago", "w": 0.006}, {"d": "CT House District 96", "rep": "Roland Lemar", "w": 0.005}], "ss": [{"d": "CT Senate District 12", "rep": "Christine Cohen", "w": 0.215}, {"d": "CT Senate District 34", "rep": "Paul Cicarella", "w": 0.122}, {"d": "CT Senate District 17", "rep": "Jorge Cabrera", "w": 0.089}, {"d": "CT Senate District 14", "rep": "James Maroney", "w": 0.08}, {"d": "CT Senate District 11", "rep": "Martin Looney", "w": 0.041}, {"d": "CT Senate District 13", "rep": "Jan Hochadel", "w": 0.039}, {"d": "CT Senate District 10", "rep": "Gary Winfield", "w": 0.024}]}, "munis": [], "slug": ""}, "09180": {"county": [], "districts": {"cd": [{"d": "CT-02", "rep": "Joe Courtney", "w": 0.914}], "sh": [{"d": "CT House District 48", "rep": "Mark DeCaprio", "w": 0.183}, {"d": "CT House District 43", "rep": "Greg Howard", "w": 0.158}, {"d": "CT House District 45", "rep": "Brian Lanoue", "w": 0.128}, {"d": "CT House District 37", "rep": "Nick Menapace", "w": 0.089}, {"d": "CT House District 38", "rep": "Nick Gauthier", "w": 0.074}, {"d": "CT House District 139", "rep": "Larry Pemberton", "w": 0.053}, {"d": "CT House District 41", "rep": "Aundré Bumgardner", "w": 0.045}, {"d": "CT House District 47", "rep": "Doug Dubitsky", "w": 0.044}, {"d": "CT House District 49", "rep": "Susan Johnson", "w": 0.041}, {"d": "CT House District 40", "rep": "Dan Gaiewski", "w": 0.031}, {"d": "CT House District 8", "rep": "Tim Ackert", "w": 0.03}, {"d": "CT House District 34", "rep": "Irene Haines", "w": 0.022}, {"d": "CT House District 46", "rep": "Derell Wilson", "w": 0.014}, {"d": "CT House District 39", "rep": "Anthony Nolan", "w": 0.007}], "ss": [{"d": "CT Senate District 18", "rep": "Heather Somers", "w": 0.295}, {"d": "CT Senate District 19", "rep": "Cathy Osten", "w": 0.269}, {"d": "CT Senate District 20", "rep": "Martha Marx", "w": 0.24}, {"d": "CT Senate District 33", "rep": "Norm Needleman", "w": 0.073}, {"d": "CT Senate District 29", "rep": "Mae Flexer", "w": 0.041}]}, "munis": [], "slug": ""}, "09190": {"county": [], "districts": {"cd": [{"d": "CT-04", "rep": "James A. Himes", "w": 0.45}, {"d": "CT-05", "rep": "Jahana Hayes", "w": 0.417}], "sh": [{"d": "CT House District 108", "rep": "Pat Callahan", "w": 0.098}, {"d": "CT House District 135", "rep": "Anne Hughes", "w": 0.081}, {"d": "CT House District 106", "rep": "Mitch Bolinsky", "w": 0.079}, {"d": "CT House District 67", "rep": "Billy Buckbee", "w": 0.077}, {"d": "CT House District 149", "rep": "Tina Courpas", "w": 0.061}, {"d": "CT House District 42", "rep": "Savet Constantine", "w": 0.054}, {"d": "CT House District 111", "rep": "Aimee Berger-Girvalo", "w": 0.05}, {"d": "CT House District 107", "rep": "Marty Foncello", "w": 0.049}, {"d": "CT House District 2", "rep": "Raghib Allie-Brennan", "w": 0.041}, {"d": "CT House District 125", "rep": "Tom O'Dea", "w": 0.04}, {"d": "CT House District 69", "rep": "Jason Buchsbaum", "w": 0.034}, {"d": "CT House District 136", "rep": "Jonathan Steinberg", "w": 0.029}, {"d": "CT House District 138", "rep": "Ken Gucker", "w": 0.023}, {"d": "CT House District 141", "rep": "Tracy Marra", "w": 0.021}, {"d": "CT House District 151", "rep": "Hector Arzeno", "w": 0.02}, {"d": "CT House District 142", "rep": "Lucy Dathan", "w": 0.016}, {"d": "CT House District 143", "rep": "Dominique Johnson", "w": 0.014}, {"d": "CT House District 150", "rep": "Steve Meskers", "w": 0.014}, {"d": "CT House District 109", "rep": "Farley Santos", "w": 0.013}, {"d": "CT House District 147", "rep": "Matt Blumenthal", "w": 0.012}, {"d": "CT House District 137", "rep": "Kadeem Roberts", "w": 0.009}], "ss": [{"d": "CT Senate District 26", "rep": "Ceci Maher", "w": 0.195}, {"d": "CT Senate District 30", "rep": "Stephen Harding", "w": 0.187}, {"d": "CT Senate District 36", "rep": "Ryan Fazio", "w": 0.143}, {"d": "CT Senate District 28", "rep": "Tony Hwang", "w": 0.109}, {"d": "CT Senate District 24", "rep": "Julie Kushner", "w": 0.106}, {"d": "CT Senate District 25", "rep": "Bob Duff", "w": 0.048}, {"d": "CT Senate District 32", "rep": "Eric Berthel", "w": 0.042}, {"d": "CT Senate District 27", "rep": "Pat Miller", "w": 0.028}]}, "munis": [], "slug": ""}, "10001": {"county": [], "districts": {"cd": [{"d": "DE-00", "rep": "Sarah McBride", "w": 0.75}], "sh": [{"d": "DE House District 30", "rep": "Shannon Morris", "w": 0.26}, {"d": "DE House District 28", "rep": "Bill Carson", "w": 0.133}, {"d": "DE House District 33", "rep": "Charles Postles", "w": 0.127}, {"d": "DE House District 11", "rep": "Jeff Spiegelman", "w": 0.1}, {"d": "DE House District 32", "rep": "Kerri Harris", "w": 0.043}, {"d": "DE House District 29", "rep": "Bill Bush", "w": 0.04}, {"d": "DE House District 34", "rep": "Lyndon Yearick", "w": 0.029}, {"d": "DE House District 31", "rep": "Sean Lynn", "w": 0.016}], "ss": [{"d": "DE Senate District 15", "rep": "Dave Lawson", "w": 0.395}, {"d": "DE Senate District 16", "rep": "Eric Buckson", "w": 0.18}, {"d": "DE Senate District 14", "rep": "Kyra Hoffner", "w": 0.116}, {"d": "DE Senate District 17", "rep": "Trey Paradee", "w": 0.037}, {"d": "DE Senate District 18", "rep": "Dave Wilson", "w": 0.019}]}, "munis": [{"m": "Dover", "p": [{"n": "Robin Christiansen", "r": "Mayor, Dover, DE"}]}], "slug": "kent"}, "10003": {"county": [], "districts": {"cd": [{"d": "DE-00", "rep": "Sarah McBride", "w": 0.905}], "sh": [{"d": "DE House District 9", "rep": "Kevin Hensley", "w": 0.164}, {"d": "DE House District 11", "rep": "Jeff Spiegelman", "w": 0.136}, {"d": "DE House District 12", "rep": "Krista Griffith", "w": 0.07}, {"d": "DE House District 27", "rep": "Eric Morrison", "w": 0.061}, {"d": "DE House District 8", "rep": "Rae Moore", "w": 0.057}, {"d": "DE House District 17", "rep": "Melissa Minor-Brown", "w": 0.053}, {"d": "DE House District 15", "rep": "Kam Smith", "w": 0.04}, {"d": "DE House District 23", "rep": "Mara Gorman", "w": 0.033}, {"d": "DE House District 22", "rep": "Mike Smith", "w": 0.027}, {"d": "DE House District 16", "rep": "Frank Cooke", "w": 0.026}, {"d": "DE House District 25", "rep": "Cyndie Romer", "w": 0.025}, {"d": "DE House District 6", "rep": "Debra Heffernan", "w": 0.019}, {"d": "DE House District 21", "rep": "Frank Burns", "w": 0.019}, {"d": "DE House District 19", "rep": "Kim Williams", "w": 0.018}, {"d": "DE House District 10", "rep": "Melanie Ross Levin", "w": 0.017}, {"d": "DE House District 18", "rep": "Sophie Phillips", "w": 0.017}, {"d": "DE House District 24", "rep": "Ed Osienski", "w": 0.016}, {"d": "DE House District 26", "rep": "Madinah Wilson-Anton", "w": 0.015}, {"d": "DE House District 2", "rep": "Stephanie Bolden", "w": 0.014}, {"d": "DE House District 7", "rep": "Larry Lambert", "w": 0.013}, {"d": "DE House District 13", "rep": "DeShanna Neal", "w": 0.011}, {"d": "DE House District 5", "rep": "Kendra Johnson", "w": 0.011}, {"d": "DE House District 28", "rep": "Bill Carson", "w": 0.01}], "ss": [{"d": "DE Senate District 14", "rep": "Kyra Hoffner", "w": 0.217}, {"d": "DE Senate District 12", "rep": "Nicole Poore", "w": 0.151}, {"d": "DE Senate District 10", "rep": "Stephanie Hansen", "w": 0.123}, {"d": "DE Senate District 4", "rep": "Laura Sturgeon", "w": 0.09}, {"d": "DE Senate District 8", "rep": "Dave Sokola", "w": 0.051}, {"d": "DE Senate District 11", "rep": "Bryan Townsend", "w": 0.042}, {"d": "DE Senate District 9", "rep": "Jack Walsh", "w": 0.041}, {"d": "DE Senate District 2", "rep": "Darius Brown", "w": 0.035}, {"d": "DE Senate District 13", "rep": "Marie Pinkney", "w": 0.033}, {"d": "DE Senate District 7", "rep": "Spiros Mantzavinos", "w": 0.03}, {"d": "DE Senate District 5", "rep": "Ray Seigfried", "w": 0.027}, {"d": "DE Senate District 1", "rep": "Dan Cruce", "w": 0.026}, {"d": "DE Senate District 3", "rep": "Tizzy Lockman", "w": 0.016}]}, "munis": [{"m": "New Castle", "p": [{"n": "Valarie Leary", "r": "Mayor, New Castle, DE"}]}, {"m": "Newark", "p": [{"n": "Jerry Clifton", "r": "Mayor, Newark, DE"}]}, {"m": "Wilmington", "p": [{"n": "Mike Purzycki", "r": "Mayor, Wilmington, DE"}]}], "slug": "new-castle"}, "10005": {"county": [], "districts": {"cd": [{"d": "DE-00", "rep": "Sarah McBride", "w": 0.818}], "sh": [{"d": "DE House District 35", "rep": "Jesse Vanderwende", "w": 0.165}, {"d": "DE House District 40", "rep": "Tim Dukes", "w": 0.13}, {"d": "DE House District 41", "rep": "Rich Collins", "w": 0.112}, {"d": "DE House District 36", "rep": "Bryan Shupe", "w": 0.103}, {"d": "DE House District 37", "rep": "Valerie Giltner", "w": 0.075}, {"d": "DE House District 39", "rep": "Danny Short", "w": 0.059}, {"d": "DE House District 20", "rep": "Alonna Berry", "w": 0.048}, {"d": "DE House District 38", "rep": "Ron Gray", "w": 0.045}, {"d": "DE House District 4", "rep": "Jeff Hilovsky", "w": 0.044}, {"d": "DE House District 14", "rep": "Claire Snyder-Hall", "w": 0.036}], "ss": [{"d": "DE Senate District 21", "rep": "Bryant Richardson", "w": 0.245}, {"d": "DE Senate District 18", "rep": "Dave Wilson", "w": 0.218}, {"d": "DE Senate District 19", "rep": "Brian Pettyjohn", "w": 0.139}, {"d": "DE Senate District 6", "rep": "Russ Huxtable", "w": 0.109}, {"d": "DE Senate District 20", "rep": "Gerald Hocker", "w": 0.107}]}, "munis": [{"m": "Milford", "p": [{"n": "Todd Culotta", "r": "Mayor, Milford, DE"}]}, {"m": "Seaford", "p": [{"n": "Matthew MacCoy", "r": "Mayor, Seaford, DE"}]}], "slug": "sussex"}, "12001": {"county": [{"n": "Anna Prizzia", "r": "Commissioner, Alachua County"}, {"n": "Ayesha Solomon", "r": "Property Appraiser, Alachua County"}, {"n": "Charles S. Chestnut", "r": "Commissioner, Alachua County"}, {"n": "Diyonne L. McGraw", "r": "Alachua County School Board"}, {"n": "Jess Irby", "r": "Clerk of Court, Alachua County"}, {"n": "John Power", "r": "Tax Collector, Alachua County"}, {"n": "Jr., Clovis Watson", "r": "Sheriff, Alachua County"}, {"n": "Kay G. Abbitt", "r": "Alachua County School Board"}, {"n": "Ken Cornell", "r": "Commissioner, Alachua County"}, {"n": "Kim Barton", "r": "Supervisor of Elections, Alachua County"}, {"n": "Leanetta McNealy", "r": "Alachua County School Board"}, {"n": "Marihelen Wheeler", "r": "Commissioner, Alachua County"}, {"n": "Mary Alford", "r": "Commissioner, Alachua County"}, {"n": "Sarah Rockwell", "r": "Alachua County School Board"}, {"n": "Thomas Vu", "r": "Alachua County School Board"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 1.0}], "sh": [{"d": "FL House District 21", "rep": "Yvonne Hinson", "w": 0.392}, {"d": "FL House District 10", "rep": "Chuck Brannan", "w": 0.371}, {"d": "FL House District 22", "rep": "Chad Johnson", "w": 0.236}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 0.51}, {"d": "FL Senate District 9", "rep": "Stan McClain", "w": 0.489}]}, "munis": [{"m": "Alachua", "p": [{"n": "Jackson M. Youmas", "r": "Alachua City Council"}, {"n": "Jacob Fletcher", "r": "Alachua City Council"}, {"n": "Jennifer Ringersen", "r": "Alachua City Council"}, {"n": "Shirley Green Brown", "r": "Alachua City Council"}, {"n": "Walter M. Welch", "r": "Mayor of Alachua"}]}, {"m": "Archer", "p": [{"n": "Bill Lewandowski", "r": "Archer City Council"}, {"n": "Fletcher Hope", "r": "Mayor of Archer"}, {"n": "Iris D. Bailey", "r": "Archer City Council"}, {"n": "Jennifer Rossi", "r": "Archer City Council"}, {"n": "Karen Fiore", "r": "Archer City Council"}]}, {"m": "Gainesville", "p": [{"n": "Bryan Eastman", "r": "Gainesville City Council"}, {"n": "Bryan Eastman", "r": "Gainesville City Council - City Commissioner"}, {"n": "Casey Willits", "r": "Gainesville City Council"}, {"n": "Casey Willits", "r": "Gainesville City Council - City Commissioner"}, {"n": "Cynthia Chestnut", "r": "Gainesville City Council"}, {"n": "Cynthia Moore Chestnut", "r": "Gainesville City Council - City Commissioner"}, {"n": "Desmon Duncan-Walker", "r": "Gainesville City Council"}, {"n": "Desmon Duncan-Walker", "r": "Gainesville City Council - City Commissioner"}, {"n": "Ed Book", "r": "Gainesville City Council"}, {"n": "Ed Book", "r": "Gainesville City Council - City Commissioner"}, {"n": "Harvey Ward", "r": "Mayor of Gainesville"}, {"n": "James Ingle", "r": "Gainesville City Council - City Commissioner"}, {"n": "Reina Saco", "r": "Gainesville City Council"}]}, {"m": "Hawthorne", "p": [{"n": "Jacquelyn Randall", "r": "Mayor of Hawthorne"}, {"n": "Patricia B. Hutchinson", "r": "Hawthorne City Council"}, {"n": "Randy Martin", "r": "Hawthorne City Council"}, {"n": "Raymond Cue", "r": "Hawthorne City Council"}, {"n": "Tommie C. Howard", "r": "Hawthorne City Council"}]}, {"m": "High Springs", "p": [{"n": "Andrew Miller", "r": "High Springs City Council"}, {"n": "Chad Howell", "r": "High Springs City Council"}, {"n": "Katherine Weitz", "r": "High Springs City Council"}, {"n": "Tristan Grunder", "r": "Mayor of High Springs"}, {"n": "Wayne Bloodsworth", "r": "High Springs City Council"}]}, {"m": "La Crosse", "p": [{"n": "Anthony Kelley", "r": "La Crosse City Council"}, {"n": "Barbara Thomas", "r": "La Crosse City Council"}, {"n": "C. Dianne Dubberly", "r": "Mayor of La Crosse"}, {"n": "Johnny Ho", "r": "La Crosse City Council"}, {"n": "Kyle Cheshire", "r": "La Crosse City Council"}, {"n": "Sheila Dubberly", "r": "La Crosse City Council"}]}, {"m": "Micanopy", "p": [{"n": "David Massey", "r": "Micanopy City Council"}, {"n": "Jiana Bradshaw Williams", "r": "Mayor of Micanopy"}, {"n": "Judy Galloway", "r": "Micanopy City Council"}, {"n": "Ken Wessberg", "r": "Micanopy City Council"}, {"n": "Kevin Putansu", "r": "Micanopy City Council"}]}, {"m": "Newberry", "p": [{"n": "Donald Long", "r": "Newberry City Council"}, {"n": "Mark Clark", "r": "Newberry City Council"}, {"n": "Monty Farnsworth", "r": "Newberry City Council"}, {"n": "Rick Coleman", "r": "Newberry City Council"}, {"n": "Timothy Marden", "r": "Mayor of Newberry"}, {"n": "Tony Mazon", "r": "Newberry City Council"}]}, {"m": "Waldo", "p": [{"n": "Glen Johnson", "r": "Waldo City Council"}, {"n": "Louie Davis", "r": "Mayor of Waldo"}]}], "slug": "alachua"}, "12003": {"county": [{"n": "Amanda Rhoden Hodges", "r": "Baker County School Board"}, {"n": "Amy Dugger", "r": "Tax Collector, Baker County"}, {"n": "Cathy Rhoden", "r": "Commissioner, Baker County"}, {"n": "Christopher Milton", "r": "Supervisor of Elections, Baker County"}, {"n": "Jack Baker Jr.", "r": "Baker County School Board"}, {"n": "James Bennett", "r": "Commissioner, Baker County"}, {"n": "James Croft", "r": "Commissioner, Baker County"}, {"n": "Jimmy Anderson", "r": "Commissioner, Baker County"}, {"n": "Mandi Canaday", "r": "Baker County School Board"}, {"n": "Mark Hartley", "r": "Commissioner, Baker County"}, {"n": "Paula Barton", "r": "Baker County School Board"}, {"n": "Scotty Rhoden", "r": "Sheriff, Baker County"}, {"n": "Stacie Harvey", "r": "Clerk of Court, Baker County"}, {"n": "Tiffany McInarnay", "r": "Baker County School Board"}, {"n": "Timothy Sweat", "r": "Property Appraiser, Baker County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 0.999}], "sh": [{"d": "FL House District 10", "rep": "Chuck Brannan", "w": 0.999}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 0.999}]}, "munis": [{"m": "Glen Saint Mary", "p": [{"n": "Juanice Padgett", "r": "Mayor of Glen Saint Mary"}]}, {"m": "Macclenny", "p": [{"n": "Cecil Horne", "r": "Macclenny City Council"}, {"n": "Danny Norton", "r": "Macclenny City Council"}, {"n": "Lynward Bones", "r": "Macclenny City Council"}, {"n": "Mark Bryant", "r": "Mayor of Macclenny"}, {"n": "Sam Kitching", "r": "Macclenny City Council"}]}, {"m": "_Unresolved", "p": [{"n": "Lola Chandler", "r": "Glen Saint Mary City Council"}, {"n": "Stormy Greer", "r": "Glen Saint Mary City Council"}, {"n": "Susan Wallace", "r": "Glen Saint Mary City Council"}, {"n": "Terry Clardy", "r": "Glen Saint Mary City Council"}]}], "slug": "baker"}, "12005": {"county": [{"n": "Ann Leonard", "r": "Bay County School Board"}, {"n": "Bill Dozier", "r": "Commissioner, Bay County"}, {"n": "Bill Kinsaul", "r": "Clerk of Court, Bay County"}, {"n": "Christopher Moore", "r": "Bay County School Board"}, {"n": "Clair Pease", "r": "Commissioner, Bay County"}, {"n": "Dan Sowell", "r": "Property Appraiser, Bay County"}, {"n": "Doug Moore", "r": "Commissioner, Bay County"}, {"n": "Jerry Register", "r": "Bay County School Board"}, {"n": "Nina Ward", "r": "Supervisor of Elections, Bay County"}, {"n": "Robert Carroll", "r": "Commissioner, Bay County"}, {"n": "Steve Moss", "r": "Bay County School Board"}, {"n": "Tommy Ford", "r": "Sheriff, Bay County"}, {"n": "Tommy Hamm", "r": "Commissioner, Bay County"}, {"n": "William Perdue", "r": "Tax Collector, Bay County"}, {"n": "Winston Chester", "r": "Bay County School Board"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.603}], "sh": [{"d": "FL House District 6", "rep": "Griff Griffitts", "w": 0.602}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 0.602}]}, "munis": [{"m": "Callaway", "p": [{"n": "Bob Pelletier", "r": "Callaway City Council"}, {"n": "David Griggs", "r": "Callaway City Council"}, {"n": "Kenneth L. Ayers", "r": "Callaway City Council"}, {"n": "Pamn Henderson", "r": "Mayor of Callaway"}, {"n": "Scott Davis", "r": "Callaway City Council"}]}, {"m": "Lynn Haven", "p": [{"n": "Dave Lowery", "r": "Mayor of Lynn Haven"}, {"n": "Jamie Warrick", "r": "Lynn Haven City Council"}, {"n": "Judy Tinder", "r": "Lynn Haven City Council"}, {"n": "Pat Perno", "r": "Lynn Haven City Council"}, {"n": "Sam Peebles", "r": "Lynn Haven City Council"}]}, {"m": "Mexico Beach", "p": [{"n": "Erik Fosshage", "r": "Mexico Beach City Council"}, {"n": "Linda Hamilton", "r": "Mexico Beach City Council"}, {"n": "Lisa Logan", "r": "Mexico Beach City Council"}, {"n": "Richard Wolff", "r": "Mayor of Mexico Beach"}, {"n": "Steve Cox", "r": "Mexico Beach City Council"}]}, {"m": "Panama City", "p": [{"n": "Allan Branch", "r": "Mayor of Panama City"}, {"n": "Brian Grainger", "r": "Panama City City Council"}, {"n": "Janice Lucas", "r": "Panama City City Council"}, {"n": "Josh Street", "r": "Panama City City Council"}, {"n": "Robbie Hughes", "r": "Panama City City Council"}]}, {"m": "Panama City Beach", "p": [{"n": "Ethan Register", "r": "Panama City Beach City Council"}, {"n": "Mary Coburn", "r": "Panama City Beach City Council"}, {"n": "Michael Jarman", "r": "Panama City Beach City Council"}, {"n": "Paul Casto", "r": "Panama City Beach City Council"}, {"n": "Stuart Tettemer", "r": "Mayor of Panama City Beach"}]}, {"m": "Parker", "p": [{"n": "Andrew Kelly", "r": "Mayor of Parker"}, {"n": "John Haney", "r": "Parker City Council"}, {"n": "Ronald Chaple", "r": "Parker City Council"}, {"n": "Stacie Galbreath", "r": "Parker City Council"}, {"n": "Tonya Barrow", "r": "Parker City Council"}]}, {"m": "Springfield", "p": [{"n": "Cindy Hamre", "r": "Springfield City Council"}, {"n": "Jack Griffis", "r": "Springfield City Council"}, {"n": "Jackie Kennington", "r": "Springfield City Council"}, {"n": "Ralph Hammond", "r": "Mayor of Springfield"}, {"n": "Richard Chval", "r": "Springfield City Council"}]}], "slug": "bay"}, "12007": {"county": [{"n": "Amanda Seyfang", "r": "Supervisor of Elections, Bradford County"}, {"n": "Candace Cragg Osteen", "r": "Bradford County School Board"}, {"n": "Carolyn Spooner", "r": "Commissioner, Bradford County"}, {"n": "Chris Dougherty", "r": "Commissioner, Bradford County"}, {"n": "Daniel Riddick", "r": "Commissioner, Bradford County"}, {"n": "Denny Thompson", "r": "Clerk of Court, Bradford County"}, {"n": "Diane Andrews", "r": "Commissioner, Bradford County"}, {"n": "Gayle Shuford Nicula", "r": "Bradford County School Board"}, {"n": "Gordon Smith", "r": "Sheriff, Bradford County"}, {"n": "Julie Johnson", "r": "Bradford County School Board"}, {"n": "Kenneth Thompson", "r": "Commissioner, Bradford County"}, {"n": "Kenny Clark", "r": "Property Appraiser, Bradford County"}, {"n": "Lynn Melvin", "r": "Bradford County School Board"}, {"n": "Sheila Fayson Cummings", "r": "Bradford County School Board"}, {"n": "Teresa Phillips", "r": "Tax Collector, Bradford County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 1.0}], "sh": [{"d": "FL House District 10", "rep": "Chuck Brannan", "w": 1.0}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 1.0}]}, "munis": [{"m": "Brooker", "p": [{"n": "Chris Caldwell", "r": "Brooker City Council"}, {"n": "Gene Melvin", "r": "Mayor of Brooker"}, {"n": "Joe Tolleson", "r": "Brooker City Council"}, {"n": "Linda Bennett", "r": "Brooker City Council"}, {"n": "Randy Starling", "r": "Brooker City Council"}]}, {"m": "Hampton", "p": [{"n": "Dale Wiseman", "r": "Mayor of Hampton"}, {"n": "Dorothy Shealey", "r": "Hampton City Council"}, {"n": "Douglas Williamson", "r": "Hampton City Council"}, {"n": "Janeece Mullett", "r": "Hampton City Council"}, {"n": "Lillian Sams", "r": "Hampton City Council"}, {"n": "William Goodge", "r": "Hampton City Council"}]}, {"m": "Lawtey", "p": [{"n": "Amy Blom", "r": "Lawtey City Council"}, {"n": "Debra Norman", "r": "Lawtey City Council"}, {"n": "Jimmie L. Scott", "r": "Mayor of Lawtey"}, {"n": "Virginia Warner", "r": "Lawtey City Council"}]}, {"m": "Starke", "p": [{"n": "Andy Redding", "r": "Mayor of Starke"}, {"n": "Bob Milner", "r": "Starke City Council"}, {"n": "Daniel Nugent", "r": "Starke City Council"}, {"n": "Janice D. Mortimer", "r": "Starke City Council"}, {"n": "Scott Roberts", "r": "Starke City Council"}]}], "slug": "bradford"}, "12009": {"county": [{"n": "Dana Blickley", "r": "Property Appraiser, Brevard County"}, {"n": "Gene Trent", "r": "Brevard County School Board"}, {"n": "Jason Steele", "r": "Commissioner, Brevard County"}, {"n": "John Thomas", "r": "Brevard County School Board"}, {"n": "John Tobia", "r": "Commissioner, Brevard County"}, {"n": "Katye Campbell", "r": "Brevard County School Board"}, {"n": "Kristine Zonka", "r": "Commissioner, Brevard County"}, {"n": "Lisa Cullen", "r": "Tax Collector, Brevard County"}, {"n": "Lori Scott", "r": "Supervisor of Elections, Brevard County"}, {"n": "Matt Susin", "r": "Brevard County School Board"}, {"n": "Megan Wright", "r": "Brevard County School Board"}, {"n": "Rachel Sadoff", "r": "Clerk of Court, Brevard County"}, {"n": "Rita Pritchett", "r": "Commissioner, Brevard County"}, {"n": "Rob Feltner", "r": "Commissioner, Brevard County"}, {"n": "Robert Ivey", "r": "Sheriff, Brevard County"}, {"n": "Thad Altman", "r": "Commissioner, Brevard County"}, {"n": "Tim Bobanic", "r": "Supervisor of Elections, Brevard County"}, {"n": "Tom Goodson", "r": "Commissioner, Brevard County"}], "districts": {"cd": [{"d": "FL-08", "rep": "Mike Haridopolos", "w": 0.831}], "sh": [{"d": "FL House District 31", "rep": "Tyler Sirois", "w": 0.27}, {"d": "FL House District 33", "rep": "Monique Miller", "w": 0.188}, {"d": "FL House District 32", "rep": "Brian Hodgers", "w": 0.153}, {"d": "FL House District 30", "rep": "Chase Tramont", "w": 0.15}, {"d": "FL House District 34", "rep": "Robbie Brackett", "w": 0.071}], "ss": [{"d": "FL Senate District 19", "rep": "Debbie Mayfield", "w": 0.628}, {"d": "FL Senate District 8", "rep": "Tommy Wright", "w": 0.203}]}, "munis": [{"m": "Cape Canaveral", "p": [{"n": "Andrea King", "r": "Cape Canaveral City Council"}, {"n": "Don Willis", "r": "Cape Canaveral City Council"}, {"n": "Kay Jackson", "r": "Cape Canaveral City Council"}, {"n": "Tom Shoriak", "r": "Cape Canaveral City Council"}, {"n": "Wes Morrison", "r": "Mayor of Cape Canaveral"}]}, {"m": "Cocoa", "p": [{"n": "James Goins", "r": "Cocoa City Council"}, {"n": "Lavander Hearn", "r": "Cocoa City Council"}, {"n": "Lorraine Koss", "r": "Cocoa City Council"}, {"n": "Michael C. Blake", "r": "Mayor of Cocoa"}, {"n": "Patricia Weeks", "r": "Cocoa City Council"}]}, {"m": "Cocoa Beach", "p": [{"n": "Jeremy Hutcherson", "r": "Cocoa Beach City Council"}, {"n": "Joshua Jackson", "r": "Cocoa Beach City Council"}, {"n": "Keith Capizzi", "r": "Mayor of Cocoa Beach"}, {"n": "Skip Williams", "r": "Cocoa Beach City Council"}, {"n": "Tim Tumulty", "r": "Cocoa Beach City Council"}]}, {"m": "Grant-Valkaria", "p": [{"n": "Brent Jackson", "r": "Grant-Valkaria City Council"}, {"n": "Dan Faden", "r": "Grant-Valkaria City Council"}, {"n": "Dan Robino", "r": "Grant-Valkaria City Council"}, {"n": "Lisette Kolar", "r": "Grant-Valkaria City Council"}, {"n": "Mike Bradvarevic", "r": "Grant-Valkaria City Council"}, {"n": "Tom Sammon", "r": "Grant-Valkaria City Council"}]}, {"m": "Indialantic", "p": [{"n": "Carrie Foy", "r": "Indialantic City Council"}, {"n": "Doug Wright", "r": "Indialantic City Council"}, {"n": "Julie McKnight", "r": "Indialantic City Council"}, {"n": "Mark McDermott", "r": "Mayor of Indialantic"}]}, {"m": "Indian Harbour Beach", "p": [{"n": "Adam Dyer", "r": "Indian Harbour Beach City Council"}, {"n": "Neil Yorio", "r": "Indian Harbour Beach City Council"}, {"n": "Scott Nickle", "r": "Mayor of Indian Harbour Beach"}, {"n": "Susan Ruimy", "r": "Indian Harbour Beach City Council"}]}, {"m": "Malabar", "p": [{"n": "Frederick Heiler", "r": "Malabar City Council"}, {"n": "Jim Clevenger", "r": "Malabar City Council"}, {"n": "Marisa Acquaviva", "r": "Malabar City Council"}, {"n": "Mary Hofmeister", "r": "Malabar City Council"}, {"n": "Steve Rivet", "r": "Mayor of Malabar"}, {"n": "Wayne Abare", "r": "Malabar City Council"}]}, {"m": "Melbourne", "p": [{"n": "David Neuman", "r": "Melbourne City Council"}, {"n": "Julie Kennedy", "r": "Melbourne City Council"}, {"n": "Marcus Smith", "r": "Melbourne City Council"}, {"n": "Mark A. LaRusso", "r": "Melbourne City Council"}, {"n": "Mimi Hanley", "r": "Melbourne City Council"}, {"n": "Paul Alfrey", "r": "Mayor of Melbourne"}, {"n": "Rachael Bassett", "r": "Melbourne City Council"}]}, {"m": "Melbourne Beach", "p": [{"n": "Alison Dennington", "r": "Mayor of Melbourne Beach"}, {"n": "Anna Butler", "r": "Melbourne Beach City Council"}, {"n": "Sherri Quarrie", "r": "Melbourne Beach City Council"}, {"n": "Terry Cronin", "r": "Melbourne Beach City Council"}, {"n": "Tim Reed", "r": "Melbourne Beach City Council"}]}, {"m": "Melbourne Village", "p": [{"n": "Bridget Foster", "r": "Melbourne Village City Council"}, {"n": "David Jones", "r": "Melbourne Village City Council"}, {"n": "Fred Anderson", "r": "Melbourne Village City Council"}, {"n": "Gary Ingram", "r": "Melbourne Village City Council"}, {"n": "Norton Muzzone", "r": "Melbourne Village City Council"}, {"n": "Sue Ditty", "r": "Mayor of Melbourne Village"}, {"n": "Valerie Calenda", "r": "Melbourne Village City Council"}]}, {"m": "Palm Bay", "p": [{"n": "Kenny Johnson", "r": "Palm Bay City Council"}, {"n": "Mike Hammer", "r": "Palm Bay City Council"}, {"n": "Mike Jaffe", "r": "Palm Bay City Council"}, {"n": "Robert Medina", "r": "Mayor of Palm Bay"}]}, {"m": "Palm Shores", "p": [{"n": "Barbara Mathewson", "r": "Palm Shores City Council"}, {"n": "Charles Chambliss", "r": "Mayor of Palm Shores"}, {"n": "Paul Bonville", "r": "Palm Shores City Council"}, {"n": "Sharon Secord", "r": "Palm Shores City Council"}]}, {"m": "Rockledge", "p": [{"n": "Duane Daski", "r": "Rockledge City Council"}, {"n": "Frank T. Forester", "r": "Rockledge City Council"}, {"n": "Michael Cadore", "r": "Rockledge City Council"}, {"n": "Sammie Brown Martin", "r": "Rockledge City Council"}, {"n": "Shaun Ferguson", "r": "Rockledge City Council"}, {"n": "Tara L. Connor", "r": "Rockledge City Council"}, {"n": "Thomas J. Price", "r": "Mayor of Rockledge"}]}, {"m": "Satellite Beach", "p": [{"n": "Mark Boyd", "r": "Satellite Beach City Council"}, {"n": "Mike Chase", "r": "Satellite Beach City Council"}, {"n": "Steve L. Osmer", "r": "Mayor of Satellite Beach"}]}, {"m": "Titusville", "p": [{"n": "Andrew Connors", "r": "Mayor of Titusville"}, {"n": "Herman A. Cole", "r": "Titusville City Council"}, {"n": "Jo Lynn Nelson", "r": "Titusville City Council"}, {"n": "Megan Moscoso", "r": "Titusville City Council"}, {"n": "Sarah Stoeckel", "r": "Titusville City Council"}]}, {"m": "West Melbourne", "p": [{"n": "Alexis McGuire", "r": "West Melbourne City Council"}, {"n": "Andrea Young", "r": "Mayor of West Melbourne"}, {"n": "Austin Gaylord", "r": "West Melbourne City Council"}, {"n": "Diana Adams", "r": "West Melbourne City Council"}, {"n": "Helen Voltz", "r": "West Melbourne City Council"}, {"n": "Pat Bentley", "r": "West Melbourne City Council"}, {"n": "Stephen Phrampus", "r": "West Melbourne City Council"}]}], "slug": "brevard"}, "12011": {"county": [{"n": "Abbey Ajayi", "r": "Tax Collector, Broward County"}, {"n": "Allen Zeman", "r": "Broward County School Board"}, {"n": "Beam Furr", "r": "Commissioner, Broward County"}, {"n": "Brenda Fam", "r": "Broward County School Board"}, {"n": "Brenda Forman", "r": "Clerk of Court, Broward County"}, {"n": "Debra \"Debbi\" Hixon", "r": "Broward County School Board"}, {"n": "Gregory Tony", "r": "Sheriff, Broward County"}, {"n": "Hazelle Rogers", "r": "Commissioner, Broward County"}, {"n": "Jeff Holness", "r": "Broward County School Board"}, {"n": "Joe Scott", "r": "Supervisor of Elections, Broward County"}, {"n": "Lamar Fisher", "r": "Commissioner, Broward County"}, {"n": "Lori Alhadeff", "r": "Broward County School Board"}, {"n": "Mark Bogen", "r": "Commissioner, Broward County"}, {"n": "Martin Kiar", "r": "Property Appraiser, Broward County"}, {"n": "Maura McCarthy Bulman", "r": "Broward County School Board"}, {"n": "Michael Udine", "r": "Commissioner, Broward County"}, {"n": "Nan Rich", "r": "Commissioner, Broward County"}, {"n": "Nora Rupert", "r": "Broward County School Board"}, {"n": "Rebecca Thompson", "r": "Broward County School Board"}, {"n": "Robert McKinzie", "r": "Commissioner, Broward County"}, {"n": "Rodney \"Rod\" Velez", "r": "Broward County School Board"}, {"n": "Sarah Leonardi", "r": "Broward County School Board"}, {"n": "Steve Geller", "r": "Commissioner, Broward County"}, {"n": "Tim Ryan", "r": "Commissioner, Broward County"}, {"n": "Torey Alston", "r": "Commissioner, Broward County"}], "districts": {"cd": [{"d": "FL-20", "rep": "Vacant", "w": 0.68}, {"d": "FL-25", "rep": "Debbie Wasserman Schultz", "w": 0.159}, {"d": "FL-23", "rep": "Jared Moskowitz", "w": 0.088}, {"d": "FL-24", "rep": "Frederica S. Wilson", "w": 0.008}], "sh": [{"d": "FL House District 96", "rep": "Dan Daley", "w": 0.638}, {"d": "FL House District 103", "rep": "Robin Bartleman", "w": 0.054}, {"d": "FL House District 102", "rep": "Mike Gottlieb", "w": 0.04}, {"d": "FL House District 101", "rep": "Hillary Cassel", "w": 0.036}, {"d": "FL House District 95", "rep": "Christine Hunschofsky", "w": 0.033}, {"d": "FL House District 98", "rep": "Mitch Rosenwald", "w": 0.033}, {"d": "FL House District 100", "rep": "Chip LaMarca", "w": 0.026}, {"d": "FL House District 99", "rep": "Daryl Campbell", "w": 0.023}, {"d": "FL House District 105", "rep": "Marie Woodson", "w": 0.02}, {"d": "FL House District 97", "rep": "Lisa Dunkley", "w": 0.018}, {"d": "FL House District 104", "rep": "Felicia Robinson", "w": 0.017}], "ss": [{"d": "FL Senate District 35", "rep": "Barbara Sharief", "w": 0.73}, {"d": "FL Senate District 37", "rep": "Jason Pizzo", "w": 0.07}, {"d": "FL Senate District 30", "rep": "Tina Polsky", "w": 0.068}, {"d": "FL Senate District 32", "rep": "Rosalind Osgood", "w": 0.068}]}, "munis": [{"m": "Coconut Creek", "p": [{"n": "Jacqueline L. Railey", "r": "Coconut Creek City Council"}, {"n": "Jeffrey Wasserman", "r": "Mayor of Coconut Creek"}, {"n": "John A. Brodie", "r": "Coconut Creek City Council"}, {"n": "Joshua Rydell", "r": "Coconut Creek City Council"}, {"n": "Sandra L. Welch", "r": "Coconut Creek City Council"}]}, {"m": "Cooper City", "p": [{"n": "James Curran", "r": "Mayor of Cooper City"}, {"n": "Jason Smith", "r": "Cooper City City Council"}, {"n": "Jeremy Katzman", "r": "Cooper City City Council"}, {"n": "Lisa Mallozzi", "r": "Cooper City City Council"}, {"n": "Ryan C. Shrouder", "r": "Cooper City City Council"}]}, {"m": "Coral Springs", "p": [{"n": "Joseph McHugh", "r": "Coral Springs City Council"}, {"n": "Joshua Simmons", "r": "Coral Springs City Council"}, {"n": "Scott J. Brook", "r": "Mayor of Coral Springs"}, {"n": "Shawn Michael Cerra", "r": "Coral Springs City Council"}]}, {"m": "Dania Beach", "p": [{"n": "Archibald J. Ryan", "r": "Dania Beach City Council"}, {"n": "Joyce L. Davis", "r": "Mayor of Dania Beach"}, {"n": "Lori Lewellen", "r": "Dania Beach City Council"}, {"n": "Luis Rimoli", "r": "Dania Beach City Council"}, {"n": "Marco A. Salvino", "r": "Dania Beach City Council"}]}, {"m": "Davie", "p": [{"n": "Daniel J. Alfonso", "r": "Davie City Council"}, {"n": "Judy Paul", "r": "Mayor of Davie"}, {"n": "Marlon Luis", "r": "Davie City Council"}, {"n": "Michelle Whitman", "r": "Davie City Council"}, {"n": "Susan Starkey", "r": "Davie City Council"}]}, {"m": "Deerfield Beach", "p": [{"n": "Ben Preston", "r": "Deerfield Beach City Council"}, {"n": "Daniel Shanetzky", "r": "Deerfield Beach City Council"}, {"n": "Michael Hudak", "r": "Deerfield Beach City Council"}, {"n": "Thomas Plaut", "r": "Deerfield Beach City Council"}, {"n": "Todd Drosky", "r": "Mayor of Deerfield Beach"}]}, {"m": "Fort Lauderdale", "p": [{"n": "Ben Sorensen", "r": "Fort Lauderdale City Council"}, {"n": "Dean J. Trantalis", "r": "Mayor of Fort Lauderdale"}, {"n": "John C. Herbst", "r": "Fort Lauderdale City Council"}, {"n": "Pamela Beasley-Pittman", "r": "Fort Lauderdale City Council"}]}, {"m": "Hallandale Beach", "p": [{"n": "Anabelle Lima-Taub", "r": "Hallandale Beach City Council"}, {"n": "Joy D. Adams", "r": "Hallandale Beach City Council"}, {"n": "Joy F. Cooper", "r": "Mayor of Hallandale Beach"}, {"n": "Michele Lazarow", "r": "Hallandale Beach City Council"}, {"n": "Mike Butler", "r": "Hallandale Beach City Council"}]}, {"m": "Hillsboro Beach", "p": [{"n": "David A. Ravanesi", "r": "Hillsboro Beach City Council"}, {"n": "Dawn Miller", "r": "Mayor of Hillsboro Beach"}, {"n": "Heather Berman", "r": "Hillsboro Beach City Council"}, {"n": "Jane Reiser", "r": "Hillsboro Beach City Council"}, {"n": "Vinnie Andreano", "r": "Hillsboro Beach City Council"}]}, {"m": "Hollywood", "p": [{"n": "Adam Gruber", "r": "Hollywood City Council"}, {"n": "Caryl Shuham", "r": "Hollywood City Council"}, {"n": "Idelma Quintana", "r": "Hollywood City Council"}, {"n": "Josh Levy", "r": "Mayor of Hollywood"}, {"n": "Kevin D. Biederman", "r": "Hollywood City Council"}, {"n": "Peter D. Hernandez", "r": "Hollywood City Council"}]}, {"m": "Lauderdale Lakes", "p": [{"n": "Easton Harrison", "r": "Lauderdale Lakes City Council"}, {"n": "Karlene Maxwell-Williams", "r": "Lauderdale Lakes City Council"}, {"n": "Sharon Thomas", "r": "Lauderdale Lakes City Council"}, {"n": "Tycie Causwell", "r": "Lauderdale Lakes City Council"}, {"n": "Veronica Edwards Phillips", "r": "Mayor of Lauderdale Lakes"}]}, {"m": "Lauderdale-By-The-Sea", "p": [{"n": "Edmund Malkoon", "r": "Mayor of Lauderdale-By-The-Sea"}, {"n": "John Graziano", "r": "Lauderdale-By-The-Sea City Council"}, {"n": "Randy Strauss", "r": "Lauderdale-By-The-Sea City Council"}, {"n": "Richard DeNapoli", "r": "Lauderdale-By-The-Sea City Council"}, {"n": "Theo Poulopoulos", "r": "Lauderdale-By-The-Sea City Council"}]}, {"m": "Lauderhill", "p": [{"n": "Denise D. Grant", "r": "Mayor of Lauderhill"}, {"n": "John Hodgson", "r": "Lauderhill City Council"}, {"n": "Melissa P. Dunn", "r": "Lauderhill City Council"}, {"n": "Richard Campbell", "r": "Lauderhill City Council"}, {"n": "Sarai Martin", "r": "Lauderhill City Council"}]}, {"m": "Lazy Lake", "p": [{"n": "Arnold Aliff", "r": "Lazy Lake City Council"}, {"n": "Dana Merrill", "r": "Lazy Lake City Council"}, {"n": "Jeff Grenell", "r": "Lazy Lake City Council"}, {"n": "Patrick Kaufman", "r": "Lazy Lake City Council"}, {"n": "Ray Nyhuis", "r": "Mayor of Lazy Lake"}, {"n": "William Daughtry", "r": "Lazy Lake City Council"}]}, {"m": "Lighthouse Point", "p": [{"n": "Abby J. Stafford", "r": "Lighthouse Point City Council"}, {"n": "Everett Marshall", "r": "Lighthouse Point City Council"}, {"n": "Jason D. Joffe", "r": "Lighthouse Point City Council"}, {"n": "Kyle Van Buskirk", "r": "Mayor of Lighthouse Point"}, {"n": "Michael S. Long", "r": "Lighthouse Point City Council"}, {"n": "Patty Petrone", "r": "Lighthouse Point City Council"}]}, {"m": "Margate", "p": [{"n": "Anthony N. Caggiano", "r": "Margate City Council"}, {"n": "Antonio V. Arserio", "r": "Mayor of Margate"}, {"n": "Arlene R. Schwartz", "r": "Margate City Council"}, {"n": "Joanne Simone", "r": "Margate City Council"}, {"n": "Tommy Ruzzano", "r": "Margate City Council"}]}, {"m": "Miramar", "p": [{"n": "Avril Cherasard", "r": "Miramar City Council"}, {"n": "Carson Edwards", "r": "Miramar City Council"}, {"n": "Maxwell B. Chambers", "r": "Miramar City Council"}, {"n": "Wayne M. Messam", "r": "Mayor of Miramar"}, {"n": "Yvette Colbourne", "r": "Miramar City Council"}]}, {"m": "North Lauderdale", "p": [{"n": "Darrell Lewis-Ricketts", "r": "North Lauderdale City Council"}, {"n": "Luke Lewis", "r": "North Lauderdale City Council"}, {"n": "Mario Bustamante", "r": "North Lauderdale City Council"}, {"n": "Regina Martin", "r": "North Lauderdale City Council"}, {"n": "Samson Borgelin", "r": "Mayor of North Lauderdale"}]}, {"m": "Oakland Park", "p": [{"n": "Aisha Gordon", "r": "Oakland Park City Council"}, {"n": "Fitzgerald Budhoo", "r": "Oakland Park City Council"}, {"n": "Letitia Newbold", "r": "Oakland Park City Council"}, {"n": "Steven Arnst", "r": "Mayor of Oakland Park"}, {"n": "Tim Lonergan", "r": "Oakland Park City Council"}]}, {"m": "Parkland", "p": [{"n": "Cindy Murphy-Salomone", "r": "Parkland City Council"}, {"n": "Jordan Isrow", "r": "Parkland City Council"}, {"n": "Neil Kanterman", "r": "Parkland City Council"}, {"n": "Richard Walker", "r": "Mayor of Parkland"}, {"n": "Simeon Brier", "r": "Parkland City Council"}]}, {"m": "Pembroke Park", "p": [{"n": "Ashira B. Mohammed", "r": "Pembroke Park City Council"}, {"n": "Erik Morrissette", "r": "Pembroke Park City Council"}, {"n": "Geoffrey Jacobs", "r": "Mayor of Pembroke Park"}, {"n": "Musfika Kashem", "r": "Pembroke Park City Council"}, {"n": "William Hodgkins", "r": "Pembroke Park City Council"}]}, {"m": "Pembroke Pines", "p": [{"n": "Angelo Castillo", "r": "Mayor of Pembroke Pines"}, {"n": "Jay D. Schwartz", "r": "Pembroke Pines City Council"}, {"n": "Maria Rodriguez", "r": "Pembroke Pines City Council"}, {"n": "Michael Hernandez", "r": "Pembroke Pines City Council"}, {"n": "Thomas Good", "r": "Pembroke Pines City Council"}]}, {"m": "Plantation", "p": [{"n": "Denise Horland", "r": "Plantation City Council"}, {"n": "Erik Anderson", "r": "Plantation City Council"}, {"n": "Jennifer Andreu", "r": "Plantation City Council"}, {"n": "Louis Reinstein", "r": "Plantation City Council"}, {"n": "Nick Sortal", "r": "Mayor of Plantation"}, {"n": "Timothy J. Fadgen", "r": "Plantation City Council"}]}, {"m": "Pompano Beach", "p": [{"n": "Alison Fournier", "r": "Pompano Beach City Council"}, {"n": "Audrey Fesik", "r": "Pompano Beach City Council"}, {"n": "Beverly Perkins", "r": "Pompano Beach City Council"}, {"n": "Darlene Smith", "r": "Pompano Beach City Council"}, {"n": "Rex Hardin", "r": "Mayor of Pompano Beach"}, {"n": "Rhonda Eaton", "r": "Pompano Beach City Council"}]}, {"m": "Sea Ranch Lakes", "p": [{"n": "Chad Volkert", "r": "Sea Ranch Lakes City Council"}, {"n": "Denise Bryan", "r": "Sea Ranch Lakes City Council"}, {"n": "Douglas Hodgson", "r": "Sea Ranch Lakes City Council"}, {"n": "Jason Robichaux", "r": "Sea Ranch Lakes City Council"}, {"n": "Jeffrey Nelson", "r": "Mayor of Sea Ranch Lakes"}, {"n": "John L. Tomlinson", "r": "Sea Ranch Lakes City Council"}]}, {"m": "Southwest Ranches", "p": [{"n": "Bob Hartmann", "r": "Southwest Ranches City Council"}, {"n": "David Kuczenski", "r": "Southwest Ranches City Council"}, {"n": "Gary Jablonski", "r": "Southwest Ranches City Council"}, {"n": "Jim Allbritton", "r": "Southwest Ranches City Council"}, {"n": "Steve Breitkreuz", "r": "Mayor of Southwest Ranches"}]}, {"m": "Sunrise", "p": [{"n": "Joseph A. Scuotto", "r": "Sunrise City Council"}, {"n": "Latoya S. Clarke", "r": "Sunrise City Council"}, {"n": "Mark A. Douglas", "r": "Sunrise City Council"}, {"n": "Michael J. Ryan", "r": "Mayor of Sunrise"}, {"n": "Neil C. Kerch", "r": "Sunrise City Council"}]}, {"m": "Tamarac", "p": [{"n": "Kicia Daniel", "r": "Tamarac City Council"}, {"n": "Krystal Patterson", "r": "Tamarac City Council"}, {"n": "Marlon D. Bolton", "r": "Tamarac City Council"}, {"n": "Michelle J. Gomez", "r": "Mayor of Tamarac"}, {"n": "Morey Wright", "r": "Tamarac City Council"}]}, {"m": "West Park", "p": [{"n": "Brandon Smith", "r": "West Park City Council"}, {"n": "Cristina R. Eveillard", "r": "West Park City Council"}, {"n": "Felicia M. Brunson", "r": "Mayor of West Park"}, {"n": "Joy B. Smith", "r": "West Park City Council"}, {"n": "Katrina Touchstone", "r": "West Park City Council"}]}, {"m": "Weston", "p": [{"n": "Byron L. Jaffe", "r": "Weston City Council"}, {"n": "Fabio Andrade", "r": "Weston City Council"}, {"n": "Margaret Brown", "r": "Mayor of Weston"}, {"n": "Mary Molina-Macfie", "r": "Weston City Council"}]}, {"m": "Wilton Manors", "p": [{"n": "Chris Caputo", "r": "Wilton Manors City Council"}, {"n": "Don D'Arminio", "r": "Wilton Manors City Council"}, {"n": "Mike Bracchi", "r": "Wilton Manors City Council"}, {"n": "Paul Rolli", "r": "Wilton Manors City Council"}, {"n": "Scott Newton", "r": "Mayor of Wilton Manors"}]}], "slug": "broward"}, "12013": {"county": [{"n": "Becky Trickey-Smith", "r": "Tax Collector, Calhoun County"}, {"n": "Carla Hand", "r": "Clerk of Court, Calhoun County"}, {"n": "Carla Peacock", "r": "Property Appraiser, Calhoun County"}, {"n": "Chris Rogers", "r": "Tax Collector, Calhoun County"}, {"n": "Clifford Newsome", "r": "Calhoun County School Board"}, {"n": "Danny Hassig", "r": "Calhoun County School Board"}, {"n": "Danny Ryals", "r": "Calhoun County School Board"}, {"n": "Darryl O'Bryan", "r": "Commissioner, Calhoun County"}, {"n": "Gene Bailey", "r": "Commissioner, Calhoun County"}, {"n": "Glenn Kimbrel", "r": "Sheriff, Calhoun County"}, {"n": "Marion Brown", "r": "Commissioner, Calhoun County"}, {"n": "Michael Bryant", "r": "Sheriff, Calhoun County"}, {"n": "Ray Howell", "r": "Calhoun County School Board"}, {"n": "Robin Barfield", "r": "Clerk of Court, Calhoun County"}, {"n": "Scott Monlyn", "r": "Commissioner, Calhoun County"}, {"n": "Sharon Chason", "r": "Supervisor of Elections, Calhoun County"}, {"n": "Thomas Carter", "r": "Commissioner, Calhoun County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 5", "rep": "Shane Abbott", "w": 1.0}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 1.0}]}, "munis": [{"m": "Altha", "p": [{"n": "Charlie McNew", "r": "Altha City Council"}, {"n": "Jamie Strickland", "r": "Altha City Council"}, {"n": "Jeffrey Waldorf", "r": "Mayor of Altha"}, {"n": "Jonathan Connelly", "r": "Altha City Council"}, {"n": "Linda Barrentine", "r": "Altha City Council"}]}, {"m": "Blountstown", "p": [{"n": "Bill Gaskin", "r": "Blountstown City Council"}, {"n": "Clifford Jackson", "r": "Blountstown City Council"}, {"n": "Martha Stephens", "r": "Blountstown City Council"}, {"n": "Sheila Blackburn", "r": "Blountstown City Council"}, {"n": "Tony Shoemake", "r": "Mayor of Blountstown"}]}], "slug": "calhoun"}, "12015": {"county": [{"n": "Bill Prummell", "r": "Sheriff, Charlotte County"}, {"n": "Bob Segur", "r": "Charlotte County School Board"}, {"n": "Cara M Reynolds", "r": "Charlotte County School Board"}, {"n": "Christopher Constance", "r": "Commissioner, Charlotte County"}, {"n": "John H LeClair", "r": "Charlotte County School Board"}, {"n": "Joseph Tiseo", "r": "Commissioner, Charlotte County"}, {"n": "Ken Doherty", "r": "Commissioner, Charlotte County"}, {"n": "Kim Amontree", "r": "Charlotte County School Board"}, {"n": "Leah Valenti", "r": "Supervisor of Elections, Charlotte County"}, {"n": "Paul Polk", "r": "Property Appraiser, Charlotte County"}, {"n": "Paul Stamoulis", "r": "Supervisor of Elections, Charlotte County"}, {"n": "Roger Eaton", "r": "Clerk of Court, Charlotte County"}, {"n": "Stephen R. Deutsch", "r": "Commissioner, Charlotte County"}, {"n": "Vickie Potts", "r": "Tax Collector, Charlotte County"}, {"n": "Wendy Atkinson", "r": "Charlotte County School Board"}, {"n": "William Truex", "r": "Commissioner, Charlotte County"}], "districts": {"cd": [{"d": "FL-17", "rep": "W. Gregory Steube", "w": 0.786}], "sh": [{"d": "FL House District 76", "rep": "Vanessa Oliver", "w": 0.591}, {"d": "FL House District 75", "rep": "Danny Nix", "w": 0.193}], "ss": [{"d": "FL Senate District 27", "rep": "Ben Albritton", "w": 0.784}]}, "munis": [{"m": "Punta Gorda", "p": [{"n": "Deborah Lux", "r": "Mayor of Punta Gorda"}, {"n": "Gregory Julian", "r": "Punta Gorda City Council"}, {"n": "Janis Denton", "r": "Punta Gorda City Council"}, {"n": "Jeannine Polk", "r": "Punta Gorda City Council"}, {"n": "Melissa Lockhart", "r": "Punta Gorda City Council"}]}], "slug": "charlotte"}, "12017": {"county": [{"n": "Angela Vick", "r": "Clerk of Court, Citrus County"}, {"n": "Cregg Dalton", "r": "Property Appraiser, Citrus County"}, {"n": "David Vincent", "r": "Sheriff, Citrus County"}, {"n": "Diana Finegan", "r": "Commissioner, Citrus County"}, {"n": "Douglas A. Dodd", "r": "Citrus County School Board"}, {"n": "Holly Davis", "r": "Commissioner, Citrus County"}, {"n": "Janice Warren", "r": "Tax Collector, Citrus County"}, {"n": "Jeffery Kinnard", "r": "Commissioner, Citrus County"}, {"n": "Joseph \"Joe\" Faherty", "r": "Citrus County School Board"}, {"n": "Ken Frink", "r": "Citrus County School Board"}, {"n": "Leslie Cook", "r": "Property Appraiser, Citrus County"}, {"n": "Maureen Baird", "r": "Supervisor of Elections, Citrus County"}, {"n": "Michael Prendergast", "r": "Sheriff, Citrus County"}, {"n": "Rebecca Bays", "r": "Commissioner, Citrus County"}, {"n": "Ruthie Schlabach", "r": "Commissioner, Citrus County"}, {"n": "Sandy B. Counts", "r": "Citrus County School Board"}, {"n": "Thomas Kennedy", "r": "Citrus County School Board"}, {"n": "Traci Phillips", "r": "Clerk of Court, Citrus County"}], "districts": {"cd": [{"d": "FL-12", "rep": "Gus M. Bilirakis", "w": 0.681}], "sh": [{"d": "FL House District 23", "rep": "J.J. Grow", "w": 0.687}], "ss": [{"d": "FL Senate District 11", "rep": "Ralph Massullo", "w": 0.687}]}, "munis": [{"m": "Crystal River", "p": [{"n": "Chris Ensing", "r": "Crystal River City Council"}, {"n": "Gabrielle Satchell", "r": "Crystal River City Council"}, {"n": "Joe Meek", "r": "Mayor of Crystal River"}, {"n": "Robert Holmes", "r": "Crystal River City Council"}]}, {"m": "Inverness", "p": [{"n": "Cabot McBride", "r": "Inverness City Council"}, {"n": "Crystal Lizanich", "r": "Inverness City Council"}, {"n": "Gene Davis", "r": "Inverness City Council"}, {"n": "Jacquie Hepfer", "r": "Inverness City Council"}, {"n": "Linda Bega", "r": "Inverness City Council"}, {"n": "Robert Plaisted", "r": "Mayor of Inverness"}]}], "slug": "citrus"}, "12019": {"county": [{"n": "Alexandra Compere", "r": "Commissioner, Clay County"}, {"n": "Ashley Hutchings Gilhousen", "r": "Clay County School Board"}, {"n": "Beth Clark", "r": "Clay County School Board"}, {"n": "Betsy Condon", "r": "Commissioner, Clay County"}, {"n": "Chris Chambless", "r": "Supervisor of Elections, Clay County"}, {"n": "Diane Hutchings", "r": "Tax Collector, Clay County"}, {"n": "Erin Skipper", "r": "Clay County School Board"}, {"n": "James Weeks", "r": "Tax Collector, Clay County"}, {"n": "Jim Renninger", "r": "Commissioner, Clay County"}, {"n": "Kristen Burke", "r": "Commissioner, Clay County"}, {"n": "Michele Hanson", "r": "Clay County School Board"}, {"n": "Michelle Cook", "r": "Sheriff, Clay County"}, {"n": "Robert Alvero", "r": "Clay County School Board"}, {"n": "Tara Green", "r": "Clerk of Court, Clay County"}, {"n": "Tracy Drake", "r": "Property Appraiser, Clay County"}], "districts": {"cd": [{"d": "FL-04", "rep": "Aaron Bean", "w": 0.998}], "sh": [{"d": "FL House District 20", "rep": "Judson Sapp", "w": 0.659}, {"d": "FL House District 11", "rep": "Sam Garrison", "w": 0.34}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 1.0}]}, "munis": [{"m": "Green Cove Springs", "p": [{"n": "Cheryl Starnes", "r": "Green Cove Springs City Council"}, {"n": "Darren Stutts", "r": "Green Cove Springs City Council"}, {"n": "Edward Gaw", "r": "Green Cove Springs City Council"}, {"n": "Gloria Glisson", "r": "Green Cove Springs City Council"}, {"n": "Matt Johnson", "r": "Mayor of Green Cove Springs"}]}, {"m": "Keystone Heights", "p": [{"n": "Brandon Ludwig", "r": "Keystone Heights City Council"}, {"n": "Christine Thompson", "r": "Keystone Heights City Council"}, {"n": "Daniel Lewandowski", "r": "Keystone Heights City Council"}, {"n": "Nina Rodenroth", "r": "Mayor of Keystone Heights"}, {"n": "Ryan Knight", "r": "Keystone Heights City Council"}]}, {"m": "Orange Park", "p": [{"n": "Doug Benefield", "r": "Orange Park City Council"}, {"n": "Glenn Taylor", "r": "Orange Park City Council"}, {"n": "Kenneth Vogel", "r": "Orange Park City Council"}, {"n": "Randy Anderson", "r": "Orange Park City Council"}, {"n": "Winnette Sandlin", "r": "Mayor of Orange Park"}]}, {"m": "Penney Farms", "p": [{"n": "Adrian M. Andrews", "r": "Mayor of Penney Farms"}, {"n": "Annette Brooks", "r": "Penney Farms City Council"}, {"n": "Elizabeth Ryder", "r": "Penney Farms City Council"}, {"n": "Richard Hollowell", "r": "Penney Farms City Council"}, {"n": "Thomas E. DeVille", "r": "Penney Farms City Council"}]}], "slug": "clay"}, "12021": {"county": [{"n": "Abe Skinner", "r": "Property Appraiser, Collier County"}, {"n": "Burt Saunders", "r": "Commissioner, Collier County"}, {"n": "Chris Hall", "r": "Commissioner, Collier County"}, {"n": "Crystal Kinzel", "r": "Clerk of Court, Collier County"}, {"n": "Daniel Kowal", "r": "Commissioner, Collier County"}, {"n": "Erick Carter", "r": "Collier County School Board"}, {"n": "Erick Carter", "r": "Collier County School Board - Vice Chair, District 4"}, {"n": "Jennifer Edwards", "r": "Supervisor of Elections, Collier County"}, {"n": "Jerry D Rutherford", "r": "Collier County School Board"}, {"n": "Jerry Rutherford", "r": "Collier County School Board - District 1"}, {"n": "Kelly Lichter", "r": "Collier County School Board"}, {"n": "Kelly Mason", "r": "Collier County School Board - District 3"}, {"n": "Kevin Rambosk", "r": "Sheriff, Collier County"}, {"n": "Larry Ray", "r": "Tax Collector, Collier County"}, {"n": "Melissa Blazier", "r": "Supervisor of Elections, Collier County"}, {"n": "Rick LoCastro", "r": "Commissioner, Collier County"}, {"n": "Rob Stoneburner", "r": "Tax Collector, Collier County"}, {"n": "Stephanie Lucarelli", "r": "Collier County School Board"}, {"n": "Stephanie Lucarelli", "r": "Collier County School Board - Chair, District 2"}, {"n": "Tim Moshier", "r": "Collier County School Board - District 5"}, {"n": "Timothy Donald Moshier", "r": "Collier County School Board"}, {"n": "Vickie Downs", "r": "Property Appraiser, Collier County"}, {"n": "William McDaniel", "r": "Commissioner, Collier County"}], "districts": {"cd": [{"d": "FL-26", "rep": "Mario Diaz-Balart", "w": 0.724}, {"d": "FL-19", "rep": "Byron Donalds", "w": 0.056}, {"d": "FL-18", "rep": "Scott Franklin", "w": 0.029}], "sh": [{"d": "FL House District 82", "rep": "Lauren Melo", "w": 0.727}, {"d": "FL House District 81", "rep": "Yvette Benarroch", "w": 0.067}, {"d": "FL House District 80", "rep": "Adam Botana", "w": 0.013}], "ss": [{"d": "FL Senate District 28", "rep": "Kathleen Passidomo", "w": 0.807}]}, "munis": [{"m": "Everglades City", "p": [{"n": "Howell Grimm", "r": "Mayor of Everglades City"}]}, {"m": "Marco Island", "p": [{"n": "Bonita Schwan", "r": "Marco Island City Council"}, {"n": "Darrin Palumbo", "r": "Marco Island City Council"}, {"n": "Deb Henry", "r": "Marco Island City Council"}, {"n": "Open Position", "r": "Marco Island City Council"}, {"n": "Rene Champagne", "r": "Marco Island City Council"}, {"n": "Stephen Gray", "r": "Marco Island City Council"}, {"n": "Tamara Goehler", "r": "Marco Island City Council"}]}, {"m": "Naples", "p": [{"n": "Berne Barton", "r": "Naples City Council"}, {"n": "Bill Kramer", "r": "Naples City Council"}, {"n": "John Krol", "r": "Naples City Council"}, {"n": "Linda Penniman", "r": "Naples City Council"}, {"n": "Scott Schultz", "r": "Naples City Council"}, {"n": "Ted Blankenship", "r": "Naples City Council"}, {"n": "Teresa L. Heitmann", "r": "Mayor of Naples"}]}, {"m": "_Unresolved", "p": [{"n": "Josh Minton", "r": "Everglades City City Council"}, {"n": "Michael McComas", "r": "Everglades City City Council"}, {"n": "Parker Oglesby", "r": "Everglades City City Council"}, {"n": "Tony Pernas", "r": "Everglades City City Council"}, {"n": "Vicky Wells", "r": "Everglades City City Council"}]}], "slug": "collier"}, "12023": {"county": [{"n": "Cherie Dicks Hill", "r": "Columbia County School Board"}, {"n": "Dana Brady-Giddens", "r": "Columbia County School Board"}, {"n": "Everett Phillips", "r": "Commissioner, Columbia County"}, {"n": "Hunter Peeler", "r": "Columbia County School Board"}, {"n": "James Swisher", "r": "Clerk of Court, Columbia County"}, {"n": "James Swisher", "r": "Clerk of Court, Columbia County"}, {"n": "Jeff Hampton", "r": "Property Appraiser, Columbia County"}, {"n": "Keith Hudson", "r": "Columbia County School Board"}, {"n": "Kyle Keen", "r": "Tax Collector, Columbia County"}, {"n": "Mark Hunter", "r": "Sheriff, Columbia County"}, {"n": "Narragansett Mobley Smith", "r": "Columbia County School Board"}, {"n": "Robby Hollingsworth", "r": "Commissioner, Columbia County"}, {"n": "Rocky Ford", "r": "Commissioner, Columbia County"}, {"n": "Ronald Williams", "r": "Commissioner, Columbia County"}, {"n": "Timothy Murphy", "r": "Commissioner, Columbia County"}, {"n": "Tomi Brown", "r": "Supervisor of Elections, Columbia County"}, {"n": "Wallace Kitchings", "r": "Sheriff, Columbia County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 1.0}], "sh": [{"d": "FL House District 10", "rep": "Chuck Brannan", "w": 1.0}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 1.0}]}, "munis": [{"m": "Fort White", "p": [{"n": "Bill Koon", "r": "Fort White City Council"}, {"n": "George Thomas", "r": "Mayor of Fort White"}, {"n": "Kathryn Terry", "r": "Fort White City Council"}, {"n": "Lonnie Wayne Harrell", "r": "Fort White City Council"}, {"n": "Monica Merricks", "r": "Fort White City Council"}]}, {"m": "Lake City", "p": [{"n": "James Carter", "r": "Lake City City Council"}, {"n": "Noah Walker", "r": "Mayor of Lake City"}, {"n": "Ricky Jernigan", "r": "Lake City City Council"}, {"n": "Tammy Harris", "r": "Lake City City Council"}]}], "slug": "columbia"}, "12027": {"county": [{"n": "Asena Mott", "r": "DeSoto County School Board"}, {"n": "Ashley Coone", "r": "Commissioner, DeSoto County"}, {"n": "David Williams", "r": "Property Appraiser, DeSoto County"}, {"n": "Debbie Wertz", "r": "Supervisor of Elections, DeSoto County"}, {"n": "Debra Burtscher", "r": "Tax Collector, DeSoto County"}, {"n": "Elton Langford", "r": "Commissioner, DeSoto County"}, {"n": "James Potter", "r": "Sheriff, DeSoto County"}, {"n": "Jerod Gross", "r": "Commissioner, DeSoto County"}, {"n": "Joel Deriso", "r": "Commissioner, DeSoto County"}, {"n": "Judith Schaefer", "r": "Commissioner, DeSoto County"}, {"n": "Karen K Chancey", "r": "DeSoto County School Board"}, {"n": "Kelly Mercer", "r": "DeSoto County School Board"}, {"n": "Mark Negley", "r": "Supervisor of Elections, DeSoto County"}, {"n": "Nadia Daughtrey", "r": "Clerk of Court, DeSoto County"}, {"n": "Sharon T Goodman", "r": "DeSoto County School Board"}, {"n": "Steven Hickox", "r": "Commissioner, DeSoto County"}, {"n": "Susan Pooley", "r": "Tax Collector, DeSoto County"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 1.0}], "sh": [{"d": "FL House District 76", "rep": "Vanessa Oliver", "w": 1.0}], "ss": [{"d": "FL Senate District 27", "rep": "Ben Albritton", "w": 1.0}]}, "munis": [{"m": "Arcadia", "p": [{"n": "Dee Washington", "r": "Arcadia City Council"}, {"n": "Judy Wertz Strickland", "r": "Mayor of Arcadia"}, {"n": "Keith Keene", "r": "Arcadia City Council"}, {"n": "Luis Velasco", "r": "Arcadia City Council"}, {"n": "Robert W. Heine", "r": "Arcadia City Council"}]}], "slug": "desoto"}, "12029": {"county": [{"n": "Amanda Mills NesSmith", "r": "Dixie County School Board"}, {"n": "Barbara Higginbotham", "r": "Clerk of Court, Dixie County"}, {"n": "Cheryl Pridgeon", "r": "Dixie County School Board"}, {"n": "Daniel Wood", "r": "Commissioner, Dixie County"}, {"n": "Darbi Chaires", "r": "Supervisor of Elections, Dixie County"}, {"n": "Darby Butler", "r": "Sheriff, Dixie County"}, {"n": "David Osteen", "r": "Commissioner, Dixie County"}, {"n": "Jamie Storey", "r": "Commissioner, Dixie County"}, {"n": "Lucas Rollison", "r": "Dixie County School Board"}, {"n": "Mark Hatch", "r": "Commissioner, Dixie County"}, {"n": "Michelle Cannon", "r": "Tax Collector, Dixie County"}, {"n": "Paul N Gainey", "r": "Dixie County School Board"}, {"n": "Paul Stephenson", "r": "Commissioner, Dixie County"}, {"n": "Robert Lee", "r": "Property Appraiser, Dixie County"}, {"n": "Starlet Cannon", "r": "Supervisor of Elections, Dixie County"}, {"n": "Timothy W. \"Tim\" Alexander", "r": "Dixie County School Board"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 0.69}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.689}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.689}]}, "munis": [{"m": "Cross City", "p": [{"n": "Angela Carter", "r": "Cross City City Council"}, {"n": "Charlie Heidelburg", "r": "Cross City City Council"}, {"n": "Kenneth Lee", "r": "Cross City City Council"}, {"n": "Kirk Marhefka", "r": "Cross City City Council"}, {"n": "Ryan Fulford", "r": "Mayor of Cross City"}]}, {"m": "Horseshoe Beach", "p": [{"n": "Brett Selph", "r": "Horseshoe Beach City Council"}, {"n": "Bryan Dodd", "r": "Horseshoe Beach City Council"}, {"n": "Jeff Williams", "r": "Mayor of Horseshoe Beach"}, {"n": "Kelly Brooke Hiers", "r": "Horseshoe Beach City Council"}, {"n": "Scott Matthews", "r": "Horseshoe Beach City Council"}]}], "slug": "dixie"}, "12031": {"county": [{"n": "Al Ferraro", "r": "Council Member, Duval County"}, {"n": "April Carney", "r": "Duval County School Board"}, {"n": "Brenda Priestly Jackson", "r": "Council Member, Duval County"}, {"n": "Charlotte Joyce", "r": "Duval County School Board"}, {"n": "Chris Miller", "r": "Council Member, Duval County"}, {"n": "Cindy Pearson", "r": "Duval County School Board"}, {"n": "Danny Becton", "r": "Council Member, Duval County"}, {"n": "Darryl Willie", "r": "Duval County School Board"}, {"n": "Jerry Holland", "r": "Supervisor of Elections, Duval County"}, {"n": "Jerry Holland", "r": "Supervisor of Elections, Duval County"}, {"n": "Jim Overton", "r": "Tax Collector, Duval County"}, {"n": "Jimmy Peluso", "r": "Council Member, Duval County"}, {"n": "Jody Phillips", "r": "Clerk of Court, Duval County"}, {"n": "Joe Carlucci", "r": "Council Member, Duval County"}, {"n": "Joyce Morgan", "r": "Property Appraiser, Duval County"}, {"n": "Ju'Coby Pittman", "r": "Council Member, Duval County"}, {"n": "Ken Amaro", "r": "Council Member, Duval County"}, {"n": "Kevin Carrico", "r": "Council Member, Duval County"}, {"n": "LeAnna Cumber", "r": "Council Member, Duval County"}, {"n": "Matt Carlucci", "r": "Council Member, Duval County"}, {"n": "Melody Bolduc", "r": "Duval County School Board"}, {"n": "Michael Boylan", "r": "Council Member, Duval County"}, {"n": "Mike Gay", "r": "Council Member, Duval County"}, {"n": "Mike Hogan", "r": "Supervisor of Elections, Duval County"}, {"n": "Mike Williams", "r": "Sheriff, Duval County"}, {"n": "Nick Howland", "r": "Council Member, Duval County"}, {"n": "Rahman Johnson", "r": "Council Member, Duval County"}, {"n": "Randy DeFoor", "r": "Council Member, Duval County"}, {"n": "Randy White", "r": "Council Member, Duval County"}, {"n": "Reggie Gaffney", "r": "Council Member, Duval County"}, {"n": "Reginald \"Reggie\" Blount", "r": "Duval County School Board"}, {"n": "Ronald Salem", "r": "Council Member, Duval County"}, {"n": "Rory Diamond", "r": "Council Member, Duval County"}, {"n": "Samuel Newby", "r": "Council Member, Duval County"}, {"n": "Terrance Freeman", "r": "Council Member, Duval County"}, {"n": "Tony Ricardo", "r": "Duval County School Board"}, {"n": "Tyrona Clark-Murray", "r": "Council Member, Duval County"}, {"n": "William Lahnen", "r": "Council Member, Duval County"}], "districts": {"cd": [{"d": "FL-04", "rep": "Aaron Bean", "w": 0.632}, {"d": "FL-05", "rep": "John H. Rutherford", "w": 0.293}], "sh": [{"d": "FL House District 15", "rep": "Dean Black", "w": 0.403}, {"d": "FL House District 17", "rep": "Jessica Baker", "w": 0.13}, {"d": "FL House District 12", "rep": "Wyman Duggan", "w": 0.111}, {"d": "FL House District 13", "rep": "Angie Nixon", "w": 0.105}, {"d": "FL House District 14", "rep": "Kim Daniels", "w": 0.089}, {"d": "FL House District 16", "rep": "Kiyan Michael", "w": 0.086}], "ss": [{"d": "FL Senate District 4", "rep": "Clay Yarborough", "w": 0.652}, {"d": "FL Senate District 5", "rep": "Tracie Davis", "w": 0.27}]}, "munis": [{"m": "Atlantic Beach", "p": [{"n": "Bruce Bole", "r": "Atlantic Beach City Council"}, {"n": "Candace Kelly", "r": "Atlantic Beach City Council"}, {"n": "Curtis Ford", "r": "Mayor of Atlantic Beach"}, {"n": "Jessica Ring", "r": "Atlantic Beach City Council"}, {"n": "Thomas Grant", "r": "Atlantic Beach City Council"}]}, {"m": "Baldwin", "p": [{"n": "Georgeann L. McKenna", "r": "Baldwin City Council"}, {"n": "Harry D. Ervin", "r": "Baldwin City Council"}, {"n": "John A. Knoll", "r": "Baldwin City Council"}, {"n": "Manuel C. Dunlap", "r": "Baldwin City Council"}, {"n": "Sean T. Lynch", "r": "Mayor of Baldwin"}]}, {"m": "Jacksonville", "p": [{"n": "Chris Miller", "r": "Jacksonville City Council - At-Large Group 5"}, {"n": "Donna Deegan", "r": "Mayor of Jacksonville"}, {"n": "Jimmy Peluso", "r": "Jacksonville City Council"}, {"n": "Jimmy Peluso", "r": "Jacksonville City Council - District 7"}, {"n": "Joe Carlucci", "r": "Jacksonville City Council"}, {"n": "Joe Carlucci", "r": "Jacksonville City Council - District 5"}, {"n": "Ju'Coby Pittman", "r": "Jacksonville City Council"}, {"n": "Ju'Coby Pittman", "r": "Jacksonville City Council - District 10"}, {"n": "Ken Amaro", "r": "Jacksonville City Council - District 1"}, {"n": "Ken Stephens Amaro", "r": "Jacksonville City Council"}, {"n": "Kevin Carrico", "r": "Jacksonville City Council"}, {"n": "Kevin Carrico", "r": "Jacksonville City Council - District 4"}, {"n": "Matt Carlucci", "r": "Jacksonville City Council"}, {"n": "Matt Carlucci", "r": "Jacksonville City Council - At-Large Group 4"}, {"n": "Michael Boylan", "r": "Jacksonville City Council"}, {"n": "Michael Boylan", "r": "Jacksonville City Council - District 6"}, {"n": "Mike Gay", "r": "Jacksonville City Council"}, {"n": "Mike Gay", "r": "Jacksonville City Council - District 2"}, {"n": "Nick Howland", "r": "Jacksonville City Council"}, {"n": "Nick Howland", "r": "Jacksonville City Council - At-Large Group 3"}, {"n": "Rahman Johnson", "r": "Jacksonville City Council"}, {"n": "Rahman Johnson", "r": "Jacksonville City Council - District 14"}, {"n": "Randy White", "r": "Jacksonville City Council"}, {"n": "Randy White", "r": "Jacksonville City Council - District 12"}, {"n": "Raul Arias", "r": "Jacksonville City Council"}, {"n": "Raul Arias", "r": "Jacksonville City Council - District 11"}, {"n": "Reggie Gaffney", "r": "Jacksonville City Council"}, {"n": "Reggie Gaffney Jr.", "r": "Jacksonville City Council - District 8"}, {"n": "Ron Salem", "r": "Jacksonville City Council"}, {"n": "Ronald B. Salem", "r": "Jacksonville City Council - At-Large Group 2"}, {"n": "Rory Diamond", "r": "Jacksonville City Council"}, {"n": "Rory Diamond", "r": "Jacksonville City Council - District 13"}, {"n": "Terrance E. Freeman", "r": "Jacksonville City Council"}, {"n": "Terrance Freeman", "r": "Jacksonville City Council - At-Large Group 1"}, {"n": "Tyrona Clark-Murray", "r": "Jacksonville City Council"}, {"n": "Tyrona Clark-Murray", "r": "Jacksonville City Council - District 9"}, {"n": "Will Lahnen", "r": "Jacksonville City Council"}, {"n": "Will Lahnen", "r": "Jacksonville City Council - District 3"}]}, {"m": "Jacksonville Beach", "p": [{"n": "Bill Horn", "r": "Jacksonville Beach City Council"}, {"n": "Bruce Wouters", "r": "Jacksonville Beach City Council"}, {"n": "Chris Hoffman", "r": "Mayor of Jacksonville Beach"}, {"n": "Greg Sutton", "r": "Jacksonville Beach City Council"}, {"n": "John Wagner", "r": "Jacksonville Beach City Council"}]}, {"m": "Neptune Beach", "p": [{"n": "Brent Rogers", "r": "Neptune Beach City Council"}, {"n": "Cori Bylund", "r": "Mayor of Neptune Beach"}, {"n": "Josh Messinger", "r": "Neptune Beach City Council"}, {"n": "Nia Livingston", "r": "Neptune Beach City Council"}, {"n": "Tim Horvath", "r": "Neptune Beach City Council"}]}], "slug": "duval"}, "12033": {"county": [{"n": "Ashlee Hofberger", "r": "Commissioner, Escambia County"}, {"n": "Carissa Bergosh", "r": "Escambia County School Board"}, {"n": "Chip Simmons", "r": "Sheriff, Escambia County"}, {"n": "Chris Jones", "r": "Property Appraiser, Escambia County"}, {"n": "David Stafford", "r": "Supervisor of Elections, Escambia County"}, {"n": "David Williams", "r": "Escambia County School Board"}, {"n": "Gary Peters", "r": "Property Appraiser, Escambia County"}, {"n": "Jeff Bergosh", "r": "Commissioner, Escambia County"}, {"n": "Kevin Adams", "r": "Escambia County School Board"}, {"n": "Lumon May", "r": "Commissioner, Escambia County"}, {"n": "Michael Kohler", "r": "Commissioner, Escambia County"}, {"n": "Pamela Childers", "r": "Clerk of Court, Escambia County"}, {"n": "Paul Fetsko", "r": "Escambia County School Board"}, {"n": "Robert Bender", "r": "Supervisor of Elections, Escambia County"}, {"n": "Scott Lunsford", "r": "Tax Collector, Escambia County"}, {"n": "Steven Barry", "r": "Commissioner, Escambia County"}, {"n": "Tom Harrell", "r": "Escambia County School Board"}], "districts": {"cd": [{"d": "FL-01", "rep": "Jimmy Patronis", "w": 0.663}], "sh": [{"d": "FL House District 1", "rep": "Michelle Salzman", "w": 0.505}, {"d": "FL House District 2", "rep": "Alex Andrade", "w": 0.157}], "ss": [{"d": "FL Senate District 1", "rep": "Don Gaetz", "w": 0.662}]}, "munis": [{"m": "Century", "p": [{"n": "Benjamin Boutwell", "r": "Mayor of Century"}, {"n": "Henry Cunningham", "r": "Century City Council"}, {"n": "John Bass", "r": "Century City Council"}, {"n": "Lizbeth A. Harrison", "r": "Century City Council"}, {"n": "Shelisa McCall Abraham", "r": "Century City Council"}]}, {"m": "Pensacola", "p": [{"n": "Allison Patton", "r": "Pensacola City Council"}, {"n": "Casey Jones", "r": "Pensacola City Council"}, {"n": "Charles Bare", "r": "Pensacola City Council"}, {"n": "D.C. Reeves", "r": "Mayor of Pensacola"}, {"n": "Delarian Wiggins", "r": "Pensacola City Council"}, {"n": "Jared Moore", "r": "Pensacola City Council"}, {"n": "Jennifer Brahier", "r": "Pensacola City Council"}, {"n": "Teniadé Broughton", "r": "Pensacola City Council"}]}], "slug": "escambia"}, "12035": {"county": [{"n": "Andy Dance", "r": "Commissioner, Flagler County"}, {"n": "Christy Chong", "r": "Flagler County School Board"}, {"n": "Donald O'Brien", "r": "Commissioner, Flagler County"}, {"n": "Gregory Hansen", "r": "Commissioner, Flagler County"}, {"n": "James Gardner", "r": "Property Appraiser, Flagler County"}, {"n": "Janie Ruddy", "r": "Flagler County School Board"}, {"n": "Kaiti Lenhart", "r": "Supervisor of Elections, Flagler County"}, {"n": "Lauren Ramirez", "r": "Flagler County School Board"}, {"n": "Leann Pennington", "r": "Commissioner, Flagler County"}, {"n": "Rick Staly", "r": "Sheriff, Flagler County"}, {"n": "Sally Hunt", "r": "Flagler County School Board"}, {"n": "Shelly Edmonson", "r": "Tax Collector, Flagler County"}, {"n": "Suzanne Johnston", "r": "Tax Collector, Flagler County"}, {"n": "Tom Bexley", "r": "Clerk of Court, Flagler County"}, {"n": "Will Furry", "r": "Flagler County School Board"}], "districts": {"cd": [{"d": "FL-06", "rep": "Randy Fine", "w": 0.889}], "sh": [{"d": "FL House District 19", "rep": "Sam Greco", "w": 0.889}], "ss": [{"d": "FL Senate District 7", "rep": "Tom Leek", "w": 0.889}]}, "munis": [{"m": "Beverly Beach", "p": [{"n": "James Howard", "r": "Beverly Beach City Council"}, {"n": "Jeffrey Borges", "r": "Beverly Beach City Council"}, {"n": "Jeffrey Schuitema", "r": "Beverly Beach City Council"}, {"n": "Kyle Blake", "r": "Beverly Beach City Council"}, {"n": "Philip Krakowski", "r": "Beverly Beach City Council"}, {"n": "Stephen Emmett", "r": "Mayor of Beverly Beach"}]}, {"m": "Bunnell", "p": [{"n": "Catherine D. Robinson", "r": "Mayor of Bunnell"}, {"n": "David Atkinson", "r": "Bunnell City Council"}, {"n": "Dean Sechrist", "r": "Bunnell City Council"}, {"n": "John Rogers", "r": "Bunnell City Council"}, {"n": "Peter Young", "r": "Bunnell City Council"}]}, {"m": "Flagler Beach", "p": [{"n": "Eric Cooley", "r": "Flagler Beach City Council"}, {"n": "James Sherman", "r": "Flagler Beach City Council"}, {"n": "John Cunningham", "r": "Flagler Beach City Council"}, {"n": "Patti King", "r": "Mayor of Flagler Beach"}, {"n": "R.J. Santore", "r": "Flagler Beach City Council"}, {"n": "Scott Spradley", "r": "Flagler Beach City Council"}]}, {"m": "Marineland", "p": [{"n": "Jessica Finch", "r": "Marineland City Council"}, {"n": "Joseph B. Pinder", "r": "Mayor of Marineland"}]}, {"m": "Palm Coast", "p": [{"n": "Charles A. Gambarao", "r": "Palm Coast City Council"}, {"n": "Dave Sullivan", "r": "Palm Coast City Council"}, {"n": "Mike Norris", "r": "Mayor of Palm Coast"}, {"n": "Theresa Carli Pontieri", "r": "Palm Coast City Council"}, {"n": "Ty Miller", "r": "Palm Coast City Council"}]}], "slug": "flagler"}, "12037": {"county": [{"n": "A.J. Smith", "r": "Sheriff, Franklin County"}, {"n": "Amy Cook", "r": "Tax Collector, Franklin County"}, {"n": "Anthony Croom", "r": "Commissioner, Franklin County"}, {"n": "Fonda D. Davis Sr.", "r": "Franklin County School Board"}, {"n": "Heather Riley", "r": "Supervisor of Elections, Franklin County"}, {"n": "James Tipton", "r": "Property Appraiser, Franklin County"}, {"n": "Jared Mock", "r": "Franklin County School Board"}, {"n": "Jessica Varnes Ward", "r": "Commissioner, Franklin County"}, {"n": "Melonie Kay Inzetta", "r": "Franklin County School Board"}, {"n": "Ottice Amison", "r": "Commissioner, Franklin County"}, {"n": "Pamela Marshall", "r": "Franklin County School Board"}, {"n": "Rhonda Skipper", "r": "Property Appraiser, Franklin County"}, {"n": "Rick Watson", "r": "Tax Collector, Franklin County"}, {"n": "Ricky Jones", "r": "Commissioner, Franklin County"}, {"n": "Stacy Buck Kirvin", "r": "Franklin County School Board"}, {"n": "Suzanne Maxwell", "r": "Clerk of Court, Franklin County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.434}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.399}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.399}]}, "munis": [{"m": "Apalachicola", "p": [{"n": "Adriane Elliott", "r": "Apalachicola City Council"}, {"n": "Brenda Ash", "r": "Mayor of Apalachicola"}, {"n": "Despina George", "r": "Apalachicola City Council"}, {"n": "Donna Duncan", "r": "Apalachicola City Council"}, {"n": "Donna Knutson", "r": "Apalachicola City Council"}]}, {"m": "Carrabelle", "p": [{"n": "Anthony Millender", "r": "Carrabelle City Council"}, {"n": "Keith Walden", "r": "Carrabelle City Council"}, {"n": "Sebrina Brown", "r": "Mayor of Carrabelle"}, {"n": "Vance Pedrick", "r": "Carrabelle City Council"}, {"n": "William Gray", "r": "Carrabelle City Council"}]}], "slug": "franklin"}, "12039": {"county": [{"n": "Alonzetta Simpkins", "r": "Commissioner, Gadsden County"}, {"n": "Brenda Holt", "r": "Commissioner, Gadsden County"}, {"n": "Cathy Johnson", "r": "Gadsden County School Board"}, {"n": "Charlie Frost", "r": "Gadsden County School Board"}, {"n": "Eric Hinson", "r": "Commissioner, Gadsden County"}, {"n": "Kenya Williams", "r": "Supervisor of Elections, Gadsden County"}, {"n": "Kimblin Nesmith", "r": "Commissioner, Gadsden County"}, {"n": "Leroy McMillan", "r": "Gadsden County School Board"}, {"n": "Morris Young", "r": "Sheriff, Gadsden County"}, {"n": "Nicholas Thomas", "r": "Clerk of Court, Gadsden County"}, {"n": "Reginald Cunningham", "r": "Property Appraiser, Gadsden County"}, {"n": "Ronterious Green", "r": "Commissioner, Gadsden County"}, {"n": "Shawn Wood", "r": "Commissioner, Gadsden County"}, {"n": "Shirley Knight", "r": "Supervisor of Elections, Gadsden County"}, {"n": "Stacey Hannigon", "r": "Gadsden County School Board"}, {"n": "Steve Scott", "r": "Gadsden County School Board"}, {"n": "Tonjii Wiggins-McGriff", "r": "Tax Collector, Gadsden County"}, {"n": "W. Dale Summerford", "r": "Tax Collector, Gadsden County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 8", "rep": "Gallop Franklin", "w": 1.0}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 1.0}]}, "munis": [{"m": "Chattahoochee", "p": [{"n": "Amy M. Glass", "r": "Chattahoochee City Council"}, {"n": "Anquarnette Richardson", "r": "Mayor of Chattahoochee"}, {"n": "Christopher Moultry", "r": "Chattahoochee City Council"}, {"n": "Kenneth Kimrey", "r": "Chattahoochee City Council"}, {"n": "Loubennie A. Williams", "r": "Chattahoochee City Council"}]}, {"m": "Greensboro", "p": [{"n": "Brenda K. Martinez", "r": "Greensboro City Council"}, {"n": "Jacquelyn R. Barber", "r": "Greensboro City Council"}, {"n": "Justin Alday", "r": "Greensboro City Council"}, {"n": "Kimberly A. Boyer", "r": "Greensboro City Council"}, {"n": "Lamar Alday", "r": "Mayor of Greensboro"}, {"n": "Micah Nunamaker", "r": "Greensboro City Council"}]}, {"m": "Gretna", "p": [{"n": "Anthony Baker", "r": "Mayor of Gretna"}, {"n": "Dexter Wright", "r": "Gretna City Council"}, {"n": "Evelyn Riley Goldwire", "r": "Gretna City Council"}, {"n": "Gary Russ-Sills", "r": "Gretna City Council"}, {"n": "James Payne", "r": "Gretna City Council"}]}, {"m": "Havana", "p": [{"n": "Edward Bass", "r": "Mayor of Havana"}, {"n": "John Bryant", "r": "Havana City Council"}, {"n": "Landon Seymour", "r": "Havana City Council"}, {"n": "Lawrence Reed", "r": "Havana City Council"}, {"n": "Matthew Wesolowski", "r": "Havana City Council"}, {"n": "Penny Key", "r": "Havana City Council"}, {"n": "Tabatha Nelson", "r": "Havana City Council"}]}, {"m": "Midway", "p": [{"n": "Braheem Russ", "r": "Midway City Council"}, {"n": "Charles Williams", "r": "Midway City Council"}, {"n": "Ella Parker Dickey", "r": "Mayor of Midway"}, {"n": "NanDrycka King Albert", "r": "Midway City Council"}, {"n": "Valerie Ford", "r": "Midway City Council"}]}, {"m": "Quincy", "p": [{"n": "Beverly A. Nash", "r": "Mayor of Quincy"}, {"n": "Devonta Knight", "r": "Quincy City Council"}, {"n": "Lane Stephens", "r": "Quincy City Council"}, {"n": "Robin Wood", "r": "Quincy City Council"}, {"n": "Ronte R. Harris", "r": "Quincy City Council"}]}], "slug": "gadsden"}, "12041": {"county": [{"n": "Christie McElroy", "r": "Gilchrist County School Board"}, {"n": "Connie Sanchez", "r": "Supervisor of Elections, Gilchrist County"}, {"n": "Damon Leggett", "r": "Property Appraiser, Gilchrist County"}, {"n": "Dustin Deen Lancaster", "r": "Gilchrist County School Board"}, {"n": "Kenrick Thomas", "r": "Commissioner, Gilchrist County"}, {"n": "Michael McElroy", "r": "Tax Collector, Gilchrist County"}, {"n": "Michelle Walker-Crawford", "r": "Gilchrist County School Board"}, {"n": "Robert Schultz", "r": "Sheriff, Gilchrist County"}, {"n": "Ronald Smith", "r": "Commissioner, Gilchrist County"}, {"n": "Sharon Langford", "r": "Commissioner, Gilchrist County"}, {"n": "Susan P. Owens", "r": "Gilchrist County School Board"}, {"n": "Tammy Moore", "r": "Gilchrist County School Board"}, {"n": "Thomas Langford", "r": "Commissioner, Gilchrist County"}, {"n": "Todd Newton", "r": "Clerk of Court, Gilchrist County"}, {"n": "William Martin", "r": "Commissioner, Gilchrist County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 1.0}], "sh": [{"d": "FL House District 22", "rep": "Chad Johnson", "w": 1.0}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 1.0}]}, "munis": [{"m": "Bell", "p": [{"n": "Chris Sandlin", "r": "Bell City Council"}, {"n": "Diana 'Katie' Lovett", "r": "Bell City Council"}, {"n": "Gary Blankenship", "r": "Bell City Council"}, {"n": "Michael Moore", "r": "Bell City Council"}, {"n": "Sandra Moore", "r": "Mayor of Bell"}]}, {"m": "Trenton", "p": [{"n": "Cloud Haley", "r": "Trenton City Council"}, {"n": "Mary Love Davis", "r": "Trenton City Council"}, {"n": "Randy Rutter", "r": "Trenton City Council"}, {"n": "Robbi Coarsey", "r": "Mayor of Trenton"}, {"n": "Russel Williams", "r": "Trenton City Council"}]}], "slug": "gilchrist"}, "12043": {"county": [{"n": "Aletris Farnam", "r": "Supervisor of Elections, Glades County"}, {"n": "Crystal Drake", "r": "Glades County School Board"}, {"n": "David Hardin", "r": "Sheriff, Glades County"}, {"n": "Donna Storter Long", "r": "Commissioner, Glades County"}, {"n": "Gail Jones", "r": "Tax Collector, Glades County"}, {"n": "Hattie Taylor", "r": "Commissioner, Glades County"}, {"n": "Jean H. Prowant", "r": "Glades County School Board"}, {"n": "Jeffrey Patterson", "r": "Commissioner, Glades County"}, {"n": "Jerry Sapp", "r": "Commissioner, Glades County"}, {"n": "Kimberly Lynn Clement", "r": "Glades County School Board"}, {"n": "Larry Luckey, II", "r": "Glades County School Board"}, {"n": "Lorie Ward", "r": "Property Appraiser, Glades County"}, {"n": "Patricia B Pearce", "r": "Glades County School Board"}, {"n": "Tami Simmons", "r": "Clerk of Court, Glades County"}, {"n": "Timothy Stanley", "r": "Commissioner, Glades County"}, {"n": "Tony Whidden", "r": "Commissioner, Glades County"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 1.0}], "sh": [{"d": "FL House District 83", "rep": "Kaylee Tuck", "w": 1.0}], "ss": [{"d": "FL Senate District 29", "rep": "Erin Grall", "w": 1.0}]}, "munis": [{"m": "Moore Haven", "p": [{"n": "Alisha Beck", "r": "Moore Haven City Council"}, {"n": "Bradley Smith", "r": "Moore Haven City Council"}, {"n": "Marcus Decker", "r": "Moore Haven City Council"}, {"n": "RaShondra Croskey", "r": "Moore Haven City Council"}, {"n": "Wayne Browning", "r": "Mayor of Moore Haven"}]}], "slug": "glades"}, "12045": {"county": [{"n": "Ashley Forehand", "r": "Tax Collector, Gulf County"}, {"n": "Brooke Wooten", "r": "Gulf County School Board"}, {"n": "David Rich", "r": "Commissioner, Gulf County"}, {"n": "Denny Mcglon", "r": "Gulf County School Board"}, {"n": "Equillar \"Gal\" Gainer", "r": "Gulf County School Board"}, {"n": "James \"Matt\" Terry", "r": "Gulf County School Board"}, {"n": "John Hanlon", "r": "Supervisor of Elections, Gulf County"}, {"n": "Mike Harrison", "r": "Sheriff, Gulf County"}, {"n": "Mitch Burke", "r": "Property Appraiser, Gulf County"}, {"n": "Patrick Farrell", "r": "Commissioner, Gulf County"}, {"n": "Phil McCroan", "r": "Commissioner, Gulf County"}, {"n": "Rebecca Norris", "r": "Clerk of Court, Gulf County"}, {"n": "Rhonda Pierce", "r": "Supervisor of Elections, Gulf County"}, {"n": "Ruby Knox", "r": "Gulf County School Board"}, {"n": "Sandy Quinn", "r": "Commissioner, Gulf County"}, {"n": "Shirley Jenkins", "r": "Tax Collector, Gulf County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.73}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.715}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.715}]}, "munis": [{"m": "Port St. Joe", "p": [{"n": "Brett Lowry", "r": "Port St. Joe City Council"}, {"n": "Scott Hoffman", "r": "Port St. Joe City Council"}, {"n": "Steve P. Kerigan", "r": "Port St. Joe City Council"}, {"n": "William R. Buzzett", "r": "Mayor of Port St. Joe"}]}, {"m": "Wewahitchka", "p": [{"n": "Brian Cox", "r": "Wewahitchka City Council"}, {"n": "John Paul", "r": "Wewahitchka City Council"}, {"n": "Phillip Gaskin", "r": "Mayor of Wewahitchka"}, {"n": "Ralph M. Fisher", "r": "Wewahitchka City Council"}, {"n": "Robert C. Pettis", "r": "Wewahitchka City Council"}]}], "slug": "gulf"}, "12047": {"county": [{"n": "Brian Creech", "r": "Sheriff, Hamilton County"}, {"n": "Cheryl Deas McCall", "r": "Hamilton County School Board"}, {"n": "Clayton Goolsby", "r": "Property Appraiser, Hamilton County"}, {"n": "David Goolsby", "r": "Property Appraiser, Hamilton County"}, {"n": "Gary Godwin", "r": "Hamilton County School Board"}, {"n": "J. Harrell Reid", "r": "Sheriff, Hamilton County"}, {"n": "James Murphy", "r": "Commissioner, Hamilton County"}, {"n": "Johnny Bullard", "r": "Hamilton County School Board"}, {"n": "Laura Hutto", "r": "Supervisor of Elections, Hamilton County"}, {"n": "Leslie Jones", "r": "Tax Collector, Hamilton County"}, {"n": "Mary Sue Adams", "r": "Tax Collector, Hamilton County"}, {"n": "Richard McCoy", "r": "Commissioner, Hamilton County"}, {"n": "Robby Roberson", "r": "Commissioner, Hamilton County"}, {"n": "Robert Brown", "r": "Commissioner, Hamilton County"}, {"n": "Sammy McCoy", "r": "Hamilton County School Board"}, {"n": "Saul Speights", "r": "Hamilton County School Board"}, {"n": "W. Greg Godwin", "r": "Clerk of Court, Hamilton County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 0.997}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.999}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.999}]}, "munis": [{"m": "Jasper", "p": [{"n": "Carlton G. Selph", "r": "Jasper City Council"}, {"n": "Jay Daigle", "r": "Jasper City Council"}, {"n": "Jhelecia Hawkins", "r": "Mayor of Jasper"}, {"n": "Vanessa Smith", "r": "Jasper City Council"}, {"n": "William S. Mitchell", "r": "Jasper City Council"}]}, {"m": "Jennings", "p": [{"n": "Antonette Crumedy", "r": "Jennings City Council"}, {"n": "Charles Barrett", "r": "Mayor of Jennings"}, {"n": "Cynthia Daniels", "r": "Jennings City Council"}, {"n": "John Prine", "r": "Jennings City Council"}, {"n": "Philip Jackson", "r": "Jennings City Council"}]}, {"m": "White Springs", "p": [{"n": "Cheryl McCall", "r": "White Springs City Council"}, {"n": "Nicole Williams", "r": "White Springs City Council"}, {"n": "Nikki Williams", "r": "White Springs City Council"}, {"n": "Robert Gamsby", "r": "White Springs City Council"}, {"n": "Tonja R. Brown", "r": "Mayor of White Springs"}]}], "slug": "hamilton"}, "12049": {"county": [{"n": "Alisa Lee", "r": "Tax Collector, Hardee County"}, {"n": "Andrew Brian Smith", "r": "Hardee County School Board"}, {"n": "April Lambert", "r": "Tax Collector, Hardee County"}, {"n": "Arnold Lanier", "r": "Sheriff, Hardee County"}, {"n": "Claire Cornell", "r": "Hardee County School Board"}, {"n": "Diane Smith", "r": "Supervisor of Elections, Hardee County"}, {"n": "Judith George", "r": "Commissioner, Hardee County"}, {"n": "Kathy Crawford", "r": "Property Appraiser, Hardee County"}, {"n": "Marie Albritton Dasher", "r": "Hardee County School Board"}, {"n": "Mark Edward Gilliard", "r": "Hardee County School Board"}, {"n": "Noey Flores", "r": "Commissioner, Hardee County"}, {"n": "Renee Wyatt", "r": "Commissioner, Hardee County"}, {"n": "Russell Melendy", "r": "Commissioner, Hardee County"}, {"n": "Stacy Denise Sharp", "r": "Hardee County School Board"}, {"n": "Victoria Rogers", "r": "Clerk of Court, Hardee County"}, {"n": "Vincent Crawford", "r": "Sheriff, Hardee County"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 1.0}], "sh": [{"d": "FL House District 83", "rep": "Kaylee Tuck", "w": 1.0}], "ss": [{"d": "FL Senate District 27", "rep": "Ben Albritton", "w": 1.0}]}, "munis": [{"m": "Bowling Green", "p": [{"n": "David Durastanti", "r": "Bowling Green City Council"}, {"n": "Francisco Arreola", "r": "Bowling Green City Council"}, {"n": "Kent Peterson", "r": "Bowling Green City Council"}, {"n": "N'Kosi L. Jones", "r": "Bowling Green City Council"}, {"n": "Sam Fite", "r": "Mayor of Bowling Green"}]}, {"m": "Wauchula", "p": [{"n": "Anne Miller", "r": "Wauchula City Council"}, {"n": "Gary D. Smith", "r": "Wauchula City Council"}, {"n": "Richard Keith Nadaskay", "r": "Mayor of Wauchula"}, {"n": "Russell G. Smith", "r": "Wauchula City Council"}, {"n": "Sherri Albritton", "r": "Wauchula City Council"}]}, {"m": "Zolfo Springs", "p": [{"n": "Didi White", "r": "Zolfo Springs City Council"}, {"n": "Howard E. Schofield", "r": "Zolfo Springs City Council"}, {"n": "Martina O. Zuniga", "r": "Zolfo Springs City Council"}, {"n": "Rodney A. Cannon", "r": "Mayor of Zolfo Springs"}, {"n": "Sara Ann Schofield", "r": "Zolfo Springs City Council"}]}], "slug": "hardee"}, "12051": {"county": [{"n": "Amanda S. Nelson", "r": "Hendry County School Board"}, {"n": "Amy Collins", "r": "Tax Collector, Hendry County"}, {"n": "Brenda Hoots", "r": "Supervisor of Elections, Hendry County"}, {"n": "Dena Pittman", "r": "Property Appraiser, Hendry County"}, {"n": "Dwayne E. Brown", "r": "Hendry County School Board"}, {"n": "Emma Byrd", "r": "Commissioner, Hendry County"}, {"n": "Emory Howard", "r": "Commissioner, Hendry County"}, {"n": "Jon Basquin", "r": "Hendry County School Board"}, {"n": "Karson Turner", "r": "Commissioner, Hendry County"}, {"n": "Kimberley Barrineau", "r": "Clerk of Court, Hendry County"}, {"n": "Michael Atkinson", "r": "Commissioner, Hendry County"}, {"n": "Mitch Wills", "r": "Commissioner, Hendry County"}, {"n": "Patrick Langford", "r": "Tax Collector, Hendry County"}, {"n": "Paul Samerdyke", "r": "Hendry County School Board"}, {"n": "Ramon Iglesias", "r": "Commissioner, Hendry County"}, {"n": "Sherry Taylor", "r": "Supervisor of Elections, Hendry County"}, {"n": "Stephanie Busin", "r": "Hendry County School Board"}, {"n": "Steve Whidden", "r": "Sheriff, Hendry County"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 1.0}], "sh": [{"d": "FL House District 82", "rep": "Lauren Melo", "w": 1.0}], "ss": [{"d": "FL Senate District 28", "rep": "Kathleen Passidomo", "w": 1.0}]}, "munis": [{"m": "Clewiston", "p": [{"n": "Barbara Edmonds", "r": "Clewiston City Council"}, {"n": "Hillary Hyslope", "r": "Clewiston City Council"}, {"n": "James L. Pittman", "r": "Mayor of Clewiston"}, {"n": "Jason Williams", "r": "Clewiston City Council"}, {"n": "Mali Gardner", "r": "Clewiston City Council"}]}, {"m": "LaBelle", "p": [{"n": "Barbara Spratt", "r": "LaBelle City Council"}, {"n": "Hugo Vargas", "r": "LaBelle City Council"}, {"n": "Jacqueline Ratica", "r": "LaBelle City Council"}, {"n": "Julie C. Wilkins", "r": "Mayor of LaBelle"}, {"n": "Kevin Holland", "r": "LaBelle City Council"}]}], "slug": "hendry"}, "12053": {"county": [{"n": "Alvin Nienhuis", "r": "Sheriff, Hernando County"}, {"n": "Amy Blackburn", "r": "Tax Collector, Hernando County"}, {"n": "Brian Hawkins", "r": "Commissioner, Hernando County"}, {"n": "Denise LaVancher", "r": "Supervisor of Elections, Hernando County"}, {"n": "Douglas Chorvat", "r": "Clerk of Court, Hernando County"}, {"n": "Elizabeth Narverud", "r": "Commissioner, Hernando County"}, {"n": "John Allocco", "r": "Commissioner, Hernando County"}, {"n": "John Emerson", "r": "Property Appraiser, Hernando County"}, {"n": "John Mitten", "r": "Commissioner, Hernando County"}, {"n": "Kayce Hawkins", "r": "Hernando County School Board"}, {"n": "Mark C. Johnson", "r": "Hernando County School Board"}, {"n": "Michelle Bonczek", "r": "Hernando County School Board"}, {"n": "Randolph Mazourek", "r": "Property Appraiser, Hernando County"}, {"n": "Sally Daniel", "r": "Tax Collector, Hernando County"}, {"n": "Shannon Rodriguez", "r": "Hernando County School Board"}, {"n": "Shirley Anderson", "r": "Supervisor of Elections, Hernando County"}, {"n": "Steven Champion", "r": "Commissioner, Hernando County"}, {"n": "Susan D. Duval", "r": "Hernando County School Board"}], "districts": {"cd": [{"d": "FL-12", "rep": "Gus M. Bilirakis", "w": 0.698}], "sh": [{"d": "FL House District 52", "rep": "Samantha Scott", "w": 0.421}, {"d": "FL House District 53", "rep": "Jeff Holcomb", "w": 0.273}], "ss": [{"d": "FL Senate District 11", "rep": "Ralph Massullo", "w": 0.694}]}, "munis": [{"m": "Brooksville", "p": [{"n": "Betty Erhard", "r": "Brooksville City Council"}, {"n": "Christa Tanner", "r": "Mayor of Brooksville"}, {"n": "J.W. McKethan", "r": "Brooksville City Council"}, {"n": "Louis Hallal", "r": "Brooksville City Council"}, {"n": "Thomas Bronson", "r": "Brooksville City Council"}]}], "slug": "hernando"}, "12055": {"county": [{"n": "Arlene Tuck", "r": "Commissioner, Highlands County"}, {"n": "C. Raymond McIntyre", "r": "Property Appraiser, Highlands County"}, {"n": "Chris Campbell", "r": "Commissioner, Highlands County"}, {"n": "Don Elwell", "r": "Commissioner, Highlands County"}, {"n": "Donna Howerton", "r": "Highlands County School Board"}, {"n": "Eric Zwayer", "r": "Tax Collector, Highlands County"}, {"n": "Isaac Durrance", "r": "Highlands County School Board"}, {"n": "Jerome Kaszubowski", "r": "Clerk of Court, Highlands County"}, {"n": "Karen Healy", "r": "Supervisor of Elections, Highlands County"}, {"n": "Kathleen Rapp", "r": "Commissioner, Highlands County"}, {"n": "Kevin Roberts", "r": "Commissioner, Highlands County"}, {"n": "Mason Whidden", "r": "Highlands County School Board"}, {"n": "Nicole Radonski", "r": "Highlands County School Board"}, {"n": "Paul Blackman", "r": "Sheriff, Highlands County"}, {"n": "Reese Martin", "r": "Highlands County School Board"}, {"n": "Scott Kirouac", "r": "Commissioner, Highlands County"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 1.0}], "sh": [{"d": "FL House District 83", "rep": "Kaylee Tuck", "w": 1.0}], "ss": [{"d": "FL Senate District 29", "rep": "Erin Grall", "w": 1.0}]}, "munis": [{"m": "Avon Park", "p": [{"n": "Berniece Taylor", "r": "Avon Park City Council"}, {"n": "Brittany McGuire", "r": "Avon Park City Council"}, {"n": "Garrett Anderson", "r": "Mayor of Avon Park"}, {"n": "Jim Barnard", "r": "Avon Park City Council"}, {"n": "Michelle Mercure", "r": "Avon Park City Council"}]}, {"m": "Lake Placid", "p": [{"n": "Colleen Charles", "r": "Mayor of Lake Placid"}, {"n": "Debra Worley", "r": "Lake Placid City Council"}, {"n": "Joy Eberhardt", "r": "Lake Placid City Council"}, {"n": "Nell Frewin-Hays", "r": "Lake Placid City Council"}]}, {"m": "Sebring", "p": [{"n": "David Leidel", "r": "Sebring City Council"}, {"n": "Harrison Havery", "r": "Sebring City Council"}, {"n": "John C. Shoop", "r": "Mayor of Sebring"}, {"n": "Josh Stewart", "r": "Sebring City Council"}, {"n": "Rebekah Kogelschatz", "r": "Sebring City Council"}, {"n": "Roland Bishop", "r": "Sebring City Council"}]}], "slug": "highlands"}, "12057": {"county": [{"n": "Bob Henriquez", "r": "Property Appraiser, Hillsborough County"}, {"n": "Chad Chronister", "r": "Sheriff, Hillsborough County"}, {"n": "Christine Miller", "r": "Commissioner, Hillsborough County"}, {"n": "Cindy Stuart", "r": "Clerk of Court, Hillsborough County"}, {"n": "Craig Latimer", "r": "Supervisor of Elections, Hillsborough County"}, {"n": "Donna Cameron-Cepeda", "r": "Commissioner, Hillsborough County"}, {"n": "Doug Belden", "r": "Tax Collector, Hillsborough County"}, {"n": "Gwen Myers", "r": "Commissioner, Hillsborough County"}, {"n": "Harry Cohen", "r": "Commissioner, Hillsborough County"}, {"n": "Henry Washington", "r": "Hillsborough County School Board"}, {"n": "Jessica Vaughn", "r": "Hillsborough County School Board"}, {"n": "Joshua Wostal", "r": "Commissioner, Hillsborough County"}, {"n": "Ken Hagan", "r": "Commissioner, Hillsborough County"}, {"n": "Lynn Gray", "r": "Hillsborough County School Board"}, {"n": "Nadia Combs", "r": "Hillsborough County School Board"}, {"n": "Nancy Millan", "r": "Tax Collector, Hillsborough County"}, {"n": "Patricia \"Patti\" Rendon", "r": "Hillsborough County School Board"}, {"n": "Patricia Kemp", "r": "Commissioner, Hillsborough County"}, {"n": "Stacy Hahn", "r": "Hillsborough County School Board"}], "districts": {"cd": [{"d": "FL-16", "rep": "Vern Buchanan", "w": 0.322}, {"d": "FL-15", "rep": "Laurel M. Lee", "w": 0.305}, {"d": "FL-14", "rep": "Kathy Castor", "w": 0.187}], "sh": [{"d": "FL House District 69", "rep": "Danny Alvarez", "w": 0.2}, {"d": "FL House District 68", "rep": "Lawrence McClure", "w": 0.192}, {"d": "FL House District 70", "rep": "Michael Owen", "w": 0.09}, {"d": "FL House District 67", "rep": "Fentrice Driskell", "w": 0.09}, {"d": "FL House District 66", "rep": "Traci Koster", "w": 0.085}, {"d": "FL House District 62", "rep": "Michele Rayner", "w": 0.051}, {"d": "FL House District 65", "rep": "Karen Gonzalez Pittman", "w": 0.04}, {"d": "FL House District 63", "rep": "Dianne Hart-Lowman", "w": 0.034}, {"d": "FL House District 64", "rep": "Susan Valdés", "w": 0.034}], "ss": [{"d": "FL Senate District 20", "rep": "Jim Boyd", "w": 0.271}, {"d": "FL Senate District 23", "rep": "Danny Burgess", "w": 0.227}, {"d": "FL Senate District 14", "rep": "Brian Nathan", "w": 0.171}, {"d": "FL Senate District 16", "rep": "Darryl Rouson", "w": 0.146}]}, "munis": [{"m": "Plant City", "p": [{"n": "Jason Jones", "r": "Plant City City Council"}, {"n": "John L. Haney", "r": "Plant City City Council"}, {"n": "Karen Kerr", "r": "Plant City City Council"}, {"n": "Mary Thomas Mathis", "r": "Plant City City Council"}, {"n": "Nathan A. Kilton", "r": "Mayor of Plant City"}]}, {"m": "Tampa", "p": [{"n": "Alan Clendenin", "r": "Tampa City Council - At-Large Chairman"}, {"n": "Bill Carlson", "r": "Tampa City Council"}, {"n": "Bill Carlson", "r": "Tampa City Council - District 4"}, {"n": "Charlie Miranda", "r": "Tampa City Council"}, {"n": "Charlie Miranda", "r": "Tampa City Council - District 6"}, {"n": "Guido Maniscalco", "r": "Tampa City Council"}, {"n": "Guido Maniscalco", "r": "Tampa City Council - At-Large"}, {"n": "Gwendolyn Henderson", "r": "Tampa City Council"}, {"n": "Jane Castor", "r": "Mayor of Tampa"}, {"n": "Luis E. Viera", "r": "Tampa City Council"}, {"n": "Luis Viera", "r": "Tampa City Council - District 7"}, {"n": "Lynn Hurtak", "r": "Tampa City Council"}, {"n": "Lynn Hurtak", "r": "Tampa City Council - At-Large"}, {"n": "Naya Young", "r": "Tampa City Council - District 5"}]}, {"m": "Temple Terrace", "p": [{"n": "Alison Fernandez", "r": "Temple Terrace City Council"}, {"n": "Andrew R. Ross", "r": "Mayor of Temple Terrace"}, {"n": "Erik Kravets", "r": "Temple Terrace City Council"}, {"n": "Gil Schisler", "r": "Temple Terrace City Council"}, {"n": "James Chambers", "r": "Temple Terrace City Council"}]}], "slug": "hillsborough"}, "12059": {"county": [{"n": "Brandon Newsom", "r": "Commissioner, Holmes County"}, {"n": "Bryan Bell", "r": "Property Appraiser, Holmes County"}, {"n": "Charley Wilson", "r": "Holmes County School Board"}, {"n": "Clint Erickson", "r": "Commissioner, Holmes County"}, {"n": "Derek Worley", "r": "Holmes County School Board"}, {"n": "Earl Stafford", "r": "Commissioner, Holmes County"}, {"n": "Harry Bell", "r": "Tax Collector, Holmes County"}, {"n": "Howard Williams", "r": "Supervisor of Elections, Holmes County"}, {"n": "Jeff Good", "r": "Commissioner, Holmes County"}, {"n": "John Tate", "r": "Sheriff, Holmes County"}, {"n": "Leesa Manning Lee", "r": "Holmes County School Board"}, {"n": "Natalie Motley Miller", "r": "Holmes County School Board"}, {"n": "Phillip Music", "r": "Commissioner, Holmes County"}, {"n": "Samuel Bailey", "r": "Clerk of Court, Holmes County"}, {"n": "Therisa Meadows", "r": "Supervisor of Elections, Holmes County"}, {"n": "Wilburn Baker", "r": "Holmes County School Board"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 5", "rep": "Shane Abbott", "w": 1.0}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 1.0}]}, "munis": [{"m": "Bonifay", "p": [{"n": "Eddie Dixon", "r": "Bonifay City Council"}, {"n": "James W. Sellers", "r": "Bonifay City Council"}, {"n": "Larry Cook", "r": "Mayor of Bonifay"}, {"n": "Rick Crews", "r": "Bonifay City Council"}, {"n": "Shelley Carroll", "r": "Bonifay City Council"}]}, {"m": "Esto", "p": [{"n": "Donna Davis", "r": "Esto City Council"}, {"n": "Gregg Wells", "r": "Esto City Council"}, {"n": "Joshua Davenport", "r": "Esto City Council"}]}, {"m": "Noma", "p": [{"n": "Betty Forthman", "r": "Noma City Council"}, {"n": "Daniel Arrant", "r": "Noma City Council"}, {"n": "Eric Hudson", "r": "Noma City Council"}, {"n": "Literman Joseph", "r": "Noma City Council"}]}, {"m": "Ponce De Leon", "p": [{"n": "Ashley Johnson", "r": "Ponce De Leon City Council"}, {"n": "Johnny Sutton", "r": "Ponce De Leon City Council"}, {"n": "Kimberly Mason", "r": "Ponce De Leon City Council"}, {"n": "Laura Johnson", "r": "Ponce De Leon City Council"}, {"n": "Shane Busby", "r": "Mayor of Ponce De Leon"}, {"n": "William Glenister", "r": "Ponce De Leon City Council"}]}, {"m": "Westville", "p": [{"n": "BJ Taunton", "r": "Westville City Council"}, {"n": "Brittney Simmons", "r": "Westville City Council"}, {"n": "Samanatha Webster", "r": "Westville City Council"}, {"n": "Stephen L. Herrington", "r": "Mayor of Westville"}, {"n": "Susan Bergeron", "r": "Westville City Council"}]}], "slug": "holmes"}, "12061": {"county": [{"n": "Carole Jean Jordan", "r": "Tax Collector, Indian River County"}, {"n": "David Dyer", "r": "Indian River County School Board"}, {"n": "Deryl Loar", "r": "Commissioner, Indian River County"}, {"n": "Eric Flowers", "r": "Sheriff, Indian River County"}, {"n": "Gene Posca", "r": "Indian River County School Board"}, {"n": "Joseph Earman", "r": "Commissioner, Indian River County"}, {"n": "Joseph Flescher", "r": "Commissioner, Indian River County"}, {"n": "Laura Moss", "r": "Commissioner, Indian River County"}, {"n": "Leslie Swan", "r": "Supervisor of Elections, Indian River County"}, {"n": "Peggy Jones", "r": "Indian River County School Board"}, {"n": "Ryan Butler", "r": "Clerk of Court, Indian River County"}, {"n": "Susan Adams", "r": "Commissioner, Indian River County"}, {"n": "Teri Lee Barenborg", "r": "Indian River County School Board"}, {"n": "Wesley Davis", "r": "Property Appraiser, Indian River County"}], "districts": {"cd": [{"d": "FL-08", "rep": "Mike Haridopolos", "w": 0.873}], "sh": [{"d": "FL House District 34", "rep": "Robbie Brackett", "w": 0.875}], "ss": [{"d": "FL Senate District 29", "rep": "Erin Grall", "w": 0.875}]}, "munis": [{"m": "Fellsmere", "p": [{"n": "Fernando Herrera", "r": "Fellsmere City Council"}, {"n": "Inocensia Hernandez", "r": "Fellsmere City Council"}, {"n": "Jessica Salgado", "r": "Mayor of Fellsmere"}, {"n": "Shayla Macias", "r": "Fellsmere City Council"}]}, {"m": "Indian River Shores", "p": [{"n": "Brian T. Foley", "r": "Mayor of Indian River Shores"}, {"n": "James Altieri", "r": "Indian River Shores City Council"}, {"n": "Jesse L. 'Sam' Carroll", "r": "Indian River Shores City Council"}, {"n": "Peter A. Tedesko", "r": "Indian River Shores City Council"}, {"n": "Robert 'Bob' F. Auwaerter", "r": "Indian River Shores City Council"}]}, {"m": "Orchid", "p": [{"n": "Daniel McEvoy", "r": "Orchid City Council"}, {"n": "James Raphalian", "r": "Orchid City Council"}, {"n": "John Heanue", "r": "Orchid City Council"}, {"n": "Paul Knapp", "r": "Orchid City Council"}, {"n": "Robert J. Gibbons", "r": "Mayor of Orchid"}]}, {"m": "Sebastian", "p": [{"n": "Bob McPartlan", "r": "Sebastian City Council"}, {"n": "Christopher R. Nunn", "r": "Sebastian City Council"}, {"n": "Ed Dodd", "r": "Sebastian City Council"}, {"n": "Frederick Jones", "r": "Mayor of Sebastian"}, {"n": "Sherrie Matthews", "r": "Sebastian City Council"}]}, {"m": "Vero Beach", "p": [{"n": "Aaron Vos", "r": "Vero Beach City Council"}, {"n": "John Cotugno", "r": "Mayor of Vero Beach"}, {"n": "John M. Carroll", "r": "Vero Beach City Council"}, {"n": "Linda Moore", "r": "Vero Beach City Council"}, {"n": "Taylor Dingle", "r": "Vero Beach City Council"}]}], "slug": "indian-river"}, "12063": {"county": [{"n": "Alex McKinnie", "r": "Commissioner, Jackson County"}, {"n": "CHRISTOPHER M JOHNSON", "r": "Jackson County School Board"}, {"n": "Carol Dunaway", "r": "Supervisor of Elections, Jackson County"}, {"n": "Chephus D. Granberry", "r": "Jackson County School Board"}, {"n": "Clayton Rooks", "r": "Clerk of Court, Jackson County"}, {"n": "Donald Edenfield", "r": "Sheriff, Jackson County"}, {"n": "Edward Crutchfield", "r": "Commissioner, Jackson County"}, {"n": "James Peacock", "r": "Commissioner, Jackson County"}, {"n": "Jamey Westbrook", "r": "Commissioner, Jackson County"}, {"n": "Mary Murdock", "r": "Tax Collector, Jackson County"}, {"n": "Michael \"M.J.\" Jackson", "r": "Jackson County School Board"}, {"n": "Paul Donofro", "r": "Commissioner, Jackson County"}, {"n": "Rebecca Morris-Haid", "r": "Property Appraiser, Jackson County"}, {"n": "Rex Torbett", "r": "Jackson County School Board"}, {"n": "Tony Pumphrey", "r": "Jackson County School Board"}, {"n": "Willie Spires", "r": "Commissioner, Jackson County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 5", "rep": "Shane Abbott", "w": 1.0}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 1.0}]}, "munis": [{"m": "Alford", "p": [{"n": "Brad Griffin", "r": "Alford City Council"}, {"n": "Daniel Warren", "r": "Alford City Council"}, {"n": "George Gay", "r": "Mayor of Alford"}, {"n": "Somer Holland", "r": "Alford City Council"}, {"n": "Stephanie Jenkins", "r": "Alford City Council"}]}, {"m": "Bascom", "p": [{"n": "Betty James", "r": "Bascom City Council"}, {"n": "Billy James", "r": "Mayor of Bascom"}, {"n": "Gernard Russ", "r": "Bascom City Council"}, {"n": "Tony Pelham", "r": "Bascom City Council"}]}, {"m": "Campbellton", "p": [{"n": "Conswellor White", "r": "Campbellton City Council"}, {"n": "Danny Taylor", "r": "Campbellton City Council"}, {"n": "Douglas Cotton", "r": "Mayor of Campbellton"}, {"n": "Kenneth Fey", "r": "Campbellton City Council"}, {"n": "Pamela Williams", "r": "Campbellton City Council"}]}, {"m": "Cottondale", "p": [{"n": "Carroll Benefield", "r": "Cottondale City Council"}, {"n": "Dennis Sloan", "r": "Cottondale City Council"}, {"n": "Jerrard Deese", "r": "Cottondale City Council"}, {"n": "Thomas T. Daniel", "r": "Cottondale City Council"}]}, {"m": "Graceville", "p": [{"n": "Arthur P.W. Obar", "r": "Mayor of Graceville"}, {"n": "Curtis Pinkard", "r": "Graceville City Council"}, {"n": "John McClendon", "r": "Graceville City Council"}, {"n": "Marshall Davis", "r": "Graceville City Council"}, {"n": "Walter Olds", "r": "Graceville City Council"}]}, {"m": "Grand Ridge", "p": [{"n": "Catelyn Sprague", "r": "Grand Ridge City Council"}, {"n": "Chris Harrell", "r": "Mayor of Grand Ridge"}, {"n": "Chris Wright", "r": "Grand Ridge City Council"}, {"n": "Kim Applewhite", "r": "Grand Ridge City Council"}, {"n": "Tim Baggett", "r": "Grand Ridge City Council"}]}, {"m": "Greenwood", "p": [{"n": "Ben Rogers", "r": "Greenwood City Council"}, {"n": "Bryan Johnson", "r": "Mayor of Greenwood"}, {"n": "Charles Sanders", "r": "Greenwood City Council"}, {"n": "Jacky Ditty", "r": "Greenwood City Council"}]}, {"m": "Jacob City", "p": [{"n": "Donna Pittman", "r": "Jacob City City Council"}, {"n": "Ernest Hall", "r": "Jacob City City Council"}, {"n": "Felix George", "r": "Mayor of Jacob City"}, {"n": "Jonitha Williams", "r": "Jacob City City Council"}, {"n": "Josephine Henderson", "r": "Jacob City City Council"}]}, {"m": "Malone", "p": [{"n": "Billy Smith", "r": "Malone City Council"}, {"n": "Brandon Watford", "r": "Mayor of Malone"}, {"n": "Florence Jackson", "r": "Malone City Council"}, {"n": "Sallie Gibson", "r": "Malone City Council"}, {"n": "Terry Taylor", "r": "Malone City Council"}]}, {"m": "Marianna", "p": [{"n": "Allen Ward", "r": "Marianna City Council"}, {"n": "Kenneth Hamilton", "r": "Marianna City Council"}, {"n": "Rick Pettis", "r": "Marianna City Council"}, {"n": "Rico Williams", "r": "Marianna City Council"}, {"n": "Travis Ephriam", "r": "Mayor of Marianna"}]}, {"m": "Sneads", "p": [{"n": "Kay Neel", "r": "Sneads City Council"}, {"n": "Mike Weeks", "r": "Sneads City Council"}, {"n": "Timothy Perry", "r": "Sneads City Council"}]}], "slug": "jackson"}, "12065": {"county": [{"n": "\"Joy Beth\" Frisby", "r": "Jefferson County School Board"}, {"n": "Angela Gray", "r": "Property Appraiser, Jefferson County"}, {"n": "Benjamin White", "r": "Commissioner, Jefferson County"}, {"n": "Bill Brumfield", "r": "Jefferson County School Board"}, {"n": "Brenda Wirick", "r": "Jefferson County School Board"}, {"n": "Cecil Hightower", "r": "Clerk of Court, Jefferson County"}, {"n": "Chris Tuten", "r": "Commissioner, Jefferson County"}, {"n": "Gene Hall", "r": "Commissioner, Jefferson County"}, {"n": "J.T. Surles", "r": "Commissioner, Jefferson County"}, {"n": "Jason Welty", "r": "Clerk of Court, Jefferson County"}, {"n": "Lois Howell-Hunter", "r": "Tax Collector, Jefferson County"}, {"n": "Mac McNeill", "r": "Sheriff, Jefferson County"}, {"n": "Mags Flynt", "r": "Jefferson County School Board"}, {"n": "Michelle Milligan", "r": "Supervisor of Elections, Jefferson County"}, {"n": "Shanna Boutwell", "r": "Tax Collector, Jefferson County"}, {"n": "Tyler McNeill", "r": "Supervisor of Elections, Jefferson County"}, {"n": "Willie Ann Dickey", "r": "Jefferson County School Board"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.91}], "sh": [{"d": "FL House District 9", "rep": "Allison Tant", "w": 0.558}, {"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.353}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.911}]}, "munis": [{"m": "Monticello", "p": [{"n": "Brian Bachman", "r": "Monticello City Council"}, {"n": "George Evans", "r": "Monticello City Council"}, {"n": "Gloria Cox", "r": "Monticello City Council"}, {"n": "John S. Jones", "r": "Mayor of Monticello"}]}], "slug": "jefferson"}, "12067": {"county": [{"n": "Alicia Walker", "r": "Commissioner, Lafayette County"}, {"n": "Anthony Adams", "r": "Commissioner, Lafayette County"}, {"n": "Brian Lamb", "r": "Sheriff, Lafayette County"}, {"n": "Charles Hewett", "r": "Tax Collector, Lafayette County"}, {"n": "Darren Driver", "r": "Lafayette County School Board"}, {"n": "Earnest Jones", "r": "Commissioner, Lafayette County"}, {"n": "Jeff Walker", "r": "Lafayette County School Board"}, {"n": "Kimberly Adams", "r": "Lafayette County School Board"}, {"n": "Lance Lamb", "r": "Commissioner, Lafayette County"}, {"n": "Marion McCray", "r": "Lafayette County School Board"}, {"n": "Mason Byrd", "r": "Commissioner, Lafayette County"}, {"n": "Steve Land", "r": "Clerk of Court, Lafayette County"}, {"n": "Taylor McGrew", "r": "Lafayette County School Board"}, {"n": "Timothy Walker", "r": "Property Appraiser, Lafayette County"}, {"n": "Travis Hart", "r": "Supervisor of Elections, Lafayette County"}, {"n": "Wayne McCray", "r": "Property Appraiser, Lafayette County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 0.921}, {"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.079}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 1.0}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 1.0}]}, "munis": [{"m": "Mayo", "p": [{"n": "Ann Murphy", "r": "Mayor of Mayo"}, {"n": "Jessica Lawson", "r": "Mayo City Council"}, {"n": "Mamie A. Thomas", "r": "Mayo City Council"}, {"n": "Virginia McCray", "r": "Mayo City Council"}, {"n": "Wayne Hamlin", "r": "Mayo City Council"}]}], "slug": "lafayette"}, "12069": {"county": [{"n": "Alan Hays", "r": "Supervisor of Elections, Lake County"}, {"n": "Bill Mathias", "r": "Lake County School Board"}, {"n": "Carey Baker", "r": "Property Appraiser, Lake County"}, {"n": "David Jordan", "r": "Tax Collector, Lake County"}, {"n": "Gary Cooney", "r": "Clerk of Court, Lake County"}, {"n": "Kirby Smith", "r": "Commissioner, Lake County"}, {"n": "Leslie Campione", "r": "Commissioner, Lake County"}, {"n": "Marc A. Dodd", "r": "Lake County School Board"}, {"n": "Mark Jordan", "r": "Property Appraiser, Lake County"}, {"n": "Mollie R. Cunningham", "r": "Lake County School Board"}, {"n": "Peyton Grinnell", "r": "Sheriff, Lake County"}, {"n": "Sean Parks", "r": "Commissioner, Lake County"}, {"n": "Stephanie Ann Luke", "r": "Lake County School Board"}, {"n": "Tyler Brandeburg", "r": "Lake County School Board"}], "districts": {"cd": [{"d": "FL-11", "rep": "Daniel Webster", "w": 0.567}, {"d": "FL-06", "rep": "Randy Fine", "w": 0.432}], "sh": [{"d": "FL House District 25", "rep": "Taylor Yarkosky", "w": 0.429}, {"d": "FL House District 27", "rep": "Richard Gentry", "w": 0.305}, {"d": "FL House District 26", "rep": "Nan Cobb", "w": 0.266}], "ss": [{"d": "FL Senate District 13", "rep": "Keith Truenow", "w": 1.0}]}, "munis": [{"m": "Astatula", "p": [{"n": "Cheryl Marinelli", "r": "Astatula City Council"}, {"n": "Kay MacQueen", "r": "Astatula City Council"}, {"n": "Kim Hanawalt", "r": "Astatula City Council"}, {"n": "Susan Richert", "r": "Astatula City Council"}, {"n": "Zane Teeters", "r": "Mayor of Astatula"}]}, {"m": "Clermont", "p": [{"n": "Alison Strange", "r": "Clermont City Council"}, {"n": "Bryan L. Bain", "r": "Clermont City Council"}, {"n": "Chandra L. Myers", "r": "Clermont City Council"}, {"n": "Tim Murry", "r": "Mayor of Clermont"}, {"n": "William Petersen", "r": "Clermont City Council"}]}, {"m": "Eustis", "p": [{"n": "Emily A. Lee", "r": "Mayor of Eustis"}, {"n": "Gary Ashcraft", "r": "Eustis City Council"}, {"n": "George Asbate", "r": "Eustis City Council"}, {"n": "Michael Holland", "r": "Eustis City Council"}, {"n": "Willie Hawkins", "r": "Eustis City Council"}]}, {"m": "Fruitland Park", "p": [{"n": "Christopher Cheshire", "r": "Mayor of Fruitland Park"}, {"n": "Christopher J. Bell", "r": "Fruitland Park City Council"}, {"n": "John Mobilian", "r": "Fruitland Park City Council"}, {"n": "Joseph Cosenza", "r": "Fruitland Park City Council"}, {"n": "Patrick DeGrave", "r": "Fruitland Park City Council"}]}, {"m": "Groveland", "p": [{"n": "Amy Jo Carroll", "r": "Groveland City Council"}, {"n": "Barbara Gaines", "r": "Groveland City Council"}, {"n": "Keith Keogh", "r": "Mayor of Groveland"}, {"n": "Michael Jaycox", "r": "Groveland City Council"}, {"n": "Stephen Shylkohski", "r": "Groveland City Council"}]}, {"m": "Howey-in-the-Hills", "p": [{"n": "David Miles", "r": "Howey-in-the-Hills City Council"}, {"n": "Graham Wells", "r": "Mayor of Howey-in-the-Hills"}, {"n": "Jonathan Arnold", "r": "Howey-in-the-Hills City Council"}, {"n": "Reneé Lannaman", "r": "Howey-in-the-Hills City Council"}, {"n": "Timothy Everline", "r": "Howey-in-the-Hills City Council"}]}, {"m": "Lady Lake", "p": [{"n": "Ed Freeman", "r": "Mayor of Lady Lake"}, {"n": "Ed Regan", "r": "Lady Lake City Council"}, {"n": "John Gourlie", "r": "Lady Lake City Council"}, {"n": "Mike Sage", "r": "Lady Lake City Council"}, {"n": "Treva Roberts", "r": "Lady Lake City Council"}]}, {"m": "Leesburg", "p": [{"n": "Alan Reisman", "r": "Leesburg City Council"}, {"n": "Allyson Berry", "r": "Mayor of Leesburg"}, {"n": "Jay Connell", "r": "Leesburg City Council"}, {"n": "Jimmy Burry", "r": "Leesburg City Council"}, {"n": "Michael Pederson", "r": "Leesburg City Council"}]}, {"m": "Mascotte", "p": [{"n": "Jessica Bruno", "r": "Mascotte City Council"}, {"n": "Meghan DeSoto", "r": "Mascotte City Council"}, {"n": "Randy Brasher", "r": "Mascotte City Council"}, {"n": "Robin Hughes", "r": "Mascotte City Council"}, {"n": "Steven A. Sheffield", "r": "Mayor of Mascotte"}]}, {"m": "Minneola", "p": [{"n": "Debbie Flinn", "r": "Minneola City Council"}, {"n": "Erick Hernandez", "r": "Minneola City Council"}, {"n": "Joseph Saunders", "r": "Minneola City Council"}, {"n": "Pam Serviss", "r": "Minneola City Council"}, {"n": "Pat Kelley", "r": "Mayor of Minneola"}]}, {"m": "Montverde", "p": [{"n": "Bryan Rubio", "r": "Montverde City Council"}, {"n": "Grant Roberts", "r": "Montverde City Council"}, {"n": "Joe Morganelli", "r": "Montverde City Council"}, {"n": "Joe Wynkoop", "r": "Mayor of Montverde"}]}, {"m": "Mount Dora", "p": [{"n": "Cal Rolfson", "r": "Mount Dora City Council"}, {"n": "Dennis Dawson", "r": "Mount Dora City Council"}, {"n": "Doug Bryant", "r": "Mount Dora City Council"}, {"n": "James L. Homich", "r": "Mayor of Mount Dora"}, {"n": "John Cataldo", "r": "Mount Dora City Council"}, {"n": "Marc Crail", "r": "Mount Dora City Council"}, {"n": "Nate Walker", "r": "Mount Dora City Council"}]}, {"m": "Tavares", "p": [{"n": "Bob Grenier", "r": "Tavares City Council"}, {"n": "Doug Keown", "r": "Tavares City Council"}, {"n": "Lori Pfister", "r": "Mayor of Tavares"}, {"n": "Sandy Gamble", "r": "Tavares City Council"}, {"n": "Walter B. Price", "r": "Tavares City Council"}]}, {"m": "Umatilla", "p": [{"n": "Bear Crockett", "r": "Umatilla City Council"}, {"n": "Chris Creech", "r": "Mayor of Umatilla"}, {"n": "Fred Fetterolf", "r": "Umatilla City Council"}, {"n": "Katherine L. Adams", "r": "Umatilla City Council"}]}], "slug": "lake"}, "12071": {"county": [{"n": "Armor Persons", "r": "Lee County School Board"}, {"n": "Bill Ribble", "r": "Lee County School Board"}, {"n": "Brian Hamman", "r": "Commissioner, Lee County"}, {"n": "Carmine Marceno", "r": "Sheriff, Lee County"}, {"n": "Cecil Pendergrass", "r": "Commissioner, Lee County"}, {"n": "David Mulicka", "r": "Commissioner, Lee County"}, {"n": "Debbie Jordan", "r": "Lee County School Board"}, {"n": "Jada Langford Fleming", "r": "Lee County School Board"}, {"n": "Kenneth Wilkinson", "r": "Property Appraiser, Lee County"}, {"n": "Kevin Karnes", "r": "Clerk of Court, Lee County"}, {"n": "Kevin Ruane", "r": "Commissioner, Lee County"}, {"n": "Larry Hart", "r": "Tax Collector, Lee County"}, {"n": "Matt Caldwell", "r": "Property Appraiser, Lee County"}, {"n": "Melisa W Giovannelli", "r": "Lee County School Board"}, {"n": "Michael Greenwell", "r": "Commissioner, Lee County"}, {"n": "Noelle Branning", "r": "Tax Collector, Lee County"}, {"n": "Raymond Sandelli", "r": "Commissioner, Lee County"}, {"n": "Sam Fisher", "r": "Lee County School Board"}, {"n": "Tommy Doyle", "r": "Supervisor of Elections, Lee County"}, {"n": "Vanessa Chaviano", "r": "Lee County School Board"}], "districts": {"cd": [{"d": "FL-19", "rep": "Byron Donalds", "w": 0.444}, {"d": "FL-17", "rep": "W. Gregory Steube", "w": 0.149}], "sh": [{"d": "FL House District 77", "rep": "Tiffany Esposito", "w": 0.185}, {"d": "FL House District 80", "rep": "Adam Botana", "w": 0.158}, {"d": "FL House District 76", "rep": "Vanessa Oliver", "w": 0.094}, {"d": "FL House District 79", "rep": "Mike Giallombardo", "w": 0.08}], "ss": [{"d": "FL Senate District 33", "rep": "Jonathan Martin", "w": 0.306}, {"d": "FL Senate District 28", "rep": "Kathleen Passidomo", "w": 0.153}, {"d": "FL Senate District 27", "rep": "Ben Albritton", "w": 0.126}]}, "munis": [{"m": "Bonita Springs", "p": [{"n": "Chris Corrie", "r": "Bonita Springs City Council"}, {"n": "Jamie Bogacz", "r": "Bonita Springs City Council"}, {"n": "Jesse Purdon", "r": "Bonita Springs City Council"}, {"n": "Jim Fitzpatrick", "r": "Bonita Springs City Council"}, {"n": "Laura Carr", "r": "Bonita Springs City Council"}, {"n": "Mike Gibson", "r": "Mayor of Bonita Springs"}, {"n": "Nigel P. Fullick", "r": "Bonita Springs City Council"}]}, {"m": "Cape Coral", "p": [{"n": "Bill Steinke", "r": "Cape Coral City Council"}, {"n": "Derrick L. Donnell", "r": "Cape Coral City Council"}, {"n": "Jennifer Nelson-Lastra", "r": "Cape Coral City Council"}, {"n": "Joe Kilraine", "r": "Cape Coral City Council"}, {"n": "John Gunter", "r": "Mayor of Cape Coral"}, {"n": "Keith Long", "r": "Cape Coral City Council"}, {"n": "Laurie Lehmann", "r": "Cape Coral City Council"}, {"n": "Rachel Kaduk", "r": "Cape Coral City Council"}]}, {"m": "Fort Myers", "p": [{"n": "Darla Bonk", "r": "Fort Myers City Council"}, {"n": "Diana Giraldo", "r": "Fort Myers City Council"}, {"n": "Fred Burson", "r": "Fort Myers City Council"}, {"n": "Kevin B. Anderson", "r": "Mayor of Fort Myers"}, {"n": "Liston D. Bochette", "r": "Fort Myers City Council"}, {"n": "Teresa Watkins Brown", "r": "Fort Myers City Council"}]}, {"m": "Fort Myers Beach", "p": [{"n": "Daniel Allers", "r": "Mayor of Fort Myers Beach"}, {"n": "Jim Atterholt", "r": "Fort Myers Beach City Council"}, {"n": "John McLean", "r": "Fort Myers Beach City Council"}, {"n": "John R. King", "r": "Fort Myers Beach City Council"}, {"n": "Rebecca Link", "r": "Fort Myers Beach City Council"}]}, {"m": "Sanibel", "p": [{"n": "Holly D. Smith", "r": "Sanibel City Council"}, {"n": "Holly D. Smith", "r": "Sanibel City Council"}, {"n": "John Henshaw", "r": "Sanibel City Council"}, {"n": "Michael Miller", "r": "Mayor of Sanibel"}, {"n": "Richard Johnson", "r": "Sanibel City Council"}]}], "slug": "lee"}, "12073": {"county": [{"n": "Akin Akinyemi", "r": "Property Appraiser, Leon County"}, {"n": "Alva Swafford Smith", "r": "Leon County School Board - District 1"}, {"n": "Alva Swafford Striplin", "r": "Leon County School Board"}, {"n": "Brian Welch", "r": "Commissioner, Leon County"}, {"n": "Carolyn Cummings", "r": "Commissioner, Leon County"}, {"n": "Christian Caban", "r": "Commissioner, Leon County"}, {"n": "Darryl Jones", "r": "Leon County School Board"}, {"n": "Darryl Jones", "r": "Leon County School Board - Vice Chair, District 3"}, {"n": "David O'Keefe", "r": "Commissioner, Leon County"}, {"n": "Doris Maloy", "r": "Tax Collector, Leon County"}, {"n": "Dr. Marcus Nicolas", "r": "Leon County School Board - Chair, District 5"}, {"n": "Gwen Marshall Knight", "r": "Clerk of Court, Leon County"}, {"n": "Laurie Lawson Cox", "r": "Leon County School Board"}, {"n": "Laurie Lawson Cox", "r": "Leon County School Board - District 4"}, {"n": "Marcus Bernard Nicolas", "r": "Leon County School Board"}, {"n": "Mark Earley", "r": "Supervisor of Elections, Leon County"}, {"n": "Nick Maddox", "r": "Commissioner, Leon County"}, {"n": "Rick Minor", "r": "Commissioner, Leon County"}, {"n": "Rosanne Wood", "r": "Leon County School Board"}, {"n": "Rosanne Wood", "r": "Leon County School Board - District 2"}, {"n": "Walt McNeil", "r": "Sheriff, Leon County"}, {"n": "William Proctor", "r": "Commissioner, Leon County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 9", "rep": "Allison Tant", "w": 0.508}, {"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.335}, {"d": "FL House District 8", "rep": "Gallop Franklin", "w": 0.157}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 1.0}]}, "munis": [{"m": "Tallahassee", "p": [{"n": "Curtis B. Richardson", "r": "Tallahassee City Council"}, {"n": "Dianne Williams-Cox", "r": "Tallahassee City Council"}, {"n": "Jacqueline Porter", "r": "Tallahassee City Council"}, {"n": "Jeremy Matlow", "r": "Tallahassee City Council"}, {"n": "John E. Dailey", "r": "Mayor of Tallahassee"}]}], "slug": "leon"}, "12075": {"county": [{"n": "Ashley Breeden Clemenzi", "r": "Levy County School Board"}, {"n": "Bobby McCallum", "r": "Sheriff, Levy County"}, {"n": "Cameron Asbell", "r": "Levy County School Board"}, {"n": "Danny Shipp", "r": "Clerk of Court, Levy County"}, {"n": "Desiree Mills", "r": "Commissioner, Levy County"}, {"n": "Devin Whitehurst", "r": "Levy County School Board"}, {"n": "John Meeks", "r": "Commissioner, Levy County"}, {"n": "Johnny Hiers", "r": "Commissioner, Levy County"}, {"n": "Linda Campbell", "r": "Levy County School Board"}, {"n": "Lisa Quincey Baxter", "r": "Levy County School Board"}, {"n": "Matt Brooks", "r": "Clerk of Court, Levy County"}, {"n": "Michele Langford", "r": "Tax Collector, Levy County"}, {"n": "Russell Meeks", "r": "Commissioner, Levy County"}, {"n": "Tammy Jones", "r": "Supervisor of Elections, Levy County"}, {"n": "Tim Hodge", "r": "Commissioner, Levy County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 0.724}], "sh": [{"d": "FL House District 22", "rep": "Chad Johnson", "w": 0.727}], "ss": [{"d": "FL Senate District 9", "rep": "Stan McClain", "w": 0.727}]}, "munis": [{"m": "Bronson", "p": [{"n": "Bruce A. Greenlee", "r": "Mayor of Bronson"}, {"n": "Franklin Schuler", "r": "Bronson City Council"}, {"n": "Rachel Weeks", "r": "Bronson City Council"}, {"n": "Reggie Stacy", "r": "Bronson City Council"}, {"n": "Virginia Phillips", "r": "Bronson City Council"}]}, {"m": "Cedar Key", "p": [{"n": "Dell Weible", "r": "Cedar Key City Council"}, {"n": "Jim Wortham", "r": "Mayor of Cedar Key"}, {"n": "Jolie Davis", "r": "Cedar Key City Council"}, {"n": "Mel Beckham", "r": "Cedar Key City Council"}, {"n": "Nancy Sera", "r": "Cedar Key City Council"}]}, {"m": "Chiefland", "p": [{"n": "Chris Jones", "r": "Chiefland City Council"}, {"n": "Kim Bennett", "r": "Chiefland City Council"}, {"n": "LaWanda Jones", "r": "Chiefland City Council"}, {"n": "Lewrissa Johns", "r": "Mayor of Chiefland"}, {"n": "Norman Weaver", "r": "Chiefland City Council"}]}, {"m": "Fanning Springs", "p": [{"n": "Barry Cannon", "r": "Fanning Springs City Council"}, {"n": "Howell E. Lancaster", "r": "Mayor of Fanning Springs"}, {"n": "Jonathan Smith", "r": "Fanning Springs City Council"}, {"n": "Matthew Lunsford", "r": "Fanning Springs City Council"}, {"n": "Wanda Michaud", "r": "Fanning Springs City Council"}]}, {"m": "Inglis", "p": [{"n": "Coley Robinson", "r": "Inglis City Council"}, {"n": "Daryl Lynaugh", "r": "Inglis City Council"}, {"n": "Deborah LaClair", "r": "Inglis City Council"}, {"n": "Isaac Young", "r": "Mayor of Inglis"}, {"n": "Mike Ahern", "r": "Inglis City Council"}]}, {"m": "Otter Creek", "p": [{"n": "Don Severino", "r": "Otter Creek City Council"}, {"n": "Russell Meeks", "r": "Otter Creek City Council"}, {"n": "Sonya Gail Lamb", "r": "Otter Creek City Council"}, {"n": "Therese Granger", "r": "Mayor of Otter Creek"}, {"n": "Zim Padgett", "r": "Otter Creek City Council"}]}, {"m": "Williston", "p": [{"n": "Charles Goodman", "r": "Mayor of Williston"}, {"n": "Darfeness Hinds", "r": "Williston City Council"}, {"n": "Debra F. Jones", "r": "Williston City Council"}, {"n": "Meredith Martin", "r": "Williston City Council"}, {"n": "Michael Cox", "r": "Williston City Council"}, {"n": "Shanna Church", "r": "Williston City Council"}]}, {"m": "Yankeetown", "p": [{"n": "Bob Terrian", "r": "Yankeetown City Council"}, {"n": "Laurence Vorisek", "r": "Mayor of Yankeetown"}, {"n": "Tim Ecker", "r": "Yankeetown City Council"}]}], "slug": "levy"}, "12077": {"county": [{"n": "Buddy Money", "r": "Sheriff, Liberty County"}, {"n": "Charles \"Boo\" Morris", "r": "Liberty County School Board"}, {"n": "Chris Rudd", "r": "Property Appraiser, Liberty County"}, {"n": "Cindy Walker", "r": "Property Appraiser, Liberty County"}, {"n": "Daniel Stanley", "r": "Clerk of Court, Liberty County"}, {"n": "Darrel \"Doobie\" Hayes", "r": "Liberty County School Board"}, {"n": "Derrick Arnold", "r": "Commissioner, Liberty County"}, {"n": "Dewayne Branch", "r": "Commissioner, Liberty County"}, {"n": "Doyle Brown", "r": "Commissioner, Liberty County"}, {"n": "Grant Conyers", "r": "Supervisor of Elections, Liberty County"}, {"n": "Hannah Sumner Causseaux", "r": "Commissioner, Liberty County"}, {"n": "Jace Ford", "r": "Clerk of Court, Liberty County"}, {"n": "Jason Singletary", "r": "Liberty County School Board"}, {"n": "Jim Johnson", "r": "Commissioner, Liberty County"}, {"n": "Jodi Lindsey Bailey", "r": "Liberty County School Board"}, {"n": "Marie Goodman", "r": "Tax Collector, Liberty County"}, {"n": "Mason Kever", "r": "Liberty County School Board"}, {"n": "Robert Arnold", "r": "Sheriff, Liberty County"}, {"n": "Scott Phillips", "r": "Commissioner, Liberty County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 1.0}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 1.0}]}, "munis": [{"m": "Bristol", "p": [{"n": "James P. Kersey", "r": "Mayor of Bristol"}, {"n": "Mary Jennifer Hudgins", "r": "Bristol City Council"}, {"n": "Mattie Janie Boyd", "r": "Bristol City Council"}, {"n": "Micah McCaskill", "r": "Bristol City Council"}, {"n": "Thomas Rankin", "r": "Bristol City Council"}]}], "slug": "liberty"}, "12079": {"county": [{"n": "Alfred Martin", "r": "Commissioner, Madison County"}, {"n": "Alston Kelley", "r": "Commissioner, Madison County"}, {"n": "Benjamin Stewart", "r": "Sheriff, Madison County"}, {"n": "Brian Williams", "r": "Commissioner, Madison County"}, {"n": "Carol Gibson", "r": "Madison County School Board"}, {"n": "David Harper", "r": "Sheriff, Madison County"}, {"n": "Devin K Thompson", "r": "Madison County School Board"}, {"n": "Donnie Waldrep", "r": "Commissioner, Madison County"}, {"n": "Frankie Carroll", "r": "Madison County School Board"}, {"n": "Heath Driggers", "r": "Supervisor of Elections, Madison County"}, {"n": "Jane Barfield", "r": "Property Appraiser, Madison County"}, {"n": "Katie Knight", "r": "Madison County School Board"}, {"n": "Lisa Tuten", "r": "Tax Collector, Madison County"}, {"n": "Marie Smith", "r": "Property Appraiser, Madison County"}, {"n": "Rick Davis", "r": "Commissioner, Madison County"}, {"n": "Robin Hart", "r": "Tax Collector, Madison County"}, {"n": "Ronnie Moore", "r": "Commissioner, Madison County"}, {"n": "Ronnie Moore", "r": "Commissioner, Madison County"}, {"n": "VeEtta L Hagan", "r": "Madison County School Board"}, {"n": "William Washington", "r": "Clerk of Court, Madison County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.997}], "sh": [{"d": "FL House District 9", "rep": "Allison Tant", "w": 1.0}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 1.0}]}, "munis": [{"m": "Greenville", "p": [{"n": "Barbara Dansey", "r": "Greenville City Council"}, {"n": "Brittni Brown", "r": "Greenville City Council"}, {"n": "Carl Livingston", "r": "Greenville City Council"}, {"n": "Chiquila Pleas", "r": "Greenville City Council"}, {"n": "Ryan Kornegay", "r": "Mayor of Greenville"}]}, {"m": "Lee", "p": [{"n": "Cindy Thomas", "r": "Lee City Council"}, {"n": "Edwin McMullen", "r": "Lee City Council"}, {"n": "James Ruzicka", "r": "Mayor of Lee"}, {"n": "Ken Szostek", "r": "Lee City Council"}, {"n": "Lloyd Burke", "r": "Lee City Council"}, {"n": "Ronnie Bass", "r": "Lee City Council"}]}, {"m": "Madison", "p": [{"n": "Craig Anderson", "r": "Madison City Council"}, {"n": "Jamarien Moore", "r": "Mayor of Madison"}, {"n": "Rene Alexander", "r": "Madison City Council"}, {"n": "Terry Martin", "r": "Madison City Council"}, {"n": "Voncyle Wilson", "r": "Madison City Council"}]}], "slug": "madison"}, "12081": {"county": [{"n": "Amanda Ballard", "r": "Commissioner, Manatee County"}, {"n": "Angelina Colonneso", "r": "Clerk of Court, Manatee County"}, {"n": "Chad Choate", "r": "Manatee County School Board"}, {"n": "Charles Hackney", "r": "Property Appraiser, Manatee County"}, {"n": "Charlie Kennedy", "r": "Manatee County School Board"}, {"n": "Cindy L Spray", "r": "Manatee County School Board"}, {"n": "George Kruse", "r": "Commissioner, Manatee County"}, {"n": "James Satcher", "r": "Supervisor of Elections, Manatee County"}, {"n": "Jason Bearden", "r": "Commissioner, Manatee County"}, {"n": "Ken Burton", "r": "Tax Collector, Manatee County"}, {"n": "Kevin Van Ostenbridge", "r": "Commissioner, Manatee County"}, {"n": "Mike Rahn", "r": "Commissioner, Manatee County"}, {"n": "Raymond Turner", "r": "Commissioner, Manatee County"}, {"n": "Richard Tatem", "r": "Manatee County School Board"}, {"n": "Rick Wells", "r": "Sheriff, Manatee County"}, {"n": "Scott Farrington", "r": "Supervisor of Elections, Manatee County"}], "districts": {"cd": [{"d": "FL-16", "rep": "Vern Buchanan", "w": 0.826}], "sh": [{"d": "FL House District 72", "rep": "Bill Conerly", "w": 0.635}, {"d": "FL House District 71", "rep": "Will Robinson", "w": 0.115}, {"d": "FL House District 70", "rep": "Michael Owen", "w": 0.075}], "ss": [{"d": "FL Senate District 20", "rep": "Jim Boyd", "w": 0.652}, {"d": "FL Senate District 22", "rep": "Joe Gruters", "w": 0.173}]}, "munis": [{"m": "Anna Maria", "p": [{"n": "Charles Salem", "r": "Anna Maria City Council"}, {"n": "Chris Arendt", "r": "Anna Maria City Council"}, {"n": "Gary McMullen", "r": "Anna Maria City Council"}, {"n": "John Lynch", "r": "Anna Maria City Council"}, {"n": "Kathy Morgan-Johnson", "r": "Anna Maria City Council"}, {"n": "Mark Short", "r": "Mayor of Anna Maria"}]}, {"m": "Bradenton", "p": [{"n": "Gene Brown", "r": "Mayor of Bradenton"}, {"n": "Jayne Kocher", "r": "Bradenton City Council"}, {"n": "Kemp Schuessler", "r": "Bradenton City Council"}, {"n": "Lisa Gonzalez Moore", "r": "Bradenton City Council"}, {"n": "Marianne A. Barnebey", "r": "Bradenton City Council"}, {"n": "Pamela Coachman", "r": "Bradenton City Council"}]}, {"m": "Bradenton Beach", "p": [{"n": "Deborah M. Scaccianoce", "r": "Bradenton Beach City Council"}, {"n": "John Chappie", "r": "Mayor of Bradenton Beach"}, {"n": "Ralph Cole", "r": "Bradenton Beach City Council"}, {"n": "Scott Bear", "r": "Bradenton Beach City Council"}]}, {"m": "Holmes Beach", "p": [{"n": "Dan Diggins", "r": "Holmes Beach City Council"}, {"n": "Jessica Patel", "r": "Holmes Beach City Council"}, {"n": "Judy Titsworth", "r": "Mayor of Holmes Beach"}, {"n": "Steve Oelfke", "r": "Holmes Beach City Council"}, {"n": "Terry W. Schaefer", "r": "Holmes Beach City Council"}]}, {"m": "Palmetto", "p": [{"n": "Brian T. Williams", "r": "Palmetto City Council"}, {"n": "Daniel West", "r": "Mayor of Palmetto"}, {"n": "Harold Smith", "r": "Palmetto City Council"}, {"n": "Scott Whitaker", "r": "Palmetto City Council"}, {"n": "Sunshine Joiner", "r": "Palmetto City Council"}, {"n": "Tamara Cornwell", "r": "Palmetto City Council"}]}], "slug": "manatee"}, "12083": {"county": [{"n": "Allison B. Campbell", "r": "Marion County School Board"}, {"n": "Carl Zalak", "r": "Commissioner, Marion County"}, {"n": "Craig Curry", "r": "Commissioner, Marion County"}, {"n": "David Ellspermann", "r": "Clerk of Court, Marion County"}, {"n": "George Albright", "r": "Tax Collector, Marion County"}, {"n": "Greg Harrell", "r": "Clerk of Court, Marion County"}, {"n": "Jimmy Cowan", "r": "Property Appraiser, Marion County"}, {"n": "Kathy Bryant", "r": "Commissioner, Marion County"}, {"n": "Lori Conrad", "r": "Marion County School Board"}, {"n": "Matthew McClain", "r": "Commissioner, Marion County"}, {"n": "Michelle Stone", "r": "Commissioner, Marion County"}, {"n": "Nancy Thrower", "r": "Marion County School Board"}, {"n": "Sarah James", "r": "Marion County School Board"}, {"n": "Villie Smith", "r": "Property Appraiser, Marion County"}, {"n": "Wesley Wilcox", "r": "Supervisor of Elections, Marion County"}, {"n": "William Woods", "r": "Sheriff, Marion County"}], "districts": {"cd": [{"d": "FL-06", "rep": "Randy Fine", "w": 0.605}, {"d": "FL-03", "rep": "Kat Cammack", "w": 0.395}], "sh": [{"d": "FL House District 20", "rep": "Judson Sapp", "w": 0.276}, {"d": "FL House District 27", "rep": "Richard Gentry", "w": 0.261}, {"d": "FL House District 24", "rep": "Ryan Chamberlin", "w": 0.195}, {"d": "FL House District 21", "rep": "Yvonne Hinson", "w": 0.166}, {"d": "FL House District 23", "rep": "J.J. Grow", "w": 0.102}], "ss": [{"d": "FL Senate District 9", "rep": "Stan McClain", "w": 1.0}]}, "munis": [{"m": "Belleview", "p": [{"n": "Christine Dobkowski", "r": "Mayor of Belleview"}, {"n": "Michael J. Goldman", "r": "Belleview City Council"}, {"n": "Ray Dwyer", "r": "Belleview City Council"}, {"n": "Robert Smith", "r": "Belleview City Council"}, {"n": "Ron T. Livsey", "r": "Belleview City Council"}]}, {"m": "Dunnellon", "p": [{"n": "Reese Taschenberger", "r": "Dunnellon City Council"}, {"n": "Rex Lehmann", "r": "Dunnellon City Council"}, {"n": "Tim Inskeep", "r": "Dunnellon City Council"}, {"n": "Valerie Hanchar", "r": "Dunnellon City Council"}, {"n": "Walter Green", "r": "Mayor of Dunnellon"}]}, {"m": "McIntosh", "p": [{"n": "Alison Scott", "r": "Mayor of McIntosh"}, {"n": "Donald Medeiros", "r": "McIntosh City Council"}, {"n": "Frank Ciotti", "r": "McIntosh City Council"}, {"n": "Lee Deaderick", "r": "McIntosh City Council"}, {"n": "Melinda Jones", "r": "McIntosh City Council"}, {"n": "Scott Mullikin", "r": "McIntosh City Council"}]}, {"m": "Ocala", "p": [{"n": "Barry Mansfield", "r": "Ocala City Council"}, {"n": "Ben Marciano", "r": "Mayor of Ocala"}, {"n": "Ire J. Bethea", "r": "Ocala City Council"}, {"n": "James Hilty", "r": "Ocala City Council"}, {"n": "Jay Musleh", "r": "Ocala City Council"}, {"n": "Kristen M. Dreyer", "r": "Ocala City Council"}]}, {"m": "Reddick", "p": [{"n": "Andrea Barnes", "r": "Reddick City Council"}, {"n": "Myra Sherman", "r": "Mayor of Reddick"}, {"n": "Nadine Stokes", "r": "Reddick City Council"}, {"n": "Shirley Youmans", "r": "Reddick City Council"}]}], "slug": "marion"}, "12085": {"county": [{"n": "Amy Pritchett", "r": "Martin County School Board"}, {"n": "Brian Michael Moriarty", "r": "Martin County School Board"}, {"n": "Carolyn Timmann", "r": "Clerk of Court, Martin County"}, {"n": "Christia Li Roberts", "r": "Martin County School Board"}, {"n": "Doug Smith", "r": "Commissioner, Martin County"}, {"n": "Edward Ciampi", "r": "Commissioner, Martin County"}, {"n": "Harold Jenkins", "r": "Commissioner, Martin County"}, {"n": "Jennifer Russell", "r": "Martin County School Board"}, {"n": "Jenny Fields", "r": "Property Appraiser, Martin County"}, {"n": "John Budensiek", "r": "Sheriff, Martin County"}, {"n": "Laurel Kelly", "r": "Property Appraiser, Martin County"}, {"n": "Marsha Powers", "r": "Martin County School Board"}, {"n": "Ruth Pietruszewski", "r": "Tax Collector, Martin County"}, {"n": "Sarah Heard", "r": "Commissioner, Martin County"}, {"n": "Stacey Hetherington", "r": "Commissioner, Martin County"}, {"n": "Vicki Davis", "r": "Supervisor of Elections, Martin County"}, {"n": "William Snyder", "r": "Sheriff, Martin County"}], "districts": {"cd": [{"d": "FL-21", "rep": "Brian J. Mast", "w": 0.9}], "sh": [{"d": "FL House District 86", "rep": "John Snyder", "w": 0.83}, {"d": "FL House District 85", "rep": "Toby Overdorf", "w": 0.069}], "ss": [{"d": "FL Senate District 31", "rep": "Gayle Harrell", "w": 0.899}]}, "munis": [{"m": "Jupiter Island", "p": [{"n": "Anne Scott", "r": "Jupiter Island City Council"}, {"n": "Joseph Taddeo", "r": "Jupiter Island City Council"}, {"n": "Marshall Field", "r": "Jupiter Island City Council"}, {"n": "Patricia Warner", "r": "Jupiter Island City Council"}, {"n": "Penny Townsend", "r": "Mayor of Jupiter Island"}]}, {"m": "Ocean Breeze", "p": [{"n": "Gail Balogna", "r": "Ocean Breeze City Council"}, {"n": "George Ciaschi", "r": "Ocean Breeze City Council"}, {"n": "Janet Galante", "r": "Ocean Breeze City Council"}, {"n": "Karen M. Ostrand", "r": "Mayor of Ocean Breeze"}, {"n": "Kevin Docherty", "r": "Ocean Breeze City Council"}, {"n": "Margaret Pugsley", "r": "Ocean Breeze City Council"}, {"n": "Sandy Keblbeck-Kelley", "r": "Ocean Breeze City Council"}]}, {"m": "Sewall's Point", "p": [{"n": "David Kurzman", "r": "Sewall's Point City Council"}, {"n": "Frank Fender", "r": "Sewall's Point City Council"}, {"n": "Frank Tidikis", "r": "Sewall's Point City Council"}, {"n": "Kaija Mayfield", "r": "Sewall's Point City Council"}, {"n": "Vincent N. Barile", "r": "Mayor of Sewall's Point"}]}, {"m": "Stuart", "p": [{"n": "Campbell Rich", "r": "Stuart City Council"}, {"n": "Eula R. Clarke", "r": "Stuart City Council"}, {"n": "Laura Giobbi", "r": "Stuart City Council"}, {"n": "Sean Reed", "r": "Stuart City Council"}]}], "slug": "martin"}, "12086": {"county": [{"n": "Alina Garcia", "r": "Supervisor of Elections, Miami-Dade County"}, {"n": "Anthony Rodriguez", "r": "Commissioner, Miami-Dade County"}, {"n": "Christina White", "r": "Supervisor of Elections, Miami-Dade County"}, {"n": "Danielle Higgins", "r": "Commissioner, Miami-Dade County"}, {"n": "Danny Espino", "r": "Miami-Dade County School Board"}, {"n": "Dariel Fernandez", "r": "Tax Collector, Miami-Dade County"}, {"n": "Dorothy Bendross-Mindingall", "r": "Miami-Dade County School Board"}, {"n": "Eileen Higgins", "r": "Commissioner, Miami-Dade County"}, {"n": "Joseph \"Joe\" Geller", "r": "Miami-Dade County School Board"}, {"n": "Juan Bermudez", "r": "Commissioner, Miami-Dade County"}, {"n": "Keon Hardemon", "r": "Commissioner, Miami-Dade County"}, {"n": "Kevin Cabrera", "r": "Commissioner, Miami-Dade County"}, {"n": "Kionne McGhee", "r": "Commissioner, Miami-Dade County"}, {"n": "Luisa Santos", "r": "Miami-Dade County School Board"}, {"n": "Marleine Bastien", "r": "Commissioner, Miami-Dade County"}, {"n": "Mary Blanco", "r": "Miami-Dade County School Board"}, {"n": "Micky Steinberg", "r": "Commissioner, Miami-Dade County"}, {"n": "Monica Colucci", "r": "Miami-Dade County School Board"}, {"n": "Oliver Gilbert", "r": "Commissioner, Miami-Dade County"}, {"n": "Pedro Garcia", "r": "Property Appraiser, Miami-Dade County"}, {"n": "Peter Cam", "r": "Tax Collector, Miami-Dade County"}, {"n": "Raquel Regalado", "r": "Commissioner, Miami-Dade County"}, {"n": "Rene Garcia", "r": "Commissioner, Miami-Dade County"}, {"n": "Roberto Gonzalez", "r": "Commissioner, Miami-Dade County"}, {"n": "Roberto J. Alonso", "r": "Miami-Dade County School Board"}, {"n": "Rosanna Cordero-Stutz", "r": "Sheriff, Miami-Dade County"}, {"n": "Steve Gallon III", "r": "Miami-Dade County School Board"}], "districts": {"cd": [{"d": "FL-28", "rep": "Carlos A. Gimenez", "w": 0.527}, {"d": "FL-26", "rep": "Mario Diaz-Balart", "w": 0.217}, {"d": "FL-27", "rep": "Maria Elvira Salazar", "w": 0.056}, {"d": "FL-24", "rep": "Frederica S. Wilson", "w": 0.047}], "sh": [{"d": "FL House District 120", "rep": "Jim Mooney", "w": 0.623}, {"d": "FL House District 111", "rep": "David Borrero", "w": 0.048}, {"d": "FL House District 115", "rep": "Omar Blanco", "w": 0.021}, {"d": "FL House District 119", "rep": "Juan Porras", "w": 0.021}, {"d": "FL House District 118", "rep": "Mike Redondo", "w": 0.015}, {"d": "FL House District 117", "rep": "Kevin Chambliss", "w": 0.013}, {"d": "FL House District 106", "rep": "Fabián Basabe", "w": 0.013}, {"d": "FL House District 114", "rep": "Demi Busatta", "w": 0.013}, {"d": "FL House District 108", "rep": "Dotie Joseph", "w": 0.012}, {"d": "FL House District 112", "rep": "Alex Rizo", "w": 0.012}, {"d": "FL House District 107", "rep": "Wallace Aristide", "w": 0.012}, {"d": "FL House District 109", "rep": "Ashley Gantt", "w": 0.011}, {"d": "FL House District 116", "rep": "Daniel Perez", "w": 0.01}, {"d": "FL House District 110", "rep": "Tom Fabricio", "w": 0.009}], "ss": [{"d": "FL Senate District 40", "rep": "Ana Maria Rodriguez", "w": 0.64}, {"d": "FL Senate District 39", "rep": "Bryan Ávila", "w": 0.071}, {"d": "FL Senate District 38", "rep": "Alexis Calatayud", "w": 0.067}, {"d": "FL Senate District 34", "rep": "Shev Jones", "w": 0.038}, {"d": "FL Senate District 36", "rep": "Ileana Garcia", "w": 0.024}]}, "munis": [{"m": "Aventura", "p": [{"n": "Amit Bloom", "r": "Aventura City Council"}, {"n": "Cindy Orlinsky", "r": "Aventura City Council"}, {"n": "Clifford B. Ain", "r": "Aventura City Council"}, {"n": "Gustavo Blachman", "r": "Aventura City Council"}, {"n": "Howard S. Weinberg", "r": "Mayor of Aventura"}, {"n": "Paul A. Kruss", "r": "Aventura City Council"}, {"n": "Rachel S. Friedland", "r": "Aventura City Council"}]}, {"m": "Bal Harbour", "p": [{"n": "Buzzy Sklar", "r": "Bal Harbour City Council"}, {"n": "David Wolf", "r": "Bal Harbour City Council"}, {"n": "Jeffrey Freimark", "r": "Bal Harbour City Council"}, {"n": "Seth E. Salver", "r": "Mayor of Bal Harbour"}]}, {"m": "Bay Harbor Islands", "p": [{"n": "Elchonon Shagalov", "r": "Bay Harbor Islands City Council"}, {"n": "Eric Rappaport", "r": "Bay Harbor Islands City Council"}, {"n": "Isaac Salver", "r": "Mayor of Bay Harbor Islands"}, {"n": "Joshua D. Fuller", "r": "Bay Harbor Islands City Council"}, {"n": "Molly Diallo", "r": "Bay Harbor Islands City Council"}, {"n": "Robert H. Yaffe", "r": "Bay Harbor Islands City Council"}, {"n": "Stephanie Bruder", "r": "Bay Harbor Islands City Council"}]}, {"m": "Biscayne Park", "p": [{"n": "Art Gonzalez", "r": "Biscayne Park City Council"}, {"n": "Dan Samaria", "r": "Biscayne Park City Council"}, {"n": "Jonathan Groth", "r": "Mayor of Biscayne Park"}, {"n": "Ryan Huntington", "r": "Biscayne Park City Council"}, {"n": "Veronica Amsler", "r": "Biscayne Park City Council"}]}, {"m": "Coral Gables", "p": [{"n": "Ariel Fernandez", "r": "Coral Gables City Council"}, {"n": "Melissa Castro", "r": "Coral Gables City Council"}, {"n": "Rhonda Anderson", "r": "Coral Gables City Council"}, {"n": "Richard D. Lara", "r": "Coral Gables City Council"}, {"n": "Vince Lago", "r": "Mayor of Coral Gables"}]}, {"m": "Cutler Bay", "p": [{"n": "Michael P. Callahan", "r": "Cutler Bay City Council"}, {"n": "Richard Ramirez", "r": "Cutler Bay City Council"}, {"n": "Robert 'BJ' Duncan", "r": "Cutler Bay City Council"}, {"n": "Suzy Lord", "r": "Cutler Bay City Council"}, {"n": "Timothy J. Meerbott", "r": "Mayor of Cutler Bay"}]}, {"m": "Doral", "p": [{"n": "Christi Fraga", "r": "Mayor of Doral"}, {"n": "Digna Cabral", "r": "Doral City Council"}, {"n": "Maureen Porras", "r": "Doral City Council"}, {"n": "Nicole Reinoso", "r": "Doral City Council"}, {"n": "Rafael Pineyro", "r": "Doral City Council"}]}, {"m": "El Portal", "p": [{"n": "Anders Urbom", "r": "El Portal City Council"}, {"n": "Anna E. Lightfoot-Ward", "r": "El Portal City Council"}, {"n": "Charles Winters", "r": "El Portal City Council"}, {"n": "Darian Martin", "r": "El Portal City Council"}, {"n": "Omarr C. Nickerson", "r": "Mayor of El Portal"}]}, {"m": "Florida City", "p": [{"n": "Charlotte Thompson", "r": "Mayor of Florida City"}, {"n": "James Gold", "r": "Florida City City Council"}, {"n": "Richard Brown", "r": "Florida City City Council"}, {"n": "Ronda Yvette Cobb", "r": "Florida City City Council"}, {"n": "Trina Wilborn", "r": "Florida City City Council"}]}, {"m": "Golden Beach", "p": [{"n": "Bernard Einstein", "r": "Golden Beach City Council"}, {"n": "Glenn Singer", "r": "Mayor of Golden Beach"}, {"n": "Jessie Mendal", "r": "Golden Beach City Council"}, {"n": "Judy Lusskin", "r": "Golden Beach City Council"}, {"n": "Kenneth Bernstein", "r": "Golden Beach City Council"}]}, {"m": "Hialeah", "p": [{"n": "Bryan Calvo", "r": "Mayor of Hialeah"}, {"n": "Carl Zogby", "r": "Hialeah City Council"}, {"n": "Gelien Perez", "r": "Hialeah City Council"}, {"n": "Luis Rodriguez", "r": "Hialeah City Council"}, {"n": "Melinda De La Vega", "r": "Hialeah City Council"}, {"n": "Monica Perez", "r": "Hialeah City Council"}, {"n": "William Marrero", "r": "Hialeah City Council"}]}, {"m": "Hialeah Gardens", "p": [{"n": "Elmo L. Urra", "r": "Hialeah Gardens City Council"}, {"n": "Jorge A. Merida", "r": "Hialeah Gardens City Council"}, {"n": "Jorge Gutierrez", "r": "Hialeah Gardens City Council"}, {"n": "Luciano Garcia", "r": "Hialeah Gardens City Council"}, {"n": "Rolando Piña", "r": "Hialeah Gardens City Council"}, {"n": "Yioset De La Cruz", "r": "Mayor of Hialeah Gardens"}]}, {"m": "Homestead", "p": [{"n": "Clemente Canabal", "r": "Homestead City Council"}, {"n": "Erica G. Àvila", "r": "Homestead City Council"}, {"n": "Jenifer N. Bailey", "r": "Homestead City Council"}, {"n": "Kimberly Konsky", "r": "Homestead City Council"}, {"n": "Larry Roth", "r": "Homestead City Council"}, {"n": "Sean L. Fletcher", "r": "Homestead City Council"}, {"n": "Steven D. Losner", "r": "Mayor of Homestead"}]}, {"m": "Indian Creek", "p": [{"n": "Bernard Klepach", "r": "Mayor of Indian Creek"}, {"n": "Irma Braman", "r": "Indian Creek City Council"}, {"n": "Irwin Tauber", "r": "Indian Creek City Council"}, {"n": "Jared Kushner", "r": "Indian Creek City Council"}, {"n": "Robert Diener", "r": "Indian Creek City Council"}]}, {"m": "Key Biscayne", "p": [{"n": "Edward London", "r": "Key Biscayne City Council"}, {"n": "Fernando A. Vazquez", "r": "Key Biscayne City Council"}, {"n": "Franklin H. Caplan", "r": "Key Biscayne City Council"}, {"n": "Joe I. Rasco", "r": "Mayor of Key Biscayne"}, {"n": "Michael Bracken", "r": "Key Biscayne City Council"}, {"n": "Nancy Stoner", "r": "Key Biscayne City Council"}, {"n": "Oscar Sardiñas", "r": "Key Biscayne City Council"}]}, {"m": "Medley", "p": [{"n": "Ana Stefano", "r": "Mayor of Medley"}, {"n": "Arturo Jinete", "r": "Medley City Council"}, {"n": "Edgar Ayala", "r": "Medley City Council"}, {"n": "Lizelh Rodriguez", "r": "Medley City Council"}, {"n": "Lourdes Rodriguez", "r": "Medley City Council"}]}, {"m": "Miami", "p": [{"n": "Christine King", "r": "Miami City Council"}, {"n": "Damian Pardo", "r": "Miami City Council"}, {"n": "Eileen Higgins", "r": "Mayor of Miami"}, {"n": "Miguel Angel Gabela", "r": "Miami City Council"}, {"n": "Ralph Rosado", "r": "Miami City Council"}, {"n": "Rolando Escalona", "r": "Miami City Council"}]}, {"m": "Miami Beach", "p": [{"n": "Joseph Magazine", "r": "Miami Beach City Council"}, {"n": "Laura Dominguez", "r": "Miami Beach City Council"}, {"n": "Monica Matteo-Salinas", "r": "Miami Beach City Council"}, {"n": "Steven Meiner", "r": "Mayor of Miami Beach"}, {"n": "Tanya K. Bhatt", "r": "Miami Beach City Council"}]}, {"m": "Miami Gardens", "p": [{"n": "Katrina L. Baskin", "r": "Miami Gardens City Council"}, {"n": "Katrina Wilson", "r": "Miami Gardens City Council"}, {"n": "Linda Julien", "r": "Miami Gardens City Council"}, {"n": "Michelle C. Powell", "r": "Miami Gardens City Council"}, {"n": "Reggie Leon", "r": "Miami Gardens City Council"}, {"n": "Robert L. Stephens", "r": "Miami Gardens City Council"}, {"n": "Rodney Harris", "r": "Mayor of Miami Gardens"}]}, {"m": "Miami Lakes", "p": [{"n": "Alejandro Sanchez", "r": "Miami Lakes City Council"}, {"n": "Angelo Cuadra Garcia", "r": "Miami Lakes City Council"}, {"n": "Bryan Morera", "r": "Miami Lakes City Council"}, {"n": "Joshua Dieguez", "r": "Mayor of Miami Lakes"}, {"n": "Juan Carlos Fernandez", "r": "Miami Lakes City Council"}, {"n": "Ray Garcia", "r": "Miami Lakes City Council"}, {"n": "Steven Herzberg", "r": "Miami Lakes City Council"}]}, {"m": "Miami Shores Village", "p": [{"n": "Jerome Charles", "r": "Mayor of Miami Shores Village"}]}, {"m": "Miami Springs", "p": [{"n": "Jorge Santin", "r": "Miami Springs City Council"}, {"n": "Jospeh Dion", "r": "Miami Springs City Council"}, {"n": "Orlando Lamas", "r": "Miami Springs City Council"}, {"n": "Walter Fajet", "r": "Mayor of Miami Springs"}]}, {"m": "Miami-Dade County", "p": [{"n": "Daniella Levine Cava", "r": "Mayor of Miami-Dade County"}]}, {"m": "North Bay Village", "p": [{"n": "Andy Daro", "r": "North Bay Village City Council"}, {"n": "Doris Acosta", "r": "North Bay Village City Council"}, {"n": "Goran Cuk", "r": "North Bay Village City Council"}, {"n": "Rachel Streitfeld", "r": "Mayor of North Bay Village"}, {"n": "Richard Chervony", "r": "North Bay Village City Council"}]}, {"m": "North Miami", "p": [{"n": "Alix Desulme", "r": "Mayor of North Miami"}, {"n": "Kassandra Timothe", "r": "North Miami City Council"}, {"n": "Kevin A. Burns", "r": "North Miami City Council"}, {"n": "Mary Estimé-Irvin", "r": "North Miami City Council"}, {"n": "Pierre Frantz Charles", "r": "North Miami City Council"}]}, {"m": "North Miami Beach", "p": [{"n": "Daniela Jean", "r": "North Miami Beach City Council"}, {"n": "Fortuna Smukler", "r": "North Miami Beach City Council"}, {"n": "Jay R. Chernoff", "r": "North Miami Beach City Council"}, {"n": "Lynn Su", "r": "North Miami Beach City Council"}, {"n": "McKenzie Fleurimond", "r": "North Miami Beach City Council"}, {"n": "Michael Joseph", "r": "Mayor of North Miami Beach"}, {"n": "Phyllis S. Smith", "r": "North Miami Beach City Council"}]}, {"m": "Opa Locka", "p": [{"n": "John H. Taylor Jr.", "r": "Mayor, Opa-locka, FL"}]}, {"m": "Opa-locka", "p": [{"n": "John H. Taylor", "r": "Mayor of Opa-locka"}, {"n": "Joseph L. Kelley", "r": "Opa-locka City Council"}, {"n": "Luis B. Santiago", "r": "Opa-locka City Council"}, {"n": "Natasha L. Ervin", "r": "Opa-locka City Council"}, {"n": "Sherelean Bass", "r": "Opa-locka City Council"}]}, {"m": "Palmetto Bay", "p": [{"n": "Karyn Cunningham", "r": "Mayor of Palmetto Bay"}, {"n": "Mark Merwitzer", "r": "Palmetto Bay City Council"}, {"n": "Marsha Matson", "r": "Palmetto Bay City Council"}, {"n": "Patrick Fiore", "r": "Palmetto Bay City Council"}, {"n": "Steve Cody", "r": "Palmetto Bay City Council"}]}, {"m": "Pinecrest", "p": [{"n": "Ariel Meyer", "r": "Pinecrest City Council"}, {"n": "Jerry Greenberg", "r": "Pinecrest City Council"}, {"n": "Joseph M. Corradino", "r": "Mayor of Pinecrest"}, {"n": "Ken Fairman", "r": "Pinecrest City Council"}]}, {"m": "South Miami", "p": [{"n": "Brian Corey", "r": "South Miami City Council"}, {"n": "Danny Rodriguez", "r": "South Miami City Council"}, {"n": "Javier E. Fernández", "r": "Mayor of South Miami"}, {"n": "Lisa Bonich", "r": "South Miami City Council"}, {"n": "Steve Calle", "r": "South Miami City Council"}]}, {"m": "Sunny Isles Beach", "p": [{"n": "Alex Lama", "r": "Sunny Isles Beach City Council"}, {"n": "Fabiola Stuyvesant", "r": "Sunny Isles Beach City Council"}, {"n": "Jeniffer Viscarra", "r": "Sunny Isles Beach City Council"}, {"n": "Jerry Joseph", "r": "Sunny Isles Beach City Council"}, {"n": "Larisa Svechin", "r": "Mayor of Sunny Isles Beach"}]}, {"m": "Surfside", "p": [{"n": "Andrea Travani", "r": "Surfside City Council"}, {"n": "David Weingot", "r": "Surfside City Council"}, {"n": "Dayana Benmergui", "r": "Surfside City Council"}, {"n": "Gerardo Vildostegui", "r": "Surfside City Council"}, {"n": "Shlomo Danzinger", "r": "Mayor of Surfside"}]}, {"m": "Sweetwater", "p": [{"n": "Idania Llanio", "r": "Sweetwater City Council"}, {"n": "Isidro Ruiz", "r": "Sweetwater City Council"}, {"n": "Jose P. Diaz", "r": "Mayor of Sweetwater"}, {"n": "Reinaldo Rey", "r": "Sweetwater City Council"}, {"n": "Saul Diaz", "r": "Sweetwater City Council"}]}, {"m": "Virginia Gardens", "p": [{"n": "Deborah Conover", "r": "Virginia Gardens City Council"}, {"n": "Elizabeth Taylor Martinez", "r": "Virginia Gardens City Council"}, {"n": "Fred Spencer Deno", "r": "Mayor of Virginia Gardens"}, {"n": "Gabriel Fernandez", "r": "Virginia Gardens City Council"}, {"n": "Jorge Arce", "r": "Virginia Gardens City Council"}, {"n": "Richard L. Block", "r": "Virginia Gardens City Council"}]}, {"m": "West Miami", "p": [{"n": "Eric Diaz-Padron", "r": "Mayor of West Miami"}, {"n": "Gustavo J. Ceballos", "r": "West Miami City Council"}, {"n": "Ivan Chavez", "r": "West Miami City Council"}, {"n": "Juan M. Blanes", "r": "West Miami City Council"}, {"n": "Victoria De La Torre Gans", "r": "West Miami City Council"}]}, {"m": "_Unresolved", "p": [{"n": "Danielle Cohen Higgins", "r": "Miami-Dade County City Council"}, {"n": "Juan Carlos Bermudez", "r": "Miami-Dade County City Council"}, {"n": "Keon Hardemon", "r": "Miami-Dade County City Council"}, {"n": "Kevin M. Cabrera", "r": "Miami-Dade County City Council"}, {"n": "Kionne L. McGhee", "r": "Miami-Dade County City Council"}, {"n": "Marleine Bastien", "r": "Miami-Dade County City Council"}, {"n": "Micky Steinberg", "r": "Miami-Dade County City Council"}, {"n": "Neil Cantor", "r": "Miami Shores Village City Council"}, {"n": "Raquel A. Regalado", "r": "Miami-Dade County City Council"}, {"n": "René Garcia", "r": "Miami-Dade County City Council"}, {"n": "Roberto J. Gonzalez", "r": "Miami-Dade County City Council"}, {"n": "Sandra Harris", "r": "Miami Shores Village City Council"}]}], "slug": "miami-dade"}, "12087": {"county": [{"n": "Craig Cates", "r": "Commissioner, Monroe County"}, {"n": "Darren M. Horan", "r": "Monroe County School Board"}, {"n": "David Rice", "r": "Commissioner, Monroe County"}, {"n": "Holly Raschein", "r": "Commissioner, Monroe County"}, {"n": "John R Dick", "r": "Monroe County School Board"}, {"n": "Joyce Griffin", "r": "Supervisor of Elections, Monroe County"}, {"n": "Kevin Madok", "r": "Clerk of Court, Monroe County"}, {"n": "Michelle Lincoln", "r": "Commissioner, Monroe County"}, {"n": "Rick Ramsay", "r": "Sheriff, Monroe County"}, {"n": "Sam Steele", "r": "Tax Collector, Monroe County"}, {"n": "Scott Russell", "r": "Property Appraiser, Monroe County"}, {"n": "Sherri Hodies", "r": "Supervisor of Elections, Monroe County"}, {"n": "Sue Woltanski", "r": "Monroe County School Board"}, {"n": "Yvette Mira-Talbott", "r": "Monroe County School Board"}], "districts": {"cd": [{"d": "FL-28", "rep": "Carlos A. Gimenez", "w": 0.282}], "sh": [{"d": "FL House District 120", "rep": "Jim Mooney", "w": 0.259}], "ss": [{"d": "FL Senate District 40", "rep": "Ana Maria Rodriguez", "w": 0.259}]}, "munis": [{"m": "Islamorada, Village of Islands", "p": [{"n": "Donald Horton", "r": "Mayor of Islamorada, Village of Islands"}, {"n": "Sharon Mahoney", "r": "Islamorada, Village of Islands City Council"}, {"n": "Steve Friedman", "r": "Islamorada, Village of Islands City Council"}]}, {"m": "Key Colony Beach", "p": [{"n": "Doug Colonell", "r": "Key Colony Beach City Council"}, {"n": "Freddie Foster", "r": "Mayor of Key Colony Beach"}, {"n": "Kirk Diehl", "r": "Key Colony Beach City Council"}, {"n": "Tom DiFransico", "r": "Key Colony Beach City Council"}, {"n": "Tom Harding", "r": "Key Colony Beach City Council"}]}, {"m": "Key West", "p": [{"n": "Aaron Castillo", "r": "Key West City Council"}, {"n": "Danise Henriquez", "r": "Mayor of Key West"}, {"n": "Donald Lee", "r": "Key West City Council"}, {"n": "Lissette Cuervo Carey", "r": "Key West City Council"}, {"n": "Mary Lou Hoover", "r": "Key West City Council"}, {"n": "Monica Haskell", "r": "Key West City Council"}, {"n": "Sam Kaufman", "r": "Key West City Council"}]}, {"m": "Layton", "p": [{"n": "Bruce Halle", "r": "Mayor of Layton"}, {"n": "Cynthia Lewis", "r": "Layton City Council"}, {"n": "Gregory Lewis", "r": "Layton City Council"}, {"n": "Jared Rodriguez", "r": "Layton City Council"}, {"n": "Megan Jones", "r": "Layton City Council"}, {"n": "Susan Grant", "r": "Layton City Council"}]}, {"m": "Marathon", "p": [{"n": "Debra Struyf", "r": "Marathon City Council"}, {"n": "Kenny Matlock", "r": "Marathon City Council"}, {"n": "Lynn Landry", "r": "Marathon City Council"}, {"n": "Lynny Del Gaizo", "r": "Mayor of Marathon"}, {"n": "Robyn Still", "r": "Marathon City Council"}]}], "slug": "monroe"}, "12089": {"county": [{"n": "A. Michael Hickox", "r": "Property Appraiser, Nassau County"}, {"n": "A.M. \"Hupp\" Huppmann", "r": "Commissioner, Nassau County"}, {"n": "Alyson McCullough", "r": "Commissioner, Nassau County"}, {"n": "Bill Leeper", "r": "Sheriff, Nassau County"}, {"n": "Curtis Gaus", "r": "Nassau County School Board"}, {"n": "Gail G. Cook", "r": "Nassau County School Board"}, {"n": "Janet Adkins", "r": "Supervisor of Elections, Nassau County"}, {"n": "Jeff Gray", "r": "Commissioner, Nassau County"}, {"n": "John Crawford", "r": "Clerk of Court, Nassau County"}, {"n": "John Drew", "r": "Tax Collector, Nassau County"}, {"n": "John Martin", "r": "Commissioner, Nassau County"}, {"n": "Kevin Lilly", "r": "Property Appraiser, Nassau County"}, {"n": "Klynt Farmer", "r": "Commissioner, Nassau County"}, {"n": "Kristi Loyd Simpkins", "r": "Nassau County School Board"}, {"n": "Lissa Braddock", "r": "Nassau County School Board"}, {"n": "Mitchell Keiter", "r": "Clerk of Court, Nassau County"}, {"n": "Shannon Hogue", "r": "Nassau County School Board"}, {"n": "Vicki Cannon", "r": "Supervisor of Elections, Nassau County"}], "districts": {"cd": [{"d": "FL-04", "rep": "Aaron Bean", "w": 0.918}], "sh": [{"d": "FL House District 15", "rep": "Dean Black", "w": 0.921}], "ss": [{"d": "FL Senate District 4", "rep": "Clay Yarborough", "w": 0.921}]}, "munis": [{"m": "Callahan", "p": [{"n": "Ashton Bishop-Vargas", "r": "Callahan City Council"}, {"n": "Jacquelyn Fleming", "r": "Callahan City Council"}, {"n": "Janet Shaw", "r": "Callahan City Council"}, {"n": "Matthew Davis", "r": "Callahan City Council"}, {"n": "Randy Knagge", "r": "Mayor of Callahan"}, {"n": "Wendi Williams", "r": "Callahan City Council"}]}, {"m": "Fernandina Beach", "p": [{"n": "Darron Ayscue", "r": "Fernandina Beach City Council"}, {"n": "Genece Minshew", "r": "Fernandina Beach City Council"}, {"n": "James Antun", "r": "Mayor of Fernandina Beach"}, {"n": "Joyce Tuten", "r": "Fernandina Beach City Council"}, {"n": "Tim Poynter", "r": "Fernandina Beach City Council"}]}, {"m": "Hilliard", "p": [{"n": "Jared Wollitz", "r": "Hilliard City Council"}, {"n": "Joe Michaels", "r": "Hilliard City Council"}, {"n": "John P. Beasley", "r": "Mayor of Hilliard"}, {"n": "Kenneth A. Sims", "r": "Hilliard City Council"}, {"n": "Lee Pickett", "r": "Hilliard City Council"}, {"n": "Richard Dallis Hunter", "r": "Hilliard City Council"}]}], "slug": "nassau"}, "12091": {"county": [{"n": "Benjamin Anderson", "r": "Tax Collector, Okaloosa County"}, {"n": "Brad Embry", "r": "Clerk of Court, Okaloosa County"}, {"n": "Carolyn Ketchel", "r": "Commissioner, Okaloosa County"}, {"n": "Dewey Parker Destin", "r": "Okaloosa County School Board"}, {"n": "Diane Kelley", "r": "Okaloosa County School Board"}, {"n": "Eric Aden", "r": "Sheriff, Okaloosa County"}, {"n": "J.D. Peacock", "r": "Clerk of Court, Okaloosa County"}, {"n": "Lamar White", "r": "Okaloosa County School Board"}, {"n": "Linda Evanchyk", "r": "Okaloosa County School Board"}, {"n": "Mack Busbee", "r": "Property Appraiser, Okaloosa County"}, {"n": "Mel Ponder", "r": "Commissioner, Okaloosa County"}, {"n": "Nathaniel Boyles", "r": "Commissioner, Okaloosa County"}, {"n": "Paul Lux", "r": "Supervisor of Elections, Okaloosa County"}, {"n": "Paul Mixon", "r": "Commissioner, Okaloosa County"}, {"n": "Timothy Bryant", "r": "Okaloosa County School Board"}, {"n": "Trey Goodwin", "r": "Commissioner, Okaloosa County"}], "districts": {"cd": [{"d": "FL-01", "rep": "Jimmy Patronis", "w": 0.8}], "sh": [{"d": "FL House District 4", "rep": "Patt Maney", "w": 0.458}, {"d": "FL House District 3", "rep": "Nathan Boyles", "w": 0.341}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 0.522}, {"d": "FL Senate District 1", "rep": "Don Gaetz", "w": 0.277}]}, "munis": [{"m": "Cinco Bayou", "p": [{"n": "Chris Washack", "r": "Cinco Bayou City Council"}, {"n": "Danny Dillard", "r": "Cinco Bayou City Council"}, {"n": "Jean M. Hood", "r": "Mayor of Cinco Bayou"}, {"n": "Laura Driver", "r": "Cinco Bayou City Council"}, {"n": "Mary Ann Hawkins", "r": "Cinco Bayou City Council"}]}, {"m": "Crestview", "p": [{"n": "Brandon Frost", "r": "Crestview City Council"}, {"n": "Douglas Capps", "r": "Crestview City Council"}, {"n": "Dusty B. Allison", "r": "Crestview City Council"}, {"n": "J. B. Whitten", "r": "Mayor of Crestview"}, {"n": "Shannon D. Hayes", "r": "Crestview City Council"}, {"n": "Sylvester L. Echols", "r": "Crestview City Council"}]}, {"m": "Destin", "p": [{"n": "Bobby Wagner", "r": "Mayor of Destin"}, {"n": "Dewey Destin", "r": "Destin City Council"}, {"n": "Jim Bagby", "r": "Destin City Council"}, {"n": "Kevin Schmidt", "r": "Destin City Council"}, {"n": "Rodney J. Braden", "r": "Destin City Council"}, {"n": "Sandra K. Trammell", "r": "Destin City Council"}, {"n": "Terésa Hebert", "r": "Destin City Council"}, {"n": "Torey Geile", "r": "Destin City Council"}]}, {"m": "Fort Walton Beach", "p": [{"n": "Ben Merrell", "r": "Fort Walton Beach City Council"}, {"n": "Bryce Jeter", "r": "Fort Walton Beach City Council"}, {"n": "David Schmidt", "r": "Fort Walton Beach City Council"}, {"n": "Logan Browning", "r": "Fort Walton Beach City Council"}, {"n": "Nic Allegretto", "r": "Mayor of Fort Walton Beach"}, {"n": "Payne Walker", "r": "Fort Walton Beach City Council"}]}, {"m": "Laurel Hill", "p": [{"n": "Amanda Rosen", "r": "Laurel Hill City Council"}, {"n": "Debra Adams", "r": "Laurel Hill City Council"}, {"n": "Jacob Locke", "r": "Laurel Hill City Council"}, {"n": "Kristine Gaskin", "r": "Laurel Hill City Council"}, {"n": "Robby Adams", "r": "Mayor of Laurel Hill"}, {"n": "Shawn Cogan", "r": "Laurel Hill City Council"}]}, {"m": "Mary Esther", "p": [{"n": "April Sutton", "r": "Mary Esther City Council"}, {"n": "Bernard W. Oder", "r": "Mary Esther City Council"}, {"n": "Chris Stein", "r": "Mayor of Mary Esther"}, {"n": "Larry J. Carter", "r": "Mary Esther City Council"}, {"n": "Richard Lawson", "r": "Mary Esther City Council"}, {"n": "Susan Coxwell", "r": "Mary Esther City Council"}]}, {"m": "Niceville", "p": [{"n": "Cathy Alley", "r": "Niceville City Council"}, {"n": "Daniel L. Henkel", "r": "Mayor of Niceville"}, {"n": "Doug Tolbert", "r": "Niceville City Council"}, {"n": "Douglas Stauffer", "r": "Niceville City Council"}, {"n": "Heath Rominger", "r": "Niceville City Council"}, {"n": "William G. Schaetzle", "r": "Niceville City Council"}]}, {"m": "Shalimar", "p": [{"n": "Brad Gable", "r": "Shalimar City Council"}, {"n": "Brian Taylor", "r": "Shalimar City Council"}, {"n": "Jerry McCallister", "r": "Shalimar City Council"}, {"n": "Mark Franks", "r": "Mayor of Shalimar"}, {"n": "Ricardo Garcia", "r": "Shalimar City Council"}]}, {"m": "Valparaiso", "p": [{"n": "Bryan L. Griffin", "r": "Valparaiso City Council"}, {"n": "Clark T. Browning", "r": "Valparaiso City Council"}, {"n": "Hubert B. Smith", "r": "Mayor of Valparaiso"}, {"n": "Kay Hamilton", "r": "Valparaiso City Council"}]}], "slug": "okaloosa"}, "12093": {"county": [{"n": "Amanda Riedel", "r": "Okeechobee County School Board"}, {"n": "Bradley Goodbread", "r": "Commissioner, Okeechobee County"}, {"n": "Celeste Watford", "r": "Tax Collector, Okeechobee County"}, {"n": "Christine Brennan Bishop", "r": "Okeechobee County School Board"}, {"n": "David Hazellief", "r": "Commissioner, Okeechobee County"}, {"n": "David May", "r": "Supervisor of Elections, Okeechobee County"}, {"n": "Frank DeCarlo", "r": "Commissioner, Okeechobee County"}, {"n": "Jerald Bryant", "r": "Clerk of Court, Okeechobee County"}, {"n": "Jill Clericuzio Holcomb", "r": "Okeechobee County School Board"}, {"n": "Kelly Owens", "r": "Commissioner, Okeechobee County"}, {"n": "Melisa Jahner", "r": "Okeechobee County School Board"}, {"n": "Melissa Arnold", "r": "Supervisor of Elections, Okeechobee County"}, {"n": "Michael Bandi", "r": "Property Appraiser, Okeechobee County"}, {"n": "Michael Sumner", "r": "Commissioner, Okeechobee County"}, {"n": "Noel Stephen", "r": "Sheriff, Okeechobee County"}, {"n": "Sharon Robertson", "r": "Clerk of Court, Okeechobee County"}, {"n": "Terry Burroughs", "r": "Commissioner, Okeechobee County"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 0.999}], "sh": [{"d": "FL House District 83", "rep": "Kaylee Tuck", "w": 0.999}], "ss": [{"d": "FL Senate District 29", "rep": "Erin Grall", "w": 0.999}]}, "munis": [{"m": "Okeechobee", "p": [{"n": "David McAuley", "r": "Okeechobee City Council"}, {"n": "Dowling R. Watford", "r": "Mayor of Okeechobee"}, {"n": "Noel Chandler", "r": "Okeechobee City Council"}, {"n": "Robert Jarriel", "r": "Okeechobee City Council"}]}], "slug": "okeechobee"}, "12095": {"county": [{"n": "Alicia Farrant", "r": "Orange County School Board"}, {"n": "Amy Mercado", "r": "Property Appraiser, Orange County"}, {"n": "Angie Gallo", "r": "Orange County School Board"}, {"n": "Anne Douglas", "r": "Orange County School Board"}, {"n": "Christine Moore", "r": "Commissioner, Orange County"}, {"n": "Emily Bonilla", "r": "Commissioner, Orange County"}, {"n": "Glen Gilzean", "r": "Supervisor of Elections, Orange County"}, {"n": "John Mina", "r": "Sheriff, Orange County"}, {"n": "Karen Dentel", "r": "Supervisor of Elections, Orange County"}, {"n": "Maria Salamanca", "r": "Orange County School Board"}, {"n": "Maribel Gomez Cordero", "r": "Commissioner, Orange County"}, {"n": "Mayra Uribe", "r": "Commissioner, Orange County"}, {"n": "Melissa Mitchell Byrd", "r": "Orange County School Board"}, {"n": "Michael Scott", "r": "Commissioner, Orange County"}, {"n": "Nicole Wilson", "r": "Commissioner, Orange County"}, {"n": "Rick Singh", "r": "Property Appraiser, Orange County"}, {"n": "Scott Randolph", "r": "Tax Collector, Orange County"}, {"n": "Stephanie Vanos", "r": "Orange County School Board"}, {"n": "Teresa Jacobs", "r": "Orange County School Board"}, {"n": "Tiffany Moore Russell", "r": "Clerk of Court, Orange County"}, {"n": "Vicki-Elaine Felder", "r": "Orange County School Board"}, {"n": "Victoria Siplin", "r": "Commissioner, Orange County"}], "districts": {"cd": [{"d": "FL-11", "rep": "Daniel Webster", "w": 0.328}, {"d": "FL-09", "rep": "Darren Soto", "w": 0.276}, {"d": "FL-10", "rep": "Maxwell Frost", "w": 0.272}, {"d": "FL-08", "rep": "Mike Haridopolos", "w": 0.124}], "sh": [{"d": "FL House District 35", "rep": "Erika Booth", "w": 0.335}, {"d": "FL House District 39", "rep": "Doug Bankson", "w": 0.176}, {"d": "FL House District 45", "rep": "Leonard Spencer", "w": 0.129}, {"d": "FL House District 44", "rep": "Rita Harris", "w": 0.107}, {"d": "FL House District 43", "rep": "Johanna López", "w": 0.068}, {"d": "FL House District 42", "rep": "Anna Eskamani", "w": 0.056}, {"d": "FL House District 40", "rep": "RaShon Young", "w": 0.051}, {"d": "FL House District 41", "rep": "Bruce Antone", "w": 0.04}, {"d": "FL House District 37", "rep": "Susan Plasencia", "w": 0.032}, {"d": "FL House District 47", "rep": "Paula Stark", "w": 0.007}], "ss": [{"d": "FL Senate District 17", "rep": "Carlos Smith", "w": 0.487}, {"d": "FL Senate District 15", "rep": "LaVon Bracy Davis", "w": 0.287}, {"d": "FL Senate District 13", "rep": "Keith Truenow", "w": 0.133}, {"d": "FL Senate District 25", "rep": "Kristen Arrington", "w": 0.071}, {"d": "FL Senate District 10", "rep": "Jason Brodeur", "w": 0.021}]}, "munis": [{"m": "Apopka", "p": [{"n": "Nadia Anderson", "r": "Apopka City Council"}, {"n": "Nick Nesta", "r": "Mayor of Apopka"}, {"n": "Sam Ruth", "r": "Apopka City Council"}, {"n": "Yesenia Leon Baron", "r": "Apopka City Council"}]}, {"m": "Bay Lake", "p": [{"n": "Bryan Swartz", "r": "Bay Lake City Council"}, {"n": "Sue McCall", "r": "Bay Lake City Council"}, {"n": "Tanya Peak-Smith", "r": "Bay Lake City Council"}, {"n": "Tim Burns", "r": "Bay Lake City Council"}, {"n": "Todd Watzel", "r": "Mayor of Bay Lake"}]}, {"m": "Belle Isle", "p": [{"n": "Beth Lowell", "r": "Belle Isle City Council"}, {"n": "Bobby Lance", "r": "Belle Isle City Council"}, {"n": "Ed Gold", "r": "Belle Isle City Council"}, {"n": "Holly Bobrowski", "r": "Belle Isle City Council"}, {"n": "Jason Carson", "r": "Mayor of Belle Isle"}, {"n": "Jim Partin", "r": "Belle Isle City Council"}, {"n": "Karl Shuck", "r": "Belle Isle City Council"}]}, {"m": "Eatonville", "p": [{"n": "Angela Y. Thomas", "r": "Eatonville City Council"}, {"n": "LaDwyana Jordan", "r": "Eatonville City Council"}, {"n": "Ruth Critton", "r": "Mayor of Eatonville"}, {"n": "Theo E. Washington", "r": "Eatonville City Council"}, {"n": "Wanda Randolph", "r": "Eatonville City Council"}]}, {"m": "Edgewood", "p": [{"n": "Beth Steele", "r": "Edgewood City Council"}, {"n": "Casey McElroy", "r": "Edgewood City Council"}, {"n": "Chris Rader", "r": "Edgewood City Council"}, {"n": "John Dowless", "r": "Mayor of Edgewood"}, {"n": "Richard Horn", "r": "Edgewood City Council"}, {"n": "Susan Lomas", "r": "Edgewood City Council"}]}, {"m": "Lake Buena Vista", "p": [{"n": "Andrea Fay", "r": "Lake Buena Vista City Council"}, {"n": "Angie Sola", "r": "Lake Buena Vista City Council"}, {"n": "Renee Raper", "r": "Mayor of Lake Buena Vista"}, {"n": "Tom McCoy", "r": "Lake Buena Vista City Council"}]}, {"m": "Maitland", "p": [{"n": "Bill Randolph", "r": "Maitland City Council"}, {"n": "John P. Lowndes", "r": "Mayor of Maitland"}, {"n": "Keith Givens", "r": "Maitland City Council"}, {"n": "Scot A. French", "r": "Maitland City Council"}, {"n": "Stephen B. Schoene", "r": "Maitland City Council"}]}, {"m": "Oakland", "p": [{"n": "Joseph McMullen", "r": "Oakland City Council"}, {"n": "Kris Keller", "r": "Oakland City Council"}, {"n": "Michael Satterfield", "r": "Oakland City Council"}, {"n": "Shane Taylor", "r": "Mayor of Oakland"}, {"n": "Yumeko Motley", "r": "Oakland City Council"}]}, {"m": "Ocoee", "p": [{"n": "George Oliver", "r": "Ocoee City Council"}, {"n": "Richard Firstner", "r": "Ocoee City Council"}, {"n": "Rosemary Wilsen", "r": "Ocoee City Council"}, {"n": "Rusty Johnson", "r": "Mayor of Ocoee"}, {"n": "Scott Kennedy", "r": "Ocoee City Council"}]}, {"m": "Orlando", "p": [{"n": "Antonio L. Ortiz", "r": "Orlando City Council"}, {"n": "Antonio Ortiz", "r": "Orlando City Council - District 2"}, {"n": "Bakari F. Burns", "r": "Orlando City Council"}, {"n": "Bakari F. Burns", "r": "Orlando City Council - District 6"}, {"n": "Buddy Dyer", "r": "Mayor of Orlando"}, {"n": "Patty Sheehan", "r": "Orlando City Council"}, {"n": "Patty Sheehan", "r": "Orlando City Council - District 4"}, {"n": "Roger Chapin", "r": "Orlando City Council"}, {"n": "Roger Chapin", "r": "Orlando City Council - District 3"}, {"n": "Shan Rose", "r": "Orlando City Council"}, {"n": "Shan Rose", "r": "Orlando City Council - District 5"}, {"n": "Tom Keen", "r": "Orlando City Council"}, {"n": "Tom Keen", "r": "Orlando City Council - District 1"}]}, {"m": "Windermere", "p": [{"n": "Brandi Haines", "r": "Windermere City Council"}, {"n": "CT Allen", "r": "Windermere City Council"}, {"n": "Jim O'Brien", "r": "Mayor of Windermere"}, {"n": "Mandy David", "r": "Windermere City Council"}, {"n": "Tom Stroup", "r": "Windermere City Council"}, {"n": "Tony Davit", "r": "Windermere City Council"}]}, {"m": "Winter Garden", "p": [{"n": "Chloe Johnson", "r": "Winter Garden City Council"}, {"n": "Colin Sharman", "r": "Winter Garden City Council"}, {"n": "Iliana R. Jones", "r": "Winter Garden City Council"}, {"n": "John Rees", "r": "Mayor of Winter Garden"}, {"n": "Lisa L. Bennett", "r": "Winter Garden City Council"}]}, {"m": "Winter Park", "p": [{"n": "Craig Russell", "r": "Winter Park City Council"}, {"n": "Elizabeth Ingram", "r": "Winter Park City Council"}, {"n": "Kristopher Cruzada", "r": "Winter Park City Council"}, {"n": "Sheila DeCiccio", "r": "Mayor of Winter Park"}, {"n": "Warren Lindsey", "r": "Winter Park City Council"}]}], "slug": "orange"}, "12097": {"county": [{"n": "Anthony Cook", "r": "Osceola County School Board"}, {"n": "Armando Ramirez", "r": "Clerk of Court, Osceola County"}, {"n": "Brandon Arrington", "r": "Commissioner, Osceola County"}, {"n": "Bruce Vickers", "r": "Tax Collector, Osceola County"}, {"n": "Cheryl Grieb", "r": "Commissioner, Osceola County"}, {"n": "Erika Booth", "r": "Osceola County School Board"}, {"n": "Heather Kahoun", "r": "Osceola County School Board"}, {"n": "Katrina Scarborough", "r": "Property Appraiser, Osceola County"}, {"n": "Kelvin Soto", "r": "Clerk of Court, Osceola County"}, {"n": "Marcos Lopez", "r": "Sheriff, Osceola County"}, {"n": "Mary Jane Arrington", "r": "Supervisor of Elections, Osceola County"}, {"n": "Paula Bronson", "r": "Osceola County School Board"}, {"n": "Peggy Choudhry", "r": "Commissioner, Osceola County"}, {"n": "Ricky Booth", "r": "Commissioner, Osceola County"}, {"n": "Russell Gibson", "r": "Sheriff, Osceola County"}, {"n": "Teresa \"Terry\" Castillo", "r": "Osceola County School Board"}, {"n": "Viviana Janer", "r": "Commissioner, Osceola County"}], "districts": {"cd": [{"d": "FL-09", "rep": "Darren Soto", "w": 0.998}], "sh": [{"d": "FL House District 35", "rep": "Erika Booth", "w": 0.808}, {"d": "FL House District 46", "rep": "Jose Alvarez", "w": 0.1}, {"d": "FL House District 47", "rep": "Paula Stark", "w": 0.06}, {"d": "FL House District 45", "rep": "Leonard Spencer", "w": 0.032}], "ss": [{"d": "FL Senate District 25", "rep": "Kristen Arrington", "w": 1.0}]}, "munis": [{"m": "Kissimmee", "p": [{"n": "Carlos Alvarez", "r": "Kissimmee City Council"}, {"n": "Jackie Espinosa", "r": "Mayor of Kissimmee"}, {"n": "Janette Martinez", "r": "Kissimmee City Council"}, {"n": "Noel Ortiz", "r": "Kissimmee City Council"}]}, {"m": "St. Cloud", "p": [{"n": "Chris Robertson", "r": "Mayor of St. Cloud"}, {"n": "Jennifer Paul", "r": "St. Cloud City Council"}, {"n": "Ken Gilbert", "r": "St. Cloud City Council"}, {"n": "Kolby Urban", "r": "St. Cloud City Council"}, {"n": "Shawn Fletcher", "r": "St. Cloud City Council"}]}], "slug": "osceola"}, "12099": {"county": [{"n": "Anne Gannon", "r": "Tax Collector, Palm Beach County"}, {"n": "Bobby Powell", "r": "Commissioner, Palm Beach County"}, {"n": "David Kerner", "r": "Commissioner, Palm Beach County"}, {"n": "Dorothy Jacks", "r": "Property Appraiser, Palm Beach County"}, {"n": "Edwin Ferguson", "r": "Palm Beach County School Board"}, {"n": "Erica Whitfield", "r": "Palm Beach County School Board"}, {"n": "Gloria Branch", "r": "Palm Beach County School Board"}, {"n": "Gregg Weiss", "r": "Commissioner, Palm Beach County"}, {"n": "Joel Flores", "r": "Commissioner, Palm Beach County"}, {"n": "Joseph Abruzzo", "r": "Clerk of Court, Palm Beach County"}, {"n": "Karen Brill", "r": "Palm Beach County School Board"}, {"n": "Mack Bernard", "r": "Commissioner, Palm Beach County"}, {"n": "Marcia Andrews", "r": "Palm Beach County School Board"}, {"n": "Marcia Woodward", "r": "Commissioner, Palm Beach County"}, {"n": "Maria Sachs", "r": "Commissioner, Palm Beach County"}, {"n": "Matthew Jay Lane", "r": "Palm Beach County School Board"}, {"n": "Michael Barnett", "r": "Commissioner, Palm Beach County"}, {"n": "Ric Bradshaw", "r": "Sheriff, Palm Beach County"}, {"n": "Sara Baxter", "r": "Commissioner, Palm Beach County"}, {"n": "Sharon Bock", "r": "Clerk of Court, Palm Beach County"}, {"n": "Virginia Savietto", "r": "Palm Beach County School Board"}, {"n": "Wendy Sartory Link", "r": "Supervisor of Elections, Palm Beach County"}, {"n": "Wendy Sartory-Link", "r": "Supervisor of Elections, Palm Beach County"}], "districts": {"cd": [{"d": "FL-20", "rep": "Vacant", "w": 0.632}, {"d": "FL-21", "rep": "Brian J. Mast", "w": 0.168}, {"d": "FL-22", "rep": "Lois Frankel", "w": 0.11}, {"d": "FL-23", "rep": "Jared Moskowitz", "w": 0.024}], "sh": [{"d": "FL House District 94", "rep": "Meg Weinberger", "w": 0.754}, {"d": "FL House District 93", "rep": "Anne Gerwig", "w": 0.04}, {"d": "FL House District 92", "rep": "Kelly Skidmore", "w": 0.032}, {"d": "FL House District 87", "rep": "Emily Gregory", "w": 0.027}, {"d": "FL House District 91", "rep": "Peggy Gossett-Seidman", "w": 0.021}, {"d": "FL House District 88", "rep": "Tae Edmonds", "w": 0.019}, {"d": "FL House District 90", "rep": "Rob Long", "w": 0.018}, {"d": "FL House District 89", "rep": "Debra Tendrich", "w": 0.013}, {"d": "FL House District 86", "rep": "John Snyder", "w": 0.01}], "ss": [{"d": "FL Senate District 26", "rep": "Lori Berman", "w": 0.531}, {"d": "FL Senate District 31", "rep": "Gayle Harrell", "w": 0.335}, {"d": "FL Senate District 24", "rep": "Mack Bernard", "w": 0.055}, {"d": "FL Senate District 30", "rep": "Tina Polsky", "w": 0.013}]}, "munis": [{"m": "Atlantis", "p": [{"n": "Allan Kaulbach", "r": "Atlantis City Council"}, {"n": "Derek Cooper", "r": "Atlantis City Council"}, {"n": "Keller Lanahan", "r": "Mayor of Atlantis"}, {"n": "Michael LaCoursiere", "r": "Atlantis City Council"}]}, {"m": "Belle Glade", "p": [{"n": "Joaquin Almazan", "r": "Belle Glade City Council"}, {"n": "Robert L. Rease", "r": "Belle Glade City Council"}, {"n": "Sorilinda Santiago", "r": "Belle Glade City Council"}, {"n": "Steve B. Wilson", "r": "Mayor of Belle Glade"}, {"n": "Tequella Collins", "r": "Belle Glade City Council"}]}, {"m": "Boca Raton", "p": [{"n": "Jon Pearlman", "r": "Boca Raton City Council"}, {"n": "Marc Wigder", "r": "Boca Raton City Council"}, {"n": "Michelle Grau", "r": "Boca Raton City Council"}, {"n": "Scott Singer", "r": "Mayor of Boca Raton"}, {"n": "Yvette Drucker", "r": "Boca Raton City Council"}]}, {"m": "Boynton Beach", "p": [{"n": "Aimee Kelley", "r": "Boynton Beach City Council"}, {"n": "Angela Cruz", "r": "Boynton Beach City Council"}, {"n": "Mack McCray", "r": "Boynton Beach City Council"}, {"n": "Rebecca Shelton", "r": "Mayor of Boynton Beach"}, {"n": "Woodrow L. Hay", "r": "Boynton Beach City Council"}]}, {"m": "Briny Breezes", "p": [{"n": "Bill Birch", "r": "Mayor of Briny Breezes"}, {"n": "David White", "r": "Briny Breezes City Council"}, {"n": "Holly Reitnauer", "r": "Briny Breezes City Council"}, {"n": "Jeff Duncan", "r": "Briny Breezes City Council"}, {"n": "Liz Loper", "r": "Briny Breezes City Council"}]}, {"m": "Cloud Lake", "p": [{"n": "Alexandra Powell Sardinas", "r": "Cloud Lake City Council"}, {"n": "John Tyson", "r": "Cloud Lake City Council"}, {"n": "Kathleen Hoock", "r": "Cloud Lake City Council"}, {"n": "Marion Chateau-Flagg", "r": "Cloud Lake City Council"}, {"n": "Russell E. Nidy", "r": "Mayor of Cloud Lake"}]}, {"m": "Delray Beach", "p": [{"n": "Angela Burns", "r": "Delray Beach City Council"}, {"n": "Judy Mollica", "r": "Delray Beach City Council"}, {"n": "Juli Casale", "r": "Delray Beach City Council"}, {"n": "Thomas Markert", "r": "Delray Beach City Council"}, {"n": "Tom Carney", "r": "Mayor of Delray Beach"}]}, {"m": "Glen Ridge", "p": [{"n": "Alice McLane", "r": "Mayor of Glen Ridge"}, {"n": "Eusebio Morales", "r": "Glen Ridge City Council"}, {"n": "Leila Rothe", "r": "Glen Ridge City Council"}, {"n": "Taylor Jantz", "r": "Glen Ridge City Council"}, {"n": "Thomas Lisi", "r": "Glen Ridge City Council"}]}, {"m": "Golf", "p": [{"n": "Angela Holiday", "r": "Golf City Council"}, {"n": "Betsy Hvide", "r": "Golf City Council"}, {"n": "J. Marshall Duane", "r": "Golf City Council"}, {"n": "Peter Hamilton", "r": "Mayor of Golf"}, {"n": "Susannah Rothenberg", "r": "Golf City Council"}]}, {"m": "Greenacres", "p": [{"n": "Charles E. Shaw", "r": "Mayor of Greenacres"}, {"n": "Elisa Leheny", "r": "Greenacres City Council"}, {"n": "John Tharp", "r": "Greenacres City Council"}, {"n": "Judith Dugo", "r": "Greenacres City Council"}, {"n": "Peter A. Noble", "r": "Greenacres City Council"}, {"n": "Susy Diaz", "r": "Greenacres City Council"}]}, {"m": "Gulf Stream", "p": [{"n": "Joan K. Orthwein", "r": "Gulf Stream City Council"}, {"n": "Michael Greene", "r": "Gulf Stream City Council"}, {"n": "Robert Canfield", "r": "Gulf Stream City Council"}, {"n": "Scott W. Morgan", "r": "Mayor of Gulf Stream"}, {"n": "Thomas Stanley", "r": "Gulf Stream City Council"}]}, {"m": "Haverhill", "p": [{"n": "Dennis Withington", "r": "Haverhill City Council"}, {"n": "Jay G. Foy", "r": "Mayor of Haverhill"}, {"n": "Lawrence Gordon", "r": "Haverhill City Council"}, {"n": "Mark C. Uptegraph", "r": "Haverhill City Council"}, {"n": "Teresa Johnson", "r": "Haverhill City Council"}]}, {"m": "Highland Beach", "p": [{"n": "David Stern", "r": "Highland Beach City Council"}, {"n": "Donald Peters", "r": "Highland Beach City Council"}, {"n": "Jason Chudnofsky", "r": "Highland Beach City Council"}, {"n": "Judith M. Goldberg", "r": "Highland Beach City Council"}, {"n": "Natasha Moore", "r": "Mayor of Highland Beach"}]}, {"m": "Hypoluxo", "p": [{"n": "Bradley Doyle", "r": "Hypoluxo City Council"}, {"n": "Christine Nagy", "r": "Hypoluxo City Council"}, {"n": "Linda Allen", "r": "Hypoluxo City Council"}, {"n": "Michael C. Brown", "r": "Mayor of Hypoluxo"}, {"n": "Richard J. Roney", "r": "Hypoluxo City Council"}, {"n": "Robert Leupp", "r": "Hypoluxo City Council"}]}, {"m": "Juno Beach", "p": [{"n": "DD Halpern", "r": "Juno Beach City Council"}, {"n": "Dave Santilli", "r": "Mayor of Juno Beach"}, {"n": "Diana Davis", "r": "Juno Beach City Council"}, {"n": "Jacob Rosengarten", "r": "Juno Beach City Council"}, {"n": "Max Fraser", "r": "Juno Beach City Council"}]}, {"m": "Jupiter", "p": [{"n": "Dan Guisinger", "r": "Jupiter City Council"}, {"n": "Jim Kuretski", "r": "Mayor of Jupiter"}, {"n": "Malise Sundstrom", "r": "Jupiter City Council"}, {"n": "Phyllis Choy", "r": "Jupiter City Council"}, {"n": "Ron Delaney", "r": "Jupiter City Council"}]}, {"m": "Jupiter Inlet Colony", "p": [{"n": "Anna Nemes", "r": "Jupiter Inlet Colony City Council"}, {"n": "Bill Muir", "r": "Mayor of Jupiter Inlet Colony"}, {"n": "David Shula", "r": "Jupiter Inlet Colony City Council"}, {"n": "Janet Saura", "r": "Jupiter Inlet Colony City Council"}, {"n": "Mark Ciarfella", "r": "Jupiter Inlet Colony City Council"}]}, {"m": "Lake Clarke Shores", "p": [{"n": "Bridget Keating", "r": "Lake Clarke Shores City Council"}, {"n": "Christy Maasbach", "r": "Mayor of Lake Clarke Shores"}, {"n": "Gregory Freebold", "r": "Lake Clarke Shores City Council"}, {"n": "Taylor Materio", "r": "Lake Clarke Shores City Council"}]}, {"m": "Lake Park", "p": [{"n": "John L. Linden", "r": "Lake Park City Council"}, {"n": "Judith Thomas", "r": "Lake Park City Council"}, {"n": "Michael Hensley", "r": "Lake Park City Council"}, {"n": "Michael O'Rourke", "r": "Lake Park City Council"}, {"n": "Roger Michaud", "r": "Mayor of Lake Park"}]}, {"m": "Lake Worth Beach", "p": [{"n": "Anthony Segrich", "r": "Lake Worth Beach City Council"}, {"n": "Betty Resch", "r": "Mayor of Lake Worth Beach"}, {"n": "Christopher McVoy", "r": "Lake Worth Beach City Council"}, {"n": "Mimi May", "r": "Lake Worth Beach City Council"}, {"n": "Sarah Malega", "r": "Lake Worth Beach City Council"}]}, {"m": "Lantana", "p": [{"n": "Chris Castle", "r": "Lantana City Council"}, {"n": "Jesse Rivero", "r": "Lantana City Council"}, {"n": "Karen Lythgoe", "r": "Mayor of Lantana"}, {"n": "Kem Mason", "r": "Lantana City Council"}, {"n": "Mark Zeitler", "r": "Lantana City Council"}]}, {"m": "Manalapan", "p": [{"n": "Cindy McMackin", "r": "Manalapan City Council"}, {"n": "David Knobel", "r": "Manalapan City Council"}, {"n": "Dwight Kulwin", "r": "Manalapan City Council"}, {"n": "Elliot Bonner", "r": "Manalapan City Council"}, {"n": "John Deese", "r": "Mayor of Manalapan"}, {"n": "Orla Imbesi", "r": "Manalapan City Council"}, {"n": "Simone Bonutti", "r": "Manalapan City Council"}]}, {"m": "Mangonia Park", "p": [{"n": "Clarence R. McConnell", "r": "Mangonia Park City Council"}, {"n": "Kelisha Buchanan-Webb", "r": "Mangonia Park City Council"}, {"n": "Lisa Davis-Quince", "r": "Mangonia Park City Council"}, {"n": "Sarita C. Johnson", "r": "Mangonia Park City Council"}, {"n": "William H. Albury", "r": "Mayor of Mangonia Park"}]}, {"m": "North Palm Beach", "p": [{"n": "Deborah Searcy", "r": "North Palm Beach City Council"}, {"n": "Kendra Zellner", "r": "North Palm Beach City Council"}, {"n": "Lisa Interlandi", "r": "Mayor of North Palm Beach"}, {"n": "Orlando Puyol", "r": "North Palm Beach City Council"}, {"n": "Susan Bickel", "r": "North Palm Beach City Council"}]}, {"m": "Ocean Ridge", "p": [{"n": "Ainar Aijala", "r": "Ocean Ridge City Council"}, {"n": "Carolyn Cassidy", "r": "Ocean Ridge City Council"}, {"n": "Geoffrey A. Pugh", "r": "Mayor of Ocean Ridge"}, {"n": "Steve Coz", "r": "Ocean Ridge City Council"}]}, {"m": "Pahokee", "p": [{"n": "Everett D. McPherson", "r": "Pahokee City Council"}, {"n": "Isabelle J. McDonald", "r": "Pahokee City Council"}, {"n": "James H. Scott", "r": "Pahokee City Council"}, {"n": "Keith W. Babb", "r": "Mayor of Pahokee"}, {"n": "Sanquetta Cowan-Williams", "r": "Pahokee City Council"}]}, {"m": "Palm Beach", "p": [{"n": "Bridget Moran", "r": "Palm Beach City Council"}, {"n": "Danielle H. Moore", "r": "Mayor of Palm Beach"}, {"n": "Edward Cooney", "r": "Palm Beach City Council"}, {"n": "Julie Araskog", "r": "Palm Beach City Council"}, {"n": "Lewis S.W. Crampton", "r": "Palm Beach City Council"}, {"n": "Nicki McDonald", "r": "Palm Beach City Council"}]}, {"m": "Palm Beach Gardens", "p": [{"n": "Dana P. Middleton", "r": "Mayor of Palm Beach Gardens"}, {"n": "John D. Kemp", "r": "Palm Beach Gardens City Council"}, {"n": "Marcie Tinsley", "r": "Palm Beach Gardens City Council"}, {"n": "Rachelle A. Litt", "r": "Palm Beach Gardens City Council"}, {"n": "Robert G. Premuroso", "r": "Palm Beach Gardens City Council"}]}, {"m": "Palm Beach Shores", "p": [{"n": "Anastasia Karloutsos", "r": "Palm Beach Shores City Council"}, {"n": "Roby DeReuil", "r": "Palm Beach Shores City Council"}, {"n": "Steven Smith", "r": "Palm Beach Shores City Council"}, {"n": "Tony Lembo", "r": "Palm Beach Shores City Council"}, {"n": "Tracy Larcher", "r": "Mayor of Palm Beach Shores"}]}, {"m": "Palm Springs", "p": [{"n": "Bev Smith", "r": "Mayor of Palm Springs"}, {"n": "Gary M. Ready", "r": "Palm Springs City Council"}, {"n": "Johnnie Tieche", "r": "Palm Springs City Council"}, {"n": "Kimberly Ann Schmitz", "r": "Palm Springs City Council"}, {"n": "Patricia Waller", "r": "Palm Springs City Council"}]}, {"m": "Riviera Beach", "p": [{"n": "Bruce Guyton", "r": "Riviera Beach City Council"}, {"n": "Douglas Lawson", "r": "Mayor of Riviera Beach"}, {"n": "Fercella Davis Panier", "r": "Riviera Beach City Council"}, {"n": "Glen Spiritis", "r": "Riviera Beach City Council"}, {"n": "KaShamba Miller-Anderson", "r": "Riviera Beach City Council"}, {"n": "Shirley Lanier", "r": "Riviera Beach City Council"}]}, {"m": "Royal Palm Beach", "p": [{"n": "Jan Rodusky", "r": "Royal Palm Beach City Council"}, {"n": "Jeff Hmara", "r": "Mayor of Royal Palm Beach"}, {"n": "Richard Valuntas", "r": "Royal Palm Beach City Council"}, {"n": "Selena Samios", "r": "Royal Palm Beach City Council"}, {"n": "Sylvia Sharps", "r": "Royal Palm Beach City Council"}]}, {"m": "South Bay", "p": [{"n": "Albert L. Polk", "r": "South Bay City Council"}, {"n": "Barbara King", "r": "South Bay City Council"}, {"n": "Betty Barnard", "r": "South Bay City Council"}, {"n": "Joe Kyles", "r": "Mayor of South Bay"}, {"n": "Taranza McKelvin", "r": "South Bay City Council"}]}, {"m": "South Palm Beach", "p": [{"n": "Adrian J. Burcet", "r": "South Palm Beach City Council"}, {"n": "Francesca Attardi", "r": "South Palm Beach City Council"}, {"n": "Rafael Pineiro", "r": "Mayor of South Palm Beach"}, {"n": "Raymond McMillan", "r": "South Palm Beach City Council"}, {"n": "Sandra Beckett", "r": "South Palm Beach City Council"}]}, {"m": "Tequesta", "p": [{"n": "Kyle Stone", "r": "Tequesta City Council"}, {"n": "Laurie Brandon", "r": "Tequesta City Council"}, {"n": "Molly Young", "r": "Mayor of Tequesta"}, {"n": "Patrick Painter", "r": "Tequesta City Council"}, {"n": "Rick Sartory", "r": "Tequesta City Council"}]}, {"m": "Wellington", "p": [{"n": "Maria Antuña", "r": "Wellington City Council"}, {"n": "Michael Napoleone", "r": "Mayor of Wellington"}, {"n": "Stephen A. Levin", "r": "Wellington City Council"}]}, {"m": "West Palm Beach", "p": [{"n": "Cathleen Ward", "r": "West Palm Beach City Council"}, {"n": "Christy Fox", "r": "West Palm Beach City Council"}, {"n": "Joseph A. Peduzzi", "r": "West Palm Beach City Council"}, {"n": "Keith A. James", "r": "Mayor of West Palm Beach"}, {"n": "Shalonda Warren", "r": "West Palm Beach City Council"}, {"n": "Stephen Sylvester", "r": "West Palm Beach City Council"}]}], "slug": "palm-beach"}, "12101": {"county": [{"n": "Al Hernandez", "r": "Pasco County School Board"}, {"n": "Brian Corley", "r": "Supervisor of Elections, Pasco County"}, {"n": "Chris Nocco", "r": "Sheriff, Pasco County"}, {"n": "Colleen Beaudoin", "r": "Pasco County School Board"}, {"n": "Cynthia Armstrong", "r": "Pasco County School Board"}, {"n": "Gary Joiner", "r": "Property Appraiser, Pasco County"}, {"n": "Jack Mariano", "r": "Commissioner, Pasco County"}, {"n": "Jessica Wright", "r": "Pasco County School Board"}, {"n": "Kathryn Starkey", "r": "Commissioner, Pasco County"}, {"n": "Lisa Yeager", "r": "Commissioner, Pasco County"}, {"n": "Megan Harding", "r": "Pasco County School Board"}, {"n": "Mike Fasano", "r": "Tax Collector, Pasco County"}, {"n": "Mike Wells", "r": "Property Appraiser, Pasco County"}, {"n": "Nikki Alvarez-Sowles", "r": "Clerk of Court, Pasco County"}, {"n": "Paula O'Neil", "r": "Clerk of Court, Pasco County"}, {"n": "Ronald Oakley", "r": "Commissioner, Pasco County"}, {"n": "Seth Weightman", "r": "Commissioner, Pasco County"}], "districts": {"cd": [{"d": "FL-12", "rep": "Gus M. Bilirakis", "w": 0.61}, {"d": "FL-15", "rep": "Laurel M. Lee", "w": 0.15}], "sh": [{"d": "FL House District 54", "rep": "Randy Maggard", "w": 0.334}, {"d": "FL House District 55", "rep": "Kevin Steele", "w": 0.304}, {"d": "FL House District 56", "rep": "Brad Yeager", "w": 0.061}, {"d": "FL House District 53", "rep": "Jeff Holcomb", "w": 0.056}], "ss": [{"d": "FL Senate District 23", "rep": "Danny Burgess", "w": 0.544}, {"d": "FL Senate District 21", "rep": "Ed Hooper", "w": 0.137}, {"d": "FL Senate District 11", "rep": "Ralph Massullo", "w": 0.074}]}, "munis": [{"m": "Dade City", "p": [{"n": "Ann Cosentino", "r": "Dade City City Council"}, {"n": "James D. Shive", "r": "Dade City City Council"}, {"n": "Kristin Church", "r": "Dade City City Council"}, {"n": "Normita Woodard", "r": "Dade City City Council"}, {"n": "Scott Black", "r": "Mayor of Dade City"}]}, {"m": "New Port Richey", "p": [{"n": "Bertell Butler", "r": "New Port Richey City Council"}, {"n": "Brian Jonas", "r": "New Port Richey City Council"}, {"n": "Chopper Davis", "r": "Mayor of New Port Richey"}, {"n": "Matt Murphy", "r": "New Port Richey City Council"}, {"n": "Peter Altman", "r": "New Port Richey City Council"}]}, {"m": "Port Richey", "p": [{"n": "Chris Maher", "r": "Port Richey City Council"}, {"n": "John Eric Hoover", "r": "Mayor of Port Richey"}, {"n": "Lisa Burke", "r": "Port Richey City Council"}, {"n": "Robert Hubbard", "r": "Port Richey City Council"}]}, {"m": "San Antonio", "p": [{"n": "Blaze Drinkwine", "r": "San Antonio City Council"}, {"n": "Caitlin Bolender", "r": "San Antonio City Council"}, {"n": "John Vogel", "r": "Mayor of San Antonio"}, {"n": "Randy Huckabee", "r": "San Antonio City Council"}, {"n": "Sasha Madden", "r": "San Antonio City Council"}]}, {"m": "St. Leo", "p": [{"n": "Apollo Rodriguez", "r": "St. Leo City Council"}, {"n": "Curtis Dwyer", "r": "St. Leo City Council"}, {"n": "Donna DeWitt", "r": "St. Leo City Council"}, {"n": "Vincent D'Ambrosio", "r": "Mayor of St. Leo"}, {"n": "William E. Hamilton", "r": "St. Leo City Council"}]}, {"m": "Zephyrhills", "p": [{"n": "Charles E. Proctor", "r": "Zephyrhills City Council"}, {"n": "Jodi Wilkeson", "r": "Zephyrhills City Council"}, {"n": "Kenneth M. Burgess", "r": "Zephyrhills City Council"}, {"n": "Lance A. Smith", "r": "Zephyrhills City Council"}, {"n": "Melonie Bahr Monson", "r": "Mayor of Zephyrhills"}, {"n": "Steven F. Spina", "r": "Zephyrhills City Council"}]}], "slug": "pasco"}, "12103": {"county": [{"n": "Adam Ross", "r": "Tax Collector, Pinellas County"}, {"n": "Brian Scott", "r": "Commissioner, Pinellas County"}, {"n": "Caprice Edmond", "r": "Pinellas County School Board"}, {"n": "Caprice Edmond", "r": "Pinellas County School Board - Chair, District 7"}, {"n": "Charles Thomas", "r": "Tax Collector, Pinellas County"}, {"n": "Charlie Justice", "r": "Commissioner, Pinellas County"}, {"n": "Chris Latvala", "r": "Commissioner, Pinellas County"}, {"n": "Chris Scherer", "r": "Commissioner, Pinellas County"}, {"n": "Dave Eggers", "r": "Commissioner, Pinellas County"}, {"n": "Dawn M. Peters", "r": "Pinellas County School Board - Vice Chair, At Large 3"}, {"n": "Dawn Peters", "r": "Pinellas County School Board"}, {"n": "Eileen M. Long", "r": "Pinellas County School Board"}, {"n": "Eileen M. Long", "r": "Pinellas County School Board - District 4"}, {"n": "Janet Long", "r": "Commissioner, Pinellas County"}, {"n": "Julie Marcus", "r": "Supervisor of Elections, Pinellas County"}, {"n": "Kathleen Peters", "r": "Commissioner, Pinellas County"}, {"n": "Katie Blaxberg", "r": "Pinellas County School Board"}, {"n": "Katie Blaxberg", "r": "Pinellas County School Board - District 5"}, {"n": "Ken Burke", "r": "Clerk of Court, Pinellas County"}, {"n": "Laura Hine", "r": "Pinellas County School Board"}, {"n": "Laura Hine", "r": "Pinellas County School Board - At Large 1"}, {"n": "Lisa Cane", "r": "Pinellas County School Board"}, {"n": "Lisa N. Cane", "r": "Pinellas County School Board - At Large 2"}, {"n": "Mike Twitty", "r": "Property Appraiser, Pinellas County"}, {"n": "Rene Flowers", "r": "Commissioner, Pinellas County"}, {"n": "Robert Gualtieri", "r": "Sheriff, Pinellas County"}, {"n": "Stephanie Meyer", "r": "Pinellas County School Board - District 6"}, {"n": "Vince Nowicki", "r": "Commissioner, Pinellas County"}], "districts": {"cd": [{"d": "FL-13", "rep": "Anna Paulina Luna", "w": 0.324}, {"d": "FL-14", "rep": "Kathy Castor", "w": 0.06}], "sh": [{"d": "FL House District 57", "rep": "Adam Anderson", "w": 0.106}, {"d": "FL House District 61", "rep": "Linda Chaney", "w": 0.075}, {"d": "FL House District 60", "rep": "Lindsay Cross", "w": 0.065}, {"d": "FL House District 58", "rep": "Kim Berfield", "w": 0.056}, {"d": "FL House District 59", "rep": "Berny Jacques", "w": 0.053}, {"d": "FL House District 62", "rep": "Michele Rayner", "w": 0.021}], "ss": [{"d": "FL Senate District 18", "rep": "Nick DiCeglie", "w": 0.199}, {"d": "FL Senate District 21", "rep": "Ed Hooper", "w": 0.148}, {"d": "FL Senate District 16", "rep": "Darryl Rouson", "w": 0.029}]}, "munis": [{"m": "Belleair", "p": [{"n": "Michael Wilkinson", "r": "Mayor of Belleair"}, {"n": "Patricia Barris", "r": "Belleair City Council"}, {"n": "Thomas E. Shelly", "r": "Belleair City Council"}, {"n": "Thomas Kelly", "r": "Belleair City Council"}, {"n": "Todd Jennings", "r": "Belleair City Council"}]}, {"m": "Belleair Beach", "p": [{"n": "Anders Wellings", "r": "Belleair Beach City Council"}, {"n": "Frank Bankard", "r": "Belleair Beach City Council"}, {"n": "Jody Shirley", "r": "Belleair Beach City Council"}, {"n": "Kimberly Shaw Elliott", "r": "Belleair Beach City Council"}, {"n": "Lloyd Roberts", "r": "Belleair Beach City Council"}, {"n": "Michael D. Gattis", "r": "Mayor of Belleair Beach"}, {"n": "Todd Harper", "r": "Belleair Beach City Council"}]}, {"m": "Belleair Bluffs", "p": [{"n": "Chris Arbutine", "r": "Mayor of Belleair Bluffs"}, {"n": "David Roberts", "r": "Belleair Bluffs City Council"}, {"n": "Joseph Barkley", "r": "Belleair Bluffs City Council"}, {"n": "Karen Rafferty", "r": "Belleair Bluffs City Council"}, {"n": "Suzy S. Sofer", "r": "Belleair Bluffs City Council"}]}, {"m": "Belleair Shore", "p": [{"n": "Daniel Storie", "r": "Belleair Shore City Council"}, {"n": "Michael Tolbert", "r": "Belleair Shore City Council"}, {"n": "Robert Lally", "r": "Belleair Shore City Council"}, {"n": "Steve Blume", "r": "Mayor of Belleair Shore"}, {"n": "Susan Cain", "r": "Belleair Shore City Council"}]}, {"m": "Clearwater", "p": [{"n": "Bruce Rector", "r": "Mayor of Clearwater"}, {"n": "David Allbritton", "r": "Clearwater City Council"}, {"n": "Lina Teixeira", "r": "Clearwater City Council"}, {"n": "Michael Mannino", "r": "Clearwater City Council"}, {"n": "Ryan Cotton", "r": "Clearwater City Council"}]}, {"m": "Dunedin", "p": [{"n": "Jeff Gow", "r": "Dunedin City Council"}, {"n": "Maureen 'Moe' Freaney", "r": "Mayor of Dunedin"}, {"n": "Robert Walker", "r": "Dunedin City Council"}, {"n": "Steven Sandbergen", "r": "Dunedin City Council"}, {"n": "William Dugard", "r": "Dunedin City Council"}]}, {"m": "Gulfport", "p": [{"n": "Jennifer Daunch", "r": "Gulfport City Council"}, {"n": "Karen Love", "r": "Mayor of Gulfport"}, {"n": "Marlene Shaw", "r": "Gulfport City Council"}, {"n": "Nancy Earley", "r": "Gulfport City Council"}]}, {"m": "Indian Rocks Beach", "p": [{"n": "Hilary King", "r": "Indian Rocks Beach City Council"}, {"n": "Janet Wilson", "r": "Indian Rocks Beach City Council"}, {"n": "John Bigelow", "r": "Indian Rocks Beach City Council"}, {"n": "Kellee Watt", "r": "Indian Rocks Beach City Council"}, {"n": "Lan Vaughan", "r": "Mayor of Indian Rocks Beach"}]}, {"m": "Indian Shores", "p": [{"n": "Diantha Schear", "r": "Mayor of Indian Shores"}, {"n": "Ellen Bauer", "r": "Indian Shores City Council"}, {"n": "Mark Housman", "r": "Indian Shores City Council"}, {"n": "Michael Howard", "r": "Indian Shores City Council"}, {"n": "Nicholas Menchise", "r": "Indian Shores City Council"}]}, {"m": "Kenneth City", "p": [{"n": "Bonnie A. Noble", "r": "Kenneth City City Council"}, {"n": "Donald Kinney", "r": "Kenneth City City Council"}, {"n": "Robert Arrison", "r": "Mayor of Kenneth City"}, {"n": "Tony Chan", "r": "Kenneth City City Council"}]}, {"m": "Largo", "p": [{"n": "Christopher Johnson", "r": "Largo City Council"}, {"n": "Curtis A. Holmes", "r": "Largo City Council"}, {"n": "Donna Holck", "r": "Largo City Council"}, {"n": "John Lauser", "r": "Largo City Council"}, {"n": "Michael DiBrizzi", "r": "Largo City Council"}, {"n": "Michael Smith", "r": "Largo City Council"}, {"n": "Woody Brown", "r": "Mayor of Largo"}]}, {"m": "Madeira Beach", "p": [{"n": "Anne-Marie Brooks", "r": "Mayor of Madeira Beach"}, {"n": "Charles Dillon", "r": "Madeira Beach City Council"}, {"n": "David Tagliarini", "r": "Madeira Beach City Council"}, {"n": "Eddie McGeehen", "r": "Madeira Beach City Council"}, {"n": "Housh Ghovaee", "r": "Madeira Beach City Council"}]}, {"m": "North Redington Beach", "p": [{"n": "Corey Thornton", "r": "North Redington Beach City Council"}, {"n": "Jay A. Super", "r": "Mayor of North Redington Beach"}, {"n": "John Messmore", "r": "North Redington Beach City Council"}, {"n": "Kevin Kennedy", "r": "North Redington Beach City Council"}, {"n": "Richard Nagrabski", "r": "North Redington Beach City Council"}]}, {"m": "Oldsmar", "p": [{"n": "Cyndi Olmstead", "r": "Oldsmar City Council"}, {"n": "Katie Gannon", "r": "Mayor of Oldsmar"}, {"n": "Sean Swauger", "r": "Oldsmar City Council"}, {"n": "Steve Graber", "r": "Oldsmar City Council"}, {"n": "Valerie Tatarzewksi", "r": "Oldsmar City Council"}]}, {"m": "Pinellas Park", "p": [{"n": "Keith V. Sabiel", "r": "Pinellas Park City Council"}, {"n": "Patti Reed", "r": "Pinellas Park City Council"}, {"n": "Ricky Butler", "r": "Pinellas Park City Council"}, {"n": "Sandra L. Bradbury", "r": "Mayor of Pinellas Park"}, {"n": "Tim Caddell", "r": "Pinellas Park City Council"}]}, {"m": "Redington Beach", "p": [{"n": "David Will", "r": "Mayor of Redington Beach"}, {"n": "James Murray", "r": "Redington Beach City Council"}, {"n": "Rich Cariello", "r": "Redington Beach City Council"}, {"n": "Tim Thompson", "r": "Redington Beach City Council"}]}, {"m": "Redington Shores", "p": [{"n": "CJ Hoyt", "r": "Redington Shores City Council"}, {"n": "Erin Schoos", "r": "Redington Shores City Council"}, {"n": "Larry Maynard", "r": "Redington Shores City Council"}, {"n": "Tom Kapper", "r": "Mayor of Redington Shores"}]}, {"m": "Safety Harbor", "p": [{"n": "Andy Steingold", "r": "Safety Harbor City Council"}, {"n": "Jacob Burnett", "r": "Safety Harbor City Council"}, {"n": "Joe Ayoub", "r": "Mayor of Safety Harbor"}, {"n": "Kevin Shanks", "r": "Safety Harbor City Council"}, {"n": "Nancy Besore", "r": "Safety Harbor City Council"}]}, {"m": "Seminole", "p": [{"n": "Alan Shields", "r": "Seminole City Council"}, {"n": "Christopher Burke", "r": "Seminole City Council"}, {"n": "James Quinn", "r": "Seminole City Council"}, {"n": "Latisha 'Trish' Springer", "r": "Seminole City Council"}, {"n": "Leslie Waters", "r": "Mayor of Seminole"}, {"n": "Raymond Beliveau", "r": "Seminole City Council"}, {"n": "Thomas Barnhorn", "r": "Seminole City Council"}]}, {"m": "South Pasadena", "p": [{"n": "Arthur Penny", "r": "Mayor of South Pasadena"}, {"n": "Gail Neidinger", "r": "South Pasadena City Council"}, {"n": "Lynda Thompson", "r": "South Pasadena City Council"}, {"n": "Mark McAlees", "r": "South Pasadena City Council"}, {"n": "Thomas B. Reid", "r": "South Pasadena City Council"}]}, {"m": "St. Pete Beach", "p": [{"n": "Al Causey", "r": "St. Pete Beach City Council"}, {"n": "Jon Maldonado", "r": "St. Pete Beach City Council"}, {"n": "Karen Marriott", "r": "St. Pete Beach City Council"}, {"n": "Lisa Robinson", "r": "St. Pete Beach City Council"}, {"n": "Scott Tate", "r": "Mayor of St. Pete Beach"}]}, {"m": "St. Petersburg", "p": [{"n": "Brandi Gabbard", "r": "St. Petersburg City Council"}, {"n": "Copley Gerdes", "r": "St. Petersburg City Council"}, {"n": "Corey Givens", "r": "St. Petersburg City Council"}, {"n": "Gina Driscoll", "r": "St. Petersburg City Council"}, {"n": "Kenneth T. Welch", "r": "Mayor of St. Petersburg"}, {"n": "Lisset Hanewicz", "r": "St. Petersburg City Council"}, {"n": "Mike Harting", "r": "St. Petersburg City Council"}, {"n": "Richie Floyd", "r": "St. Petersburg City Council"}]}, {"m": "Tarpon Springs", "p": [{"n": "David Banther", "r": "Tarpon Springs City Council"}, {"n": "Frank DiDonato", "r": "Tarpon Springs City Council"}, {"n": "John Koulianos", "r": "Mayor of Tarpon Springs"}, {"n": "Mike Eisner", "r": "Tarpon Springs City Council"}, {"n": "Panagiotis Koulias", "r": "Tarpon Springs City Council"}]}, {"m": "Treasure Island", "p": [{"n": "Arden Dickey", "r": "Treasure Island City Council"}, {"n": "Arthur Czyszczon", "r": "Treasure Island City Council"}, {"n": "Chris Clark", "r": "Treasure Island City Council"}, {"n": "John Doctor", "r": "Mayor of Treasure Island"}]}], "slug": "pinellas"}, "12105": {"county": [{"n": "Becky Troutman", "r": "Commissioner, Polk County"}, {"n": "Bill Braswell", "r": "Commissioner, Polk County"}, {"n": "Dr. William Allen", "r": "Polk County School Board - District 1"}, {"n": "George Lindsey", "r": "Commissioner, Polk County"}, {"n": "Grady Judd", "r": "Sheriff, Polk County"}, {"n": "Joe Tedder", "r": "Tax Collector, Polk County"}, {"n": "Justin Sharpless", "r": "Polk County School Board"}, {"n": "Kate Wallace", "r": "Polk County School Board - District 3"}, {"n": "Kay Fields", "r": "Polk County School Board"}, {"n": "Lisa Miller", "r": "Polk County School Board"}, {"n": "Lori Edwards", "r": "Supervisor of Elections, Polk County"}, {"n": "Marsha Faux", "r": "Property Appraiser, Polk County"}, {"n": "Martha Santiago", "r": "Commissioner, Polk County"}, {"n": "Melony Bell", "r": "Supervisor of Elections, Polk County"}, {"n": "Mike Scott", "r": "Commissioner, Polk County"}, {"n": "Neil Combee", "r": "Property Appraiser, Polk County"}, {"n": "Rick Nolte", "r": "Polk County School Board"}, {"n": "Rick Wilson", "r": "Commissioner, Polk County"}, {"n": "Sara Beth Reynolds Wyatt", "r": "Polk County School Board"}, {"n": "Sara Beth Wyatt", "r": "Polk County School Board - District 4"}, {"n": "Stacy Butterfield", "r": "Clerk of Court, Polk County"}, {"n": "Travis Keyes", "r": "Polk County School Board"}, {"n": "Travis L. Keyes", "r": "Polk County School Board - Vice Chair, District 2"}, {"n": "William Allen", "r": "Polk County School Board"}], "districts": {"cd": [{"d": "FL-18", "rep": "Scott Franklin", "w": 0.774}, {"d": "FL-11", "rep": "Daniel Webster", "w": 0.135}, {"d": "FL-15", "rep": "Laurel M. Lee", "w": 0.059}, {"d": "FL-09", "rep": "Darren Soto", "w": 0.032}], "sh": [{"d": "FL House District 48", "rep": "Jon Albert", "w": 0.366}, {"d": "FL House District 49", "rep": "Jennifer Kincart Jonsson", "w": 0.317}, {"d": "FL House District 51", "rep": "Hilary Holley", "w": 0.244}, {"d": "FL House District 50", "rep": "Jennifer Canady", "w": 0.072}], "ss": [{"d": "FL Senate District 27", "rep": "Ben Albritton", "w": 0.502}, {"d": "FL Senate District 12", "rep": "Colleen Burton", "w": 0.498}]}, "munis": [{"m": "Auburndale", "p": [{"n": "Alex Cam", "r": "Mayor of Auburndale"}, {"n": "Crystal Tijerina", "r": "Auburndale City Council"}, {"n": "Jordan Helms", "r": "Auburndale City Council"}, {"n": "Keith Cowie", "r": "Auburndale City Council"}, {"n": "Travis Avery", "r": "Auburndale City Council"}]}, {"m": "Bartow", "p": [{"n": "Gary Ball", "r": "Bartow City Council"}, {"n": "Laura Simpson", "r": "Bartow City Council"}, {"n": "Leo E. Longworth", "r": "Bartow City Council"}, {"n": "Tanya Tucker", "r": "Mayor of Bartow"}, {"n": "Trish Pfeiffer", "r": "Bartow City Council"}]}, {"m": "Davenport", "p": [{"n": "Donna Fellows-Coffey", "r": "Mayor of Davenport"}, {"n": "Frank Rivera", "r": "Davenport City Council"}, {"n": "Jeremy Clark", "r": "Davenport City Council"}, {"n": "Linda Robinson", "r": "Davenport City Council"}, {"n": "Tom Fellows", "r": "Davenport City Council"}]}, {"m": "Dundee", "p": [{"n": "Annette Wilson", "r": "Dundee City Council"}, {"n": "Joe Garrison", "r": "Mayor of Dundee"}, {"n": "Julia Hunt", "r": "Dundee City Council"}, {"n": "Mary Richardson", "r": "Dundee City Council"}, {"n": "Ray Hunt", "r": "Dundee City Council"}]}, {"m": "Eagle Lake", "p": [{"n": "Cory Coler", "r": "Mayor of Eagle Lake"}, {"n": "Kristen Pita", "r": "Eagle Lake City Council"}, {"n": "Randy Billings", "r": "Eagle Lake City Council"}, {"n": "Steven Metosh", "r": "Eagle Lake City Council"}, {"n": "Steven Williams", "r": "Eagle Lake City Council"}]}, {"m": "Fort Meade", "p": [{"n": "James E. Watts", "r": "Mayor of Fort Meade"}, {"n": "James W. Schaill", "r": "Fort Meade City Council"}, {"n": "Jaret Landon Williams", "r": "Fort Meade City Council"}, {"n": "Petrina McCutchen", "r": "Fort Meade City Council"}]}, {"m": "Frostproof", "p": [{"n": "Adam W. Greenway", "r": "Frostproof City Council"}, {"n": "Austin Gravley", "r": "Frostproof City Council"}, {"n": "Leslie Brewer", "r": "Frostproof City Council"}, {"n": "Michael Hutto", "r": "Mayor of Frostproof"}, {"n": "Tashana True", "r": "Frostproof City Council"}]}, {"m": "Haines City", "p": [{"n": "Anne Huffman", "r": "Haines City City Council"}, {"n": "Kimberly Downing", "r": "Haines City City Council"}, {"n": "Lekia Johnson", "r": "Haines City City Council"}, {"n": "Morris L. West", "r": "Haines City City Council"}, {"n": "Vernel Smith", "r": "Mayor of Haines City"}]}, {"m": "Highland Park", "p": [{"n": "Amanda Updike", "r": "Highland Park City Council"}, {"n": "Steve Railey", "r": "Highland Park City Council"}]}, {"m": "Hillcrest Heights", "p": [{"n": "Jason Harmeling", "r": "Hillcrest Heights City Council"}, {"n": "Jerry Dohoney", "r": "Hillcrest Heights City Council"}, {"n": "Michael Bishop", "r": "Mayor of Hillcrest Heights"}, {"n": "Richard Lee", "r": "Hillcrest Heights City Council"}, {"n": "Sam Knight", "r": "Hillcrest Heights City Council"}]}, {"m": "Lake Alfred", "p": [{"n": "Brent Eden", "r": "Lake Alfred City Council"}, {"n": "Jack Dearmin", "r": "Lake Alfred City Council"}, {"n": "Mac Fuller", "r": "Mayor of Lake Alfred"}, {"n": "Nancy Z. Daley", "r": "Lake Alfred City Council"}, {"n": "Ronnie Robinson", "r": "Lake Alfred City Council"}]}, {"m": "Lake Hamilton", "p": [{"n": "Carmen Demanche", "r": "Lake Hamilton City Council"}, {"n": "Joshua Collier", "r": "Lake Hamilton City Council"}, {"n": "Marsol Ortega", "r": "Lake Hamilton City Council"}, {"n": "Phyllis Hall", "r": "Mayor of Lake Hamilton"}, {"n": "Robert Mathis", "r": "Lake Hamilton City Council"}]}, {"m": "Lake Wales", "p": [{"n": "Carol Gillespie", "r": "Lake Wales City Council"}, {"n": "Daniel Williams", "r": "Lake Wales City Council"}, {"n": "Jack Hilligoss", "r": "Mayor of Lake Wales"}, {"n": "Keith Thompson", "r": "Lake Wales City Council"}, {"n": "Terri Miller", "r": "Lake Wales City Council"}]}, {"m": "Lakeland", "p": [{"n": "Ashley C. Troutman", "r": "Lakeland City Council"}, {"n": "Chad McLeod", "r": "Lakeland City Council"}, {"n": "Guy LaLonde", "r": "Lakeland City Council"}, {"n": "Mike Musick", "r": "Lakeland City Council"}, {"n": "Sara R. McCarley", "r": "Mayor of Lakeland"}, {"n": "Stephanie Madden", "r": "Lakeland City Council"}, {"n": "Terry Coney", "r": "Lakeland City Council"}]}, {"m": "Mulberry", "p": [{"n": "Collins L. Smith", "r": "Mulberry City Council"}, {"n": "Dawn McDonald", "r": "Mulberry City Council"}, {"n": "George H. Hatch", "r": "Mayor of Mulberry"}, {"n": "Kathryn Smith Barsotti", "r": "Mulberry City Council"}, {"n": "Neil Devine", "r": "Mulberry City Council"}, {"n": "Rosa Ayersman", "r": "Mulberry City Council"}]}, {"m": "Polk City", "p": [{"n": "Brian Knouff", "r": "Polk City City Council"}, {"n": "Donna Martin", "r": "Polk City City Council"}, {"n": "Joe LaCascia", "r": "Mayor of Polk City"}, {"n": "Micheal T. Blethen", "r": "Polk City City Council"}, {"n": "Rick Wilson", "r": "Polk City City Council"}]}, {"m": "Winter Haven", "p": [{"n": "Chad Davis", "r": "Winter Haven City Council"}, {"n": "Clifton E. Dollison", "r": "Winter Haven City Council"}, {"n": "L. Tracy Mercer", "r": "Winter Haven City Council"}, {"n": "Nathaniel J. Birdsong", "r": "Winter Haven City Council"}, {"n": "William B. Yates", "r": "Mayor of Winter Haven"}]}], "slug": "polk"}, "12107": {"county": [{"n": "Bill Pickens", "r": "Commissioner, Putnam County"}, {"n": "Brenda Bridges", "r": "Tax Collector, Putnam County"}, {"n": "Charles Overturf", "r": "Supervisor of Elections, Putnam County"}, {"n": "Clay Davis", "r": "Property Appraiser, Putnam County"}, {"n": "David Buckles", "r": "Putnam County School Board"}, {"n": "H.D. DeLoach", "r": "Sheriff, Putnam County"}, {"n": "Holly H. Pickens", "r": "Putnam County School Board"}, {"n": "Larry Harvey", "r": "Commissioner, Putnam County"}, {"n": "Linda A. Wagner", "r": "Putnam County School Board"}, {"n": "Linda Myers", "r": "Tax Collector, Putnam County"}, {"n": "Paul Adamczyk", "r": "Commissioner, Putnam County"}, {"n": "Phil Leary", "r": "Putnam County School Board"}, {"n": "Sandra \"Sandy\" Gilyard", "r": "Putnam County School Board"}, {"n": "Terry Turner", "r": "Commissioner, Putnam County"}, {"n": "Tim Parker", "r": "Property Appraiser, Putnam County"}, {"n": "Tim Smith", "r": "Clerk of Court, Putnam County"}, {"n": "Walton Pellicer", "r": "Commissioner, Putnam County"}], "districts": {"cd": [{"d": "FL-06", "rep": "Randy Fine", "w": 0.999}], "sh": [{"d": "FL House District 20", "rep": "Judson Sapp", "w": 1.0}], "ss": [{"d": "FL Senate District 7", "rep": "Tom Leek", "w": 1.0}]}, "munis": [{"m": "Crescent City", "p": [{"n": "Cynthia Burton", "r": "Crescent City City Council"}, {"n": "Linda Moore", "r": "Crescent City City Council"}, {"n": "Lisa Kane DeVitto", "r": "Crescent City City Council"}, {"n": "Michele Myers", "r": "Mayor of Crescent City"}, {"n": "William Laurie", "r": "Crescent City City Council"}]}, {"m": "Interlachen", "p": [{"n": "Anna Rose Larson", "r": "Interlachen City Council"}, {"n": "Beverly Bakker", "r": "Interlachen City Council"}, {"n": "Carolyn Bennett", "r": "Interlachen City Council"}, {"n": "Carolyn Meadows", "r": "Interlachen City Council"}, {"n": "James R. Hanes", "r": "Mayor of Interlachen"}, {"n": "Joni Conner", "r": "Interlachen City Council"}]}, {"m": "Palatka", "p": [{"n": "Annie H. Davis", "r": "Palatka City Council"}, {"n": "Justin R. Campbell", "r": "Palatka City Council"}, {"n": "Roberta Correa", "r": "Mayor of Palatka"}, {"n": "Rufus J. Borom", "r": "Palatka City Council"}, {"n": "Will Jones", "r": "Palatka City Council"}]}, {"m": "Pomona Park", "p": [{"n": "Alisha Kuleski", "r": "Pomona Park City Council"}, {"n": "Anthony Cuevas", "r": "Mayor of Pomona Park"}, {"n": "CarrieAnn Evans", "r": "Pomona Park City Council"}, {"n": "Donna Cooney", "r": "Pomona Park City Council"}, {"n": "Mark Swanson", "r": "Pomona Park City Council"}, {"n": "Mike Rohrabough", "r": "Pomona Park City Council"}, {"n": "Pat Mead", "r": "Pomona Park City Council"}]}, {"m": "Welaka", "p": [{"n": "Kathy Washington", "r": "Mayor of Welaka"}, {"n": "Kenneth Pagano", "r": "Welaka City Council"}, {"n": "Sandra Walker", "r": "Welaka City Council"}, {"n": "Thomas Emerson", "r": "Welaka City Council"}, {"n": "Tonya Long", "r": "Welaka City Council"}]}], "slug": "putnam"}, "12109": {"county": [{"n": "Ann Taylor", "r": "Commissioner, St. Johns County"}, {"n": "Beverly Slough", "r": "St. Johns County School Board"}, {"n": "Brandon Patty", "r": "Clerk of Court, St. Johns County"}, {"n": "Christian Whitehurst", "r": "Commissioner, St. Johns County"}, {"n": "Clay Murphy", "r": "Commissioner, St. Johns County"}, {"n": "Dennis Hollingsworth", "r": "Tax Collector, St. Johns County"}, {"n": "Eddie Creamer", "r": "Property Appraiser, St. Johns County"}, {"n": "Henry Dean", "r": "Commissioner, St. Johns County"}, {"n": "Jennifer Collins", "r": "St. Johns County School Board"}, {"n": "Jennifer Ravan", "r": "Tax Collector, St. Johns County"}, {"n": "Kelly Barrera", "r": "St. Johns County School Board"}, {"n": "Krista Joseph", "r": "Commissioner, St. Johns County"}, {"n": "Linda Thomson", "r": "St. Johns County School Board"}, {"n": "Paul Waldron", "r": "Commissioner, St. Johns County"}, {"n": "Rob Hardwick", "r": "Sheriff, St. Johns County"}, {"n": "Roy Alaimo", "r": "Commissioner, St. Johns County"}, {"n": "Sarah Arnold", "r": "Commissioner, St. Johns County"}, {"n": "Vicky Oakes", "r": "Supervisor of Elections, St. Johns County"}], "districts": {"cd": [{"d": "FL-05", "rep": "John H. Rutherford", "w": 0.506}, {"d": "FL-06", "rep": "Randy Fine", "w": 0.314}], "sh": [{"d": "FL House District 20", "rep": "Judson Sapp", "w": 0.362}, {"d": "FL House District 18", "rep": "Kim Kendall", "w": 0.361}, {"d": "FL House District 19", "rep": "Sam Greco", "w": 0.096}], "ss": [{"d": "FL Senate District 7", "rep": "Tom Leek", "w": 0.82}]}, "munis": [{"m": "St. Augustine", "p": [{"n": "Barbara Blonder", "r": "St. Augustine City Council"}, {"n": "Cynthia Garris", "r": "St. Augustine City Council"}, {"n": "James T. Springfield", "r": "St. Augustine City Council"}, {"n": "Jon DePreter", "r": "St. Augustine City Council"}, {"n": "Nancy Sikes-Kline", "r": "Mayor of St. Augustine"}]}, {"m": "St. Augustine Beach", "p": [{"n": "Beth Sweeny", "r": "Mayor of St. Augustine Beach"}, {"n": "Donald Samora", "r": "St. Augustine Beach City Council"}, {"n": "Dylan Rumrell", "r": "St. Augustine Beach City Council"}, {"n": "Undine George", "r": "St. Augustine Beach City Council"}, {"n": "Virginia Snyder Morgan", "r": "St. Augustine Beach City Council"}]}], "slug": "st-johns"}, "12111": {"county": [{"n": "Cathy Townsend", "r": "Commissioner, St. Lucie County"}, {"n": "Christopher Craft", "r": "Tax Collector, St. Lucie County"}, {"n": "Christopher Dzadovsky", "r": "Commissioner, St. Lucie County"}, {"n": "Debbie Hawley", "r": "St. Lucie County School Board"}, {"n": "Donna Mills", "r": "St. Lucie County School Board"}, {"n": "Erin Lowry", "r": "Commissioner, St. Lucie County"}, {"n": "Gertrude Walker", "r": "Supervisor of Elections, St. Lucie County"}, {"n": "James Clasby", "r": "Commissioner, St. Lucie County"}, {"n": "Jamie Fowler", "r": "Commissioner, St. Lucie County"}, {"n": "Jennifer Anne Richardson", "r": "St. Lucie County School Board"}, {"n": "Keith Pearson", "r": "Sheriff, St. Lucie County"}, {"n": "Larry Leet", "r": "Commissioner, St. Lucie County"}, {"n": "Linda Bartz", "r": "Commissioner, St. Lucie County"}, {"n": "Michelle Franklin", "r": "Property Appraiser, St. Lucie County"}, {"n": "Michelle Miller", "r": "Clerk of Court, St. Lucie County"}, {"n": "Richard DelToro", "r": "Sheriff, St. Lucie County"}, {"n": "Terissa Aronson", "r": "St. Lucie County School Board"}, {"n": "Troy Ingersoll", "r": "St. Lucie County School Board"}], "districts": {"cd": [{"d": "FL-21", "rep": "Brian J. Mast", "w": 0.893}], "sh": [{"d": "FL House District 84", "rep": "Dana Trabulsy", "w": 0.77}, {"d": "FL House District 85", "rep": "Toby Overdorf", "w": 0.119}], "ss": [{"d": "FL Senate District 29", "rep": "Erin Grall", "w": 0.762}, {"d": "FL Senate District 31", "rep": "Gayle Harrell", "w": 0.127}]}, "munis": [{"m": "Fort Pierce", "p": [{"n": "Arnold S. Gaines", "r": "Fort Pierce City Council"}, {"n": "Curtis Johnson", "r": "Fort Pierce City Council"}, {"n": "James Taylor", "r": "Fort Pierce City Council"}, {"n": "Linda Hudson", "r": "Mayor of Fort Pierce"}, {"n": "Michael Broderick", "r": "Fort Pierce City Council"}]}, {"m": "Port St. Lucie", "p": [{"n": "Anthony Bonna", "r": "Port St. Lucie City Council"}, {"n": "David Pickett", "r": "Port St. Lucie City Council"}, {"n": "Jolien Caraballo", "r": "Port St. Lucie City Council"}, {"n": "Shannon M. Martin", "r": "Mayor of Port St. Lucie"}, {"n": "Stephanie Morgan", "r": "Port St. Lucie City Council"}]}, {"m": "St. Lucie Village", "p": [{"n": "Dale Reed", "r": "St. Lucie Village City Council"}, {"n": "John Langel", "r": "St. Lucie Village City Council"}, {"n": "Lisa K. Price", "r": "St. Lucie Village City Council"}, {"n": "Paul Sinnott", "r": "St. Lucie Village City Council"}, {"n": "William G. Thiess", "r": "Mayor of St. Lucie Village"}]}], "slug": "st-lucie"}, "12113": {"county": [{"n": "Bobby Burkett", "r": "Commissioner, Santa Rosa County"}, {"n": "Carol Boston", "r": "Santa Rosa County School Board"}, {"n": "Charles \"Charlie\" Elliott", "r": "Santa Rosa County School Board"}, {"n": "Colten Wright", "r": "Commissioner, Santa Rosa County"}, {"n": "Donald Spencer", "r": "Clerk of Court, Santa Rosa County"}, {"n": "Elizabeth Hewey", "r": "Santa Rosa County School Board"}, {"n": "Gregory Brown", "r": "Property Appraiser, Santa Rosa County"}, {"n": "James Calkins", "r": "Commissioner, Santa Rosa County"}, {"n": "Jason English", "r": "Clerk of Court, Santa Rosa County"}, {"n": "Kerry Smith", "r": "Commissioner, Santa Rosa County"}, {"n": "Linda Sanborn", "r": "Santa Rosa County School Board"}, {"n": "Ray Eddington", "r": "Commissioner, Santa Rosa County"}, {"n": "Robert Johnson", "r": "Sheriff, Santa Rosa County"}, {"n": "Sam Parker", "r": "Commissioner, Santa Rosa County"}, {"n": "Scott Peden", "r": "Santa Rosa County School Board"}, {"n": "Stan Nichols", "r": "Tax Collector, Santa Rosa County"}, {"n": "Tappie Villane", "r": "Supervisor of Elections, Santa Rosa County"}], "districts": {"cd": [{"d": "FL-01", "rep": "Jimmy Patronis", "w": 0.94}], "sh": [{"d": "FL House District 3", "rep": "Nathan Boyles", "w": 0.881}, {"d": "FL House District 2", "rep": "Alex Andrade", "w": 0.059}], "ss": [{"d": "FL Senate District 1", "rep": "Don Gaetz", "w": 0.94}]}, "munis": [{"m": "Gulf Breeze", "p": [{"n": "J. B. Schluter", "r": "Mayor of Gulf Breeze"}, {"n": "Randy Hebert", "r": "Gulf Breeze City Council"}, {"n": "Tim Burr", "r": "Gulf Breeze City Council"}, {"n": "Todd Torgersen", "r": "Gulf Breeze City Council"}]}, {"m": "Jay", "p": [{"n": "Brent Freeman", "r": "Jay City Council"}, {"n": "Cade Diamond", "r": "Jay City Council"}, {"n": "Nina Hendricks", "r": "Jay City Council"}, {"n": "Shon Owens", "r": "Mayor of Jay"}]}, {"m": "Milton", "p": [{"n": "Ashley Fretwell", "r": "Milton City Council"}, {"n": "Casey Powell", "r": "Milton City Council"}, {"n": "Gavin Hawthorne", "r": "Milton City Council"}, {"n": "Heather F. Lindsay", "r": "Mayor of Milton"}, {"n": "Larry McKee", "r": "Milton City Council"}, {"n": "Marilynn Farrow", "r": "Milton City Council"}, {"n": "Mike Cusak", "r": "Milton City Council"}, {"n": "Robert Leek", "r": "Milton City Council"}, {"n": "Tom Powers", "r": "Milton City Council"}]}], "slug": "santa-rosa"}, "12115": {"county": [{"n": "Barbara Ford-Coates", "r": "Tax Collector, Sarasota County"}, {"n": "Bill Furst", "r": "Property Appraiser, Sarasota County"}, {"n": "Bridget Ziegler", "r": "Sarasota County School Board"}, {"n": "Joseph Neunder", "r": "Commissioner, Sarasota County"}, {"n": "Karen Rushing", "r": "Clerk of Court, Sarasota County"}, {"n": "Kurt Hoffman", "r": "Sheriff, Sarasota County"}, {"n": "Liz Barker", "r": "Sarasota County School Board"}, {"n": "Mark Smith", "r": "Commissioner, Sarasota County"}, {"n": "Michael Moran", "r": "Tax Collector, Sarasota County"}, {"n": "Neil Rainford", "r": "Commissioner, Sarasota County"}, {"n": "Robyn A. Marinelli", "r": "Sarasota County School Board"}, {"n": "Ron Cutsinger", "r": "Commissioner, Sarasota County"}, {"n": "Ron Turner", "r": "Supervisor of Elections, Sarasota County"}, {"n": "Timothy Enos", "r": "Sarasota County School Board"}, {"n": "Tom Edwards", "r": "Sarasota County School Board"}], "districts": {"cd": [{"d": "FL-17", "rep": "W. Gregory Steube", "w": 0.621}], "sh": [{"d": "FL House District 74", "rep": "James Buchanan", "w": 0.428}, {"d": "FL House District 73", "rep": "Fiona McFarland", "w": 0.111}, {"d": "FL House District 75", "rep": "Danny Nix", "w": 0.082}], "ss": [{"d": "FL Senate District 22", "rep": "Joe Gruters", "w": 0.621}]}, "munis": [{"m": "Longboat Key", "p": [{"n": "BJ Bishop", "r": "Longboat Key City Council"}, {"n": "Debra Williams", "r": "Mayor of Longboat Key"}, {"n": "Gary Coffin", "r": "Longboat Key City Council"}, {"n": "Nick Gladding", "r": "Longboat Key City Council"}, {"n": "Penelope Gold", "r": "Longboat Key City Council"}, {"n": "Sarah Karon", "r": "Longboat Key City Council"}, {"n": "Steve Branham", "r": "Longboat Key City Council"}]}, {"m": "North Port", "p": [{"n": "Barbara Langdon", "r": "North Port City Council"}, {"n": "David Duval", "r": "North Port City Council"}, {"n": "Demetrius Petrow", "r": "North Port City Council"}, {"n": "Pete Emrich", "r": "Mayor of North Port"}, {"n": "Phil Stokes", "r": "North Port City Council"}]}, {"m": "Sarasota", "p": [{"n": "Debbie Trice", "r": "Mayor of Sarasota"}, {"n": "Jen Ahearn-Koch", "r": "Sarasota City Council"}, {"n": "Kathy Kelley Ohlrich", "r": "Sarasota City Council"}, {"n": "Kyle Battie", "r": "Sarasota City Council"}, {"n": "Liz Alpert", "r": "Sarasota City Council"}]}, {"m": "Venice", "p": [{"n": "Jim Boldt", "r": "Venice City Council"}, {"n": "Kevin Engelke", "r": "Venice City Council"}, {"n": "Lloyd Weed", "r": "Venice City Council"}, {"n": "Nicholas Pachota", "r": "Mayor of Venice"}, {"n": "Rachel Frank", "r": "Venice City Council"}, {"n": "Rick Howard", "r": "Venice City Council"}, {"n": "Ron Smith", "r": "Venice City Council"}]}], "slug": "sarasota"}, "12117": {"county": [{"n": "Abby Sanchez", "r": "Seminole County School Board"}, {"n": "Amy Lockhart", "r": "Commissioner, Seminole County"}, {"n": "Amy Pennock", "r": "Supervisor of Elections, Seminole County"}, {"n": "Andria Herr", "r": "Commissioner, Seminole County"}, {"n": "Autumn Huff Garick", "r": "Seminole County School Board"}, {"n": "Bob Dallari", "r": "Commissioner, Seminole County"}, {"n": "Chris Anderson", "r": "Supervisor of Elections, Seminole County"}, {"n": "David Johnson", "r": "Property Appraiser, Seminole County"}, {"n": "Dennis Lemma", "r": "Sheriff, Seminole County"}, {"n": "Grant Maloy", "r": "Clerk of Court, Seminole County"}, {"n": "J.R. Kroll", "r": "Tax Collector, Seminole County"}, {"n": "Jacqueline Kelley Davis", "r": "Seminole County School Board"}, {"n": "Jay Zembower", "r": "Commissioner, Seminole County"}, {"n": "Joel Greenberg", "r": "Tax Collector, Seminole County"}, {"n": "Kristine L. Kraus", "r": "Seminole County School Board"}, {"n": "Lee Constantine", "r": "Commissioner, Seminole County"}, {"n": "Robin Dehlinger", "r": "Seminole County School Board"}], "districts": {"cd": [{"d": "FL-07", "rep": "Cory Mills", "w": 0.999}], "sh": [{"d": "FL House District 36", "rep": "Rachel Plakon", "w": 0.506}, {"d": "FL House District 37", "rep": "Susan Plasencia", "w": 0.255}, {"d": "FL House District 38", "rep": "Dave Smith", "w": 0.153}, {"d": "FL House District 39", "rep": "Doug Bankson", "w": 0.085}], "ss": [{"d": "FL Senate District 10", "rep": "Jason Brodeur", "w": 1.0}]}, "munis": [{"m": "Altamonte Springs", "p": [{"n": "Bob O'Malley", "r": "Altamonte Springs City Council"}, {"n": "Jim Turney", "r": "Altamonte Springs City Council"}, {"n": "Mike Brunscheen", "r": "Altamonte Springs City Council"}, {"n": "Patricia J. Bates", "r": "Mayor of Altamonte Springs"}, {"n": "Sarah Reece", "r": "Altamonte Springs City Council"}]}, {"m": "Casselberry", "p": [{"n": "Anthony Aramendia", "r": "Casselberry City Council"}, {"n": "David Henson", "r": "Mayor of Casselberry"}, {"n": "Mark Busch", "r": "Casselberry City Council"}, {"n": "Nancy Divita", "r": "Casselberry City Council"}, {"n": "Thomas E. Kirk", "r": "Casselberry City Council"}]}, {"m": "Lake Mary", "p": [{"n": "David J. Mealor", "r": "Mayor of Lake Mary"}, {"n": "Jordan S. Smith", "r": "Lake Mary City Council"}, {"n": "Justin York", "r": "Lake Mary City Council"}, {"n": "Justin York", "r": "Lake Mary City Council"}]}, {"m": "Longwood", "p": [{"n": "Abby Shoemaker", "r": "Longwood City Council"}, {"n": "Brian D. Sackett", "r": "Longwood City Council"}, {"n": "Matt Morgan", "r": "Longwood City Council"}, {"n": "Matthew McMillan", "r": "Longwood City Council"}, {"n": "Tony Boni", "r": "Mayor of Longwood"}]}, {"m": "Oviedo", "p": [{"n": "Alan Ott", "r": "Oviedo City Council"}, {"n": "Jeff Boddiford", "r": "Oviedo City Council"}, {"n": "Keith Britton", "r": "Oviedo City Council"}, {"n": "Megan Sladek", "r": "Mayor of Oviedo"}, {"n": "Natalie Teuchert", "r": "Oviedo City Council"}]}, {"m": "Sanford", "p": [{"n": "Art Woodruff", "r": "Mayor of Sanford"}, {"n": "Claudia Thomas", "r": "Sanford City Council"}, {"n": "Kerry S. Wiggins", "r": "Sanford City Council"}, {"n": "Patrick Austin", "r": "Sanford City Council"}, {"n": "Sheena Britton", "r": "Sanford City Council"}]}, {"m": "Winter Springs", "p": [{"n": "Cade Resnick", "r": "Winter Springs City Council"}, {"n": "Kevin McCann", "r": "Mayor of Winter Springs"}, {"n": "Mark Caruso", "r": "Winter Springs City Council"}, {"n": "Paul Diaz", "r": "Winter Springs City Council"}, {"n": "Sarah Baker", "r": "Winter Springs City Council"}, {"n": "Victoria Bruce", "r": "Winter Springs City Council"}]}], "slug": "seminole"}, "12119": {"county": [{"n": "Andrew Bilardello", "r": "Commissioner, Sumter County"}, {"n": "Brett Sherman", "r": "Sumter County School Board"}, {"n": "Craig Estep", "r": "Commissioner, Sumter County"}, {"n": "David A Williams", "r": "Sumter County School Board"}, {"n": "Donald Wiley", "r": "Commissioner, Sumter County"}, {"n": "Erin Munz", "r": "Clerk of Court, Sumter County"}, {"n": "Gloria Hayward", "r": "Clerk of Court, Sumter County"}, {"n": "Jeff Bogue", "r": "Commissioner, Sumter County"}, {"n": "Joey Hooten", "r": "Property Appraiser, Sumter County"}, {"n": "Kathie L Joiner", "r": "Sumter County School Board"}, {"n": "Oren Miller", "r": "Commissioner, Sumter County"}, {"n": "Patrick Breeden", "r": "Sheriff, Sumter County"}, {"n": "Randy Mask", "r": "Tax Collector, Sumter County"}, {"n": "Roberta Ulrich", "r": "Commissioner, Sumter County"}, {"n": "Russell G Hogan", "r": "Sumter County School Board"}, {"n": "Russell Hogan", "r": "Sumter County School Board"}, {"n": "Sally Moss", "r": "Sumter County School Board"}, {"n": "William Farmer", "r": "Sheriff, Sumter County"}, {"n": "William Keen", "r": "Supervisor of Elections, Sumter County"}], "districts": {"cd": [{"d": "FL-11", "rep": "Daniel Webster", "w": 0.995}], "sh": [{"d": "FL House District 52", "rep": "Samantha Scott", "w": 1.0}], "ss": [{"d": "FL Senate District 11", "rep": "Ralph Massullo", "w": 1.0}]}, "munis": [{"m": "Bushnell", "p": [{"n": "Dale Barnes", "r": "Bushnell City Council"}, {"n": "Dale Swain", "r": "Bushnell City Council"}, {"n": "Jessie Simmons", "r": "Mayor of Bushnell"}, {"n": "Karen Davis", "r": "Bushnell City Council"}, {"n": "Victoria Summerlin", "r": "Bushnell City Council"}]}, {"m": "Center Hill", "p": [{"n": "Billy Bowles", "r": "Center Hill City Council"}, {"n": "Dan Shimasaki", "r": "Center Hill City Council"}, {"n": "Donnie Buckner", "r": "Center Hill City Council"}, {"n": "Ginger Howard", "r": "Mayor of Center Hill"}, {"n": "Jack Nash", "r": "Center Hill City Council"}, {"n": "Tonota Parker", "r": "Center Hill City Council"}]}, {"m": "Coleman", "p": [{"n": "Charles Felton", "r": "Coleman City Council"}, {"n": "James Sears", "r": "Coleman City Council"}, {"n": "Ke'Marein Williams", "r": "Coleman City Council"}, {"n": "Mary Stone", "r": "Coleman City Council"}, {"n": "Milton Hill", "r": "Mayor of Coleman"}, {"n": "Sonia Shearer", "r": "Coleman City Council"}]}, {"m": "Webster", "p": [{"n": "Allen Dorsey", "r": "Webster City Council"}, {"n": "Ana Vigoa", "r": "Mayor of Webster"}, {"n": "Loretta Ramirez", "r": "Webster City Council"}, {"n": "Nancy Cherry", "r": "Webster City Council"}, {"n": "Shadae Solomon", "r": "Webster City Council"}]}, {"m": "Wildwood", "p": [{"n": "Ed Wolf", "r": "Mayor of Wildwood"}, {"n": "Joe Elliott", "r": "Wildwood City Council"}, {"n": "Julian A. Green", "r": "Wildwood City Council"}, {"n": "Marcos Flores", "r": "Wildwood City Council"}, {"n": "Pamala Harrison-Bivins", "r": "Wildwood City Council"}]}], "slug": "sumter"}, "12121": {"county": [{"n": "Barry Baker", "r": "Clerk of Court, Suwannee County"}, {"n": "Edward DaSilva", "r": "Suwannee County School Board"}, {"n": "Franklin White", "r": "Commissioner, Suwannee County"}, {"n": "Jennifer Kinsey", "r": "Supervisor of Elections, Suwannee County"}, {"n": "Lamar Jenkins", "r": "Property Appraiser, Suwannee County"}, {"n": "Leo Mobley", "r": "Commissioner, Suwannee County"}, {"n": "Lesley Fry", "r": "Suwannee County School Board"}, {"n": "Maurice Perkins", "r": "Commissioner, Suwannee County"}, {"n": "Norman Crawford", "r": "Suwannee County School Board"}, {"n": "Richard Gamble", "r": "Property Appraiser, Suwannee County"}, {"n": "Ronald White", "r": "Suwannee County School Board"}, {"n": "Samuel St. John", "r": "Sheriff, Suwannee County"}, {"n": "Sharon Jordan", "r": "Tax Collector, Suwannee County"}, {"n": "Tim Alcorn", "r": "Suwannee County School Board"}, {"n": "Travis Land", "r": "Commissioner, Suwannee County"}, {"n": "William Hale", "r": "Commissioner, Suwannee County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 0.999}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 1.0}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 1.0}]}, "munis": [{"m": "Branford", "p": [{"n": "Alice Childress", "r": "Branford City Council"}, {"n": "Jay Hatch", "r": "Branford City Council"}, {"n": "Ken Saunders", "r": "Mayor of Branford"}, {"n": "Kevin Knighton", "r": "Branford City Council"}, {"n": "Tera Kelley", "r": "Branford City Council"}]}, {"m": "Live Oak", "p": [{"n": "David Alford", "r": "Live Oak City Council"}, {"n": "Frank C. Davis", "r": "Mayor of Live Oak"}, {"n": "Gladys Owens", "r": "Live Oak City Council"}, {"n": "Matthew Campbell", "r": "Live Oak City Council"}, {"n": "Tommie Jefferson", "r": "Live Oak City Council"}, {"n": "Vanessa Brown Robinson", "r": "Live Oak City Council"}]}], "slug": "suwannee"}, "12123": {"county": [{"n": "Annie Mae Murphy", "r": "Clerk of Court, Taylor County"}, {"n": "Bonnie Sue Agner", "r": "Taylor County School Board"}, {"n": "Brenda Carlton", "r": "Taylor County School Board"}, {"n": "Bruce Ratliff", "r": "Property Appraiser, Taylor County"}, {"n": "Dana Southerland", "r": "Supervisor of Elections, Taylor County"}, {"n": "Danny Lundy", "r": "Taylor County School Board"}, {"n": "Deidra Dunnell", "r": "Taylor County School Board"}, {"n": "Gary Knowles", "r": "Clerk of Court, Taylor County"}, {"n": "Jamie English", "r": "Commissioner, Taylor County"}, {"n": "Jeanne Ellen Mathis", "r": "Taylor County School Board"}, {"n": "Jim Moody", "r": "Commissioner, Taylor County"}, {"n": "Mark Wiggins", "r": "Tax Collector, Taylor County"}, {"n": "Michael Newman", "r": "Commissioner, Taylor County"}, {"n": "Pam Feagle", "r": "Commissioner, Taylor County"}, {"n": "Shawna Beach", "r": "Property Appraiser, Taylor County"}, {"n": "Thomas Demps", "r": "Commissioner, Taylor County"}, {"n": "Wayne Padgett", "r": "Sheriff, Taylor County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.696}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.697}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.697}]}, "munis": [{"m": "Perry", "p": [{"n": "Diane C. Landry", "r": "Perry City Council"}, {"n": "Shirlie Hampton", "r": "Perry City Council"}, {"n": "Venita Woodfaulk", "r": "Perry City Council"}, {"n": "Ward Ketring", "r": "Mayor of Perry"}, {"n": "William E. Brynes", "r": "Perry City Council"}]}], "slug": "taylor"}, "12125": {"county": [{"n": "Brad Whitehead", "r": "Sheriff, Union County"}, {"n": "Bruce Dukes", "r": "Property Appraiser, Union County"}, {"n": "Channing Dobbs", "r": "Commissioner, Union County"}, {"n": "Christopher Hodgson", "r": "Union County School Board"}, {"n": "Curtis Clyatt", "r": "Union County School Board"}, {"n": "Deborah Osborne", "r": "Supervisor of Elections, Union County"}, {"n": "Donna Jackson", "r": "Commissioner, Union County"}, {"n": "James Tallman", "r": "Commissioner, Union County"}, {"n": "Kellie Rhoades", "r": "Clerk of Court, Union County"}, {"n": "Lisa Johnson", "r": "Tax Collector, Union County"}, {"n": "Mac Johns", "r": "Commissioner, Union County"}, {"n": "Melissa McNeal", "r": "Commissioner, Union County"}, {"n": "Rebekah G. Raulerson", "r": "Union County School Board"}, {"n": "Russell Gordon Jr.", "r": "Union County School Board"}, {"n": "Terra T Johnson", "r": "Union County School Board"}, {"n": "Travis Croft", "r": "Commissioner, Union County"}], "districts": {"cd": [{"d": "FL-03", "rep": "Kat Cammack", "w": 1.0}], "sh": [{"d": "FL House District 10", "rep": "Chuck Brannan", "w": 1.0}], "ss": [{"d": "FL Senate District 6", "rep": "Jennifer Bradley", "w": 1.0}]}, "munis": [{"m": "Lake Butler", "p": [{"n": "Annette G. Redman", "r": "Lake Butler City Council"}, {"n": "Fred Sirmones", "r": "Lake Butler City Council"}, {"n": "Jill Melissa Hendrix", "r": "Mayor of Lake Butler"}, {"n": "Joe Stephenson", "r": "Lake Butler City Council"}, {"n": "Rondoll Huggins", "r": "Lake Butler City Council"}]}, {"m": "Raiford", "p": [{"n": "Benita Griffis", "r": "Raiford City Council"}, {"n": "Deana Rainey", "r": "Raiford City Council"}, {"n": "Lamar Griffis", "r": "Mayor of Raiford"}, {"n": "Randall Griffis", "r": "Raiford City Council"}, {"n": "Sherry Richard", "r": "Raiford City Council"}]}, {"m": "Worthington Springs", "p": [{"n": "Nita Elixson", "r": "Worthington Springs City Council"}, {"n": "Pam Williams", "r": "Worthington Springs City Council"}, {"n": "Shane Massey", "r": "Worthington Springs City Council"}, {"n": "Travis Hemphill", "r": "Worthington Springs City Council"}]}], "slug": "union"}, "12127": {"county": [{"n": "Danny Robins", "r": "Council Member, Volusia County"}, {"n": "David Santiago", "r": "Council Member, Volusia County"}, {"n": "Don Dempsey", "r": "Council Member, Volusia County"}, {"n": "Donna Brosemer", "r": "Volusia County School Board"}, {"n": "Ed Kelley", "r": "Council Member, Volusia County"}, {"n": "Jake Johansson", "r": "Council Member, Volusia County"}, {"n": "Jamie Haynes", "r": "Volusia County School Board"}, {"n": "Jeff Brower", "r": "Council Member, Volusia County"}, {"n": "Jessie Thompson", "r": "Volusia County School Board"}, {"n": "Krista Goodrich", "r": "Volusia County School Board"}, {"n": "Laura Roth", "r": "Clerk of Court, Volusia County"}, {"n": "Laurence Bartlett", "r": "Property Appraiser, Volusia County"}, {"n": "Lisa Lewis", "r": "Supervisor of Elections, Volusia County"}, {"n": "Matt Reinhart", "r": "Council Member, Volusia County"}, {"n": "Michael Chitwood", "r": "Sheriff, Volusia County"}, {"n": "Rhonda Orr", "r": "Tax Collector, Volusia County"}, {"n": "Ruben Colon", "r": "Volusia County School Board"}, {"n": "Troy Kent", "r": "Council Member, Volusia County"}, {"n": "Will Roberts", "r": "Tax Collector, Volusia County"}], "districts": {"cd": [{"d": "FL-06", "rep": "Randy Fine", "w": 0.469}, {"d": "FL-07", "rep": "Cory Mills", "w": 0.415}], "sh": [{"d": "FL House District 30", "rep": "Chase Tramont", "w": 0.256}, {"d": "FL House District 27", "rep": "Richard Gentry", "w": 0.247}, {"d": "FL House District 29", "rep": "Webster Barnaby", "w": 0.217}, {"d": "FL House District 28", "rep": "Bill Partington", "w": 0.164}], "ss": [{"d": "FL Senate District 8", "rep": "Tommy Wright", "w": 0.697}, {"d": "FL Senate District 7", "rep": "Tom Leek", "w": 0.187}]}, "munis": [{"m": "Daytona Beach", "p": [{"n": "Dannette Henry", "r": "Daytona Beach City Council"}, {"n": "Derrick L. Henry", "r": "Mayor of Daytona Beach"}, {"n": "Ken Strickland", "r": "Daytona Beach City Council"}, {"n": "Monica Paris", "r": "Daytona Beach City Council"}, {"n": "Paula R. Reed", "r": "Daytona Beach City Council"}, {"n": "Quanita May", "r": "Daytona Beach City Council"}, {"n": "Stacy Cantu", "r": "Daytona Beach City Council"}]}, {"m": "Daytona Beach Shores", "p": [{"n": "Chris Conomos", "r": "Daytona Beach Shores City Council"}, {"n": "Mark Card", "r": "Daytona Beach Shores City Council"}, {"n": "Michael Politis", "r": "Daytona Beach Shores City Council"}, {"n": "Nancy J. Miller", "r": "Mayor of Daytona Beach Shores"}, {"n": "Stephen Dembinsky", "r": "Daytona Beach Shores City Council"}]}, {"m": "DeBary", "p": [{"n": "Jim Pappalardo", "r": "DeBary City Council"}, {"n": "Karen Chasez", "r": "Mayor of DeBary"}, {"n": "Patricia Stevenson", "r": "DeBary City Council"}, {"n": "Phyllis Butlien", "r": "DeBary City Council"}, {"n": "William Sell", "r": "DeBary City Council"}]}, {"m": "DeLand", "p": [{"n": "Christopher M. Cloudman", "r": "Mayor of DeLand"}, {"n": "Dan F. Reed", "r": "DeLand City Council"}, {"n": "Jessica Davis", "r": "DeLand City Council"}, {"n": "Kevin Reid", "r": "DeLand City Council"}, {"n": "Richard C. Paiva", "r": "DeLand City Council"}]}, {"m": "Deltona", "p": [{"n": "Dana McCool", "r": "Deltona City Council"}, {"n": "Davison Heriot", "r": "Deltona City Council"}, {"n": "Emma Santiago", "r": "Deltona City Council"}, {"n": "Julio Shimkus", "r": "Deltona City Council"}, {"n": "Maritza Avila-Vazquez", "r": "Deltona City Council"}, {"n": "Santiago Avila", "r": "Mayor of Deltona"}, {"n": "Stephen Colwell", "r": "Deltona City Council"}]}, {"m": "Edgewater", "p": [{"n": "Debbie Dolbow", "r": "Edgewater City Council"}, {"n": "Diezel DePew", "r": "Mayor of Edgewater"}, {"n": "Mike Thomas", "r": "Edgewater City Council"}]}, {"m": "Holly Hill", "p": [{"n": "Debra Snow", "r": "Holly Hill City Council"}, {"n": "Jeffrey DeLanoy", "r": "Holly Hill City Council"}, {"n": "John Penny", "r": "Mayor of Holly Hill"}, {"n": "Penny Currie", "r": "Holly Hill City Council"}, {"n": "Roy Johnson", "r": "Holly Hill City Council"}]}, {"m": "Lake Helen", "p": [{"n": "Charlene Bishop", "r": "Lake Helen City Council"}, {"n": "Earl Farmer", "r": "Lake Helen City Council"}, {"n": "Heather Rutledge", "r": "Lake Helen City Council"}, {"n": "Roger Eckert", "r": "Mayor of Lake Helen"}, {"n": "Sean Abshire", "r": "Lake Helen City Council"}]}, {"m": "New Smyrna Beach", "p": [{"n": "Andrew J. McGuirk", "r": "New Smyrna Beach City Council"}, {"n": "Brian Ashley", "r": "New Smyrna Beach City Council"}, {"n": "Fred Cleveland", "r": "Mayor of New Smyrna Beach"}, {"n": "Lisa Martin", "r": "New Smyrna Beach City Council"}, {"n": "Valli Perrine", "r": "New Smyrna Beach City Council"}]}, {"m": "Oak Hill", "p": [{"n": "Carrie Werning", "r": "Oak Hill City Council"}, {"n": "Joseph Catigano", "r": "Oak Hill City Council"}, {"n": "Linda Hyatt", "r": "Oak Hill City Council"}, {"n": "Mark Drollinger", "r": "Oak Hill City Council"}, {"n": "Ricky Taylor", "r": "Mayor of Oak Hill"}]}, {"m": "Orange City", "p": [{"n": "Alisa Stafford", "r": "Orange City City Council"}, {"n": "Anthony J. Pupello", "r": "Orange City City Council"}, {"n": "Fran Darms", "r": "Orange City City Council"}, {"n": "Harold Grimm", "r": "Orange City City Council"}, {"n": "Kelli Marks", "r": "Mayor of Orange City"}, {"n": "Lisa Richardson", "r": "Orange City City Council"}]}, {"m": "Ormond Beach", "p": [{"n": "Harold Briley", "r": "Ormond Beach City Council"}, {"n": "Jason Leslie", "r": "Mayor of Ormond Beach"}, {"n": "Kristin Deaton", "r": "Ormond Beach City Council"}, {"n": "Travis Sargent", "r": "Ormond Beach City Council"}]}, {"m": "Pierson", "p": [{"n": "Brandy Peterson", "r": "Pierson City Council"}, {"n": "David Gray Leonhard", "r": "Mayor of Pierson"}, {"n": "James Anderson", "r": "Pierson City Council"}, {"n": "Linnie R. Richardson", "r": "Pierson City Council"}, {"n": "Robert F. Greenlund", "r": "Pierson City Council"}]}, {"m": "Ponce Inlet", "p": [{"n": "Bill Milano", "r": "Ponce Inlet City Council"}, {"n": "Gary Smith", "r": "Ponce Inlet City Council"}, {"n": "Joe Villanella", "r": "Ponce Inlet City Council"}, {"n": "Lois Paritsky", "r": "Mayor of Ponce Inlet"}, {"n": "Skip White", "r": "Ponce Inlet City Council"}]}, {"m": "Port Orange", "p": [{"n": "Jonathan Foley", "r": "Port Orange City Council"}, {"n": "Lance Green", "r": "Port Orange City Council"}, {"n": "Scott Stiltner", "r": "Mayor of Port Orange"}, {"n": "Shawn Goepfert", "r": "Port Orange City Council"}, {"n": "Tracy Grubbs", "r": "Port Orange City Council"}]}, {"m": "South Daytona", "p": [{"n": "Brandon L. Young", "r": "South Daytona City Council"}, {"n": "Douglas Quartier", "r": "South Daytona City Council"}, {"n": "Eric Sander", "r": "South Daytona City Council"}, {"n": "William C. Hall", "r": "Mayor of South Daytona"}]}], "slug": "volusia"}, "12129": {"county": [{"n": "Angie Nichols", "r": "Wakulla County School Board"}, {"n": "Brent Thurmond", "r": "Clerk of Court, Wakulla County"}, {"n": "Cale Langston", "r": "Wakulla County School Board"}, {"n": "Cheryll Olah", "r": "Tax Collector, Wakulla County"}, {"n": "Chuck Hess", "r": "Commissioner, Wakulla County"}, {"n": "Donnie Sparkman", "r": "Property Appraiser, Wakulla County"}, {"n": "Eddie Hand", "r": "Wakulla County School Board"}, {"n": "Edward Brimner", "r": "Property Appraiser, Wakulla County"}, {"n": "Fred Nichols", "r": "Commissioner, Wakulla County"}, {"n": "Greg James", "r": "Clerk of Court, Wakulla County"}, {"n": "Jared Miller", "r": "Sheriff, Wakulla County"}, {"n": "Joe Morgan", "r": "Supervisor of Elections, Wakulla County"}, {"n": "Josh Brown", "r": "Wakulla County School Board"}, {"n": "Laura Lawhon", "r": "Wakulla County School Board"}, {"n": "Lisa Craze", "r": "Tax Collector, Wakulla County"}, {"n": "Mike Kemp", "r": "Commissioner, Wakulla County"}, {"n": "Quincee Messersmith", "r": "Commissioner, Wakulla County"}, {"n": "Ralph Thomas", "r": "Commissioner, Wakulla County"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.69}], "sh": [{"d": "FL House District 7", "rep": "Jason Shoaf", "w": 0.688}], "ss": [{"d": "FL Senate District 3", "rep": "Corey Simon", "w": 0.688}]}, "munis": [{"m": "Sopchoppy", "p": [{"n": "Fred McClendon", "r": "Sopchoppy City Council"}, {"n": "Lara Edwards", "r": "Sopchoppy City Council"}, {"n": "Leonard Tartt", "r": "Mayor of Sopchoppy"}, {"n": "Mary K. Westmark", "r": "Sopchoppy City Council"}, {"n": "Nathan Lewis", "r": "Sopchoppy City Council"}]}, {"m": "St. Marks", "p": [{"n": "Crystal Wonsch", "r": "St. Marks City Council"}, {"n": "John Gunter", "r": "St. Marks City Council"}, {"n": "Sharon Rudd", "r": "St. Marks City Council"}, {"n": "Tim Lawrence", "r": "Mayor of St. Marks"}]}], "slug": "wakulla"}, "12131": {"county": [{"n": "Alex Alford", "r": "Clerk of Court, Walton County"}, {"n": "Brad Drake", "r": "Commissioner, Walton County"}, {"n": "Crystal Sconiers", "r": "Clerk of Court, Walton County"}, {"n": "Dan Curry", "r": "Commissioner, Walton County"}, {"n": "Danny Glidewell", "r": "Commissioner, Walton County"}, {"n": "Donna Johns", "r": "Commissioner, Walton County"}, {"n": "Gary Gregor", "r": "Property Appraiser, Walton County"}, {"n": "Jason Catalano", "r": "Walton County School Board"}, {"n": "Jeri Michie", "r": "Walton County School Board"}, {"n": "Kim Kirby", "r": "Walton County School Board"}, {"n": "Michael Adkinson", "r": "Sheriff, Walton County"}, {"n": "Rhonda Skipper", "r": "Tax Collector, Walton County"}, {"n": "Robert Beasley", "r": "Supervisor of Elections, Walton County"}, {"n": "Tammy Smith", "r": "Walton County School Board"}, {"n": "Tony Anderson", "r": "Commissioner, Walton County"}, {"n": "William \"Bill\" Eddins Jr", "r": "Walton County School Board"}, {"n": "William McCormick", "r": "Commissioner, Walton County"}], "districts": {"cd": [{"d": "FL-01", "rep": "Jimmy Patronis", "w": 0.485}, {"d": "FL-02", "rep": "Neal P. Dunn", "w": 0.33}], "sh": [{"d": "FL House District 5", "rep": "Shane Abbott", "w": 0.815}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 0.815}]}, "munis": [{"m": "DeFuniak Springs", "p": [{"n": "Amy Heavilin", "r": "DeFuniak Springs City Council"}, {"n": "Anthony Vallee", "r": "DeFuniak Springs City Council"}, {"n": "Josh Sconiers", "r": "DeFuniak Springs City Council"}, {"n": "Robert A. Campbell", "r": "Mayor of DeFuniak Springs"}, {"n": "Todd Bierbaum", "r": "DeFuniak Springs City Council"}]}, {"m": "Freeport", "p": [{"n": "Eddie E. Farris", "r": "Freeport City Council"}, {"n": "Elizabeth Brannon", "r": "Freeport City Council"}, {"n": "Elizabeth Haffner", "r": "Freeport City Council"}, {"n": "Heather Hurst", "r": "Freeport City Council"}, {"n": "Sidney R. Barley", "r": "Mayor of Freeport"}, {"n": "Tracey Dickey", "r": "Freeport City Council"}]}, {"m": "Paxton", "p": [{"n": "Donna Smith", "r": "Mayor of Paxton"}, {"n": "Doug Constantine", "r": "Paxton City Council"}, {"n": "Jenice Armstrong", "r": "Paxton City Council"}, {"n": "Perry Thomas", "r": "Paxton City Council"}, {"n": "Travis McMillian", "r": "Paxton City Council"}]}], "slug": "walton"}, "12133": {"county": [{"n": "Alan Bush", "r": "Commissioner, Washington County"}, {"n": "Carol Rudd", "r": "Supervisor of Elections, Washington County"}, {"n": "Cheryl Ann Williams", "r": "Washington County School Board"}, {"n": "Cynthia \"Cindy\" Johnson Brown", "r": "Washington County School Board"}, {"n": "David Corbin", "r": "Commissioner, Washington County"}, {"n": "David Pettis", "r": "Commissioner, Washington County"}, {"n": "Deidra Pettis", "r": "Supervisor of Elections, Washington County"}, {"n": "Gil Carter", "r": "Property Appraiser, Washington County"}, {"n": "John Hawkins", "r": "Commissioner, Washington County"}, {"n": "Ken Naker", "r": "Tax Collector, Washington County"}, {"n": "Kevin Crews", "r": "Sheriff, Washington County"}, {"n": "Lora Bell", "r": "Clerk of Court, Washington County"}, {"n": "Lou Cleveland", "r": "Washington County School Board"}, {"n": "Milton L Brown", "r": "Washington County School Board"}, {"n": "Renea Peters", "r": "Property Appraiser, Washington County"}, {"n": "Wesley Griffin", "r": "Commissioner, Washington County"}, {"n": "Will \"Tonka\" Taylor", "r": "Washington County School Board"}], "districts": {"cd": [{"d": "FL-02", "rep": "Neal P. Dunn", "w": 1.0}], "sh": [{"d": "FL House District 5", "rep": "Shane Abbott", "w": 1.0}], "ss": [{"d": "FL Senate District 2", "rep": "Jay Trumbull", "w": 1.0}]}, "munis": [{"m": "Caryville", "p": [{"n": "Chris Callahan", "r": "Caryville City Council"}, {"n": "Larry Palmer", "r": "Caryville City Council"}, {"n": "Mary Pate", "r": "Caryville City Council"}, {"n": "Michael Brandon Sasser", "r": "Caryville City Council"}, {"n": "Timothy Williams", "r": "Caryville City Council"}]}, {"m": "Chipley", "p": [{"n": "Cheryl McCall", "r": "Chipley City Council"}, {"n": "Kevin Russell", "r": "Chipley City Council"}, {"n": "Leonard Blount", "r": "Chipley City Council"}, {"n": "Linda Cain", "r": "Chipley City Council"}, {"n": "Tracy Andrews", "r": "Mayor of Chipley"}]}, {"m": "Ebro", "p": [{"n": "Charles Scott", "r": "Ebro City Council"}, {"n": "David Evans", "r": "Mayor of Ebro"}, {"n": "Gina Rutherford", "r": "Ebro City Council"}, {"n": "Jordan Gambrell", "r": "Ebro City Council"}, {"n": "Regina Kincaid", "r": "Ebro City Council"}, {"n": "Sally Young", "r": "Ebro City Council"}]}, {"m": "Vernon", "p": [{"n": "Angel LeCompte", "r": "Mayor of Vernon"}, {"n": "Becky Baxley", "r": "Vernon City Council"}, {"n": "F. Brittan Brock", "r": "Vernon City Council"}, {"n": "Frank Zurica", "r": "Vernon City Council"}, {"n": "Gwendolyn March", "r": "Vernon City Council"}, {"n": "Tina Sloan", "r": "Vernon City Council"}]}, {"m": "Wausau", "p": [{"n": "Charles W. Park", "r": "Wausau City Council"}, {"n": "Joe Phillips", "r": "Wausau City Council"}, {"n": "Judy Carter", "r": "Wausau City Council"}, {"n": "Roger D. Hagan", "r": "Mayor of Wausau"}, {"n": "Shirley Rightenburg", "r": "Wausau City Council"}]}], "slug": "washington"}, "13001": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.996}], "sh": [{"d": "GA House District 157", "rep": "Bill Werkheiser", "w": 0.622}, {"d": "GA House District 178", "rep": "Steven Meeks", "w": 0.378}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "appling"}, "13003": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.999}], "sh": [{"d": "GA House District 176", "rep": "James Burchett", "w": 1.0}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 1.0}]}, "munis": [], "slug": "atkinson"}, "13005": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.998}], "sh": [{"d": "GA House District 178", "rep": "Steven Meeks", "w": 1.0}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "bacon"}, "13007": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "baker"}, "13009": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.994}], "sh": [{"d": "GA House District 149", "rep": "Floyd Griffin", "w": 0.675}, {"d": "GA House District 128", "rep": "Mack Jackson", "w": 0.325}], "ss": [{"d": "GA Senate District 25", "rep": "Rick Williams", "w": 1.0}]}, "munis": [], "slug": "baldwin"}, "13011": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.999}], "sh": [{"d": "GA House District 32", "rep": "Chris Erwin", "w": 1.0}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 1.0}]}, "munis": [], "slug": "banks"}, "13013": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.994}, {"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.006}], "sh": [{"d": "GA House District 119", "rep": "Holt Persinger", "w": 0.655}, {"d": "GA House District 104", "rep": "Chuck Efstration", "w": 0.257}, {"d": "GA House District 120", "rep": "Houston Gaines", "w": 0.087}], "ss": [{"d": "GA Senate District 47", "rep": "Frank Ginn", "w": 0.451}, {"d": "GA Senate District 45", "rep": "Clint Dixon", "w": 0.394}, {"d": "GA Senate District 46", "rep": "Bill Cowsert", "w": 0.154}]}, "munis": [], "slug": "barrow"}, "13015": {"county": [], "districts": {"cd": [{"d": "GA-11", "rep": "Barry Loudermilk", "w": 0.999}], "sh": [{"d": "GA House District 14", "rep": "Mitchell Scoggins", "w": 0.688}, {"d": "GA House District 15", "rep": "Matthew Gambill", "w": 0.312}], "ss": [{"d": "GA Senate District 52", "rep": "Chuck Hufstetler", "w": 0.91}, {"d": "GA Senate District 37", "rep": "Ed Setzler", "w": 0.09}]}, "munis": [{"m": "Cartersville", "p": [{"n": "Matt Santini", "r": "Mayor, Cartersville, GA"}]}], "slug": "bartow"}, "13017": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 156", "rep": "Leesa Hagan", "w": 0.627}, {"d": "GA House District 148", "rep": "Noel Williams", "w": 0.373}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [{"m": "Fitzgerald", "p": [{"n": "Jason Holt", "r": "Mayor, Fitzgerald, GA"}]}], "slug": "ben-hill"}, "13019": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 170", "rep": "Jaclyn Ford", "w": 0.999}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 0.999}]}, "munis": [], "slug": "berrien"}, "13021": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.767}, {"d": "GA-08", "rep": "Austin Scott", "w": 0.233}], "sh": [{"d": "GA House District 145", "rep": "Tangie Herring", "w": 0.395}, {"d": "GA House District 143", "rep": "Nissa Jones", "w": 0.333}, {"d": "GA House District 142", "rep": "Miriam Paris", "w": 0.165}, {"d": "GA House District 149", "rep": "Floyd Griffin", "w": 0.058}, {"d": "GA House District 144", "rep": "Dale Washburn", "w": 0.048}], "ss": [{"d": "GA Senate District 26", "rep": "David Lucas", "w": 0.498}, {"d": "GA Senate District 18", "rep": "Steven McNeel", "w": 0.454}, {"d": "GA Senate District 25", "rep": "Rick Williams", "w": 0.048}]}, "munis": [], "slug": "bibb"}, "13023": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 133", "rep": "Danny Mathis", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "bleckley"}, "13025": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 1.0}], "sh": [{"d": "GA House District 174", "rep": "John Corbett", "w": 0.999}], "ss": [{"d": "GA Senate District 3", "rep": "Mike Hodges", "w": 1.0}]}, "munis": [], "slug": "brantley"}, "13027": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.998}], "sh": [{"d": "GA House District 175", "rep": "John LaHood", "w": 1.0}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 0.999}]}, "munis": [], "slug": "brooks"}, "13029": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.995}], "sh": [{"d": "GA House District 164", "rep": "Ron Stephens", "w": 0.502}, {"d": "GA House District 160", "rep": "Lehman Franklin", "w": 0.31}, {"d": "GA House District 166", "rep": "Jesse Petrea", "w": 0.182}], "ss": [{"d": "GA Senate District 1", "rep": "Ben Watson", "w": 0.996}]}, "munis": [], "slug": "bryan"}, "13031": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 160", "rep": "Lehman Franklin", "w": 0.519}, {"d": "GA House District 158", "rep": "Butch Parrish", "w": 0.265}, {"d": "GA House District 159", "rep": "Jon Burns", "w": 0.215}], "ss": [{"d": "GA Senate District 4", "rep": "Billy Hickman", "w": 1.0}]}, "munis": [{"m": "Statesboro", "p": [{"n": "Jonathan M. McCollar", "r": "Mayor, Statesboro, GA"}]}], "slug": "bulloch"}, "13033": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.999}], "sh": [{"d": "GA House District 126", "rep": "L.C. Myles", "w": 1.0}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [], "slug": "burke"}, "13035": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 118", "rep": "Clint Crowe", "w": 1.0}], "ss": [{"d": "GA Senate District 25", "rep": "Rick Williams", "w": 0.999}]}, "munis": [], "slug": "butts"}, "13037": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "calhoun"}, "13039": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.874}], "sh": [{"d": "GA House District 180", "rep": "Steven Sainz", "w": 0.876}], "ss": [{"d": "GA Senate District 3", "rep": "Mike Hodges", "w": 0.877}]}, "munis": [], "slug": "camden"}, "13043": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 158", "rep": "Butch Parrish", "w": 1.0}], "ss": [{"d": "GA Senate District 4", "rep": "Billy Hickman", "w": 1.0}]}, "munis": [], "slug": "candler"}, "13045": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.999}], "sh": [{"d": "GA House District 18", "rep": "Tyler Smith", "w": 0.342}, {"d": "GA House District 72", "rep": "David Huddleston", "w": 0.287}, {"d": "GA House District 71", "rep": "Jutt Howard", "w": 0.272}, {"d": "GA House District 70", "rep": "Lynn Smith", "w": 0.098}], "ss": [{"d": "GA Senate District 6", "rep": "Matt Brass", "w": 0.558}, {"d": "GA Senate District 30", "rep": "Tim Bearden", "w": 0.442}]}, "munis": [{"m": "Carrollton", "p": [{"n": "Betty B. Cason", "r": "Mayor, Carrollton, GA"}]}], "slug": "carroll"}, "13047": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 1.0}], "sh": [{"d": "GA House District 3", "rep": "Mitchell Horner", "w": 0.748}, {"d": "GA House District 2", "rep": "Steve Tarvin", "w": 0.252}], "ss": [{"d": "GA Senate District 53", "rep": "Lanny Thomas", "w": 1.0}]}, "munis": [], "slug": "catoosa"}, "13049": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.998}], "sh": [{"d": "GA House District 174", "rep": "John Corbett", "w": 0.999}], "ss": [{"d": "GA Senate District 3", "rep": "Mike Hodges", "w": 0.999}]}, "munis": [], "slug": "charlton"}, "13051": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.781}], "sh": [{"d": "GA House District 166", "rep": "Jesse Petrea", "w": 0.338}, {"d": "GA House District 164", "rep": "Ron Stephens", "w": 0.162}, {"d": "GA House District 161", "rep": "Bill Hitchens", "w": 0.088}, {"d": "GA House District 162", "rep": "Carl Gilliard", "w": 0.08}, {"d": "GA House District 165", "rep": "Edna Jackson", "w": 0.059}, {"d": "GA House District 163", "rep": "Anne Westbrook", "w": 0.056}], "ss": [{"d": "GA Senate District 1", "rep": "Ben Watson", "w": 0.487}, {"d": "GA Senate District 2", "rep": "Derek Mallow", "w": 0.244}, {"d": "GA Senate District 4", "rep": "Billy Hickman", "w": 0.052}]}, "munis": [{"m": "Savannah", "p": [{"n": "Edna Jackson", "r": "Mayor, Savannah, GA"}]}], "slug": "chatham"}, "13053": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.996}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 0.999}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 0.999}]}, "munis": [], "slug": "chattahoochee"}, "13055": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 1.0}], "sh": [{"d": "GA House District 12", "rep": "Eddie Lumsden", "w": 1.0}], "ss": [{"d": "GA Senate District 53", "rep": "Lanny Thomas", "w": 1.0}]}, "munis": [], "slug": "chattooga"}, "13057": {"county": [], "districts": {"cd": [{"d": "GA-11", "rep": "Barry Loudermilk", "w": 0.688}, {"d": "GA-07", "rep": "Richard McCormick", "w": 0.312}], "sh": [{"d": "GA House District 23", "rep": "Bill Fincher", "w": 0.273}, {"d": "GA House District 14", "rep": "Mitchell Scoggins", "w": 0.193}, {"d": "GA House District 21", "rep": "Brad Thomas", "w": 0.163}, {"d": "GA House District 22", "rep": "Jordan Ridley", "w": 0.127}, {"d": "GA House District 11", "rep": "Rick Jasperse", "w": 0.1}, {"d": "GA House District 20", "rep": "Charlice Byrd", "w": 0.077}, {"d": "GA House District 47", "rep": "Jan Jones", "w": 0.029}, {"d": "GA House District 44", "rep": "Don Parsons", "w": 0.023}, {"d": "GA House District 46", "rep": "John Carson", "w": 0.015}], "ss": [{"d": "GA Senate District 21", "rep": "Jason Dickerson", "w": 0.708}, {"d": "GA Senate District 32", "rep": "Kay Kirkpatrick", "w": 0.204}, {"d": "GA Senate District 56", "rep": "John Albers", "w": 0.089}]}, "munis": [{"m": "Canton", "p": [{"n": "Bill Grant", "r": "Mayor, Canton, GA"}]}, {"m": "Woodstock", "p": [{"n": "Michael Caldwell", "r": "Mayor, Woodstock, GA"}]}], "slug": "cherokee"}, "13059": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 122", "rep": "Spencer Frye", "w": 0.39}, {"d": "GA House District 121", "rep": "Eric Gisler", "w": 0.234}, {"d": "GA House District 120", "rep": "Houston Gaines", "w": 0.211}, {"d": "GA House District 124", "rep": "Trey Rhodes", "w": 0.165}], "ss": [{"d": "GA Senate District 47", "rep": "Frank Ginn", "w": 0.628}, {"d": "GA Senate District 46", "rep": "Bill Cowsert", "w": 0.371}]}, "munis": [], "slug": "clarke"}, "13061": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.993}, {"d": "AL-01", "rep": "Barry Moore", "w": 0.006}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "clay"}, "13063": {"county": [], "districts": {"cd": [{"d": "GA-13", "rep": "Vacant", "w": 0.532}, {"d": "GA-05", "rep": "Nikema Williams", "w": 0.466}], "sh": [{"d": "GA House District 74", "rep": "Robert Flournoy", "w": 0.244}, {"d": "GA House District 77", "rep": "Rhonda Burnough", "w": 0.211}, {"d": "GA House District 76", "rep": "Sandra Scott", "w": 0.191}, {"d": "GA House District 75", "rep": "Eric Bell", "w": 0.167}, {"d": "GA House District 79", "rep": "Yasmin Neal", "w": 0.119}, {"d": "GA House District 78", "rep": "Demetrius Douglas", "w": 0.068}], "ss": [{"d": "GA Senate District 34", "rep": "Kenya Wicks", "w": 0.417}, {"d": "GA Senate District 17", "rep": "Gail Davenport", "w": 0.382}, {"d": "GA Senate District 44", "rep": "Elena Parent", "w": 0.2}]}, "munis": [], "slug": "clayton"}, "13065": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 174", "rep": "John Corbett", "w": 1.0}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 1.0}]}, "munis": [], "slug": "clinch"}, "13067": {"county": [], "districts": {"cd": [{"d": "GA-11", "rep": "Barry Loudermilk", "w": 0.416}, {"d": "GA-06", "rep": "Lucy McBath", "w": 0.347}, {"d": "GA-14", "rep": "Clay Fuller", "w": 0.236}], "sh": [{"d": "GA House District 36", "rep": "Ginny Ehrhart", "w": 0.12}, {"d": "GA House District 38", "rep": "David Wilkerson", "w": 0.114}, {"d": "GA House District 34", "rep": "Devan Seabaugh", "w": 0.108}, {"d": "GA House District 39", "rep": "Terry Cummings", "w": 0.085}, {"d": "GA House District 45", "rep": "Sharon Cooper", "w": 0.074}, {"d": "GA House District 37", "rep": "Mary Frances Williams", "w": 0.066}, {"d": "GA House District 35", "rep": "Lisa Campbell", "w": 0.065}, {"d": "GA House District 42", "rep": "Gabriel Sanchez", "w": 0.057}, {"d": "GA House District 41", "rep": "Michael Smith", "w": 0.056}, {"d": "GA House District 46", "rep": "John Carson", "w": 0.052}, {"d": "GA House District 43", "rep": "Solomon Adesanya", "w": 0.05}, {"d": "GA House District 44", "rep": "Don Parsons", "w": 0.048}, {"d": "GA House District 61", "rep": "Mekyah McQueen", "w": 0.036}, {"d": "GA House District 19", "rep": "Joseph Gullett", "w": 0.032}, {"d": "GA House District 22", "rep": "Jordan Ridley", "w": 0.027}, {"d": "GA House District 60", "rep": "Sheila Jones", "w": 0.011}], "ss": [{"d": "GA Senate District 37", "rep": "Ed Setzler", "w": 0.314}, {"d": "GA Senate District 33", "rep": "Doc Rhett", "w": 0.228}, {"d": "GA Senate District 28", "rep": "Donzella James", "w": 0.142}, {"d": "GA Senate District 32", "rep": "Kay Kirkpatrick", "w": 0.119}, {"d": "GA Senate District 56", "rep": "John Albers", "w": 0.109}, {"d": "GA Senate District 35", "rep": "Jaha Howard", "w": 0.089}]}, "munis": [{"m": "Acworth", "p": [{"n": "Tommy Allegood", "r": "Mayor, Acworth, GA"}]}, {"m": "Kennesaw", "p": [{"n": "Derek Easterling", "r": "Mayor, Kennesaw, GA"}]}, {"m": "Mableton", "p": [{"n": "Michael Owens", "r": "Mayor, Mableton, GA"}]}, {"m": "Marietta", "p": [{"n": "Steve Tumlin", "r": "Mayor, Marietta, GA"}]}, {"m": "Smyrna", "p": [{"n": "Derek Norton", "r": "Mayor, Smyrna, GA"}]}], "slug": "cobb"}, "13069": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 169", "rep": "Angie O'Steen", "w": 0.832}, {"d": "GA House District 176", "rep": "James Burchett", "w": 0.168}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 0.551}, {"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 0.449}]}, "munis": [], "slug": "coffee"}, "13071": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.999}], "sh": [{"d": "GA House District 172", "rep": "Chas Cannon", "w": 1.0}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 1.0}]}, "munis": [], "slug": "colquitt"}, "13073": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 125", "rep": "Gary Richardson", "w": 0.594}, {"d": "GA House District 123", "rep": "Rob Leverett", "w": 0.198}, {"d": "GA House District 131", "rep": "Rob Clifton", "w": 0.135}, {"d": "GA House District 127", "rep": "Mark Newton", "w": 0.072}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 0.699}, {"d": "GA Senate District 23", "rep": "Max Burns", "w": 0.301}]}, "munis": [], "slug": "columbia"}, "13075": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 172", "rep": "Chas Cannon", "w": 0.563}, {"d": "GA House District 170", "rep": "Jaclyn Ford", "w": 0.437}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 0.999}]}, "munis": [], "slug": "cook"}, "13077": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 1.0}], "sh": [{"d": "GA House District 136", "rep": "David Jenkins", "w": 0.411}, {"d": "GA House District 70", "rep": "Lynn Smith", "w": 0.325}, {"d": "GA House District 65", "rep": "Robert Dawson", "w": 0.111}, {"d": "GA House District 73", "rep": "Josh Bonner", "w": 0.091}, {"d": "GA House District 67", "rep": "Lydia Glaize", "w": 0.062}], "ss": [{"d": "GA Senate District 6", "rep": "Matt Brass", "w": 1.0}]}, "munis": [{"m": "Newnan", "p": [{"n": "Keith Brady", "r": "Mayor, Newnan, GA"}]}], "slug": "coweta"}, "13079": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.999}], "sh": [{"d": "GA House District 134", "rep": "Robert Dickey", "w": 0.999}], "ss": [{"d": "GA Senate District 18", "rep": "Steven McNeel", "w": 1.0}]}, "munis": [], "slug": "crawford"}, "13081": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.997}], "sh": [{"d": "GA House District 148", "rep": "Noel Williams", "w": 1.0}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [], "slug": "crisp"}, "13083": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 1.0}], "sh": [{"d": "GA House District 1", "rep": "Mike Cameron", "w": 1.0}], "ss": [{"d": "GA Senate District 53", "rep": "Lanny Thomas", "w": 1.0}]}, "munis": [], "slug": "dade"}, "13085": {"county": [], "districts": {"cd": [{"d": "GA-07", "rep": "Richard McCormick", "w": 0.996}], "sh": [{"d": "GA House District 9", "rep": "Will Wade", "w": 0.723}, {"d": "GA House District 7", "rep": "Johnny Chastain", "w": 0.277}], "ss": [{"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 1.0}]}, "munis": [], "slug": "dawson"}, "13087": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 171", "rep": "Joe Campbell", "w": 1.0}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 1.0}]}, "munis": [], "slug": "decatur"}, "13089": {"county": [], "districts": {"cd": [{"d": "GA-04", "rep": "Henry C. \"Hank\" Johnson, Jr.", "w": 0.719}, {"d": "GA-05", "rep": "Nikema Williams", "w": 0.24}, {"d": "GA-13", "rep": "Vacant", "w": 0.041}], "sh": [{"d": "GA House District 88", "rep": "Billy Mitchell", "w": 0.094}, {"d": "GA House District 90", "rep": "Saira Draper", "w": 0.088}, {"d": "GA House District 91", "rep": "Angela Moore", "w": 0.084}, {"d": "GA House District 87", "rep": "Viola Davis", "w": 0.07}, {"d": "GA House District 89", "rep": "Omari Crawford", "w": 0.065}, {"d": "GA House District 80", "rep": "Long Tran", "w": 0.065}, {"d": "GA House District 84", "rep": "Mary Margaret Oliver", "w": 0.062}, {"d": "GA House District 115", "rep": "Regina Lewis-Ward", "w": 0.061}, {"d": "GA House District 85", "rep": "Karla Drenner", "w": 0.061}, {"d": "GA House District 101", "rep": "Scott Holcomb", "w": 0.057}, {"d": "GA House District 86", "rep": "Imani Barnes", "w": 0.057}, {"d": "GA House District 95", "rep": "Dar'shun Kendrick", "w": 0.049}, {"d": "GA House District 83", "rep": "Karen Lupton", "w": 0.045}, {"d": "GA House District 94", "rep": "Venola Mason", "w": 0.044}, {"d": "GA House District 116", "rep": "El-Mahdi Holly", "w": 0.043}, {"d": "GA House District 52", "rep": "Shea Roberts", "w": 0.027}, {"d": "GA House District 93", "rep": "Doreen Carter", "w": 0.027}], "ss": [{"d": "GA Senate District 10", "rep": "Emanuel Jones", "w": 0.229}, {"d": "GA Senate District 55", "rep": "Randal Mangham", "w": 0.21}, {"d": "GA Senate District 41", "rep": "Kim Jackson", "w": 0.19}, {"d": "GA Senate District 44", "rep": "Elena Parent", "w": 0.161}, {"d": "GA Senate District 40", "rep": "Sally Harrell", "w": 0.16}, {"d": "GA Senate District 43", "rep": "Tonya Anderson", "w": 0.051}]}, "munis": [{"m": "Brookhaven", "p": [{"n": "John Park", "r": "Mayor, Brookhaven, GA"}]}, {"m": "Chamblee", "p": [{"n": "Brian Mock", "r": "Mayor, Chamblee, GA"}]}, {"m": "Decatur", "p": [{"n": "Patti Garrett", "r": "Mayor, Decatur, GA"}]}, {"m": "Dunwoody", "p": [{"n": "Lynn Deutsch", "r": "Mayor, Dunwoody, GA"}]}, {"m": "Stonecrest", "p": [{"n": "Jazzmin Cobble", "r": "Mayor, Stonecrest, GA"}]}], "slug": "dekalb"}, "13091": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 133", "rep": "Danny Mathis", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "dodge"}, "13093": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.999}], "sh": [{"d": "GA House District 150", "rep": "Patty Marie Stinson", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "dooly"}, "13095": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.997}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 0.362}, {"d": "GA House District 151", "rep": "Mike Cheokas", "w": 0.224}, {"d": "GA House District 152", "rep": "Bill Yearta", "w": 0.207}, {"d": "GA House District 153", "rep": "David Sampson", "w": 0.206}], "ss": []}, "munis": [{"m": "Albany", "p": [{"n": "Bo Dorough", "r": "Mayor, Albany, GA"}]}], "slug": "dougherty"}, "13097": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.54}, {"d": "GA-06", "rep": "Lucy McBath", "w": 0.46}], "sh": [{"d": "GA House District 40", "rep": "Kimberly New", "w": 0.418}, {"d": "GA House District 64", "rep": "Sylvia Wayfer", "w": 0.374}, {"d": "GA House District 66", "rep": "Kimberly Alexander", "w": 0.208}], "ss": [{"d": "GA Senate District 30", "rep": "Tim Bearden", "w": 0.578}, {"d": "GA Senate District 28", "rep": "Donzella James", "w": 0.422}]}, "munis": [{"m": "Douglasville", "p": [{"n": "Rochelle Robinson", "r": "Mayor, Douglasville, GA"}]}], "slug": "douglas"}, "13099": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.997}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "early"}, "13101": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 174", "rep": "John Corbett", "w": 1.0}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 1.0}]}, "munis": [], "slug": "echols"}, "13103": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.592}, {"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.405}], "sh": [{"d": "GA House District 159", "rep": "Jon Burns", "w": 0.779}, {"d": "GA House District 161", "rep": "Bill Hitchens", "w": 0.22}], "ss": [{"d": "GA Senate District 4", "rep": "Billy Hickman", "w": 0.999}]}, "munis": [], "slug": "effingham"}, "13105": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 123", "rep": "Rob Leverett", "w": 1.0}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 1.0}]}, "munis": [], "slug": "elbert"}, "13107": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 158", "rep": "Butch Parrish", "w": 1.0}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [], "slug": "emanuel"}, "13109": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.998}], "sh": [{"d": "GA House District 157", "rep": "Bill Werkheiser", "w": 0.999}], "ss": [{"d": "GA Senate District 4", "rep": "Billy Hickman", "w": 1.0}]}, "munis": [], "slug": "evans"}, "13111": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 1.0}], "sh": [{"d": "GA House District 7", "rep": "Johnny Chastain", "w": 0.999}], "ss": [{"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 1.0}]}, "munis": [], "slug": "fannin"}, "13113": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.837}, {"d": "GA-06", "rep": "Lucy McBath", "w": 0.158}], "sh": [{"d": "GA House District 82", "rep": "Karen Mathiak", "w": 0.351}, {"d": "GA House District 69", "rep": "Debra Bazemore", "w": 0.249}, {"d": "GA House District 68", "rep": "Derrick Jackson", "w": 0.242}, {"d": "GA House District 73", "rep": "Josh Bonner", "w": 0.156}], "ss": [{"d": "GA Senate District 16", "rep": "Marty Harbin", "w": 0.763}, {"d": "GA Senate District 34", "rep": "Kenya Wicks", "w": 0.236}]}, "munis": [{"m": "Peachtree City", "p": [{"n": "Kim Learnard", "r": "Mayor, Peachtree City, GA"}]}], "slug": "fayette"}, "13115": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 0.999}], "sh": [{"d": "GA House District 12", "rep": "Eddie Lumsden", "w": 0.658}, {"d": "GA House District 13", "rep": "Katie Dempsey", "w": 0.264}, {"d": "GA House District 5", "rep": "Matt Barton", "w": 0.078}], "ss": [{"d": "GA Senate District 52", "rep": "Chuck Hufstetler", "w": 0.757}, {"d": "GA Senate District 53", "rep": "Lanny Thomas", "w": 0.242}]}, "munis": [{"m": "Rome", "p": [{"n": "Craig McDaniel", "r": "Mayor, Rome, GA"}]}], "slug": "floyd"}, "13117": {"county": [], "districts": {"cd": [{"d": "GA-07", "rep": "Richard McCormick", "w": 0.999}], "sh": [{"d": "GA House District 28", "rep": "Brent Cox", "w": 0.313}, {"d": "GA House District 26", "rep": "Lauren McDonald", "w": 0.244}, {"d": "GA House District 24", "rep": "Carter Barrett", "w": 0.166}, {"d": "GA House District 11", "rep": "Rick Jasperse", "w": 0.153}, {"d": "GA House District 25", "rep": "Todd Jones", "w": 0.097}, {"d": "GA House District 100", "rep": "David Clark", "w": 0.026}], "ss": [{"d": "GA Senate District 27", "rep": "Greg Dolezal", "w": 0.877}, {"d": "GA Senate District 48", "rep": "Shawn Still", "w": 0.123}]}, "munis": [], "slug": "forsyth"}, "13119": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 33", "rep": "Alan Powell", "w": 1.0}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "13121": {"county": [], "districts": {"cd": [{"d": "GA-06", "rep": "Lucy McBath", "w": 0.516}, {"d": "GA-07", "rep": "Richard McCormick", "w": 0.305}, {"d": "GA-05", "rep": "Nikema Williams", "w": 0.176}], "sh": [{"d": "GA House District 65", "rep": "Robert Dawson", "w": 0.205}, {"d": "GA House District 47", "rep": "Jan Jones", "w": 0.087}, {"d": "GA House District 67", "rep": "Lydia Glaize", "w": 0.086}, {"d": "GA House District 53", "rep": "Deborah Silcox", "w": 0.059}, {"d": "GA House District 49", "rep": "Chuck Martin", "w": 0.054}, {"d": "GA House District 63", "rep": "Kim Schofield", "w": 0.048}, {"d": "GA House District 60", "rep": "Sheila Jones", "w": 0.047}, {"d": "GA House District 61", "rep": "Mekyah McQueen", "w": 0.046}, {"d": "GA House District 62", "rep": "Tanya Miller", "w": 0.038}, {"d": "GA House District 50", "rep": "Michelle Au", "w": 0.038}, {"d": "GA House District 51", "rep": "Esther Panitch", "w": 0.038}, {"d": "GA House District 48", "rep": "Scott Hilton", "w": 0.038}, {"d": "GA House District 55", "rep": "Inga Willis", "w": 0.035}, {"d": "GA House District 68", "rep": "Derrick Jackson", "w": 0.035}, {"d": "GA House District 59", "rep": "Phil Olaleye", "w": 0.025}, {"d": "GA House District 58", "rep": "Park Cannon", "w": 0.022}, {"d": "GA House District 54", "rep": "Betsy Holland", "w": 0.022}, {"d": "GA House District 56", "rep": "Bryce Berry", "w": 0.021}, {"d": "GA House District 69", "rep": "Debra Bazemore", "w": 0.016}, {"d": "GA House District 57", "rep": "Stacey Evans", "w": 0.015}, {"d": "GA House District 52", "rep": "Shea Roberts", "w": 0.014}, {"d": "GA House District 25", "rep": "Todd Jones", "w": 0.009}], "ss": [{"d": "GA Senate District 38", "rep": "RaShaun Kemp", "w": 0.233}, {"d": "GA Senate District 28", "rep": "Donzella James", "w": 0.153}, {"d": "GA Senate District 14", "rep": "Josh McLaurin", "w": 0.117}, {"d": "GA Senate District 21", "rep": "Jason Dickerson", "w": 0.111}, {"d": "GA Senate District 35", "rep": "Jaha Howard", "w": 0.106}, {"d": "GA Senate District 39", "rep": "Sonya Halpern", "w": 0.097}, {"d": "GA Senate District 36", "rep": "Nan Orrock", "w": 0.087}, {"d": "GA Senate District 48", "rep": "Shawn Still", "w": 0.06}, {"d": "GA Senate District 56", "rep": "John Albers", "w": 0.035}]}, "munis": [{"m": "Alpharetta", "p": [{"n": "Jim Gilvin", "r": "Mayor, Alpharetta, GA"}]}, {"m": "Atlanta", "p": [{"n": "Andre Dickens", "r": "Mayor, Atlanta, GA"}]}, {"m": "East Point", "p": [{"n": "Deana Holiday Ingraham", "r": "Mayor, East Point, GA"}]}, {"m": "Johns Creek", "p": [{"n": "John Bradberry", "r": "Mayor, Johns Creek, GA"}]}, {"m": "Milton", "p": [{"n": "Peyton Jamison", "r": "Mayor, Milton, GA"}]}, {"m": "Sandy Springs", "p": [{"n": "Rusty Paul", "r": "Mayor, Sandy Springs, GA"}]}, {"m": "South Fulton", "p": [{"n": "Theron Griffin", "r": "Mayor, South Fulton, GA"}]}], "slug": "fulton"}, "13123": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.998}], "sh": [{"d": "GA House District 7", "rep": "Johnny Chastain", "w": 1.0}], "ss": [{"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 1.0}]}, "munis": [], "slug": "gilmer"}, "13125": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 128", "rep": "Mack Jackson", "w": 1.0}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [], "slug": "glascock"}, "13127": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.8}], "sh": [{"d": "GA House District 167", "rep": "Buddy DeLoach", "w": 0.413}, {"d": "GA House District 179", "rep": "Rick Townsend", "w": 0.255}, {"d": "GA House District 180", "rep": "Steven Sainz", "w": 0.127}], "ss": [{"d": "GA Senate District 3", "rep": "Mike Hodges", "w": 0.795}]}, "munis": [{"m": "Brunswick", "p": [{"n": "Cosby H. Johnson", "r": "Mayor, Brunswick, GA"}]}], "slug": "glynn"}, "13129": {"county": [], "districts": {"cd": [{"d": "GA-11", "rep": "Barry Loudermilk", "w": 0.993}, {"d": "GA-14", "rep": "Clay Fuller", "w": 0.007}], "sh": [{"d": "GA House District 5", "rep": "Matt Barton", "w": 0.821}, {"d": "GA House District 6", "rep": "Jason Ridley", "w": 0.179}], "ss": [{"d": "GA Senate District 54", "rep": "Chuck Payne", "w": 0.743}, {"d": "GA Senate District 52", "rep": "Chuck Hufstetler", "w": 0.257}]}, "munis": [], "slug": "gordon"}, "13131": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 171", "rep": "Joe Campbell", "w": 0.601}, {"d": "GA House District 173", "rep": "Darlene Taylor", "w": 0.399}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 1.0}]}, "munis": [], "slug": "grady"}, "13133": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 1.0}], "sh": [{"d": "GA House District 124", "rep": "Trey Rhodes", "w": 1.0}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 1.0}]}, "munis": [], "slug": "greene"}, "13135": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.374}, {"d": "GA-13", "rep": "Vacant", "w": 0.364}, {"d": "GA-04", "rep": "Henry C. \"Hank\" Johnson, Jr.", "w": 0.179}, {"d": "GA-10", "rep": "Mike Collins", "w": 0.081}], "sh": [{"d": "GA House District 110", "rep": "Segun Adeyina", "w": 0.084}, {"d": "GA House District 105", "rep": "Sandy Donatucci", "w": 0.075}, {"d": "GA House District 111", "rep": "Rey Martinez", "w": 0.074}, {"d": "GA House District 103", "rep": "Soo Hong", "w": 0.068}, {"d": "GA House District 99", "rep": "Matt Reeves", "w": 0.062}, {"d": "GA House District 108", "rep": "Jasmine Clark", "w": 0.057}, {"d": "GA House District 102", "rep": "Gabe Okoye", "w": 0.054}, {"d": "GA House District 104", "rep": "Chuck Efstration", "w": 0.054}, {"d": "GA House District 100", "rep": "David Clark", "w": 0.053}, {"d": "GA House District 97", "rep": "Ruwa Romman", "w": 0.052}, {"d": "GA House District 107", "rep": "Sam Park", "w": 0.048}, {"d": "GA House District 96", "rep": "Arlene Beckles", "w": 0.047}, {"d": "GA House District 106", "rep": "Akbar Ali", "w": 0.045}, {"d": "GA House District 95", "rep": "Dar'shun Kendrick", "w": 0.043}, {"d": "GA House District 94", "rep": "Venola Mason", "w": 0.04}, {"d": "GA House District 93", "rep": "Doreen Carter", "w": 0.04}, {"d": "GA House District 109", "rep": "Dewey McClain", "w": 0.029}, {"d": "GA House District 98", "rep": "Marvin Lim", "w": 0.027}, {"d": "GA House District 48", "rep": "Scott Hilton", "w": 0.014}, {"d": "GA House District 30", "rep": "Derrick McCollum", "w": 0.014}, {"d": "GA House District 112", "rep": "Bruce Williamson", "w": 0.013}, {"d": "GA House District 88", "rep": "Billy Mitchell", "w": 0.006}], "ss": [{"d": "GA Senate District 45", "rep": "Clint Dixon", "w": 0.21}, {"d": "GA Senate District 9", "rep": "Nikki Merritt", "w": 0.184}, {"d": "GA Senate District 5", "rep": "Sheikh Rahman", "w": 0.116}, {"d": "GA Senate District 46", "rep": "Bill Cowsert", "w": 0.082}, {"d": "GA Senate District 55", "rep": "Randal Mangham", "w": 0.081}, {"d": "GA Senate District 43", "rep": "Tonya Anderson", "w": 0.077}, {"d": "GA Senate District 48", "rep": "Shawn Still", "w": 0.061}, {"d": "GA Senate District 40", "rep": "Sally Harrell", "w": 0.021}]}, "munis": [{"m": "Duluth", "p": [{"n": "Greg Whitlock", "r": "Mayor, Duluth, GA"}]}, {"m": "Lawrenceville", "p": [{"n": "David Still", "r": "Mayor, Lawrenceville, GA"}]}, {"m": "Peachtree Corners", "p": [{"n": "Mike Mason", "r": "Mayor, Peachtree Corners, GA"}]}, {"m": "Snellville", "p": [{"n": "Barbara Bender", "r": "Mayor, Snellville, GA"}]}, {"m": "Suwanee", "p": [{"n": "James Burnette", "r": "Mayor, Suwanee, GA"}]}], "slug": "gwinnett"}, "13137": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 1.0}], "sh": [{"d": "GA House District 10", "rep": "Victor Anderson", "w": 0.922}, {"d": "GA House District 32", "rep": "Chris Erwin", "w": 0.077}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 1.0}]}, "munis": [], "slug": "habersham"}, "13139": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.733}, {"d": "GA-07", "rep": "Richard McCormick", "w": 0.267}], "sh": [{"d": "GA House District 27", "rep": "Lee Hawkins", "w": 0.535}, {"d": "GA House District 30", "rep": "Derrick McCollum", "w": 0.18}, {"d": "GA House District 29", "rep": "Matt Dubnik", "w": 0.103}, {"d": "GA House District 31", "rep": "Emory Dunahoo", "w": 0.072}, {"d": "GA House District 28", "rep": "Brent Cox", "w": 0.046}, {"d": "GA House District 100", "rep": "David Clark", "w": 0.04}, {"d": "GA House District 103", "rep": "Soo Hong", "w": 0.023}], "ss": [{"d": "GA Senate District 49", "rep": "Drew Echols", "w": 0.885}, {"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 0.114}]}, "munis": [{"m": "Gainesville", "p": [{"n": "Sam Couvillon", "r": "Mayor, Gainesville, GA"}]}], "slug": "hall"}, "13141": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.996}], "sh": [{"d": "GA House District 128", "rep": "Mack Jackson", "w": 1.0}], "ss": [{"d": "GA Senate District 26", "rep": "David Lucas", "w": 1.0}]}, "munis": [], "slug": "hancock"}, "13143": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 1.0}], "sh": [{"d": "GA House District 18", "rep": "Tyler Smith", "w": 1.0}], "ss": [{"d": "GA Senate District 30", "rep": "Tim Bearden", "w": 1.0}]}, "munis": [], "slug": "haralson"}, "13145": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.994}], "sh": [{"d": "GA House District 138", "rep": "Vance Smith", "w": 0.726}, {"d": "GA House District 139", "rep": "Carmen Rice", "w": 0.274}], "ss": [{"d": "GA Senate District 29", "rep": "Randy Robertson", "w": 0.999}]}, "munis": [{"m": "Hamilton", "p": [{"n": "Patrick Whearley", "r": "Mayor, Hamilton, GA"}]}], "slug": "harris"}, "13147": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 33", "rep": "Alan Powell", "w": 1.0}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 1.0}]}, "munis": [], "slug": "hart"}, "13149": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 1.0}], "sh": [{"d": "GA House District 72", "rep": "David Huddleston", "w": 1.0}], "ss": [{"d": "GA Senate District 6", "rep": "Matt Brass", "w": 1.0}]}, "munis": [], "slug": "heard"}, "13151": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.561}, {"d": "GA-13", "rep": "Vacant", "w": 0.293}, {"d": "GA-03", "rep": "Brian Jack", "w": 0.147}], "sh": [{"d": "GA House District 81", "rep": "Noelle Kahaian", "w": 0.37}, {"d": "GA House District 117", "rep": "Mary Ann Santos", "w": 0.191}, {"d": "GA House District 78", "rep": "Demetrius Douglas", "w": 0.12}, {"d": "GA House District 74", "rep": "Robert Flournoy", "w": 0.116}, {"d": "GA House District 115", "rep": "Regina Lewis-Ward", "w": 0.112}, {"d": "GA House District 116", "rep": "El-Mahdi Holly", "w": 0.09}], "ss": [{"d": "GA Senate District 17", "rep": "Gail Davenport", "w": 0.391}, {"d": "GA Senate District 25", "rep": "Rick Williams", "w": 0.279}, {"d": "GA Senate District 10", "rep": "Emanuel Jones", "w": 0.166}, {"d": "GA Senate District 42", "rep": "Brian Strickland", "w": 0.164}]}, "munis": [{"m": "Mcdonough", "p": [{"n": "Sandra Vincent", "r": "Mayor, McDonough, GA"}]}, {"m": "Stockbridge", "p": [{"n": "Anthony S. Ford", "r": "Mayor, Stockbridge, GA"}]}], "slug": "henry"}, "13153": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.869}, {"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.131}], "sh": [{"d": "GA House District 148", "rep": "Noel Williams", "w": 0.599}, {"d": "GA House District 146", "rep": "Shaw Blackmon", "w": 0.225}, {"d": "GA House District 143", "rep": "Nissa Jones", "w": 0.103}, {"d": "GA House District 147", "rep": "Bethany Ballard", "w": 0.073}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 0.821}, {"d": "GA Senate District 26", "rep": "David Lucas", "w": 0.12}, {"d": "GA Senate District 18", "rep": "Steven McNeel", "w": 0.059}]}, "munis": [{"m": "Warner Robins", "p": [{"n": "LaRhonda W. Patrick", "r": "Mayor, Warner Robins, GA"}]}], "slug": "houston"}, "13155": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 169", "rep": "Angie O'Steen", "w": 1.0}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [], "slug": "irwin"}, "13157": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.995}], "sh": [{"d": "GA House District 31", "rep": "Emory Dunahoo", "w": 0.478}, {"d": "GA House District 120", "rep": "Houston Gaines", "w": 0.315}, {"d": "GA House District 32", "rep": "Chris Erwin", "w": 0.19}, {"d": "GA House District 119", "rep": "Holt Persinger", "w": 0.016}], "ss": [{"d": "GA Senate District 47", "rep": "Frank Ginn", "w": 0.64}, {"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 0.36}]}, "munis": [], "slug": "jackson"}, "13159": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.999}], "sh": [{"d": "GA House District 144", "rep": "Dale Washburn", "w": 1.0}], "ss": [{"d": "GA Senate District 25", "rep": "Rick Williams", "w": 1.0}]}, "munis": [], "slug": "jasper"}, "13161": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.998}], "sh": [{"d": "GA House District 157", "rep": "Bill Werkheiser", "w": 0.999}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "jeff-davis"}, "13163": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 132", "rep": "Brian Prince", "w": 1.0}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "13165": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 126", "rep": "L.C. Myles", "w": 1.0}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [], "slug": "jenkins"}, "13167": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 155", "rep": "Matt Hatchett", "w": 1.0}], "ss": [{"d": "GA Senate District 26", "rep": "David Lucas", "w": 1.0}]}, "munis": [], "slug": "johnson"}, "13169": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.997}], "sh": [{"d": "GA House District 144", "rep": "Dale Washburn", "w": 0.849}, {"d": "GA House District 149", "rep": "Floyd Griffin", "w": 0.15}], "ss": [{"d": "GA Senate District 25", "rep": "Rick Williams", "w": 1.0}]}, "munis": [], "slug": "jones"}, "13171": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 1.0}], "sh": [{"d": "GA House District 135", "rep": "Beth Camp", "w": 0.591}, {"d": "GA House District 134", "rep": "Robert Dickey", "w": 0.409}], "ss": [{"d": "GA Senate District 16", "rep": "Marty Harbin", "w": 1.0}]}, "munis": [], "slug": "lamar"}, "13173": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 176", "rep": "James Burchett", "w": 0.999}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 1.0}]}, "munis": [], "slug": "lanier"}, "13175": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.998}], "sh": [{"d": "GA House District 155", "rep": "Matt Hatchett", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "laurens"}, "13177": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.997}], "sh": [{"d": "GA House District 152", "rep": "Bill Yearta", "w": 1.0}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [], "slug": "lee"}, "13179": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.899}], "sh": [{"d": "GA House District 168", "rep": "Al Williams", "w": 0.598}, {"d": "GA House District 167", "rep": "Buddy DeLoach", "w": 0.3}], "ss": [{"d": "GA Senate District 1", "rep": "Ben Watson", "w": 0.898}]}, "munis": [{"m": "Hinesville", "p": [{"n": "Karl Riles", "r": "Mayor, Hinesville, GA"}]}], "slug": "liberty"}, "13181": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.999}], "sh": [{"d": "GA House District 123", "rep": "Rob Leverett", "w": 1.0}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "13183": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.998}], "sh": [{"d": "GA House District 167", "rep": "Buddy DeLoach", "w": 1.0}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "long"}, "13185": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 175", "rep": "John LaHood", "w": 0.537}, {"d": "GA House District 174", "rep": "John Corbett", "w": 0.294}, {"d": "GA House District 176", "rep": "James Burchett", "w": 0.067}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 1.0}]}, "munis": [{"m": "Valdosta", "p": [{"n": "Scott James Matheson", "r": "Mayor, Valdosta, GA"}]}], "slug": "lowndes"}, "13187": {"county": [], "districts": {"cd": [{"d": "GA-07", "rep": "Richard McCormick", "w": 0.99}, {"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.01}], "sh": [{"d": "GA House District 9", "rep": "Will Wade", "w": 0.918}, {"d": "GA House District 27", "rep": "Lee Hawkins", "w": 0.076}, {"d": "GA House District 8", "rep": "Stan Gunter", "w": 0.006}], "ss": [{"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 1.0}]}, "munis": [], "slug": "lumpkin"}, "13189": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 125", "rep": "Gary Richardson", "w": 0.507}, {"d": "GA House District 128", "rep": "Mack Jackson", "w": 0.492}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [], "slug": "mcduffie"}, "13191": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.845}], "sh": [{"d": "GA House District 167", "rep": "Buddy DeLoach", "w": 0.827}], "ss": [{"d": "GA Senate District 3", "rep": "Mike Hodges", "w": 0.827}]}, "munis": [], "slug": "mcintosh"}, "13193": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.999}], "sh": [{"d": "GA House District 150", "rep": "Patty Marie Stinson", "w": 1.0}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 1.0}]}, "munis": [], "slug": "macon"}, "13195": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 123", "rep": "Rob Leverett", "w": 0.554}, {"d": "GA House District 33", "rep": "Alan Powell", "w": 0.445}], "ss": [{"d": "GA Senate District 47", "rep": "Frank Ginn", "w": 0.999}]}, "munis": [], "slug": "madison"}, "13197": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 1.0}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 1.0}]}, "munis": [], "slug": "marion"}, "13199": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.999}], "sh": [{"d": "GA House District 136", "rep": "David Jenkins", "w": 0.794}, {"d": "GA House District 137", "rep": "Debbie Buckner", "w": 0.205}], "ss": [{"d": "GA Senate District 29", "rep": "Randy Robertson", "w": 1.0}]}, "munis": [], "slug": "meriwether"}, "13201": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "miller"}, "13205": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 171", "rep": "Joe Campbell", "w": 1.0}], "ss": []}, "munis": [], "slug": "mitchell"}, "13207": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.999}], "sh": [{"d": "GA House District 145", "rep": "Tangie Herring", "w": 0.497}, {"d": "GA House District 118", "rep": "Clint Crowe", "w": 0.441}, {"d": "GA House District 144", "rep": "Dale Washburn", "w": 0.061}], "ss": [{"d": "GA Senate District 18", "rep": "Steven McNeel", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "13209": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.998}], "sh": [{"d": "GA House District 156", "rep": "Leesa Hagan", "w": 1.0}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "13211": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 1.0}], "sh": [{"d": "GA House District 114", "rep": "Tim Fleming", "w": 1.0}], "ss": [{"d": "GA Senate District 42", "rep": "Brian Strickland", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "13213": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 0.996}], "sh": [{"d": "GA House District 6", "rep": "Jason Ridley", "w": 0.999}], "ss": [{"d": "GA Senate District 54", "rep": "Chuck Payne", "w": 1.0}]}, "munis": [], "slug": "murray"}, "13215": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.832}, {"d": "GA-03", "rep": "Brian Jack", "w": 0.161}], "sh": [{"d": "GA House District 137", "rep": "Debbie Buckner", "w": 0.479}, {"d": "GA House District 141", "rep": "Carolyn Hugley", "w": 0.15}, {"d": "GA House District 139", "rep": "Carmen Rice", "w": 0.128}, {"d": "GA House District 140", "rep": "Teddy Reese", "w": 0.122}, {"d": "GA House District 138", "rep": "Vance Smith", "w": 0.119}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 0.597}, {"d": "GA Senate District 29", "rep": "Randy Robertson", "w": 0.402}]}, "munis": [{"m": "Columbus", "p": [{"n": "B. H. \"Skip\" Henderson III", "r": "Mayor, Columbus, GA"}]}], "slug": "muscogee"}, "13217": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.751}, {"d": "GA-13", "rep": "Vacant", "w": 0.249}], "sh": [{"d": "GA House District 114", "rep": "Tim Fleming", "w": 0.487}, {"d": "GA House District 118", "rep": "Clint Crowe", "w": 0.326}, {"d": "GA House District 113", "rep": "Sharon Henderson", "w": 0.186}], "ss": [{"d": "GA Senate District 42", "rep": "Brian Strickland", "w": 0.957}, {"d": "GA Senate District 43", "rep": "Tonya Anderson", "w": 0.043}]}, "munis": [], "slug": "newton"}, "13219": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 1.0}], "sh": [{"d": "GA House District 121", "rep": "Eric Gisler", "w": 0.912}, {"d": "GA House District 120", "rep": "Houston Gaines", "w": 0.087}], "ss": [{"d": "GA Senate District 46", "rep": "Bill Cowsert", "w": 0.999}]}, "munis": [], "slug": "oconee"}, "13221": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 1.0}], "sh": [{"d": "GA House District 124", "rep": "Trey Rhodes", "w": 1.0}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 1.0}]}, "munis": [], "slug": "oglethorpe"}, "13223": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 0.999}], "sh": [{"d": "GA House District 17", "rep": "Martin Momtahan", "w": 0.356}, {"d": "GA House District 16", "rep": "Trey Kelley", "w": 0.221}, {"d": "GA House District 19", "rep": "Joseph Gullett", "w": 0.152}, {"d": "GA House District 18", "rep": "Tyler Smith", "w": 0.144}, {"d": "GA House District 40", "rep": "Kimberly New", "w": 0.127}], "ss": [{"d": "GA Senate District 31", "rep": "Jason Anavitarte", "w": 0.845}, {"d": "GA Senate District 30", "rep": "Tim Bearden", "w": 0.155}]}, "munis": [], "slug": "paulding"}, "13225": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.997}], "sh": [{"d": "GA House District 150", "rep": "Patty Marie Stinson", "w": 0.516}, {"d": "GA House District 147", "rep": "Bethany Ballard", "w": 0.276}, {"d": "GA House District 134", "rep": "Robert Dickey", "w": 0.208}], "ss": [{"d": "GA Senate District 18", "rep": "Steven McNeel", "w": 1.0}]}, "munis": [], "slug": "peach"}, "13227": {"county": [], "districts": {"cd": [{"d": "GA-11", "rep": "Barry Loudermilk", "w": 0.995}], "sh": [{"d": "GA House District 11", "rep": "Rick Jasperse", "w": 1.0}], "ss": [{"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 1.0}]}, "munis": [], "slug": "pickens"}, "13229": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 1.0}], "sh": [{"d": "GA House District 178", "rep": "Steven Meeks", "w": 0.999}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 0.999}]}, "munis": [], "slug": "pierce"}, "13231": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 1.0}], "sh": [{"d": "GA House District 135", "rep": "Beth Camp", "w": 0.999}], "ss": [{"d": "GA Senate District 16", "rep": "Marty Harbin", "w": 1.0}]}, "munis": [], "slug": "pike"}, "13233": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 0.999}], "sh": [{"d": "GA House District 16", "rep": "Trey Kelley", "w": 1.0}], "ss": [{"d": "GA Senate District 31", "rep": "Jason Anavitarte", "w": 1.0}]}, "munis": [], "slug": "polk"}, "13235": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.999}], "sh": [{"d": "GA House District 148", "rep": "Noel Williams", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "pulaski"}, "13237": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.998}], "sh": [{"d": "GA House District 144", "rep": "Dale Washburn", "w": 0.628}, {"d": "GA House District 124", "rep": "Trey Rhodes", "w": 0.371}], "ss": [{"d": "GA Senate District 25", "rep": "Rick Williams", "w": 1.0}]}, "munis": [{"m": "Eatonton", "p": [{"n": "John Reid", "r": "Mayor, Eatonton, GA"}]}], "slug": "putnam"}, "13239": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.991}, {"d": "AL-02", "rep": "Shomari Figures", "w": 0.009}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "quitman"}, "13241": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.996}], "sh": [{"d": "GA House District 10", "rep": "Victor Anderson", "w": 0.999}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 1.0}]}, "munis": [], "slug": "rabun"}, "13243": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 1.0}], "ss": []}, "munis": [], "slug": "randolph"}, "13245": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.995}], "sh": [{"d": "GA House District 130", "rep": "Sheila Nelson", "w": 0.395}, {"d": "GA House District 132", "rep": "Brian Prince", "w": 0.32}, {"d": "GA House District 126", "rep": "L.C. Myles", "w": 0.172}, {"d": "GA House District 129", "rep": "Karlton Howard", "w": 0.084}, {"d": "GA House District 127", "rep": "Mark Newton", "w": 0.028}], "ss": [{"d": "GA Senate District 22", "rep": "Harold Jones", "w": 0.701}, {"d": "GA Senate District 23", "rep": "Max Burns", "w": 0.298}]}, "munis": [], "slug": "richmond"}, "13247": {"county": [], "districts": {"cd": [{"d": "GA-13", "rep": "Vacant", "w": 0.992}], "sh": [{"d": "GA House District 92", "rep": "Rhonda Taylor", "w": 0.442}, {"d": "GA House District 91", "rep": "Angela Moore", "w": 0.327}, {"d": "GA House District 93", "rep": "Doreen Carter", "w": 0.23}], "ss": [{"d": "GA Senate District 43", "rep": "Tonya Anderson", "w": 0.999}]}, "munis": [], "slug": "rockdale"}, "13249": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 1.0}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 1.0}]}, "munis": [], "slug": "schley"}, "13251": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.997}], "sh": [{"d": "GA House District 159", "rep": "Jon Burns", "w": 0.999}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 0.999}]}, "munis": [], "slug": "screven"}, "13253": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.998}], "sh": [{"d": "GA House District 154", "rep": "Gerald Greene", "w": 0.999}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 0.999}]}, "munis": [], "slug": "seminole"}, "13255": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.998}], "sh": [{"d": "GA House District 82", "rep": "Karen Mathiak", "w": 0.647}, {"d": "GA House District 135", "rep": "Beth Camp", "w": 0.353}], "ss": [{"d": "GA Senate District 16", "rep": "Marty Harbin", "w": 1.0}]}, "munis": [{"m": "Griffin", "p": [{"n": "Douglas S. Hollberg", "r": "Mayor, Griffin, GA"}]}], "slug": "spalding"}, "13257": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.997}], "sh": [{"d": "GA House District 32", "rep": "Chris Erwin", "w": 0.999}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 1.0}]}, "munis": [], "slug": "stephens"}, "13259": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.995}, {"d": "AL-02", "rep": "Shomari Figures", "w": 0.005}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 1.0}], "ss": []}, "munis": [], "slug": "stewart"}, "13261": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 0.696}, {"d": "GA House District 150", "rep": "Patty Marie Stinson", "w": 0.304}], "ss": []}, "munis": [], "slug": "sumter"}, "13263": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.996}], "sh": [{"d": "GA House District 137", "rep": "Debbie Buckner", "w": 1.0}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 1.0}]}, "munis": [], "slug": "talbot"}, "13265": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 0.991}, {"d": "GA-12", "rep": "Rick W. Allen", "w": 0.009}], "sh": [{"d": "GA House District 124", "rep": "Trey Rhodes", "w": 0.999}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 0.999}]}, "munis": [], "slug": "taliaferro"}, "13267": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.996}], "sh": [{"d": "GA House District 157", "rep": "Bill Werkheiser", "w": 0.917}, {"d": "GA House District 156", "rep": "Leesa Hagan", "w": 0.083}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "tattnall"}, "13269": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 0.999}], "sh": [{"d": "GA House District 150", "rep": "Patty Marie Stinson", "w": 1.0}], "ss": [{"d": "GA Senate District 15", "rep": "Ed Harbison", "w": 1.0}]}, "munis": [], "slug": "taylor"}, "13271": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.998}], "sh": [{"d": "GA House District 156", "rep": "Leesa Hagan", "w": 0.534}, {"d": "GA House District 133", "rep": "Danny Mathis", "w": 0.465}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "telfair"}, "13273": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 1.0}], "ss": []}, "munis": [], "slug": "terrell"}, "13275": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 173", "rep": "Darlene Taylor", "w": 0.829}, {"d": "GA House District 172", "rep": "Chas Cannon", "w": 0.171}], "ss": [{"d": "GA Senate District 11", "rep": "Sam Watson", "w": 1.0}]}, "munis": [], "slug": "thomas"}, "13277": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 170", "rep": "Jaclyn Ford", "w": 0.577}, {"d": "GA House District 169", "rep": "Angie O'Steen", "w": 0.423}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [], "slug": "tift"}, "13279": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.997}], "sh": [{"d": "GA House District 156", "rep": "Leesa Hagan", "w": 1.0}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "toombs"}, "13281": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 1.0}], "sh": [{"d": "GA House District 8", "rep": "Stan Gunter", "w": 1.0}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 1.0}]}, "munis": [], "slug": "towns"}, "13283": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 1.0}], "sh": [{"d": "GA House District 158", "rep": "Butch Parrish", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "treutlen"}, "13285": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 1.0}], "sh": [{"d": "GA House District 138", "rep": "Vance Smith", "w": 0.397}, {"d": "GA House District 137", "rep": "Debbie Buckner", "w": 0.253}, {"d": "GA House District 72", "rep": "David Huddleston", "w": 0.243}, {"d": "GA House District 136", "rep": "David Jenkins", "w": 0.107}], "ss": [{"d": "GA Senate District 29", "rep": "Randy Robertson", "w": 1.0}]}, "munis": [{"m": "Lagrange", "p": [{"n": "Jim Arrington", "r": "Mayor, LaGrange, GA"}]}], "slug": "troup"}, "13287": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 169", "rep": "Angie O'Steen", "w": 1.0}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [], "slug": "turner"}, "13289": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.995}], "sh": [{"d": "GA House District 133", "rep": "Danny Mathis", "w": 1.0}], "ss": [{"d": "GA Senate District 26", "rep": "David Lucas", "w": 1.0}]}, "munis": [], "slug": "twiggs"}, "13291": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.996}], "sh": [{"d": "GA House District 8", "rep": "Stan Gunter", "w": 1.0}], "ss": [{"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 1.0}]}, "munis": [], "slug": "union"}, "13293": {"county": [], "districts": {"cd": [{"d": "GA-03", "rep": "Brian Jack", "w": 0.997}], "sh": [{"d": "GA House District 134", "rep": "Robert Dickey", "w": 1.0}], "ss": [{"d": "GA Senate District 18", "rep": "Steven McNeel", "w": 1.0}]}, "munis": [], "slug": "upson"}, "13295": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 1.0}], "sh": [{"d": "GA House District 1", "rep": "Mike Cameron", "w": 0.554}, {"d": "GA House District 2", "rep": "Steve Tarvin", "w": 0.446}], "ss": [{"d": "GA Senate District 53", "rep": "Lanny Thomas", "w": 1.0}]}, "munis": [], "slug": "walker"}, "13297": {"county": [], "districts": {"cd": [{"d": "GA-10", "rep": "Mike Collins", "w": 1.0}], "sh": [{"d": "GA House District 112", "rep": "Bruce Williamson", "w": 0.578}, {"d": "GA House District 114", "rep": "Tim Fleming", "w": 0.233}, {"d": "GA House District 111", "rep": "Rey Martinez", "w": 0.188}], "ss": [{"d": "GA Senate District 46", "rep": "Bill Cowsert", "w": 0.581}, {"d": "GA Senate District 42", "rep": "Brian Strickland", "w": 0.419}]}, "munis": [{"m": "Monroe", "p": [{"n": "John Howard", "r": "Mayor, Monroe, GA"}]}], "slug": "walton"}, "13299": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 0.999}], "sh": [{"d": "GA House District 174", "rep": "John Corbett", "w": 0.644}, {"d": "GA House District 176", "rep": "James Burchett", "w": 0.356}], "ss": [{"d": "GA Senate District 8", "rep": "Russ Goodman", "w": 0.797}, {"d": "GA Senate District 3", "rep": "Mike Hodges", "w": 0.203}]}, "munis": [], "slug": "ware"}, "13301": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.996}], "sh": [{"d": "GA House District 128", "rep": "Mack Jackson", "w": 1.0}], "ss": [{"d": "GA Senate District 23", "rep": "Max Burns", "w": 1.0}]}, "munis": [{"m": "Warrenton", "p": [{"n": "Chris McCorkle", "r": "Mayor, Warrenton, GA"}]}], "slug": "warren"}, "13303": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.997}], "sh": [{"d": "GA House District 128", "rep": "Mack Jackson", "w": 1.0}], "ss": [{"d": "GA Senate District 26", "rep": "David Lucas", "w": 1.0}]}, "munis": [], "slug": "washington"}, "13305": {"county": [], "districts": {"cd": [{"d": "GA-01", "rep": "Earl L. \"Buddy\" Carter", "w": 1.0}], "sh": [{"d": "GA House District 178", "rep": "Steven Meeks", "w": 0.904}, {"d": "GA House District 167", "rep": "Buddy DeLoach", "w": 0.096}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "wayne"}, "13307": {"county": [], "districts": {"cd": [{"d": "GA-02", "rep": "Sanford D. Bishop, Jr.", "w": 1.0}], "sh": [{"d": "GA House District 151", "rep": "Mike Cheokas", "w": 1.0}], "ss": []}, "munis": [], "slug": "webster"}, "13309": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.993}, {"d": "GA-08", "rep": "Austin Scott", "w": 0.007}], "sh": [{"d": "GA House District 156", "rep": "Leesa Hagan", "w": 0.999}], "ss": [{"d": "GA Senate District 19", "rep": "Blake Tillery", "w": 1.0}]}, "munis": [], "slug": "wheeler"}, "13311": {"county": [], "districts": {"cd": [{"d": "GA-09", "rep": "Andrew S. Clyde", "w": 0.997}], "sh": [{"d": "GA House District 8", "rep": "Stan Gunter", "w": 0.84}, {"d": "GA House District 9", "rep": "Will Wade", "w": 0.159}], "ss": [{"d": "GA Senate District 50", "rep": "Bo Hatchett", "w": 0.562}, {"d": "GA Senate District 51", "rep": "Steve Gooch", "w": 0.438}]}, "munis": [], "slug": "white"}, "13313": {"county": [], "districts": {"cd": [{"d": "GA-14", "rep": "Clay Fuller", "w": 1.0}], "sh": [{"d": "GA House District 2", "rep": "Steve Tarvin", "w": 0.381}, {"d": "GA House District 4", "rep": "Kasey Carpenter", "w": 0.317}, {"d": "GA House District 6", "rep": "Jason Ridley", "w": 0.301}], "ss": [{"d": "GA Senate District 54", "rep": "Chuck Payne", "w": 1.0}]}, "munis": [{"m": "Dalton", "p": [{"n": "Annalee Sams", "r": "Mayor, Dalton, GA"}]}], "slug": "whitfield"}, "13315": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 1.0}], "sh": [{"d": "GA House District 148", "rep": "Noel Williams", "w": 1.0}], "ss": [{"d": "GA Senate District 20", "rep": "Larry Walker", "w": 1.0}]}, "munis": [], "slug": "wilcox"}, "13317": {"county": [], "districts": {"cd": [{"d": "GA-12", "rep": "Rick W. Allen", "w": 0.722}, {"d": "GA-10", "rep": "Mike Collins", "w": 0.278}], "sh": [{"d": "GA House District 123", "rep": "Rob Leverett", "w": 1.0}], "ss": [{"d": "GA Senate District 24", "rep": "Lee Anderson", "w": 1.0}]}, "munis": [], "slug": "wilkes"}, "13319": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.999}], "sh": [{"d": "GA House District 133", "rep": "Danny Mathis", "w": 1.0}], "ss": [{"d": "GA Senate District 26", "rep": "David Lucas", "w": 1.0}]}, "munis": [], "slug": "wilkinson"}, "13321": {"county": [], "districts": {"cd": [{"d": "GA-08", "rep": "Austin Scott", "w": 0.997}], "sh": [{"d": "GA House District 152", "rep": "Bill Yearta", "w": 1.0}], "ss": [{"d": "GA Senate District 13", "rep": "Carden Summers", "w": 1.0}]}, "munis": [], "slug": "worth"}, "15001": {"county": [], "districts": {"cd": [{"d": "HI-02", "rep": "Jill N. Tokuda", "w": 0.79}], "sh": [{"d": "HI House District 5", "rep": "Jeanné Kapela", "w": 0.356}, {"d": "HI House District 1", "rep": "Matthias Kusch", "w": 0.154}, {"d": "HI House District 7", "rep": "Nicole Lowen", "w": 0.095}, {"d": "HI House District 8", "rep": "David Tarnas", "w": 0.087}, {"d": "HI House District 4", "rep": "Greggor Ilagan", "w": 0.056}, {"d": "HI House District 6", "rep": "Kirstin Kahaloa", "w": 0.022}, {"d": "HI House District 3", "rep": "Chris Todd", "w": 0.018}], "ss": [{"d": "HI Senate District 4", "rep": "Tim Richards", "w": 0.322}, {"d": "HI Senate District 3", "rep": "Dru Kanuha", "w": 0.312}, {"d": "HI Senate District 2", "rep": "Joy San Buenaventura", "w": 0.087}, {"d": "HI Senate District 1", "rep": "Lorraine Inouye", "w": 0.071}]}, "munis": [], "slug": "hawaii"}, "15003": {"county": [], "districts": {"cd": [{"d": "HI-02", "rep": "Jill N. Tokuda", "w": 0.182}, {"d": "HI-01", "rep": "Ed Case", "w": 0.097}], "sh": [{"d": "HI House District 47", "rep": "Sean Quinlan", "w": 0.062}, {"d": "HI House District 46", "rep": "Amy Perruso", "w": 0.04}, {"d": "HI House District 45", "rep": "Chris Muraoka", "w": 0.022}, {"d": "HI House District 48", "rep": "Lisa Kitagawa", "w": 0.015}, {"d": "HI House District 39", "rep": "Elijah Pierick", "w": 0.012}, {"d": "HI House District 37", "rep": "Trish La Chica", "w": 0.011}, {"d": "HI House District 32", "rep": "Garner Shimizu", "w": 0.009}, {"d": "HI House District 51", "rep": "Lisa Marten", "w": 0.008}, {"d": "HI House District 44", "rep": "Darius Kila", "w": 0.008}, {"d": "HI House District 50", "rep": "Mike Lee", "w": 0.008}, {"d": "HI House District 34", "rep": "Gregg Takayama", "w": 0.007}, {"d": "HI House District 41", "rep": "David Alcos", "w": 0.006}, {"d": "HI House District 19", "rep": "Mark Hashem", "w": 0.006}, {"d": "HI House District 30", "rep": "Shirley Templo", "w": 0.006}, {"d": "HI House District 49", "rep": "Scot Matayoshi", "w": 0.006}, {"d": "HI House District 38", "rep": "Lauren Matsumoto", "w": 0.006}], "ss": [{"d": "HI Senate District 23", "rep": "Brenton Awa", "w": 0.106}, {"d": "HI Senate District 22", "rep": "Samantha DeCorte", "w": 0.03}, {"d": "HI Senate District 17", "rep": "Donovan Dela Cruz", "w": 0.024}, {"d": "HI Senate District 25", "rep": "Chris Lee", "w": 0.017}, {"d": "HI Senate District 15", "rep": "Glenn Wakai", "w": 0.015}, {"d": "HI Senate District 18", "rep": "Michelle Kidani", "w": 0.014}, {"d": "HI Senate District 16", "rep": "Brandon Elefante", "w": 0.013}, {"d": "HI Senate District 21", "rep": "Mike Gabbard", "w": 0.011}, {"d": "HI Senate District 24", "rep": "Jarrett Keohokalole", "w": 0.01}, {"d": "HI Senate District 14", "rep": "Donna Kim", "w": 0.01}, {"d": "HI Senate District 9", "rep": "Stanley Chang", "w": 0.008}, {"d": "HI Senate District 20", "rep": "Kurt Fevella", "w": 0.005}]}, "munis": [{"m": "East Honolulu", "p": [{"n": "Rick Blangiardi", "r": "Mayor, Honolulu, HI"}]}], "slug": "honolulu"}, "15005": {"county": [], "districts": {"cd": [{"d": "HI-02", "rep": "Jill N. Tokuda", "w": 0.247}], "sh": [{"d": "HI House District 13", "rep": "Mahina Poepoe", "w": 0.231}], "ss": [{"d": "HI Senate District 7", "rep": "Lynn DeCoite", "w": 0.231}]}, "munis": [], "slug": "kalawao"}, "15007": {"county": [], "districts": {"cd": [{"d": "HI-02", "rep": "Jill N. Tokuda", "w": 0.494}], "sh": [{"d": "HI House District 17", "rep": "Dee Morikawa", "w": 0.27}, {"d": "HI House District 15", "rep": "Nadine Nakamura", "w": 0.148}, {"d": "HI House District 16", "rep": "Luke Evslin", "w": 0.079}], "ss": [{"d": "HI Senate District 8", "rep": "Ron Kouchi", "w": 0.497}]}, "munis": [], "slug": "kauai"}, "15009": {"county": [], "districts": {"cd": [{"d": "HI-02", "rep": "Jill N. Tokuda", "w": 0.486}], "sh": [{"d": "HI House District 13", "rep": "Mahina Poepoe", "w": 0.291}, {"d": "HI House District 12", "rep": "Kyle Yamashita", "w": 0.103}, {"d": "HI House District 14", "rep": "Elle Cochran", "w": 0.059}, {"d": "HI House District 11", "rep": "Terez Amato", "w": 0.015}, {"d": "HI House District 10", "rep": "Tyson Miyake", "w": 0.009}, {"d": "HI House District 9", "rep": "Justin Woodson", "w": 0.009}], "ss": [{"d": "HI Senate District 7", "rep": "Lynn DeCoite", "w": 0.388}, {"d": "HI Senate District 6", "rep": "Angus McKelvey", "w": 0.069}, {"d": "HI Senate District 5", "rep": "Troy Hashimoto", "w": 0.029}]}, "munis": [], "slug": "maui"}, "16001": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.763}, {"d": "ID-02", "rep": "Michael K. Simpson", "w": 0.237}], "sh": [], "ss": [{"d": "ID Senate District 23", "rep": "Todd Lakey", "w": 0.557}, {"d": "ID Senate District 18", "rep": "Janie Ward-Engelking", "w": 0.135}, {"d": "ID Senate District 19", "rep": "Melissa Wintrow", "w": 0.091}, {"d": "ID Senate District 14", "rep": "Scott Grow", "w": 0.081}, {"d": "ID Senate District 22", "rep": "Lori Den Hartog", "w": 0.038}, {"d": "ID Senate District 10", "rep": "Tammy Nichols", "w": 0.022}, {"d": "ID Senate District 21", "rep": "Treg Bernt", "w": 0.02}, {"d": "ID Senate District 20", "rep": "Josh Keyser", "w": 0.017}, {"d": "ID Senate District 17", "rep": "Carrie Semmelroth", "w": 0.013}, {"d": "ID Senate District 15", "rep": "Codi Galloway", "w": 0.013}, {"d": "ID Senate District 16", "rep": "Ali Rabe", "w": 0.013}]}, "munis": [{"m": "Boise City", "p": [{"n": "Lauren McLean", "r": "Mayor, Boise, ID"}]}, {"m": "Meridian", "p": [{"n": "Robert E. Simison", "r": "Mayor, Meridian, ID"}]}], "slug": "ada"}, "16003": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 7", "rep": "Cindy Carlson", "w": 1.0}]}, "munis": [], "slug": "adams"}, "16005": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 28", "rep": "Jim Guthrie", "w": 0.737}, {"d": "ID Senate District 35", "rep": "Mark Harris", "w": 0.23}, {"d": "ID Senate District 29", "rep": "James Ruchti", "w": 0.034}]}, "munis": [{"m": "Pocatello", "p": [{"n": "Brian Blad", "r": "Mayor, Pocatello, ID"}]}], "slug": "bannock"}, "16007": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 35", "rep": "Mark Harris", "w": 1.0}]}, "munis": [], "slug": "bear-lake"}, "16009": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 2", "rep": "Phil Hart", "w": 1.0}]}, "munis": [], "slug": "benewah"}, "16011": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 30", "rep": "Julie VanOrden", "w": 1.0}]}, "munis": [], "slug": "bingham"}, "16013": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 26", "rep": "Ron Taylor", "w": 1.0}]}, "munis": [], "slug": "blaine"}, "16015": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.998}], "sh": [], "ss": [{"d": "ID Senate District 8", "rep": "Christy Zito", "w": 1.0}]}, "munis": [], "slug": "boise"}, "16017": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 1", "rep": "Jim Woodward", "w": 0.907}, {"d": "ID Senate District 2", "rep": "Phil Hart", "w": 0.093}]}, "munis": [], "slug": "bonner"}, "16019": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 35", "rep": "Mark Harris", "w": 0.795}, {"d": "ID Senate District 32", "rep": "Kevin Cook", "w": 0.195}, {"d": "ID Senate District 33", "rep": "Dave Lent", "w": 0.009}]}, "munis": [], "slug": "bonneville"}, "16021": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 1", "rep": "Jim Woodward", "w": 1.0}]}, "munis": [], "slug": "boundary"}, "16023": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 30", "rep": "Julie VanOrden", "w": 1.0}]}, "munis": [], "slug": "butte"}, "16025": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 24", "rep": "Glenneda Zuiderveld", "w": 1.0}]}, "munis": [], "slug": "camas"}, "16027": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 9", "rep": "Brandon Shippy", "w": 0.325}, {"d": "ID Senate District 23", "rep": "Todd Lakey", "w": 0.316}, {"d": "ID Senate District 10", "rep": "Tammy Nichols", "w": 0.236}, {"d": "ID Senate District 13", "rep": "Brian Lenney", "w": 0.052}, {"d": "ID Senate District 11", "rep": "Camille Blaylock", "w": 0.037}, {"d": "ID Senate District 12", "rep": "Ben Adams", "w": 0.033}]}, "munis": [{"m": "Nampa", "p": [{"n": "Debbie Kling", "r": "Mayor, Nampa, ID"}]}], "slug": "canyon"}, "16029": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 35", "rep": "Mark Harris", "w": 1.0}]}, "munis": [], "slug": "caribou"}, "16031": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 27", "rep": "Kelly Anthon", "w": 1.0}]}, "munis": [], "slug": "cassia"}, "16033": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 31", "rep": "Van Burtenshaw", "w": 1.0}]}, "munis": [], "slug": "clark"}, "16035": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 2", "rep": "Phil Hart", "w": 1.0}]}, "munis": [], "slug": "clearwater"}, "16037": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 8", "rep": "Christy Zito", "w": 1.0}]}, "munis": [], "slug": "custer"}, "16039": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 0.998}], "sh": [], "ss": [{"d": "ID Senate District 8", "rep": "Christy Zito", "w": 1.0}]}, "munis": [], "slug": "elmore"}, "16041": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 28", "rep": "Jim Guthrie", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "16043": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 31", "rep": "Van Burtenshaw", "w": 1.0}]}, "munis": [], "slug": "fremont"}, "16045": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 14", "rep": "Scott Grow", "w": 0.999}]}, "munis": [], "slug": "gem"}, "16047": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 24", "rep": "Glenneda Zuiderveld", "w": 1.0}]}, "munis": [], "slug": "gooding"}, "16049": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 7", "rep": "Cindy Carlson", "w": 1.0}]}, "munis": [], "slug": "idaho"}, "16051": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 31", "rep": "Van Burtenshaw", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "16053": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 26", "rep": "Ron Taylor", "w": 1.0}]}, "munis": [], "slug": "jerome"}, "16055": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 2", "rep": "Phil Hart", "w": 0.582}, {"d": "ID Senate District 5", "rep": "Carl Bjerke", "w": 0.213}, {"d": "ID Senate District 3", "rep": "Doug Okuniewicz", "w": 0.19}, {"d": "ID Senate District 4", "rep": "Ben Toews", "w": 0.015}]}, "munis": [], "slug": "kootenai"}, "16057": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 6", "rep": "Dan Foreman", "w": 1.0}]}, "munis": [], "slug": "latah"}, "16059": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 0.998}], "sh": [], "ss": [{"d": "ID Senate District 31", "rep": "Van Burtenshaw", "w": 1.0}]}, "munis": [], "slug": "lemhi"}, "16061": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 6", "rep": "Dan Foreman", "w": 1.0}]}, "munis": [], "slug": "lewis"}, "16063": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 26", "rep": "Ron Taylor", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "16065": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 34", "rep": "Doug Ricks", "w": 1.0}]}, "munis": [], "slug": "madison"}, "16067": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 27", "rep": "Kelly Anthon", "w": 1.0}]}, "munis": [], "slug": "minidoka"}, "16069": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 6", "rep": "Dan Foreman", "w": 0.623}, {"d": "ID Senate District 7", "rep": "Cindy Carlson", "w": 0.377}]}, "munis": [], "slug": "nez-perce"}, "16071": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 27", "rep": "Kelly Anthon", "w": 1.0}]}, "munis": [], "slug": "oneida"}, "16073": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 23", "rep": "Todd Lakey", "w": 1.0}]}, "munis": [], "slug": "owyhee"}, "16075": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.998}], "sh": [], "ss": [{"d": "ID Senate District 9", "rep": "Brandon Shippy", "w": 1.0}]}, "munis": [], "slug": "payette"}, "16077": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 28", "rep": "Jim Guthrie", "w": 1.0}]}, "munis": [], "slug": "power"}, "16079": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 2", "rep": "Phil Hart", "w": 1.0}]}, "munis": [{"m": "Kellogg", "p": [{"n": "Mac Pooler", "r": "Mayor, Kellogg, ID"}]}], "slug": "shoshone"}, "16081": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 35", "rep": "Mark Harris", "w": 1.0}]}, "munis": [], "slug": "teton"}, "16083": {"county": [], "districts": {"cd": [{"d": "ID-02", "rep": "Michael K. Simpson", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 24", "rep": "Glenneda Zuiderveld", "w": 0.985}, {"d": "ID Senate District 25", "rep": "Josh Kohl", "w": 0.015}]}, "munis": [{"m": "Twin Falls", "p": [{"n": "Ruth Pierce", "r": "Mayor, Twin Falls, ID"}]}], "slug": "twin-falls"}, "16085": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 0.999}], "sh": [], "ss": [{"d": "ID Senate District 8", "rep": "Christy Zito", "w": 1.0}]}, "munis": [], "slug": "valley"}, "16087": {"county": [], "districts": {"cd": [{"d": "ID-01", "rep": "Russ Fulcher", "w": 1.0}], "sh": [], "ss": [{"d": "ID Senate District 9", "rep": "Brandon Shippy", "w": 1.0}]}, "munis": [{"m": "Weiser", "p": [{"n": "Randy Hibberd", "r": "Mayor, Weiser, ID"}]}], "slug": "washington"}, "17001": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 99", "rep": "Kyle Moore", "w": 0.484}, {"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 0.301}, {"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.215}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 0.785}, {"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.215}]}, "munis": [], "slug": "adams"}, "17003": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 118", "rep": "Paul Jacobs", "w": 0.999}], "ss": []}, "munis": [], "slug": "alexander"}, "17005": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 109", "rep": "Charlie Meier", "w": 0.678}, {"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 0.322}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 1.0}]}, "munis": [], "slug": "bond"}, "17007": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.67}, {"d": "IL-11", "rep": "Bill Foster", "w": 0.33}], "sh": [{"d": "IL House District 69", "rep": "Joe Sosnowski", "w": 0.505}, {"d": "IL House District 89", "rep": "Tony McCombie", "w": 0.249}, {"d": "IL House District 90", "rep": "John Cabello", "w": 0.184}, {"d": "IL House District 68", "rep": "Dave Vella", "w": 0.062}], "ss": [{"d": "IL Senate District 35", "rep": "Dave Syverson", "w": 0.505}, {"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 0.432}, {"d": "IL Senate District 34", "rep": "Steve Stadelman", "w": 0.062}]}, "munis": [{"m": "Belvidere", "p": [{"n": "Clinton Morris", "r": "Mayor, Belvidere, IL"}]}], "slug": "boone"}, "17009": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 99", "rep": "Kyle Moore", "w": 0.699}, {"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 0.301}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "brown"}, "17011": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.817}, {"d": "IL-14", "rep": "Lauren Underwood", "w": 0.183}], "sh": [{"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.878}, {"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.063}, {"d": "IL House District 76", "rep": "Murri Briel", "w": 0.059}], "ss": [{"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.878}, {"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.063}, {"d": "IL Senate District 38", "rep": "Sue Rezin", "w": 0.059}]}, "munis": [{"m": "Princeton", "p": [{"n": "Joel Quiram", "r": "Mayor, Princeton, IL"}]}], "slug": "bureau"}, "17013": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.999}], "sh": [{"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 0.999}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 0.999}]}, "munis": [], "slug": "calhoun"}, "17015": {"county": [], "districts": {"cd": [{"d": "IL-17", "rep": "Eric Sorensen", "w": 1.0}], "sh": [{"d": "IL House District 89", "rep": "Tony McCombie", "w": 1.0}], "ss": [{"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "17017": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 99", "rep": "Kyle Moore", "w": 1.0}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "cass"}, "17019": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.622}, {"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.192}, {"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.186}], "sh": [{"d": "IL House District 101", "rep": "Chris Miller", "w": 0.586}, {"d": "IL House District 104", "rep": "Brandun Schweizer", "w": 0.29}, {"d": "IL House District 102", "rep": "Adam Niemerg", "w": 0.098}, {"d": "IL House District 103", "rep": "Carol Ammons", "w": 0.026}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 0.684}, {"d": "IL Senate District 52", "rep": "Paul Faraci", "w": 0.316}]}, "munis": [], "slug": "champaign"}, "17021": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.999}], "sh": [{"d": "IL House District 107", "rep": "Brad Halbrook", "w": 0.494}, {"d": "IL House District 95", "rep": "Mike Coffey", "w": 0.196}, {"d": "IL House District 108", "rep": "Wayne Rosenthal", "w": 0.19}, {"d": "IL House District 96", "rep": "Sue Scherer", "w": 0.12}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.684}, {"d": "IL Senate District 48", "rep": "Doris Turner", "w": 0.316}]}, "munis": [], "slug": "christian"}, "17023": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.997}], "sh": [{"d": "IL House District 102", "rep": "Adam Niemerg", "w": 1.0}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "clark"}, "17025": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 1.0}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 1.0}]}, "munis": [], "slug": "clay"}, "17027": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 0.506}, {"d": "IL House District 109", "rep": "Charlie Meier", "w": 0.493}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 1.0}]}, "munis": [], "slug": "clinton"}, "17029": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.527}, {"d": "IL-15", "rep": "Mary E. Miller", "w": 0.472}], "sh": [{"d": "IL House District 101", "rep": "Chris Miller", "w": 0.71}, {"d": "IL House District 102", "rep": "Adam Niemerg", "w": 0.29}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "coles"}, "17031": {"county": [], "districts": {"cd": [{"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.102}, {"d": "IL-06", "rep": "Sean Casten", "w": 0.086}, {"d": "IL-05", "rep": "Mike Quigley", "w": 0.073}, {"d": "IL-08", "rep": "Raja Krishnamoorthi", "w": 0.063}, {"d": "IL-01", "rep": "Jonathan L. Jackson", "w": 0.054}, {"d": "IL-04", "rep": "Jesús G. \"Chuy\" García", "w": 0.051}, {"d": "IL-09", "rep": "Janice D. Schakowsky", "w": 0.051}, {"d": "IL-07", "rep": "Danny K. Davis", "w": 0.042}, {"d": "IL-03", "rep": "Delia C. Ramirez", "w": 0.034}, {"d": "IL-10", "rep": "Bradley Scott Schneider", "w": 0.022}, {"d": "IL-11", "rep": "Bill Foster", "w": 0.007}], "sh": [{"d": "IL House District 38", "rep": "Debbie Meyers-Martin", "w": 0.024}, {"d": "IL House District 30", "rep": "Will Davis", "w": 0.023}, {"d": "IL House District 56", "rep": "Michelle Mussman", "w": 0.023}, {"d": "IL House District 82", "rep": "Nicole La Ha", "w": 0.022}, {"d": "IL House District 34", "rep": "Nick Smith", "w": 0.022}, {"d": "IL House District 57", "rep": "Tracy Katz Muhl", "w": 0.022}, {"d": "IL House District 52", "rep": "Marty McLaughlin", "w": 0.022}, {"d": "IL House District 36", "rep": "Rick Ryan", "w": 0.021}, {"d": "IL House District 35", "rep": "Mary Gill", "w": 0.019}, {"d": "IL House District 29", "rep": "Thaddeus Jones", "w": 0.019}, {"d": "IL House District 27", "rep": "Justin Slaughter", "w": 0.018}, {"d": "IL House District 51", "rep": "Nabeela Syed", "w": 0.016}, {"d": "IL House District 28", "rep": "Bob Rita", "w": 0.016}, {"d": "IL House District 17", "rep": "Jen Gong-Gershowitz", "w": 0.015}, {"d": "IL House District 44", "rep": "Fred Crespo", "w": 0.015}, {"d": "IL House District 77", "rep": "Norma Hernandez", "w": 0.014}, {"d": "IL House District 33", "rep": "Marcus Evans", "w": 0.013}, {"d": "IL House District 54", "rep": "Mary Beth Canty", "w": 0.013}, {"d": "IL House District 7", "rep": "Chris Welch", "w": 0.013}, {"d": "IL House District 53", "rep": "Nicolle Grasse", "w": 0.013}, {"d": "IL House District 21", "rep": "Abdelnasser Rashid", "w": 0.011}, {"d": "IL House District 20", "rep": "Brad Stephens", "w": 0.011}, {"d": "IL House District 15", "rep": "Michael Kelly", "w": 0.011}, {"d": "IL House District 55", "rep": "Justin Cochran", "w": 0.01}, {"d": "IL House District 80", "rep": "Anthony DeLuca", "w": 0.01}, {"d": "IL House District 31", "rep": "Mike Crawford", "w": 0.01}, {"d": "IL House District 22", "rep": "Angie Guerrero-Cuellar", "w": 0.009}, {"d": "IL House District 8", "rep": "La Shawn Ford", "w": 0.009}, {"d": "IL House District 18", "rep": "Robyn Gabel", "w": 0.009}, {"d": "IL House District 2", "rep": "Lisa Hernandez", "w": 0.008}, {"d": "IL House District 43", "rep": "Anna Moeller", "w": 0.007}, {"d": "IL House District 32", "rep": "Lisa Davis", "w": 0.007}, {"d": "IL House District 1", "rep": "Aarón Ortíz", "w": 0.007}, {"d": "IL House District 78", "rep": "Camille Lilly", "w": 0.007}, {"d": "IL House District 16", "rep": "Kevin Olickal", "w": 0.007}, {"d": "IL House District 37", "rep": "Patrick Sheehan", "w": 0.006}, {"d": "IL House District 25", "rep": "Curtis Tarver", "w": 0.006}, {"d": "IL House District 49", "rep": "Maura Hirschauer", "w": 0.006}, {"d": "IL House District 10", "rep": "Omar Williams", "w": 0.006}, {"d": "IL House District 6", "rep": "Sonya Harper", "w": 0.005}, {"d": "IL House District 19", "rep": "Lindsey LaPointe", "w": 0.005}, {"d": "IL House District 9", "rep": "Yolonda Morris", "w": 0.005}], "ss": [{"d": "IL Senate District 15", "rep": "Napoleon Harris", "w": 0.042}, {"d": "IL Senate District 18", "rep": "Bill Cunningham", "w": 0.04}, {"d": "IL Senate District 26", "rep": "Darby Hills", "w": 0.038}, {"d": "IL Senate District 17", "rep": "Elgie Sims", "w": 0.036}, {"d": "IL Senate District 14", "rep": "Emil Jones", "w": 0.034}, {"d": "IL Senate District 28", "rep": "Laura Murphy", "w": 0.033}, {"d": "IL Senate District 19", "rep": "Mike Hastings", "w": 0.029}, {"d": "IL Senate District 27", "rep": "Mark Walker", "w": 0.026}, {"d": "IL Senate District 29", "rep": "Julie Morrison", "w": 0.025}, {"d": "IL Senate District 9", "rep": "Laura Fine", "w": 0.024}, {"d": "IL Senate District 41", "rep": "John Curran", "w": 0.022}, {"d": "IL Senate District 4", "rep": "Kimberly Lightford", "w": 0.022}, {"d": "IL Senate District 22", "rep": "Cristina Castro", "w": 0.022}, {"d": "IL Senate District 11", "rep": "Mike Porfirio", "w": 0.021}, {"d": "IL Senate District 39", "rep": "Don Harmon", "w": 0.021}, {"d": "IL Senate District 8", "rep": "Ram Villivalam", "w": 0.017}, {"d": "IL Senate District 16", "rep": "Willie Preston", "w": 0.017}, {"d": "IL Senate District 10", "rep": "Rob Martwick", "w": 0.016}, {"d": "IL Senate District 1", "rep": "Javier Cervantes", "w": 0.015}, {"d": "IL Senate District 40", "rep": "Patrick Joyce", "w": 0.011}, {"d": "IL Senate District 5", "rep": "Lakesia Collins", "w": 0.011}, {"d": "IL Senate District 13", "rep": "Robert Peters", "w": 0.01}, {"d": "IL Senate District 3", "rep": "Mattie Hunter", "w": 0.01}, {"d": "IL Senate District 12", "rep": "Celina Villanueva", "w": 0.009}, {"d": "IL Senate District 2", "rep": "Omar Aquino", "w": 0.007}, {"d": "IL Senate District 20", "rep": "Graciela Guzmán", "w": 0.007}, {"d": "IL Senate District 25", "rep": "Karina Villa", "w": 0.006}]}, "munis": [{"m": "Chicago", "p": [{"n": "Brandon Johnson", "r": "Mayor, Chicago, IL"}]}], "slug": "cook"}, "17033": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.996}], "sh": [{"d": "IL House District 102", "rep": "Adam Niemerg", "w": 1.0}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "crawford"}, "17035": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 102", "rep": "Adam Niemerg", "w": 0.86}, {"d": "IL House District 107", "rep": "Brad Halbrook", "w": 0.14}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 0.86}, {"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.14}]}, "munis": [], "slug": "cumberland"}, "17037": {"county": [], "districts": {"cd": [{"d": "IL-14", "rep": "Lauren Underwood", "w": 0.699}, {"d": "IL-16", "rep": "Darin LaHood", "w": 0.166}, {"d": "IL-11", "rep": "Bill Foster", "w": 0.135}], "sh": [{"d": "IL House District 74", "rep": "Brad Fritts", "w": 0.323}, {"d": "IL House District 89", "rep": "Tony McCombie", "w": 0.281}, {"d": "IL House District 70", "rep": "Jeff Keicher", "w": 0.249}, {"d": "IL House District 76", "rep": "Murri Briel", "w": 0.12}, {"d": "IL House District 75", "rep": "Jed Davis", "w": 0.026}], "ss": [{"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.323}, {"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 0.281}, {"d": "IL Senate District 35", "rep": "Dave Syverson", "w": 0.249}, {"d": "IL Senate District 38", "rep": "Sue Rezin", "w": 0.146}]}, "munis": [], "slug": "dekalb"}, "17039": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 88", "rep": "Regan Deering", "w": 0.521}, {"d": "IL House District 87", "rep": "Bill Hauter", "w": 0.479}], "ss": [{"d": "IL Senate District 44", "rep": "Sally Turner", "w": 1.0}]}, "munis": [], "slug": "de-witt"}, "17041": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 101", "rep": "Chris Miller", "w": 0.887}, {"d": "IL House District 102", "rep": "Adam Niemerg", "w": 0.113}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "douglas"}, "17043": {"county": [], "districts": {"cd": [{"d": "IL-03", "rep": "Delia C. Ramirez", "w": 0.302}, {"d": "IL-06", "rep": "Sean Casten", "w": 0.265}, {"d": "IL-11", "rep": "Bill Foster", "w": 0.238}, {"d": "IL-08", "rep": "Raja Krishnamoorthi", "w": 0.155}, {"d": "IL-04", "rep": "Jesús G. \"Chuy\" García", "w": 0.04}], "sh": [{"d": "IL House District 49", "rep": "Maura Hirschauer", "w": 0.147}, {"d": "IL House District 47", "rep": "Amy Grant", "w": 0.142}, {"d": "IL House District 48", "rep": "Jennifer Sanalitro", "w": 0.092}, {"d": "IL House District 42", "rep": "Margaret DeLaRosa", "w": 0.092}, {"d": "IL House District 81", "rep": "Anne Stava", "w": 0.09}, {"d": "IL House District 45", "rep": "Marti Deuter", "w": 0.086}, {"d": "IL House District 46", "rep": "Diane Blair-Sherlock", "w": 0.084}, {"d": "IL House District 82", "rep": "Nicole La Ha", "w": 0.079}, {"d": "IL House District 41", "rep": "Janet Yang Rohr", "w": 0.066}, {"d": "IL House District 77", "rep": "Norma Hernandez", "w": 0.034}, {"d": "IL House District 84", "rep": "Stephanie Kifowit", "w": 0.033}, {"d": "IL House District 7", "rep": "Chris Welch", "w": 0.017}, {"d": "IL House District 65", "rep": "Dan Ugaste", "w": 0.013}, {"d": "IL House District 50", "rep": "Barbara Hernandez", "w": 0.009}, {"d": "IL House District 56", "rep": "Michelle Mussman", "w": 0.009}, {"d": "IL House District 85", "rep": "Dee Avelar", "w": 0.006}], "ss": [{"d": "IL Senate District 24", "rep": "Seth Lewis", "w": 0.234}, {"d": "IL Senate District 23", "rep": "Suzy Glowiak Hilton", "w": 0.17}, {"d": "IL Senate District 41", "rep": "John Curran", "w": 0.169}, {"d": "IL Senate District 21", "rep": "Laura Ellman", "w": 0.158}, {"d": "IL Senate District 25", "rep": "Karina Villa", "w": 0.156}, {"d": "IL Senate District 39", "rep": "Don Harmon", "w": 0.034}, {"d": "IL Senate District 42", "rep": "Linda Holmes", "w": 0.033}, {"d": "IL Senate District 4", "rep": "Kimberly Lightford", "w": 0.017}, {"d": "IL Senate District 33", "rep": "Don DeWitte", "w": 0.013}, {"d": "IL Senate District 28", "rep": "Laura Murphy", "w": 0.009}, {"d": "IL Senate District 43", "rep": "Rachel Ventura", "w": 0.006}]}, "munis": [{"m": "Naperville", "p": [{"n": "Scott Wehrli", "r": "Mayor, Naperville, IL"}]}], "slug": "dupage"}, "17045": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 102", "rep": "Adam Niemerg", "w": 1.0}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "edgar"}, "17047": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 1.0}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 1.0}]}, "munis": [], "slug": "edwards"}, "17049": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 107", "rep": "Brad Halbrook", "w": 0.589}, {"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 0.303}, {"d": "IL House District 102", "rep": "Adam Niemerg", "w": 0.108}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.589}, {"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 0.303}, {"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 0.108}]}, "munis": [], "slug": "effingham"}, "17051": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 1.0}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 1.0}]}, "munis": [], "slug": "fayette"}, "17053": {"county": [], "districts": {"cd": [{"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.901}, {"d": "IL-16", "rep": "Darin LaHood", "w": 0.099}], "sh": [{"d": "IL House District 106", "rep": "Jason Bunting", "w": 0.81}, {"d": "IL House District 101", "rep": "Chris Miller", "w": 0.19}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.81}, {"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 0.19}]}, "munis": [], "slug": "ford"}, "17055": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 0.549}, {"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 0.451}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.549}]}, "munis": [], "slug": "franklin"}, "17057": {"county": [], "districts": {"cd": [{"d": "IL-17", "rep": "Eric Sorensen", "w": 0.573}, {"d": "IL-15", "rep": "Mary E. Miller", "w": 0.427}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.958}, {"d": "IL House District 93", "rep": "Travis Weaver", "w": 0.042}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 1.0}]}, "munis": [], "slug": "fulton"}, "17059": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 0.999}], "ss": []}, "munis": [], "slug": "gallatin"}, "17061": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 1.0}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "greene"}, "17063": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.999}], "sh": [{"d": "IL House District 106", "rep": "Jason Bunting", "w": 0.71}, {"d": "IL House District 75", "rep": "Jed Davis", "w": 0.248}, {"d": "IL House District 79", "rep": "Jackie Haas", "w": 0.041}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.71}, {"d": "IL Senate District 38", "rep": "Sue Rezin", "w": 0.248}, {"d": "IL Senate District 40", "rep": "Patrick Joyce", "w": 0.041}]}, "munis": [], "slug": "grundy"}, "17065": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 0.624}, {"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 0.376}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.624}]}, "munis": [], "slug": "hamilton"}, "17067": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 1.0}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 1.0}]}, "munis": [], "slug": "hancock"}, "17069": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 0.999}], "ss": []}, "munis": [], "slug": "hardin"}, "17071": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 1.0}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 1.0}]}, "munis": [], "slug": "henderson"}, "17073": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.854}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.146}], "sh": [{"d": "IL House District 93", "rep": "Travis Weaver", "w": 0.578}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.256}, {"d": "IL House District 71", "rep": "Dan Swanson", "w": 0.166}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.578}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.256}, {"d": "IL Senate District 36", "rep": "Mike Halpin", "w": 0.166}]}, "munis": [], "slug": "henry"}, "17075": {"county": [], "districts": {"cd": [{"d": "IL-02", "rep": "Robin L. Kelly", "w": 1.0}], "sh": [{"d": "IL House District 106", "rep": "Jason Bunting", "w": 1.0}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 1.0}]}, "munis": [], "slug": "iroquois"}, "17077": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 115", "rep": "David Friess", "w": 0.582}, {"d": "IL House District 118", "rep": "Paul Jacobs", "w": 0.417}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.582}]}, "munis": [], "slug": "jackson"}, "17079": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 102", "rep": "Adam Niemerg", "w": 1.0}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "jasper"}, "17081": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 1.0}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "17083": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 1.0}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "jersey"}, "17085": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.999}], "sh": [{"d": "IL House District 89", "rep": "Tony McCombie", "w": 1.0}], "ss": [{"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 1.0}]}, "munis": [], "slug": "jo-daviess"}, "17087": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 1.0}], "ss": []}, "munis": [], "slug": "johnson"}, "17089": {"county": [], "districts": {"cd": [{"d": "IL-11", "rep": "Bill Foster", "w": 0.584}, {"d": "IL-08", "rep": "Raja Krishnamoorthi", "w": 0.261}, {"d": "IL-14", "rep": "Lauren Underwood", "w": 0.156}], "sh": [{"d": "IL House District 70", "rep": "Jeff Keicher", "w": 0.494}, {"d": "IL House District 65", "rep": "Dan Ugaste", "w": 0.231}, {"d": "IL House District 83", "rep": "Matt Hanson", "w": 0.083}, {"d": "IL House District 66", "rep": "Suzanne Ness", "w": 0.077}, {"d": "IL House District 50", "rep": "Barbara Hernandez", "w": 0.057}, {"d": "IL House District 43", "rep": "Anna Moeller", "w": 0.028}, {"d": "IL House District 49", "rep": "Maura Hirschauer", "w": 0.019}, {"d": "IL House District 84", "rep": "Stephanie Kifowit", "w": 0.009}], "ss": [{"d": "IL Senate District 35", "rep": "Dave Syverson", "w": 0.494}, {"d": "IL Senate District 33", "rep": "Don DeWitte", "w": 0.308}, {"d": "IL Senate District 42", "rep": "Linda Holmes", "w": 0.092}, {"d": "IL Senate District 25", "rep": "Karina Villa", "w": 0.075}, {"d": "IL Senate District 22", "rep": "Cristina Castro", "w": 0.028}]}, "munis": [{"m": "Aurora", "p": [{"n": "Richard C. Irvin", "r": "Mayor, Aurora, IL"}]}, {"m": "Elgin", "p": [{"n": "Dave Kaptain", "r": "Mayor, Elgin, IL"}]}], "slug": "kane"}, "17091": {"county": [], "districts": {"cd": [{"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.858}, {"d": "IL-01", "rep": "Jonathan L. Jackson", "w": 0.142}], "sh": [{"d": "IL House District 79", "rep": "Jackie Haas", "w": 0.518}, {"d": "IL House District 34", "rep": "Nick Smith", "w": 0.331}, {"d": "IL House District 29", "rep": "Thaddeus Jones", "w": 0.15}], "ss": [{"d": "IL Senate District 40", "rep": "Patrick Joyce", "w": 0.518}, {"d": "IL Senate District 17", "rep": "Elgie Sims", "w": 0.331}, {"d": "IL Senate District 15", "rep": "Napoleon Harris", "w": 0.15}]}, "munis": [], "slug": "kankakee"}, "17093": {"county": [], "districts": {"cd": [{"d": "IL-14", "rep": "Lauren Underwood", "w": 0.999}], "sh": [{"d": "IL House District 75", "rep": "Jed Davis", "w": 0.861}, {"d": "IL House District 97", "rep": "Harry Benton", "w": 0.064}, {"d": "IL House District 83", "rep": "Matt Hanson", "w": 0.051}, {"d": "IL House District 84", "rep": "Stephanie Kifowit", "w": 0.025}], "ss": [{"d": "IL Senate District 38", "rep": "Sue Rezin", "w": 0.861}, {"d": "IL Senate District 42", "rep": "Linda Holmes", "w": 0.076}, {"d": "IL Senate District 49", "rep": "Meg Loughran Cappel", "w": 0.064}]}, "munis": [], "slug": "kendall"}, "17095": {"county": [], "districts": {"cd": [{"d": "IL-17", "rep": "Eric Sorensen", "w": 1.0}], "sh": [{"d": "IL House District 93", "rep": "Travis Weaver", "w": 0.598}, {"d": "IL House District 71", "rep": "Dan Swanson", "w": 0.201}, {"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.201}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.799}, {"d": "IL Senate District 36", "rep": "Mike Halpin", "w": 0.201}]}, "munis": [], "slug": "knox"}, "17097": {"county": [], "districts": {"cd": [{"d": "IL-10", "rep": "Bradley Scott Schneider", "w": 0.267}, {"d": "IL-09", "rep": "Janice D. Schakowsky", "w": 0.03}, {"d": "IL-05", "rep": "Mike Quigley", "w": 0.029}, {"d": "IL-11", "rep": "Bill Foster", "w": 0.017}], "sh": [{"d": "IL House District 61", "rep": "Joyce Mason", "w": 0.068}, {"d": "IL House District 52", "rep": "Marty McLaughlin", "w": 0.059}, {"d": "IL House District 64", "rep": "Tom Weber", "w": 0.052}, {"d": "IL House District 58", "rep": "Bob Morgan", "w": 0.04}, {"d": "IL House District 62", "rep": "Laura Faver Dias", "w": 0.039}, {"d": "IL House District 51", "rep": "Nabeela Syed", "w": 0.03}, {"d": "IL House District 59", "rep": "Dan Didech", "w": 0.027}, {"d": "IL House District 60", "rep": "Rita Mayfield", "w": 0.025}], "ss": [{"d": "IL Senate District 31", "rep": "Mary Edly-Allen", "w": 0.107}, {"d": "IL Senate District 26", "rep": "Darby Hills", "w": 0.089}, {"d": "IL Senate District 32", "rep": "Craig Wilcox", "w": 0.052}, {"d": "IL Senate District 30", "rep": "Adriane Johnson", "w": 0.052}, {"d": "IL Senate District 29", "rep": "Julie Morrison", "w": 0.043}]}, "munis": [{"m": "Highland Park", "p": [{"n": "Nancy Rotering", "r": "Mayor, Highland Park, IL"}]}, {"m": "Lake Forest", "p": [{"n": "George A. Pandaleon", "r": "Mayor, Lake Forest, IL"}]}], "slug": "lake"}, "17099": {"county": [], "districts": {"cd": [{"d": "IL-14", "rep": "Lauren Underwood", "w": 0.614}, {"d": "IL-16", "rep": "Darin LaHood", "w": 0.386}], "sh": [{"d": "IL House District 76", "rep": "Murri Briel", "w": 0.298}, {"d": "IL House District 74", "rep": "Brad Fritts", "w": 0.282}, {"d": "IL House District 106", "rep": "Jason Bunting", "w": 0.201}, {"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.112}, {"d": "IL House District 75", "rep": "Jed Davis", "w": 0.106}], "ss": [{"d": "IL Senate District 38", "rep": "Sue Rezin", "w": 0.404}, {"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.313}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.282}]}, "munis": [{"m": "Mendota", "p": [{"n": "David Boelk", "r": "Mayor, Mendota, IL"}]}], "slug": "lasalle"}, "17101": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.995}, {"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.005}], "sh": [{"d": "IL House District 102", "rep": "Adam Niemerg", "w": 1.0}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 1.0}]}, "munis": [], "slug": "lawrence"}, "17103": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 1.0}], "sh": [{"d": "IL House District 74", "rep": "Brad Fritts", "w": 0.803}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.197}], "ss": [{"d": "IL Senate District 37", "rep": "Li Arellano", "w": 1.0}]}, "munis": [], "slug": "lee"}, "17105": {"county": [], "districts": {"cd": [{"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.596}, {"d": "IL-16", "rep": "Darin LaHood", "w": 0.404}], "sh": [{"d": "IL House District 106", "rep": "Jason Bunting", "w": 0.663}, {"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.315}, {"d": "IL House District 88", "rep": "Regan Deering", "w": 0.022}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.978}, {"d": "IL Senate District 44", "rep": "Sally Turner", "w": 0.022}]}, "munis": [], "slug": "livingston"}, "17107": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 87", "rep": "Bill Hauter", "w": 1.0}], "ss": [{"d": "IL Senate District 44", "rep": "Sally Turner", "w": 1.0}]}, "munis": [], "slug": "logan"}, "17109": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.867}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.133}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.689}, {"d": "IL House District 71", "rep": "Dan Swanson", "w": 0.311}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.689}, {"d": "IL Senate District 36", "rep": "Mike Halpin", "w": 0.311}]}, "munis": [], "slug": "mcdonough"}, "17111": {"county": [], "districts": {"cd": [{"d": "IL-11", "rep": "Bill Foster", "w": 0.485}, {"d": "IL-10", "rep": "Bradley Scott Schneider", "w": 0.219}, {"d": "IL-16", "rep": "Darin LaHood", "w": 0.217}, {"d": "IL-09", "rep": "Janice D. Schakowsky", "w": 0.079}], "sh": [{"d": "IL House District 69", "rep": "Joe Sosnowski", "w": 0.612}, {"d": "IL House District 63", "rep": "Steve Reick", "w": 0.207}, {"d": "IL House District 64", "rep": "Tom Weber", "w": 0.118}, {"d": "IL House District 52", "rep": "Marty McLaughlin", "w": 0.027}, {"d": "IL House District 66", "rep": "Suzanne Ness", "w": 0.026}, {"d": "IL House District 70", "rep": "Jeff Keicher", "w": 0.01}], "ss": [{"d": "IL Senate District 35", "rep": "Dave Syverson", "w": 0.621}, {"d": "IL Senate District 32", "rep": "Craig Wilcox", "w": 0.325}, {"d": "IL Senate District 26", "rep": "Darby Hills", "w": 0.027}, {"d": "IL Senate District 33", "rep": "Don DeWitte", "w": 0.026}]}, "munis": [], "slug": "mchenry"}, "17113": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.853}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.146}], "sh": [{"d": "IL House District 88", "rep": "Regan Deering", "w": 0.572}, {"d": "IL House District 87", "rep": "Bill Hauter", "w": 0.207}, {"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.118}, {"d": "IL House District 91", "rep": "Sharon Chung", "w": 0.061}, {"d": "IL House District 106", "rep": "Jason Bunting", "w": 0.042}], "ss": [{"d": "IL Senate District 44", "rep": "Sally Turner", "w": 0.78}, {"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.159}, {"d": "IL Senate District 46", "rep": "Dave Koehler", "w": 0.061}]}, "munis": [{"m": "Bloomington", "p": [{"n": "Mboka Mwilambwe", "r": "Mayor, Bloomington, IL"}]}], "slug": "mclean"}, "17115": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.662}, {"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.338}], "sh": [{"d": "IL House District 88", "rep": "Regan Deering", "w": 0.331}, {"d": "IL House District 107", "rep": "Brad Halbrook", "w": 0.264}, {"d": "IL House District 87", "rep": "Bill Hauter", "w": 0.251}, {"d": "IL House District 96", "rep": "Sue Scherer", "w": 0.116}, {"d": "IL House District 95", "rep": "Mike Coffey", "w": 0.037}], "ss": [{"d": "IL Senate District 44", "rep": "Sally Turner", "w": 0.582}, {"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.264}, {"d": "IL Senate District 48", "rep": "Doris Turner", "w": 0.153}]}, "munis": [{"m": "Decatur", "p": [{"n": "Julie Moore Wolfe", "r": "Mayor, Decatur, IL"}]}], "slug": "macon"}, "17117": {"county": [], "districts": {"cd": [{"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.999}], "sh": [{"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 0.5}, {"d": "IL House District 108", "rep": "Wayne Rosenthal", "w": 0.499}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 0.5}, {"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.499}]}, "munis": [], "slug": "macoupin"}, "17119": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.626}, {"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.374}], "sh": [{"d": "IL House District 109", "rep": "Charlie Meier", "w": 0.558}, {"d": "IL House District 111", "rep": "Amy Elik", "w": 0.182}, {"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 0.154}, {"d": "IL House District 112", "rep": "Katie Stuart", "w": 0.1}, {"d": "IL House District 113", "rep": "Jay Hoffman", "w": 0.006}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 0.558}, {"d": "IL Senate District 56", "rep": "Erica Harriss", "w": 0.282}, {"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 0.154}, {"d": "IL Senate District 57", "rep": "Christopher Belt", "w": 0.006}]}, "munis": [], "slug": "madison"}, "17121": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 0.968}, {"d": "IL House District 116", "rep": "Dave Severin", "w": 0.032}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 0.968}, {"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.032}]}, "munis": [], "slug": "marion"}, "17123": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 1.0}], "sh": [{"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.819}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.181}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.819}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.181}]}, "munis": [], "slug": "marshall"}, "17125": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.999}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.999}]}, "munis": [], "slug": "mason"}, "17127": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 1.0}], "ss": []}, "munis": [], "slug": "massac"}, "17129": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 108", "rep": "Wayne Rosenthal", "w": 1.0}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 1.0}]}, "munis": [], "slug": "menard"}, "17131": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.618}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.382}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.747}, {"d": "IL House District 71", "rep": "Dan Swanson", "w": 0.253}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.747}, {"d": "IL Senate District 36", "rep": "Mike Halpin", "w": 0.253}]}, "munis": [], "slug": "mercer"}, "17133": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 115", "rep": "David Friess", "w": 0.999}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.999}]}, "munis": [], "slug": "monroe"}, "17135": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 108", "rep": "Wayne Rosenthal", "w": 0.736}, {"d": "IL House District 107", "rep": "Brad Halbrook", "w": 0.159}, {"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 0.106}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.894}, {"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 0.106}]}, "munis": [{"m": "Litchfield", "p": [{"n": "Steve Dougherty", "r": "Mayor, Litchfield, IL"}]}], "slug": "montgomery"}, "17137": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 99", "rep": "Kyle Moore", "w": 0.59}, {"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 0.41}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "17139": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 107", "rep": "Brad Halbrook", "w": 0.969}, {"d": "IL House District 101", "rep": "Chris Miller", "w": 0.031}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.969}, {"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 0.031}]}, "munis": [], "slug": "moultrie"}, "17141": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 1.0}], "sh": [{"d": "IL House District 89", "rep": "Tony McCombie", "w": 0.743}, {"d": "IL House District 74", "rep": "Brad Fritts", "w": 0.257}], "ss": [{"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 0.743}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.257}]}, "munis": [], "slug": "ogle"}, "17143": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.596}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.404}], "sh": [{"d": "IL House District 93", "rep": "Travis Weaver", "w": 0.646}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.227}, {"d": "IL House District 92", "rep": "Jehan Gordon-Booth", "w": 0.076}, {"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.02}, {"d": "IL House District 91", "rep": "Sharon Chung", "w": 0.016}, {"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.014}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.66}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.227}, {"d": "IL Senate District 46", "rep": "Dave Koehler", "w": 0.092}, {"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.02}]}, "munis": [{"m": "Peoria", "p": [{"n": "Rita Ali", "r": "Mayor, Peoria, IL"}]}], "slug": "peoria"}, "17145": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 115", "rep": "David Friess", "w": 1.0}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 1.0}]}, "munis": [], "slug": "perry"}, "17147": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.555}, {"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.445}], "sh": [{"d": "IL House District 88", "rep": "Regan Deering", "w": 1.0}], "ss": [{"d": "IL Senate District 44", "rep": "Sally Turner", "w": 1.0}]}, "munis": [], "slug": "piatt"}, "17149": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 1.0}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "pike"}, "17151": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 1.0}], "ss": []}, "munis": [], "slug": "pope"}, "17153": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.997}], "sh": [{"d": "IL House District 118", "rep": "Paul Jacobs", "w": 0.999}], "ss": []}, "munis": [], "slug": "pulaski"}, "17155": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.575}, {"d": "IL-14", "rep": "Lauren Underwood", "w": 0.425}], "sh": [{"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 1.0}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 1.0}]}, "munis": [], "slug": "putnam"}, "17157": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.999}], "sh": [{"d": "IL House District 115", "rep": "David Friess", "w": 1.0}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 1.0}]}, "munis": [], "slug": "randolph"}, "17159": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 110", "rep": "Blaine Wilhour", "w": 1.0}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 1.0}]}, "munis": [], "slug": "richland"}, "17161": {"county": [], "districts": {"cd": [{"d": "IL-17", "rep": "Eric Sorensen", "w": 0.999}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.411}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.254}, {"d": "IL House District 72", "rep": "Gregg Johnson", "w": 0.177}, {"d": "IL House District 71", "rep": "Dan Swanson", "w": 0.158}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.411}, {"d": "IL Senate District 36", "rep": "Mike Halpin", "w": 0.335}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.254}]}, "munis": [], "slug": "rock-island"}, "17163": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.791}, {"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.209}], "sh": [{"d": "IL House District 114", "rep": "Kevin Schmidt", "w": 0.641}, {"d": "IL House District 113", "rep": "Jay Hoffman", "w": 0.126}, {"d": "IL House District 115", "rep": "David Friess", "w": 0.1}, {"d": "IL House District 109", "rep": "Charlie Meier", "w": 0.08}, {"d": "IL House District 112", "rep": "Katie Stuart", "w": 0.053}], "ss": [{"d": "IL Senate District 57", "rep": "Christopher Belt", "w": 0.767}, {"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.1}, {"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 0.08}, {"d": "IL Senate District 56", "rep": "Erica Harriss", "w": 0.053}]}, "munis": [], "slug": "st-clair"}, "17165": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 1.0}], "ss": []}, "munis": [], "slug": "saline"}, "17167": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.512}, {"d": "IL-13", "rep": "Nikki Budzinski", "w": 0.488}], "sh": [{"d": "IL House District 108", "rep": "Wayne Rosenthal", "w": 0.62}, {"d": "IL House District 95", "rep": "Mike Coffey", "w": 0.166}, {"d": "IL House District 87", "rep": "Bill Hauter", "w": 0.133}, {"d": "IL House District 96", "rep": "Sue Scherer", "w": 0.081}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 0.62}, {"d": "IL Senate District 48", "rep": "Doris Turner", "w": 0.247}, {"d": "IL Senate District 44", "rep": "Sally Turner", "w": 0.133}]}, "munis": [{"m": "Springfield", "p": [{"n": "Misty Buscher", "r": "Mayor, Springfield, IL"}]}], "slug": "sangamon"}, "17169": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.548}, {"d": "IL House District 99", "rep": "Kyle Moore", "w": 0.452}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.548}, {"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 0.452}]}, "munis": [], "slug": "schuyler"}, "17171": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 100", "rep": "C.D. Davidsmeyer", "w": 1.0}], "ss": [{"d": "IL Senate District 50", "rep": "Jil Tracy", "w": 1.0}]}, "munis": [], "slug": "scott"}, "17173": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 1.0}], "sh": [{"d": "IL House District 107", "rep": "Brad Halbrook", "w": 1.0}], "ss": [{"d": "IL Senate District 54", "rep": "Steve McClure", "w": 1.0}]}, "munis": [], "slug": "shelby"}, "17175": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 1.0}], "sh": [{"d": "IL House District 93", "rep": "Travis Weaver", "w": 0.625}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.375}], "ss": [{"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.625}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.375}]}, "munis": [], "slug": "stark"}, "17177": {"county": [], "districts": {"cd": [{"d": "IL-17", "rep": "Eric Sorensen", "w": 0.538}, {"d": "IL-16", "rep": "Darin LaHood", "w": 0.461}], "sh": [{"d": "IL House District 89", "rep": "Tony McCombie", "w": 0.544}, {"d": "IL House District 90", "rep": "John Cabello", "w": 0.456}], "ss": [{"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 1.0}]}, "munis": [], "slug": "stephenson"}, "17179": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.538}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.462}], "sh": [{"d": "IL House District 87", "rep": "Bill Hauter", "w": 0.59}, {"d": "IL House District 93", "rep": "Travis Weaver", "w": 0.166}, {"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.099}, {"d": "IL House District 91", "rep": "Sharon Chung", "w": 0.088}, {"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.058}], "ss": [{"d": "IL Senate District 44", "rep": "Sally Turner", "w": 0.59}, {"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.265}, {"d": "IL Senate District 46", "rep": "Dave Koehler", "w": 0.088}, {"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.058}]}, "munis": [{"m": "Pekin", "p": [{"n": "Q106024909", "r": "Mayor, Pekin, IL"}]}], "slug": "tazewell"}, "17181": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 118", "rep": "Paul Jacobs", "w": 1.0}], "ss": []}, "munis": [], "slug": "union"}, "17183": {"county": [], "districts": {"cd": [{"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.713}, {"d": "IL-15", "rep": "Mary E. Miller", "w": 0.287}], "sh": [{"d": "IL House District 101", "rep": "Chris Miller", "w": 0.371}, {"d": "IL House District 102", "rep": "Adam Niemerg", "w": 0.322}, {"d": "IL House District 104", "rep": "Brandun Schweizer", "w": 0.307}], "ss": [{"d": "IL Senate District 51", "rep": "Chapin Rose", "w": 0.693}, {"d": "IL Senate District 52", "rep": "Paul Faraci", "w": 0.307}]}, "munis": [], "slug": "vermilion"}, "17185": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.995}, {"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.005}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 0.999}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.999}]}, "munis": [], "slug": "wabash"}, "17187": {"county": [], "districts": {"cd": [{"d": "IL-15", "rep": "Mary E. Miller", "w": 0.734}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.266}], "sh": [{"d": "IL House District 71", "rep": "Dan Swanson", "w": 0.663}, {"d": "IL House District 94", "rep": "Norine Hammond", "w": 0.337}], "ss": [{"d": "IL Senate District 36", "rep": "Mike Halpin", "w": 0.663}, {"d": "IL Senate District 47", "rep": "Neil Anderson", "w": 0.337}]}, "munis": [], "slug": "warren"}, "17189": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 109", "rep": "Charlie Meier", "w": 0.676}, {"d": "IL House District 115", "rep": "David Friess", "w": 0.304}, {"d": "IL House District 116", "rep": "Dave Severin", "w": 0.02}], "ss": [{"d": "IL Senate District 55", "rep": "Jason Plummer", "w": 0.676}, {"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.324}]}, "munis": [], "slug": "washington"}, "17191": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 1.0}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 1.0}]}, "munis": [], "slug": "wayne"}, "17193": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 0.994}, {"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.006}], "sh": [{"d": "IL House District 116", "rep": "Dave Severin", "w": 0.546}, {"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 0.453}], "ss": [{"d": "IL Senate District 58", "rep": "Terri Bryant", "w": 0.546}]}, "munis": [], "slug": "white"}, "17195": {"county": [], "districts": {"cd": [{"d": "IL-17", "rep": "Eric Sorensen", "w": 1.0}], "sh": [{"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.673}, {"d": "IL House District 74", "rep": "Brad Fritts", "w": 0.327}], "ss": [{"d": "IL Senate District 37", "rep": "Li Arellano", "w": 1.0}]}, "munis": [], "slug": "whiteside"}, "17197": {"county": [], "districts": {"cd": [{"d": "IL-01", "rep": "Jonathan L. Jackson", "w": 0.512}, {"d": "IL-14", "rep": "Lauren Underwood", "w": 0.251}, {"d": "IL-02", "rep": "Robin L. Kelly", "w": 0.2}, {"d": "IL-11", "rep": "Bill Foster", "w": 0.037}], "sh": [{"d": "IL House District 80", "rep": "Anthony DeLuca", "w": 0.231}, {"d": "IL House District 86", "rep": "Larry Walsh", "w": 0.177}, {"d": "IL House District 79", "rep": "Jackie Haas", "w": 0.144}, {"d": "IL House District 29", "rep": "Thaddeus Jones", "w": 0.119}, {"d": "IL House District 37", "rep": "Patrick Sheehan", "w": 0.08}, {"d": "IL House District 85", "rep": "Dee Avelar", "w": 0.066}, {"d": "IL House District 97", "rep": "Harry Benton", "w": 0.054}, {"d": "IL House District 98", "rep": "Natalie Manley", "w": 0.045}, {"d": "IL House District 34", "rep": "Nick Smith", "w": 0.035}, {"d": "IL House District 38", "rep": "Debbie Meyers-Martin", "w": 0.024}, {"d": "IL House District 41", "rep": "Janet Yang Rohr", "w": 0.012}, {"d": "IL House District 84", "rep": "Stephanie Kifowit", "w": 0.007}], "ss": [{"d": "IL Senate District 40", "rep": "Patrick Joyce", "w": 0.375}, {"d": "IL Senate District 43", "rep": "Rachel Ventura", "w": 0.243}, {"d": "IL Senate District 15", "rep": "Napoleon Harris", "w": 0.119}, {"d": "IL Senate District 19", "rep": "Mike Hastings", "w": 0.104}, {"d": "IL Senate District 49", "rep": "Meg Loughran Cappel", "w": 0.1}, {"d": "IL Senate District 17", "rep": "Elgie Sims", "w": 0.035}, {"d": "IL Senate District 21", "rep": "Laura Ellman", "w": 0.012}, {"d": "IL Senate District 42", "rep": "Linda Holmes", "w": 0.007}]}, "munis": [{"m": "Joliet", "p": [{"n": "Bob O’Dekirk", "r": "Mayor, Joliet, IL"}]}], "slug": "will"}, "17199": {"county": [], "districts": {"cd": [{"d": "IL-12", "rep": "Mike Bost", "w": 1.0}], "sh": [{"d": "IL House District 117", "rep": "Patrick Windhorst", "w": 0.614}, {"d": "IL House District 118", "rep": "Paul Jacobs", "w": 0.386}], "ss": []}, "munis": [], "slug": "williamson"}, "17201": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 0.755}, {"d": "IL-17", "rep": "Eric Sorensen", "w": 0.245}], "sh": [{"d": "IL House District 90", "rep": "John Cabello", "w": 0.456}, {"d": "IL House District 89", "rep": "Tony McCombie", "w": 0.301}, {"d": "IL House District 67", "rep": "Maurice West", "w": 0.168}, {"d": "IL House District 68", "rep": "Dave Vella", "w": 0.06}, {"d": "IL House District 69", "rep": "Joe Sosnowski", "w": 0.015}], "ss": [{"d": "IL Senate District 45", "rep": "Andrew Chesney", "w": 0.757}, {"d": "IL Senate District 34", "rep": "Steve Stadelman", "w": 0.228}, {"d": "IL Senate District 35", "rep": "Dave Syverson", "w": 0.015}]}, "munis": [{"m": "Loves Park", "p": [{"n": "Greg Jury", "r": "Mayor, Loves Park, IL"}]}, {"m": "Rockford", "p": [{"n": "Thomas McNamara", "r": "Mayor, Rockford, IL"}]}], "slug": "winnebago"}, "17203": {"county": [], "districts": {"cd": [{"d": "IL-16", "rep": "Darin LaHood", "w": 1.0}], "sh": [{"d": "IL House District 105", "rep": "Dennis Tipsword", "w": 0.708}, {"d": "IL House District 91", "rep": "Sharon Chung", "w": 0.219}, {"d": "IL House District 73", "rep": "Ryan Spain", "w": 0.06}, {"d": "IL House District 87", "rep": "Bill Hauter", "w": 0.013}], "ss": [{"d": "IL Senate District 53", "rep": "Chris Balkema", "w": 0.708}, {"d": "IL Senate District 46", "rep": "Dave Koehler", "w": 0.219}, {"d": "IL Senate District 37", "rep": "Li Arellano", "w": 0.06}, {"d": "IL Senate District 44", "rep": "Sally Turner", "w": 0.013}]}, "munis": [], "slug": "woodford"}, "18001": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 79", "rep": "Matt Lehman", "w": 1.0}], "ss": [{"d": "IN Senate District 19", "rep": "Travis Holdman", "w": 1.0}]}, "munis": [], "slug": "adams"}, "18003": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 85", "rep": "Dave Heine", "w": 0.615}, {"d": "IN House District 81", "rep": "Martin Carbaugh", "w": 0.199}, {"d": "IN House District 83", "rep": "Chris Judy", "w": 0.059}, {"d": "IN House District 84", "rep": "Bob Morris", "w": 0.049}, {"d": "IN House District 80", "rep": "Phil GiaQuinta", "w": 0.04}, {"d": "IN House District 82", "rep": "Kyle Miller", "w": 0.037}], "ss": [{"d": "IN Senate District 14", "rep": "Tyler Johnson", "w": 0.528}, {"d": "IN Senate District 16", "rep": "Justin Busch", "w": 0.217}, {"d": "IN Senate District 19", "rep": "Travis Holdman", "w": 0.133}, {"d": "IN Senate District 15", "rep": "Liz Brown", "w": 0.123}]}, "munis": [{"m": "Fort Wayne", "p": [{"n": "Tom Henry", "r": "Mayor, Fort Wayne, IN"}]}], "slug": "allen"}, "18005": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 0.73}, {"d": "IN-09", "rep": "Erin Houchin", "w": 0.27}], "sh": [{"d": "IN House District 59", "rep": "Ryan Lauer", "w": 0.541}, {"d": "IN House District 73", "rep": "Jenny Meltzer", "w": 0.409}, {"d": "IN House District 69", "rep": "Jim Lucas", "w": 0.05}], "ss": [{"d": "IN Senate District 41", "rep": "Greg Walker", "w": 1.0}]}, "munis": [], "slug": "bartholomew"}, "18007": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 13", "rep": "Matt Commons", "w": 1.0}], "ss": [{"d": "IN Senate District 6", "rep": "Rick Niemeyer", "w": 1.0}]}, "munis": [], "slug": "benton"}, "18009": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 33", "rep": "J.D. Prescott", "w": 1.0}], "ss": [{"d": "IN Senate District 19", "rep": "Travis Holdman", "w": 1.0}]}, "munis": [], "slug": "blackford"}, "18011": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 41", "rep": "Mark Genda", "w": 0.431}, {"d": "IN House District 25", "rep": "Becky Cash", "w": 0.231}, {"d": "IN House District 28", "rep": "Jeff Thompson", "w": 0.17}, {"d": "IN House District 24", "rep": "Hunter Smith", "w": 0.168}], "ss": [{"d": "IN Senate District 7", "rep": "Brian Buchanan", "w": 0.948}, {"d": "IN Senate District 29", "rep": "J.D. Ford", "w": 0.052}]}, "munis": [], "slug": "boone"}, "18013": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 62", "rep": "Dave Hall", "w": 1.0}], "ss": [{"d": "IN Senate District 44", "rep": "Eric Koch", "w": 1.0}]}, "munis": [], "slug": "brown"}, "18015": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 38", "rep": "Heath VanNatter", "w": 1.0}], "ss": [{"d": "IN Senate District 22", "rep": "Ron Alting", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "18017": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 0.574}, {"d": "IN-04", "rep": "James R. Baird", "w": 0.426}], "sh": [{"d": "IN House District 23", "rep": "Ethan Manning", "w": 0.841}, {"d": "IN House District 38", "rep": "Heath VanNatter", "w": 0.159}], "ss": [{"d": "IN Senate District 18", "rep": "Stacey Donato", "w": 1.0}]}, "munis": [], "slug": "cass"}, "18019": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.998}], "sh": [{"d": "IN House District 66", "rep": "Zach Payne", "w": 0.725}, {"d": "IN House District 70", "rep": "Karen Engleman", "w": 0.175}, {"d": "IN House District 71", "rep": "Wendy Dant Chesser", "w": 0.099}], "ss": [{"d": "IN Senate District 45", "rep": "Chris Garten", "w": 0.999}]}, "munis": [], "slug": "clark"}, "18021": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 46", "rep": "Bob Heaton", "w": 0.6}, {"d": "IN House District 42", "rep": "Tim Yocum", "w": 0.4}], "ss": [{"d": "IN Senate District 38", "rep": "Greg Goode", "w": 1.0}]}, "munis": [], "slug": "clay"}, "18023": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 41", "rep": "Mark Genda", "w": 0.646}, {"d": "IN House District 38", "rep": "Heath VanNatter", "w": 0.354}], "ss": [{"d": "IN Senate District 7", "rep": "Brian Buchanan", "w": 1.0}]}, "munis": [], "slug": "clinton"}, "18025": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.992}, {"d": "IN-09", "rep": "Erin Houchin", "w": 0.007}], "sh": [{"d": "IN House District 74", "rep": "Steve Bartels", "w": 0.999}], "ss": [{"d": "IN Senate District 48", "rep": "Daryl Schmitt", "w": 0.999}]}, "munis": [], "slug": "crawford"}, "18027": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 63", "rep": "Shane Lindauer", "w": 0.834}, {"d": "IN House District 45", "rep": "Bruce Borders", "w": 0.166}], "ss": [{"d": "IN Senate District 39", "rep": "Eric Bassler", "w": 1.0}]}, "munis": [], "slug": "daviess"}, "18029": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 68", "rep": "Garrett Bascom", "w": 1.0}], "ss": [{"d": "IN Senate District 43", "rep": "Randy Maxwell", "w": 1.0}]}, "munis": [], "slug": "dearborn"}, "18031": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 73", "rep": "Jenny Meltzer", "w": 0.548}, {"d": "IN House District 55", "rep": "Lindsay Patterson", "w": 0.256}, {"d": "IN House District 67", "rep": "Alex Zimmerman", "w": 0.196}], "ss": [{"d": "IN Senate District 42", "rep": "Jean Leising", "w": 1.0}]}, "munis": [], "slug": "decatur"}, "18033": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 52", "rep": "Ben Smaltz", "w": 1.0}], "ss": [{"d": "IN Senate District 14", "rep": "Tyler Johnson", "w": 0.705}, {"d": "IN Senate District 13", "rep": "Sue Glick", "w": 0.295}]}, "munis": [], "slug": "dekalb"}, "18035": {"county": [], "districts": {"cd": [{"d": "IN-05", "rep": "Victoria Spartz", "w": 1.0}], "sh": [{"d": "IN House District 35", "rep": "Elizabeth Rowray", "w": 0.506}, {"d": "IN House District 33", "rep": "J.D. Prescott", "w": 0.39}, {"d": "IN House District 34", "rep": "Sue Errington", "w": 0.103}], "ss": [{"d": "IN Senate District 26", "rep": "Scott Alexander", "w": 1.0}]}, "munis": [], "slug": "delaware"}, "18037": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 63", "rep": "Shane Lindauer", "w": 0.511}, {"d": "IN House District 74", "rep": "Steve Bartels", "w": 0.489}], "ss": [{"d": "IN Senate District 48", "rep": "Daryl Schmitt", "w": 1.0}]}, "munis": [], "slug": "dubois"}, "18039": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 49", "rep": "Joanna King", "w": 0.358}, {"d": "IN House District 21", "rep": "Tim Wesco", "w": 0.311}, {"d": "IN House District 48", "rep": "Doug Miller", "w": 0.17}, {"d": "IN House District 18", "rep": "David Abbott", "w": 0.16}], "ss": [{"d": "IN Senate District 12", "rep": "Blake Doriot", "w": 0.53}, {"d": "IN Senate District 9", "rep": "Ryan Mishler", "w": 0.269}, {"d": "IN Senate District 11", "rep": "Linda Rogers", "w": 0.201}]}, "munis": [], "slug": "elkhart"}, "18041": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 55", "rep": "Lindsay Patterson", "w": 1.0}], "ss": [{"d": "IN Senate District 42", "rep": "Jean Leising", "w": 1.0}]}, "munis": [], "slug": "fayette"}, "18043": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 72", "rep": "Ed Clere", "w": 0.656}, {"d": "IN House District 70", "rep": "Karen Engleman", "w": 0.34}], "ss": [{"d": "IN Senate District 47", "rep": "Gary Byrne", "w": 0.942}, {"d": "IN Senate District 45", "rep": "Chris Garten", "w": 0.058}]}, "munis": [{"m": "New Albany", "p": [{"n": "Jeff Gahan", "r": "Mayor, New Albany, IN"}]}], "slug": "floyd"}, "18045": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.549}, {"d": "IN-04", "rep": "James R. Baird", "w": 0.451}], "sh": [{"d": "IN House District 13", "rep": "Matt Commons", "w": 0.815}, {"d": "IN House District 42", "rep": "Tim Yocum", "w": 0.185}], "ss": [{"d": "IN Senate District 23", "rep": "Spencer Deery", "w": 1.0}]}, "munis": [], "slug": "fountain"}, "18047": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 55", "rep": "Lindsay Patterson", "w": 1.0}], "ss": [{"d": "IN Senate District 27", "rep": "Jeff Raatz", "w": 0.518}, {"d": "IN Senate District 42", "rep": "Jean Leising", "w": 0.482}]}, "munis": [], "slug": "franklin"}, "18049": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 17", "rep": "Jack Jordan", "w": 1.0}], "ss": [{"d": "IN Senate District 18", "rep": "Stacey Donato", "w": 1.0}]}, "munis": [], "slug": "fulton"}, "18051": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.999}], "sh": [{"d": "IN House District 64", "rep": "Matt Hostettler", "w": 0.838}, {"d": "IN House District 75", "rep": "Cindy Ledbetter", "w": 0.161}], "ss": [{"d": "IN Senate District 48", "rep": "Daryl Schmitt", "w": 0.999}]}, "munis": [], "slug": "gibson"}, "18053": {"county": [], "districts": {"cd": [{"d": "IN-05", "rep": "Victoria Spartz", "w": 1.0}], "sh": [{"d": "IN House District 31", "rep": "Lori Goss-Reaves", "w": 0.942}, {"d": "IN House District 30", "rep": "Mike Karickhoff", "w": 0.058}], "ss": [{"d": "IN Senate District 17", "rep": "Nick McKinley", "w": 1.0}]}, "munis": [], "slug": "grant"}, "18055": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 45", "rep": "Bruce Borders", "w": 1.0}], "ss": [{"d": "IN Senate District 39", "rep": "Eric Bassler", "w": 1.0}]}, "munis": [], "slug": "greene"}, "18057": {"county": [], "districts": {"cd": [{"d": "IN-05", "rep": "Victoria Spartz", "w": 1.0}], "sh": [{"d": "IN House District 37", "rep": "Todd Huston", "w": 0.425}, {"d": "IN House District 24", "rep": "Hunter Smith", "w": 0.278}, {"d": "IN House District 29", "rep": "Alaina Shonkwiler", "w": 0.124}, {"d": "IN House District 32", "rep": "Victoria Garcia Wilburn", "w": 0.076}, {"d": "IN House District 39", "rep": "Danny Lopez", "w": 0.07}, {"d": "IN House District 88", "rep": "Chris Jeter", "w": 0.026}], "ss": [{"d": "IN Senate District 20", "rep": "Scott Baldwin", "w": 0.342}, {"d": "IN Senate District 21", "rep": "Jim Buck", "w": 0.259}, {"d": "IN Senate District 25", "rep": "Mike Gaskill", "w": 0.204}, {"d": "IN Senate District 31", "rep": "Kyle Walker", "w": 0.128}, {"d": "IN Senate District 29", "rep": "J.D. Ford", "w": 0.067}]}, "munis": [{"m": "Carmel", "p": [{"n": "Sue Finkam", "r": "Mayor, Carmel, IN"}]}], "slug": "hamilton"}, "18059": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 53", "rep": "Ethan Lawson", "w": 0.666}, {"d": "IN House District 88", "rep": "Chris Jeter", "w": 0.236}, {"d": "IN House District 54", "rep": "Cory Criswell", "w": 0.097}], "ss": [{"d": "IN Senate District 28", "rep": "Michael Crider", "w": 1.0}]}, "munis": [], "slug": "hancock"}, "18061": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.995}], "sh": [{"d": "IN House District 70", "rep": "Karen Engleman", "w": 0.999}], "ss": [{"d": "IN Senate District 47", "rep": "Gary Byrne", "w": 0.999}]}, "munis": [], "slug": "harrison"}, "18063": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 28", "rep": "Jeff Thompson", "w": 0.74}, {"d": "IN House District 40", "rep": "Greg Steuerwald", "w": 0.106}, {"d": "IN House District 25", "rep": "Becky Cash", "w": 0.085}, {"d": "IN House District 57", "rep": "Craig Haggard", "w": 0.069}], "ss": [{"d": "IN Senate District 24", "rep": "Brett Clark", "w": 0.49}, {"d": "IN Senate District 7", "rep": "Brian Buchanan", "w": 0.301}, {"d": "IN Senate District 35", "rep": "Mike Young", "w": 0.208}]}, "munis": [], "slug": "hendricks"}, "18065": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 54", "rep": "Cory Criswell", "w": 0.895}, {"d": "IN House District 56", "rep": "Brad Barrett", "w": 0.054}, {"d": "IN House District 33", "rep": "J.D. Prescott", "w": 0.051}], "ss": [{"d": "IN Senate District 27", "rep": "Jeff Raatz", "w": 1.0}]}, "munis": [], "slug": "henry"}, "18067": {"county": [], "districts": {"cd": [{"d": "IN-05", "rep": "Victoria Spartz", "w": 0.961}, {"d": "IN-04", "rep": "James R. Baird", "w": 0.039}], "sh": [{"d": "IN House District 30", "rep": "Mike Karickhoff", "w": 0.578}, {"d": "IN House District 38", "rep": "Heath VanNatter", "w": 0.422}], "ss": [{"d": "IN Senate District 18", "rep": "Stacey Donato", "w": 0.69}, {"d": "IN Senate District 21", "rep": "Jim Buck", "w": 0.31}]}, "munis": [], "slug": "howard"}, "18069": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 0.999}], "sh": [{"d": "IN House District 50", "rep": "Lorissa Sweet", "w": 1.0}], "ss": [{"d": "IN Senate District 17", "rep": "Nick McKinley", "w": 1.0}]}, "munis": [], "slug": "huntington"}, "18071": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 69", "rep": "Jim Lucas", "w": 0.668}, {"d": "IN House District 62", "rep": "Dave Hall", "w": 0.251}, {"d": "IN House District 65", "rep": "Chris May", "w": 0.082}], "ss": [{"d": "IN Senate District 44", "rep": "Eric Koch", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "18073": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 16", "rep": "Kendell Culp", "w": 0.743}, {"d": "IN House District 11", "rep": "Mike Aylesworth", "w": 0.164}, {"d": "IN House District 13", "rep": "Matt Commons", "w": 0.093}], "ss": [{"d": "IN Senate District 6", "rep": "Rick Niemeyer", "w": 0.501}, {"d": "IN Senate District 5", "rep": "Ed Charbonneau", "w": 0.498}]}, "munis": [], "slug": "jasper"}, "18075": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 33", "rep": "J.D. Prescott", "w": 0.671}, {"d": "IN House District 79", "rep": "Matt Lehman", "w": 0.329}], "ss": [{"d": "IN Senate District 19", "rep": "Travis Holdman", "w": 1.0}]}, "munis": [], "slug": "jay"}, "18077": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 67", "rep": "Alex Zimmerman", "w": 0.747}, {"d": "IN House District 66", "rep": "Zach Payne", "w": 0.156}, {"d": "IN House District 68", "rep": "Garrett Bascom", "w": 0.097}], "ss": [{"d": "IN Senate District 43", "rep": "Randy Maxwell", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "18079": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 67", "rep": "Alex Zimmerman", "w": 0.85}, {"d": "IN House District 73", "rep": "Jenny Meltzer", "w": 0.149}], "ss": [{"d": "IN Senate District 43", "rep": "Randy Maxwell", "w": 0.538}, {"d": "IN Senate District 42", "rep": "Jean Leising", "w": 0.462}]}, "munis": [], "slug": "jennings"}, "18081": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 47", "rep": "Robb Greene", "w": 0.669}, {"d": "IN House District 58", "rep": "Michelle Davis", "w": 0.22}, {"d": "IN House District 60", "rep": "Peggy Mayfield", "w": 0.059}, {"d": "IN House District 57", "rep": "Craig Haggard", "w": 0.052}], "ss": [{"d": "IN Senate District 41", "rep": "Greg Walker", "w": 0.462}, {"d": "IN Senate District 37", "rep": "Rod Bray", "w": 0.355}, {"d": "IN Senate District 32", "rep": "Aaron Freeman", "w": 0.154}, {"d": "IN Senate District 36", "rep": "Cyndi Carrasco", "w": 0.029}]}, "munis": [], "slug": "johnson"}, "18083": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.994}, {"d": "IL-12", "rep": "Mike Bost", "w": 0.006}], "sh": [{"d": "IN House District 64", "rep": "Matt Hostettler", "w": 0.598}, {"d": "IN House District 45", "rep": "Bruce Borders", "w": 0.402}], "ss": [{"d": "IN Senate District 39", "rep": "Eric Bassler", "w": 0.999}]}, "munis": [], "slug": "knox"}, "18085": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 0.808}, {"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 0.192}], "sh": [{"d": "IN House District 22", "rep": "Craig Snow", "w": 0.873}, {"d": "IN House District 18", "rep": "David Abbott", "w": 0.127}], "ss": [{"d": "IN Senate District 18", "rep": "Stacey Donato", "w": 0.504}, {"d": "IN Senate District 9", "rep": "Ryan Mishler", "w": 0.496}]}, "munis": [], "slug": "kosciusko"}, "18087": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 51", "rep": "Tony Isa", "w": 1.0}], "ss": [{"d": "IN Senate District 13", "rep": "Sue Glick", "w": 1.0}]}, "munis": [], "slug": "lagrange"}, "18089": {"county": [], "districts": {"cd": [{"d": "IN-01", "rep": "Frank J. Mrvan", "w": 0.803}], "sh": [{"d": "IN House District 11", "rep": "Mike Aylesworth", "w": 0.306}, {"d": "IN House District 19", "rep": "Julie Olthoff", "w": 0.145}, {"d": "IN House District 3", "rep": "Ragen Hatcher", "w": 0.082}, {"d": "IN House District 15", "rep": "Hal Slager", "w": 0.072}, {"d": "IN House District 2", "rep": "Earl Harris", "w": 0.064}, {"d": "IN House District 14", "rep": "Vernon Smith", "w": 0.06}, {"d": "IN House District 12", "rep": "Mike Andrade", "w": 0.04}, {"d": "IN House District 1", "rep": "Carolyn Jackson", "w": 0.035}], "ss": [{"d": "IN Senate District 6", "rep": "Rick Niemeyer", "w": 0.433}, {"d": "IN Senate District 3", "rep": "Mark Spencer", "w": 0.184}, {"d": "IN Senate District 1", "rep": "Dan Dernulc", "w": 0.11}, {"d": "IN Senate District 2", "rep": "Lonnie Randolph", "w": 0.077}]}, "munis": [], "slug": "lake"}, "18091": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 0.677}, {"d": "IN-01", "rep": "Frank J. Mrvan", "w": 0.308}], "sh": [{"d": "IN House District 20", "rep": "Jim Pressel", "w": 0.775}, {"d": "IN House District 9", "rep": "Randy Novak", "w": 0.188}, {"d": "IN House District 7", "rep": "Jake Teshka", "w": 0.022}], "ss": [{"d": "IN Senate District 8", "rep": "Mike Bohacek", "w": 0.851}, {"d": "IN Senate District 4", "rep": "Rodney Pol", "w": 0.134}]}, "munis": [], "slug": "laporte"}, "18093": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 65", "rep": "Chris May", "w": 1.0}], "ss": [{"d": "IN Senate District 44", "rep": "Eric Koch", "w": 1.0}]}, "munis": [], "slug": "lawrence"}, "18095": {"county": [], "districts": {"cd": [{"d": "IN-05", "rep": "Victoria Spartz", "w": 1.0}], "sh": [{"d": "IN House District 35", "rep": "Elizabeth Rowray", "w": 0.476}, {"d": "IN House District 36", "rep": "Kyle Pierce", "w": 0.202}, {"d": "IN House District 31", "rep": "Lori Goss-Reaves", "w": 0.175}, {"d": "IN House District 53", "rep": "Ethan Lawson", "w": 0.093}, {"d": "IN House District 88", "rep": "Chris Jeter", "w": 0.053}], "ss": [{"d": "IN Senate District 25", "rep": "Mike Gaskill", "w": 1.0}]}, "munis": [], "slug": "madison"}, "18097": {"county": [], "districts": {"cd": [{"d": "IN-07", "rep": "André Carson", "w": 0.702}, {"d": "IN-06", "rep": "Jefferson Shreve", "w": 0.298}], "sh": [{"d": "IN House District 91", "rep": "Bob Behning", "w": 0.141}, {"d": "IN House District 90", "rep": "Andrew Ireland", "w": 0.101}, {"d": "IN House District 89", "rep": "Mitch Gore", "w": 0.093}, {"d": "IN House District 86", "rep": "Ed DeLaney", "w": 0.084}, {"d": "IN House District 87", "rep": "Carey Hamilton", "w": 0.083}, {"d": "IN House District 92", "rep": "Reneé Pack", "w": 0.072}, {"d": "IN House District 97", "rep": "Justin Moed", "w": 0.066}, {"d": "IN House District 93", "rep": "Julie McGuire", "w": 0.052}, {"d": "IN House District 98", "rep": "Robin Shackleford", "w": 0.051}, {"d": "IN House District 95", "rep": "John Bartlett", "w": 0.051}, {"d": "IN House District 96", "rep": "Gregory Porter", "w": 0.049}, {"d": "IN House District 99", "rep": "Vanessa Summers", "w": 0.048}, {"d": "IN House District 94", "rep": "Cherrish Pryor", "w": 0.042}, {"d": "IN House District 100", "rep": "Blake Johnson", "w": 0.038}, {"d": "IN House District 88", "rep": "Chris Jeter", "w": 0.02}, {"d": "IN House District 32", "rep": "Victoria Garcia Wilburn", "w": 0.009}], "ss": [{"d": "IN Senate District 32", "rep": "Aaron Freeman", "w": 0.162}, {"d": "IN Senate District 35", "rep": "Mike Young", "w": 0.147}, {"d": "IN Senate District 30", "rep": "Fady Qaddoura", "w": 0.14}, {"d": "IN Senate District 34", "rep": "La Keisha Jackson", "w": 0.119}, {"d": "IN Senate District 36", "rep": "Cyndi Carrasco", "w": 0.106}, {"d": "IN Senate District 46", "rep": "Andrea Hunley", "w": 0.092}, {"d": "IN Senate District 33", "rep": "Greg Taylor", "w": 0.09}, {"d": "IN Senate District 29", "rep": "J.D. Ford", "w": 0.084}, {"d": "IN Senate District 31", "rep": "Kyle Walker", "w": 0.038}, {"d": "IN Senate District 28", "rep": "Michael Crider", "w": 0.022}]}, "munis": [{"m": "Indianapolis City Balance", "p": [{"n": "Joe Hogsett", "r": "Mayor, Indianapolis, IN"}]}], "slug": "marion"}, "18099": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 17", "rep": "Jack Jordan", "w": 0.977}, {"d": "IN House District 7", "rep": "Jake Teshka", "w": 0.023}], "ss": [{"d": "IN Senate District 8", "rep": "Mike Bohacek", "w": 0.862}, {"d": "IN Senate District 9", "rep": "Ryan Mishler", "w": 0.138}]}, "munis": [], "slug": "marshall"}, "18101": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 63", "rep": "Shane Lindauer", "w": 1.0}], "ss": [{"d": "IN Senate District 39", "rep": "Eric Bassler", "w": 1.0}]}, "munis": [], "slug": "martin"}, "18103": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 23", "rep": "Ethan Manning", "w": 0.938}, {"d": "IN House District 50", "rep": "Lorissa Sweet", "w": 0.062}], "ss": [{"d": "IN Senate District 18", "rep": "Stacey Donato", "w": 1.0}]}, "munis": [], "slug": "miami"}, "18105": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 62", "rep": "Dave Hall", "w": 0.608}, {"d": "IN House District 46", "rep": "Bob Heaton", "w": 0.175}, {"d": "IN House District 60", "rep": "Peggy Mayfield", "w": 0.168}, {"d": "IN House District 61", "rep": "Matt Pierce", "w": 0.049}], "ss": [{"d": "IN Senate District 40", "rep": "Shelli Yoder", "w": 0.719}, {"d": "IN Senate District 44", "rep": "Eric Koch", "w": 0.281}]}, "munis": [], "slug": "monroe"}, "18107": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 44", "rep": "Beau Baird", "w": 0.605}, {"d": "IN House District 28", "rep": "Jeff Thompson", "w": 0.221}, {"d": "IN House District 13", "rep": "Matt Commons", "w": 0.107}, {"d": "IN House District 41", "rep": "Mark Genda", "w": 0.067}], "ss": [{"d": "IN Senate District 7", "rep": "Brian Buchanan", "w": 0.652}, {"d": "IN Senate District 23", "rep": "Spencer Deery", "w": 0.348}]}, "munis": [], "slug": "montgomery"}, "18109": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 60", "rep": "Peggy Mayfield", "w": 0.911}, {"d": "IN House District 57", "rep": "Craig Haggard", "w": 0.089}], "ss": [{"d": "IN Senate District 37", "rep": "Rod Bray", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "18111": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 0.999}], "sh": [{"d": "IN House District 11", "rep": "Mike Aylesworth", "w": 0.8}, {"d": "IN House District 13", "rep": "Matt Commons", "w": 0.2}], "ss": [{"d": "IN Senate District 6", "rep": "Rick Niemeyer", "w": 1.0}]}, "munis": [], "slug": "newton"}, "18113": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 18", "rep": "David Abbott", "w": 0.827}, {"d": "IN House District 52", "rep": "Ben Smaltz", "w": 0.173}], "ss": [{"d": "IN Senate District 13", "rep": "Sue Glick", "w": 1.0}]}, "munis": [], "slug": "noble"}, "18115": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 68", "rep": "Garrett Bascom", "w": 0.999}], "ss": [{"d": "IN Senate District 43", "rep": "Randy Maxwell", "w": 0.999}]}, "munis": [], "slug": "ohio"}, "18117": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 65", "rep": "Chris May", "w": 0.79}, {"d": "IN House District 74", "rep": "Steve Bartels", "w": 0.21}], "ss": [{"d": "IN Senate District 44", "rep": "Eric Koch", "w": 1.0}]}, "munis": [], "slug": "orange"}, "18119": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.999}], "sh": [{"d": "IN House District 46", "rep": "Bob Heaton", "w": 1.0}], "ss": [{"d": "IN Senate District 39", "rep": "Eric Bassler", "w": 0.522}, {"d": "IN Senate District 37", "rep": "Rod Bray", "w": 0.477}]}, "munis": [], "slug": "owen"}, "18121": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 42", "rep": "Tim Yocum", "w": 1.0}], "ss": [{"d": "IN Senate District 23", "rep": "Spencer Deery", "w": 1.0}]}, "munis": [], "slug": "parke"}, "18123": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.999}], "sh": [{"d": "IN House District 74", "rep": "Steve Bartels", "w": 1.0}], "ss": [{"d": "IN Senate District 48", "rep": "Daryl Schmitt", "w": 1.0}]}, "munis": [], "slug": "perry"}, "18125": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 75", "rep": "Cindy Ledbetter", "w": 0.78}, {"d": "IN House District 63", "rep": "Shane Lindauer", "w": 0.22}], "ss": [{"d": "IN Senate District 48", "rep": "Daryl Schmitt", "w": 1.0}]}, "munis": [], "slug": "pike"}, "18127": {"county": [], "districts": {"cd": [{"d": "IN-01", "rep": "Frank J. Mrvan", "w": 0.804}], "sh": [{"d": "IN House District 4", "rep": "Ed Soliday", "w": 0.346}, {"d": "IN House District 9", "rep": "Randy Novak", "w": 0.142}, {"d": "IN House District 10", "rep": "Chuck Moseley", "w": 0.14}, {"d": "IN House District 19", "rep": "Julie Olthoff", "w": 0.123}, {"d": "IN House District 11", "rep": "Mike Aylesworth", "w": 0.054}], "ss": [{"d": "IN Senate District 5", "rep": "Ed Charbonneau", "w": 0.522}, {"d": "IN Senate District 4", "rep": "Rodney Pol", "w": 0.281}]}, "munis": [], "slug": "porter"}, "18129": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.996}], "sh": [{"d": "IN House District 76", "rep": "Wendy McNamara", "w": 0.999}], "ss": [{"d": "IN Senate District 49", "rep": "Jim Tomes", "w": 0.999}]}, "munis": [], "slug": "posey"}, "18131": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 16", "rep": "Kendell Culp", "w": 0.76}, {"d": "IN House District 17", "rep": "Jack Jordan", "w": 0.24}], "ss": [{"d": "IN Senate District 5", "rep": "Ed Charbonneau", "w": 1.0}]}, "munis": [], "slug": "pulaski"}, "18133": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 44", "rep": "Beau Baird", "w": 1.0}], "ss": [{"d": "IN Senate District 24", "rep": "Brett Clark", "w": 0.649}, {"d": "IN Senate District 37", "rep": "Rod Bray", "w": 0.351}]}, "munis": [], "slug": "putnam"}, "18135": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 0.551}, {"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 0.449}], "sh": [{"d": "IN House District 33", "rep": "J.D. Prescott", "w": 1.0}], "ss": [{"d": "IN Senate District 26", "rep": "Scott Alexander", "w": 1.0}]}, "munis": [], "slug": "randolph"}, "18137": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 67", "rep": "Alex Zimmerman", "w": 0.844}, {"d": "IN House District 55", "rep": "Lindsay Patterson", "w": 0.156}], "ss": [{"d": "IN Senate District 42", "rep": "Jean Leising", "w": 1.0}]}, "munis": [], "slug": "ripley"}, "18139": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 54", "rep": "Cory Criswell", "w": 0.93}, {"d": "IN House District 55", "rep": "Lindsay Patterson", "w": 0.07}], "ss": [{"d": "IN Senate District 42", "rep": "Jean Leising", "w": 1.0}]}, "munis": [], "slug": "rush"}, "18141": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 7", "rep": "Jake Teshka", "w": 0.703}, {"d": "IN House District 8", "rep": "Ryan Dvorak", "w": 0.125}, {"d": "IN House District 5", "rep": "Dale DeVon", "w": 0.097}, {"d": "IN House District 6", "rep": "Maureen Bauer", "w": 0.039}, {"d": "IN House District 21", "rep": "Tim Wesco", "w": 0.035}], "ss": [{"d": "IN Senate District 10", "rep": "David Niezgodski", "w": 0.426}, {"d": "IN Senate District 8", "rep": "Mike Bohacek", "w": 0.234}, {"d": "IN Senate District 9", "rep": "Ryan Mishler", "w": 0.215}, {"d": "IN Senate District 11", "rep": "Linda Rogers", "w": 0.124}]}, "munis": [{"m": "South Bend", "p": [{"n": "James Mueller", "r": "Mayor, South Bend, IN"}]}], "slug": "st-joseph"}, "18143": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 69", "rep": "Jim Lucas", "w": 0.53}, {"d": "IN House District 66", "rep": "Zach Payne", "w": 0.469}], "ss": [{"d": "IN Senate District 43", "rep": "Randy Maxwell", "w": 1.0}]}, "munis": [], "slug": "scott"}, "18145": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 47", "rep": "Robb Greene", "w": 0.501}, {"d": "IN House District 73", "rep": "Jenny Meltzer", "w": 0.432}, {"d": "IN House District 54", "rep": "Cory Criswell", "w": 0.066}], "ss": [{"d": "IN Senate District 42", "rep": "Jean Leising", "w": 0.602}, {"d": "IN Senate District 28", "rep": "Michael Crider", "w": 0.398}]}, "munis": [], "slug": "shelby"}, "18147": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.999}], "sh": [{"d": "IN House District 74", "rep": "Steve Bartels", "w": 0.999}], "ss": [{"d": "IN Senate District 48", "rep": "Daryl Schmitt", "w": 0.999}]}, "munis": [], "slug": "spencer"}, "18149": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 16", "rep": "Kendell Culp", "w": 0.638}, {"d": "IN House District 20", "rep": "Jim Pressel", "w": 0.362}], "ss": [{"d": "IN Senate District 8", "rep": "Mike Bohacek", "w": 1.0}]}, "munis": [], "slug": "starke"}, "18151": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 51", "rep": "Tony Isa", "w": 0.668}, {"d": "IN House District 52", "rep": "Ben Smaltz", "w": 0.332}], "ss": [{"d": "IN Senate District 13", "rep": "Sue Glick", "w": 1.0}]}, "munis": [], "slug": "steuben"}, "18153": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.993}, {"d": "IL-12", "rep": "Mike Bost", "w": 0.007}], "sh": [{"d": "IN House District 45", "rep": "Bruce Borders", "w": 1.0}], "ss": [{"d": "IN Senate District 39", "rep": "Eric Bassler", "w": 0.825}, {"d": "IN Senate District 38", "rep": "Greg Goode", "w": 0.175}]}, "munis": [], "slug": "sullivan"}, "18155": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 0.999}], "sh": [{"d": "IN House District 68", "rep": "Garrett Bascom", "w": 0.999}], "ss": [{"d": "IN Senate District 43", "rep": "Randy Maxwell", "w": 0.999}]}, "munis": [], "slug": "switzerland"}, "18157": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 13", "rep": "Matt Commons", "w": 0.452}, {"d": "IN House District 41", "rep": "Mark Genda", "w": 0.251}, {"d": "IN House District 26", "rep": "Chris Campbell", "w": 0.118}, {"d": "IN House District 38", "rep": "Heath VanNatter", "w": 0.11}, {"d": "IN House District 27", "rep": "Sheila Klinker", "w": 0.068}], "ss": [{"d": "IN Senate District 22", "rep": "Ron Alting", "w": 0.53}, {"d": "IN Senate District 23", "rep": "Spencer Deery", "w": 0.47}]}, "munis": [], "slug": "tippecanoe"}, "18159": {"county": [], "districts": {"cd": [{"d": "IN-05", "rep": "Victoria Spartz", "w": 1.0}], "sh": [{"d": "IN House District 38", "rep": "Heath VanNatter", "w": 1.0}], "ss": [{"d": "IN Senate District 21", "rep": "Jim Buck", "w": 1.0}]}, "munis": [{"m": "Tipton", "p": [{"n": "Tom Dolezal", "r": "Mayor, Tipton, IN"}]}], "slug": "tipton"}, "18161": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 55", "rep": "Lindsay Patterson", "w": 1.0}], "ss": [{"d": "IN Senate District 27", "rep": "Jeff Raatz", "w": 1.0}]}, "munis": [], "slug": "union"}, "18163": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.995}, {"d": "KY-01", "rep": "James Comer", "w": 0.005}], "sh": [{"d": "IN House District 76", "rep": "Wendy McNamara", "w": 0.383}, {"d": "IN House District 64", "rep": "Matt Hostettler", "w": 0.301}, {"d": "IN House District 78", "rep": "Tim O'Brien", "w": 0.19}, {"d": "IN House District 77", "rep": "Alex Burton", "w": 0.125}], "ss": [{"d": "IN Senate District 49", "rep": "Jim Tomes", "w": 0.79}, {"d": "IN Senate District 50", "rep": "Vaneta Becker", "w": 0.209}]}, "munis": [{"m": "Evansville", "p": [{"n": "Lloyd Winnecke", "r": "Mayor, Evansville, IN"}]}], "slug": "vanderburgh"}, "18165": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 42", "rep": "Tim Yocum", "w": 1.0}], "ss": [{"d": "IN Senate District 23", "rep": "Spencer Deery", "w": 1.0}]}, "munis": [], "slug": "vermillion"}, "18167": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 0.998}], "sh": [{"d": "IN House District 42", "rep": "Tim Yocum", "w": 0.273}, {"d": "IN House District 46", "rep": "Bob Heaton", "w": 0.258}, {"d": "IN House District 43", "rep": "Tonya Pfaff", "w": 0.246}, {"d": "IN House District 45", "rep": "Bruce Borders", "w": 0.224}], "ss": [{"d": "IN Senate District 38", "rep": "Greg Goode", "w": 1.0}]}, "munis": [], "slug": "vigo"}, "18169": {"county": [], "districts": {"cd": [{"d": "IN-02", "rep": "Rudy Yakym III", "w": 1.0}], "sh": [{"d": "IN House District 50", "rep": "Lorissa Sweet", "w": 0.869}, {"d": "IN House District 22", "rep": "Craig Snow", "w": 0.131}], "ss": [{"d": "IN Senate District 17", "rep": "Nick McKinley", "w": 1.0}]}, "munis": [], "slug": "wabash"}, "18171": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 13", "rep": "Matt Commons", "w": 1.0}], "ss": [{"d": "IN Senate District 23", "rep": "Spencer Deery", "w": 1.0}]}, "munis": [], "slug": "warren"}, "18173": {"county": [], "districts": {"cd": [{"d": "IN-08", "rep": "Mark B. Messmer", "w": 1.0}], "sh": [{"d": "IN House District 75", "rep": "Cindy Ledbetter", "w": 0.98}, {"d": "IN House District 78", "rep": "Tim O'Brien", "w": 0.019}], "ss": [{"d": "IN Senate District 50", "rep": "Vaneta Becker", "w": 1.0}]}, "munis": [], "slug": "warrick"}, "18175": {"county": [], "districts": {"cd": [{"d": "IN-09", "rep": "Erin Houchin", "w": 1.0}], "sh": [{"d": "IN House District 69", "rep": "Jim Lucas", "w": 0.406}, {"d": "IN House District 70", "rep": "Karen Engleman", "w": 0.323}, {"d": "IN House District 65", "rep": "Chris May", "w": 0.271}], "ss": [{"d": "IN Senate District 47", "rep": "Gary Byrne", "w": 1.0}]}, "munis": [], "slug": "washington"}, "18177": {"county": [], "districts": {"cd": [{"d": "IN-06", "rep": "Jefferson Shreve", "w": 1.0}], "sh": [{"d": "IN House District 56", "rep": "Brad Barrett", "w": 1.0}], "ss": [{"d": "IN Senate District 27", "rep": "Jeff Raatz", "w": 1.0}]}, "munis": [], "slug": "wayne"}, "18179": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 79", "rep": "Matt Lehman", "w": 0.903}, {"d": "IN House District 50", "rep": "Lorissa Sweet", "w": 0.097}], "ss": [{"d": "IN Senate District 19", "rep": "Travis Holdman", "w": 1.0}]}, "munis": [], "slug": "wells"}, "18181": {"county": [], "districts": {"cd": [{"d": "IN-04", "rep": "James R. Baird", "w": 1.0}], "sh": [{"d": "IN House District 16", "rep": "Kendell Culp", "w": 0.93}, {"d": "IN House District 13", "rep": "Matt Commons", "w": 0.07}], "ss": [{"d": "IN Senate District 5", "rep": "Ed Charbonneau", "w": 1.0}]}, "munis": [], "slug": "white"}, "18183": {"county": [], "districts": {"cd": [{"d": "IN-03", "rep": "Marlin A. Stutzman", "w": 1.0}], "sh": [{"d": "IN House District 83", "rep": "Chris Judy", "w": 0.535}, {"d": "IN House District 18", "rep": "David Abbott", "w": 0.465}], "ss": [{"d": "IN Senate District 16", "rep": "Justin Busch", "w": 1.0}]}, "munis": [], "slug": "whitley"}, "19001": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 23", "rep": "Bubba Sorensen", "w": 1.0}], "ss": [{"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 1.0}]}, "munis": [{"m": "Fontanelle", "p": [{"n": "Michael Walker", "r": "Mayor, Fontanelle, IA"}]}], "slug": "adair"}, "19003": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 17", "rep": "Devon Wood", "w": 1.0}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 1.0}]}, "munis": [], "slug": "adams"}, "19005": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 64", "rep": "Jason Gearhart", "w": 1.0}], "ss": [{"d": "IA Senate District 32", "rep": "Mike Klimesh", "w": 1.0}]}, "munis": [], "slug": "allamakee"}, "19007": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 26", "rep": "Austin Harris", "w": 0.814}, {"d": "IA House District 24", "rep": "Sam Wengryn", "w": 0.186}], "ss": [{"d": "IA Senate District 13", "rep": "Cherielynn Westrich", "w": 0.814}, {"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 0.186}]}, "munis": [], "slug": "appanoose"}, "19009": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 11", "rep": "Craig Williams", "w": 1.0}], "ss": [{"d": "IA Senate District 6", "rep": "Jason Schultz", "w": 1.0}]}, "munis": [], "slug": "audubon"}, "19011": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 84", "rep": "Tom Gerhold", "w": 0.839}, {"d": "IA House District 76", "rep": "Derek Wulf", "w": 0.161}], "ss": [{"d": "IA Senate District 42", "rep": "Charlie McClintock", "w": 0.839}, {"d": "IA Senate District 38", "rep": "Dave Sires", "w": 0.161}]}, "munis": [], "slug": "benton"}, "19013": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 68", "rep": "Chad Ingels", "w": 0.356}, {"d": "IA House District 76", "rep": "Derek Wulf", "w": 0.319}, {"d": "IA House District 54", "rep": "Josh Meggers", "w": 0.193}, {"d": "IA House District 62", "rep": "Jerome Amos", "w": 0.056}, {"d": "IA House District 61", "rep": "Timi Brown-Powers", "w": 0.041}, {"d": "IA House District 75", "rep": "Bob Kressig", "w": 0.035}], "ss": [{"d": "IA Senate District 34", "rep": "Dan Zumbach", "w": 0.356}, {"d": "IA Senate District 38", "rep": "Dave Sires", "w": 0.354}, {"d": "IA Senate District 27", "rep": "Annette Sweeney", "w": 0.193}]}, "munis": [{"m": "Cedar Falls", "p": [{"n": "Danny Laudick", "r": "Mayor, Cedar Falls, IA"}]}, {"m": "Waterloo", "p": [{"n": "Quentin M. Hart", "r": "Mayor, Waterloo, IA"}]}], "slug": "black-hawk"}, "19015": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 48", "rep": "Chad Behn", "w": 1.0}], "ss": [{"d": "IA Senate District 24", "rep": "Jesse Green", "w": 1.0}]}, "munis": [], "slug": "boone"}, "19017": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 58", "rep": "Charley Thomson", "w": 0.666}, {"d": "IA House District 57", "rep": "Pat Grassley", "w": 0.334}], "ss": [{"d": "IA Senate District 29", "rep": "Sandy Salmon", "w": 1.0}]}, "munis": [{"m": "Sumner", "p": [{"n": "Billy Lehmkuhl", "r": "Mayor, Sumner, IA"}]}], "slug": "bremer"}, "19019": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 67", "rep": "Craig Johnson", "w": 0.559}, {"d": "IA House District 68", "rep": "Chad Ingels", "w": 0.441}], "ss": [{"d": "IA Senate District 34", "rep": "Dan Zumbach", "w": 1.0}]}, "munis": [], "slug": "buchanan"}, "19021": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 6", "rep": "Megan Jones", "w": 0.751}, {"d": "IA House District 5", "rep": "Zach Dieken", "w": 0.249}], "ss": [{"d": "IA Senate District 3", "rep": "Lynn Evans", "w": 1.0}]}, "munis": [], "slug": "buena-vista"}, "19023": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 57", "rep": "Pat Grassley", "w": 1.0}], "ss": [{"d": "IA Senate District 29", "rep": "Sandy Salmon", "w": 1.0}]}, "munis": [{"m": "Greene", "p": [{"n": "Warren Van Dyke", "r": "Mayor, Greene, IA"}]}], "slug": "butler"}, "19025": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 7", "rep": "Wendy Larson", "w": 1.0}], "ss": [{"d": "IA Senate District 4", "rep": "Tim Kraayenbrink", "w": 1.0}]}, "munis": [], "slug": "calhoun"}, "19027": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 11", "rep": "Craig Williams", "w": 1.0}], "ss": [{"d": "IA Senate District 6", "rep": "Jason Schultz", "w": 1.0}]}, "munis": [{"m": "Glidden", "p": [{"n": "Roger Hartwigsen", "r": "Mayor, Glidden, IA"}]}], "slug": "carroll"}, "19029": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 18", "rep": "Tom Moore", "w": 1.0}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 1.0}]}, "munis": [], "slug": "cass"}, "19031": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 82", "rep": "Bobby Kaufmann", "w": 1.0}], "ss": [{"d": "IA Senate District 41", "rep": "Kerry Gruenhagen", "w": 1.0}]}, "munis": [{"m": "West Branch", "p": [{"n": "Roger Laughlin", "r": "Mayor, West Branch, IA"}]}], "slug": "cedar"}, "19033": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 59", "rep": "Christian Hermanson", "w": 0.628}, {"d": "IA House District 60", "rep": "Jane Bloomingdale", "w": 0.372}], "ss": [{"d": "IA Senate District 30", "rep": "Doug Campbell", "w": 1.0}]}, "munis": [{"m": "Clear Lake", "p": [{"n": "Nelson P. Crabb", "r": "Mayor, Clear Lake, IA"}]}], "slug": "cerro-gordo"}, "19035": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 5", "rep": "Zach Dieken", "w": 0.561}, {"d": "IA House District 13", "rep": "Travis Sitzmann", "w": 0.439}], "ss": [{"d": "IA Senate District 3", "rep": "Lynn Evans", "w": 0.561}, {"d": "IA Senate District 7", "rep": "Kevin Alons", "w": 0.439}]}, "munis": [], "slug": "cherokee"}, "19037": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 58", "rep": "Charley Thomson", "w": 1.0}], "ss": [{"d": "IA Senate District 29", "rep": "Sandy Salmon", "w": 1.0}]}, "munis": [{"m": "Nashua", "p": [{"n": "Alex Anthofer", "r": "Mayor, Nashua, IA"}]}, {"m": "New Hampton", "p": [{"n": "Steven Geerts", "r": "Mayor, New Hampton, IA"}]}], "slug": "chickasaw"}, "19039": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 24", "rep": "Sam Wengryn", "w": 0.75}, {"d": "IA House District 23", "rep": "Bubba Sorensen", "w": 0.25}], "ss": [{"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 1.0}]}, "munis": [], "slug": "clarke"}, "19041": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 6", "rep": "Megan Jones", "w": 0.635}, {"d": "IA House District 10", "rep": "John Wills", "w": 0.365}], "ss": [{"d": "IA Senate District 3", "rep": "Lynn Evans", "w": 0.635}, {"d": "IA Senate District 5", "rep": "Dave Rowley", "w": 0.365}]}, "munis": [{"m": "Everly", "p": [{"n": "Ron Thompson", "r": "Mayor, Everly, IA"}]}, {"m": "Spencer", "p": [{"n": "Steve Bomgaars", "r": "Mayor, Spencer, IA"}]}], "slug": "clay"}, "19043": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 64", "rep": "Jason Gearhart", "w": 1.0}], "ss": [{"d": "IA Senate District 32", "rep": "Mike Klimesh", "w": 1.0}]}, "munis": [{"m": "Guttenberg", "p": [{"n": "Fred Schaub", "r": "Mayor, Guttenberg, IA"}]}, {"m": "Marquette", "p": [{"n": "Brittany Hemmer", "r": "Mayor, Marquette, IA"}]}], "slug": "clayton"}, "19045": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 69", "rep": "Tom Determann", "w": 0.325}], "ss": [{"d": "IA Senate District 35", "rep": "Mike Zimmer", "w": 1.0}]}, "munis": [{"m": "Andover", "p": [{"n": "Jason Johnson", "r": "Mayor, Andover, IA"}]}, {"m": "Calamus", "p": [{"n": "Lance Goettsch", "r": "Mayor, Calamus, IA"}]}, {"m": "Camanche", "p": [{"n": "Austin Pruett", "r": "Mayor, Camanche, IA"}]}, {"m": "Clinton", "p": [{"n": "Scott Maddasion", "r": "Mayor, Clinton, IA"}]}, {"m": "Delmar", "p": [{"n": "Patty Hardin", "r": "Mayor, Delmar, IA"}]}, {"m": "Dewitt", "p": [{"n": "Steve Hasenmiller", "r": "Mayor, DeWitt, IA"}]}, {"m": "Goose Lake", "p": [{"n": "Ken Schoon", "r": "Mayor, Goose Lake, IA"}]}, {"m": "Grand Mound", "p": [{"n": "Kurt Crosthwaite", "r": "Mayor, Grand Mound, IA"}]}, {"m": "Lost Nation", "p": [{"n": "Ramon Gilroy", "r": "Mayor, Lost Nation, IA"}]}, {"m": "Low Moor", "p": [{"n": "Tom Goldensoph", "r": "Mayor, Low Moor, IA"}]}, {"m": "Welton", "p": [{"n": "Ashley Paulsen", "r": "Mayor, Welton, IA"}]}, {"m": "Wheatland", "p": [{"n": "Jeremiah Wiese", "r": "Mayor, Wheatland, IA"}]}], "slug": "clinton"}, "19047": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 12", "rep": "Steven Holt", "w": 1.0}], "ss": [{"d": "IA Senate District 6", "rep": "Jason Schultz", "w": 1.0}]}, "munis": [{"m": "Denison", "p": [{"n": "Pam Soseman", "r": "Mayor, Denison, IA"}]}, {"m": "Schleswig", "p": [{"n": "Beth Winquist", "r": "Mayor, Schleswig, IA"}]}], "slug": "crawford"}, "19049": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 47", "rep": "Carter Nordman", "w": 0.375}, {"d": "IA House District 46", "rep": "Dan Gehlbach", "w": 0.222}, {"d": "IA House District 23", "rep": "Bubba Sorensen", "w": 0.198}, {"d": "IA House District 28", "rep": "David Young", "w": 0.16}, {"d": "IA House District 27", "rep": "Kenan Judge", "w": 0.044}], "ss": [{"d": "IA Senate District 24", "rep": "Jesse Green", "w": 0.375}, {"d": "IA Senate District 23", "rep": "Jack Whitver", "w": 0.222}, {"d": "IA Senate District 14", "rep": "Sarah Garriott", "w": 0.204}, {"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 0.198}]}, "munis": [{"m": "Adel", "p": [{"n": "James F. Peters", "r": "Mayor, Adel, IA"}]}, {"m": "Dexter", "p": [{"n": "Dennis Clemetson", "r": "Mayor, Dexter, IA"}]}, {"m": "Waukee", "p": [{"n": "Courtney Clarke", "r": "Mayor, Waukee, IA"}]}], "slug": "dallas"}, "19051": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 0.998}], "sh": [{"d": "IA House District 26", "rep": "Austin Harris", "w": 1.0}], "ss": [{"d": "IA Senate District 13", "rep": "Cherielynn Westrich", "w": 1.0}]}, "munis": [{"m": "Bloomfield", "p": [{"n": "Chris Miller", "r": "Mayor, Bloomfield, IA"}]}, {"m": "Drakesville", "p": [{"n": "Bob Sampson", "r": "Mayor, Drakesville, IA"}]}], "slug": "davis"}, "19053": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 24", "rep": "Sam Wengryn", "w": 1.0}], "ss": [{"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 1.0}]}, "munis": [{"m": "Lamoni", "p": [{"n": "Douglas L. Foster", "r": "Mayor, Lamoni, IA"}]}, {"m": "Leon", "p": [{"n": "Bob Frey", "r": "Mayor, Leon, IA"}]}], "slug": "decatur"}, "19055": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 67", "rep": "Craig Johnson", "w": 1.0}], "ss": [{"d": "IA Senate District 34", "rep": "Dan Zumbach", "w": 1.0}]}, "munis": [{"m": "Edgewood", "p": [{"n": "Bruce Hemann", "r": "Mayor, Edgewood, IA"}]}, {"m": "Manchester", "p": [{"n": "Connie L. Behnken", "r": "Mayor, Manchester, IA"}]}], "slug": "delaware"}, "19057": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 95", "rep": "Taylor Collins", "w": 0.733}, {"d": "IA House District 99", "rep": "Matt Rinker", "w": 0.267}], "ss": [{"d": "IA Senate District 48", "rep": "Mark Lofgren", "w": 0.733}, {"d": "IA Senate District 50", "rep": "Jeff Reichman", "w": 0.267}]}, "munis": [{"m": "Burlington", "p": [{"n": "Jon D. Billups", "r": "Mayor, Burlington, IA"}]}, {"m": "Mediapolis", "p": [{"n": "Thomas Young", "r": "Mayor, Mediapolis, IA"}]}, {"m": "Middletown", "p": [{"n": "Eric Gerst", "r": "Mayor, Middletown, IA"}]}, {"m": "West Burlington", "p": [{"n": "Ron Teater", "r": "Mayor, West Burlington, IA"}]}], "slug": "des-moines"}, "19059": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 10", "rep": "John Wills", "w": 1.0}], "ss": [{"d": "IA Senate District 5", "rep": "Dave Rowley", "w": 1.0}]}, "munis": [{"m": "Arnolds Park", "p": [{"n": "Jim Hussong", "r": "Mayor, Arnolds Park, IA"}]}, {"m": "Lake Park", "p": [{"n": "Matt Carstensen", "r": "Mayor, Lake Park, IA"}]}, {"m": "Milford", "p": [{"n": "Steve Anderson", "r": "Mayor, Milford, IA"}]}, {"m": "Okoboji", "p": [{"n": "Mary VanderWoude", "r": "Mayor, Okoboji, IA"}]}, {"m": "Spirit Lake", "p": [{"n": "Kevin Bice", "r": "Mayor, Spirit Lake, IA"}]}], "slug": "dickinson"}, "19061": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 65", "rep": "Shannon Lundgren", "w": 0.761}, {"d": "IA House District 72", "rep": "Jennifer Smith", "w": 0.097}, {"d": "IA House District 67", "rep": "Craig Johnson", "w": 0.06}, {"d": "IA House District 64", "rep": "Jason Gearhart", "w": 0.059}, {"d": "IA House District 71", "rep": "Lindsay James", "w": 0.022}], "ss": [{"d": "IA Senate District 33", "rep": "Carrie Koelker", "w": 0.761}, {"d": "IA Senate District 36", "rep": "Tom Townsend", "w": 0.119}, {"d": "IA Senate District 34", "rep": "Dan Zumbach", "w": 0.06}, {"d": "IA Senate District 32", "rep": "Mike Klimesh", "w": 0.059}]}, "munis": [{"m": "Asbury", "p": [{"n": "Jim Adams", "r": "Mayor, Asbury, IA"}]}, {"m": "Dubuque", "p": [{"n": "Brad Cavanagh", "r": "Mayor, Dubuque, IA"}]}, {"m": "Epworth", "p": [{"n": "Sandra Gassman", "r": "Mayor, Epworth, IA"}]}], "slug": "dubuque"}, "19063": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 9", "rep": "Henry Stone", "w": 1.0}], "ss": [{"d": "IA Senate District 5", "rep": "Dave Rowley", "w": 1.0}]}, "munis": [{"m": "Estherville", "p": [{"n": "Kenny Billings", "r": "Mayor, Estherville, IA"}]}], "slug": "emmet"}, "19065": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 68", "rep": "Chad Ingels", "w": 0.798}, {"d": "IA House District 63", "rep": "Michael Bergan", "w": 0.202}], "ss": [{"d": "IA Senate District 34", "rep": "Dan Zumbach", "w": 0.798}, {"d": "IA Senate District 32", "rep": "Mike Klimesh", "w": 0.202}]}, "munis": [{"m": "Fayette", "p": [{"n": "Nathan Post", "r": "Mayor, Fayette, IA"}]}, {"m": "Oelwein", "p": [{"n": "Brett DeVore", "r": "Mayor, Oelwein, IA"}]}], "slug": "fayette"}, "19067": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 58", "rep": "Charley Thomson", "w": 0.836}, {"d": "IA House District 60", "rep": "Jane Bloomingdale", "w": 0.164}], "ss": [{"d": "IA Senate District 29", "rep": "Sandy Salmon", "w": 0.836}, {"d": "IA Senate District 30", "rep": "Doug Campbell", "w": 0.164}]}, "munis": [{"m": "Charles City", "p": [{"n": "Dean Andrews", "r": "Mayor, Charles City, IA"}]}, {"m": "Rockford", "p": [{"n": "Scott Johnson", "r": "Mayor, Rockford, IA"}]}], "slug": "floyd"}, "19069": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 55", "rep": "Shannon Latham", "w": 1.0}], "ss": [{"d": "IA Senate District 28", "rep": "Dennis Guth", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "19071": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 16", "rep": "David Sieck", "w": 1.0}], "ss": [{"d": "IA Senate District 8", "rep": "Mark Costello", "w": 1.0}]}, "munis": [], "slug": "fremont"}, "19073": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 47", "rep": "Carter Nordman", "w": 1.0}], "ss": [{"d": "IA Senate District 24", "rep": "Jesse Green", "w": 1.0}]}, "munis": [], "slug": "greene"}, "19075": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 54", "rep": "Josh Meggers", "w": 1.0}], "ss": [{"d": "IA Senate District 27", "rep": "Annette Sweeney", "w": 1.0}]}, "munis": [], "slug": "grundy"}, "19077": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 47", "rep": "Carter Nordman", "w": 1.0}], "ss": [{"d": "IA Senate District 24", "rep": "Jesse Green", "w": 1.0}]}, "munis": [{"m": "Guthrie Center", "p": [{"n": "Mike Herbert", "r": "Mayor, Guthrie Center, IA"}]}, {"m": "Panora", "p": [{"n": "Curtis Thornberry", "r": "Mayor, Panora, IA"}]}], "slug": "guthrie"}, "19079": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 55", "rep": "Shannon Latham", "w": 1.0}], "ss": [{"d": "IA Senate District 28", "rep": "Dennis Guth", "w": 1.0}]}, "munis": [], "slug": "hamilton"}, "19081": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 56", "rep": "Mark Thompson", "w": 1.0}], "ss": [{"d": "IA Senate District 28", "rep": "Dennis Guth", "w": 1.0}]}, "munis": [{"m": "Forest City", "p": [{"n": "Ron Holland", "r": "Mayor, Forest City, IA"}]}], "slug": "hancock"}, "19083": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 0.999}], "sh": [{"d": "IA House District 54", "rep": "Josh Meggers", "w": 1.0}], "ss": [{"d": "IA Senate District 27", "rep": "Annette Sweeney", "w": 1.0}]}, "munis": [], "slug": "hardin"}, "19085": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 15", "rep": "Matt Windschitl", "w": 0.999}], "ss": [{"d": "IA Senate District 8", "rep": "Mark Costello", "w": 0.999}]}, "munis": [], "slug": "harrison"}, "19087": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 95", "rep": "Taylor Collins", "w": 0.749}, {"d": "IA House District 87", "rep": "Jeff Shipley", "w": 0.251}], "ss": [{"d": "IA Senate District 48", "rep": "Mark Lofgren", "w": 0.749}, {"d": "IA Senate District 44", "rep": "Adrian Dickey", "w": 0.251}]}, "munis": [{"m": "Mount Pleasant", "p": [{"n": "Steven Brimhall", "r": "Mayor, Mount Pleasant, IA"}]}], "slug": "henry"}, "19089": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 63", "rep": "Michael Bergan", "w": 1.0}], "ss": [{"d": "IA Senate District 32", "rep": "Mike Klimesh", "w": 1.0}]}, "munis": [], "slug": "howard"}, "19091": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 56", "rep": "Mark Thompson", "w": 1.0}], "ss": [{"d": "IA Senate District 28", "rep": "Dennis Guth", "w": 1.0}]}, "munis": [{"m": "Humboldt", "p": [{"n": "Dan Scholl", "r": "Mayor, Humboldt, IA"}]}], "slug": "humboldt"}, "19093": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 12", "rep": "Steven Holt", "w": 1.0}], "ss": [{"d": "IA Senate District 6", "rep": "Jason Schultz", "w": 1.0}]}, "munis": [{"m": "Battle Creek", "p": [{"n": "Charles Pierce", "r": "Mayor, Battle Creek, IA"}]}, {"m": "Galva", "p": [{"n": "Gary Wanberg", "r": "Mayor, Galva, IA"}]}, {"m": "Ida Grove", "p": [{"n": "Nathan Weitl", "r": "Mayor, Ida Grove, IA"}]}], "slug": "ida"}, "19095": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 91", "rep": "Judd Lawler", "w": 1.0}], "ss": [{"d": "IA Senate District 46", "rep": "Dawn Driscoll", "w": 1.0}]}, "munis": [{"m": "Marengo", "p": [{"n": "Adam Rabe", "r": "Mayor, Marengo, IA"}]}], "slug": "iowa"}, "19097": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 66", "rep": "Steve Bradley", "w": 0.833}], "ss": [{"d": "IA Senate District 33", "rep": "Carrie Koelker", "w": 0.833}, {"d": "IA Senate District 35", "rep": "Mike Zimmer", "w": 0.167}]}, "munis": [{"m": "Maquoketa", "p": [{"n": "Tom Messerli", "r": "Mayor, Maquoketa, IA"}]}], "slug": "jackson"}, "19099": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 0.998}], "sh": [{"d": "IA House District 38", "rep": "Jon Dunwell", "w": 0.748}, {"d": "IA House District 37", "rep": "Barb Kniff McCulla", "w": 0.252}], "ss": [{"d": "IA Senate District 19", "rep": "Ken Rozenboom", "w": 1.0}]}, "munis": [{"m": "Baxter", "p": [{"n": "Doug Bishop", "r": "Mayor, Baxter, IA"}]}, {"m": "Colfax", "p": [{"n": "David Mast", "r": "Mayor, Colfax, IA"}]}, {"m": "Lynnville", "p": [{"n": "Roy James", "r": "Mayor, Lynnville, IA"}]}, {"m": "Monroe", "p": [{"n": "Doug Duinink", "r": "Mayor, Monroe, IA"}]}, {"m": "Newton", "p": [{"n": "Evelyn George", "r": "Mayor, Newton, IA"}]}, {"m": "Prairie City", "p": [{"n": "Chad Alleger", "r": "Mayor, Prairie City, IA"}]}, {"m": "Sully", "p": [{"n": "Ben Ahrens", "r": "Mayor, Sully, IA"}]}], "slug": "jasper"}, "19101": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 88", "rep": "Helena Hayes", "w": 0.582}, {"d": "IA House District 87", "rep": "Jeff Shipley", "w": 0.418}], "ss": [{"d": "IA Senate District 44", "rep": "Adrian Dickey", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "19103": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 0.999}], "sh": [{"d": "IA House District 91", "rep": "Judd Lawler", "w": 0.386}, {"d": "IA House District 92", "rep": "Heather Hora", "w": 0.362}, {"d": "IA House District 85", "rep": "Amy Nielsen", "w": 0.186}, {"d": "IA House District 86", "rep": "Dave Jacoby", "w": 0.029}, {"d": "IA House District 89", "rep": "Elinor Levin", "w": 0.022}, {"d": "IA House District 90", "rep": "Adam Zabner", "w": 0.015}], "ss": [{"d": "IA Senate District 46", "rep": "Dawn Driscoll", "w": 0.748}, {"d": "IA Senate District 43", "rep": "Zach Wahls", "w": 0.215}, {"d": "IA Senate District 45", "rep": "Janice Weiner", "w": 0.037}]}, "munis": [{"m": "Coralville", "p": [{"n": "Meghann Foster", "r": "Mayor, Coralville, IA"}]}, {"m": "Iowa City", "p": [{"n": "Bruce Teague", "r": "Mayor, Iowa City, IA"}]}, {"m": "North Liberty", "p": [{"n": "Chris Hoffman", "r": "Mayor, North Liberty, IA"}]}], "slug": "johnson"}, "19105": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 66", "rep": "Steve Bradley", "w": 1.0}], "ss": [{"d": "IA Senate District 33", "rep": "Carrie Koelker", "w": 1.0}]}, "munis": [{"m": "Monticello", "p": [{"n": "Wayne Peach", "r": "Mayor, Monticello, IA"}]}], "slug": "jones"}, "19107": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 88", "rep": "Helena Hayes", "w": 1.0}], "ss": [{"d": "IA Senate District 44", "rep": "Adrian Dickey", "w": 1.0}]}, "munis": [], "slug": "keokuk"}, "19109": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 9", "rep": "Henry Stone", "w": 0.748}, {"d": "IA House District 10", "rep": "John Wills", "w": 0.252}], "ss": [{"d": "IA Senate District 5", "rep": "Dave Rowley", "w": 1.0}]}, "munis": [], "slug": "kossuth"}, "19111": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 0.998}], "sh": [{"d": "IA House District 100", "rep": "Blaine Watkins", "w": 0.825}, {"d": "IA House District 99", "rep": "Matt Rinker", "w": 0.175}], "ss": [{"d": "IA Senate District 50", "rep": "Jeff Reichman", "w": 1.0}]}, "munis": [{"m": "Fort Madison", "p": [{"n": "Matt J. Mohrfeld", "r": "Mayor, Fort Madison, IA"}]}, {"m": "Keokuk", "p": [{"n": "Kathie Mahoney", "r": "Mayor, Keokuk, IA"}]}], "slug": "lee"}, "19113": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 83", "rep": "Cindy Golding", "w": 0.651}, {"d": "IA House District 84", "rep": "Tom Gerhold", "w": 0.179}, {"d": "IA House District 77", "rep": "Jeff Cooling", "w": 0.064}, {"d": "IA House District 80", "rep": "Aime Wichtendahl", "w": 0.032}, {"d": "IA House District 73", "rep": "Elizabeth Wilson", "w": 0.027}, {"d": "IA House District 78", "rep": "Angel Ramirez", "w": 0.017}, {"d": "IA House District 74", "rep": "Eric Gjerde", "w": 0.015}, {"d": "IA House District 79", "rep": "Tracy Ehlert", "w": 0.014}], "ss": [{"d": "IA Senate District 42", "rep": "Charlie McClintock", "w": 0.831}, {"d": "IA Senate District 39", "rep": "Liz Bennett", "w": 0.081}, {"d": "IA Senate District 40", "rep": "Art Staed", "w": 0.045}, {"d": "IA Senate District 37", "rep": "Molly Donahue", "w": 0.042}]}, "munis": [{"m": "Cedar Rapids", "p": [{"n": "Tiffany O'Donnell", "r": "Mayor, Cedar Rapids, IA"}]}, {"m": "Marion", "p": [{"n": "Nicolas AbouAssaly", "r": "Mayor, Marion, IA"}]}], "slug": "linn"}, "19115": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 95", "rep": "Taylor Collins", "w": 1.0}], "ss": [{"d": "IA Senate District 48", "rep": "Mark Lofgren", "w": 1.0}]}, "munis": [{"m": "Grandview", "p": [{"n": "Steve Schwandkie", "r": "Mayor, Grandview, IA"}]}], "slug": "louisa"}, "19117": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 24", "rep": "Sam Wengryn", "w": 1.0}], "ss": [{"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 1.0}]}, "munis": [{"m": "Chariton", "p": [{"n": "Jayma Hoch", "r": "Mayor, Chariton, IA"}]}], "slug": "lucas"}, "19119": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 4", "rep": "Skyler Wheeler", "w": 0.999}], "ss": [{"d": "IA Senate District 2", "rep": "Jeff Taylor", "w": 0.999}]}, "munis": [], "slug": "lyon"}, "19121": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 23", "rep": "Bubba Sorensen", "w": 1.0}], "ss": [{"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 1.0}]}, "munis": [{"m": "Earlham", "p": [{"n": "Jeff Lillie", "r": "Mayor, Earlham, IA"}]}, {"m": "Winterset", "p": [{"n": "Thomas Leners", "r": "Mayor, Winterset, IA"}]}], "slug": "madison"}, "19123": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 88", "rep": "Helena Hayes", "w": 0.641}, {"d": "IA House District 37", "rep": "Barb Kniff McCulla", "w": 0.358}], "ss": [{"d": "IA Senate District 44", "rep": "Adrian Dickey", "w": 0.641}, {"d": "IA Senate District 19", "rep": "Ken Rozenboom", "w": 0.358}]}, "munis": [{"m": "Oskaloosa", "p": [{"n": "David Krutzfeldt", "r": "Mayor, Oskaloosa, IA"}]}], "slug": "mahaska"}, "19125": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 37", "rep": "Barb Kniff McCulla", "w": 0.701}, {"d": "IA House District 21", "rep": "Brooke Boden", "w": 0.299}], "ss": [{"d": "IA Senate District 19", "rep": "Ken Rozenboom", "w": 0.701}, {"d": "IA Senate District 11", "rep": "Julian Garrett", "w": 0.299}]}, "munis": [{"m": "Knoxville", "p": [{"n": "Brian Hatch", "r": "Mayor, Knoxville, IA"}]}, {"m": "Pella", "p": [{"n": "Don DeWaard", "r": "Mayor, Pella, IA"}]}, {"m": "Pleasantville", "p": [{"n": "Kody Jurgens", "r": "Mayor, Pleasantville, IA"}]}], "slug": "marion"}, "19127": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 51", "rep": "Brett Barker", "w": 0.732}, {"d": "IA House District 52", "rep": "David Blom", "w": 0.268}], "ss": [{"d": "IA Senate District 26", "rep": "Kara Warme", "w": 1.0}]}, "munis": [{"m": "Marshalltown", "p": [{"n": "Joel T.S. Greer", "r": "Mayor, Marshalltown, IA"}]}, {"m": "Melbourne", "p": [{"n": "Cynthia Mansager", "r": "Mayor, Melbourne, IA"}]}, {"m": "State Center", "p": [{"n": "Craig Pfantz", "r": "Mayor, State Center, IA"}]}], "slug": "marshall"}, "19129": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 16", "rep": "David Sieck", "w": 1.0}], "ss": [{"d": "IA Senate District 8", "rep": "Mark Costello", "w": 1.0}]}, "munis": [], "slug": "mills"}, "19131": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 0.999}], "sh": [{"d": "IA House District 60", "rep": "Jane Bloomingdale", "w": 1.0}], "ss": [{"d": "IA Senate District 30", "rep": "Doug Campbell", "w": 1.0}]}, "munis": [], "slug": "mitchell"}, "19133": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 13", "rep": "Travis Sitzmann", "w": 1.0}], "ss": [{"d": "IA Senate District 7", "rep": "Kevin Alons", "w": 1.0}]}, "munis": [], "slug": "monona"}, "19135": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 26", "rep": "Austin Harris", "w": 1.0}], "ss": [{"d": "IA Senate District 13", "rep": "Cherielynn Westrich", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "19137": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 18", "rep": "Tom Moore", "w": 1.0}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "19139": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 95", "rep": "Taylor Collins", "w": 0.428}, {"d": "IA House District 82", "rep": "Bobby Kaufmann", "w": 0.295}, {"d": "IA House District 96", "rep": "Mark Cisneros", "w": 0.276}], "ss": [{"d": "IA Senate District 48", "rep": "Mark Lofgren", "w": 0.705}, {"d": "IA Senate District 41", "rep": "Kerry Gruenhagen", "w": 0.295}]}, "munis": [], "slug": "muscatine"}, "19141": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 5", "rep": "Zach Dieken", "w": 1.0}], "ss": [{"d": "IA Senate District 3", "rep": "Lynn Evans", "w": 1.0}]}, "munis": [{"m": "Sheldon", "p": [{"n": "Greg Geels", "r": "Mayor, Sheldon, IA"}]}], "slug": "o-brien"}, "19143": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 5", "rep": "Zach Dieken", "w": 1.0}], "ss": [{"d": "IA Senate District 3", "rep": "Lynn Evans", "w": 1.0}]}, "munis": [], "slug": "osceola"}, "19145": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 18", "rep": "Tom Moore", "w": 0.671}, {"d": "IA House District 17", "rep": "Devon Wood", "w": 0.329}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 1.0}]}, "munis": [{"m": "Shenandoah", "p": [{"n": "Roger McQueen", "r": "Mayor, Shenandoah, IA"}]}], "slug": "page"}, "19147": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 10", "rep": "John Wills", "w": 1.0}], "ss": [{"d": "IA Senate District 5", "rep": "Dave Rowley", "w": 1.0}]}, "munis": [], "slug": "palo-alto"}, "19149": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.998}], "sh": [{"d": "IA House District 13", "rep": "Travis Sitzmann", "w": 0.522}, {"d": "IA House District 3", "rep": "Tom Jeneary", "w": 0.477}], "ss": [{"d": "IA Senate District 7", "rep": "Kevin Alons", "w": 0.522}, {"d": "IA Senate District 2", "rep": "Jeff Taylor", "w": 0.477}]}, "munis": [{"m": "Akron", "p": [{"n": "Alex Pick", "r": "Mayor, Akron, IA"}]}, {"m": "Hinton", "p": [{"n": "Kelly Kreber", "r": "Mayor, Hinton, IA"}]}, {"m": "Kingsley", "p": [{"n": "Rick Bohle", "r": "Mayor, Kingsley, IA"}]}, {"m": "Le Mars", "p": [{"n": "Rob Bixenman", "r": "Mayor, Le Mars, IA"}]}, {"m": "Merrill", "p": [{"n": "Bruce Norgaard", "r": "Mayor, Merrill, IA"}]}], "slug": "plymouth"}, "19151": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 7", "rep": "Wendy Larson", "w": 1.0}], "ss": [{"d": "IA Senate District 4", "rep": "Tim Kraayenbrink", "w": 1.0}]}, "munis": [{"m": "Fonda", "p": [{"n": "Donald Wolf", "r": "Mayor, Fonda, IA"}]}, {"m": "Laurens", "p": [{"n": "Rod Johnson", "r": "Mayor, Laurens, IA"}]}, {"m": "Pocahontas", "p": [{"n": "Wes Beneke", "r": "Mayor, Pocahontas, IA"}]}, {"m": "Rolfe", "p": [{"n": "James Pentico", "r": "Mayor, Rolfe, IA"}]}], "slug": "pocahontas"}, "19153": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 0.999}], "sh": [{"d": "IA House District 45", "rep": "Brian Lohse", "w": 0.565}, {"d": "IA House District 40", "rep": "Bill Gustoff", "w": 0.063}, {"d": "IA House District 43", "rep": "Eddie Andrews", "w": 0.056}, {"d": "IA House District 29", "rep": "Brian Meyer", "w": 0.04}, {"d": "IA House District 31", "rep": "Mary Madison", "w": 0.039}, {"d": "IA House District 39", "rep": "Rick Olson", "w": 0.037}, {"d": "IA House District 30", "rep": "Megan Srinivas", "w": 0.028}, {"d": "IA House District 42", "rep": "Heather Matson", "w": 0.027}, {"d": "IA House District 44", "rep": "Larry McBurney", "w": 0.026}, {"d": "IA House District 41", "rep": "Ryan Weldon", "w": 0.025}, {"d": "IA House District 36", "rep": "Austin Baeth", "w": 0.021}, {"d": "IA House District 46", "rep": "Dan Gehlbach", "w": 0.019}, {"d": "IA House District 32", "rep": "Jennifer Konfrst", "w": 0.018}, {"d": "IA House District 35", "rep": "Sean Bagniewski", "w": 0.013}, {"d": "IA House District 33", "rep": "Ruth Ann Gaines", "w": 0.013}, {"d": "IA House District 34", "rep": "Rob Johnson", "w": 0.011}], "ss": [{"d": "IA Senate District 23", "rep": "Jack Whitver", "w": 0.584}, {"d": "IA Senate District 20", "rep": "Mike Pike", "w": 0.1}, {"d": "IA Senate District 22", "rep": "Matt Blake", "w": 0.082}, {"d": "IA Senate District 15", "rep": "Tony Bisignano", "w": 0.067}, {"d": "IA Senate District 16", "rep": "Renee Hardman", "w": 0.057}, {"d": "IA Senate District 21", "rep": "Mike Bousselot", "w": 0.052}, {"d": "IA Senate District 18", "rep": "Janet Petersen", "w": 0.034}, {"d": "IA Senate District 17", "rep": "Izaah Knox", "w": 0.025}]}, "munis": [{"m": "Altoona", "p": [{"n": "Q124630277", "r": "Mayor, Altoona, IA"}]}, {"m": "Ankeny", "p": [{"n": "Mark Holm", "r": "Mayor, Ankeny, IA"}]}, {"m": "Des Moines", "p": [{"n": "Connie Boesen", "r": "Mayor, Des Moines, IA"}]}, {"m": "Johnston", "p": [{"n": "Paula Dierenfeld", "r": "Mayor, Johnston, IA"}]}, {"m": "Mitchellville", "p": [{"n": "Jessica Trobaugh", "r": "Mayor, Mitchellville, IA"}]}, {"m": "Pleasant Hill", "p": [{"n": "Sara Kurovski", "r": "Mayor, Pleasant Hill, IA"}]}, {"m": "Polk City", "p": [{"n": "Steve Karsjen", "r": "Mayor, Polk City, IA"}]}, {"m": "Urbandale", "p": [{"n": "Bob Andeweg", "r": "Mayor, Urbandale, IA"}]}, {"m": "West Des Moines", "p": [{"n": "Russ Trimble", "r": "Mayor, West Des Moines, IA"}]}, {"m": "Windsor Heights", "p": [{"n": "Mike Jones", "r": "Mayor, Windsor Heights, IA"}]}], "slug": "polk"}, "19155": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 16", "rep": "David Sieck", "w": 0.592}, {"d": "IA House District 15", "rep": "Matt Windschitl", "w": 0.286}, {"d": "IA House District 11", "rep": "Craig Williams", "w": 0.074}, {"d": "IA House District 19", "rep": "Brent Siegrist", "w": 0.036}, {"d": "IA House District 20", "rep": "Josh Turek", "w": 0.01}], "ss": [{"d": "IA Senate District 8", "rep": "Mark Costello", "w": 0.878}, {"d": "IA Senate District 6", "rep": "Jason Schultz", "w": 0.074}, {"d": "IA Senate District 10", "rep": "Dan Dawson", "w": 0.046}]}, "munis": [{"m": "Carter Lake", "p": [{"n": "Ron Cumberledge", "r": "Mayor, Carter Lake, IA"}]}, {"m": "Council Bluffs", "p": [{"n": "Matt Walsh", "r": "Mayor, Council Bluffs, IA"}]}, {"m": "Macedonia", "p": [{"n": "Melia Clark", "r": "Mayor, Macedonia, IA"}]}, {"m": "Oakland", "p": [{"n": "Brant Miller", "r": "Mayor, Oakland, IA"}]}, {"m": "Underwood", "p": [{"n": "Dennis Bardsley", "r": "Mayor, Underwood, IA"}]}], "slug": "pottawattamie"}, "19157": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 53", "rep": "Dean Fisher", "w": 1.0}], "ss": [{"d": "IA Senate District 27", "rep": "Annette Sweeney", "w": 1.0}]}, "munis": [{"m": "Brooklyn", "p": [{"n": "Les Taylor", "r": "Mayor, Brooklyn, IA"}]}, {"m": "Grinnell", "p": [{"n": "Dan F. Agnew", "r": "Mayor, Grinnell, IA"}]}, {"m": "Montezuma", "p": [{"n": "Colin Watts", "r": "Mayor, Montezuma, IA"}]}], "slug": "poweshiek"}, "19159": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 17", "rep": "Devon Wood", "w": 1.0}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 1.0}]}, "munis": [], "slug": "ringgold"}, "19161": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 7", "rep": "Wendy Larson", "w": 1.0}], "ss": [{"d": "IA Senate District 4", "rep": "Tim Kraayenbrink", "w": 1.0}]}, "munis": [{"m": "Lake View", "p": [{"n": "John Westergaard", "r": "Mayor, Lake View, IA"}]}, {"m": "Sac City", "p": [{"n": "Scott Bundt", "r": "Mayor, Sac City, IA"}]}, {"m": "Schaller", "p": [{"n": "Sean Ehrp", "r": "Mayor, Schaller, IA"}]}, {"m": "Wall Lake", "p": [{"n": "Jamie Rohlf", "r": "Mayor, Wall Lake, IA"}]}], "slug": "sac"}, "19163": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 82", "rep": "Bobby Kaufmann", "w": 0.303}, {"d": "IA House District 94", "rep": "Mike Vondran", "w": 0.144}, {"d": "IA House District 98", "rep": "Monica Kurth", "w": 0.087}, {"d": "IA House District 81", "rep": "Dan Gosa", "w": 0.066}, {"d": "IA House District 93", "rep": "Gary Mohr", "w": 0.064}, {"d": "IA House District 97", "rep": "Ken Croken", "w": 0.019}], "ss": [{"d": "IA Senate District 41", "rep": "Kerry Gruenhagen", "w": 0.37}, {"d": "IA Senate District 35", "rep": "Mike Zimmer", "w": 0.316}, {"d": "IA Senate District 47", "rep": "Scott Webster", "w": 0.208}, {"d": "IA Senate District 49", "rep": "Cindy Winckler", "w": 0.106}]}, "munis": [{"m": "Bettendorf", "p": [{"n": "Robert S. Gallagher", "r": "Mayor, Bettendorf, IA"}]}, {"m": "Buffalo", "p": [{"n": "Sally Rodriguez", "r": "Mayor, Buffalo, IA"}]}, {"m": "Davenport", "p": [{"n": "Mike Matson", "r": "Mayor, Davenport, IA"}]}, {"m": "Eldridge", "p": [{"n": "Frank King", "r": "Mayor, Eldridge, IA"}]}, {"m": "Le Claire", "p": [{"n": "Dennis Gerard", "r": "Mayor, Le Claire, IA"}]}, {"m": "Riverdale", "p": [{"n": "Anthony Heddlesten", "r": "Mayor, Riverdale, IA"}]}, {"m": "Walcott", "p": [{"n": "John Kostichek", "r": "Mayor, Walcott, IA"}]}], "slug": "scott"}, "19165": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 11", "rep": "Craig Williams", "w": 0.509}, {"d": "IA House District 12", "rep": "Steven Holt", "w": 0.491}], "ss": [{"d": "IA Senate District 6", "rep": "Jason Schultz", "w": 1.0}]}, "munis": [{"m": "Harlan", "p": [{"n": "Jay Christensen", "r": "Mayor, Harlan, IA"}]}], "slug": "shelby"}, "19167": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 3", "rep": "Tom Jeneary", "w": 0.552}, {"d": "IA House District 4", "rep": "Skyler Wheeler", "w": 0.447}], "ss": [{"d": "IA Senate District 2", "rep": "Jeff Taylor", "w": 0.999}]}, "munis": [{"m": "Hawarden", "p": [{"n": "Larry Gregg", "r": "Mayor, Hawarden, IA"}]}, {"m": "Hull", "p": [{"n": "Arlan Moss", "r": "Mayor, Hull, IA"}]}, {"m": "Orange City", "p": [{"n": "Deb de Haan", "r": "Mayor, Orange City, IA"}]}, {"m": "Rock Valley", "p": [{"n": "Kevin van Otterloo", "r": "Mayor, Rock Valley, IA"}]}, {"m": "Sioux Center", "p": [{"n": "Dale Vander Berg", "r": "Mayor, Sioux Center, IA"}]}], "slug": "sioux"}, "19169": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 51", "rep": "Brett Barker", "w": 0.74}, {"d": "IA House District 55", "rep": "Shannon Latham", "w": 0.126}, {"d": "IA House District 49", "rep": "Beth Wessel-Kroeschell", "w": 0.076}, {"d": "IA House District 48", "rep": "Chad Behn", "w": 0.041}, {"d": "IA House District 50", "rep": "Ross Wilburn", "w": 0.017}], "ss": [{"d": "IA Senate District 26", "rep": "Kara Warme", "w": 0.74}, {"d": "IA Senate District 28", "rep": "Dennis Guth", "w": 0.126}, {"d": "IA Senate District 25", "rep": "Herman Quirmbach", "w": 0.093}, {"d": "IA Senate District 24", "rep": "Jesse Green", "w": 0.041}]}, "munis": [{"m": "Ames", "p": [{"n": "John Haila", "r": "Mayor, Ames, IA"}]}, {"m": "Cambridge", "p": [{"n": "Robert Chubbic", "r": "Mayor, Cambridge, IA"}]}, {"m": "Colo", "p": [{"n": "Brent Bappe", "r": "Mayor, Colo, IA"}]}, {"m": "Maxwell", "p": [{"n": "Dale Higgins", "r": "Mayor, Maxwell, IA"}]}, {"m": "Nevada", "p": [{"n": "Brett Barker", "r": "Mayor, Nevada, IA"}]}, {"m": "Roland", "p": [{"n": "Kurtis Bower", "r": "Mayor, Roland, IA"}]}, {"m": "Slater", "p": [{"n": "Taylor Christensen", "r": "Mayor, Slater, IA"}]}, {"m": "Story City", "p": [{"n": "Mike Jensen", "r": "Mayor, Story City, IA"}]}], "slug": "story"}, "19171": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 53", "rep": "Dean Fisher", "w": 0.799}, {"d": "IA House District 76", "rep": "Derek Wulf", "w": 0.2}], "ss": [{"d": "IA Senate District 27", "rep": "Annette Sweeney", "w": 0.799}, {"d": "IA Senate District 38", "rep": "Dave Sires", "w": 0.2}]}, "munis": [{"m": "Dysart", "p": [{"n": "Tim Glenn", "r": "Mayor, Dysart, IA"}]}, {"m": "Tama", "p": [{"n": "Doug Ray", "r": "Mayor, Tama, IA"}]}, {"m": "Toledo", "p": [{"n": "Brian Sokol", "r": "Mayor, Toledo, IA"}]}, {"m": "Traer", "p": [{"n": "Pete Holden", "r": "Mayor, Traer, IA"}]}], "slug": "tama"}, "19173": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 17", "rep": "Devon Wood", "w": 1.0}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 1.0}]}, "munis": [{"m": "Bedford", "p": [{"n": "Aaron Hardee", "r": "Mayor, Bedford, IA"}]}, {"m": "Lenox", "p": [{"n": "Melissa Douglas", "r": "Mayor, Lenox, IA"}]}], "slug": "taylor"}, "19175": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 17", "rep": "Devon Wood", "w": 0.582}, {"d": "IA House District 23", "rep": "Bubba Sorensen", "w": 0.418}], "ss": [{"d": "IA Senate District 9", "rep": "Tom Shipley", "w": 0.582}, {"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 0.418}]}, "munis": [{"m": "Creston", "p": [{"n": "Waylon Clayton", "r": "Mayor, Creston, IA"}]}], "slug": "union"}, "19177": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 87", "rep": "Jeff Shipley", "w": 1.0}], "ss": [{"d": "IA Senate District 44", "rep": "Adrian Dickey", "w": 1.0}]}, "munis": [{"m": "Farmington", "p": [{"n": "Janet Browning", "r": "Mayor, Farmington, IA"}]}], "slug": "van-buren"}, "19179": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 25", "rep": "Hans Wilz", "w": 0.579}, {"d": "IA House District 26", "rep": "Austin Harris", "w": 0.421}], "ss": [{"d": "IA Senate District 13", "rep": "Cherielynn Westrich", "w": 1.0}]}, "munis": [{"m": "Ottumwa", "p": [{"n": "Tom X. Lazio", "r": "Mayor, Ottumwa, IA"}]}], "slug": "wapello"}, "19181": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 0.999}], "sh": [{"d": "IA House District 22", "rep": "Samantha Fett", "w": 0.616}, {"d": "IA House District 21", "rep": "Brooke Boden", "w": 0.384}], "ss": [{"d": "IA Senate District 11", "rep": "Julian Garrett", "w": 1.0}]}, "munis": [{"m": "Indianola", "p": [{"n": "Stephanie Erickson", "r": "Mayor, Indianola, IA"}]}, {"m": "Norwalk", "p": [{"n": "Tom Phillips", "r": "Mayor, Norwalk, IA"}]}], "slug": "warren"}, "19183": {"county": [], "districts": {"cd": [{"d": "IA-01", "rep": "Mariannette Miller-Meeks", "w": 1.0}], "sh": [{"d": "IA House District 92", "rep": "Heather Hora", "w": 1.0}], "ss": [{"d": "IA Senate District 46", "rep": "Dawn Driscoll", "w": 1.0}]}, "munis": [{"m": "Kalona", "p": [{"n": "Mark Robe", "r": "Mayor, Kalona, IA"}]}, {"m": "Riverside", "p": [{"n": "Allen Schneider", "r": "Mayor, Riverside, IA"}]}, {"m": "Washington", "p": [{"n": "Jaron Rosien", "r": "Mayor, Washington, IA"}]}, {"m": "Wellman", "p": [{"n": "Ryan Miller", "r": "Mayor, Wellman, IA"}]}], "slug": "washington"}, "19185": {"county": [], "districts": {"cd": [{"d": "IA-03", "rep": "Zachary Nunn", "w": 1.0}], "sh": [{"d": "IA House District 24", "rep": "Sam Wengryn", "w": 1.0}], "ss": [{"d": "IA Senate District 12", "rep": "Amy Sinclair", "w": 1.0}]}, "munis": [{"m": "Corydon", "p": [{"n": "Nathan Bennett", "r": "Mayor, Corydon, IA"}]}], "slug": "wayne"}, "19187": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 8", "rep": "Ann Meyer", "w": 0.527}, {"d": "IA House District 7", "rep": "Wendy Larson", "w": 0.473}], "ss": [{"d": "IA Senate District 4", "rep": "Tim Kraayenbrink", "w": 1.0}]}, "munis": [{"m": "Badger", "p": [{"n": "Chris Wendell", "r": "Mayor, Badger, IA"}]}, {"m": "Dayton", "p": [{"n": "Dave Bills", "r": "Mayor, Dayton, IA"}]}, {"m": "Fort Dodge", "p": [{"n": "Matt Bemrich", "r": "Mayor, Fort Dodge, IA"}]}, {"m": "Gowrie", "p": [{"n": "Bruce Towne", "r": "Mayor, Gowrie, IA"}]}], "slug": "webster"}, "19189": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 9", "rep": "Henry Stone", "w": 1.0}], "ss": [{"d": "IA Senate District 5", "rep": "Dave Rowley", "w": 1.0}]}, "munis": [{"m": "Buffalo Center", "p": [{"n": "Rick Hofbauer", "r": "Mayor, Buffalo Center, IA"}]}, {"m": "Lake Mills", "p": [{"n": "Mark Peterson", "r": "Mayor, Lake Mills, IA"}]}], "slug": "winnebago"}, "19191": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 63", "rep": "Michael Bergan", "w": 1.0}], "ss": [{"d": "IA Senate District 32", "rep": "Mike Klimesh", "w": 1.0}]}, "munis": [{"m": "Calmar", "p": [{"n": "Keith Frana", "r": "Mayor, Calmar, IA"}]}, {"m": "Decorah", "p": [{"n": "Lorraine Borowski", "r": "Mayor, Decorah, IA"}]}, {"m": "Fort Atkinson", "p": [{"n": "Paul Herold", "r": "Mayor, Fort Atkinson, IA"}]}], "slug": "winneshiek"}, "19193": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 0.999}], "sh": [{"d": "IA House District 13", "rep": "Travis Sitzmann", "w": 0.769}, {"d": "IA House District 2", "rep": "Bob Henderson", "w": 0.111}, {"d": "IA House District 14", "rep": "Jacob Bossman", "w": 0.104}, {"d": "IA House District 1", "rep": "J.D. Scholten", "w": 0.016}], "ss": [{"d": "IA Senate District 7", "rep": "Kevin Alons", "w": 0.873}, {"d": "IA Senate District 1", "rep": "Catelin Drey", "w": 0.127}]}, "munis": [{"m": "Correctionville", "p": [{"n": "Ken Bauer", "r": "Mayor, Correctionville, IA"}]}, {"m": "Lawton", "p": [{"n": "Jesse Pedersen", "r": "Mayor, Lawton, IA"}]}, {"m": "Sergeant Bluff", "p": [{"n": "Jon Winkel", "r": "Mayor, Sergeant Bluff, IA"}]}, {"m": "Sioux City", "p": [{"n": "Bob Scott", "r": "Mayor, Sioux City, IA"}]}, {"m": "Sloan", "p": [{"n": "Charles Thorpe", "r": "Mayor, Sloan, IA"}]}], "slug": "woodbury"}, "19195": {"county": [], "districts": {"cd": [{"d": "IA-02", "rep": "Ashley Hinson", "w": 1.0}], "sh": [{"d": "IA House District 60", "rep": "Jane Bloomingdale", "w": 1.0}], "ss": [{"d": "IA Senate District 30", "rep": "Doug Campbell", "w": 1.0}]}, "munis": [{"m": "Fertile", "p": [{"n": "Nick Bailey", "r": "Mayor, Fertile, IA"}]}], "slug": "worth"}, "19197": {"county": [], "districts": {"cd": [{"d": "IA-04", "rep": "Randy Feenstra", "w": 1.0}], "sh": [{"d": "IA House District 56", "rep": "Mark Thompson", "w": 0.692}, {"d": "IA House District 55", "rep": "Shannon Latham", "w": 0.308}], "ss": [{"d": "IA Senate District 28", "rep": "Dennis Guth", "w": 1.0}]}, "munis": [{"m": "Belmond", "p": [{"n": "Frank Beminio", "r": "Mayor, Belmond, IA"}]}, {"m": "Clarion", "p": [{"n": "Rodney Heiden", "r": "Mayor, Clarion, IA"}]}, {"m": "Eagle Grove", "p": [{"n": "Michael Boyd", "r": "Mayor, Eagle Grove, IA"}]}], "slug": "wright"}, "20001": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 9", "rep": "Fred Gardner", "w": 1.0}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 1.0}]}, "munis": [], "slug": "allen"}, "20003": {"county": [], "districts": {"cd": [{"d": "KS-03", "rep": "Sharice Davids", "w": 0.999}], "sh": [{"d": "KS House District 9", "rep": "Fred Gardner", "w": 1.0}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 1.0}]}, "munis": [], "slug": "anderson"}, "20005": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 63", "rep": "Allen Reavis", "w": 1.0}], "ss": [{"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 1.0}]}, "munis": [], "slug": "atchison"}, "20007": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 116", "rep": "Kyle Hoffman", "w": 1.0}], "ss": [{"d": "KS Senate District 34", "rep": "Mike Murphy", "w": 1.0}]}, "munis": [], "slug": "barber"}, "20009": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 112", "rep": "Sherri Brantley", "w": 0.847}, {"d": "KS House District 113", "rep": "Brett Fairchild", "w": 0.153}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "barton"}, "20011": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 4", "rep": "Rick James", "w": 1.0}], "ss": [{"d": "KS Senate District 13", "rep": "Tim Shallenburger", "w": 1.0}]}, "munis": [], "slug": "bourbon"}, "20013": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 62", "rep": "Sean Willcott", "w": 1.0}], "ss": [{"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 1.0}]}, "munis": [], "slug": "brown"}, "20015": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 75", "rep": "Will Carpenter", "w": 0.521}, {"d": "KS House District 12", "rep": "Doug Blex", "w": 0.342}, {"d": "KS House District 77", "rep": "Kristey Williams", "w": 0.117}, {"d": "KS House District 99", "rep": "Susan Humphries", "w": 0.011}, {"d": "KS House District 85", "rep": "Steve Brunk", "w": 0.006}], "ss": [{"d": "KS Senate District 14", "rep": "Mike Fagg", "w": 0.594}, {"d": "KS Senate District 32", "rep": "Larry Alley", "w": 0.256}, {"d": "KS Senate District 16", "rep": "Ty Masterson", "w": 0.15}]}, "munis": [{"m": "Andover", "p": [{"n": "Ronnie Price", "r": "Mayor, Andover, KS"}]}], "slug": "butler"}, "20017": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 13", "rep": "Duane Droge", "w": 1.0}], "ss": [{"d": "KS Senate District 14", "rep": "Mike Fagg", "w": 1.0}]}, "munis": [], "slug": "chase"}, "20019": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 12", "rep": "Doug Blex", "w": 1.0}], "ss": [{"d": "KS Senate District 15", "rep": "Virgil Peck", "w": 1.0}]}, "munis": [], "slug": "chautauqua"}, "20021": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 1", "rep": "Dale Helwig", "w": 1.0}], "ss": [{"d": "KS Senate District 13", "rep": "Tim Shallenburger", "w": 1.0}]}, "munis": [], "slug": "cherokee"}, "20023": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 120", "rep": "Adam Smith", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "cheyenne"}, "20025": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 115", "rep": "Gary White", "w": 1.0}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "clark"}, "20027": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 64", "rep": "Bill Bloom", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "clay"}, "20029": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 64", "rep": "Bill Bloom", "w": 0.519}, {"d": "KS House District 107", "rep": "Dawn Wolf", "w": 0.481}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "cloud"}, "20031": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 76", "rep": "Brad Barrett", "w": 1.0}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 1.0}]}, "munis": [{"m": "Burlington", "p": [{"n": "Robert S. Luke (Stan)", "r": "Mayor, Burlington, KS"}]}], "slug": "coffey"}, "20033": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 0.998}], "sh": [{"d": "KS House District 116", "rep": "Kyle Hoffman", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [{"m": "Coldwater", "p": [{"n": "Joe Ceballos", "r": "Mayor, Coldwater, KS"}]}], "slug": "comanche"}, "20035": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 12", "rep": "Doug Blex", "w": 0.665}, {"d": "KS House District 79", "rep": "Web Roth", "w": 0.271}, {"d": "KS House District 80", "rep": "Bill Rhiley", "w": 0.064}], "ss": [{"d": "KS Senate District 32", "rep": "Larry Alley", "w": 1.0}]}, "munis": [{"m": "Arkansas City", "p": [{"n": "Jay Warren", "r": "Mayor, Arkansas City, KS"}]}], "slug": "cowley"}, "20037": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 2", "rep": "Ken Collins", "w": 0.885}, {"d": "KS House District 3", "rep": "Chuck Smith", "w": 0.115}], "ss": [{"d": "KS Senate District 13", "rep": "Tim Shallenburger", "w": 1.0}]}, "munis": [{"m": "Pittsburg", "p": [{"n": "Stu Hite", "r": "Mayor, Pittsburg, KS"}]}], "slug": "crawford"}, "20039": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 120", "rep": "Adam Smith", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "decatur"}, "20041": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 0.999}], "sh": [{"d": "KS House District 70", "rep": "Greg Wilson", "w": 0.819}, {"d": "KS House District 64", "rep": "Bill Bloom", "w": 0.181}], "ss": [{"d": "KS Senate District 24", "rep": "Scott Hill", "w": 1.0}]}, "munis": [], "slug": "dickinson"}, "20043": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.999}], "sh": [{"d": "KS House District 63", "rep": "Allen Reavis", "w": 0.999}], "ss": [{"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 0.999}]}, "munis": [], "slug": "doniphan"}, "20045": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.867}, {"d": "KS-01", "rep": "Tracey Mann", "w": 0.133}], "sh": [{"d": "KS House District 5", "rep": "Courtney Sappington", "w": 0.372}, {"d": "KS House District 47", "rep": "Ronald Ellis", "w": 0.244}, {"d": "KS House District 117", "rep": "Adam Turk", "w": 0.155}, {"d": "KS House District 45", "rep": "Mike Amyx", "w": 0.099}, {"d": "KS House District 42", "rep": "Lance Neelly", "w": 0.051}, {"d": "KS House District 43", "rep": "Bill Sutton", "w": 0.032}, {"d": "KS House District 10", "rep": "Suzanne Wikle", "w": 0.019}, {"d": "KS House District 44", "rep": "Barbara Ballard", "w": 0.016}, {"d": "KS House District 46", "rep": "Brooklynne Mosley", "w": 0.013}], "ss": [{"d": "KS Senate District 3", "rep": "Rick Kloos", "w": 0.526}, {"d": "KS Senate District 9", "rep": "Beverly Gossage", "w": 0.279}, {"d": "KS Senate District 19", "rep": "Patrick Schmidt", "w": 0.104}, {"d": "KS Senate District 2", "rep": "Marci Francisco", "w": 0.091}]}, "munis": [{"m": "Lawrence", "p": [{"n": "Bart Littlejohn", "r": "Mayor, Lawrence, KS"}]}], "slug": "douglas"}, "20047": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 115", "rep": "Gary White", "w": 0.826}, {"d": "KS House District 122", "rep": "Lon Pishny", "w": 0.174}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "edwards"}, "20049": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 12", "rep": "Doug Blex", "w": 1.0}], "ss": [{"d": "KS Senate District 15", "rep": "Virgil Peck", "w": 1.0}]}, "munis": [], "slug": "elk"}, "20051": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 110", "rep": "Ken Rahjes", "w": 0.926}, {"d": "KS House District 111", "rep": "Barb Wasinger", "w": 0.074}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [{"m": "Hays", "p": [{"n": "Shaun Musil", "r": "Mayor, Hays, KS"}]}], "slug": "ellis"}, "20053": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 109", "rep": "Troy Waymaster", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "ellsworth"}, "20055": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 122", "rep": "Lon Pishny", "w": 0.993}, {"d": "KS House District 123", "rep": "Bob Lewis", "w": 0.007}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [{"m": "Holcomb", "p": [{"n": "Nicole Faulconer", "r": "Mayor, Holcomb, KS"}]}], "slug": "finney"}, "20057": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 115", "rep": "Gary White", "w": 0.987}, {"d": "KS House District 119", "rep": "Jason Goetz", "w": 0.013}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "ford"}, "20059": {"county": [], "districts": {"cd": [{"d": "KS-03", "rep": "Sharice Davids", "w": 1.0}], "sh": [{"d": "KS House District 59", "rep": "Rebecca Schmoe", "w": 0.938}, {"d": "KS House District 5", "rep": "Courtney Sappington", "w": 0.062}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 0.541}, {"d": "KS Senate District 3", "rep": "Rick Kloos", "w": 0.459}]}, "munis": [{"m": "Wellsville", "p": [{"n": "Bill Lytle", "r": "Mayor, Wellsville, KS"}]}], "slug": "franklin"}, "20061": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.997}], "sh": [{"d": "KS House District 68", "rep": "Nate Butler", "w": 0.756}, {"d": "KS House District 65", "rep": "Shawn Chauncey", "w": 0.243}], "ss": [{"d": "KS Senate District 17", "rep": "Mike Argabright", "w": 1.0}]}, "munis": [{"m": "Junction City", "p": [{"n": "Pat Landes", "r": "Mayor, Junction City, KS"}]}], "slug": "geary"}, "20063": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "gove"}, "20065": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 110", "rep": "Ken Rahjes", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "graham"}, "20067": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 124", "rep": "Marty Long", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [{"m": "Ulysses", "p": [{"n": "Tim McCauley", "r": "Mayor, Ulysses, KS"}]}], "slug": "grant"}, "20069": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 115", "rep": "Gary White", "w": 1.0}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "gray"}, "20071": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "greeley"}, "20073": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 0.999}], "sh": [{"d": "KS House District 13", "rep": "Duane Droge", "w": 1.0}], "ss": [{"d": "KS Senate District 14", "rep": "Mike Fagg", "w": 1.0}]}, "munis": [], "slug": "greenwood"}, "20075": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 124", "rep": "Marty Long", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "hamilton"}, "20077": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 116", "rep": "Kyle Hoffman", "w": 1.0}], "ss": [{"d": "KS Senate District 32", "rep": "Larry Alley", "w": 1.0}]}, "munis": [], "slug": "harper"}, "20079": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 0.999}], "sh": [{"d": "KS House District 74", "rep": "Mike King", "w": 0.698}, {"d": "KS House District 72", "rep": "Avery Anderson", "w": 0.302}], "ss": [{"d": "KS Senate District 31", "rep": "Stephen Owens", "w": 1.0}]}, "munis": [], "slug": "harvey"}, "20081": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 124", "rep": "Marty Long", "w": 1.0}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "haskell"}, "20083": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 122", "rep": "Lon Pishny", "w": 1.0}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "hodgeman"}, "20085": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 0.873}, {"d": "KS-02", "rep": "Derek Schmidt", "w": 0.127}], "sh": [{"d": "KS House District 61", "rep": "Francis Awerkamp", "w": 0.423}, {"d": "KS House District 62", "rep": "Sean Willcott", "w": 0.418}, {"d": "KS House District 47", "rep": "Ronald Ellis", "w": 0.159}], "ss": [{"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "20087": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 0.996}], "sh": [{"d": "KS House District 47", "rep": "Ronald Ellis", "w": 0.886}, {"d": "KS House District 42", "rep": "Lance Neelly", "w": 0.114}], "ss": [{"d": "KS Senate District 18", "rep": "Kenny Titus", "w": 0.666}, {"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 0.334}]}, "munis": [], "slug": "jefferson"}, "20089": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 106", "rep": "Lisa Moser", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "jewell"}, "20091": {"county": [], "districts": {"cd": [{"d": "KS-03", "rep": "Sharice Davids", "w": 0.999}], "sh": [{"d": "KS House District 121", "rep": "Mike Storm", "w": 0.141}, {"d": "KS House District 27", "rep": "Sean Tarwater", "w": 0.106}, {"d": "KS House District 43", "rep": "Bill Sutton", "w": 0.095}, {"d": "KS House District 117", "rep": "Adam Turk", "w": 0.084}, {"d": "KS House District 5", "rep": "Courtney Sappington", "w": 0.082}, {"d": "KS House District 26", "rep": "Chip VanHouden", "w": 0.071}, {"d": "KS House District 39", "rep": "Angela Stiens", "w": 0.041}, {"d": "KS House District 30", "rep": "Laura Williams", "w": 0.04}, {"d": "KS House District 15", "rep": "Lauren Bohi", "w": 0.037}, {"d": "KS House District 14", "rep": "Charlotte Esau", "w": 0.032}, {"d": "KS House District 17", "rep": "Jo Ella Hoye", "w": 0.03}, {"d": "KS House District 20", "rep": "Mari-Lynn Poskin", "w": 0.025}, {"d": "KS House District 8", "rep": "Chris Croft", "w": 0.022}, {"d": "KS House District 24", "rep": "Jarrod Ousley", "w": 0.018}, {"d": "KS House District 28", "rep": "Carl Turner", "w": 0.016}, {"d": "KS House District 18", "rep": "Cindy Neighbor", "w": 0.016}, {"d": "KS House District 29", "rep": "Heather Meyer", "w": 0.015}, {"d": "KS House District 25", "rep": "Rui Xu", "w": 0.015}, {"d": "KS House District 19", "rep": "Stephanie Sawyer-Clayton", "w": 0.015}, {"d": "KS House District 16", "rep": "Linda Featherston", "w": 0.015}, {"d": "KS House District 108", "rep": "Brandon Woodard", "w": 0.014}, {"d": "KS House District 49", "rep": "Nikki McDonald", "w": 0.013}, {"d": "KS House District 23", "rep": "Susan Ruiz", "w": 0.013}, {"d": "KS House District 21", "rep": "Jerry Stogsdill", "w": 0.012}, {"d": "KS House District 48", "rep": "Dan Osman", "w": 0.012}, {"d": "KS House District 78", "rep": "Robyn Essex", "w": 0.01}, {"d": "KS House District 22", "rep": "Lindsay Vaughn", "w": 0.01}], "ss": [{"d": "KS Senate District 37", "rep": "Doug Shane", "w": 0.227}, {"d": "KS Senate District 9", "rep": "Beverly Gossage", "w": 0.171}, {"d": "KS Senate District 10", "rep": "Mike Thompson", "w": 0.118}, {"d": "KS Senate District 23", "rep": "Adam Thomas", "w": 0.114}, {"d": "KS Senate District 11", "rep": "Kellie Warren", "w": 0.109}, {"d": "KS Senate District 35", "rep": "T.J. Rose", "w": 0.104}, {"d": "KS Senate District 21", "rep": "Dinah Sykes", "w": 0.06}, {"d": "KS Senate District 8", "rep": "Cindy Holscher", "w": 0.047}, {"d": "KS Senate District 7", "rep": "Ethan Corson", "w": 0.044}, {"d": "KS Senate District 6", "rep": "Pat Pettey", "w": 0.006}]}, "munis": [{"m": "Gardner", "p": [{"n": "Steve Shute", "r": "Mayor, Gardner, KS"}]}, {"m": "Lenexa", "p": [{"n": "Julie Sayers", "r": "Mayor, Lenexa, KS"}]}, {"m": "Olathe", "p": [{"n": "John Bacon", "r": "Mayor, Olathe, KS"}]}, {"m": "Overland Park", "p": [{"n": "Carl R. Gerlach", "r": "Mayor, Overland Park, KS"}]}], "slug": "johnson"}, "20093": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 122", "rep": "Lon Pishny", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "kearny"}, "20095": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 114", "rep": "Kevin Schwertfeger", "w": 1.0}], "ss": [{"d": "KS Senate District 34", "rep": "Mike Murphy", "w": 1.0}]}, "munis": [], "slug": "kingman"}, "20097": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 116", "rep": "Kyle Hoffman", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [{"m": "Greensburg", "p": [{"n": "Matt Christenson", "r": "Mayor, Greensburg, KS"}]}], "slug": "kiowa"}, "20099": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 7", "rep": "Dan Goddard", "w": 0.743}, {"d": "KS House District 1", "rep": "Dale Helwig", "w": 0.257}], "ss": [{"d": "KS Senate District 15", "rep": "Virgil Peck", "w": 1.0}]}, "munis": [{"m": "Parsons", "p": [{"n": "Eric Strait", "r": "Mayor, Parsons, KS"}]}], "slug": "labette"}, "20101": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "lane"}, "20103": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.997}], "sh": [{"d": "KS House District 42", "rep": "Lance Neelly", "w": 0.471}, {"d": "KS House District 38", "rep": "Tim Johnson", "w": 0.295}, {"d": "KS House District 41", "rep": "Pat Proctor", "w": 0.139}, {"d": "KS House District 40", "rep": "Dave Buehler", "w": 0.095}], "ss": [{"d": "KS Senate District 9", "rep": "Beverly Gossage", "w": 0.429}, {"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 0.389}, {"d": "KS Senate District 5", "rep": "Jeff Klemp", "w": 0.181}]}, "munis": [{"m": "Lansing", "p": [{"n": "Tony McNeill", "r": "Mayor, Lansing, KS"}]}, {"m": "Leavenworth", "p": [{"n": "Griff Martin", "r": "Mayor, Leavenworth, KS"}]}], "slug": "leavenworth"}, "20105": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 109", "rep": "Troy Waymaster", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "20107": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 4", "rep": "Rick James", "w": 0.894}, {"d": "KS House District 9", "rep": "Fred Gardner", "w": 0.106}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 1.0}]}, "munis": [], "slug": "linn"}, "20109": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "logan"}, "20111": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 76", "rep": "Brad Barrett", "w": 0.668}, {"d": "KS House District 13", "rep": "Duane Droge", "w": 0.189}, {"d": "KS House District 60", "rep": "Mark Schreiber", "w": 0.143}], "ss": [{"d": "KS Senate District 17", "rep": "Mike Argabright", "w": 1.0}]}, "munis": [{"m": "Emporia", "p": [{"n": "Erren Harter", "r": "Mayor, Emporia, KS"}]}], "slug": "lyon"}, "20113": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 73", "rep": "Rick Wilborn", "w": 0.641}, {"d": "KS House District 74", "rep": "Mike King", "w": 0.199}, {"d": "KS House District 70", "rep": "Greg Wilson", "w": 0.08}, {"d": "KS House District 104", "rep": "Paul Waggoner", "w": 0.08}], "ss": [{"d": "KS Senate District 14", "rep": "Mike Fagg", "w": 1.0}]}, "munis": [], "slug": "mcpherson"}, "20115": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 70", "rep": "Greg Wilson", "w": 0.661}, {"d": "KS House District 74", "rep": "Mike King", "w": 0.339}], "ss": [{"d": "KS Senate District 14", "rep": "Mike Fagg", "w": 1.0}]}, "munis": [], "slug": "marion"}, "20117": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 106", "rep": "Lisa Moser", "w": 1.0}], "ss": [{"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 0.762}, {"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 0.237}]}, "munis": [], "slug": "marshall"}, "20119": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 115", "rep": "Gary White", "w": 0.743}, {"d": "KS House District 125", "rep": "Shannon Francis", "w": 0.257}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "meade"}, "20121": {"county": [], "districts": {"cd": [{"d": "KS-03", "rep": "Sharice Davids", "w": 0.999}], "sh": [{"d": "KS House District 6", "rep": "Samantha Poetter Parshall", "w": 0.494}, {"d": "KS House District 5", "rep": "Courtney Sappington", "w": 0.264}, {"d": "KS House District 9", "rep": "Fred Gardner", "w": 0.24}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 0.572}, {"d": "KS Senate District 37", "rep": "Doug Shane", "w": 0.415}, {"d": "KS Senate District 23", "rep": "Adam Thomas", "w": 0.012}]}, "munis": [], "slug": "miami"}, "20123": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 107", "rep": "Dawn Wolf", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "mitchell"}, "20125": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 11", "rep": "Ron Bryce", "w": 0.556}, {"d": "KS House District 12", "rep": "Doug Blex", "w": 0.444}], "ss": [{"d": "KS Senate District 15", "rep": "Virgil Peck", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "20127": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 68", "rep": "Nate Butler", "w": 1.0}], "ss": [{"d": "KS Senate District 17", "rep": "Mike Argabright", "w": 1.0}]}, "munis": [{"m": "Council Grove", "p": [{"n": "Debi Schwerdtfeger", "r": "Mayor, Council Grove, KS"}]}], "slug": "morris"}, "20129": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 124", "rep": "Marty Long", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "morton"}, "20131": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.999}], "sh": [{"d": "KS House District 62", "rep": "Sean Willcott", "w": 1.0}], "ss": [{"d": "KS Senate District 1", "rep": "Craig Bowser", "w": 1.0}]}, "munis": [{"m": "Bern", "p": [{"n": "Ralph Schiffbauer", "r": "Mayor, Bern, KS"}]}], "slug": "nemaha"}, "20133": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 2", "rep": "Ken Collins", "w": 0.751}, {"d": "KS House District 7", "rep": "Dan Goddard", "w": 0.249}], "ss": [{"d": "KS Senate District 15", "rep": "Virgil Peck", "w": 1.0}]}, "munis": [], "slug": "neosho"}, "20135": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "ness"}, "20137": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 110", "rep": "Ken Rahjes", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "norton"}, "20139": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 76", "rep": "Brad Barrett", "w": 0.592}, {"d": "KS House District 54", "rep": "Ken Corbet", "w": 0.408}], "ss": [{"d": "KS Senate District 3", "rep": "Rick Kloos", "w": 1.0}]}, "munis": [], "slug": "osage"}, "20141": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 109", "rep": "Troy Waymaster", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "osborne"}, "20143": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 107", "rep": "Dawn Wolf", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "ottawa"}, "20145": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 0.535}, {"d": "KS-01", "rep": "Tracey Mann", "w": 0.465}], "sh": [{"d": "KS House District 113", "rep": "Brett Fairchild", "w": 0.526}, {"d": "KS House District 122", "rep": "Lon Pishny", "w": 0.474}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "pawnee"}, "20147": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 110", "rep": "Ken Rahjes", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 0.6}, {"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 0.4}]}, "munis": [], "slug": "phillips"}, "20149": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 0.998}], "sh": [{"d": "KS House District 61", "rep": "Francis Awerkamp", "w": 0.953}, {"d": "KS House District 51", "rep": "Megan Steele", "w": 0.047}], "ss": [{"d": "KS Senate District 18", "rep": "Kenny Titus", "w": 1.0}]}, "munis": [], "slug": "pottawatomie"}, "20151": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 116", "rep": "Kyle Hoffman", "w": 0.525}, {"d": "KS House District 114", "rep": "Kevin Schwertfeger", "w": 0.475}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "pratt"}, "20153": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 120", "rep": "Adam Smith", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "rawlins"}, "20155": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 114", "rep": "Kevin Schwertfeger", "w": 0.742}, {"d": "KS House District 101", "rep": "Joe Seiwert", "w": 0.174}, {"d": "KS House District 104", "rep": "Paul Waggoner", "w": 0.071}, {"d": "KS House District 102", "rep": "Kyler Sweely", "w": 0.013}], "ss": [{"d": "KS Senate District 34", "rep": "Mike Murphy", "w": 1.0}]}, "munis": [], "slug": "reno"}, "20157": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 106", "rep": "Lisa Moser", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "republic"}, "20159": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 113", "rep": "Brett Fairchild", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "rice"}, "20161": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 64", "rep": "Bill Bloom", "w": 0.736}, {"d": "KS House District 51", "rep": "Megan Steele", "w": 0.118}, {"d": "KS House District 68", "rep": "Nate Butler", "w": 0.102}, {"d": "KS House District 67", "rep": "Angel Roeser", "w": 0.029}, {"d": "KS House District 66", "rep": "Sydney Carlin", "w": 0.01}], "ss": [{"d": "KS Senate District 22", "rep": "Brad Starnes", "w": 1.0}]}, "munis": [{"m": "Manhattan", "p": [{"n": "Mark Hatesohl", "r": "Mayor, Manhattan, KS"}]}], "slug": "riley"}, "20163": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 110", "rep": "Ken Rahjes", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "rooks"}, "20165": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 113", "rep": "Brett Fairchild", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [{"m": "Liebenthal", "p": [{"n": "Darrell Warner", "r": "Mayor, Liebenthal, KS"}]}], "slug": "rush"}, "20167": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 109", "rep": "Troy Waymaster", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "russell"}, "20169": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 69", "rep": "Clarke Sanders", "w": 0.535}, {"d": "KS House District 107", "rep": "Dawn Wolf", "w": 0.251}, {"d": "KS House District 71", "rep": "Steve Howe", "w": 0.214}], "ss": [{"d": "KS Senate District 24", "rep": "Scott Hill", "w": 1.0}]}, "munis": [], "slug": "saline"}, "20171": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "scott"}, "20173": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 93", "rep": "Brian Bergkamp", "w": 0.292}, {"d": "KS House District 101", "rep": "Joe Seiwert", "w": 0.166}, {"d": "KS House District 90", "rep": "Steve Huebert", "w": 0.161}, {"d": "KS House District 91", "rep": "Emil Bergquist", "w": 0.043}, {"d": "KS House District 85", "rep": "Steve Brunk", "w": 0.041}, {"d": "KS House District 81", "rep": "Blake Carpenter", "w": 0.041}, {"d": "KS House District 82", "rep": "Leah Howell", "w": 0.038}, {"d": "KS House District 72", "rep": "Avery Anderson", "w": 0.036}, {"d": "KS House District 97", "rep": "Nick Hoheisel", "w": 0.031}, {"d": "KS House District 98", "rep": "Cyndi Howerton", "w": 0.021}, {"d": "KS House District 87", "rep": "Susan Estes", "w": 0.014}, {"d": "KS House District 94", "rep": "Leo Delperdang", "w": 0.013}, {"d": "KS House District 89", "rep": "K.C. Ohaebosim", "w": 0.013}, {"d": "KS House District 88", "rep": "Sandy Pickert", "w": 0.012}, {"d": "KS House District 105", "rep": "Jill Ward", "w": 0.01}, {"d": "KS House District 103", "rep": "Angela Martinez", "w": 0.01}, {"d": "KS House District 95", "rep": "Tom Sawyer", "w": 0.009}, {"d": "KS House District 96", "rep": "Tom Kessler", "w": 0.008}, {"d": "KS House District 99", "rep": "Susan Humphries", "w": 0.008}, {"d": "KS House District 92", "rep": "John Carmichael", "w": 0.007}, {"d": "KS House District 100", "rep": "Dan Hawkins", "w": 0.007}, {"d": "KS House District 84", "rep": "Ford Carr", "w": 0.006}, {"d": "KS House District 86", "rep": "Abi Boatman", "w": 0.006}, {"d": "KS House District 83", "rep": "Henry Helgerson", "w": 0.005}], "ss": [{"d": "KS Senate District 26", "rep": "Chase Blasi", "w": 0.476}, {"d": "KS Senate District 31", "rep": "Stephen Owens", "w": 0.194}, {"d": "KS Senate District 30", "rep": "Renee Erickson", "w": 0.114}, {"d": "KS Senate District 16", "rep": "Ty Masterson", "w": 0.093}, {"d": "KS Senate District 28", "rep": "Mike Petersen", "w": 0.044}, {"d": "KS Senate District 27", "rep": "Joe Claeys", "w": 0.036}, {"d": "KS Senate District 29", "rep": "Oletha Faust-Goudeau", "w": 0.022}, {"d": "KS Senate District 25", "rep": "Silas Miller", "w": 0.021}]}, "munis": [{"m": "Wichita", "p": [{"n": "Lily Wu", "r": "Mayor, Wichita, KS"}]}], "slug": "sedgwick"}, "20175": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 125", "rep": "Shannon Francis", "w": 1.0}], "ss": [{"d": "KS Senate District 38", "rep": "Ron Ryckman", "w": 1.0}]}, "munis": [], "slug": "seward"}, "20177": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 54", "rep": "Ken Corbet", "w": 0.427}, {"d": "KS House District 50", "rep": "Kyle McNorton", "w": 0.38}, {"d": "KS House District 52", "rep": "Jesse Borjon", "w": 0.06}, {"d": "KS House District 56", "rep": "Virgil Weigel", "w": 0.04}, {"d": "KS House District 57", "rep": "John Alcala", "w": 0.035}, {"d": "KS House District 58", "rep": "Alexis Simmons", "w": 0.025}, {"d": "KS House District 53", "rep": "Kirk Haskins", "w": 0.02}, {"d": "KS House District 55", "rep": "Tobias Schlingensiepen", "w": 0.012}], "ss": [{"d": "KS Senate District 18", "rep": "Kenny Titus", "w": 0.446}, {"d": "KS Senate District 20", "rep": "Brenda Dietrich", "w": 0.311}, {"d": "KS Senate District 3", "rep": "Rick Kloos", "w": 0.163}, {"d": "KS Senate District 19", "rep": "Patrick Schmidt", "w": 0.08}]}, "munis": [{"m": "Topeka", "p": [{"n": "Spencer L. Duncan", "r": "Mayor, Topeka, KS"}]}], "slug": "shawnee"}, "20179": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "sheridan"}, "20181": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 120", "rep": "Adam Smith", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "sherman"}, "20183": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 109", "rep": "Troy Waymaster", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "smith"}, "20185": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 113", "rep": "Brett Fairchild", "w": 1.0}], "ss": [{"d": "KS Senate District 33", "rep": "Tory Marie Blew", "w": 1.0}]}, "munis": [], "slug": "stafford"}, "20187": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 124", "rep": "Marty Long", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "stanton"}, "20189": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 124", "rep": "Marty Long", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "stevens"}, "20191": {"county": [], "districts": {"cd": [{"d": "KS-04", "rep": "Ron Estes", "w": 1.0}], "sh": [{"d": "KS House District 79", "rep": "Web Roth", "w": 0.383}, {"d": "KS House District 80", "rep": "Bill Rhiley", "w": 0.324}, {"d": "KS House District 116", "rep": "Kyle Hoffman", "w": 0.283}, {"d": "KS House District 82", "rep": "Leah Howell", "w": 0.009}], "ss": [{"d": "KS Senate District 32", "rep": "Larry Alley", "w": 0.997}]}, "munis": [], "slug": "sumner"}, "20193": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 120", "rep": "Adam Smith", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "thomas"}, "20195": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "trego"}, "20197": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.998}], "sh": [{"d": "KS House District 51", "rep": "Megan Steele", "w": 1.0}], "ss": [{"d": "KS Senate District 20", "rep": "Brenda Dietrich", "w": 1.0}]}, "munis": [], "slug": "wabaunsee"}, "20199": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 120", "rep": "Adam Smith", "w": 1.0}], "ss": [{"d": "KS Senate District 40", "rep": "Rick Billinger", "w": 1.0}]}, "munis": [], "slug": "wallace"}, "20201": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 106", "rep": "Lisa Moser", "w": 1.0}], "ss": [{"d": "KS Senate District 36", "rep": "Elaine Bowers", "w": 1.0}]}, "munis": [], "slug": "washington"}, "20203": {"county": [], "districts": {"cd": [{"d": "KS-01", "rep": "Tracey Mann", "w": 1.0}], "sh": [{"d": "KS House District 118", "rep": "Jim Minnix", "w": 1.0}], "ss": [{"d": "KS Senate District 39", "rep": "Bill Clifford", "w": 1.0}]}, "munis": [], "slug": "wichita"}, "20205": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.999}], "sh": [{"d": "KS House District 13", "rep": "Duane Droge", "w": 1.0}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 1.0}]}, "munis": [], "slug": "wilson"}, "20207": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 1.0}], "sh": [{"d": "KS House District 13", "rep": "Duane Droge", "w": 1.0}], "ss": [{"d": "KS Senate District 12", "rep": "Caryn Tyson", "w": 1.0}]}, "munis": [], "slug": "woodson"}, "20209": {"county": [], "districts": {"cd": [{"d": "KS-02", "rep": "Derek Schmidt", "w": 0.598}, {"d": "KS-03", "rep": "Sharice Davids", "w": 0.399}], "sh": [{"d": "KS House District 33", "rep": "Carolyn Caiharr", "w": 0.291}, {"d": "KS House District 36", "rep": "Lynn Melton", "w": 0.199}, {"d": "KS House District 37", "rep": "Melissa Oropeza", "w": 0.176}, {"d": "KS House District 35", "rep": "Wanda Paige", "w": 0.12}, {"d": "KS House District 38", "rep": "Tim Johnson", "w": 0.08}, {"d": "KS House District 31", "rep": "Louis Ruiz", "w": 0.055}, {"d": "KS House District 34", "rep": "Val Winn", "w": 0.045}, {"d": "KS House District 32", "rep": "Pam Curtis", "w": 0.034}], "ss": [{"d": "KS Senate District 6", "rep": "Pat Pettey", "w": 0.304}, {"d": "KS Senate District 5", "rep": "Jeff Klemp", "w": 0.265}, {"d": "KS Senate District 4", "rep": "David Haley", "w": 0.254}, {"d": "KS Senate District 9", "rep": "Beverly Gossage", "w": 0.175}]}, "munis": [{"m": "Kansas City", "p": [{"n": "Tyrone Garner", "r": "Mayor, Kansas City, KS"}]}], "slug": "wyandotte"}, "21001": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 21", "rep": "Amy Neighbors", "w": 1.0}], "ss": [{"d": "KY Senate District 16", "rep": "Max Wise", "w": 1.0}]}, "munis": [{"m": "Columbia", "p": [{"n": "Pamela Hoots", "r": "Mayor, Columbia, KY"}]}], "slug": "adair"}, "21003": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.992}, {"d": "KY-02", "rep": "Brett Guthrie", "w": 0.007}], "sh": [{"d": "KY House District 22", "rep": "Shawn McPherson", "w": 1.0}], "ss": [{"d": "KY Senate District 16", "rep": "Max Wise", "w": 1.0}]}, "munis": [], "slug": "allen"}, "21005": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.515}, {"d": "KY-01", "rep": "James Comer", "w": 0.483}], "sh": [{"d": "KY House District 53", "rep": "James Tipton", "w": 0.999}], "ss": [{"d": "KY Senate District 7", "rep": "Aaron Reed", "w": 0.999}]}, "munis": [{"m": "Lawrenceburg", "p": [{"n": "Troy Young", "r": "Mayor, Lawrenceburg, KY"}]}], "slug": "anderson"}, "21007": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.998}], "sh": [{"d": "KY House District 1", "rep": "Steven Rudy", "w": 0.999}], "ss": [{"d": "KY Senate District 2", "rep": "Danny Carroll", "w": 0.999}]}, "munis": [], "slug": "ballard"}, "21009": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.997}], "sh": [{"d": "KY House District 23", "rep": "Steve Riley", "w": 1.0}], "ss": [{"d": "KY Senate District 9", "rep": "David Givens", "w": 1.0}]}, "munis": [{"m": "Glasgow", "p": [{"n": "Henry Royse", "r": "Mayor, Glasgow, KY"}]}], "slug": "barren"}, "21011": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.542}, {"d": "KY-06", "rep": "Andy Barr", "w": 0.458}], "sh": [{"d": "KY House District 74", "rep": "David Hale", "w": 0.999}], "ss": [{"d": "KY Senate District 28", "rep": "Greg Elkins", "w": 0.999}]}, "munis": [], "slug": "bath"}, "21013": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 87", "rep": "Adam Bowling", "w": 0.999}], "ss": [{"d": "KY Senate District 29", "rep": "Scott Madon", "w": 0.999}]}, "munis": [{"m": "Middlesborough", "p": [{"n": "Boone Bowling", "r": "Mayor, Middlesboro, KY"}]}], "slug": "bell"}, "21015": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 66", "rep": "T.J. Roberts", "w": 0.464}, {"d": "KY House District 60", "rep": "Marianne Proctor", "w": 0.217}, {"d": "KY House District 61", "rep": "Savannah Maddox", "w": 0.18}, {"d": "KY House District 63", "rep": "Kim Banta", "w": 0.074}, {"d": "KY House District 78", "rep": "Mark Hart", "w": 0.044}, {"d": "KY House District 69", "rep": "Steven Doan", "w": 0.022}], "ss": [{"d": "KY Senate District 11", "rep": "Steve Rawlings", "w": 0.672}, {"d": "KY Senate District 20", "rep": "Gex Williams", "w": 0.327}]}, "munis": [{"m": "Florence", "p": [{"n": "Julie Metzger Aubuchon", "r": "Mayor, Florence, KY"}]}, {"m": "Union", "p": [{"n": "Larry Solomon", "r": "Mayor, Union, KY"}]}], "slug": "boone"}, "21017": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.999}], "sh": [{"d": "KY House District 72", "rep": "Matt Koch", "w": 1.0}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 1.0}]}, "munis": [{"m": "Paris", "p": [{"n": "John A. Plummer", "r": "Mayor, Paris, KY"}]}], "slug": "bourbon"}, "21019": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.998}], "sh": [{"d": "KY House District 100", "rep": "Scott Sharp", "w": 0.562}, {"d": "KY House District 96", "rep": "Patrick Flannery", "w": 0.357}, {"d": "KY House District 98", "rep": "Aaron Thompson", "w": 0.081}], "ss": [{"d": "KY Senate District 18", "rep": "Robin Webb", "w": 0.999}]}, "munis": [{"m": "Ashland", "p": [{"n": "Matt Perkins", "r": "Mayor, Ashland, KY"}]}], "slug": "boyd"}, "21021": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.99}, {"d": "KY-06", "rep": "Andy Barr", "w": 0.006}], "sh": [{"d": "KY House District 54", "rep": "Daniel Elliott", "w": 1.0}], "ss": [{"d": "KY Senate District 12", "rep": "Amanda Bledsoe", "w": 0.999}]}, "munis": [{"m": "Danville", "p": [{"n": "Q132194982", "r": "Mayor, Danville, KY"}]}, {"m": "Perryville", "p": [{"n": "Rob Kernodle", "r": "Mayor, Perryville, KY"}]}], "slug": "boyle"}, "21023": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 1.0}], "sh": [{"d": "KY House District 70", "rep": "William Lawrence", "w": 0.999}], "ss": [{"d": "KY Senate District 24", "rep": "Shelley Frommeyer", "w": 0.999}]}, "munis": [], "slug": "bracken"}, "21025": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 84", "rep": "Chris Fugate", "w": 1.0}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "breathitt"}, "21027": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 10", "rep": "Josh Calloway", "w": 0.999}], "ss": [{"d": "KY Senate District 5", "rep": "Steve Meredith", "w": 1.0}]}, "munis": [{"m": "Hardinsburg", "p": [{"n": "Wayne Macy", "r": "Mayor, Hardinsburg, KY"}]}], "slug": "breckinridge"}, "21029": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.998}], "sh": [{"d": "KY House District 49", "rep": "Thomas Huff", "w": 0.545}, {"d": "KY House District 26", "rep": "Peyton Griffee", "w": 0.452}], "ss": [{"d": "KY Senate District 38", "rep": "Mike Nemes", "w": 1.0}]}, "munis": [{"m": "Mount Washington", "p": [{"n": "Stuart Owen", "r": "Mayor, Mount Washington, KY"}]}], "slug": "bullitt"}, "21031": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 15", "rep": "Rebecca Raymer", "w": 1.0}], "ss": [{"d": "KY Senate District 5", "rep": "Steve Meredith", "w": 1.0}]}, "munis": [], "slug": "butler"}, "21033": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 8", "rep": "Walker Thomas", "w": 0.999}], "ss": [{"d": "KY Senate District 3", "rep": "Craig Richardson", "w": 0.999}]}, "munis": [], "slug": "caldwell"}, "21035": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 5", "rep": "Mary Beth Imes", "w": 1.0}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 1.0}]}, "munis": [{"m": "Murray", "p": [{"n": "Bob Rogers", "r": "Mayor, Murray, KY"}]}], "slug": "calloway"}, "21037": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 68", "rep": "Mike Clines", "w": 0.646}, {"d": "KY House District 78", "rep": "Mark Hart", "w": 0.224}, {"d": "KY House District 67", "rep": "Matt Lehman", "w": 0.129}], "ss": [{"d": "KY Senate District 24", "rep": "Shelley Frommeyer", "w": 0.999}]}, "munis": [{"m": "Alexandria", "p": [{"n": "Andy Schabell", "r": "Mayor, Alexandria, KY"}]}, {"m": "Fort Thomas", "p": [{"n": "Eric Haas", "r": "Mayor, Fort Thomas, KY"}]}], "slug": "campbell"}, "21039": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 1", "rep": "Steven Rudy", "w": 0.999}], "ss": [{"d": "KY Senate District 2", "rep": "Danny Carroll", "w": 0.999}]}, "munis": [], "slug": "carlisle"}, "21041": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 47", "rep": "Felicia Rabourn", "w": 0.999}], "ss": [{"d": "KY Senate District 20", "rep": "Gex Williams", "w": 0.999}]}, "munis": [{"m": "Ghent", "p": [{"n": "Jimmy Lewellyn", "r": "Mayor, Ghent, KY"}]}], "slug": "carroll"}, "21043": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.745}, {"d": "KY-04", "rep": "Thomas Massie", "w": 0.255}], "sh": [{"d": "KY House District 96", "rep": "Patrick Flannery", "w": 0.999}], "ss": [{"d": "KY Senate District 18", "rep": "Robin Webb", "w": 1.0}]}, "munis": [{"m": "Olive Hill", "p": [{"n": "Jerry Callihan", "r": "Mayor, Olive Hill, KY"}]}], "slug": "carter"}, "21045": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 54", "rep": "Daniel Elliott", "w": 1.0}], "ss": [{"d": "KY Senate District 21", "rep": "Brandon Storm", "w": 1.0}]}, "munis": [], "slug": "casey"}, "21047": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 8", "rep": "Walker Thomas", "w": 0.412}, {"d": "KY House District 9", "rep": "Myron Dossett", "w": 0.323}, {"d": "KY House District 16", "rep": "Jason Petrie", "w": 0.265}], "ss": [{"d": "KY Senate District 3", "rep": "Craig Richardson", "w": 1.0}]}, "munis": [{"m": "Hopkinsville", "p": [{"n": "James R. Knight, Jr.", "r": "Mayor, Hopkinsville, KY"}]}], "slug": "christian"}, "21049": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 1.0}], "sh": [{"d": "KY House District 73", "rep": "Ryan Dotson", "w": 0.999}], "ss": [{"d": "KY Senate District 28", "rep": "Greg Elkins", "w": 1.0}]}, "munis": [{"m": "Winchester", "p": [{"n": "JoEllen Reed", "r": "Mayor, Winchester, KY"}]}], "slug": "clark"}, "21051": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 90", "rep": "Derek Lewis", "w": 1.0}], "ss": [{"d": "KY Senate District 25", "rep": "Robert Stivers", "w": 1.0}]}, "munis": [], "slug": "clay"}, "21053": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.996}], "sh": [{"d": "KY House District 83", "rep": "Josh Branscum", "w": 1.0}], "ss": [{"d": "KY Senate District 15", "rep": "Rick Girdler", "w": 1.0}]}, "munis": [], "slug": "clinton"}, "21055": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 12", "rep": "Jim Gooch", "w": 0.999}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 0.999}]}, "munis": [], "slug": "crittenden"}, "21057": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 21", "rep": "Amy Neighbors", "w": 0.999}], "ss": [{"d": "KY Senate District 15", "rep": "Rick Girdler", "w": 1.0}]}, "munis": [], "slug": "cumberland"}, "21059": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.999}], "sh": [{"d": "KY House District 7", "rep": "Suzanne Miles", "w": 0.481}, {"d": "KY House District 14", "rep": "Scott Lewis", "w": 0.399}, {"d": "KY House District 13", "rep": "D.J. Johnson", "w": 0.119}], "ss": [{"d": "KY Senate District 8", "rep": "Gary Boswell", "w": 1.0}]}, "munis": [{"m": "Owensboro", "p": [{"n": "Tom Watson", "r": "Mayor, Owensboro, KY"}]}], "slug": "daviess"}, "21061": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 19", "rep": "Michael Meredith", "w": 0.999}], "ss": [{"d": "KY Senate District 9", "rep": "David Givens", "w": 0.999}]}, "munis": [], "slug": "edmonson"}, "21063": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 99", "rep": "Richard White", "w": 0.999}], "ss": [{"d": "KY Senate District 31", "rep": "Phillip Wheeler", "w": 0.999}]}, "munis": [], "slug": "elliott"}, "21065": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.998}], "sh": [{"d": "KY House District 91", "rep": "Bill Wesley", "w": 1.0}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "estill"}, "21067": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 1.0}], "sh": [{"d": "KY House District 88", "rep": "Vanessa Grossl", "w": 0.427}, {"d": "KY House District 73", "rep": "Ryan Dotson", "w": 0.226}, {"d": "KY House District 45", "rep": "Adam Moore", "w": 0.112}, {"d": "KY House District 77", "rep": "George Brown", "w": 0.059}, {"d": "KY House District 76", "rep": "Anne Donworth", "w": 0.051}, {"d": "KY House District 93", "rep": "Adrielle Camuel", "w": 0.039}, {"d": "KY House District 75", "rep": "Lindsey Burke", "w": 0.038}, {"d": "KY House District 79", "rep": "Chad Aull", "w": 0.037}, {"d": "KY House District 39", "rep": "Matt Lockett", "w": 0.01}], "ss": [{"d": "KY Senate District 28", "rep": "Greg Elkins", "w": 0.28}, {"d": "KY Senate District 27", "rep": "Steve West", "w": 0.222}, {"d": "KY Senate District 34", "rep": "Jared Carpenter", "w": 0.163}, {"d": "KY Senate District 17", "rep": "Matt Nunn", "w": 0.118}, {"d": "KY Senate District 13", "rep": "Reggie Thomas", "w": 0.097}, {"d": "KY Senate District 12", "rep": "Amanda Bledsoe", "w": 0.088}, {"d": "KY Senate District 22", "rep": "Don Douglas", "w": 0.032}]}, "munis": [{"m": "Lexington Fayette", "p": [{"n": "Linda Gorton", "r": "Mayor, Lexington, KY"}]}], "slug": "fayette"}, "21069": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.99}, {"d": "KY-05", "rep": "Harold Rogers", "w": 0.007}], "sh": [{"d": "KY House District 72", "rep": "Matt Koch", "w": 0.999}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 1.0}]}, "munis": [], "slug": "fleming"}, "21071": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 95", "rep": "Ashley Laferty", "w": 0.999}], "ss": [{"d": "KY Senate District 29", "rep": "Scott Madon", "w": 0.999}]}, "munis": [{"m": "Allen", "p": [{"n": "Ernestine Hall", "r": "Mayor, Allen, KY"}]}], "slug": "floyd"}, "21073": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.997}], "sh": [{"d": "KY House District 57", "rep": "Erika Hancock", "w": 0.608}, {"d": "KY House District 56", "rep": "Dan Fister", "w": 0.392}], "ss": [{"d": "KY Senate District 20", "rep": "Gex Williams", "w": 1.0}]}, "munis": [{"m": "Frankfort", "p": [{"n": "Layne Wilkerson", "r": "Mayor, Frankfort, KY"}]}], "slug": "franklin"}, "21075": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.998}], "sh": [{"d": "KY House District 1", "rep": "Steven Rudy", "w": 0.998}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 0.998}]}, "munis": [{"m": "Hickman", "p": [{"n": "Heath Carlton", "r": "Mayor, Hickman, KY"}]}], "slug": "fulton"}, "21077": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 61", "rep": "Savannah Maddox", "w": 0.999}], "ss": [{"d": "KY Senate District 20", "rep": "Gex Williams", "w": 1.0}]}, "munis": [], "slug": "gallatin"}, "21079": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.995}], "sh": [{"d": "KY House District 80", "rep": "David Meade", "w": 0.999}], "ss": [{"d": "KY Senate District 22", "rep": "Don Douglas", "w": 0.999}]}, "munis": [], "slug": "garrard"}, "21081": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 1.0}], "sh": [{"d": "KY House District 61", "rep": "Savannah Maddox", "w": 1.0}], "ss": [{"d": "KY Senate District 17", "rep": "Matt Nunn", "w": 1.0}]}, "munis": [], "slug": "grant"}, "21083": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 2", "rep": "Kim Holloway", "w": 1.0}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 1.0}]}, "munis": [{"m": "Mayfield", "p": [{"n": "Kathy Stewart O'Nan", "r": "Mayor, Mayfield, KY"}]}], "slug": "graves"}, "21085": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 18", "rep": "Samara Heavrin", "w": 1.0}], "ss": [{"d": "KY Senate District 5", "rep": "Steve Meredith", "w": 1.0}]}, "munis": [], "slug": "grayson"}, "21087": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.997}], "sh": [{"d": "KY House District 24", "rep": "Ryan Bivens", "w": 0.999}], "ss": [{"d": "KY Senate District 9", "rep": "David Givens", "w": 0.999}]}, "munis": [{"m": "Greensburg", "p": [{"n": "John Michael Shuffett", "r": "Mayor, Greensburg, KY"}]}], "slug": "green"}, "21089": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 98", "rep": "Aaron Thompson", "w": 0.999}], "ss": [{"d": "KY Senate District 18", "rep": "Robin Webb", "w": 0.999}]}, "munis": [{"m": "Flatwoods", "p": [{"n": "Buford Hurley II", "r": "Mayor, Flatwoods, KY"}]}], "slug": "greenup"}, "21091": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.999}], "sh": [{"d": "KY House District 14", "rep": "Scott Lewis", "w": 0.999}], "ss": [{"d": "KY Senate District 8", "rep": "Gary Boswell", "w": 0.999}]}, "munis": [], "slug": "hancock"}, "21093": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 18", "rep": "Samara Heavrin", "w": 0.416}, {"d": "KY House District 10", "rep": "Josh Calloway", "w": 0.248}, {"d": "KY House District 25", "rep": "Steve Bratcher", "w": 0.166}, {"d": "KY House District 26", "rep": "Peyton Griffee", "w": 0.155}, {"d": "KY House District 27", "rep": "Nancy Tate", "w": 0.015}], "ss": [{"d": "KY Senate District 10", "rep": "Matt Deneen", "w": 1.0}]}, "munis": [{"m": "Elizabethtown", "p": [{"n": "Jeff Gregory", "r": "Mayor, Elizabethtown, KY"}]}, {"m": "Radcliff", "p": [{"n": "JJ Duvall", "r": "Mayor, Radcliff, KY"}]}], "slug": "hardin"}, "21095": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.999}], "sh": [{"d": "KY House District 87", "rep": "Adam Bowling", "w": 0.715}, {"d": "KY House District 94", "rep": "Mitch Whitaker", "w": 0.284}], "ss": [{"d": "KY Senate District 29", "rep": "Scott Madon", "w": 0.999}]}, "munis": [], "slug": "harlan"}, "21097": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.995}, {"d": "KY-06", "rep": "Andy Barr", "w": 0.005}], "sh": [{"d": "KY House District 70", "rep": "William Lawrence", "w": 0.999}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 1.0}]}, "munis": [{"m": "Cynthiana", "p": [{"n": "Isaac T. Dailey", "r": "Mayor, Cynthiana, KY"}]}], "slug": "harrison"}, "21099": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 24", "rep": "Ryan Bivens", "w": 1.0}], "ss": [{"d": "KY Senate District 9", "rep": "David Givens", "w": 1.0}]}, "munis": [], "slug": "hart"}, "21101": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.997}], "sh": [{"d": "KY House District 11", "rep": "J.T. Payne", "w": 0.999}], "ss": [{"d": "KY Senate District 4", "rep": "Robby Mills", "w": 0.999}]}, "munis": [{"m": "Henderson", "p": [{"n": "Brad Staton", "r": "Mayor, Henderson, KY"}]}], "slug": "henderson"}, "21103": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 47", "rep": "Felicia Rabourn", "w": 1.0}], "ss": [{"d": "KY Senate District 7", "rep": "Aaron Reed", "w": 1.0}]}, "munis": [], "slug": "henry"}, "21105": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 1", "rep": "Steven Rudy", "w": 1.0}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 0.999}]}, "munis": [], "slug": "hickman"}, "21107": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.996}], "sh": [{"d": "KY House District 4", "rep": "Wade Williams", "w": 0.999}], "ss": [{"d": "KY Senate District 4", "rep": "Robby Mills", "w": 0.999}]}, "munis": [{"m": "Madisonville", "p": [{"n": "Kevin Cotton", "r": "Mayor, Madisonville, KY"}]}], "slug": "hopkins"}, "21109": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 89", "rep": "Timmy Truett", "w": 1.0}], "ss": [{"d": "KY Senate District 25", "rep": "Robert Stivers", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "21111": {"county": [], "districts": {"cd": [{"d": "KY-03", "rep": "Morgan McGarvey", "w": 0.812}, {"d": "KY-02", "rep": "Brett Guthrie", "w": 0.187}], "sh": [{"d": "KY House District 36", "rep": "John Hodgson", "w": 0.157}, {"d": "KY House District 29", "rep": "Chris Lewis", "w": 0.118}, {"d": "KY House District 37", "rep": "Emily Callaway", "w": 0.108}, {"d": "KY House District 48", "rep": "Ken Fleming", "w": 0.073}, {"d": "KY House District 44", "rep": "Beverly Chester-Burton", "w": 0.06}, {"d": "KY House District 35", "rep": "Lisa Willner", "w": 0.058}, {"d": "KY House District 28", "rep": "Jared Bauman", "w": 0.048}, {"d": "KY House District 38", "rep": "Rachel Roarx", "w": 0.046}, {"d": "KY House District 31", "rep": "Susan Witten", "w": 0.041}, {"d": "KY House District 33", "rep": "Jason Nemes", "w": 0.04}, {"d": "KY House District 43", "rep": "Pamela Stevenson", "w": 0.039}, {"d": "KY House District 32", "rep": "Tina Bojanowski", "w": 0.036}, {"d": "KY House District 46", "rep": "Al Gentry", "w": 0.035}, {"d": "KY House District 34", "rep": "Sarah Stalker", "w": 0.035}, {"d": "KY House District 30", "rep": "Daniel Grossberg", "w": 0.032}, {"d": "KY House District 40", "rep": "Nima Kulkarni", "w": 0.028}, {"d": "KY House District 41", "rep": "Mary Lou Marzian", "w": 0.027}, {"d": "KY House District 42", "rep": "Joshua Watkins", "w": 0.02}], "ss": [{"d": "KY Senate District 36", "rep": "Julie Adams", "w": 0.203}, {"d": "KY Senate District 33", "rep": "Gerald Neal", "w": 0.121}, {"d": "KY Senate District 7", "rep": "Aaron Reed", "w": 0.114}, {"d": "KY Senate District 35", "rep": "Keturah Herron", "w": 0.113}, {"d": "KY Senate District 26", "rep": "Karen Berg", "w": 0.104}, {"d": "KY Senate District 38", "rep": "Mike Nemes", "w": 0.1}, {"d": "KY Senate District 37", "rep": "Gary Clemons", "w": 0.089}, {"d": "KY Senate District 19", "rep": "Cassie Armstrong", "w": 0.081}, {"d": "KY Senate District 6", "rep": "Lindsey Tichenor", "w": 0.051}, {"d": "KY Senate District 10", "rep": "Matt Deneen", "w": 0.024}]}, "munis": [{"m": "Jeffersontown", "p": [{"n": "Carol Pike", "r": "Mayor, Jeffersontown, KY"}]}, {"m": "Louisville", "p": [{"n": "Craig Greenberg", "r": "Mayor, Louisville, KY"}]}, {"m": "Lyndon", "p": [{"n": "Brent Hagan", "r": "Mayor, Lyndon, KY"}]}, {"m": "Shively", "p": [{"n": "Maria D. Johnson", "r": "Mayor, Shively, KY"}]}, {"m": "St Matthews", "p": [{"n": "Richard J. Tonini", "r": "Mayor, St. Matthews, KY"}]}], "slug": "jefferson"}, "21113": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 1.0}], "sh": [{"d": "KY House District 55", "rep": "Kim King", "w": 0.432}, {"d": "KY House District 39", "rep": "Matt Lockett", "w": 0.268}, {"d": "KY House District 56", "rep": "Dan Fister", "w": 0.153}, {"d": "KY House District 45", "rep": "Adam Moore", "w": 0.146}], "ss": [{"d": "KY Senate District 22", "rep": "Don Douglas", "w": 1.0}]}, "munis": [{"m": "Nicholasville", "p": [{"n": "Alex Carter", "r": "Mayor, Nicholasville, KY"}]}], "slug": "jessamine"}, "21115": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 97", "rep": "Bobby McCool", "w": 1.0}], "ss": [{"d": "KY Senate District 31", "rep": "Phillip Wheeler", "w": 1.0}]}, "munis": [], "slug": "johnson"}, "21117": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 1.0}], "sh": [{"d": "KY House District 78", "rep": "Mark Hart", "w": 0.429}, {"d": "KY House District 64", "rep": "Kim Moser", "w": 0.213}, {"d": "KY House District 65", "rep": "Stephanie Dietz", "w": 0.11}, {"d": "KY House District 63", "rep": "Kim Banta", "w": 0.093}, {"d": "KY House District 61", "rep": "Savannah Maddox", "w": 0.093}, {"d": "KY House District 69", "rep": "Steven Doan", "w": 0.062}], "ss": [{"d": "KY Senate District 17", "rep": "Matt Nunn", "w": 0.461}, {"d": "KY Senate District 23", "rep": "Chris McDaniel", "w": 0.37}, {"d": "KY Senate District 20", "rep": "Gex Williams", "w": 0.165}]}, "munis": [{"m": "Covington", "p": [{"n": "Ron Washington", "r": "Mayor, Covington, KY"}]}, {"m": "Erlanger", "p": [{"n": "Jessica Fette", "r": "Mayor, Erlanger, KY"}]}, {"m": "Independence", "p": [{"n": "Chris Reinersman", "r": "Mayor, Independence, KY"}]}], "slug": "kenton"}, "21119": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 92", "rep": "John Blanton", "w": 0.999}], "ss": [{"d": "KY Senate District 29", "rep": "Scott Madon", "w": 1.0}]}, "munis": [{"m": "Hindman", "p": [{"n": "Patricia Hall", "r": "Mayor, Hindman, KY"}]}], "slug": "knott"}, "21121": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 86", "rep": "Tom Smith", "w": 0.999}], "ss": [{"d": "KY Senate District 25", "rep": "Robert Stivers", "w": 1.0}]}, "munis": [{"m": "Barbourville", "p": [{"n": "David Thompson", "r": "Mayor, Barbourville, KY"}]}], "slug": "knox"}, "21123": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.997}], "sh": [{"d": "KY House District 24", "rep": "Ryan Bivens", "w": 0.999}], "ss": [{"d": "KY Senate District 14", "rep": "Jimmy Higdon", "w": 1.0}]}, "munis": [], "slug": "larue"}, "21125": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 85", "rep": "Shane Baker", "w": 0.25}, {"d": "KY House District 89", "rep": "Timmy Truett", "w": 0.202}, {"d": "KY House District 90", "rep": "Derek Lewis", "w": 0.179}, {"d": "KY House District 86", "rep": "Tom Smith", "w": 0.15}, {"d": "KY House District 71", "rep": "Josh Bray", "w": 0.134}, {"d": "KY House District 82", "rep": "Nick Wilson", "w": 0.085}], "ss": [{"d": "KY Senate District 21", "rep": "Brandon Storm", "w": 0.999}]}, "munis": [], "slug": "laurel"}, "21127": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 100", "rep": "Scott Sharp", "w": 0.999}], "ss": [{"d": "KY Senate District 31", "rep": "Phillip Wheeler", "w": 1.0}]}, "munis": [{"m": "Louisa", "p": [{"n": "Harold E. Slone", "r": "Mayor, Louisa, KY"}]}], "slug": "lawrence"}, "21129": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.997}], "sh": [{"d": "KY House District 89", "rep": "Timmy Truett", "w": 0.999}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "lee"}, "21131": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 90", "rep": "Derek Lewis", "w": 1.0}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "leslie"}, "21133": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.999}], "sh": [{"d": "KY House District 94", "rep": "Mitch Whitaker", "w": 0.999}], "ss": [{"d": "KY Senate District 29", "rep": "Scott Madon", "w": 0.999}]}, "munis": [], "slug": "letcher"}, "21135": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.996}], "sh": [{"d": "KY House District 96", "rep": "Patrick Flannery", "w": 0.999}], "ss": [{"d": "KY Senate District 18", "rep": "Robin Webb", "w": 0.999}]}, "munis": [], "slug": "lewis"}, "21137": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.993}], "sh": [{"d": "KY House District 80", "rep": "David Meade", "w": 1.0}], "ss": [{"d": "KY Senate District 21", "rep": "Brandon Storm", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "21139": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 3", "rep": "Randy Bridges", "w": 0.999}], "ss": [{"d": "KY Senate District 2", "rep": "Danny Carroll", "w": 0.999}]}, "munis": [], "slug": "livingston"}, "21141": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.927}, {"d": "KY-02", "rep": "Brett Guthrie", "w": 0.073}], "sh": [{"d": "KY House District 16", "rep": "Jason Petrie", "w": 1.0}], "ss": [{"d": "KY Senate District 32", "rep": "Mike Wilson", "w": 1.0}]}, "munis": [], "slug": "logan"}, "21143": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 6", "rep": "Chris Freeland", "w": 1.0}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 1.0}]}, "munis": [], "slug": "lyon"}, "21145": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 1", "rep": "Steven Rudy", "w": 0.538}, {"d": "KY House District 2", "rep": "Kim Holloway", "w": 0.177}, {"d": "KY House District 3", "rep": "Randy Bridges", "w": 0.158}, {"d": "KY House District 6", "rep": "Chris Freeland", "w": 0.126}], "ss": [{"d": "KY Senate District 2", "rep": "Danny Carroll", "w": 0.999}]}, "munis": [{"m": "Paducah", "p": [{"n": "George P. Bray", "r": "Mayor, Paducah, KY"}]}], "slug": "mccracken"}, "21147": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 52", "rep": "Ken Upchurch", "w": 1.0}], "ss": [{"d": "KY Senate District 25", "rep": "Robert Stivers", "w": 1.0}]}, "munis": [], "slug": "mccreary"}, "21149": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.997}], "sh": [{"d": "KY House District 12", "rep": "Jim Gooch", "w": 1.0}], "ss": [{"d": "KY Senate District 8", "rep": "Gary Boswell", "w": 1.0}]}, "munis": [], "slug": "mclean"}, "21151": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.999}], "sh": [{"d": "KY House District 81", "rep": "Deanna Gordon", "w": 0.567}, {"d": "KY House District 89", "rep": "Timmy Truett", "w": 0.204}, {"d": "KY House District 91", "rep": "Bill Wesley", "w": 0.136}, {"d": "KY House District 71", "rep": "Josh Bray", "w": 0.092}], "ss": [{"d": "KY Senate District 34", "rep": "Jared Carpenter", "w": 1.0}]}, "munis": [{"m": "Berea", "p": [{"n": "Bruce Fraley", "r": "Mayor, Berea, KY"}]}], "slug": "madison"}, "21153": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 92", "rep": "John Blanton", "w": 0.999}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "magoffin"}, "21155": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 51", "rep": "Sarge Pollock", "w": 1.0}], "ss": [{"d": "KY Senate District 14", "rep": "Jimmy Higdon", "w": 1.0}]}, "munis": [], "slug": "marion"}, "21157": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 6", "rep": "Chris Freeland", "w": 1.0}], "ss": [{"d": "KY Senate District 2", "rep": "Danny Carroll", "w": 1.0}]}, "munis": [{"m": "Calvert City", "p": [{"n": "Gene Colburn", "r": "Mayor, Calvert City, KY"}]}], "slug": "marshall"}, "21159": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.99}, {"d": "WV-01", "rep": "Carol D. Miller", "w": 0.01}], "sh": [{"d": "KY House District 97", "rep": "Bobby McCool", "w": 0.999}], "ss": [{"d": "KY Senate District 31", "rep": "Phillip Wheeler", "w": 1.0}]}, "munis": [], "slug": "martin"}, "21161": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 70", "rep": "William Lawrence", "w": 1.0}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 1.0}]}, "munis": [{"m": "Maysville", "p": [{"n": "Debra L. Cotterill", "r": "Mayor, Maysville, KY"}]}], "slug": "mason"}, "21163": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.998}], "sh": [{"d": "KY House District 27", "rep": "Nancy Tate", "w": 0.998}], "ss": [{"d": "KY Senate District 5", "rep": "Steve Meredith", "w": 0.999}]}, "munis": [], "slug": "meade"}, "21165": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.995}, {"d": "KY-06", "rep": "Andy Barr", "w": 0.005}], "sh": [{"d": "KY House District 74", "rep": "David Hale", "w": 1.0}], "ss": [{"d": "KY Senate District 28", "rep": "Greg Elkins", "w": 1.0}]}, "munis": [], "slug": "menifee"}, "21167": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.998}], "sh": [{"d": "KY House District 55", "rep": "Kim King", "w": 0.999}], "ss": [{"d": "KY Senate District 12", "rep": "Amanda Bledsoe", "w": 1.0}]}, "munis": [{"m": "Harrodsburg", "p": [{"n": "Robert Williams", "r": "Mayor, Harrodsburg, KY"}]}], "slug": "mercer"}, "21169": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.998}], "sh": [{"d": "KY House District 21", "rep": "Amy Neighbors", "w": 1.0}], "ss": [{"d": "KY Senate District 16", "rep": "Max Wise", "w": 1.0}]}, "munis": [{"m": "Edmonton", "p": [{"n": "Doug Smith", "r": "Mayor, Edmonton, KY"}]}], "slug": "metcalfe"}, "21171": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 21", "rep": "Amy Neighbors", "w": 1.0}], "ss": [{"d": "KY Senate District 16", "rep": "Max Wise", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "21173": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.998}], "sh": [{"d": "KY House District 74", "rep": "David Hale", "w": 1.0}], "ss": [{"d": "KY Senate District 28", "rep": "Greg Elkins", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "21175": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 99", "rep": "Richard White", "w": 1.0}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "21177": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.996}], "sh": [{"d": "KY House District 15", "rep": "Rebecca Raymer", "w": 0.999}], "ss": [{"d": "KY Senate District 3", "rep": "Craig Richardson", "w": 0.999}]}, "munis": [{"m": "Central City", "p": [{"n": "Tony Armour", "r": "Mayor, Central City, KY"}]}], "slug": "muhlenberg"}, "21179": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.508}, {"d": "KY-04", "rep": "Thomas Massie", "w": 0.487}], "sh": [{"d": "KY House District 50", "rep": "Candy Massaroni", "w": 0.999}], "ss": [{"d": "KY Senate District 14", "rep": "Jimmy Higdon", "w": 1.0}]}, "munis": [{"m": "Bardstown", "p": [{"n": "Richard Heaton", "r": "Mayor, Bardstown, KY"}]}], "slug": "nelson"}, "21181": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.995}, {"d": "KY-04", "rep": "Thomas Massie", "w": 0.005}], "sh": [{"d": "KY House District 72", "rep": "Matt Koch", "w": 1.0}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 1.0}]}, "munis": [], "slug": "nicholas"}, "21183": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 1.0}], "sh": [{"d": "KY House District 14", "rep": "Scott Lewis", "w": 1.0}], "ss": [{"d": "KY Senate District 5", "rep": "Steve Meredith", "w": 1.0}]}, "munis": [], "slug": "ohio"}, "21185": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 59", "rep": "David Osborne", "w": 0.856}, {"d": "KY House District 33", "rep": "Jason Nemes", "w": 0.114}, {"d": "KY House District 48", "rep": "Ken Fleming", "w": 0.029}], "ss": [{"d": "KY Senate District 6", "rep": "Lindsey Tichenor", "w": 1.0}]}, "munis": [{"m": "Goshen", "p": [{"n": "Bob Thacker", "r": "Mayor, Goshen, KY"}]}, {"m": "La Grange", "p": [{"n": "John Black", "r": "Mayor, La Grange, KY"}]}], "slug": "oldham"}, "21187": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 47", "rep": "Felicia Rabourn", "w": 1.0}], "ss": [{"d": "KY Senate District 20", "rep": "Gex Williams", "w": 1.0}]}, "munis": [], "slug": "owen"}, "21189": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 84", "rep": "Chris Fugate", "w": 0.999}], "ss": [{"d": "KY Senate District 25", "rep": "Robert Stivers", "w": 0.999}]}, "munis": [], "slug": "owsley"}, "21191": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 1.0}], "sh": [{"d": "KY House District 78", "rep": "Mark Hart", "w": 1.0}], "ss": [{"d": "KY Senate District 24", "rep": "Shelley Frommeyer", "w": 1.0}]}, "munis": [], "slug": "pendleton"}, "21193": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 84", "rep": "Chris Fugate", "w": 0.999}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [{"m": "Hazard", "p": [{"n": "Donald Mobelini", "r": "Mayor, Hazard, KY"}]}], "slug": "perry"}, "21195": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.997}], "sh": [{"d": "KY House District 94", "rep": "Mitch Whitaker", "w": 0.364}, {"d": "KY House District 97", "rep": "Bobby McCool", "w": 0.301}, {"d": "KY House District 92", "rep": "John Blanton", "w": 0.274}, {"d": "KY House District 95", "rep": "Ashley Laferty", "w": 0.059}], "ss": [{"d": "KY Senate District 31", "rep": "Phillip Wheeler", "w": 0.999}]}, "munis": [{"m": "Pikeville", "p": [{"n": "James A. Carter", "r": "Mayor, Pikeville, KY"}]}], "slug": "pike"}, "21197": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.998}], "sh": [{"d": "KY House District 91", "rep": "Bill Wesley", "w": 0.999}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 0.999}]}, "munis": [], "slug": "powell"}, "21199": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 85", "rep": "Shane Baker", "w": 0.444}, {"d": "KY House District 83", "rep": "Josh Branscum", "w": 0.282}, {"d": "KY House District 71", "rep": "Josh Bray", "w": 0.167}, {"d": "KY House District 52", "rep": "Ken Upchurch", "w": 0.083}, {"d": "KY House District 80", "rep": "David Meade", "w": 0.024}], "ss": [{"d": "KY Senate District 15", "rep": "Rick Girdler", "w": 1.0}]}, "munis": [{"m": "Somerset", "p": [{"n": "Alan Keck", "r": "Mayor, Somerset, KY"}]}], "slug": "pulaski"}, "21201": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.998}], "sh": [{"d": "KY House District 70", "rep": "William Lawrence", "w": 1.0}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 1.0}]}, "munis": [], "slug": "robertson"}, "21203": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.998}], "sh": [{"d": "KY House District 71", "rep": "Josh Bray", "w": 1.0}], "ss": [{"d": "KY Senate District 21", "rep": "Brandon Storm", "w": 1.0}]}, "munis": [], "slug": "rockcastle"}, "21205": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.995}], "sh": [{"d": "KY House District 99", "rep": "Richard White", "w": 0.999}], "ss": [{"d": "KY Senate District 27", "rep": "Steve West", "w": 0.999}]}, "munis": [], "slug": "rowan"}, "21207": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 83", "rep": "Josh Branscum", "w": 1.0}], "ss": [{"d": "KY Senate District 15", "rep": "Rick Girdler", "w": 1.0}]}, "munis": [], "slug": "russell"}, "21209": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.995}], "sh": [{"d": "KY House District 62", "rep": "Tony Hampton", "w": 0.854}, {"d": "KY House District 88", "rep": "Vanessa Grossl", "w": 0.146}], "ss": [{"d": "KY Senate District 17", "rep": "Matt Nunn", "w": 1.0}]}, "munis": [{"m": "Georgetown", "p": [{"n": "Burney Jenkins", "r": "Mayor, Georgetown, KY"}]}], "slug": "scott"}, "21211": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.999}], "sh": [{"d": "KY House District 58", "rep": "Jennifer Decker", "w": 0.976}, {"d": "KY House District 33", "rep": "Jason Nemes", "w": 0.024}], "ss": [{"d": "KY Senate District 7", "rep": "Aaron Reed", "w": 1.0}]}, "munis": [{"m": "Shelbyville", "p": [{"n": "David B. Eaton", "r": "Mayor, Shelbyville, KY"}]}], "slug": "shelby"}, "21213": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.998}], "sh": [{"d": "KY House District 22", "rep": "Shawn McPherson", "w": 1.0}], "ss": [{"d": "KY Senate District 32", "rep": "Mike Wilson", "w": 1.0}]}, "munis": [{"m": "Franklin", "p": [{"n": "Larry Dixon", "r": "Mayor, Franklin, KY"}]}], "slug": "simpson"}, "21215": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 0.995}], "sh": [{"d": "KY House District 53", "rep": "James Tipton", "w": 1.0}], "ss": [{"d": "KY Senate District 14", "rep": "Jimmy Higdon", "w": 1.0}]}, "munis": [{"m": "Taylorsville", "p": [{"n": "Karen Spencer", "r": "Mayor, Taylorsville, KY"}]}], "slug": "spencer"}, "21217": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.996}], "sh": [{"d": "KY House District 51", "rep": "Sarge Pollock", "w": 1.0}], "ss": [{"d": "KY Senate District 16", "rep": "Max Wise", "w": 0.999}]}, "munis": [{"m": "Campbellsville", "p": [{"n": "Dennis Benningfield", "r": "Mayor, Campbellsville, KY"}]}], "slug": "taylor"}, "21219": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 16", "rep": "Jason Petrie", "w": 1.0}], "ss": [{"d": "KY Senate District 32", "rep": "Mike Wilson", "w": 1.0}]}, "munis": [], "slug": "todd"}, "21221": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 1.0}], "sh": [{"d": "KY House District 5", "rep": "Mary Beth Imes", "w": 0.601}, {"d": "KY House District 8", "rep": "Walker Thomas", "w": 0.399}], "ss": [{"d": "KY Senate District 1", "rep": "Jason Howell", "w": 0.999}]}, "munis": [], "slug": "trigg"}, "21223": {"county": [], "districts": {"cd": [{"d": "KY-04", "rep": "Thomas Massie", "w": 1.0}], "sh": [{"d": "KY House District 47", "rep": "Felicia Rabourn", "w": 1.0}], "ss": [{"d": "KY Senate District 6", "rep": "Lindsey Tichenor", "w": 0.999}]}, "munis": [], "slug": "trimble"}, "21225": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 12", "rep": "Jim Gooch", "w": 1.0}], "ss": [{"d": "KY Senate District 4", "rep": "Robby Mills", "w": 1.0}]}, "munis": [], "slug": "union"}, "21227": {"county": [], "districts": {"cd": [{"d": "KY-02", "rep": "Brett Guthrie", "w": 0.999}], "sh": [{"d": "KY House District 19", "rep": "Michael Meredith", "w": 0.595}, {"d": "KY House District 17", "rep": "Robert Duvall", "w": 0.289}, {"d": "KY House District 22", "rep": "Shawn McPherson", "w": 0.071}, {"d": "KY House District 20", "rep": "Kevin Jackson", "w": 0.045}], "ss": [{"d": "KY Senate District 9", "rep": "David Givens", "w": 0.405}, {"d": "KY Senate District 16", "rep": "Max Wise", "w": 0.318}, {"d": "KY Senate District 32", "rep": "Mike Wilson", "w": 0.277}]}, "munis": [{"m": "Bowling Green", "p": [{"n": "Todd Alcott", "r": "Mayor, Bowling Green, KY"}]}], "slug": "warren"}, "21229": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.994}], "sh": [{"d": "KY House District 55", "rep": "Kim King", "w": 0.999}], "ss": [{"d": "KY Senate District 14", "rep": "Jimmy Higdon", "w": 1.0}]}, "munis": [{"m": "Springfield", "p": [{"n": "Debbie Wakefield", "r": "Mayor, Springfield, KY"}]}], "slug": "washington"}, "21231": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 0.997}], "sh": [{"d": "KY House District 52", "rep": "Ken Upchurch", "w": 1.0}], "ss": [{"d": "KY Senate District 15", "rep": "Rick Girdler", "w": 1.0}]}, "munis": [], "slug": "wayne"}, "21233": {"county": [], "districts": {"cd": [{"d": "KY-01", "rep": "James Comer", "w": 0.999}], "sh": [{"d": "KY House District 12", "rep": "Jim Gooch", "w": 1.0}], "ss": [{"d": "KY Senate District 4", "rep": "Robby Mills", "w": 1.0}]}, "munis": [], "slug": "webster"}, "21235": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 82", "rep": "Nick Wilson", "w": 0.999}], "ss": [{"d": "KY Senate District 25", "rep": "Robert Stivers", "w": 1.0}]}, "munis": [{"m": "Corbin", "p": [{"n": "Suzie Razmus", "r": "Mayor, Corbin, KY"}]}, {"m": "Williamsburg", "p": [{"n": "Roddy Harrison", "r": "Mayor, Williamsburg, KY"}]}], "slug": "whitley"}, "21237": {"county": [], "districts": {"cd": [{"d": "KY-05", "rep": "Harold Rogers", "w": 1.0}], "sh": [{"d": "KY House District 89", "rep": "Timmy Truett", "w": 0.999}], "ss": [{"d": "KY Senate District 30", "rep": "Brandon Smith", "w": 1.0}]}, "munis": [], "slug": "wolfe"}, "21239": {"county": [], "districts": {"cd": [{"d": "KY-06", "rep": "Andy Barr", "w": 0.999}], "sh": [{"d": "KY House District 56", "rep": "Dan Fister", "w": 0.999}], "ss": [{"d": "KY Senate District 12", "rep": "Amanda Bledsoe", "w": 0.999}]}, "munis": [{"m": "Versailles", "p": [{"n": "Laura Dake", "r": "Mayor, Versailles, KY"}]}], "slug": "woodford"}, "22001": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 1.0}], "sh": [{"d": "LA House District 42", "rep": "Chance Henry", "w": 0.517}, {"d": "LA House District 41", "rep": "Phillip DeVillier", "w": 0.482}], "ss": [{"d": "LA Senate District 26", "rep": "Bob Hensgens", "w": 0.805}, {"d": "LA Senate District 25", "rep": "Mark Abraham", "w": 0.195}]}, "munis": [], "slug": "acadia-parish"}, "22003": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 1.0}], "sh": [{"d": "LA House District 32", "rep": "Dewith Carrier", "w": 1.0}], "ss": [{"d": "LA Senate District 28", "rep": "Heather Cloud", "w": 1.0}]}, "munis": [], "slug": "allen-parish"}, "22005": {"county": [], "districts": {"cd": [{"d": "LA-02", "rep": "Troy A. Carter", "w": 0.554}, {"d": "LA-01", "rep": "Steve Scalise", "w": 0.354}, {"d": "LA-05", "rep": "Julia Letlow", "w": 0.092}], "sh": [{"d": "LA House District 81", "rep": "Jeff Wiley", "w": 0.368}, {"d": "LA House District 58", "rep": "Ken Brass", "w": 0.347}, {"d": "LA House District 88", "rep": "Kathy Edmonston", "w": 0.147}, {"d": "LA House District 59", "rep": "Tony Bacala", "w": 0.137}], "ss": [{"d": "LA Senate District 18", "rep": "Eddie Lambert", "w": 0.668}, {"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.332}]}, "munis": [], "slug": "ascension-parish"}, "22007": {"county": [], "districts": {"cd": [{"d": "LA-02", "rep": "Troy A. Carter", "w": 0.998}], "sh": [{"d": "LA House District 60", "rep": "Chasity Martinez", "w": 0.775}, {"d": "LA House District 51", "rep": "Beryl Amedée", "w": 0.225}], "ss": [{"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.509}, {"d": "LA Senate District 21", "rep": "Robert Allain", "w": 0.491}]}, "munis": [], "slug": "assumption-parish"}, "22009": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.588}, {"d": "LA-06", "rep": "Cleo Fields", "w": 0.412}], "sh": [{"d": "LA House District 28", "rep": "Daryl Deshotel", "w": 1.0}], "ss": [{"d": "LA Senate District 28", "rep": "Heather Cloud", "w": 0.675}, {"d": "LA Senate District 32", "rep": "Glen Womack", "w": 0.3}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.025}]}, "munis": [], "slug": "avoyelles-parish"}, "22011": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.998}], "sh": [{"d": "LA House District 24", "rep": "Rodney Schamerhorn", "w": 0.441}, {"d": "LA House District 32", "rep": "Dewith Carrier", "w": 0.325}, {"d": "LA House District 30", "rep": "Chuck Owen", "w": 0.134}, {"d": "LA House District 35", "rep": "Brett Geymann", "w": 0.1}], "ss": [{"d": "LA Senate District 30", "rep": "Mike Reese", "w": 1.0}]}, "munis": [], "slug": "beauregard-parish"}, "22013": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 1.0}], "sh": [{"d": "LA House District 13", "rep": "Jack McFarland", "w": 0.835}, {"d": "LA House District 11", "rep": "Rashid Young", "w": 0.165}], "ss": [{"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.662}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.311}, {"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 0.026}]}, "munis": [], "slug": "bienville-parish"}, "22015": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.999}], "sh": [{"d": "LA House District 10", "rep": "Wayne McMahen", "w": 0.503}, {"d": "LA House District 9", "rep": "Dodie Horton", "w": 0.232}, {"d": "LA House District 5", "rep": "Dennis Bamburg", "w": 0.171}, {"d": "LA House District 8", "rep": "Raymond Crews", "w": 0.085}, {"d": "LA House District 2", "rep": "Steven Jackson", "w": 0.008}], "ss": [{"d": "LA Senate District 36", "rep": "Adam Bass", "w": 0.961}, {"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.035}]}, "munis": [{"m": "Bossier City", "p": [{"n": "Thomas Chandler", "r": "Mayor, Bossier City, LA"}]}], "slug": "bossier-parish"}, "22017": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.874}, {"d": "LA-06", "rep": "Cleo Fields", "w": 0.126}], "sh": [{"d": "LA House District 1", "rep": "Danny McCormick", "w": 0.729}, {"d": "LA House District 5", "rep": "Dennis Bamburg", "w": 0.094}, {"d": "LA House District 4", "rep": "Joy Walters", "w": 0.084}, {"d": "LA House District 7", "rep": "Larry Bagley", "w": 0.028}, {"d": "LA House District 3", "rep": "Tammy Phelps", "w": 0.023}, {"d": "LA House District 6", "rep": "Michael Melerine", "w": 0.023}, {"d": "LA House District 2", "rep": "Steven Jackson", "w": 0.019}], "ss": [{"d": "LA Senate District 39", "rep": "Sam Jenkins", "w": 0.552}, {"d": "LA Senate District 38", "rep": "Thomas Pressly", "w": 0.362}, {"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.085}]}, "munis": [{"m": "Shreveport", "p": [{"n": "Tom Arceneaux", "r": "Mayor, Shreveport, LA"}]}], "slug": "caddo-parish"}, "22019": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.72}, {"d": "LA-03", "rep": "Clay Higgins", "w": 0.278}], "sh": [{"d": "LA House District 32", "rep": "Dewith Carrier", "w": 0.329}, {"d": "LA House District 33", "rep": "Les Farnum", "w": 0.263}, {"d": "LA House District 37", "rep": "Skip Broussard", "w": 0.13}, {"d": "LA House District 47", "rep": "Ryan Bourriaque", "w": 0.117}, {"d": "LA House District 35", "rep": "Brett Geymann", "w": 0.101}, {"d": "LA House District 34", "rep": "Wilford Carter", "w": 0.033}, {"d": "LA House District 36", "rep": "Phil Tarver", "w": 0.027}], "ss": [{"d": "LA Senate District 30", "rep": "Mike Reese", "w": 0.445}, {"d": "LA Senate District 27", "rep": "Jeremy Stine", "w": 0.28}, {"d": "LA Senate District 25", "rep": "Mark Abraham", "w": 0.275}]}, "munis": [{"m": "Lake Charles", "p": [{"n": "Nic Hunter", "r": "Mayor, Lake Charles, LA"}]}], "slug": "calcasieu-parish"}, "22021": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 1.0}], "sh": [{"d": "LA House District 20", "rep": "Neil Riser", "w": 1.0}], "ss": [{"d": "LA Senate District 32", "rep": "Glen Womack", "w": 1.0}]}, "munis": [], "slug": "caldwell-parish"}, "22023": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.847}], "sh": [{"d": "LA House District 47", "rep": "Ryan Bourriaque", "w": 0.847}], "ss": [{"d": "LA Senate District 25", "rep": "Mark Abraham", "w": 0.847}]}, "munis": [], "slug": "cameron-parish"}, "22025": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 1.0}], "sh": [{"d": "LA House District 20", "rep": "Neil Riser", "w": 0.87}, {"d": "LA House District 21", "rep": "Travis Johnson", "w": 0.13}], "ss": [{"d": "LA Senate District 32", "rep": "Glen Womack", "w": 1.0}]}, "munis": [], "slug": "catahoula-parish"}, "22027": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 1.0}], "sh": [{"d": "LA House District 11", "rep": "Rashid Young", "w": 1.0}], "ss": [{"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 1.0}]}, "munis": [], "slug": "claiborne-parish"}, "22029": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.999}], "sh": [{"d": "LA House District 21", "rep": "Travis Johnson", "w": 0.999}], "ss": [{"d": "LA Senate District 32", "rep": "Glen Womack", "w": 0.778}, {"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.221}]}, "munis": [], "slug": "concordia-parish"}, "22031": {"county": [], "districts": {"cd": [{"d": "LA-06", "rep": "Cleo Fields", "w": 0.596}, {"d": "LA-04", "rep": "Mike Johnson", "w": 0.404}], "sh": [{"d": "LA House District 7", "rep": "Larry Bagley", "w": 0.999}], "ss": [{"d": "LA Senate District 38", "rep": "Thomas Pressly", "w": 0.528}, {"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.471}]}, "munis": [], "slug": "de-soto-parish"}, "22033": {"county": [], "districts": {"cd": [{"d": "LA-06", "rep": "Cleo Fields", "w": 0.554}, {"d": "LA-05", "rep": "Julia Letlow", "w": 0.446}], "sh": [{"d": "LA House District 63", "rep": "Barbara Carpenter", "w": 0.221}, {"d": "LA House District 64", "rep": "Kellee Hennessy", "w": 0.164}, {"d": "LA House District 65", "rep": "Lauren Ventrella", "w": 0.153}, {"d": "LA House District 62", "rep": "Roy Adams", "w": 0.1}, {"d": "LA House District 66", "rep": "Emily Chenevert", "w": 0.089}, {"d": "LA House District 67", "rep": "Terry Landry", "w": 0.059}, {"d": "LA House District 70", "rep": "Barbara Freiberg", "w": 0.044}, {"d": "LA House District 101", "rep": "Vanessa LaFleur", "w": 0.036}, {"d": "LA House District 68", "rep": "Dixon McMakin", "w": 0.036}, {"d": "LA House District 69", "rep": "Paul Sawyer", "w": 0.034}, {"d": "LA House District 29", "rep": "Edmond Jordan", "w": 0.033}, {"d": "LA House District 61", "rep": "Denise Marcelle", "w": 0.03}], "ss": [{"d": "LA Senate District 6", "rep": "Rick Edmonds", "w": 0.42}, {"d": "LA Senate District 15", "rep": "Regina Barrow", "w": 0.277}, {"d": "LA Senate District 14", "rep": "Larry Selders", "w": 0.145}, {"d": "LA Senate District 16", "rep": "Franklin Foil", "w": 0.109}, {"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.048}]}, "munis": [{"m": "Baker", "p": [{"n": "Darnell Waites", "r": "Mayor, Baker, LA"}]}, {"m": "Baton Rouge", "p": [{"n": "Sharon Weston Broome", "r": "Mayor, Baton Rouge, LA"}]}], "slug": "east-baton-rouge-parish"}, "22035": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.999}], "sh": [{"d": "LA House District 21", "rep": "Travis Johnson", "w": 0.669}, {"d": "LA House District 19", "rep": "Francis Thompson", "w": 0.33}], "ss": [{"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.999}]}, "munis": [], "slug": "east-carroll-parish"}, "22037": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 1.0}], "sh": [{"d": "LA House District 62", "rep": "Roy Adams", "w": 0.999}], "ss": [{"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 1.0}]}, "munis": [], "slug": "east-feliciana-parish"}, "22039": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.999}], "sh": [{"d": "LA House District 38", "rep": "Rhonda Butler", "w": 0.882}, {"d": "LA House District 41", "rep": "Phillip DeVillier", "w": 0.117}], "ss": [{"d": "LA Senate District 28", "rep": "Heather Cloud", "w": 1.0}]}, "munis": [], "slug": "evangeline-parish"}, "22041": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 1.0}], "sh": [{"d": "LA House District 20", "rep": "Neil Riser", "w": 0.872}, {"d": "LA House District 21", "rep": "Travis Johnson", "w": 0.128}], "ss": [{"d": "LA Senate District 32", "rep": "Glen Womack", "w": 1.0}]}, "munis": [], "slug": "franklin-parish"}, "22043": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.993}], "sh": [{"d": "LA House District 22", "rep": "Gabe Firment", "w": 1.0}], "ss": [{"d": "LA Senate District 35", "rep": "Jay Morris", "w": 0.703}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.296}]}, "munis": [], "slug": "grant-parish"}, "22045": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.601}], "sh": [{"d": "LA House District 49", "rep": "Jacob Landry", "w": 0.29}, {"d": "LA House District 96", "rep": "Marcus Bryant", "w": 0.21}, {"d": "LA House District 48", "rep": "Beau Beaullieu", "w": 0.098}], "ss": [{"d": "LA Senate District 22", "rep": "Blake Miguez", "w": 0.345}, {"d": "LA Senate District 21", "rep": "Robert Allain", "w": 0.253}]}, "munis": [{"m": "New Iberia", "p": [{"n": "Freddie DeCourt", "r": "Mayor, New Iberia, LA"}]}], "slug": "iberia-parish"}, "22047": {"county": [], "districts": {"cd": [{"d": "LA-02", "rep": "Troy A. Carter", "w": 0.994}], "sh": [{"d": "LA House District 60", "rep": "Chasity Martinez", "w": 0.782}, {"d": "LA House District 18", "rep": "Jeremy LaCombe", "w": 0.218}], "ss": [{"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.786}, {"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.214}]}, "munis": [], "slug": "iberville-parish"}, "22049": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 1.0}], "sh": [{"d": "LA House District 13", "rep": "Jack McFarland", "w": 1.0}], "ss": [{"d": "LA Senate District 35", "rep": "Jay Morris", "w": 0.909}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.091}]}, "munis": [], "slug": "jackson-parish"}, "22051": {"county": [], "districts": {"cd": [{"d": "LA-01", "rep": "Steve Scalise", "w": 0.712}, {"d": "LA-02", "rep": "Troy A. Carter", "w": 0.172}], "sh": [{"d": "LA House District 84", "rep": "Tim Kerner", "w": 0.418}, {"d": "LA House District 94", "rep": "Stephanie Hilferty", "w": 0.153}, {"d": "LA House District 83", "rep": "Kyle Green", "w": 0.089}, {"d": "LA House District 87", "rep": "Rodney Lyons", "w": 0.03}, {"d": "LA House District 82", "rep": "Laurie Schlegel", "w": 0.022}, {"d": "LA House District 92", "rep": "Joe Stagni", "w": 0.019}, {"d": "LA House District 78", "rep": "John Illg", "w": 0.015}, {"d": "LA House District 85", "rep": "Vincent Cox", "w": 0.013}, {"d": "LA House District 79", "rep": "Debbie Villio", "w": 0.012}, {"d": "LA House District 54", "rep": "Joe Orgeron", "w": 0.011}, {"d": "LA House District 80", "rep": "Polly Thomas", "w": 0.01}], "ss": [{"d": "LA Senate District 8", "rep": "Patrick Connick", "w": 0.506}, {"d": "LA Senate District 10", "rep": "Kirk Talbot", "w": 0.043}, {"d": "LA Senate District 7", "rep": "Gary Carter", "w": 0.035}, {"d": "LA Senate District 9", "rep": "Cameron Henry", "w": 0.027}, {"d": "LA Senate District 5", "rep": "Royce Duplessis", "w": 0.018}, {"d": "LA Senate District 19", "rep": "Greg Miller", "w": 0.018}]}, "munis": [{"m": "Kenner", "p": [{"n": "Michael Glaser", "r": "Mayor, Kenner, LA"}]}], "slug": "jefferson-parish"}, "22053": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 1.0}], "sh": [{"d": "LA House District 37", "rep": "Skip Broussard", "w": 0.977}, {"d": "LA House District 32", "rep": "Dewith Carrier", "w": 0.023}], "ss": [{"d": "LA Senate District 25", "rep": "Mark Abraham", "w": 1.0}]}, "munis": [], "slug": "jefferson-davis-parish"}, "22055": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.752}, {"d": "LA-06", "rep": "Cleo Fields", "w": 0.248}], "sh": [{"d": "LA House District 39", "rep": "Doyle Boudreaux", "w": 0.281}, {"d": "LA House District 42", "rep": "Chance Henry", "w": 0.152}, {"d": "LA House District 31", "rep": "Troy Hebert", "w": 0.138}, {"d": "LA House District 44", "rep": "Tehmi Chassion", "w": 0.121}, {"d": "LA House District 43", "rep": "Josh Carlson", "w": 0.101}, {"d": "LA House District 48", "rep": "Beau Beaullieu", "w": 0.07}, {"d": "LA House District 49", "rep": "Jacob Landry", "w": 0.069}, {"d": "LA House District 45", "rep": "Annie Spell", "w": 0.059}, {"d": "LA House District 96", "rep": "Marcus Bryant", "w": 0.009}], "ss": [{"d": "LA Senate District 23", "rep": "Brach Myers", "w": 0.381}, {"d": "LA Senate District 24", "rep": "Gerald Boudreaux", "w": 0.276}, {"d": "LA Senate District 26", "rep": "Bob Hensgens", "w": 0.205}, {"d": "LA Senate District 22", "rep": "Blake Miguez", "w": 0.116}, {"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.021}]}, "munis": [{"m": "Lafayette", "p": [{"n": "Josh Guillory", "r": "Mayor, Lafayette, LA"}]}], "slug": "lafayette-parish"}, "22057": {"county": [], "districts": {"cd": [{"d": "LA-01", "rep": "Steve Scalise", "w": 0.661}, {"d": "LA-03", "rep": "Clay Higgins", "w": 0.185}, {"d": "LA-02", "rep": "Troy A. Carter", "w": 0.022}], "sh": [{"d": "LA House District 54", "rep": "Joe Orgeron", "w": 0.625}, {"d": "LA House District 55", "rep": "Bryan Fontenot", "w": 0.179}, {"d": "LA House District 51", "rep": "Beryl Amedée", "w": 0.042}], "ss": [{"d": "LA Senate District 20", "rep": "Mike Fési", "w": 0.555}, {"d": "LA Senate District 19", "rep": "Greg Miller", "w": 0.233}, {"d": "LA Senate District 21", "rep": "Robert Allain", "w": 0.037}, {"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.02}]}, "munis": [], "slug": "lafourche-parish"}, "22059": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.993}, {"d": "LA-04", "rep": "Mike Johnson", "w": 0.005}], "sh": [{"d": "LA House District 22", "rep": "Gabe Firment", "w": 0.597}, {"d": "LA House District 20", "rep": "Neil Riser", "w": 0.403}], "ss": [{"d": "LA Senate District 32", "rep": "Glen Womack", "w": 1.0}]}, "munis": [], "slug": "lasalle-parish"}, "22061": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 1.0}], "sh": [{"d": "LA House District 12", "rep": "Chris Turner", "w": 0.769}, {"d": "LA House District 11", "rep": "Rashid Young", "w": 0.231}], "ss": [{"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 0.584}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.233}, {"d": "LA Senate District 35", "rep": "Jay Morris", "w": 0.183}]}, "munis": [], "slug": "lincoln-parish"}, "22063": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.645}, {"d": "LA-01", "rep": "Steve Scalise", "w": 0.354}], "sh": [{"d": "LA House District 95", "rep": "Shane Mack", "w": 0.444}, {"d": "LA House District 81", "rep": "Jeff Wiley", "w": 0.376}, {"d": "LA House District 64", "rep": "Kellee Hennessy", "w": 0.096}, {"d": "LA House District 71", "rep": "Roger Wilder", "w": 0.084}], "ss": [{"d": "LA Senate District 13", "rep": "Valarie Hodges", "w": 0.53}, {"d": "LA Senate District 6", "rep": "Rick Edmonds", "w": 0.277}, {"d": "LA Senate District 18", "rep": "Eddie Lambert", "w": 0.179}, {"d": "LA Senate District 37", "rep": "Bill Wheat", "w": 0.013}]}, "munis": [], "slug": "livingston-parish"}, "22065": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.999}], "sh": [{"d": "LA House District 19", "rep": "Francis Thompson", "w": 0.631}, {"d": "LA House District 21", "rep": "Travis Johnson", "w": 0.368}], "ss": [{"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.999}]}, "munis": [], "slug": "madison-parish"}, "22067": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.997}], "sh": [{"d": "LA House District 19", "rep": "Francis Thompson", "w": 0.86}, {"d": "LA House District 16", "rep": "Adrian Fisher", "w": 0.14}], "ss": [{"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 0.763}, {"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.236}]}, "munis": [{"m": "Bastrop", "p": [{"n": "Henry Cotton", "r": "Mayor, Bastrop, LA"}]}], "slug": "morehouse-parish"}, "22069": {"county": [], "districts": {"cd": [{"d": "LA-06", "rep": "Cleo Fields", "w": 0.997}], "sh": [{"d": "LA House District 25", "rep": "Jason DeWitt", "w": 0.678}, {"d": "LA House District 13", "rep": "Jack McFarland", "w": 0.296}, {"d": "LA House District 22", "rep": "Gabe Firment", "w": 0.026}], "ss": [{"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.968}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.032}]}, "munis": [{"m": "Natchitoches", "p": [{"n": "Ronnie Williams. Jr", "r": "Mayor, Natchitoches, LA"}]}], "slug": "natchitoches-parish"}, "22071": {"county": [], "districts": {"cd": [{"d": "LA-01", "rep": "Steve Scalise", "w": 0.751}, {"d": "LA-02", "rep": "Troy A. Carter", "w": 0.248}], "sh": [{"d": "LA House District 100", "rep": "Dana Henry", "w": 0.752}, {"d": "LA House District 99", "rep": "Candace Newell", "w": 0.065}, {"d": "LA House District 102", "rep": "Delisha Boyd", "w": 0.054}, {"d": "LA House District 97", "rep": "Ed Murray", "w": 0.028}, {"d": "LA House District 94", "rep": "Stephanie Hilferty", "w": 0.022}, {"d": "LA House District 93", "rep": "Alonzo Knox", "w": 0.019}, {"d": "LA House District 98", "rep": "Aimee Freeman", "w": 0.019}, {"d": "LA House District 23", "rep": "Shaun Mena", "w": 0.016}, {"d": "LA House District 91", "rep": "Mandie Landry", "w": 0.015}], "ss": [{"d": "LA Senate District 1", "rep": "Bob Owen", "w": 0.301}, {"d": "LA Senate District 3", "rep": "Sidney Barthelemy", "w": 0.109}, {"d": "LA Senate District 4", "rep": "Jimmy Harris", "w": 0.07}, {"d": "LA Senate District 7", "rep": "Gary Carter", "w": 0.059}, {"d": "LA Senate District 5", "rep": "Royce Duplessis", "w": 0.04}, {"d": "LA Senate District 9", "rep": "Cameron Henry", "w": 0.01}]}, "munis": [{"m": "New Orleans", "p": [{"n": "Helena Moreno", "r": "Mayor, New Orleans, LA"}]}], "slug": "orleans-parish"}, "22073": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.591}, {"d": "LA-05", "rep": "Julia Letlow", "w": 0.409}], "sh": [{"d": "LA House District 15", "rep": "Foy Gadberry", "w": 0.366}, {"d": "LA House District 14", "rep": "Michael Echols", "w": 0.227}, {"d": "LA House District 20", "rep": "Neil Riser", "w": 0.203}, {"d": "LA House District 17", "rep": "Pat Moore", "w": 0.131}, {"d": "LA House District 16", "rep": "Adrian Fisher", "w": 0.074}], "ss": [{"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 0.313}, {"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.26}, {"d": "LA Senate District 35", "rep": "Jay Morris", "w": 0.257}, {"d": "LA Senate District 32", "rep": "Glen Womack", "w": 0.17}]}, "munis": [{"m": "Monroe", "p": [{"n": "Friday Ellis", "r": "Mayor, Monroe, LA"}]}], "slug": "ouachita-parish"}, "22075": {"county": [], "districts": {"cd": [{"d": "LA-01", "rep": "Steve Scalise", "w": 0.514}], "sh": [{"d": "LA House District 105", "rep": "Jacob Braud", "w": 0.464}], "ss": [{"d": "LA Senate District 7", "rep": "Gary Carter", "w": 0.277}, {"d": "LA Senate District 8", "rep": "Patrick Connick", "w": 0.188}]}, "munis": [], "slug": "plaquemines-parish"}, "22077": {"county": [], "districts": {"cd": [{"d": "LA-06", "rep": "Cleo Fields", "w": 0.996}], "sh": [{"d": "LA House District 18", "rep": "Jeremy LaCombe", "w": 1.0}], "ss": [{"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 1.0}]}, "munis": [], "slug": "pointe-coupee-parish"}, "22079": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.514}, {"d": "LA-06", "rep": "Cleo Fields", "w": 0.485}], "sh": [{"d": "LA House District 38", "rep": "Rhonda Butler", "w": 0.421}, {"d": "LA House District 25", "rep": "Jason DeWitt", "w": 0.294}, {"d": "LA House District 27", "rep": "Mike Johnson", "w": 0.25}, {"d": "LA House District 26", "rep": "Ed Larvadain", "w": 0.034}], "ss": [{"d": "LA Senate District 30", "rep": "Mike Reese", "w": 0.293}, {"d": "LA Senate District 32", "rep": "Glen Womack", "w": 0.207}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.179}, {"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.168}, {"d": "LA Senate District 28", "rep": "Heather Cloud", "w": 0.105}, {"d": "LA Senate District 35", "rep": "Jay Morris", "w": 0.048}]}, "munis": [{"m": "Alexandria", "p": [{"n": "Jacques Roy", "r": "Mayor, Alexandria, LA"}]}, {"m": "Pineville", "p": [{"n": "Clarence Fields", "r": "Mayor, Pineville, LA"}]}], "slug": "rapides-parish"}, "22081": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.995}, {"d": "LA-06", "rep": "Cleo Fields", "w": 0.005}], "sh": [{"d": "LA House District 5", "rep": "Dennis Bamburg", "w": 0.999}], "ss": [{"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 1.0}]}, "munis": [], "slug": "red-river-parish"}, "22083": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.999}], "sh": [{"d": "LA House District 19", "rep": "Francis Thompson", "w": 1.0}], "ss": [{"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.939}, {"d": "LA Senate District 32", "rep": "Glen Womack", "w": 0.061}]}, "munis": [], "slug": "richland-parish"}, "22085": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.998}], "sh": [{"d": "LA House District 24", "rep": "Rodney Schamerhorn", "w": 0.517}, {"d": "LA House District 7", "rep": "Larry Bagley", "w": 0.482}], "ss": [{"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.999}]}, "munis": [], "slug": "sabine-parish"}, "22087": {"county": [], "districts": {"cd": [{"d": "LA-01", "rep": "Steve Scalise", "w": 0.296}, {"d": "LA-02", "rep": "Troy A. Carter", "w": 0.008}], "sh": [{"d": "LA House District 103", "rep": "Mike Bayham", "w": 0.286}], "ss": [{"d": "LA Senate District 1", "rep": "Bob Owen", "w": 0.269}, {"d": "LA Senate District 3", "rep": "Sidney Barthelemy", "w": 0.018}]}, "munis": [], "slug": "st-bernard-parish"}, "22089": {"county": [], "districts": {"cd": [{"d": "LA-02", "rep": "Troy A. Carter", "w": 0.721}, {"d": "LA-01", "rep": "Steve Scalise", "w": 0.278}], "sh": [{"d": "LA House District 56", "rep": "Beth Billings", "w": 0.882}, {"d": "LA House District 57", "rep": "Sylvia Taylor", "w": 0.118}], "ss": [{"d": "LA Senate District 19", "rep": "Greg Miller", "w": 1.0}]}, "munis": [], "slug": "st-charles-parish"}, "22091": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 1.0}], "sh": [{"d": "LA House District 72", "rep": "Robby Carter", "w": 0.999}], "ss": [{"d": "LA Senate District 6", "rep": "Rick Edmonds", "w": 0.762}, {"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.238}]}, "munis": [], "slug": "st-helena-parish"}, "22093": {"county": [], "districts": {"cd": [{"d": "LA-02", "rep": "Troy A. Carter", "w": 0.997}], "sh": [{"d": "LA House District 58", "rep": "Ken Brass", "w": 0.707}, {"d": "LA House District 81", "rep": "Jeff Wiley", "w": 0.293}], "ss": [{"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.694}, {"d": "LA Senate District 18", "rep": "Eddie Lambert", "w": 0.305}]}, "munis": [], "slug": "st-james-parish"}, "22095": {"county": [], "districts": {"cd": [{"d": "LA-02", "rep": "Troy A. Carter", "w": 0.998}], "sh": [{"d": "LA House District 57", "rep": "Sylvia Taylor", "w": 0.642}, {"d": "LA House District 58", "rep": "Ken Brass", "w": 0.356}], "ss": [{"d": "LA Senate District 19", "rep": "Greg Miller", "w": 0.738}, {"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.262}]}, "munis": [], "slug": "st-john-the-baptist-parish"}, "22097": {"county": [], "districts": {"cd": [{"d": "LA-06", "rep": "Cleo Fields", "w": 0.998}], "sh": [{"d": "LA House District 46", "rep": "Chad Boyer", "w": 0.453}, {"d": "LA House District 28", "rep": "Daryl Deshotel", "w": 0.212}, {"d": "LA House District 40", "rep": "Dustin Miller", "w": 0.211}, {"d": "LA House District 41", "rep": "Phillip DeVillier", "w": 0.123}], "ss": [{"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.738}, {"d": "LA Senate District 24", "rep": "Gerald Boudreaux", "w": 0.243}, {"d": "LA Senate District 28", "rep": "Heather Cloud", "w": 0.019}]}, "munis": [{"m": "Opelousas", "p": [{"n": "Julius Alsandor", "r": "Mayor, Opelousas, LA"}]}], "slug": "st-landry-parish"}, "22099": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.996}], "sh": [{"d": "LA House District 46", "rep": "Chad Boyer", "w": 0.467}, {"d": "LA House District 50", "rep": "Vinney St. Blanc", "w": 0.26}, {"d": "LA House District 96", "rep": "Marcus Bryant", "w": 0.234}, {"d": "LA House District 48", "rep": "Beau Beaullieu", "w": 0.039}], "ss": [{"d": "LA Senate District 22", "rep": "Blake Miguez", "w": 0.652}, {"d": "LA Senate District 21", "rep": "Robert Allain", "w": 0.26}, {"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.051}, {"d": "LA Senate District 24", "rep": "Gerald Boudreaux", "w": 0.037}]}, "munis": [], "slug": "st-martin-parish"}, "22101": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.659}], "sh": [{"d": "LA House District 50", "rep": "Vinney St. Blanc", "w": 0.559}, {"d": "LA House District 51", "rep": "Beryl Amedée", "w": 0.056}], "ss": [{"d": "LA Senate District 21", "rep": "Robert Allain", "w": 0.616}]}, "munis": [], "slug": "st-mary-parish"}, "22103": {"county": [], "districts": {"cd": [{"d": "LA-01", "rep": "Steve Scalise", "w": 0.991}], "sh": [{"d": "LA House District 74", "rep": "Peter Egan", "w": 0.393}, {"d": "LA House District 89", "rep": "Kim Carver", "w": 0.226}, {"d": "LA House District 104", "rep": "Jay Gallé", "w": 0.144}, {"d": "LA House District 76", "rep": "Stephanie Berault", "w": 0.118}, {"d": "LA House District 77", "rep": "Mark Wright", "w": 0.067}, {"d": "LA House District 90", "rep": "Brian Glorioso", "w": 0.042}], "ss": [{"d": "LA Senate District 1", "rep": "Bob Owen", "w": 0.296}, {"d": "LA Senate District 12", "rep": "Beth Mizell", "w": 0.282}, {"d": "LA Senate District 11", "rep": "Patrick McMath", "w": 0.205}, {"d": "LA Senate District 37", "rep": "Bill Wheat", "w": 0.029}]}, "munis": [{"m": "Slidell", "p": [{"n": "Greg Cromer", "r": "Mayor, Slidell, LA"}]}], "slug": "st-tammany-parish"}, "22105": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.684}, {"d": "LA-01", "rep": "Steve Scalise", "w": 0.315}], "sh": [{"d": "LA House District 73", "rep": "Kim Coates", "w": 0.399}, {"d": "LA House District 86", "rep": "Nicky Muscarello", "w": 0.291}, {"d": "LA House District 72", "rep": "Robby Carter", "w": 0.29}, {"d": "LA House District 95", "rep": "Shane Mack", "w": 0.019}], "ss": [{"d": "LA Senate District 12", "rep": "Beth Mizell", "w": 0.58}, {"d": "LA Senate District 37", "rep": "Bill Wheat", "w": 0.382}]}, "munis": [], "slug": "tangipahoa-parish"}, "22107": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.999}], "sh": [{"d": "LA House District 21", "rep": "Travis Johnson", "w": 0.999}], "ss": [{"d": "LA Senate District 34", "rep": "Katrina Jackson-Andrews", "w": 0.999}]}, "munis": [], "slug": "tensas-parish"}, "22109": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.727}], "sh": [{"d": "LA House District 53", "rep": "Jessica Domangue", "w": 0.491}, {"d": "LA House District 51", "rep": "Beryl Amedée", "w": 0.19}, {"d": "LA House District 52", "rep": "Jerome Zeringue", "w": 0.033}], "ss": [{"d": "LA Senate District 20", "rep": "Mike Fési", "w": 0.525}, {"d": "LA Senate District 21", "rep": "Robert Allain", "w": 0.189}]}, "munis": [], "slug": "terrebonne-parish"}, "22111": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.998}], "sh": [{"d": "LA House District 12", "rep": "Chris Turner", "w": 1.0}], "ss": [{"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 1.0}]}, "munis": [], "slug": "union-parish"}, "22113": {"county": [], "districts": {"cd": [{"d": "LA-03", "rep": "Clay Higgins", "w": 0.847}], "sh": [{"d": "LA House District 47", "rep": "Ryan Bourriaque", "w": 0.745}, {"d": "LA House District 49", "rep": "Jacob Landry", "w": 0.073}, {"d": "LA House District 31", "rep": "Troy Hebert", "w": 0.027}], "ss": [{"d": "LA Senate District 26", "rep": "Bob Hensgens", "w": 0.845}]}, "munis": [{"m": "Abbeville", "p": [{"n": "Roslyn R. White", "r": "Mayor, Abbeville, LA"}]}], "slug": "vermilion-parish"}, "22115": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.997}], "sh": [{"d": "LA House District 24", "rep": "Rodney Schamerhorn", "w": 0.825}, {"d": "LA House District 30", "rep": "Chuck Owen", "w": 0.175}], "ss": [{"d": "LA Senate District 30", "rep": "Mike Reese", "w": 1.0}]}, "munis": [], "slug": "vernon-parish"}, "22117": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.998}], "sh": [{"d": "LA House District 75", "rep": "John Wyble", "w": 0.999}], "ss": [{"d": "LA Senate District 12", "rep": "Beth Mizell", "w": 0.999}]}, "munis": [], "slug": "washington-parish"}, "22119": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 1.0}], "sh": [{"d": "LA House District 10", "rep": "Wayne McMahen", "w": 1.0}], "ss": [{"d": "LA Senate District 36", "rep": "Adam Bass", "w": 0.546}, {"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 0.275}, {"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.179}]}, "munis": [], "slug": "webster-parish"}, "22121": {"county": [], "districts": {"cd": [{"d": "LA-06", "rep": "Cleo Fields", "w": 0.999}], "sh": [{"d": "LA House District 18", "rep": "Jeremy LaCombe", "w": 0.744}, {"d": "LA House District 29", "rep": "Edmond Jordan", "w": 0.256}], "ss": [{"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.857}, {"d": "LA Senate District 2", "rep": "Ed Price", "w": 0.143}]}, "munis": [], "slug": "west-baton-rouge-parish"}, "22123": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 1.0}], "sh": [{"d": "LA House District 19", "rep": "Francis Thompson", "w": 1.0}], "ss": [{"d": "LA Senate District 33", "rep": "Stewart Cathey", "w": 0.999}]}, "munis": [], "slug": "west-carroll-parish"}, "22125": {"county": [], "districts": {"cd": [{"d": "LA-05", "rep": "Julia Letlow", "w": 0.996}], "sh": [{"d": "LA House District 18", "rep": "Jeremy LaCombe", "w": 1.0}], "ss": [{"d": "LA Senate District 32", "rep": "Glen Womack", "w": 0.885}, {"d": "LA Senate District 17", "rep": "Caleb Kleinpeter", "w": 0.115}]}, "munis": [], "slug": "west-feliciana-parish"}, "22127": {"county": [], "districts": {"cd": [{"d": "LA-04", "rep": "Mike Johnson", "w": 0.998}], "sh": [{"d": "LA House District 13", "rep": "Jack McFarland", "w": 1.0}], "ss": [{"d": "LA Senate District 35", "rep": "Jay Morris", "w": 0.412}, {"d": "LA Senate District 29", "rep": "Jay Luneau", "w": 0.331}, {"d": "LA Senate District 31", "rep": "Alan Seabaugh", "w": 0.257}]}, "munis": [], "slug": "winn-parish"}, "23001": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.998}], "sh": [{"d": "ME House District 91", "rep": "Josh Morris", "w": 0.214}, {"d": "ME House District 92", "rep": "Steve Wood", "w": 0.125}, {"d": "ME House District 90", "rep": "Laurel Libby", "w": 0.114}, {"d": "ME House District 76", "rep": "Sheila Lyman", "w": 0.105}, {"d": "ME House District 87", "rep": "David Boyer", "w": 0.105}, {"d": "ME House District 98", "rep": "Kilton Webb", "w": 0.081}, {"d": "ME House District 88", "rep": "Quentin Chapman", "w": 0.074}, {"d": "ME House District 97", "rep": "Rick Mason", "w": 0.045}, {"d": "ME House District 96", "rep": "Mike Lajoie", "w": 0.043}, {"d": "ME House District 56", "rep": "Randall Greenwood", "w": 0.034}, {"d": "ME House District 77", "rep": "Tammy Schmersal-Burgess", "w": 0.015}, {"d": "ME House District 93", "rep": "Julie McCabe", "w": 0.012}, {"d": "ME House District 86", "rep": "Rolf Olsen", "w": 0.012}, {"d": "ME House District 94", "rep": "Scott Harriman", "w": 0.011}, {"d": "ME House District 95", "rep": "Mana Abdi", "w": 0.006}], "ss": [{"d": "ME Senate District 17", "rep": "Jeff Timberlake", "w": 0.541}, {"d": "ME Senate District 20", "rep": "Bruce Bickford", "w": 0.305}, {"d": "ME Senate District 18", "rep": "Rick Bennett", "w": 0.082}, {"d": "ME Senate District 21", "rep": "Peggy Rotundo", "w": 0.071}]}, "munis": [{"m": "Auburn", "p": [{"n": "Jeffrey D. Harmon", "r": "Mayor, Auburn, ME"}]}, {"m": "Lewiston", "p": [{"n": "Carl L. Sheline", "r": "Mayor, Lewiston, ME"}]}], "slug": "androscoggin"}, "23003": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 1.0}], "sh": [{"d": "ME House District 1", "rep": "Lucien Daigle", "w": 0.488}, {"d": "ME House District 6", "rep": "Donald Ardell", "w": 0.168}, {"d": "ME House District 8", "rep": "Tracy Quint", "w": 0.127}, {"d": "ME House District 2", "rep": "Roger Albert", "w": 0.095}, {"d": "ME House District 3", "rep": "Mark Babin", "w": 0.065}, {"d": "ME House District 7", "rep": "Gregg Swallow", "w": 0.023}, {"d": "ME House District 4", "rep": "Timmy Guerrette", "w": 0.022}, {"d": "ME House District 5", "rep": "Joseph Underwood", "w": 0.011}], "ss": [{"d": "ME Senate District 1", "rep": "Sue Bernard", "w": 0.681}, {"d": "ME Senate District 2", "rep": "Trey Stewart", "w": 0.319}]}, "munis": [], "slug": "aroostook"}, "23005": {"county": [], "districts": {"cd": [{"d": "ME-01", "rep": "Chellie Pingree", "w": 0.844}], "sh": [{"d": "ME House District 84", "rep": "Mark Walker", "w": 0.113}, {"d": "ME House District 83", "rep": "Marygrace Cimino", "w": 0.083}, {"d": "ME House District 86", "rep": "Rolf Olsen", "w": 0.07}, {"d": "ME House District 104", "rep": "Amy Arata", "w": 0.057}, {"d": "ME House District 85", "rep": "Kim Pomerleau", "w": 0.053}, {"d": "ME House District 99", "rep": "Cheryl Golek", "w": 0.044}, {"d": "ME House District 105", "rep": "Annie Graham", "w": 0.038}, {"d": "ME House District 102", "rep": "Melanie Sachs", "w": 0.03}, {"d": "ME House District 110", "rep": "Christina Mitchell", "w": 0.023}, {"d": "ME House District 108", "rep": "Parnell Terry", "w": 0.022}, {"d": "ME House District 101", "rep": "Poppy Arford", "w": 0.022}, {"d": "ME House District 106", "rep": "Barbara Bagshaw", "w": 0.022}, {"d": "ME House District 111", "rep": "Amy Kuhn", "w": 0.022}, {"d": "ME House District 109", "rep": "Ellie Sato", "w": 0.02}, {"d": "ME House District 107", "rep": "Mark Cooper", "w": 0.019}, {"d": "ME House District 98", "rep": "Kilton Webb", "w": 0.019}, {"d": "ME House District 126", "rep": "Drew Gattine", "w": 0.017}, {"d": "ME House District 124", "rep": "Sophie Warren", "w": 0.015}, {"d": "ME House District 103", "rep": "Art Bell", "w": 0.012}, {"d": "ME House District 123", "rep": "Michelle Boyer", "w": 0.012}, {"d": "ME House District 125", "rep": "Kelly Murphy", "w": 0.011}, {"d": "ME House District 128", "rep": "Sue Salisbury", "w": 0.009}, {"d": "ME House District 100", "rep": "Dan Ankeles", "w": 0.009}, {"d": "ME House District 112", "rep": "Ed Crockett", "w": 0.006}, {"d": "ME House District 120", "rep": "Deqa Dhalac", "w": 0.006}, {"d": "ME House District 113", "rep": "Grayson Lookner", "w": 0.006}], "ss": [{"d": "ME Senate District 22", "rep": "Jim Libby", "w": 0.167}, {"d": "ME Senate District 23", "rep": "Mattie Daughtry", "w": 0.132}, {"d": "ME Senate District 26", "rep": "Tim Nangle", "w": 0.12}, {"d": "ME Senate District 25", "rep": "Teresa Pierce", "w": 0.108}, {"d": "ME Senate District 18", "rep": "Rick Bennett", "w": 0.083}, {"d": "ME Senate District 30", "rep": "Stacy Brenner", "w": 0.08}, {"d": "ME Senate District 20", "rep": "Bruce Bickford", "w": 0.039}, {"d": "ME Senate District 29", "rep": "Anne Carney", "w": 0.026}, {"d": "ME Senate District 27", "rep": "Jill Duson", "w": 0.016}, {"d": "ME Senate District 28", "rep": "Rachel Talbot Ross", "w": 0.009}]}, "munis": [{"m": "Portland", "p": [{"n": "Mark Dion", "r": "Mayor, Portland, ME"}]}, {"m": "South Portland", "p": [{"n": "Misha C. Pride", "r": "Mayor, South Portland, ME"}]}, {"m": "Westbrook", "p": [{"n": "David Morse", "r": "Mayor, Westbrook, ME"}]}], "slug": "cumberland"}, "23007": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.999}], "sh": [{"d": "ME House District 73", "rep": "Mike Soboleski", "w": 0.706}, {"d": "ME House District 74", "rep": "Randy Hall", "w": 0.186}, {"d": "ME House District 75", "rep": "Steve Bunker", "w": 0.053}, {"d": "ME House District 76", "rep": "Sheila Lyman", "w": 0.028}, {"d": "ME House District 58", "rep": "Sharon Frost", "w": 0.027}], "ss": [{"d": "ME Senate District 19", "rep": "Joe Martin", "w": 0.661}, {"d": "ME Senate District 5", "rep": "Russell Black", "w": 0.339}]}, "munis": [], "slug": "franklin"}, "23009": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.801}], "sh": [{"d": "ME House District 18", "rep": "Mathew McIntyre", "w": 0.358}, {"d": "ME House District 16", "rep": "Nina Milliken", "w": 0.086}, {"d": "ME House District 12", "rep": "Billy Bob Faulkingham", "w": 0.074}, {"d": "ME House District 17", "rep": "Steve Bishop", "w": 0.069}, {"d": "ME House District 13", "rep": "Russ White", "w": 0.061}, {"d": "ME House District 15", "rep": "Holly Eaton", "w": 0.053}, {"d": "ME House District 14", "rep": "Gary Friedmann", "w": 0.047}], "ss": [{"d": "ME Senate District 6", "rep": "Marianne Moore", "w": 0.422}, {"d": "ME Senate District 7", "rep": "Nicole Grohoski", "w": 0.271}, {"d": "ME Senate District 10", "rep": "David Haggan", "w": 0.055}]}, "munis": [], "slug": "hancock"}, "23011": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.563}, {"d": "ME-01", "rep": "Chellie Pingree", "w": 0.437}], "sh": [{"d": "ME House District 58", "rep": "Sharon Frost", "w": 0.2}, {"d": "ME House District 62", "rep": "Katrina Smith", "w": 0.097}, {"d": "ME House District 61", "rep": "Alicia Collins", "w": 0.095}, {"d": "ME House District 63", "rep": "Paul Flynn", "w": 0.092}, {"d": "ME House District 56", "rep": "Randall Greenwood", "w": 0.083}, {"d": "ME House District 57", "rep": "Tavis Hasenfus", "w": 0.072}, {"d": "ME House District 55", "rep": "Dan Shagoury", "w": 0.059}, {"d": "ME House District 53", "rep": "Michael Lemelin", "w": 0.058}, {"d": "ME House District 68", "rep": "Amanda Collamore", "w": 0.047}, {"d": "ME House District 60", "rep": "Bill Bridgeo", "w": 0.04}, {"d": "ME House District 66", "rep": "Bob Nutting", "w": 0.033}, {"d": "ME House District 67", "rep": "Shelley Rudnicki", "w": 0.031}, {"d": "ME House District 54", "rep": "Karen Montell", "w": 0.029}, {"d": "ME House District 91", "rep": "Josh Morris", "w": 0.027}, {"d": "ME House District 59", "rep": "Dave Rollins", "w": 0.021}, {"d": "ME House District 65", "rep": "Cassie Julia", "w": 0.009}, {"d": "ME House District 64", "rep": "Flavia DeBrito", "w": 0.007}], "ss": [{"d": "ME Senate District 15", "rep": "Dick Bradstreet", "w": 0.326}, {"d": "ME Senate District 14", "rep": "Craig Hickman", "w": 0.286}, {"d": "ME Senate District 16", "rep": "Scott Cyrway", "w": 0.127}, {"d": "ME Senate District 3", "rep": "Brad Farrin", "w": 0.089}, {"d": "ME Senate District 17", "rep": "Jeff Timberlake", "w": 0.075}, {"d": "ME Senate District 5", "rep": "Russell Black", "w": 0.06}, {"d": "ME Senate District 13", "rep": "Cameron Reny", "w": 0.037}]}, "munis": [{"m": "Augusta", "p": [{"n": "Mark O’Brien", "r": "Mayor, Augusta, ME"}]}, {"m": "Waterville", "p": [{"n": "Michael Morris", "r": "Mayor, Waterville, ME"}]}], "slug": "kennebec"}, "23013": {"county": [], "districts": {"cd": [{"d": "ME-01", "rep": "Chellie Pingree", "w": 0.406}], "sh": [{"d": "ME House District 44", "rep": "Bill Pluecker", "w": 0.095}, {"d": "ME House District 43", "rep": "Ann Matlack", "w": 0.075}, {"d": "ME House District 45", "rep": "Abden Simmons", "w": 0.05}, {"d": "ME House District 15", "rep": "Holly Eaton", "w": 0.04}, {"d": "ME House District 41", "rep": "Vicki Doudera", "w": 0.038}, {"d": "ME House District 42", "rep": "Valli Geiger", "w": 0.034}, {"d": "ME House District 40", "rep": "Mike Ray", "w": 0.03}], "ss": [{"d": "ME Senate District 12", "rep": "Pinny Beebe-Center", "w": 0.314}, {"d": "ME Senate District 13", "rep": "Cameron Reny", "w": 0.035}, {"d": "ME Senate District 7", "rep": "Nicole Grohoski", "w": 0.012}]}, "munis": [], "slug": "knox"}, "23015": {"county": [], "districts": {"cd": [{"d": "ME-01", "rep": "Chellie Pingree", "w": 0.754}], "sh": [{"d": "ME House District 47", "rep": "Wayne Farrin", "w": 0.222}, {"d": "ME House District 46", "rep": "Lydia Crafts", "w": 0.154}, {"d": "ME House District 45", "rep": "Abden Simmons", "w": 0.146}, {"d": "ME House District 48", "rep": "Holly Stover", "w": 0.134}, {"d": "ME House District 53", "rep": "Michael Lemelin", "w": 0.048}, {"d": "ME House District 62", "rep": "Katrina Smith", "w": 0.034}], "ss": [{"d": "ME Senate District 13", "rep": "Cameron Reny", "w": 0.691}, {"d": "ME Senate District 24", "rep": "Denise Tepler", "w": 0.048}]}, "munis": [], "slug": "lincoln"}, "23017": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.999}], "sh": [{"d": "ME House District 73", "rep": "Mike Soboleski", "w": 0.378}, {"d": "ME House District 81", "rep": "Peter Wood", "w": 0.151}, {"d": "ME House District 78", "rep": "Rachel Henderson", "w": 0.117}, {"d": "ME House District 82", "rep": "Nate Wadsworth", "w": 0.105}, {"d": "ME House District 77", "rep": "Tammy Schmersal-Burgess", "w": 0.087}, {"d": "ME House District 79", "rep": "Mike Lance", "w": 0.072}, {"d": "ME House District 80", "rep": "Caldwell Jackson", "w": 0.067}, {"d": "ME House District 83", "rep": "Marygrace Cimino", "w": 0.023}], "ss": [{"d": "ME Senate District 19", "rep": "Joe Martin", "w": 0.766}, {"d": "ME Senate District 18", "rep": "Rick Bennett", "w": 0.201}, {"d": "ME Senate District 22", "rep": "Jim Libby", "w": 0.033}]}, "munis": [], "slug": "oxford"}, "23019": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 1.0}], "sh": [{"d": "ME House District 8", "rep": "Tracy Quint", "w": 0.132}, {"d": "ME House District 28", "rep": "Irene Gifford", "w": 0.099}, {"d": "ME House District 18", "rep": "Mathew McIntyre", "w": 0.088}, {"d": "ME House District 27", "rep": "Gary Drinkwater", "w": 0.064}, {"d": "ME House District 32", "rep": "Steven Foster", "w": 0.056}, {"d": "ME House District 33", "rep": "Ken Fredette", "w": 0.047}, {"d": "ME House District 26", "rep": "Jim Dill", "w": 0.032}, {"d": "ME House District 19", "rep": "Dick Campbell", "w": 0.024}, {"d": "ME House District 34", "rep": "Abigail Griffin", "w": 0.021}, {"d": "ME House District 35", "rep": "Jim Thorne", "w": 0.021}, {"d": "ME House District 36", "rep": "Kim Haggan", "w": 0.019}, {"d": "ME House District 24", "rep": "Sean Faircloth", "w": 0.006}], "ss": [{"d": "ME Senate District 2", "rep": "Trey Stewart", "w": 0.44}, {"d": "ME Senate District 8", "rep": "Mike Tipping", "w": 0.303}, {"d": "ME Senate District 4", "rep": "Stacey Guerin", "w": 0.109}, {"d": "ME Senate District 10", "rep": "David Haggan", "w": 0.082}, {"d": "ME Senate District 3", "rep": "Brad Farrin", "w": 0.046}, {"d": "ME Senate District 9", "rep": "Joe Baldacci", "w": 0.02}]}, "munis": [], "slug": "penobscot"}, "23021": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 1.0}], "sh": [{"d": "ME House District 30", "rep": "Jim White", "w": 0.927}, {"d": "ME House District 31", "rep": "Chad Perkins", "w": 0.073}], "ss": [{"d": "ME Senate District 4", "rep": "Stacey Guerin", "w": 1.0}]}, "munis": [], "slug": "piscataquis"}, "23023": {"county": [], "districts": {"cd": [{"d": "ME-01", "rep": "Chellie Pingree", "w": 0.81}], "sh": [{"d": "ME House District 49", "rep": "Allison Hepler", "w": 0.354}, {"d": "ME House District 52", "rep": "Sally Cluchey", "w": 0.283}, {"d": "ME House District 51", "rep": "Rafael Macias", "w": 0.073}, {"d": "ME House District 98", "rep": "Kilton Webb", "w": 0.06}, {"d": "ME House District 50", "rep": "David Sinclair", "w": 0.036}], "ss": [{"d": "ME Senate District 24", "rep": "Denise Tepler", "w": 0.806}]}, "munis": [], "slug": "sagadahoc"}, "23025": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.999}], "sh": [{"d": "ME House District 72", "rep": "Liz Caruso", "w": 0.598}, {"d": "ME House District 73", "rep": "Mike Soboleski", "w": 0.235}, {"d": "ME House District 69", "rep": "Dean Cray", "w": 0.047}, {"d": "ME House District 71", "rep": "Jack Ducharme", "w": 0.035}, {"d": "ME House District 66", "rep": "Bob Nutting", "w": 0.02}, {"d": "ME House District 70", "rep": "Jennifer Poirier", "w": 0.015}, {"d": "ME House District 30", "rep": "Jim White", "w": 0.015}, {"d": "ME House District 67", "rep": "Shelley Rudnicki", "w": 0.013}, {"d": "ME House District 68", "rep": "Amanda Collamore", "w": 0.012}, {"d": "ME House District 74", "rep": "Randy Hall", "w": 0.011}], "ss": [{"d": "ME Senate District 5", "rep": "Russell Black", "w": 0.91}, {"d": "ME Senate District 3", "rep": "Brad Farrin", "w": 0.077}, {"d": "ME Senate District 16", "rep": "Scott Cyrway", "w": 0.013}]}, "munis": [], "slug": "somerset"}, "23027": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.887}], "sh": [{"d": "ME House District 38", "rep": "Ben Hymes", "w": 0.274}, {"d": "ME House District 40", "rep": "Mike Ray", "w": 0.213}, {"d": "ME House District 37", "rep": "Reagan Paul", "w": 0.146}, {"d": "ME House District 68", "rep": "Amanda Collamore", "w": 0.09}, {"d": "ME House District 39", "rep": "Jan Dodge", "w": 0.085}, {"d": "ME House District 62", "rep": "Katrina Smith", "w": 0.05}, {"d": "ME House District 63", "rep": "Paul Flynn", "w": 0.026}], "ss": [{"d": "ME Senate District 11", "rep": "Chip Curry", "w": 0.884}]}, "munis": [], "slug": "waldo"}, "23029": {"county": [], "districts": {"cd": [{"d": "ME-02", "rep": "Jared F. Golden", "w": 0.887}], "sh": [{"d": "ME House District 10", "rep": "Will Tuell", "w": 0.278}, {"d": "ME House District 8", "rep": "Tracy Quint", "w": 0.198}, {"d": "ME House District 18", "rep": "Mathew McIntyre", "w": 0.191}, {"d": "ME House District 11", "rep": "Tiffany Strout", "w": 0.1}, {"d": "ME House District 9", "rep": "Artie Mingo", "w": 0.09}, {"d": "ME House District 12", "rep": "Billy Bob Faulkingham", "w": 0.014}], "ss": [{"d": "ME Senate District 6", "rep": "Marianne Moore", "w": 0.872}]}, "munis": [], "slug": "washington"}, "23031": {"county": [], "districts": {"cd": [{"d": "ME-01", "rep": "Chellie Pingree", "w": 0.806}], "sh": [{"d": "ME House District 139", "rep": "Woody Woodsome", "w": 0.09}, {"d": "ME House District 144", "rep": "Jeff Adams", "w": 0.076}, {"d": "ME House District 141", "rep": "Lucas Lanigan", "w": 0.071}, {"d": "ME House District 138", "rep": "Mark Blier", "w": 0.068}, {"d": "ME House District 136", "rep": "John Eder", "w": 0.061}, {"d": "ME House District 140", "rep": "Wayne Parry", "w": 0.051}, {"d": "ME House District 148", "rep": "Thomas Lavigne", "w": 0.048}, {"d": "ME House District 137", "rep": "Nathan Carlow", "w": 0.043}, {"d": "ME House District 145", "rep": "Bob Foley", "w": 0.042}, {"d": "ME House District 146", "rep": "Gerry Runte", "w": 0.038}, {"d": "ME House District 149", "rep": "Tiffany Roberts", "w": 0.033}, {"d": "ME House District 134", "rep": "Traci Gere", "w": 0.031}, {"d": "ME House District 135", "rep": "Dan Sayre", "w": 0.024}, {"d": "ME House District 150", "rep": "Michele Meyer", "w": 0.022}, {"d": "ME House District 143", "rep": "Ann Fredericks", "w": 0.021}, {"d": "ME House District 151", "rep": "Kristi Mathieson", "w": 0.016}, {"d": "ME House District 133", "rep": "Marc Malon", "w": 0.015}, {"d": "ME House District 147", "rep": "Holly Sargent", "w": 0.014}, {"d": "ME House District 126", "rep": "Drew Gattine", "w": 0.011}, {"d": "ME House District 129", "rep": "Marshall Archer", "w": 0.01}, {"d": "ME House District 130", "rep": "Lynn Copeland", "w": 0.01}, {"d": "ME House District 131", "rep": "Lori Gramlich", "w": 0.006}, {"d": "ME House District 142", "rep": "Anne-Marie Mastraccio", "w": 0.005}], "ss": [{"d": "ME Senate District 22", "rep": "Jim Libby", "w": 0.213}, {"d": "ME Senate District 34", "rep": "Joe Rafferty", "w": 0.151}, {"d": "ME Senate District 33", "rep": "Matt Harrington", "w": 0.149}, {"d": "ME Senate District 32", "rep": "Henry Ingwersen", "w": 0.117}, {"d": "ME Senate District 35", "rep": "Mark Lawrence", "w": 0.107}, {"d": "ME Senate District 31", "rep": "Donna Bailey", "w": 0.07}]}, "munis": [{"m": "Biddeford", "p": [{"n": "Martin Grohman", "r": "Mayor, Biddeford, ME"}]}, {"m": "Saco", "p": [{"n": "Jodi MacPhail", "r": "Mayor, Saco, ME"}]}, {"m": "Sanford", "p": [{"n": "Becky A. Brink", "r": "Mayor, Sanford, ME"}]}], "slug": "york"}, "24001": {"county": [], "districts": {"cd": [{"d": "MD-06", "rep": "April McClain Delaney", "w": 0.998}], "sh": [{"d": "MD House District 1C", "rep": "Terry Baker", "w": 0.552}, {"d": "MD House District 1B", "rep": "Jason Buckel", "w": 0.268}, {"d": "MD House District 1A", "rep": "Jim Hinebaugh", "w": 0.178}], "ss": [{"d": "MD Senate District 1", "rep": "Mike McKay", "w": 0.999}]}, "munis": [{"m": "Frostburg", "p": [{"n": "W. Robert Flanigan", "r": "Mayor, Frostburg, MD"}]}], "slug": "allegany"}, "24003": {"county": [], "districts": {"cd": [{"d": "MD-03", "rep": "Sarah Elfreth", "w": 0.403}, {"d": "MD-05", "rep": "Steny H. Hoyer", "w": 0.369}], "sh": [{"d": "MD House District 30B", "rep": "Seth Howard", "w": 0.192}, {"d": "MD House District 31", "rep": "Brian Chisholm, LaToya Nkongolo, Nic Kipke", "w": 0.137}, {"d": "MD House District 33B", "rep": "Stuart Schmidt", "w": 0.127}, {"d": "MD House District 32", "rep": "Mark Chang, Mike Rogers, Sandy Bartlett", "w": 0.092}, {"d": "MD House District 30A", "rep": "Dana Jones, Dylan Behler", "w": 0.072}, {"d": "MD House District 21", "rep": "Ben Barnes, Joseline Peña-Melnyk, Mary Lehman", "w": 0.052}, {"d": "MD House District 33C", "rep": "Heather Bagnall Tudball", "w": 0.044}, {"d": "MD House District 12B", "rep": "Gary Simmons", "w": 0.028}, {"d": "MD House District 33A", "rep": "Andrew Pruski", "w": 0.022}], "ss": [{"d": "MD Senate District 30", "rep": "Shaneka Henson", "w": 0.264}, {"d": "MD Senate District 33", "rep": "Dawn Gile", "w": 0.192}, {"d": "MD Senate District 31", "rep": "Bryan Simonaire", "w": 0.137}, {"d": "MD Senate District 32", "rep": "Pam Beidle", "w": 0.092}, {"d": "MD Senate District 21", "rep": "Jim Rosapepe", "w": 0.052}, {"d": "MD Senate District 12", "rep": "Clarence Lam", "w": 0.028}]}, "munis": [], "slug": "anne-arundel"}, "24005": {"county": [], "districts": {"cd": [{"d": "MD-02", "rep": "Johnny Olszewski, Jr.", "w": 0.617}, {"d": "MD-01", "rep": "Andy Harris", "w": 0.214}, {"d": "MD-07", "rep": "Kweisi Mfume", "w": 0.093}], "sh": [{"d": "MD House District 42A", "rep": "Nino Mangione", "w": 0.335}, {"d": "MD House District 10", "rep": "Adrienne Jones, Jennifer White Holland, Scott Phillips", "w": 0.147}, {"d": "MD House District 7A", "rep": "Kathy Szeliga, Ryan Nawrocki", "w": 0.129}, {"d": "MD House District 6", "rep": "Bob Long, Ric Metzgar, Robin Grammer", "w": 0.077}, {"d": "MD House District 11B", "rep": "Dana Stein, Jon Cardin", "w": 0.074}, {"d": "MD House District 8", "rep": "Harry Bhandari, Kim Ross, Nick Allen", "w": 0.04}, {"d": "MD House District 11A", "rep": "Cheryl Pasteur", "w": 0.034}, {"d": "MD House District 44B", "rep": "Aletheia McCaskill, Sheila Ruth", "w": 0.031}, {"d": "MD House District 42B", "rep": "Michele Guyton", "w": 0.022}, {"d": "MD House District 44A", "rep": "Eric Ebersole", "w": 0.012}, {"d": "MD House District 43B", "rep": "Cathi Forbes", "w": 0.009}], "ss": [{"d": "MD Senate District 42", "rep": "Chris West", "w": 0.357}, {"d": "MD Senate District 10", "rep": "Ben Brooks", "w": 0.147}, {"d": "MD Senate District 7", "rep": "J.B. Jennings", "w": 0.129}, {"d": "MD Senate District 11", "rep": "Shelly Hettleman", "w": 0.107}, {"d": "MD Senate District 6", "rep": "Johnny Salling", "w": 0.077}, {"d": "MD Senate District 44", "rep": "Charles Sydnor", "w": 0.043}, {"d": "MD Senate District 8", "rep": "Carl Jackson", "w": 0.04}, {"d": "MD Senate District 43", "rep": "Mary Washington", "w": 0.009}]}, "munis": [], "slug": "baltimore"}, "24009": {"county": [], "districts": {"cd": [{"d": "MD-05", "rep": "Steny H. Hoyer", "w": 0.689}], "sh": [{"d": "MD House District 27C", "rep": "Mark Fisher", "w": 0.465}, {"d": "MD House District 27B", "rep": "Jeff Long", "w": 0.124}, {"d": "MD House District 29C", "rep": "Todd Morgan", "w": 0.099}], "ss": [{"d": "MD Senate District 27", "rep": "Kevin Harris", "w": 0.59}, {"d": "MD Senate District 29", "rep": "Jack Bailey", "w": 0.099}]}, "munis": [], "slug": "calvert"}, "24011": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.999}], "sh": [{"d": "MD House District 37B", "rep": "Chris Adams, Tom Hutchinson", "w": 0.648}, {"d": "MD House District 36", "rep": "Jay Jacobs, Jeff Ghrist, Steve Arentz", "w": 0.352}], "ss": [{"d": "MD Senate District 37", "rep": "Johnny Mautz", "w": 0.648}, {"d": "MD Senate District 36", "rep": "Steve Hershey", "w": 0.352}]}, "munis": [], "slug": "caroline"}, "24013": {"county": [], "districts": {"cd": [{"d": "MD-02", "rep": "Johnny Olszewski, Jr.", "w": 0.901}, {"d": "MD-03", "rep": "Sarah Elfreth", "w": 0.095}], "sh": [{"d": "MD House District 5", "rep": "April Rose, Chris Tomlinson, Christopher Bouchat", "w": 0.724}, {"d": "MD House District 42C", "rep": "Josh Stonko", "w": 0.275}], "ss": [{"d": "MD Senate District 5", "rep": "Justin Ready", "w": 0.724}, {"d": "MD Senate District 42", "rep": "Chris West", "w": 0.275}]}, "munis": [], "slug": "carroll"}, "24015": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.91}], "sh": [{"d": "MD House District 36", "rep": "Jay Jacobs, Jeff Ghrist, Steve Arentz", "w": 0.541}, {"d": "MD House District 35B", "rep": "Kevin Hornberger", "w": 0.302}, {"d": "MD House District 35A", "rep": "Mike Griffith, Teresa Reilly", "w": 0.058}], "ss": [{"d": "MD Senate District 36", "rep": "Steve Hershey", "w": 0.541}, {"d": "MD Senate District 35", "rep": "Jason Gallion", "w": 0.359}]}, "munis": [], "slug": "cecil"}, "24017": {"county": [], "districts": {"cd": [{"d": "MD-05", "rep": "Steny H. Hoyer", "w": 0.755}], "sh": [{"d": "MD House District 28", "rep": "C.T. Wilson, Debra Davis, Edith Patterson", "w": 0.666}, {"d": "MD House District 27A", "rep": "Darrell Odom", "w": 0.087}], "ss": [{"d": "MD Senate District 28", "rep": "Arthur Ellis", "w": 0.666}, {"d": "MD Senate District 27", "rep": "Kevin Harris", "w": 0.087}]}, "munis": [], "slug": "charles"}, "24019": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.658}], "sh": [{"d": "MD House District 37B", "rep": "Chris Adams, Tom Hutchinson", "w": 0.513}, {"d": "MD House District 37A", "rep": "Sheree Sample-Hughes", "w": 0.097}], "ss": [{"d": "MD Senate District 37", "rep": "Johnny Mautz", "w": 0.609}]}, "munis": [], "slug": "dorchester"}, "24021": {"county": [], "districts": {"cd": [{"d": "MD-06", "rep": "April McClain Delaney", "w": 0.997}], "sh": [{"d": "MD House District 4", "rep": "April Miller, Barrie Ciliberti, Jesse Pippy", "w": 0.784}, {"d": "MD House District 2A", "rep": "William Valentine, William Wivell", "w": 0.117}, {"d": "MD House District 3", "rep": "Karen Simpson, Ken Kerr, Kris Fair", "w": 0.097}], "ss": [{"d": "MD Senate District 4", "rep": "Bill Folden", "w": 0.784}, {"d": "MD Senate District 2", "rep": "Paul Corderman", "w": 0.117}, {"d": "MD Senate District 3", "rep": "Karen Young", "w": 0.097}]}, "munis": [{"m": "Frederick", "p": [{"n": "Michael O'Connor", "r": "Mayor, Frederick, MD"}]}], "slug": "frederick"}, "24023": {"county": [], "districts": {"cd": [{"d": "MD-06", "rep": "April McClain Delaney", "w": 0.998}], "sh": [{"d": "MD House District 1A", "rep": "Jim Hinebaugh", "w": 0.999}], "ss": [{"d": "MD Senate District 1", "rep": "Mike McKay", "w": 0.999}]}, "munis": [], "slug": "garrett"}, "24025": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.857}], "sh": [{"d": "MD House District 35A", "rep": "Mike Griffith, Teresa Reilly", "w": 0.41}, {"d": "MD House District 34A", "rep": "Andre Johnson, Steve Johnson", "w": 0.221}, {"d": "MD House District 7B", "rep": "Lauren Arikan", "w": 0.192}, {"d": "MD House District 34B", "rep": "Susan McComas", "w": 0.034}], "ss": [{"d": "MD Senate District 35", "rep": "Jason Gallion", "w": 0.41}, {"d": "MD Senate District 34", "rep": "Mary-Dulany James", "w": 0.255}, {"d": "MD Senate District 7", "rep": "J.B. Jennings", "w": 0.192}]}, "munis": [], "slug": "harford"}, "24027": {"county": [], "districts": {"cd": [{"d": "MD-03", "rep": "Sarah Elfreth", "w": 0.994}], "sh": [{"d": "MD House District 9A", "rep": "Chao Wu, Natalie Ziegler", "w": 0.541}, {"d": "MD House District 13", "rep": "Gabriel Moreno, Jen Terrasa, Pam Guzzone", "w": 0.269}, {"d": "MD House District 12A", "rep": "Jessica Feldmark, Terri Hill", "w": 0.11}, {"d": "MD House District 9B", "rep": "Courtney Watson", "w": 0.079}], "ss": [{"d": "MD Senate District 9", "rep": "Katie Hester", "w": 0.62}, {"d": "MD Senate District 13", "rep": "Guy Guzzone", "w": 0.269}, {"d": "MD Senate District 12", "rep": "Clarence Lam", "w": 0.11}]}, "munis": [], "slug": "howard"}, "24029": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.729}], "sh": [{"d": "MD House District 36", "rep": "Jay Jacobs, Jeff Ghrist, Steve Arentz", "w": 0.725}], "ss": [{"d": "MD Senate District 36", "rep": "Steve Hershey", "w": 0.725}]}, "munis": [], "slug": "kent"}, "24031": {"county": [], "districts": {"cd": [{"d": "MD-08", "rep": "Jamie Raskin", "w": 0.549}, {"d": "MD-06", "rep": "April McClain Delaney", "w": 0.419}, {"d": "MD-04", "rep": "Glenn Ivey", "w": 0.029}], "sh": [{"d": "MD House District 15", "rep": "David Fraser-Hidalgo, Lily Qi, Linda Foley", "w": 0.361}, {"d": "MD House District 14", "rep": "Anne Kaiser, Bernice Mireku-North, Pam Queen", "w": 0.233}, {"d": "MD House District 16", "rep": "Marc Korman, Sarah Wolek, Teresa Woorman", "w": 0.081}, {"d": "MD House District 19", "rep": "Bonnie Cullison, Charlotte Crutchfield, Vaughn Stewart", "w": 0.078}, {"d": "MD House District 9A", "rep": "Chao Wu, Natalie Ziegler", "w": 0.062}, {"d": "MD House District 39", "rep": "Gabriel Acevero, Greg Wims, Lesley Lopez", "w": 0.057}, {"d": "MD House District 17", "rep": "Joe Vogel, Julie Palakovich Carr, Ryan Spiegel", "w": 0.049}, {"d": "MD House District 18", "rep": "Aaron Kaufman, Emily Shetty, Jared Solomon", "w": 0.041}, {"d": "MD House District 20", "rep": "David Moon, Jheanelle Wilkins, Lorig Charkoudian", "w": 0.038}], "ss": [{"d": "MD Senate District 15", "rep": "Brian Feldman", "w": 0.361}, {"d": "MD Senate District 14", "rep": "Craig Zucker", "w": 0.233}, {"d": "MD Senate District 16", "rep": "Sara Love", "w": 0.081}, {"d": "MD Senate District 19", "rep": "Ben Kramer", "w": 0.078}, {"d": "MD Senate District 9", "rep": "Katie Hester", "w": 0.062}, {"d": "MD Senate District 39", "rep": "Nancy King", "w": 0.057}, {"d": "MD Senate District 17", "rep": "Cheryl Kagan", "w": 0.049}, {"d": "MD Senate District 18", "rep": "Jeff Waldstreicher", "w": 0.041}, {"d": "MD Senate District 20", "rep": "Will Smith", "w": 0.038}]}, "munis": [{"m": "Gaithersburg", "p": [{"n": "Jud Ashman", "r": "Mayor, Gaithersburg, MD"}]}, {"m": "Rockville", "p": [{"n": "Monique Ashton", "r": "Mayor, Rockville, MD"}]}], "slug": "montgomery"}, "24033": {"county": [], "districts": {"cd": [{"d": "MD-05", "rep": "Steny H. Hoyer", "w": 0.581}, {"d": "MD-04", "rep": "Glenn Ivey", "w": 0.419}], "sh": [{"d": "MD House District 23", "rep": "Adrian Boafo, Kym Taylor, Marvin Holmes", "w": 0.228}, {"d": "MD House District 27B", "rep": "Jeff Long", "w": 0.188}, {"d": "MD House District 26", "rep": "Jamila Woods, Kris Valderrama, Veronica Turner", "w": 0.152}, {"d": "MD House District 25", "rep": "Denise Roberts, Karen Toles, Kent Roberson", "w": 0.132}, {"d": "MD House District 24", "rep": "Andrea Harrison, Derrick Coley, Tiffany Alston", "w": 0.077}, {"d": "MD House District 21", "rep": "Ben Barnes, Joseline Peña-Melnyk, Mary Lehman", "w": 0.076}, {"d": "MD House District 22", "rep": "Anne Healey, Ashanti Martínez, Nicole Williams", "w": 0.06}, {"d": "MD House District 27A", "rep": "Darrell Odom", "w": 0.048}, {"d": "MD House District 47A", "rep": "Diana Fennell, Julian Ivey", "w": 0.029}, {"d": "MD House District 47B", "rep": "Deni Taveras", "w": 0.009}], "ss": [{"d": "MD Senate District 27", "rep": "Kevin Harris", "w": 0.236}, {"d": "MD Senate District 23", "rep": "Ron Watson", "w": 0.228}, {"d": "MD Senate District 26", "rep": "Anthony Muse", "w": 0.152}, {"d": "MD Senate District 25", "rep": "Nick Charles", "w": 0.132}, {"d": "MD Senate District 24", "rep": "Joanne Benson", "w": 0.077}, {"d": "MD Senate District 21", "rep": "Jim Rosapepe", "w": 0.076}, {"d": "MD Senate District 22", "rep": "Alonzo Washington", "w": 0.06}, {"d": "MD Senate District 47", "rep": "Malcolm Augustine", "w": 0.037}]}, "munis": [{"m": "Bowie", "p": [{"n": "Tim Adams", "r": "Mayor, Bowie, MD"}]}], "slug": "prince-george-s"}, "24035": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.782}], "sh": [{"d": "MD House District 36", "rep": "Jay Jacobs, Jeff Ghrist, Steve Arentz", "w": 0.772}], "ss": [{"d": "MD Senate District 36", "rep": "Steve Hershey", "w": 0.772}]}, "munis": [], "slug": "queen-anne-s"}, "24037": {"county": [], "districts": {"cd": [{"d": "MD-05", "rep": "Steny H. Hoyer", "w": 0.53}], "sh": [{"d": "MD House District 29A", "rep": "Matt Morgan", "w": 0.28}, {"d": "MD House District 29C", "rep": "Todd Morgan", "w": 0.13}, {"d": "MD House District 29B", "rep": "Brian Crosby", "w": 0.117}], "ss": [{"d": "MD Senate District 29", "rep": "Jack Bailey", "w": 0.527}]}, "munis": [], "slug": "st-mary-s"}, "24039": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.605}], "sh": [{"d": "MD House District 38A", "rep": "Kevin Anderson", "w": 0.572}], "ss": [{"d": "MD Senate District 38", "rep": "Mary Beth Carozza", "w": 0.572}]}, "munis": [], "slug": "somerset"}, "24041": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.671}], "sh": [{"d": "MD House District 37B", "rep": "Chris Adams, Tom Hutchinson", "w": 0.645}], "ss": [{"d": "MD Senate District 37", "rep": "Johnny Mautz", "w": 0.645}]}, "munis": [], "slug": "talbot"}, "24043": {"county": [], "districts": {"cd": [{"d": "MD-06", "rep": "April McClain Delaney", "w": 0.998}], "sh": [{"d": "MD House District 2A", "rep": "William Valentine, William Wivell", "w": 0.542}, {"d": "MD House District 1C", "rep": "Terry Baker", "w": 0.43}, {"d": "MD House District 2B", "rep": "Matthew Schindler", "w": 0.027}], "ss": [{"d": "MD Senate District 2", "rep": "Paul Corderman", "w": 0.568}, {"d": "MD Senate District 1", "rep": "Mike McKay", "w": 0.43}]}, "munis": [{"m": "Hagerstown", "p": [{"n": "William McIntire", "r": "Mayor, Hagerstown, MD"}]}], "slug": "washington"}, "24045": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.966}], "sh": [{"d": "MD House District 37B", "rep": "Chris Adams, Tom Hutchinson", "w": 0.391}, {"d": "MD House District 38C", "rep": "Wayne Hartman", "w": 0.29}, {"d": "MD House District 37A", "rep": "Sheree Sample-Hughes", "w": 0.144}, {"d": "MD House District 38B", "rep": "Barry Beauchamp", "w": 0.075}, {"d": "MD House District 38A", "rep": "Kevin Anderson", "w": 0.061}], "ss": [{"d": "MD Senate District 37", "rep": "Johnny Mautz", "w": 0.535}, {"d": "MD Senate District 38", "rep": "Mary Beth Carozza", "w": 0.426}]}, "munis": [{"m": "Salisbury", "p": [{"n": "Randolph J. Taylor", "r": "Mayor, Salisbury, MD"}]}], "slug": "wicomico"}, "24047": {"county": [], "districts": {"cd": [{"d": "MD-01", "rep": "Andy Harris", "w": 0.841}], "sh": [{"d": "MD House District 38A", "rep": "Kevin Anderson", "w": 0.481}, {"d": "MD House District 38C", "rep": "Wayne Hartman", "w": 0.359}], "ss": [{"d": "MD Senate District 38", "rep": "Mary Beth Carozza", "w": 0.841}]}, "munis": [], "slug": "worcester"}, "24510": {"county": [], "districts": {"cd": [{"d": "MD-07", "rep": "Kweisi Mfume", "w": 0.872}, {"d": "MD-02", "rep": "Johnny Olszewski, Jr.", "w": 0.066}], "sh": [{"d": "MD House District 46", "rep": "Luke Clippinger, Mark Edelson, Robbyn Lewis", "w": 0.287}, {"d": "MD House District 41", "rep": "Malcolm Ruff, Sandy Rosenberg, Sean Stinnett", "w": 0.226}, {"d": "MD House District 45", "rep": "Caylin Young, Jackie Addison, Stephanie Smith", "w": 0.176}, {"d": "MD House District 40", "rep": "Frank Conaway, Marlon Amprey, Melissa Wells", "w": 0.156}, {"d": "MD House District 43A", "rep": "Elizabeth Embry, Regina Boyce", "w": 0.093}], "ss": [{"d": "MD Senate District 46", "rep": "Bill Ferguson", "w": 0.287}, {"d": "MD Senate District 41", "rep": "Dalya Attar", "w": 0.226}, {"d": "MD Senate District 45", "rep": "Cory McCray", "w": 0.176}, {"d": "MD Senate District 40", "rep": "Antonio Hayes", "w": 0.156}, {"d": "MD Senate District 43", "rep": "Mary Washington", "w": 0.093}]}, "munis": [], "slug": "baltimore-city"}, "25001": {"county": [], "districts": {"cd": [{"d": "MA-09", "rep": "William R. Keating", "w": 0.349}], "sh": [], "ss": []}, "munis": [], "slug": "barnstable"}, "25003": {"county": [], "districts": {"cd": [{"d": "MA-01", "rep": "Richard E. Neal", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "berkshire"}, "25005": {"county": [], "districts": {"cd": [{"d": "MA-04", "rep": "Jake Auchincloss", "w": 0.545}, {"d": "MA-09", "rep": "William R. Keating", "w": 0.267}, {"d": "MA-08", "rep": "Stephen F. Lynch", "w": 0.043}], "sh": [], "ss": []}, "munis": [{"m": "Fall River", "p": [{"n": "Paul Coogan", "r": "Mayor, Fall River, MA"}]}, {"m": "New Bedford", "p": [{"n": "Jonathan F. Mitchell", "r": "Mayor, New Bedford, MA"}]}, {"m": "Taunton", "p": [{"n": "Shaunna O'Connell", "r": "Mayor, Taunton, MA"}]}], "slug": "bristol"}, "25007": {"county": [], "districts": {"cd": [{"d": "MA-09", "rep": "William R. Keating", "w": 0.253}], "sh": [], "ss": []}, "munis": [], "slug": "dukes"}, "25009": {"county": [], "districts": {"cd": [{"d": "MA-06", "rep": "Seth Moulton", "w": 0.566}, {"d": "MA-03", "rep": "Lori Trahan", "w": 0.08}], "sh": [], "ss": []}, "munis": [{"m": "Amesbury", "p": [{"n": "Kassandra Gove", "r": "Mayor, Amesbury, MA"}]}, {"m": "Beverly", "p": [{"n": "Michael P. Cahill", "r": "Mayor, Beverly, MA"}]}, {"m": "Haverhill", "p": [{"n": "Melinda E. Barrett", "r": "Mayor, Haverhill, MA"}]}, {"m": "Lawrence", "p": [{"n": "Q124247832", "r": "Mayor, Lawrence, MA"}]}, {"m": "Lynn", "p": [{"n": "Jared C. Nicholson", "r": "Mayor, Lynn, MA"}]}, {"m": "Methuen", "p": [{"n": "Q131176725", "r": "Mayor, Methuen, MA"}]}, {"m": "Peabody", "p": [{"n": "Edward Bettencourt", "r": "Mayor, Peabody, MA"}]}, {"m": "Salem", "p": [{"n": "Dominick Pangallo", "r": "Mayor, Salem, MA"}]}], "slug": "essex"}, "25011": {"county": [], "districts": {"cd": [{"d": "MA-02", "rep": "James P. McGovern", "w": 0.872}, {"d": "MA-01", "rep": "Richard E. Neal", "w": 0.128}], "sh": [], "ss": []}, "munis": [], "slug": "franklin"}, "25013": {"county": [], "districts": {"cd": [{"d": "MA-01", "rep": "Richard E. Neal", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Holyoke", "p": [{"n": "Joshua A. Garcia", "r": "Mayor, Holyoke, MA"}]}, {"m": "Springfield", "p": [{"n": "Domenic Sarno", "r": "Mayor, Springfield, MA"}]}], "slug": "hampden"}, "25015": {"county": [], "districts": {"cd": [{"d": "MA-01", "rep": "Richard E. Neal", "w": 0.569}, {"d": "MA-02", "rep": "James P. McGovern", "w": 0.431}], "sh": [], "ss": []}, "munis": [{"m": "Northampton", "p": [{"n": "Gina-Louise Sciarra", "r": "Mayor, Northampton, MA"}]}], "slug": "hampshire"}, "25017": {"county": [], "districts": {"cd": [{"d": "MA-03", "rep": "Lori Trahan", "w": 0.499}, {"d": "MA-05", "rep": "Katherine M. Clark", "w": 0.252}, {"d": "MA-06", "rep": "Seth Moulton", "w": 0.124}, {"d": "MA-02", "rep": "James P. McGovern", "w": 0.071}, {"d": "MA-04", "rep": "Jake Auchincloss", "w": 0.041}, {"d": "MA-07", "rep": "Ayanna Pressley", "w": 0.014}], "sh": [], "ss": []}, "munis": [{"m": "Cambridge", "p": [{"n": "Denise Simmons", "r": "Mayor, Cambridge, MA"}]}, {"m": "Lowell", "p": [{"n": "Sokhary Chau", "r": "Mayor, Lowell, MA"}]}, {"m": "Malden", "p": [{"n": "Gary Christenson", "r": "Mayor, Malden, MA"}]}, {"m": "Medford", "p": [{"n": "Breanna Lungo-Koehn", "r": "Mayor, Medford, MA"}]}, {"m": "Newton", "p": [{"n": "Ruthanne Fuller", "r": "Mayor, Newton, MA"}]}, {"m": "Somerville", "p": [{"n": "Katjana Ballantyne", "r": "Mayor, Somerville, MA"}]}, {"m": "Waltham", "p": [{"n": "Jeannette A. McCarthy", "r": "Mayor, Waltham, MA"}]}], "slug": "middlesex"}, "25019": {"county": [], "districts": {"cd": [{"d": "MA-09", "rep": "William R. Keating", "w": 0.196}], "sh": [], "ss": []}, "munis": [], "slug": "nantucket"}, "25021": {"county": [], "districts": {"cd": [{"d": "MA-04", "rep": "Jake Auchincloss", "w": 0.463}, {"d": "MA-08", "rep": "Stephen F. Lynch", "w": 0.373}, {"d": "MA-07", "rep": "Ayanna Pressley", "w": 0.039}, {"d": "MA-02", "rep": "James P. McGovern", "w": 0.026}, {"d": "MA-09", "rep": "William R. Keating", "w": 0.023}, {"d": "MA-05", "rep": "Katherine M. Clark", "w": 0.017}], "sh": [], "ss": []}, "munis": [{"m": "Quincy", "p": [{"n": "Thomas P. Koch", "r": "Mayor, Quincy, MA"}]}, {"m": "Weymouth Town", "p": [{"n": "Robert L. Hedlund", "r": "Mayor, Weymouth, MA"}]}], "slug": "norfolk"}, "25023": {"county": [], "districts": {"cd": [{"d": "MA-09", "rep": "William R. Keating", "w": 0.514}, {"d": "MA-08", "rep": "Stephen F. Lynch", "w": 0.097}, {"d": "MA-04", "rep": "Jake Auchincloss", "w": 0.033}], "sh": [], "ss": []}, "munis": [{"m": "Brockton", "p": [{"n": "Robert F. Sullivan", "r": "Mayor, Brockton, MA"}]}], "slug": "plymouth"}, "25025": {"county": [], "districts": {"cd": [{"d": "MA-07", "rep": "Ayanna Pressley", "w": 0.308}, {"d": "MA-08", "rep": "Stephen F. Lynch", "w": 0.178}, {"d": "MA-05", "rep": "Katherine M. Clark", "w": 0.083}], "sh": [], "ss": []}, "munis": [{"m": "Boston", "p": [{"n": "Michelle Wu", "r": "Mayor, Boston, MA"}]}, {"m": "Revere", "p": [{"n": "Patrick M. Keefe Jr.", "r": "Mayor, Revere, MA"}]}], "slug": "suffolk"}, "25027": {"county": [], "districts": {"cd": [{"d": "MA-02", "rep": "James P. McGovern", "w": 0.587}, {"d": "MA-01", "rep": "Richard E. Neal", "w": 0.195}, {"d": "MA-03", "rep": "Lori Trahan", "w": 0.184}, {"d": "MA-04", "rep": "Jake Auchincloss", "w": 0.034}], "sh": [], "ss": []}, "munis": [{"m": "Worcester", "p": [{"n": "Joseph Petty", "r": "Mayor, Worcester, MA"}]}], "slug": "worcester"}, "26001": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.388}], "sh": [{"d": "MI House District 106", "rep": "Cam Cavitt", "w": 0.388}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.388}]}, "munis": [], "slug": "alcona"}, "26003": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.186}], "sh": [{"d": "MI House District 109", "rep": "Karl Bohnak", "w": 0.184}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.184}]}, "munis": [], "slug": "alger"}, "26005": {"county": [], "districts": {"cd": [{"d": "MI-04", "rep": "Bill Huizenga", "w": 0.46}], "sh": [{"d": "MI House District 43", "rep": "Rachelle Smit", "w": 0.271}, {"d": "MI House District 39", "rep": "Pauline Wendzel", "w": 0.071}, {"d": "MI House District 38", "rep": "Joey Andrews", "w": 0.054}, {"d": "MI House District 42", "rep": "Matt Hall", "w": 0.027}, {"d": "MI House District 79", "rep": "Angela Rigas", "w": 0.019}, {"d": "MI House District 86", "rep": "Nancy DeBoer", "w": 0.016}], "ss": [{"d": "MI Senate District 20", "rep": "Aric Nesbitt", "w": 0.29}, {"d": "MI Senate District 18", "rep": "Thomas Albert", "w": 0.138}, {"d": "MI Senate District 31", "rep": "Roger Victory", "w": 0.032}]}, "munis": [], "slug": "allegan"}, "26007": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.35}], "sh": [{"d": "MI House District 106", "rep": "Cam Cavitt", "w": 0.35}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.35}]}, "munis": [], "slug": "alpena"}, "26009": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.873}], "sh": [{"d": "MI House District 104", "rep": "J.R. Roth", "w": 0.637}, {"d": "MI House District 105", "rep": "Ken Borton", "w": 0.235}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.872}]}, "munis": [], "slug": "antrim"}, "26011": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.539}], "sh": [{"d": "MI House District 99", "rep": "Mike Hoadley", "w": 0.54}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.54}]}, "munis": [], "slug": "arenac"}, "26013": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.856}], "sh": [{"d": "MI House District 109", "rep": "Karl Bohnak", "w": 0.858}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.858}]}, "munis": [], "slug": "baraga"}, "26015": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 43", "rep": "Rachelle Smit", "w": 0.439}, {"d": "MI House District 78", "rep": "Gina Johnsen", "w": 0.374}, {"d": "MI House District 79", "rep": "Angela Rigas", "w": 0.188}], "ss": [{"d": "MI Senate District 18", "rep": "Thomas Albert", "w": 1.0}]}, "munis": [], "slug": "barry"}, "26017": {"county": [], "districts": {"cd": [{"d": "MI-08", "rep": "Kristen McDonald Rivet", "w": 0.712}], "sh": [{"d": "MI House District 96", "rep": "Timmy Beson", "w": 0.481}, {"d": "MI House District 99", "rep": "Mike Hoadley", "w": 0.174}, {"d": "MI House District 97", "rep": "Matt Bierlein", "w": 0.055}], "ss": [{"d": "MI Senate District 35", "rep": "Chedrick Greene", "w": 0.428}, {"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 0.17}, {"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.112}]}, "munis": [{"m": "Bay City", "p": [{"n": "Christopher Girard", "r": "Mayor, Bay City, MI"}]}], "slug": "bay"}, "26019": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.404}], "sh": [{"d": "MI House District 104", "rep": "J.R. Roth", "w": 0.32}, {"d": "MI House District 103", "rep": "Betsy Coffia", "w": 0.085}], "ss": [{"d": "MI Senate District 32", "rep": "Jon Bumstead", "w": 0.404}]}, "munis": [], "slug": "benzie"}, "26021": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 0.279}, {"d": "MI-04", "rep": "Bill Huizenga", "w": 0.087}], "sh": [{"d": "MI House District 37", "rep": "Brad Paquette", "w": 0.226}, {"d": "MI House District 38", "rep": "Joey Andrews", "w": 0.096}, {"d": "MI House District 39", "rep": "Pauline Wendzel", "w": 0.045}], "ss": [{"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 0.221}, {"d": "MI Senate District 20", "rep": "Aric Nesbitt", "w": 0.146}]}, "munis": [], "slug": "berrien"}, "26023": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 1.0}], "sh": [{"d": "MI House District 35", "rep": "Jennifer Wortz", "w": 1.0}], "ss": [{"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 1.0}]}, "munis": [], "slug": "branch"}, "26025": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 0.798}, {"d": "MI-04", "rep": "Bill Huizenga", "w": 0.202}], "sh": [{"d": "MI House District 45", "rep": "Sarah Lightner", "w": 0.644}, {"d": "MI House District 44", "rep": "Steve Frisbie", "w": 0.356}], "ss": [{"d": "MI Senate District 18", "rep": "Thomas Albert", "w": 0.606}, {"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 0.394}]}, "munis": [{"m": "Battle Creek", "p": [{"n": "Mark Behnke", "r": "Mayor, Battle Creek, MI"}]}], "slug": "calhoun"}, "26027": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 1.0}], "sh": [{"d": "MI House District 36", "rep": "Steve Carra", "w": 0.675}, {"d": "MI House District 37", "rep": "Brad Paquette", "w": 0.325}], "ss": [{"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 1.0}]}, "munis": [], "slug": "cass"}, "26029": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.329}], "sh": [{"d": "MI House District 107", "rep": "Parker Fairbairn", "w": 0.325}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.325}]}, "munis": [], "slug": "charlevoix"}, "26031": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.9}], "sh": [{"d": "MI House District 106", "rep": "Cam Cavitt", "w": 0.885}, {"d": "MI House District 107", "rep": "Parker Fairbairn", "w": 0.013}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.898}]}, "munis": [], "slug": "cheboygan"}, "26033": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.617}], "sh": [{"d": "MI House District 108", "rep": "Dave Prestin", "w": 0.365}, {"d": "MI House District 107", "rep": "Parker Fairbairn", "w": 0.24}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.344}, {"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.261}]}, "munis": [], "slug": "chippewa"}, "26035": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 100", "rep": "Tom Kunse", "w": 0.749}, {"d": "MI House District 99", "rep": "Mike Hoadley", "w": 0.251}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 1.0}]}, "munis": [], "slug": "clare"}, "26037": {"county": [], "districts": {"cd": [{"d": "MI-07", "rep": "Tom Barrett", "w": 1.0}], "sh": [{"d": "MI House District 93", "rep": "Tim Kelly", "w": 0.375}, {"d": "MI House District 75", "rep": "Penelope Tsernoglou", "w": 0.318}, {"d": "MI House District 77", "rep": "Emily Dievendorf", "w": 0.307}], "ss": [{"d": "MI Senate District 28", "rep": "Sam Singh", "w": 0.876}, {"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 0.124}]}, "munis": [], "slug": "clinton"}, "26039": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 105", "rep": "Ken Borton", "w": 1.0}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "crawford"}, "26041": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.603}], "sh": [{"d": "MI House District 108", "rep": "Dave Prestin", "w": 0.596}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.596}]}, "munis": [{"m": "Escanaba", "p": [{"n": "Mark Ammel", "r": "Mayor, Escanaba, MI"}]}], "slug": "delta"}, "26043": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.999}], "sh": [{"d": "MI House District 109", "rep": "Karl Bohnak", "w": 0.686}, {"d": "MI House District 110", "rep": "Greg Markkanen", "w": 0.313}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 1.0}]}, "munis": [], "slug": "dickinson"}, "26045": {"county": [], "districts": {"cd": [{"d": "MI-07", "rep": "Tom Barrett", "w": 0.839}, {"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.161}], "sh": [{"d": "MI House District 76", "rep": "Angela Witwer", "w": 0.733}, {"d": "MI House District 78", "rep": "Gina Johnsen", "w": 0.19}, {"d": "MI House District 43", "rep": "Rachelle Smit", "w": 0.063}, {"d": "MI House District 77", "rep": "Emily Dievendorf", "w": 0.014}], "ss": [{"d": "MI Senate District 21", "rep": "Sarah Anthony", "w": 1.0}]}, "munis": [{"m": "Olivet", "p": [{"n": "Laura Barlond-Maas", "r": "Mayor, Olivet, MI"}]}], "slug": "eaton"}, "26047": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.544}], "sh": [{"d": "MI House District 107", "rep": "Parker Fairbairn", "w": 0.547}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.547}]}, "munis": [], "slug": "emmet"}, "26049": {"county": [], "districts": {"cd": [{"d": "MI-08", "rep": "Kristen McDonald Rivet", "w": 0.995}], "sh": [{"d": "MI House District 69", "rep": "Jaz Martus", "w": 0.243}, {"d": "MI House District 67", "rep": "Phil Green", "w": 0.209}, {"d": "MI House District 68", "rep": "David Martin", "w": 0.173}, {"d": "MI House District 71", "rep": "Brian BeGole", "w": 0.138}, {"d": "MI House District 72", "rep": "Mike Mueller", "w": 0.115}, {"d": "MI House District 70", "rep": "Cynthia Neeley", "w": 0.062}, {"d": "MI House District 97", "rep": "Matt Bierlein", "w": 0.059}], "ss": [{"d": "MI Senate District 27", "rep": "John Cherry", "w": 0.443}, {"d": "MI Senate District 26", "rep": "Kevin Daley", "w": 0.39}, {"d": "MI Senate District 22", "rep": "Lana Theis", "w": 0.112}, {"d": "MI Senate District 24", "rep": "Ruth Johnson", "w": 0.055}]}, "munis": [{"m": "Flint", "p": [{"n": "Karen Weaver", "r": "Mayor, Flint, MI"}]}], "slug": "genesee"}, "26051": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 99", "rep": "Mike Hoadley", "w": 0.816}, {"d": "MI House District 95", "rep": "Bill Schuette", "w": 0.184}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 1.0}]}, "munis": [], "slug": "gladwin"}, "26053": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.773}], "sh": [{"d": "MI House District 110", "rep": "Greg Markkanen", "w": 0.773}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.773}]}, "munis": [], "slug": "gogebic"}, "26055": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.815}], "sh": [{"d": "MI House District 104", "rep": "J.R. Roth", "w": 0.536}, {"d": "MI House District 103", "rep": "Betsy Coffia", "w": 0.279}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.815}]}, "munis": [{"m": "Traverse City", "p": [{"n": "Amy Shamroe", "r": "Mayor, Traverse City, MI"}]}], "slug": "grand-traverse"}, "26057": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 93", "rep": "Tim Kelly", "w": 0.679}, {"d": "MI House District 92", "rep": "Jerry Neyer", "w": 0.321}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 1.0}]}, "munis": [], "slug": "gratiot"}, "26059": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 1.0}], "sh": [{"d": "MI House District 35", "rep": "Jennifer Wortz", "w": 1.0}], "ss": [{"d": "MI Senate District 16", "rep": "Joe Bellino", "w": 0.703}, {"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 0.296}]}, "munis": [], "slug": "hillsdale"}, "26061": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.693}], "sh": [{"d": "MI House District 110", "rep": "Greg Markkanen", "w": 0.692}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.692}]}, "munis": [], "slug": "houghton"}, "26063": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 0.392}], "sh": [{"d": "MI House District 98", "rep": "Greg Alexander", "w": 0.391}], "ss": [{"d": "MI Senate District 25", "rep": "Dan Lauwers", "w": 0.391}]}, "munis": [], "slug": "huron"}, "26065": {"county": [], "districts": {"cd": [{"d": "MI-07", "rep": "Tom Barrett", "w": 1.0}], "sh": [{"d": "MI House District 73", "rep": "Julie Brixie", "w": 0.789}, {"d": "MI House District 75", "rep": "Penelope Tsernoglou", "w": 0.093}, {"d": "MI House District 74", "rep": "Kara Hope", "w": 0.087}, {"d": "MI House District 77", "rep": "Emily Dievendorf", "w": 0.03}], "ss": [{"d": "MI Senate District 21", "rep": "Sarah Anthony", "w": 0.547}, {"d": "MI Senate District 28", "rep": "Sam Singh", "w": 0.263}, {"d": "MI Senate District 22", "rep": "Lana Theis", "w": 0.19}]}, "munis": [{"m": "Lansing", "p": [{"n": "Virgil Bernero", "r": "Mayor, Lansing, MI"}]}], "slug": "ingham"}, "26067": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 78", "rep": "Gina Johnsen", "w": 0.748}, {"d": "MI House District 91", "rep": "Pat Outman", "w": 0.126}, {"d": "MI House District 93", "rep": "Tim Kelly", "w": 0.126}], "ss": [{"d": "MI Senate District 33", "rep": "Rick Outman", "w": 0.814}, {"d": "MI Senate District 18", "rep": "Thomas Albert", "w": 0.186}]}, "munis": [], "slug": "ionia"}, "26069": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.299}], "sh": [{"d": "MI House District 99", "rep": "Mike Hoadley", "w": 0.3}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.3}]}, "munis": [], "slug": "iosco"}, "26071": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.998}], "sh": [{"d": "MI House District 110", "rep": "Greg Markkanen", "w": 1.0}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 1.0}]}, "munis": [], "slug": "iron"}, "26073": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 92", "rep": "Jerry Neyer", "w": 1.0}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 1.0}]}, "munis": [], "slug": "isabella"}, "26075": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 1.0}], "sh": [{"d": "MI House District 45", "rep": "Sarah Lightner", "w": 0.551}, {"d": "MI House District 47", "rep": "Carrie Rheingans", "w": 0.208}, {"d": "MI House District 46", "rep": "Kathy Schmaltz", "w": 0.172}, {"d": "MI House District 48", "rep": "Jennifer Conlin", "w": 0.069}], "ss": [{"d": "MI Senate District 14", "rep": "Sue Shink", "w": 0.799}, {"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 0.201}]}, "munis": [], "slug": "jackson"}, "26077": {"county": [], "districts": {"cd": [{"d": "MI-04", "rep": "Bill Huizenga", "w": 0.751}, {"d": "MI-05", "rep": "Tim Walberg", "w": 0.249}], "sh": [{"d": "MI House District 42", "rep": "Matt Hall", "w": 0.584}, {"d": "MI House District 45", "rep": "Sarah Lightner", "w": 0.186}, {"d": "MI House District 40", "rep": "Matt Longjohn", "w": 0.173}, {"d": "MI House District 41", "rep": "Julie Rogers", "w": 0.057}], "ss": [{"d": "MI Senate District 19", "rep": "Sean McCann", "w": 0.875}, {"d": "MI Senate District 18", "rep": "Thomas Albert", "w": 0.125}]}, "munis": [{"m": "Kalamazoo", "p": [{"n": "David Anderson", "r": "Mayor, Kalamazoo, MI"}]}], "slug": "kalamazoo"}, "26079": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 104", "rep": "J.R. Roth", "w": 0.561}, {"d": "MI House District 105", "rep": "Ken Borton", "w": 0.439}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "kalkaska"}, "26081": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.542}, {"d": "MI-03", "rep": "Hillary J. Scholten", "w": 0.458}], "sh": [{"d": "MI House District 90", "rep": "Bryan Posthumus", "w": 0.347}, {"d": "MI House District 91", "rep": "Pat Outman", "w": 0.17}, {"d": "MI House District 79", "rep": "Angela Rigas", "w": 0.121}, {"d": "MI House District 81", "rep": "Stephen Wooden", "w": 0.088}, {"d": "MI House District 78", "rep": "Gina Johnsen", "w": 0.083}, {"d": "MI House District 80", "rep": "Phil Skaggs", "w": 0.072}, {"d": "MI House District 84", "rep": "Carol Glanville", "w": 0.053}, {"d": "MI House District 83", "rep": "John Fitzgerald", "w": 0.032}, {"d": "MI House District 82", "rep": "Kristian Grant", "w": 0.019}, {"d": "MI House District 89", "rep": "Luke Meerman", "w": 0.014}], "ss": [{"d": "MI Senate District 33", "rep": "Rick Outman", "w": 0.42}, {"d": "MI Senate District 30", "rep": "Mark Huizenga", "w": 0.245}, {"d": "MI Senate District 18", "rep": "Thomas Albert", "w": 0.164}, {"d": "MI Senate District 29", "rep": "Winnie Brinks", "w": 0.089}, {"d": "MI Senate District 20", "rep": "Aric Nesbitt", "w": 0.082}]}, "munis": [{"m": "Grand Rapids", "p": [{"n": "Rosalynn Bliss", "r": "Mayor, Grand Rapids, MI"}]}, {"m": "Kentwood", "p": [{"n": "Stephen Kepley", "r": "Mayor, Kentwood, MI"}]}, {"m": "Wyoming", "p": [{"n": "Kent Vanderwood", "r": "Mayor, Wyoming, MI"}]}], "slug": "kent"}, "26083": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.099}], "sh": [{"d": "MI House District 110", "rep": "Greg Markkanen", "w": 0.098}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.098}]}, "munis": [], "slug": "keweenaw"}, "26085": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 101", "rep": "Joseph Fox", "w": 0.75}, {"d": "MI House District 100", "rep": "Tom Kunse", "w": 0.25}], "ss": [{"d": "MI Senate District 33", "rep": "Rick Outman", "w": 0.626}, {"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 0.373}]}, "munis": [], "slug": "lake"}, "26087": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 1.0}], "sh": [{"d": "MI House District 67", "rep": "Phil Green", "w": 0.428}, {"d": "MI House District 65", "rep": "Jaime Greene", "w": 0.409}, {"d": "MI House District 98", "rep": "Greg Alexander", "w": 0.162}], "ss": [{"d": "MI Senate District 26", "rep": "Kevin Daley", "w": 0.782}, {"d": "MI Senate District 24", "rep": "Ruth Johnson", "w": 0.217}]}, "munis": [], "slug": "lapeer"}, "26089": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.148}], "sh": [{"d": "MI House District 103", "rep": "Betsy Coffia", "w": 0.148}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.148}]}, "munis": [], "slug": "leelanau"}, "26091": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 1.0}], "sh": [{"d": "MI House District 34", "rep": "Nancy Jenkins-Arno", "w": 0.871}, {"d": "MI House District 30", "rep": "Will Bruck", "w": 0.083}, {"d": "MI House District 31", "rep": "Reggie Miller", "w": 0.043}], "ss": [{"d": "MI Senate District 16", "rep": "Joe Bellino", "w": 0.908}, {"d": "MI Senate District 15", "rep": "Jeff Irwin", "w": 0.091}]}, "munis": [], "slug": "lenawee"}, "26093": {"county": [], "districts": {"cd": [{"d": "MI-07", "rep": "Tom Barrett", "w": 1.0}], "sh": [{"d": "MI House District 50", "rep": "Jason Woolford", "w": 0.691}, {"d": "MI House District 48", "rep": "Jennifer Conlin", "w": 0.133}, {"d": "MI House District 49", "rep": "Ann Bollin", "w": 0.128}, {"d": "MI House District 72", "rep": "Mike Mueller", "w": 0.047}], "ss": [{"d": "MI Senate District 22", "rep": "Lana Theis", "w": 1.0}]}, "munis": [], "slug": "livingston"}, "26095": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.482}], "sh": [{"d": "MI House District 108", "rep": "Dave Prestin", "w": 0.482}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.482}]}, "munis": [], "slug": "luce"}, "26097": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.52}], "sh": [{"d": "MI House District 107", "rep": "Parker Fairbairn", "w": 0.267}, {"d": "MI House District 108", "rep": "Dave Prestin", "w": 0.245}], "ss": [{"d": "MI Senate District 37", "rep": "John Damoose", "w": 0.267}, {"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.245}]}, "munis": [{"m": "Mackinac Island", "p": [{"n": "Margaret Doud", "r": "Mayor, Mackinac Island, MI"}]}], "slug": "mackinac"}, "26099": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 0.51}, {"d": "MI-10", "rep": "John James", "w": 0.337}], "sh": [{"d": "MI House District 65", "rep": "Jaime Greene", "w": 0.268}, {"d": "MI House District 66", "rep": "Josh Schriver", "w": 0.13}, {"d": "MI House District 59", "rep": "Doug Wozniak", "w": 0.071}, {"d": "MI House District 62", "rep": "Alicia St. Germaine", "w": 0.059}, {"d": "MI House District 60", "rep": "Joe Aragona", "w": 0.058}, {"d": "MI House District 63", "rep": "Jay DeBoyer", "w": 0.05}, {"d": "MI House District 61", "rep": "Denise Mentzer", "w": 0.047}, {"d": "MI House District 58", "rep": "Ron Robinson", "w": 0.044}, {"d": "MI House District 57", "rep": "Tom Kuhn", "w": 0.032}, {"d": "MI House District 13", "rep": "Mai Xiong", "w": 0.032}, {"d": "MI House District 14", "rep": "Mike McFall", "w": 0.021}, {"d": "MI House District 12", "rep": "Kimberly Edwards", "w": 0.019}, {"d": "MI House District 11", "rep": "Donavan McKinney", "w": 0.017}], "ss": [{"d": "MI Senate District 24", "rep": "Ruth Johnson", "w": 0.279}, {"d": "MI Senate District 25", "rep": "Dan Lauwers", "w": 0.204}, {"d": "MI Senate District 12", "rep": "Kevin Hertel", "w": 0.124}, {"d": "MI Senate District 11", "rep": "Veronica Klinefelt", "w": 0.107}, {"d": "MI Senate District 10", "rep": "Paul Wojno", "w": 0.071}, {"d": "MI Senate District 9", "rep": "Michael Webber", "w": 0.041}, {"d": "MI Senate District 3", "rep": "Stephanie Chang", "w": 0.022}]}, "munis": [{"m": "Sterling Heights", "p": [{"n": "Michael C. Taylor", "r": "Mayor, Sterling Heights, MI"}]}, {"m": "Warren", "p": [{"n": "James R. Fouts", "r": "Mayor, Warren, MI"}]}], "slug": "macomb"}, "26101": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.435}], "sh": [{"d": "MI House District 104", "rep": "J.R. Roth", "w": 0.312}, {"d": "MI House District 102", "rep": "Curt VanderWall", "w": 0.123}], "ss": [{"d": "MI Senate District 32", "rep": "Jon Bumstead", "w": 0.239}, {"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.196}]}, "munis": [], "slug": "manistee"}, "26103": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.544}], "sh": [{"d": "MI House District 109", "rep": "Karl Bohnak", "w": 0.544}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.544}]}, "munis": [], "slug": "marquette"}, "26105": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.41}], "sh": [{"d": "MI House District 102", "rep": "Curt VanderWall", "w": 0.293}, {"d": "MI House District 101", "rep": "Joseph Fox", "w": 0.117}], "ss": [{"d": "MI Senate District 32", "rep": "Jon Bumstead", "w": 0.411}]}, "munis": [], "slug": "mason"}, "26107": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 100", "rep": "Tom Kunse", "w": 1.0}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 1.0}]}, "munis": [{"m": "Big Rapids", "p": [{"n": "Q124459604", "r": "Mayor, Big Rapids, MI"}]}], "slug": "mecosta"}, "26109": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.784}], "sh": [{"d": "MI House District 108", "rep": "Dave Prestin", "w": 0.787}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.787}]}, "munis": [], "slug": "menominee"}, "26111": {"county": [], "districts": {"cd": [{"d": "MI-08", "rep": "Kristen McDonald Rivet", "w": 0.658}, {"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.342}], "sh": [{"d": "MI House District 95", "rep": "Bill Schuette", "w": 1.0}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 0.657}, {"d": "MI Senate District 35", "rep": "Chedrick Greene", "w": 0.343}]}, "munis": [{"m": "Midland", "p": [{"n": "Maureen Donker", "r": "Mayor, Midland, MI"}]}], "slug": "midland"}, "26113": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 105", "rep": "Ken Borton", "w": 1.0}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "missaukee"}, "26115": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 0.825}], "sh": [{"d": "MI House District 30", "rep": "Will Bruck", "w": 0.36}, {"d": "MI House District 31", "rep": "Reggie Miller", "w": 0.303}, {"d": "MI House District 29", "rep": "Jim DeSana", "w": 0.082}, {"d": "MI House District 28", "rep": "Jamie Thompson", "w": 0.077}], "ss": [{"d": "MI Senate District 16", "rep": "Joe Bellino", "w": 0.819}]}, "munis": [], "slug": "monroe"}, "26117": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 91", "rep": "Pat Outman", "w": 0.85}, {"d": "MI House District 93", "rep": "Tim Kelly", "w": 0.15}], "ss": [{"d": "MI Senate District 33", "rep": "Rick Outman", "w": 1.0}]}, "munis": [], "slug": "montcalm"}, "26119": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 106", "rep": "Cam Cavitt", "w": 1.0}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "montmorency"}, "26121": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.259}, {"d": "MI-03", "rep": "Hillary J. Scholten", "w": 0.102}], "sh": [{"d": "MI House District 102", "rep": "Curt VanderWall", "w": 0.141}, {"d": "MI House District 89", "rep": "Luke Meerman", "w": 0.136}, {"d": "MI House District 87", "rep": "Will Snyder", "w": 0.068}, {"d": "MI House District 88", "rep": "Greg VanWoerkom", "w": 0.016}], "ss": [{"d": "MI Senate District 32", "rep": "Jon Bumstead", "w": 0.287}, {"d": "MI Senate District 33", "rep": "Rick Outman", "w": 0.074}]}, "munis": [{"m": "Muskegon", "p": [{"n": "Ken Johnson", "r": "Mayor, Muskegon, MI"}]}], "slug": "muskegon"}, "26123": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 101", "rep": "Joseph Fox", "w": 1.0}], "ss": [{"d": "MI Senate District 33", "rep": "Rick Outman", "w": 1.0}]}, "munis": [], "slug": "newaygo"}, "26125": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 0.448}, {"d": "MI-11", "rep": "Haley M. Stevens", "w": 0.371}, {"d": "MI-07", "rep": "Tom Barrett", "w": 0.071}, {"d": "MI-10", "rep": "John James", "w": 0.041}, {"d": "MI-12", "rep": "Rashida Tlaib", "w": 0.039}, {"d": "MI-06", "rep": "Debbie Dingell", "w": 0.031}], "sh": [{"d": "MI House District 51", "rep": "Matt Maddock", "w": 0.152}, {"d": "MI House District 66", "rep": "Josh Schriver", "w": 0.149}, {"d": "MI House District 52", "rep": "Mike Harris", "w": 0.092}, {"d": "MI House District 72", "rep": "Mike Mueller", "w": 0.08}, {"d": "MI House District 54", "rep": "Donni Steele", "w": 0.077}, {"d": "MI House District 21", "rep": "Kelly Breen", "w": 0.057}, {"d": "MI House District 20", "rep": "Noah Arbit", "w": 0.057}, {"d": "MI House District 55", "rep": "Mark Tisdel", "w": 0.046}, {"d": "MI House District 53", "rep": "Brenda Carter", "w": 0.042}, {"d": "MI House District 19", "rep": "Samantha Steckloff", "w": 0.042}, {"d": "MI House District 68", "rep": "David Martin", "w": 0.04}, {"d": "MI House District 18", "rep": "Jason Hoskins", "w": 0.037}, {"d": "MI House District 56", "rep": "Sharon MacDonell", "w": 0.036}, {"d": "MI House District 49", "rep": "Ann Bollin", "w": 0.034}, {"d": "MI House District 6", "rep": "Natalie Price", "w": 0.021}, {"d": "MI House District 57", "rep": "Tom Kuhn", "w": 0.01}, {"d": "MI House District 14", "rep": "Mike McFall", "w": 0.01}, {"d": "MI House District 23", "rep": "Jason Morgan", "w": 0.008}, {"d": "MI House District 5", "rep": "Regina Weiss", "w": 0.006}], "ss": [{"d": "MI Senate District 23", "rep": "Jim Runestad", "w": 0.34}, {"d": "MI Senate District 24", "rep": "Ruth Johnson", "w": 0.23}, {"d": "MI Senate District 7", "rep": "Jeremy Moss", "w": 0.12}, {"d": "MI Senate District 13", "rep": "Rosemary Bayer", "w": 0.105}, {"d": "MI Senate District 9", "rep": "Michael Webber", "w": 0.09}, {"d": "MI Senate District 22", "rep": "Lana Theis", "w": 0.04}, {"d": "MI Senate District 8", "rep": "Mallory McMorrow", "w": 0.036}, {"d": "MI Senate District 6", "rep": "Mary Cavanagh", "w": 0.025}, {"d": "MI Senate District 3", "rep": "Stephanie Chang", "w": 0.013}]}, "munis": [{"m": "Rochester Hills", "p": [{"n": "Bryan Barnett", "r": "Mayor, Rochester Hills, MI"}]}, {"m": "Southfield", "p": [{"n": "Kenson Siver", "r": "Mayor, Southfield, MI"}]}, {"m": "Troy", "p": [{"n": "Ethan Baker", "r": "Mayor, Troy, MI"}]}], "slug": "oakland"}, "26127": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.418}], "sh": [{"d": "MI House District 102", "rep": "Curt VanderWall", "w": 0.363}, {"d": "MI House District 101", "rep": "Joseph Fox", "w": 0.055}], "ss": [{"d": "MI Senate District 32", "rep": "Jon Bumstead", "w": 0.418}]}, "munis": [], "slug": "oceana"}, "26129": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 99", "rep": "Mike Hoadley", "w": 1.0}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "ogemaw"}, "26131": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.353}], "sh": [{"d": "MI House District 110", "rep": "Greg Markkanen", "w": 0.353}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.353}]}, "munis": [], "slug": "ontonagon"}, "26133": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 1.0}], "sh": [{"d": "MI House District 100", "rep": "Tom Kunse", "w": 1.0}], "ss": [{"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 1.0}]}, "munis": [], "slug": "osceola"}, "26135": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 106", "rep": "Cam Cavitt", "w": 0.501}, {"d": "MI House District 105", "rep": "Ken Borton", "w": 0.499}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "oscoda"}, "26137": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 105", "rep": "Ken Borton", "w": 1.0}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "otsego"}, "26139": {"county": [], "districts": {"cd": [{"d": "MI-03", "rep": "Hillary J. Scholten", "w": 0.172}, {"d": "MI-04", "rep": "Bill Huizenga", "w": 0.16}, {"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.022}], "sh": [{"d": "MI House District 89", "rep": "Luke Meerman", "w": 0.134}, {"d": "MI House District 88", "rep": "Greg VanWoerkom", "w": 0.117}, {"d": "MI House District 85", "rep": "Brad Slagh", "w": 0.056}, {"d": "MI House District 86", "rep": "Nancy DeBoer", "w": 0.031}, {"d": "MI House District 43", "rep": "Rachelle Smit", "w": 0.017}], "ss": [{"d": "MI Senate District 31", "rep": "Roger Victory", "w": 0.242}, {"d": "MI Senate District 30", "rep": "Mark Huizenga", "w": 0.089}, {"d": "MI Senate District 33", "rep": "Rick Outman", "w": 0.022}]}, "munis": [], "slug": "ottawa"}, "26141": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.266}], "sh": [{"d": "MI House District 106", "rep": "Cam Cavitt", "w": 0.266}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 0.266}]}, "munis": [], "slug": "presque-isle"}, "26143": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 1.0}], "sh": [{"d": "MI House District 105", "rep": "Ken Borton", "w": 1.0}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "roscommon"}, "26145": {"county": [], "districts": {"cd": [{"d": "MI-08", "rep": "Kristen McDonald Rivet", "w": 1.0}], "sh": [{"d": "MI House District 93", "rep": "Tim Kelly", "w": 0.484}, {"d": "MI House District 97", "rep": "Matt Bierlein", "w": 0.311}, {"d": "MI House District 71", "rep": "Brian BeGole", "w": 0.132}, {"d": "MI House District 94", "rep": "Amos O'Neal", "w": 0.072}], "ss": [{"d": "MI Senate District 26", "rep": "Kevin Daley", "w": 0.565}, {"d": "MI Senate District 34", "rep": "Roger Hauck", "w": 0.256}, {"d": "MI Senate District 35", "rep": "Chedrick Greene", "w": 0.178}]}, "munis": [], "slug": "saginaw"}, "26147": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 0.895}], "sh": [{"d": "MI House District 65", "rep": "Jaime Greene", "w": 0.459}, {"d": "MI House District 64", "rep": "Joe Pavlov", "w": 0.243}, {"d": "MI House District 63", "rep": "Jay DeBoyer", "w": 0.191}], "ss": [{"d": "MI Senate District 25", "rep": "Dan Lauwers", "w": 0.81}, {"d": "MI Senate District 12", "rep": "Kevin Hertel", "w": 0.082}]}, "munis": [{"m": "Port Huron", "p": [{"n": "Anita Ashford", "r": "Mayor, Port Huron, MI"}]}], "slug": "st-clair"}, "26149": {"county": [], "districts": {"cd": [{"d": "MI-05", "rep": "Tim Walberg", "w": 1.0}], "sh": [{"d": "MI House District 36", "rep": "Steve Carra", "w": 1.0}], "ss": [{"d": "MI Senate District 17", "rep": "Jonathan Lindsey", "w": 1.0}]}, "munis": [], "slug": "st-joseph"}, "26151": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 0.606}], "sh": [{"d": "MI House District 98", "rep": "Greg Alexander", "w": 0.582}, {"d": "MI House District 64", "rep": "Joe Pavlov", "w": 0.024}], "ss": [{"d": "MI Senate District 25", "rep": "Dan Lauwers", "w": 0.606}]}, "munis": [], "slug": "sanilac"}, "26153": {"county": [], "districts": {"cd": [{"d": "MI-01", "rep": "Jack Bergman", "w": 0.65}], "sh": [{"d": "MI House District 108", "rep": "Dave Prestin", "w": 0.65}], "ss": [{"d": "MI Senate District 38", "rep": "Ed McBroom", "w": 0.65}]}, "munis": [], "slug": "schoolcraft"}, "26155": {"county": [], "districts": {"cd": [{"d": "MI-07", "rep": "Tom Barrett", "w": 1.0}], "sh": [{"d": "MI House District 71", "rep": "Brian BeGole", "w": 0.897}, {"d": "MI House District 75", "rep": "Penelope Tsernoglou", "w": 0.103}], "ss": [{"d": "MI Senate District 28", "rep": "Sam Singh", "w": 0.866}, {"d": "MI Senate District 22", "rep": "Lana Theis", "w": 0.134}]}, "munis": [], "slug": "shiawassee"}, "26157": {"county": [], "districts": {"cd": [{"d": "MI-09", "rep": "Lisa C. McClain", "w": 0.877}, {"d": "MI-08", "rep": "Kristen McDonald Rivet", "w": 0.014}], "sh": [{"d": "MI House District 97", "rep": "Matt Bierlein", "w": 0.501}, {"d": "MI House District 98", "rep": "Greg Alexander", "w": 0.353}, {"d": "MI House District 67", "rep": "Phil Green", "w": 0.036}], "ss": [{"d": "MI Senate District 26", "rep": "Kevin Daley", "w": 0.5}, {"d": "MI Senate District 25", "rep": "Dan Lauwers", "w": 0.39}]}, "munis": [], "slug": "tuscola"}, "26159": {"county": [], "districts": {"cd": [{"d": "MI-04", "rep": "Bill Huizenga", "w": 0.571}], "sh": [{"d": "MI House District 39", "rep": "Pauline Wendzel", "w": 0.52}, {"d": "MI House District 38", "rep": "Joey Andrews", "w": 0.051}], "ss": [{"d": "MI Senate District 20", "rep": "Aric Nesbitt", "w": 0.539}, {"d": "MI Senate District 19", "rep": "Sean McCann", "w": 0.032}]}, "munis": [], "slug": "van-buren"}, "26161": {"county": [], "districts": {"cd": [{"d": "MI-06", "rep": "Debbie Dingell", "w": 1.0}], "sh": [{"d": "MI House District 47", "rep": "Carrie Rheingans", "w": 0.26}, {"d": "MI House District 48", "rep": "Jennifer Conlin", "w": 0.218}, {"d": "MI House District 33", "rep": "Morgan Foreman", "w": 0.208}, {"d": "MI House District 23", "rep": "Jason Morgan", "w": 0.11}, {"d": "MI House District 31", "rep": "Reggie Miller", "w": 0.09}, {"d": "MI House District 32", "rep": "Jimmie Wilson", "w": 0.061}, {"d": "MI House District 46", "rep": "Kathy Schmaltz", "w": 0.052}], "ss": [{"d": "MI Senate District 14", "rep": "Sue Shink", "w": 0.538}, {"d": "MI Senate District 15", "rep": "Jeff Irwin", "w": 0.462}]}, "munis": [{"m": "Ann Arbor", "p": [{"n": "Christopher Taylor", "r": "Mayor, Ann Arbor, MI"}]}], "slug": "washtenaw"}, "26163": {"county": [], "districts": {"cd": [{"d": "MI-06", "rep": "Debbie Dingell", "w": 0.376}, {"d": "MI-13", "rep": "Shri Thanedar", "w": 0.331}, {"d": "MI-12", "rep": "Rashida Tlaib", "w": 0.232}], "sh": [{"d": "MI House District 31", "rep": "Reggie Miller", "w": 0.133}, {"d": "MI House District 29", "rep": "Jim DeSana", "w": 0.085}, {"d": "MI House District 28", "rep": "Jamie Thompson", "w": 0.067}, {"d": "MI House District 27", "rep": "Rylee Linting", "w": 0.066}, {"d": "MI House District 22", "rep": "Matt Koleszar", "w": 0.062}, {"d": "MI House District 26", "rep": "Dylan Wegela", "w": 0.051}, {"d": "MI House District 24", "rep": "Ranjeev Puri", "w": 0.044}, {"d": "MI House District 25", "rep": "Peter Herzberg", "w": 0.042}, {"d": "MI House District 9", "rep": "Joe Tate", "w": 0.042}, {"d": "MI House District 16", "rep": "Stephanie Young", "w": 0.036}, {"d": "MI House District 17", "rep": "Laurie Pohutsky", "w": 0.035}, {"d": "MI House District 7", "rep": "Tonya Phillips", "w": 0.032}, {"d": "MI House District 3", "rep": "Alabas Farhat", "w": 0.031}, {"d": "MI House District 2", "rep": "Tullio Liberati", "w": 0.027}, {"d": "MI House District 4", "rep": "Karen Whitsett", "w": 0.026}, {"d": "MI House District 10", "rep": "Veronica Paiz", "w": 0.026}, {"d": "MI House District 15", "rep": "Erin Byrnes", "w": 0.025}, {"d": "MI House District 8", "rep": "Helena Scott", "w": 0.022}, {"d": "MI House District 11", "rep": "Donavan McKinney", "w": 0.018}, {"d": "MI House District 23", "rep": "Jason Morgan", "w": 0.015}, {"d": "MI House District 5", "rep": "Regina Weiss", "w": 0.012}, {"d": "MI House District 12", "rep": "Kimberly Edwards", "w": 0.007}], "ss": [{"d": "MI Senate District 4", "rep": "Darrin Camilleri", "w": 0.357}, {"d": "MI Senate District 5", "rep": "Dayna Polehanki", "w": 0.118}, {"d": "MI Senate District 1", "rep": "Erika Geiss", "w": 0.105}, {"d": "MI Senate District 2", "rep": "Sylvia Santana", "w": 0.081}, {"d": "MI Senate District 6", "rep": "Mary Cavanagh", "w": 0.077}, {"d": "MI Senate District 3", "rep": "Stephanie Chang", "w": 0.066}, {"d": "MI Senate District 13", "rep": "Rosemary Bayer", "w": 0.053}, {"d": "MI Senate District 10", "rep": "Paul Wojno", "w": 0.03}, {"d": "MI Senate District 8", "rep": "Mallory McMorrow", "w": 0.024}, {"d": "MI Senate District 12", "rep": "Kevin Hertel", "w": 0.019}, {"d": "MI Senate District 7", "rep": "Jeremy Moss", "w": 0.006}]}, "munis": [{"m": "Dearborn", "p": [{"n": "Abdullah Hammoud", "r": "Mayor, Dearborn, MI"}]}, {"m": "Detroit", "p": [{"n": "Mary Sheffield", "r": "Mayor, Detroit, MI"}]}, {"m": "Grosse Pointe Woods", "p": [{"n": "Arthur Bryant", "r": "Mayor, Grosse Pointe Woods, MI"}]}, {"m": "Highland Park", "p": [{"n": "Glenda McDonald", "r": "Mayor, Highland Park, MI"}]}, {"m": "Livonia", "p": [{"n": "Maureen Miller Brosnan", "r": "Mayor, Livonia, MI"}]}], "slug": "wayne"}, "26165": {"county": [], "districts": {"cd": [{"d": "MI-02", "rep": "John R. Moolenaar", "w": 0.78}, {"d": "MI-01", "rep": "Jack Bergman", "w": 0.22}], "sh": [{"d": "MI House District 101", "rep": "Joseph Fox", "w": 0.748}, {"d": "MI House District 104", "rep": "J.R. Roth", "w": 0.252}], "ss": [{"d": "MI Senate District 36", "rep": "Michele Hoitenga", "w": 1.0}]}, "munis": [], "slug": "wexford"}, "27001": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 7A", "rep": "Spencer Igo", "w": 0.511}, {"d": "MN House District 10A", "rep": "Ron Kresha", "w": 0.489}], "ss": [{"d": "MN Senate District 7", "rep": "Rob Farnsworth", "w": 0.511}, {"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.489}]}, "munis": [], "slug": "aitkin"}, "27003": {"county": [], "districts": {"cd": [{"d": "MN-06", "rep": "Tom Emmer", "w": 0.889}, {"d": "MN-03", "rep": "Kelly Morrison", "w": 0.074}, {"d": "MN-05", "rep": "Ilhan Omar", "w": 0.037}], "sh": [{"d": "MN House District 31B", "rep": "Peggy Scott", "w": 0.315}, {"d": "MN House District 32A", "rep": "Nolan West", "w": 0.175}, {"d": "MN House District 31A", "rep": "Harry Niska", "w": 0.104}, {"d": "MN House District 30B", "rep": "Paul Novotny", "w": 0.099}, {"d": "MN House District 36A", "rep": "Elliott Engen", "w": 0.084}, {"d": "MN House District 27B", "rep": "Bryan Lawrence", "w": 0.055}, {"d": "MN House District 32B", "rep": "Matt Norris", "w": 0.053}, {"d": "MN House District 35A", "rep": "Zack Stephenson", "w": 0.036}, {"d": "MN House District 35B", "rep": "Kari Rehrauer", "w": 0.035}, {"d": "MN House District 39A", "rep": "Erin Koegel", "w": 0.031}, {"d": "MN House District 39B", "rep": "Sandra Feist", "w": 0.006}, {"d": "MN House District 34B", "rep": "Xp Lee", "w": 0.005}], "ss": [{"d": "MN Senate District 31", "rep": "Cal Bahr", "w": 0.419}, {"d": "MN Senate District 32", "rep": "Michael Kreun", "w": 0.229}, {"d": "MN Senate District 30", "rep": "Eric Lucero", "w": 0.099}, {"d": "MN Senate District 36", "rep": "Heather Gustafson", "w": 0.084}, {"d": "MN Senate District 35", "rep": "Jim Abeler", "w": 0.071}, {"d": "MN Senate District 27", "rep": "Andrew Mathews", "w": 0.055}, {"d": "MN Senate District 39", "rep": "Mary Kunesh-Podein", "w": 0.037}, {"d": "MN Senate District 34", "rep": "John Hoffman", "w": 0.005}]}, "munis": [{"m": "Columbus", "p": [{"n": "Jesse Preiner", "r": "Mayor, Columbus, MN"}]}], "slug": "anoka"}, "27005": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.647}, {"d": "MN-08", "rep": "Pete Stauber", "w": 0.353}], "sh": [{"d": "MN House District 5A", "rep": "Krista Knudsen", "w": 0.423}, {"d": "MN House District 2B", "rep": "Matt Bliss", "w": 0.303}, {"d": "MN House District 4B", "rep": "Jim Joy", "w": 0.274}], "ss": [{"d": "MN Senate District 5", "rep": "Paul Utke", "w": 0.423}, {"d": "MN Senate District 2", "rep": "Steve Green", "w": 0.303}, {"d": "MN Senate District 4", "rep": "Rob Kupec", "w": 0.274}]}, "munis": [], "slug": "becker"}, "27007": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 2A", "rep": "Bidal Duran", "w": 0.777}, {"d": "MN House District 2B", "rep": "Matt Bliss", "w": 0.223}], "ss": [{"d": "MN Senate District 2", "rep": "Steve Green", "w": 1.0}]}, "munis": [], "slug": "beltrami"}, "27009": {"county": [], "districts": {"cd": [{"d": "MN-06", "rep": "Tom Emmer", "w": 0.998}], "sh": [{"d": "MN House District 10B", "rep": "Isaac Schultz", "w": 0.873}, {"d": "MN House District 14B", "rep": "Dan Wolgamott", "w": 0.09}, {"d": "MN House District 13B", "rep": "Tim O'Driscoll", "w": 0.037}], "ss": [{"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.873}, {"d": "MN Senate District 14", "rep": "Aric Putnam", "w": 0.09}, {"d": "MN Senate District 13", "rep": "Jeff Howe", "w": 0.037}]}, "munis": [], "slug": "benton"}, "27011": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 12A", "rep": "Paul Anderson", "w": 1.0}], "ss": [{"d": "MN Senate District 12", "rep": "Torrey Westrom", "w": 1.0}]}, "munis": [], "slug": "big-stone"}, "27013": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 22A", "rep": "Bjorn Olson", "w": 0.685}, {"d": "MN House District 22B", "rep": "Terry Stier", "w": 0.135}, {"d": "MN House District 15B", "rep": "Paul Torkelson", "w": 0.116}, {"d": "MN House District 18A", "rep": "Erica Schwartz", "w": 0.038}, {"d": "MN House District 18B", "rep": "Luke Frederick", "w": 0.026}], "ss": [{"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.82}, {"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 0.116}, {"d": "MN Senate District 18", "rep": "Nick Frentz", "w": 0.064}]}, "munis": [], "slug": "blue-earth"}, "27015": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 0.623}, {"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.377}], "sh": [{"d": "MN House District 15B", "rep": "Paul Torkelson", "w": 1.0}], "ss": [{"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 1.0}]}, "munis": [], "slug": "brown"}, "27017": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 11A", "rep": "Jeff Dotseth", "w": 1.0}], "ss": [{"d": "MN Senate District 11", "rep": "Jason Rarick", "w": 1.0}]}, "munis": [], "slug": "carlton"}, "27019": {"county": [], "districts": {"cd": [{"d": "MN-06", "rep": "Tom Emmer", "w": 0.997}], "sh": [{"d": "MN House District 17B", "rep": "Bobbie Harder", "w": 0.598}, {"d": "MN House District 48A", "rep": "Jim Nash", "w": 0.312}, {"d": "MN House District 48B", "rep": "Lucy Rehm", "w": 0.09}], "ss": [{"d": "MN Senate District 17", "rep": "Glenn Gruenhagen", "w": 0.598}, {"d": "MN Senate District 48", "rep": "Julia Coleman", "w": 0.402}]}, "munis": [], "slug": "carver"}, "27021": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.999}], "sh": [{"d": "MN House District 2B", "rep": "Matt Bliss", "w": 0.43}, {"d": "MN House District 5A", "rep": "Krista Knudsen", "w": 0.261}, {"d": "MN House District 6A", "rep": "Ben Davis", "w": 0.223}, {"d": "MN House District 5B", "rep": "Mike Wiener", "w": 0.085}], "ss": [{"d": "MN Senate District 2", "rep": "Steve Green", "w": 0.43}, {"d": "MN Senate District 5", "rep": "Paul Utke", "w": 0.347}, {"d": "MN Senate District 6", "rep": "Keri Heintzeman", "w": 0.223}]}, "munis": [], "slug": "cass"}, "27023": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 16A", "rep": "Scott Van Binsbergen", "w": 0.995}, {"d": "MN House District 15A", "rep": "Chris Swedzinski", "w": 0.005}], "ss": [{"d": "MN Senate District 16", "rep": "Andrew Lang", "w": 0.995}, {"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 0.005}]}, "munis": [], "slug": "chippewa"}, "27025": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 28B", "rep": "Max Rymer", "w": 0.672}, {"d": "MN House District 11B", "rep": "Nathan Nelson", "w": 0.175}, {"d": "MN House District 28A", "rep": "Jimmy Gordon", "w": 0.152}], "ss": [{"d": "MN Senate District 28", "rep": "Mark Koran", "w": 0.824}, {"d": "MN Senate District 11", "rep": "Jason Rarick", "w": 0.175}]}, "munis": [], "slug": "chisago"}, "27027": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.998}], "sh": [{"d": "MN House District 4B", "rep": "Jim Joy", "w": 0.883}, {"d": "MN House District 1B", "rep": "Steve Gander", "w": 0.1}, {"d": "MN House District 4A", "rep": "Heather Keeler", "w": 0.016}], "ss": [{"d": "MN Senate District 4", "rep": "Rob Kupec", "w": 0.899}, {"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 0.1}]}, "munis": [], "slug": "clay"}, "27029": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 2B", "rep": "Matt Bliss", "w": 0.61}, {"d": "MN House District 2A", "rep": "Bidal Duran", "w": 0.39}], "ss": [{"d": "MN Senate District 2", "rep": "Steve Green", "w": 1.0}]}, "munis": [], "slug": "clearwater"}, "27031": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.485}], "sh": [{"d": "MN House District 3A", "rep": "Roger Skraba", "w": 0.482}], "ss": [{"d": "MN Senate District 3", "rep": "Grant Hauschild", "w": 0.482}]}, "munis": [], "slug": "cook"}, "27033": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 21B", "rep": "Marj Fogelman", "w": 0.221}], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "cottonwood"}, "27035": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 6A", "rep": "Ben Davis", "w": 0.57}, {"d": "MN House District 6B", "rep": "Josh Heintzeman", "w": 0.222}, {"d": "MN House District 10A", "rep": "Ron Kresha", "w": 0.208}], "ss": [{"d": "MN Senate District 6", "rep": "Keri Heintzeman", "w": 0.791}, {"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.208}]}, "munis": [], "slug": "crow-wing"}, "27037": {"county": [], "districts": {"cd": [{"d": "MN-02", "rep": "Angie Craig", "w": 0.998}], "sh": [{"d": "MN House District 58B", "rep": "Drew Roach", "w": 0.508}, {"d": "MN House District 57A", "rep": "Jon Koznick", "w": 0.099}, {"d": "MN House District 20A", "rep": "Pam Altendorf", "w": 0.061}, {"d": "MN House District 53A", "rep": "Mary Clardy", "w": 0.058}, {"d": "MN House District 41B", "rep": "Tom Dippel", "w": 0.048}, {"d": "MN House District 56B", "rep": "John Huot", "w": 0.043}, {"d": "MN House District 52B", "rep": "Bianca Virnig", "w": 0.043}, {"d": "MN House District 52A", "rep": "Liz Reyer", "w": 0.036}, {"d": "MN House District 57B", "rep": "Jeff Witte", "w": 0.026}, {"d": "MN House District 55B", "rep": "Kaela Berg", "w": 0.025}, {"d": "MN House District 56A", "rep": "Robert Bierman", "w": 0.022}, {"d": "MN House District 53B", "rep": "Rick Hansen", "w": 0.015}, {"d": "MN House District 55A", "rep": "Jess Hanson", "w": 0.01}], "ss": [{"d": "MN Senate District 58", "rep": "Bill Lieske", "w": 0.511}, {"d": "MN Senate District 57", "rep": "Zach Duckworth", "w": 0.125}, {"d": "MN Senate District 52", "rep": "Jim Carlson", "w": 0.078}, {"d": "MN Senate District 53", "rep": "Matt Klein", "w": 0.074}, {"d": "MN Senate District 56", "rep": "Erin Maye Quade", "w": 0.065}, {"d": "MN Senate District 20", "rep": "Steve Drazkowski", "w": 0.061}, {"d": "MN Senate District 41", "rep": "Judy Seeberger", "w": 0.048}, {"d": "MN Senate District 55", "rep": "Lindsey Port", "w": 0.034}]}, "munis": [], "slug": "dakota"}, "27039": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 24A", "rep": "Duane Quam", "w": 1.0}], "ss": [{"d": "MN Senate District 24", "rep": "Carla Nelson", "w": 1.0}]}, "munis": [], "slug": "dodge"}, "27041": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 9B", "rep": "Tom Murphy", "w": 0.55}, {"d": "MN House District 12B", "rep": "Mary Franson", "w": 0.45}], "ss": [{"d": "MN Senate District 9", "rep": "Jordan Rasmusson", "w": 0.55}, {"d": "MN Senate District 12", "rep": "Torrey Westrom", "w": 0.45}]}, "munis": [], "slug": "douglas"}, "27043": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 23A", "rep": "Peggy Bennett", "w": 0.649}, {"d": "MN House District 22A", "rep": "Bjorn Olson", "w": 0.351}], "ss": [{"d": "MN Senate District 23", "rep": "Gene Dornink", "w": 0.649}, {"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.351}]}, "munis": [{"m": "Minnesota Lake", "p": [{"n": "Q40249461", "r": "Mayor, Minnesota Lake, MN"}]}], "slug": "faribault"}, "27045": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 26B", "rep": "Greg Davids", "w": 1.0}], "ss": [{"d": "MN Senate District 26", "rep": "Jeremy Miller", "w": 1.0}]}, "munis": [], "slug": "fillmore"}, "27047": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 23A", "rep": "Peggy Bennett", "w": 0.702}, {"d": "MN House District 23B", "rep": "Patty Mueller", "w": 0.298}], "ss": [{"d": "MN Senate District 23", "rep": "Gene Dornink", "w": 1.0}]}, "munis": [], "slug": "freeborn"}, "27049": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 0.999}], "sh": [{"d": "MN House District 20A", "rep": "Pam Altendorf", "w": 0.55}, {"d": "MN House District 19A", "rep": "Keith Allen", "w": 0.191}, {"d": "MN House District 20B", "rep": "Steve Jacob", "w": 0.182}, {"d": "MN House District 58B", "rep": "Drew Roach", "w": 0.076}], "ss": [{"d": "MN Senate District 20", "rep": "Steve Drazkowski", "w": 0.732}, {"d": "MN Senate District 19", "rep": "John Jasinski", "w": 0.191}, {"d": "MN Senate District 58", "rep": "Bill Lieske", "w": 0.076}]}, "munis": [], "slug": "goodhue"}, "27051": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 9A", "rep": "Jeff Backer", "w": 1.0}], "ss": [{"d": "MN Senate District 9", "rep": "Jordan Rasmusson", "w": 1.0}]}, "munis": [], "slug": "grant"}, "27053": {"county": [], "districts": {"cd": [{"d": "MN-03", "rep": "Kelly Morrison", "w": 0.795}, {"d": "MN-05", "rep": "Ilhan Omar", "w": 0.197}, {"d": "MN-06", "rep": "Tom Emmer", "w": 0.006}], "sh": [{"d": "MN House District 37A", "rep": "Kristin Robbins", "w": 0.214}, {"d": "MN House District 45A", "rep": "Andrew Myers", "w": 0.124}, {"d": "MN House District 34A", "rep": "Danny Nadeau", "w": 0.098}, {"d": "MN House District 45B", "rep": "Patty Acomb", "w": 0.046}, {"d": "MN House District 49B", "rep": "Carlie Kotyza-Witthuhn", "w": 0.041}, {"d": "MN House District 37B", "rep": "Kristin Bahner", "w": 0.039}, {"d": "MN House District 49A", "rep": "Alex Falconer", "w": 0.035}, {"d": "MN House District 42A", "rep": "Ned Carroll", "w": 0.032}, {"d": "MN House District 50B", "rep": "Steve Elkins", "w": 0.031}, {"d": "MN House District 51B", "rep": "Nathan Coulter", "w": 0.029}, {"d": "MN House District 42B", "rep": "Ginny Klevorn", "w": 0.028}, {"d": "MN House District 51A", "rep": "Mike Howard", "w": 0.026}, {"d": "MN House District 43B", "rep": "Mike Freiberg", "w": 0.025}, {"d": "MN House District 34B", "rep": "Xp Lee", "w": 0.025}, {"d": "MN House District 50A", "rep": "Julie Greene", "w": 0.02}, {"d": "MN House District 46B", "rep": "Cheryl Youakim", "w": 0.019}, {"d": "MN House District 38A", "rep": "Huldah Hiltsley", "w": 0.018}, {"d": "MN House District 38B", "rep": "Samantha Vang", "w": 0.017}, {"d": "MN House District 43A", "rep": "Cedrick Frazier", "w": 0.017}, {"d": "MN House District 60A", "rep": "Sydney Jordan", "w": 0.015}, {"d": "MN House District 46A", "rep": "Larry Kraft", "w": 0.014}, {"d": "MN House District 63B", "rep": "Emma Greenman", "w": 0.013}, {"d": "MN House District 61B", "rep": "Jamie Long", "w": 0.011}, {"d": "MN House District 59A", "rep": "Fue Lee", "w": 0.011}, {"d": "MN House District 63A", "rep": "Samantha Sencer-Mura", "w": 0.01}, {"d": "MN House District 61A", "rep": "Katie Jones", "w": 0.009}, {"d": "MN House District 59B", "rep": "Esther Agbaje", "w": 0.008}, {"d": "MN House District 62B", "rep": "Anquam Mahamoud", "w": 0.007}, {"d": "MN House District 60B", "rep": "Mohamud Noor", "w": 0.006}], "ss": [{"d": "MN Senate District 37", "rep": "Warren Limmer", "w": 0.253}, {"d": "MN Senate District 45", "rep": "Ann Johnson Stewart", "w": 0.17}, {"d": "MN Senate District 34", "rep": "John Hoffman", "w": 0.123}, {"d": "MN Senate District 49", "rep": "Steve Cwodzinski", "w": 0.076}, {"d": "MN Senate District 42", "rep": "Bonnie Westlin", "w": 0.06}, {"d": "MN Senate District 51", "rep": "Melissa Wiklund", "w": 0.055}, {"d": "MN Senate District 50", "rep": "Alice Mann", "w": 0.051}, {"d": "MN Senate District 43", "rep": "Ann Rest", "w": 0.042}, {"d": "MN Senate District 38", "rep": "Susan Pha", "w": 0.035}, {"d": "MN Senate District 46", "rep": "Ron Latz", "w": 0.034}, {"d": "MN Senate District 63", "rep": "Zaynab Mohamed", "w": 0.023}, {"d": "MN Senate District 60", "rep": "Doron Clark", "w": 0.021}, {"d": "MN Senate District 61", "rep": "Scott Dibble", "w": 0.02}, {"d": "MN Senate District 59", "rep": "Bobby Joe Champion", "w": 0.018}, {"d": "MN Senate District 62", "rep": "Omar Fateh", "w": 0.011}]}, "munis": [{"m": "Bloomington", "p": [{"n": "Tim Busse", "r": "Mayor, Bloomington, MN"}]}, {"m": "Brooklyn Park", "p": [{"n": "Lisa Jacobson", "r": "Mayor, Brooklyn Park, MN"}]}, {"m": "Minneapolis", "p": [{"n": "Jacob Frey", "r": "Mayor, Minneapolis, MN"}]}, {"m": "Plymouth", "p": [{"n": "Jeffry Wosje", "r": "Mayor, Plymouth, MN"}]}], "slug": "hennepin"}, "27055": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 26B", "rep": "Greg Davids", "w": 1.0}], "ss": [{"d": "MN Senate District 26", "rep": "Jeremy Miller", "w": 1.0}]}, "munis": [], "slug": "houston"}, "27057": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.667}, {"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.333}], "sh": [{"d": "MN House District 5A", "rep": "Krista Knudsen", "w": 0.673}, {"d": "MN House District 2B", "rep": "Matt Bliss", "w": 0.327}], "ss": [{"d": "MN Senate District 5", "rep": "Paul Utke", "w": 0.673}, {"d": "MN Senate District 2", "rep": "Steve Green", "w": 0.327}]}, "munis": [], "slug": "hubbard"}, "27059": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.999}], "sh": [{"d": "MN House District 28A", "rep": "Jimmy Gordon", "w": 0.684}, {"d": "MN House District 27B", "rep": "Bryan Lawrence", "w": 0.166}, {"d": "MN House District 10B", "rep": "Isaac Schultz", "w": 0.08}, {"d": "MN House District 31B", "rep": "Peggy Scott", "w": 0.069}], "ss": [{"d": "MN Senate District 28", "rep": "Mark Koran", "w": 0.684}, {"d": "MN Senate District 27", "rep": "Andrew Mathews", "w": 0.166}, {"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.08}, {"d": "MN Senate District 31", "rep": "Cal Bahr", "w": 0.069}]}, "munis": [{"m": "Braham", "p": [{"n": "Patricia Carlson", "r": "Mayor, Braham, MN"}]}], "slug": "isanti"}, "27061": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 3A", "rep": "Roger Skraba", "w": 0.416}, {"d": "MN House District 7A", "rep": "Spencer Igo", "w": 0.295}, {"d": "MN House District 2B", "rep": "Matt Bliss", "w": 0.202}, {"d": "MN House District 6A", "rep": "Ben Davis", "w": 0.086}], "ss": [{"d": "MN Senate District 3", "rep": "Grant Hauschild", "w": 0.416}, {"d": "MN Senate District 7", "rep": "Rob Farnsworth", "w": 0.295}, {"d": "MN Senate District 2", "rep": "Steve Green", "w": 0.202}, {"d": "MN Senate District 6", "rep": "Keri Heintzeman", "w": 0.086}]}, "munis": [], "slug": "itasca"}, "27063": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 21B", "rep": "Marj Fogelman", "w": 1.0}], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "27065": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 11B", "rep": "Nathan Nelson", "w": 0.524}, {"d": "MN House District 10A", "rep": "Ron Kresha", "w": 0.338}, {"d": "MN House District 10B", "rep": "Isaac Schultz", "w": 0.138}], "ss": [{"d": "MN Senate District 11", "rep": "Jason Rarick", "w": 0.524}, {"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.476}]}, "munis": [], "slug": "kanabec"}, "27067": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 16B", "rep": "Dave Baker", "w": 0.833}, {"d": "MN House District 16A", "rep": "Scott Van Binsbergen", "w": 0.167}], "ss": [{"d": "MN Senate District 16", "rep": "Andrew Lang", "w": 1.0}]}, "munis": [], "slug": "kandiyohi"}, "27069": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.997}], "sh": [{"d": "MN House District 1A", "rep": "John Burkel", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "kittson"}, "27071": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.999}], "sh": [{"d": "MN House District 3A", "rep": "Roger Skraba", "w": 1.0}], "ss": [{"d": "MN Senate District 3", "rep": "Grant Hauschild", "w": 1.0}]}, "munis": [], "slug": "koochiching"}, "27073": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 15A", "rep": "Chris Swedzinski", "w": 1.0}], "ss": [{"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 1.0}]}, "munis": [], "slug": "lac-qui-parle"}, "27075": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.766}], "sh": [{"d": "MN House District 3A", "rep": "Roger Skraba", "w": 0.754}, {"d": "MN House District 3B", "rep": "Natalie Zeleznikar", "w": 0.012}], "ss": [{"d": "MN Senate District 3", "rep": "Grant Hauschild", "w": 0.766}]}, "munis": [], "slug": "lake"}, "27077": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 2A", "rep": "Bidal Duran", "w": 1.0}], "ss": [{"d": "MN Senate District 2", "rep": "Steve Green", "w": 1.0}]}, "munis": [], "slug": "lake-of-the-woods"}, "27079": {"county": [], "districts": {"cd": [{"d": "MN-02", "rep": "Angie Craig", "w": 0.996}], "sh": [{"d": "MN House District 22B", "rep": "Terry Stier", "w": 0.978}, {"d": "MN House District 18A", "rep": "Erica Schwartz", "w": 0.022}], "ss": [{"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.978}, {"d": "MN Senate District 18", "rep": "Nick Frentz", "w": 0.022}]}, "munis": [], "slug": "le-sueur"}, "27081": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "27083": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 15A", "rep": "Chris Swedzinski", "w": 1.0}], "ss": [{"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 1.0}]}, "munis": [], "slug": "lyon"}, "27085": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 17A", "rep": "Dawn Gillman", "w": 0.79}, {"d": "MN House District 17B", "rep": "Bobbie Harder", "w": 0.21}], "ss": [{"d": "MN Senate District 17", "rep": "Glenn Gruenhagen", "w": 1.0}]}, "munis": [], "slug": "mcleod"}, "27087": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 2B", "rep": "Matt Bliss", "w": 1.0}], "ss": [{"d": "MN Senate District 2", "rep": "Steve Green", "w": 1.0}]}, "munis": [], "slug": "mahnomen"}, "27089": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.997}], "sh": [{"d": "MN House District 1A", "rep": "John Burkel", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "marshall"}, "27091": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 22A", "rep": "Bjorn Olson", "w": 0.802}, {"d": "MN House District 21B", "rep": "Marj Fogelman", "w": 0.197}], "ss": [{"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.802}, {"d": "MN Senate District 21", "rep": "Bill Weber", "w": 0.197}]}, "munis": [], "slug": "martin"}, "27093": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 16A", "rep": "Scott Van Binsbergen", "w": 0.637}, {"d": "MN House District 17A", "rep": "Dawn Gillman", "w": 0.279}, {"d": "MN House District 29A", "rep": "Joe McDonald", "w": 0.084}], "ss": [{"d": "MN Senate District 16", "rep": "Andrew Lang", "w": 0.637}, {"d": "MN Senate District 17", "rep": "Glenn Gruenhagen", "w": 0.279}, {"d": "MN Senate District 29", "rep": "Mike Holmstrom", "w": 0.084}]}, "munis": [{"m": "Watkins", "p": [{"n": "Christopher Rowan", "r": "Mayor, Watkins, MN"}]}], "slug": "meeker"}, "27095": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.999}], "sh": [{"d": "MN House District 10A", "rep": "Ron Kresha", "w": 0.532}, {"d": "MN House District 10B", "rep": "Isaac Schultz", "w": 0.361}, {"d": "MN House District 27B", "rep": "Bryan Lawrence", "w": 0.107}], "ss": [{"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.893}, {"d": "MN Senate District 27", "rep": "Andrew Mathews", "w": 0.107}]}, "munis": [], "slug": "mille-lacs"}, "27097": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.999}], "sh": [{"d": "MN House District 10A", "rep": "Ron Kresha", "w": 0.52}, {"d": "MN House District 10B", "rep": "Isaac Schultz", "w": 0.378}, {"d": "MN House District 5B", "rep": "Mike Wiener", "w": 0.102}], "ss": [{"d": "MN Senate District 10", "rep": "Nathan Wesenberg", "w": 0.898}, {"d": "MN Senate District 5", "rep": "Paul Utke", "w": 0.102}]}, "munis": [{"m": "Motley", "p": [{"n": "Mike Schmidt", "r": "Mayor, Motley, MN"}]}], "slug": "morrison"}, "27099": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 23B", "rep": "Patty Mueller", "w": 0.805}, {"d": "MN House District 26B", "rep": "Greg Davids", "w": 0.195}], "ss": [{"d": "MN Senate District 23", "rep": "Gene Dornink", "w": 0.805}, {"d": "MN Senate District 26", "rep": "Jeremy Miller", "w": 0.195}]}, "munis": [], "slug": "mower"}, "27101": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "murray"}, "27103": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 0.998}], "sh": [{"d": "MN House District 18A", "rep": "Erica Schwartz", "w": 0.999}], "ss": [{"d": "MN Senate District 18", "rep": "Nick Frentz", "w": 0.999}]}, "munis": [], "slug": "nicollet"}, "27105": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 21B", "rep": "Marj Fogelman", "w": 0.6}], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "nobles"}, "27107": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.998}], "sh": [{"d": "MN House District 1B", "rep": "Steve Gander", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "norman"}, "27109": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 20B", "rep": "Steve Jacob", "w": 0.537}, {"d": "MN House District 24A", "rep": "Duane Quam", "w": 0.257}, {"d": "MN House District 25A", "rep": "Kim Hicks", "w": 0.142}, {"d": "MN House District 24B", "rep": "Tina Liebling", "w": 0.046}, {"d": "MN House District 25B", "rep": "Andy Smith", "w": 0.018}], "ss": [{"d": "MN Senate District 20", "rep": "Steve Drazkowski", "w": 0.537}, {"d": "MN Senate District 24", "rep": "Carla Nelson", "w": 0.303}, {"d": "MN Senate District 25", "rep": "Liz Boldon", "w": 0.16}]}, "munis": [{"m": "Rochester", "p": [{"n": "Kim Norton", "r": "Mayor, Rochester, MN"}]}], "slug": "olmsted"}, "27111": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 9B", "rep": "Tom Murphy", "w": 0.711}, {"d": "MN House District 9A", "rep": "Jeff Backer", "w": 0.289}], "ss": [{"d": "MN Senate District 9", "rep": "Jordan Rasmusson", "w": 1.0}]}, "munis": [], "slug": "otter-tail"}, "27113": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 1A", "rep": "John Burkel", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "pennington"}, "27115": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 1.0}], "sh": [{"d": "MN House District 11B", "rep": "Nathan Nelson", "w": 0.692}, {"d": "MN House District 11A", "rep": "Jeff Dotseth", "w": 0.308}], "ss": [{"d": "MN Senate District 11", "rep": "Jason Rarick", "w": 1.0}]}, "munis": [], "slug": "pine"}, "27117": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "pipestone"}, "27119": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.999}], "sh": [{"d": "MN House District 1B", "rep": "Steve Gander", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "polk"}, "27121": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 12A", "rep": "Paul Anderson", "w": 0.85}, {"d": "MN House District 12B", "rep": "Mary Franson", "w": 0.15}], "ss": [{"d": "MN Senate District 12", "rep": "Torrey Westrom", "w": 1.0}]}, "munis": [], "slug": "pope"}, "27123": {"county": [], "districts": {"cd": [{"d": "MN-04", "rep": "Betty McCollum", "w": 0.992}, {"d": "MN-05", "rep": "Ilhan Omar", "w": 0.006}], "sh": [{"d": "MN House District 40A", "rep": "Kelly Moller", "w": 0.137}, {"d": "MN House District 36B", "rep": "Brion Curran", "w": 0.126}, {"d": "MN House District 40B", "rep": "David Gottfried", "w": 0.104}, {"d": "MN House District 44A", "rep": "Peter Fischer", "w": 0.097}, {"d": "MN House District 36A", "rep": "Elliott Engen", "w": 0.095}, {"d": "MN House District 67B", "rep": "Jay Xiong", "w": 0.071}, {"d": "MN House District 66A", "rep": "Leigh Finke", "w": 0.066}, {"d": "MN House District 64B", "rep": "Dave Pinto", "w": 0.052}, {"d": "MN House District 65B", "rep": "María Isa Pérez-Vega", "w": 0.043}, {"d": "MN House District 67A", "rep": "Liz Lee", "w": 0.034}, {"d": "MN House District 47A", "rep": "Shelley Buck", "w": 0.034}, {"d": "MN House District 64A", "rep": "Meg Luger-Nikolai", "w": 0.032}, {"d": "MN House District 66B", "rep": "Athena Hollins", "w": 0.032}, {"d": "MN House District 65A", "rep": "Samakab Hussein", "w": 0.032}, {"d": "MN House District 39B", "rep": "Sandra Feist", "w": 0.026}, {"d": "MN House District 44B", "rep": "Leon Lillie", "w": 0.019}], "ss": [{"d": "MN Senate District 40", "rep": "John Marty", "w": 0.241}, {"d": "MN Senate District 36", "rep": "Heather Gustafson", "w": 0.221}, {"d": "MN Senate District 44", "rep": "Tou Xiong", "w": 0.116}, {"d": "MN Senate District 67", "rep": "Foung Hawj", "w": 0.105}, {"d": "MN Senate District 66", "rep": "Clare Oumou Verbeten", "w": 0.098}, {"d": "MN Senate District 64", "rep": "Erin Murphy", "w": 0.084}, {"d": "MN Senate District 65", "rep": "Sandy Pappas", "w": 0.075}, {"d": "MN Senate District 47", "rep": "Amanda Hemmingsen-Jaeger", "w": 0.034}, {"d": "MN Senate District 39", "rep": "Mary Kunesh-Podein", "w": 0.026}]}, "munis": [{"m": "Maplewood", "p": [{"n": "Marylee Abrams", "r": "Mayor, Maplewood, MN"}]}, {"m": "St Paul", "p": [{"n": "Kaohly Her", "r": "Mayor, Saint Paul, MN"}]}], "slug": "ramsey"}, "27125": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 1B", "rep": "Steve Gander", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "red-lake"}, "27127": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 15B", "rep": "Paul Torkelson", "w": 1.0}], "ss": [{"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 1.0}]}, "munis": [], "slug": "redwood"}, "27129": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.999}], "sh": [{"d": "MN House District 16A", "rep": "Scott Van Binsbergen", "w": 1.0}], "ss": [{"d": "MN Senate District 16", "rep": "Andrew Lang", "w": 1.0}]}, "munis": [], "slug": "renville"}, "27131": {"county": [], "districts": {"cd": [{"d": "MN-02", "rep": "Angie Craig", "w": 0.563}, {"d": "MN-01", "rep": "Brad Finstad", "w": 0.437}], "sh": [{"d": "MN House District 19A", "rep": "Keith Allen", "w": 0.559}, {"d": "MN House District 58A", "rep": "Kristi Pursell", "w": 0.296}, {"d": "MN House District 58B", "rep": "Drew Roach", "w": 0.075}, {"d": "MN House District 22B", "rep": "Terry Stier", "w": 0.07}], "ss": [{"d": "MN Senate District 19", "rep": "John Jasinski", "w": 0.559}, {"d": "MN Senate District 58", "rep": "Bill Lieske", "w": 0.371}, {"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.07}]}, "munis": [{"m": "Northfield", "p": [{"n": "Rhonda Pownell", "r": "Mayor, Northfield, MN"}]}], "slug": "rice"}, "27133": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [], "ss": [{"d": "MN Senate District 21", "rep": "Bill Weber", "w": 1.0}]}, "munis": [], "slug": "rock"}, "27135": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.999}], "sh": [{"d": "MN House District 1A", "rep": "John Burkel", "w": 1.0}], "ss": [{"d": "MN Senate District 1", "rep": "Mark Johnson", "w": 1.0}]}, "munis": [], "slug": "roseau"}, "27137": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.983}], "sh": [{"d": "MN House District 3A", "rep": "Roger Skraba", "w": 0.451}, {"d": "MN House District 7B", "rep": "Cal Warwas", "w": 0.246}, {"d": "MN House District 3B", "rep": "Natalie Zeleznikar", "w": 0.15}, {"d": "MN House District 7A", "rep": "Spencer Igo", "w": 0.099}, {"d": "MN House District 11A", "rep": "Jeff Dotseth", "w": 0.026}, {"d": "MN House District 8A", "rep": "Pete Johnson", "w": 0.006}], "ss": [{"d": "MN Senate District 3", "rep": "Grant Hauschild", "w": 0.601}, {"d": "MN Senate District 7", "rep": "Rob Farnsworth", "w": 0.345}, {"d": "MN Senate District 11", "rep": "Jason Rarick", "w": 0.026}, {"d": "MN Senate District 8", "rep": "Jen McEwen", "w": 0.011}]}, "munis": [{"m": "Duluth", "p": [{"n": "Roger Reinert", "r": "Mayor, Duluth, MN"}]}, {"m": "Floodwood", "p": [{"n": "Tad Farrell", "r": "Mayor, Floodwood, MN"}]}], "slug": "st-louis"}, "27139": {"county": [], "districts": {"cd": [{"d": "MN-02", "rep": "Angie Craig", "w": 0.993}], "sh": [{"d": "MN House District 54B", "rep": "Ben Bakeberg", "w": 0.285}, {"d": "MN House District 22B", "rep": "Terry Stier", "w": 0.232}, {"d": "MN House District 58A", "rep": "Kristi Pursell", "w": 0.197}, {"d": "MN House District 57A", "rep": "Jon Koznick", "w": 0.162}, {"d": "MN House District 54A", "rep": "Brad Tabke", "w": 0.08}, {"d": "MN House District 55A", "rep": "Jess Hanson", "w": 0.045}], "ss": [{"d": "MN Senate District 54", "rep": "Eric Pratt", "w": 0.364}, {"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.232}, {"d": "MN Senate District 58", "rep": "Bill Lieske", "w": 0.197}, {"d": "MN Senate District 57", "rep": "Zach Duckworth", "w": 0.162}, {"d": "MN Senate District 55", "rep": "Lindsey Port", "w": 0.045}]}, "munis": [], "slug": "scott"}, "27141": {"county": [], "districts": {"cd": [{"d": "MN-06", "rep": "Tom Emmer", "w": 1.0}], "sh": [{"d": "MN House District 27A", "rep": "Shane Mekeland", "w": 0.64}, {"d": "MN House District 27B", "rep": "Bryan Lawrence", "w": 0.24}, {"d": "MN House District 30B", "rep": "Paul Novotny", "w": 0.097}, {"d": "MN House District 14B", "rep": "Dan Wolgamott", "w": 0.023}], "ss": [{"d": "MN Senate District 27", "rep": "Andrew Mathews", "w": 0.88}, {"d": "MN Senate District 30", "rep": "Eric Lucero", "w": 0.097}, {"d": "MN Senate District 14", "rep": "Aric Putnam", "w": 0.023}]}, "munis": [{"m": "Becker", "p": [{"n": "Tracy Bertram", "r": "Mayor, Becker, MN"}]}, {"m": "Elk River", "p": [{"n": "Calvin Portner", "r": "Mayor, Elk River, MN"}]}], "slug": "sherburne"}, "27143": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.998}], "sh": [{"d": "MN House District 17B", "rep": "Bobbie Harder", "w": 0.81}, {"d": "MN House District 17A", "rep": "Dawn Gillman", "w": 0.19}], "ss": [{"d": "MN Senate District 17", "rep": "Glenn Gruenhagen", "w": 1.0}]}, "munis": [{"m": "Winthrop", "p": [{"n": "Kelly Pierson", "r": "Mayor, Winthrop, MN"}]}], "slug": "sibley"}, "27145": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.811}, {"d": "MN-06", "rep": "Tom Emmer", "w": 0.189}], "sh": [{"d": "MN House District 13A", "rep": "Lisa Demuth", "w": 0.405}, {"d": "MN House District 12A", "rep": "Paul Anderson", "w": 0.313}, {"d": "MN House District 12B", "rep": "Mary Franson", "w": 0.117}, {"d": "MN House District 13B", "rep": "Tim O'Driscoll", "w": 0.108}, {"d": "MN House District 14A", "rep": "Bernie Perryman", "w": 0.049}, {"d": "MN House District 14B", "rep": "Dan Wolgamott", "w": 0.007}], "ss": [{"d": "MN Senate District 13", "rep": "Jeff Howe", "w": 0.513}, {"d": "MN Senate District 12", "rep": "Torrey Westrom", "w": 0.43}, {"d": "MN Senate District 14", "rep": "Aric Putnam", "w": 0.056}]}, "munis": [{"m": "St Cloud", "p": [{"n": "Dave Kleis", "r": "Mayor, St. Cloud, MN"}]}], "slug": "stearns"}, "27147": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 19B", "rep": "Tom Sexton", "w": 0.499}, {"d": "MN House District 23A", "rep": "Peggy Bennett", "w": 0.417}, {"d": "MN House District 23B", "rep": "Patty Mueller", "w": 0.084}], "ss": [{"d": "MN Senate District 23", "rep": "Gene Dornink", "w": 0.5}, {"d": "MN Senate District 19", "rep": "John Jasinski", "w": 0.499}]}, "munis": [{"m": "Blooming Prairie", "p": [{"n": "Curt Esplan", "r": "Mayor, Blooming Prairie, MN"}]}], "slug": "steele"}, "27149": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 12A", "rep": "Paul Anderson", "w": 1.0}], "ss": [{"d": "MN Senate District 12", "rep": "Torrey Westrom", "w": 1.0}]}, "munis": [], "slug": "stevens"}, "27151": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 12A", "rep": "Paul Anderson", "w": 1.0}], "ss": [{"d": "MN Senate District 12", "rep": "Torrey Westrom", "w": 1.0}]}, "munis": [], "slug": "swift"}, "27153": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 5B", "rep": "Mike Wiener", "w": 1.0}], "ss": [{"d": "MN Senate District 5", "rep": "Paul Utke", "w": 1.0}]}, "munis": [], "slug": "todd"}, "27155": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 9A", "rep": "Jeff Backer", "w": 1.0}], "ss": [{"d": "MN Senate District 9", "rep": "Jordan Rasmusson", "w": 1.0}]}, "munis": [], "slug": "traverse"}, "27157": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 20B", "rep": "Steve Jacob", "w": 0.558}, {"d": "MN House District 20A", "rep": "Pam Altendorf", "w": 0.442}], "ss": [{"d": "MN Senate District 20", "rep": "Steve Drazkowski", "w": 1.0}]}, "munis": [], "slug": "wabasha"}, "27159": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.999}], "sh": [{"d": "MN House District 5A", "rep": "Krista Knudsen", "w": 0.529}, {"d": "MN House District 5B", "rep": "Mike Wiener", "w": 0.471}], "ss": [{"d": "MN Senate District 5", "rep": "Paul Utke", "w": 1.0}]}, "munis": [], "slug": "wadena"}, "27161": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 23A", "rep": "Peggy Bennett", "w": 0.5}, {"d": "MN House District 19A", "rep": "Keith Allen", "w": 0.333}, {"d": "MN House District 19B", "rep": "Tom Sexton", "w": 0.166}], "ss": [{"d": "MN Senate District 23", "rep": "Gene Dornink", "w": 0.5}, {"d": "MN Senate District 19", "rep": "John Jasinski", "w": 0.499}]}, "munis": [], "slug": "waseca"}, "27163": {"county": [], "districts": {"cd": [{"d": "MN-08", "rep": "Pete Stauber", "w": 0.398}, {"d": "MN-04", "rep": "Betty McCollum", "w": 0.389}, {"d": "MN-02", "rep": "Angie Craig", "w": 0.212}], "sh": [{"d": "MN House District 33B", "rep": "Josiah Hill", "w": 0.293}, {"d": "MN House District 41A", "rep": "Wayne Johnson", "w": 0.265}, {"d": "MN House District 33A", "rep": "Patti Anderson", "w": 0.185}, {"d": "MN House District 41B", "rep": "Tom Dippel", "w": 0.112}, {"d": "MN House District 47B", "rep": "Ethan Cha", "w": 0.056}, {"d": "MN House District 53B", "rep": "Rick Hansen", "w": 0.031}, {"d": "MN House District 44B", "rep": "Leon Lillie", "w": 0.029}, {"d": "MN House District 47A", "rep": "Shelley Buck", "w": 0.029}], "ss": [{"d": "MN Senate District 33", "rep": "Karin Housley", "w": 0.477}, {"d": "MN Senate District 41", "rep": "Judy Seeberger", "w": 0.377}, {"d": "MN Senate District 47", "rep": "Amanda Hemmingsen-Jaeger", "w": 0.084}, {"d": "MN Senate District 53", "rep": "Matt Klein", "w": 0.031}, {"d": "MN Senate District 44", "rep": "Tou Xiong", "w": 0.029}]}, "munis": [], "slug": "washington"}, "27165": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 22A", "rep": "Bjorn Olson", "w": 0.51}, {"d": "MN House District 21B", "rep": "Marj Fogelman", "w": 0.49}], "ss": [{"d": "MN Senate District 22", "rep": "Rich Draheim", "w": 0.51}, {"d": "MN Senate District 21", "rep": "Bill Weber", "w": 0.49}]}, "munis": [], "slug": "watonwan"}, "27167": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 0.998}], "sh": [{"d": "MN House District 9A", "rep": "Jeff Backer", "w": 0.999}], "ss": [{"d": "MN Senate District 9", "rep": "Jordan Rasmusson", "w": 0.999}]}, "munis": [], "slug": "wilkin"}, "27169": {"county": [], "districts": {"cd": [{"d": "MN-01", "rep": "Brad Finstad", "w": 1.0}], "sh": [{"d": "MN House District 26A", "rep": "Ripper Repinski", "w": 0.665}, {"d": "MN House District 20B", "rep": "Steve Jacob", "w": 0.334}], "ss": [{"d": "MN Senate District 26", "rep": "Jeremy Miller", "w": 0.665}, {"d": "MN Senate District 20", "rep": "Steve Drazkowski", "w": 0.334}]}, "munis": [], "slug": "winona"}, "27171": {"county": [], "districts": {"cd": [{"d": "MN-06", "rep": "Tom Emmer", "w": 0.999}], "sh": [{"d": "MN House District 29A", "rep": "Joe McDonald", "w": 0.517}, {"d": "MN House District 29B", "rep": "Marion Rarick", "w": 0.229}, {"d": "MN House District 30A", "rep": "Walter Hudson", "w": 0.138}, {"d": "MN House District 17A", "rep": "Dawn Gillman", "w": 0.1}, {"d": "MN House District 30B", "rep": "Paul Novotny", "w": 0.016}], "ss": [{"d": "MN Senate District 29", "rep": "Mike Holmstrom", "w": 0.746}, {"d": "MN Senate District 30", "rep": "Eric Lucero", "w": 0.154}, {"d": "MN Senate District 17", "rep": "Glenn Gruenhagen", "w": 0.1}]}, "munis": [{"m": "Hanover", "p": [{"n": "Chris Kauffman", "r": "Mayor, Hanover, MN"}]}], "slug": "wright"}, "27173": {"county": [], "districts": {"cd": [{"d": "MN-07", "rep": "Michelle Fischbach", "w": 1.0}], "sh": [{"d": "MN House District 15A", "rep": "Chris Swedzinski", "w": 1.0}], "ss": [{"d": "MN Senate District 15", "rep": "Gary Dahms", "w": 1.0}]}, "munis": [], "slug": "yellow-medicine"}, "28001": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.996}], "sh": [{"d": "MS House District 94", "rep": "Robert Johnson", "w": 0.434}, {"d": "MS House District 96", "rep": "Angela Cockerham", "w": 0.313}, {"d": "MS House District 97", "rep": "Sam Mims", "w": 0.252}], "ss": [{"d": "MS Senate District 37", "rep": "Albert Butler", "w": 0.618}, {"d": "MS Senate District 38", "rep": "Gary Brumfield", "w": 0.382}]}, "munis": [{"m": "Natchez", "p": [{"n": "Dan M. Gibson", "r": "Mayor, Natchez, MS"}]}], "slug": "adams"}, "28003": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 2", "rep": "Brad Mattox", "w": 0.539}, {"d": "MS House District 1", "rep": "Bubba Carpenter", "w": 0.202}, {"d": "MS House District 4", "rep": "Jody Steverson", "w": 0.161}, {"d": "MS House District 3", "rep": "Tracy Arnold", "w": 0.098}], "ss": [{"d": "MS Senate District 4", "rep": "Rita Parks", "w": 1.0}]}, "munis": [], "slug": "alcorn"}, "28005": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 96", "rep": "Angela Cockerham", "w": 0.653}, {"d": "MS House District 97", "rep": "Sam Mims", "w": 0.347}], "ss": [{"d": "MS Senate District 38", "rep": "Gary Brumfield", "w": 0.605}, {"d": "MS Senate District 39", "rep": "Jason Barrett", "w": 0.394}]}, "munis": [], "slug": "amite"}, "28007": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 48", "rep": "Jason White", "w": 0.784}, {"d": "MS House District 27", "rep": "Kenji Holloway", "w": 0.137}, {"d": "MS House District 47", "rep": "Bryant Clark", "w": 0.079}], "ss": [{"d": "MS Senate District 14", "rep": "Lydia Chassaniol", "w": 0.641}, {"d": "MS Senate District 21", "rep": "Bradford Blackmon", "w": 0.359}]}, "munis": [], "slug": "attala"}, "28009": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 13", "rep": "Steve Massengill", "w": 0.793}, {"d": "MS House District 5", "rep": "John Faulkner", "w": 0.206}], "ss": [{"d": "MS Senate District 3", "rep": "Kathy Chism", "w": 1.0}]}, "munis": [], "slug": "benton"}, "28011": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.998}], "sh": [{"d": "MS House District 29", "rep": "Robert Sanders", "w": 0.649}, {"d": "MS House District 50", "rep": "John Hines", "w": 0.205}, {"d": "MS House District 26", "rep": "Otha Williams", "w": 0.087}, {"d": "MS House District 31", "rep": "Otis Anthony", "w": 0.058}], "ss": [{"d": "MS Senate District 12", "rep": "Derrick Simmons", "w": 0.741}, {"d": "MS Senate District 13", "rep": "Sarita Simmons", "w": 0.258}]}, "munis": [{"m": "Cleveland", "p": [{"n": "Billy Nowell", "r": "Mayor, Cleveland, MS"}]}], "slug": "bolivar"}, "28013": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 0.999}], "sh": [{"d": "MS House District 23", "rep": "Perry Bailey", "w": 1.0}], "ss": [{"d": "MS Senate District 8", "rep": "Ben Suber", "w": 1.0}]}, "munis": [], "slug": "calhoun"}, "28015": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 46", "rep": "Karl Oliver", "w": 0.827}, {"d": "MS House District 48", "rep": "Jason White", "w": 0.133}, {"d": "MS House District 34", "rep": "Kevin Horan", "w": 0.039}], "ss": [{"d": "MS Senate District 14", "rep": "Lydia Chassaniol", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "28017": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 22", "rep": "Justin Crosby", "w": 0.77}, {"d": "MS House District 16", "rep": "Rickey Thompson", "w": 0.157}, {"d": "MS House District 36", "rep": "Karl Gibbs", "w": 0.073}], "ss": [{"d": "MS Senate District 8", "rep": "Ben Suber", "w": 1.0}]}, "munis": [], "slug": "chickasaw"}, "28019": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 0.999}], "sh": [{"d": "MS House District 35", "rep": "Joey Hood", "w": 1.0}], "ss": [{"d": "MS Senate District 15", "rep": "Bart Williams", "w": 1.0}]}, "munis": [], "slug": "choctaw"}, "28021": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 85", "rep": "Jeffery Harness", "w": 0.999}], "ss": [{"d": "MS Senate District 37", "rep": "Albert Butler", "w": 1.0}]}, "munis": [], "slug": "claiborne"}, "28023": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 84", "rep": "Troy Smith", "w": 0.668}, {"d": "MS House District 80", "rep": "Omeria Scott", "w": 0.224}, {"d": "MS House District 81", "rep": "Steve Horne", "w": 0.108}], "ss": [{"d": "MS Senate District 33", "rep": "Jeff Tate", "w": 1.0}]}, "munis": [], "slug": "clarke"}, "28025": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 0.999}], "sh": [{"d": "MS House District 36", "rep": "Karl Gibbs", "w": 0.944}, {"d": "MS House District 37", "rep": "Andy Boyd", "w": 0.041}, {"d": "MS House District 38", "rep": "Cheikh Taylor", "w": 0.015}], "ss": [{"d": "MS Senate District 16", "rep": "Angela Turner-Ford", "w": 0.999}]}, "munis": [{"m": "West Point", "p": [{"n": "Rod Bobo", "r": "Mayor, West Point, MS"}]}], "slug": "clay"}, "28027": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.997}], "sh": [{"d": "MS House District 26", "rep": "Otha Williams", "w": 0.735}, {"d": "MS House District 9", "rep": "Cedric Burnett", "w": 0.265}], "ss": [{"d": "MS Senate District 12", "rep": "Derrick Simmons", "w": 0.75}, {"d": "MS Senate District 11", "rep": "Reginald Jackson", "w": 0.25}]}, "munis": [{"m": "Clarksdale", "p": [{"n": "Chuck Espy", "r": "Mayor, Clarksdale, MS"}]}], "slug": "coahoma"}, "28029": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.997}], "sh": [{"d": "MS House District 76", "rep": "Greg Holloway", "w": 0.654}, {"d": "MS House District 92", "rep": "Becky Currie", "w": 0.293}, {"d": "MS House District 62", "rep": "Lance Varner", "w": 0.053}], "ss": [{"d": "MS Senate District 37", "rep": "Albert Butler", "w": 0.627}, {"d": "MS Senate District 35", "rep": "Andy Berry", "w": 0.373}]}, "munis": [], "slug": "copiah"}, "28031": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 90", "rep": "Noah Sanford", "w": 0.874}, {"d": "MS House District 91", "rep": "Bob Evans", "w": 0.126}], "ss": [{"d": "MS Senate District 41", "rep": "Joey Fillingane", "w": 1.0}]}, "munis": [], "slug": "covington"}, "28033": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 0.999}], "sh": [{"d": "MS House District 25", "rep": "Dan Eubanks", "w": 0.236}, {"d": "MS House District 28", "rep": "Doc Harris", "w": 0.225}, {"d": "MS House District 9", "rep": "Cedric Burnett", "w": 0.144}, {"d": "MS House District 6", "rep": "Justin Keen", "w": 0.114}, {"d": "MS House District 24", "rep": "Jeff Hale", "w": 0.113}, {"d": "MS House District 52", "rep": "Bill Kinkade", "w": 0.059}, {"d": "MS House District 7", "rep": "Kimberly Remak", "w": 0.043}, {"d": "MS House District 20", "rep": "Rodney Hall", "w": 0.035}, {"d": "MS House District 40", "rep": "Hester Jackson-McCray", "w": 0.03}], "ss": [{"d": "MS Senate District 1", "rep": "Michael McLendon", "w": 0.383}, {"d": "MS Senate District 19", "rep": "Kevin Blackwell", "w": 0.325}, {"d": "MS Senate District 11", "rep": "Reginald Jackson", "w": 0.185}, {"d": "MS Senate District 2", "rep": "Theresa Gillespie Isom", "w": 0.105}]}, "munis": [{"m": "Hernando", "p": [{"n": "Chip Johnson", "r": "Mayor, Hernando, MS"}]}, {"m": "Horn Lake", "p": [{"n": "Allen Latimer", "r": "Mayor, Horn Lake, MS"}]}, {"m": "Olive Branch", "p": [{"n": "Ken Adams", "r": "Mayor, Olive Branch, MS"}]}, {"m": "Southaven", "p": [{"n": "Darren Musselwhite", "r": "Mayor, Southaven, MS"}]}], "slug": "desoto"}, "28035": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 104", "rep": "Larry Byrd", "w": 0.724}, {"d": "MS House District 103", "rep": "Percy Watson", "w": 0.112}, {"d": "MS House District 87", "rep": "Bubba Tubb", "w": 0.06}, {"d": "MS House District 90", "rep": "Noah Sanford", "w": 0.059}, {"d": "MS House District 102", "rep": "Missy McGee", "w": 0.045}], "ss": [{"d": "MS Senate District 45", "rep": "Johnny DuPree", "w": 0.811}, {"d": "MS Senate District 42", "rep": "Don Hartness", "w": 0.103}, {"d": "MS Senate District 34", "rep": "Juan Barnett", "w": 0.086}]}, "munis": [{"m": "Hattiesburg", "p": [{"n": "Toby Barker", "r": "Mayor, Hattiesburg, MS"}]}], "slug": "forrest"}, "28037": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 85", "rep": "Jeffery Harness", "w": 0.424}, {"d": "MS House District 53", "rep": "Vince Mangold", "w": 0.251}, {"d": "MS House District 97", "rep": "Sam Mims", "w": 0.166}, {"d": "MS House District 94", "rep": "Robert Johnson", "w": 0.159}], "ss": [{"d": "MS Senate District 37", "rep": "Albert Butler", "w": 0.749}, {"d": "MS Senate District 39", "rep": "Jason Barrett", "w": 0.251}]}, "munis": [], "slug": "franklin"}, "28039": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 107", "rep": "Steve Lott", "w": 0.69}, {"d": "MS House District 109", "rep": "Manly Barton", "w": 0.178}, {"d": "MS House District 105", "rep": "Elliot Burch", "w": 0.132}], "ss": [{"d": "MS Senate District 43", "rep": "Dennis DeBar", "w": 1.0}]}, "munis": [], "slug": "george"}, "28041": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 105", "rep": "Elliot Burch", "w": 0.825}, {"d": "MS House District 86", "rep": "Shane Barnett", "w": 0.175}], "ss": [{"d": "MS Senate District 43", "rep": "Dennis DeBar", "w": 0.854}, {"d": "MS Senate District 42", "rep": "Don Hartness", "w": 0.146}]}, "munis": [], "slug": "greene"}, "28043": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 34", "rep": "Kevin Horan", "w": 0.793}, {"d": "MS House District 30", "rep": "Tracey Rosebud", "w": 0.189}, {"d": "MS House District 46", "rep": "Karl Oliver", "w": 0.019}], "ss": [{"d": "MS Senate District 14", "rep": "Lydia Chassaniol", "w": 1.0}]}, "munis": [{"m": "Grenada", "p": [{"n": "Charles H. Latham", "r": "Mayor, Grenada, MS"}]}], "slug": "grenada"}, "28045": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 0.878}], "sh": [{"d": "MS House District 122", "rep": "Brent Anderson", "w": 0.537}, {"d": "MS House District 93", "rep": "Timmy Ladner", "w": 0.229}, {"d": "MS House District 95", "rep": "Jay McKnight", "w": 0.107}], "ss": [{"d": "MS Senate District 46", "rep": "Philman Ladner", "w": 0.861}, {"d": "MS Senate District 48", "rep": "Mike Thompson", "w": 0.013}]}, "munis": [], "slug": "hancock"}, "28047": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 0.619}], "sh": [{"d": "MS House District 116", "rep": "Casey Eure", "w": 0.219}, {"d": "MS House District 121", "rep": "Carolyn Crawford", "w": 0.102}, {"d": "MS House District 33", "rep": "Jim Estrada", "w": 0.101}, {"d": "MS House District 95", "rep": "Jay McKnight", "w": 0.078}, {"d": "MS House District 120", "rep": "Richard Bennett", "w": 0.024}, {"d": "MS House District 119", "rep": "Jeffrey Hulum", "w": 0.022}, {"d": "MS House District 118", "rep": "Greg Haney", "w": 0.02}, {"d": "MS House District 115", "rep": "Zack Grady", "w": 0.017}, {"d": "MS House District 117", "rep": "Kevin Felsher", "w": 0.015}], "ss": [{"d": "MS Senate District 47", "rep": "Mike Seymour", "w": 0.22}, {"d": "MS Senate District 46", "rep": "Philman Ladner", "w": 0.19}, {"d": "MS Senate District 48", "rep": "Mike Thompson", "w": 0.076}, {"d": "MS Senate District 50", "rep": "Scott DeLano", "w": 0.07}, {"d": "MS Senate District 49", "rep": "Joel Carter", "w": 0.042}]}, "munis": [{"m": "Biloxi", "p": [{"n": "Andrew Gilich", "r": "Mayor, Biloxi, MS"}]}, {"m": "Gulfport", "p": [{"n": "William Gardner Hewes", "r": "Mayor, Gulfport, MS"}]}, {"m": "Long Beach", "p": [{"n": "George L. Bass", "r": "Mayor, Long Beach, MS"}]}], "slug": "harrison"}, "28049": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.981}, {"d": "MS-03", "rep": "Michael Guest", "w": 0.019}], "sh": [{"d": "MS House District 63", "rep": "Stephanie Foster", "w": 0.555}, {"d": "MS House District 66", "rep": "Fabian Nelson", "w": 0.182}, {"d": "MS House District 70", "rep": "Bo Brown", "w": 0.061}, {"d": "MS House District 56", "rep": "Clay Mansell", "w": 0.06}, {"d": "MS House District 71", "rep": "Ronnie Crudup", "w": 0.037}, {"d": "MS House District 76", "rep": "Greg Holloway", "w": 0.032}, {"d": "MS House District 69", "rep": "Grace Butler-Washington", "w": 0.017}, {"d": "MS House District 64", "rep": "Shanda Yates", "w": 0.015}, {"d": "MS House District 67", "rep": "Earle Banks", "w": 0.014}, {"d": "MS House District 72", "rep": "Justis Gibbs", "w": 0.01}, {"d": "MS House District 65", "rep": "Chris Bell", "w": 0.008}, {"d": "MS House District 68", "rep": "Zakiya Summers", "w": 0.007}], "ss": [{"d": "MS Senate District 26", "rep": "Kamesha Mumford", "w": 0.363}, {"d": "MS Senate District 29", "rep": "David Blount", "w": 0.238}, {"d": "MS Senate District 27", "rep": "Hillman Frazier", "w": 0.206}, {"d": "MS Senate District 37", "rep": "Albert Butler", "w": 0.118}, {"d": "MS Senate District 28", "rep": "Sollie Norwood", "w": 0.063}, {"d": "MS Senate District 25", "rep": "Walter Michel", "w": 0.011}]}, "munis": [{"m": "Byram", "p": [{"n": "Richard White", "r": "Mayor, Byram, MS"}]}, {"m": "Clinton", "p": [{"n": "Phil Fisher", "r": "Mayor, Clinton, MS"}]}, {"m": "Jackson", "p": [{"n": "Chokwe Antar Lumumba", "r": "Mayor, Jackson, MS"}]}], "slug": "hinds"}, "28051": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 47", "rep": "Bryant Clark", "w": 0.681}, {"d": "MS House District 51", "rep": "Timaka James-Jones", "w": 0.205}, {"d": "MS House District 48", "rep": "Jason White", "w": 0.114}], "ss": [{"d": "MS Senate District 21", "rep": "Bradford Blackmon", "w": 1.0}]}, "munis": [], "slug": "holmes"}, "28053": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 51", "rep": "Timaka James-Jones", "w": 1.0}], "ss": [{"d": "MS Senate District 22", "rep": "Joseph Thomas", "w": 0.999}]}, "munis": [], "slug": "humphreys"}, "28055": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.999}], "sh": [{"d": "MS House District 54", "rep": "Kevin Ford", "w": 0.79}, {"d": "MS House District 50", "rep": "John Hines", "w": 0.209}], "ss": [{"d": "MS Senate District 23", "rep": "Briggs Hopson", "w": 0.999}]}, "munis": [], "slug": "issaquena"}, "28057": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 21", "rep": "Donnie Bell", "w": 0.842}, {"d": "MS House District 19", "rep": "Randy Boyd", "w": 0.157}], "ss": [{"d": "MS Senate District 5", "rep": "Daniel Sparks", "w": 0.648}, {"d": "MS Senate District 7", "rep": "Hob Bryan", "w": 0.352}]}, "munis": [], "slug": "itawamba"}, "28059": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 0.738}], "sh": [{"d": "MS House District 109", "rep": "Manly Barton", "w": 0.303}, {"d": "MS House District 114", "rep": "Jeff Guice", "w": 0.142}, {"d": "MS House District 111", "rep": "Jimmy Fondren", "w": 0.123}, {"d": "MS House District 112", "rep": "John Read", "w": 0.105}, {"d": "MS House District 110", "rep": "Jeramey Anderson", "w": 0.023}, {"d": "MS House District 113", "rep": "Hank Zuber", "w": 0.02}], "ss": [{"d": "MS Senate District 51", "rep": "Jeremy England", "w": 0.338}, {"d": "MS Senate District 47", "rep": "Mike Seymour", "w": 0.298}, {"d": "MS Senate District 52", "rep": "Brice Wiggins", "w": 0.079}]}, "munis": [{"m": "Gautier", "p": [{"n": "Casey Vaughan", "r": "Mayor, Gautier, MS"}]}, {"m": "Moss Point", "p": [{"n": "Billy Knight, Sr.", "r": "Mayor, Moss Point, MS"}]}, {"m": "Ocean Springs", "p": [{"n": "Kenny Holloway", "r": "Mayor, Ocean Springs, MS"}]}, {"m": "Pascagoula", "p": [{"n": "Jay Willis", "r": "Mayor, Pascagoula, MS"}]}], "slug": "jackson"}, "28061": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 84", "rep": "Troy Smith", "w": 0.68}, {"d": "MS House District 80", "rep": "Omeria Scott", "w": 0.232}, {"d": "MS House District 79", "rep": "Mark Tullos", "w": 0.089}], "ss": [{"d": "MS Senate District 34", "rep": "Juan Barnett", "w": 1.0}]}, "munis": [], "slug": "jasper"}, "28063": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.997}], "sh": [{"d": "MS House District 85", "rep": "Jeffery Harness", "w": 0.559}, {"d": "MS House District 94", "rep": "Robert Johnson", "w": 0.441}], "ss": [{"d": "MS Senate District 37", "rep": "Albert Butler", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "28065": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 91", "rep": "Bob Evans", "w": 0.889}, {"d": "MS House District 90", "rep": "Noah Sanford", "w": 0.11}], "ss": [{"d": "MS Senate District 35", "rep": "Andy Berry", "w": 1.0}]}, "munis": [], "slug": "jefferson-davis"}, "28067": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 0.9}, {"d": "MS-03", "rep": "Michael Guest", "w": 0.1}], "sh": [{"d": "MS House District 88", "rep": "Chuck Blackwell", "w": 0.634}, {"d": "MS House District 89", "rep": "Donnie Scoggin", "w": 0.215}, {"d": "MS House District 80", "rep": "Omeria Scott", "w": 0.076}, {"d": "MS House District 90", "rep": "Noah Sanford", "w": 0.075}], "ss": [{"d": "MS Senate District 42", "rep": "Don Hartness", "w": 0.724}, {"d": "MS Senate District 34", "rep": "Juan Barnett", "w": 0.276}]}, "munis": [{"m": "Laurel", "p": [{"n": "Johnny Magee", "r": "Mayor, Laurel, MS"}]}], "slug": "jones"}, "28069": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 45", "rep": "Keith Jackson", "w": 0.643}, {"d": "MS House District 42", "rep": "Carl Mickens", "w": 0.246}, {"d": "MS House District 83", "rep": "Billy Adam Calvert", "w": 0.111}], "ss": [{"d": "MS Senate District 32", "rep": "Rod Hickman", "w": 1.0}]}, "munis": [], "slug": "kemper"}, "28071": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 13", "rep": "Steve Massengill", "w": 0.3}, {"d": "MS House District 23", "rep": "Perry Bailey", "w": 0.254}, {"d": "MS House District 10", "rep": "Josh Hawkins", "w": 0.187}, {"d": "MS House District 34", "rep": "Kevin Horan", "w": 0.076}, {"d": "MS House District 12", "rep": "Clay Deweese", "w": 0.073}, {"d": "MS House District 8", "rep": "Trey Lamar", "w": 0.064}, {"d": "MS House District 5", "rep": "John Faulkner", "w": 0.046}], "ss": [{"d": "MS Senate District 9", "rep": "Nicole Boyd", "w": 0.608}, {"d": "MS Senate District 10", "rep": "Neil Whaley", "w": 0.202}, {"d": "MS Senate District 8", "rep": "Ben Suber", "w": 0.19}]}, "munis": [{"m": "Oxford", "p": [{"n": "Robyn Tannehill", "r": "Mayor, Oxford, MS"}]}], "slug": "lafayette"}, "28073": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 87", "rep": "Bubba Tubb", "w": 0.37}, {"d": "MS House District 99", "rep": "Bill Pigott", "w": 0.306}, {"d": "MS House District 100", "rep": "Ken Morgan", "w": 0.181}, {"d": "MS House District 106", "rep": "Jansen Owen", "w": 0.076}, {"d": "MS House District 101", "rep": "Kent McCarty", "w": 0.066}], "ss": [{"d": "MS Senate District 44", "rep": "Chris Johnson", "w": 0.785}, {"d": "MS Senate District 41", "rep": "Joey Fillingane", "w": 0.215}]}, "munis": [], "slug": "lamar"}, "28075": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 81", "rep": "Steve Horne", "w": 0.526}, {"d": "MS House District 83", "rep": "Billy Adam Calvert", "w": 0.243}, {"d": "MS House District 45", "rep": "Keith Jackson", "w": 0.185}, {"d": "MS House District 82", "rep": "Gregory Elliott", "w": 0.046}], "ss": [{"d": "MS Senate District 33", "rep": "Jeff Tate", "w": 0.722}, {"d": "MS Senate District 32", "rep": "Rod Hickman", "w": 0.207}, {"d": "MS Senate District 31", "rep": "Tyler McCaughn", "w": 0.071}]}, "munis": [{"m": "Meridian", "p": [{"n": "Q109905488", "r": "Mayor, Meridian, MS"}]}], "slug": "lauderdale"}, "28077": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 0.999}], "sh": [{"d": "MS House District 91", "rep": "Bob Evans", "w": 0.56}, {"d": "MS House District 53", "rep": "Vince Mangold", "w": 0.262}, {"d": "MS House District 92", "rep": "Becky Currie", "w": 0.096}, {"d": "MS House District 99", "rep": "Bill Pigott", "w": 0.081}], "ss": [{"d": "MS Senate District 35", "rep": "Andy Berry", "w": 0.599}, {"d": "MS Senate District 39", "rep": "Jason Barrett", "w": 0.401}]}, "munis": [], "slug": "lawrence"}, "28079": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.999}], "sh": [{"d": "MS House District 27", "rep": "Kenji Holloway", "w": 0.483}, {"d": "MS House District 48", "rep": "Jason White", "w": 0.387}, {"d": "MS House District 78", "rep": "Randy Rushing", "w": 0.098}, {"d": "MS House District 44", "rep": "Scott Bounds", "w": 0.033}], "ss": [{"d": "MS Senate District 18", "rep": "Lane Taylor", "w": 0.851}, {"d": "MS Senate District 21", "rep": "Bradford Blackmon", "w": 0.149}]}, "munis": [], "slug": "leake"}, "28081": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 19", "rep": "Randy Boyd", "w": 0.41}, {"d": "MS House District 18", "rep": "Jerry Turner", "w": 0.297}, {"d": "MS House District 16", "rep": "Rickey Thompson", "w": 0.151}, {"d": "MS House District 17", "rep": "Shane Aguirre", "w": 0.141}], "ss": [{"d": "MS Senate District 6", "rep": "Chad McMahan", "w": 0.685}, {"d": "MS Senate District 7", "rep": "Hob Bryan", "w": 0.315}]}, "munis": [{"m": "Tupelo", "p": [{"n": "Todd Jordan", "r": "Mayor, Tupelo, MS"}]}], "slug": "lee"}, "28083": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 32", "rep": "Solomon Osborne", "w": 0.592}, {"d": "MS House District 51", "rep": "Timaka James-Jones", "w": 0.244}, {"d": "MS House District 46", "rep": "Karl Oliver", "w": 0.164}], "ss": [{"d": "MS Senate District 24", "rep": "Justin Pope", "w": 0.961}, {"d": "MS Senate District 14", "rep": "Lydia Chassaniol", "w": 0.038}]}, "munis": [{"m": "Greenwood", "p": [{"n": "Carolyn McAdams", "r": "Mayor, Greenwood, MS"}]}], "slug": "leflore"}, "28085": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 0.999}], "sh": [{"d": "MS House District 92", "rep": "Becky Currie", "w": 0.589}, {"d": "MS House District 53", "rep": "Vince Mangold", "w": 0.411}], "ss": [{"d": "MS Senate District 39", "rep": "Jason Barrett", "w": 1.0}]}, "munis": [{"m": "Brookhaven", "p": [{"n": "Joe C. Cox", "r": "Mayor, Brookhaven, MS"}]}], "slug": "lincoln"}, "28087": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 37", "rep": "Andy Boyd", "w": 0.465}, {"d": "MS House District 42", "rep": "Carl Mickens", "w": 0.274}, {"d": "MS House District 39", "rep": "Dana McLean", "w": 0.151}, {"d": "MS House District 41", "rep": "Kabir Karriem", "w": 0.072}, {"d": "MS House District 38", "rep": "Cheikh Taylor", "w": 0.037}], "ss": [{"d": "MS Senate District 17", "rep": "Chuck Younger", "w": 0.943}, {"d": "MS Senate District 16", "rep": "Angela Turner-Ford", "w": 0.057}]}, "munis": [{"m": "Columbus", "p": [{"n": "Keith Gaskin", "r": "Mayor, Columbus, MS"}]}], "slug": "lowndes"}, "28089": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.703}, {"d": "MS-03", "rep": "Michael Guest", "w": 0.297}], "sh": [{"d": "MS House District 27", "rep": "Kenji Holloway", "w": 0.36}, {"d": "MS House District 57", "rep": "Lawrence Blackmon", "w": 0.291}, {"d": "MS House District 75", "rep": "Celeste Hurst", "w": 0.116}, {"d": "MS House District 56", "rep": "Clay Mansell", "w": 0.099}, {"d": "MS House District 73", "rep": "Jill Ford", "w": 0.067}, {"d": "MS House District 58", "rep": "Jonathan McMillan", "w": 0.051}, {"d": "MS House District 72", "rep": "Justis Gibbs", "w": 0.008}, {"d": "MS House District 64", "rep": "Shanda Yates", "w": 0.006}], "ss": [{"d": "MS Senate District 21", "rep": "Bradford Blackmon", "w": 0.601}, {"d": "MS Senate District 22", "rep": "Joseph Thomas", "w": 0.19}, {"d": "MS Senate District 23", "rep": "Briggs Hopson", "w": 0.087}, {"d": "MS Senate District 26", "rep": "Kamesha Mumford", "w": 0.067}, {"d": "MS Senate District 25", "rep": "Walter Michel", "w": 0.056}]}, "munis": [{"m": "Canton", "p": [{"n": "William Truly, Jr.", "r": "Mayor, Canton, MS"}]}, {"m": "Madison", "p": [{"n": "Mary Hawkins Butler", "r": "Mayor, Madison, MS"}]}, {"m": "Ridgeland", "p": [{"n": "Gene F. McGee", "r": "Mayor, Ridgeland, MS"}]}], "slug": "madison"}, "28091": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 100", "rep": "Ken Morgan", "w": 0.567}, {"d": "MS House District 99", "rep": "Bill Pigott", "w": 0.433}], "ss": [{"d": "MS Senate District 41", "rep": "Joey Fillingane", "w": 1.0}]}, "munis": [], "slug": "marion"}, "28093": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 5", "rep": "John Faulkner", "w": 0.648}, {"d": "MS House District 52", "rep": "Bill Kinkade", "w": 0.215}, {"d": "MS House District 13", "rep": "Steve Massengill", "w": 0.136}], "ss": [{"d": "MS Senate District 10", "rep": "Neil Whaley", "w": 0.86}, {"d": "MS Senate District 3", "rep": "Kathy Chism", "w": 0.14}]}, "munis": [], "slug": "marshall"}, "28095": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 39", "rep": "Dana McLean", "w": 0.251}, {"d": "MS House District 36", "rep": "Karl Gibbs", "w": 0.23}, {"d": "MS House District 22", "rep": "Justin Crosby", "w": 0.175}, {"d": "MS House District 21", "rep": "Donnie Bell", "w": 0.156}, {"d": "MS House District 37", "rep": "Andy Boyd", "w": 0.133}, {"d": "MS House District 16", "rep": "Rickey Thompson", "w": 0.055}], "ss": [{"d": "MS Senate District 7", "rep": "Hob Bryan", "w": 0.666}, {"d": "MS Senate District 17", "rep": "Chuck Younger", "w": 0.334}]}, "munis": [], "slug": "monroe"}, "28097": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.999}], "sh": [{"d": "MS House District 46", "rep": "Karl Oliver", "w": 1.0}], "ss": [{"d": "MS Senate District 14", "rep": "Lydia Chassaniol", "w": 0.552}, {"d": "MS Senate District 15", "rep": "Bart Williams", "w": 0.448}]}, "munis": [], "slug": "montgomery"}, "28099": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 44", "rep": "Scott Bounds", "w": 0.823}, {"d": "MS House District 45", "rep": "Keith Jackson", "w": 0.177}], "ss": [{"d": "MS Senate District 18", "rep": "Lane Taylor", "w": 1.0}]}, "munis": [], "slug": "neshoba"}, "28101": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 78", "rep": "Randy Rushing", "w": 0.585}, {"d": "MS House District 84", "rep": "Troy Smith", "w": 0.179}, {"d": "MS House District 81", "rep": "Steve Horne", "w": 0.152}, {"d": "MS House District 83", "rep": "Billy Adam Calvert", "w": 0.084}], "ss": [{"d": "MS Senate District 31", "rep": "Tyler McCaughn", "w": 1.0}]}, "munis": [], "slug": "newton"}, "28103": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 42", "rep": "Carl Mickens", "w": 1.0}], "ss": [{"d": "MS Senate District 32", "rep": "Rod Hickman", "w": 0.537}, {"d": "MS Senate District 16", "rep": "Angela Turner-Ford", "w": 0.463}]}, "munis": [], "slug": "noxubee"}, "28105": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 0.748}, {"d": "MS-01", "rep": "Trent Kelly", "w": 0.252}], "sh": [{"d": "MS House District 38", "rep": "Cheikh Taylor", "w": 0.495}, {"d": "MS House District 35", "rep": "Joey Hood", "w": 0.245}, {"d": "MS House District 43", "rep": "Rob Roberson", "w": 0.171}, {"d": "MS House District 36", "rep": "Karl Gibbs", "w": 0.087}], "ss": [{"d": "MS Senate District 15", "rep": "Bart Williams", "w": 0.512}, {"d": "MS Senate District 16", "rep": "Angela Turner-Ford", "w": 0.405}, {"d": "MS Senate District 17", "rep": "Chuck Younger", "w": 0.083}]}, "munis": [{"m": "Starkville", "p": [{"n": "Lynn Spruill", "r": "Mayor, Starkville, MS"}]}], "slug": "oktibbeha"}, "28107": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 11", "rep": "Lataisha Jackson", "w": 0.681}, {"d": "MS House District 10", "rep": "Josh Hawkins", "w": 0.319}], "ss": [{"d": "MS Senate District 24", "rep": "Justin Pope", "w": 0.834}, {"d": "MS Senate District 9", "rep": "Nicole Boyd", "w": 0.166}]}, "munis": [], "slug": "panola"}, "28109": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 0.997}], "sh": [{"d": "MS House District 106", "rep": "Jansen Owen", "w": 0.601}, {"d": "MS House District 93", "rep": "Timmy Ladner", "w": 0.233}, {"d": "MS House District 108", "rep": "Stacey Hobgood-Wilkes", "w": 0.165}], "ss": [{"d": "MS Senate District 40", "rep": "Angela Hill", "w": 0.998}]}, "munis": [{"m": "Picayune", "p": [{"n": "Jim Luke", "r": "Mayor, Picayune, MS"}]}], "slug": "pearl-river"}, "28111": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 105", "rep": "Elliot Burch", "w": 0.881}, {"d": "MS House District 86", "rep": "Shane Barnett", "w": 0.119}], "ss": [{"d": "MS Senate District 45", "rep": "Johnny DuPree", "w": 1.0}]}, "munis": [], "slug": "perry"}, "28113": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 98", "rep": "Daryl Porter", "w": 0.498}, {"d": "MS House District 96", "rep": "Angela Cockerham", "w": 0.202}, {"d": "MS House District 97", "rep": "Sam Mims", "w": 0.178}, {"d": "MS House District 53", "rep": "Vince Mangold", "w": 0.122}], "ss": [{"d": "MS Senate District 38", "rep": "Gary Brumfield", "w": 0.622}, {"d": "MS Senate District 39", "rep": "Jason Barrett", "w": 0.378}]}, "munis": [{"m": "Mccomb", "p": [{"n": "Quordiniah N. Lockley", "r": "Mayor, McComb, MS"}]}], "slug": "pike"}, "28115": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 15", "rep": "Beth Waldo", "w": 0.523}, {"d": "MS House District 22", "rep": "Justin Crosby", "w": 0.186}, {"d": "MS House District 23", "rep": "Perry Bailey", "w": 0.162}, {"d": "MS House District 13", "rep": "Steve Massengill", "w": 0.129}], "ss": [{"d": "MS Senate District 8", "rep": "Ben Suber", "w": 0.61}, {"d": "MS Senate District 3", "rep": "Kathy Chism", "w": 0.39}]}, "munis": [], "slug": "pontotoc"}, "28117": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 3", "rep": "Tracy Arnold", "w": 0.805}, {"d": "MS House District 18", "rep": "Jerry Turner", "w": 0.195}], "ss": [{"d": "MS Senate District 5", "rep": "Daniel Sparks", "w": 0.805}, {"d": "MS Senate District 3", "rep": "Kathy Chism", "w": 0.195}]}, "munis": [], "slug": "prentiss"}, "28119": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 9", "rep": "Cedric Burnett", "w": 1.0}], "ss": [{"d": "MS Senate District 11", "rep": "Reginald Jackson", "w": 1.0}]}, "munis": [], "slug": "quitman"}, "28121": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 0.997}], "sh": [{"d": "MS House District 75", "rep": "Celeste Hurst", "w": 0.243}, {"d": "MS House District 77", "rep": "Price Wallace", "w": 0.201}, {"d": "MS House District 60", "rep": "Fred Shanks", "w": 0.149}, {"d": "MS House District 62", "rep": "Lance Varner", "w": 0.148}, {"d": "MS House District 74", "rep": "Lee Yancey", "w": 0.092}, {"d": "MS House District 59", "rep": "Brent Powell", "w": 0.05}, {"d": "MS House District 68", "rep": "Zakiya Summers", "w": 0.046}, {"d": "MS House District 79", "rep": "Mark Tullos", "w": 0.036}, {"d": "MS House District 61", "rep": "Gene Newman", "w": 0.034}], "ss": [{"d": "MS Senate District 36", "rep": "Brian Rhodes", "w": 0.624}, {"d": "MS Senate District 20", "rep": "Josh Harkins", "w": 0.229}, {"d": "MS Senate District 30", "rep": "Dean Kirby", "w": 0.091}, {"d": "MS Senate District 31", "rep": "Tyler McCaughn", "w": 0.057}]}, "munis": [{"m": "Brandon", "p": [{"n": "Butch Lee", "r": "Mayor, Brandon, MS"}]}, {"m": "Flowood", "p": [{"n": "Gary Rhoads", "r": "Mayor, Flowood, MS"}]}, {"m": "Pearl", "p": [{"n": "Jake Windham", "r": "Mayor, Pearl, MS"}]}], "slug": "rankin"}, "28123": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 78", "rep": "Randy Rushing", "w": 0.362}, {"d": "MS House District 75", "rep": "Celeste Hurst", "w": 0.277}, {"d": "MS House District 79", "rep": "Mark Tullos", "w": 0.207}, {"d": "MS House District 27", "rep": "Kenji Holloway", "w": 0.153}], "ss": [{"d": "MS Senate District 31", "rep": "Tyler McCaughn", "w": 1.0}]}, "munis": [], "slug": "scott"}, "28125": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 51", "rep": "Timaka James-Jones", "w": 1.0}], "ss": [{"d": "MS Senate District 22", "rep": "Joseph Thomas", "w": 1.0}]}, "munis": [], "slug": "sharkey"}, "28127": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 0.998}], "sh": [{"d": "MS House District 77", "rep": "Price Wallace", "w": 0.675}, {"d": "MS House District 91", "rep": "Bob Evans", "w": 0.253}, {"d": "MS House District 90", "rep": "Noah Sanford", "w": 0.059}, {"d": "MS House District 62", "rep": "Lance Varner", "w": 0.014}], "ss": [{"d": "MS Senate District 35", "rep": "Andy Berry", "w": 1.0}]}, "munis": [], "slug": "simpson"}, "28129": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 79", "rep": "Mark Tullos", "w": 1.0}], "ss": [{"d": "MS Senate District 36", "rep": "Brian Rhodes", "w": 1.0}]}, "munis": [], "slug": "smith"}, "28131": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 107", "rep": "Steve Lott", "w": 0.554}, {"d": "MS House District 93", "rep": "Timmy Ladner", "w": 0.446}], "ss": [{"d": "MS Senate District 47", "rep": "Mike Seymour", "w": 0.743}, {"d": "MS Senate District 40", "rep": "Angela Hill", "w": 0.257}]}, "munis": [], "slug": "stone"}, "28133": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 31", "rep": "Otis Anthony", "w": 0.754}, {"d": "MS House District 30", "rep": "Tracey Rosebud", "w": 0.113}, {"d": "MS House District 26", "rep": "Otha Williams", "w": 0.107}, {"d": "MS House District 29", "rep": "Robert Sanders", "w": 0.025}], "ss": [{"d": "MS Senate District 13", "rep": "Sarita Simmons", "w": 1.0}]}, "munis": [{"m": "Indianola", "p": [{"n": "Ken Featherstone", "r": "Mayor, Indianola, MS"}]}], "slug": "sunflower"}, "28135": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 30", "rep": "Tracey Rosebud", "w": 1.0}], "ss": [{"d": "MS Senate District 24", "rep": "Justin Pope", "w": 0.898}, {"d": "MS Senate District 13", "rep": "Sarita Simmons", "w": 0.101}]}, "munis": [], "slug": "tallahatchie"}, "28137": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 0.999}], "sh": [{"d": "MS House District 8", "rep": "Trey Lamar", "w": 0.798}, {"d": "MS House District 9", "rep": "Cedric Burnett", "w": 0.17}, {"d": "MS House District 11", "rep": "Lataisha Jackson", "w": 0.031}], "ss": [{"d": "MS Senate District 10", "rep": "Neil Whaley", "w": 0.669}, {"d": "MS Senate District 11", "rep": "Reginald Jackson", "w": 0.331}]}, "munis": [], "slug": "tate"}, "28139": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 4", "rep": "Jody Steverson", "w": 1.0}], "ss": [{"d": "MS Senate District 4", "rep": "Rita Parks", "w": 1.0}]}, "munis": [], "slug": "tippah"}, "28141": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 1", "rep": "Bubba Carpenter", "w": 0.861}, {"d": "MS House District 3", "rep": "Tracy Arnold", "w": 0.139}], "ss": [{"d": "MS Senate District 5", "rep": "Daniel Sparks", "w": 1.0}]}, "munis": [], "slug": "tishomingo"}, "28143": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.995}], "sh": [{"d": "MS House District 9", "rep": "Cedric Burnett", "w": 0.999}], "ss": [{"d": "MS Senate District 11", "rep": "Reginald Jackson", "w": 0.999}]}, "munis": [], "slug": "tunica"}, "28145": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 14", "rep": "Sam Creekmore", "w": 0.763}, {"d": "MS House District 13", "rep": "Steve Massengill", "w": 0.237}], "ss": [{"d": "MS Senate District 3", "rep": "Kathy Chism", "w": 0.705}, {"d": "MS Senate District 10", "rep": "Neil Whaley", "w": 0.295}]}, "munis": [], "slug": "union"}, "28147": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 99", "rep": "Bill Pigott", "w": 0.788}, {"d": "MS House District 98", "rep": "Daryl Porter", "w": 0.212}], "ss": [{"d": "MS Senate District 41", "rep": "Joey Fillingane", "w": 0.603}, {"d": "MS Senate District 38", "rep": "Gary Brumfield", "w": 0.397}]}, "munis": [], "slug": "walthall"}, "28149": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.996}], "sh": [{"d": "MS House District 54", "rep": "Kevin Ford", "w": 0.539}, {"d": "MS House District 85", "rep": "Jeffery Harness", "w": 0.267}, {"d": "MS House District 55", "rep": "Oscar Denton", "w": 0.194}], "ss": [{"d": "MS Senate District 23", "rep": "Briggs Hopson", "w": 0.999}]}, "munis": [{"m": "Vicksburg", "p": [{"n": "George Flaggs Jr.", "r": "Mayor, Vicksburg, MS"}]}], "slug": "warren"}, "28151": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 0.996}], "sh": [{"d": "MS House District 50", "rep": "John Hines", "w": 0.815}, {"d": "MS House District 49", "rep": "Willie Bailey", "w": 0.184}], "ss": [{"d": "MS Senate District 12", "rep": "Derrick Simmons", "w": 0.999}]}, "munis": [{"m": "Greenville", "p": [{"n": "Errick D. Simmons", "r": "Mayor, Greenville, MS"}]}], "slug": "washington"}, "28153": {"county": [], "districts": {"cd": [{"d": "MS-04", "rep": "Mike Ezell", "w": 1.0}], "sh": [{"d": "MS House District 86", "rep": "Shane Barnett", "w": 1.0}], "ss": [{"d": "MS Senate District 43", "rep": "Dennis DeBar", "w": 0.902}, {"d": "MS Senate District 42", "rep": "Don Hartness", "w": 0.098}]}, "munis": [], "slug": "wayne"}, "28155": {"county": [], "districts": {"cd": [{"d": "MS-01", "rep": "Trent Kelly", "w": 1.0}], "sh": [{"d": "MS House District 23", "rep": "Perry Bailey", "w": 0.391}, {"d": "MS House District 35", "rep": "Joey Hood", "w": 0.323}, {"d": "MS House District 46", "rep": "Karl Oliver", "w": 0.286}], "ss": [{"d": "MS Senate District 15", "rep": "Bart Williams", "w": 1.0}]}, "munis": [], "slug": "webster"}, "28157": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 96", "rep": "Angela Cockerham", "w": 1.0}], "ss": [{"d": "MS Senate District 38", "rep": "Gary Brumfield", "w": 1.0}]}, "munis": [], "slug": "wilkinson"}, "28159": {"county": [], "districts": {"cd": [{"d": "MS-03", "rep": "Michael Guest", "w": 1.0}], "sh": [{"d": "MS House District 42", "rep": "Carl Mickens", "w": 0.43}, {"d": "MS House District 35", "rep": "Joey Hood", "w": 0.398}, {"d": "MS House District 45", "rep": "Keith Jackson", "w": 0.172}], "ss": [{"d": "MS Senate District 18", "rep": "Lane Taylor", "w": 0.571}, {"d": "MS Senate District 32", "rep": "Rod Hickman", "w": 0.429}]}, "munis": [], "slug": "winston"}, "28161": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 34", "rep": "Kevin Horan", "w": 1.0}], "ss": [{"d": "MS Senate District 8", "rep": "Ben Suber", "w": 1.0}]}, "munis": [], "slug": "yalobusha"}, "28163": {"county": [], "districts": {"cd": [{"d": "MS-02", "rep": "Bennie G. Thompson", "w": 1.0}], "sh": [{"d": "MS House District 54", "rep": "Kevin Ford", "w": 0.526}, {"d": "MS House District 47", "rep": "Bryant Clark", "w": 0.288}, {"d": "MS House District 51", "rep": "Timaka James-Jones", "w": 0.156}, {"d": "MS House District 57", "rep": "Lawrence Blackmon", "w": 0.03}], "ss": [{"d": "MS Senate District 23", "rep": "Briggs Hopson", "w": 0.541}, {"d": "MS Senate District 22", "rep": "Joseph Thomas", "w": 0.459}]}, "munis": [{"m": "Yazoo City", "p": [{"n": "Q131346619", "r": "Mayor, Yazoo City, MS"}]}], "slug": "yazoo"}, "29001": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 3", "rep": "Danny Busick", "w": 0.712}, {"d": "MO House District 4", "rep": "Greg Sharpe", "w": 0.288}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "adair"}, "29003": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 9", "rep": "Dean VanSchoiack", "w": 0.999}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "andrew"}, "29005": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 1", "rep": "Jeff Farnan", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "atchison"}, "29007": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 43", "rep": "Kent Haden", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "audrain"}, "29009": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 158", "rep": "Scott Cupps", "w": 1.0}], "ss": [{"d": "MO Senate District 29", "rep": "Mike Moon", "w": 1.0}]}, "munis": [], "slug": "barry"}, "29011": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 127", "rep": "Ann Kelley", "w": 1.0}], "ss": [{"d": "MO Senate District 20", "rep": "Curtis Trent", "w": 1.0}]}, "munis": [], "slug": "barton"}, "29013": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 125", "rep": "Dane Diehl", "w": 0.631}, {"d": "MO House District 62", "rep": "Sherri Gallick", "w": 0.369}], "ss": [{"d": "MO Senate District 31", "rep": "Rick Brattin", "w": 1.0}]}, "munis": [{"m": "Butler", "p": [{"n": "Jim Henry", "r": "Mayor, Butler, MO"}]}], "slug": "bates"}, "29015": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 57", "rep": "Rodger Reedy", "w": 0.834}, {"d": "MO House District 126", "rep": "Jim Kalberloh", "w": 0.166}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "benton"}, "29017": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 151", "rep": "Steve Jordan", "w": 0.568}, {"d": "MO House District 144", "rep": "Tony Harbison", "w": 0.432}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [], "slug": "bollinger"}, "29019": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.579}, {"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.421}], "sh": [{"d": "MO House District 44", "rep": "John Martin", "w": 0.53}, {"d": "MO House District 47", "rep": "Adrian Plank", "w": 0.379}, {"d": "MO House District 50", "rep": "Gregg Bush", "w": 0.037}, {"d": "MO House District 46", "rep": "David Smith", "w": 0.037}, {"d": "MO House District 45", "rep": "Kathy Steinhoff", "w": 0.016}], "ss": [{"d": "MO Senate District 19", "rep": "Stephen Webber", "w": 1.0}]}, "munis": [{"m": "Columbia", "p": [{"n": "Barbara Buffaloe", "r": "Mayor, Columbia, MO"}]}], "slug": "boone"}, "29021": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 13", "rep": "Sean Pouche", "w": 0.732}, {"d": "MO House District 11", "rep": "Brenda Shields", "w": 0.212}, {"d": "MO House District 10", "rep": "Bill Falkner", "w": 0.056}], "ss": [{"d": "MO Senate District 34", "rep": "Tony Luetkemeyer", "w": 0.549}, {"d": "MO Senate District 12", "rep": "Rusty Black", "w": 0.45}]}, "munis": [{"m": "St Joseph", "p": [{"n": "John Josendale", "r": "Mayor, St. Joseph, MO"}]}], "slug": "buchanan"}, "29023": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 152", "rep": "Hardy Billington", "w": 0.666}, {"d": "MO House District 150", "rep": "Cameron Parker", "w": 0.334}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [{"m": "Poplar Bluff", "p": [{"n": "Shane Cornman", "r": "Mayor, Poplar Bluff, MO"}]}], "slug": "butler"}, "29025": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 2", "rep": "Mazzie Christensen", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "caldwell"}, "29027": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.999}], "sh": [{"d": "MO House District 49", "rep": "Jim Schulte", "w": 0.686}, {"d": "MO House District 43", "rep": "Kent Haden", "w": 0.314}], "ss": [{"d": "MO Senate District 10", "rep": "Travis Fitzwater", "w": 1.0}]}, "munis": [], "slug": "callaway"}, "29029": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.929}, {"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.071}], "sh": [{"d": "MO House District 123", "rep": "Jeff Vernetti", "w": 0.758}, {"d": "MO House District 142", "rep": "Jeff Knight", "w": 0.242}], "ss": [{"d": "MO Senate District 6", "rep": "Mike Bernskoetter", "w": 1.0}]}, "munis": [], "slug": "camden"}, "29031": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 146", "rep": "Barry Hovis", "w": 0.722}, {"d": "MO House District 151", "rep": "Steve Jordan", "w": 0.231}, {"d": "MO House District 147", "rep": "John Voss", "w": 0.047}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [{"m": "Jackson", "p": [{"n": "Dwain Hahs", "r": "Mayor, Jackson, MO"}]}], "slug": "cape-girardeau"}, "29033": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 0.997}], "sh": [{"d": "MO House District 7", "rep": "Peggy McGaugh", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "29035": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 153", "rep": "Keith Elliott", "w": 1.0}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "carter"}, "29037": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 62", "rep": "Sherri Gallick", "w": 0.624}, {"d": "MO House District 55", "rep": "Bill Irwin", "w": 0.342}, {"d": "MO House District 56", "rep": "Michael Davis", "w": 0.034}], "ss": [{"d": "MO Senate District 31", "rep": "Rick Brattin", "w": 1.0}]}, "munis": [], "slug": "cass"}, "29039": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 125", "rep": "Dane Diehl", "w": 0.59}, {"d": "MO House District 127", "rep": "Ann Kelley", "w": 0.41}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "cedar"}, "29041": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 0.999}], "sh": [{"d": "MO House District 48", "rep": "Tim Taylor", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "chariton"}, "29043": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 138", "rep": "Burt Whaley", "w": 0.504}, {"d": "MO House District 140", "rep": "Jamie Ray Gragg", "w": 0.263}, {"d": "MO House District 139", "rep": "Bob Titus", "w": 0.233}], "ss": [{"d": "MO Senate District 29", "rep": "Mike Moon", "w": 1.0}]}, "munis": [], "slug": "christian"}, "29045": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 4", "rep": "Greg Sharpe", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "clark"}, "29047": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 0.806}, {"d": "MO-05", "rep": "Emanuel Cleaver", "w": 0.194}], "sh": [{"d": "MO House District 8", "rep": "Josh Hurlbert", "w": 0.392}, {"d": "MO House District 39", "rep": "Mark Meirath", "w": 0.306}, {"d": "MO House District 17", "rep": "Bill Allen", "w": 0.096}, {"d": "MO House District 38", "rep": "Marty Jacobs", "w": 0.081}, {"d": "MO House District 16", "rep": "Chris Brown", "w": 0.051}, {"d": "MO House District 18", "rep": "Eric Woods", "w": 0.046}, {"d": "MO House District 15", "rep": "Ken Jamison", "w": 0.029}], "ss": [{"d": "MO Senate District 21", "rep": "Kurtis Gregory", "w": 0.719}, {"d": "MO Senate District 17", "rep": "Maggie Nurrenbern", "w": 0.281}]}, "munis": [], "slug": "clay"}, "29049": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 9", "rep": "Dean VanSchoiack", "w": 0.553}, {"d": "MO House District 8", "rep": "Josh Hurlbert", "w": 0.447}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "clinton"}, "29051": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 1.0}], "sh": [{"d": "MO House District 59", "rep": "Rudy Veit", "w": 0.928}, {"d": "MO House District 60", "rep": "Dave Griffith", "w": 0.072}], "ss": [{"d": "MO Senate District 6", "rep": "Mike Bernskoetter", "w": 1.0}]}, "munis": [{"m": "Jefferson City", "p": [{"n": "Ron Fitzwater", "r": "Mayor, Jefferson City, MO"}]}], "slug": "cole"}, "29053": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.998}], "sh": [{"d": "MO House District 48", "rep": "Tim Taylor", "w": 0.965}, {"d": "MO House District 58", "rep": "Willard Haley", "w": 0.035}], "ss": [{"d": "MO Senate District 21", "rep": "Kurtis Gregory", "w": 1.0}]}, "munis": [], "slug": "cooper"}, "29055": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.999}], "sh": [{"d": "MO House District 120", "rep": "John Hewkin", "w": 1.0}], "ss": [{"d": "MO Senate District 3", "rep": "Mike Henderson", "w": 1.0}]}, "munis": [], "slug": "crawford"}, "29057": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 127", "rep": "Ann Kelley", "w": 1.0}], "ss": [{"d": "MO Senate District 20", "rep": "Curtis Trent", "w": 1.0}]}, "munis": [], "slug": "dade"}, "29059": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 142", "rep": "Jeff Knight", "w": 1.0}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "dallas"}, "29061": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 2", "rep": "Mazzie Christensen", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "daviess"}, "29063": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 9", "rep": "Dean VanSchoiack", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "dekalb"}, "29065": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 120", "rep": "John Hewkin", "w": 1.0}], "ss": [{"d": "MO Senate District 16", "rep": "Justin Brown", "w": 1.0}]}, "munis": [], "slug": "dent"}, "29067": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 155", "rep": "Matthew Overcast", "w": 0.702}, {"d": "MO House District 141", "rep": "Melissa Schmidt", "w": 0.298}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [], "slug": "douglas"}, "29069": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 0.996}], "sh": [{"d": "MO House District 150", "rep": "Cameron Parker", "w": 0.998}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 0.999}]}, "munis": [], "slug": "dunklin"}, "29071": {"county": [], "districts": {"cd": [{"d": "MO-02", "rep": "Ann Wagner", "w": 0.999}], "sh": [{"d": "MO House District 118", "rep": "Mike McGirl", "w": 0.543}, {"d": "MO House District 109", "rep": "John Simmons", "w": 0.321}, {"d": "MO House District 119", "rep": "Brad Banderman", "w": 0.135}], "ss": [{"d": "MO Senate District 26", "rep": "Ben Brown", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "29073": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.999}], "sh": [{"d": "MO House District 61", "rep": "Bruce Sassmann", "w": 1.0}], "ss": [{"d": "MO Senate District 26", "rep": "Ben Brown", "w": 1.0}]}, "munis": [{"m": "Hermann", "p": [{"n": "Bruce Cox", "r": "Mayor, Hermann, MO"}]}], "slug": "gasconade"}, "29075": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 1", "rep": "Jeff Farnan", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "gentry"}, "29077": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 131", "rep": "Bill Owen", "w": 0.551}, {"d": "MO House District 137", "rep": "Darin Chappell", "w": 0.253}, {"d": "MO House District 130", "rep": "Bishop Davidson", "w": 0.08}, {"d": "MO House District 135", "rep": "Betsy Fogle", "w": 0.031}, {"d": "MO House District 134", "rep": "Alex Riley", "w": 0.027}, {"d": "MO House District 136", "rep": "Stephanie Hein", "w": 0.023}, {"d": "MO House District 133", "rep": "Melanie Stinnett", "w": 0.019}, {"d": "MO House District 132", "rep": "Jeremy Dean", "w": 0.017}], "ss": [{"d": "MO Senate District 20", "rep": "Curtis Trent", "w": 0.864}, {"d": "MO Senate District 30", "rep": "Lincoln Hough", "w": 0.137}]}, "munis": [{"m": "Springfield", "p": [{"n": "Ken McClure", "r": "Mayor, Springfield, MO"}]}], "slug": "greene"}, "29079": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 2", "rep": "Mazzie Christensen", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "grundy"}, "29081": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 2", "rep": "Mazzie Christensen", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [{"m": "Bethany", "p": [{"n": "Lance Johns", "r": "Mayor, Bethany, MO"}]}], "slug": "harrison"}, "29083": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 126", "rep": "Jim Kalberloh", "w": 1.0}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "henry"}, "29085": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 126", "rep": "Jim Kalberloh", "w": 0.565}, {"d": "MO House District 128", "rep": "Chris Warwick", "w": 0.435}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "hickory"}, "29087": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 1", "rep": "Jeff Farnan", "w": 0.999}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "holt"}, "29089": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.998}], "sh": [{"d": "MO House District 48", "rep": "Tim Taylor", "w": 1.0}], "ss": [{"d": "MO Senate District 21", "rep": "Kurtis Gregory", "w": 1.0}]}, "munis": [{"m": "Fayette", "p": [{"n": "Greg Stidham", "r": "Mayor, Fayette, MO"}]}], "slug": "howard"}, "29091": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 154", "rep": "Lisa Durnell", "w": 0.97}, {"d": "MO House District 153", "rep": "Keith Elliott", "w": 0.03}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [], "slug": "howell"}, "29093": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 144", "rep": "Tony Harbison", "w": 1.0}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [], "slug": "iron"}, "29095": {"county": [], "districts": {"cd": [{"d": "MO-05", "rep": "Emanuel Cleaver", "w": 0.572}, {"d": "MO-04", "rep": "Mark Alford", "w": 0.25}, {"d": "MO-06", "rep": "Sam Graves", "w": 0.178}], "sh": [{"d": "MO House District 32", "rep": "Jeff Coleman", "w": 0.233}, {"d": "MO House District 33", "rep": "Carolyn Caton", "w": 0.19}, {"d": "MO House District 20", "rep": "Mike Steinmeyer", "w": 0.101}, {"d": "MO House District 35", "rep": "Keri Ingle", "w": 0.069}, {"d": "MO House District 36", "rep": "Anthony Ealy", "w": 0.063}, {"d": "MO House District 34", "rep": "Kemp Strickler", "w": 0.04}, {"d": "MO House District 30", "rep": "Jon Patterson", "w": 0.036}, {"d": "MO House District 19", "rep": "Wick Thomas", "w": 0.035}, {"d": "MO House District 26", "rep": "Tiffany Price", "w": 0.029}, {"d": "MO House District 37", "rep": "Mark Sharp", "w": 0.028}, {"d": "MO House District 27", "rep": "Melissa Douglas", "w": 0.026}, {"d": "MO House District 22", "rep": "Yolanda Young", "w": 0.024}, {"d": "MO House District 29", "rep": "Aaron Crossley", "w": 0.022}, {"d": "MO House District 21", "rep": "Will Jobe", "w": 0.022}, {"d": "MO House District 31", "rep": "Ron Fowler", "w": 0.022}, {"d": "MO House District 28", "rep": "Donna Barnes", "w": 0.021}, {"d": "MO House District 23", "rep": "Michael Johnson", "w": 0.016}, {"d": "MO House District 25", "rep": "Pattie Mansur", "w": 0.013}, {"d": "MO House District 24", "rep": "Emily Weber", "w": 0.01}], "ss": [{"d": "MO Senate District 11", "rep": "Joe Nicola", "w": 0.376}, {"d": "MO Senate District 8", "rep": "Mike Cierpiot", "w": 0.354}, {"d": "MO Senate District 9", "rep": "Barbara Washington", "w": 0.148}, {"d": "MO Senate District 7", "rep": "Patty Lewis", "w": 0.121}]}, "munis": [{"m": "Independence", "p": [{"n": "Rory Rowland", "r": "Mayor, Independence, MO"}]}, {"m": "Kansas City", "p": [{"n": "Quinton Lucas", "r": "Mayor, Kansas City, MO"}]}, {"m": "Lee S Summit", "p": [{"n": "William A. Baird", "r": "Mayor, Lee's Summit, MO"}]}], "slug": "jackson"}, "29097": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 127", "rep": "Ann Kelley", "w": 0.452}, {"d": "MO House District 163", "rep": "Cathy Loy", "w": 0.3}, {"d": "MO House District 162", "rep": "Bob Bromley", "w": 0.22}, {"d": "MO House District 161", "rep": "Lane Roberts", "w": 0.027}], "ss": [{"d": "MO Senate District 32", "rep": "Jill Carter", "w": 1.0}]}, "munis": [{"m": "Joplin", "p": [{"n": "Douglas Lawson", "r": "Mayor, Joplin, MO"}]}], "slug": "jasper"}, "29099": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.503}, {"d": "MO-08", "rep": "Jason Smith", "w": 0.494}], "sh": [{"d": "MO House District 115", "rep": "Bill Lucas", "w": 0.48}, {"d": "MO House District 111", "rep": "Cecelie Williams", "w": 0.235}, {"d": "MO House District 112", "rep": "Renee Reuter", "w": 0.082}, {"d": "MO House District 97", "rep": "David Casteel", "w": 0.05}, {"d": "MO House District 113", "rep": "Phil Amato", "w": 0.041}], "ss": [{"d": "MO Senate District 3", "rep": "Mike Henderson", "w": 0.521}, {"d": "MO Senate District 22", "rep": "Mary Elizabeth Coleman", "w": 0.478}]}, "munis": [], "slug": "jefferson"}, "29101": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 54", "rep": "Brandon Phelps", "w": 0.519}, {"d": "MO House District 57", "rep": "Rodger Reedy", "w": 0.481}], "ss": [{"d": "MO Senate District 31", "rep": "Rick Brattin", "w": 1.0}]}, "munis": [], "slug": "johnson"}, "29103": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 4", "rep": "Greg Sharpe", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "knox"}, "29105": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 141", "rep": "Melissa Schmidt", "w": 0.891}, {"d": "MO House District 142", "rep": "Jeff Knight", "w": 0.109}], "ss": [{"d": "MO Senate District 16", "rep": "Justin Brown", "w": 1.0}]}, "munis": [], "slug": "laclede"}, "29107": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.997}], "sh": [{"d": "MO House District 51", "rep": "Mark Nolte", "w": 0.617}, {"d": "MO House District 53", "rep": "Terry Thompson", "w": 0.383}], "ss": [{"d": "MO Senate District 21", "rep": "Kurtis Gregory", "w": 1.0}]}, "munis": [], "slug": "lafayette"}, "29109": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 157", "rep": "Mitch Boggs", "w": 1.0}], "ss": [{"d": "MO Senate District 29", "rep": "Mike Moon", "w": 1.0}]}, "munis": [], "slug": "lawrence"}, "29111": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 4", "rep": "Greg Sharpe", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "lewis"}, "29113": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 0.997}], "sh": [{"d": "MO House District 40", "rep": "Chad Perkins", "w": 0.717}, {"d": "MO House District 41", "rep": "Doyle Justus", "w": 0.283}], "ss": [{"d": "MO Senate District 10", "rep": "Travis Fitzwater", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "29115": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 7", "rep": "Peggy McGaugh", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "linn"}, "29117": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 7", "rep": "Peggy McGaugh", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "livingston"}, "29119": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 159", "rep": "Dirk Deaton", "w": 0.716}, {"d": "MO House District 158", "rep": "Scott Cupps", "w": 0.284}], "ss": [{"d": "MO Senate District 29", "rep": "Mike Moon", "w": 1.0}]}, "munis": [], "slug": "mcdonald"}, "29121": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 6", "rep": "Ed Lewis", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "macon"}, "29123": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 144", "rep": "Tony Harbison", "w": 0.559}, {"d": "MO House District 116", "rep": "Dale Wright", "w": 0.441}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [], "slug": "madison"}, "29125": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.999}], "sh": [{"d": "MO House District 143", "rep": "Bennie Cook", "w": 1.0}], "ss": [{"d": "MO Senate District 16", "rep": "Justin Brown", "w": 1.0}]}, "munis": [], "slug": "maries"}, "29127": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 5", "rep": "Louis Riggs", "w": 0.999}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "marion"}, "29129": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 3", "rep": "Danny Busick", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "mercer"}, "29131": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 1.0}], "sh": [{"d": "MO House District 124", "rep": "Don Mayhew", "w": 0.85}, {"d": "MO House District 61", "rep": "Bruce Sassmann", "w": 0.15}], "ss": [{"d": "MO Senate District 6", "rep": "Mike Bernskoetter", "w": 1.0}]}, "munis": [], "slug": "miller"}, "29133": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "mississippi"}, "29135": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 1.0}], "sh": [{"d": "MO House District 58", "rep": "Willard Haley", "w": 1.0}], "ss": [{"d": "MO Senate District 6", "rep": "Mike Bernskoetter", "w": 1.0}]}, "munis": [], "slug": "moniteau"}, "29137": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 43", "rep": "Kent Haden", "w": 0.859}, {"d": "MO House District 4", "rep": "Greg Sharpe", "w": 0.141}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "29139": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.999}], "sh": [{"d": "MO House District 61", "rep": "Bruce Sassmann", "w": 0.666}, {"d": "MO House District 42", "rep": "Jeff Myers", "w": 0.334}], "ss": [{"d": "MO Senate District 10", "rep": "Travis Fitzwater", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "29141": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 58", "rep": "Willard Haley", "w": 1.0}], "ss": [{"d": "MO Senate District 6", "rep": "Mike Bernskoetter", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "29143": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "new-madrid"}, "29145": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 159", "rep": "Dirk Deaton", "w": 0.608}], "ss": [{"d": "MO Senate District 32", "rep": "Jill Carter", "w": 1.0}]}, "munis": [], "slug": "newton"}, "29147": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 1", "rep": "Jeff Farnan", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "nodaway"}, "29149": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 153", "rep": "Keith Elliott", "w": 1.0}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "oregon"}, "29151": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 1.0}], "sh": [{"d": "MO House District 61", "rep": "Bruce Sassmann", "w": 1.0}], "ss": [{"d": "MO Senate District 26", "rep": "Ben Brown", "w": 1.0}]}, "munis": [], "slug": "osage"}, "29153": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 155", "rep": "Matthew Overcast", "w": 1.0}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [], "slug": "ozark"}, "29155": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 150", "rep": "Cameron Parker", "w": 0.64}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "pemiscot"}, "29157": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 145", "rep": "Bryant Wolfin", "w": 1.0}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [], "slug": "perry"}, "29159": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 52", "rep": "Brad Pollitt", "w": 0.701}, {"d": "MO House District 57", "rep": "Rodger Reedy", "w": 0.299}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [{"m": "Sedalia", "p": [{"n": "Andrew Dawson", "r": "Mayor, Sedalia, MO"}]}], "slug": "pettis"}, "29161": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 0.999}], "sh": [{"d": "MO House District 122", "rep": "Tara Peters", "w": 0.506}, {"d": "MO House District 143", "rep": "Bennie Cook", "w": 0.493}], "ss": [{"d": "MO Senate District 16", "rep": "Justin Brown", "w": 1.0}]}, "munis": [], "slug": "phelps"}, "29163": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 40", "rep": "Chad Perkins", "w": 1.0}], "ss": [{"d": "MO Senate District 10", "rep": "Travis Fitzwater", "w": 1.0}]}, "munis": [], "slug": "pike"}, "29165": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 13", "rep": "Sean Pouche", "w": 0.848}, {"d": "MO House District 12", "rep": "Mike Jones", "w": 0.085}, {"d": "MO House District 14", "rep": "Ashley Aune", "w": 0.066}], "ss": [{"d": "MO Senate District 34", "rep": "Tony Luetkemeyer", "w": 1.0}]}, "munis": [], "slug": "platte"}, "29167": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 128", "rep": "Chris Warwick", "w": 1.0}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "polk"}, "29169": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.999}], "sh": [{"d": "MO House District 124", "rep": "Don Mayhew", "w": 0.579}, {"d": "MO House District 121", "rep": "Bill Hardwick", "w": 0.421}], "ss": [{"d": "MO Senate District 16", "rep": "Justin Brown", "w": 1.0}]}, "munis": [], "slug": "pulaski"}, "29171": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 3", "rep": "Danny Busick", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "putnam"}, "29173": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 5", "rep": "Louis Riggs", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "ralls"}, "29175": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 6", "rep": "Ed Lewis", "w": 0.652}, {"d": "MO House District 48", "rep": "Tim Taylor", "w": 0.348}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "randolph"}, "29177": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 0.998}], "sh": [{"d": "MO House District 53", "rep": "Terry Thompson", "w": 0.552}, {"d": "MO House District 7", "rep": "Peggy McGaugh", "w": 0.448}], "ss": [{"d": "MO Senate District 21", "rep": "Kurtis Gregory", "w": 1.0}]}, "munis": [], "slug": "ray"}, "29179": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 144", "rep": "Tony Harbison", "w": 1.0}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [], "slug": "reynolds"}, "29181": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 153", "rep": "Keith Elliott", "w": 1.0}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "ripley"}, "29183": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.615}, {"d": "MO-02", "rep": "Ann Wagner", "w": 0.381}], "sh": [{"d": "MO House District 102", "rep": "Richard West", "w": 0.339}, {"d": "MO House District 65", "rep": "Wendy Hausman", "w": 0.295}, {"d": "MO House District 64", "rep": "Deanna Self", "w": 0.16}, {"d": "MO House District 69", "rep": "Scott Miller", "w": 0.043}, {"d": "MO House District 63", "rep": "Tricia Byrnes", "w": 0.033}, {"d": "MO House District 108", "rep": "Mike Costlow", "w": 0.028}, {"d": "MO House District 106", "rep": "Travis Wilson", "w": 0.026}, {"d": "MO House District 107", "rep": "Mark Matthiesen", "w": 0.02}, {"d": "MO House District 103", "rep": "Dave Hinman", "w": 0.02}, {"d": "MO House District 105", "rep": "Colin Wellenkamp", "w": 0.018}, {"d": "MO House District 104", "rep": "Terri Violet", "w": 0.017}], "ss": [{"d": "MO Senate District 2", "rep": "Nick Schroer", "w": 0.508}, {"d": "MO Senate District 23", "rep": "Adam Schnelting", "w": 0.404}, {"d": "MO Senate District 10", "rep": "Travis Fitzwater", "w": 0.086}]}, "munis": [{"m": "O Fallon", "p": [{"n": "Bill Hennessy", "r": "Mayor, O'Fallon, MO"}]}, {"m": "St Charles", "p": [{"n": "Dan Borgmeyer", "r": "Mayor, St. Charles, MO"}]}, {"m": "St Peters", "p": [{"n": "Len Pagano", "r": "Mayor, St. Peters, MO"}]}], "slug": "st-charles"}, "29185": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 126", "rep": "Jim Kalberloh", "w": 1.0}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "st-clair"}, "29186": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 0.999}], "sh": [{"d": "MO House District 145", "rep": "Bryant Wolfin", "w": 1.0}], "ss": [{"d": "MO Senate District 3", "rep": "Mike Henderson", "w": 1.0}]}, "munis": [], "slug": "ste-genevieve"}, "29187": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 117", "rep": "Becky Laubinger", "w": 0.523}, {"d": "MO House District 116", "rep": "Dale Wright", "w": 0.477}], "ss": [{"d": "MO Senate District 3", "rep": "Mike Henderson", "w": 1.0}]}, "munis": [], "slug": "st-francois"}, "29189": {"county": [], "districts": {"cd": [{"d": "MO-02", "rep": "Ann Wagner", "w": 0.629}, {"d": "MO-01", "rep": "Wesley Bell", "w": 0.365}], "sh": [{"d": "MO House District 88", "rep": "Holly Jones", "w": 0.091}, {"d": "MO House District 70", "rep": "Stephanie Boykin", "w": 0.066}, {"d": "MO House District 87", "rep": "Connie Steinmetz", "w": 0.058}, {"d": "MO House District 67", "rep": "Tonya Rush", "w": 0.052}, {"d": "MO House District 66", "rep": "Marlene Terry", "w": 0.051}, {"d": "MO House District 101", "rep": "Ben Keathley", "w": 0.05}, {"d": "MO House District 89", "rep": "George Hruza", "w": 0.049}, {"d": "MO House District 96", "rep": "Brad Christ", "w": 0.045}, {"d": "MO House District 73", "rep": "Raychel Proudie", "w": 0.031}, {"d": "MO House District 71", "rep": "LaDonna Appelbaum", "w": 0.029}, {"d": "MO House District 99", "rep": "Ian Mackey", "w": 0.028}, {"d": "MO House District 94", "rep": "Jim Murphy", "w": 0.025}, {"d": "MO House District 98", "rep": "Jaclyn Zimmermann", "w": 0.025}, {"d": "MO House District 74", "rep": "Marla Smith", "w": 0.023}, {"d": "MO House District 90", "rep": "Mark Boyko", "w": 0.023}, {"d": "MO House District 100", "rep": "Philip Oehlerking", "w": 0.021}, {"d": "MO House District 75", "rep": "Chanel Mosley", "w": 0.021}, {"d": "MO House District 92", "rep": "Michael Burton", "w": 0.019}, {"d": "MO House District 72", "rep": "Doug Clemens", "w": 0.019}, {"d": "MO House District 91", "rep": "Jo Doll", "w": 0.018}, {"d": "MO House District 93", "rep": "Bridget Moore", "w": 0.018}, {"d": "MO House District 85", "rep": "Yolonda Fountain-Henderson", "w": 0.018}, {"d": "MO House District 68", "rep": "Kem Smith", "w": 0.017}, {"d": "MO House District 83", "rep": "Ray Reed", "w": 0.017}, {"d": "MO House District 86", "rep": "Jeff Hales", "w": 0.012}], "ss": [{"d": "MO Senate District 15", "rep": "David Gregory", "w": 0.307}, {"d": "MO Senate District 24", "rep": "Tracy McCreery", "w": 0.201}, {"d": "MO Senate District 13", "rep": "Angela Mosley", "w": 0.159}, {"d": "MO Senate District 14", "rep": "Brian Williams", "w": 0.153}, {"d": "MO Senate District 1", "rep": "Doug Beck", "w": 0.114}, {"d": "MO Senate District 26", "rep": "Ben Brown", "w": 0.038}, {"d": "MO Senate District 4", "rep": "Karla May", "w": 0.025}]}, "munis": [{"m": "Creve Coeur", "p": [{"n": "Robert Hoffman", "r": "Mayor, Creve Coeur, MO"}]}, {"m": "Shrewsbury", "p": [{"n": "Mike Travaglini", "r": "Mayor, Shrewsbury, MO"}]}, {"m": "Velda City", "p": [{"n": "Melda B. Collins", "r": "Mayor, Velda City, MO"}]}, {"m": "Vinita Park", "p": [{"n": "James W. McGee", "r": "Mayor, Vinita Park, MO"}]}, {"m": "Warson Woods", "p": [{"n": "Laurance M. Howe", "r": "Mayor, Warson Woods, MO"}]}], "slug": "st-louis"}, "29195": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.997}], "sh": [{"d": "MO House District 51", "rep": "Mark Nolte", "w": 1.0}], "ss": [{"d": "MO Senate District 21", "rep": "Kurtis Gregory", "w": 1.0}]}, "munis": [], "slug": "saline"}, "29197": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 4", "rep": "Greg Sharpe", "w": 0.999}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "schuyler"}, "29199": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 4", "rep": "Greg Sharpe", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "scotland"}, "29201": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 148", "rep": "David Dolan", "w": 1.0}], "ss": [{"d": "MO Senate District 27", "rep": "Jamie Burger", "w": 1.0}]}, "munis": [], "slug": "scott"}, "29203": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 144", "rep": "Tony Harbison", "w": 0.758}, {"d": "MO House District 153", "rep": "Keith Elliott", "w": 0.242}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [], "slug": "shannon"}, "29205": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 4", "rep": "Greg Sharpe", "w": 1.0}], "ss": [{"d": "MO Senate District 18", "rep": "Cindy O'Laughlin", "w": 1.0}]}, "munis": [], "slug": "shelby"}, "29207": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 151", "rep": "Steve Jordan", "w": 1.0}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "stoddard"}, "29209": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 138", "rep": "Burt Whaley", "w": 0.837}, {"d": "MO House District 155", "rep": "Matthew Overcast", "w": 0.163}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [], "slug": "stone"}, "29211": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 3", "rep": "Danny Busick", "w": 1.0}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "sullivan"}, "29213": {"county": [], "districts": {"cd": [{"d": "MO-07", "rep": "Eric Burlison", "w": 1.0}], "sh": [{"d": "MO House District 155", "rep": "Matthew Overcast", "w": 0.785}, {"d": "MO House District 156", "rep": "Brian Seitz", "w": 0.215}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [{"m": "Branson", "p": [{"n": "Larry Milton", "r": "Mayor, Branson, MO"}]}], "slug": "taney"}, "29215": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 143", "rep": "Bennie Cook", "w": 1.0}], "ss": [{"d": "MO Senate District 33", "rep": "Brad Hudson", "w": 1.0}]}, "munis": [], "slug": "texas"}, "29217": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 1.0}], "sh": [{"d": "MO House District 125", "rep": "Dane Diehl", "w": 1.0}], "ss": [{"d": "MO Senate District 28", "rep": "Sandy Crawford", "w": 1.0}]}, "munis": [], "slug": "vernon"}, "29219": {"county": [], "districts": {"cd": [{"d": "MO-02", "rep": "Ann Wagner", "w": 0.763}, {"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 0.236}], "sh": [{"d": "MO House District 42", "rep": "Jeff Myers", "w": 1.0}], "ss": [{"d": "MO Senate District 26", "rep": "Ben Brown", "w": 1.0}]}, "munis": [{"m": "Warrenton", "p": [{"n": "Eric Schleuter", "r": "Mayor, Warrenton, MO"}]}], "slug": "warren"}, "29221": {"county": [], "districts": {"cd": [{"d": "MO-03", "rep": "Robert F. Onder, Jr.", "w": 1.0}], "sh": [{"d": "MO House District 144", "rep": "Tony Harbison", "w": 0.753}, {"d": "MO House District 118", "rep": "Mike McGirl", "w": 0.247}], "ss": [{"d": "MO Senate District 3", "rep": "Mike Henderson", "w": 1.0}]}, "munis": [], "slug": "washington"}, "29223": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 153", "rep": "Keith Elliott", "w": 0.837}, {"d": "MO House District 144", "rep": "Tony Harbison", "w": 0.163}], "ss": [{"d": "MO Senate District 25", "rep": "Jason Bean", "w": 1.0}]}, "munis": [], "slug": "wayne"}, "29225": {"county": [], "districts": {"cd": [{"d": "MO-04", "rep": "Mark Alford", "w": 0.581}, {"d": "MO-07", "rep": "Eric Burlison", "w": 0.419}], "sh": [{"d": "MO House District 129", "rep": "John Black", "w": 0.983}, {"d": "MO House District 141", "rep": "Melissa Schmidt", "w": 0.017}], "ss": [{"d": "MO Senate District 20", "rep": "Curtis Trent", "w": 1.0}]}, "munis": [], "slug": "webster"}, "29227": {"county": [], "districts": {"cd": [{"d": "MO-06", "rep": "Sam Graves", "w": 1.0}], "sh": [{"d": "MO House District 2", "rep": "Mazzie Christensen", "w": 0.999}], "ss": [{"d": "MO Senate District 12", "rep": "Rusty Black", "w": 1.0}]}, "munis": [], "slug": "worth"}, "29229": {"county": [], "districts": {"cd": [{"d": "MO-08", "rep": "Jason Smith", "w": 1.0}], "sh": [{"d": "MO House District 141", "rep": "Melissa Schmidt", "w": 1.0}], "ss": [{"d": "MO Senate District 16", "rep": "Justin Brown", "w": 1.0}]}, "munis": [], "slug": "wright"}, "29510": {"county": [], "districts": {"cd": [{"d": "MO-01", "rep": "Wesley Bell", "w": 0.998}], "sh": [{"d": "MO House District 76", "rep": "Marlon Anderson", "w": 0.291}, {"d": "MO House District 84", "rep": "Del Taylor", "w": 0.14}, {"d": "MO House District 79", "rep": "LaKeySha Bosley", "w": 0.109}, {"d": "MO House District 82", "rep": "Nick Kimble", "w": 0.108}, {"d": "MO House District 81", "rep": "Steve Butz", "w": 0.104}, {"d": "MO House District 77", "rep": "Kimberly-Ann Collins", "w": 0.099}, {"d": "MO House District 78", "rep": "Marty Murray", "w": 0.076}, {"d": "MO House District 80", "rep": "Lilly Fuchs", "w": 0.072}], "ss": [{"d": "MO Senate District 5", "rep": "Steve Roberts", "w": 0.681}, {"d": "MO Senate District 4", "rep": "Karla May", "w": 0.318}]}, "munis": [], "slug": "st-louis-city"}, "30001": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.999}], "sh": [{"d": "MT House District 70", "rep": "Shannon Maness", "w": 1.0}], "ss": [{"d": "MT Senate District 35", "rep": "Tony Tezak", "w": 1.0}]}, "munis": [], "slug": "beaverhead"}, "30003": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 42", "rep": "Chip Fitzpatrick", "w": 0.443}, {"d": "MT House District 41", "rep": "Jade Sooktis", "w": 0.386}, {"d": "MT House District 35", "rep": "Gary Parry", "w": 0.171}], "ss": [{"d": "MT Senate District 21", "rep": "Gayle Lammers", "w": 0.829}, {"d": "MT Senate District 18", "rep": "Ken Bogner", "w": 0.171}]}, "munis": [], "slug": "big-horn"}, "30005": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 32", "rep": "Mike Fox", "w": 0.551}, {"d": "MT House District 28", "rep": "Eric Albus", "w": 0.418}, {"d": "MT House District 31", "rep": "Frank Smith", "w": 0.031}], "ss": [{"d": "MT Senate District 16", "rep": "Jonathan Windy Boy", "w": 0.582}, {"d": "MT Senate District 14", "rep": "Russel Tempel", "w": 0.418}]}, "munis": [], "slug": "blaine"}, "30007": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.998}], "sh": [{"d": "MT House District 77", "rep": "Jane Gillette", "w": 1.0}], "ss": [{"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 1.0}]}, "munis": [{"m": "Townsend", "p": [{"n": "Mike Evans", "r": "Mayor, Townsend, MT"}]}], "slug": "broadwater"}, "30009": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 55", "rep": "Brad Barker", "w": 1.0}], "ss": [{"d": "MT Senate District 28", "rep": "Forrest Mandeville", "w": 1.0}]}, "munis": [], "slug": "carbon"}, "30011": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "carter"}, "30013": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 25", "rep": "Steve Gist", "w": 0.525}, {"d": "MT House District 78", "rep": "Randyn Gregg", "w": 0.244}, {"d": "MT House District 26", "rep": "Russ Miner", "w": 0.217}, {"d": "MT House District 22", "rep": "George Nikolakakos", "w": 0.005}], "ss": [{"d": "MT Senate District 13", "rep": "Josh Kassmier", "w": 0.742}, {"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 0.244}, {"d": "MT Senate District 11", "rep": "Daniel Emrich", "w": 0.008}]}, "munis": [{"m": "Great Falls", "p": [{"n": "Bob Kelly", "r": "Mayor, Great Falls, MT"}]}], "slug": "cascade"}, "30015": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 26", "rep": "Russ Miner", "w": 0.983}, {"d": "MT House District 32", "rep": "Mike Fox", "w": 0.017}], "ss": [{"d": "MT Senate District 13", "rep": "Josh Kassmier", "w": 0.983}, {"d": "MT Senate District 16", "rep": "Jonathan Windy Boy", "w": 0.017}]}, "munis": [], "slug": "chouteau"}, "30017": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 0.778}, {"d": "MT House District 36", "rep": "Greg Kmetz", "w": 0.222}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 0.778}, {"d": "MT Senate District 18", "rep": "Ken Bogner", "w": 0.222}]}, "munis": [], "slug": "custer"}, "30019": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 29", "rep": "Valerie Moore", "w": 1.0}], "ss": [{"d": "MT Senate District 15", "rep": "Gregg Hunter", "w": 1.0}]}, "munis": [], "slug": "daniels"}, "30021": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 33", "rep": "Brandon Ler", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "dawson"}, "30023": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 71", "rep": "Scott DeMarois", "w": 0.949}, {"d": "MT House District 76", "rep": "John Fitzpatrick", "w": 0.051}], "ss": [{"d": "MT Senate District 36", "rep": "Sara Novak", "w": 0.949}, {"d": "MT Senate District 38", "rep": "Becky Beard", "w": 0.051}]}, "munis": [], "slug": "deer-lodge"}, "30025": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "fallon"}, "30027": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 37", "rep": "Shane Klakken", "w": 0.808}, {"d": "MT House District 78", "rep": "Randyn Gregg", "w": 0.192}], "ss": [{"d": "MT Senate District 19", "rep": "Barry Usher", "w": 0.808}, {"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 0.192}]}, "munis": [], "slug": "fergus"}, "30029": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 3", "rep": "Debo Powers", "w": 0.427}, {"d": "MT House District 15", "rep": "Thedis Crowe", "w": 0.242}, {"d": "MT House District 2", "rep": "Tom Millett", "w": 0.102}, {"d": "MT House District 11", "rep": "Ed Byrne", "w": 0.067}, {"d": "MT House District 9", "rep": "Steve Kelly", "w": 0.049}, {"d": "MT House District 6", "rep": "Amy Regier", "w": 0.049}, {"d": "MT House District 5", "rep": "Braxton Mitchell", "w": 0.037}, {"d": "MT House District 10", "rep": "Terry Falk", "w": 0.011}, {"d": "MT House District 12", "rep": "Tracy Sharp", "w": 0.01}], "ss": [{"d": "MT Senate District 2", "rep": "Dave Fern", "w": 0.43}, {"d": "MT Senate District 8", "rep": "Susan Webber", "w": 0.242}, {"d": "MT Senate District 1", "rep": "Mike Cuffe", "w": 0.102}, {"d": "MT Senate District 3", "rep": "Carl Glimm", "w": 0.086}, {"d": "MT Senate District 6", "rep": "Mark Noland", "w": 0.077}, {"d": "MT Senate District 5", "rep": "Matt Regier", "w": 0.06}]}, "munis": [], "slug": "flathead"}, "30031": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.998}], "sh": [{"d": "MT House District 60", "rep": "Alanah Griffith", "w": 0.447}, {"d": "MT House District 66", "rep": "Eric Matthews", "w": 0.155}, {"d": "MT House District 57", "rep": "Scott Rosenzweig", "w": 0.133}, {"d": "MT House District 68", "rep": "Caleb Hinkle", "w": 0.078}, {"d": "MT House District 77", "rep": "Jane Gillette", "w": 0.078}, {"d": "MT House District 69", "rep": "Ken Walsh", "w": 0.042}, {"d": "MT House District 59", "rep": "Katie Fire Thunder", "w": 0.04}, {"d": "MT House District 65", "rep": "Brian Close", "w": 0.009}], "ss": [{"d": "MT Senate District 30", "rep": "Cora Neumann", "w": 0.487}, {"d": "MT Senate District 33", "rep": "Chris Pope", "w": 0.164}, {"d": "MT Senate District 29", "rep": "John Esp", "w": 0.133}, {"d": "MT Senate District 34", "rep": "Shelley Vance", "w": 0.083}, {"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 0.078}, {"d": "MT Senate District 35", "rep": "Tony Tezak", "w": 0.042}, {"d": "MT Senate District 32", "rep": "Denise Hayman", "w": 0.008}, {"d": "MT Senate District 31", "rep": "Pat Flowers", "w": 0.005}]}, "munis": [{"m": "Belgrade", "p": [{"n": "Russell C. Nelson", "r": "Mayor, Belgrade, MT"}]}, {"m": "Bozeman", "p": [{"n": "Terry Cunningham", "r": "Mayor, Bozeman, MT"}]}], "slug": "gallatin"}, "30033": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 35", "rep": "Gary Parry", "w": 1.0}], "ss": [{"d": "MT Senate District 18", "rep": "Ken Bogner", "w": 1.0}]}, "munis": [], "slug": "garfield"}, "30035": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 16", "rep": "Tyson Running Wolf", "w": 0.879}, {"d": "MT House District 15", "rep": "Thedis Crowe", "w": 0.121}], "ss": [{"d": "MT Senate District 8", "rep": "Susan Webber", "w": 1.0}]}, "munis": [{"m": "Cut Bank", "p": [{"n": "Kim Winchell", "r": "Mayor, Cut Bank, MT"}]}], "slug": "glacier"}, "30037": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 38", "rep": "Greg Oblander", "w": 1.0}], "ss": [{"d": "MT Senate District 19", "rep": "Barry Usher", "w": 1.0}]}, "munis": [], "slug": "golden-valley"}, "30039": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 76", "rep": "John Fitzpatrick", "w": 1.0}], "ss": [{"d": "MT Senate District 38", "rep": "Becky Beard", "w": 1.0}]}, "munis": [], "slug": "granite"}, "30041": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 28", "rep": "Eric Albus", "w": 0.836}, {"d": "MT House District 32", "rep": "Mike Fox", "w": 0.157}, {"d": "MT House District 27", "rep": "Paul Tuss", "w": 0.007}], "ss": [{"d": "MT Senate District 14", "rep": "Russel Tempel", "w": 0.843}, {"d": "MT Senate District 16", "rep": "Jonathan Windy Boy", "w": 0.157}]}, "munis": [], "slug": "hill"}, "30043": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.998}], "sh": [{"d": "MT House District 75", "rep": "Mark Reinschmidt", "w": 0.934}, {"d": "MT House District 69", "rep": "Ken Walsh", "w": 0.062}], "ss": [{"d": "MT Senate District 38", "rep": "Becky Beard", "w": 0.934}, {"d": "MT Senate District 35", "rep": "Tony Tezak", "w": 0.062}]}, "munis": [], "slug": "jefferson"}, "30045": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 78", "rep": "Randyn Gregg", "w": 1.0}], "ss": [{"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 1.0}]}, "munis": [], "slug": "judith-basin"}, "30047": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 15", "rep": "Thedis Crowe", "w": 0.309}, {"d": "MT House District 12", "rep": "Tracy Sharp", "w": 0.286}, {"d": "MT House District 13", "rep": "Linda Reksten", "w": 0.207}, {"d": "MT House District 91", "rep": "Shelly Fyant", "w": 0.198}], "ss": [{"d": "MT Senate District 8", "rep": "Susan Webber", "w": 0.309}, {"d": "MT Senate District 6", "rep": "Mark Noland", "w": 0.286}, {"d": "MT Senate District 7", "rep": "Greg Hertz", "w": 0.207}, {"d": "MT Senate District 46", "rep": "Jacinda Morigeau", "w": 0.198}]}, "munis": [{"m": "Polson", "p": [{"n": "Eric Huffine", "r": "Mayor, Polson, MT"}]}], "slug": "lake"}, "30049": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.998}], "sh": [{"d": "MT House District 17", "rep": "Zack Wirth", "w": 0.79}, {"d": "MT House District 84", "rep": "Julie Darling", "w": 0.102}, {"d": "MT House District 79", "rep": "Luke Muszkiewicz", "w": 0.046}, {"d": "MT House District 76", "rep": "John Fitzpatrick", "w": 0.044}, {"d": "MT House District 81", "rep": "Mary Caferro", "w": 0.008}], "ss": [{"d": "MT Senate District 9", "rep": "Butch Gillespie", "w": 0.79}, {"d": "MT Senate District 42", "rep": "Mary Ann Dunwell", "w": 0.106}, {"d": "MT Senate District 40", "rep": "Laura Smith", "w": 0.048}, {"d": "MT Senate District 38", "rep": "Becky Beard", "w": 0.044}, {"d": "MT Senate District 41", "rep": "Janet Ellis", "w": 0.012}]}, "munis": [{"m": "Helena", "p": [{"n": "Wilmot Collins", "r": "Mayor, Helena, MT"}]}], "slug": "lewis-and-clark"}, "30051": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 28", "rep": "Eric Albus", "w": 1.0}], "ss": [{"d": "MT Senate District 14", "rep": "Russel Tempel", "w": 1.0}]}, "munis": [], "slug": "liberty"}, "30053": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 1", "rep": "Neil Duram", "w": 0.716}, {"d": "MT House District 2", "rep": "Tom Millett", "w": 0.284}], "ss": [{"d": "MT Senate District 1", "rep": "Mike Cuffe", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "30055": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "mccone"}, "30057": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 69", "rep": "Ken Walsh", "w": 0.991}, {"d": "MT House District 60", "rep": "Alanah Griffith", "w": 0.009}], "ss": [{"d": "MT Senate District 35", "rep": "Tony Tezak", "w": 0.991}, {"d": "MT Senate District 30", "rep": "Cora Neumann", "w": 0.009}]}, "munis": [], "slug": "madison"}, "30059": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 78", "rep": "Randyn Gregg", "w": 1.0}], "ss": [{"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 1.0}]}, "munis": [], "slug": "meagher"}, "30061": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.998}], "sh": [{"d": "MT House District 90", "rep": "Curt Cochran", "w": 0.999}], "ss": [{"d": "MT Senate District 45", "rep": "Denley Loge", "w": 0.999}]}, "munis": [], "slug": "mineral"}, "30063": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 92", "rep": "Connie Keogh", "w": 0.423}, {"d": "MT House District 90", "rep": "Curt Cochran", "w": 0.268}, {"d": "MT House District 93", "rep": "Katie Sullivan", "w": 0.115}, {"d": "MT House District 91", "rep": "Shelly Fyant", "w": 0.099}, {"d": "MT House District 99", "rep": "Tom France", "w": 0.037}, {"d": "MT House District 96", "rep": "Bob Carter", "w": 0.022}, {"d": "MT House District 76", "rep": "John Fitzpatrick", "w": 0.013}, {"d": "MT House District 89", "rep": "Mark Thane", "w": 0.01}], "ss": [{"d": "MT Senate District 46", "rep": "Jacinda Morigeau", "w": 0.523}, {"d": "MT Senate District 45", "rep": "Denley Loge", "w": 0.278}, {"d": "MT Senate District 47", "rep": "Ellie Boldman", "w": 0.118}, {"d": "MT Senate District 50", "rep": "Shane Morigeau", "w": 0.038}, {"d": "MT Senate District 48", "rep": "Andrea Olsen", "w": 0.023}, {"d": "MT Senate District 38", "rep": "Becky Beard", "w": 0.013}, {"d": "MT Senate District 49", "rep": "Willis Curdy", "w": 0.009}]}, "munis": [{"m": "Missoula", "p": [{"n": "Jordan Hess", "r": "Mayor, Missoula, MT"}]}], "slug": "missoula"}, "30065": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 38", "rep": "Greg Oblander", "w": 1.0}], "ss": [{"d": "MT Senate District 19", "rep": "Barry Usher", "w": 1.0}]}, "munis": [], "slug": "musselshell"}, "30067": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.999}], "sh": [{"d": "MT House District 57", "rep": "Scott Rosenzweig", "w": 0.963}, {"d": "MT House District 58", "rep": "Jamie Isaly", "w": 0.037}], "ss": [{"d": "MT Senate District 29", "rep": "John Esp", "w": 1.0}]}, "munis": [], "slug": "park"}, "30069": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 37", "rep": "Shane Klakken", "w": 1.0}], "ss": [{"d": "MT Senate District 19", "rep": "Barry Usher", "w": 1.0}]}, "munis": [], "slug": "petroleum"}, "30071": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 28", "rep": "Eric Albus", "w": 0.387}, {"d": "MT House District 31", "rep": "Frank Smith", "w": 0.32}, {"d": "MT House District 32", "rep": "Mike Fox", "w": 0.293}], "ss": [{"d": "MT Senate District 16", "rep": "Jonathan Windy Boy", "w": 0.613}, {"d": "MT Senate District 14", "rep": "Russel Tempel", "w": 0.387}]}, "munis": [], "slug": "phillips"}, "30073": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.517}, {"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.483}], "sh": [{"d": "MT House District 18", "rep": "Llew Jones", "w": 0.827}, {"d": "MT House District 15", "rep": "Thedis Crowe", "w": 0.173}], "ss": [{"d": "MT Senate District 9", "rep": "Butch Gillespie", "w": 0.827}, {"d": "MT Senate District 8", "rep": "Susan Webber", "w": 0.173}]}, "munis": [], "slug": "pondera"}, "30075": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "powder-river"}, "30077": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.999}], "sh": [{"d": "MT House District 76", "rep": "John Fitzpatrick", "w": 1.0}], "ss": [{"d": "MT Senate District 38", "rep": "Becky Beard", "w": 1.0}]}, "munis": [], "slug": "powell"}, "30079": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "prairie"}, "30081": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.998}], "sh": [{"d": "MT House District 85", "rep": "Kathy Love", "w": 0.747}, {"d": "MT House District 87", "rep": "Terry Nelson", "w": 0.165}, {"d": "MT House District 88", "rep": "Greg Overstreet", "w": 0.074}, {"d": "MT House District 86", "rep": "Dave Bedey", "w": 0.014}], "ss": [{"d": "MT Senate District 43", "rep": "Jason Ellsworth", "w": 0.76}, {"d": "MT Senate District 44", "rep": "Theresa Manzella", "w": 0.239}]}, "munis": [], "slug": "ravalli"}, "30083": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 30", "rep": "Morgan Thiel", "w": 0.688}, {"d": "MT House District 33", "rep": "Brandon Ler", "w": 0.311}], "ss": [{"d": "MT Senate District 15", "rep": "Gregg Hunter", "w": 0.688}, {"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 0.312}]}, "munis": [], "slug": "richland"}, "30085": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 29", "rep": "Valerie Moore", "w": 0.658}, {"d": "MT House District 31", "rep": "Frank Smith", "w": 0.242}, {"d": "MT House District 30", "rep": "Morgan Thiel", "w": 0.1}], "ss": [{"d": "MT Senate District 15", "rep": "Gregg Hunter", "w": 0.758}, {"d": "MT Senate District 16", "rep": "Jonathan Windy Boy", "w": 0.242}]}, "munis": [{"m": "Wolf Point", "p": [{"n": "Chris M. Dschaak", "r": "Mayor, Wolf Point, MT"}]}], "slug": "roosevelt"}, "30087": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 35", "rep": "Gary Parry", "w": 0.82}, {"d": "MT House District 41", "rep": "Jade Sooktis", "w": 0.18}], "ss": [{"d": "MT Senate District 18", "rep": "Ken Bogner", "w": 0.82}, {"d": "MT Senate District 21", "rep": "Gayle Lammers", "w": 0.18}]}, "munis": [], "slug": "rosebud"}, "30089": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 1.0}], "sh": [{"d": "MT House District 14", "rep": "Paul Fielder", "w": 0.746}, {"d": "MT House District 91", "rep": "Shelly Fyant", "w": 0.189}, {"d": "MT House District 90", "rep": "Curt Cochran", "w": 0.065}], "ss": [{"d": "MT Senate District 7", "rep": "Greg Hertz", "w": 0.746}, {"d": "MT Senate District 46", "rep": "Jacinda Morigeau", "w": 0.189}, {"d": "MT Senate District 45", "rep": "Denley Loge", "w": 0.065}]}, "munis": [{"m": "Thompson Falls", "p": [{"n": "Mark Sheets", "r": "Mayor, Thompson Falls, MT"}]}], "slug": "sanders"}, "30091": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.999}], "sh": [{"d": "MT House District 29", "rep": "Valerie Moore", "w": 1.0}], "ss": [{"d": "MT Senate District 15", "rep": "Gregg Hunter", "w": 1.0}]}, "munis": [], "slug": "sheridan"}, "30093": {"county": [], "districts": {"cd": [{"d": "MT-01", "rep": "Ryan K. Zinke", "w": 0.998}], "sh": [{"d": "MT House District 70", "rep": "Shannon Maness", "w": 0.577}, {"d": "MT House District 74", "rep": "Marc Lee", "w": 0.192}, {"d": "MT House District 71", "rep": "Scott DeMarois", "w": 0.184}, {"d": "MT House District 72", "rep": "Donavon Hawk", "w": 0.041}], "ss": [{"d": "MT Senate District 35", "rep": "Tony Tezak", "w": 0.577}, {"d": "MT Senate District 36", "rep": "Sara Novak", "w": 0.225}, {"d": "MT Senate District 37", "rep": "Derek Harvey", "w": 0.197}]}, "munis": [], "slug": "silver-bow"}, "30095": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 56", "rep": "Fiona Nave", "w": 1.0}], "ss": [{"d": "MT Senate District 28", "rep": "Forrest Mandeville", "w": 1.0}]}, "munis": [], "slug": "stillwater"}, "30097": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 56", "rep": "Fiona Nave", "w": 0.739}, {"d": "MT House District 78", "rep": "Randyn Gregg", "w": 0.261}], "ss": [{"d": "MT Senate District 28", "rep": "Forrest Mandeville", "w": 0.739}, {"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 0.261}]}, "munis": [], "slug": "sweet-grass"}, "30099": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 0.999}], "sh": [{"d": "MT House District 17", "rep": "Zack Wirth", "w": 0.769}, {"d": "MT House District 18", "rep": "Llew Jones", "w": 0.231}], "ss": [{"d": "MT Senate District 9", "rep": "Butch Gillespie", "w": 1.0}]}, "munis": [], "slug": "teton"}, "30101": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 18", "rep": "Llew Jones", "w": 1.0}], "ss": [{"d": "MT Senate District 9", "rep": "Butch Gillespie", "w": 1.0}]}, "munis": [], "slug": "toole"}, "30103": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 35", "rep": "Gary Parry", "w": 1.0}], "ss": [{"d": "MT Senate District 18", "rep": "Ken Bogner", "w": 1.0}]}, "munis": [], "slug": "treasure"}, "30105": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 28", "rep": "Eric Albus", "w": 0.35}, {"d": "MT House District 29", "rep": "Valerie Moore", "w": 0.251}, {"d": "MT House District 31", "rep": "Frank Smith", "w": 0.218}, {"d": "MT House District 32", "rep": "Mike Fox", "w": 0.181}], "ss": [{"d": "MT Senate District 16", "rep": "Jonathan Windy Boy", "w": 0.399}, {"d": "MT Senate District 14", "rep": "Russel Tempel", "w": 0.35}, {"d": "MT Senate District 15", "rep": "Gregg Hunter", "w": 0.251}]}, "munis": [], "slug": "valley"}, "30107": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 78", "rep": "Randyn Gregg", "w": 1.0}], "ss": [{"d": "MT Senate District 39", "rep": "Wylie Galt", "w": 1.0}]}, "munis": [], "slug": "wheatland"}, "30109": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 34", "rep": "Jerry Schillinger", "w": 1.0}], "ss": [{"d": "MT Senate District 17", "rep": "Bob Phalen", "w": 1.0}]}, "munis": [], "slug": "wibaux"}, "30111": {"county": [], "districts": {"cd": [{"d": "MT-02", "rep": "Troy Downing", "w": 1.0}], "sh": [{"d": "MT House District 35", "rep": "Gary Parry", "w": 0.408}, {"d": "MT House District 38", "rep": "Greg Oblander", "w": 0.263}, {"d": "MT House District 42", "rep": "Chip Fitzpatrick", "w": 0.145}, {"d": "MT House District 54", "rep": "Lee Deming", "w": 0.073}, {"d": "MT House District 44", "rep": "Katie Zolnikov", "w": 0.033}, {"d": "MT House District 53", "rep": "Nelly Nicol", "w": 0.027}, {"d": "MT House District 40", "rep": "Mike Vinton", "w": 0.026}, {"d": "MT House District 52", "rep": "Stacy Zinn", "w": 0.009}], "ss": [{"d": "MT Senate District 18", "rep": "Ken Bogner", "w": 0.408}, {"d": "MT Senate District 19", "rep": "Barry Usher", "w": 0.263}, {"d": "MT Senate District 21", "rep": "Gayle Lammers", "w": 0.145}, {"d": "MT Senate District 27", "rep": "Vince Ricci", "w": 0.1}, {"d": "MT Senate District 22", "rep": "Daniel Zolnikov", "w": 0.034}, {"d": "MT Senate District 20", "rep": "Sue Vinton", "w": 0.029}, {"d": "MT Senate District 26", "rep": "Tom McGillvray", "w": 0.01}, {"d": "MT Senate District 24", "rep": "Mike Yakawich", "w": 0.006}]}, "munis": [{"m": "Billings", "p": [{"n": "Bill Cole", "r": "Mayor, Billings, MT"}]}], "slug": "yellowstone"}, "31001": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "adams"}, "31003": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "antelope"}, "31005": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "arthur"}, "31007": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "banner"}, "31009": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "blaine"}, "31011": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "boone"}, "31013": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "box-butte"}, "31015": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "boyd"}, "31017": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "brown"}, "31019": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "buffalo"}, "31021": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "burt"}, "31023": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "butler"}, "31025": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "cass"}, "31027": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "cedar"}, "31029": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "chase"}, "31031": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "cherry"}, "31033": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "cheyenne"}, "31035": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "clay"}, "31037": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "colfax"}, "31039": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "cuming"}, "31041": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Broken Bow", "p": [{"n": "mayor", "r": "Mayor, Broken Bow, NE"}]}], "slug": "custer"}, "31043": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "dakota"}, "31045": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "dawes"}, "31047": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "dawson"}, "31049": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "deuel"}, "31051": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "dixon"}, "31053": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 0.997}], "sh": [], "ss": []}, "munis": [], "slug": "dodge"}, "31055": {"county": [], "districts": {"cd": [{"d": "NE-02", "rep": "Don Bacon", "w": 0.997}], "sh": [], "ss": []}, "munis": [], "slug": "douglas"}, "31057": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "dundy"}, "31059": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "fillmore"}, "31061": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "franklin"}, "31063": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "frontier"}, "31065": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "furnas"}, "31067": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "gage"}, "31069": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "garden"}, "31071": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "garfield"}, "31073": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "gosper"}, "31075": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "grant"}, "31077": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "greeley"}, "31079": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "hall"}, "31081": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "hamilton"}, "31083": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "harlan"}, "31085": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "hayes"}, "31087": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "hitchcock"}, "31089": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "holt"}, "31091": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "hooker"}, "31093": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "howard"}, "31095": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "jefferson"}, "31097": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "johnson"}, "31099": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "kearney"}, "31101": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "keith"}, "31103": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "keya-paha"}, "31105": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "kimball"}, "31107": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "knox"}, "31109": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Lincoln", "p": [{"n": "Leirion Gaylor Baird", "r": "Mayor, Lincoln, NE"}]}], "slug": "lancaster"}, "31111": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "lincoln"}, "31113": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "logan"}, "31115": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "loup"}, "31117": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "mcpherson"}, "31119": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "madison"}, "31121": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "merrick"}, "31123": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "morrill"}, "31125": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "nance"}, "31127": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "nemaha"}, "31129": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "nuckolls"}, "31131": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "otoe"}, "31133": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "pawnee"}, "31135": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "perkins"}, "31137": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "phelps"}, "31139": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "pierce"}, "31141": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "platte"}, "31143": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 0.656}, {"d": "NE-01", "rep": "Mike Flood", "w": 0.344}], "sh": [], "ss": []}, "munis": [], "slug": "polk"}, "31145": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "red-willow"}, "31147": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "richardson"}, "31149": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "rock"}, "31151": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "saline"}, "31153": {"county": [], "districts": {"cd": [{"d": "NE-02", "rep": "Don Bacon", "w": 0.603}, {"d": "NE-01", "rep": "Mike Flood", "w": 0.396}], "sh": [], "ss": []}, "munis": [], "slug": "sarpy"}, "31155": {"county": [], "districts": {"cd": [{"d": "NE-02", "rep": "Don Bacon", "w": 0.998}], "sh": [], "ss": []}, "munis": [], "slug": "saunders"}, "31157": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "scotts-bluff"}, "31159": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Seward", "p": [{"n": "Joshua Eickmeier", "r": "Mayor, Seward, NE"}]}], "slug": "seward"}, "31161": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "sheridan"}, "31163": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "sherman"}, "31165": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "sioux"}, "31167": {"county": [], "districts": {"cd": [{"d": "NE-01", "rep": "Mike Flood", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "stanton"}, "31169": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "thayer"}, "31171": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "thomas"}, "31173": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "thurston"}, "31175": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "valley"}, "31177": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "washington"}, "31179": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "wayne"}, "31181": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "webster"}, "31183": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "wheeler"}, "31185": {"county": [], "districts": {"cd": [{"d": "NE-03", "rep": "Adrian Smith", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Henderson", "p": [{"n": "Don Regier", "r": "Mayor, Henderson, NE"}]}], "slug": "york"}, "32001": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 0.986}, {"d": "NV-04", "rep": "Steven Horsford", "w": 0.014}], "sh": [{"d": "NV House District 38", "rep": "Gregory Koenig", "w": 1.0}], "ss": [{"d": "NV Senate District 17", "rep": "Robin Titus", "w": 1.0}]}, "munis": [], "slug": "churchill"}, "32003": {"county": [], "districts": {"cd": [{"d": "NV-04", "rep": "Steven Horsford", "w": 0.624}, {"d": "NV-03", "rep": "Susie Lee", "w": 0.249}, {"d": "NV-01", "rep": "Dina Titus", "w": 0.125}], "sh": [{"d": "NV House District 36", "rep": "Greg Hafen", "w": 0.401}, {"d": "NV House District 19", "rep": "Jason Patchett", "w": 0.335}, {"d": "NV House District 23", "rep": "Danielle Gallant", "w": 0.204}, {"d": "NV House District 12", "rep": "Max Carter", "w": 0.008}], "ss": [{"d": "NV Senate District 20", "rep": "Jeff Stone", "w": 0.538}, {"d": "NV Senate District 19", "rep": "John Ellison", "w": 0.401}, {"d": "NV Senate District 21", "rep": "James Ohrenschall", "w": 0.009}, {"d": "NV Senate District 11", "rep": "Lori Rogich", "w": 0.006}, {"d": "NV Senate District 1", "rep": "Shelly Crawford", "w": 0.005}, {"d": "NV Senate District 10", "rep": "Fabian Doñate", "w": 0.005}]}, "munis": [{"m": "Henderson", "p": [{"n": "Michelle Romero", "r": "Mayor, Henderson, NV"}]}, {"m": "Las Vegas", "p": [{"n": "Carolyn Goodman", "r": "Mayor, Las Vegas, NV"}]}, {"m": "North Las Vegas", "p": [{"n": "John Jay Lee", "r": "Mayor, North Las Vegas, NV"}]}], "slug": "clark"}, "32005": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 39", "rep": "Blayne Osborn", "w": 1.0}], "ss": [{"d": "NV Senate District 17", "rep": "Robin Titus", "w": 1.0}]}, "munis": [], "slug": "douglas"}, "32007": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 33", "rep": "Bert Gurr", "w": 0.798}, {"d": "NV House District 32", "rep": "Alexis Hansen", "w": 0.202}], "ss": [{"d": "NV Senate District 19", "rep": "John Ellison", "w": 0.798}, {"d": "NV Senate District 14", "rep": "Ira Hansen", "w": 0.202}]}, "munis": [], "slug": "elko"}, "32009": {"county": [], "districts": {"cd": [{"d": "NV-04", "rep": "Steven Horsford", "w": 1.0}], "sh": [{"d": "NV House District 38", "rep": "Gregory Koenig", "w": 1.0}], "ss": [{"d": "NV Senate District 17", "rep": "Robin Titus", "w": 1.0}]}, "munis": [], "slug": "esmeralda"}, "32011": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 33", "rep": "Bert Gurr", "w": 0.874}, {"d": "NV House District 32", "rep": "Alexis Hansen", "w": 0.126}], "ss": [{"d": "NV Senate District 19", "rep": "John Ellison", "w": 0.874}, {"d": "NV Senate District 14", "rep": "Ira Hansen", "w": 0.126}]}, "munis": [], "slug": "eureka"}, "32013": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 32", "rep": "Alexis Hansen", "w": 1.0}], "ss": [{"d": "NV Senate District 14", "rep": "Ira Hansen", "w": 1.0}]}, "munis": [], "slug": "humboldt"}, "32015": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 32", "rep": "Alexis Hansen", "w": 1.0}], "ss": [{"d": "NV Senate District 14", "rep": "Ira Hansen", "w": 1.0}]}, "munis": [], "slug": "lander"}, "32017": {"county": [], "districts": {"cd": [{"d": "NV-04", "rep": "Steven Horsford", "w": 0.995}], "sh": [{"d": "NV House District 33", "rep": "Bert Gurr", "w": 1.0}], "ss": [{"d": "NV Senate District 19", "rep": "John Ellison", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "32019": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 0.637}, {"d": "NV-04", "rep": "Steven Horsford", "w": 0.363}], "sh": [{"d": "NV House District 38", "rep": "Gregory Koenig", "w": 0.834}, {"d": "NV House District 39", "rep": "Blayne Osborn", "w": 0.166}], "ss": [{"d": "NV Senate District 17", "rep": "Robin Titus", "w": 1.0}]}, "munis": [], "slug": "lyon"}, "32021": {"county": [], "districts": {"cd": [{"d": "NV-04", "rep": "Steven Horsford", "w": 1.0}], "sh": [{"d": "NV House District 38", "rep": "Gregory Koenig", "w": 1.0}], "ss": [{"d": "NV Senate District 17", "rep": "Robin Titus", "w": 1.0}]}, "munis": [], "slug": "mineral"}, "32023": {"county": [], "districts": {"cd": [{"d": "NV-04", "rep": "Steven Horsford", "w": 1.0}], "sh": [{"d": "NV House District 33", "rep": "Bert Gurr", "w": 0.731}, {"d": "NV House District 38", "rep": "Gregory Koenig", "w": 0.259}, {"d": "NV House District 36", "rep": "Greg Hafen", "w": 0.01}], "ss": [{"d": "NV Senate District 19", "rep": "John Ellison", "w": 0.741}, {"d": "NV Senate District 17", "rep": "Robin Titus", "w": 0.259}]}, "munis": [], "slug": "nye"}, "32027": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 32", "rep": "Alexis Hansen", "w": 1.0}], "ss": [{"d": "NV Senate District 14", "rep": "Ira Hansen", "w": 1.0}]}, "munis": [], "slug": "pershing"}, "32029": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 40", "rep": "P.K. O'Neill", "w": 1.0}], "ss": [{"d": "NV Senate District 16", "rep": "Lisa Krasner", "w": 1.0}]}, "munis": [], "slug": "storey"}, "32031": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 32", "rep": "Alexis Hansen", "w": 0.917}, {"d": "NV House District 26", "rep": "Rich DeLong", "w": 0.039}, {"d": "NV House District 31", "rep": "Jill Dickman", "w": 0.014}, {"d": "NV House District 40", "rep": "P.K. O'Neill", "w": 0.013}, {"d": "NV House District 27", "rep": "Heather Goulding", "w": 0.007}], "ss": [{"d": "NV Senate District 14", "rep": "Ira Hansen", "w": 0.931}, {"d": "NV Senate District 16", "rep": "Lisa Krasner", "w": 0.052}, {"d": "NV Senate District 15", "rep": "Angie Taylor", "w": 0.011}, {"d": "NV Senate District 13", "rep": "Skip Daly", "w": 0.005}]}, "munis": [{"m": "Reno", "p": [{"n": "Hillary Schieve", "r": "Mayor, Reno, NV"}]}, {"m": "Sparks", "p": [{"n": "Ed Lawson", "r": "Mayor, Sparks, NV"}]}], "slug": "washoe"}, "32033": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 33", "rep": "Bert Gurr", "w": 1.0}], "ss": [{"d": "NV Senate District 19", "rep": "John Ellison", "w": 1.0}]}, "munis": [], "slug": "white-pine"}, "32510": {"county": [], "districts": {"cd": [{"d": "NV-02", "rep": "Mark E. Amodei", "w": 1.0}], "sh": [{"d": "NV House District 40", "rep": "P.K. O'Neill", "w": 1.0}], "ss": [{"d": "NV Senate District 16", "rep": "Lisa Krasner", "w": 1.0}]}, "munis": [], "slug": "carson-city"}, "33001": {"county": [], "districts": {"cd": [{"d": "NH-01", "rep": "Chris Pappas", "w": 0.883}, {"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.117}], "sh": [], "ss": [{"d": "NH Senate District 2", "rep": "Tim Lang", "w": 0.575}, {"d": "NH Senate District 6", "rep": "James Gray", "w": 0.304}, {"d": "NH Senate District 17", "rep": "Howard Pearl", "w": 0.095}, {"d": "NH Senate District 7", "rep": "Dan Innis", "w": 0.025}]}, "munis": [{"m": "Laconia", "p": [{"n": "Andrew Hosmer", "r": "Mayor, Laconia, NH"}]}], "slug": "belknap"}, "33003": {"county": [], "districts": {"cd": [{"d": "NH-01", "rep": "Chris Pappas", "w": 0.76}, {"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.24}], "sh": [], "ss": [{"d": "NH Senate District 3", "rep": "Mark McConkey", "w": 0.905}, {"d": "NH Senate District 2", "rep": "Tim Lang", "w": 0.095}]}, "munis": [], "slug": "carroll"}, "33005": {"county": [], "districts": {"cd": [{"d": "NH-02", "rep": "Maggie Goodlander", "w": 1.0}], "sh": [], "ss": [{"d": "NH Senate District 10", "rep": "Donovan Fenton", "w": 0.526}, {"d": "NH Senate District 9", "rep": "Denise Ricciardi", "w": 0.287}, {"d": "NH Senate District 8", "rep": "Ruth Ward", "w": 0.132}, {"d": "NH Senate District 12", "rep": "Kevin Avard", "w": 0.054}]}, "munis": [{"m": "Keene", "p": [{"n": "Q109468854", "r": "Mayor, Keene, NH"}]}], "slug": "cheshire"}, "33007": {"county": [], "districts": {"cd": [{"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.999}], "sh": [], "ss": [{"d": "NH Senate District 1", "rep": "David Rochefort", "w": 0.913}, {"d": "NH Senate District 3", "rep": "Mark McConkey", "w": 0.086}]}, "munis": [{"m": "Berlin", "p": [{"n": "Robert Cone", "r": "Mayor, Berlin, NH"}]}], "slug": "coos"}, "33009": {"county": [], "districts": {"cd": [{"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.999}], "sh": [], "ss": [{"d": "NH Senate District 1", "rep": "David Rochefort", "w": 0.412}, {"d": "NH Senate District 5", "rep": "Sue Prentiss", "w": 0.256}, {"d": "NH Senate District 3", "rep": "Mark McConkey", "w": 0.148}, {"d": "NH Senate District 7", "rep": "Dan Innis", "w": 0.098}, {"d": "NH Senate District 2", "rep": "Tim Lang", "w": 0.086}]}, "munis": [{"m": "Lebanon", "p": [{"n": "Timothy J. McNamara", "r": "Mayor, Lebanon, NH"}]}], "slug": "grafton"}, "33011": {"county": [], "districts": {"cd": [{"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.844}, {"d": "NH-01", "rep": "Chris Pappas", "w": 0.156}], "sh": [], "ss": [{"d": "NH Senate District 9", "rep": "Denise Ricciardi", "w": 0.211}, {"d": "NH Senate District 8", "rep": "Ruth Ward", "w": 0.2}, {"d": "NH Senate District 12", "rep": "Kevin Avard", "w": 0.148}, {"d": "NH Senate District 11", "rep": "Tim McGough", "w": 0.133}, {"d": "NH Senate District 10", "rep": "Donovan Fenton", "w": 0.078}, {"d": "NH Senate District 7", "rep": "Dan Innis", "w": 0.05}, {"d": "NH Senate District 16", "rep": "Keith Murphy", "w": 0.046}, {"d": "NH Senate District 18", "rep": "Victoria Sullivan", "w": 0.038}, {"d": "NH Senate District 14", "rep": "Sharon Carson", "w": 0.033}, {"d": "NH Senate District 22", "rep": "Daryl Abbas", "w": 0.03}, {"d": "NH Senate District 13", "rep": "Cindy Rosenwald", "w": 0.017}, {"d": "NH Senate District 20", "rep": "Pat Long", "w": 0.015}]}, "munis": [{"m": "Manchester", "p": [{"n": "Joyce Craig", "r": "Mayor, Manchester, NH"}]}, {"m": "Nashua", "p": [{"n": "James W. Donchess", "r": "Mayor, Nashua, NH"}]}], "slug": "hillsborough"}, "33013": {"county": [], "districts": {"cd": [{"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.96}, {"d": "NH-01", "rep": "Chris Pappas", "w": 0.04}], "sh": [], "ss": [{"d": "NH Senate District 7", "rep": "Dan Innis", "w": 0.499}, {"d": "NH Senate District 17", "rep": "Howard Pearl", "w": 0.255}, {"d": "NH Senate District 15", "rep": "Tara Reardon", "w": 0.147}, {"d": "NH Senate District 16", "rep": "Keith Murphy", "w": 0.039}, {"d": "NH Senate District 8", "rep": "Ruth Ward", "w": 0.033}, {"d": "NH Senate District 5", "rep": "Sue Prentiss", "w": 0.027}]}, "munis": [{"m": "Concord", "p": [{"n": "Byron O. Champlin", "r": "Mayor, Concord, NH"}]}, {"m": "Franklin", "p": [{"n": "Desiree McLaughlin", "r": "Mayor, Franklin, NH"}]}], "slug": "merrimack"}, "33015": {"county": [], "districts": {"cd": [{"d": "NH-01", "rep": "Chris Pappas", "w": 0.727}, {"d": "NH-02", "rep": "Maggie Goodlander", "w": 0.186}], "sh": [], "ss": [{"d": "NH Senate District 23", "rep": "Bill Gannon", "w": 0.231}, {"d": "NH Senate District 17", "rep": "Howard Pearl", "w": 0.165}, {"d": "NH Senate District 24", "rep": "Debra Altschiller", "w": 0.129}, {"d": "NH Senate District 19", "rep": "Regina Birdsell", "w": 0.098}, {"d": "NH Senate District 14", "rep": "Sharon Carson", "w": 0.089}, {"d": "NH Senate District 16", "rep": "Keith Murphy", "w": 0.076}, {"d": "NH Senate District 21", "rep": "Rebecca Perkins Kwoka", "w": 0.066}, {"d": "NH Senate District 22", "rep": "Daryl Abbas", "w": 0.06}]}, "munis": [{"m": "Portsmouth", "p": [{"n": "Deaglan McEachern", "r": "Mayor, Portsmouth, NH"}]}], "slug": "rockingham"}, "33017": {"county": [], "districts": {"cd": [{"d": "NH-01", "rep": "Chris Pappas", "w": 0.999}], "sh": [], "ss": [{"d": "NH Senate District 6", "rep": "James Gray", "w": 0.464}, {"d": "NH Senate District 4", "rep": "David Watters", "w": 0.248}, {"d": "NH Senate District 21", "rep": "Rebecca Perkins Kwoka", "w": 0.149}, {"d": "NH Senate District 3", "rep": "Mark McConkey", "w": 0.138}]}, "munis": [{"m": "Dover", "p": [{"n": "Robert Carrier", "r": "Mayor, Dover, NH"}]}, {"m": "Rochester", "p": [{"n": "Paul Callaghan", "r": "Mayor, Rochester, NH"}]}, {"m": "Somersworth", "p": [{"n": "Matt Gerding", "r": "Mayor, Somersworth, NH"}]}], "slug": "strafford"}, "33019": {"county": [], "districts": {"cd": [{"d": "NH-02", "rep": "Maggie Goodlander", "w": 1.0}], "sh": [], "ss": [{"d": "NH Senate District 8", "rep": "Ruth Ward", "w": 0.654}, {"d": "NH Senate District 5", "rep": "Sue Prentiss", "w": 0.305}, {"d": "NH Senate District 7", "rep": "Dan Innis", "w": 0.041}]}, "munis": [{"m": "Claremont", "p": [{"n": "Dale Girard", "r": "Mayor, Claremont, NH"}]}], "slug": "sullivan"}, "34001": {"county": [], "districts": {"cd": [{"d": "NJ-02", "rep": "Jefferson Van Drew", "w": 0.906}], "sh": [{"d": "NJ House District 2", "rep": "Don Guardian, Maureen Rowan", "w": 0.544}, {"d": "NJ House District 8", "rep": "Andrea Katz, Anthony Angelozzi", "w": 0.176}, {"d": "NJ House District 1", "rep": "Antwan McClellan, Erik Simonsen", "w": 0.113}, {"d": "NJ House District 4", "rep": "Cody Miller, Dan Hutchison", "w": 0.073}], "ss": [{"d": "NJ Senate District 2", "rep": "Vince Polistina", "w": 0.544}, {"d": "NJ Senate District 8", "rep": "Latham Tiver", "w": 0.176}, {"d": "NJ Senate District 1", "rep": "Mike Testa", "w": 0.113}, {"d": "NJ Senate District 4", "rep": "Paul Moriarty", "w": 0.073}]}, "munis": [{"m": "Absecon", "p": [{"n": "Kimberly Horton", "r": "Mayor, Absecon, NJ"}]}, {"m": "Atlantic City", "p": [{"n": "Marty Small, Sr.", "r": "Mayor, Atlantic City, NJ"}]}, {"m": "Brigantine", "p": [{"n": "Vince Sera", "r": "Mayor, Brigantine, NJ"}]}, {"m": "Corbin City", "p": [{"n": "Wayne M. Smith", "r": "Mayor, Corbin City, NJ"}]}, {"m": "Egg Harbor City", "p": [{"n": "Lisa Jiampetti", "r": "Mayor, Egg Harbor City, NJ"}]}, {"m": "Estell Manor", "p": [{"n": "Elizabeth Owen", "r": "Mayor, Estell Manor, NJ"}]}, {"m": "Linwood", "p": [{"n": "Darren Matik", "r": "Mayor, Linwood, NJ"}]}, {"m": "Margate City", "p": [{"n": "Michael Collins", "r": "Mayor, Margate City, NJ"}]}, {"m": "Northfield", "p": [{"n": "Erland Chau", "r": "Mayor, Northfield, NJ"}]}, {"m": "Pleasantville", "p": [{"n": "Judy Ward", "r": "Mayor, Pleasantville, NJ"}]}, {"m": "Port Republic", "p": [{"n": "Monica Giberson", "r": "Mayor, Port Republic, NJ"}]}, {"m": "Somers Point", "p": [{"n": "Dennis Tapp", "r": "Mayor, Somers Point, NJ"}]}, {"m": "Ventnor City", "p": [{"n": "Tim Kriebel", "r": "Mayor, Ventnor City, NJ"}]}], "slug": "atlantic"}, "34003": {"county": [], "districts": {"cd": [{"d": "NJ-05", "rep": "Josh Gottheimer", "w": 0.735}, {"d": "NJ-09", "rep": "Nellie Pou", "w": 0.262}], "sh": [{"d": "NJ House District 39", "rep": "Bob Auth, John Azzariti", "w": 0.473}, {"d": "NJ House District 38", "rep": "Chris Tully, Lisa Swain", "w": 0.172}, {"d": "NJ House District 37", "rep": "Ellen Park, Shama Haider", "w": 0.132}, {"d": "NJ House District 36", "rep": "Clinton Calabrese, Gary Schaer", "w": 0.113}, {"d": "NJ House District 40", "rep": "Al Barlas, Chris DePhillips", "w": 0.091}, {"d": "NJ House District 35", "rep": "Al Abdelaziz, Kenyatta Stewart", "w": 0.02}], "ss": [{"d": "NJ Senate District 39", "rep": "Holly Schepisi", "w": 0.473}, {"d": "NJ Senate District 38", "rep": "Joe Lagana", "w": 0.172}, {"d": "NJ Senate District 37", "rep": "Gordon Johnson", "w": 0.132}, {"d": "NJ Senate District 36", "rep": "Paul Sarlo", "w": 0.113}, {"d": "NJ Senate District 40", "rep": "Kristin Corrado", "w": 0.091}, {"d": "NJ Senate District 35", "rep": "Benjie Wimberly", "w": 0.02}]}, "munis": [{"m": "Englewood", "p": [{"n": "Michael Wildes", "r": "Mayor, Englewood, NJ"}]}, {"m": "Garfield", "p": [{"n": "Richard Rigoglioso", "r": "Mayor, Garfield, NJ"}]}], "slug": "bergen"}, "34005": {"county": [], "districts": {"cd": [{"d": "NJ-03", "rep": "Herbert C. Conaway, Jr.", "w": 0.989}, {"d": "NJ-01", "rep": "Donald Norcross", "w": 0.008}], "sh": [{"d": "NJ House District 8", "rep": "Andrea Katz, Anthony Angelozzi", "w": 0.838}, {"d": "NJ House District 7", "rep": "Balvir Singh, Carol Murphy", "w": 0.136}, {"d": "NJ House District 12", "rep": "Alex Sauickie, Rob Clifton", "w": 0.021}], "ss": [{"d": "NJ Senate District 8", "rep": "Latham Tiver", "w": 0.838}, {"d": "NJ Senate District 7", "rep": "Troy Singleton", "w": 0.136}, {"d": "NJ Senate District 12", "rep": "Owen Henry", "w": 0.021}]}, "munis": [{"m": "Burlington", "p": [{"n": "Barry W. Conaway", "r": "Mayor, Burlington City, NJ"}]}], "slug": "burlington"}, "34007": {"county": [], "districts": {"cd": [{"d": "NJ-01", "rep": "Donald Norcross", "w": 0.998}], "sh": [{"d": "NJ House District 4", "rep": "Cody Miller, Dan Hutchison", "w": 0.524}, {"d": "NJ House District 6", "rep": "Lou Greenwald, Melinda Kane", "w": 0.302}, {"d": "NJ House District 5", "rep": "Bill Moen, Bill Spearman", "w": 0.172}], "ss": [{"d": "NJ Senate District 4", "rep": "Paul Moriarty", "w": 0.524}, {"d": "NJ Senate District 6", "rep": "Jim Beach", "w": 0.302}, {"d": "NJ Senate District 5", "rep": "Nilsa Cruz-Perez", "w": 0.172}]}, "munis": [{"m": "Camden", "p": [{"n": "Victor G. Carstarphen", "r": "Mayor, Camden, NJ"}]}, {"m": "Gloucester City", "p": [{"n": "Dayl Baile", "r": "Mayor, Gloucester City, NJ"}]}], "slug": "camden"}, "34009": {"county": [], "districts": {"cd": [{"d": "NJ-02", "rep": "Jefferson Van Drew", "w": 0.459}], "sh": [{"d": "NJ House District 1", "rep": "Antwan McClellan, Erik Simonsen", "w": 0.459}], "ss": [{"d": "NJ Senate District 1", "rep": "Mike Testa", "w": 0.459}]}, "munis": [{"m": "Cape May", "p": [{"n": "Zack Mullock", "r": "Mayor, Cape May, NJ"}]}, {"m": "Ocean City", "p": [{"n": "Jay A. Gillian", "r": "Mayor, Ocean City, NJ"}]}], "slug": "cape-may"}, "34011": {"county": [], "districts": {"cd": [{"d": "NJ-02", "rep": "Jefferson Van Drew", "w": 0.744}], "sh": [{"d": "NJ House District 1", "rep": "Antwan McClellan, Erik Simonsen", "w": 0.566}, {"d": "NJ House District 3", "rep": "Dave Bailey, Heather Simmons", "w": 0.174}], "ss": [{"d": "NJ Senate District 1", "rep": "Mike Testa", "w": 0.566}, {"d": "NJ Senate District 3", "rep": "John Burzichelli", "w": 0.174}]}, "munis": [{"m": "Bridgeton", "p": [{"n": "Albert B. Kelly", "r": "Mayor, Bridgeton, NJ"}]}, {"m": "Millville", "p": [{"n": "Benjamin Romanik", "r": "Mayor, Millville, NJ"}]}, {"m": "Vineland", "p": [{"n": "Anthony R. Fanucci", "r": "Mayor, Vineland, NJ"}]}], "slug": "cumberland"}, "34013": {"county": [], "districts": {"cd": [{"d": "NJ-11", "rep": "Analilia Mejia", "w": 0.587}, {"d": "NJ-10", "rep": "LaMonica McIver", "w": 0.365}, {"d": "NJ-08", "rep": "Robert Menendez", "w": 0.046}], "sh": [{"d": "NJ House District 27", "rep": "Alixon Collazos-Gill, Rosy Bagolie", "w": 0.355}, {"d": "NJ House District 40", "rep": "Al Barlas, Chris DePhillips", "w": 0.218}, {"d": "NJ House District 34", "rep": "Carmen Morales, Mike Venezia", "w": 0.151}, {"d": "NJ House District 29", "rep": "Eliana Pintor Marin, Shanique Speight", "w": 0.15}, {"d": "NJ House District 28", "rep": "Chigozie Onyema, Cleopatra Tucker", "w": 0.116}], "ss": [{"d": "NJ Senate District 27", "rep": "John McKeon", "w": 0.355}, {"d": "NJ Senate District 40", "rep": "Kristin Corrado", "w": 0.218}, {"d": "NJ Senate District 34", "rep": "Britnee Timberlake", "w": 0.151}, {"d": "NJ Senate District 29", "rep": "Teresa Ruiz", "w": 0.15}, {"d": "NJ Senate District 28", "rep": "Renee Burgess", "w": 0.116}]}, "munis": [{"m": "East Orange", "p": [{"n": "Ted R. Green", "r": "Mayor, East Orange, NJ"}]}, {"m": "Newark", "p": [{"n": "Q7294641", "r": "Mayor, Newark, NJ"}]}], "slug": "essex"}, "34015": {"county": [], "districts": {"cd": [{"d": "NJ-02", "rep": "Jefferson Van Drew", "w": 0.562}, {"d": "NJ-01", "rep": "Donald Norcross", "w": 0.437}], "sh": [{"d": "NJ House District 3", "rep": "Dave Bailey, Heather Simmons", "w": 0.562}, {"d": "NJ House District 4", "rep": "Cody Miller, Dan Hutchison", "w": 0.376}, {"d": "NJ House District 5", "rep": "Bill Moen, Bill Spearman", "w": 0.062}], "ss": [{"d": "NJ Senate District 3", "rep": "John Burzichelli", "w": 0.562}, {"d": "NJ Senate District 4", "rep": "Paul Moriarty", "w": 0.376}, {"d": "NJ Senate District 5", "rep": "Nilsa Cruz-Perez", "w": 0.062}]}, "munis": [{"m": "Woodbury", "p": [{"n": "Kyle Miller", "r": "Mayor, Woodbury, NJ"}]}], "slug": "gloucester"}, "34017": {"county": [], "districts": {"cd": [{"d": "NJ-08", "rep": "Robert Menendez", "w": 0.677}, {"d": "NJ-09", "rep": "Nellie Pou", "w": 0.14}, {"d": "NJ-10", "rep": "LaMonica McIver", "w": 0.104}, {"d": "NY-10", "rep": "Daniel S. Goldman", "w": 0.014}], "sh": [{"d": "NJ House District 31", "rep": "Jerry Walker, Will Sampson", "w": 0.41}, {"d": "NJ House District 33", "rep": "Gabe Rodriguez, Larry Wainstein", "w": 0.263}, {"d": "NJ House District 32", "rep": "Katie Brennan, Ravi Bhalla", "w": 0.143}, {"d": "NJ House District 29", "rep": "Eliana Pintor Marin, Shanique Speight", "w": 0.023}], "ss": [{"d": "NJ Senate District 31", "rep": "Angela McKnight", "w": 0.41}, {"d": "NJ Senate District 33", "rep": "Brian Stack", "w": 0.263}, {"d": "NJ Senate District 32", "rep": "Raj Mukherji", "w": 0.143}, {"d": "NJ Senate District 29", "rep": "Teresa Ruiz", "w": 0.023}]}, "munis": [{"m": "Bayonne", "p": [{"n": "Jimmy Davis", "r": "Mayor, Bayonne, NJ"}]}, {"m": "Hoboken", "p": [{"n": "Ravinder Bhalla", "r": "Mayor, Hoboken, NJ"}]}, {"m": "Jersey City", "p": [{"n": "Steven Fulop", "r": "Mayor, Jersey City, NJ"}]}, {"m": "Union City", "p": [{"n": "Brian P. Stack", "r": "Mayor, Union City, NJ"}]}], "slug": "hudson"}, "34019": {"county": [], "districts": {"cd": [{"d": "NJ-07", "rep": "Thomas H. Kean, Jr.", "w": 0.999}], "sh": [{"d": "NJ House District 23", "rep": "Erik Peterson, John DiMaio", "w": 0.426}, {"d": "NJ House District 15", "rep": "Anthony Verrelli, Verlina Reynolds-Jackson", "w": 0.288}, {"d": "NJ House District 16", "rep": "Mitchelle Drulis, Roy Freiman", "w": 0.286}], "ss": [{"d": "NJ Senate District 23", "rep": "Doug Steinhardt", "w": 0.426}, {"d": "NJ Senate District 15", "rep": "Shirley Turner", "w": 0.288}, {"d": "NJ Senate District 16", "rep": "Andrew Zwicker", "w": 0.286}]}, "munis": [], "slug": "hunterdon"}, "34021": {"county": [], "districts": {"cd": [{"d": "NJ-12", "rep": "Bonnie Watson Coleman", "w": 0.567}, {"d": "NJ-03", "rep": "Herbert C. Conaway, Jr.", "w": 0.433}], "sh": [{"d": "NJ House District 15", "rep": "Anthony Verrelli, Verlina Reynolds-Jackson", "w": 0.58}, {"d": "NJ House District 14", "rep": "Tennille McCoy, Wayne DeAngelo", "w": 0.34}, {"d": "NJ House District 16", "rep": "Mitchelle Drulis, Roy Freiman", "w": 0.081}], "ss": [{"d": "NJ Senate District 15", "rep": "Shirley Turner", "w": 0.58}, {"d": "NJ Senate District 14", "rep": "Linda Greenstein", "w": 0.34}, {"d": "NJ Senate District 16", "rep": "Andrew Zwicker", "w": 0.081}]}, "munis": [{"m": "Trenton", "p": [{"n": "Eric Jackson", "r": "Mayor, Trenton, NJ"}]}], "slug": "mercer"}, "34023": {"county": [], "districts": {"cd": [{"d": "NJ-12", "rep": "Bonnie Watson Coleman", "w": 0.575}, {"d": "NJ-06", "rep": "Frank Pallone, Jr.", "w": 0.412}], "sh": [{"d": "NJ House District 18", "rep": "Robert Karabinchak, Sterley Stanley", "w": 0.219}, {"d": "NJ House District 14", "rep": "Tennille McCoy, Wayne DeAngelo", "w": 0.212}, {"d": "NJ House District 19", "rep": "Craig Coughlin, Yvonne Lopez", "w": 0.166}, {"d": "NJ House District 12", "rep": "Alex Sauickie, Rob Clifton", "w": 0.13}, {"d": "NJ House District 16", "rep": "Mitchelle Drulis, Roy Freiman", "w": 0.127}, {"d": "NJ House District 17", "rep": "Joe Danielsen, Kevin Egan", "w": 0.115}, {"d": "NJ House District 21", "rep": "Andrew Macurdy, Vinnie Kearney", "w": 0.014}], "ss": [{"d": "NJ Senate District 18", "rep": "Patrick Diegnan", "w": 0.219}, {"d": "NJ Senate District 14", "rep": "Linda Greenstein", "w": 0.212}, {"d": "NJ Senate District 19", "rep": "Joe Vitale", "w": 0.166}, {"d": "NJ Senate District 12", "rep": "Owen Henry", "w": 0.13}, {"d": "NJ Senate District 16", "rep": "Andrew Zwicker", "w": 0.127}, {"d": "NJ Senate District 17", "rep": "Bob Smith", "w": 0.115}, {"d": "NJ Senate District 21", "rep": "Jon Bramnick", "w": 0.014}]}, "munis": [{"m": "New Brunswick", "p": [{"n": "Jim Cahill", "r": "Mayor, New Brunswick, NJ"}]}, {"m": "Perth Amboy", "p": [{"n": "Helmin J. Caba", "r": "Mayor, Perth Amboy, NJ"}]}, {"m": "South Amboy", "p": [{"n": "Fred A. Henry", "r": "Mayor, South Amboy, NJ"}]}], "slug": "middlesex"}, "34025": {"county": [], "districts": {"cd": [{"d": "NJ-04", "rep": "Christopher H. Smith", "w": 0.335}, {"d": "NJ-03", "rep": "Herbert C. Conaway, Jr.", "w": 0.287}, {"d": "NJ-06", "rep": "Frank Pallone, Jr.", "w": 0.113}], "sh": [{"d": "NJ House District 11", "rep": "Luanne Peterpaul, Margie Donlon", "w": 0.198}, {"d": "NJ House District 13", "rep": "Gerry Scharfenberger, Vicky Flynn", "w": 0.197}, {"d": "NJ House District 12", "rep": "Alex Sauickie, Rob Clifton", "w": 0.183}, {"d": "NJ House District 30", "rep": "Avi Schnall, Sean Kean", "w": 0.144}, {"d": "NJ House District 10", "rep": "Greg McGuckin, Paul Kanitra", "w": 0.012}], "ss": [{"d": "NJ Senate District 11", "rep": "Vin Gopal", "w": 0.198}, {"d": "NJ Senate District 13", "rep": "Declan O'Scanlon", "w": 0.197}, {"d": "NJ Senate District 12", "rep": "Owen Henry", "w": 0.183}, {"d": "NJ Senate District 30", "rep": "Bob Singer", "w": 0.144}, {"d": "NJ Senate District 10", "rep": "Jim Holzapfel", "w": 0.012}]}, "munis": [{"m": "Long Branch", "p": [{"n": "John Pallone", "r": "Mayor, Long Branch, NJ"}]}], "slug": "monmouth"}, "34027": {"county": [], "districts": {"cd": [{"d": "NJ-11", "rep": "Analilia Mejia", "w": 0.642}, {"d": "NJ-07", "rep": "Thomas H. Kean, Jr.", "w": 0.356}], "sh": [{"d": "NJ House District 25", "rep": "Aura Dunn, Marisa Sweeney", "w": 0.458}, {"d": "NJ House District 24", "rep": "Dawn Fantasia, Mike Inganamort", "w": 0.269}, {"d": "NJ House District 26", "rep": "Brian Bergen, Jay Webber", "w": 0.223}, {"d": "NJ House District 21", "rep": "Andrew Macurdy, Vinnie Kearney", "w": 0.049}], "ss": [{"d": "NJ Senate District 25", "rep": "Tony Bucco", "w": 0.458}, {"d": "NJ Senate District 24", "rep": "Parker Space", "w": 0.269}, {"d": "NJ Senate District 26", "rep": "Joe Pennacchio", "w": 0.223}, {"d": "NJ Senate District 21", "rep": "Jon Bramnick", "w": 0.049}]}, "munis": [], "slug": "morris"}, "34029": {"county": [], "districts": {"cd": [{"d": "NJ-04", "rep": "Christopher H. Smith", "w": 0.527}, {"d": "NJ-02", "rep": "Jefferson Van Drew", "w": 0.298}], "sh": [{"d": "NJ House District 9", "rep": "Brian Rumpf, Greg Myhre", "w": 0.537}, {"d": "NJ House District 12", "rep": "Alex Sauickie, Rob Clifton", "w": 0.154}, {"d": "NJ House District 10", "rep": "Greg McGuckin, Paul Kanitra", "w": 0.106}, {"d": "NJ House District 30", "rep": "Avi Schnall, Sean Kean", "w": 0.028}], "ss": [{"d": "NJ Senate District 9", "rep": "Carmen Amato", "w": 0.537}, {"d": "NJ Senate District 12", "rep": "Owen Henry", "w": 0.154}, {"d": "NJ Senate District 10", "rep": "Jim Holzapfel", "w": 0.106}, {"d": "NJ Senate District 30", "rep": "Bob Singer", "w": 0.028}]}, "munis": [], "slug": "ocean"}, "34031": {"county": [], "districts": {"cd": [{"d": "NJ-05", "rep": "Josh Gottheimer", "w": 0.644}, {"d": "NJ-09", "rep": "Nellie Pou", "w": 0.218}, {"d": "NJ-11", "rep": "Analilia Mejia", "w": 0.138}], "sh": [{"d": "NJ House District 25", "rep": "Aura Dunn, Marisa Sweeney", "w": 0.409}, {"d": "NJ House District 26", "rep": "Brian Bergen, Jay Webber", "w": 0.253}, {"d": "NJ House District 40", "rep": "Al Barlas, Chris DePhillips", "w": 0.194}, {"d": "NJ House District 35", "rep": "Al Abdelaziz, Kenyatta Stewart", "w": 0.07}, {"d": "NJ House District 27", "rep": "Alixon Collazos-Gill, Rosy Bagolie", "w": 0.057}, {"d": "NJ House District 36", "rep": "Clinton Calabrese, Gary Schaer", "w": 0.016}], "ss": [{"d": "NJ Senate District 25", "rep": "Tony Bucco", "w": 0.409}, {"d": "NJ Senate District 26", "rep": "Joe Pennacchio", "w": 0.253}, {"d": "NJ Senate District 40", "rep": "Kristin Corrado", "w": 0.194}, {"d": "NJ Senate District 35", "rep": "Benjie Wimberly", "w": 0.07}, {"d": "NJ Senate District 27", "rep": "John McKeon", "w": 0.057}, {"d": "NJ Senate District 36", "rep": "Paul Sarlo", "w": 0.016}]}, "munis": [{"m": "Clifton", "p": [{"n": "Raymond Grabowski", "r": "Mayor, Clifton, NJ"}]}, {"m": "Passaic", "p": [{"n": "Hector C. Lora", "r": "Mayor, Passaic, NJ"}]}, {"m": "Paterson", "p": [{"n": "Andre Sayegh", "r": "Mayor, Paterson, NJ"}]}], "slug": "passaic"}, "34033": {"county": [], "districts": {"cd": [{"d": "NJ-02", "rep": "Jefferson Van Drew", "w": 0.935}], "sh": [{"d": "NJ House District 3", "rep": "Dave Bailey, Heather Simmons", "w": 0.935}], "ss": [{"d": "NJ Senate District 3", "rep": "John Burzichelli", "w": 0.935}]}, "munis": [{"m": "Salem", "p": [{"n": "Jody Veler", "r": "Mayor, Salem, NJ"}]}], "slug": "salem"}, "34035": {"county": [], "districts": {"cd": [{"d": "NJ-07", "rep": "Thomas H. Kean, Jr.", "w": 0.591}, {"d": "NJ-12", "rep": "Bonnie Watson Coleman", "w": 0.409}], "sh": [{"d": "NJ House District 16", "rep": "Mitchelle Drulis, Roy Freiman", "w": 0.358}, {"d": "NJ House District 21", "rep": "Andrew Macurdy, Vinnie Kearney", "w": 0.256}, {"d": "NJ House District 23", "rep": "Erik Peterson, John DiMaio", "w": 0.221}, {"d": "NJ House District 17", "rep": "Joe Danielsen, Kevin Egan", "w": 0.156}, {"d": "NJ House District 22", "rep": "Jim Kennedy, Linda Carter", "w": 0.009}], "ss": [{"d": "NJ Senate District 16", "rep": "Andrew Zwicker", "w": 0.358}, {"d": "NJ Senate District 21", "rep": "Jon Bramnick", "w": 0.256}, {"d": "NJ Senate District 23", "rep": "Doug Steinhardt", "w": 0.221}, {"d": "NJ Senate District 17", "rep": "Bob Smith", "w": 0.156}, {"d": "NJ Senate District 22", "rep": "Nick Scutari", "w": 0.009}]}, "munis": [], "slug": "somerset"}, "34037": {"county": [], "districts": {"cd": [{"d": "NJ-05", "rep": "Josh Gottheimer", "w": 0.688}, {"d": "NJ-07", "rep": "Thomas H. Kean, Jr.", "w": 0.311}], "sh": [{"d": "NJ House District 24", "rep": "Dawn Fantasia, Mike Inganamort", "w": 0.999}], "ss": [{"d": "NJ Senate District 24", "rep": "Parker Space", "w": 0.999}]}, "munis": [], "slug": "sussex"}, "34039": {"county": [], "districts": {"cd": [{"d": "NJ-07", "rep": "Thomas H. Kean, Jr.", "w": 0.561}, {"d": "NJ-10", "rep": "LaMonica McIver", "w": 0.248}, {"d": "NJ-08", "rep": "Robert Menendez", "w": 0.128}, {"d": "NJ-12", "rep": "Bonnie Watson Coleman", "w": 0.057}], "sh": [{"d": "NJ House District 22", "rep": "Jim Kennedy, Linda Carter", "w": 0.401}, {"d": "NJ House District 21", "rep": "Andrew Macurdy, Vinnie Kearney", "w": 0.31}, {"d": "NJ House District 20", "rep": "Annette Quijano, Ed Rodriguez", "w": 0.251}, {"d": "NJ House District 28", "rep": "Chigozie Onyema, Cleopatra Tucker", "w": 0.026}], "ss": [{"d": "NJ Senate District 22", "rep": "Nick Scutari", "w": 0.401}, {"d": "NJ Senate District 21", "rep": "Jon Bramnick", "w": 0.31}, {"d": "NJ Senate District 20", "rep": "Joe Cryan", "w": 0.251}, {"d": "NJ Senate District 28", "rep": "Renee Burgess", "w": 0.026}]}, "munis": [{"m": "Elizabeth", "p": [{"n": "Chris Bollwage", "r": "Mayor, Elizabeth, NJ"}]}, {"m": "Linden", "p": [{"n": "Derek Armstead", "r": "Mayor, Linden, NJ"}]}, {"m": "Plainfield", "p": [{"n": "Adrian O. Mapp", "r": "Mayor, Plainfield, NJ"}]}, {"m": "Rahway", "p": [{"n": "Raymond A. Giacobbe", "r": "Mayor, Rahway, NJ"}]}, {"m": "Summit", "p": [{"n": "Elizabeth Fagan", "r": "Mayor, Summit, NJ"}]}], "slug": "union"}, "34041": {"county": [], "districts": {"cd": [{"d": "NJ-07", "rep": "Thomas H. Kean, Jr.", "w": 0.999}], "sh": [{"d": "NJ House District 23", "rep": "Erik Peterson, John DiMaio", "w": 0.888}, {"d": "NJ House District 24", "rep": "Dawn Fantasia, Mike Inganamort", "w": 0.111}], "ss": [{"d": "NJ Senate District 23", "rep": "Doug Steinhardt", "w": 0.888}, {"d": "NJ Senate District 24", "rep": "Parker Space", "w": 0.111}]}, "munis": [], "slug": "warren"}, "35001": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.545}, {"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 0.455}], "sh": [{"d": "NM House District 69", "rep": "Paulene Abeyta", "w": 0.31}, {"d": "NM House District 22", "rep": "Stefani Lord", "w": 0.249}, {"d": "NM House District 29", "rep": "Joy Garratt", "w": 0.12}, {"d": "NM House District 10", "rep": "Andrés Romero", "w": 0.113}, {"d": "NM House District 26", "rep": "Eleanor Chávez", "w": 0.061}, {"d": "NM House District 20", "rep": "Meredith Dixon", "w": 0.017}, {"d": "NM House District 31", "rep": "Nicole Chavez", "w": 0.016}, {"d": "NM House District 15", "rep": "Day Hochman-Vigil", "w": 0.015}, {"d": "NM House District 11", "rep": "Javier Martínez", "w": 0.01}, {"d": "NM House District 12", "rep": "Art De La Cruz", "w": 0.008}, {"d": "NM House District 17", "rep": "Cynthia Borrego", "w": 0.008}, {"d": "NM House District 68", "rep": "Charlotte Little", "w": 0.008}, {"d": "NM House District 14", "rep": "Miguel García", "w": 0.007}, {"d": "NM House District 16", "rep": "Yanira Gurrola", "w": 0.006}, {"d": "NM House District 18", "rep": "Marianna Anaya", "w": 0.006}, {"d": "NM House District 44", "rep": "Kathleen Cates", "w": 0.006}, {"d": "NM House District 28", "rep": "Pamelya Herndon", "w": 0.006}, {"d": "NM House District 25", "rep": "Cristina Parajón", "w": 0.006}, {"d": "NM House District 27", "rep": "Marian Matthews", "w": 0.005}, {"d": "NM House District 24", "rep": "Liz Thomson", "w": 0.005}, {"d": "NM House District 21", "rep": "Debbie Sariñana", "w": 0.005}], "ss": [{"d": "NM Senate District 19", "rep": "Ant Thornton", "w": 0.252}, {"d": "NM Senate District 30", "rep": "Angel Charley", "w": 0.199}, {"d": "NM Senate District 22", "rep": "Benny Shendo", "w": 0.173}, {"d": "NM Senate District 23", "rep": "Harold Pope", "w": 0.126}, {"d": "NM Senate District 14", "rep": "Michael Padilla", "w": 0.086}, {"d": "NM Senate District 16", "rep": "Antoinette Sedillo Lopez", "w": 0.034}, {"d": "NM Senate District 20", "rep": "Martin Hickey", "w": 0.025}, {"d": "NM Senate District 10", "rep": "Katy Duhigg", "w": 0.025}, {"d": "NM Senate District 13", "rep": "Debbie O'Malley", "w": 0.017}, {"d": "NM Senate District 21", "rep": "Nicole Tobiassen", "w": 0.014}, {"d": "NM Senate District 15", "rep": "Heather Berghmans", "w": 0.01}, {"d": "NM Senate District 26", "rep": "Moe Maestas", "w": 0.009}, {"d": "NM Senate District 11", "rep": "Linda López", "w": 0.009}, {"d": "NM Senate District 18", "rep": "Natalie Figueroa", "w": 0.008}, {"d": "NM Senate District 17", "rep": "Mimi Stewart", "w": 0.007}]}, "munis": [{"m": "Albuquerque", "p": [{"n": "Q7807370", "r": "Mayor, Albuquerque, NM"}]}], "slug": "bernalillo"}, "35003": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 49", "rep": "Gail Armstrong", "w": 0.883}, {"d": "NM House District 39", "rep": "Luis Terrazas", "w": 0.116}], "ss": [{"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 1.0}]}, "munis": [], "slug": "catron"}, "35005": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 0.454}, {"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 0.352}, {"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.195}], "sh": [{"d": "NM House District 64", "rep": "Andi Reeb", "w": 0.328}, {"d": "NM House District 66", "rep": "Jimmy Mason", "w": 0.253}, {"d": "NM House District 54", "rep": "Jon Henry", "w": 0.194}, {"d": "NM House District 58", "rep": "Angelita Mejia", "w": 0.184}, {"d": "NM House District 59", "rep": "Mark Murphy", "w": 0.04}], "ss": [{"d": "NM Senate District 27", "rep": "Pat Boone", "w": 0.517}, {"d": "NM Senate District 32", "rep": "Candy Ezzell", "w": 0.327}, {"d": "NM Senate District 42", "rep": "Larry Scott", "w": 0.09}, {"d": "NM Senate District 33", "rep": "Rex Wilson", "w": 0.067}]}, "munis": [], "slug": "chaves"}, "35006": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 6", "rep": "Martha Garcia", "w": 0.555}, {"d": "NM House District 69", "rep": "Paulene Abeyta", "w": 0.445}], "ss": [{"d": "NM Senate District 30", "rep": "Angel Charley", "w": 0.687}, {"d": "NM Senate District 4", "rep": "George Muñoz", "w": 0.313}]}, "munis": [], "slug": "cibola"}, "35007": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 40", "rep": "Joseph Sanchez", "w": 0.83}, {"d": "NM House District 67", "rep": "Jack Chatfield", "w": 0.17}], "ss": [{"d": "NM Senate District 8", "rep": "Pete Campos", "w": 1.0}]}, "munis": [], "slug": "colfax"}, "35009": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 67", "rep": "Jack Chatfield", "w": 0.514}, {"d": "NM House District 63", "rep": "Martin Zamora", "w": 0.325}, {"d": "NM House District 64", "rep": "Andi Reeb", "w": 0.161}], "ss": [{"d": "NM Senate District 7", "rep": "Pat Woods", "w": 0.864}, {"d": "NM Senate District 27", "rep": "Pat Boone", "w": 0.136}]}, "munis": [], "slug": "curry"}, "35011": {"county": [], "districts": {"cd": [{"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 1.0}], "sh": [{"d": "NM House District 63", "rep": "Martin Zamora", "w": 1.0}], "ss": [{"d": "NM Senate District 27", "rep": "Pat Boone", "w": 1.0}]}, "munis": [], "slug": "de-baca"}, "35013": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 38", "rep": "Rebecca Dow", "w": 0.314}, {"d": "NM House District 34", "rep": "Ray Lara", "w": 0.281}, {"d": "NM House District 36", "rep": "Nathan Small", "w": 0.117}, {"d": "NM House District 53", "rep": "Sarah Silva", "w": 0.113}, {"d": "NM House District 32", "rep": "Jenifer Jones", "w": 0.084}, {"d": "NM House District 33", "rep": "Micaela Cadena", "w": 0.047}, {"d": "NM House District 52", "rep": "Doreen Gallegos", "w": 0.036}], "ss": [{"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 0.42}, {"d": "NM Senate District 38", "rep": "Carrie Hamblen", "w": 0.322}, {"d": "NM Senate District 37", "rep": "Bill Soules", "w": 0.105}, {"d": "NM Senate District 36", "rep": "Jeff Steinborn", "w": 0.101}, {"d": "NM Senate District 31", "rep": "Joe Cervantes", "w": 0.051}]}, "munis": [{"m": "Las Cruces", "p": [{"n": "Ken Miyagishima", "r": "Mayor, Las Cruces, NM"}]}], "slug": "dona-ana"}, "35015": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.921}, {"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 0.079}], "sh": [{"d": "NM House District 66", "rep": "Jimmy Mason", "w": 0.339}, {"d": "NM House District 54", "rep": "Jon Henry", "w": 0.331}, {"d": "NM House District 55", "rep": "Cathrynn Brown", "w": 0.33}], "ss": [{"d": "NM Senate District 34", "rep": "Jim Townsend", "w": 0.454}, {"d": "NM Senate District 42", "rep": "Larry Scott", "w": 0.305}, {"d": "NM Senate District 41", "rep": "David Gallegos", "w": 0.184}, {"d": "NM Senate District 32", "rep": "Candy Ezzell", "w": 0.058}]}, "munis": [], "slug": "eddy"}, "35017": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 39", "rep": "Luis Terrazas", "w": 1.0}], "ss": [{"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 0.609}, {"d": "NM Senate District 28", "rep": "Gabriel Ramos", "w": 0.391}]}, "munis": [], "slug": "grant"}, "35019": {"county": [], "districts": {"cd": [{"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 1.0}], "sh": [{"d": "NM House District 63", "rep": "Martin Zamora", "w": 1.0}], "ss": [{"d": "NM Senate District 8", "rep": "Pete Campos", "w": 1.0}]}, "munis": [], "slug": "guadalupe"}, "35021": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 67", "rep": "Jack Chatfield", "w": 1.0}], "ss": [{"d": "NM Senate District 8", "rep": "Pete Campos", "w": 0.96}, {"d": "NM Senate District 7", "rep": "Pat Woods", "w": 0.04}]}, "munis": [], "slug": "harding"}, "35023": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.999}], "sh": [{"d": "NM House District 32", "rep": "Jenifer Jones", "w": 0.955}, {"d": "NM House District 39", "rep": "Luis Terrazas", "w": 0.045}], "ss": [{"d": "NM Senate District 28", "rep": "Gabriel Ramos", "w": 0.955}, {"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 0.045}]}, "munis": [], "slug": "hidalgo"}, "35025": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 0.535}, {"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.465}], "sh": [{"d": "NM House District 66", "rep": "Jimmy Mason", "w": 0.404}, {"d": "NM House District 55", "rep": "Cathrynn Brown", "w": 0.319}, {"d": "NM House District 61", "rep": "Randy Pettigrew", "w": 0.226}, {"d": "NM House District 62", "rep": "Elaine Sena Cortez", "w": 0.051}], "ss": [{"d": "NM Senate District 41", "rep": "David Gallegos", "w": 0.544}, {"d": "NM Senate District 27", "rep": "Pat Boone", "w": 0.272}, {"d": "NM Senate District 42", "rep": "Larry Scott", "w": 0.183}]}, "munis": [], "slug": "lea"}, "35027": {"county": [], "districts": {"cd": [{"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 1.0}], "sh": [{"d": "NM House District 56", "rep": "Harlan Vincent", "w": 1.0}], "ss": [{"d": "NM Senate District 33", "rep": "Rex Wilson", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "35028": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 43", "rep": "Chris Chandler", "w": 1.0}], "ss": [{"d": "NM Senate District 5", "rep": "Leo Jaramillo", "w": 0.571}, {"d": "NM Senate District 6", "rep": "Bobby Gonzales", "w": 0.428}]}, "munis": [], "slug": "los-alamos"}, "35029": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 32", "rep": "Jenifer Jones", "w": 1.0}], "ss": [{"d": "NM Senate District 28", "rep": "Gabriel Ramos", "w": 0.717}, {"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 0.283}]}, "munis": [{"m": "Deming", "p": [{"n": "Michele Shillito", "r": "Mayor, Deming, NM"}]}], "slug": "luna"}, "35031": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 0.921}, {"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.079}], "sh": [{"d": "NM House District 69", "rep": "Paulene Abeyta", "w": 0.357}, {"d": "NM House District 6", "rep": "Martha Garcia", "w": 0.266}, {"d": "NM House District 5", "rep": "Wonda Johnson", "w": 0.236}, {"d": "NM House District 9", "rep": "Patty Lundstrom", "w": 0.141}], "ss": [{"d": "NM Senate District 22", "rep": "Benny Shendo", "w": 0.492}, {"d": "NM Senate District 4", "rep": "George Muñoz", "w": 0.29}, {"d": "NM Senate District 3", "rep": "Shannon Pinto", "w": 0.157}, {"d": "NM Senate District 30", "rep": "Angel Charley", "w": 0.061}]}, "munis": [], "slug": "mckinley"}, "35033": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 40", "rep": "Joseph Sanchez", "w": 1.0}], "ss": [{"d": "NM Senate District 8", "rep": "Pete Campos", "w": 1.0}]}, "munis": [], "slug": "mora"}, "35035": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.917}, {"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 0.083}], "sh": [{"d": "NM House District 54", "rep": "Jon Henry", "w": 0.737}, {"d": "NM House District 56", "rep": "Harlan Vincent", "w": 0.248}, {"d": "NM House District 51", "rep": "John Block", "w": 0.01}], "ss": [{"d": "NM Senate District 34", "rep": "Jim Townsend", "w": 0.789}, {"d": "NM Senate District 33", "rep": "Rex Wilson", "w": 0.209}]}, "munis": [], "slug": "otero"}, "35037": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 67", "rep": "Jack Chatfield", "w": 1.0}], "ss": [{"d": "NM Senate District 7", "rep": "Pat Woods", "w": 0.897}, {"d": "NM Senate District 8", "rep": "Pete Campos", "w": 0.103}]}, "munis": [], "slug": "quay"}, "35039": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 41", "rep": "Susan Herrera", "w": 0.645}, {"d": "NM House District 65", "rep": "Derrick Lente", "w": 0.307}, {"d": "NM House District 40", "rep": "Joseph Sanchez", "w": 0.048}], "ss": [{"d": "NM Senate District 22", "rep": "Benny Shendo", "w": 0.575}, {"d": "NM Senate District 5", "rep": "Leo Jaramillo", "w": 0.395}, {"d": "NM Senate District 6", "rep": "Bobby Gonzales", "w": 0.029}]}, "munis": [], "slug": "rio-arriba"}, "35041": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 64", "rep": "Andi Reeb", "w": 0.727}, {"d": "NM House District 63", "rep": "Martin Zamora", "w": 0.273}], "ss": [{"d": "NM Senate District 27", "rep": "Pat Boone", "w": 1.0}]}, "munis": [], "slug": "roosevelt"}, "35043": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 0.897}, {"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 0.103}], "sh": [{"d": "NM House District 65", "rep": "Derrick Lente", "w": 0.613}, {"d": "NM House District 43", "rep": "Chris Chandler", "w": 0.198}, {"d": "NM House District 41", "rep": "Susan Herrera", "w": 0.057}, {"d": "NM House District 57", "rep": "Catherine Cullen", "w": 0.054}, {"d": "NM House District 50", "rep": "Matthew McQueen", "w": 0.045}, {"d": "NM House District 60", "rep": "Josh Hernandez", "w": 0.024}], "ss": [{"d": "NM Senate District 22", "rep": "Benny Shendo", "w": 0.853}, {"d": "NM Senate District 40", "rep": "Craig Brandt", "w": 0.078}, {"d": "NM Senate District 9", "rep": "Cindy Nava", "w": 0.038}, {"d": "NM Senate District 19", "rep": "Ant Thornton", "w": 0.028}]}, "munis": [{"m": "Rio Rancho", "p": [{"n": "Greggory D. Hull", "r": "Mayor, Rio Rancho, NM"}]}], "slug": "sandoval"}, "35045": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 4", "rep": "Joseph Hernandez", "w": 0.277}, {"d": "NM House District 65", "rep": "Derrick Lente", "w": 0.221}, {"d": "NM House District 5", "rep": "Wonda Johnson", "w": 0.221}, {"d": "NM House District 3", "rep": "Bill Hall", "w": 0.143}, {"d": "NM House District 1", "rep": "Rod Montoya", "w": 0.064}, {"d": "NM House District 69", "rep": "Paulene Abeyta", "w": 0.057}, {"d": "NM House District 2", "rep": "Mark Duncan", "w": 0.017}], "ss": [{"d": "NM Senate District 3", "rep": "Shannon Pinto", "w": 0.368}, {"d": "NM Senate District 22", "rep": "Benny Shendo", "w": 0.278}, {"d": "NM Senate District 4", "rep": "George Muñoz", "w": 0.169}, {"d": "NM Senate District 2", "rep": "Steve Lanier", "w": 0.155}, {"d": "NM Senate District 1", "rep": "Bill Sharer", "w": 0.03}]}, "munis": [], "slug": "san-juan"}, "35047": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 70", "rep": "Anita Gonzales", "w": 0.704}, {"d": "NM House District 67", "rep": "Jack Chatfield", "w": 0.226}, {"d": "NM House District 40", "rep": "Joseph Sanchez", "w": 0.06}, {"d": "NM House District 63", "rep": "Martin Zamora", "w": 0.01}], "ss": [{"d": "NM Senate District 8", "rep": "Pete Campos", "w": 0.804}, {"d": "NM Senate District 39", "rep": "Liz Stefanics", "w": 0.196}]}, "munis": [], "slug": "san-miguel"}, "35049": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 0.933}, {"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 0.067}], "sh": [{"d": "NM House District 50", "rep": "Matthew McQueen", "w": 0.539}, {"d": "NM House District 46", "rep": "Andrea Romero", "w": 0.25}, {"d": "NM House District 47", "rep": "Reena Szczepanski", "w": 0.126}, {"d": "NM House District 43", "rep": "Chris Chandler", "w": 0.074}, {"d": "NM House District 45", "rep": "Linda Serrato", "w": 0.007}], "ss": [{"d": "NM Senate District 39", "rep": "Liz Stefanics", "w": 0.357}, {"d": "NM Senate District 19", "rep": "Ant Thornton", "w": 0.26}, {"d": "NM Senate District 25", "rep": "Peter Wirth", "w": 0.218}, {"d": "NM Senate District 6", "rep": "Bobby Gonzales", "w": 0.153}, {"d": "NM Senate District 24", "rep": "Linda Trujillo", "w": 0.008}]}, "munis": [{"m": "Santa Fe", "p": [{"n": "Alan Webber", "r": "Mayor, Santa Fe, NM"}]}], "slug": "santa-fe"}, "35051": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 38", "rep": "Rebecca Dow", "w": 0.531}, {"d": "NM House District 49", "rep": "Gail Armstrong", "w": 0.469}], "ss": [{"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 1.0}]}, "munis": [], "slug": "sierra"}, "35053": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 1.0}], "sh": [{"d": "NM House District 49", "rep": "Gail Armstrong", "w": 0.708}, {"d": "NM House District 38", "rep": "Rebecca Dow", "w": 0.222}, {"d": "NM House District 69", "rep": "Paulene Abeyta", "w": 0.07}], "ss": [{"d": "NM Senate District 35", "rep": "Crystal Brantley", "w": 0.707}, {"d": "NM Senate District 29", "rep": "Joshua Sanchez", "w": 0.165}, {"d": "NM Senate District 30", "rep": "Angel Charley", "w": 0.128}]}, "munis": [], "slug": "socorro"}, "35055": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 42", "rep": "Kristina Ortez", "w": 0.668}, {"d": "NM House District 41", "rep": "Susan Herrera", "w": 0.327}], "ss": [{"d": "NM Senate District 6", "rep": "Bobby Gonzales", "w": 0.805}, {"d": "NM Senate District 8", "rep": "Pete Campos", "w": 0.195}]}, "munis": [], "slug": "taos"}, "35057": {"county": [], "districts": {"cd": [{"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 1.0}], "sh": [{"d": "NM House District 70", "rep": "Anita Gonzales", "w": 0.53}, {"d": "NM House District 22", "rep": "Stefani Lord", "w": 0.469}], "ss": [{"d": "NM Senate District 39", "rep": "Liz Stefanics", "w": 0.924}, {"d": "NM Senate District 19", "rep": "Ant Thornton", "w": 0.076}]}, "munis": [], "slug": "torrance"}, "35059": {"county": [], "districts": {"cd": [{"d": "NM-03", "rep": "Teresa Leger Fernandez", "w": 1.0}], "sh": [{"d": "NM House District 67", "rep": "Jack Chatfield", "w": 1.0}], "ss": [{"d": "NM Senate District 7", "rep": "Pat Woods", "w": 1.0}]}, "munis": [], "slug": "union"}, "35061": {"county": [], "districts": {"cd": [{"d": "NM-02", "rep": "Gabe Vasquez", "w": 0.692}, {"d": "NM-01", "rep": "Melanie A. Stansbury", "w": 0.308}], "sh": [{"d": "NM House District 49", "rep": "Gail Armstrong", "w": 0.611}, {"d": "NM House District 69", "rep": "Paulene Abeyta", "w": 0.246}, {"d": "NM House District 7", "rep": "Tanya Moya", "w": 0.094}, {"d": "NM House District 8", "rep": "Brian Baca", "w": 0.05}], "ss": [{"d": "NM Senate District 30", "rep": "Angel Charley", "w": 0.61}, {"d": "NM Senate District 39", "rep": "Liz Stefanics", "w": 0.261}, {"d": "NM Senate District 29", "rep": "Joshua Sanchez", "w": 0.13}]}, "munis": [], "slug": "valencia"}, "36001": {"county": [], "districts": {"cd": [{"d": "NY-20", "rep": "Paul Tonko", "w": 0.999}], "sh": [{"d": "NY House District 102", "rep": "Chris Tague", "w": 0.554}, {"d": "NY House District 109", "rep": "Gabriella Romero", "w": 0.233}, {"d": "NY House District 110", "rep": "Phil Steck", "w": 0.136}, {"d": "NY House District 107", "rep": "Scott Bendett", "w": 0.064}, {"d": "NY House District 108", "rep": "John McDonald", "w": 0.013}], "ss": [{"d": "NY Senate District 46", "rep": "Pat Fahy", "w": 0.879}, {"d": "NY Senate District 43", "rep": "Jake Ashby", "w": 0.121}]}, "munis": [{"m": "Albany", "p": [{"n": "Kathy Sheehan", "r": "Mayor, Albany, NY"}]}, {"m": "Cohoes", "p": [{"n": "William T. Keeler", "r": "Mayor, Cohoes, NY"}]}, {"m": "Green Island", "p": [{"n": "James Oddo", "r": "Mayor, Staten Island, NY"}]}, {"m": "Watervliet", "p": [{"n": "Charles Patricelli", "r": "Mayor, Watervliet, NY"}]}], "slug": "albany"}, "36003": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 1.0}], "sh": [{"d": "NY House District 148", "rep": "Joe Sempolinski", "w": 1.0}], "ss": [{"d": "NY Senate District 57", "rep": "George Borrello", "w": 0.594}, {"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 0.406}]}, "munis": [], "slug": "allegany"}, "36005": {"county": [], "districts": {"cd": [{"d": "NY-14", "rep": "Alexandria Ocasio-Cortez", "w": 0.429}, {"d": "NY-15", "rep": "Ritchie Torres", "w": 0.345}, {"d": "NY-13", "rep": "Adriano Espaillat", "w": 0.05}, {"d": "NY-16", "rep": "George Latimer", "w": 0.039}], "sh": [{"d": "NY House District 82", "rep": "Michael Benedetto", "w": 0.206}, {"d": "NY House District 81", "rep": "Jeffrey Dinowitz", "w": 0.139}, {"d": "NY House District 85", "rep": "Emérita Torres", "w": 0.104}, {"d": "NY House District 84", "rep": "Amanda Septimo", "w": 0.069}, {"d": "NY House District 83", "rep": "Carl Heastie", "w": 0.065}, {"d": "NY House District 80", "rep": "John Zaccaro", "w": 0.064}, {"d": "NY House District 87", "rep": "Karines Reyes", "w": 0.048}, {"d": "NY House District 78", "rep": "George Alvarez", "w": 0.039}, {"d": "NY House District 79", "rep": "Chantel Jackson", "w": 0.036}, {"d": "NY House District 86", "rep": "Yudelka Tapia", "w": 0.029}, {"d": "NY House District 77", "rep": "Landon Dais", "w": 0.029}], "ss": [{"d": "NY Senate District 34", "rep": "Nathalia Fernández", "w": 0.254}, {"d": "NY Senate District 33", "rep": "Gustavo Rivera", "w": 0.188}, {"d": "NY Senate District 29", "rep": "Jose Serrano", "w": 0.128}, {"d": "NY Senate District 36", "rep": "Jamaal Bailey", "w": 0.122}, {"d": "NY Senate District 32", "rep": "Luis Sepúlveda", "w": 0.081}, {"d": "NY Senate District 31", "rep": "Robert Jackson", "w": 0.038}, {"d": "NY Senate District 11", "rep": "Toby Stavisky", "w": 0.018}]}, "munis": [], "slug": "bronx"}, "36007": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.999}], "sh": [{"d": "NY House District 121", "rep": "Joe Angelino", "w": 0.582}, {"d": "NY House District 124", "rep": "Chris Friend", "w": 0.222}, {"d": "NY House District 123", "rep": "Donna Lupardo", "w": 0.139}, {"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.056}], "ss": [{"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 0.551}, {"d": "NY Senate District 52", "rep": "Lea Webb", "w": 0.449}]}, "munis": [{"m": "Binghamton", "p": [{"n": "Jared Kraham", "r": "Mayor, Binghamton, NY"}]}], "slug": "broome"}, "36009": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 1.0}], "sh": [{"d": "NY House District 148", "rep": "Joe Sempolinski", "w": 1.0}], "ss": [{"d": "NY Senate District 57", "rep": "George Borrello", "w": 1.0}]}, "munis": [{"m": "Olean", "p": [{"n": "William J. Aiello", "r": "Mayor, Olean, NY"}]}], "slug": "cattaraugus"}, "36011": {"county": [], "districts": {"cd": [{"d": "NY-22", "rep": "John W. Mannion", "w": 0.504}, {"d": "NY-24", "rep": "Claudia Tenney", "w": 0.346}], "sh": [{"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.493}, {"d": "NY House District 126", "rep": "John Lemondes", "w": 0.222}, {"d": "NY House District 120", "rep": "Will Barclay", "w": 0.135}], "ss": [{"d": "NY Senate District 48", "rep": "Rachel May", "w": 0.85}]}, "munis": [{"m": "Auburn", "p": [{"n": "James N. Giannettino, Jr.", "r": "Mayor, Auburn, NY"}]}], "slug": "cayuga"}, "36013": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 0.722}], "sh": [{"d": "NY House District 150", "rep": "Andrew Molitor", "w": 0.722}], "ss": [{"d": "NY Senate District 57", "rep": "George Borrello", "w": 0.722}]}, "munis": [{"m": "Dunkirk", "p": [{"n": "Kate Wdowiasz", "r": "Mayor, Dunkirk, NY"}]}, {"m": "Jamestown", "p": [{"n": "Kimberly Ecklund", "r": "Mayor, Jamestown, NY"}]}], "slug": "chautauqua"}, "36015": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 1.0}], "sh": [{"d": "NY House District 124", "rep": "Chris Friend", "w": 0.604}, {"d": "NY House District 132", "rep": "Phil Palmesano", "w": 0.396}], "ss": [{"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 1.0}]}, "munis": [], "slug": "chemung"}, "36017": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 1.0}], "sh": [{"d": "NY House District 121", "rep": "Joe Angelino", "w": 0.721}, {"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.28}], "ss": [{"d": "NY Senate District 53", "rep": "Joe Griffo", "w": 0.587}, {"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 0.413}]}, "munis": [], "slug": "chenango"}, "36019": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 115", "rep": "Michael Cashman", "w": 1.0}], "ss": [{"d": "NY Senate District 45", "rep": "Dan Stec", "w": 1.0}]}, "munis": [], "slug": "clinton"}, "36021": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 1.0}], "sh": [{"d": "NY House District 106", "rep": "Didi Barrett", "w": 0.815}, {"d": "NY House District 107", "rep": "Scott Bendett", "w": 0.185}], "ss": [{"d": "NY Senate District 41", "rep": "Michelle Hinchey", "w": 1.0}]}, "munis": [], "slug": "columbia"}, "36023": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.516}, {"d": "NY-22", "rep": "John W. Mannion", "w": 0.484}], "sh": [{"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.7}, {"d": "NY House District 125", "rep": "Anna Kelles", "w": 0.3}], "ss": [{"d": "NY Senate District 52", "rep": "Lea Webb", "w": 1.0}]}, "munis": [{"m": "Cortland", "p": [{"n": "Scott Steve", "r": "Mayor, Cortland, NY"}]}], "slug": "cortland"}, "36025": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 1.0}], "sh": [{"d": "NY House District 102", "rep": "Chris Tague", "w": 0.478}, {"d": "NY House District 101", "rep": "Brian Maher", "w": 0.349}, {"d": "NY House District 121", "rep": "Joe Angelino", "w": 0.173}], "ss": [{"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 1.0}]}, "munis": [], "slug": "delaware"}, "36027": {"county": [], "districts": {"cd": [{"d": "NY-18", "rep": "Patrick Ryan", "w": 0.863}, {"d": "NY-17", "rep": "Michael Lawler", "w": 0.137}], "sh": [{"d": "NY House District 105", "rep": "Anil Beephan", "w": 0.447}, {"d": "NY House District 106", "rep": "Didi Barrett", "w": 0.441}, {"d": "NY House District 103", "rep": "Sarahana Shrestha", "w": 0.097}, {"d": "NY House District 104", "rep": "Jonathan Jacobson", "w": 0.015}], "ss": [{"d": "NY Senate District 41", "rep": "Michelle Hinchey", "w": 0.621}, {"d": "NY Senate District 39", "rep": "Rob Rolison", "w": 0.379}]}, "munis": [{"m": "Beacon", "p": [{"n": "Lee Kyriacou", "r": "Mayor, Beacon, NY"}]}, {"m": "Poughkeepsie", "p": [{"n": "Yvonne Flowers", "r": "Mayor, Poughkeepsie, NY"}]}], "slug": "dutchess"}, "36029": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 0.687}, {"d": "NY-26", "rep": "Timothy M. Kennedy", "w": 0.172}], "sh": [{"d": "NY House District 147", "rep": "Dave DiPietro", "w": 0.498}, {"d": "NY House District 144", "rep": "Paul Bologna", "w": 0.109}, {"d": "NY House District 142", "rep": "Pat Burke", "w": 0.045}, {"d": "NY House District 149", "rep": "Jon Rivera", "w": 0.044}, {"d": "NY House District 146", "rep": "Karen McMahon", "w": 0.044}, {"d": "NY House District 143", "rep": "Pat Chludzinski", "w": 0.033}, {"d": "NY House District 145", "rep": "Angelo Morinello", "w": 0.027}, {"d": "NY House District 140", "rep": "Bill Conrad", "w": 0.022}, {"d": "NY House District 150", "rep": "Andrew Molitor", "w": 0.021}, {"d": "NY House District 141", "rep": "Crystal Peoples-Stokes", "w": 0.014}], "ss": [{"d": "NY Senate District 60", "rep": "Patrick Gallivan", "w": 0.704}, {"d": "NY Senate District 61", "rep": "Jeremy Zellner", "w": 0.099}, {"d": "NY Senate District 63", "rep": "April Baskin", "w": 0.056}]}, "munis": [{"m": "Buffalo", "p": [{"n": "Byron Brown", "r": "Mayor, Buffalo, NY"}]}, {"m": "Lackawanna", "p": [{"n": "Annette Iafallo", "r": "Mayor, Lackawanna, NY"}]}, {"m": "Tonawanda", "p": [{"n": "John White", "r": "Mayor, Tonawanda, NY"}]}], "slug": "erie"}, "36031": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 114", "rep": "Matt Simpson", "w": 0.736}, {"d": "NY House District 115", "rep": "Michael Cashman", "w": 0.264}], "ss": [{"d": "NY Senate District 45", "rep": "Dan Stec", "w": 1.0}]}, "munis": [], "slug": "essex"}, "36033": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 115", "rep": "Michael Cashman", "w": 1.0}], "ss": [{"d": "NY Senate District 45", "rep": "Dan Stec", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "36035": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 118", "rep": "Robert Smullen", "w": 0.811}, {"d": "NY House District 112", "rep": "Mary Beth Walsh", "w": 0.123}, {"d": "NY House District 114", "rep": "Matt Simpson", "w": 0.065}], "ss": [{"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 1.0}]}, "munis": [{"m": "Gloversville", "p": [{"n": "Vincent DeSantis", "r": "Mayor, Gloversville, NY"}]}], "slug": "fulton"}, "36037": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 1.0}], "sh": [{"d": "NY House District 139", "rep": "Steve Hawley", "w": 1.0}], "ss": [{"d": "NY Senate District 57", "rep": "George Borrello", "w": 1.0}]}, "munis": [], "slug": "genesee"}, "36039": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.999}], "sh": [{"d": "NY House District 102", "rep": "Chris Tague", "w": 1.0}], "ss": [{"d": "NY Senate District 41", "rep": "Michelle Hinchey", "w": 1.0}]}, "munis": [], "slug": "greene"}, "36041": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 118", "rep": "Robert Smullen", "w": 1.0}], "ss": [{"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 1.0}]}, "munis": [], "slug": "hamilton"}, "36043": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 118", "rep": "Robert Smullen", "w": 0.963}, {"d": "NY House District 122", "rep": "Brian Miller", "w": 0.037}], "ss": [{"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 0.939}, {"d": "NY Senate District 53", "rep": "Joe Griffo", "w": 0.06}]}, "munis": [{"m": "Little Falls", "p": [{"n": "Deborah A. Kaufman", "r": "Mayor, Little Falls, NY"}]}], "slug": "herkimer"}, "36045": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.595}, {"d": "NY-21", "rep": "Elise M. Stefanik", "w": 0.151}], "sh": [{"d": "NY House District 116", "rep": "Scott Gray", "w": 0.456}, {"d": "NY House District 117", "rep": "Ken Blankenbush", "w": 0.154}, {"d": "NY House District 120", "rep": "Will Barclay", "w": 0.114}], "ss": [{"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 0.723}]}, "munis": [{"m": "Watertown", "p": [{"n": "Jeffrey M. Smith", "r": "Mayor, Watertown, NY"}]}], "slug": "jefferson"}, "36047": {"county": [], "districts": {"cd": [{"d": "NY-08", "rep": "Hakeem S. Jeffries", "w": 0.394}, {"d": "NY-09", "rep": "Yvette D. Clarke", "w": 0.157}, {"d": "NY-10", "rep": "Daniel S. Goldman", "w": 0.119}, {"d": "NY-07", "rep": "Nydia M. Velázquez", "w": 0.108}, {"d": "NY-11", "rep": "Nicole Malliotakis", "w": 0.072}], "sh": [{"d": "NY House District 59", "rep": "Jaime Williams", "w": 0.198}, {"d": "NY House District 60", "rep": "Nikki Lucas", "w": 0.052}, {"d": "NY House District 46", "rep": "Alec Brook-Krasny", "w": 0.048}, {"d": "NY House District 51", "rep": "Marcela Mitaynes", "w": 0.047}, {"d": "NY House District 45", "rep": "Misha Novakhov", "w": 0.038}, {"d": "NY House District 41", "rep": "Kalman Yeger", "w": 0.037}, {"d": "NY House District 52", "rep": "Jo Anne Simon", "w": 0.036}, {"d": "NY House District 58", "rep": "Monique Chandler-Waterman", "w": 0.035}, {"d": "NY House District 44", "rep": "Robert Carroll", "w": 0.035}, {"d": "NY House District 50", "rep": "Emily Gallagher", "w": 0.031}, {"d": "NY House District 54", "rep": "Erik Dilan", "w": 0.03}, {"d": "NY House District 53", "rep": "Maritza Davila", "w": 0.03}, {"d": "NY House District 48", "rep": "Simcha Eichenstein", "w": 0.027}, {"d": "NY House District 47", "rep": "William Colton", "w": 0.026}, {"d": "NY House District 55", "rep": "Latrice Walker", "w": 0.026}, {"d": "NY House District 49", "rep": "Lester Chang", "w": 0.024}, {"d": "NY House District 56", "rep": "Stefani Zinerman", "w": 0.024}, {"d": "NY House District 57", "rep": "Phara Souffrant Forrest", "w": 0.023}, {"d": "NY House District 42", "rep": "Rodneyse Bichotte Hermelyn", "w": 0.023}, {"d": "NY House District 43", "rep": "Brian Cunningham", "w": 0.022}, {"d": "NY House District 64", "rep": "Mike Tannousis", "w": 0.009}], "ss": [{"d": "NY Senate District 19", "rep": "Roxanne Persaud", "w": 0.229}, {"d": "NY Senate District 22", "rep": "Sam Sutton", "w": 0.093}, {"d": "NY Senate District 26", "rep": "Andrew Gounardes", "w": 0.09}, {"d": "NY Senate District 21", "rep": "Kevin Parker", "w": 0.084}, {"d": "NY Senate District 17", "rep": "Steve Chan", "w": 0.064}, {"d": "NY Senate District 20", "rep": "Zellnor Myrie", "w": 0.064}, {"d": "NY Senate District 18", "rep": "Julia Salazar", "w": 0.064}, {"d": "NY Senate District 25", "rep": "Jabari Brisport", "w": 0.062}, {"d": "NY Senate District 23", "rep": "Jessica Scarcella-Spanton", "w": 0.051}, {"d": "NY Senate District 59", "rep": "Kristen Gonzalez", "w": 0.018}]}, "munis": [], "slug": "kings"}, "36049": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 117", "rep": "Ken Blankenbush", "w": 1.0}], "ss": [{"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 1.0}]}, "munis": [], "slug": "lewis"}, "36051": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 1.0}], "sh": [{"d": "NY House District 133", "rep": "Andrea Bailey", "w": 1.0}], "ss": [{"d": "NY Senate District 54", "rep": "Pam Helming", "w": 1.0}]}, "munis": [], "slug": "livingston"}, "36053": {"county": [], "districts": {"cd": [{"d": "NY-22", "rep": "John W. Mannion", "w": 0.998}], "sh": [{"d": "NY House District 121", "rep": "Joe Angelino", "w": 0.378}, {"d": "NY House District 122", "rep": "Brian Miller", "w": 0.37}, {"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.174}, {"d": "NY House District 127", "rep": "Al Stirpe", "w": 0.078}], "ss": [{"d": "NY Senate District 53", "rep": "Joe Griffo", "w": 1.0}]}, "munis": [], "slug": "madison"}, "36055": {"county": [], "districts": {"cd": [{"d": "NY-25", "rep": "Joseph D. Morelle", "w": 0.486}], "sh": [{"d": "NY House District 139", "rep": "Steve Hawley", "w": 0.103}, {"d": "NY House District 135", "rep": "Jen Lunsford", "w": 0.1}, {"d": "NY House District 134", "rep": "Josh Jensen", "w": 0.094}, {"d": "NY House District 138", "rep": "Harry Bronson", "w": 0.088}, {"d": "NY House District 136", "rep": "Sarah Clark", "w": 0.032}, {"d": "NY House District 130", "rep": "Brian Manktelow", "w": 0.025}, {"d": "NY House District 133", "rep": "Andrea Bailey", "w": 0.022}, {"d": "NY House District 137", "rep": "Demond Meeks", "w": 0.022}], "ss": [{"d": "NY Senate District 62", "rep": "Rob Ortt", "w": 0.138}, {"d": "NY Senate District 54", "rep": "Pam Helming", "w": 0.129}, {"d": "NY Senate District 55", "rep": "Samra Brouk", "w": 0.119}, {"d": "NY Senate District 56", "rep": "Jeremy Cooney", "w": 0.101}]}, "munis": [{"m": "Rochester", "p": [{"n": "Malik Evans", "r": "Mayor, Rochester, NY"}]}], "slug": "monroe"}, "36057": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 0.787}, {"d": "NY-20", "rep": "Paul Tonko", "w": 0.213}], "sh": [{"d": "NY House District 118", "rep": "Robert Smullen", "w": 0.785}, {"d": "NY House District 111", "rep": "Angelo Santabarbara", "w": 0.215}], "ss": [{"d": "NY Senate District 46", "rep": "Pat Fahy", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "36059": {"county": [], "districts": {"cd": [{"d": "NY-03", "rep": "Thomas R. Suozzi", "w": 0.363}, {"d": "NY-04", "rep": "Laura Gillen", "w": 0.294}, {"d": "NY-02", "rep": "Andrew R. Garbarino", "w": 0.051}], "sh": [{"d": "NY House District 15", "rep": "Jake Blumencranz", "w": 0.134}, {"d": "NY House District 14", "rep": "Dave McDonough", "w": 0.097}, {"d": "NY House District 13", "rep": "Charles Lavine", "w": 0.087}, {"d": "NY House District 16", "rep": "Danny Norber", "w": 0.078}, {"d": "NY House District 20", "rep": "Ari Brown", "w": 0.063}, {"d": "NY House District 19", "rep": "Ed Ra", "w": 0.049}, {"d": "NY House District 17", "rep": "John Mikulin", "w": 0.041}, {"d": "NY House District 9", "rep": "Michael Durso", "w": 0.037}, {"d": "NY House District 21", "rep": "Judy Griffin", "w": 0.037}, {"d": "NY House District 18", "rep": "Noah Burroughs", "w": 0.029}, {"d": "NY House District 22", "rep": "Michaelle Solages", "w": 0.027}, {"d": "NY House District 10", "rep": "Steve Stern", "w": 0.013}], "ss": [{"d": "NY Senate District 7", "rep": "Jack Martins", "w": 0.27}, {"d": "NY Senate District 5", "rep": "Steve Rhoads", "w": 0.168}, {"d": "NY Senate District 9", "rep": "Patricia Canzoneri-Fitzpatrick", "w": 0.106}, {"d": "NY Senate District 6", "rep": "Siela Bynoe", "w": 0.093}, {"d": "NY Senate District 8", "rep": "Alexis Weik", "w": 0.057}]}, "munis": [{"m": "Glen Cove", "p": [{"n": "Pamela D. Panzenbeck", "r": "Mayor, Glen Cove, NY"}]}], "slug": "nassau"}, "36061": {"county": [], "districts": {"cd": [{"d": "NY-12", "rep": "Jerrold Nadler", "w": 0.381}, {"d": "NY-13", "rep": "Adriano Espaillat", "w": 0.359}, {"d": "NY-10", "rep": "Daniel S. Goldman", "w": 0.249}], "sh": [{"d": "NY House District 71", "rep": "Al Taylor", "w": 0.127}, {"d": "NY House District 68", "rep": "Eddie Gibbs", "w": 0.107}, {"d": "NY House District 75", "rep": "Tony Simone", "w": 0.094}, {"d": "NY House District 66", "rep": "Deborah Glick", "w": 0.08}, {"d": "NY House District 74", "rep": "Keith Powers", "w": 0.079}, {"d": "NY House District 69", "rep": "Micah Lasher", "w": 0.073}, {"d": "NY House District 67", "rep": "Linda Rosenthal", "w": 0.071}, {"d": "NY House District 76", "rep": "Rebecca Seawright", "w": 0.062}, {"d": "NY House District 70", "rep": "Jordan Wright", "w": 0.056}, {"d": "NY House District 65", "rep": "Grace Lee", "w": 0.056}, {"d": "NY House District 72", "rep": "Manny De Los Santos", "w": 0.056}, {"d": "NY House District 73", "rep": "Alex Bores", "w": 0.049}, {"d": "NY House District 61", "rep": "Charles Fall", "w": 0.026}], "ss": [{"d": "NY Senate District 47", "rep": "Erik Bottcher", "w": 0.172}, {"d": "NY Senate District 28", "rep": "Liz Krueger", "w": 0.153}, {"d": "NY Senate District 27", "rep": "Brian Kavanagh", "w": 0.151}, {"d": "NY Senate District 31", "rep": "Robert Jackson", "w": 0.148}, {"d": "NY Senate District 30", "rep": "Cordell Cleare", "w": 0.148}, {"d": "NY Senate District 29", "rep": "Jose Serrano", "w": 0.084}, {"d": "NY Senate District 59", "rep": "Kristen Gonzalez", "w": 0.063}, {"d": "NY Senate District 26", "rep": "Andrew Gounardes", "w": 0.016}]}, "munis": [], "slug": "new-york"}, "36063": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.364}, {"d": "NY-26", "rep": "Timothy M. Kennedy", "w": 0.056}, {"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 0.045}], "sh": [{"d": "NY House District 144", "rep": "Paul Bologna", "w": 0.299}, {"d": "NY House District 145", "rep": "Angelo Morinello", "w": 0.159}, {"d": "NY House District 140", "rep": "Bill Conrad", "w": 0.006}], "ss": [{"d": "NY Senate District 62", "rep": "Rob Ortt", "w": 0.466}]}, "munis": [{"m": "Lockport", "p": [{"n": "John Lombardi III", "r": "Mayor, Lockport, NY"}]}, {"m": "Niagara Falls", "p": [{"n": "Robert Restaino", "r": "Mayor, Niagara Falls, NY"}]}, {"m": "North Tonawanda", "p": [{"n": "Austin J. Tylec", "r": "Mayor, North Tonawanda, NY"}]}], "slug": "niagara"}, "36065": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 0.725}, {"d": "NY-22", "rep": "John W. Mannion", "w": 0.275}], "sh": [{"d": "NY House District 117", "rep": "Ken Blankenbush", "w": 0.398}, {"d": "NY House District 122", "rep": "Brian Miller", "w": 0.285}, {"d": "NY House District 119", "rep": "Marianne Buttenschon", "w": 0.176}, {"d": "NY House District 118", "rep": "Robert Smullen", "w": 0.142}], "ss": [{"d": "NY Senate District 53", "rep": "Joe Griffo", "w": 1.0}]}, "munis": [{"m": "Utica", "p": [{"n": "Michael P. Galime", "r": "Mayor, Utica, NY"}]}], "slug": "oneida"}, "36067": {"county": [], "districts": {"cd": [{"d": "NY-22", "rep": "John W. Mannion", "w": 0.998}], "sh": [{"d": "NY House District 126", "rep": "John Lemondes", "w": 0.581}, {"d": "NY House District 127", "rep": "Al Stirpe", "w": 0.183}, {"d": "NY House District 128", "rep": "Pamela Hunter", "w": 0.154}, {"d": "NY House District 129", "rep": "Bill Magnarelli", "w": 0.082}], "ss": [{"d": "NY Senate District 48", "rep": "Rachel May", "w": 0.698}, {"d": "NY Senate District 50", "rep": "Chris Ryan", "w": 0.302}]}, "munis": [{"m": "Syracuse", "p": [{"n": "Sharon Owens", "r": "Mayor, Syracuse, NY"}]}], "slug": "onondaga"}, "36069": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.923}, {"d": "NY-25", "rep": "Joseph D. Morelle", "w": 0.077}], "sh": [{"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.503}, {"d": "NY House District 133", "rep": "Andrea Bailey", "w": 0.497}], "ss": [{"d": "NY Senate District 54", "rep": "Pam Helming", "w": 1.0}]}, "munis": [], "slug": "ontario"}, "36071": {"county": [], "districts": {"cd": [{"d": "NY-18", "rep": "Patrick Ryan", "w": 0.999}], "sh": [{"d": "NY House District 98", "rep": "Karl Brabenec", "w": 0.417}, {"d": "NY House District 101", "rep": "Brian Maher", "w": 0.266}, {"d": "NY House District 99", "rep": "Chris Eachus", "w": 0.174}, {"d": "NY House District 100", "rep": "Paula Kay", "w": 0.081}, {"d": "NY House District 104", "rep": "Jonathan Jacobson", "w": 0.062}], "ss": [{"d": "NY Senate District 42", "rep": "James Skoufis", "w": 0.877}, {"d": "NY Senate District 39", "rep": "Rob Rolison", "w": 0.123}]}, "munis": [{"m": "Newburgh", "p": [{"n": "Torrance Harvey", "r": "Mayor, Newburgh, NY"}]}, {"m": "Port Jervis", "p": [{"n": "Dominic M. Cicalese", "r": "Mayor, Port Jervis, NY"}]}], "slug": "orange"}, "36073": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.479}], "sh": [{"d": "NY House District 139", "rep": "Steve Hawley", "w": 0.48}], "ss": [{"d": "NY Senate District 62", "rep": "Rob Ortt", "w": 0.48}]}, "munis": [], "slug": "orleans"}, "36075": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.774}], "sh": [{"d": "NY House District 120", "rep": "Will Barclay", "w": 0.776}], "ss": [{"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 0.399}, {"d": "NY Senate District 50", "rep": "Chris Ryan", "w": 0.377}]}, "munis": [], "slug": "oswego"}, "36077": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.999}], "sh": [{"d": "NY House District 102", "rep": "Chris Tague", "w": 0.39}, {"d": "NY House District 122", "rep": "Brian Miller", "w": 0.314}, {"d": "NY House District 121", "rep": "Joe Angelino", "w": 0.263}, {"d": "NY House District 118", "rep": "Robert Smullen", "w": 0.032}], "ss": [{"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 1.0}]}, "munis": [], "slug": "otsego"}, "36079": {"county": [], "districts": {"cd": [{"d": "NY-17", "rep": "Michael Lawler", "w": 0.999}], "sh": [{"d": "NY House District 94", "rep": "Matt Slater", "w": 0.79}, {"d": "NY House District 95", "rep": "Dana Levenberg", "w": 0.209}], "ss": [{"d": "NY Senate District 40", "rep": "Pete Harckham", "w": 0.617}, {"d": "NY Senate District 39", "rep": "Rob Rolison", "w": 0.383}]}, "munis": [], "slug": "putnam"}, "36081": {"county": [], "districts": {"cd": [{"d": "NY-05", "rep": "Gregory W. Meeks", "w": 0.316}, {"d": "NY-06", "rep": "Grace Meng", "w": 0.144}, {"d": "NY-03", "rep": "Thomas R. Suozzi", "w": 0.089}, {"d": "NY-14", "rep": "Alexandria Ocasio-Cortez", "w": 0.078}, {"d": "NY-07", "rep": "Nydia M. Velázquez", "w": 0.066}], "sh": [{"d": "NY House District 31", "rep": "Khaleel Anderson", "w": 0.11}, {"d": "NY House District 23", "rep": "Stacey Pheffer Amato", "w": 0.089}, {"d": "NY House District 27", "rep": "Sam Berger", "w": 0.059}, {"d": "NY House District 26", "rep": "Ed Braunstein", "w": 0.058}, {"d": "NY House District 25", "rep": "Nily Rozic", "w": 0.037}, {"d": "NY House District 33", "rep": "Clyde Vanel", "w": 0.035}, {"d": "NY House District 29", "rep": "Alicia Hyndman", "w": 0.034}, {"d": "NY House District 37", "rep": "Claire Valdez", "w": 0.032}, {"d": "NY House District 24", "rep": "David Weprin", "w": 0.032}, {"d": "NY House District 28", "rep": "Andrew Hevesi", "w": 0.029}, {"d": "NY House District 35", "rep": "Larinda Hooks", "w": 0.027}, {"d": "NY House District 38", "rep": "Jenifer Rajkumar", "w": 0.025}, {"d": "NY House District 32", "rep": "Vivian Cook", "w": 0.024}, {"d": "NY House District 34", "rep": "Jessica González-Rojas", "w": 0.023}, {"d": "NY House District 40", "rep": "Ron Kim", "w": 0.018}, {"d": "NY House District 36", "rep": "Diana Moreno", "w": 0.018}, {"d": "NY House District 30", "rep": "Steven Raga", "w": 0.016}, {"d": "NY House District 39", "rep": "Catalina Cruz", "w": 0.011}], "ss": [{"d": "NY Senate District 10", "rep": "James Sanders", "w": 0.205}, {"d": "NY Senate District 11", "rep": "Toby Stavisky", "w": 0.142}, {"d": "NY Senate District 16", "rep": "John Liu", "w": 0.083}, {"d": "NY Senate District 14", "rep": "Leroy Comrie", "w": 0.074}, {"d": "NY Senate District 15", "rep": "Joe Addabbo", "w": 0.057}, {"d": "NY Senate District 12", "rep": "Mike Gianaris", "w": 0.057}, {"d": "NY Senate District 13", "rep": "Jessica Ramos", "w": 0.027}, {"d": "NY Senate District 59", "rep": "Kristen Gonzalez", "w": 0.019}, {"d": "NY Senate District 18", "rep": "Julia Salazar", "w": 0.008}, {"d": "NY Senate District 19", "rep": "Roxanne Persaud", "w": 0.008}]}, "munis": [], "slug": "queens"}, "36083": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.673}, {"d": "NY-20", "rep": "Paul Tonko", "w": 0.327}], "sh": [{"d": "NY House District 107", "rep": "Scott Bendett", "w": 0.913}, {"d": "NY House District 108", "rep": "John McDonald", "w": 0.087}], "ss": [{"d": "NY Senate District 43", "rep": "Jake Ashby", "w": 1.0}]}, "munis": [{"m": "Rensselaer", "p": [{"n": "Michael Stammel", "r": "Mayor, Rensselaer, NY"}]}, {"m": "Troy", "p": [{"n": "Carmella Mantello", "r": "Mayor, Troy, NY"}]}], "slug": "rensselaer"}, "36085": {"county": [], "districts": {"cd": [{"d": "NY-11", "rep": "Nicole Malliotakis", "w": 0.603}], "sh": [{"d": "NY House District 62", "rep": "Mike Reilly", "w": 0.197}, {"d": "NY House District 63", "rep": "Sam Pirozzolo", "w": 0.182}, {"d": "NY House District 64", "rep": "Mike Tannousis", "w": 0.119}, {"d": "NY House District 61", "rep": "Charles Fall", "w": 0.064}], "ss": [{"d": "NY Senate District 24", "rep": "Andrew Lanza", "w": 0.444}, {"d": "NY Senate District 23", "rep": "Jessica Scarcella-Spanton", "w": 0.117}]}, "munis": [], "slug": "richmond"}, "36087": {"county": [], "districts": {"cd": [{"d": "NY-17", "rep": "Michael Lawler", "w": 1.0}], "sh": [{"d": "NY House District 96", "rep": "Pat Carroll", "w": 0.39}, {"d": "NY House District 97", "rep": "Aron Wieder", "w": 0.227}, {"d": "NY House District 98", "rep": "Karl Brabenec", "w": 0.224}, {"d": "NY House District 99", "rep": "Chris Eachus", "w": 0.159}], "ss": [{"d": "NY Senate District 38", "rep": "Bill Weber", "w": 0.841}, {"d": "NY Senate District 40", "rep": "Pete Harckham", "w": 0.159}]}, "munis": [], "slug": "rockland"}, "36089": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 117", "rep": "Ken Blankenbush", "w": 0.673}, {"d": "NY House District 116", "rep": "Scott Gray", "w": 0.327}], "ss": [{"d": "NY Senate District 45", "rep": "Dan Stec", "w": 0.608}, {"d": "NY Senate District 49", "rep": "Mark Walczyk", "w": 0.392}]}, "munis": [], "slug": "st-lawrence"}, "36091": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 0.579}, {"d": "NY-20", "rep": "Paul Tonko", "w": 0.421}], "sh": [{"d": "NY House District 114", "rep": "Matt Simpson", "w": 0.36}, {"d": "NY House District 112", "rep": "Mary Beth Walsh", "w": 0.323}, {"d": "NY House District 113", "rep": "Carrie Woerner", "w": 0.308}, {"d": "NY House District 108", "rep": "John McDonald", "w": 0.009}], "ss": [{"d": "NY Senate District 44", "rep": "Jim Tedisco", "w": 1.0}]}, "munis": [{"m": "Mechanicville", "p": [{"n": "Mike Butler", "r": "Mayor, Mechanicville, NY"}]}, {"m": "Saratoga Springs", "p": [{"n": "Meg Kelly", "r": "Mayor, Saratoga Springs, NY"}]}], "slug": "saratoga"}, "36093": {"county": [], "districts": {"cd": [{"d": "NY-20", "rep": "Paul Tonko", "w": 0.996}], "sh": [{"d": "NY House District 111", "rep": "Angelo Santabarbara", "w": 0.681}, {"d": "NY House District 112", "rep": "Mary Beth Walsh", "w": 0.233}, {"d": "NY House District 110", "rep": "Phil Steck", "w": 0.086}], "ss": [{"d": "NY Senate District 46", "rep": "Pat Fahy", "w": 0.876}, {"d": "NY Senate District 44", "rep": "Jim Tedisco", "w": 0.124}]}, "munis": [{"m": "Schenectady", "p": [{"n": "Gary McCarthy", "r": "Mayor, Schenectady, NY"}]}], "slug": "schenectady"}, "36095": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 0.998}], "sh": [{"d": "NY House District 102", "rep": "Chris Tague", "w": 1.0}], "ss": [{"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 1.0}]}, "munis": [], "slug": "schoharie"}, "36097": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.524}, {"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 0.475}], "sh": [{"d": "NY House District 132", "rep": "Phil Palmesano", "w": 1.0}], "ss": [{"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 1.0}]}, "munis": [], "slug": "schuyler"}, "36099": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.999}], "sh": [{"d": "NY House District 132", "rep": "Phil Palmesano", "w": 0.545}, {"d": "NY House District 131", "rep": "Jeff Gallahan", "w": 0.455}], "ss": [{"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 1.0}]}, "munis": [], "slug": "seneca"}, "36101": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 0.775}, {"d": "NY-24", "rep": "Claudia Tenney", "w": 0.225}], "sh": [{"d": "NY House District 132", "rep": "Phil Palmesano", "w": 0.597}, {"d": "NY House District 148", "rep": "Joe Sempolinski", "w": 0.204}, {"d": "NY House District 133", "rep": "Andrea Bailey", "w": 0.199}], "ss": [{"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 1.0}]}, "munis": [{"m": "Corning", "p": [{"n": "William M. Boland Jr.", "r": "Mayor, Corning, NY"}]}], "slug": "steuben"}, "36103": {"county": [], "districts": {"cd": [{"d": "NY-01", "rep": "Nick LaLota", "w": 0.34}, {"d": "NY-02", "rep": "Andrew R. Garbarino", "w": 0.138}, {"d": "NY-03", "rep": "Thomas R. Suozzi", "w": 0.011}], "sh": [{"d": "NY House District 1", "rep": "Tommy John Schiavoni", "w": 0.168}, {"d": "NY House District 2", "rep": "Jodi Giglio", "w": 0.071}, {"d": "NY House District 7", "rep": "Jarett Gandolfo", "w": 0.058}, {"d": "NY House District 3", "rep": "Joe DeStefano", "w": 0.034}, {"d": "NY House District 8", "rep": "Mike Fitzpatrick", "w": 0.027}, {"d": "NY House District 12", "rep": "Keith Brown", "w": 0.024}, {"d": "NY House District 4", "rep": "Rebecca Kassay", "w": 0.023}, {"d": "NY House District 10", "rep": "Steve Stern", "w": 0.021}, {"d": "NY House District 9", "rep": "Michael Durso", "w": 0.019}, {"d": "NY House District 5", "rep": "Doug Smith", "w": 0.017}, {"d": "NY House District 11", "rep": "Kwani O'Pharrow", "w": 0.012}, {"d": "NY House District 6", "rep": "Phil Ramos", "w": 0.009}], "ss": [{"d": "NY Senate District 1", "rep": "Tony Palumbo", "w": 0.231}, {"d": "NY Senate District 3", "rep": "Dean Murray", "w": 0.102}, {"d": "NY Senate District 2", "rep": "Mario Mattera", "w": 0.064}, {"d": "NY Senate District 8", "rep": "Alexis Weik", "w": 0.057}, {"d": "NY Senate District 4", "rep": "Monica Martinez", "w": 0.03}]}, "munis": [], "slug": "suffolk"}, "36105": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.999}], "sh": [{"d": "NY House District 100", "rep": "Paula Kay", "w": 0.766}, {"d": "NY House District 101", "rep": "Brian Maher", "w": 0.234}], "ss": [{"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 1.0}]}, "munis": [], "slug": "sullivan"}, "36107": {"county": [], "districts": {"cd": [{"d": "NY-23", "rep": "Nicholas A. Langworthy", "w": 0.997}], "sh": [{"d": "NY House District 124", "rep": "Chris Friend", "w": 1.0}], "ss": [{"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 1.0}]}, "munis": [], "slug": "tioga"}, "36109": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.997}], "sh": [{"d": "NY House District 125", "rep": "Anna Kelles", "w": 1.0}], "ss": [{"d": "NY Senate District 52", "rep": "Lea Webb", "w": 1.0}]}, "munis": [{"m": "Ithaca", "p": [{"n": "Svante Myrick", "r": "Mayor, Ithaca, NY"}]}], "slug": "tompkins"}, "36111": {"county": [], "districts": {"cd": [{"d": "NY-19", "rep": "Josh Riley", "w": 0.669}, {"d": "NY-18", "rep": "Patrick Ryan", "w": 0.331}], "sh": [{"d": "NY House District 101", "rep": "Brian Maher", "w": 0.505}, {"d": "NY House District 103", "rep": "Sarahana Shrestha", "w": 0.412}, {"d": "NY House District 104", "rep": "Jonathan Jacobson", "w": 0.082}], "ss": [{"d": "NY Senate District 51", "rep": "Peter Oberacker", "w": 0.543}, {"d": "NY Senate District 41", "rep": "Michelle Hinchey", "w": 0.456}]}, "munis": [{"m": "Kingston", "p": [{"n": "Steve Noble", "r": "Mayor, Kingston, NY"}]}], "slug": "ulster"}, "36113": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 1.0}], "sh": [{"d": "NY House District 114", "rep": "Matt Simpson", "w": 0.996}], "ss": [{"d": "NY Senate District 45", "rep": "Dan Stec", "w": 1.0}]}, "munis": [{"m": "Glens Falls", "p": [{"n": "William Collins", "r": "Mayor, Glens Falls, NY"}]}], "slug": "warren"}, "36115": {"county": [], "districts": {"cd": [{"d": "NY-21", "rep": "Elise M. Stefanik", "w": 0.999}], "sh": [{"d": "NY House District 114", "rep": "Matt Simpson", "w": 0.739}, {"d": "NY House District 107", "rep": "Scott Bendett", "w": 0.174}, {"d": "NY House District 113", "rep": "Carrie Woerner", "w": 0.087}], "ss": [{"d": "NY Senate District 43", "rep": "Jake Ashby", "w": 0.644}, {"d": "NY Senate District 45", "rep": "Dan Stec", "w": 0.356}]}, "munis": [], "slug": "washington"}, "36117": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 0.44}], "sh": [{"d": "NY House District 130", "rep": "Brian Manktelow", "w": 0.441}], "ss": [{"d": "NY Senate District 54", "rep": "Pam Helming", "w": 0.441}]}, "munis": [], "slug": "wayne"}, "36119": {"county": [], "districts": {"cd": [{"d": "NY-17", "rep": "Michael Lawler", "w": 0.69}, {"d": "NY-16", "rep": "George Latimer", "w": 0.266}], "sh": [{"d": "NY House District 93", "rep": "Chris Burdick", "w": 0.38}, {"d": "NY House District 95", "rep": "Dana Levenberg", "w": 0.185}, {"d": "NY House District 92", "rep": "MaryJane Shimsky", "w": 0.135}, {"d": "NY House District 94", "rep": "Matt Slater", "w": 0.102}, {"d": "NY House District 88", "rep": "Amy Paulin", "w": 0.057}, {"d": "NY House District 91", "rep": "Steve Otis", "w": 0.048}, {"d": "NY House District 90", "rep": "Nader Sayegh", "w": 0.03}, {"d": "NY House District 89", "rep": "Gary Pretlow", "w": 0.016}], "ss": [{"d": "NY Senate District 40", "rep": "Pete Harckham", "w": 0.523}, {"d": "NY Senate District 37", "rep": "Shelley Mayer", "w": 0.239}, {"d": "NY Senate District 35", "rep": "Andrea Stewart-Cousins", "w": 0.17}, {"d": "NY Senate District 34", "rep": "Nathalia Fernández", "w": 0.012}, {"d": "NY Senate District 36", "rep": "Jamaal Bailey", "w": 0.009}]}, "munis": [{"m": "Mount Vernon", "p": [{"n": "Shawyn Patterson-Howard", "r": "Mayor, Mount Vernon, NY"}]}, {"m": "New Rochelle", "p": [{"n": "Yadira Ramos-Herbert", "r": "Mayor, New Rochelle, NY"}]}, {"m": "White Plains", "p": [{"n": "Thomas Roach", "r": "Mayor, White Plains, NY"}]}, {"m": "Yonkers", "p": [{"n": "Mike Spano", "r": "Mayor, Yonkers, NY"}]}], "slug": "westchester"}, "36121": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 1.0}], "sh": [{"d": "NY House District 147", "rep": "Dave DiPietro", "w": 0.83}, {"d": "NY House District 133", "rep": "Andrea Bailey", "w": 0.17}], "ss": [{"d": "NY Senate District 57", "rep": "George Borrello", "w": 1.0}]}, "munis": [], "slug": "wyoming"}, "36123": {"county": [], "districts": {"cd": [{"d": "NY-24", "rep": "Claudia Tenney", "w": 1.0}], "sh": [{"d": "NY House District 132", "rep": "Phil Palmesano", "w": 1.0}], "ss": [{"d": "NY Senate District 58", "rep": "Tom O'Mara", "w": 1.0}]}, "munis": [], "slug": "yates"}, "37001": {"county": [], "districts": {"cd": [{"d": "NC-09", "rep": "Richard Hudson", "w": 0.999}], "sh": [{"d": "NC House District 64", "rep": "Dennis Riddell", "w": 0.549}, {"d": "NC House District 63", "rep": "Stephen Ross", "w": 0.451}], "ss": [{"d": "NC Senate District 25", "rep": "Amy Galey", "w": 1.0}]}, "munis": [{"m": "Burlington", "p": [{"n": "James B. Butler", "r": "Mayor, Burlington, NC"}]}, {"m": "Graham", "p": [{"n": "Jennifer Talley", "r": "Mayor, Graham, NC"}]}, {"m": "Mebane", "p": [{"n": "Ed Hooks", "r": "Mayor, Mebane, NC"}]}], "slug": "alamance"}, "37003": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 0.998}], "sh": [{"d": "NC House District 94", "rep": "Blair Eddins", "w": 1.0}], "ss": [{"d": "NC Senate District 36", "rep": "Eddie Settle", "w": 1.0}]}, "munis": [], "slug": "alexander"}, "37005": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 1.0}], "sh": [{"d": "NC House District 93", "rep": "Ray Pickett", "w": 1.0}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 1.0}]}, "munis": [], "slug": "alleghany"}, "37007": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 1.0}], "sh": [{"d": "NC House District 55", "rep": "Mark Brody", "w": 1.0}], "ss": [{"d": "NC Senate District 29", "rep": "Dave Craven", "w": 1.0}]}, "munis": [], "slug": "anson"}, "37009": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 0.999}], "sh": [{"d": "NC House District 93", "rep": "Ray Pickett", "w": 0.999}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 0.999}]}, "munis": [], "slug": "ashe"}, "37011": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.995}], "sh": [{"d": "NC House District 85", "rep": "Dudley Greene", "w": 0.999}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 1.0}]}, "munis": [], "slug": "avery"}, "37013": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.896}], "sh": [{"d": "NC House District 79", "rep": "Keith Kidwell", "w": 0.894}], "ss": [{"d": "NC Senate District 3", "rep": "Bob Brinson", "w": 0.894}]}, "munis": [{"m": "Washington", "p": [{"n": "Donald Sadler", "r": "Mayor, Washington, NC"}]}], "slug": "beaufort"}, "37015": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.965}], "sh": [{"d": "NC House District 23", "rep": "Shelly Willingham", "w": 0.956}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.956}]}, "munis": [], "slug": "bertie"}, "37017": {"county": [], "districts": {"cd": [{"d": "NC-07", "rep": "David Rouzer", "w": 0.999}], "sh": [{"d": "NC House District 22", "rep": "William Brisson", "w": 1.0}], "ss": [{"d": "NC Senate District 9", "rep": "Brent Jackson", "w": 1.0}]}, "munis": [], "slug": "bladen"}, "37019": {"county": [], "districts": {"cd": [{"d": "NC-07", "rep": "David Rouzer", "w": 0.851}], "sh": [{"d": "NC House District 17", "rep": "Frank Iler", "w": 0.617}, {"d": "NC House District 19", "rep": "Charlie Miller", "w": 0.23}], "ss": [{"d": "NC Senate District 8", "rep": "Bill Rabon", "w": 0.848}]}, "munis": [], "slug": "brunswick"}, "37021": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 115", "rep": "Lindsey Prather", "w": 0.533}, {"d": "NC House District 114", "rep": "Eric Ager", "w": 0.383}, {"d": "NC House District 116", "rep": "Brian Turner", "w": 0.084}], "ss": [{"d": "NC Senate District 46", "rep": "Warren Daniel", "w": 0.563}, {"d": "NC Senate District 49", "rep": "Julie Mayfield", "w": 0.437}]}, "munis": [{"m": "Asheville", "p": [{"n": "Esther Manheimer", "r": "Mayor, Asheville, NC"}]}, {"m": "Woodfin", "p": [{"n": "Jim McAllister", "r": "Mayor, Woodfin, NC"}]}], "slug": "buncombe"}, "37023": {"county": [], "districts": {"cd": [{"d": "NC-14", "rep": "Tim Moore", "w": 0.997}], "sh": [{"d": "NC House District 86", "rep": "Hugh Blackwell", "w": 1.0}], "ss": [{"d": "NC Senate District 46", "rep": "Warren Daniel", "w": 1.0}]}, "munis": [{"m": "Morganton", "p": [{"n": "Ronnie Thompson", "r": "Mayor, Morganton, NC"}]}], "slug": "burke"}, "37025": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 0.773}, {"d": "NC-06", "rep": "Addison P. McDowell", "w": 0.226}], "sh": [{"d": "NC House District 82", "rep": "Brian Echevarria", "w": 0.474}, {"d": "NC House District 73", "rep": "Jonathan Almond", "w": 0.403}, {"d": "NC House District 83", "rep": "Grant Campbell", "w": 0.123}], "ss": [{"d": "NC Senate District 34", "rep": "Chris Measmer", "w": 0.939}, {"d": "NC Senate District 35", "rep": "Todd Johnson", "w": 0.06}]}, "munis": [{"m": "Concord", "p": [{"n": "William C. \"Bill\" Dusch", "r": "Mayor, Concord, NC"}]}, {"m": "Kannapolis", "p": [{"n": "M. Darrell Hinnant", "r": "Mayor, Kannapolis, NC"}]}], "slug": "cabarrus"}, "37027": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 0.997}], "sh": [{"d": "NC House District 87", "rep": "Destin Hall", "w": 1.0}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 0.726}, {"d": "NC Senate District 45", "rep": "Mark Hollo", "w": 0.274}]}, "munis": [{"m": "Lenoir", "p": [{"n": "Joseph L. Gibbons", "r": "Mayor, Lenoir, NC"}]}], "slug": "caldwell"}, "37029": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.798}], "sh": [{"d": "NC House District 5", "rep": "Bill Ward", "w": 0.785}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.785}]}, "munis": [], "slug": "camden"}, "37031": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.492}], "sh": [{"d": "NC House District 13", "rep": "Celeste Cairns", "w": 0.425}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 0.425}]}, "munis": [{"m": "Atlantic Beach", "p": [{"n": "Danny Navey", "r": "Mayor, Atlantic Beach, NC"}]}, {"m": "Beaufort", "p": [{"n": "Sharon Harker", "r": "Mayor, Beaufort, NC"}]}, {"m": "Morehead City", "p": [{"n": "Jerry Jones, Jr.", "r": "Mayor, Morehead City, NC"}]}], "slug": "carteret"}, "37033": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.999}], "sh": [{"d": "NC House District 50", "rep": "Renée Price", "w": 0.999}], "ss": [{"d": "NC Senate District 23", "rep": "Jonah Garson", "w": 0.999}]}, "munis": [], "slug": "caswell"}, "37035": {"county": [], "districts": {"cd": [{"d": "NC-10", "rep": "Pat Harrigan", "w": 0.999}], "sh": [{"d": "NC House District 89", "rep": "Mitchell Setzer", "w": 0.714}, {"d": "NC House District 96", "rep": "Jay Adams", "w": 0.285}], "ss": [{"d": "NC Senate District 45", "rep": "Mark Hollo", "w": 1.0}]}, "munis": [{"m": "Hickory", "p": [{"n": "Hank Guess", "r": "Mayor, Hickory, NC"}]}], "slug": "catawba"}, "37037": {"county": [], "districts": {"cd": [{"d": "NC-09", "rep": "Richard Hudson", "w": 0.693}, {"d": "NC-04", "rep": "Valerie P. Foushee", "w": 0.306}], "sh": [{"d": "NC House District 54", "rep": "Robert Reives", "w": 1.0}], "ss": [{"d": "NC Senate District 20", "rep": "Natalie Murdock", "w": 1.0}]}, "munis": [], "slug": "chatham"}, "37039": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 120", "rep": "Karl Gillespie", "w": 1.0}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 1.0}]}, "munis": [], "slug": "cherokee"}, "37041": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.769}], "sh": [{"d": "NC House District 1", "rep": "Ed Goodwin", "w": 0.757}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 0.757}]}, "munis": [], "slug": "chowan"}, "37043": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 120", "rep": "Karl Gillespie", "w": 0.999}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 0.999}]}, "munis": [], "slug": "clay"}, "37045": {"county": [], "districts": {"cd": [{"d": "NC-14", "rep": "Tim Moore", "w": 0.999}], "sh": [{"d": "NC House District 110", "rep": "Kelly Hastings", "w": 0.51}, {"d": "NC House District 111", "rep": "Paul Scott", "w": 0.49}], "ss": [{"d": "NC Senate District 44", "rep": "Ted Alexander", "w": 1.0}]}, "munis": [{"m": "Kings Mountain", "p": [{"n": "Rob Wagman", "r": "Mayor, Kings Mountain, NC"}]}, {"m": "Shelby", "p": [{"n": "Stan Anthony", "r": "Mayor, Shelby, NC"}]}], "slug": "cleveland"}, "37047": {"county": [], "districts": {"cd": [{"d": "NC-07", "rep": "David Rouzer", "w": 1.0}], "sh": [{"d": "NC House District 46", "rep": "Brenden Jones", "w": 1.0}], "ss": [{"d": "NC Senate District 8", "rep": "Bill Rabon", "w": 1.0}]}, "munis": [{"m": "Chadbourn", "p": [{"n": "Phillip C. Britt", "r": "Mayor, Chadbourn, NC"}]}], "slug": "columbus"}, "37049": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.959}], "sh": [{"d": "NC House District 3", "rep": "Steve Tyson", "w": 0.836}, {"d": "NC House District 13", "rep": "Celeste Cairns", "w": 0.108}], "ss": [{"d": "NC Senate District 3", "rep": "Bob Brinson", "w": 0.944}]}, "munis": [], "slug": "craven"}, "37051": {"county": [], "districts": {"cd": [{"d": "NC-07", "rep": "David Rouzer", "w": 0.795}, {"d": "NC-09", "rep": "Richard Hudson", "w": 0.204}], "sh": [{"d": "NC House District 43", "rep": "Diane Wheatley", "w": 0.701}, {"d": "NC House District 42", "rep": "Mike Colvin", "w": 0.158}, {"d": "NC House District 45", "rep": "Frances Jackson", "w": 0.077}, {"d": "NC House District 44", "rep": "Charles Smith", "w": 0.064}], "ss": [{"d": "NC Senate District 21", "rep": "Tom McInnis", "w": 0.805}, {"d": "NC Senate District 19", "rep": "Val Applewhite", "w": 0.194}]}, "munis": [{"m": "Fayetteville", "p": [{"n": "Mitch Colvin", "r": "Mayor, Fayetteville, NC"}]}], "slug": "cumberland"}, "37053": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.564}], "sh": [{"d": "NC House District 1", "rep": "Ed Goodwin", "w": 0.547}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.547}]}, "munis": [], "slug": "currituck"}, "37055": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.293}], "sh": [{"d": "NC House District 1", "rep": "Ed Goodwin", "w": 0.213}, {"d": "NC House District 79", "rep": "Keith Kidwell", "w": 0.052}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.265}]}, "munis": [{"m": "Duck", "p": [{"n": "Don Kingston", "r": "Mayor, Duck, NC"}]}, {"m": "Kill Devil Hills", "p": [{"n": "John Windley", "r": "Mayor, Kill Devil Hills, NC"}]}, {"m": "Kitty Hawk", "p": [{"n": "Craig Garriss", "r": "Mayor, Kitty Hawk, NC"}]}, {"m": "Manteo", "p": [{"n": "Sherry Butcher Wickstrom", "r": "Mayor, Manteo, NC"}]}, {"m": "Nags Head", "p": [{"n": "Ben Cahoon", "r": "Mayor, Nags Head, NC"}]}], "slug": "dare"}, "37057": {"county": [], "districts": {"cd": [{"d": "NC-06", "rep": "Addison P. McDowell", "w": 1.0}], "sh": [{"d": "NC House District 80", "rep": "Sam Watford", "w": 0.53}, {"d": "NC House District 81", "rep": "Larry Potts", "w": 0.47}], "ss": [{"d": "NC Senate District 30", "rep": "Steve Jarvis", "w": 1.0}]}, "munis": [{"m": "Denton", "p": [{"n": "Larry D. Ward", "r": "Mayor, Denton, NC"}]}, {"m": "Lexington", "p": [{"n": "Jason Hayes", "r": "Mayor, Lexington, NC"}]}, {"m": "Midway", "p": [{"n": "John Byrum", "r": "Mayor, Midway, NC"}]}, {"m": "Thomasville", "p": [{"n": "Joe G. Bennett", "r": "Mayor, Thomasville, NC"}]}, {"m": "Wallburg", "p": [{"n": "Allen Todd", "r": "Mayor, Wallburg, NC"}]}], "slug": "davidson"}, "37059": {"county": [], "districts": {"cd": [{"d": "NC-06", "rep": "Addison P. McDowell", "w": 1.0}], "sh": [{"d": "NC House District 77", "rep": "Julia Howard", "w": 1.0}], "ss": [{"d": "NC Senate District 30", "rep": "Steve Jarvis", "w": 1.0}]}, "munis": [{"m": "Mocksville", "p": [{"n": "William J. Marklin III", "r": "Mayor, Mocksville, NC"}]}], "slug": "davie"}, "37061": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.998}], "sh": [{"d": "NC House District 4", "rep": "Jimmy Dixon", "w": 1.0}], "ss": [{"d": "NC Senate District 9", "rep": "Brent Jackson", "w": 1.0}]}, "munis": [{"m": "Wallace", "p": [{"n": "Jason Wells", "r": "Mayor, Wallace, NC"}]}], "slug": "duplin"}, "37063": {"county": [], "districts": {"cd": [{"d": "NC-04", "rep": "Valerie P. Foushee", "w": 0.999}], "sh": [{"d": "NC House District 2", "rep": "Ray Jeffers", "w": 0.446}, {"d": "NC House District 31", "rep": "Zack Hawkins", "w": 0.274}, {"d": "NC House District 29", "rep": "Vernetta Alston", "w": 0.151}, {"d": "NC House District 30", "rep": "Marcia Morey", "w": 0.129}], "ss": [{"d": "NC Senate District 22", "rep": "Sophia Chitlik", "w": 0.745}, {"d": "NC Senate District 20", "rep": "Natalie Murdock", "w": 0.255}]}, "munis": [{"m": "Durham", "p": [{"n": "Steve Schewel", "r": "Mayor, Durham, NC"}]}], "slug": "durham"}, "37065": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.999}], "sh": [{"d": "NC House District 23", "rep": "Shelly Willingham", "w": 1.0}], "ss": [{"d": "NC Senate District 5", "rep": "Kandie Smith", "w": 1.0}]}, "munis": [], "slug": "edgecombe"}, "37067": {"county": [], "districts": {"cd": [{"d": "NC-10", "rep": "Pat Harrigan", "w": 0.648}, {"d": "NC-06", "rep": "Addison P. McDowell", "w": 0.352}], "sh": [{"d": "NC House District 74", "rep": "Jeff Zenger", "w": 0.319}, {"d": "NC House District 75", "rep": "Donny Lambeth", "w": 0.291}, {"d": "NC House District 91", "rep": "Kyle Hall", "w": 0.183}, {"d": "NC House District 71", "rep": "Kanika Brown", "w": 0.111}, {"d": "NC House District 72", "rep": "Amber Baker", "w": 0.096}], "ss": [{"d": "NC Senate District 31", "rep": "Dana Jones", "w": 0.715}, {"d": "NC Senate District 32", "rep": "Paul Lowe", "w": 0.284}]}, "munis": [{"m": "Clemmons", "p": [{"n": "Michael Rogers", "r": "Mayor, Clemmons, NC"}]}, {"m": "Kernersville", "p": [{"n": "Dawn H. Morgan", "r": "Mayor, Kernersville, NC"}]}, {"m": "Lewisville", "p": [{"n": "Mike Horn", "r": "Mayor, Lewisville, NC"}]}, {"m": "Winston Salem", "p": [{"n": "Allen Joines", "r": "Mayor, Winston-Salem, NC"}]}], "slug": "forsyth"}, "37069": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.999}], "sh": [{"d": "NC House District 7", "rep": "Matthew Winslow", "w": 1.0}], "ss": [{"d": "NC Senate District 11", "rep": "Lisa Barnes", "w": 1.0}]}, "munis": [{"m": "Franklinton", "p": [{"n": "Arthur Wright", "r": "Mayor, Franklinton, NC"}]}], "slug": "franklin"}, "37071": {"county": [], "districts": {"cd": [{"d": "NC-14", "rep": "Tim Moore", "w": 1.0}], "sh": [{"d": "NC House District 108", "rep": "John Torbett", "w": 0.395}, {"d": "NC House District 110", "rep": "Kelly Hastings", "w": 0.361}, {"d": "NC House District 109", "rep": "Donnie Loftis", "w": 0.243}], "ss": [{"d": "NC Senate District 43", "rep": "Brad Overcash", "w": 0.819}, {"d": "NC Senate District 44", "rep": "Ted Alexander", "w": 0.18}]}, "munis": [{"m": "Belmont", "p": [{"n": "Jim Hefferan", "r": "Mayor, Belmont, NC"}]}, {"m": "Gastonia", "p": [{"n": "Richard Franks", "r": "Mayor, Gastonia, NC"}]}, {"m": "Stanley", "p": [{"n": "Cathy Kirkland", "r": "Mayor, Stanley, NC"}]}], "slug": "gaston"}, "37073": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 1.0}], "sh": [{"d": "NC House District 5", "rep": "Bill Ward", "w": 0.999}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.999}]}, "munis": [], "slug": "gates"}, "37075": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 120", "rep": "Karl Gillespie", "w": 0.999}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 0.999}]}, "munis": [{"m": "Fontana Dam", "p": [{"n": "Rob Hardy", "r": "Mayor, Fontana Dam, NC"}]}], "slug": "graham"}, "37077": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.942}, {"d": "NC-01", "rep": "Donald G. Davis", "w": 0.058}], "sh": [{"d": "NC House District 32", "rep": "Bryan Cohn", "w": 1.0}], "ss": [{"d": "NC Senate District 18", "rep": "Haseeb Fatmi", "w": 1.0}]}, "munis": [], "slug": "granville"}, "37079": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.997}], "sh": [{"d": "NC House District 12", "rep": "Chris Humphrey", "w": 1.0}], "ss": [{"d": "NC Senate District 4", "rep": "Buck Newton", "w": 1.0}]}, "munis": [], "slug": "greene"}, "37081": {"county": [], "districts": {"cd": [{"d": "NC-09", "rep": "Richard Hudson", "w": 0.54}, {"d": "NC-05", "rep": "Virginia Foxx", "w": 0.304}, {"d": "NC-06", "rep": "Addison P. McDowell", "w": 0.155}], "sh": [{"d": "NC House District 59", "rep": "Alan Branson", "w": 0.49}, {"d": "NC House District 62", "rep": "John Blust", "w": 0.243}, {"d": "NC House District 58", "rep": "Amos Quick", "w": 0.083}, {"d": "NC House District 57", "rep": "Tracy Clark", "w": 0.075}, {"d": "NC House District 60", "rep": "Amanda Cook", "w": 0.067}, {"d": "NC House District 61", "rep": "Pricey Harrison", "w": 0.041}], "ss": [{"d": "NC Senate District 26", "rep": "Phil Berger", "w": 0.628}, {"d": "NC Senate District 27", "rep": "Michael Garrett", "w": 0.231}, {"d": "NC Senate District 28", "rep": "Gladys Robinson", "w": 0.141}]}, "munis": [{"m": "Greensboro", "p": [{"n": "Marikay Abuzuaiter", "r": "Mayor, Greensboro, NC"}]}, {"m": "High Point", "p": [{"n": "Cyril Jefferson", "r": "Mayor, High Point, NC"}]}, {"m": "Stokesdale", "p": [{"n": "Mike Crawford", "r": "Mayor, Stokesdale, NC"}]}], "slug": "guilford"}, "37083": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 1.0}], "sh": [{"d": "NC House District 27", "rep": "Rodney Pierce", "w": 1.0}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 1.0}]}, "munis": [], "slug": "halifax"}, "37085": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.998}], "sh": [{"d": "NC House District 6", "rep": "Joe Pike", "w": 0.748}, {"d": "NC House District 53", "rep": "Howard Penny", "w": 0.252}], "ss": [{"d": "NC Senate District 12", "rep": "Jim Burgin", "w": 1.0}]}, "munis": [{"m": "Dunn", "p": [{"n": "William P. Elmore Jr.", "r": "Mayor, Dunn, NC"}]}], "slug": "harnett"}, "37087": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 1.0}], "sh": [{"d": "NC House District 118", "rep": "Mark Pless", "w": 0.999}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 0.737}, {"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 0.262}]}, "munis": [{"m": "Canton", "p": [{"n": "Zeb Smathers", "r": "Mayor, Canton, NC"}]}], "slug": "haywood"}, "37089": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.998}], "sh": [{"d": "NC House District 117", "rep": "Jennifer Balkcom", "w": 0.667}, {"d": "NC House District 113", "rep": "Jake Johnson", "w": 0.332}], "ss": [{"d": "NC Senate District 48", "rep": "Tim Moffitt", "w": 0.999}]}, "munis": [{"m": "Hendersonville", "p": [{"n": "Barbara G. Volk", "r": "Mayor, Hendersonville, NC"}]}], "slug": "henderson"}, "37091": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.996}], "sh": [{"d": "NC House District 5", "rep": "Bill Ward", "w": 0.995}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.995}]}, "munis": [], "slug": "hertford"}, "37093": {"county": [], "districts": {"cd": [{"d": "NC-09", "rep": "Richard Hudson", "w": 0.999}], "sh": [{"d": "NC House District 48", "rep": "Garland Pierce", "w": 1.0}], "ss": [{"d": "NC Senate District 24", "rep": "Danny Britt", "w": 1.0}]}, "munis": [], "slug": "hoke"}, "37095": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.515}], "sh": [{"d": "NC House District 79", "rep": "Keith Kidwell", "w": 0.483}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 0.483}]}, "munis": [], "slug": "hyde"}, "37097": {"county": [], "districts": {"cd": [{"d": "NC-10", "rep": "Pat Harrigan", "w": 0.999}], "sh": [{"d": "NC House District 84", "rep": "Jeff McNeely", "w": 0.74}, {"d": "NC House District 95", "rep": "Todd Carver", "w": 0.166}, {"d": "NC House District 89", "rep": "Mitchell Setzer", "w": 0.094}], "ss": [{"d": "NC Senate District 37", "rep": "Vickie Sawyer", "w": 1.0}]}, "munis": [{"m": "Mooresville", "p": [{"n": "Chris Carney", "r": "Mayor, Mooresville, NC"}]}, {"m": "Statesville", "p": [{"n": "Costi Kutteh", "r": "Mayor, Statesville, NC"}]}], "slug": "iredell"}, "37099": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 1.0}], "sh": [{"d": "NC House District 119", "rep": "Anna Ferguson", "w": 0.999}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "37101": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.999}], "sh": [{"d": "NC House District 28", "rep": "Larry Strickland", "w": 0.651}, {"d": "NC House District 26", "rep": "Donna White", "w": 0.254}, {"d": "NC House District 53", "rep": "Howard Penny", "w": 0.095}], "ss": [{"d": "NC Senate District 10", "rep": "Benton Sawrey", "w": 1.0}]}, "munis": [{"m": "Clayton", "p": [{"n": "Jody McLeod", "r": "Mayor, Clayton, NC"}]}, {"m": "Selma", "p": [{"n": "Byron McAllister", "r": "Mayor, Selma, NC"}]}], "slug": "johnston"}, "37103": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 1.0}], "sh": [{"d": "NC House District 12", "rep": "Chris Humphrey", "w": 1.0}], "ss": [{"d": "NC Senate District 9", "rep": "Brent Jackson", "w": 1.0}]}, "munis": [{"m": "Pollocksville", "p": [{"n": "Jay Bender", "r": "Mayor, Pollocksville, NC"}]}], "slug": "jones"}, "37105": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.992}, {"d": "NC-09", "rep": "Richard Hudson", "w": 0.008}], "sh": [{"d": "NC House District 51", "rep": "John Sauls", "w": 1.0}], "ss": [{"d": "NC Senate District 12", "rep": "Jim Burgin", "w": 1.0}]}, "munis": [], "slug": "lee"}, "37107": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.998}], "sh": [{"d": "NC House District 12", "rep": "Chris Humphrey", "w": 1.0}], "ss": [{"d": "NC Senate District 3", "rep": "Bob Brinson", "w": 1.0}]}, "munis": [], "slug": "lenoir"}, "37109": {"county": [], "districts": {"cd": [{"d": "NC-10", "rep": "Pat Harrigan", "w": 0.999}], "sh": [{"d": "NC House District 97", "rep": "Heather Rhyne", "w": 1.0}], "ss": [{"d": "NC Senate District 44", "rep": "Ted Alexander", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "37111": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.997}], "sh": [{"d": "NC House District 85", "rep": "Dudley Greene", "w": 0.826}, {"d": "NC House District 113", "rep": "Jake Johnson", "w": 0.173}], "ss": [{"d": "NC Senate District 46", "rep": "Warren Daniel", "w": 1.0}]}, "munis": [], "slug": "mcdowell"}, "37113": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 1.0}], "sh": [{"d": "NC House District 120", "rep": "Karl Gillespie", "w": 0.999}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 1.0}]}, "munis": [], "slug": "macon"}, "37115": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.998}], "sh": [{"d": "NC House District 118", "rep": "Mark Pless", "w": 0.999}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 0.999}]}, "munis": [{"m": "Mars Hill", "p": [{"n": "John L. Chandler", "r": "Mayor, Mars Hill, NC"}]}], "slug": "madison"}, "37117": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 1.0}], "sh": [{"d": "NC House District 23", "rep": "Shelly Willingham", "w": 1.0}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 1.0}]}, "munis": [], "slug": "martin"}, "37119": {"county": [], "districts": {"cd": [{"d": "NC-12", "rep": "Alma S. Adams", "w": 0.502}, {"d": "NC-14", "rep": "Tim Moore", "w": 0.361}, {"d": "NC-08", "rep": "Mark Harris", "w": 0.136}], "sh": [{"d": "NC House District 92", "rep": "Terry Brown", "w": 0.131}, {"d": "NC House District 101", "rep": "Carolyn Logan", "w": 0.127}, {"d": "NC House District 98", "rep": "Beth Gardner Helfrich", "w": 0.123}, {"d": "NC House District 105", "rep": "Tricia Cotham", "w": 0.111}, {"d": "NC House District 106", "rep": "Carla Cunningham", "w": 0.074}, {"d": "NC House District 107", "rep": "Aisha Dew", "w": 0.069}, {"d": "NC House District 112", "rep": "Jordan Lopez", "w": 0.065}, {"d": "NC House District 103", "rep": "Laura Budd", "w": 0.059}, {"d": "NC House District 99", "rep": "Nasif Majeed", "w": 0.052}, {"d": "NC House District 100", "rep": "Julia Greenfield", "w": 0.052}, {"d": "NC House District 104", "rep": "Brandon Lofton", "w": 0.05}, {"d": "NC House District 88", "rep": "Mary Belk", "w": 0.048}, {"d": "NC House District 102", "rep": "Becky Carney", "w": 0.038}], "ss": [{"d": "NC Senate District 38", "rep": "Mujtaba Mohammed", "w": 0.247}, {"d": "NC Senate District 39", "rep": "DeAndrea Salvador", "w": 0.208}, {"d": "NC Senate District 42", "rep": "Woodson Bradley", "w": 0.193}, {"d": "NC Senate District 41", "rep": "Caleb Theodros", "w": 0.163}, {"d": "NC Senate District 40", "rep": "Joyce Waddell", "w": 0.135}, {"d": "NC Senate District 37", "rep": "Vickie Sawyer", "w": 0.053}]}, "munis": [{"m": "Charlotte", "p": [{"n": "Vi Lyles", "r": "Mayor, Charlotte, NC"}]}, {"m": "Davidson", "p": [{"n": "Rusty Knox", "r": "Mayor, Davidson, NC"}]}, {"m": "Huntersville", "p": [{"n": "Christy Clark", "r": "Mayor, Huntersville, NC"}]}], "slug": "mecklenburg"}, "37121": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 85", "rep": "Dudley Greene", "w": 0.999}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 0.999}]}, "munis": [{"m": "Spruce Pine", "p": [{"n": "Phillip Hise", "r": "Mayor, Spruce Pine, NC"}]}], "slug": "mitchell"}, "37123": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 1.0}], "sh": [{"d": "NC House District 67", "rep": "Cody Huneycutt", "w": 1.0}], "ss": [{"d": "NC Senate District 29", "rep": "Dave Craven", "w": 1.0}]}, "munis": [], "slug": "montgomery"}, "37125": {"county": [], "districts": {"cd": [{"d": "NC-09", "rep": "Richard Hudson", "w": 0.995}], "sh": [{"d": "NC House District 78", "rep": "Neal Jackson", "w": 0.471}, {"d": "NC House District 51", "rep": "John Sauls", "w": 0.328}, {"d": "NC House District 52", "rep": "Ben Moss", "w": 0.2}], "ss": [{"d": "NC Senate District 21", "rep": "Tom McInnis", "w": 1.0}]}, "munis": [{"m": "Pinehurst", "p": [{"n": "Patrick Pizzella", "r": "Mayor, Pinehurst, NC"}]}, {"m": "Southern Pines", "p": [{"n": "Taylor Clement", "r": "Mayor, Southern Pines, NC"}]}], "slug": "moore"}, "37127": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.999}], "sh": [{"d": "NC House District 25", "rep": "Allen Chesser", "w": 0.965}, {"d": "NC House District 24", "rep": "Dante Pittman", "w": 0.035}], "ss": [{"d": "NC Senate District 11", "rep": "Lisa Barnes", "w": 1.0}]}, "munis": [{"m": "Rocky Mount", "p": [{"n": "Sandy Roberson", "r": "Mayor, Rocky Mount, NC"}]}], "slug": "nash"}, "37129": {"county": [], "districts": {"cd": [{"d": "NC-07", "rep": "David Rouzer", "w": 0.664}], "sh": [{"d": "NC House District 20", "rep": "Ted Davis", "w": 0.408}, {"d": "NC House District 19", "rep": "Charlie Miller", "w": 0.137}, {"d": "NC House District 18", "rep": "Deb Butler", "w": 0.121}], "ss": [{"d": "NC Senate District 7", "rep": "Michael Lee", "w": 0.636}, {"d": "NC Senate District 8", "rep": "Bill Rabon", "w": 0.031}]}, "munis": [{"m": "Carolina Beach", "p": [{"n": "Lynn Barbee", "r": "Mayor, Carolina Beach, NC"}]}, {"m": "Kure Beach", "p": [{"n": "Allen Oliver", "r": "Mayor, Kure Beach, NC"}]}, {"m": "Wilmington", "p": [{"n": "Bill Saffo", "r": "Mayor, Wilmington, NC"}]}, {"m": "Wrightsville Beach", "p": [{"n": "Darryl Mills", "r": "Mayor, Wrightsville Beach, NC"}]}], "slug": "new-hanover"}, "37131": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 1.0}], "sh": [{"d": "NC House District 27", "rep": "Rodney Pierce", "w": 1.0}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 1.0}]}, "munis": [], "slug": "northampton"}, "37133": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.899}], "sh": [{"d": "NC House District 14", "rep": "Wyatt Gable", "w": 0.353}, {"d": "NC House District 15", "rep": "Phil Shepard", "w": 0.338}, {"d": "NC House District 16", "rep": "Carson Smith", "w": 0.195}], "ss": [{"d": "NC Senate District 6", "rep": "Michael Lazzara", "w": 0.885}]}, "munis": [{"m": "Jacksonville", "p": [{"n": "Sammy Phillips", "r": "Mayor, Jacksonville, NC"}]}], "slug": "onslow"}, "37135": {"county": [], "districts": {"cd": [{"d": "NC-04", "rep": "Valerie P. Foushee", "w": 0.999}], "sh": [{"d": "NC House District 50", "rep": "Renée Price", "w": 0.86}, {"d": "NC House District 56", "rep": "Allen Buansi", "w": 0.14}], "ss": [{"d": "NC Senate District 23", "rep": "Jonah Garson", "w": 1.0}]}, "munis": [{"m": "Carrboro", "p": [{"n": "Barbara Foushee", "r": "Mayor, Carrboro, NC"}]}, {"m": "Chapel Hill", "p": [{"n": "Jessica Anderson", "r": "Mayor, Chapel Hill, NC"}]}], "slug": "orange"}, "37137": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.689}], "sh": [{"d": "NC House District 79", "rep": "Keith Kidwell", "w": 0.649}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 0.649}]}, "munis": [], "slug": "pamlico"}, "37139": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.805}], "sh": [{"d": "NC House District 5", "rep": "Bill Ward", "w": 0.8}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.8}]}, "munis": [{"m": "Elizabeth City", "p": [{"n": "E. Kirk Rivers", "r": "Mayor, Elizabeth City, NC"}]}], "slug": "pasquotank"}, "37141": {"county": [], "districts": {"cd": [{"d": "NC-07", "rep": "David Rouzer", "w": 0.943}], "sh": [{"d": "NC House District 16", "rep": "Carson Smith", "w": 0.944}], "ss": [{"d": "NC Senate District 9", "rep": "Brent Jackson", "w": 0.944}]}, "munis": [], "slug": "pender"}, "37143": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.777}], "sh": [{"d": "NC House District 1", "rep": "Ed Goodwin", "w": 0.766}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.766}]}, "munis": [], "slug": "perquimans"}, "37145": {"county": [], "districts": {"cd": [{"d": "NC-13", "rep": "Brad Knott", "w": 0.999}], "sh": [{"d": "NC House District 2", "rep": "Ray Jeffers", "w": 1.0}], "ss": [{"d": "NC Senate District 23", "rep": "Jonah Garson", "w": 1.0}]}, "munis": [], "slug": "person"}, "37147": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.997}], "sh": [{"d": "NC House District 9", "rep": "Tim Reeder", "w": 0.596}, {"d": "NC House District 8", "rep": "Gloristine Brown", "w": 0.403}], "ss": [{"d": "NC Senate District 5", "rep": "Kandie Smith", "w": 1.0}]}, "munis": [{"m": "Greenville", "p": [{"n": "P.J. Connelly", "r": "Mayor, Greenville, NC"}]}], "slug": "pitt"}, "37149": {"county": [], "districts": {"cd": [{"d": "NC-14", "rep": "Tim Moore", "w": 0.52}, {"d": "NC-11", "rep": "Chuck Edwards", "w": 0.48}], "sh": [{"d": "NC House District 113", "rep": "Jake Johnson", "w": 0.999}], "ss": [{"d": "NC Senate District 48", "rep": "Tim Moffitt", "w": 0.999}]}, "munis": [], "slug": "polk"}, "37151": {"county": [], "districts": {"cd": [{"d": "NC-09", "rep": "Richard Hudson", "w": 1.0}], "sh": [{"d": "NC House District 78", "rep": "Neal Jackson", "w": 0.628}, {"d": "NC House District 70", "rep": "Brian Biggs", "w": 0.303}, {"d": "NC House District 54", "rep": "Robert Reives", "w": 0.069}], "ss": [{"d": "NC Senate District 29", "rep": "Dave Craven", "w": 0.769}, {"d": "NC Senate District 25", "rep": "Amy Galey", "w": 0.231}]}, "munis": [{"m": "Asheboro", "p": [{"n": "David Smith", "r": "Mayor, Asheboro, NC"}]}, {"m": "Ramseur", "p": [{"n": "Hampton Spivey", "r": "Mayor, Ramseur, NC"}]}], "slug": "randolph"}, "37153": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 0.998}], "sh": [{"d": "NC House District 52", "rep": "Ben Moss", "w": 1.0}], "ss": [{"d": "NC Senate District 29", "rep": "Dave Craven", "w": 1.0}]}, "munis": [{"m": "Rockingham", "p": [{"n": "John Hutchinson", "r": "Mayor, Rockingham, NC"}]}], "slug": "richmond"}, "37155": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 0.558}, {"d": "NC-07", "rep": "David Rouzer", "w": 0.442}], "sh": [{"d": "NC House District 47", "rep": "John Lowery", "w": 0.597}, {"d": "NC House District 46", "rep": "Brenden Jones", "w": 0.403}], "ss": [{"d": "NC Senate District 24", "rep": "Danny Britt", "w": 1.0}]}, "munis": [{"m": "Lumberton", "p": [{"n": "Bruce Davis", "r": "Mayor, Lumberton, NC"}]}], "slug": "robeson"}, "37157": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 1.0}], "sh": [{"d": "NC House District 65", "rep": "Reece Pyrtle", "w": 1.0}], "ss": [{"d": "NC Senate District 26", "rep": "Phil Berger", "w": 1.0}]}, "munis": [{"m": "Eden", "p": [{"n": "Neville Hall", "r": "Mayor, Eden, NC"}]}], "slug": "rockingham"}, "37159": {"county": [], "districts": {"cd": [{"d": "NC-06", "rep": "Addison P. McDowell", "w": 1.0}], "sh": [{"d": "NC House District 76", "rep": "Harry Warren", "w": 0.5}, {"d": "NC House District 77", "rep": "Julia Howard", "w": 0.266}, {"d": "NC House District 83", "rep": "Grant Campbell", "w": 0.234}], "ss": [{"d": "NC Senate District 33", "rep": "Carl Ford", "w": 1.0}]}, "munis": [{"m": "Salisbury", "p": [{"n": "Karen K. Alexander", "r": "Mayor, Salisbury, NC"}]}], "slug": "rowan"}, "37161": {"county": [], "districts": {"cd": [{"d": "NC-14", "rep": "Tim Moore", "w": 0.998}], "sh": [{"d": "NC House District 113", "rep": "Jake Johnson", "w": 0.545}, {"d": "NC House District 111", "rep": "Paul Scott", "w": 0.455}], "ss": [{"d": "NC Senate District 48", "rep": "Tim Moffitt", "w": 1.0}]}, "munis": [], "slug": "rutherford"}, "37163": {"county": [], "districts": {"cd": [{"d": "NC-03", "rep": "Gregory F. Murphy", "w": 0.811}, {"d": "NC-07", "rep": "David Rouzer", "w": 0.189}], "sh": [{"d": "NC House District 22", "rep": "William Brisson", "w": 1.0}], "ss": [{"d": "NC Senate District 9", "rep": "Brent Jackson", "w": 0.959}, {"d": "NC Senate District 12", "rep": "Jim Burgin", "w": 0.041}]}, "munis": [{"m": "Clinton", "p": [{"n": "Lew Starling", "r": "Mayor, Clinton, NC"}]}], "slug": "sampson"}, "37165": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 0.998}], "sh": [{"d": "NC House District 48", "rep": "Garland Pierce", "w": 0.999}], "ss": [{"d": "NC Senate District 24", "rep": "Danny Britt", "w": 0.999}]}, "munis": [{"m": "Laurinburg", "p": [{"n": "Jim Willis", "r": "Mayor, Laurinburg, NC"}]}], "slug": "scotland"}, "37167": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 1.0}], "sh": [{"d": "NC House District 67", "rep": "Cody Huneycutt", "w": 1.0}], "ss": [{"d": "NC Senate District 33", "rep": "Carl Ford", "w": 1.0}]}, "munis": [{"m": "Albemarle", "p": [{"n": "Q131798851", "r": "Mayor, Albemarle, NC"}]}], "slug": "stanly"}, "37169": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 1.0}], "sh": [{"d": "NC House District 91", "rep": "Kyle Hall", "w": 1.0}], "ss": [{"d": "NC Senate District 31", "rep": "Dana Jones", "w": 1.0}]}, "munis": [], "slug": "stokes"}, "37171": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 0.998}], "sh": [{"d": "NC House District 90", "rep": "Sarah Stevens", "w": 0.999}], "ss": [{"d": "NC Senate District 36", "rep": "Eddie Settle", "w": 1.0}]}, "munis": [{"m": "Mount Airy", "p": [{"n": "Jon Cawley", "r": "Mayor, Mount Airy, NC"}]}], "slug": "surry"}, "37173": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 119", "rep": "Anna Ferguson", "w": 0.998}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 0.999}]}, "munis": [], "slug": "swain"}, "37175": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 0.999}], "sh": [{"d": "NC House District 119", "rep": "Anna Ferguson", "w": 0.999}], "ss": [{"d": "NC Senate District 50", "rep": "Kevin Corbin", "w": 0.999}]}, "munis": [], "slug": "transylvania"}, "37177": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.694}], "sh": [{"d": "NC House District 1", "rep": "Ed Goodwin", "w": 0.685}], "ss": [{"d": "NC Senate District 1", "rep": "Bobby Hanig", "w": 0.685}]}, "munis": [], "slug": "tyrrell"}, "37179": {"county": [], "districts": {"cd": [{"d": "NC-08", "rep": "Mark Harris", "w": 1.0}], "sh": [{"d": "NC House District 55", "rep": "Mark Brody", "w": 0.585}, {"d": "NC House District 69", "rep": "Dean Arp", "w": 0.221}, {"d": "NC House District 68", "rep": "David Willis", "w": 0.194}], "ss": [{"d": "NC Senate District 35", "rep": "Todd Johnson", "w": 0.717}, {"d": "NC Senate District 29", "rep": "Dave Craven", "w": 0.283}]}, "munis": [{"m": "Wesley Chapel", "p": [{"n": "Amanda Fuller", "r": "Mayor, Wesley Chapel, NC"}]}], "slug": "union"}, "37181": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.998}], "sh": [{"d": "NC House District 32", "rep": "Bryan Cohn", "w": 0.594}, {"d": "NC House District 7", "rep": "Matthew Winslow", "w": 0.406}], "ss": [{"d": "NC Senate District 11", "rep": "Lisa Barnes", "w": 1.0}]}, "munis": [{"m": "Henderson", "p": [{"n": "Melissa Elliott", "r": "Mayor, Henderson, NC"}]}], "slug": "vance"}, "37183": {"county": [], "districts": {"cd": [{"d": "NC-02", "rep": "Deborah K. Ross", "w": 0.48}, {"d": "NC-13", "rep": "Brad Knott", "w": 0.323}, {"d": "NC-04", "rep": "Valerie P. Foushee", "w": 0.197}], "sh": [{"d": "NC House District 35", "rep": "Mike Schietzelt", "w": 0.193}, {"d": "NC House District 39", "rep": "James Roberson", "w": 0.141}, {"d": "NC House District 37", "rep": "Erin Paré", "w": 0.134}, {"d": "NC House District 33", "rep": "Monika Johnson-Hostler", "w": 0.088}, {"d": "NC House District 21", "rep": "Ya Liu", "w": 0.087}, {"d": "NC House District 36", "rep": "Julie von Haefen", "w": 0.073}, {"d": "NC House District 41", "rep": "Maria Cervania", "w": 0.055}, {"d": "NC House District 40", "rep": "Phil Rubin", "w": 0.048}, {"d": "NC House District 66", "rep": "Sarah Crawford", "w": 0.043}, {"d": "NC House District 49", "rep": "Cynthia Ball", "w": 0.037}, {"d": "NC House District 38", "rep": "Abe Jones", "w": 0.036}, {"d": "NC House District 11", "rep": "Allison Dahle", "w": 0.033}, {"d": "NC House District 34", "rep": "Tim Longest", "w": 0.032}], "ss": [{"d": "NC Senate District 13", "rep": "Lisa Grafstein", "w": 0.302}, {"d": "NC Senate District 18", "rep": "Haseeb Fatmi", "w": 0.264}, {"d": "NC Senate District 14", "rep": "Dan Blue", "w": 0.155}, {"d": "NC Senate District 17", "rep": "Sydney Batch", "w": 0.104}, {"d": "NC Senate District 16", "rep": "Gale Adcock", "w": 0.102}, {"d": "NC Senate District 15", "rep": "Jay Chaudhuri", "w": 0.073}]}, "munis": [{"m": "Apex", "p": [{"n": "Jacques Gilbert", "r": "Mayor, Apex, NC"}]}, {"m": "Cary", "p": [{"n": "Harold Weinbrecht", "r": "Mayor, Cary, NC"}]}, {"m": "Garner", "p": [{"n": "Buddy Gupton", "r": "Mayor, Garner, NC"}]}, {"m": "Knightdale", "p": [{"n": "Jessica Day", "r": "Mayor, Knightdale, NC"}]}, {"m": "Raleigh", "p": [{"n": "Nancy McFarlane", "r": "Mayor, Raleigh, NC"}]}, {"m": "Wake Forest", "p": [{"n": "Vivian A. Jones", "r": "Mayor, Wake Forest, NC"}]}, {"m": "Zebulon", "p": [{"n": "Glenn L. York", "r": "Mayor, Zebulon, NC"}]}], "slug": "wake"}, "37185": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.998}], "sh": [{"d": "NC House District 27", "rep": "Rodney Pierce", "w": 1.0}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 1.0}]}, "munis": [], "slug": "warren"}, "37187": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.892}], "sh": [{"d": "NC House District 1", "rep": "Ed Goodwin", "w": 0.888}], "ss": [{"d": "NC Senate District 2", "rep": "Norman Sanderson", "w": 0.888}]}, "munis": [], "slug": "washington"}, "37189": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 0.997}], "sh": [{"d": "NC House District 93", "rep": "Ray Pickett", "w": 0.911}, {"d": "NC House District 87", "rep": "Destin Hall", "w": 0.088}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 0.999}]}, "munis": [{"m": "Boone", "p": [{"n": "Tim Futrelle", "r": "Mayor, Boone, NC"}]}], "slug": "watauga"}, "37191": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.998}], "sh": [{"d": "NC House District 10", "rep": "John Bell", "w": 0.541}, {"d": "NC House District 4", "rep": "Jimmy Dixon", "w": 0.459}], "ss": [{"d": "NC Senate District 4", "rep": "Buck Newton", "w": 1.0}]}, "munis": [{"m": "Goldsboro", "p": [{"n": "Charles Gaylor", "r": "Mayor, Goldsboro, NC"}]}], "slug": "wayne"}, "37193": {"county": [], "districts": {"cd": [{"d": "NC-05", "rep": "Virginia Foxx", "w": 1.0}], "sh": [{"d": "NC House District 94", "rep": "Blair Eddins", "w": 0.723}, {"d": "NC House District 90", "rep": "Sarah Stevens", "w": 0.277}], "ss": [{"d": "NC Senate District 36", "rep": "Eddie Settle", "w": 1.0}]}, "munis": [], "slug": "wilkes"}, "37195": {"county": [], "districts": {"cd": [{"d": "NC-01", "rep": "Donald G. Davis", "w": 0.999}], "sh": [{"d": "NC House District 24", "rep": "Dante Pittman", "w": 1.0}], "ss": [{"d": "NC Senate District 4", "rep": "Buck Newton", "w": 1.0}]}, "munis": [{"m": "Wilson", "p": [{"n": "Carlton L. Stevens", "r": "Mayor, Wilson, NC"}]}], "slug": "wilson"}, "37197": {"county": [], "districts": {"cd": [{"d": "NC-10", "rep": "Pat Harrigan", "w": 0.995}, {"d": "NC-05", "rep": "Virginia Foxx", "w": 0.005}], "sh": [{"d": "NC House District 77", "rep": "Julia Howard", "w": 1.0}], "ss": [{"d": "NC Senate District 36", "rep": "Eddie Settle", "w": 1.0}]}, "munis": [{"m": "Yadkinville", "p": [{"n": "Eddie Norman", "r": "Mayor, Yadkinville, NC"}]}], "slug": "yadkin"}, "37199": {"county": [], "districts": {"cd": [{"d": "NC-11", "rep": "Chuck Edwards", "w": 1.0}], "sh": [{"d": "NC House District 85", "rep": "Dudley Greene", "w": 1.0}], "ss": [{"d": "NC Senate District 47", "rep": "Ralph Hise", "w": 1.0}]}, "munis": [], "slug": "yancey"}, "38001": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 1.0}], "ss": [{"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 1.0}]}, "munis": [], "slug": "adams"}, "38003": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 24", "rep": "Dan Johnston, Dwight Kiefert", "w": 1.0}], "ss": [{"d": "ND Senate District 24", "rep": "Mike Wobbema", "w": 1.0}]}, "munis": [], "slug": "barnes"}, "38005": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 9", "rep": "Collette Brown, Jayme Davis", "w": 0.644}, {"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 0.355}], "ss": [{"d": "ND Senate District 9", "rep": "Richard Marcellais", "w": 0.644}, {"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 0.355}]}, "munis": [], "slug": "benson"}, "38007": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 1.0}], "ss": [{"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 1.0}]}, "munis": [], "slug": "billings"}, "38009": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 6", "rep": "Dan Vollmer, Dick Anderson", "w": 1.0}], "ss": [{"d": "ND Senate District 6", "rep": "Paul Thomas", "w": 1.0}]}, "munis": [], "slug": "bottineau"}, "38011": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 1.0}], "ss": [{"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 1.0}]}, "munis": [], "slug": "bowman"}, "38013": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 2", "rep": "Bert Anderson, Donald Longmuir", "w": 1.0}], "ss": [{"d": "ND Senate District 2", "rep": "Mark Enget", "w": 1.0}]}, "munis": [], "slug": "burke"}, "38015": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 0.58}, {"d": "ND House District 8", "rep": "Mike Berg, SuAnn Olson", "w": 0.36}, {"d": "ND House District 30", "rep": "Glenn Bosch, Mike Nathe", "w": 0.032}, {"d": "ND House District 7", "rep": "Jason Dockter, Matt Heilman", "w": 0.014}, {"d": "ND House District 47", "rep": "Larry Klemin, Mike Motschenbacher", "w": 0.007}], "ss": [{"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 0.58}, {"d": "ND Senate District 8", "rep": "Jeff Magrum", "w": 0.36}, {"d": "ND Senate District 30", "rep": "Diane Larson", "w": 0.032}, {"d": "ND Senate District 7", "rep": "Michelle Axtman", "w": 0.014}, {"d": "ND Senate District 47", "rep": "Mike Dwyer", "w": 0.007}]}, "munis": [{"m": "Bismarck", "p": [{"n": "Mike Schmitz", "r": "Mayor, Bismarck, ND"}]}], "slug": "burleigh"}, "38017": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 0.999}], "sh": [{"d": "ND House District 22", "rep": "Brandy Pyle, Jonathan Warrey", "w": 0.793}, {"d": "ND House District 45", "rep": "Carrie McLeod, Scott Wagner", "w": 0.14}, {"d": "ND House District 27", "rep": "Greg Stemen, T.J. Brown", "w": 0.043}], "ss": [{"d": "ND Senate District 22", "rep": "Mark Weber", "w": 0.793}, {"d": "ND Senate District 45", "rep": "Ron Sorvaag", "w": 0.14}, {"d": "ND Senate District 27", "rep": "Kristin Roers", "w": 0.043}]}, "munis": [{"m": "Fargo", "p": [{"n": "Tim Mahoney", "r": "Mayor, Fargo, ND"}]}], "slug": "cass"}, "38019": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 15", "rep": "Donna Henderson, Kathy Frelich", "w": 0.75}, {"d": "ND House District 19", "rep": "Dave Monson, Karen Anderson", "w": 0.25}], "ss": [{"d": "ND Senate District 15", "rep": "Kent Weston", "w": 0.75}, {"d": "ND Senate District 19", "rep": "Janne Myrdal", "w": 0.25}]}, "munis": [], "slug": "cavalier"}, "38021": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 28", "rep": "Jim Grueneich, Mike Brandenburg", "w": 1.0}], "ss": [{"d": "ND Senate District 28", "rep": "Robert Erbele", "w": 1.0}]}, "munis": [], "slug": "dickey"}, "38023": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 2", "rep": "Bert Anderson, Donald Longmuir", "w": 1.0}], "ss": [{"d": "ND Senate District 2", "rep": "Mark Enget", "w": 1.0}]}, "munis": [], "slug": "divide"}, "38025": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 26", "rep": "Kelby Timmons, Roger Maki", "w": 0.59}, {"d": "ND House District 4A", "rep": "Lisa Finley-DeVille", "w": 0.202}, {"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 0.185}, {"d": "ND House District 36", "rep": "Dori Hauck, Ty Dressler", "w": 0.023}], "ss": [{"d": "ND Senate District 26", "rep": "Dale Patten", "w": 0.59}, {"d": "ND Senate District 4", "rep": "Chuck Walen", "w": 0.202}, {"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 0.185}, {"d": "ND Senate District 36", "rep": "Desiree Van Oosting", "w": 0.023}]}, "munis": [], "slug": "dunn"}, "38027": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 0.874}, {"d": "ND House District 9", "rep": "Collette Brown, Jayme Davis", "w": 0.126}], "ss": [{"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 0.874}, {"d": "ND Senate District 9", "rep": "Richard Marcellais", "w": 0.126}]}, "munis": [], "slug": "eddy"}, "38029": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 8", "rep": "Mike Berg, SuAnn Olson", "w": 1.0}], "ss": [{"d": "ND Senate District 8", "rep": "Jeff Magrum", "w": 1.0}]}, "munis": [], "slug": "emmons"}, "38031": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 29", "rep": "Craig Headland, Don Vigesaa", "w": 1.0}], "ss": [{"d": "ND Senate District 29", "rep": "Terry Wanzek", "w": 1.0}]}, "munis": [], "slug": "foster"}, "38033": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 1.0}], "ss": [{"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 1.0}]}, "munis": [], "slug": "golden-valley"}, "38035": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 0.999}], "sh": [{"d": "ND House District 20", "rep": "Dave Rustebakke", "w": 0.824}, {"d": "ND House District 42", "rep": "Doug Osowski, Dustin McNally", "w": 0.094}, {"d": "ND House District 18", "rep": "Nels Christianson, Steve Vetter", "w": 0.05}, {"d": "ND House District 17", "rep": "Landon Bahl, Mark Sanford", "w": 0.029}], "ss": [{"d": "ND Senate District 20", "rep": "Randy Lemm", "w": 0.824}, {"d": "ND Senate District 42", "rep": "Claire Cory", "w": 0.094}, {"d": "ND Senate District 18", "rep": "Scott Meyer", "w": 0.05}, {"d": "ND Senate District 17", "rep": "Jonathan Sickler", "w": 0.029}]}, "munis": [], "slug": "grand-forks"}, "38037": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 31", "rep": "Dawson Holle, Karen Rohr", "w": 1.0}], "ss": [{"d": "ND Senate District 31", "rep": "Don Schaible", "w": 1.0}]}, "munis": [], "slug": "grant"}, "38039": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 29", "rep": "Craig Headland, Don Vigesaa", "w": 1.0}], "ss": [{"d": "ND Senate District 29", "rep": "Terry Wanzek", "w": 1.0}]}, "munis": [], "slug": "griggs"}, "38041": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 31", "rep": "Dawson Holle, Karen Rohr", "w": 0.505}, {"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 0.495}], "ss": [{"d": "ND Senate District 31", "rep": "Don Schaible", "w": 0.505}, {"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 0.495}]}, "munis": [], "slug": "hettinger"}, "38043": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 1.0}], "ss": [{"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 1.0}]}, "munis": [], "slug": "kidder"}, "38045": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 28", "rep": "Jim Grueneich, Mike Brandenburg", "w": 1.0}], "ss": [{"d": "ND Senate District 28", "rep": "Robert Erbele", "w": 1.0}]}, "munis": [], "slug": "lamoure"}, "38047": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 28", "rep": "Jim Grueneich, Mike Brandenburg", "w": 1.0}], "ss": [{"d": "ND Senate District 28", "rep": "Robert Erbele", "w": 1.0}]}, "munis": [], "slug": "logan"}, "38049": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 6", "rep": "Dan Vollmer, Dick Anderson", "w": 1.0}], "ss": [{"d": "ND Senate District 6", "rep": "Paul Thomas", "w": 1.0}]}, "munis": [], "slug": "mchenry"}, "38051": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 28", "rep": "Jim Grueneich, Mike Brandenburg", "w": 1.0}], "ss": [{"d": "ND Senate District 28", "rep": "Robert Erbele", "w": 1.0}]}, "munis": [{"m": "Ashley", "p": [{"n": "Erich Schock", "r": "Mayor, Ashley, ND"}]}], "slug": "mcintosh"}, "38053": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 26", "rep": "Kelby Timmons, Roger Maki", "w": 0.943}, {"d": "ND House District 4A", "rep": "Lisa Finley-DeVille", "w": 0.057}], "ss": [{"d": "ND Senate District 26", "rep": "Dale Patten", "w": 0.943}, {"d": "ND Senate District 4", "rep": "Chuck Walen", "w": 0.057}]}, "munis": [], "slug": "mckenzie"}, "38055": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 6", "rep": "Dan Vollmer, Dick Anderson", "w": 0.432}, {"d": "ND House District 4B", "rep": "Clayton Fegley", "w": 0.211}, {"d": "ND House District 4A", "rep": "Lisa Finley-DeVille", "w": 0.205}, {"d": "ND House District 33", "rep": "Anna Novak, Bill Tveit", "w": 0.152}], "ss": [{"d": "ND Senate District 6", "rep": "Paul Thomas", "w": 0.432}, {"d": "ND Senate District 4", "rep": "Chuck Walen", "w": 0.415}, {"d": "ND Senate District 33", "rep": "Keith Boehm", "w": 0.152}]}, "munis": [], "slug": "mclean"}, "38057": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 33", "rep": "Anna Novak, Bill Tveit", "w": 0.923}, {"d": "ND House District 4A", "rep": "Lisa Finley-DeVille", "w": 0.077}], "ss": [{"d": "ND Senate District 33", "rep": "Keith Boehm", "w": 0.923}, {"d": "ND Senate District 4", "rep": "Chuck Walen", "w": 0.077}]}, "munis": [], "slug": "mercer"}, "38059": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 31", "rep": "Dawson Holle, Karen Rohr", "w": 0.491}, {"d": "ND House District 36", "rep": "Dori Hauck, Ty Dressler", "w": 0.427}, {"d": "ND House District 33", "rep": "Anna Novak, Bill Tveit", "w": 0.077}, {"d": "ND House District 34", "rep": "Nathan Toman, Todd Porter", "w": 0.005}], "ss": [{"d": "ND Senate District 31", "rep": "Don Schaible", "w": 0.491}, {"d": "ND Senate District 36", "rep": "Desiree Van Oosting", "w": 0.427}, {"d": "ND Senate District 33", "rep": "Keith Boehm", "w": 0.077}, {"d": "ND Senate District 34", "rep": "Justin Gerhardt", "w": 0.005}]}, "munis": [], "slug": "morton"}, "38061": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 4B", "rep": "Clayton Fegley", "w": 0.561}, {"d": "ND House District 2", "rep": "Bert Anderson, Donald Longmuir", "w": 0.225}, {"d": "ND House District 4A", "rep": "Lisa Finley-DeVille", "w": 0.214}], "ss": [{"d": "ND Senate District 4", "rep": "Chuck Walen", "w": 0.775}, {"d": "ND Senate District 2", "rep": "Mark Enget", "w": 0.225}]}, "munis": [], "slug": "mountrail"}, "38063": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 29", "rep": "Craig Headland, Don Vigesaa", "w": 0.999}], "ss": [{"d": "ND Senate District 29", "rep": "Terry Wanzek", "w": 0.999}]}, "munis": [], "slug": "nelson"}, "38065": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 33", "rep": "Anna Novak, Bill Tveit", "w": 1.0}], "ss": [{"d": "ND Senate District 33", "rep": "Keith Boehm", "w": 1.0}]}, "munis": [], "slug": "oliver"}, "38067": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 0.998}], "sh": [{"d": "ND House District 19", "rep": "Dave Monson, Karen Anderson", "w": 1.0}], "ss": [{"d": "ND Senate District 19", "rep": "Janne Myrdal", "w": 1.0}]}, "munis": [], "slug": "pembina"}, "38069": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 0.91}, {"d": "ND House District 9", "rep": "Collette Brown, Jayme Davis", "w": 0.09}], "ss": [{"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 0.91}, {"d": "ND Senate District 9", "rep": "Richard Marcellais", "w": 0.09}]}, "munis": [], "slug": "pierce"}, "38071": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 15", "rep": "Donna Henderson, Kathy Frelich", "w": 0.997}], "ss": [{"d": "ND Senate District 15", "rep": "Kent Weston", "w": 0.997}]}, "munis": [], "slug": "ramsey"}, "38073": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 24", "rep": "Dan Johnston, Dwight Kiefert", "w": 1.0}], "ss": [{"d": "ND Senate District 24", "rep": "Mike Wobbema", "w": 1.0}]}, "munis": [], "slug": "ransom"}, "38075": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 6", "rep": "Dan Vollmer, Dick Anderson", "w": 1.0}], "ss": [{"d": "ND Senate District 6", "rep": "Paul Thomas", "w": 1.0}]}, "munis": [], "slug": "renville"}, "38077": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 0.999}], "sh": [{"d": "ND House District 25", "rep": "Alisa Mitskog, Kathy Skroch", "w": 1.0}], "ss": [{"d": "ND Senate District 25", "rep": "Larry Luick", "w": 1.0}]}, "munis": [], "slug": "richland"}, "38079": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 9", "rep": "Collette Brown, Jayme Davis", "w": 1.0}], "ss": [{"d": "ND Senate District 9", "rep": "Richard Marcellais", "w": 1.0}]}, "munis": [], "slug": "rolette"}, "38081": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 28", "rep": "Jim Grueneich, Mike Brandenburg", "w": 0.924}, {"d": "ND House District 25", "rep": "Alisa Mitskog, Kathy Skroch", "w": 0.076}], "ss": [{"d": "ND Senate District 28", "rep": "Robert Erbele", "w": 0.924}, {"d": "ND Senate District 25", "rep": "Larry Luick", "w": 0.076}]}, "munis": [], "slug": "sargent"}, "38083": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 1.0}], "ss": [{"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 1.0}]}, "munis": [], "slug": "sheridan"}, "38085": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 31", "rep": "Dawson Holle, Karen Rohr", "w": 1.0}], "ss": [{"d": "ND Senate District 31", "rep": "Don Schaible", "w": 1.0}]}, "munis": [], "slug": "sioux"}, "38087": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 1.0}], "ss": [{"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 1.0}]}, "munis": [], "slug": "slope"}, "38089": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 39", "rep": "Keith Kempenich, Mike Schatz", "w": 0.503}, {"d": "ND House District 36", "rep": "Dori Hauck, Ty Dressler", "w": 0.49}, {"d": "ND House District 37", "rep": "Mike Lefor, Vicky Steiner", "w": 0.006}], "ss": [{"d": "ND Senate District 39", "rep": "Greg Kessel", "w": 0.503}, {"d": "ND Senate District 36", "rep": "Desiree Van Oosting", "w": 0.49}, {"d": "ND Senate District 37", "rep": "Dean Rummel", "w": 0.006}]}, "munis": [{"m": "Dickinson", "p": [{"n": "Scott Decker", "r": "Mayor, Dickinson, ND"}]}], "slug": "stark"}, "38091": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 29", "rep": "Craig Headland, Don Vigesaa", "w": 1.0}], "ss": [{"d": "ND Senate District 29", "rep": "Terry Wanzek", "w": 1.0}]}, "munis": [], "slug": "steele"}, "38093": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 29", "rep": "Craig Headland, Don Vigesaa", "w": 0.823}, {"d": "ND House District 12", "rep": "Bernie Satrom, Mitch Ostlie", "w": 0.177}], "ss": [{"d": "ND Senate District 29", "rep": "Terry Wanzek", "w": 0.823}, {"d": "ND Senate District 12", "rep": "Cole Conley", "w": 0.177}]}, "munis": [], "slug": "stutsman"}, "38095": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 15", "rep": "Donna Henderson, Kathy Frelich", "w": 1.0}], "ss": [{"d": "ND Senate District 15", "rep": "Kent Weston", "w": 1.0}]}, "munis": [], "slug": "towner"}, "38097": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 0.998}], "sh": [{"d": "ND House District 20", "rep": "Dave Rustebakke", "w": 1.0}], "ss": [{"d": "ND Senate District 20", "rep": "Randy Lemm", "w": 1.0}]}, "munis": [], "slug": "traill"}, "38099": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 0.997}], "sh": [{"d": "ND House District 19", "rep": "Dave Monson, Karen Anderson", "w": 0.835}, {"d": "ND House District 20", "rep": "Dave Rustebakke", "w": 0.165}], "ss": [{"d": "ND Senate District 19", "rep": "Janne Myrdal", "w": 0.835}, {"d": "ND Senate District 20", "rep": "Randy Lemm", "w": 0.165}]}, "munis": [], "slug": "walsh"}, "38101": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 4B", "rep": "Clayton Fegley", "w": 0.529}, {"d": "ND House District 38", "rep": "Christina Wolff, Dan Ruby", "w": 0.177}, {"d": "ND House District 6", "rep": "Dan Vollmer, Dick Anderson", "w": 0.125}, {"d": "ND House District 40", "rep": "Macy Bolinske, Matt Ruby", "w": 0.084}, {"d": "ND House District 3", "rep": "Jeff Hoverson, Lori VanWinkle", "w": 0.07}, {"d": "ND House District 4A", "rep": "Lisa Finley-DeVille", "w": 0.012}], "ss": [{"d": "ND Senate District 4", "rep": "Chuck Walen", "w": 0.541}, {"d": "ND Senate District 38", "rep": "David Hogue", "w": 0.177}, {"d": "ND Senate District 6", "rep": "Paul Thomas", "w": 0.125}, {"d": "ND Senate District 40", "rep": "Jose Castaneda", "w": 0.084}, {"d": "ND Senate District 3", "rep": "Bob Paulson", "w": 0.07}]}, "munis": [{"m": "Minot", "p": [{"n": "Shaun Sipma", "r": "Mayor, Minot, ND"}]}], "slug": "ward"}, "38103": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 14", "rep": "Jon Nelson, Robin Weisz", "w": 1.0}], "ss": [{"d": "ND Senate District 14", "rep": "Jerry Klein", "w": 1.0}]}, "munis": [], "slug": "wells"}, "38105": {"county": [], "districts": {"cd": [{"d": "ND-00", "rep": "Julie Fedorchak", "w": 1.0}], "sh": [{"d": "ND House District 2", "rep": "Bert Anderson, Donald Longmuir", "w": 0.903}, {"d": "ND House District 23", "rep": "Dennis Nehring, Nico Rios", "w": 0.09}, {"d": "ND House District 1", "rep": "David Richter, Patrick Hatlestad", "w": 0.007}], "ss": [{"d": "ND Senate District 2", "rep": "Mark Enget", "w": 0.903}, {"d": "ND Senate District 23", "rep": "Todd Beard", "w": 0.09}, {"d": "ND Senate District 1", "rep": "Brad Bekkedahl", "w": 0.007}]}, "munis": [], "slug": "williams"}, "39001": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 0.999}], "sh": [{"d": "OH House District 90", "rep": "Justin Pizzulli", "w": 1.0}], "ss": [{"d": "OH Senate District 14", "rep": "Terry Johnson", "w": 1.0}]}, "munis": [], "slug": "adams"}, "39003": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 78", "rep": "Matt Huffman", "w": 1.0}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 1.0}]}, "munis": [{"m": "Delphos", "p": [{"n": "Andre McConnahea", "r": "Mayor, Delphos, OH"}]}, {"m": "Lima", "p": [{"n": "Sharetta Smith", "r": "Mayor, Lima, OH"}]}], "slug": "allen"}, "39005": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 67", "rep": "Melanie Miller", "w": 1.0}], "ss": [{"d": "OH Senate District 22", "rep": "Mark Romanchuk", "w": 1.0}]}, "munis": [{"m": "Ashland", "p": [{"n": "Matt Miller", "r": "Mayor, Ashland, OH"}]}], "slug": "ashland"}, "39007": {"county": [], "districts": {"cd": [{"d": "OH-14", "rep": "David P. Joyce", "w": 0.517}], "sh": [{"d": "OH House District 65", "rep": "David Thomas", "w": 0.393}, {"d": "OH House District 99", "rep": "Sarah Fowler Arthur", "w": 0.124}], "ss": [{"d": "OH Senate District 32", "rep": "Sandy O'Brien", "w": 0.517}]}, "munis": [], "slug": "ashtabula"}, "39009": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 0.998}], "sh": [{"d": "OH House District 94", "rep": "Kevin Ritter", "w": 0.732}, {"d": "OH House District 95", "rep": "Ty Moore", "w": 0.268}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [], "slug": "athens"}, "39011": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 84", "rep": "Angie King", "w": 0.507}, {"d": "OH House District 78", "rep": "Matt Huffman", "w": 0.492}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 1.0}]}, "munis": [{"m": "St Marys", "p": [{"n": "Joseph Hurlburt Jr.", "r": "Mayor, St. Marys, OH"}]}, {"m": "Wapakoneta", "p": [{"n": "Dan Lee", "r": "Mayor, Wapakoneta, OH"}]}], "slug": "auglaize"}, "39013": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 95", "rep": "Ty Moore", "w": 0.55}, {"d": "OH House District 96", "rep": "Ron Ferguson", "w": 0.45}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [{"m": "Martins Ferry", "p": [{"n": "John Davies", "r": "Mayor, Martins Ferry, OH"}]}, {"m": "St Clairsville", "p": [{"n": "Kathryn Thalman", "r": "Mayor, St. Clairsville, OH"}]}], "slug": "belmont"}, "39015": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 63", "rep": "Adam Bird", "w": 0.543}, {"d": "OH House District 90", "rep": "Justin Pizzulli", "w": 0.457}], "ss": [{"d": "OH Senate District 14", "rep": "Terry Johnson", "w": 1.0}]}, "munis": [], "slug": "brown"}, "39017": {"county": [], "districts": {"cd": [{"d": "OH-08", "rep": "Warren Davidson", "w": 1.0}], "sh": [{"d": "OH House District 47", "rep": "Diane Mullins", "w": 0.305}, {"d": "OH House District 45", "rep": "Jennifer Gross", "w": 0.267}, {"d": "OH House District 46", "rep": "Thomas Hall", "w": 0.262}, {"d": "OH House District 40", "rep": "Rodney Creech", "w": 0.167}], "ss": [{"d": "OH Senate District 4", "rep": "George Lang", "w": 0.833}, {"d": "OH Senate District 5", "rep": "Steve Huffman", "w": 0.167}]}, "munis": [{"m": "Fairfield", "p": [{"n": "Mitch Rhodus", "r": "Mayor, Fairfield, OH"}]}, {"m": "Hamilton", "p": [{"n": "Pat Moeller", "r": "Mayor, Hamilton, OH"}]}, {"m": "Middletown", "p": [{"n": "Elizabeth Slamka", "r": "Mayor, Middletown, OH"}]}, {"m": "Monroe", "p": [{"n": "Keith Funk", "r": "Mayor, Monroe, OH"}]}], "slug": "butler"}, "39019": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 79", "rep": "Monica Blasdel", "w": 1.0}], "ss": [{"d": "OH Senate District 33", "rep": "Al Cutrona", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "39021": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 0.999}], "sh": [{"d": "OH House District 85", "rep": "Tim Barhorst", "w": 1.0}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 1.0}]}, "munis": [{"m": "Urbana", "p": [{"n": "Bill Bean", "r": "Mayor, Urbana, OH"}]}], "slug": "champaign"}, "39023": {"county": [], "districts": {"cd": [{"d": "OH-15", "rep": "Mike Carey", "w": 0.71}, {"d": "OH-10", "rep": "Michael R. Turner", "w": 0.29}], "sh": [{"d": "OH House District 74", "rep": "Bernie Willis", "w": 0.598}, {"d": "OH House District 71", "rep": "Levi Dean", "w": 0.402}], "ss": [{"d": "OH Senate District 10", "rep": "Kyle Koehler", "w": 1.0}]}, "munis": [{"m": "Springfield", "p": [{"n": "Warren R. Copeland", "r": "Mayor, Springfield, OH"}]}], "slug": "clark"}, "39025": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 0.999}], "sh": [{"d": "OH House District 63", "rep": "Adam Bird", "w": 0.713}, {"d": "OH House District 62", "rep": "Jean Schmidt", "w": 0.286}], "ss": [{"d": "OH Senate District 14", "rep": "Terry Johnson", "w": 0.999}]}, "munis": [], "slug": "clermont"}, "39027": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 71", "rep": "Levi Dean", "w": 1.0}], "ss": [{"d": "OH Senate District 10", "rep": "Kyle Koehler", "w": 1.0}]}, "munis": [{"m": "Wilmington", "p": [{"n": "Patrick Haley", "r": "Mayor, Wilmington, OH"}]}], "slug": "clinton"}, "39029": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 79", "rep": "Monica Blasdel", "w": 0.872}, {"d": "OH House District 59", "rep": "Tex Fischer", "w": 0.128}], "ss": [{"d": "OH Senate District 33", "rep": "Al Cutrona", "w": 1.0}]}, "munis": [{"m": "Columbiana", "p": [{"n": "Rick Noel", "r": "Mayor, Columbiana, OH"}]}, {"m": "East Liverpool", "p": [{"n": "Robert J. Smith", "r": "Mayor, East Liverpool, OH"}]}, {"m": "Salem", "p": [{"n": "Cyndi Baronzzi Dickey", "r": "Mayor, Salem, OH"}]}], "slug": "columbiana"}, "39031": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 1.0}], "sh": [{"d": "OH House District 98", "rep": "Mark Hiner", "w": 1.0}], "ss": [{"d": "OH Senate District 19", "rep": "Andrew Brenner", "w": 1.0}]}, "munis": [{"m": "Coshocton", "p": [{"n": "Mark Mills", "r": "Mayor, Coshocton, OH"}]}], "slug": "coshocton"}, "39033": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 0.999}], "sh": [{"d": "OH House District 87", "rep": "Riordan McClain", "w": 1.0}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 1.0}]}, "munis": [{"m": "Bucyrus", "p": [{"n": "Bruce Truka", "r": "Mayor, Bucyrus, OH"}]}, {"m": "Galion", "p": [{"n": "Thomas M. O'Leary", "r": "Mayor, Galion, OH"}]}], "slug": "crawford"}, "39035": {"county": [], "districts": {"cd": [{"d": "OH-07", "rep": "Max L. Miller", "w": 0.194}, {"d": "OH-11", "rep": "Shontel M. Brown", "w": 0.174}], "sh": [{"d": "OH House District 19", "rep": "Phil Robinson", "w": 0.094}, {"d": "OH House District 17", "rep": "Mike Dovilla", "w": 0.055}, {"d": "OH House District 15", "rep": "Chris Glassburn", "w": 0.041}, {"d": "OH House District 16", "rep": "Bride Sweeney", "w": 0.029}, {"d": "OH House District 20", "rep": "Terrence Upchurch", "w": 0.026}, {"d": "OH House District 18", "rep": "Juanita Brent", "w": 0.026}, {"d": "OH House District 22", "rep": "Darnell Brewer", "w": 0.024}, {"d": "OH House District 21", "rep": "Eric Synenberg", "w": 0.023}, {"d": "OH House District 14", "rep": "Sean Brennan", "w": 0.022}, {"d": "OH House District 23", "rep": "Dan Troy", "w": 0.014}, {"d": "OH House District 13", "rep": "Tristan Rader", "w": 0.013}], "ss": [{"d": "OH Senate District 24", "rep": "Tom Patton", "w": 0.119}, {"d": "OH Senate District 18", "rep": "Jerry Cirino", "w": 0.108}, {"d": "OH Senate District 21", "rep": "Kent Smith", "w": 0.073}, {"d": "OH Senate District 23", "rep": "Nickie Antonio", "w": 0.068}]}, "munis": [{"m": "Bay Village", "p": [{"n": "Paul Koomar", "r": "Mayor, Bay Village, OH"}]}, {"m": "Beachwood", "p": [{"n": "Justin Berns", "r": "Mayor, Beachwood, OH"}]}, {"m": "Bedford Heights", "p": [{"n": "Phillip Stevens", "r": "Mayor, Bedford Heights, OH"}]}, {"m": "Berea", "p": [{"n": "Cyril Kleem", "r": "Mayor, Berea, OH"}]}, {"m": "Brecksville", "p": [{"n": "Jerry N. Hruby", "r": "Mayor, Brecksville, OH"}]}, {"m": "Broadview Heights", "p": [{"n": "Samuel J. Alai", "r": "Mayor, Broadview Heights, OH"}]}, {"m": "Brook Park", "p": [{"n": "Edward Orcutt", "r": "Mayor, Brook Park, OH"}]}, {"m": "Brooklyn", "p": [{"n": "Ron Van Kirk", "r": "Mayor, Brooklyn, OH"}]}, {"m": "Cleveland", "p": [{"n": "Frank G. Jackson", "r": "Mayor, Cleveland, OH"}]}, {"m": "Cleveland Heights", "p": [{"n": "Kahlil Seren", "r": "Mayor, Cleveland Heights, OH"}]}, {"m": "East Cleveland", "p": [{"n": "Brandon L. King", "r": "Mayor, East Cleveland, OH"}]}, {"m": "Euclid", "p": [{"n": "Kirsten Holzheimer Gail", "r": "Mayor, Euclid, OH"}]}, {"m": "Fairview Park", "p": [{"n": "Bill Schneider", "r": "Mayor, Fairview Park, OH"}]}, {"m": "Garfield Heights", "p": [{"n": "Matthew Burke", "r": "Mayor, Garfield Heights, OH"}]}, {"m": "Highland Heights", "p": [{"n": "Chuck Brunello, Jr.", "r": "Mayor, Highland Heights, OH"}]}, {"m": "Independence", "p": [{"n": "Gregory P. Kurtz", "r": "Mayor, Independence, OH"}]}, {"m": "Lakewood", "p": [{"n": "Meghan George", "r": "Mayor, Lakewood, OH"}]}, {"m": "Lyndhurst", "p": [{"n": "Patrick A. Ward", "r": "Mayor, Lyndhurst, OH"}]}, {"m": "Maple Heights", "p": [{"n": "Annette M. Blackwell", "r": "Mayor, Maple Heights, OH"}]}, {"m": "Mayfield Heights", "p": [{"n": "Anthony DiCicco", "r": "Mayor, Mayfield Heights, OH"}]}, {"m": "Middleburg Heights", "p": [{"n": "Matthew J. Castelli", "r": "Mayor, Middleburg Heights, OH"}]}, {"m": "North Olmsted", "p": [{"n": "Nicole Dailey Jones", "r": "Mayor, North Olmsted, OH"}]}, {"m": "North Royalton", "p": [{"n": "Larry Antoskiewicz", "r": "Mayor, North Royalton, OH"}]}, {"m": "Olmsted Falls", "p": [{"n": "James Patrick Graven", "r": "Mayor, Olmsted Falls, OH"}]}, {"m": "Parma", "p": [{"n": "Timothy J. DeGeeter", "r": "Mayor, Parma, OH"}]}, {"m": "Parma Heights", "p": [{"n": "Marie Gallo", "r": "Mayor, Parma Heights, OH"}]}, {"m": "Richmond Heights", "p": [{"n": "Kim A. Thomas", "r": "Mayor, Richmond Heights, OH"}]}, {"m": "Rocky River", "p": [{"n": "Pamela E. Bobst", "r": "Mayor, Rocky River, OH"}]}, {"m": "Shaker Heights", "p": [{"n": "David E. Weiss", "r": "Mayor, Shaker Heights, OH"}]}, {"m": "Solon", "p": [{"n": "Edward H. Kraus", "r": "Mayor, Solon, OH"}]}, {"m": "South Euclid", "p": [{"n": "Georgine Welo", "r": "Mayor, South Euclid, OH"}]}, {"m": "Strongsville", "p": [{"n": "Thomas P. Perciak", "r": "Mayor, Strongsville, OH"}]}, {"m": "University Heights", "p": [{"n": "Michael Dylan Brennan", "r": "Mayor, University Heights, OH"}]}, {"m": "Warrensville Heights", "p": [{"n": "Bradley D. Sellers", "r": "Mayor, Warrensville Heights, OH"}]}, {"m": "Westlake", "p": [{"n": "Dennis M. Clough", "r": "Mayor, Westlake, OH"}]}], "slug": "cuyahoga"}, "39037": {"county": [], "districts": {"cd": [{"d": "OH-08", "rep": "Warren Davidson", "w": 1.0}], "sh": [{"d": "OH House District 84", "rep": "Angie King", "w": 0.616}, {"d": "OH House District 80", "rep": "Johnathan Newman", "w": 0.384}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 0.616}, {"d": "OH Senate District 5", "rep": "Steve Huffman", "w": 0.384}]}, "munis": [{"m": "Greenville", "p": [{"n": "Jeff Whitaker", "r": "Mayor, Greenville, OH"}]}], "slug": "darke"}, "39039": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 0.999}], "sh": [{"d": "OH House District 82", "rep": "Roy Klopfenstein", "w": 0.566}, {"d": "OH House District 81", "rep": "Jim Hoops", "w": 0.434}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Defiance", "p": [{"n": "Mike McCann", "r": "Mayor, Defiance, OH"}]}], "slug": "defiance"}, "39041": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 0.674}, {"d": "OH-12", "rep": "Troy Balderson", "w": 0.326}], "sh": [{"d": "OH House District 61", "rep": "Beth Lear", "w": 0.681}, {"d": "OH House District 60", "rep": "Brian Lorenz", "w": 0.319}], "ss": [{"d": "OH Senate District 19", "rep": "Andrew Brenner", "w": 1.0}]}, "munis": [{"m": "Delaware", "p": [{"n": "Carolyn Kay Riggle", "r": "Mayor, Delaware, OH"}]}], "slug": "delaware"}, "39043": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 0.455}], "sh": [{"d": "OH House District 89", "rep": "D.J. Swearingen", "w": 0.41}], "ss": [{"d": "OH Senate District 2", "rep": "Theresa Gavarone", "w": 0.41}]}, "munis": [{"m": "Huron", "p": [{"n": "Monty Tapp", "r": "Mayor, Huron, OH"}]}], "slug": "erie"}, "39045": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 1.0}], "sh": [{"d": "OH House District 69", "rep": "Kevin Miller", "w": 0.549}, {"d": "OH House District 73", "rep": "Jeff LaRe", "w": 0.451}], "ss": [{"d": "OH Senate District 20", "rep": "Tim Schaffer", "w": 1.0}]}, "munis": [{"m": "Lancaster", "p": [{"n": "Don McDaniel", "r": "Mayor, Lancaster, OH"}]}, {"m": "Pickerington", "p": [{"n": "Lee Gray", "r": "Mayor, Pickerington, OH"}]}], "slug": "fairfield"}, "39047": {"county": [], "districts": {"cd": [{"d": "OH-15", "rep": "Mike Carey", "w": 0.875}, {"d": "OH-02", "rep": "David J. Taylor", "w": 0.125}], "sh": [{"d": "OH House District 91", "rep": "Bob Peterson", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [], "slug": "fayette"}, "39049": {"county": [], "districts": {"cd": [{"d": "OH-15", "rep": "Mike Carey", "w": 0.594}, {"d": "OH-03", "rep": "Joyce Beatty", "w": 0.406}], "sh": [{"d": "OH House District 5", "rep": "Meredith Lawson‐Rowe", "w": 0.159}, {"d": "OH House District 11", "rep": "Crystal Lett", "w": 0.122}, {"d": "OH House District 4", "rep": "Beryl Piccolantonio", "w": 0.122}, {"d": "OH House District 10", "rep": "Mark Sigrist", "w": 0.12}, {"d": "OH House District 12", "rep": "Brian Stewart", "w": 0.11}, {"d": "OH House District 2", "rep": "Latyna Humphrey", "w": 0.067}, {"d": "OH House District 6", "rep": "Christine Cockley", "w": 0.056}, {"d": "OH House District 8", "rep": "Anita Somani", "w": 0.054}, {"d": "OH House District 1", "rep": "Dontavius Jarrells", "w": 0.052}, {"d": "OH House District 7", "rep": "Allison Russo", "w": 0.049}, {"d": "OH House District 9", "rep": "Munira Abdullahi", "w": 0.046}, {"d": "OH House District 3", "rep": "Ismail Mohamed", "w": 0.043}], "ss": [{"d": "OH Senate District 3", "rep": "Michele Reynolds", "w": 0.39}, {"d": "OH Senate District 16", "rep": "Beth Liston", "w": 0.298}, {"d": "OH Senate District 15", "rep": "Hearcel Craig", "w": 0.161}, {"d": "OH Senate District 25", "rep": "Bill DeMora", "w": 0.152}]}, "munis": [{"m": "Columbus", "p": [{"n": "Andrew Ginther", "r": "Mayor, Columbus, OH"}]}, {"m": "Dublin", "p": [{"n": "Chris Amorose Groomes", "r": "Mayor, Dublin, OH"}]}, {"m": "Gahanna", "p": [{"n": "Laurie Jadwin", "r": "Mayor, Gahanna, OH"}]}, {"m": "Grove City", "p": [{"n": "Q132673219", "r": "Mayor, Grove City, OH"}]}, {"m": "Reynoldsburg", "p": [{"n": "Joe Begeny", "r": "Mayor, Reynoldsburg, OH"}]}, {"m": "Westerville", "p": [{"n": "Kenneth L. Wright", "r": "Mayor, Westerville, OH"}]}], "slug": "franklin"}, "39051": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 1.0}], "sh": [{"d": "OH House District 81", "rep": "Jim Hoops", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Wauseon", "p": [{"n": "Kathy Huner", "r": "Mayor, Wauseon, OH"}]}], "slug": "fulton"}, "39053": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 93", "rep": "Jason Stephens", "w": 0.999}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 0.999}]}, "munis": [], "slug": "gallia"}, "39055": {"county": [], "districts": {"cd": [{"d": "OH-14", "rep": "David P. Joyce", "w": 1.0}], "sh": [{"d": "OH House District 99", "rep": "Sarah Fowler Arthur", "w": 0.854}, {"d": "OH House District 35", "rep": "Steve Demetriou", "w": 0.146}], "ss": [{"d": "OH Senate District 32", "rep": "Sandy O'Brien", "w": 0.854}, {"d": "OH Senate District 27", "rep": "Kristina Roegner", "w": 0.146}]}, "munis": [{"m": "Chardon", "p": [{"n": "Christopher Grau", "r": "Mayor, Chardon, OH"}]}], "slug": "geauga"}, "39057": {"county": [], "districts": {"cd": [{"d": "OH-10", "rep": "Michael R. Turner", "w": 0.999}], "sh": [{"d": "OH House District 71", "rep": "Levi Dean", "w": 0.634}, {"d": "OH House District 70", "rep": "Brian Lampton", "w": 0.366}], "ss": [{"d": "OH Senate District 10", "rep": "Kyle Koehler", "w": 1.0}]}, "munis": [{"m": "Fairborn", "p": [{"n": "Dan Kirkpatrick", "r": "Mayor, Fairborn, OH"}]}, {"m": "Xenia", "p": [{"n": "William Urschel", "r": "Mayor, Xenia, OH"}]}], "slug": "greene"}, "39059": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 0.999}], "sh": [{"d": "OH House District 95", "rep": "Ty Moore", "w": 0.537}, {"d": "OH House District 97", "rep": "Adam Holmes", "w": 0.463}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 0.537}, {"d": "OH Senate District 31", "rep": "Al Landis", "w": 0.463}]}, "munis": [{"m": "Cambridge", "p": [{"n": "Thomas D. Orr", "r": "Mayor, Cambridge, OH"}]}], "slug": "guernsey"}, "39061": {"county": [], "districts": {"cd": [{"d": "OH-08", "rep": "Warren Davidson", "w": 0.507}, {"d": "OH-01", "rep": "Greg Landsman", "w": 0.492}], "sh": [{"d": "OH House District 29", "rep": "Cindy Abrams", "w": 0.295}, {"d": "OH House District 27", "rep": "Rachel Baker", "w": 0.198}, {"d": "OH House District 30", "rep": "Mike Odioso", "w": 0.152}, {"d": "OH House District 28", "rep": "Karen Brownlee", "w": 0.14}, {"d": "OH House District 26", "rep": "Ashley Bryant Bailey", "w": 0.078}, {"d": "OH House District 25", "rep": "Cecil Thomas", "w": 0.074}, {"d": "OH House District 24", "rep": "Dani Isaacsohn", "w": 0.062}], "ss": [{"d": "OH Senate District 8", "rep": "Bill Blessing", "w": 0.645}, {"d": "OH Senate District 9", "rep": "Catherine Ingram", "w": 0.215}, {"d": "OH Senate District 7", "rep": "Steve Wilson", "w": 0.14}]}, "munis": [{"m": "Blue Ash", "p": [{"n": "Jill Cole", "r": "Mayor, Blue Ash, OH"}]}, {"m": "Cincinnati", "p": [{"n": "Aftab Pureval", "r": "Mayor, Cincinnati, OH"}]}, {"m": "Deer Park", "p": [{"n": "John Donnellon", "r": "Mayor, Deer Park, OH"}]}, {"m": "Forest Park", "p": [{"n": "Aharon Brown", "r": "Mayor, Forest Park, OH"}]}, {"m": "Montgomery", "p": [{"n": "Ronald Messer", "r": "Mayor, Montgomery, OH"}]}, {"m": "Norwood", "p": [{"n": "Victor Schneider", "r": "Mayor, Norwood, OH"}]}, {"m": "Reading", "p": [{"n": "Robert Bemmes", "r": "Mayor, Reading, OH"}]}, {"m": "Sharonville", "p": [{"n": "Kevin M. Hardman", "r": "Mayor, Sharonville, OH"}]}, {"m": "Springdale", "p": [{"n": "Lawrence C. Hawkins", "r": "Mayor, Springdale, OH"}]}], "slug": "hamilton"}, "39063": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 1.0}], "sh": [{"d": "OH House District 83", "rep": "Ty Mathews", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Findlay", "p": [{"n": "Christina Muryn", "r": "Mayor, Findlay, OH"}]}], "slug": "hancock"}, "39065": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 83", "rep": "Ty Mathews", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Kenton", "p": [{"n": "Lynn Webb", "r": "Mayor, Kenton, OH"}]}], "slug": "hardin"}, "39067": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 95", "rep": "Ty Moore", "w": 1.0}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [], "slug": "harrison"}, "39069": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 1.0}], "sh": [{"d": "OH House District 81", "rep": "Jim Hoops", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Napoleon", "p": [{"n": "Joseph Bialorucki", "r": "Mayor, Napoleon, OH"}]}], "slug": "henry"}, "39071": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 91", "rep": "Bob Peterson", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [{"m": "Hillsboro", "p": [{"n": "Justin Harsha", "r": "Mayor, Hillsboro, OH"}]}], "slug": "highland"}, "39073": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 92", "rep": "Mark Johnson", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [{"m": "Logan", "p": [{"n": "Greg Fraunfelter", "r": "Mayor, Logan, OH"}]}], "slug": "hocking"}, "39075": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 0.753}, {"d": "OH-07", "rep": "Max L. Miller", "w": 0.247}], "sh": [{"d": "OH House District 98", "rep": "Mark Hiner", "w": 1.0}], "ss": [{"d": "OH Senate District 19", "rep": "Andrew Brenner", "w": 1.0}]}, "munis": [], "slug": "holmes"}, "39077": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 1.0}], "sh": [{"d": "OH House District 54", "rep": "Kellie Deeter", "w": 0.895}, {"d": "OH House District 89", "rep": "D.J. Swearingen", "w": 0.105}], "ss": [{"d": "OH Senate District 13", "rep": "Nathan Manning", "w": 0.895}, {"d": "OH Senate District 2", "rep": "Theresa Gavarone", "w": 0.105}]}, "munis": [{"m": "Bellevue", "p": [{"n": "Kevin Strecker", "r": "Mayor, Bellevue, OH"}]}, {"m": "Norwalk", "p": [{"n": "David W. Light", "r": "Mayor, Norwalk, OH"}]}], "slug": "huron"}, "39079": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 93", "rep": "Jason Stephens", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [{"m": "Jackson", "p": [{"n": "Randy Evans", "r": "Mayor, Jackson, OH"}]}], "slug": "jackson"}, "39081": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 96", "rep": "Ron Ferguson", "w": 0.999}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 0.999}]}, "munis": [{"m": "Steubenville", "p": [{"n": "Jerry Barilla", "r": "Mayor, Steubenville, OH"}]}, {"m": "Toronto", "p": [{"n": "John Parker", "r": "Mayor, Toronto, OH"}]}], "slug": "jefferson"}, "39083": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 0.999}], "sh": [{"d": "OH House District 98", "rep": "Mark Hiner", "w": 0.621}, {"d": "OH House District 61", "rep": "Beth Lear", "w": 0.379}], "ss": [{"d": "OH Senate District 19", "rep": "Andrew Brenner", "w": 1.0}]}, "munis": [{"m": "Mount Vernon", "p": [{"n": "Matthew T. Starr", "r": "Mayor, Mount Vernon, OH"}]}], "slug": "knox"}, "39085": {"county": [], "districts": {"cd": [{"d": "OH-14", "rep": "David P. Joyce", "w": 0.236}], "sh": [{"d": "OH House District 57", "rep": "Jamie Callender", "w": 0.185}, {"d": "OH House District 23", "rep": "Dan Troy", "w": 0.05}], "ss": [{"d": "OH Senate District 18", "rep": "Jerry Cirino", "w": 0.235}]}, "munis": [{"m": "Eastlake", "p": [{"n": "Jim Overstreet", "r": "Mayor, Eastlake, OH"}]}, {"m": "Wickliffe", "p": [{"n": "Joe Sakacs", "r": "Mayor, Wickliffe, OH"}]}, {"m": "Willoughby", "p": [{"n": "Robert A. Fiala", "r": "Mayor, Willoughby, OH"}]}], "slug": "lake"}, "39087": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 0.999}], "sh": [{"d": "OH House District 93", "rep": "Jason Stephens", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [{"m": "Ironton", "p": [{"n": "Samuel Cramblit", "r": "Mayor, Ironton, OH"}]}], "slug": "lawrence"}, "39089": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 1.0}], "sh": [{"d": "OH House District 69", "rep": "Kevin Miller", "w": 0.668}, {"d": "OH House District 68", "rep": "Thad Claggett", "w": 0.332}], "ss": [{"d": "OH Senate District 20", "rep": "Tim Schaffer", "w": 1.0}]}, "munis": [{"m": "Heath", "p": [{"n": "Mark Johns", "r": "Mayor, Heath, OH"}]}, {"m": "Newark", "p": [{"n": "Jeff Hall", "r": "Mayor, Newark, OH"}]}, {"m": "Pataskala", "p": [{"n": "Mike Compton", "r": "Mayor, Pataskala, OH"}]}], "slug": "licking"}, "39091": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 85", "rep": "Tim Barhorst", "w": 0.516}, {"d": "OH House District 83", "rep": "Ty Mathews", "w": 0.483}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 0.517}, {"d": "OH Senate District 1", "rep": "Rob McColley", "w": 0.483}]}, "munis": [{"m": "Bellefontaine", "p": [{"n": "David Crissman", "r": "Mayor, Bellefontaine, OH"}]}], "slug": "logan"}, "39093": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 0.534}], "sh": [{"d": "OH House District 54", "rep": "Kellie Deeter", "w": 0.379}, {"d": "OH House District 52", "rep": "Gayle Manning", "w": 0.093}, {"d": "OH House District 53", "rep": "Joe Miller", "w": 0.062}], "ss": [{"d": "OH Senate District 13", "rep": "Nathan Manning", "w": 0.534}]}, "munis": [{"m": "Avon", "p": [{"n": "Bryan K. Jensen", "r": "Mayor, Avon, OH"}]}, {"m": "Avon Lake", "p": [{"n": "Mark Spaetzel", "r": "Mayor, Avon Lake, OH"}]}, {"m": "Elyria", "p": [{"n": "Kevin Brubaker", "r": "Mayor, Elyria, OH"}]}, {"m": "Lorain", "p": [{"n": "Jack Bradley", "r": "Mayor, Lorain, OH"}]}, {"m": "North Ridgeville", "p": [{"n": "Kevin Corcoran", "r": "Mayor, North Ridgeville, OH"}]}, {"m": "Oberlin", "p": [{"n": "Henry F. Smith", "r": "Mayor, Oberlin, OH"}]}, {"m": "Vermilion", "p": [{"n": "Jim Forthofer", "r": "Mayor, Vermilion, OH"}]}], "slug": "lorain"}, "39095": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 0.583}], "sh": [{"d": "OH House District 44", "rep": "Josh Williams", "w": 0.28}, {"d": "OH House District 42", "rep": "Elgin Rogers", "w": 0.149}, {"d": "OH House District 41", "rep": "Erika White", "w": 0.094}, {"d": "OH House District 43", "rep": "Michele Grim", "w": 0.058}], "ss": [{"d": "OH Senate District 11", "rep": "Paula Hicks-Hudson", "w": 0.302}, {"d": "OH Senate District 2", "rep": "Theresa Gavarone", "w": 0.28}]}, "munis": [{"m": "Maumee", "p": [{"n": "Jim MacDonald", "r": "Mayor, Maumee, OH"}]}, {"m": "Oregon", "p": [{"n": "Michael J. Seferian", "r": "Mayor, Oregon, OH"}]}, {"m": "Sylvania", "p": [{"n": "Mark Frye", "r": "Mayor, Sylvania, OH"}]}, {"m": "Toledo", "p": [{"n": "Wade Kapszukiewicz", "r": "Mayor, Toledo, OH"}]}], "slug": "lucas"}, "39097": {"county": [], "districts": {"cd": [{"d": "OH-15", "rep": "Mike Carey", "w": 1.0}], "sh": [{"d": "OH House District 12", "rep": "Brian Stewart", "w": 1.0}], "ss": [{"d": "OH Senate District 3", "rep": "Michele Reynolds", "w": 1.0}]}, "munis": [{"m": "London", "p": [{"n": "Patrick J. Closser", "r": "Mayor, London, OH"}]}], "slug": "madison"}, "39099": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 59", "rep": "Tex Fischer", "w": 0.656}, {"d": "OH House District 58", "rep": "Lauren McNally", "w": 0.343}], "ss": [{"d": "OH Senate District 33", "rep": "Al Cutrona", "w": 1.0}]}, "munis": [{"m": "Youngstown", "p": [{"n": "Jamael Tito Brown", "r": "Mayor, Youngstown, OH"}]}], "slug": "mahoning"}, "39101": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 87", "rep": "Riordan McClain", "w": 0.778}, {"d": "OH House District 86", "rep": "Tracy Richardson", "w": 0.222}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 1.0}]}, "munis": [{"m": "Marion", "p": [{"n": "Bill Collins", "r": "Mayor, Marion, OH"}]}], "slug": "marion"}, "39103": {"county": [], "districts": {"cd": [{"d": "OH-07", "rep": "Max L. Miller", "w": 1.0}], "sh": [{"d": "OH House District 66", "rep": "Sharon Ray", "w": 0.6}, {"d": "OH House District 67", "rep": "Melanie Miller", "w": 0.4}], "ss": [{"d": "OH Senate District 22", "rep": "Mark Romanchuk", "w": 1.0}]}, "munis": [{"m": "Brunswick", "p": [{"n": "Ron Falconi", "r": "Mayor, Brunswick, OH"}]}, {"m": "Medina", "p": [{"n": "Dennis Hanwell", "r": "Mayor, Medina, OH"}]}], "slug": "medina"}, "39105": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 94", "rep": "Kevin Ritter", "w": 1.0}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [], "slug": "meigs"}, "39107": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 0.999}], "sh": [{"d": "OH House District 84", "rep": "Angie King", "w": 1.0}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 1.0}]}, "munis": [{"m": "Celina", "p": [{"n": "Jeffrey Hazel", "r": "Mayor, Celina, OH"}]}], "slug": "mercer"}, "39109": {"county": [], "districts": {"cd": [{"d": "OH-15", "rep": "Mike Carey", "w": 0.76}, {"d": "OH-08", "rep": "Warren Davidson", "w": 0.24}], "sh": [{"d": "OH House District 80", "rep": "Johnathan Newman", "w": 1.0}], "ss": [{"d": "OH Senate District 5", "rep": "Steve Huffman", "w": 1.0}]}, "munis": [{"m": "Piqua", "p": [{"n": "Kris Lee", "r": "Mayor, Piqua, OH"}]}, {"m": "Troy", "p": [{"n": "Robin Oda", "r": "Mayor, Troy, OH"}]}], "slug": "miami"}, "39111": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 96", "rep": "Ron Ferguson", "w": 0.999}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "39113": {"county": [], "districts": {"cd": [{"d": "OH-10", "rep": "Michael R. Turner", "w": 1.0}], "sh": [{"d": "OH House District 40", "rep": "Rodney Creech", "w": 0.378}, {"d": "OH House District 37", "rep": "Tom Young", "w": 0.213}, {"d": "OH House District 39", "rep": "Phil Plummer", "w": 0.176}, {"d": "OH House District 38", "rep": "Desireè Tims", "w": 0.143}, {"d": "OH House District 36", "rep": "Andrea White", "w": 0.091}], "ss": [{"d": "OH Senate District 5", "rep": "Steve Huffman", "w": 0.554}, {"d": "OH Senate District 6", "rep": "Willis Blackshear", "w": 0.446}]}, "munis": [{"m": "Centerville", "p": [{"n": "Brooks Compton", "r": "Mayor, Centerville, OH"}]}, {"m": "Clayton", "p": [{"n": "Mike Stevens", "r": "Mayor, Clayton, OH"}]}, {"m": "Dayton", "p": [{"n": "Jeffrey J. Mims, Jr.", "r": "Mayor, Dayton, OH"}]}, {"m": "Huber Heights", "p": [{"n": "Jeff Gore", "r": "Mayor, Huber Heights, OH"}]}, {"m": "Kettering", "p": [{"n": "Peggy Lehner", "r": "Mayor, Kettering, OH"}]}, {"m": "Miamisburg", "p": [{"n": "Michelle Collins", "r": "Mayor, Miamisburg, OH"}]}, {"m": "Riverside", "p": [{"n": "Peter J. Williams", "r": "Mayor, Riverside, OH"}]}, {"m": "Trotwood", "p": [{"n": "Yvette F. Page", "r": "Mayor, Trotwood, OH"}]}, {"m": "Vandalia", "p": [{"n": "Richard Herbst", "r": "Mayor, Vandalia, OH"}]}, {"m": "West Carrollton", "p": [{"n": "Rick Barnhart", "r": "Mayor, West Carrollton, OH"}]}], "slug": "montgomery"}, "39115": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 0.998}], "sh": [{"d": "OH House District 95", "rep": "Ty Moore", "w": 1.0}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "39117": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 87", "rep": "Riordan McClain", "w": 1.0}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 1.0}]}, "munis": [], "slug": "morrow"}, "39119": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 1.0}], "sh": [{"d": "OH House District 97", "rep": "Adam Holmes", "w": 1.0}], "ss": [{"d": "OH Senate District 31", "rep": "Al Landis", "w": 1.0}]}, "munis": [{"m": "Zanesville", "p": [{"n": "Donald L. Mason", "r": "Mayor, Zanesville, OH"}]}], "slug": "muskingum"}, "39121": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 1.0}], "sh": [{"d": "OH House District 95", "rep": "Ty Moore", "w": 1.0}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [], "slug": "noble"}, "39123": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 0.499}], "sh": [{"d": "OH House District 89", "rep": "D.J. Swearingen", "w": 0.363}, {"d": "OH House District 44", "rep": "Josh Williams", "w": 0.088}], "ss": [{"d": "OH Senate District 2", "rep": "Theresa Gavarone", "w": 0.451}]}, "munis": [{"m": "Port Clinton", "p": [{"n": "Michael Snider", "r": "Mayor, Port Clinton, OH"}]}], "slug": "ottawa"}, "39125": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 1.0}], "sh": [{"d": "OH House District 82", "rep": "Roy Klopfenstein", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [], "slug": "paulding"}, "39127": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 1.0}], "sh": [{"d": "OH House District 69", "rep": "Kevin Miller", "w": 0.589}, {"d": "OH House District 92", "rep": "Mark Johnson", "w": 0.411}], "ss": [{"d": "OH Senate District 20", "rep": "Tim Schaffer", "w": 0.589}, {"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 0.411}]}, "munis": [], "slug": "perry"}, "39129": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 12", "rep": "Brian Stewart", "w": 1.0}], "ss": [{"d": "OH Senate District 3", "rep": "Michele Reynolds", "w": 1.0}]}, "munis": [{"m": "Circleville", "p": [{"n": "Michelle L. Blanton", "r": "Mayor, Circleville, OH"}]}], "slug": "pickaway"}, "39131": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 91", "rep": "Bob Peterson", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [], "slug": "pike"}, "39133": {"county": [], "districts": {"cd": [{"d": "OH-14", "rep": "David P. Joyce", "w": 0.991}, {"d": "OH-13", "rep": "Emilia Strong Sykes", "w": 0.009}], "sh": [{"d": "OH House District 72", "rep": "Heidi Workman", "w": 0.851}, {"d": "OH House District 35", "rep": "Steve Demetriou", "w": 0.149}], "ss": [{"d": "OH Senate District 27", "rep": "Kristina Roegner", "w": 1.0}]}, "munis": [{"m": "Aurora", "p": [{"n": "Ann Womer Benjamin", "r": "Mayor, Aurora, OH"}]}, {"m": "Kent", "p": [{"n": "Jerry T. Fiala", "r": "Mayor, Kent, OH"}]}, {"m": "Ravenna", "p": [{"n": "Frank Seman", "r": "Mayor, Ravenna, OH"}]}, {"m": "Streetsboro", "p": [{"n": "Glenn M. Broska", "r": "Mayor, Streetsboro, OH"}]}], "slug": "portage"}, "39135": {"county": [], "districts": {"cd": [{"d": "OH-08", "rep": "Warren Davidson", "w": 1.0}], "sh": [{"d": "OH House District 40", "rep": "Rodney Creech", "w": 1.0}], "ss": [{"d": "OH Senate District 5", "rep": "Steve Huffman", "w": 1.0}]}, "munis": [{"m": "Eaton", "p": [{"n": "Matt Venable", "r": "Mayor, Eaton, OH"}]}], "slug": "preble"}, "39137": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 1.0}], "sh": [{"d": "OH House District 82", "rep": "Roy Klopfenstein", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [], "slug": "putnam"}, "39139": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 76", "rep": "Marilyn John", "w": 1.0}], "ss": [{"d": "OH Senate District 22", "rep": "Mark Romanchuk", "w": 1.0}]}, "munis": [{"m": "Mansfield", "p": [{"n": "Jodie Perry", "r": "Mayor, Mansfield, OH"}]}, {"m": "Shelby", "p": [{"n": "Steven L. Schag", "r": "Mayor, Shelby, OH"}]}], "slug": "richland"}, "39141": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 92", "rep": "Mark Johnson", "w": 0.589}, {"d": "OH House District 91", "rep": "Bob Peterson", "w": 0.411}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [{"m": "Chillicothe", "p": [{"n": "Luke M. Feeney", "r": "Mayor, Chillicothe, OH"}]}], "slug": "ross"}, "39143": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 1.0}], "sh": [{"d": "OH House District 88", "rep": "Gary Click", "w": 0.985}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 0.985}]}, "munis": [{"m": "Clyde", "p": [{"n": "Doug McCauley", "r": "Mayor, Clyde, OH"}]}, {"m": "Fremont", "p": [{"n": "Danny Sanchez", "r": "Mayor, Fremont, OH"}]}], "slug": "sandusky"}, "39145": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 0.999}], "sh": [{"d": "OH House District 90", "rep": "Justin Pizzulli", "w": 0.999}], "ss": [{"d": "OH Senate District 14", "rep": "Terry Johnson", "w": 0.999}]}, "munis": [{"m": "Portsmouth", "p": [{"n": "Charlotte Gordon", "r": "Mayor, Portsmouth, OH"}]}], "slug": "scioto"}, "39147": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 0.999}], "sh": [{"d": "OH House District 88", "rep": "Gary Click", "w": 1.0}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 1.0}]}, "munis": [{"m": "Fostoria", "p": [{"n": "Donald Mennel", "r": "Mayor, Fostoria, OH"}]}, {"m": "Tiffin", "p": [{"n": "Lee Wilkinson", "r": "Mayor, Tiffin, OH"}]}], "slug": "seneca"}, "39149": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 0.51}, {"d": "OH-15", "rep": "Mike Carey", "w": 0.489}], "sh": [{"d": "OH House District 85", "rep": "Tim Barhorst", "w": 1.0}], "ss": [{"d": "OH Senate District 12", "rep": "Susan Manchester", "w": 1.0}]}, "munis": [{"m": "Sidney", "p": [{"n": "Mike Barhorst", "r": "Mayor, Sidney, OH"}]}], "slug": "shelby"}, "39151": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 0.645}, {"d": "OH-13", "rep": "Emilia Strong Sykes", "w": 0.354}], "sh": [{"d": "OH House District 50", "rep": "Matt Kishman", "w": 0.391}, {"d": "OH House District 48", "rep": "Scott Oelslager", "w": 0.285}, {"d": "OH House District 51", "rep": "Jodi Salvo", "w": 0.214}, {"d": "OH House District 49", "rep": "Jim Thomas", "w": 0.109}], "ss": [{"d": "OH Senate District 29", "rep": "Jane Timken", "w": 0.785}, {"d": "OH Senate District 31", "rep": "Al Landis", "w": 0.214}]}, "munis": [{"m": "Alliance", "p": [{"n": "Andrew Grove", "r": "Mayor, Alliance, OH"}]}, {"m": "Canal Fulton", "p": [{"n": "Joseph A. Schultz", "r": "Mayor, Canal Fulton, OH"}]}, {"m": "Canton", "p": [{"n": "William Sherer", "r": "Mayor, Canton, OH"}]}, {"m": "Louisville", "p": [{"n": "Patricia A. Fallot", "r": "Mayor, Louisville, OH"}]}, {"m": "Massillon", "p": [{"n": "Jamie Slutz", "r": "Mayor, Massillon, OH"}]}, {"m": "North Canton", "p": [{"n": "Stephan B. Wilder", "r": "Mayor, North Canton, OH"}]}], "slug": "stark"}, "39153": {"county": [], "districts": {"cd": [{"d": "OH-13", "rep": "Emilia Strong Sykes", "w": 0.999}], "sh": [{"d": "OH House District 31", "rep": "Bill Roemer", "w": 0.358}, {"d": "OH House District 32", "rep": "Jack Daniels", "w": 0.254}, {"d": "OH House District 34", "rep": "Derrick Hall", "w": 0.175}, {"d": "OH House District 35", "rep": "Steve Demetriou", "w": 0.119}, {"d": "OH House District 33", "rep": "Veronica Sims", "w": 0.093}], "ss": [{"d": "OH Senate District 28", "rep": "Casey Weinstein", "w": 0.523}, {"d": "OH Senate District 27", "rep": "Kristina Roegner", "w": 0.477}]}, "munis": [{"m": "Akron", "p": [{"n": "Shammas Malik", "r": "Mayor, Akron, OH"}]}, {"m": "Cuyahoga Falls", "p": [{"n": "Don Walters", "r": "Mayor, Cuyahoga Falls, OH"}]}, {"m": "Hudson", "p": [{"n": "Jeffrey Anzevino", "r": "Mayor, Hudson, OH"}]}, {"m": "Macedonia", "p": [{"n": "Nicholas Molnar", "r": "Mayor, Macedonia, OH"}]}, {"m": "Stow", "p": [{"n": "John Pribonic", "r": "Mayor, Stow, OH"}]}, {"m": "Tallmadge", "p": [{"n": "Carol Siciliano-Kilway", "r": "Mayor, Tallmadge, OH"}]}, {"m": "Twinsburg", "p": [{"n": "Sam Scaffide", "r": "Mayor, Twinsburg, OH"}]}], "slug": "summit"}, "39155": {"county": [], "districts": {"cd": [{"d": "OH-14", "rep": "David P. Joyce", "w": 1.0}], "sh": [{"d": "OH House District 65", "rep": "David Thomas", "w": 0.607}, {"d": "OH House District 64", "rep": "Nick Santucci", "w": 0.393}], "ss": [{"d": "OH Senate District 32", "rep": "Sandy O'Brien", "w": 1.0}]}, "munis": [{"m": "Newton Falls", "p": [{"n": "David Hanson", "r": "Mayor, Newton Falls, OH"}]}, {"m": "Niles", "p": [{"n": "Steven Mientkiewicz", "r": "Mayor, Niles, OH"}]}, {"m": "Warren", "p": [{"n": "William Franklin", "r": "Mayor, Warren, OH"}]}], "slug": "trumbull"}, "39157": {"county": [], "districts": {"cd": [{"d": "OH-12", "rep": "Troy Balderson", "w": 0.573}, {"d": "OH-06", "rep": "Michael A. Rulli", "w": 0.427}], "sh": [{"d": "OH House District 51", "rep": "Jodi Salvo", "w": 1.0}], "ss": [{"d": "OH Senate District 31", "rep": "Al Landis", "w": 1.0}]}, "munis": [{"m": "Dover", "p": [{"n": "Shane Gunnoe", "r": "Mayor, Dover, OH"}]}, {"m": "New Philadelphia", "p": [{"n": "Joel Day", "r": "Mayor, New Philadelphia, OH"}]}, {"m": "Uhrichsville", "p": [{"n": "James Zucal", "r": "Mayor, Uhrichsville, OH"}]}], "slug": "tuscarawas"}, "39159": {"county": [], "districts": {"cd": [{"d": "OH-04", "rep": "Jim Jordan", "w": 1.0}], "sh": [{"d": "OH House District 86", "rep": "Tracy Richardson", "w": 1.0}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 1.0}]}, "munis": [], "slug": "union"}, "39161": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 1.0}], "sh": [{"d": "OH House District 82", "rep": "Roy Klopfenstein", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Van Wert", "p": [{"n": "Kenneth J. Markward", "r": "Mayor, Van Wert, OH"}]}], "slug": "van-wert"}, "39163": {"county": [], "districts": {"cd": [{"d": "OH-02", "rep": "David J. Taylor", "w": 1.0}], "sh": [{"d": "OH House District 92", "rep": "Mark Johnson", "w": 1.0}], "ss": [{"d": "OH Senate District 17", "rep": "Shane Wilkin", "w": 1.0}]}, "munis": [], "slug": "vinton"}, "39165": {"county": [], "districts": {"cd": [{"d": "OH-01", "rep": "Greg Landsman", "w": 0.999}], "sh": [{"d": "OH House District 55", "rep": "Michelle Teska", "w": 0.696}, {"d": "OH House District 56", "rep": "Adam Mathews", "w": 0.303}], "ss": [{"d": "OH Senate District 7", "rep": "Steve Wilson", "w": 1.0}]}, "munis": [{"m": "Franklin", "p": [{"n": "Brent Centers", "r": "Mayor, Franklin, OH"}]}, {"m": "Lebanon", "p": [{"n": "Mark Messer", "r": "Mayor, Lebanon, OH"}]}, {"m": "Springboro", "p": [{"n": "John Agenbroad", "r": "Mayor, Springboro, OH"}]}], "slug": "warren"}, "39167": {"county": [], "districts": {"cd": [{"d": "OH-06", "rep": "Michael A. Rulli", "w": 0.999}], "sh": [{"d": "OH House District 94", "rep": "Kevin Ritter", "w": 1.0}], "ss": [{"d": "OH Senate District 30", "rep": "Brian Chavez", "w": 1.0}]}, "munis": [{"m": "Marietta", "p": [{"n": "Josh Schlicher", "r": "Mayor, Marietta, OH"}]}], "slug": "washington"}, "39169": {"county": [], "districts": {"cd": [{"d": "OH-07", "rep": "Max L. Miller", "w": 1.0}], "sh": [{"d": "OH House District 77", "rep": "Meredith Craig", "w": 1.0}], "ss": [{"d": "OH Senate District 31", "rep": "Al Landis", "w": 1.0}]}, "munis": [{"m": "Orrville", "p": [{"n": "Matthew Plybon", "r": "Mayor, Orrville, OH"}]}, {"m": "Wooster", "p": [{"n": "Robert J. Reynolds", "r": "Mayor, Wooster, OH"}]}], "slug": "wayne"}, "39171": {"county": [], "districts": {"cd": [{"d": "OH-09", "rep": "Marcy Kaptur", "w": 1.0}], "sh": [{"d": "OH House District 81", "rep": "Jim Hoops", "w": 1.0}], "ss": [{"d": "OH Senate District 1", "rep": "Rob McColley", "w": 1.0}]}, "munis": [{"m": "Bryan", "p": [{"n": "Carrie Schlade", "r": "Mayor, Bryan, OH"}]}], "slug": "williams"}, "39173": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 0.84}, {"d": "OH-09", "rep": "Marcy Kaptur", "w": 0.16}], "sh": [{"d": "OH House District 75", "rep": "Haraz Ghanbari", "w": 0.955}, {"d": "OH House District 44", "rep": "Josh Williams", "w": 0.045}], "ss": [{"d": "OH Senate District 2", "rep": "Theresa Gavarone", "w": 1.0}]}, "munis": [{"m": "Bowling Green", "p": [{"n": "Mike Aspacher", "r": "Mayor, Bowling Green, OH"}]}, {"m": "Perrysburg", "p": [{"n": "Tom Mackin", "r": "Mayor, Perrysburg, OH"}]}, {"m": "Rossford", "p": [{"n": "Neil A. MacKinnon III", "r": "Mayor, Rossford, OH"}]}], "slug": "wood"}, "39175": {"county": [], "districts": {"cd": [{"d": "OH-05", "rep": "Robert E. Latta", "w": 0.871}, {"d": "OH-04", "rep": "Jim Jordan", "w": 0.129}], "sh": [{"d": "OH House District 87", "rep": "Riordan McClain", "w": 1.0}], "ss": [{"d": "OH Senate District 26", "rep": "Bill Reineke", "w": 1.0}]}, "munis": [], "slug": "wyandot"}, "40001": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 86", "rep": "David Hardin", "w": 1.0}], "ss": [{"d": "OK Senate District 4", "rep": "Tom Woods", "w": 1.0}]}, "munis": [], "slug": "adair"}, "40003": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 58", "rep": "Carl Newton", "w": 1.0}], "ss": [{"d": "OK Senate District 19", "rep": "Roland Pederson", "w": 1.0}]}, "munis": [], "slug": "alfalfa"}, "40005": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 22", "rep": "Ryan Eaves", "w": 0.81}, {"d": "OK House District 19", "rep": "Justin Humphrey", "w": 0.19}], "ss": [{"d": "OK Senate District 6", "rep": "David Bullard", "w": 1.0}]}, "munis": [], "slug": "atoka"}, "40007": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 61", "rep": "Kenton Patzkowsky", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "beaver"}, "40009": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 57", "rep": "Anthony Moore", "w": 0.669}, {"d": "OK House District 55", "rep": "Nick Archer", "w": 0.331}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "beckham"}, "40011": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 59", "rep": "Mike Dobrinski", "w": 0.773}, {"d": "OK House District 55", "rep": "Nick Archer", "w": 0.226}], "ss": [{"d": "OK Senate District 26", "rep": "Darcy Jech", "w": 1.0}]}, "munis": [], "slug": "blaine"}, "40013": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 0.998}], "sh": [{"d": "OK House District 19", "rep": "Justin Humphrey", "w": 0.728}, {"d": "OK House District 21", "rep": "Cody Maynard", "w": 0.272}], "ss": [{"d": "OK Senate District 6", "rep": "David Bullard", "w": 0.999}]}, "munis": [], "slug": "bryan"}, "40015": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 65", "rep": "Toni Hasenbeck", "w": 0.82}, {"d": "OK House District 55", "rep": "Nick Archer", "w": 0.133}, {"d": "OK House District 56", "rep": "Dick Lowe", "w": 0.048}], "ss": [{"d": "OK Senate District 26", "rep": "Darcy Jech", "w": 1.0}]}, "munis": [], "slug": "caddo"}, "40017": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 0.814}, {"d": "OK-05", "rep": "Stephanie I. Bice", "w": 0.185}], "sh": [{"d": "OK House District 55", "rep": "Nick Archer", "w": 0.364}, {"d": "OK House District 56", "rep": "Dick Lowe", "w": 0.306}, {"d": "OK House District 60", "rep": "Mike Kelley", "w": 0.155}, {"d": "OK House District 41", "rep": "Denise Crosswhite Hader", "w": 0.082}, {"d": "OK House District 47", "rep": "Brian Hill", "w": 0.077}, {"d": "OK House District 43", "rep": "Jay Steagall", "w": 0.016}], "ss": [{"d": "OK Senate District 26", "rep": "Darcy Jech", "w": 0.503}, {"d": "OK Senate District 23", "rep": "Lonnie Paxton", "w": 0.294}, {"d": "OK Senate District 22", "rep": "Kristen Thompson", "w": 0.109}, {"d": "OK Senate District 18", "rep": "Jack Stewart", "w": 0.067}, {"d": "OK Senate District 45", "rep": "Paul Rosino", "w": 0.024}]}, "munis": [], "slug": "canadian"}, "40019": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 1.0}], "sh": [{"d": "OK House District 48", "rep": "Tammy Townley", "w": 0.557}, {"d": "OK House District 49", "rep": "Josh Cantrell", "w": 0.443}], "ss": [{"d": "OK Senate District 14", "rep": "Jerry Alvord", "w": 1.0}]}, "munis": [], "slug": "carter"}, "40021": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 4", "rep": "Bob Culver", "w": 0.597}, {"d": "OK House District 86", "rep": "David Hardin", "w": 0.307}, {"d": "OK House District 14", "rep": "Chris Sneed", "w": 0.096}], "ss": [{"d": "OK Senate District 3", "rep": "Julie McIntosh", "w": 0.574}, {"d": "OK Senate District 9", "rep": "Avery Frix", "w": 0.213}, {"d": "OK Senate District 4", "rep": "Tom Woods", "w": 0.213}]}, "munis": [], "slug": "cherokee"}, "40023": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 0.997}], "sh": [{"d": "OK House District 19", "rep": "Justin Humphrey", "w": 0.999}], "ss": [{"d": "OK Senate District 6", "rep": "David Bullard", "w": 0.999}]}, "munis": [{"m": "Hugo", "p": [{"n": "Ernest McCarty", "r": "Mayor, Hugo, OK"}]}], "slug": "choctaw"}, "40025": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 61", "rep": "Kenton Patzkowsky", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "cimarron"}, "40027": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 1.0}], "sh": [{"d": "OK House District 27", "rep": "Danny Sterling", "w": 0.34}, {"d": "OK House District 20", "rep": "Jonathan Wilk", "w": 0.153}, {"d": "OK House District 42", "rep": "Cindy Roe", "w": 0.103}, {"d": "OK House District 45", "rep": "Annie Menz", "w": 0.096}, {"d": "OK House District 46", "rep": "Jacob Rosecrants", "w": 0.068}, {"d": "OK House District 36", "rep": "John George", "w": 0.068}, {"d": "OK House District 90", "rep": "Emily Gise", "w": 0.037}, {"d": "OK House District 95", "rep": "Max Wolfley", "w": 0.035}, {"d": "OK House District 91", "rep": "Chris Kannady", "w": 0.035}, {"d": "OK House District 53", "rep": "Jason Blair", "w": 0.03}, {"d": "OK House District 44", "rep": "Jared Deck", "w": 0.019}, {"d": "OK House District 54", "rep": "Kevin West", "w": 0.017}], "ss": [{"d": "OK Senate District 15", "rep": "Lisa Standridge", "w": 0.625}, {"d": "OK Senate District 43", "rep": "Kendal Sacchieri", "w": 0.152}, {"d": "OK Senate District 16", "rep": "Mary Boren", "w": 0.084}, {"d": "OK Senate District 24", "rep": "Darrell Weaver", "w": 0.065}, {"d": "OK Senate District 45", "rep": "Paul Rosino", "w": 0.05}, {"d": "OK Senate District 17", "rep": "Shane Jett", "w": 0.025}]}, "munis": [{"m": "Moore", "p": [{"n": "Glenn Lewis", "r": "Mayor, Moore, OK"}]}, {"m": "Norman", "p": [{"n": "Larry Heikkila", "r": "Mayor, Norman, OK"}]}], "slug": "cleveland"}, "40029": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 18", "rep": "David Smith", "w": 0.708}, {"d": "OK House District 22", "rep": "Ryan Eaves", "w": 0.292}], "ss": [{"d": "OK Senate District 14", "rep": "Jerry Alvord", "w": 1.0}]}, "munis": [], "slug": "coal"}, "40031": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 1.0}], "sh": [{"d": "OK House District 63", "rep": "Trey Caldwell", "w": 0.624}, {"d": "OK House District 65", "rep": "Toni Hasenbeck", "w": 0.264}, {"d": "OK House District 64", "rep": "Rande Worthen", "w": 0.094}, {"d": "OK House District 62", "rep": "Daniel Pae", "w": 0.017}], "ss": [{"d": "OK Senate District 32", "rep": "Dusty Deevers", "w": 0.544}, {"d": "OK Senate District 31", "rep": "Spencer Kern", "w": 0.456}]}, "munis": [{"m": "Lawton", "p": [{"n": "Stan Booker", "r": "Mayor, Lawton, OK"}]}], "slug": "comanche"}, "40033": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.999}], "sh": [{"d": "OK House District 63", "rep": "Trey Caldwell", "w": 1.0}], "ss": [{"d": "OK Senate District 31", "rep": "Spencer Kern", "w": 1.0}]}, "munis": [], "slug": "cotton"}, "40035": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 7", "rep": "Steve Bashore", "w": 0.677}, {"d": "OK House District 6", "rep": "Rusty Cornwell", "w": 0.323}], "ss": [{"d": "OK Senate District 1", "rep": "Micheal Bergstrom", "w": 1.0}]}, "munis": [], "slug": "craig"}, "40037": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 0.866}, {"d": "OK-01", "rep": "Kevin Hern", "w": 0.134}], "sh": [{"d": "OK House District 29", "rep": "Kyle Hilbert", "w": 0.727}, {"d": "OK House District 35", "rep": "Dillon Travis", "w": 0.158}, {"d": "OK House District 30", "rep": "Mark Lawson", "w": 0.081}, {"d": "OK House District 24", "rep": "Chris Banning", "w": 0.033}], "ss": [{"d": "OK Senate District 12", "rep": "Todd Gollihare", "w": 0.509}, {"d": "OK Senate District 8", "rep": "Bryan Logan", "w": 0.275}, {"d": "OK Senate District 21", "rep": "Randy Grellner", "w": 0.216}]}, "munis": [{"m": "Sapulpa", "p": [{"n": "Craig Henderson", "r": "Mayor, Sapulpa, OK"}]}], "slug": "creek"}, "40039": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 57", "rep": "Anthony Moore", "w": 1.0}], "ss": [{"d": "OK Senate District 26", "rep": "Darcy Jech", "w": 1.0}]}, "munis": [], "slug": "custer"}, "40041": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 5", "rep": "Josh West", "w": 0.622}, {"d": "OK House District 86", "rep": "David Hardin", "w": 0.321}, {"d": "OK House District 7", "rep": "Steve Bashore", "w": 0.057}], "ss": [{"d": "OK Senate District 4", "rep": "Tom Woods", "w": 0.886}, {"d": "OK Senate District 1", "rep": "Micheal Bergstrom", "w": 0.114}]}, "munis": [], "slug": "delaware"}, "40043": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 59", "rep": "Mike Dobrinski", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "dewey"}, "40045": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 61", "rep": "Kenton Patzkowsky", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "ellis"}, "40047": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 38", "rep": "John Pfeiffer", "w": 0.55}, {"d": "OK House District 59", "rep": "Mike Dobrinski", "w": 0.271}, {"d": "OK House District 58", "rep": "Carl Newton", "w": 0.161}, {"d": "OK House District 40", "rep": "Chad Caldwell", "w": 0.017}], "ss": [{"d": "OK Senate District 19", "rep": "Roland Pederson", "w": 1.0}]}, "munis": [{"m": "Enid", "p": [{"n": "David Mason", "r": "Mayor, Enid, OK"}]}], "slug": "garfield"}, "40049": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 1.0}], "sh": [{"d": "OK House District 42", "rep": "Cindy Roe", "w": 0.601}, {"d": "OK House District 48", "rep": "Tammy Townley", "w": 0.399}], "ss": [{"d": "OK Senate District 13", "rep": "Jonathan Wingard", "w": 0.985}, {"d": "OK Senate District 43", "rep": "Kendal Sacchieri", "w": 0.015}]}, "munis": [], "slug": "garvin"}, "40051": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.998}], "sh": [{"d": "OK House District 51", "rep": "Brad Boles", "w": 0.664}, {"d": "OK House District 56", "rep": "Dick Lowe", "w": 0.336}], "ss": [{"d": "OK Senate District 23", "rep": "Lonnie Paxton", "w": 0.541}, {"d": "OK Senate District 43", "rep": "Kendal Sacchieri", "w": 0.459}]}, "munis": [], "slug": "grady"}, "40053": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 38", "rep": "John Pfeiffer", "w": 1.0}], "ss": [{"d": "OK Senate District 19", "rep": "Roland Pederson", "w": 1.0}]}, "munis": [], "slug": "grant"}, "40055": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 52", "rep": "Gerrid Kendrix", "w": 1.0}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "greer"}, "40057": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 52", "rep": "Gerrid Kendrix", "w": 1.0}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "harmon"}, "40059": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 61", "rep": "Kenton Patzkowsky", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "harper"}, "40061": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 15", "rep": "Tim Turner", "w": 1.0}], "ss": [{"d": "OK Senate District 7", "rep": "Warren Hamilton", "w": 1.0}]}, "munis": [], "slug": "haskell"}, "40063": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 0.999}], "sh": [{"d": "OK House District 18", "rep": "David Smith", "w": 1.0}], "ss": [{"d": "OK Senate District 13", "rep": "Jonathan Wingard", "w": 1.0}]}, "munis": [], "slug": "hughes"}, "40065": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 0.995}], "sh": [{"d": "OK House District 52", "rep": "Gerrid Kendrix", "w": 0.999}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "40067": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.998}], "sh": [{"d": "OK House District 50", "rep": "Stacy Adams", "w": 0.999}], "ss": [{"d": "OK Senate District 31", "rep": "Spencer Kern", "w": 0.999}]}, "munis": [], "slug": "jefferson"}, "40069": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 22", "rep": "Ryan Eaves", "w": 1.0}], "ss": [{"d": "OK Senate District 14", "rep": "Jerry Alvord", "w": 0.774}, {"d": "OK Senate District 6", "rep": "David Bullard", "w": 0.226}]}, "munis": [], "slug": "johnston"}, "40071": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 38", "rep": "John Pfeiffer", "w": 0.671}, {"d": "OK House District 37", "rep": "Ken Luttrell", "w": 0.329}], "ss": [{"d": "OK Senate District 10", "rep": "Bill Coleman", "w": 0.606}, {"d": "OK Senate District 19", "rep": "Roland Pederson", "w": 0.394}]}, "munis": [], "slug": "kay"}, "40073": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 59", "rep": "Mike Dobrinski", "w": 0.947}, {"d": "OK House District 41", "rep": "Denise Crosswhite Hader", "w": 0.053}], "ss": [{"d": "OK Senate District 26", "rep": "Darcy Jech", "w": 0.709}, {"d": "OK Senate District 20", "rep": "Chuck Hall", "w": 0.291}]}, "munis": [], "slug": "kingfisher"}, "40075": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 63", "rep": "Trey Caldwell", "w": 0.572}, {"d": "OK House District 52", "rep": "Gerrid Kendrix", "w": 0.428}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "kiowa"}, "40077": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 17", "rep": "Jim Grego", "w": 1.0}], "ss": [{"d": "OK Senate District 7", "rep": "Warren Hamilton", "w": 1.0}]}, "munis": [], "slug": "latimer"}, "40079": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 1", "rep": "Eddy Dempsey", "w": 0.537}, {"d": "OK House District 3", "rep": "Rick West", "w": 0.392}, {"d": "OK House District 15", "rep": "Tim Turner", "w": 0.072}], "ss": [{"d": "OK Senate District 5", "rep": "George Burns", "w": 0.969}, {"d": "OK Senate District 7", "rep": "Warren Hamilton", "w": 0.03}]}, "munis": [], "slug": "le-flore"}, "40081": {"county": [], "districts": {"cd": [{"d": "OK-05", "rep": "Stephanie I. Bice", "w": 0.999}], "sh": [{"d": "OK House District 32", "rep": "Jim Shaw", "w": 1.0}], "ss": [{"d": "OK Senate District 28", "rep": "Grant Green", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "40083": {"county": [], "districts": {"cd": [{"d": "OK-05", "rep": "Stephanie I. Bice", "w": 0.574}, {"d": "OK-03", "rep": "Frank D. Lucas", "w": 0.426}], "sh": [{"d": "OK House District 38", "rep": "John Pfeiffer", "w": 0.489}, {"d": "OK House District 31", "rep": "Collin Duel", "w": 0.232}, {"d": "OK House District 33", "rep": "Molly Jenkins", "w": 0.139}, {"d": "OK House District 32", "rep": "Jim Shaw", "w": 0.086}, {"d": "OK House District 41", "rep": "Denise Crosswhite Hader", "w": 0.054}], "ss": [{"d": "OK Senate District 20", "rep": "Chuck Hall", "w": 0.81}, {"d": "OK Senate District 28", "rep": "Grant Green", "w": 0.19}]}, "munis": [], "slug": "logan"}, "40085": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.996}], "sh": [{"d": "OK House District 49", "rep": "Josh Cantrell", "w": 0.998}], "ss": [{"d": "OK Senate District 31", "rep": "Spencer Kern", "w": 0.998}]}, "munis": [], "slug": "love"}, "40087": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.999}], "sh": [{"d": "OK House District 42", "rep": "Cindy Roe", "w": 0.62}, {"d": "OK House District 20", "rep": "Jonathan Wilk", "w": 0.292}, {"d": "OK House District 25", "rep": "Ronny Johns", "w": 0.088}], "ss": [{"d": "OK Senate District 43", "rep": "Kendal Sacchieri", "w": 0.822}, {"d": "OK Senate District 13", "rep": "Jonathan Wingard", "w": 0.178}]}, "munis": [], "slug": "mcclain"}, "40089": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 0.993}, {"d": "TX-04", "rep": "Pat Fallon", "w": 0.007}], "sh": [{"d": "OK House District 1", "rep": "Eddy Dempsey", "w": 0.999}], "ss": [{"d": "OK Senate District 5", "rep": "George Burns", "w": 0.999}]}, "munis": [], "slug": "mccurtain"}, "40091": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 15", "rep": "Tim Turner", "w": 0.864}, {"d": "OK House District 13", "rep": "Neil Hays", "w": 0.136}], "ss": [{"d": "OK Senate District 8", "rep": "Bryan Logan", "w": 1.0}]}, "munis": [], "slug": "mcintosh"}, "40093": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 58", "rep": "Carl Newton", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "major"}, "40095": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 49", "rep": "Josh Cantrell", "w": 0.71}, {"d": "OK House District 21", "rep": "Cody Maynard", "w": 0.289}], "ss": [{"d": "OK Senate District 14", "rep": "Jerry Alvord", "w": 1.0}]}, "munis": [], "slug": "marshall"}, "40097": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 8", "rep": "Tom Gann", "w": 0.361}, {"d": "OK House District 5", "rep": "Josh West", "w": 0.331}, {"d": "OK House District 6", "rep": "Rusty Cornwell", "w": 0.183}, {"d": "OK House District 86", "rep": "David Hardin", "w": 0.125}], "ss": [{"d": "OK Senate District 1", "rep": "Micheal Bergstrom", "w": 0.597}, {"d": "OK Senate District 3", "rep": "Julie McIntosh", "w": 0.403}]}, "munis": [], "slug": "mayes"}, "40099": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 1.0}], "sh": [{"d": "OK House District 22", "rep": "Ryan Eaves", "w": 0.75}, {"d": "OK House District 48", "rep": "Tammy Townley", "w": 0.25}], "ss": [{"d": "OK Senate District 14", "rep": "Jerry Alvord", "w": 0.609}, {"d": "OK Senate District 13", "rep": "Jonathan Wingard", "w": 0.391}]}, "munis": [], "slug": "murray"}, "40101": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 13", "rep": "Neil Hays", "w": 0.43}, {"d": "OK House District 15", "rep": "Tim Turner", "w": 0.385}, {"d": "OK House District 14", "rep": "Chris Sneed", "w": 0.12}, {"d": "OK House District 16", "rep": "Scott Fetgatter", "w": 0.064}], "ss": [{"d": "OK Senate District 8", "rep": "Bryan Logan", "w": 0.513}, {"d": "OK Senate District 9", "rep": "Avery Frix", "w": 0.487}]}, "munis": [], "slug": "muskogee"}, "40103": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 38", "rep": "John Pfeiffer", "w": 0.6}, {"d": "OK House District 35", "rep": "Dillon Travis", "w": 0.4}], "ss": [{"d": "OK Senate District 20", "rep": "Chuck Hall", "w": 1.0}]}, "munis": [], "slug": "noble"}, "40105": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 10", "rep": "Judd Strom", "w": 0.726}, {"d": "OK House District 6", "rep": "Rusty Cornwell", "w": 0.274}], "ss": [{"d": "OK Senate District 29", "rep": "Julie Daniels", "w": 1.0}]}, "munis": [], "slug": "nowata"}, "40107": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 0.998}], "sh": [{"d": "OK House District 18", "rep": "David Smith", "w": 1.0}], "ss": [{"d": "OK Senate District 8", "rep": "Bryan Logan", "w": 1.0}]}, "munis": [], "slug": "okfuskee"}, "40109": {"county": [], "districts": {"cd": [{"d": "OK-05", "rep": "Stephanie I. Bice", "w": 0.814}, {"d": "OK-03", "rep": "Frank D. Lucas", "w": 0.121}, {"d": "OK-04", "rep": "Tom Cole", "w": 0.064}], "sh": [{"d": "OK House District 36", "rep": "John George", "w": 0.283}, {"d": "OK House District 97", "rep": "Aletia Timmons", "w": 0.114}, {"d": "OK House District 96", "rep": "Preston Stinson", "w": 0.103}, {"d": "OK House District 101", "rep": "Robert Manger", "w": 0.064}, {"d": "OK House District 90", "rep": "Emily Gise", "w": 0.053}, {"d": "OK House District 41", "rep": "Denise Crosswhite Hader", "w": 0.043}, {"d": "OK House District 95", "rep": "Max Wolfley", "w": 0.042}, {"d": "OK House District 39", "rep": "Erick Harris", "w": 0.028}, {"d": "OK House District 82", "rep": "Nicole Miller", "w": 0.028}, {"d": "OK House District 94", "rep": "Andy Fugate", "w": 0.026}, {"d": "OK House District 85", "rep": "Cyndi Munson", "w": 0.025}, {"d": "OK House District 81", "rep": "Mike Osburn", "w": 0.021}, {"d": "OK House District 83", "rep": "Eric Roberts", "w": 0.018}, {"d": "OK House District 31", "rep": "Collin Duel", "w": 0.018}, {"d": "OK House District 100", "rep": "Marilyn Stark", "w": 0.016}, {"d": "OK House District 84", "rep": "Tammy West", "w": 0.015}, {"d": "OK House District 89", "rep": "Arturo Alonso", "w": 0.015}, {"d": "OK House District 87", "rep": "Ellyn Hefner", "w": 0.013}, {"d": "OK House District 88", "rep": "Ellen Pogemiller", "w": 0.011}, {"d": "OK House District 93", "rep": "Mickey Dollens", "w": 0.009}, {"d": "OK House District 54", "rep": "Kevin West", "w": 0.006}], "ss": [{"d": "OK Senate District 42", "rep": "Brenda Stanley", "w": 0.167}, {"d": "OK Senate District 28", "rep": "Grant Green", "w": 0.14}, {"d": "OK Senate District 48", "rep": "Nikki Nice", "w": 0.125}, {"d": "OK Senate District 41", "rep": "Adam Pugh", "w": 0.119}, {"d": "OK Senate District 17", "rep": "Shane Jett", "w": 0.111}, {"d": "OK Senate District 22", "rep": "Kristen Thompson", "w": 0.073}, {"d": "OK Senate District 47", "rep": "Kelly Hines", "w": 0.054}, {"d": "OK Senate District 46", "rep": "Mark Mann", "w": 0.049}, {"d": "OK Senate District 40", "rep": "Carri Hicks", "w": 0.046}, {"d": "OK Senate District 44", "rep": "Michael Brooks", "w": 0.043}, {"d": "OK Senate District 45", "rep": "Paul Rosino", "w": 0.034}, {"d": "OK Senate District 30", "rep": "Julia Kirt", "w": 0.03}, {"d": "OK Senate District 18", "rep": "Jack Stewart", "w": 0.009}]}, "munis": [{"m": "Oklahoma City", "p": [{"n": "Mick Cornett", "r": "Mayor, Oklahoma City, OK"}]}], "slug": "oklahoma"}, "40111": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 16", "rep": "Scott Fetgatter", "w": 0.832}, {"d": "OK House District 24", "rep": "Chris Banning", "w": 0.168}], "ss": [{"d": "OK Senate District 8", "rep": "Bryan Logan", "w": 1.0}]}, "munis": [], "slug": "okmulgee"}, "40113": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 37", "rep": "Ken Luttrell", "w": 0.522}, {"d": "OK House District 10", "rep": "Judd Strom", "w": 0.291}, {"d": "OK House District 35", "rep": "Dillon Travis", "w": 0.105}, {"d": "OK House District 66", "rep": "Clay Staires", "w": 0.079}], "ss": [{"d": "OK Senate District 10", "rep": "Bill Coleman", "w": 0.99}, {"d": "OK Senate District 11", "rep": "Regina Goodwin", "w": 0.01}]}, "munis": [], "slug": "osage"}, "40115": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 7", "rep": "Steve Bashore", "w": 1.0}], "ss": [{"d": "OK Senate District 1", "rep": "Micheal Bergstrom", "w": 1.0}]}, "munis": [], "slug": "ottawa"}, "40117": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 35", "rep": "Dillon Travis", "w": 1.0}], "ss": [{"d": "OK Senate District 20", "rep": "Chuck Hall", "w": 1.0}]}, "munis": [], "slug": "pawnee"}, "40119": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 0.999}], "sh": [{"d": "OK House District 33", "rep": "Molly Jenkins", "w": 0.801}, {"d": "OK House District 35", "rep": "Dillon Travis", "w": 0.105}, {"d": "OK House District 32", "rep": "Jim Shaw", "w": 0.062}, {"d": "OK House District 34", "rep": "Trish Ranson", "w": 0.032}], "ss": [{"d": "OK Senate District 21", "rep": "Randy Grellner", "w": 0.603}, {"d": "OK Senate District 20", "rep": "Chuck Hall", "w": 0.398}]}, "munis": [{"m": "Stillwater", "p": [{"n": "Will Joyce", "r": "Mayor, Stillwater, OK"}]}], "slug": "payne"}, "40121": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 17", "rep": "Jim Grego", "w": 0.616}, {"d": "OK House District 18", "rep": "David Smith", "w": 0.354}, {"d": "OK House District 15", "rep": "Tim Turner", "w": 0.03}], "ss": [{"d": "OK Senate District 7", "rep": "Warren Hamilton", "w": 1.0}]}, "munis": [], "slug": "pittsburg"}, "40123": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.998}], "sh": [{"d": "OK House District 25", "rep": "Ronny Johns", "w": 1.0}], "ss": [{"d": "OK Senate District 13", "rep": "Jonathan Wingard", "w": 1.0}]}, "munis": [], "slug": "pontotoc"}, "40125": {"county": [], "districts": {"cd": [{"d": "OK-05", "rep": "Stephanie I. Bice", "w": 0.999}], "sh": [{"d": "OK House District 28", "rep": "Danny Williams", "w": 0.429}, {"d": "OK House District 27", "rep": "Danny Sterling", "w": 0.345}, {"d": "OK House District 26", "rep": "Dell Kerbs", "w": 0.154}, {"d": "OK House District 25", "rep": "Ronny Johns", "w": 0.072}], "ss": [{"d": "OK Senate District 17", "rep": "Shane Jett", "w": 0.792}, {"d": "OK Senate District 28", "rep": "Grant Green", "w": 0.208}]}, "munis": [], "slug": "pottawatomie"}, "40127": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 19", "rep": "Justin Humphrey", "w": 1.0}], "ss": [{"d": "OK Senate District 5", "rep": "George Burns", "w": 0.65}, {"d": "OK Senate District 6", "rep": "David Bullard", "w": 0.349}]}, "munis": [], "slug": "pushmataha"}, "40129": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 57", "rep": "Anthony Moore", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "roger-mills"}, "40131": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 0.947}, {"d": "OK-01", "rep": "Kevin Hern", "w": 0.053}], "sh": [{"d": "OK House District 6", "rep": "Rusty Cornwell", "w": 0.509}, {"d": "OK House District 8", "rep": "Tom Gann", "w": 0.275}, {"d": "OK House District 23", "rep": "Derrick Hildebrant", "w": 0.109}, {"d": "OK House District 9", "rep": "Mark Lepak", "w": 0.087}, {"d": "OK House District 74", "rep": "Kevin Norwood", "w": 0.019}], "ss": [{"d": "OK Senate District 29", "rep": "Julie Daniels", "w": 0.458}, {"d": "OK Senate District 2", "rep": "Ally Seifried", "w": 0.386}, {"d": "OK Senate District 3", "rep": "Julie McIntosh", "w": 0.095}, {"d": "OK Senate District 1", "rep": "Micheal Bergstrom", "w": 0.061}]}, "munis": [], "slug": "rogers"}, "40133": {"county": [], "districts": {"cd": [{"d": "OK-05", "rep": "Stephanie I. Bice", "w": 0.995}], "sh": [{"d": "OK House District 28", "rep": "Danny Williams", "w": 1.0}], "ss": [{"d": "OK Senate District 28", "rep": "Grant Green", "w": 1.0}]}, "munis": [], "slug": "seminole"}, "40135": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 2", "rep": "Jim Olsen", "w": 1.0}], "ss": [{"d": "OK Senate District 4", "rep": "Tom Woods", "w": 0.747}, {"d": "OK Senate District 7", "rep": "Warren Hamilton", "w": 0.253}]}, "munis": [], "slug": "sequoyah"}, "40137": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 1.0}], "sh": [{"d": "OK House District 50", "rep": "Stacy Adams", "w": 0.669}, {"d": "OK House District 51", "rep": "Brad Boles", "w": 0.331}], "ss": [{"d": "OK Senate District 31", "rep": "Spencer Kern", "w": 0.799}, {"d": "OK Senate District 43", "rep": "Kendal Sacchieri", "w": 0.201}]}, "munis": [], "slug": "stephens"}, "40139": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 61", "rep": "Kenton Patzkowsky", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "texas"}, "40141": {"county": [], "districts": {"cd": [{"d": "OK-04", "rep": "Tom Cole", "w": 0.997}], "sh": [{"d": "OK House District 63", "rep": "Trey Caldwell", "w": 1.0}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "tillman"}, "40143": {"county": [], "districts": {"cd": [{"d": "OK-01", "rep": "Kevin Hern", "w": 1.0}], "sh": [{"d": "OK House District 11", "rep": "John Kane", "w": 0.124}, {"d": "OK House District 24", "rep": "Chris Banning", "w": 0.106}, {"d": "OK House District 66", "rep": "Clay Staires", "w": 0.085}, {"d": "OK House District 16", "rep": "Scott Fetgatter", "w": 0.081}, {"d": "OK House District 29", "rep": "Kyle Hilbert", "w": 0.07}, {"d": "OK House District 72", "rep": "Michelle McCane", "w": 0.069}, {"d": "OK House District 77", "rep": "John Waldron", "w": 0.065}, {"d": "OK House District 68", "rep": "Mike Lay", "w": 0.062}, {"d": "OK House District 80", "rep": "Stan May", "w": 0.039}, {"d": "OK House District 69", "rep": "Mark Tedford", "w": 0.036}, {"d": "OK House District 74", "rep": "Kevin Norwood", "w": 0.036}, {"d": "OK House District 75", "rep": "T.J. Marti", "w": 0.026}, {"d": "OK House District 73", "rep": "Ron Stewart", "w": 0.025}, {"d": "OK House District 70", "rep": "Suzanne Schreiber", "w": 0.023}, {"d": "OK House District 23", "rep": "Derrick Hildebrant", "w": 0.022}, {"d": "OK House District 79", "rep": "Melissa Provenzano", "w": 0.021}, {"d": "OK House District 76", "rep": "Ross Ford", "w": 0.02}, {"d": "OK House District 78", "rep": "Meloyde Blancett", "w": 0.019}, {"d": "OK House District 67", "rep": "Rob Hall", "w": 0.018}, {"d": "OK House District 71", "rep": "Amanda Clinton", "w": 0.016}, {"d": "OK House District 30", "rep": "Mark Lawson", "w": 0.016}, {"d": "OK House District 98", "rep": "Gabe Woolley", "w": 0.015}, {"d": "OK House District 9", "rep": "Mark Lepak", "w": 0.005}], "ss": [{"d": "OK Senate District 25", "rep": "Brian Guthrie", "w": 0.2}, {"d": "OK Senate District 34", "rep": "Dana Prieto", "w": 0.174}, {"d": "OK Senate District 37", "rep": "Aaron Reinhardt", "w": 0.126}, {"d": "OK Senate District 12", "rep": "Todd Gollihare", "w": 0.118}, {"d": "OK Senate District 10", "rep": "Bill Coleman", "w": 0.088}, {"d": "OK Senate District 33", "rep": "Christi Gillespie", "w": 0.062}, {"d": "OK Senate District 11", "rep": "Regina Goodwin", "w": 0.062}, {"d": "OK Senate District 39", "rep": "Dave Rader", "w": 0.045}, {"d": "OK Senate District 2", "rep": "Ally Seifried", "w": 0.045}, {"d": "OK Senate District 35", "rep": "Jo Anna Dossett", "w": 0.044}, {"d": "OK Senate District 36", "rep": "John Haste", "w": 0.035}]}, "munis": [{"m": "Broken Arrow", "p": [{"n": "Debra Wimpee", "r": "Mayor, Broken Arrow, OK"}]}, {"m": "Tulsa", "p": [{"n": "Monroe Nichols", "r": "Mayor, Tulsa, OK"}]}], "slug": "tulsa"}, "40145": {"county": [], "districts": {"cd": [{"d": "OK-01", "rep": "Kevin Hern", "w": 0.591}, {"d": "OK-02", "rep": "Josh Brecheen", "w": 0.409}], "sh": [{"d": "OK House District 12", "rep": "Mark Chapman", "w": 0.677}, {"d": "OK House District 14", "rep": "Chris Sneed", "w": 0.126}, {"d": "OK House District 4", "rep": "Bob Culver", "w": 0.053}, {"d": "OK House District 13", "rep": "Neil Hays", "w": 0.046}, {"d": "OK House District 8", "rep": "Tom Gann", "w": 0.043}, {"d": "OK House District 23", "rep": "Derrick Hildebrant", "w": 0.031}, {"d": "OK House District 98", "rep": "Gabe Woolley", "w": 0.025}], "ss": [{"d": "OK Senate District 3", "rep": "Julie McIntosh", "w": 0.918}, {"d": "OK Senate District 36", "rep": "John Haste", "w": 0.082}]}, "munis": [], "slug": "wagoner"}, "40147": {"county": [], "districts": {"cd": [{"d": "OK-02", "rep": "Josh Brecheen", "w": 1.0}], "sh": [{"d": "OK House District 10", "rep": "Judd Strom", "w": 0.653}, {"d": "OK House District 11", "rep": "John Kane", "w": 0.347}], "ss": [{"d": "OK Senate District 29", "rep": "Julie Daniels", "w": 1.0}]}, "munis": [], "slug": "washington"}, "40149": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 55", "rep": "Nick Archer", "w": 1.0}], "ss": [{"d": "OK Senate District 38", "rep": "Brent Howard", "w": 1.0}]}, "munis": [], "slug": "washita"}, "40151": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 58", "rep": "Carl Newton", "w": 1.0}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "woods"}, "40153": {"county": [], "districts": {"cd": [{"d": "OK-03", "rep": "Frank D. Lucas", "w": 1.0}], "sh": [{"d": "OK House District 58", "rep": "Carl Newton", "w": 0.485}, {"d": "OK House District 61", "rep": "Kenton Patzkowsky", "w": 0.289}, {"d": "OK House District 59", "rep": "Mike Dobrinski", "w": 0.227}], "ss": [{"d": "OK Senate District 27", "rep": "Casey Murdock", "w": 1.0}]}, "munis": [], "slug": "woodward"}, "41001": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 0.999}], "sh": [{"d": "OR House District 60", "rep": "Mark Owens", "w": 1.0}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 1.0}]}, "munis": [], "slug": "baker"}, "41003": {"county": [], "districts": {"cd": [{"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.997}], "sh": [{"d": "OR House District 10", "rep": "David Gomberg", "w": 0.821}, {"d": "OR House District 16", "rep": "Sarah McDonald", "w": 0.168}, {"d": "OR House District 15", "rep": "Shelly Davis", "w": 0.011}], "ss": [{"d": "OR Senate District 5", "rep": "Dick Anderson", "w": 0.821}, {"d": "OR Senate District 8", "rep": "Sara Gelser Blouin", "w": 0.179}]}, "munis": [{"m": "Corvallis", "p": [{"n": "Biff Traber", "r": "Mayor, Corvallis, OR"}]}], "slug": "benton"}, "41005": {"county": [], "districts": {"cd": [{"d": "OR-05", "rep": "Janelle S. Bynum", "w": 0.68}, {"d": "OR-03", "rep": "Maxine Dexter", "w": 0.289}, {"d": "OR-06", "rep": "Andrea Salinas", "w": 0.018}, {"d": "OR-02", "rep": "Cliff Bentz", "w": 0.013}], "sh": [{"d": "OR House District 18", "rep": "Rick Lewis", "w": 0.575}, {"d": "OR House District 52", "rep": "Jeff Helfrich", "w": 0.2}, {"d": "OR House District 51", "rep": "Matt Bunch", "w": 0.12}, {"d": "OR House District 48", "rep": "Lamar Wise", "w": 0.02}, {"d": "OR House District 37", "rep": "Jules Walters", "w": 0.019}, {"d": "OR House District 26", "rep": "Sue Rieke Smith", "w": 0.016}, {"d": "OR House District 39", "rep": "April Dobson", "w": 0.014}, {"d": "OR House District 57", "rep": "Greg Smith", "w": 0.013}, {"d": "OR House District 40", "rep": "Annessa Hartman", "w": 0.012}, {"d": "OR House District 38", "rep": "Daniel Nguyen", "w": 0.006}, {"d": "OR House District 41", "rep": "Mark Gamba", "w": 0.005}], "ss": [{"d": "OR Senate District 9", "rep": "Fred Girod", "w": 0.575}, {"d": "OR Senate District 26", "rep": "Christine Drazan", "w": 0.32}, {"d": "OR Senate District 20", "rep": "Mark Meek", "w": 0.026}, {"d": "OR Senate District 19", "rep": "Rob Wagner", "w": 0.025}, {"d": "OR Senate District 24", "rep": "Kayse Jama", "w": 0.02}, {"d": "OR Senate District 13", "rep": "Courtney Neron Misslin", "w": 0.016}, {"d": "OR Senate District 29", "rep": "Todd Nash", "w": 0.013}, {"d": "OR Senate District 21", "rep": "Kathleen Taylor", "w": 0.005}]}, "munis": [{"m": "Estacada", "p": [{"n": "Sean Drinkwine", "r": "Mayor, Estacada, OR"}]}, {"m": "Lake Oswego", "p": [{"n": "Kent Studebaker", "r": "Mayor, Lake Oswego, OR"}]}, {"m": "Wilsonville", "p": [{"n": "Julie Fitzgerald", "r": "Mayor, Wilsonville, OR"}]}], "slug": "clackamas"}, "41007": {"county": [], "districts": {"cd": [{"d": "OR-01", "rep": "Suzanne Bonamici", "w": 0.786}], "sh": [{"d": "OR House District 32", "rep": "Cyrus Javadi", "w": 0.787}], "ss": [{"d": "OR Senate District 16", "rep": "Suzanne Weber", "w": 0.787}]}, "munis": [{"m": "Astoria", "p": [{"n": "Bruce Jones", "r": "Mayor, Astoria, OR"}]}, {"m": "Cannon Beach", "p": [{"n": "Sam Steidel", "r": "Mayor, Cannon Beach, OR"}]}], "slug": "clatsop"}, "41009": {"county": [], "districts": {"cd": [{"d": "OR-01", "rep": "Suzanne Bonamici", "w": 1.0}], "sh": [{"d": "OR House District 31", "rep": "Darcey Edwards", "w": 0.927}, {"d": "OR House District 32", "rep": "Cyrus Javadi", "w": 0.073}], "ss": [{"d": "OR Senate District 16", "rep": "Suzanne Weber", "w": 1.0}]}, "munis": [], "slug": "columbia"}, "41011": {"county": [], "districts": {"cd": [{"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.9}], "sh": [{"d": "OR House District 1", "rep": "Court Boice", "w": 0.745}, {"d": "OR House District 9", "rep": "Boomer Wright", "w": 0.156}], "ss": [{"d": "OR Senate District 1", "rep": "David Smith", "w": 0.745}, {"d": "OR Senate District 5", "rep": "Dick Anderson", "w": 0.156}]}, "munis": [{"m": "Coos Bay", "p": [{"n": "Joe Benetti", "r": "Mayor, Coos Bay, OR"}]}, {"m": "Coquille", "p": [{"n": "Sam Flaherty", "r": "Mayor, Coquille, OR"}]}], "slug": "coos"}, "41013": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 59", "rep": "Vikki Breese Iverson", "w": 1.0}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 1.0}]}, "munis": [{"m": "Prineville", "p": [{"n": "Jason Beebe", "r": "Mayor, Prineville, OR"}]}], "slug": "crook"}, "41015": {"county": [], "districts": {"cd": [{"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.82}], "sh": [{"d": "OR House District 1", "rep": "Court Boice", "w": 0.822}], "ss": [{"d": "OR Senate District 1", "rep": "David Smith", "w": 0.822}]}, "munis": [], "slug": "curry"}, "41017": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 0.608}, {"d": "OR-05", "rep": "Janelle S. Bynum", "w": 0.391}], "sh": [{"d": "OR House District 55", "rep": "Werner Reschke", "w": 0.512}, {"d": "OR House District 60", "rep": "Mark Owens", "w": 0.222}, {"d": "OR House District 53", "rep": "Em Levy", "w": 0.177}, {"d": "OR House District 59", "rep": "Vikki Breese Iverson", "w": 0.079}, {"d": "OR House District 54", "rep": "Jason Kropf", "w": 0.009}], "ss": [{"d": "OR Senate District 28", "rep": "Diane Linthicum", "w": 0.512}, {"d": "OR Senate District 30", "rep": "Mike McLane", "w": 0.302}, {"d": "OR Senate District 27", "rep": "Anthony Broadman", "w": 0.186}]}, "munis": [{"m": "Bend", "p": [{"n": "Melanie Kebler", "r": "Mayor, Bend, OR"}]}], "slug": "deschutes"}, "41019": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 0.558}, {"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.429}], "sh": [{"d": "OR House District 2", "rep": "Virgle Osborne", "w": 0.619}, {"d": "OR House District 4", "rep": "Alek Skarlatos", "w": 0.165}, {"d": "OR House District 1", "rep": "Court Boice", "w": 0.102}, {"d": "OR House District 9", "rep": "Boomer Wright", "w": 0.102}], "ss": [{"d": "OR Senate District 1", "rep": "David Smith", "w": 0.721}, {"d": "OR Senate District 2", "rep": "Noah Robinson", "w": 0.165}, {"d": "OR Senate District 5", "rep": "Dick Anderson", "w": 0.102}]}, "munis": [{"m": "Roseburg", "p": [{"n": "Larry Rich", "r": "Mayor, Roseburg, OR"}]}, {"m": "Sutherlin", "p": [{"n": "Michelle Sumner", "r": "Mayor, Sutherlin, OR"}]}], "slug": "douglas"}, "41021": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 57", "rep": "Greg Smith", "w": 1.0}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [], "slug": "gilliam"}, "41023": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 60", "rep": "Mark Owens", "w": 1.0}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 1.0}]}, "munis": [], "slug": "grant"}, "41025": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 60", "rep": "Mark Owens", "w": 1.0}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 1.0}]}, "munis": [], "slug": "harney"}, "41027": {"county": [], "districts": {"cd": [{"d": "OR-03", "rep": "Maxine Dexter", "w": 1.0}], "sh": [{"d": "OR House District 52", "rep": "Jeff Helfrich", "w": 1.0}], "ss": [{"d": "OR Senate District 26", "rep": "Christine Drazan", "w": 1.0}]}, "munis": [], "slug": "hood-river"}, "41029": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 56", "rep": "Emily McIntire", "w": 0.468}, {"d": "OR House District 5", "rep": "Pam Marsh", "w": 0.336}, {"d": "OR House District 4", "rep": "Alek Skarlatos", "w": 0.188}, {"d": "OR House District 6", "rep": "Kim Wallan", "w": 0.009}], "ss": [{"d": "OR Senate District 28", "rep": "Diane Linthicum", "w": 0.468}, {"d": "OR Senate District 3", "rep": "Jeff Golden", "w": 0.344}, {"d": "OR Senate District 2", "rep": "Noah Robinson", "w": 0.188}]}, "munis": [{"m": "Medford", "p": [{"n": "Randy Sparacino", "r": "Mayor, Medford, OR"}]}], "slug": "jackson"}, "41031": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 0.99}, {"d": "OR-05", "rep": "Janelle S. Bynum", "w": 0.01}], "sh": [{"d": "OR House District 59", "rep": "Vikki Breese Iverson", "w": 0.718}, {"d": "OR House District 57", "rep": "Greg Smith", "w": 0.282}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 0.718}, {"d": "OR Senate District 29", "rep": "Todd Nash", "w": 0.282}]}, "munis": [], "slug": "jefferson"}, "41033": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 0.998}], "sh": [{"d": "OR House District 3", "rep": "Dwayne Yunker", "w": 0.768}, {"d": "OR House District 4", "rep": "Alek Skarlatos", "w": 0.232}], "ss": [{"d": "OR Senate District 2", "rep": "Noah Robinson", "w": 1.0}]}, "munis": [{"m": "Grants Pass", "p": [{"n": "Sara Bristol", "r": "Mayor, Grants Pass, OR"}]}], "slug": "josephine"}, "41035": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 55", "rep": "Werner Reschke", "w": 0.788}, {"d": "OR House District 56", "rep": "Emily McIntire", "w": 0.212}], "ss": [{"d": "OR Senate District 28", "rep": "Diane Linthicum", "w": 1.0}]}, "munis": [], "slug": "klamath"}, "41037": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 60", "rep": "Mark Owens", "w": 1.0}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 1.0}]}, "munis": [], "slug": "lake"}, "41039": {"county": [], "districts": {"cd": [{"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.977}], "sh": [{"d": "OR House District 12", "rep": "Darin Harbick", "w": 0.655}, {"d": "OR House District 9", "rep": "Boomer Wright", "w": 0.168}, {"d": "OR House District 10", "rep": "David Gomberg", "w": 0.095}, {"d": "OR House District 8", "rep": "Lisa Fragala", "w": 0.025}, {"d": "OR House District 14", "rep": "Julie Fahey", "w": 0.024}, {"d": "OR House District 7", "rep": "John Lively", "w": 0.007}], "ss": [{"d": "OR Senate District 6", "rep": "Cedric Hayden", "w": 0.655}, {"d": "OR Senate District 5", "rep": "Dick Anderson", "w": 0.263}, {"d": "OR Senate District 4", "rep": "Floyd Prozanski", "w": 0.031}, {"d": "OR Senate District 7", "rep": "James Manning", "w": 0.028}]}, "munis": [{"m": "Cottage Grove", "p": [{"n": "Candace Solesbee", "r": "Mayor, Cottage Grove, OR"}]}, {"m": "Eugene", "p": [{"n": "Lucy Vinis", "r": "Mayor, Eugene, OR"}]}, {"m": "Springfield", "p": [{"n": "Sean VanGordon", "r": "Mayor, Springfield, OR"}]}], "slug": "lane"}, "41041": {"county": [], "districts": {"cd": [{"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.832}], "sh": [{"d": "OR House District 10", "rep": "David Gomberg", "w": 0.832}], "ss": [{"d": "OR Senate District 5", "rep": "Dick Anderson", "w": 0.832}]}, "munis": [{"m": "Newport", "p": [{"n": "Dean Sawyer", "r": "Mayor, Newport, OR"}]}], "slug": "lincoln"}, "41043": {"county": [], "districts": {"cd": [{"d": "OR-05", "rep": "Janelle S. Bynum", "w": 0.993}, {"d": "OR-04", "rep": "Val T. Hoyle", "w": 0.006}], "sh": [{"d": "OR House District 11", "rep": "Jami Cate", "w": 0.75}, {"d": "OR House District 17", "rep": "Ed Diehl", "w": 0.199}, {"d": "OR House District 15", "rep": "Shelly Davis", "w": 0.049}], "ss": [{"d": "OR Senate District 6", "rep": "Cedric Hayden", "w": 0.752}, {"d": "OR Senate District 9", "rep": "Fred Girod", "w": 0.199}, {"d": "OR Senate District 8", "rep": "Sara Gelser Blouin", "w": 0.049}]}, "munis": [], "slug": "linn"}, "41045": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 60", "rep": "Mark Owens", "w": 1.0}], "ss": [{"d": "OR Senate District 30", "rep": "Mike McLane", "w": 1.0}]}, "munis": [], "slug": "malheur"}, "41047": {"county": [], "districts": {"cd": [{"d": "OR-05", "rep": "Janelle S. Bynum", "w": 0.699}, {"d": "OR-06", "rep": "Andrea Salinas", "w": 0.296}, {"d": "OR-02", "rep": "Cliff Bentz", "w": 0.006}], "sh": [{"d": "OR House District 17", "rep": "Ed Diehl", "w": 0.509}, {"d": "OR House District 18", "rep": "Rick Lewis", "w": 0.305}, {"d": "OR House District 22", "rep": "Lesly Muñoz", "w": 0.062}, {"d": "OR House District 15", "rep": "Shelly Davis", "w": 0.037}, {"d": "OR House District 57", "rep": "Greg Smith", "w": 0.023}, {"d": "OR House District 20", "rep": "Paul Evans", "w": 0.02}, {"d": "OR House District 11", "rep": "Jami Cate", "w": 0.016}, {"d": "OR House District 19", "rep": "Tom Andersen", "w": 0.015}, {"d": "OR House District 21", "rep": "Kevin Mannix", "w": 0.013}], "ss": [{"d": "OR Senate District 9", "rep": "Fred Girod", "w": 0.814}, {"d": "OR Senate District 11", "rep": "Kim Thatcher", "w": 0.075}, {"d": "OR Senate District 8", "rep": "Sara Gelser Blouin", "w": 0.037}, {"d": "OR Senate District 10", "rep": "Deb Patterson", "w": 0.035}, {"d": "OR Senate District 29", "rep": "Todd Nash", "w": 0.023}, {"d": "OR Senate District 6", "rep": "Cedric Hayden", "w": 0.016}]}, "munis": [{"m": "Salem", "p": [{"n": "Anna Peterson", "r": "Mayor, Salem, OR"}]}, {"m": "Woodburn", "p": [{"n": "Eric Swenson", "r": "Mayor, Woodburn, OR"}]}], "slug": "marion"}, "41049": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 57", "rep": "Greg Smith", "w": 1.0}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [], "slug": "morrow"}, "41051": {"county": [], "districts": {"cd": [{"d": "OR-03", "rep": "Maxine Dexter", "w": 0.753}, {"d": "OR-01", "rep": "Suzanne Bonamici", "w": 0.221}, {"d": "OR-05", "rep": "Janelle S. Bynum", "w": 0.025}], "sh": [{"d": "OR House District 52", "rep": "Jeff Helfrich", "w": 0.443}, {"d": "OR House District 31", "rep": "Darcey Edwards", "w": 0.12}, {"d": "OR House District 44", "rep": "Travis Nelson", "w": 0.091}, {"d": "OR House District 33", "rep": "Shannon Isadore", "w": 0.065}, {"d": "OR House District 49", "rep": "Zach Hudson", "w": 0.054}, {"d": "OR House District 50", "rep": "Ricki Ruiz", "w": 0.034}, {"d": "OR House District 45", "rep": "Thuy Tran", "w": 0.03}, {"d": "OR House District 48", "rep": "Lamar Wise", "w": 0.025}, {"d": "OR House District 28", "rep": "Dacia Grayber", "w": 0.025}, {"d": "OR House District 47", "rep": "Andrea Valderrama", "w": 0.022}, {"d": "OR House District 46", "rep": "Willy Chotzen", "w": 0.021}, {"d": "OR House District 38", "rep": "Daniel Nguyen", "w": 0.021}, {"d": "OR House District 43", "rep": "Tawna Sanchez", "w": 0.017}, {"d": "OR House District 42", "rep": "Rob Nosse", "w": 0.017}, {"d": "OR House District 41", "rep": "Mark Gamba", "w": 0.013}], "ss": [{"d": "OR Senate District 26", "rep": "Christine Drazan", "w": 0.443}, {"d": "OR Senate District 16", "rep": "Suzanne Weber", "w": 0.12}, {"d": "OR Senate District 22", "rep": "Lew Frederick", "w": 0.108}, {"d": "OR Senate District 25", "rep": "Chris Gorsek", "w": 0.088}, {"d": "OR Senate District 17", "rep": "Lisa Reynolds", "w": 0.067}, {"d": "OR Senate District 23", "rep": "Khanh Pham", "w": 0.051}, {"d": "OR Senate District 24", "rep": "Kayse Jama", "w": 0.047}, {"d": "OR Senate District 21", "rep": "Kathleen Taylor", "w": 0.03}, {"d": "OR Senate District 14", "rep": "Kate Lieber", "w": 0.025}, {"d": "OR Senate District 19", "rep": "Rob Wagner", "w": 0.021}]}, "munis": [{"m": "Gresham", "p": [{"n": "Travis Stovall", "r": "Mayor, Gresham, OR"}]}, {"m": "Portland", "p": [{"n": "Keith Wilson", "r": "Mayor, Portland, OR"}]}, {"m": "Troutdale", "p": [{"n": "Randy Lauer", "r": "Mayor, Troutdale, OR"}]}], "slug": "multnomah"}, "41053": {"county": [], "districts": {"cd": [{"d": "OR-06", "rep": "Andrea Salinas", "w": 1.0}], "sh": [{"d": "OR House District 23", "rep": "Anna Scharf", "w": 0.823}, {"d": "OR House District 24", "rep": "Lucetta Elmer", "w": 0.142}, {"d": "OR House District 20", "rep": "Paul Evans", "w": 0.035}], "ss": [{"d": "OR Senate District 12", "rep": "Bruce Starr", "w": 0.965}, {"d": "OR Senate District 10", "rep": "Deb Patterson", "w": 0.035}]}, "munis": [], "slug": "polk"}, "41055": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 57", "rep": "Greg Smith", "w": 1.0}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [], "slug": "sherman"}, "41057": {"county": [], "districts": {"cd": [{"d": "OR-01", "rep": "Suzanne Bonamici", "w": 0.844}], "sh": [{"d": "OR House District 32", "rep": "Cyrus Javadi", "w": 0.844}], "ss": [{"d": "OR Senate District 16", "rep": "Suzanne Weber", "w": 0.844}]}, "munis": [{"m": "Tillamook", "p": [{"n": "Aaron Burris", "r": "Mayor, Tillamook, OR"}]}], "slug": "tillamook"}, "41059": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 58", "rep": "Bobby Levy", "w": 0.834}, {"d": "OR House District 57", "rep": "Greg Smith", "w": 0.166}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [{"m": "Pendleton", "p": [{"n": "John H. Turner", "r": "Mayor, Pendleton, OR"}]}], "slug": "umatilla"}, "41061": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 58", "rep": "Bobby Levy", "w": 1.0}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [], "slug": "union"}, "41063": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 58", "rep": "Bobby Levy", "w": 1.0}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [], "slug": "wallowa"}, "41065": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 0.999}], "sh": [{"d": "OR House District 57", "rep": "Greg Smith", "w": 0.953}, {"d": "OR House District 52", "rep": "Jeff Helfrich", "w": 0.047}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 0.953}, {"d": "OR Senate District 26", "rep": "Christine Drazan", "w": 0.047}]}, "munis": [], "slug": "wasco"}, "41067": {"county": [], "districts": {"cd": [{"d": "OR-01", "rep": "Suzanne Bonamici", "w": 0.919}, {"d": "OR-06", "rep": "Andrea Salinas", "w": 0.081}], "sh": [{"d": "OR House District 31", "rep": "Darcey Edwards", "w": 0.622}, {"d": "OR House District 36", "rep": "Hai Pham", "w": 0.107}, {"d": "OR House District 29", "rep": "Susan McLain", "w": 0.096}, {"d": "OR House District 30", "rep": "Nathan Sosa", "w": 0.048}, {"d": "OR House District 26", "rep": "Sue Rieke Smith", "w": 0.031}, {"d": "OR House District 27", "rep": "Ken Helm", "w": 0.02}, {"d": "OR House District 25", "rep": "Ben Bowman", "w": 0.02}, {"d": "OR House District 34", "rep": "Mari Watanabe", "w": 0.018}, {"d": "OR House District 37", "rep": "Jules Walters", "w": 0.016}, {"d": "OR House District 35", "rep": "Farrah Chaichi", "w": 0.015}, {"d": "OR House District 28", "rep": "Dacia Grayber", "w": 0.006}], "ss": [{"d": "OR Senate District 16", "rep": "Suzanne Weber", "w": 0.622}, {"d": "OR Senate District 15", "rep": "Janeen Sollman", "w": 0.144}, {"d": "OR Senate District 18", "rep": "Wlnsvey Campos", "w": 0.122}, {"d": "OR Senate District 13", "rep": "Courtney Neron Misslin", "w": 0.051}, {"d": "OR Senate District 14", "rep": "Kate Lieber", "w": 0.026}, {"d": "OR Senate District 17", "rep": "Lisa Reynolds", "w": 0.019}, {"d": "OR Senate District 19", "rep": "Rob Wagner", "w": 0.016}]}, "munis": [{"m": "Beaverton", "p": [{"n": "Lacey Beaty", "r": "Mayor, Beaverton, OR"}]}, {"m": "Hillsboro", "p": [{"n": "Beach Pace", "r": "Mayor, Hillsboro, OR"}]}], "slug": "washington"}, "41069": {"county": [], "districts": {"cd": [{"d": "OR-02", "rep": "Cliff Bentz", "w": 1.0}], "sh": [{"d": "OR House District 57", "rep": "Greg Smith", "w": 1.0}], "ss": [{"d": "OR Senate District 29", "rep": "Todd Nash", "w": 1.0}]}, "munis": [], "slug": "wheeler"}, "41071": {"county": [], "districts": {"cd": [{"d": "OR-06", "rep": "Andrea Salinas", "w": 0.999}], "sh": [{"d": "OR House District 24", "rep": "Lucetta Elmer", "w": 0.827}, {"d": "OR House District 23", "rep": "Anna Scharf", "w": 0.154}, {"d": "OR House District 26", "rep": "Sue Rieke Smith", "w": 0.018}], "ss": [{"d": "OR Senate District 12", "rep": "Bruce Starr", "w": 0.981}, {"d": "OR Senate District 13", "rep": "Courtney Neron Misslin", "w": 0.018}]}, "munis": [{"m": "Newberg", "p": [{"n": "Rick Rogers", "r": "Mayor, Newberg, OR"}]}], "slug": "yamhill"}, "42001": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 0.998}], "sh": [{"d": "PA House District 91", "rep": "Dan Moul", "w": 0.622}, {"d": "PA House District 193", "rep": "Catherine Wallen", "w": 0.378}], "ss": [{"d": "PA Senate District 33", "rep": "Doug Mastriano", "w": 1.0}]}, "munis": [], "slug": "adams"}, "42003": {"county": [], "districts": {"cd": [{"d": "PA-17", "rep": "Christopher R. Deluzio", "w": 0.625}, {"d": "PA-12", "rep": "Summer L. Lee", "w": 0.373}], "sh": [{"d": "PA House District 44", "rep": "Valerie Gaydos", "w": 0.145}, {"d": "PA House District 28", "rep": "Jeremy Shaffer", "w": 0.118}, {"d": "PA House District 33", "rep": "Mandy Steele", "w": 0.106}, {"d": "PA House District 39", "rep": "Andrew Kuzma", "w": 0.097}, {"d": "PA House District 30", "rep": "Arvind Venkat", "w": 0.062}, {"d": "PA House District 45", "rep": "Anita Kulik", "w": 0.06}, {"d": "PA House District 32", "rep": "Joe McAndrew", "w": 0.057}, {"d": "PA House District 25", "rep": "Brandon Markosek", "w": 0.052}, {"d": "PA House District 35", "rep": "Dan Goughnour", "w": 0.042}, {"d": "PA House District 38", "rep": "John Inglis", "w": 0.039}, {"d": "PA House District 46", "rep": "Jason Ortitay", "w": 0.028}, {"d": "PA House District 21", "rep": "Lindsay Powell", "w": 0.027}, {"d": "PA House District 20", "rep": "Emily Kinkead", "w": 0.026}, {"d": "PA House District 27", "rep": "Dan Deasy", "w": 0.022}, {"d": "PA House District 40", "rep": "Natalie Mihalek", "w": 0.022}, {"d": "PA House District 34", "rep": "Abigail Salisbury", "w": 0.022}, {"d": "PA House District 42", "rep": "Jen Mazzocco", "w": 0.019}, {"d": "PA House District 19", "rep": "Aerion Abney", "w": 0.018}, {"d": "PA House District 36", "rep": "Jessica Benham", "w": 0.014}, {"d": "PA House District 24", "rep": "La'Tasha Mayes", "w": 0.012}, {"d": "PA House District 23", "rep": "Dan Frankel", "w": 0.01}], "ss": [{"d": "PA Senate District 37", "rep": "Devlin Robinson", "w": 0.338}, {"d": "PA Senate District 38", "rep": "Lindsey Williams", "w": 0.278}, {"d": "PA Senate District 45", "rep": "Nick Pisciottano", "w": 0.224}, {"d": "PA Senate District 42", "rep": "Wayne Fontana", "w": 0.081}, {"d": "PA Senate District 43", "rep": "Jay Costa", "w": 0.079}]}, "munis": [{"m": "Mckeesport", "p": [{"n": "Michael Cherepko", "r": "Mayor, McKeesport, PA"}]}, {"m": "Pittsburgh", "p": [{"n": "mayor of Pittsburgh", "r": "Mayor, Pittsburgh, PA"}]}], "slug": "allegheny"}, "42005": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 0.999}], "sh": [{"d": "PA House District 63", "rep": "Josh Bashline", "w": 0.639}, {"d": "PA House District 60", "rep": "Abby Major", "w": 0.361}], "ss": [{"d": "PA Senate District 41", "rep": "Joe Pittman", "w": 1.0}]}, "munis": [], "slug": "armstrong"}, "42007": {"county": [], "districts": {"cd": [{"d": "PA-17", "rep": "Christopher R. Deluzio", "w": 1.0}], "sh": [{"d": "PA House District 15", "rep": "Josh Kail", "w": 0.481}, {"d": "PA House District 14", "rep": "Roman Kozak", "w": 0.397}, {"d": "PA House District 16", "rep": "Rob Matzie", "w": 0.122}], "ss": [{"d": "PA Senate District 47", "rep": "Elder Vogel", "w": 0.846}, {"d": "PA Senate District 46", "rep": "Camera Bartolotta", "w": 0.154}]}, "munis": [], "slug": "beaver"}, "42009": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 1.0}], "sh": [{"d": "PA House District 78", "rep": "Jesse Topper", "w": 1.0}], "ss": [{"d": "PA Senate District 32", "rep": "Pat Stefano", "w": 1.0}]}, "munis": [], "slug": "bedford"}, "42011": {"county": [], "districts": {"cd": [{"d": "PA-04", "rep": "Madeleine Dean", "w": 0.43}, {"d": "PA-09", "rep": "Daniel Meuser", "w": 0.367}, {"d": "PA-06", "rep": "Chrissy Houlahan", "w": 0.203}], "sh": [{"d": "PA House District 5", "rep": "Eric Weaknecht", "w": 0.29}, {"d": "PA House District 130", "rep": "David Maloney", "w": 0.242}, {"d": "PA House District 124", "rep": "Jamie Barton", "w": 0.213}, {"d": "PA House District 128", "rep": "Mark Gillen", "w": 0.161}, {"d": "PA House District 99", "rep": "Dave Zimmerman", "w": 0.041}, {"d": "PA House District 126", "rep": "Jacklyn Rusnock", "w": 0.03}, {"d": "PA House District 129", "rep": "Johanny Cepeda-Freytiz", "w": 0.015}, {"d": "PA House District 127", "rep": "Manny Guzman", "w": 0.009}], "ss": [{"d": "PA Senate District 48", "rep": "Chris Gebhard", "w": 0.483}, {"d": "PA Senate District 11", "rep": "Judy Schwank", "w": 0.237}, {"d": "PA Senate District 24", "rep": "Tracy Pennycuick", "w": 0.174}, {"d": "PA Senate District 13", "rep": "Scott Martin", "w": 0.077}, {"d": "PA Senate District 44", "rep": "Katie Muth", "w": 0.029}]}, "munis": [{"m": "Reading", "p": [{"n": "Eddie Morán", "r": "Mayor, Reading, PA"}]}], "slug": "berks"}, "42013": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 1.0}], "sh": [{"d": "PA House District 80", "rep": "Scott Barger", "w": 0.836}, {"d": "PA House District 79", "rep": "Andrea Verobish", "w": 0.164}], "ss": [{"d": "PA Senate District 30", "rep": "Judy Ward", "w": 1.0}]}, "munis": [{"m": "Altoona", "p": [{"n": "Matthew A. Pacifico", "r": "Mayor, Altoona, PA"}]}], "slug": "blair"}, "42015": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 1.0}], "sh": [{"d": "PA House District 68", "rep": "Clint Owlett", "w": 0.501}, {"d": "PA House District 110", "rep": "Tina Pickett", "w": 0.498}], "ss": [{"d": "PA Senate District 23", "rep": "Gene Yaw", "w": 1.0}]}, "munis": [], "slug": "bradford"}, "42017": {"county": [], "districts": {"cd": [{"d": "PA-01", "rep": "Brian K. Fitzpatrick", "w": 0.999}], "sh": [{"d": "PA House District 145", "rep": "Craig Staats", "w": 0.279}, {"d": "PA House District 143", "rep": "Shelby Labs", "w": 0.216}, {"d": "PA House District 29", "rep": "Tim Brennan", "w": 0.132}, {"d": "PA House District 31", "rep": "Perry Warren", "w": 0.086}, {"d": "PA House District 178", "rep": "Kristin Marcell", "w": 0.08}, {"d": "PA House District 140", "rep": "Jim Prokopiak", "w": 0.055}, {"d": "PA House District 142", "rep": "Joe Hogan", "w": 0.044}, {"d": "PA House District 144", "rep": "Brian Munroe", "w": 0.042}, {"d": "PA House District 18", "rep": "K.C. Tomlinson", "w": 0.034}, {"d": "PA House District 141", "rep": "Tina Davis", "w": 0.031}], "ss": [{"d": "PA Senate District 16", "rep": "Jarrett Coleman", "w": 0.43}, {"d": "PA Senate District 10", "rep": "Steve Santarsiero", "w": 0.366}, {"d": "PA Senate District 6", "rep": "Frank Farry", "w": 0.203}]}, "munis": [], "slug": "bucks"}, "42019": {"county": [], "districts": {"cd": [{"d": "PA-16", "rep": "Mike Kelly", "w": 1.0}], "sh": [{"d": "PA House District 8", "rep": "Aaron Bernstine", "w": 0.335}, {"d": "PA House District 17", "rep": "Tim Bonner", "w": 0.304}, {"d": "PA House District 11", "rep": "Marci Mustello", "w": 0.27}], "ss": [{"d": "PA Senate District 21", "rep": "Scott Hutchinson", "w": 0.822}, {"d": "PA Senate District 47", "rep": "Elder Vogel", "w": 0.178}]}, "munis": [{"m": "Butler", "p": [{"n": "Robert A. Dandoy", "r": "Mayor, Butler, PA"}]}], "slug": "butler"}, "42021": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 0.998}], "sh": [{"d": "PA House District 71", "rep": "Jim Rigby", "w": 0.519}, {"d": "PA House District 72", "rep": "Frank Burns", "w": 0.317}, {"d": "PA House District 73", "rep": "Dallas Kephart", "w": 0.164}], "ss": [{"d": "PA Senate District 35", "rep": "Wayne Langerholc", "w": 1.0}]}, "munis": [{"m": "Johnstown", "p": [{"n": "Frank J. Janakovic", "r": "Mayor, Johnstown, PA"}]}], "slug": "cambria"}, "42023": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 67", "rep": "Marty Causer", "w": 0.999}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 1.0}]}, "munis": [], "slug": "cameron"}, "42025": {"county": [], "districts": {"cd": [{"d": "PA-07", "rep": "Ryan Mackenzie", "w": 0.997}], "sh": [{"d": "PA House District 122", "rep": "Doyle Heffley", "w": 1.0}], "ss": [{"d": "PA Senate District 29", "rep": "Dave Argall", "w": 1.0}]}, "munis": [], "slug": "carbon"}, "42027": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 82", "rep": "Paul Takac", "w": 0.417}, {"d": "PA House District 77", "rep": "Scott Conklin", "w": 0.292}, {"d": "PA House District 171", "rep": "Kerry Benninghoff", "w": 0.291}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 0.709}, {"d": "PA Senate District 35", "rep": "Wayne Langerholc", "w": 0.291}]}, "munis": [], "slug": "centre"}, "42029": {"county": [], "districts": {"cd": [{"d": "PA-06", "rep": "Chrissy Houlahan", "w": 0.996}], "sh": [{"d": "PA House District 13", "rep": "John Lawrence", "w": 0.25}, {"d": "PA House District 158", "rep": "Christina Sappey", "w": 0.159}, {"d": "PA House District 26", "rep": "Paul Friel", "w": 0.144}, {"d": "PA House District 74", "rep": "Dan Williams", "w": 0.11}, {"d": "PA House District 167", "rep": "Kristine Howard", "w": 0.095}, {"d": "PA House District 155", "rep": "Danielle Otten", "w": 0.084}, {"d": "PA House District 157", "rep": "Melissa Shusterman", "w": 0.073}, {"d": "PA House District 156", "rep": "Chris Pielli", "w": 0.048}, {"d": "PA House District 160", "rep": "Craig Williams", "w": 0.038}], "ss": [{"d": "PA Senate District 19", "rep": "Carolyn Comitta", "w": 0.432}, {"d": "PA Senate District 44", "rep": "Katie Muth", "w": 0.4}, {"d": "PA Senate District 9", "rep": "John Kane", "w": 0.167}]}, "munis": [], "slug": "chester"}, "42031": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 63", "rep": "Josh Bashline", "w": 1.0}], "ss": [{"d": "PA Senate District 21", "rep": "Scott Hutchinson", "w": 1.0}]}, "munis": [], "slug": "clarion"}, "42033": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 73", "rep": "Dallas Kephart", "w": 0.664}, {"d": "PA House District 75", "rep": "Mike Armanini", "w": 0.336}], "ss": [{"d": "PA Senate District 35", "rep": "Wayne Langerholc", "w": 1.0}]}, "munis": [], "slug": "clearfield"}, "42035": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 76", "rep": "Stephanie Borowicz", "w": 1.0}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 1.0}]}, "munis": [], "slug": "clinton"}, "42037": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 1.0}], "sh": [{"d": "PA House District 109", "rep": "Robert Leadbeter", "w": 1.0}], "ss": [{"d": "PA Senate District 27", "rep": "Lynda Culver", "w": 1.0}]}, "munis": [], "slug": "columbia"}, "42039": {"county": [], "districts": {"cd": [{"d": "PA-16", "rep": "Mike Kelly", "w": 1.0}], "sh": [{"d": "PA House District 6", "rep": "Brad Roae", "w": 0.577}, {"d": "PA House District 65", "rep": "Kathy Rapp", "w": 0.292}, {"d": "PA House District 64", "rep": "Lee James", "w": 0.13}], "ss": [{"d": "PA Senate District 50", "rep": "Michele Brooks", "w": 1.0}]}, "munis": [{"m": "Meadville", "p": [{"n": "Jaime Kinder", "r": "Mayor, Meadville, PA"}]}], "slug": "crawford"}, "42041": {"county": [], "districts": {"cd": [{"d": "PA-10", "rep": "Scott Perry", "w": 0.702}, {"d": "PA-13", "rep": "John Joyce", "w": 0.298}], "sh": [{"d": "PA House District 199", "rep": "Barb Gleim", "w": 0.419}, {"d": "PA House District 193", "rep": "Catherine Wallen", "w": 0.295}, {"d": "PA House District 87", "rep": "Thomas Kutz", "w": 0.206}, {"d": "PA House District 88", "rep": "Sheryl Delozier", "w": 0.051}, {"d": "PA House District 103", "rep": "Nate Davidson", "w": 0.028}], "ss": [{"d": "PA Senate District 34", "rep": "Greg Rothman", "w": 0.946}, {"d": "PA Senate District 31", "rep": "Dawn Keefer", "w": 0.054}]}, "munis": [], "slug": "cumberland"}, "42043": {"county": [], "districts": {"cd": [{"d": "PA-10", "rep": "Scott Perry", "w": 0.996}], "sh": [{"d": "PA House District 125", "rep": "Joe Kerwin", "w": 0.641}, {"d": "PA House District 106", "rep": "Tom Mehaffie", "w": 0.243}, {"d": "PA House District 105", "rep": "Justin Fleming", "w": 0.052}, {"d": "PA House District 104", "rep": "Dave Madsen", "w": 0.048}, {"d": "PA House District 103", "rep": "Nate Davidson", "w": 0.016}], "ss": [{"d": "PA Senate District 15", "rep": "Patty Kim", "w": 0.533}, {"d": "PA Senate District 34", "rep": "Greg Rothman", "w": 0.466}]}, "munis": [{"m": "Harrisburg", "p": [{"n": "Wanda Williams", "r": "Mayor, Harrisburg, PA"}]}], "slug": "dauphin"}, "42045": {"county": [], "districts": {"cd": [{"d": "PA-05", "rep": "Mary Gay Scanlon", "w": 0.993}, {"d": "PA-06", "rep": "Chrissy Houlahan", "w": 0.006}], "sh": [{"d": "PA House District 168", "rep": "Lisa Borowski", "w": 0.226}, {"d": "PA House District 160", "rep": "Craig Williams", "w": 0.206}, {"d": "PA House District 165", "rep": "Jenn O'Mara", "w": 0.114}, {"d": "PA House District 161", "rep": "Leanne Krueger", "w": 0.109}, {"d": "PA House District 159", "rep": "Carol Kazeem", "w": 0.097}, {"d": "PA House District 166", "rep": "Greg Vitali", "w": 0.071}, {"d": "PA House District 162", "rep": "Dave Delloso", "w": 0.054}, {"d": "PA House District 185", "rep": "Regina Young", "w": 0.047}, {"d": "PA House District 163", "rep": "Heather Boyd", "w": 0.038}, {"d": "PA House District 164", "rep": "Gina Curry", "w": 0.024}, {"d": "PA House District 191", "rep": "Joanna McClinton", "w": 0.013}], "ss": [{"d": "PA Senate District 9", "rep": "John Kane", "w": 0.504}, {"d": "PA Senate District 26", "rep": "Tim Kearney", "w": 0.283}, {"d": "PA Senate District 17", "rep": "Amanda Cappelletti", "w": 0.125}, {"d": "PA Senate District 8", "rep": "Tony Williams", "w": 0.088}]}, "munis": [{"m": "Chester", "p": [{"n": "Stefan Roots", "r": "Mayor, Chester, PA"}]}], "slug": "delaware"}, "42047": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 75", "rep": "Mike Armanini", "w": 1.0}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 1.0}]}, "munis": [], "slug": "elk"}, "42049": {"county": [], "districts": {"cd": [{"d": "PA-16", "rep": "Mike Kelly", "w": 0.518}], "sh": [{"d": "PA House District 4", "rep": "Jake Banta", "w": 0.325}, {"d": "PA House District 6", "rep": "Brad Roae", "w": 0.075}, {"d": "PA House District 2", "rep": "Bob Merski", "w": 0.066}, {"d": "PA House District 3", "rep": "Ryan Bizzarro", "w": 0.04}, {"d": "PA House District 1", "rep": "Pat Harkins", "w": 0.012}], "ss": [{"d": "PA Senate District 49", "rep": "Dan Laughlin", "w": 0.468}, {"d": "PA Senate District 21", "rep": "Scott Hutchinson", "w": 0.05}]}, "munis": [{"m": "Erie", "p": [{"n": "Joseph V. Schember", "r": "Mayor, Erie, PA"}]}], "slug": "erie"}, "42051": {"county": [], "districts": {"cd": [{"d": "PA-14", "rep": "Guy Reschenthaler", "w": 1.0}], "sh": [{"d": "PA House District 52", "rep": "Ryan Warner", "w": 0.542}, {"d": "PA House District 51", "rep": "Charity Krupa", "w": 0.457}], "ss": [{"d": "PA Senate District 32", "rep": "Pat Stefano", "w": 1.0}]}, "munis": [{"m": "Connellsville", "p": [{"n": "Greg Lincoln", "r": "Mayor, Connellsville, PA"}]}, {"m": "Uniontown", "p": [{"n": "Bill Gerke", "r": "Mayor, Uniontown, PA"}]}], "slug": "fayette"}, "42053": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 65", "rep": "Kathy Rapp", "w": 1.0}], "ss": [{"d": "PA Senate District 21", "rep": "Scott Hutchinson", "w": 1.0}]}, "munis": [], "slug": "forest"}, "42055": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 1.0}], "sh": [{"d": "PA House District 90", "rep": "Chad Reichard", "w": 0.406}, {"d": "PA House District 81", "rep": "Rich Irvin", "w": 0.398}, {"d": "PA House District 89", "rep": "Rob Kauffman", "w": 0.195}], "ss": [{"d": "PA Senate District 33", "rep": "Doug Mastriano", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "42057": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 1.0}], "sh": [{"d": "PA House District 78", "rep": "Jesse Topper", "w": 1.0}], "ss": [{"d": "PA Senate District 30", "rep": "Judy Ward", "w": 1.0}]}, "munis": [], "slug": "fulton"}, "42059": {"county": [], "districts": {"cd": [{"d": "PA-14", "rep": "Guy Reschenthaler", "w": 1.0}], "sh": [{"d": "PA House District 50", "rep": "Bud Cook", "w": 0.999}], "ss": [{"d": "PA Senate District 46", "rep": "Camera Bartolotta", "w": 1.0}]}, "munis": [], "slug": "greene"}, "42061": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 0.999}], "sh": [{"d": "PA House District 81", "rep": "Rich Irvin", "w": 0.931}, {"d": "PA House District 80", "rep": "Scott Barger", "w": 0.069}], "ss": [{"d": "PA Senate District 30", "rep": "Judy Ward", "w": 1.0}]}, "munis": [], "slug": "huntingdon"}, "42063": {"county": [], "districts": {"cd": [{"d": "PA-14", "rep": "Guy Reschenthaler", "w": 0.749}, {"d": "PA-15", "rep": "Glenn Thompson", "w": 0.251}], "sh": [{"d": "PA House District 62", "rep": "Jim Struzzi", "w": 0.597}, {"d": "PA House District 66", "rep": "Brian Smith", "w": 0.403}], "ss": [{"d": "PA Senate District 41", "rep": "Joe Pittman", "w": 1.0}]}, "munis": [], "slug": "indiana"}, "42065": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 66", "rep": "Brian Smith", "w": 1.0}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 0.688}, {"d": "PA Senate District 41", "rep": "Joe Pittman", "w": 0.311}]}, "munis": [], "slug": "jefferson"}, "42067": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 0.999}], "sh": [{"d": "PA House District 86", "rep": "Perry Stambaugh", "w": 0.848}, {"d": "PA House District 85", "rep": "David Rowe", "w": 0.151}], "ss": [{"d": "PA Senate District 30", "rep": "Judy Ward", "w": 1.0}]}, "munis": [], "slug": "juniata"}, "42069": {"county": [], "districts": {"cd": [{"d": "PA-08", "rep": "Robert P. Bresnahan, Jr.", "w": 0.999}], "sh": [{"d": "PA House District 113", "rep": "Kyle Donahue", "w": 0.344}, {"d": "PA House District 112", "rep": "Kyle Mullins", "w": 0.254}, {"d": "PA House District 114", "rep": "Bridget Malloy Kosierowski", "w": 0.247}, {"d": "PA House District 118", "rep": "Jim Haddock", "w": 0.154}], "ss": [{"d": "PA Senate District 40", "rep": "Rosemary Brown", "w": 0.537}, {"d": "PA Senate District 22", "rep": "Marty Flynn", "w": 0.463}]}, "munis": [{"m": "Scranton", "p": [{"n": "Paige Gebhardt Cognetti", "r": "Mayor, Scranton, PA"}]}], "slug": "lackawanna"}, "42071": {"county": [], "districts": {"cd": [{"d": "PA-11", "rep": "Lloyd Smucker", "w": 0.998}], "sh": [{"d": "PA House District 100", "rep": "Bryan Cutler", "w": 0.314}, {"d": "PA House District 37", "rep": "Mindy Fee", "w": 0.144}, {"d": "PA House District 99", "rep": "Dave Zimmerman", "w": 0.14}, {"d": "PA House District 97", "rep": "Steve Mentzer", "w": 0.121}, {"d": "PA House District 43", "rep": "Keith Greiner", "w": 0.104}, {"d": "PA House District 98", "rep": "Tom Jones", "w": 0.093}, {"d": "PA House District 41", "rep": "Brett Miller", "w": 0.05}, {"d": "PA House District 96", "rep": "Nikki Rivera", "w": 0.022}, {"d": "PA House District 49", "rep": "Izzy Smith-Wade-El", "w": 0.012}], "ss": [{"d": "PA Senate District 13", "rep": "Scott Martin", "w": 0.549}, {"d": "PA Senate District 36", "rep": "James Malone", "w": 0.351}, {"d": "PA Senate District 48", "rep": "Chris Gebhard", "w": 0.1}]}, "munis": [{"m": "Lancaster", "p": [{"n": "Danene Sorace", "r": "Mayor, Lancaster, PA"}]}], "slug": "lancaster"}, "42073": {"county": [], "districts": {"cd": [{"d": "PA-16", "rep": "Mike Kelly", "w": 1.0}], "sh": [{"d": "PA House District 9", "rep": "Marla Brown", "w": 0.564}, {"d": "PA House District 8", "rep": "Aaron Bernstine", "w": 0.436}], "ss": [{"d": "PA Senate District 50", "rep": "Michele Brooks", "w": 0.796}, {"d": "PA Senate District 47", "rep": "Elder Vogel", "w": 0.204}]}, "munis": [{"m": "New Castle", "p": [{"n": "Bryan Cameron", "r": "Mayor, New Castle, PA"}]}], "slug": "lawrence"}, "42075": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 1.0}], "sh": [{"d": "PA House District 102", "rep": "Russ Diamond", "w": 0.683}, {"d": "PA House District 101", "rep": "John Schlegel", "w": 0.196}, {"d": "PA House District 98", "rep": "Tom Jones", "w": 0.121}], "ss": [{"d": "PA Senate District 48", "rep": "Chris Gebhard", "w": 1.0}]}, "munis": [{"m": "Lebanon", "p": [{"n": "Sherry Capello", "r": "Mayor, Lebanon, PA"}]}], "slug": "lebanon"}, "42077": {"county": [], "districts": {"cd": [{"d": "PA-07", "rep": "Ryan Mackenzie", "w": 0.999}], "sh": [{"d": "PA House District 187", "rep": "Gary Day", "w": 0.442}, {"d": "PA House District 131", "rep": "Milou Mackenzie", "w": 0.188}, {"d": "PA House District 183", "rep": "Zach Mako", "w": 0.127}, {"d": "PA House District 132", "rep": "Mike Schlossberg", "w": 0.1}, {"d": "PA House District 133", "rep": "Jeanne McNeill", "w": 0.07}, {"d": "PA House District 134", "rep": "Pete Schweyer", "w": 0.038}, {"d": "PA House District 22", "rep": "Ana Tiburcio", "w": 0.035}], "ss": [{"d": "PA Senate District 16", "rep": "Jarrett Coleman", "w": 0.827}, {"d": "PA Senate District 14", "rep": "Nick Miller", "w": 0.16}, {"d": "PA Senate District 18", "rep": "Lisa Boscola", "w": 0.013}]}, "munis": [{"m": "Allentown", "p": [{"n": "Matthew Tuerk", "r": "Mayor, Allentown, PA"}]}], "slug": "lehigh"}, "42079": {"county": [], "districts": {"cd": [{"d": "PA-08", "rep": "Robert P. Bresnahan, Jr.", "w": 0.565}, {"d": "PA-09", "rep": "Daniel Meuser", "w": 0.434}], "sh": [{"d": "PA House District 117", "rep": "Jamie Walsh", "w": 0.557}, {"d": "PA House District 121", "rep": "Eddie Pashinski", "w": 0.129}, {"d": "PA House District 119", "rep": "Alec Ryncavage", "w": 0.11}, {"d": "PA House District 120", "rep": "Brenda Pugh", "w": 0.1}, {"d": "PA House District 116", "rep": "Dane Watro", "w": 0.058}, {"d": "PA House District 118", "rep": "Jim Haddock", "w": 0.045}], "ss": [{"d": "PA Senate District 20", "rep": "Lisa Baker", "w": 0.381}, {"d": "PA Senate District 27", "rep": "Lynda Culver", "w": 0.293}, {"d": "PA Senate District 29", "rep": "Dave Argall", "w": 0.246}, {"d": "PA Senate District 22", "rep": "Marty Flynn", "w": 0.079}]}, "munis": [{"m": "Hazleton", "p": [{"n": "Jeff Cusat", "r": "Mayor, Hazleton, PA"}]}, {"m": "Pittston", "p": [{"n": "Charles Calvin Bowman", "r": "Mayor, Pittston, PA"}]}, {"m": "Wilkes Barre", "p": [{"n": "George C. Brown", "r": "Mayor, Wilkes-Barre, PA"}]}], "slug": "luzerne"}, "42081": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 0.722}, {"d": "PA-09", "rep": "Daniel Meuser", "w": 0.278}], "sh": [{"d": "PA House District 84", "rep": "Joe Hamm", "w": 0.877}, {"d": "PA House District 83", "rep": "Jamie Flick", "w": 0.122}], "ss": [{"d": "PA Senate District 23", "rep": "Gene Yaw", "w": 1.0}]}, "munis": [{"m": "Williamsport", "p": [{"n": "Derek J. Slaughter", "r": "Mayor, Williamsport, PA"}]}], "slug": "lycoming"}, "42083": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 67", "rep": "Marty Causer", "w": 1.0}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 1.0}]}, "munis": [{"m": "Bradford", "p": [{"n": "Tom Riel", "r": "Mayor, Bradford, PA"}]}], "slug": "mckean"}, "42085": {"county": [], "districts": {"cd": [{"d": "PA-16", "rep": "Mike Kelly", "w": 1.0}], "sh": [{"d": "PA House District 17", "rep": "Tim Bonner", "w": 0.695}, {"d": "PA House District 7", "rep": "Parke Wentling", "w": 0.305}], "ss": [{"d": "PA Senate District 50", "rep": "Michele Brooks", "w": 1.0}]}, "munis": [], "slug": "mercer"}, "42087": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 1.0}], "sh": [{"d": "PA House District 171", "rep": "Kerry Benninghoff", "w": 0.814}, {"d": "PA House District 85", "rep": "David Rowe", "w": 0.186}], "ss": [{"d": "PA Senate District 30", "rep": "Judy Ward", "w": 1.0}]}, "munis": [], "slug": "mifflin"}, "42089": {"county": [], "districts": {"cd": [{"d": "PA-08", "rep": "Robert P. Bresnahan, Jr.", "w": 0.885}, {"d": "PA-07", "rep": "Ryan Mackenzie", "w": 0.115}], "sh": [{"d": "PA House District 176", "rep": "Jack Rader", "w": 0.447}, {"d": "PA House District 115", "rep": "Maureen Madden", "w": 0.432}, {"d": "PA House District 189", "rep": "Tarah Probst", "w": 0.121}], "ss": [{"d": "PA Senate District 40", "rep": "Rosemary Brown", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "42091": {"county": [], "districts": {"cd": [{"d": "PA-04", "rep": "Madeleine Dean", "w": 0.742}, {"d": "PA-01", "rep": "Brian K. Fitzpatrick", "w": 0.199}, {"d": "PA-05", "rep": "Mary Gay Scanlon", "w": 0.057}], "sh": [{"d": "PA House District 147", "rep": "Donna Scheuren", "w": 0.195}, {"d": "PA House District 70", "rep": "Matt Bradford", "w": 0.101}, {"d": "PA House District 131", "rep": "Milou Mackenzie", "w": 0.094}, {"d": "PA House District 150", "rep": "Joe Webster", "w": 0.081}, {"d": "PA House District 146", "rep": "Joe Ciresi", "w": 0.08}, {"d": "PA House District 61", "rep": "Liz Hanbidge", "w": 0.076}, {"d": "PA House District 151", "rep": "Missy Cerrato", "w": 0.065}, {"d": "PA House District 148", "rep": "Mary Jo Daley", "w": 0.061}, {"d": "PA House District 149", "rep": "Tim Briggs", "w": 0.057}, {"d": "PA House District 53", "rep": "Steve Malagari", "w": 0.044}, {"d": "PA House District 152", "rep": "Nancy Guenst", "w": 0.042}, {"d": "PA House District 153", "rep": "Ben Sanchez", "w": 0.042}, {"d": "PA House District 154", "rep": "Napoleon Nelson", "w": 0.034}, {"d": "PA House District 54", "rep": "Greg Scott", "w": 0.027}], "ss": [{"d": "PA Senate District 24", "rep": "Tracy Pennycuick", "w": 0.41}, {"d": "PA Senate District 12", "rep": "Maria Collett", "w": 0.3}, {"d": "PA Senate District 17", "rep": "Amanda Cappelletti", "w": 0.121}, {"d": "PA Senate District 44", "rep": "Katie Muth", "w": 0.071}, {"d": "PA Senate District 4", "rep": "Art Haywood", "w": 0.066}, {"d": "PA Senate District 7", "rep": "Vincent Hughes", "w": 0.032}]}, "munis": [], "slug": "montgomery"}, "42093": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 1.0}], "sh": [{"d": "PA House District 108", "rep": "Michael Stender", "w": 0.999}], "ss": [{"d": "PA Senate District 27", "rep": "Lynda Culver", "w": 1.0}]}, "munis": [], "slug": "montour"}, "42095": {"county": [], "districts": {"cd": [{"d": "PA-07", "rep": "Ryan Mackenzie", "w": 1.0}], "sh": [{"d": "PA House District 138", "rep": "Ann Flood", "w": 0.465}, {"d": "PA House District 183", "rep": "Zach Mako", "w": 0.212}, {"d": "PA House District 137", "rep": "Joe Emrick", "w": 0.126}, {"d": "PA House District 136", "rep": "Bob Freeman", "w": 0.114}, {"d": "PA House District 135", "rep": "Steve Samuelson", "w": 0.054}, {"d": "PA House District 131", "rep": "Milou Mackenzie", "w": 0.029}], "ss": [{"d": "PA Senate District 18", "rep": "Lisa Boscola", "w": 0.654}, {"d": "PA Senate District 14", "rep": "Nick Miller", "w": 0.346}]}, "munis": [{"m": "Bethlehem", "p": [{"n": "J. William Reynolds", "r": "Mayor, Bethlehem, PA"}]}, {"m": "Easton", "p": [{"n": "Salvatore J. Panto, Jr.", "r": "Mayor, Easton, PA"}]}], "slug": "northampton"}, "42097": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 0.995}], "sh": [{"d": "PA House District 107", "rep": "Joanne Stehr", "w": 0.559}, {"d": "PA House District 108", "rep": "Michael Stender", "w": 0.441}], "ss": [{"d": "PA Senate District 27", "rep": "Lynda Culver", "w": 1.0}]}, "munis": [{"m": "Shamokin", "p": [{"n": "Richard Ulrich", "r": "Mayor, Shamokin, PA"}]}], "slug": "northumberland"}, "42099": {"county": [], "districts": {"cd": [{"d": "PA-13", "rep": "John Joyce", "w": 0.997}], "sh": [{"d": "PA House District 86", "rep": "Perry Stambaugh", "w": 1.0}], "ss": [{"d": "PA Senate District 34", "rep": "Greg Rothman", "w": 1.0}]}, "munis": [], "slug": "perry"}, "42101": {"county": [], "districts": {"cd": [{"d": "PA-02", "rep": "Brendan F. Boyle", "w": 0.469}, {"d": "PA-03", "rep": "Dwight Evans", "w": 0.384}, {"d": "PA-05", "rep": "Mary Gay Scanlon", "w": 0.144}], "sh": [{"d": "PA House District 185", "rep": "Regina Young", "w": 0.101}, {"d": "PA House District 194", "rep": "Tarik Khan", "w": 0.082}, {"d": "PA House District 170", "rep": "Martina White", "w": 0.076}, {"d": "PA House District 173", "rep": "Pat Gallagher", "w": 0.058}, {"d": "PA House District 190", "rep": "Roni Green", "w": 0.057}, {"d": "PA House District 172", "rep": "Sean Dougherty", "w": 0.056}, {"d": "PA House District 177", "rep": "Joe Hohenstein", "w": 0.053}, {"d": "PA House District 174", "rep": "Ed Neilson", "w": 0.053}, {"d": "PA House District 184", "rep": "Elizabeth Fiedler", "w": 0.05}, {"d": "PA House District 200", "rep": "Chris Rabb", "w": 0.045}, {"d": "PA House District 201", "rep": "Andre Carroll", "w": 0.031}, {"d": "PA House District 179", "rep": "Jason Dawkins", "w": 0.03}, {"d": "PA House District 192", "rep": "Morgan Cephas", "w": 0.028}, {"d": "PA House District 198", "rep": "Darisha Parker", "w": 0.028}, {"d": "PA House District 180", "rep": "José Giral", "w": 0.027}, {"d": "PA House District 175", "rep": "Mary Isaacson", "w": 0.027}, {"d": "PA House District 203", "rep": "Anthony Bellmon", "w": 0.025}, {"d": "PA House District 186", "rep": "Jordan Harris", "w": 0.024}, {"d": "PA House District 197", "rep": "Danilo Burgos", "w": 0.023}, {"d": "PA House District 10", "rep": "Amen Brown", "w": 0.021}, {"d": "PA House District 188", "rep": "Rick Krajewski", "w": 0.02}, {"d": "PA House District 195", "rep": "Keith Harris", "w": 0.02}, {"d": "PA House District 181", "rep": "Malcolm Kenyatta", "w": 0.019}, {"d": "PA House District 202", "rep": "Jared Solomon", "w": 0.018}, {"d": "PA House District 191", "rep": "Joanna McClinton", "w": 0.015}, {"d": "PA House District 182", "rep": "Ben Waxman", "w": 0.011}], "ss": [{"d": "PA Senate District 5", "rep": "Joe Picozzi", "w": 0.252}, {"d": "PA Senate District 1", "rep": "Nikil Saval", "w": 0.185}, {"d": "PA Senate District 7", "rep": "Vincent Hughes", "w": 0.173}, {"d": "PA Senate District 2", "rep": "Tina Tartaglione", "w": 0.121}, {"d": "PA Senate District 3", "rep": "Sharif Street", "w": 0.099}, {"d": "PA Senate District 4", "rep": "Art Haywood", "w": 0.09}, {"d": "PA Senate District 8", "rep": "Tony Williams", "w": 0.078}]}, "munis": [{"m": "Philadelphia", "p": [{"n": "Cherelle Parker", "r": "Mayor, Philadelphia, PA"}]}], "slug": "philadelphia"}, "42103": {"county": [], "districts": {"cd": [{"d": "PA-08", "rep": "Robert P. Bresnahan, Jr.", "w": 1.0}], "sh": [{"d": "PA House District 139", "rep": "Jeff Olsommer", "w": 0.724}, {"d": "PA House District 189", "rep": "Tarah Probst", "w": 0.275}], "ss": [{"d": "PA Senate District 20", "rep": "Lisa Baker", "w": 0.999}]}, "munis": [], "slug": "pike"}, "42105": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 67", "rep": "Marty Causer", "w": 1.0}], "ss": [{"d": "PA Senate District 25", "rep": "Cris Dush", "w": 1.0}]}, "munis": [], "slug": "potter"}, "42107": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 0.999}], "sh": [{"d": "PA House District 107", "rep": "Joanne Stehr", "w": 0.32}, {"d": "PA House District 124", "rep": "Jamie Barton", "w": 0.309}, {"d": "PA House District 123", "rep": "Tim Twardzik", "w": 0.237}, {"d": "PA House District 116", "rep": "Dane Watro", "w": 0.134}], "ss": [{"d": "PA Senate District 29", "rep": "Dave Argall", "w": 1.0}]}, "munis": [{"m": "Pottsville", "p": [{"n": "Mark J. Atkinson", "r": "Mayor, Pottsville, PA"}]}], "slug": "schuylkill"}, "42109": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 0.995}], "sh": [{"d": "PA House District 85", "rep": "David Rowe", "w": 1.0}], "ss": [{"d": "PA Senate District 27", "rep": "Lynda Culver", "w": 1.0}]}, "munis": [], "slug": "snyder"}, "42111": {"county": [], "districts": {"cd": [{"d": "PA-14", "rep": "Guy Reschenthaler", "w": 0.983}, {"d": "PA-13", "rep": "John Joyce", "w": 0.017}], "sh": [{"d": "PA House District 69", "rep": "Carl Metzgar", "w": 0.935}, {"d": "PA House District 71", "rep": "Jim Rigby", "w": 0.065}], "ss": [{"d": "PA Senate District 32", "rep": "Pat Stefano", "w": 1.0}]}, "munis": [], "slug": "somerset"}, "42113": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 1.0}], "sh": [{"d": "PA House District 84", "rep": "Joe Hamm", "w": 1.0}], "ss": [{"d": "PA Senate District 23", "rep": "Gene Yaw", "w": 1.0}]}, "munis": [], "slug": "sullivan"}, "42115": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 1.0}], "sh": [{"d": "PA House District 111", "rep": "Jonathan Fritz", "w": 1.0}], "ss": [{"d": "PA Senate District 20", "rep": "Lisa Baker", "w": 1.0}]}, "munis": [], "slug": "susquehanna"}, "42117": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 68", "rep": "Clint Owlett", "w": 1.0}], "ss": [{"d": "PA Senate District 23", "rep": "Gene Yaw", "w": 1.0}]}, "munis": [], "slug": "tioga"}, "42119": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 0.999}], "sh": [{"d": "PA House District 76", "rep": "Stephanie Borowicz", "w": 0.723}, {"d": "PA House District 83", "rep": "Jamie Flick", "w": 0.194}, {"d": "PA House District 85", "rep": "David Rowe", "w": 0.083}], "ss": [{"d": "PA Senate District 23", "rep": "Gene Yaw", "w": 1.0}]}, "munis": [], "slug": "union"}, "42121": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 0.686}, {"d": "PA-16", "rep": "Mike Kelly", "w": 0.314}], "sh": [{"d": "PA House District 64", "rep": "Lee James", "w": 1.0}], "ss": [{"d": "PA Senate District 21", "rep": "Scott Hutchinson", "w": 1.0}]}, "munis": [{"m": "Oil City", "p": [{"n": "John Kluck", "r": "Mayor, Oil City, PA"}]}], "slug": "venango"}, "42123": {"county": [], "districts": {"cd": [{"d": "PA-15", "rep": "Glenn Thompson", "w": 1.0}], "sh": [{"d": "PA House District 65", "rep": "Kathy Rapp", "w": 1.0}], "ss": [{"d": "PA Senate District 21", "rep": "Scott Hutchinson", "w": 1.0}]}, "munis": [{"m": "Warren", "p": [{"n": "David G. Wortman", "r": "Mayor, Warren, PA"}]}], "slug": "warren"}, "42125": {"county": [], "districts": {"cd": [{"d": "PA-14", "rep": "Guy Reschenthaler", "w": 0.999}], "sh": [{"d": "PA House District 48", "rep": "Tim O'Neal", "w": 0.361}, {"d": "PA House District 15", "rep": "Josh Kail", "w": 0.338}, {"d": "PA House District 50", "rep": "Bud Cook", "w": 0.141}, {"d": "PA House District 46", "rep": "Jason Ortitay", "w": 0.109}, {"d": "PA House District 39", "rep": "Andrew Kuzma", "w": 0.028}, {"d": "PA House District 40", "rep": "Natalie Mihalek", "w": 0.023}], "ss": [{"d": "PA Senate District 46", "rep": "Camera Bartolotta", "w": 1.0}]}, "munis": [{"m": "Monongahela", "p": [{"n": "Greg Garry", "r": "Mayor, Monongahela, PA"}]}, {"m": "Washington", "p": [{"n": "JoJo Burgess", "r": "Mayor, Washington, PA"}]}], "slug": "washington"}, "42127": {"county": [], "districts": {"cd": [{"d": "PA-08", "rep": "Robert P. Bresnahan, Jr.", "w": 1.0}], "sh": [{"d": "PA House District 111", "rep": "Jonathan Fritz", "w": 0.712}, {"d": "PA House District 139", "rep": "Jeff Olsommer", "w": 0.288}], "ss": [{"d": "PA Senate District 20", "rep": "Lisa Baker", "w": 0.722}, {"d": "PA Senate District 40", "rep": "Rosemary Brown", "w": 0.277}]}, "munis": [], "slug": "wayne"}, "42129": {"county": [], "districts": {"cd": [{"d": "PA-14", "rep": "Guy Reschenthaler", "w": 0.85}, {"d": "PA-12", "rep": "Summer L. Lee", "w": 0.149}], "sh": [{"d": "PA House District 59", "rep": "Leslie Rossi", "w": 0.44}, {"d": "PA House District 55", "rep": "Jill Cooper", "w": 0.216}, {"d": "PA House District 58", "rep": "Eric Davanzo", "w": 0.16}, {"d": "PA House District 57", "rep": "Eric Nelson", "w": 0.086}, {"d": "PA House District 56", "rep": "Brian Rasel", "w": 0.056}, {"d": "PA House District 60", "rep": "Abby Major", "w": 0.041}], "ss": [{"d": "PA Senate District 39", "rep": "Kim Ward", "w": 0.585}, {"d": "PA Senate District 41", "rep": "Joe Pittman", "w": 0.414}]}, "munis": [{"m": "Greensburg", "p": [{"n": "Robert L. Bell", "r": "Mayor, Greensburg, PA"}]}], "slug": "westmoreland"}, "42131": {"county": [], "districts": {"cd": [{"d": "PA-09", "rep": "Daniel Meuser", "w": 0.999}], "sh": [{"d": "PA House District 110", "rep": "Tina Pickett", "w": 1.0}], "ss": [{"d": "PA Senate District 20", "rep": "Lisa Baker", "w": 1.0}]}, "munis": [], "slug": "wyoming"}, "42133": {"county": [], "districts": {"cd": [{"d": "PA-11", "rep": "Lloyd Smucker", "w": 0.614}, {"d": "PA-10", "rep": "Scott Perry", "w": 0.384}], "sh": [{"d": "PA House District 92", "rep": "Marc Anderson", "w": 0.224}, {"d": "PA House District 94", "rep": "Wendy Fink", "w": 0.198}, {"d": "PA House District 93", "rep": "Mike Jones", "w": 0.172}, {"d": "PA House District 196", "rep": "George Margetas", "w": 0.143}, {"d": "PA House District 169", "rep": "Kate Klunk", "w": 0.138}, {"d": "PA House District 47", "rep": "Joe D'Orsie", "w": 0.11}, {"d": "PA House District 95", "rep": "Carol Hill-Evans", "w": 0.014}], "ss": [{"d": "PA Senate District 28", "rep": "Kristin Phillips-Hill", "w": 0.662}, {"d": "PA Senate District 31", "rep": "Dawn Keefer", "w": 0.338}]}, "munis": [{"m": "York", "p": [{"n": "Q124818167", "r": "Mayor, York, PA"}]}], "slug": "york"}, "44001": {"county": [], "districts": {"cd": [{"d": "RI-01", "rep": "Gabe Amo", "w": 0.674}], "sh": [{"d": "RI House District 67", "rep": "Jason Knight", "w": 0.252}, {"d": "RI House District 68", "rep": "June Speakman", "w": 0.155}, {"d": "RI House District 69", "rep": "Susan Donovan", "w": 0.117}, {"d": "RI House District 66", "rep": "Jennifer Boylan", "w": 0.109}], "ss": [{"d": "RI Senate District 32", "rep": "Pam Lauria", "w": 0.318}, {"d": "RI Senate District 10", "rep": "Walter Felag", "w": 0.235}, {"d": "RI Senate District 11", "rep": "Linda Ujifusa", "w": 0.079}]}, "munis": [], "slug": "bristol"}, "44003": {"county": [], "districts": {"cd": [{"d": "RI-02", "rep": "Seth Magaziner", "w": 0.932}], "sh": [{"d": "RI House District 29", "rep": "Sherry Roberts", "w": 0.21}, {"d": "RI House District 30", "rep": "Justine Caldwell", "w": 0.176}, {"d": "RI House District 28", "rep": "George Nardone", "w": 0.153}, {"d": "RI House District 40", "rep": "Mike Chippendale", "w": 0.12}, {"d": "RI House District 24", "rep": "Evan Shanley", "w": 0.053}, {"d": "RI House District 20", "rep": "David Bennett", "w": 0.041}, {"d": "RI House District 26", "rep": "Earl Read", "w": 0.033}, {"d": "RI House District 21", "rep": "Marie Hopkins", "w": 0.03}, {"d": "RI House District 22", "rep": "Joseph Solomon", "w": 0.03}, {"d": "RI House District 27", "rep": "Pat Serpa", "w": 0.028}, {"d": "RI House District 23", "rep": "Joe Shekarchi", "w": 0.025}, {"d": "RI House District 25", "rep": "Tom Noret", "w": 0.017}, {"d": "RI House District 19", "rep": "Joseph McNamara", "w": 0.017}], "ss": [{"d": "RI Senate District 21", "rep": "Gordon Rogers", "w": 0.298}, {"d": "RI Senate District 33", "rep": "Lou Raptakis", "w": 0.222}, {"d": "RI Senate District 35", "rep": "Bridget Valverde", "w": 0.088}, {"d": "RI Senate District 30", "rep": "Mark McKenney", "w": 0.085}, {"d": "RI Senate District 34", "rep": "Elaine Morgan", "w": 0.084}, {"d": "RI Senate District 31", "rep": "Matt LaMountain", "w": 0.06}, {"d": "RI Senate District 29", "rep": "Pete Appollonio", "w": 0.052}, {"d": "RI Senate District 9", "rep": "John Burke", "w": 0.041}]}, "munis": [{"m": "Warwick", "p": [{"n": "Joseph J. Solomon", "r": "Mayor, Warwick, RI"}]}], "slug": "kent"}, "44005": {"county": [], "districts": {"cd": [{"d": "RI-01", "rep": "Gabe Amo", "w": 0.362}], "sh": [{"d": "RI House District 71", "rep": "Michelle McGaw", "w": 0.121}, {"d": "RI House District 70", "rep": "Jay Edwards", "w": 0.072}, {"d": "RI House District 72", "rep": "Terri Cortvriend", "w": 0.058}, {"d": "RI House District 74", "rep": "Alex Finkelman", "w": 0.048}, {"d": "RI House District 69", "rep": "Susan Donovan", "w": 0.021}, {"d": "RI House District 75", "rep": "Lauren Carson", "w": 0.019}, {"d": "RI House District 73", "rep": "Marvin Abney", "w": 0.011}], "ss": [{"d": "RI Senate District 12", "rep": "Lou DiPalma", "w": 0.184}, {"d": "RI Senate District 11", "rep": "Linda Ujifusa", "w": 0.079}, {"d": "RI Senate District 13", "rep": "Dawn Euer", "w": 0.056}, {"d": "RI Senate District 10", "rep": "Walter Felag", "w": 0.03}]}, "munis": [{"m": "Newport", "p": [{"n": "Charles M. Holder", "r": "Mayor, Newport, RI"}]}], "slug": "newport"}, "44007": {"county": [], "districts": {"cd": [{"d": "RI-02", "rep": "Seth Magaziner", "w": 0.648}, {"d": "RI-01", "rep": "Gabe Amo", "w": 0.344}], "sh": [{"d": "RI House District 40", "rep": "Mike Chippendale", "w": 0.235}, {"d": "RI House District 41", "rep": "Bob Quattrocchi", "w": 0.143}, {"d": "RI House District 47", "rep": "David Place", "w": 0.108}, {"d": "RI House District 48", "rep": "Brian Newberry", "w": 0.087}, {"d": "RI House District 53", "rep": "Paul Santucci", "w": 0.051}, {"d": "RI House District 52", "rep": "Alex Marszalkowski", "w": 0.038}, {"d": "RI House District 44", "rep": "Greg Costantino", "w": 0.037}, {"d": "RI House District 42", "rep": "Dick Fascia", "w": 0.028}, {"d": "RI House District 46", "rep": "Mary Ann Shallcross-Smith", "w": 0.028}, {"d": "RI House District 43", "rep": "Deb Fellela", "w": 0.02}, {"d": "RI House District 15", "rep": "Chris Paplauskas", "w": 0.019}, {"d": "RI House District 45", "rep": "Mia Ackerman", "w": 0.017}, {"d": "RI House District 51", "rep": "Bob Phillips", "w": 0.011}, {"d": "RI House District 63", "rep": "Katie Kazarian", "w": 0.011}, {"d": "RI House District 57", "rep": "Brandon Voas", "w": 0.011}, {"d": "RI House District 65", "rep": "Matthew Dawson", "w": 0.01}, {"d": "RI House District 17", "rep": "Jackie Baginski", "w": 0.009}, {"d": "RI House District 64", "rep": "Jenni Furtado", "w": 0.008}, {"d": "RI House District 49", "rep": "Jon Brien", "w": 0.007}, {"d": "RI House District 12", "rep": "Jose Batista", "w": 0.007}, {"d": "RI House District 50", "rep": "Stephen Casey", "w": 0.007}, {"d": "RI House District 55", "rep": "Doc Corvese", "w": 0.006}, {"d": "RI House District 4", "rep": "Rebecca Kislak", "w": 0.006}, {"d": "RI House District 54", "rep": "Bill O'Brien", "w": 0.006}, {"d": "RI House District 66", "rep": "Jennifer Boylan", "w": 0.006}, {"d": "RI House District 16", "rep": "Brandon Potter", "w": 0.006}, {"d": "RI House District 14", "rep": "Charlene Lima", "w": 0.006}, {"d": "RI House District 62", "rep": "Mary Messier", "w": 0.005}], "ss": [{"d": "RI Senate District 23", "rep": "Jessica de la Cruz", "w": 0.269}, {"d": "RI Senate District 21", "rep": "Gordon Rogers", "w": 0.244}, {"d": "RI Senate District 17", "rep": "Thomas Paolino", "w": 0.086}, {"d": "RI Senate District 22", "rep": "David Tikoian", "w": 0.068}, {"d": "RI Senate District 25", "rep": "Andrew Dimitri", "w": 0.055}, {"d": "RI Senate District 19", "rep": "Ryan Pearson", "w": 0.045}, {"d": "RI Senate District 26", "rep": "Todd Patalano", "w": 0.039}, {"d": "RI Senate District 20", "rep": "Brian Thompson", "w": 0.032}, {"d": "RI Senate District 18", "rep": "Bob Britto", "w": 0.017}, {"d": "RI Senate District 27", "rep": "Hanna Gallo", "w": 0.017}, {"d": "RI Senate District 14", "rep": "Val Lawson", "w": 0.014}, {"d": "RI Senate District 28", "rep": "Lammis Vargas", "w": 0.014}, {"d": "RI Senate District 24", "rep": "Melissa Murray", "w": 0.012}, {"d": "RI Senate District 4", "rep": "Stefano Famiglietti", "w": 0.011}, {"d": "RI Senate District 3", "rep": "Sam Zurier", "w": 0.009}, {"d": "RI Senate District 15", "rep": "Meghan Kallman", "w": 0.009}, {"d": "RI Senate District 8", "rep": "Lori Urso", "w": 0.008}, {"d": "RI Senate District 6", "rep": "Tiara Mack", "w": 0.007}, {"d": "RI Senate District 7", "rep": "Frank Ciccone", "w": 0.007}, {"d": "RI Senate District 1", "rep": "Jake Bissaillon", "w": 0.007}, {"d": "RI Senate District 32", "rep": "Pam Lauria", "w": 0.006}, {"d": "RI Senate District 5", "rep": "Sam Bell", "w": 0.005}, {"d": "RI Senate District 2", "rep": "Ana Quezada", "w": 0.005}]}, "munis": [{"m": "Central Falls", "p": [{"n": "Maria Rivera", "r": "Mayor, Central Falls, RI"}]}, {"m": "Cranston", "p": [{"n": "Kenneth Hopkins", "r": "Mayor, Cranston, RI"}]}, {"m": "East Providence", "p": [{"n": "Roberto L. DaSilva", "r": "Mayor, East Providence, RI"}]}, {"m": "Pawtucket", "p": [{"n": "Donald R. Grebien", "r": "Mayor, Pawtucket, RI"}]}, {"m": "Providence", "p": [{"n": "Brett Smiley", "r": "Mayor, Providence, RI"}]}, {"m": "Woonsocket", "p": [{"n": "Christopher Beauchamp", "r": "Mayor, Woonsocket, RI"}]}], "slug": "providence"}, "44009": {"county": [], "districts": {"cd": [{"d": "RI-02", "rep": "Seth Magaziner", "w": 0.624}], "sh": [{"d": "RI House District 39", "rep": "Megan Cotter", "w": 0.184}, {"d": "RI House District 36", "rep": "Tina Spears", "w": 0.13}, {"d": "RI House District 38", "rep": "Brian Kennedy", "w": 0.074}, {"d": "RI House District 35", "rep": "Kathleen Fogarty", "w": 0.056}, {"d": "RI House District 32", "rep": "Robert Craven", "w": 0.046}, {"d": "RI House District 31", "rep": "Julie Casimiro", "w": 0.045}, {"d": "RI House District 33", "rep": "Carol McEntee", "w": 0.034}, {"d": "RI House District 37", "rep": "Sam Azzinaro", "w": 0.031}, {"d": "RI House District 34", "rep": "Teresa Tanzi", "w": 0.026}], "ss": [{"d": "RI Senate District 34", "rep": "Elaine Morgan", "w": 0.292}, {"d": "RI Senate District 38", "rep": "Victoria Gu", "w": 0.102}, {"d": "RI Senate District 37", "rep": "Sue Sosnowski", "w": 0.097}, {"d": "RI Senate District 36", "rep": "Alana DiMario", "w": 0.09}, {"d": "RI Senate District 35", "rep": "Bridget Valverde", "w": 0.044}]}, "munis": [], "slug": "washington"}, "45001": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 1.0}], "sh": [{"d": "SC House District 11", "rep": "Craig Gagnon", "w": 1.0}], "ss": [{"d": "SC Senate District 4", "rep": "Mike Gambrell", "w": 1.0}]}, "munis": [{"m": "Abbeville", "p": [{"n": "Trey Edwards", "r": "Mayor, Abbeville, SC"}]}], "slug": "abbeville"}, "45003": {"county": [], "districts": {"cd": [{"d": "SC-02", "rep": "Joe Wilson", "w": 0.999}], "sh": [{"d": "SC House District 86", "rep": "Bill Taylor", "w": 0.692}, {"d": "SC House District 84", "rep": "Melissa Oremus", "w": 0.172}, {"d": "SC House District 81", "rep": "Charlie Hartz", "w": 0.065}, {"d": "SC House District 82", "rep": "Bill Clyburn", "w": 0.05}, {"d": "SC House District 83", "rep": "Bill Hixon", "w": 0.021}], "ss": [{"d": "SC Senate District 24", "rep": "Tom Young", "w": 0.438}, {"d": "SC Senate District 40", "rep": "Brad Hutto", "w": 0.428}, {"d": "SC Senate District 25", "rep": "Shane Massey", "w": 0.133}]}, "munis": [{"m": "Aiken", "p": [{"n": "Teddy Milner", "r": "Mayor, Aiken, SC"}]}], "slug": "aiken"}, "45005": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.993}, {"d": "GA-12", "rep": "Rick W. Allen", "w": 0.006}], "sh": [{"d": "SC House District 91", "rep": "Lonnie Hosey", "w": 0.999}], "ss": [{"d": "SC Senate District 40", "rep": "Brad Hutto", "w": 1.0}]}, "munis": [], "slug": "allendale"}, "45007": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 0.999}], "sh": [{"d": "SC House District 7", "rep": "Lee Gilreath", "w": 0.317}, {"d": "SC House District 6", "rep": "April Cromer", "w": 0.204}, {"d": "SC House District 8", "rep": "Don Chapman", "w": 0.183}, {"d": "SC House District 11", "rep": "Craig Gagnon", "w": 0.165}, {"d": "SC House District 9", "rep": "Blake Sanders", "w": 0.068}, {"d": "SC House District 10", "rep": "Thomas Beach", "w": 0.063}], "ss": [{"d": "SC Senate District 4", "rep": "Mike Gambrell", "w": 0.532}, {"d": "SC Senate District 3", "rep": "Richard Cash", "w": 0.467}]}, "munis": [{"m": "Anderson", "p": [{"n": "Terence Roberts", "r": "Mayor, Anderson, SC"}]}], "slug": "anderson"}, "45009": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.997}], "sh": [{"d": "SC House District 90", "rep": "Justin Bamberg", "w": 0.999}], "ss": [{"d": "SC Senate District 40", "rep": "Brad Hutto", "w": 1.0}]}, "munis": [{"m": "Bamberg", "p": [{"n": "Nancy Foster", "r": "Mayor, Bamberg, SC"}]}], "slug": "bamberg"}, "45011": {"county": [], "districts": {"cd": [{"d": "SC-02", "rep": "Joe Wilson", "w": 0.999}], "sh": [{"d": "SC House District 91", "rep": "Lonnie Hosey", "w": 0.999}], "ss": [{"d": "SC Senate District 40", "rep": "Brad Hutto", "w": 0.999}]}, "munis": [], "slug": "barnwell"}, "45013": {"county": [], "districts": {"cd": [{"d": "SC-01", "rep": "Nancy Mace", "w": 0.76}], "sh": [{"d": "SC House District 121", "rep": "Michael Rivers", "w": 0.339}, {"d": "SC House District 120", "rep": "Weston Newton", "w": 0.184}, {"d": "SC House District 124", "rep": "Shannon Erickson", "w": 0.126}, {"d": "SC House District 123", "rep": "Jeff Bradley", "w": 0.066}, {"d": "SC House District 118", "rep": "Bill Herbkersman", "w": 0.049}], "ss": [{"d": "SC Senate District 43", "rep": "Chip Campsen", "w": 0.297}, {"d": "SC Senate District 46", "rep": "Tom Davis", "w": 0.234}, {"d": "SC Senate District 45", "rep": "Margie Bright Matthews", "w": 0.234}]}, "munis": [{"m": "Beaufort", "p": [{"n": "Phil Cromer", "r": "Mayor, Beaufort, SC"}]}], "slug": "beaufort"}, "45015": {"county": [], "districts": {"cd": [{"d": "SC-01", "rep": "Nancy Mace", "w": 0.996}], "sh": [{"d": "SC House District 103", "rep": "Carl Anderson", "w": 0.311}, {"d": "SC House District 102", "rep": "Harriet Holman", "w": 0.307}, {"d": "SC House District 100", "rep": "Sylleste Davis", "w": 0.163}, {"d": "SC House District 101", "rep": "Roger Kirby", "w": 0.129}, {"d": "SC House District 99", "rep": "Mark Smith", "w": 0.045}, {"d": "SC House District 117", "rep": "Jordan Pace", "w": 0.028}, {"d": "SC House District 92", "rep": "Brandon Cox", "w": 0.013}, {"d": "SC House District 15", "rep": "J.A. Moore", "w": 0.005}], "ss": [{"d": "SC Senate District 37", "rep": "Larry Grooms", "w": 0.572}, {"d": "SC Senate District 32", "rep": "Ronnie Sabb", "w": 0.254}, {"d": "SC Senate District 39", "rep": "Tom Fernandez", "w": 0.139}, {"d": "SC Senate District 44", "rep": "Brian Adams", "w": 0.035}]}, "munis": [{"m": "Goose Creek", "p": [{"n": "Gregory Habib", "r": "Mayor, Goose Creek, SC"}]}], "slug": "berkeley"}, "45017": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.996}], "sh": [{"d": "SC House District 93", "rep": "Jerry Govan", "w": 1.0}], "ss": [{"d": "SC Senate District 26", "rep": "Russell Ott", "w": 0.502}, {"d": "SC Senate District 36", "rep": "Jeff Zell", "w": 0.498}]}, "munis": [], "slug": "calhoun"}, "45019": {"county": [], "districts": {"cd": [{"d": "SC-01", "rep": "Nancy Mace", "w": 0.497}, {"d": "SC-06", "rep": "James E. Clyburn", "w": 0.249}], "sh": [{"d": "SC House District 116", "rep": "James Teeple", "w": 0.268}, {"d": "SC House District 108", "rep": "Lee Hewitt", "w": 0.174}, {"d": "SC House District 112", "rep": "Joe Bustos", "w": 0.085}, {"d": "SC House District 115", "rep": "Spencer Wetmore", "w": 0.081}, {"d": "SC House District 119", "rep": "Leon Stavrinakis", "w": 0.026}, {"d": "SC House District 113", "rep": "Courtney Waters", "w": 0.024}, {"d": "SC House District 114", "rep": "Gary Brewer", "w": 0.022}, {"d": "SC House District 80", "rep": "Kathy Landing", "w": 0.021}, {"d": "SC House District 110", "rep": "Tom Hartnett", "w": 0.015}, {"d": "SC House District 111", "rep": "Wendell Gilliard", "w": 0.013}, {"d": "SC House District 109", "rep": "Tiffany Spann-Wilder", "w": 0.011}, {"d": "SC House District 15", "rep": "J.A. Moore", "w": 0.007}], "ss": [{"d": "SC Senate District 32", "rep": "Ronnie Sabb", "w": 0.194}, {"d": "SC Senate District 45", "rep": "Margie Bright Matthews", "w": 0.183}, {"d": "SC Senate District 43", "rep": "Chip Campsen", "w": 0.159}, {"d": "SC Senate District 41", "rep": "Matt Leber", "w": 0.098}, {"d": "SC Senate District 42", "rep": "Deon Tedder", "w": 0.044}, {"d": "SC Senate District 20", "rep": "Ed Sutton", "w": 0.037}, {"d": "SC Senate District 37", "rep": "Larry Grooms", "w": 0.017}, {"d": "SC Senate District 44", "rep": "Brian Adams", "w": 0.013}]}, "munis": [{"m": "Charleston", "p": [{"n": "John Tecklenburg", "r": "Mayor, Charleston, SC"}]}], "slug": "charleston"}, "45021": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.999}], "sh": [{"d": "SC House District 29", "rep": "Dennis Moss", "w": 0.502}, {"d": "SC House District 30", "rep": "Brian Lawson", "w": 0.498}], "ss": [{"d": "SC Senate District 14", "rep": "Harvey Peeler", "w": 0.999}]}, "munis": [], "slug": "cherokee"}, "45023": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 1.0}], "sh": [{"d": "SC House District 43", "rep": "Randy Ligon", "w": 0.731}, {"d": "SC House District 41", "rep": "Annie McDaniel", "w": 0.269}], "ss": [{"d": "SC Senate District 17", "rep": "Everett Stubbs", "w": 1.0}]}, "munis": [], "slug": "chester"}, "45025": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.997}], "sh": [{"d": "SC House District 53", "rep": "Richie Yow", "w": 0.651}, {"d": "SC House District 65", "rep": "Cody Mitchell", "w": 0.194}, {"d": "SC House District 54", "rep": "Jason Luck", "w": 0.154}], "ss": [{"d": "SC Senate District 27", "rep": "Allen Blackmon", "w": 0.846}, {"d": "SC Senate District 29", "rep": "J.D. Chaplin", "w": 0.154}]}, "munis": [], "slug": "chesterfield"}, "45027": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.998}], "sh": [{"d": "SC House District 64", "rep": "Fawn Pedalino", "w": 1.0}], "ss": [{"d": "SC Senate District 36", "rep": "Jeff Zell", "w": 1.0}]}, "munis": [], "slug": "clarendon"}, "45029": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.772}, {"d": "SC-01", "rep": "Nancy Mace", "w": 0.178}], "sh": [{"d": "SC House District 121", "rep": "Michael Rivers", "w": 0.37}, {"d": "SC House District 97", "rep": "Robby Robbins", "w": 0.31}, {"d": "SC House District 122", "rep": "Bill Hager", "w": 0.143}, {"d": "SC House District 90", "rep": "Justin Bamberg", "w": 0.12}, {"d": "SC House District 116", "rep": "James Teeple", "w": 0.006}], "ss": [{"d": "SC Senate District 45", "rep": "Margie Bright Matthews", "w": 0.443}, {"d": "SC Senate District 41", "rep": "Matt Leber", "w": 0.214}, {"d": "SC Senate District 40", "rep": "Brad Hutto", "w": 0.201}, {"d": "SC Senate District 43", "rep": "Chip Campsen", "w": 0.092}]}, "munis": [], "slug": "colleton"}, "45031": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.998}], "sh": [{"d": "SC House District 62", "rep": "Robert Williams", "w": 0.43}, {"d": "SC House District 54", "rep": "Jason Luck", "w": 0.237}, {"d": "SC House District 65", "rep": "Cody Mitchell", "w": 0.199}, {"d": "SC House District 53", "rep": "Richie Yow", "w": 0.133}], "ss": [{"d": "SC Senate District 29", "rep": "J.D. Chaplin", "w": 0.975}, {"d": "SC Senate District 30", "rep": "Kent Williams", "w": 0.025}]}, "munis": [], "slug": "darlington"}, "45033": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.999}], "sh": [{"d": "SC House District 55", "rep": "Jackie Hayes", "w": 0.857}, {"d": "SC House District 54", "rep": "Jason Luck", "w": 0.142}], "ss": [{"d": "SC Senate District 30", "rep": "Kent Williams", "w": 0.999}]}, "munis": [], "slug": "dillon"}, "45035": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.813}, {"d": "SC-01", "rep": "Nancy Mace", "w": 0.187}], "sh": [{"d": "SC House District 97", "rep": "Robby Robbins", "w": 0.34}, {"d": "SC House District 102", "rep": "Harriet Holman", "w": 0.168}, {"d": "SC House District 95", "rep": "Gilda Cobb-Hunter", "w": 0.161}, {"d": "SC House District 90", "rep": "Justin Bamberg", "w": 0.141}, {"d": "SC House District 114", "rep": "Gary Brewer", "w": 0.131}, {"d": "SC House District 94", "rep": "Gil Gatch", "w": 0.026}, {"d": "SC House District 98", "rep": "Greg Ford", "w": 0.023}, {"d": "SC House District 109", "rep": "Tiffany Spann-Wilder", "w": 0.01}], "ss": [{"d": "SC Senate District 39", "rep": "Tom Fernandez", "w": 0.537}, {"d": "SC Senate District 41", "rep": "Matt Leber", "w": 0.33}, {"d": "SC Senate District 38", "rep": "Sean Bennett", "w": 0.128}]}, "munis": [{"m": "North Charleston", "p": [{"n": "R. Keith Summey", "r": "Mayor, North Charleston, SC"}]}], "slug": "dorchester"}, "45037": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 1.0}], "sh": [{"d": "SC House District 82", "rep": "Bill Clyburn", "w": 0.663}, {"d": "SC House District 83", "rep": "Bill Hixon", "w": 0.337}], "ss": [{"d": "SC Senate District 25", "rep": "Shane Massey", "w": 1.0}]}, "munis": [], "slug": "edgefield"}, "45039": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.998}], "sh": [{"d": "SC House District 41", "rep": "Annie McDaniel", "w": 1.0}], "ss": [{"d": "SC Senate District 17", "rep": "Everett Stubbs", "w": 1.0}]}, "munis": [], "slug": "fairfield"}, "45041": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.906}, {"d": "SC-06", "rep": "James E. Clyburn", "w": 0.094}], "sh": [{"d": "SC House District 60", "rep": "Phillip Lowe", "w": 0.56}, {"d": "SC House District 59", "rep": "Terry Alexander", "w": 0.21}, {"d": "SC House District 55", "rep": "Jackie Hayes", "w": 0.068}, {"d": "SC House District 62", "rep": "Robert Williams", "w": 0.068}, {"d": "SC House District 101", "rep": "Roger Kirby", "w": 0.061}, {"d": "SC House District 63", "rep": "Jay Jordan", "w": 0.033}], "ss": [{"d": "SC Senate District 31", "rep": "Mike Reichenbach", "w": 0.852}, {"d": "SC Senate District 30", "rep": "Kent Williams", "w": 0.104}, {"d": "SC Senate District 32", "rep": "Ronnie Sabb", "w": 0.044}]}, "munis": [{"m": "Florence", "p": [{"n": "Lethonia Barnes", "r": "Mayor, Florence, SC"}]}], "slug": "florence"}, "45043": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.847}], "sh": [{"d": "SC House District 103", "rep": "Carl Anderson", "w": 0.574}, {"d": "SC House District 108", "rep": "Lee Hewitt", "w": 0.275}], "ss": [{"d": "SC Senate District 32", "rep": "Ronnie Sabb", "w": 0.711}, {"d": "SC Senate District 34", "rep": "Stephen Goldfinch", "w": 0.137}]}, "munis": [], "slug": "georgetown"}, "45045": {"county": [], "districts": {"cd": [{"d": "SC-04", "rep": "William R. Timmons IV", "w": 0.749}, {"d": "SC-03", "rep": "Sheri Biggs", "w": 0.249}], "sh": [{"d": "SC House District 17", "rep": "Mike Burns", "w": 0.377}, {"d": "SC House District 28", "rep": "Chris Huff", "w": 0.157}, {"d": "SC House District 18", "rep": "Alan Morgan", "w": 0.091}, {"d": "SC House District 25", "rep": "Wendell Jones", "w": 0.071}, {"d": "SC House District 16", "rep": "Mark Willis", "w": 0.052}, {"d": "SC House District 19", "rep": "Patrick Haddon", "w": 0.038}, {"d": "SC House District 21", "rep": "Dianne Mitchell", "w": 0.031}, {"d": "SC House District 20", "rep": "Stephen Frank", "w": 0.031}, {"d": "SC House District 27", "rep": "David Vaughan", "w": 0.029}, {"d": "SC House District 24", "rep": "Bruce Bannister", "w": 0.027}, {"d": "SC House District 7", "rep": "Lee Gilreath", "w": 0.026}, {"d": "SC House District 22", "rep": "Paul Wickensimer", "w": 0.023}, {"d": "SC House District 23", "rep": "Chandra Dillard", "w": 0.019}, {"d": "SC House District 35", "rep": "Bill Chumley", "w": 0.012}, {"d": "SC House District 10", "rep": "Thomas Beach", "w": 0.01}], "ss": [{"d": "SC Senate District 5", "rep": "Tom Corbin", "w": 0.446}, {"d": "SC Senate District 9", "rep": "Danny Verdin", "w": 0.19}, {"d": "SC Senate District 7", "rep": "Karl Allen", "w": 0.116}, {"d": "SC Senate District 6", "rep": "Jason Elliott", "w": 0.102}, {"d": "SC Senate District 8", "rep": "Ross Turner", "w": 0.088}, {"d": "SC Senate District 12", "rep": "Lee Bright", "w": 0.023}, {"d": "SC Senate District 13", "rep": "Shane Martin", "w": 0.021}, {"d": "SC Senate District 2", "rep": "Rex Rice", "w": 0.012}]}, "munis": [{"m": "Greenville", "p": [{"n": "Knox H. White", "r": "Mayor, Greenville, SC"}]}, {"m": "Greer", "p": [{"n": "Richard W. Danner", "r": "Mayor, Greer, SC"}]}, {"m": "Mauldin", "p": [{"n": "Terry Merritt", "r": "Mayor, Mauldin, SC"}]}], "slug": "greenville"}, "45047": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 1.0}], "sh": [{"d": "SC House District 13", "rep": "John McCravy", "w": 0.734}, {"d": "SC House District 12", "rep": "Daniel Gibson", "w": 0.266}], "ss": [{"d": "SC Senate District 10", "rep": "Billy Garrett", "w": 1.0}]}, "munis": [], "slug": "greenwood"}, "45049": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.999}], "sh": [{"d": "SC House District 122", "rep": "Bill Hager", "w": 1.0}], "ss": [{"d": "SC Senate District 45", "rep": "Margie Bright Matthews", "w": 1.0}]}, "munis": [], "slug": "hampton"}, "45051": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.912}], "sh": [{"d": "SC House District 105", "rep": "Kevin Hardee", "w": 0.217}, {"d": "SC House District 58", "rep": "Jeff Johnson", "w": 0.199}, {"d": "SC House District 57", "rep": "Lucas Atkinson", "w": 0.176}, {"d": "SC House District 55", "rep": "Jackie Hayes", "w": 0.067}, {"d": "SC House District 104", "rep": "William Bailey", "w": 0.06}, {"d": "SC House District 103", "rep": "Carl Anderson", "w": 0.046}, {"d": "SC House District 56", "rep": "Tim McGinnis", "w": 0.045}, {"d": "SC House District 68", "rep": "Heather Crawford", "w": 0.034}, {"d": "SC House District 107", "rep": "Case Brittain", "w": 0.024}, {"d": "SC House District 61", "rep": "Carla Schuessler", "w": 0.023}, {"d": "SC House District 106", "rep": "Val Guest", "w": 0.021}], "ss": [{"d": "SC Senate District 30", "rep": "Kent Williams", "w": 0.339}, {"d": "SC Senate District 28", "rep": "Greg Hembree", "w": 0.303}, {"d": "SC Senate District 33", "rep": "Luke Rankin", "w": 0.108}, {"d": "SC Senate District 32", "rep": "Ronnie Sabb", "w": 0.107}, {"d": "SC Senate District 34", "rep": "Stephen Goldfinch", "w": 0.056}]}, "munis": [{"m": "Conway", "p": [{"n": "Barbara Blain-Bellamy", "r": "Mayor, Conway, SC"}]}, {"m": "Loris", "p": [{"n": "Michael E. Suggs", "r": "Mayor, Loris, SC"}]}, {"m": "Myrtle Beach", "p": [{"n": "John Rhodes", "r": "Mayor, Myrtle Beach, SC"}]}], "slug": "horry"}, "45053": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.925}, {"d": "SC-01", "rep": "Nancy Mace", "w": 0.03}], "sh": [{"d": "SC House District 122", "rep": "Bill Hager", "w": 0.766}, {"d": "SC House District 123", "rep": "Jeff Bradley", "w": 0.163}, {"d": "SC House District 120", "rep": "Weston Newton", "w": 0.027}], "ss": [{"d": "SC Senate District 45", "rep": "Margie Bright Matthews", "w": 0.929}, {"d": "SC Senate District 46", "rep": "Tom Davis", "w": 0.027}]}, "munis": [], "slug": "jasper"}, "45055": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.999}], "sh": [{"d": "SC House District 65", "rep": "Cody Mitchell", "w": 0.321}, {"d": "SC House District 45", "rep": "Brandon Newton", "w": 0.223}, {"d": "SC House District 50", "rep": "Keishan Scott", "w": 0.221}, {"d": "SC House District 70", "rep": "Robert Reese", "w": 0.147}, {"d": "SC House District 52", "rep": "Jermaine Johnson", "w": 0.088}], "ss": [{"d": "SC Senate District 27", "rep": "Allen Blackmon", "w": 0.559}, {"d": "SC Senate District 35", "rep": "Jeffrey Graham", "w": 0.441}]}, "munis": [{"m": "Camden", "p": [{"n": "Vincent Sheheen", "r": "Mayor, Camden, SC"}]}], "slug": "kershaw"}, "45057": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.998}], "sh": [{"d": "SC House District 45", "rep": "Brandon Newton", "w": 0.468}, {"d": "SC House District 65", "rep": "Cody Mitchell", "w": 0.254}, {"d": "SC House District 53", "rep": "Richie Yow", "w": 0.174}, {"d": "SC House District 44", "rep": "Mike Neese", "w": 0.105}], "ss": [{"d": "SC Senate District 27", "rep": "Allen Blackmon", "w": 0.858}, {"d": "SC Senate District 16", "rep": "Michael Johnson", "w": 0.071}, {"d": "SC Senate District 17", "rep": "Everett Stubbs", "w": 0.07}]}, "munis": [], "slug": "lancaster"}, "45059": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 0.998}], "sh": [{"d": "SC House District 14", "rep": "Luke Rankin", "w": 0.616}, {"d": "SC House District 42", "rep": "Doug Gilliam", "w": 0.209}, {"d": "SC House District 16", "rep": "Mark Willis", "w": 0.08}, {"d": "SC House District 11", "rep": "Craig Gagnon", "w": 0.062}, {"d": "SC House District 13", "rep": "John McCravy", "w": 0.032}], "ss": [{"d": "SC Senate District 9", "rep": "Danny Verdin", "w": 1.0}]}, "munis": [], "slug": "laurens"}, "45061": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.995}], "sh": [{"d": "SC House District 50", "rep": "Keishan Scott", "w": 1.0}], "ss": [{"d": "SC Senate District 29", "rep": "J.D. Chaplin", "w": 0.538}, {"d": "SC Senate District 35", "rep": "Jeffrey Graham", "w": 0.462}]}, "munis": [], "slug": "lee"}, "45063": {"county": [], "districts": {"cd": [{"d": "SC-02", "rep": "Joe Wilson", "w": 0.998}], "sh": [{"d": "SC House District 39", "rep": "Cal Forrest", "w": 0.219}, {"d": "SC House District 96", "rep": "Ryan McCabe", "w": 0.214}, {"d": "SC House District 86", "rep": "Bill Taylor", "w": 0.102}, {"d": "SC House District 87", "rep": "Paula Calhoon", "w": 0.094}, {"d": "SC House District 93", "rep": "Jerry Govan", "w": 0.09}, {"d": "SC House District 85", "rep": "Jay Kilmartin", "w": 0.084}, {"d": "SC House District 88", "rep": "John Lastinger", "w": 0.083}, {"d": "SC House District 69", "rep": "Chris Wooten", "w": 0.05}, {"d": "SC House District 89", "rep": "Micah Caskey", "w": 0.043}, {"d": "SC House District 40", "rep": "Joe White", "w": 0.015}, {"d": "SC House District 71", "rep": "Nathan Ballentine", "w": 0.006}], "ss": [{"d": "SC Senate District 23", "rep": "Carlisle Kennedy", "w": 0.463}, {"d": "SC Senate District 25", "rep": "Shane Massey", "w": 0.166}, {"d": "SC Senate District 26", "rep": "Russell Ott", "w": 0.161}, {"d": "SC Senate District 18", "rep": "Ronnie Cromer", "w": 0.111}, {"d": "SC Senate District 10", "rep": "Billy Garrett", "w": 0.099}]}, "munis": [], "slug": "lexington"}, "45065": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 0.999}], "sh": [{"d": "SC House District 12", "rep": "Daniel Gibson", "w": 1.0}], "ss": [{"d": "SC Senate District 25", "rep": "Shane Massey", "w": 1.0}]}, "munis": [], "slug": "mccormick"}, "45067": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 1.0}], "sh": [{"d": "SC House District 57", "rep": "Lucas Atkinson", "w": 0.631}, {"d": "SC House District 59", "rep": "Terry Alexander", "w": 0.369}], "ss": [{"d": "SC Senate District 30", "rep": "Kent Williams", "w": 1.0}]}, "munis": [{"m": "Marion", "p": [{"n": "Ashley Brady", "r": "Mayor, Marion, SC"}]}], "slug": "marion"}, "45069": {"county": [], "districts": {"cd": [{"d": "SC-07", "rep": "Russell Fry", "w": 0.999}], "sh": [{"d": "SC House District 54", "rep": "Jason Luck", "w": 0.928}, {"d": "SC House District 55", "rep": "Jackie Hayes", "w": 0.071}], "ss": [{"d": "SC Senate District 29", "rep": "J.D. Chaplin", "w": 0.999}]}, "munis": [], "slug": "marlboro"}, "45071": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 0.997}], "sh": [{"d": "SC House District 40", "rep": "Joe White", "w": 1.0}], "ss": [{"d": "SC Senate District 18", "rep": "Ronnie Cromer", "w": 1.0}]}, "munis": [], "slug": "newberry"}, "45073": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 0.997}], "sh": [{"d": "SC House District 1", "rep": "Bill Whitmire", "w": 0.727}, {"d": "SC House District 2", "rep": "Adam Duncan", "w": 0.272}], "ss": [{"d": "SC Senate District 1", "rep": "Tom Alexander", "w": 0.999}]}, "munis": [{"m": "Seneca", "p": [{"n": "Daniel W. Alexander", "r": "Mayor, Seneca, SC"}]}], "slug": "oconee"}, "45075": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.602}, {"d": "SC-02", "rep": "Joe Wilson", "w": 0.398}], "sh": [{"d": "SC House District 90", "rep": "Justin Bamberg", "w": 0.309}, {"d": "SC House District 95", "rep": "Gilda Cobb-Hunter", "w": 0.267}, {"d": "SC House District 91", "rep": "Lonnie Hosey", "w": 0.24}, {"d": "SC House District 93", "rep": "Jerry Govan", "w": 0.184}], "ss": [{"d": "SC Senate District 40", "rep": "Brad Hutto", "w": 0.452}, {"d": "SC Senate District 39", "rep": "Tom Fernandez", "w": 0.365}, {"d": "SC Senate District 36", "rep": "Jeff Zell", "w": 0.183}]}, "munis": [], "slug": "orangeburg"}, "45077": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 0.997}], "sh": [{"d": "SC House District 4", "rep": "Davey Hiott", "w": 0.496}, {"d": "SC House District 1", "rep": "Bill Whitmire", "w": 0.209}, {"d": "SC House District 3", "rep": "Phillip Bowers", "w": 0.178}, {"d": "SC House District 5", "rep": "Neal Collins", "w": 0.104}, {"d": "SC House District 10", "rep": "Thomas Beach", "w": 0.012}], "ss": [{"d": "SC Senate District 2", "rep": "Rex Rice", "w": 0.912}, {"d": "SC Senate District 1", "rep": "Tom Alexander", "w": 0.087}]}, "munis": [], "slug": "pickens"}, "45079": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.535}, {"d": "SC-02", "rep": "Joe Wilson", "w": 0.46}], "sh": [{"d": "SC House District 70", "rep": "Robert Reese", "w": 0.334}, {"d": "SC House District 52", "rep": "Jermaine Johnson", "w": 0.126}, {"d": "SC House District 73", "rep": "Chris Hart", "w": 0.115}, {"d": "SC House District 78", "rep": "Beth Bernstein", "w": 0.106}, {"d": "SC House District 71", "rep": "Nathan Ballentine", "w": 0.086}, {"d": "SC House District 77", "rep": "Kambrell Garvin", "w": 0.075}, {"d": "SC House District 41", "rep": "Annie McDaniel", "w": 0.042}, {"d": "SC House District 72", "rep": "Seth Rose", "w": 0.028}, {"d": "SC House District 76", "rep": "Leon Howard", "w": 0.024}, {"d": "SC House District 79", "rep": "Hamilton Grant", "w": 0.022}, {"d": "SC House District 74", "rep": "Todd Rutherford", "w": 0.021}, {"d": "SC House District 75", "rep": "Heather Bauer", "w": 0.02}], "ss": [{"d": "SC Senate District 21", "rep": "Darrell Jackson", "w": 0.455}, {"d": "SC Senate District 19", "rep": "Tameika Isaac Devine", "w": 0.181}, {"d": "SC Senate District 35", "rep": "Jeffrey Graham", "w": 0.148}, {"d": "SC Senate District 22", "rep": "Overture Walker", "w": 0.121}, {"d": "SC Senate District 18", "rep": "Ronnie Cromer", "w": 0.082}, {"d": "SC Senate District 26", "rep": "Russell Ott", "w": 0.013}]}, "munis": [{"m": "Columbia", "p": [{"n": "Daniel Rickenmann", "r": "Mayor, Columbia, SC"}]}], "slug": "richland"}, "45081": {"county": [], "districts": {"cd": [{"d": "SC-03", "rep": "Sheri Biggs", "w": 1.0}], "sh": [{"d": "SC House District 39", "rep": "Cal Forrest", "w": 0.771}, {"d": "SC House District 82", "rep": "Bill Clyburn", "w": 0.228}], "ss": [{"d": "SC Senate District 25", "rep": "Shane Massey", "w": 0.635}, {"d": "SC Senate District 10", "rep": "Billy Garrett", "w": 0.365}]}, "munis": [], "slug": "saluda"}, "45083": {"county": [], "districts": {"cd": [{"d": "SC-04", "rep": "William R. Timmons IV", "w": 0.788}, {"d": "SC-05", "rep": "Ralph Norman", "w": 0.21}], "sh": [{"d": "SC House District 33", "rep": "Travis Moore", "w": 0.304}, {"d": "SC House District 38", "rep": "Josiah Magnuson", "w": 0.202}, {"d": "SC House District 35", "rep": "Bill Chumley", "w": 0.111}, {"d": "SC House District 36", "rep": "Rob Harris", "w": 0.088}, {"d": "SC House District 32", "rep": "Scott Montgomery", "w": 0.078}, {"d": "SC House District 34", "rep": "Sarita Edgerton", "w": 0.075}, {"d": "SC House District 37", "rep": "Steven Long", "w": 0.047}, {"d": "SC House District 30", "rep": "Brian Lawson", "w": 0.036}, {"d": "SC House District 31", "rep": "Rosalyn Henderson-Myers", "w": 0.03}, {"d": "SC House District 29", "rep": "Dennis Moss", "w": 0.029}], "ss": [{"d": "SC Senate District 13", "rep": "Shane Martin", "w": 0.445}, {"d": "SC Senate District 11", "rep": "Josh Kimbrell", "w": 0.219}, {"d": "SC Senate District 12", "rep": "Lee Bright", "w": 0.159}, {"d": "SC Senate District 5", "rep": "Tom Corbin", "w": 0.097}, {"d": "SC Senate District 14", "rep": "Harvey Peeler", "w": 0.08}]}, "munis": [{"m": "Spartanburg", "p": [{"n": "Jerome Rice", "r": "Mayor, Spartanburg, SC"}]}], "slug": "spartanburg"}, "45085": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.685}, {"d": "SC-06", "rep": "James E. Clyburn", "w": 0.314}], "sh": [{"d": "SC House District 64", "rep": "Fawn Pedalino", "w": 0.337}, {"d": "SC House District 50", "rep": "Keishan Scott", "w": 0.317}, {"d": "SC House District 51", "rep": "David Weeks", "w": 0.209}, {"d": "SC House District 67", "rep": "Murrell Smith", "w": 0.136}], "ss": [{"d": "SC Senate District 35", "rep": "Jeffrey Graham", "w": 0.549}, {"d": "SC Senate District 36", "rep": "Jeff Zell", "w": 0.292}, {"d": "SC Senate District 29", "rep": "J.D. Chaplin", "w": 0.158}]}, "munis": [{"m": "Sumter", "p": [{"n": "David Merchant", "r": "Mayor, Sumter, SC"}]}], "slug": "sumter"}, "45087": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 0.997}], "sh": [{"d": "SC House District 42", "rep": "Doug Gilliam", "w": 1.0}], "ss": [{"d": "SC Senate District 13", "rep": "Shane Martin", "w": 0.409}, {"d": "SC Senate District 9", "rep": "Danny Verdin", "w": 0.396}, {"d": "SC Senate District 14", "rep": "Harvey Peeler", "w": 0.195}]}, "munis": [], "slug": "union"}, "45089": {"county": [], "districts": {"cd": [{"d": "SC-06", "rep": "James E. Clyburn", "w": 0.996}], "sh": [{"d": "SC House District 101", "rep": "Roger Kirby", "w": 0.81}, {"d": "SC House District 57", "rep": "Lucas Atkinson", "w": 0.19}], "ss": [{"d": "SC Senate District 32", "rep": "Ronnie Sabb", "w": 1.0}]}, "munis": [{"m": "Kingstree", "p": [{"n": "Darren Tisdale", "r": "Mayor, Kingstree, SC"}]}], "slug": "williamsburg"}, "45091": {"county": [], "districts": {"cd": [{"d": "SC-05", "rep": "Ralph Norman", "w": 1.0}], "sh": [{"d": "SC House District 29", "rep": "Dennis Moss", "w": 0.333}, {"d": "SC House District 47", "rep": "Tommy Pope", "w": 0.262}, {"d": "SC House District 43", "rep": "Randy Ligon", "w": 0.102}, {"d": "SC House District 49", "rep": "John King", "w": 0.101}, {"d": "SC House District 48", "rep": "Brandon Guffey", "w": 0.073}, {"d": "SC House District 26", "rep": "David Martin", "w": 0.051}, {"d": "SC House District 46", "rep": "Heath Sessions", "w": 0.049}, {"d": "SC House District 66", "rep": "Jackie Terribile", "w": 0.03}], "ss": [{"d": "SC Senate District 15", "rep": "Wes Climer", "w": 0.429}, {"d": "SC Senate District 14", "rep": "Harvey Peeler", "w": 0.324}, {"d": "SC Senate District 17", "rep": "Everett Stubbs", "w": 0.166}, {"d": "SC Senate District 16", "rep": "Michael Johnson", "w": 0.081}]}, "munis": [{"m": "Rock Hill", "p": [{"n": "John Gettys", "r": "Mayor, Rock Hill, SC"}]}], "slug": "york"}, "46003": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 21", "rep": "Jim Halverson, Marty Overweg", "w": 1.0}], "ss": [{"d": "SD Senate District 21", "rep": "MyKala Voita", "w": 1.0}]}, "munis": [], "slug": "aurora"}, "46005": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 22", "rep": "Kevin Van Diepen, Lana Greenfield", "w": 1.0}], "ss": [{"d": "SD Senate District 22", "rep": "Brandon Wipf", "w": 1.0}]}, "munis": [], "slug": "beadle"}, "46007": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 27", "rep": "Liz May, Peri Pourier", "w": 1.0}], "ss": [{"d": "SD Senate District 27", "rep": "Red Dawn Foster", "w": 1.0}]}, "munis": [], "slug": "bennett"}, "46009": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 19", "rep": "Drew Peterson, Jessica Bahmuller", "w": 0.999}], "ss": [{"d": "SD Senate District 19", "rep": "Kyle Schoenfish", "w": 0.999}]}, "munis": [], "slug": "bon-homme"}, "46011": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 8", "rep": "Tim Reisch, Tim Walburg", "w": 0.865}, {"d": "SD House District 7", "rep": "Mellissa Heermann, Roger DeGroot", "w": 0.135}], "ss": [{"d": "SD Senate District 8", "rep": "Casey Crabtree", "w": 0.865}, {"d": "SD Senate District 7", "rep": "Tim Reed", "w": 0.135}]}, "munis": [{"m": "Brookings", "p": [{"n": "Oepke \"Ope\" Niemeyer", "r": "Mayor, Brookings, SD"}]}, {"m": "Volga", "p": [{"n": "Ken Fideler", "r": "Mayor, Volga, SD"}]}], "slug": "brookings"}, "46013": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 1", "rep": "Logan Manhart, Nick Fosness", "w": 0.954}, {"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 0.025}, {"d": "SD House District 3", "rep": "Al Novstrup, Brandei Schaefbauer", "w": 0.021}], "ss": [{"d": "SD Senate District 1", "rep": "Michael Rohl", "w": 0.954}, {"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 0.025}, {"d": "SD Senate District 3", "rep": "Carl Perry", "w": 0.021}]}, "munis": [{"m": "Aberdeen", "p": [{"n": "Travis Schaunaman", "r": "Mayor, Aberdeen, SD"}]}], "slug": "brown"}, "46015": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 26B", "rep": "Rebecca Reimer", "w": 1.0}], "ss": [{"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 1.0}]}, "munis": [], "slug": "brule"}, "46017": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 26B", "rep": "Rebecca Reimer", "w": 1.0}], "ss": [{"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 1.0}]}, "munis": [], "slug": "buffalo"}, "46019": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 28B", "rep": "Travis Ismay", "w": 1.0}], "ss": [{"d": "SD Senate District 28", "rep": "Sam Marty", "w": 1.0}]}, "munis": [], "slug": "butte"}, "46021": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "campbell"}, "46023": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 21", "rep": "Jim Halverson, Marty Overweg", "w": 1.0}], "ss": [{"d": "SD Senate District 21", "rep": "MyKala Voita", "w": 1.0}]}, "munis": [], "slug": "charles-mix"}, "46025": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 4", "rep": "Dylan Jordan, Kent Roe", "w": 0.816}, {"d": "SD House District 22", "rep": "Kevin Van Diepen, Lana Greenfield", "w": 0.184}], "ss": [{"d": "SD Senate District 4", "rep": "Stephanie Sauder", "w": 0.816}, {"d": "SD Senate District 22", "rep": "Brandon Wipf", "w": 0.184}]}, "munis": [], "slug": "clark"}, "46027": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 0.999}], "sh": [{"d": "SD House District 17", "rep": "Chris Kassin, William Shorma", "w": 0.828}, {"d": "SD House District 18", "rep": "Julie Auch, Mike Stevens", "w": 0.172}], "ss": [{"d": "SD Senate District 17", "rep": "Sydney Davis", "w": 0.828}, {"d": "SD Senate District 18", "rep": "Lauren Nelson", "w": 0.172}]}, "munis": [{"m": "Vermillion", "p": [{"n": "Jon Cole", "r": "Mayor, Vermillion, SD"}]}], "slug": "clay"}, "46029": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 4", "rep": "Dylan Jordan, Kent Roe", "w": 0.8}, {"d": "SD House District 5", "rep": "Josephine Garcia, Matt Roby", "w": 0.199}], "ss": [{"d": "SD Senate District 4", "rep": "Stephanie Sauder", "w": 0.8}, {"d": "SD Senate District 5", "rep": "Glen Vilhauer", "w": 0.199}]}, "munis": [], "slug": "codington"}, "46031": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 28A", "rep": "Jana Hunt", "w": 1.0}], "ss": [{"d": "SD Senate District 28", "rep": "Sam Marty", "w": 1.0}]}, "munis": [], "slug": "corson"}, "46033": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 30", "rep": "Tim Goodwin, Trish Ladner", "w": 1.0}], "ss": [{"d": "SD Senate District 30", "rep": "Amber Hulse", "w": 1.0}]}, "munis": [], "slug": "custer"}, "46035": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 20", "rep": "Jeff Bathke, Kaley Nolz", "w": 1.0}], "ss": [{"d": "SD Senate District 20", "rep": "Paul Miskimins", "w": 1.0}]}, "munis": [], "slug": "davison"}, "46037": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 1", "rep": "Logan Manhart, Nick Fosness", "w": 1.0}], "ss": [{"d": "SD Senate District 1", "rep": "Michael Rohl", "w": 1.0}]}, "munis": [], "slug": "day"}, "46039": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 4", "rep": "Dylan Jordan, Kent Roe", "w": 1.0}], "ss": [{"d": "SD Senate District 4", "rep": "Stephanie Sauder", "w": 1.0}]}, "munis": [], "slug": "deuel"}, "46041": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 28A", "rep": "Jana Hunt", "w": 1.0}], "ss": [{"d": "SD Senate District 28", "rep": "Sam Marty", "w": 1.0}]}, "munis": [], "slug": "dewey"}, "46043": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 21", "rep": "Jim Halverson, Marty Overweg", "w": 1.0}], "ss": [{"d": "SD Senate District 21", "rep": "MyKala Voita", "w": 1.0}]}, "munis": [], "slug": "douglas"}, "46045": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "edmunds"}, "46047": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 30", "rep": "Tim Goodwin, Trish Ladner", "w": 1.0}], "ss": [{"d": "SD Senate District 30", "rep": "Amber Hulse", "w": 1.0}]}, "munis": [], "slug": "fall-river"}, "46049": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "faulk"}, "46051": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 4", "rep": "Dylan Jordan, Kent Roe", "w": 1.0}], "ss": [{"d": "SD Senate District 4", "rep": "Stephanie Sauder", "w": 1.0}]}, "munis": [{"m": "Milbank", "p": [{"n": "Pat Raffety", "r": "Mayor, Milbank, SD"}]}], "slug": "grant"}, "46053": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 21", "rep": "Jim Halverson, Marty Overweg", "w": 1.0}], "ss": [{"d": "SD Senate District 21", "rep": "MyKala Voita", "w": 1.0}]}, "munis": [], "slug": "gregory"}, "46055": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 24", "rep": "Mike Weisgram, Will Mortenson", "w": 1.0}], "ss": [{"d": "SD Senate District 24", "rep": "Jim Mehlhaff", "w": 1.0}]}, "munis": [], "slug": "haakon"}, "46057": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 4", "rep": "Dylan Jordan, Kent Roe", "w": 1.0}], "ss": [{"d": "SD Senate District 4", "rep": "Stephanie Sauder", "w": 1.0}]}, "munis": [], "slug": "hamlin"}, "46059": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "hand"}, "46061": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 19", "rep": "Drew Peterson, Jessica Bahmuller", "w": 1.0}], "ss": [{"d": "SD Senate District 19", "rep": "Kyle Schoenfish", "w": 1.0}]}, "munis": [], "slug": "hanson"}, "46063": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 28B", "rep": "Travis Ismay", "w": 1.0}], "ss": [{"d": "SD Senate District 28", "rep": "Sam Marty", "w": 1.0}]}, "munis": [], "slug": "harding"}, "46065": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 24", "rep": "Mike Weisgram, Will Mortenson", "w": 0.85}, {"d": "SD House District 26B", "rep": "Rebecca Reimer", "w": 0.15}], "ss": [{"d": "SD Senate District 24", "rep": "Jim Mehlhaff", "w": 0.85}, {"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 0.15}]}, "munis": [{"m": "Pierre", "p": [{"n": "Steve Harding", "r": "Mayor, Pierre, SD"}]}], "slug": "hughes"}, "46067": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 19", "rep": "Drew Peterson, Jessica Bahmuller", "w": 1.0}], "ss": [{"d": "SD Senate District 19", "rep": "Kyle Schoenfish", "w": 1.0}]}, "munis": [], "slug": "hutchinson"}, "46069": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 24", "rep": "Mike Weisgram, Will Mortenson", "w": 0.902}, {"d": "SD House District 26B", "rep": "Rebecca Reimer", "w": 0.098}], "ss": [{"d": "SD Senate District 24", "rep": "Jim Mehlhaff", "w": 0.902}, {"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 0.098}]}, "munis": [], "slug": "hyde"}, "46071": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 27", "rep": "Liz May, Peri Pourier", "w": 1.0}], "ss": [{"d": "SD Senate District 27", "rep": "Red Dawn Foster", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "46073": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 20", "rep": "Jeff Bathke, Kaley Nolz", "w": 1.0}], "ss": [{"d": "SD Senate District 20", "rep": "Paul Miskimins", "w": 1.0}]}, "munis": [], "slug": "jerauld"}, "46075": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 26A", "rep": "Eric Emery", "w": 0.572}, {"d": "SD House District 26B", "rep": "Rebecca Reimer", "w": 0.427}], "ss": [{"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 1.0}]}, "munis": [], "slug": "jones"}, "46077": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 8", "rep": "Tim Reisch, Tim Walburg", "w": 1.0}], "ss": [{"d": "SD Senate District 8", "rep": "Casey Crabtree", "w": 1.0}]}, "munis": [{"m": "Arlington", "p": [{"n": "Curt Lundquist", "r": "Mayor, Arlington, SD"}]}], "slug": "kingsbury"}, "46079": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 8", "rep": "Tim Reisch, Tim Walburg", "w": 1.0}], "ss": [{"d": "SD Senate District 8", "rep": "Casey Crabtree", "w": 1.0}]}, "munis": [{"m": "Madison", "p": [{"n": "Roy Lindsay", "r": "Mayor, Madison, SD"}]}], "slug": "lake"}, "46081": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 31", "rep": "Mary Fitzgerald, Scott Odenbach", "w": 1.0}], "ss": [{"d": "SD Senate District 31", "rep": "Randy Deibert", "w": 1.0}]}, "munis": [], "slug": "lawrence"}, "46083": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 0.999}], "sh": [{"d": "SD House District 16", "rep": "John Shubeck, Karla Lems", "w": 0.799}, {"d": "SD House District 6", "rep": "Aaron Aylward, Tim Czmowski", "w": 0.179}, {"d": "SD House District 13", "rep": "Jack Kolbeck, John Hughes", "w": 0.012}, {"d": "SD House District 12", "rep": "Amber Arlint, Greg Jamison", "w": 0.008}], "ss": [{"d": "SD Senate District 16", "rep": "Kevin Jensen", "w": 0.799}, {"d": "SD Senate District 6", "rep": "Ernie Otten", "w": 0.179}, {"d": "SD Senate District 13", "rep": "Sue Peterson", "w": 0.012}, {"d": "SD Senate District 12", "rep": "Arch Beal", "w": 0.008}]}, "munis": [{"m": "Canton", "p": [{"n": "Sandi Lundstrom", "r": "Mayor, Canton, SD"}]}, {"m": "Harrisburg", "p": [{"n": "Derick Wenck", "r": "Mayor, Harrisburg, SD"}]}, {"m": "Lennox", "p": [{"n": "Stacy DuChene", "r": "Mayor, Lennox, SD"}]}, {"m": "Tea", "p": [{"n": "Casey Voelker", "r": "Mayor, Tea, SD"}]}], "slug": "lincoln"}, "46085": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 26B", "rep": "Rebecca Reimer", "w": 1.0}], "ss": [{"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 1.0}]}, "munis": [], "slug": "lyman"}, "46087": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 19", "rep": "Drew Peterson, Jessica Bahmuller", "w": 1.0}], "ss": [{"d": "SD Senate District 19", "rep": "Kyle Schoenfish", "w": 1.0}]}, "munis": [], "slug": "mccook"}, "46089": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "mcpherson"}, "46091": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 0.999}], "sh": [{"d": "SD House District 1", "rep": "Logan Manhart, Nick Fosness", "w": 0.999}], "ss": [{"d": "SD Senate District 1", "rep": "Michael Rohl", "w": 0.999}]}, "munis": [], "slug": "marshall"}, "46093": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 29", "rep": "Kathy Rice, Terri Jorgenson", "w": 0.994}, {"d": "SD House District 33", "rep": "Curt Massie, Phil Jensen", "w": 0.006}], "ss": [{"d": "SD Senate District 29", "rep": "John Carley", "w": 0.994}, {"d": "SD Senate District 33", "rep": "Curt Voight", "w": 0.006}]}, "munis": [{"m": "Sturgis", "p": [{"n": "Angela Wilkerson", "r": "Mayor, Sturgis, SD"}]}], "slug": "meade"}, "46095": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 26A", "rep": "Eric Emery", "w": 1.0}], "ss": [{"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 1.0}]}, "munis": [], "slug": "mellette"}, "46097": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 8", "rep": "Tim Reisch, Tim Walburg", "w": 0.811}, {"d": "SD House District 20", "rep": "Jeff Bathke, Kaley Nolz", "w": 0.189}], "ss": [{"d": "SD Senate District 8", "rep": "Casey Crabtree", "w": 0.811}, {"d": "SD Senate District 20", "rep": "Paul Miskimins", "w": 0.189}]}, "munis": [], "slug": "miner"}, "46099": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 25", "rep": "Jon Hansen, Les Heinemann", "w": 0.708}, {"d": "SD House District 2", "rep": "David Kull, John Sjaarda", "w": 0.123}, {"d": "SD House District 9", "rep": "Bethany Soye, Tesa Schwans", "w": 0.108}, {"d": "SD House District 15", "rep": "Erik Muckey, Kadyn Wittman", "w": 0.02}, {"d": "SD House District 10", "rep": "Bobbi Andera, Erin Healy", "w": 0.015}, {"d": "SD House District 14", "rep": "Taylor Rehfeldt, Tony Kayser", "w": 0.008}, {"d": "SD House District 11", "rep": "Brian Mulder, Keri Weems", "w": 0.008}, {"d": "SD House District 12", "rep": "Amber Arlint, Greg Jamison", "w": 0.006}], "ss": [{"d": "SD Senate District 25", "rep": "Tom Pischke", "w": 0.708}, {"d": "SD Senate District 2", "rep": "Steve Kolbeck", "w": 0.123}, {"d": "SD Senate District 9", "rep": "Joy Hohn", "w": 0.108}, {"d": "SD Senate District 15", "rep": "Jamie Smith", "w": 0.02}, {"d": "SD Senate District 10", "rep": "Liz Larson", "w": 0.015}, {"d": "SD Senate District 14", "rep": "Larry Zikmund", "w": 0.008}, {"d": "SD Senate District 11", "rep": "Chris Karr", "w": 0.008}, {"d": "SD Senate District 12", "rep": "Arch Beal", "w": 0.006}]}, "munis": [{"m": "Brandon", "p": [{"n": "Harry Buck", "r": "Mayor, Brandon, SD"}]}, {"m": "Dell Rapids", "p": [{"n": "Tom Earley", "r": "Mayor, Dell Rapids, SD"}]}, {"m": "Hartford", "p": [{"n": "Arden Jones", "r": "Mayor, Hartford, SD"}]}, {"m": "Sioux Falls", "p": [{"n": "Paul Ten Haken", "r": "Mayor, Sioux Falls, SD"}]}], "slug": "minnehaha"}, "46101": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 25", "rep": "Jon Hansen, Les Heinemann", "w": 1.0}], "ss": [{"d": "SD Senate District 25", "rep": "Tom Pischke", "w": 1.0}]}, "munis": [{"m": "Flandreau", "p": [{"n": "Daniel D. Sutton", "r": "Mayor, Flandreau, SD"}]}], "slug": "moody"}, "46102": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 27", "rep": "Liz May, Peri Pourier", "w": 1.0}], "ss": [{"d": "SD Senate District 27", "rep": "Red Dawn Foster", "w": 1.0}]}, "munis": [], "slug": ""}, "46103": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 27", "rep": "Liz May, Peri Pourier", "w": 0.639}, {"d": "SD House District 30", "rep": "Tim Goodwin, Trish Ladner", "w": 0.278}, {"d": "SD House District 33", "rep": "Curt Massie, Phil Jensen", "w": 0.05}, {"d": "SD House District 35", "rep": "Tina Mulally, Tony Randolph", "w": 0.016}, {"d": "SD House District 34", "rep": "Heather Baxter, Mike Derby", "w": 0.013}], "ss": [{"d": "SD Senate District 27", "rep": "Red Dawn Foster", "w": 0.639}, {"d": "SD Senate District 30", "rep": "Amber Hulse", "w": 0.278}, {"d": "SD Senate District 33", "rep": "Curt Voight", "w": 0.05}, {"d": "SD Senate District 35", "rep": "Greg Blanc", "w": 0.016}, {"d": "SD Senate District 34", "rep": "Taffy Howard", "w": 0.013}]}, "munis": [{"m": "Rapid City", "p": [{"n": "Steve Allender", "r": "Mayor, Rapid City, SD"}]}], "slug": "pennington"}, "46105": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 28A", "rep": "Jana Hunt", "w": 0.673}, {"d": "SD House District 28B", "rep": "Travis Ismay", "w": 0.327}], "ss": [{"d": "SD Senate District 28", "rep": "Sam Marty", "w": 1.0}]}, "munis": [], "slug": "perkins"}, "46107": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "potter"}, "46109": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 1", "rep": "Logan Manhart, Nick Fosness", "w": 0.808}, {"d": "SD House District 4", "rep": "Dylan Jordan, Kent Roe", "w": 0.191}], "ss": [{"d": "SD Senate District 1", "rep": "Michael Rohl", "w": 0.808}, {"d": "SD Senate District 4", "rep": "Stephanie Sauder", "w": 0.191}]}, "munis": [], "slug": "roberts"}, "46111": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 20", "rep": "Jeff Bathke, Kaley Nolz", "w": 1.0}], "ss": [{"d": "SD Senate District 20", "rep": "Paul Miskimins", "w": 1.0}]}, "munis": [], "slug": "sanborn"}, "46115": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 22", "rep": "Kevin Van Diepen, Lana Greenfield", "w": 1.0}], "ss": [{"d": "SD Senate District 22", "rep": "Brandon Wipf", "w": 1.0}]}, "munis": [], "slug": "spink"}, "46117": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 24", "rep": "Mike Weisgram, Will Mortenson", "w": 1.0}], "ss": [{"d": "SD Senate District 24", "rep": "Jim Mehlhaff", "w": 1.0}]}, "munis": [{"m": "Fort Pierre", "p": [{"n": "Gloria Hanson", "r": "Mayor, Fort Pierre, SD"}]}], "slug": "stanley"}, "46119": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 24", "rep": "Mike Weisgram, Will Mortenson", "w": 1.0}], "ss": [{"d": "SD Senate District 24", "rep": "Jim Mehlhaff", "w": 1.0}]}, "munis": [], "slug": "sully"}, "46121": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 26A", "rep": "Eric Emery", "w": 1.0}], "ss": [{"d": "SD Senate District 26", "rep": "Tamara Grove", "w": 1.0}]}, "munis": [], "slug": "todd"}, "46123": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 21", "rep": "Jim Halverson, Marty Overweg", "w": 1.0}], "ss": [{"d": "SD Senate District 21", "rep": "MyKala Voita", "w": 1.0}]}, "munis": [], "slug": "tripp"}, "46125": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 16", "rep": "John Shubeck, Karla Lems", "w": 0.825}, {"d": "SD House District 19", "rep": "Drew Peterson, Jessica Bahmuller", "w": 0.175}], "ss": [{"d": "SD Senate District 16", "rep": "Kevin Jensen", "w": 0.825}, {"d": "SD Senate District 19", "rep": "Kyle Schoenfish", "w": 0.175}]}, "munis": [], "slug": "turner"}, "46127": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 0.996}], "sh": [{"d": "SD House District 16", "rep": "John Shubeck, Karla Lems", "w": 0.639}, {"d": "SD House District 17", "rep": "Chris Kassin, William Shorma", "w": 0.359}], "ss": [{"d": "SD Senate District 16", "rep": "Kevin Jensen", "w": 0.639}, {"d": "SD Senate District 17", "rep": "Sydney Davis", "w": 0.359}]}, "munis": [{"m": "Beresford", "p": [{"n": "Eli Seeley", "r": "Mayor, Beresford, SD"}]}, {"m": "Elk Point", "p": [{"n": "Deborah McCreary", "r": "Mayor, Elk Point, SD"}]}, {"m": "North Sioux City", "p": [{"n": "Patricia Teel", "r": "Mayor, North Sioux City, SD"}]}], "slug": "union"}, "46129": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 23", "rep": "Scott Moore, Spencer Gosch", "w": 1.0}], "ss": [{"d": "SD Senate District 23", "rep": "Mark Lapka", "w": 1.0}]}, "munis": [], "slug": "walworth"}, "46135": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 18", "rep": "Julie Auch, Mike Stevens", "w": 1.0}], "ss": [{"d": "SD Senate District 18", "rep": "Lauren Nelson", "w": 1.0}]}, "munis": [{"m": "Yankton", "p": [{"n": "Stephanie Moser", "r": "Mayor, Yankton, SD"}]}], "slug": "yankton"}, "46137": {"county": [], "districts": {"cd": [{"d": "SD-00", "rep": "Dusty Johnson", "w": 1.0}], "sh": [{"d": "SD House District 28A", "rep": "Jana Hunt", "w": 1.0}], "ss": [{"d": "SD Senate District 28", "rep": "Sam Marty", "w": 1.0}]}, "munis": [], "slug": "ziebach"}, "47001": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.993}, {"d": "TN-02", "rep": "Tim Burchett", "w": 0.007}], "sh": [{"d": "TN House District 33", "rep": "Rick Scarbrough", "w": 0.585}, {"d": "TN House District 41", "rep": "Ed Butler", "w": 0.415}], "ss": [{"d": "TN Senate District 5", "rep": "Randy McNally", "w": 1.0}]}, "munis": [{"m": "Clinton", "p": [{"n": "Scott Burton", "r": "Mayor, Clinton, TN"}]}, {"m": "Rocky Top", "p": [{"n": "Kerry Templin", "r": "Mayor, Rocky Top, TN"}]}], "slug": "anderson"}, "47003": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.999}], "sh": [{"d": "TN House District 62", "rep": "Pat Marsh", "w": 1.0}], "ss": [{"d": "TN Senate District 14", "rep": "Shane Reeves", "w": 1.0}]}, "munis": [{"m": "Shelbyville", "p": [{"n": "Randy Carroll", "r": "Mayor, Shelbyville, TN"}]}], "slug": "bedford"}, "47005": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.826}, {"d": "TN-08", "rep": "David Kustoff", "w": 0.174}], "sh": [{"d": "TN House District 74", "rep": "Jay Reedy", "w": 1.0}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [{"m": "Camden", "p": [{"n": "Roger G. Pafford", "r": "Mayor, Camden, TN"}]}], "slug": "benton"}, "47007": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.998}], "sh": [{"d": "TN House District 31", "rep": "Ron Travis", "w": 1.0}], "ss": [{"d": "TN Senate District 10", "rep": "Todd Gardenhire", "w": 1.0}]}, "munis": [], "slug": "bledsoe"}, "47009": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 0.996}], "sh": [{"d": "TN House District 8", "rep": "Jerome Moon", "w": 0.782}, {"d": "TN House District 20", "rep": "Tommy Stinnett", "w": 0.218}], "ss": [{"d": "TN Senate District 2", "rep": "Tom Hatcher", "w": 0.999}]}, "munis": [{"m": "Alcoa", "p": [{"n": "Tanya Martin", "r": "Mayor, Alcoa, TN"}]}, {"m": "Maryville", "p": [{"n": "Andy White", "r": "Mayor, Maryville, TN"}]}], "slug": "blount"}, "47011": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.999}], "sh": [{"d": "TN House District 22", "rep": "Dan Howell", "w": 0.734}, {"d": "TN House District 24", "rep": "Kevin Raper", "w": 0.266}], "ss": [{"d": "TN Senate District 1", "rep": "Adam Lowe", "w": 0.894}, {"d": "TN Senate District 2", "rep": "Tom Hatcher", "w": 0.105}]}, "munis": [{"m": "Charleston", "p": [{"n": "Donna McDermott", "r": "Mayor, Charleston, TN"}]}, {"m": "Cleveland", "p": [{"n": "Kevin Brooks", "r": "Mayor, Cleveland, TN"}]}], "slug": "bradley"}, "47013": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 0.689}, {"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.309}], "sh": [{"d": "TN House District 36", "rep": "Dennis Powers", "w": 1.0}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [], "slug": "campbell"}, "47015": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.993}, {"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.007}], "sh": [{"d": "TN House District 40", "rep": "Michael Hale", "w": 1.0}], "ss": [{"d": "TN Senate District 14", "rep": "Shane Reeves", "w": 1.0}]}, "munis": [], "slug": "cannon"}, "47017": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 79", "rep": "Brock Martin", "w": 0.656}, {"d": "TN House District 76", "rep": "Tandy Darby", "w": 0.344}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "47019": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.999}], "sh": [{"d": "TN House District 4", "rep": "Renea Jones", "w": 0.604}, {"d": "TN House District 3", "rep": "Timothy Hill", "w": 0.396}], "ss": [{"d": "TN Senate District 3", "rep": "Rusty Crowe", "w": 0.999}]}, "munis": [], "slug": "carter"}, "47021": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 1.0}], "sh": [{"d": "TN House District 78", "rep": "Mary Littleton", "w": 1.0}], "ss": [{"d": "TN Senate District 23", "rep": "Kerry Roberts", "w": 1.0}]}, "munis": [], "slug": "cheatham"}, "47023": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 72", "rep": "Kirk Haston", "w": 1.0}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "chester"}, "47025": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 0.999}], "sh": [{"d": "TN House District 9", "rep": "Gary Hicks", "w": 0.521}, {"d": "TN House District 36", "rep": "Dennis Powers", "w": 0.479}], "ss": [{"d": "TN Senate District 8", "rep": "Jessie Seal", "w": 1.0}]}, "munis": [], "slug": "claiborne"}, "47027": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.999}], "sh": [{"d": "TN House District 38", "rep": "Kelly Keisling", "w": 0.999}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 0.999}]}, "munis": [], "slug": "clay"}, "47029": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.999}], "sh": [{"d": "TN House District 11", "rep": "Jeremy Faison", "w": 0.999}], "ss": [{"d": "TN Senate District 9", "rep": "Steve Southerland", "w": 0.999}]}, "munis": [], "slug": "cocke"}, "47031": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.999}], "sh": [{"d": "TN House District 47", "rep": "Rush Bricken", "w": 1.0}], "ss": [{"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 1.0}]}, "munis": [{"m": "Manchester", "p": [{"n": "Joey Hobbs", "r": "Mayor, Manchester, TN"}]}], "slug": "coffee"}, "47033": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 82", "rep": "Chris Hurt", "w": 1.0}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 0.999}]}, "munis": [], "slug": "crockett"}, "47035": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.999}], "sh": [{"d": "TN House District 25", "rep": "Cameron Sexton", "w": 1.0}], "ss": [{"d": "TN Senate District 15", "rep": "Paul Bailey", "w": 1.0}]}, "munis": [{"m": "Crossville", "p": [{"n": "RJ Crawford", "r": "Mayor, Crossville, TN"}]}], "slug": "cumberland"}, "47037": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.4}, {"d": "TN-05", "rep": "Andrew Ogles", "w": 0.377}, {"d": "TN-06", "rep": "John W. Rose", "w": 0.222}], "sh": [{"d": "TN House District 50", "rep": "Bo Mitchell", "w": 0.311}, {"d": "TN House District 59", "rep": "Caleb Hemmer", "w": 0.15}, {"d": "TN House District 54", "rep": "Vincent Dixie", "w": 0.118}, {"d": "TN House District 52", "rep": "Justin Jones", "w": 0.109}, {"d": "TN House District 60", "rep": "Shaundelle Brooks", "w": 0.089}, {"d": "TN House District 51", "rep": "Aftyn Behn", "w": 0.068}, {"d": "TN House District 53", "rep": "Jason Powell", "w": 0.052}, {"d": "TN House District 58", "rep": "Harold Love", "w": 0.038}, {"d": "TN House District 55", "rep": "John Clemmons", "w": 0.035}, {"d": "TN House District 56", "rep": "Bob Freeman", "w": 0.031}], "ss": [{"d": "TN Senate District 20", "rep": "Heidi Campbell", "w": 0.537}, {"d": "TN Senate District 19", "rep": "Charlane Oliver", "w": 0.227}, {"d": "TN Senate District 21", "rep": "Jeff Yarbro", "w": 0.119}, {"d": "TN Senate District 17", "rep": "Mark Pody", "w": 0.117}]}, "munis": [], "slug": "davidson"}, "47039": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.997}], "sh": [{"d": "TN House District 72", "rep": "Kirk Haston", "w": 1.0}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 1.0}]}, "munis": [], "slug": "decatur"}, "47041": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.997}], "sh": [{"d": "TN House District 40", "rep": "Michael Hale", "w": 1.0}], "ss": [{"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 1.0}]}, "munis": [], "slug": "dekalb"}, "47043": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 1.0}], "sh": [{"d": "TN House District 69", "rep": "Jody Barrett", "w": 0.602}, {"d": "TN House District 78", "rep": "Mary Littleton", "w": 0.398}], "ss": [{"d": "TN Senate District 23", "rep": "Kerry Roberts", "w": 1.0}]}, "munis": [], "slug": "dickson"}, "47045": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 77", "rep": "Rusty Grills", "w": 1.0}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 1.0}]}, "munis": [{"m": "Dyersburg", "p": [{"n": "John Holden", "r": "Mayor, Dyersburg, TN"}]}], "slug": "dyer"}, "47047": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 94", "rep": "Ron Gant", "w": 1.0}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "fayette"}, "47049": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.998}], "sh": [{"d": "TN House District 38", "rep": "Kelly Keisling", "w": 0.576}, {"d": "TN House District 41", "rep": "Ed Butler", "w": 0.424}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [], "slug": "fentress"}, "47051": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 1.0}], "sh": [{"d": "TN House District 39", "rep": "Iris Rudder", "w": 0.999}], "ss": [{"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 0.999}]}, "munis": [], "slug": "franklin"}, "47053": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 82", "rep": "Chris Hurt", "w": 0.501}, {"d": "TN House District 79", "rep": "Brock Martin", "w": 0.499}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "gibson"}, "47055": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.997}], "sh": [{"d": "TN House District 70", "rep": "Clay Doggett", "w": 1.0}], "ss": [{"d": "TN Senate District 28", "rep": "Joey Hensley", "w": 1.0}]}, "munis": [{"m": "Pulaski", "p": [{"n": "J.J. Brindley", "r": "Mayor, Pulaski, TN"}]}], "slug": "giles"}, "47057": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 0.989}, {"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.011}], "sh": [{"d": "TN House District 10", "rep": "Rick Eldridge", "w": 0.999}], "ss": [{"d": "TN Senate District 8", "rep": "Jessie Seal", "w": 1.0}]}, "munis": [], "slug": "grainger"}, "47059": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 1.0}], "sh": [{"d": "TN House District 5", "rep": "David Hawk", "w": 0.999}], "ss": [{"d": "TN Senate District 9", "rep": "Steve Southerland", "w": 0.999}]}, "munis": [], "slug": "greene"}, "47061": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 1.0}], "sh": [{"d": "TN House District 47", "rep": "Rush Bricken", "w": 1.0}], "ss": [{"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 1.0}]}, "munis": [], "slug": "grundy"}, "47063": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.993}, {"d": "TN-02", "rep": "Tim Burchett", "w": 0.007}], "sh": [{"d": "TN House District 11", "rep": "Jeremy Faison", "w": 0.537}, {"d": "TN House District 10", "rep": "Rick Eldridge", "w": 0.463}], "ss": [{"d": "TN Senate District 9", "rep": "Steve Southerland", "w": 0.999}]}, "munis": [], "slug": "hamblen"}, "47065": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.997}], "sh": [{"d": "TN House District 27", "rep": "Michele Reneau", "w": 0.317}, {"d": "TN House District 29", "rep": "Greg Vital", "w": 0.261}, {"d": "TN House District 26", "rep": "Greg Martin", "w": 0.24}, {"d": "TN House District 30", "rep": "Esther Helton-Haynes", "w": 0.099}, {"d": "TN House District 28", "rep": "Yusuf Hakeem", "w": 0.083}], "ss": [{"d": "TN Senate District 11", "rep": "Bo Watson", "w": 0.779}, {"d": "TN Senate District 10", "rep": "Todd Gardenhire", "w": 0.22}]}, "munis": [{"m": "Chattanooga", "p": [{"n": "Q4760428", "r": "Mayor, Chattanooga, TN"}]}], "slug": "hamilton"}, "47067": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.998}], "sh": [{"d": "TN House District 9", "rep": "Gary Hicks", "w": 0.999}], "ss": [{"d": "TN Senate District 8", "rep": "Jessie Seal", "w": 0.999}]}, "munis": [], "slug": "hancock"}, "47069": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 80", "rep": "Johnny Shaw", "w": 0.872}, {"d": "TN House District 94", "rep": "Ron Gant", "w": 0.128}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "hardeman"}, "47071": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 0.998}], "sh": [{"d": "TN House District 72", "rep": "Kirk Haston", "w": 0.87}, {"d": "TN House District 71", "rep": "Kip Capley", "w": 0.13}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "hardin"}, "47073": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 1.0}], "sh": [{"d": "TN House District 9", "rep": "Gary Hicks", "w": 0.809}, {"d": "TN House District 3", "rep": "Timothy Hill", "w": 0.191}], "ss": [{"d": "TN Senate District 4", "rep": "Bobby Harshbarger", "w": 1.0}]}, "munis": [], "slug": "hawkins"}, "47075": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 81", "rep": "Debra Moody", "w": 0.715}, {"d": "TN House District 80", "rep": "Johnny Shaw", "w": 0.284}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [{"m": "Brownsville", "p": [{"n": "William D. Rawls, Jr.", "r": "Mayor, Brownsville, TN"}]}], "slug": "haywood"}, "47077": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 0.996}], "sh": [{"d": "TN House District 79", "rep": "Brock Martin", "w": 0.595}, {"d": "TN House District 72", "rep": "Kirk Haston", "w": 0.405}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 1.0}]}, "munis": [], "slug": "henderson"}, "47079": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 0.998}], "sh": [{"d": "TN House District 76", "rep": "Tandy Darby", "w": 0.79}, {"d": "TN House District 74", "rep": "Jay Reedy", "w": 0.21}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "henry"}, "47081": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.998}], "sh": [{"d": "TN House District 69", "rep": "Jody Barrett", "w": 1.0}], "ss": [{"d": "TN Senate District 23", "rep": "Kerry Roberts", "w": 1.0}]}, "munis": [], "slug": "hickman"}, "47083": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 1.0}], "sh": [{"d": "TN House District 74", "rep": "Jay Reedy", "w": 1.0}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "houston"}, "47085": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 1.0}], "sh": [{"d": "TN House District 74", "rep": "Jay Reedy", "w": 1.0}], "ss": [{"d": "TN Senate District 23", "rep": "Kerry Roberts", "w": 1.0}]}, "munis": [], "slug": "humphreys"}, "47087": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 1.0}], "sh": [{"d": "TN House District 40", "rep": "Michael Hale", "w": 1.0}], "ss": [{"d": "TN Senate District 15", "rep": "Paul Bailey", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "47089": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.969}, {"d": "TN-02", "rep": "Tim Burchett", "w": 0.032}], "sh": [{"d": "TN House District 17", "rep": "Andrew Farmer", "w": 0.644}, {"d": "TN House District 11", "rep": "Jeremy Faison", "w": 0.355}], "ss": [{"d": "TN Senate District 8", "rep": "Jessie Seal", "w": 1.0}]}, "munis": [], "slug": "jefferson"}, "47091": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.999}], "sh": [{"d": "TN House District 3", "rep": "Timothy Hill", "w": 0.999}], "ss": [{"d": "TN Senate District 3", "rep": "Rusty Crowe", "w": 0.999}]}, "munis": [], "slug": "johnson"}, "47093": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 0.996}], "sh": [{"d": "TN House District 19", "rep": "Dave Wright", "w": 0.419}, {"d": "TN House District 89", "rep": "Justin Lafferty", "w": 0.128}, {"d": "TN House District 18", "rep": "Elaine Davis", "w": 0.127}, {"d": "TN House District 16", "rep": "Michele Carringer", "w": 0.111}, {"d": "TN House District 14", "rep": "Jason Zachary", "w": 0.105}, {"d": "TN House District 15", "rep": "Sam McKenzie", "w": 0.058}, {"d": "TN House District 90", "rep": "Gloria Johnson", "w": 0.053}], "ss": [{"d": "TN Senate District 6", "rep": "Becky Massey", "w": 0.626}, {"d": "TN Senate District 7", "rep": "Richard Briggs", "w": 0.259}, {"d": "TN Senate District 5", "rep": "Randy McNally", "w": 0.115}]}, "munis": [{"m": "Knoxville", "p": [{"n": "Indya Kincannon", "r": "Mayor, Knoxville, TN"}]}], "slug": "knox"}, "47095": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 0.999}], "sh": [{"d": "TN House District 77", "rep": "Rusty Grills", "w": 0.999}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 0.999}]}, "munis": [], "slug": "lake"}, "47097": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 0.996}], "sh": [{"d": "TN House District 82", "rep": "Chris Hurt", "w": 0.999}], "ss": [{"d": "TN Senate District 32", "rep": "Paul Rose", "w": 0.999}]}, "munis": [], "slug": "lauderdale"}, "47099": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.996}], "sh": [{"d": "TN House District 70", "rep": "Clay Doggett", "w": 0.623}, {"d": "TN House District 71", "rep": "Kip Capley", "w": 0.377}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "lawrence"}, "47101": {"county": [], "districts": {"cd": [{"d": "TN-05", "rep": "Andrew Ogles", "w": 0.995}], "sh": [{"d": "TN House District 69", "rep": "Jody Barrett", "w": 1.0}], "ss": [{"d": "TN Senate District 28", "rep": "Joey Hensley", "w": 1.0}]}, "munis": [], "slug": "lewis"}, "47103": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.999}], "sh": [{"d": "TN House District 70", "rep": "Clay Doggett", "w": 0.51}, {"d": "TN House District 62", "rep": "Pat Marsh", "w": 0.49}], "ss": [{"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 1.0}]}, "munis": [{"m": "Fayetteville", "p": [{"n": "Donna Hartman", "r": "Mayor, Fayetteville, TN"}]}], "slug": "lincoln"}, "47105": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 0.981}, {"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.019}], "sh": [{"d": "TN House District 21", "rep": "Lowell Russell", "w": 0.805}, {"d": "TN House District 32", "rep": "Monty Fritts", "w": 0.195}], "ss": [{"d": "TN Senate District 5", "rep": "Randy McNally", "w": 1.0}]}, "munis": [], "slug": "loudon"}, "47107": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.997}], "sh": [{"d": "TN House District 23", "rep": "Mark Cochran", "w": 1.0}], "ss": [{"d": "TN Senate District 1", "rep": "Adam Lowe", "w": 1.0}]}, "munis": [], "slug": "mcminn"}, "47109": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 94", "rep": "Ron Gant", "w": 1.0}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "mcnairy"}, "47111": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.999}], "sh": [{"d": "TN House District 38", "rep": "Kelly Keisling", "w": 0.999}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 0.999}]}, "munis": [], "slug": "macon"}, "47113": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 73", "rep": "Chris Todd", "w": 0.718}, {"d": "TN House District 80", "rep": "Johnny Shaw", "w": 0.282}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 1.0}]}, "munis": [{"m": "Jackson", "p": [{"n": "Scott Conger", "r": "Mayor, Jackson, TN"}]}], "slug": "madison"}, "47115": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.999}], "sh": [{"d": "TN House District 39", "rep": "Iris Rudder", "w": 1.0}], "ss": [{"d": "TN Senate District 10", "rep": "Todd Gardenhire", "w": 0.993}, {"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 0.007}]}, "munis": [], "slug": "marion"}, "47117": {"county": [], "districts": {"cd": [{"d": "TN-05", "rep": "Andrew Ogles", "w": 0.993}, {"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.007}], "sh": [{"d": "TN House District 92", "rep": "Todd Warner", "w": 1.0}], "ss": [{"d": "TN Senate District 28", "rep": "Joey Hensley", "w": 1.0}]}, "munis": [], "slug": "marshall"}, "47119": {"county": [], "districts": {"cd": [{"d": "TN-05", "rep": "Andrew Ogles", "w": 0.997}], "sh": [{"d": "TN House District 71", "rep": "Kip Capley", "w": 0.573}, {"d": "TN House District 64", "rep": "Scott Cepicky", "w": 0.427}], "ss": [{"d": "TN Senate District 28", "rep": "Joey Hensley", "w": 1.0}]}, "munis": [{"m": "Spring Hill", "p": [{"n": "Jim Hagaman", "r": "Mayor, Spring Hill, TN"}]}], "slug": "maury"}, "47121": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.985}, {"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.015}], "sh": [{"d": "TN House District 22", "rep": "Dan Howell", "w": 0.999}], "ss": [{"d": "TN Senate District 1", "rep": "Adam Lowe", "w": 1.0}]}, "munis": [], "slug": "meigs"}, "47123": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.996}], "sh": [{"d": "TN House District 23", "rep": "Mark Cochran", "w": 0.678}, {"d": "TN House District 21", "rep": "Lowell Russell", "w": 0.322}], "ss": [{"d": "TN Senate District 2", "rep": "Tom Hatcher", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "47125": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 1.0}], "sh": [{"d": "TN House District 68", "rep": "Aron Maberry", "w": 0.492}, {"d": "TN House District 75", "rep": "Michael Lankford", "w": 0.431}, {"d": "TN House District 67", "rep": "Ronnie Glynn", "w": 0.076}], "ss": [{"d": "TN Senate District 22", "rep": "Bill Powers", "w": 0.967}, {"d": "TN Senate District 23", "rep": "Kerry Roberts", "w": 0.033}]}, "munis": [{"m": "Clarksville", "p": [{"n": "Joe Pitts", "r": "Mayor, Clarksville, TN"}]}], "slug": "montgomery"}, "47127": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 1.0}], "sh": [{"d": "TN House District 62", "rep": "Pat Marsh", "w": 1.0}], "ss": [{"d": "TN Senate District 14", "rep": "Shane Reeves", "w": 0.999}]}, "munis": [], "slug": "moore"}, "47129": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.996}], "sh": [{"d": "TN House District 41", "rep": "Ed Butler", "w": 1.0}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [], "slug": "morgan"}, "47131": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 77", "rep": "Rusty Grills", "w": 0.702}, {"d": "TN House District 82", "rep": "Chris Hurt", "w": 0.298}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "obion"}, "47133": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 1.0}], "sh": [{"d": "TN House District 41", "rep": "Ed Butler", "w": 1.0}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [], "slug": "overton"}, "47135": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 1.0}], "sh": [{"d": "TN House District 72", "rep": "Kirk Haston", "w": 1.0}], "ss": [{"d": "TN Senate District 25", "rep": "Ed Jackson", "w": 1.0}]}, "munis": [], "slug": "perry"}, "47137": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 1.0}], "sh": [{"d": "TN House District 38", "rep": "Kelly Keisling", "w": 0.999}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [], "slug": "pickett"}, "47139": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 1.0}], "sh": [{"d": "TN House District 22", "rep": "Dan Howell", "w": 1.0}], "ss": [{"d": "TN Senate District 2", "rep": "Tom Hatcher", "w": 1.0}]}, "munis": [], "slug": "polk"}, "47141": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 1.0}], "sh": [{"d": "TN House District 42", "rep": "Ryan Williams", "w": 0.669}, {"d": "TN House District 25", "rep": "Cameron Sexton", "w": 0.331}], "ss": [{"d": "TN Senate District 15", "rep": "Paul Bailey", "w": 1.0}]}, "munis": [], "slug": "putnam"}, "47143": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.998}], "sh": [{"d": "TN House District 31", "rep": "Ron Travis", "w": 1.0}], "ss": [{"d": "TN Senate District 1", "rep": "Adam Lowe", "w": 1.0}]}, "munis": [{"m": "Dayton", "p": [{"n": "Hurley Marsh", "r": "Mayor, Dayton, TN"}]}], "slug": "rhea"}, "47145": {"county": [], "districts": {"cd": [{"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.992}], "sh": [{"d": "TN House District 32", "rep": "Monty Fritts", "w": 0.955}, {"d": "TN House District 41", "rep": "Ed Butler", "w": 0.045}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [{"m": "Rockwood", "p": [{"n": "Jason Jolly", "r": "Mayor, Rockwood, TN"}]}], "slug": "roane"}, "47147": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.999}], "sh": [{"d": "TN House District 66", "rep": "Doc Kumar", "w": 1.0}], "ss": [{"d": "TN Senate District 23", "rep": "Kerry Roberts", "w": 1.0}]}, "munis": [{"m": "Springfield", "p": [{"n": "Ann Williams", "r": "Mayor, Springfield, TN"}]}], "slug": "robertson"}, "47149": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.992}, {"d": "TN-05", "rep": "Andrew Ogles", "w": 0.007}], "sh": [{"d": "TN House District 48", "rep": "Bryan Terry", "w": 0.424}, {"d": "TN House District 13", "rep": "Robert Stevens", "w": 0.195}, {"d": "TN House District 34", "rep": "Tim Rudd", "w": 0.162}, {"d": "TN House District 37", "rep": "Charlie Baum", "w": 0.127}, {"d": "TN House District 49", "rep": "Mike Sparks", "w": 0.091}], "ss": [{"d": "TN Senate District 13", "rep": "Dawn White", "w": 0.568}, {"d": "TN Senate District 14", "rep": "Shane Reeves", "w": 0.432}]}, "munis": [{"m": "La Vergne", "p": [{"n": "Jason Cole", "r": "Mayor, La Vergne, TN"}]}, {"m": "Murfreesboro", "p": [{"n": "Shane McFarland", "r": "Mayor, Murfreesboro, TN"}]}], "slug": "rutherford"}, "47151": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.59}, {"d": "TN-03", "rep": "Charles J. \"Chuck\" Fleischmann", "w": 0.409}], "sh": [{"d": "TN House District 38", "rep": "Kelly Keisling", "w": 0.999}], "ss": [{"d": "TN Senate District 12", "rep": "Ken Yager", "w": 1.0}]}, "munis": [], "slug": "scott"}, "47153": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.998}], "sh": [{"d": "TN House District 31", "rep": "Ron Travis", "w": 1.0}], "ss": [{"d": "TN Senate District 10", "rep": "Todd Gardenhire", "w": 1.0}]}, "munis": [], "slug": "sequatchie"}, "47155": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.997}], "sh": [{"d": "TN House District 12", "rep": "Fred Atchley", "w": 0.738}, {"d": "TN House District 17", "rep": "Andrew Farmer", "w": 0.261}], "ss": [{"d": "TN Senate District 9", "rep": "Steve Southerland", "w": 0.583}, {"d": "TN Senate District 8", "rep": "Jessie Seal", "w": 0.416}]}, "munis": [{"m": "Sevierville", "p": [{"n": "Robert W. Fox", "r": "Mayor, Sevierville, TN"}]}], "slug": "sevier"}, "47157": {"county": [], "districts": {"cd": [{"d": "TN-09", "rep": "Steve Cohen", "w": 0.696}, {"d": "TN-08", "rep": "David Kustoff", "w": 0.302}], "sh": [{"d": "TN House District 86", "rep": "Justin Pearson", "w": 0.29}, {"d": "TN House District 99", "rep": "Tom Leatherwood", "w": 0.211}, {"d": "TN House District 95", "rep": "Kevin Vaughan", "w": 0.106}, {"d": "TN House District 85", "rep": "Jesse Chism", "w": 0.049}, {"d": "TN House District 88", "rep": "Larry Miller", "w": 0.045}, {"d": "TN House District 97", "rep": "John Gillespie", "w": 0.044}, {"d": "TN House District 83", "rep": "Mark White", "w": 0.044}, {"d": "TN House District 84", "rep": "Joe Towns", "w": 0.041}, {"d": "TN House District 96", "rep": "Gabby Salinas", "w": 0.04}, {"d": "TN House District 98", "rep": "Antonio Parkinson", "w": 0.035}, {"d": "TN House District 91", "rep": "Torrey Harris", "w": 0.035}, {"d": "TN House District 87", "rep": "Karen Camper", "w": 0.03}, {"d": "TN House District 93", "rep": "T.J. Hardaway", "w": 0.026}], "ss": [{"d": "TN Senate District 29", "rep": "Raumesh Akbari", "w": 0.397}, {"d": "TN Senate District 31", "rep": "Brent Taylor", "w": 0.216}, {"d": "TN Senate District 32", "rep": "Paul Rose", "w": 0.171}, {"d": "TN Senate District 33", "rep": "London Lamar", "w": 0.114}, {"d": "TN Senate District 30", "rep": "Sara Kyle", "w": 0.101}]}, "munis": [{"m": "Bartlett", "p": [{"n": "David Parsons", "r": "Mayor, Bartlett, TN"}]}, {"m": "Germantown", "p": [{"n": "Mike Palazzolo", "r": "Mayor, Germantown, TN"}]}, {"m": "Memphis", "p": [{"n": "Paul Young", "r": "Mayor, Memphis, TN"}]}], "slug": "shelby"}, "47159": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 1.0}], "sh": [{"d": "TN House District 40", "rep": "Michael Hale", "w": 1.0}], "ss": [{"d": "TN Senate District 15", "rep": "Paul Bailey", "w": 1.0}]}, "munis": [], "slug": "smith"}, "47161": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.998}], "sh": [{"d": "TN House District 74", "rep": "Jay Reedy", "w": 1.0}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "stewart"}, "47163": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 1.0}], "sh": [{"d": "TN House District 1", "rep": "John Crawford", "w": 0.36}, {"d": "TN House District 3", "rep": "Timothy Hill", "w": 0.357}, {"d": "TN House District 2", "rep": "Bud Hulsey", "w": 0.283}], "ss": [{"d": "TN Senate District 4", "rep": "Bobby Harshbarger", "w": 0.999}]}, "munis": [{"m": "Bristol", "p": [{"n": "Vince Turner", "r": "Mayor, Bristol, TN"}]}, {"m": "Kingsport", "p": [{"n": "Patrick W. Shull", "r": "Mayor, Kingsport, TN"}]}], "slug": "sullivan"}, "47165": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.998}], "sh": [{"d": "TN House District 44", "rep": "William Lamberth", "w": 0.593}, {"d": "TN House District 35", "rep": "William Slater", "w": 0.221}, {"d": "TN House District 45", "rep": "Johnny Garrett", "w": 0.184}], "ss": [{"d": "TN Senate District 18", "rep": "Ferrell Haile", "w": 0.998}]}, "munis": [{"m": "Hendersonville", "p": [{"n": "Jamie Clary", "r": "Mayor, Hendersonville, TN"}]}, {"m": "Portland", "p": [{"n": "Mike Callis", "r": "Mayor, Portland, TN"}]}], "slug": "sumner"}, "47167": {"county": [], "districts": {"cd": [{"d": "TN-09", "rep": "Steve Cohen", "w": 0.56}, {"d": "TN-08", "rep": "David Kustoff", "w": 0.438}], "sh": [{"d": "TN House District 81", "rep": "Debra Moody", "w": 0.999}], "ss": [{"d": "TN Senate District 32", "rep": "Paul Rose", "w": 1.0}]}, "munis": [], "slug": "tipton"}, "47169": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 1.0}], "sh": [{"d": "TN House District 35", "rep": "William Slater", "w": 1.0}], "ss": [{"d": "TN Senate District 18", "rep": "Ferrell Haile", "w": 1.0}]}, "munis": [], "slug": "trousdale"}, "47171": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 0.998}], "sh": [{"d": "TN House District 4", "rep": "Renea Jones", "w": 0.998}], "ss": [{"d": "TN Senate District 9", "rep": "Steve Southerland", "w": 0.998}]}, "munis": [], "slug": "unicoi"}, "47173": {"county": [], "districts": {"cd": [{"d": "TN-02", "rep": "Tim Burchett", "w": 1.0}], "sh": [{"d": "TN House District 36", "rep": "Dennis Powers", "w": 1.0}], "ss": [{"d": "TN Senate District 8", "rep": "Jessie Seal", "w": 1.0}]}, "munis": [], "slug": "union"}, "47175": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.998}], "sh": [{"d": "TN House District 31", "rep": "Ron Travis", "w": 1.0}], "ss": [{"d": "TN Senate District 15", "rep": "Paul Bailey", "w": 1.0}]}, "munis": [], "slug": "van-buren"}, "47177": {"county": [], "districts": {"cd": [{"d": "TN-04", "rep": "Scott DesJarlais", "w": 0.984}, {"d": "TN-06", "rep": "John W. Rose", "w": 0.016}], "sh": [{"d": "TN House District 43", "rep": "Paul Sherrell", "w": 1.0}], "ss": [{"d": "TN Senate District 16", "rep": "Janice Bowling", "w": 1.0}]}, "munis": [], "slug": "warren"}, "47179": {"county": [], "districts": {"cd": [{"d": "TN-01", "rep": "Diana Harshbarger", "w": 1.0}], "sh": [{"d": "TN House District 7", "rep": "Becky Jo Alexander", "w": 0.513}, {"d": "TN House District 6", "rep": "Tim Hicks", "w": 0.487}], "ss": [{"d": "TN Senate District 3", "rep": "Rusty Crowe", "w": 1.0}]}, "munis": [{"m": "Johnson City", "p": [{"n": "Todd Fowler", "r": "Mayor, Johnson City, TN"}]}], "slug": "washington"}, "47181": {"county": [], "districts": {"cd": [{"d": "TN-07", "rep": "Matt Van Epps", "w": 0.999}], "sh": [{"d": "TN House District 71", "rep": "Kip Capley", "w": 1.0}], "ss": [{"d": "TN Senate District 26", "rep": "Page Walley", "w": 1.0}]}, "munis": [], "slug": "wayne"}, "47183": {"county": [], "districts": {"cd": [{"d": "TN-08", "rep": "David Kustoff", "w": 1.0}], "sh": [{"d": "TN House District 76", "rep": "Tandy Darby", "w": 1.0}], "ss": [{"d": "TN Senate District 24", "rep": "John Stevens", "w": 1.0}]}, "munis": [], "slug": "weakley"}, "47185": {"county": [], "districts": {"cd": [{"d": "TN-06", "rep": "John W. Rose", "w": 0.999}], "sh": [{"d": "TN House District 43", "rep": "Paul Sherrell", "w": 1.0}], "ss": [{"d": "TN Senate District 15", "rep": "Paul Bailey", "w": 1.0}]}, "munis": [], "slug": "white"}, "47187": {"county": [], "districts": {"cd": [{"d": "TN-05", "rep": "Andrew Ogles", "w": 0.531}, {"d": "TN-07", "rep": "Matt Van Epps", "w": 0.466}], "sh": [{"d": "TN House District 65", "rep": "Lee Reeves", "w": 0.469}, {"d": "TN House District 63", "rep": "Jake McCalmon", "w": 0.297}, {"d": "TN House District 61", "rep": "Gino Bulso", "w": 0.153}, {"d": "TN House District 92", "rep": "Todd Warner", "w": 0.08}], "ss": [{"d": "TN Senate District 27", "rep": "Jack Johnson", "w": 0.984}, {"d": "TN Senate District 28", "rep": "Joey Hensley", "w": 0.016}]}, "munis": [{"m": "Brentwood", "p": [{"n": "Mark Gorman", "r": "Mayor, Brentwood, TN"}]}, {"m": "Franklin", "p": [{"n": "Ken Moore", "r": "Mayor, Franklin, TN"}]}], "slug": "williamson"}, "47189": {"county": [], "districts": {"cd": [{"d": "TN-05", "rep": "Andrew Ogles", "w": 0.502}, {"d": "TN-06", "rep": "John W. Rose", "w": 0.496}], "sh": [{"d": "TN House District 46", "rep": "Clark Boyd", "w": 0.739}, {"d": "TN House District 57", "rep": "Susan Lynn", "w": 0.197}, {"d": "TN House District 40", "rep": "Michael Hale", "w": 0.064}], "ss": [{"d": "TN Senate District 17", "rep": "Mark Pody", "w": 1.0}]}, "munis": [{"m": "Lebanon", "p": [{"n": "Rick Bell", "r": "Mayor, Lebanon, TN"}]}], "slug": "wilson"}, "48001": {"county": [], "districts": {"cd": [{"d": "TX-06", "rep": "Jake Ellzey", "w": 0.999}], "sh": [{"d": "TX House District 8", "rep": "Cody Harris", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Palestine", "p": [{"n": "Mitchell Jordan", "r": "Mayor, Palestine, TX"}]}], "slug": "anderson"}, "48003": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Andrews", "p": [{"n": "Flora Braly", "r": "Mayor, Andrews, TX"}]}], "slug": "andrews"}, "48005": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 0.998}], "sh": [{"d": "TX House District 9", "rep": "Trent Ashby", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Lufkin", "p": [{"n": "Mark Hicks", "r": "Mayor, Lufkin, TX"}]}], "slug": "angelina"}, "48007": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.593}], "sh": [{"d": "TX House District 32", "rep": "Todd Hunter", "w": 0.549}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.549}]}, "munis": [{"m": "Rockport", "p": [{"n": "Lowell Timothy Jayroe", "r": "Mayor, Rockport, TX"}]}], "slug": "aransas"}, "48009": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 1.0}]}, "munis": [], "slug": "archer"}, "48011": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "armstrong"}, "48013": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 1.0}], "sh": [{"d": "TX House District 80", "rep": "Don McLaughlin", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 0.756}, {"d": "TX Senate District 24", "rep": "Pete Flores", "w": 0.244}]}, "munis": [], "slug": "atascosa"}, "48015": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.998}], "sh": [{"d": "TX House District 85", "rep": "Stan Kitzman", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Bellville", "p": [{"n": "James Harrison", "r": "Mayor, Bellville, TX"}]}], "slug": "austin"}, "48017": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "bailey"}, "48019": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 0.999}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [], "slug": "bandera"}, "48021": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.515}, {"d": "TX-27", "rep": "Michael Cloud", "w": 0.485}], "sh": [{"d": "TX House District 17", "rep": "Stan Gerdes", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [{"m": "Bastrop", "p": [{"n": "Lyle Nelson", "r": "Mayor, Bastrop, TX"}]}, {"m": "Elgin", "p": [{"n": "Theresa McShan", "r": "Mayor, Elgin, TX"}]}], "slug": "bastrop"}, "48023": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "baylor"}, "48025": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.999}], "sh": [{"d": "TX House District 43", "rep": "J.M. Lozano", "w": 1.0}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 1.0}]}, "munis": [], "slug": "bee"}, "48027": {"county": [], "districts": {"cd": [{"d": "TX-31", "rep": "John R. Carter", "w": 0.835}, {"d": "TX-11", "rep": "August Pfluger", "w": 0.165}], "sh": [{"d": "TX House District 54", "rep": "Brad Buckley", "w": 0.806}, {"d": "TX House District 55", "rep": "Hillary Hickland", "w": 0.194}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Belton", "p": [{"n": "David K. Leigh", "r": "Mayor, Belton, TX"}]}, {"m": "Harker Heights", "p": [{"n": "Michael Blomquist", "r": "Mayor, Harker Heights, TX"}]}, {"m": "Killeen", "p": [{"n": "Debbie Nash-King", "r": "Mayor, Killeen, TX"}]}, {"m": "Temple", "p": [{"n": "Timothy Davis", "r": "Mayor, Temple, TX"}]}], "slug": "bell"}, "48029": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.401}, {"d": "TX-28", "rep": "Henry Cuellar", "w": 0.274}, {"d": "TX-20", "rep": "Joaquin Castro", "w": 0.143}, {"d": "TX-21", "rep": "Chip Roy", "w": 0.114}, {"d": "TX-35", "rep": "Greg Casar", "w": 0.069}], "sh": [{"d": "TX House District 118", "rep": "John Lujan", "w": 0.383}, {"d": "TX House District 122", "rep": "Mark Dorazio", "w": 0.194}, {"d": "TX House District 121", "rep": "Marc LaHood", "w": 0.082}, {"d": "TX House District 119", "rep": "Liz Campos", "w": 0.074}, {"d": "TX House District 117", "rep": "Philip Cortez", "w": 0.073}, {"d": "TX House District 120", "rep": "Barbara Gervin-Hawkins", "w": 0.05}, {"d": "TX House District 124", "rep": "Josey Garcia", "w": 0.042}, {"d": "TX House District 125", "rep": "Ray Lopez", "w": 0.036}, {"d": "TX House District 123", "rep": "Diego Bernal", "w": 0.035}, {"d": "TX House District 116", "rep": "Trey Martinez Fischer", "w": 0.032}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 0.508}, {"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 0.244}, {"d": "TX Senate District 26", "rep": "José Menéndez", "w": 0.161}, {"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 0.087}]}, "munis": [{"m": "Converse", "p": [{"n": "Al Suarez", "r": "Mayor, Converse, TX"}]}, {"m": "Hill Country Village", "p": [{"n": "Gabriel Durand-Hollis", "r": "Mayor, Hill Country Village, TX"}]}, {"m": "Leon Valley", "p": [{"n": "Chris Riley", "r": "Mayor, Leon Valley, TX"}]}, {"m": "San Antonio", "p": [{"n": "Gina Ortiz Jones", "r": "Mayor, San Antonio, TX"}]}], "slug": "bexar"}, "48031": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 1.0}], "sh": [{"d": "TX House District 19", "rep": "Ellen Troxclair", "w": 1.0}], "ss": [{"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 1.0}]}, "munis": [], "slug": "blanco"}, "48033": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "borden"}, "48035": {"county": [], "districts": {"cd": [{"d": "TX-31", "rep": "John R. Carter", "w": 0.996}], "sh": [{"d": "TX House District 13", "rep": "Angelia Orr", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [], "slug": "bosque"}, "48037": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.641}, {"d": "TX-04", "rep": "Pat Fallon", "w": 0.351}], "sh": [{"d": "TX House District 1", "rep": "Gary VanDeaver", "w": 0.999}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 0.999}]}, "munis": [{"m": "De Kalb", "p": [{"n": "Lowell Walker", "r": "Mayor, De Kalb, TX"}]}, {"m": "New Boston", "p": [{"n": "Ronald Humphrey", "r": "Mayor, New Boston, TX"}]}, {"m": "Texarkana", "p": [{"n": "Bob Bruggeman", "r": "Mayor, Texarkana, TX"}]}], "slug": "bowie"}, "48039": {"county": [], "districts": {"cd": [{"d": "TX-14", "rep": "Randy K. Weber, Sr.", "w": 0.748}, {"d": "TX-22", "rep": "Troy E. Nehls", "w": 0.141}, {"d": "TX-09", "rep": "Al Green", "w": 0.019}], "sh": [{"d": "TX House District 25", "rep": "Cody Vasut", "w": 0.583}, {"d": "TX House District 29", "rep": "Jeff Barry", "w": 0.323}], "ss": [{"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 0.673}, {"d": "TX Senate District 11", "rep": "Mayes Middleton", "w": 0.233}]}, "munis": [{"m": "Alvin", "p": [{"n": "Gabe Adame", "r": "Mayor, Alvin, TX"}]}, {"m": "Angleton", "p": [{"n": "John Wright", "r": "Mayor, Angleton, TX"}]}, {"m": "Clute", "p": [{"n": "Calvin Shiflet", "r": "Mayor, Clute, TX"}]}, {"m": "Freeport", "p": [{"n": "Brooks Bass", "r": "Mayor, Freeport, TX"}]}, {"m": "Lake Jackson", "p": [{"n": "Gerald Roznovsky", "r": "Mayor, Lake Jackson, TX"}]}, {"m": "Pearland", "p": [{"n": "Kevin Cole", "r": "Mayor, Pearland, TX"}]}], "slug": "brazoria"}, "48041": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.998}], "sh": [{"d": "TX House District 12", "rep": "Trey Wharton", "w": 0.598}, {"d": "TX House District 14", "rep": "Paul Dyson", "w": 0.402}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 0.999}]}, "munis": [{"m": "Bryan", "p": [{"n": "Bobby Gutierrez", "r": "Mayor, Bryan, TX"}]}, {"m": "College Station", "p": [{"n": "Karl Mooney", "r": "Mayor, College Station, TX"}]}], "slug": "brazos"}, "48043": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 0.56}, {"d": "TX Senate District 29", "rep": "César Blanco", "w": 0.439}]}, "munis": [{"m": "Alpine", "p": [{"n": "Catherine Eaves", "r": "Mayor, Alpine, TX"}]}], "slug": "brewster"}, "48045": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "briscoe"}, "48047": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 20", "rep": "Chuy Hinojosa", "w": 1.0}]}, "munis": [], "slug": "brooks"}, "48049": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 1.0}]}, "munis": [{"m": "Brownwood", "p": [{"n": "Stephen E. Haynes", "r": "Mayor, Brownwood, TX"}]}], "slug": "brown"}, "48051": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.999}], "sh": [{"d": "TX House District 17", "rep": "Stan Gerdes", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Caldwell", "p": [{"n": "Janice Easter", "r": "Mayor, Caldwell, TX"}]}], "slug": "burleson"}, "48053": {"county": [], "districts": {"cd": [{"d": "TX-31", "rep": "John R. Carter", "w": 0.997}], "sh": [{"d": "TX House District 19", "rep": "Ellen Troxclair", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Burnet", "p": [{"n": "Gary Wideman", "r": "Mayor, Burnet, TX"}]}, {"m": "Marble Falls", "p": [{"n": "Dave Rhodes", "r": "Mayor, Marble Falls, TX"}]}], "slug": "burnet"}, "48055": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.996}], "sh": [{"d": "TX House District 17", "rep": "Stan Gerdes", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [{"m": "Lockhart", "p": [{"n": "Lew White", "r": "Mayor, Lockhart, TX"}]}], "slug": "caldwell"}, "48057": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.734}], "sh": [{"d": "TX House District 43", "rep": "J.M. Lozano", "w": 0.722}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.722}]}, "munis": [], "slug": "calhoun"}, "48059": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 0.917}, {"d": "TX-19", "rep": "Jodey C. Arrington", "w": 0.083}], "sh": [{"d": "TX House District 71", "rep": "Stan Lambert", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 1.0}]}, "munis": [{"m": "Clyde", "p": [{"n": "Rodger Brown", "r": "Mayor, Clyde, TX"}]}], "slug": "callahan"}, "48061": {"county": [], "districts": {"cd": [{"d": "TX-34", "rep": "Vicente Gonzalez", "w": 0.79}], "sh": [{"d": "TX House District 37", "rep": "Janie Lopez", "w": 0.585}, {"d": "TX House District 35", "rep": "Oscar Longoria", "w": 0.145}, {"d": "TX House District 38", "rep": "Erin Gámez", "w": 0.055}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.785}]}, "munis": [{"m": "Brownsville", "p": [{"n": "John Cowen Jr.", "r": "Mayor, Brownsville, TX"}]}, {"m": "Harlingen", "p": [{"n": "Norma Sepulveda", "r": "Mayor, Harlingen, TX"}]}, {"m": "La Feria", "p": [{"n": "Olga H. Maldonado", "r": "Mayor, La Feria, TX"}]}, {"m": "Port Isabel", "p": [{"n": "Martin Cantu, Jr.", "r": "Mayor, Port Isabel, TX"}]}, {"m": "San Benito", "p": [{"n": "Ricardo \"Rick\" Guerra", "r": "Mayor, San Benito, TX"}]}], "slug": "cameron"}, "48063": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.997}], "sh": [{"d": "TX House District 5", "rep": "Cole Hefner", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Pittsburg", "p": [{"n": "David Abernathy", "r": "Mayor, Pittsburg, TX"}]}], "slug": "camp"}, "48065": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "carson"}, "48067": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 1.0}], "sh": [{"d": "TX House District 1", "rep": "Gary VanDeaver", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "cass"}, "48069": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "castro"}, "48071": {"county": [], "districts": {"cd": [{"d": "TX-36", "rep": "Brian Babin", "w": 0.717}, {"d": "TX-14", "rep": "Randy K. Weber, Sr.", "w": 0.006}], "sh": [{"d": "TX House District 23", "rep": "Terri Leo-Wilson", "w": 0.726}], "ss": [{"d": "TX Senate District 4", "rep": "Brett Ligon", "w": 0.726}]}, "munis": [], "slug": "chambers"}, "48073": {"county": [], "districts": {"cd": [{"d": "TX-06", "rep": "Jake Ellzey", "w": 0.997}], "sh": [{"d": "TX House District 8", "rep": "Cody Harris", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Jacksonville", "p": [{"n": "Randy Gorham", "r": "Mayor, Jacksonville, TX"}]}], "slug": "cherokee"}, "48075": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "childress"}, "48077": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 0.998}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 1.0}]}, "munis": [], "slug": "clay"}, "48079": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "cochran"}, "48081": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "coke"}, "48083": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "coleman"}, "48085": {"county": [], "districts": {"cd": [{"d": "TX-03", "rep": "Keith Self", "w": 0.807}, {"d": "TX-04", "rep": "Pat Fallon", "w": 0.171}, {"d": "TX-32", "rep": "Julie Johnson", "w": 0.022}], "sh": [{"d": "TX House District 67", "rep": "Jeff Leach", "w": 0.376}, {"d": "TX House District 89", "rep": "Candy Noble", "w": 0.245}, {"d": "TX House District 66", "rep": "Matt Shaheen", "w": 0.16}, {"d": "TX House District 61", "rep": "Keresa Richardson", "w": 0.15}, {"d": "TX House District 70", "rep": "Mihaela Pleșa", "w": 0.041}, {"d": "TX House District 33", "rep": "Katrina Pierson", "w": 0.028}], "ss": [{"d": "TX Senate District 8", "rep": "Angela Paxton", "w": 0.929}, {"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 0.051}, {"d": "TX Senate District 2", "rep": "Bob Hall", "w": 0.021}]}, "munis": [{"m": "Allen", "p": [{"n": "Ken Fulk", "r": "Mayor, Allen, TX"}]}, {"m": "Farmersville", "p": [{"n": "Bryon Wiebold", "r": "Mayor, Farmersville, TX"}]}, {"m": "Frisco", "p": [{"n": "Jeff Cheney", "r": "Mayor, Frisco, TX"}]}, {"m": "Lucas", "p": [{"n": "Jim Olk", "r": "Mayor, Lucas, TX"}]}, {"m": "Mckinney", "p": [{"n": "George Fuller", "r": "Mayor, McKinney, TX"}]}, {"m": "Murphy", "p": [{"n": "Scott Bradley", "r": "Mayor, Murphy, TX"}]}, {"m": "Parker", "p": [{"n": "Lee Pettle", "r": "Mayor, Parker, TX"}]}, {"m": "Plano", "p": [{"n": "Harry LaRosiliere", "r": "Mayor, Plano, TX"}]}, {"m": "Wylie", "p": [{"n": "Matthew Porter", "r": "Mayor, Wylie, TX"}]}], "slug": "collin"}, "48087": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "collingsworth"}, "48089": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.999}], "sh": [{"d": "TX House District 85", "rep": "Stan Kitzman", "w": 1.0}], "ss": [{"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 1.0}]}, "munis": [{"m": "Columbus", "p": [{"n": "Lori An Gobert", "r": "Mayor, Columbus, TX"}]}, {"m": "Weimar", "p": [{"n": "Milton R. Koller", "r": "Mayor, Weimar, TX"}]}], "slug": "colorado"}, "48091": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 0.95}, {"d": "TX-35", "rep": "Greg Casar", "w": 0.049}], "sh": [{"d": "TX House District 73", "rep": "Carrie Isaac", "w": 1.0}], "ss": [{"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 1.0}]}, "munis": [{"m": "New Braunfels", "p": [{"n": "Rusty Brockman", "r": "Mayor, New Braunfels, TX"}]}], "slug": "comal"}, "48093": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [], "slug": "comanche"}, "48095": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Eden", "p": [{"n": "Agapito Torres", "r": "Mayor, Eden, TX"}]}], "slug": "concho"}, "48097": {"county": [], "districts": {"cd": [{"d": "TX-26", "rep": "Brandon Gill", "w": 0.998}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 0.999}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 0.999}]}, "munis": [], "slug": "cooke"}, "48099": {"county": [], "districts": {"cd": [{"d": "TX-31", "rep": "John R. Carter", "w": 1.0}], "sh": [{"d": "TX House District 59", "rep": "Shelby Slawson", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Gatesville", "p": [{"n": "Gary Chumley", "r": "Mayor, Gatesville, TX"}]}], "slug": "coryell"}, "48101": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "cottle"}, "48103": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "crane"}, "48105": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "crockett"}, "48107": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Lorenzo", "p": [{"n": "Tim Tiner", "r": "Mayor, Lorenzo, TX"}]}], "slug": "crosby"}, "48109": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 1.0}]}, "munis": [], "slug": "culberson"}, "48111": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "dallam"}, "48113": {"county": [], "districts": {"cd": [{"d": "TX-30", "rep": "Jasmine Crockett", "w": 0.39}, {"d": "TX-05", "rep": "Lance Gooden", "w": 0.194}, {"d": "TX-32", "rep": "Julie Johnson", "w": 0.14}, {"d": "TX-33", "rep": "Marc A. Veasey", "w": 0.115}, {"d": "TX-24", "rep": "Beth Van Duyne", "w": 0.104}, {"d": "TX-06", "rep": "Jake Ellzey", "w": 0.056}], "sh": [{"d": "TX House District 109", "rep": "Aicha Davis", "w": 0.225}, {"d": "TX House District 112", "rep": "Angie Button", "w": 0.092}, {"d": "TX House District 110", "rep": "Toni Rose", "w": 0.081}, {"d": "TX House District 111", "rep": "Yvonne Davis", "w": 0.074}, {"d": "TX House District 103", "rep": "Rafael Anchía", "w": 0.07}, {"d": "TX House District 115", "rep": "Cas Garcia Hernandez", "w": 0.067}, {"d": "TX House District 104", "rep": "Jessica González", "w": 0.066}, {"d": "TX House District 113", "rep": "Rhetta Bowers", "w": 0.061}, {"d": "TX House District 100", "rep": "Venton Jones", "w": 0.054}, {"d": "TX House District 105", "rep": "Terry Meza", "w": 0.051}, {"d": "TX House District 108", "rep": "Morgan Meyer", "w": 0.048}, {"d": "TX House District 107", "rep": "Linda Garcia", "w": 0.042}, {"d": "TX House District 102", "rep": "Ana-Maria Rodriguez Ramos", "w": 0.035}, {"d": "TX House District 114", "rep": "John Bryant", "w": 0.035}], "ss": [{"d": "TX Senate District 23", "rep": "Royce West", "w": 0.409}, {"d": "TX Senate District 16", "rep": "Nathan Johnson", "w": 0.289}, {"d": "TX Senate District 2", "rep": "Bob Hall", "w": 0.189}, {"d": "TX Senate District 12", "rep": "Tan Parker", "w": 0.112}]}, "munis": [{"m": "Balch Springs", "p": [{"n": "Carrie Gordon", "r": "Mayor, Balch Springs, TX"}]}, {"m": "Carrollton", "p": [{"n": "Steve Babick", "r": "Mayor, Carrollton, TX"}]}, {"m": "Cedar Hill", "p": [{"n": "Stephen Mason", "r": "Mayor, Cedar Hill, TX"}]}, {"m": "Cockrell Hill", "p": [{"n": "Luis D. Carrera", "r": "Mayor, Cockrell Hill, TX"}]}, {"m": "Coppell", "p": [{"n": "Wes Mays", "r": "Mayor, Coppell, TX"}]}, {"m": "Dallas", "p": [{"n": "Eric Johnson", "r": "Mayor, Dallas, TX"}]}, {"m": "Duncanville", "p": [{"n": "Barry L. Gordon", "r": "Mayor, Duncanville, TX"}]}, {"m": "Farmers Branch", "p": [{"n": "Terry Lynne", "r": "Mayor, Farmers Branch, TX"}]}, {"m": "Garland", "p": [{"n": "Scott LeMay", "r": "Mayor, Garland, TX"}]}, {"m": "Grand Prairie", "p": [{"n": "Ron Jensen", "r": "Mayor, Grand Prairie, TX"}]}, {"m": "Irving", "p": [{"n": "Rick Stopfer", "r": "Mayor, Irving, TX"}]}, {"m": "Lancaster", "p": [{"n": "Clyde C. Hairston", "r": "Mayor, Lancaster, TX"}]}, {"m": "Richardson", "p": [{"n": "Robert (Bob) Dubey", "r": "Mayor, Richardson, TX"}]}, {"m": "Rowlett", "p": [{"n": "Blake Margolis", "r": "Mayor, Rowlett, TX"}]}, {"m": "Sachse", "p": [{"n": "Jeff Bickerstaff", "r": "Mayor, Sachse, TX"}]}], "slug": "dallas"}, "48115": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 82", "rep": "Tom Craddick", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Lamesa", "p": [{"n": "Josh Stevens", "r": "Mayor, Lamesa, TX"}]}], "slug": "dawson"}, "48117": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "deaf-smith"}, "48119": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 1.0}], "sh": [{"d": "TX House District 62", "rep": "Shelley Luther", "w": 0.998}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "delta"}, "48121": {"county": [], "districts": {"cd": [{"d": "TX-26", "rep": "Brandon Gill", "w": 0.74}, {"d": "TX-13", "rep": "Ronny Jackson", "w": 0.238}, {"d": "TX-04", "rep": "Pat Fallon", "w": 0.018}], "sh": [{"d": "TX House District 106", "rep": "Jared Patterson", "w": 0.3}, {"d": "TX House District 64", "rep": "Andy Hopper", "w": 0.255}, {"d": "TX House District 57", "rep": "Richard Hayes", "w": 0.203}, {"d": "TX House District 65", "rep": "Mitch Little", "w": 0.159}, {"d": "TX House District 63", "rep": "Ben Bumgarner", "w": 0.082}], "ss": [{"d": "TX Senate District 12", "rep": "Tan Parker", "w": 0.552}, {"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 0.448}]}, "munis": [{"m": "Argyle", "p": [{"n": "Rick Bradford", "r": "Mayor, Argyle, TX"}]}, {"m": "Denton", "p": [{"n": "Gerard Hudspeth", "r": "Mayor, Denton, TX"}]}, {"m": "Highland Village", "p": [{"n": "Daniel Jaworski", "r": "Mayor, Highland Village, TX"}]}, {"m": "Krum", "p": [{"n": "Rhonda Harrison", "r": "Mayor, Krum, TX"}]}, {"m": "Lake Dallas", "p": [{"n": "Andi Nolan", "r": "Mayor, Lake Dallas, TX"}]}, {"m": "Lewisville", "p": [{"n": "TJ Gilmore", "r": "Mayor, Lewisville, TX"}]}, {"m": "Little Elm", "p": [{"n": "Q111217466", "r": "Mayor, Little Elm, TX"}]}, {"m": "Oak Point", "p": [{"n": "Dena Meek", "r": "Mayor, Oak Point, TX"}]}, {"m": "Roanoke", "p": [{"n": "Scooter Gierisch", "r": "Mayor, Roanoke, TX"}]}], "slug": "denton"}, "48123": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 1.0}], "sh": [{"d": "TX House District 30", "rep": "A.J. Louderback", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Cuero", "p": [{"n": "Sara Post-Meyer", "r": "Mayor, Cuero, TX"}]}], "slug": "dewitt"}, "48125": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "dickens"}, "48127": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 80", "rep": "Don McLaughlin", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [{"m": "Carrizo Springs", "p": [{"n": "Oscar E. Puente", "r": "Mayor, Carrizo Springs, TX"}]}], "slug": "dimmit"}, "48129": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "donley"}, "48131": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "duval"}, "48133": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [{"m": "Cisco", "p": [{"n": "Stephen Forester", "r": "Mayor, Cisco, TX"}]}, {"m": "Eastland", "p": [{"n": "Larry Vernon", "r": "Mayor, Eastland, TX"}]}, {"m": "Rising Star", "p": [{"n": "Jimmy L. Carpenter", "r": "Mayor, Rising Star, TX"}]}], "slug": "eastland"}, "48135": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 0.999}], "sh": [{"d": "TX House District 81", "rep": "Brooks Landgraf", "w": 0.999}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Odessa", "p": [{"n": "Javier Joven", "r": "Mayor, Odessa, TX"}]}], "slug": "ector"}, "48137": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "edwards"}, "48139": {"county": [], "districts": {"cd": [{"d": "TX-06", "rep": "Jake Ellzey", "w": 0.998}], "sh": [{"d": "TX House District 10", "rep": "Brian Harrison", "w": 1.0}], "ss": [{"d": "TX Senate District 2", "rep": "Bob Hall", "w": 0.594}, {"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 0.406}]}, "munis": [{"m": "Ennis", "p": [{"n": "Kameron Raburn", "r": "Mayor, Ennis, TX"}]}, {"m": "Glenn Heights", "p": [{"n": "Sonja A. Brown", "r": "Mayor, Glenn Heights, TX"}]}, {"m": "Maypearl", "p": [{"n": "Chance Lynch", "r": "Mayor, Maypearl, TX"}]}, {"m": "Midlothian", "p": [{"n": "Justin Coffman", "r": "Mayor, Midlothian, TX"}]}, {"m": "Red Oak", "p": [{"n": "Mark Stanfill", "r": "Mayor, Red Oak, TX"}]}, {"m": "Waxahachie", "p": [{"n": "David Hill", "r": "Mayor, Waxahachie, TX"}]}], "slug": "ellis"}, "48141": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.686}, {"d": "TX-16", "rep": "Veronica Escobar", "w": 0.312}], "sh": [{"d": "TX House District 75", "rep": "Mary González", "w": 0.469}, {"d": "TX House District 74", "rep": "Eddie Morales", "w": 0.232}, {"d": "TX House District 78", "rep": "Joe Moody", "w": 0.146}, {"d": "TX House District 79", "rep": "Claudia Ordaz", "w": 0.094}, {"d": "TX House District 77", "rep": "Vince Perez", "w": 0.059}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 0.999}]}, "munis": [{"m": "El Paso", "p": [{"n": "Renard Johnson", "r": "Mayor, El Paso, TX"}]}], "slug": "el-paso"}, "48143": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 59", "rep": "Shelby Slawson", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [], "slug": "erath"}, "48145": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 1.0}], "sh": [{"d": "TX House District 13", "rep": "Angelia Orr", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [], "slug": "falls"}, "48147": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 0.998}], "sh": [{"d": "TX House District 62", "rep": "Shelley Luther", "w": 0.999}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "fannin"}, "48149": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 1.0}], "sh": [{"d": "TX House District 85", "rep": "Stan Kitzman", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "La Grange", "p": [{"n": "Jan Dockery", "r": "Mayor, La Grange, TX"}]}], "slug": "fayette"}, "48151": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "fisher"}, "48153": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Floydada", "p": [{"n": "Bobby Gilliland", "r": "Mayor, Floydada, TX"}]}], "slug": "floyd"}, "48155": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "foard"}, "48157": {"county": [], "districts": {"cd": [{"d": "TX-22", "rep": "Troy E. Nehls", "w": 0.856}, {"d": "TX-09", "rep": "Al Green", "w": 0.075}, {"d": "TX-07", "rep": "Lizzie Fletcher", "w": 0.068}], "sh": [{"d": "TX House District 28", "rep": "Gary Gates", "w": 0.476}, {"d": "TX House District 85", "rep": "Stan Kitzman", "w": 0.264}, {"d": "TX House District 27", "rep": "Ron Reynolds", "w": 0.104}, {"d": "TX House District 26", "rep": "Matt Morgan", "w": 0.093}, {"d": "TX House District 76", "rep": "Suleman Lalani", "w": 0.062}], "ss": [{"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 0.576}, {"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.332}, {"d": "TX Senate District 13", "rep": "Borris Miles", "w": 0.092}]}, "munis": [{"m": "Missouri City", "p": [{"n": "Robin J. Elackatt", "r": "Mayor, Missouri City, TX"}]}, {"m": "Richmond", "p": [{"n": "Becky Haas", "r": "Mayor, Richmond, TX"}]}, {"m": "Rosenberg", "p": [{"n": "Kevin Raines", "r": "Mayor, Rosenberg, TX"}]}, {"m": "Stafford", "p": [{"n": "Ken Mathew", "r": "Mayor, Stafford, TX"}]}, {"m": "Sugar Land", "p": [{"n": "Joe R. Zimmerman", "r": "Mayor, Sugar Land, TX"}]}], "slug": "fort-bend"}, "48159": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.999}], "sh": [{"d": "TX House District 62", "rep": "Shelley Luther", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "48161": {"county": [], "districts": {"cd": [{"d": "TX-06", "rep": "Jake Ellzey", "w": 0.588}, {"d": "TX-17", "rep": "Pete Sessions", "w": 0.412}], "sh": [{"d": "TX House District 13", "rep": "Angelia Orr", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "freestone"}, "48163": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 80", "rep": "Don McLaughlin", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "frio"}, "48165": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "gaines"}, "48167": {"county": [], "districts": {"cd": [{"d": "TX-14", "rep": "Randy K. Weber, Sr.", "w": 0.488}], "sh": [{"d": "TX House District 24", "rep": "Greg Bonnen", "w": 0.24}, {"d": "TX House District 23", "rep": "Terri Leo-Wilson", "w": 0.231}], "ss": [{"d": "TX Senate District 11", "rep": "Mayes Middleton", "w": 0.404}, {"d": "TX Senate District 4", "rep": "Brett Ligon", "w": 0.067}]}, "munis": [{"m": "Dickinson", "p": [{"n": "Sean Skipworth", "r": "Mayor, Dickinson, TX"}]}, {"m": "Friendswood", "p": [{"n": "Mike Foreman", "r": "Mayor, Friendswood, TX"}]}, {"m": "Galveston", "p": [{"n": "Craig Brown", "r": "Mayor, Galveston, TX"}]}, {"m": "Jamaica Beach", "p": [{"n": "Sharon Bower", "r": "Mayor, Jamaica Beach, TX"}]}, {"m": "Kemah", "p": [{"n": "Robin Collins", "r": "Mayor, Kemah, TX"}]}, {"m": "La Marque", "p": [{"n": "Keith Bell", "r": "Mayor, La Marque, TX"}]}, {"m": "League City", "p": [{"n": "Nick Long", "r": "Mayor, League City, TX"}]}, {"m": "Texas City", "p": [{"n": "Dedrick Johnson, Sr.", "r": "Mayor, Texas City, TX"}]}], "slug": "galveston"}, "48169": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Post", "p": [{"n": "Marvin Self", "r": "Mayor, Post, TX"}]}], "slug": "garza"}, "48171": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 1.0}], "sh": [{"d": "TX House District 19", "rep": "Ellen Troxclair", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Fredericksburg", "p": [{"n": "Jeryl Hoover", "r": "Mayor, Fredericksburg, TX"}]}], "slug": "gillespie"}, "48173": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "glasscock"}, "48175": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 1.0}], "sh": [{"d": "TX House District 30", "rep": "A.J. Louderback", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [], "slug": "goliad"}, "48177": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 1.0}], "sh": [{"d": "TX House District 44", "rep": "Alan Schoolcraft", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Gonzales", "p": [{"n": "Steve Sucher", "r": "Mayor, Gonzales, TX"}]}], "slug": "gonzales"}, "48179": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Pampa", "p": [{"n": "Lance DeFever", "r": "Mayor, Pampa, TX"}]}], "slug": "gray"}, "48181": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 0.999}], "sh": [{"d": "TX House District 62", "rep": "Shelley Luther", "w": 1.0}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 1.0}]}, "munis": [{"m": "Denison", "p": [{"n": "Janet Gott", "r": "Mayor, Denison, TX"}]}, {"m": "Sherman", "p": [{"n": "Shawn Teamann", "r": "Mayor, Sherman, TX"}]}], "slug": "grayson"}, "48183": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.999}], "sh": [{"d": "TX House District 7", "rep": "Jay Dean", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Kilgore", "p": [{"n": "Ronnie E. Spradlin III", "r": "Mayor, Kilgore, TX"}]}, {"m": "Longview", "p": [{"n": "James Andrew Mack", "r": "Mayor, Longview, TX"}]}], "slug": "gregg"}, "48185": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.999}], "sh": [{"d": "TX House District 12", "rep": "Trey Wharton", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [], "slug": "grimes"}, "48187": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 0.786}, {"d": "TX-28", "rep": "Henry Cuellar", "w": 0.211}], "sh": [{"d": "TX House District 44", "rep": "Alan Schoolcraft", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 0.601}, {"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 0.232}, {"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 0.167}]}, "munis": [{"m": "Cibolo", "p": [{"n": "Mark Allen", "r": "Mayor, Cibolo, TX"}]}, {"m": "Seguin", "p": [{"n": "Donna Dodgen", "r": "Mayor, Seguin, TX"}]}], "slug": "guadalupe"}, "48189": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Plainview", "p": [{"n": "Charles Starnes", "r": "Mayor, Plainview, TX"}]}], "slug": "hale"}, "48191": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "hall"}, "48193": {"county": [], "districts": {"cd": [{"d": "TX-31", "rep": "John R. Carter", "w": 1.0}], "sh": [{"d": "TX House District 59", "rep": "Shelby Slawson", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [], "slug": "hamilton"}, "48195": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "hansford"}, "48197": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 0.999}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "hardeman"}, "48199": {"county": [], "districts": {"cd": [{"d": "TX-36", "rep": "Brian Babin", "w": 1.0}], "sh": [{"d": "TX House District 18", "rep": "Janis Holt", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Lumberton", "p": [{"n": "Don Surratt", "r": "Mayor, Lumberton, TX"}]}, {"m": "Silsbee", "p": [{"n": "Danny Reneau", "r": "Mayor, Silsbee, TX"}]}], "slug": "hardin"}, "48201": {"county": [], "districts": {"cd": [{"d": "TX-38", "rep": "Wesley Hunt", "w": 0.175}, {"d": "TX-02", "rep": "Dan Crenshaw", "w": 0.17}, {"d": "TX-36", "rep": "Brian Babin", "w": 0.156}, {"d": "TX-18", "rep": "Christian D. Menefee", "w": 0.131}, {"d": "TX-08", "rep": "Morgan Luttrell", "w": 0.129}, {"d": "TX-29", "rep": "Sylvia R. Garcia", "w": 0.118}, {"d": "TX-09", "rep": "Al Green", "w": 0.069}, {"d": "TX-07", "rep": "Lizzie Fletcher", "w": 0.041}, {"d": "TX-22", "rep": "Troy E. Nehls", "w": 0.01}], "sh": [{"d": "TX House District 128", "rep": "Briscoe Cain", "w": 0.12}, {"d": "TX House District 130", "rep": "Tom Oliverson", "w": 0.09}, {"d": "TX House District 132", "rep": "Mike Schofield", "w": 0.084}, {"d": "TX House District 127", "rep": "Charles Cunningham", "w": 0.062}, {"d": "TX House District 142", "rep": "Harold Dutton", "w": 0.061}, {"d": "TX House District 129", "rep": "Dennis Paul", "w": 0.056}, {"d": "TX House District 141", "rep": "Senfronia Thompson", "w": 0.053}, {"d": "TX House District 143", "rep": "Ana Hernandez", "w": 0.051}, {"d": "TX House District 150", "rep": "Valoree Swanson", "w": 0.043}, {"d": "TX House District 138", "rep": "Lacey Hull", "w": 0.038}, {"d": "TX House District 144", "rep": "Mary Ann Perez", "w": 0.033}, {"d": "TX House District 149", "rep": "Hubert Vo", "w": 0.03}, {"d": "TX House District 131", "rep": "Alma Allen", "w": 0.029}, {"d": "TX House District 126", "rep": "Sam Harless", "w": 0.029}, {"d": "TX House District 140", "rep": "Armando Walle", "w": 0.027}, {"d": "TX House District 148", "rep": "Penny Morales Shaw", "w": 0.027}, {"d": "TX House District 139", "rep": "Charlene Ward Johnson", "w": 0.025}, {"d": "TX House District 147", "rep": "Jo Jones", "w": 0.024}, {"d": "TX House District 146", "rep": "Lauren Simmons", "w": 0.024}, {"d": "TX House District 135", "rep": "Jon Rosenthal", "w": 0.022}, {"d": "TX House District 145", "rep": "Christina Morales", "w": 0.021}, {"d": "TX House District 134", "rep": "Ann Johnson", "w": 0.019}, {"d": "TX House District 133", "rep": "Mano DeAyala", "w": 0.018}, {"d": "TX House District 137", "rep": "Gene Wu", "w": 0.012}], "ss": [{"d": "TX Senate District 6", "rep": "Carol Alvarado", "w": 0.189}, {"d": "TX Senate District 7", "rep": "Paul Bettencourt", "w": 0.188}, {"d": "TX Senate District 15", "rep": "Molly Cook", "w": 0.146}, {"d": "TX Senate District 4", "rep": "Brett Ligon", "w": 0.144}, {"d": "TX Senate District 11", "rep": "Mayes Middleton", "w": 0.097}, {"d": "TX Senate District 13", "rep": "Borris Miles", "w": 0.09}, {"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 0.074}, {"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.069}]}, "munis": [{"m": "Baytown", "p": [{"n": "Charles Johnson", "r": "Mayor, Baytown, TX"}]}, {"m": "Bellaire", "p": [{"n": "Gus E. Pappas", "r": "Mayor, Bellaire, TX"}]}, {"m": "Deer Park", "p": [{"n": "Jerry Mouton, Jr.", "r": "Mayor, Deer Park, TX"}]}, {"m": "Hilshire Village", "p": [{"n": "Robert (Bob) Buesinger", "r": "Mayor, Hilshire Village, TX"}]}, {"m": "Houston", "p": [{"n": "John Whitmire", "r": "Mayor, Houston, TX"}]}, {"m": "La Porte", "p": [{"n": "Louis R. Rigby", "r": "Mayor, La Porte, TX"}]}, {"m": "Nassau Bay", "p": [{"n": "Phil Johnson", "r": "Mayor, Nassau Bay, TX"}]}, {"m": "Pasadena", "p": [{"n": "Jeff Wagner", "r": "Mayor, Pasadena, TX"}]}, {"m": "Tomball", "p": [{"n": "Lori Klein Quinn", "r": "Mayor, Tomball, TX"}]}, {"m": "Webster", "p": [{"n": "Donna Jasso", "r": "Mayor, Webster, TX"}]}], "slug": "harris"}, "48203": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 1.0}], "sh": [{"d": "TX House District 7", "rep": "Jay Dean", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Marshall", "p": [{"n": "Amy Ware", "r": "Mayor, Marshall, TX"}]}], "slug": "harrison"}, "48205": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Dalhart", "p": [{"n": "Justin Moore", "r": "Mayor, Dalhart, TX"}]}], "slug": "hartley"}, "48207": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "haskell"}, "48209": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 0.82}, {"d": "TX-35", "rep": "Greg Casar", "w": 0.18}], "sh": [{"d": "TX House District 73", "rep": "Carrie Isaac", "w": 0.539}, {"d": "TX House District 45", "rep": "Erin Zwiener", "w": 0.461}], "ss": [{"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 0.693}, {"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 0.307}]}, "munis": [{"m": "Buda", "p": [{"n": "Lee Urbanovsky", "r": "Mayor, Buda, TX"}]}, {"m": "Kyle", "p": [{"n": "Travis Mitchell", "r": "Mayor, Kyle, TX"}]}, {"m": "San Marcos", "p": [{"n": "Jane Hughson", "r": "Mayor, San Marcos, TX"}]}], "slug": "hays"}, "48211": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "hemphill"}, "48213": {"county": [], "districts": {"cd": [{"d": "TX-05", "rep": "Lance Gooden", "w": 0.997}], "sh": [{"d": "TX House District 8", "rep": "Cody Harris", "w": 0.614}, {"d": "TX House District 4", "rep": "Keith Bell", "w": 0.386}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [], "slug": "henderson"}, "48215": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 0.806}, {"d": "TX-34", "rep": "Vicente Gonzalez", "w": 0.191}], "sh": [{"d": "TX House District 35", "rep": "Oscar Longoria", "w": 0.601}, {"d": "TX House District 40", "rep": "Terry Canales", "w": 0.147}, {"d": "TX House District 39", "rep": "Mando Martinez", "w": 0.141}, {"d": "TX House District 36", "rep": "Sergio Muñoz", "w": 0.069}, {"d": "TX House District 41", "rep": "Bobby Guerra", "w": 0.041}], "ss": [{"d": "TX Senate District 20", "rep": "Chuy Hinojosa", "w": 0.71}, {"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.289}]}, "munis": [{"m": "Donna", "p": [{"n": "David Moreno", "r": "Mayor, Donna, TX"}]}, {"m": "Edinburg", "p": [{"n": "Ramiro Garza Jr.", "r": "Mayor, Edinburg, TX"}]}, {"m": "Hidalgo", "p": [{"n": "Sergio Coronado", "r": "Mayor, Hidalgo, TX"}]}, {"m": "Mcallen", "p": [{"n": "Jim Darling", "r": "Mayor, McAllen, TX"}]}, {"m": "Mercedes", "p": [{"n": "Oscar D. Montoya Sr.", "r": "Mayor, Mercedes, TX"}]}, {"m": "Mission", "p": [{"n": "Norie Gonzalez Garza", "r": "Mayor, Mission, TX"}]}, {"m": "Pharr", "p": [{"n": "Ambrosio “Amos” Hernandez", "r": "Mayor, Pharr, TX"}]}, {"m": "Progreso", "p": [{"n": "Gerardo Alanis", "r": "Mayor, Progreso, TX"}]}, {"m": "Weslaco", "p": [{"n": "Adrian Gonzalez", "r": "Mayor, Weslaco, TX"}]}], "slug": "hidalgo"}, "48217": {"county": [], "districts": {"cd": [{"d": "TX-06", "rep": "Jake Ellzey", "w": 0.998}], "sh": [{"d": "TX House District 13", "rep": "Angelia Orr", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [{"m": "Hillsboro", "p": [{"n": "Scott Johnson", "r": "Mayor, Hillsboro, TX"}]}], "slug": "hill"}, "48219": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Levelland", "p": [{"n": "Barbra Pinner", "r": "Mayor, Levelland, TX"}]}], "slug": "hockley"}, "48221": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 59", "rep": "Shelby Slawson", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [{"m": "Granbury", "p": [{"n": "Jim Jarratt", "r": "Mayor, Granbury, TX"}]}], "slug": "hood"}, "48223": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 1.0}], "sh": [{"d": "TX House District 2", "rep": "Brent Money", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Sulphur Springs", "p": [{"n": "Jay Julian", "r": "Mayor, Sulphur Springs, TX"}]}], "slug": "hopkins"}, "48225": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 0.998}], "sh": [{"d": "TX House District 9", "rep": "Trent Ashby", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Crockett", "p": [{"n": "Ianthia Fisher", "r": "Mayor, Crockett, TX"}]}], "slug": "houston"}, "48227": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Big Spring", "p": [{"n": "Robert Moore", "r": "Mayor, Big Spring, TX"}]}], "slug": "howard"}, "48229": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 1.0}]}, "munis": [], "slug": "hudspeth"}, "48231": {"county": [], "districts": {"cd": [{"d": "TX-03", "rep": "Keith Self", "w": 0.886}, {"d": "TX-04", "rep": "Pat Fallon", "w": 0.113}], "sh": [{"d": "TX House District 2", "rep": "Brent Money", "w": 1.0}], "ss": [{"d": "TX Senate District 8", "rep": "Angela Paxton", "w": 1.0}]}, "munis": [{"m": "Greenville", "p": [{"n": "Jerry Ransom", "r": "Mayor, Greenville, TX"}]}], "slug": "hunt"}, "48233": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Borger", "p": [{"n": "Karen Felker", "r": "Mayor, Borger, TX"}]}], "slug": "hutchinson"}, "48235": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "irion"}, "48237": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 1.0}]}, "munis": [], "slug": "jack"}, "48239": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 1.0}], "sh": [{"d": "TX House District 30", "rep": "A.J. Louderback", "w": 1.0}], "ss": [{"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "48241": {"county": [], "districts": {"cd": [{"d": "TX-36", "rep": "Brian Babin", "w": 1.0}], "sh": [{"d": "TX House District 21", "rep": "Dade Phelan", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Jasper", "p": [{"n": "Anderson Land", "r": "Mayor, Jasper, TX"}]}], "slug": "jasper"}, "48243": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 1.0}]}, "munis": [], "slug": "jeff-davis"}, "48245": {"county": [], "districts": {"cd": [{"d": "TX-14", "rep": "Randy K. Weber, Sr.", "w": 0.654}, {"d": "TX-36", "rep": "Brian Babin", "w": 0.232}], "sh": [{"d": "TX House District 21", "rep": "Dade Phelan", "w": 0.677}, {"d": "TX House District 22", "rep": "Christian Manuel", "w": 0.209}], "ss": [{"d": "TX Senate District 4", "rep": "Brett Ligon", "w": 0.733}, {"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 0.153}]}, "munis": [{"m": "Beaumont", "p": [{"n": "Roy West", "r": "Mayor, Beaumont, TX"}]}, {"m": "Port Arthur", "p": [{"n": "Thurman \"Bill\" Bartie", "r": "Mayor, Port Arthur, TX"}]}], "slug": "jefferson"}, "48247": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "jim-hogg"}, "48249": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 0.999}], "sh": [{"d": "TX House District 43", "rep": "J.M. Lozano", "w": 1.0}], "ss": [{"d": "TX Senate District 20", "rep": "Chuy Hinojosa", "w": 1.0}]}, "munis": [{"m": "Alice", "p": [{"n": "Cynthia Carrasco", "r": "Mayor, Alice, TX"}]}], "slug": "jim-wells"}, "48251": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 0.68}, {"d": "TX-06", "rep": "Jake Ellzey", "w": 0.319}], "sh": [{"d": "TX House District 58", "rep": "Helen Kerwin", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 1.0}]}, "munis": [{"m": "Burleson", "p": [{"n": "Chris Fletcher", "r": "Mayor, Burleson, TX"}]}, {"m": "Cleburne", "p": [{"n": "Scott Cain", "r": "Mayor, Cleburne, TX"}]}, {"m": "Venus", "p": [{"n": "Alejandro Galaviz", "r": "Mayor, Venus, TX"}]}], "slug": "johnson"}, "48253": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 71", "rep": "Stan Lambert", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "jones"}, "48255": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "karnes"}, "48257": {"county": [], "districts": {"cd": [{"d": "TX-05", "rep": "Lance Gooden", "w": 0.998}], "sh": [{"d": "TX House District 4", "rep": "Keith Bell", "w": 1.0}], "ss": [{"d": "TX Senate District 2", "rep": "Bob Hall", "w": 1.0}]}, "munis": [{"m": "Forney", "p": [{"n": "Jason Roberson", "r": "Mayor, Forney, TX"}]}], "slug": "kaufman"}, "48259": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 0.999}], "sh": [{"d": "TX House District 19", "rep": "Ellen Troxclair", "w": 1.0}], "ss": [{"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 1.0}]}, "munis": [], "slug": "kendall"}, "48261": {"county": [], "districts": {"cd": [{"d": "TX-34", "rep": "Vicente Gonzalez", "w": 0.803}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 0.793}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.793}]}, "munis": [], "slug": "kenedy"}, "48263": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 0.998}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "kent"}, "48265": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Kerrville", "p": [{"n": "Judy Eychner", "r": "Mayor, Kerrville, TX"}]}], "slug": "kerr"}, "48267": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [], "slug": "kimble"}, "48269": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "king"}, "48271": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "kinney"}, "48273": {"county": [], "districts": {"cd": [{"d": "TX-34", "rep": "Vicente Gonzalez", "w": 0.852}], "sh": [{"d": "TX House District 43", "rep": "J.M. Lozano", "w": 0.833}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.833}]}, "munis": [{"m": "Kingsville", "p": [{"n": "Sam Fugate", "r": "Mayor, Kingsville, TX"}]}], "slug": "kleberg"}, "48275": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "knox"}, "48277": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 0.997}], "sh": [{"d": "TX House District 1", "rep": "Gary VanDeaver", "w": 0.999}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "lamar"}, "48279": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "lamb"}, "48281": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Lampasas", "p": [{"n": "Herb Pearce", "r": "Mayor, Lampasas, TX"}]}], "slug": "lampasas"}, "48283": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 0.999}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "la-salle"}, "48285": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 1.0}], "sh": [{"d": "TX House District 30", "rep": "A.J. Louderback", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [], "slug": "lavaca"}, "48287": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 1.0}], "sh": [{"d": "TX House District 17", "rep": "Stan Gerdes", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Giddings", "p": [{"n": "Joel Lopez", "r": "Mayor, Giddings, TX"}]}], "slug": "lee"}, "48289": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 0.999}], "sh": [{"d": "TX House District 13", "rep": "Angelia Orr", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [{"m": "Buffalo", "p": [{"n": "Jerrod Jones", "r": "Mayor, Buffalo, TX"}]}], "slug": "leon"}, "48291": {"county": [], "districts": {"cd": [{"d": "TX-36", "rep": "Brian Babin", "w": 1.0}], "sh": [{"d": "TX House District 18", "rep": "Janis Holt", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Cleveland", "p": [{"n": "Danny Lee", "r": "Mayor, Cleveland, TX"}]}, {"m": "Daisetta", "p": [{"n": "Eric Thaxton", "r": "Mayor, Daisetta, TX"}]}, {"m": "Dayton", "p": [{"n": "Martin Mudd", "r": "Mayor, Dayton, TX"}]}], "slug": "liberty"}, "48293": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 1.0}], "sh": [{"d": "TX House District 13", "rep": "Angelia Orr", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "limestone"}, "48295": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "lipscomb"}, "48297": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "live-oak"}, "48299": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 0.997}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [], "slug": "llano"}, "48301": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 81", "rep": "Brooks Landgraf", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "loving"}, "48303": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 0.692}, {"d": "TX House District 84", "rep": "Carl Tepper", "w": 0.308}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Lubbock", "p": [{"n": "Tray Payne", "r": "Mayor, Lubbock, TX"}]}], "slug": "lubbock"}, "48305": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "lynn"}, "48307": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Brady", "p": [{"n": "Aaron Garcia", "r": "Mayor, Brady, TX"}]}], "slug": "mcculloch"}, "48309": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 1.0}], "sh": [{"d": "TX House District 56", "rep": "Pat Curry", "w": 0.757}, {"d": "TX House District 13", "rep": "Angelia Orr", "w": 0.243}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [{"m": "Bellmead", "p": [{"n": "Jasmine Neal", "r": "Mayor, Bellmead, TX"}]}, {"m": "Hewitt", "p": [{"n": "Steve Fortenberry", "r": "Mayor, Hewitt, TX"}]}, {"m": "Lacy Lakeview", "p": [{"n": "A. Niecey Payne", "r": "Mayor, Lacy Lakeview, TX"}]}, {"m": "Robinson", "p": [{"n": "Bert Echterling", "r": "Mayor, Robinson, TX"}]}, {"m": "Waco", "p": [{"n": "Dillon Meek", "r": "Mayor, Waco, TX"}]}], "slug": "mclennan"}, "48311": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 0.999}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "mcmullen"}, "48313": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.997}], "sh": [{"d": "TX House District 12", "rep": "Trey Wharton", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "madison"}, "48315": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.998}], "sh": [{"d": "TX House District 7", "rep": "Jay Dean", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "marion"}, "48317": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 82", "rep": "Tom Craddick", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "martin"}, "48319": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "mason"}, "48321": {"county": [], "districts": {"cd": [{"d": "TX-22", "rep": "Troy E. Nehls", "w": 0.857}], "sh": [{"d": "TX House District 30", "rep": "A.J. Louderback", "w": 0.858}], "ss": [{"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 0.858}]}, "munis": [{"m": "Bay City", "p": [{"n": "Robert Nelson", "r": "Mayor, Bay City, TX"}]}], "slug": "matagorda"}, "48323": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [{"m": "Eagle Pass", "p": [{"n": "Rolando Salinas Jr.", "r": "Mayor, Eagle Pass, TX"}]}], "slug": "maverick"}, "48325": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [{"m": "Castroville", "p": [{"n": "Darrin Schroeder", "r": "Mayor, Castroville, TX"}]}], "slug": "medina"}, "48327": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Menard", "p": [{"n": "Barbara Hooten", "r": "Mayor, Menard, TX"}]}], "slug": "menard"}, "48329": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 82", "rep": "Tom Craddick", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Midland", "p": [{"n": "Lori Blong", "r": "Mayor, Midland, TX"}]}], "slug": "midland"}, "48331": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 1.0}], "sh": [{"d": "TX House District 17", "rep": "Stan Gerdes", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "milam"}, "48333": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 0.999}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "mills"}, "48335": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "mitchell"}, "48337": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 0.998}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 1.0}]}, "munis": [], "slug": "montague"}, "48339": {"county": [], "districts": {"cd": [{"d": "TX-08", "rep": "Morgan Luttrell", "w": 0.667}, {"d": "TX-02", "rep": "Dan Crenshaw", "w": 0.332}], "sh": [{"d": "TX House District 16", "rep": "Will Metcalf", "w": 0.497}, {"d": "TX House District 3", "rep": "Cecil Bell", "w": 0.325}, {"d": "TX House District 15", "rep": "Steve Toth", "w": 0.1}, {"d": "TX House District 18", "rep": "Janis Holt", "w": 0.077}], "ss": [{"d": "TX Senate District 4", "rep": "Brett Ligon", "w": 0.762}, {"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.151}, {"d": "TX Senate District 7", "rep": "Paul Bettencourt", "w": 0.087}]}, "munis": [{"m": "Conroe", "p": [{"n": "Jody Czajkoski", "r": "Mayor, Conroe, TX"}]}], "slug": "montgomery"}, "48341": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Dumas", "p": [{"n": "Bob Brinkmann", "r": "Mayor, Dumas, TX"}]}], "slug": "moore"}, "48343": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 1.0}], "sh": [{"d": "TX House District 1", "rep": "Gary VanDeaver", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "morris"}, "48345": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "motley"}, "48347": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 0.997}], "sh": [{"d": "TX House District 11", "rep": "Joanne Shofner", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Nacogdoches", "p": [{"n": "Jimmy Mize", "r": "Mayor, Nacogdoches, TX"}]}], "slug": "nacogdoches"}, "48349": {"county": [], "districts": {"cd": [{"d": "TX-06", "rep": "Jake Ellzey", "w": 0.998}], "sh": [{"d": "TX House District 8", "rep": "Cody Harris", "w": 1.0}], "ss": [{"d": "TX Senate District 2", "rep": "Bob Hall", "w": 1.0}]}, "munis": [{"m": "Corsicana", "p": [{"n": "Mike Fletcher", "r": "Mayor, Corsicana, TX"}]}], "slug": "navarro"}, "48351": {"county": [], "districts": {"cd": [{"d": "TX-36", "rep": "Brian Babin", "w": 0.995}, {"d": "LA-04", "rep": "Mike Johnson", "w": 0.005}], "sh": [{"d": "TX House District 11", "rep": "Joanne Shofner", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 0.999}]}, "munis": [], "slug": "newton"}, "48353": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 71", "rep": "Stan Lambert", "w": 0.999}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Sweetwater", "p": [{"n": "Jim McKenzie", "r": "Mayor, Sweetwater, TX"}]}], "slug": "nolan"}, "48355": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.75}], "sh": [{"d": "TX House District 34", "rep": "Denise Villalobos", "w": 0.536}, {"d": "TX House District 32", "rep": "Todd Hunter", "w": 0.211}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.476}, {"d": "TX Senate District 20", "rep": "Chuy Hinojosa", "w": 0.271}]}, "munis": [{"m": "Corpus Christi", "p": [{"n": "Paulette Guajardo", "r": "Mayor, Corpus Christi, TX"}]}, {"m": "Port Aransas", "p": [{"n": "Wendy Moore", "r": "Mayor, Port Aransas, TX"}]}], "slug": "nueces"}, "48357": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "ochiltree"}, "48359": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "oldham"}, "48361": {"county": [], "districts": {"cd": [{"d": "TX-14", "rep": "Randy K. Weber, Sr.", "w": 0.995}], "sh": [{"d": "TX House District 21", "rep": "Dade Phelan", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 0.999}]}, "munis": [{"m": "Bridge City", "p": [{"n": "David Rutledge", "r": "Mayor, Bridge City, TX"}]}, {"m": "Orange", "p": [{"n": "Larry Spears, Jr.", "r": "Mayor, Orange, TX"}]}], "slug": "orange"}, "48363": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 60", "rep": "Mike Olcott", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 1.0}]}, "munis": [], "slug": "palo-pinto"}, "48365": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 1.0}], "sh": [{"d": "TX House District 11", "rep": "Joanne Shofner", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "panola"}, "48367": {"county": [], "districts": {"cd": [{"d": "TX-12", "rep": "Craig A. Goldman", "w": 0.659}, {"d": "TX-25", "rep": "Roger Williams", "w": 0.34}], "sh": [{"d": "TX House District 60", "rep": "Mike Olcott", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 0.596}, {"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 0.404}]}, "munis": [{"m": "Azle", "p": [{"n": "Alan Brundrett", "r": "Mayor, Azle, TX"}]}], "slug": "parker"}, "48369": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 0.999}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "parmer"}, "48371": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 1.0}]}, "munis": [{"m": "Fort Stockton", "p": [{"n": "Paul Casias", "r": "Mayor, Fort Stockton, TX"}]}], "slug": "pecos"}, "48373": {"county": [], "districts": {"cd": [{"d": "TX-08", "rep": "Morgan Luttrell", "w": 0.999}], "sh": [{"d": "TX House District 9", "rep": "Trent Ashby", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [{"m": "Livingston", "p": [{"n": "Judy B. Cochran", "r": "Mayor, Livingston, TX"}]}, {"m": "Onalaska", "p": [{"n": "James W. Arnett", "r": "Mayor, Onalaska, TX"}]}], "slug": "polk"}, "48375": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Amarillo", "p": [{"n": "Cole Stanley", "r": "Mayor, Amarillo, TX"}]}], "slug": "potter"}, "48377": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.998}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 1.0}]}, "munis": [{"m": "Presidio", "p": [{"n": "John Ferguson", "r": "Mayor, Presidio, TX"}]}], "slug": "presidio"}, "48379": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 0.997}], "sh": [{"d": "TX House District 5", "rep": "Cole Hefner", "w": 0.999}], "ss": [{"d": "TX Senate District 8", "rep": "Angela Paxton", "w": 0.999}]}, "munis": [], "slug": "rains"}, "48381": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 86", "rep": "John Smithee", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [{"m": "Canyon", "p": [{"n": "Gary Hinders", "r": "Mayor, Canyon, TX"}]}], "slug": "randall"}, "48383": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "reagan"}, "48385": {"county": [], "districts": {"cd": [{"d": "TX-21", "rep": "Chip Roy", "w": 0.998}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "real"}, "48387": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 0.508}, {"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.486}, {"d": "OK-02", "rep": "Josh Brecheen", "w": 0.006}], "sh": [{"d": "TX House District 1", "rep": "Gary VanDeaver", "w": 0.999}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 0.999}]}, "munis": [{"m": "Clarksville", "p": [{"n": "Ann Rushing", "r": "Mayor, Clarksville, TX"}]}], "slug": "red-river"}, "48389": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 29", "rep": "César Blanco", "w": 1.0}]}, "munis": [{"m": "Town Of Pecos", "p": [{"n": "Teresa Winkles", "r": "Mayor, Pecos, TX"}]}], "slug": "reeves"}, "48391": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.977}], "sh": [{"d": "TX House District 43", "rep": "J.M. Lozano", "w": 0.959}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.96}]}, "munis": [], "slug": "refugio"}, "48393": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "roberts"}, "48395": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 1.0}], "sh": [{"d": "TX House District 12", "rep": "Trey Wharton", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "robertson"}, "48397": {"county": [], "districts": {"cd": [{"d": "TX-04", "rep": "Pat Fallon", "w": 0.999}], "sh": [{"d": "TX House District 33", "rep": "Katrina Pierson", "w": 1.0}], "ss": [{"d": "TX Senate District 2", "rep": "Bob Hall", "w": 1.0}]}, "munis": [{"m": "Rockwall", "p": [{"n": "Trace Johannesen", "r": "Mayor, Rockwall, TX"}]}], "slug": "rockwall"}, "48399": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "runnels"}, "48401": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 1.0}], "sh": [{"d": "TX House District 11", "rep": "Joanne Shofner", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Henderson", "p": [{"n": "John 'Buzz' Fullen", "r": "Mayor, Henderson, TX"}]}, {"m": "Overton", "p": [{"n": "Curtis Gilbert", "r": "Mayor, Overton, TX"}]}], "slug": "rusk"}, "48403": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.991}, {"d": "LA-04", "rep": "Mike Johnson", "w": 0.009}], "sh": [{"d": "TX House District 11", "rep": "Joanne Shofner", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 0.999}]}, "munis": [], "slug": "sabine"}, "48405": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.994}, {"d": "TX-17", "rep": "Pete Sessions", "w": 0.006}], "sh": [{"d": "TX House District 9", "rep": "Trent Ashby", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [], "slug": "san-augustine"}, "48407": {"county": [], "districts": {"cd": [{"d": "TX-08", "rep": "Morgan Luttrell", "w": 0.999}], "sh": [{"d": "TX House District 18", "rep": "Janis Holt", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "san-jacinto"}, "48409": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 0.991}], "sh": [{"d": "TX House District 43", "rep": "J.M. Lozano", "w": 0.997}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.997}]}, "munis": [{"m": "Ingleside On The Bay", "p": [{"n": "Jo Ann Ehmann", "r": "Mayor, Ingleside on the Bay, TX"}]}, {"m": "Mathis", "p": [{"n": "Ciriaco \"Ciri\" Villarreal", "r": "Mayor, Mathis, TX"}]}, {"m": "Portland", "p": [{"n": "Cathy Skurow", "r": "Mayor, Portland, TX"}]}], "slug": "san-patricio"}, "48411": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "San Saba", "p": [{"n": "Ken Jordan", "r": "Mayor, San Saba, TX"}]}], "slug": "san-saba"}, "48413": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 0.999}]}, "munis": [], "slug": "schleicher"}, "48415": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "scurry"}, "48417": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 1.0}]}, "munis": [], "slug": "shackelford"}, "48419": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.996}], "sh": [{"d": "TX House District 11", "rep": "Joanne Shofner", "w": 0.999}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 0.999}]}, "munis": [{"m": "Timpson", "p": [{"n": "Debra Smith", "r": "Mayor, Timpson, TX"}]}], "slug": "shelby"}, "48421": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 87", "rep": "Caroline Fairly", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "sherman"}, "48423": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.997}], "sh": [{"d": "TX House District 6", "rep": "Daniel Alders", "w": 0.5}, {"d": "TX House District 5", "rep": "Cole Hefner", "w": 0.499}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Lindale", "p": [{"n": "Jeff Daugherty", "r": "Mayor, Lindale, TX"}]}, {"m": "Tyler", "p": [{"n": "Don Warren", "r": "Mayor, Tyler, TX"}]}], "slug": "smith"}, "48425": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 0.998}], "sh": [{"d": "TX House District 58", "rep": "Helen Kerwin", "w": 1.0}], "ss": [{"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 1.0}]}, "munis": [], "slug": "somervell"}, "48427": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 0.997}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 0.999}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 0.999}]}, "munis": [{"m": "Rio Grande City", "p": [{"n": "Joel Villarreal", "r": "Mayor, Rio Grande City, TX"}]}, {"m": "Roma", "p": [{"n": "Jaime Escobar Jr.", "r": "Mayor, Roma, TX"}]}], "slug": "starr"}, "48429": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 60", "rep": "Mike Olcott", "w": 1.0}], "ss": [{"d": "TX Senate District 10", "rep": "Phil King", "w": 1.0}]}, "munis": [{"m": "Breckenridge", "p": [{"n": "Bob Sims", "r": "Mayor, Breckenridge, TX"}]}], "slug": "stephens"}, "48431": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "sterling"}, "48433": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "stonewall"}, "48435": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 24", "rep": "Pete Flores", "w": 1.0}]}, "munis": [], "slug": "sutton"}, "48437": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "swisher"}, "48439": {"county": [], "districts": {"cd": [{"d": "TX-12", "rep": "Craig A. Goldman", "w": 0.436}, {"d": "TX-24", "rep": "Beth Van Duyne", "w": 0.203}, {"d": "TX-25", "rep": "Roger Williams", "w": 0.159}, {"d": "TX-33", "rep": "Marc A. Veasey", "w": 0.132}, {"d": "TX-06", "rep": "Jake Ellzey", "w": 0.051}, {"d": "TX-30", "rep": "Jasmine Crockett", "w": 0.016}], "sh": [{"d": "TX House District 99", "rep": "Charlie Geren", "w": 0.165}, {"d": "TX House District 97", "rep": "John McQueeney", "w": 0.155}, {"d": "TX House District 98", "rep": "Giovanni Capriglione", "w": 0.116}, {"d": "TX House District 96", "rep": "David Cook", "w": 0.112}, {"d": "TX House District 93", "rep": "Nate Schatzline", "w": 0.1}, {"d": "TX House District 94", "rep": "Tony Tinderholt", "w": 0.072}, {"d": "TX House District 95", "rep": "Nicole Collier", "w": 0.072}, {"d": "TX House District 90", "rep": "Ramon Romero", "w": 0.06}, {"d": "TX House District 101", "rep": "Chris Turner", "w": 0.05}, {"d": "TX House District 92", "rep": "Salman Bhojani", "w": 0.049}, {"d": "TX House District 91", "rep": "David Lowe", "w": 0.049}], "ss": [{"d": "TX Senate District 9", "rep": "Taylor Rehmet", "w": 0.53}, {"d": "TX Senate District 10", "rep": "Phil King", "w": 0.27}, {"d": "TX Senate District 22", "rep": "Brian Birdwell", "w": 0.113}, {"d": "TX Senate District 12", "rep": "Tan Parker", "w": 0.06}, {"d": "TX Senate District 23", "rep": "Royce West", "w": 0.027}]}, "munis": [{"m": "Arlington", "p": [{"n": "Jim Ross", "r": "Mayor, Arlington, TX"}]}, {"m": "Bedford", "p": [{"n": "Dan Cogan", "r": "Mayor, Bedford, TX"}]}, {"m": "Benbrook", "p": [{"n": "Jason Ward", "r": "Mayor, Benbrook, TX"}]}, {"m": "Colleyville", "p": [{"n": "Bobby Lindamood", "r": "Mayor, Colleyville, TX"}]}, {"m": "Crowley", "p": [{"n": "Billy P. Davis", "r": "Mayor, Crowley, TX"}]}, {"m": "Euless", "p": [{"n": "Linda Martin", "r": "Mayor, Euless, TX"}]}, {"m": "Fort Worth", "p": [{"n": "Mattie Parker", "r": "Mayor, Fort Worth, TX"}]}, {"m": "Grapevine", "p": [{"n": "William Tate", "r": "Mayor, Grapevine, TX"}]}, {"m": "Haltom City", "p": [{"n": "An Truong", "r": "Mayor, Haltom City, TX"}]}, {"m": "Hurst", "p": [{"n": "Henry Wilson", "r": "Mayor, Hurst, TX"}]}, {"m": "Keller", "p": [{"n": "Armin Mizani", "r": "Mayor, Keller, TX"}]}, {"m": "Kennedale", "p": [{"n": "Jan Joplin", "r": "Mayor, Kennedale, TX"}]}, {"m": "Mansfield", "p": [{"n": "Michael Evans", "r": "Mayor, Mansfield, TX"}]}, {"m": "North Richland Hills", "p": [{"n": "Oscar Trevino", "r": "Mayor, North Richland Hills, TX"}]}, {"m": "River Oaks", "p": [{"n": "Darren Houk", "r": "Mayor, River Oaks, TX"}]}, {"m": "Saginaw", "p": [{"n": "Todd Flippo", "r": "Mayor, Saginaw, TX"}]}, {"m": "Southlake", "p": [{"n": "John Huffman", "r": "Mayor, Southlake, TX"}]}], "slug": "tarrant"}, "48441": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 0.999}], "sh": [{"d": "TX House District 71", "rep": "Stan Lambert", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "Abilene", "p": [{"n": "Weldon Hurt", "r": "Mayor, Abilene, TX"}]}], "slug": "taylor"}, "48443": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "terrell"}, "48445": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 83", "rep": "Dustin Burrows", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "terry"}, "48447": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "throckmorton"}, "48449": {"county": [], "districts": {"cd": [{"d": "TX-01", "rep": "Nathaniel Moran", "w": 1.0}], "sh": [{"d": "TX House District 5", "rep": "Cole Hefner", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Mount Pleasant", "p": [{"n": "Tracy Craig Sr.", "r": "Mayor, Mount Pleasant, TX"}]}], "slug": "titus"}, "48451": {"county": [], "districts": {"cd": [{"d": "TX-11", "rep": "August Pfluger", "w": 1.0}], "sh": [{"d": "TX House District 72", "rep": "Drew Darby", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [{"m": "San Angelo", "p": [{"n": "Brenda Gunter", "r": "Mayor, San Angelo, TX"}]}], "slug": "tom-green"}, "48453": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.403}, {"d": "TX-35", "rep": "Greg Casar", "w": 0.282}, {"d": "TX-37", "rep": "Lloyd Doggett", "w": 0.206}, {"d": "TX-17", "rep": "Pete Sessions", "w": 0.063}, {"d": "TX-21", "rep": "Chip Roy", "w": 0.045}], "sh": [{"d": "TX House District 19", "rep": "Ellen Troxclair", "w": 0.241}, {"d": "TX House District 46", "rep": "Sheryl Cole", "w": 0.221}, {"d": "TX House District 47", "rep": "Vikki Goodwin", "w": 0.196}, {"d": "TX House District 51", "rep": "Lulu Flores", "w": 0.169}, {"d": "TX House District 48", "rep": "Donna Howard", "w": 0.083}, {"d": "TX House District 50", "rep": "James Talarico", "w": 0.054}, {"d": "TX House District 49", "rep": "Gina Hinojosa", "w": 0.035}], "ss": [{"d": "TX Senate District 14", "rep": "Sarah Eckhardt", "w": 0.507}, {"d": "TX Senate District 25", "rep": "Donna Campbell", "w": 0.328}, {"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 0.165}]}, "munis": [{"m": "Austin", "p": [{"n": "Kirk Watson", "r": "Mayor, Austin, TX"}]}, {"m": "Bee Cave", "p": [{"n": "Kara King", "r": "Mayor, Bee Cave, TX"}]}, {"m": "Lakeway", "p": [{"n": "Tom Kilgore", "r": "Mayor, Lakeway, TX"}]}, {"m": "Pflugerville", "p": [{"n": "Victor Gonzales", "r": "Mayor, Pflugerville, TX"}]}], "slug": "travis"}, "48455": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 1.0}], "sh": [{"d": "TX House District 9", "rep": "Trent Ashby", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [], "slug": "trinity"}, "48457": {"county": [], "districts": {"cd": [{"d": "TX-36", "rep": "Brian Babin", "w": 1.0}], "sh": [{"d": "TX House District 9", "rep": "Trent Ashby", "w": 1.0}], "ss": [{"d": "TX Senate District 3", "rep": "Robert Nichols", "w": 1.0}]}, "munis": [], "slug": "tyler"}, "48459": {"county": [], "districts": {"cd": [{"d": "TX-05", "rep": "Lance Gooden", "w": 0.503}, {"d": "TX-01", "rep": "Nathaniel Moran", "w": 0.497}], "sh": [{"d": "TX House District 5", "rep": "Cole Hefner", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [{"m": "Gilmer", "p": [{"n": "Tim Marshall", "r": "Mayor, Gilmer, TX"}]}], "slug": "upshur"}, "48461": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 53", "rep": "Wes Virdell", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "upton"}, "48463": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 80", "rep": "Don McLaughlin", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "uvalde"}, "48465": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 74", "rep": "Eddie Morales", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [{"m": "Del Rio", "p": [{"n": "Q125217476", "r": "Mayor, Del Rio, TX"}]}], "slug": "val-verde"}, "48467": {"county": [], "districts": {"cd": [{"d": "TX-05", "rep": "Lance Gooden", "w": 0.998}], "sh": [{"d": "TX House District 2", "rep": "Brent Money", "w": 1.0}], "ss": [{"d": "TX Senate District 2", "rep": "Bob Hall", "w": 1.0}]}, "munis": [{"m": "Canton", "p": [{"n": "Lou Ann Everett", "r": "Mayor, Canton, TX"}]}], "slug": "van-zandt"}, "48469": {"county": [], "districts": {"cd": [{"d": "TX-27", "rep": "Michael Cloud", "w": 1.0}], "sh": [{"d": "TX House District 30", "rep": "A.J. Louderback", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Victoria", "p": [{"n": "Jeff Bauknight", "r": "Mayor, Victoria, TX"}]}], "slug": "victoria"}, "48471": {"county": [], "districts": {"cd": [{"d": "TX-17", "rep": "Pete Sessions", "w": 0.605}, {"d": "TX-08", "rep": "Morgan Luttrell", "w": 0.393}], "sh": [{"d": "TX House District 12", "rep": "Trey Wharton", "w": 1.0}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 1.0}]}, "munis": [], "slug": "walker"}, "48473": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.999}], "sh": [{"d": "TX House District 85", "rep": "Stan Kitzman", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 0.701}, {"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 0.299}]}, "munis": [{"m": "Brookshire", "p": [{"n": "Darrell Branch", "r": "Mayor, Brookshire, TX"}]}, {"m": "Hempstead", "p": [{"n": "Erica Gillum", "r": "Mayor, Hempstead, TX"}]}, {"m": "Katy", "p": [{"n": "William H. \"Dusty\" Thiele", "r": "Mayor, Katy, TX"}]}], "slug": "waller"}, "48475": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 81", "rep": "Brooks Landgraf", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "ward"}, "48477": {"county": [], "districts": {"cd": [{"d": "TX-10", "rep": "Michael T. McCaul", "w": 1.0}], "sh": [{"d": "TX House District 12", "rep": "Trey Wharton", "w": 1.0}], "ss": [{"d": "TX Senate District 18", "rep": "Lois Kolkhorst", "w": 1.0}]}, "munis": [{"m": "Brenham", "p": [{"n": "Atwood C. Kenjura", "r": "Mayor, Brenham, TX"}]}], "slug": "washington"}, "48479": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 0.999}], "sh": [{"d": "TX House District 80", "rep": "Don McLaughlin", "w": 0.861}, {"d": "TX House District 42", "rep": "Richard Raymond", "w": 0.139}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [{"m": "Laredo", "p": [{"n": "Victor Treviño", "r": "Mayor, Laredo, TX"}]}], "slug": "webb"}, "48481": {"county": [], "districts": {"cd": [{"d": "TX-22", "rep": "Troy E. Nehls", "w": 0.999}], "sh": [{"d": "TX House District 85", "rep": "Stan Kitzman", "w": 1.0}], "ss": [{"d": "TX Senate District 17", "rep": "Joan Huffman", "w": 1.0}]}, "munis": [{"m": "Wharton", "p": [{"n": "Tim Barker", "r": "Mayor, Wharton, TX"}]}], "slug": "wharton"}, "48483": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "wheeler"}, "48485": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 0.999}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 0.852}, {"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 0.147}]}, "munis": [{"m": "Burkburnett", "p": [{"n": "Lori Kemp", "r": "Mayor, Burkburnett, TX"}]}, {"m": "Iowa Park", "p": [{"n": "Ray Schultz", "r": "Mayor, Iowa Park, TX"}]}, {"m": "Wichita Falls", "p": [{"n": "Stephen Santellana", "r": "Mayor, Wichita Falls, TX"}]}], "slug": "wichita"}, "48487": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 0.998}], "sh": [{"d": "TX House District 69", "rep": "James Frank", "w": 1.0}], "ss": [{"d": "TX Senate District 28", "rep": "Charles Perry", "w": 1.0}]}, "munis": [], "slug": "wilbarger"}, "48489": {"county": [], "districts": {"cd": [{"d": "TX-34", "rep": "Vicente Gonzalez", "w": 0.809}], "sh": [{"d": "TX House District 37", "rep": "Janie Lopez", "w": 0.802}], "ss": [{"d": "TX Senate District 27", "rep": "Adam Hinojosa", "w": 0.803}]}, "munis": [{"m": "Raymondville", "p": [{"n": "Gilbert Gonzales", "r": "Mayor, Raymondville, TX"}]}], "slug": "willacy"}, "48491": {"county": [], "districts": {"cd": [{"d": "TX-31", "rep": "John R. Carter", "w": 0.782}, {"d": "TX-17", "rep": "Pete Sessions", "w": 0.187}, {"d": "TX-10", "rep": "Michael T. McCaul", "w": 0.018}, {"d": "TX-37", "rep": "Lloyd Doggett", "w": 0.014}], "sh": [{"d": "TX House District 52", "rep": "Caroline Harris Davila", "w": 0.608}, {"d": "TX House District 20", "rep": "Terry Wilson", "w": 0.34}, {"d": "TX House District 136", "rep": "John Bucy", "w": 0.052}], "ss": [{"d": "TX Senate District 5", "rep": "Charles Schwertner", "w": 0.901}, {"d": "TX Senate District 24", "rep": "Pete Flores", "w": 0.099}]}, "munis": [{"m": "Cedar Park", "p": [{"n": "Jim Penniman-Morin", "r": "Mayor, Cedar Park, TX"}]}, {"m": "Georgetown", "p": [{"n": "Josh Schroeder", "r": "Mayor, Georgetown, TX"}]}, {"m": "Hutto", "p": [{"n": "Mike Snyder", "r": "Mayor, Hutto, TX"}]}, {"m": "Leander", "p": [{"n": "Christine DeLisle", "r": "Mayor, Leander, TX"}]}, {"m": "Round Rock", "p": [{"n": "Craig Morgan", "r": "Mayor, Round Rock, TX"}]}], "slug": "williamson"}, "48493": {"county": [], "districts": {"cd": [{"d": "TX-15", "rep": "Monica De La Cruz", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "wilson"}, "48495": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 0.999}], "sh": [{"d": "TX House District 81", "rep": "Brooks Landgraf", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "winkler"}, "48497": {"county": [], "districts": {"cd": [{"d": "TX-13", "rep": "Ronny Jackson", "w": 0.509}, {"d": "TX-26", "rep": "Brandon Gill", "w": 0.49}], "sh": [{"d": "TX House District 64", "rep": "Andy Hopper", "w": 1.0}], "ss": [{"d": "TX Senate District 12", "rep": "Tan Parker", "w": 1.0}]}, "munis": [{"m": "Bridgeport", "p": [{"n": "Randy Singleton", "r": "Mayor, Bridgeport, TX"}]}], "slug": "wise"}, "48499": {"county": [], "districts": {"cd": [{"d": "TX-05", "rep": "Lance Gooden", "w": 0.996}], "sh": [{"d": "TX House District 5", "rep": "Cole Hefner", "w": 1.0}], "ss": [{"d": "TX Senate District 1", "rep": "Bryan Hughes", "w": 1.0}]}, "munis": [], "slug": "wood"}, "48501": {"county": [], "districts": {"cd": [{"d": "TX-19", "rep": "Jodey C. Arrington", "w": 1.0}], "sh": [{"d": "TX House District 88", "rep": "Ken King", "w": 1.0}], "ss": [{"d": "TX Senate District 31", "rep": "Kevin Sparks", "w": 1.0}]}, "munis": [], "slug": "yoakum"}, "48503": {"county": [], "districts": {"cd": [{"d": "TX-25", "rep": "Roger Williams", "w": 1.0}], "sh": [{"d": "TX House District 68", "rep": "David Spiller", "w": 1.0}], "ss": [{"d": "TX Senate District 30", "rep": "Brent Hagenbuch", "w": 1.0}]}, "munis": [{"m": "Graham", "p": [{"n": "Alex Heartfield", "r": "Mayor, Graham, TX"}]}], "slug": "young"}, "48505": {"county": [], "districts": {"cd": [{"d": "TX-28", "rep": "Henry Cuellar", "w": 1.0}], "sh": [{"d": "TX House District 31", "rep": "Ryan Guillen", "w": 1.0}], "ss": [{"d": "TX Senate District 21", "rep": "Judith Zaffirini", "w": 1.0}]}, "munis": [], "slug": "zapata"}, "48507": {"county": [], "districts": {"cd": [{"d": "TX-23", "rep": "Vacant", "w": 1.0}], "sh": [{"d": "TX House District 80", "rep": "Don McLaughlin", "w": 1.0}], "ss": [{"d": "TX Senate District 19", "rep": "Roland Gutierrez", "w": 1.0}]}, "munis": [], "slug": "zavala"}, "49001": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 70", "rep": "Carl Albrecht", "w": 1.0}], "ss": [{"d": "UT Senate District 28", "rep": "Evan Vickers", "w": 1.0}]}, "munis": [{"m": "Beaver", "p": [{"n": "Matt Robinson", "r": "Mayor, Beaver, UT"}]}], "slug": "beaver"}, "49003": {"county": [], "districts": {"cd": [{"d": "UT-01", "rep": "Blake D. Moore", "w": 1.0}], "sh": [{"d": "UT House District 1", "rep": "Tom Peterson", "w": 0.99}, {"d": "UT House District 6", "rep": "Rob Bishop", "w": 0.01}], "ss": [{"d": "UT Senate District 1", "rep": "Scott Sandall", "w": 1.0}]}, "munis": [{"m": "Brigham City", "p": [{"n": "DJ Bott", "r": "Mayor, Brigham City, UT"}]}], "slug": "box-elder"}, "49005": {"county": [], "districts": {"cd": [{"d": "UT-01", "rep": "Blake D. Moore", "w": 1.0}], "sh": [{"d": "UT House District 5", "rep": "Casey Snider", "w": 0.433}, {"d": "UT House District 3", "rep": "Jason Thompson", "w": 0.355}, {"d": "UT House District 2", "rep": "Mike Petersen", "w": 0.139}, {"d": "UT House District 1", "rep": "Tom Peterson", "w": 0.074}], "ss": [{"d": "UT Senate District 2", "rep": "Chris Wilson", "w": 0.616}, {"d": "UT Senate District 1", "rep": "Scott Sandall", "w": 0.384}]}, "munis": [{"m": "Logan", "p": [{"n": "Holly H. Daines", "r": "Mayor, Logan, UT"}]}, {"m": "Nibley", "p": [{"n": "Larry Jacobsen", "r": "Mayor, Nibley, UT"}]}], "slug": "cache"}, "49007": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 1.0}], "sh": [{"d": "UT House District 67", "rep": "Christine Watkins", "w": 1.0}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 1.0}]}, "munis": [{"m": "Price", "p": [{"n": "Michael Kourianos", "r": "Mayor, Price, UT"}]}], "slug": "carbon"}, "49009": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 1.0}], "sh": [{"d": "UT House District 68", "rep": "Scott Chew", "w": 1.0}], "ss": [{"d": "UT Senate District 20", "rep": "Ron Winterton", "w": 1.0}]}, "munis": [], "slug": "daggett"}, "49011": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 0.63}, {"d": "UT-01", "rep": "Blake D. Moore", "w": 0.37}], "sh": [{"d": "UT House District 15", "rep": "Ariel Defay", "w": 0.58}, {"d": "UT House District 18", "rep": "Paul Cutler", "w": 0.105}, {"d": "UT House District 12", "rep": "Mike Schultz", "w": 0.077}, {"d": "UT House District 19", "rep": "Ray Ward", "w": 0.058}, {"d": "UT House District 17", "rep": "Stewart Barlow", "w": 0.052}, {"d": "UT House District 16", "rep": "Trevor Lee", "w": 0.032}, {"d": "UT House District 20", "rep": "Melissa Ballard", "w": 0.032}, {"d": "UT House District 11", "rep": "Katy Hall", "w": 0.026}, {"d": "UT House District 14", "rep": "Karianne Lisonbee", "w": 0.02}, {"d": "UT House District 13", "rep": "Karen Peterson", "w": 0.018}], "ss": [{"d": "UT Senate District 6", "rep": "Jerry Stevenson", "w": 0.671}, {"d": "UT Senate District 7", "rep": "Stuart Adams", "w": 0.182}, {"d": "UT Senate District 8", "rep": "Todd Weiler", "w": 0.092}, {"d": "UT Senate District 5", "rep": "Ann Millner", "w": 0.028}, {"d": "UT Senate District 4", "rep": "Cal Musselman", "w": 0.026}]}, "munis": [{"m": "Bountiful", "p": [{"n": "Kendalyn Harris", "r": "Mayor, Bountiful, UT"}]}, {"m": "Farmington", "p": [{"n": "Brett Anderson", "r": "Mayor, Farmington, UT"}]}, {"m": "Layton", "p": [{"n": "Joy Petro", "r": "Mayor, Layton, UT"}]}, {"m": "North Salt Lake", "p": [{"n": "Brian Horrocks", "r": "Mayor, North Salt Lake, UT"}]}, {"m": "Woods Cross", "p": [{"n": "Ryan Westergard", "r": "Mayor, Woods Cross, UT"}]}], "slug": "davis"}, "49013": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 1.0}], "sh": [{"d": "UT House District 67", "rep": "Christine Watkins", "w": 0.506}, {"d": "UT House District 68", "rep": "Scott Chew", "w": 0.494}], "ss": [{"d": "UT Senate District 20", "rep": "Ron Winterton", "w": 1.0}]}, "munis": [], "slug": "duchesne"}, "49015": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 1.0}], "sh": [{"d": "UT House District 69", "rep": "Logan Monson", "w": 0.836}, {"d": "UT House District 67", "rep": "Christine Watkins", "w": 0.164}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 1.0}]}, "munis": [{"m": "Green River", "p": [{"n": "Ren Hatt", "r": "Mayor, Green River, UT"}]}, {"m": "Orangeville", "p": [{"n": "David Robertson", "r": "Mayor, Orangeville, UT"}]}], "slug": "emery"}, "49017": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 69", "rep": "Logan Monson", "w": 1.0}], "ss": [{"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.701}, {"d": "UT Senate District 26", "rep": "David Hinkins", "w": 0.299}]}, "munis": [], "slug": "garfield"}, "49019": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 1.0}], "sh": [{"d": "UT House District 69", "rep": "Logan Monson", "w": 1.0}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 1.0}]}, "munis": [{"m": "Moab", "p": [{"n": "Joette Langianese", "r": "Mayor, Moab, UT"}]}], "slug": "grand"}, "49021": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 70", "rep": "Carl Albrecht", "w": 0.718}, {"d": "UT House District 71", "rep": "Rex Shipp", "w": 0.281}], "ss": [{"d": "UT Senate District 28", "rep": "Evan Vickers", "w": 1.0}]}, "munis": [{"m": "Cedar City", "p": [{"n": "Garth Green", "r": "Mayor, Cedar City, UT"}]}, {"m": "Parowan", "p": [{"n": "Mollie Halterman", "r": "Mayor, Parowan, UT"}]}], "slug": "iron"}, "49023": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 0.726}, {"d": "UT-04", "rep": "Burgess Owens", "w": 0.274}], "sh": [{"d": "UT House District 29", "rep": "Bridger Bolinder", "w": 0.705}, {"d": "UT House District 66", "rep": "Troy Shelley", "w": 0.295}], "ss": [{"d": "UT Senate District 28", "rep": "Evan Vickers", "w": 0.554}, {"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.445}]}, "munis": [{"m": "Nephi", "p": [{"n": "Justin Seely", "r": "Mayor, Nephi, UT"}]}], "slug": "juab"}, "49025": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 0.999}], "sh": [{"d": "UT House District 69", "rep": "Logan Monson", "w": 1.0}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 0.769}, {"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.231}]}, "munis": [{"m": "Kanab", "p": [{"n": "Troy Colten Johnson", "r": "Mayor, Kanab, UT"}]}], "slug": "kane"}, "49027": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 29", "rep": "Bridger Bolinder", "w": 1.0}], "ss": [{"d": "UT Senate District 28", "rep": "Evan Vickers", "w": 0.809}, {"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.191}]}, "munis": [{"m": "Fillmore", "p": [{"n": "Michael D. Holt", "r": "Mayor, Fillmore, UT"}]}], "slug": "millard"}, "49029": {"county": [], "districts": {"cd": [{"d": "UT-01", "rep": "Blake D. Moore", "w": 1.0}], "sh": [{"d": "UT House District 4", "rep": "Tiara Auxier", "w": 0.978}, {"d": "UT House District 8", "rep": "Jason Kyle", "w": 0.021}], "ss": [{"d": "UT Senate District 3", "rep": "John Johnson", "w": 0.831}, {"d": "UT Senate District 5", "rep": "Ann Millner", "w": 0.086}, {"d": "UT Senate District 7", "rep": "Stuart Adams", "w": 0.083}]}, "munis": [], "slug": "morgan"}, "49031": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 70", "rep": "Carl Albrecht", "w": 1.0}], "ss": [{"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 1.0}]}, "munis": [], "slug": "piute"}, "49033": {"county": [], "districts": {"cd": [{"d": "UT-01", "rep": "Blake D. Moore", "w": 1.0}], "sh": [{"d": "UT House District 4", "rep": "Tiara Auxier", "w": 1.0}], "ss": [{"d": "UT Senate District 2", "rep": "Chris Wilson", "w": 1.0}]}, "munis": [], "slug": "rich"}, "49035": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 0.327}, {"d": "UT-04", "rep": "Burgess Owens", "w": 0.274}, {"d": "UT-03", "rep": "Mike Kennedy", "w": 0.249}, {"d": "UT-01", "rep": "Blake D. Moore", "w": 0.151}], "sh": [{"d": "UT House District 27", "rep": "Anthony Loubet", "w": 0.156}, {"d": "UT House District 21", "rep": "Sandra Hollins", "w": 0.149}, {"d": "UT House District 41", "rep": "John Arthur", "w": 0.119}, {"d": "UT House District 23", "rep": "Hoang Nguyen", "w": 0.1}, {"d": "UT House District 49", "rep": "Candice Pierucci", "w": 0.062}, {"d": "UT House District 33", "rep": "Doug Owens", "w": 0.056}, {"d": "UT House District 22", "rep": "Jen Dailey-Provost", "w": 0.05}, {"d": "UT House District 46", "rep": "Cal Roberts", "w": 0.042}, {"d": "UT House District 25", "rep": "Angela Romero", "w": 0.031}, {"d": "UT House District 26", "rep": "Matt MacPherson", "w": 0.025}, {"d": "UT House District 47", "rep": "Mark Strong", "w": 0.021}, {"d": "UT House District 42", "rep": "Clint Okerlund", "w": 0.017}, {"d": "UT House District 38", "rep": "Cheryl Acton", "w": 0.016}, {"d": "UT House District 48", "rep": "Doug Fiefia", "w": 0.016}, {"d": "UT House District 45", "rep": "Tracy Miller", "w": 0.014}, {"d": "UT House District 39", "rep": "Ken Ivory", "w": 0.013}, {"d": "UT House District 43", "rep": "Steve Eliason", "w": 0.013}, {"d": "UT House District 35", "rep": "Rosalba Dominguez", "w": 0.013}, {"d": "UT House District 32", "rep": "Sahara Hayes", "w": 0.012}, {"d": "UT House District 44", "rep": "Jordan Teuscher", "w": 0.011}, {"d": "UT House District 34", "rep": "Carol Moss", "w": 0.011}, {"d": "UT House District 40", "rep": "Andrew Stoddard", "w": 0.01}, {"d": "UT House District 36", "rep": "Jim Dunnigan", "w": 0.01}, {"d": "UT House District 31", "rep": "Verona Mauga", "w": 0.009}, {"d": "UT House District 24", "rep": "Grant Miller", "w": 0.009}, {"d": "UT House District 30", "rep": "Jake Fitisemanu", "w": 0.008}, {"d": "UT House District 37", "rep": "Ashlee Matthews", "w": 0.007}], "ss": [{"d": "UT Senate District 10", "rep": "Luz Escamilla", "w": 0.221}, {"d": "UT Senate District 11", "rep": "Emily Buss", "w": 0.166}, {"d": "UT Senate District 15", "rep": "Kathleen Riebe", "w": 0.151}, {"d": "UT Senate District 9", "rep": "Jen Plumb", "w": 0.126}, {"d": "UT Senate District 19", "rep": "Kirk Cullimore", "w": 0.081}, {"d": "UT Senate District 18", "rep": "Dan McCay", "w": 0.063}, {"d": "UT Senate District 17", "rep": "Lincoln Fillmore", "w": 0.042}, {"d": "UT Senate District 8", "rep": "Todd Weiler", "w": 0.035}, {"d": "UT Senate District 14", "rep": "Stephanie Pitcher", "w": 0.033}, {"d": "UT Senate District 16", "rep": "Wayne Harper", "w": 0.029}, {"d": "UT Senate District 13", "rep": "Nate Blouin", "w": 0.028}, {"d": "UT Senate District 12", "rep": "Karen Kwan", "w": 0.02}, {"d": "UT Senate District 22", "rep": "Heidi Balderree", "w": 0.006}]}, "munis": [{"m": "Draper", "p": [{"n": "Troy Walker", "r": "Mayor, Draper, UT"}]}, {"m": "Midvale", "p": [{"n": "Marcus Stevenson", "r": "Mayor, Midvale, UT"}]}, {"m": "Millcreek", "p": [{"n": "Jeff Silvestrini", "r": "Mayor, Millcreek, UT"}]}, {"m": "Murray", "p": [{"n": "Brett A. Hales", "r": "Mayor, Murray, UT"}]}, {"m": "Riverton", "p": [{"n": "Trent Staggs", "r": "Mayor, Riverton, UT"}]}, {"m": "Salt Lake City", "p": [{"n": "Erin Mendenhall", "r": "Mayor, Salt Lake City, UT"}]}, {"m": "Sandy", "p": [{"n": "Monica Zoltanski", "r": "Mayor, Sandy, UT"}]}, {"m": "South Jordan", "p": [{"n": "Dawn R. Ramsey", "r": "Mayor, South Jordan, UT"}]}, {"m": "Taylorsville", "p": [{"n": "Kristie S. Overson", "r": "Mayor, Taylorsville, UT"}]}, {"m": "West Jordan", "p": [{"n": "Dirk Burton", "r": "Mayor, West Jordan, UT"}]}, {"m": "West Valley City", "p": [{"n": "Ron C. Bigelow", "r": "Mayor, West Valley City, UT"}]}], "slug": "salt-lake"}, "49037": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 0.999}], "sh": [{"d": "UT House District 69", "rep": "Logan Monson", "w": 1.0}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 1.0}]}, "munis": [{"m": "Monticello", "p": [{"n": "Bayley Hedglin", "r": "Mayor, Monticello, UT"}]}], "slug": "san-juan"}, "49039": {"county": [], "districts": {"cd": [{"d": "UT-04", "rep": "Burgess Owens", "w": 0.999}], "sh": [{"d": "UT House District 66", "rep": "Troy Shelley", "w": 1.0}], "ss": [{"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 1.0}]}, "munis": [{"m": "Manti", "p": [{"n": "Alfred \"Chuck\" Bigelow", "r": "Mayor, Manti, UT"}]}], "slug": "sanpete"}, "49041": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 70", "rep": "Carl Albrecht", "w": 1.0}], "ss": [{"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 1.0}]}, "munis": [{"m": "Richfield", "p": [{"n": "Bryan L. Burrows", "r": "Mayor, Richfield, UT"}]}], "slug": "sevier"}, "49043": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 0.604}, {"d": "UT-01", "rep": "Blake D. Moore", "w": 0.396}], "sh": [{"d": "UT House District 4", "rep": "Tiara Auxier", "w": 0.628}, {"d": "UT House District 68", "rep": "Scott Chew", "w": 0.349}, {"d": "UT House District 59", "rep": "Mike Kohler", "w": 0.021}], "ss": [{"d": "UT Senate District 20", "rep": "Ron Winterton", "w": 0.762}, {"d": "UT Senate District 3", "rep": "John Johnson", "w": 0.238}]}, "munis": [], "slug": "summit"}, "49045": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 29", "rep": "Bridger Bolinder", "w": 0.985}, {"d": "UT House District 28", "rep": "Nicholeen Peck", "w": 0.015}], "ss": [{"d": "UT Senate District 11", "rep": "Emily Buss", "w": 0.753}, {"d": "UT Senate District 1", "rep": "Scott Sandall", "w": 0.247}]}, "munis": [{"m": "Tooele", "p": [{"n": "Debbie Winn", "r": "Mayor, Tooele, UT"}]}], "slug": "tooele"}, "49047": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 1.0}], "sh": [{"d": "UT House District 68", "rep": "Scott Chew", "w": 1.0}], "ss": [{"d": "UT Senate District 20", "rep": "Ron Winterton", "w": 1.0}]}, "munis": [], "slug": "uintah"}, "49049": {"county": [], "districts": {"cd": [{"d": "UT-04", "rep": "Burgess Owens", "w": 0.828}, {"d": "UT-03", "rep": "Mike Kennedy", "w": 0.171}], "sh": [{"d": "UT House District 66", "rep": "Troy Shelley", "w": 0.276}, {"d": "UT House District 50", "rep": "Stephanie Gricius", "w": 0.222}, {"d": "UT House District 63", "rep": "Stephen Whyte", "w": 0.211}, {"d": "UT House District 65", "rep": "Doug Welton", "w": 0.052}, {"d": "UT House District 58", "rep": "Dave Shallenberger", "w": 0.051}, {"d": "UT House District 61", "rep": "Lisa Shepherd", "w": 0.045}, {"d": "UT House District 54", "rep": "Kristen Chevrier", "w": 0.045}, {"d": "UT House District 64", "rep": "Jackie Larson", "w": 0.03}, {"d": "UT House District 51", "rep": "Leah Hansen", "w": 0.013}, {"d": "UT House District 55", "rep": "Jon Hawkins", "w": 0.011}, {"d": "UT House District 52", "rep": "Cory Maloy", "w": 0.009}, {"d": "UT House District 62", "rep": "Norm Thurston", "w": 0.009}, {"d": "UT House District 60", "rep": "Grant Pace", "w": 0.007}, {"d": "UT House District 53", "rep": "Kay Christofferson", "w": 0.007}, {"d": "UT House District 56", "rep": "Val Peterson", "w": 0.007}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 0.409}, {"d": "UT Senate District 25", "rep": "Mike McKell", "w": 0.146}, {"d": "UT Senate District 11", "rep": "Emily Buss", "w": 0.136}, {"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.133}, {"d": "UT Senate District 24", "rep": "Keven Stratton", "w": 0.059}, {"d": "UT Senate District 21", "rep": "Brady Brammer", "w": 0.048}, {"d": "UT Senate District 22", "rep": "Heidi Balderree", "w": 0.031}, {"d": "UT Senate District 19", "rep": "Kirk Cullimore", "w": 0.016}, {"d": "UT Senate District 23", "rep": "Keith Grover", "w": 0.015}, {"d": "UT Senate District 18", "rep": "Dan McCay", "w": 0.006}]}, "munis": [{"m": "American Fork", "p": [{"n": "Brad Frost", "r": "Mayor, American Fork, UT"}]}, {"m": "Lehi", "p": [{"n": "Mark Johnson", "r": "Mayor, Lehi, UT"}]}, {"m": "Orem", "p": [{"n": "David Young", "r": "Mayor, Orem, UT"}]}, {"m": "Payson", "p": [{"n": "Bill Wright", "r": "Mayor, Payson, UT"}]}, {"m": "Provo", "p": [{"n": "Michelle Kaufusi", "r": "Mayor, Provo, UT"}]}], "slug": "utah"}, "49051": {"county": [], "districts": {"cd": [{"d": "UT-03", "rep": "Mike Kennedy", "w": 0.999}], "sh": [{"d": "UT House District 59", "rep": "Mike Kohler", "w": 1.0}], "ss": [{"d": "UT Senate District 20", "rep": "Ron Winterton", "w": 0.805}, {"d": "UT Senate District 26", "rep": "David Hinkins", "w": 0.146}, {"d": "UT Senate District 24", "rep": "Keven Stratton", "w": 0.049}]}, "munis": [{"m": "Heber", "p": [{"n": "Heidi Franco", "r": "Mayor, Heber City, UT"}]}], "slug": "wasatch"}, "49053": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 1.0}], "sh": [{"d": "UT House District 72", "rep": "Joseph Elison", "w": 0.406}, {"d": "UT House District 75", "rep": "Walt Brooks", "w": 0.356}, {"d": "UT House District 74", "rep": "Neil Walter", "w": 0.175}, {"d": "UT House District 73", "rep": "Colin Jack", "w": 0.062}], "ss": [{"d": "UT Senate District 29", "rep": "Don Ipson", "w": 0.537}, {"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.336}, {"d": "UT Senate District 28", "rep": "Evan Vickers", "w": 0.127}]}, "munis": [{"m": "St George", "p": [{"n": "Michele Randall", "r": "Mayor, St. George, UT"}]}], "slug": "washington"}, "49055": {"county": [], "districts": {"cd": [{"d": "UT-02", "rep": "Celeste Maloy", "w": 0.999}], "sh": [{"d": "UT House District 69", "rep": "Logan Monson", "w": 1.0}], "ss": [{"d": "UT Senate District 26", "rep": "David Hinkins", "w": 0.633}, {"d": "UT Senate District 27", "rep": "Derrin Owens", "w": 0.367}]}, "munis": [], "slug": "wayne"}, "49057": {"county": [], "districts": {"cd": [{"d": "UT-01", "rep": "Blake D. Moore", "w": 1.0}], "sh": [{"d": "UT House District 8", "rep": "Jason Kyle", "w": 0.554}, {"d": "UT House District 12", "rep": "Mike Schultz", "w": 0.212}, {"d": "UT House District 6", "rep": "Rob Bishop", "w": 0.135}, {"d": "UT House District 9", "rep": "Jake Sawyer", "w": 0.034}, {"d": "UT House District 10", "rep": "Jill Koford", "w": 0.028}, {"d": "UT House District 7", "rep": "Ryan Wilcox", "w": 0.02}, {"d": "UT House District 11", "rep": "Katy Hall", "w": 0.016}], "ss": [{"d": "UT Senate District 3", "rep": "John Johnson", "w": 0.535}, {"d": "UT Senate District 4", "rep": "Cal Musselman", "w": 0.37}, {"d": "UT Senate District 5", "rep": "Ann Millner", "w": 0.094}]}, "munis": [{"m": "Ogden", "p": [{"n": "Benjamin K. Nadolski", "r": "Mayor, Ogden, UT"}]}], "slug": "weber"}, "50001": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Vergennes", "p": [{"n": "Mathew Chabot", "r": "Mayor, Vergennes, VT"}]}], "slug": "addison"}, "50003": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "bennington"}, "50005": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "caledonia"}, "50007": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Burlington", "p": [{"n": "Miro Weinberger", "r": "Mayor, Burlington, VT"}]}, {"m": "Winooski", "p": [{"n": "Kristine Lott", "r": "Mayor, Winooski, VT"}]}], "slug": "chittenden"}, "50009": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 0.997}], "sh": [], "ss": []}, "munis": [], "slug": "essex"}, "50011": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "St Albans", "p": [{"n": "Tim Smith", "r": "Mayor, St. Albans, VT"}]}], "slug": "franklin"}, "50013": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "grand-isle"}, "50015": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "lamoille"}, "50017": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 0.999}], "sh": [], "ss": []}, "munis": [], "slug": "orange"}, "50019": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "orleans"}, "50021": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Rutland", "p": [{"n": "Mike Doenges", "r": "Mayor, Rutland, VT"}]}], "slug": "rutland"}, "50023": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [{"m": "Barre", "p": [{"n": "Lucas J. Herring", "r": "Mayor, Barre, VT"}]}, {"m": "Montpelier", "p": [{"n": "Jack McCullough", "r": "Mayor, Montpelier, VT"}]}], "slug": "washington"}, "50025": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "windham"}, "50027": {"county": [], "districts": {"cd": [{"d": "VT-00", "rep": "Becca Balint", "w": 1.0}], "sh": [], "ss": []}, "munis": [], "slug": "windsor"}, "51001": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.449}], "sh": [{"d": "VA House District 100", "rep": "Rob Bloxom", "w": 0.429}], "ss": [{"d": "VA Senate District 20", "rep": "Bill DeSteph", "w": 0.429}]}, "munis": [], "slug": "accomack"}, "51003": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.987}, {"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.012}], "sh": [{"d": "VA House District 55", "rep": "Amy Laufer", "w": 0.972}, {"d": "VA House District 54", "rep": "Katrina Callsen", "w": 0.028}], "ss": [{"d": "VA Senate District 11", "rep": "Creigh Deeds", "w": 1.0}]}, "munis": [], "slug": "albemarle"}, "51005": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.998}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 1.0}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [], "slug": "alleghany"}, "51007": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.995}], "sh": [{"d": "VA House District 72", "rep": "Lee Ware", "w": 1.0}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "amelia"}, "51009": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.997}], "sh": [{"d": "VA House District 53", "rep": "Tim Griffin", "w": 1.0}], "ss": [{"d": "VA Senate District 11", "rep": "Creigh Deeds", "w": 1.0}]}, "munis": [], "slug": "amherst"}, "51011": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 56", "rep": "Tom Garrett", "w": 1.0}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "appomattox"}, "51013": {"county": [], "districts": {"cd": [{"d": "VA-08", "rep": "Donald S. Beyer, Jr.", "w": 0.993}], "sh": [{"d": "VA House District 1", "rep": "Patrick Hope", "w": 0.444}, {"d": "VA House District 2", "rep": "Adele McClure", "w": 0.334}, {"d": "VA House District 3", "rep": "Alfonso Lopez", "w": 0.216}], "ss": [{"d": "VA Senate District 40", "rep": "Barbara Favola", "w": 0.871}, {"d": "VA Senate District 39", "rep": "Elizabeth Bennett-Parker", "w": 0.124}]}, "munis": [], "slug": "arlington"}, "51015": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.998}], "sh": [{"d": "VA House District 35", "rep": "Chris Runion", "w": 0.758}, {"d": "VA House District 36", "rep": "Ellen McLaughlin", "w": 0.242}], "ss": [{"d": "VA Senate District 2", "rep": "Mark Obenshain", "w": 0.758}, {"d": "VA Senate District 3", "rep": "Chris Head", "w": 0.242}]}, "munis": [], "slug": "augusta"}, "51017": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 35", "rep": "Chris Runion", "w": 1.0}], "ss": [{"d": "VA Senate District 2", "rep": "Mark Obenshain", "w": 1.0}]}, "munis": [], "slug": "bath"}, "51019": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.861}, {"d": "VA-05", "rep": "John J. McGuire III", "w": 0.135}], "sh": [{"d": "VA House District 51", "rep": "Eric Zehr", "w": 0.522}, {"d": "VA House District 53", "rep": "Tim Griffin", "w": 0.478}], "ss": [{"d": "VA Senate District 8", "rep": "Mark Peake", "w": 1.0}]}, "munis": [], "slug": "bedford"}, "51021": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 43", "rep": "Will Morefield", "w": 1.0}], "ss": [{"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 1.0}]}, "munis": [], "slug": "bland"}, "51023": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.999}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 1.0}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [], "slug": "botetourt"}, "51025": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.999}], "sh": [{"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 1.0}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 1.0}]}, "munis": [], "slug": "brunswick"}, "51027": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 43", "rep": "Will Morefield", "w": 0.999}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 0.999}]}, "munis": [], "slug": "buchanan"}, "51029": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 56", "rep": "Tom Garrett", "w": 1.0}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "buckingham"}, "51031": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 51", "rep": "Eric Zehr", "w": 0.99}, {"d": "VA House District 52", "rep": "Wendell Walker", "w": 0.01}], "ss": [{"d": "VA Senate District 8", "rep": "Mark Peake", "w": 1.0}]}, "munis": [], "slug": "campbell"}, "51033": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.993}], "sh": [{"d": "VA House District 67", "rep": "Hillary Pugh Kent", "w": 0.623}, {"d": "VA House District 66", "rep": "Nicole Cole", "w": 0.377}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 1.0}]}, "munis": [], "slug": "caroline"}, "51035": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 47", "rep": "Wren Williams", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [], "slug": "carroll"}, "51036": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.969}, {"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.011}], "sh": [{"d": "VA House District 81", "rep": "Delores McQuinn", "w": 0.98}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 0.98}]}, "munis": [], "slug": "charles-city"}, "51037": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 50", "rep": "Tommy Wright", "w": 1.0}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [], "slug": "charlotte"}, "51041": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.511}, {"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.486}], "sh": [{"d": "VA House District 73", "rep": "Leslie Mehta", "w": 0.355}, {"d": "VA House District 74", "rep": "Mike Cherry", "w": 0.309}, {"d": "VA House District 75", "rep": "Lindsey Dougherty", "w": 0.128}, {"d": "VA House District 76", "rep": "Debra Gardner", "w": 0.098}, {"d": "VA House District 72", "rep": "Lee Ware", "w": 0.043}, {"d": "VA House District 77", "rep": "Charlie Schmidt", "w": 0.036}, {"d": "VA House District 81", "rep": "Delores McQuinn", "w": 0.03}], "ss": [{"d": "VA Senate District 12", "rep": "Glen Sturtevant", "w": 0.721}, {"d": "VA Senate District 15", "rep": "Mike Jones", "w": 0.278}]}, "munis": [], "slug": "chesterfield"}, "51043": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.997}], "sh": [{"d": "VA House District 31", "rep": "Delores Oates", "w": 1.0}], "ss": [{"d": "VA Senate District 1", "rep": "Timmy French", "w": 1.0}]}, "munis": [], "slug": "clarke"}, "51045": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.997}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 1.0}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [], "slug": "craig"}, "51047": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.996}], "sh": [{"d": "VA House District 62", "rep": "Karen Hamilton", "w": 0.672}, {"d": "VA House District 61", "rep": "Mike Webert", "w": 0.328}], "ss": [{"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 1.0}]}, "munis": [], "slug": "culpeper"}, "51049": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 56", "rep": "Tom Garrett", "w": 1.0}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "cumberland"}, "51051": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 43", "rep": "Will Morefield", "w": 0.78}, {"d": "VA House District 45", "rep": "Terry Kilgore", "w": 0.219}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 1.0}]}, "munis": [], "slug": "dickenson"}, "51053": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.998}], "sh": [{"d": "VA House District 82", "rep": "Kim Adams", "w": 0.789}, {"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 0.21}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 0.51}, {"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 0.489}]}, "munis": [], "slug": "dinwiddie"}, "51057": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.921}, {"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.006}], "sh": [{"d": "VA House District 68", "rep": "Keith Hodges", "w": 0.927}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.927}]}, "munis": [], "slug": "essex"}, "51059": {"county": [], "districts": {"cd": [{"d": "VA-11", "rep": "James R. Walkinshaw", "w": 0.609}, {"d": "VA-08", "rep": "Donald S. Beyer, Jr.", "w": 0.282}, {"d": "VA-10", "rep": "Suhas Subramanyam", "w": 0.107}], "sh": [{"d": "VA House District 6", "rep": "Rip Sullivan", "w": 0.15}, {"d": "VA House District 10", "rep": "Dan Helmer", "w": 0.119}, {"d": "VA House District 9", "rep": "Karrie Delaney", "w": 0.103}, {"d": "VA House District 19", "rep": "J.R. Henson", "w": 0.088}, {"d": "VA House District 15", "rep": "Laura Jane Cohen", "w": 0.086}, {"d": "VA House District 7", "rep": "Karen Keys-Gamarra", "w": 0.069}, {"d": "VA House District 18", "rep": "Kathy Tran", "w": 0.066}, {"d": "VA House District 16", "rep": "Paul Krizek", "w": 0.059}, {"d": "VA House District 14", "rep": "Vivian Watts", "w": 0.047}, {"d": "VA House District 12", "rep": "Holly Seibold", "w": 0.044}, {"d": "VA House District 17", "rep": "Garrett McGuire", "w": 0.043}, {"d": "VA House District 8", "rep": "Irene Shin", "w": 0.041}, {"d": "VA House District 11", "rep": "Gretchen Bulova", "w": 0.036}, {"d": "VA House District 13", "rep": "Marcus Simon", "w": 0.031}, {"d": "VA House District 4", "rep": "Charniele Herring", "w": 0.007}], "ss": [{"d": "VA Senate District 36", "rep": "Stella Pekarsky", "w": 0.238}, {"d": "VA Senate District 38", "rep": "Jennifer Boysko", "w": 0.22}, {"d": "VA Senate District 34", "rep": "Scott Surovell", "w": 0.207}, {"d": "VA Senate District 35", "rep": "Dave Marsden", "w": 0.127}, {"d": "VA Senate District 37", "rep": "Saddam Salim", "w": 0.1}, {"d": "VA Senate District 33", "rep": "Jennifer Carroll Foy", "w": 0.089}, {"d": "VA Senate District 39", "rep": "Elizabeth Bennett-Parker", "w": 0.007}]}, "munis": [{"m": "West Falls Church", "p": [{"n": "Letty Hardi", "r": "Mayor, Falls Church, VA"}]}], "slug": "fairfax"}, "51061": {"county": [], "districts": {"cd": [{"d": "VA-10", "rep": "Suhas Subramanyam", "w": 0.996}], "sh": [{"d": "VA House District 61", "rep": "Mike Webert", "w": 0.569}, {"d": "VA House District 30", "rep": "John McAuliff", "w": 0.431}], "ss": [{"d": "VA Senate District 31", "rep": "Russet Perry", "w": 0.561}, {"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 0.439}]}, "munis": [], "slug": "fauquier"}, "51063": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 47", "rep": "Wren Williams", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [], "slug": "floyd"}, "51065": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 56", "rep": "Tom Garrett", "w": 1.0}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "fluvanna"}, "51067": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 39", "rep": "Will Davis", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [], "slug": "franklin"}, "51069": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.999}], "sh": [{"d": "VA House District 32", "rep": "Bill Wiley", "w": 0.823}, {"d": "VA House District 31", "rep": "Delores Oates", "w": 0.176}], "ss": [{"d": "VA Senate District 1", "rep": "Timmy French", "w": 0.999}]}, "munis": [], "slug": "frederick"}, "51071": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 42", "rep": "Jason Ballard", "w": 0.999}], "ss": [{"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 0.999}]}, "munis": [], "slug": "giles"}, "51073": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.879}], "sh": [{"d": "VA House District 68", "rep": "Keith Hodges", "w": 0.832}, {"d": "VA House District 69", "rep": "Mark Downey", "w": 0.03}], "ss": [{"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.862}]}, "munis": [], "slug": "gloucester"}, "51075": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.998}], "sh": [{"d": "VA House District 56", "rep": "Tom Garrett", "w": 0.826}, {"d": "VA House District 57", "rep": "May Nivar", "w": 0.173}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "goochland"}, "51077": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 46", "rep": "Mitchell Cornett", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [], "slug": "grayson"}, "51079": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.988}, {"d": "VA-06", "rep": "Ben Cline", "w": 0.01}], "sh": [{"d": "VA House District 62", "rep": "Karen Hamilton", "w": 1.0}], "ss": [{"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 1.0}]}, "munis": [], "slug": "greene"}, "51081": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 1.0}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 0.999}]}, "munis": [], "slug": "greensville"}, "51083": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 50", "rep": "Tommy Wright", "w": 0.524}, {"d": "VA House District 49", "rep": "Madison Whittle", "w": 0.476}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [], "slug": "halifax"}, "51085": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.514}, {"d": "VA-05", "rep": "John J. McGuire III", "w": 0.479}, {"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.006}], "sh": [{"d": "VA House District 59", "rep": "Buddy Fowler", "w": 0.62}, {"d": "VA House District 60", "rep": "Scott Wyatt", "w": 0.38}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 0.669}, {"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.331}]}, "munis": [], "slug": "hanover"}, "51087": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.697}, {"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.302}], "sh": [{"d": "VA House District 81", "rep": "Delores McQuinn", "w": 0.543}, {"d": "VA House District 80", "rep": "Destiny LeVere Bolling", "w": 0.162}, {"d": "VA House District 58", "rep": "Rod Willett", "w": 0.132}, {"d": "VA House District 57", "rep": "May Nivar", "w": 0.109}, {"d": "VA House District 59", "rep": "Buddy Fowler", "w": 0.053}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 0.557}, {"d": "VA Senate District 16", "rep": "Schuyler VanValkenburg", "w": 0.348}, {"d": "VA Senate District 14", "rep": "Lamont Bagby", "w": 0.094}]}, "munis": [], "slug": "henrico"}, "51089": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 48", "rep": "Eric Phillips", "w": 0.694}, {"d": "VA House District 47", "rep": "Wren Williams", "w": 0.305}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [], "slug": "henry"}, "51091": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.999}], "sh": [{"d": "VA House District 35", "rep": "Chris Runion", "w": 1.0}], "ss": [{"d": "VA Senate District 2", "rep": "Mark Obenshain", "w": 1.0}]}, "munis": [], "slug": "highland"}, "51093": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.892}], "sh": [{"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 0.489}, {"d": "VA House District 84", "rep": "Nadarius Clark", "w": 0.399}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 0.889}]}, "munis": [], "slug": "isle-of-wight"}, "51095": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.868}], "sh": [{"d": "VA House District 71", "rep": "Jessica Anderson", "w": 0.703}, {"d": "VA House District 69", "rep": "Mark Downey", "w": 0.169}], "ss": [{"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.823}, {"d": "VA Senate District 24", "rep": "Danny Diggs", "w": 0.049}]}, "munis": [], "slug": "james-city"}, "51097": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 1.0}], "sh": [{"d": "VA House District 68", "rep": "Keith Hodges", "w": 1.0}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.879}, {"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.121}]}, "munis": [], "slug": "king-and-queen"}, "51099": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.994}], "sh": [{"d": "VA House District 67", "rep": "Hillary Pugh Kent", "w": 0.991}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.991}]}, "munis": [], "slug": "king-george"}, "51101": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.999}], "sh": [{"d": "VA House District 68", "rep": "Keith Hodges", "w": 0.999}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.999}]}, "munis": [], "slug": "king-william"}, "51103": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.64}], "sh": [{"d": "VA House District 67", "rep": "Hillary Pugh Kent", "w": 0.62}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.62}]}, "munis": [], "slug": "lancaster"}, "51105": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.998}], "sh": [{"d": "VA House District 45", "rep": "Terry Kilgore", "w": 0.999}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 0.999}]}, "munis": [], "slug": "lee"}, "51107": {"county": [], "districts": {"cd": [{"d": "VA-10", "rep": "Suhas Subramanyam", "w": 0.999}], "sh": [{"d": "VA House District 30", "rep": "John McAuliff", "w": 0.727}, {"d": "VA House District 29", "rep": "Marty Martinez", "w": 0.092}, {"d": "VA House District 27", "rep": "Atoosa Reaser", "w": 0.073}, {"d": "VA House District 28", "rep": "David Reid", "w": 0.054}, {"d": "VA House District 26", "rep": "J.J. Singh", "w": 0.053}], "ss": [{"d": "VA Senate District 31", "rep": "Russet Perry", "w": 0.824}, {"d": "VA Senate District 32", "rep": "Kannan Srinivasan", "w": 0.175}]}, "munis": [], "slug": "loudoun"}, "51109": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.997}], "sh": [{"d": "VA House District 59", "rep": "Buddy Fowler", "w": 0.778}, {"d": "VA House District 55", "rep": "Amy Laufer", "w": 0.222}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 0.778}, {"d": "VA Senate District 11", "rep": "Creigh Deeds", "w": 0.222}]}, "munis": [], "slug": "louisa"}, "51111": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 50", "rep": "Tommy Wright", "w": 1.0}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [], "slug": "lunenburg"}, "51113": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.998}], "sh": [{"d": "VA House District 62", "rep": "Karen Hamilton", "w": 1.0}], "ss": [{"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 1.0}]}, "munis": [], "slug": "madison"}, "51115": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.41}], "sh": [{"d": "VA House District 68", "rep": "Keith Hodges", "w": 0.389}], "ss": [{"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.389}]}, "munis": [], "slug": "mathews"}, "51117": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 50", "rep": "Tommy Wright", "w": 1.0}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [], "slug": "mecklenburg"}, "51119": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.67}], "sh": [{"d": "VA House District 68", "rep": "Keith Hodges", "w": 0.662}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.662}]}, "munis": [], "slug": "middlesex"}, "51121": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 41", "rep": "Lily Franklin", "w": 0.839}, {"d": "VA House District 42", "rep": "Jason Ballard", "w": 0.161}], "ss": [{"d": "VA Senate District 4", "rep": "David Suetterlein", "w": 0.591}, {"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 0.409}]}, "munis": [], "slug": "montgomery"}, "51125": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.997}], "sh": [{"d": "VA House District 53", "rep": "Tim Griffin", "w": 0.718}, {"d": "VA House District 55", "rep": "Amy Laufer", "w": 0.282}], "ss": [{"d": "VA Senate District 11", "rep": "Creigh Deeds", "w": 1.0}]}, "munis": [], "slug": "nelson"}, "51127": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.994}, {"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.006}], "sh": [{"d": "VA House District 71", "rep": "Jessica Anderson", "w": 0.594}, {"d": "VA House District 60", "rep": "Scott Wyatt", "w": 0.405}], "ss": [{"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.999}]}, "munis": [], "slug": "new-kent"}, "51131": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.438}], "sh": [{"d": "VA House District 100", "rep": "Rob Bloxom", "w": 0.433}], "ss": [{"d": "VA Senate District 20", "rep": "Bill DeSteph", "w": 0.433}]}, "munis": [], "slug": "northampton"}, "51133": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.761}], "sh": [{"d": "VA House District 67", "rep": "Hillary Pugh Kent", "w": 0.742}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.742}]}, "munis": [], "slug": "northumberland"}, "51135": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.998}], "sh": [{"d": "VA House District 72", "rep": "Lee Ware", "w": 1.0}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [], "slug": "nottoway"}, "51137": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.998}], "sh": [{"d": "VA House District 62", "rep": "Karen Hamilton", "w": 0.543}, {"d": "VA House District 63", "rep": "Phil Scott", "w": 0.457}], "ss": [{"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 1.0}]}, "munis": [], "slug": "orange"}, "51139": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.995}], "sh": [{"d": "VA House District 33", "rep": "Justin Pence", "w": 1.0}], "ss": [{"d": "VA Senate District 2", "rep": "Mark Obenshain", "w": 1.0}]}, "munis": [], "slug": "page"}, "51141": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 47", "rep": "Wren Williams", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [], "slug": "patrick"}, "51143": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.999}], "sh": [{"d": "VA House District 48", "rep": "Eric Phillips", "w": 0.774}, {"d": "VA House District 49", "rep": "Madison Whittle", "w": 0.193}, {"d": "VA House District 51", "rep": "Eric Zehr", "w": 0.033}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [], "slug": "pittsylvania"}, "51145": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 0.998}], "sh": [{"d": "VA House District 72", "rep": "Lee Ware", "w": 1.0}], "ss": [{"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 1.0}]}, "munis": [], "slug": "powhatan"}, "51147": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 50", "rep": "Tommy Wright", "w": 0.817}, {"d": "VA House District 56", "rep": "Tom Garrett", "w": 0.183}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 0.76}, {"d": "VA Senate District 10", "rep": "Luther Cifers", "w": 0.24}]}, "munis": [], "slug": "prince-edward"}, "51149": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 82", "rep": "Kim Adams", "w": 0.872}, {"d": "VA House District 75", "rep": "Lindsey Dougherty", "w": 0.128}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 1.0}]}, "munis": [], "slug": "prince-george"}, "51153": {"county": [], "districts": {"cd": [{"d": "VA-10", "rep": "Suhas Subramanyam", "w": 0.603}, {"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.395}], "sh": [{"d": "VA House District 22", "rep": "Liz Guzmán", "w": 0.298}, {"d": "VA House District 21", "rep": "Josh Thomas", "w": 0.248}, {"d": "VA House District 23", "rep": "Margaret Franklin", "w": 0.219}, {"d": "VA House District 25", "rep": "Briana Sewell", "w": 0.095}, {"d": "VA House District 24", "rep": "Luke Torian", "w": 0.07}, {"d": "VA House District 19", "rep": "J.R. Henson", "w": 0.037}], "ss": [{"d": "VA Senate District 29", "rep": "Jeremy McPike", "w": 0.553}, {"d": "VA Senate District 30", "rep": "Danica Roem", "w": 0.316}, {"d": "VA Senate District 33", "rep": "Jennifer Carroll Foy", "w": 0.117}]}, "munis": [], "slug": "prince-william"}, "51155": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 42", "rep": "Jason Ballard", "w": 0.79}, {"d": "VA House District 46", "rep": "Mitchell Cornett", "w": 0.209}], "ss": [{"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 1.0}]}, "munis": [], "slug": "pulaski"}, "51157": {"county": [], "districts": {"cd": [{"d": "VA-10", "rep": "Suhas Subramanyam", "w": 0.992}], "sh": [{"d": "VA House District 61", "rep": "Mike Webert", "w": 1.0}], "ss": [{"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 1.0}]}, "munis": [], "slug": "rappahannock"}, "51159": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.908}], "sh": [{"d": "VA House District 67", "rep": "Hillary Pugh Kent", "w": 0.902}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.902}]}, "munis": [], "slug": "richmond"}, "51161": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.652}, {"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.348}], "sh": [{"d": "VA House District 41", "rep": "Lily Franklin", "w": 0.653}, {"d": "VA House District 39", "rep": "Will Davis", "w": 0.211}, {"d": "VA House District 40", "rep": "Joe McNamara", "w": 0.135}], "ss": [{"d": "VA Senate District 4", "rep": "David Suetterlein", "w": 0.504}, {"d": "VA Senate District 3", "rep": "Chris Head", "w": 0.496}]}, "munis": [], "slug": "roanoke"}, "51163": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.997}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 0.685}, {"d": "VA House District 36", "rep": "Ellen McLaughlin", "w": 0.315}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [{"m": "East Lexington", "p": [{"n": "Frank W. Friedman", "r": "Mayor, Lexington, VA"}]}], "slug": "rockbridge"}, "51165": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.999}], "sh": [{"d": "VA House District 34", "rep": "Tony Wilt", "w": 0.364}, {"d": "VA House District 35", "rep": "Chris Runion", "w": 0.337}, {"d": "VA House District 33", "rep": "Justin Pence", "w": 0.298}], "ss": [{"d": "VA Senate District 2", "rep": "Mark Obenshain", "w": 1.0}]}, "munis": [], "slug": "rockingham"}, "51167": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 44", "rep": "Israel O'Quinn", "w": 0.624}, {"d": "VA House District 43", "rep": "Will Morefield", "w": 0.376}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 1.0}]}, "munis": [], "slug": "russell"}, "51169": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 45", "rep": "Terry Kilgore", "w": 1.0}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 1.0}]}, "munis": [], "slug": "scott"}, "51171": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 33", "rep": "Justin Pence", "w": 1.0}], "ss": [{"d": "VA Senate District 1", "rep": "Timmy French", "w": 1.0}]}, "munis": [], "slug": "shenandoah"}, "51173": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 46", "rep": "Mitchell Cornett", "w": 1.0}], "ss": [{"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 1.0}]}, "munis": [], "slug": "smyth"}, "51175": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.62}, {"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.38}], "sh": [{"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 1.0}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 1.0}]}, "munis": [], "slug": "southampton"}, "51177": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.998}], "sh": [{"d": "VA House District 63", "rep": "Phil Scott", "w": 0.556}, {"d": "VA House District 66", "rep": "Nicole Cole", "w": 0.429}, {"d": "VA House District 65", "rep": "Josh Cole", "w": 0.015}], "ss": [{"d": "VA Senate District 28", "rep": "Bryce Reeves", "w": 0.472}, {"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.403}, {"d": "VA Senate District 27", "rep": "Tara Durant", "w": 0.124}]}, "munis": [], "slug": "spotsylvania"}, "51179": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 0.997}], "sh": [{"d": "VA House District 64", "rep": "Stacey Carroll", "w": 0.498}, {"d": "VA House District 23", "rep": "Margaret Franklin", "w": 0.265}, {"d": "VA House District 65", "rep": "Josh Cole", "w": 0.233}], "ss": [{"d": "VA Senate District 27", "rep": "Tara Durant", "w": 0.724}, {"d": "VA Senate District 29", "rep": "Jeremy McPike", "w": 0.271}]}, "munis": [], "slug": "stafford"}, "51181": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.91}], "sh": [{"d": "VA House District 82", "rep": "Kim Adams", "w": 0.912}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 0.913}]}, "munis": [], "slug": "surry"}, "51183": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 1.0}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 1.0}]}, "munis": [], "slug": "sussex"}, "51185": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 43", "rep": "Will Morefield", "w": 0.999}], "ss": [{"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 0.999}]}, "munis": [], "slug": "tazewell"}, "51187": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.996}], "sh": [{"d": "VA House District 31", "rep": "Delores Oates", "w": 0.727}, {"d": "VA House District 33", "rep": "Justin Pence", "w": 0.273}], "ss": [{"d": "VA Senate District 1", "rep": "Timmy French", "w": 1.0}]}, "munis": [], "slug": "warren"}, "51191": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 44", "rep": "Israel O'Quinn", "w": 1.0}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 1.0}]}, "munis": [], "slug": "washington"}, "51193": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.992}], "sh": [{"d": "VA House District 67", "rep": "Hillary Pugh Kent", "w": 0.963}], "ss": [{"d": "VA Senate District 25", "rep": "Richard Stuart", "w": 0.963}]}, "munis": [], "slug": "westmoreland"}, "51195": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 45", "rep": "Terry Kilgore", "w": 0.999}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 0.999}]}, "munis": [{"m": "The University Of Virginia S College At Wise", "p": [{"n": "Will Sessoms", "r": "Mayor, Virginia Beach, VA"}]}], "slug": "wise"}, "51197": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 46", "rep": "Mitchell Cornett", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 0.622}, {"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 0.378}]}, "munis": [], "slug": "wythe"}, "51199": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.584}], "sh": [{"d": "VA House District 69", "rep": "Mark Downey", "w": 0.541}, {"d": "VA House District 86", "rep": "Virgil Thornton", "w": 0.039}], "ss": [{"d": "VA Senate District 24", "rep": "Danny Diggs", "w": 0.58}]}, "munis": [], "slug": "york"}, "51510": {"county": [], "districts": {"cd": [{"d": "VA-08", "rep": "Donald S. Beyer, Jr.", "w": 0.999}], "sh": [{"d": "VA House District 5", "rep": "Kirk McPike", "w": 0.58}, {"d": "VA House District 4", "rep": "Charniele Herring", "w": 0.224}, {"d": "VA House District 3", "rep": "Alfonso Lopez", "w": 0.193}], "ss": [{"d": "VA Senate District 39", "rep": "Elizabeth Bennett-Parker", "w": 0.998}]}, "munis": [{"m": "Alexandria", "p": [{"n": "Justin Wilson", "r": "Mayor, Alexandria, VA"}]}], "slug": "alexandria-city"}, "51520": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 0.999}], "sh": [{"d": "VA House District 44", "rep": "Israel O'Quinn", "w": 0.999}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 0.999}]}, "munis": [{"m": "Bristol", "p": [{"n": "Becky Nave", "r": "Mayor, Bristol, VA"}]}], "slug": "bristol-city"}, "51530": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 1.0}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [{"m": "Buena Vista", "p": [{"n": "Tyson Cooper", "r": "Mayor, Buena Vista, VA"}]}], "slug": "buena-vista-city"}, "51540": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 54", "rep": "Katrina Callsen", "w": 1.0}], "ss": [{"d": "VA Senate District 11", "rep": "Creigh Deeds", "w": 1.0}]}, "munis": [{"m": "Charlottesville", "p": [{"n": "Lloyd Snook", "r": "Mayor, Charlottesville, VA"}]}], "slug": "charlottesville-city"}, "51550": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.862}, {"d": "VA-03", "rep": "Robert C. \"Bobby\" Scott", "w": 0.138}], "sh": [{"d": "VA House District 90", "rep": "Jay Leftwich", "w": 0.532}, {"d": "VA House District 89", "rep": "Kacey Carnegie", "w": 0.347}, {"d": "VA House District 91", "rep": "Cliff Hayes", "w": 0.103}, {"d": "VA House District 92", "rep": "Bonita Anthony", "w": 0.017}], "ss": [{"d": "VA Senate District 19", "rep": "Christie Craig", "w": 0.805}, {"d": "VA Senate District 18", "rep": "Louise Lucas", "w": 0.194}]}, "munis": [{"m": "Chesapeake", "p": [{"n": "Rick West", "r": "Mayor, Chesapeake, VA"}]}], "slug": "chesapeake-city"}, "51570": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 74", "rep": "Mike Cherry", "w": 0.996}], "ss": [{"d": "VA Senate District 12", "rep": "Glen Sturtevant", "w": 0.996}]}, "munis": [{"m": "Colonial Heights", "p": [{"n": "T. Gregory Kochuba", "r": "Mayor, Colonial Heights, VA"}]}], "slug": "colonial-heights-city"}, "51580": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 1.0}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [{"m": "Covington", "p": [{"n": "Tom H. Sibold Jr.", "r": "Mayor, Covington, VA"}]}], "slug": "covington-city"}, "51590": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 49", "rep": "Madison Whittle", "w": 0.999}], "ss": [{"d": "VA Senate District 9", "rep": "Tammy Mulchi", "w": 1.0}]}, "munis": [{"m": "Danville", "p": [{"n": "Alonzo Jones", "r": "Mayor, Danville, VA"}]}], "slug": "danville-city"}, "51595": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 83", "rep": "Otto Wachsmann", "w": 1.0}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 1.0}]}, "munis": [{"m": "Emporia", "p": [{"n": "Carolyn Carey", "r": "Mayor, Emporia, VA"}]}], "slug": "emporia-city"}, "51600": {"county": [], "districts": {"cd": [{"d": "VA-11", "rep": "James R. Walkinshaw", "w": 1.0}], "sh": [{"d": "VA House District 11", "rep": "Gretchen Bulova", "w": 0.999}], "ss": [{"d": "VA Senate District 37", "rep": "Saddam Salim", "w": 0.998}]}, "munis": [{"m": "Fairfax", "p": [{"n": "Catherine S. Read", "r": "Mayor, Fairfax, VA"}]}], "slug": "fairfax-city"}, "51610": {"county": [], "districts": {"cd": [{"d": "VA-08", "rep": "Donald S. Beyer, Jr.", "w": 1.0}], "sh": [{"d": "VA House District 13", "rep": "Marcus Simon", "w": 1.0}], "ss": [{"d": "VA Senate District 37", "rep": "Saddam Salim", "w": 1.0}]}, "munis": [], "slug": "falls-church-city"}, "51620": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 1.0}], "sh": [{"d": "VA House District 84", "rep": "Nadarius Clark", "w": 0.998}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 1.0}]}, "munis": [{"m": "Franklin", "p": [{"n": "Robert \"Bobby\" Cutchins", "r": "Mayor, Franklin, VA"}]}], "slug": "franklin-city"}, "51630": {"county": [], "districts": {"cd": [{"d": "VA-07", "rep": "Eugene Simon Vindman", "w": 1.0}], "sh": [{"d": "VA House District 65", "rep": "Josh Cole", "w": 0.997}], "ss": [{"d": "VA Senate District 27", "rep": "Tara Durant", "w": 0.998}]}, "munis": [{"m": "Fredericksburg", "p": [{"n": "Kerry P. Devine", "r": "Mayor, Fredericksburg, VA"}]}], "slug": "fredericksburg-city"}, "51640": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 47", "rep": "Wren Williams", "w": 0.999}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [{"m": "Galax", "p": [{"n": "Willie Greene", "r": "Mayor, Galax, VA"}]}], "slug": "galax-city"}, "51650": {"county": [], "districts": {"cd": [{"d": "VA-03", "rep": "Robert C. \"Bobby\" Scott", "w": 0.427}], "sh": [{"d": "VA House District 87", "rep": "Jeion Ward", "w": 0.215}, {"d": "VA House District 86", "rep": "Virgil Thornton", "w": 0.214}], "ss": [{"d": "VA Senate District 23", "rep": "Mamie Locke", "w": 0.429}]}, "munis": [{"m": "Hampton", "p": [{"n": "Donnie Tuck", "r": "Mayor, Hampton, VA"}]}], "slug": "hampton-city"}, "51660": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 34", "rep": "Tony Wilt", "w": 0.999}], "ss": [{"d": "VA Senate District 2", "rep": "Mark Obenshain", "w": 1.0}]}, "munis": [{"m": "Harrisonburg", "p": [{"n": "Deanna R. Reed", "r": "Mayor, Harrisonburg, VA"}]}], "slug": "harrisonburg-city"}, "51670": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 75", "rep": "Lindsey Dougherty", "w": 1.0}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 0.999}]}, "munis": [{"m": "Hopewell", "p": [{"n": "Patience Bennett", "r": "Mayor, Hopewell, VA"}]}], "slug": "hopewell-city"}, "51678": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 37", "rep": "Terry Austin", "w": 0.996}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 1.0}]}, "munis": [], "slug": "lexington-city"}, "51680": {"county": [], "districts": {"cd": [{"d": "VA-05", "rep": "John J. McGuire III", "w": 1.0}], "sh": [{"d": "VA House District 52", "rep": "Wendell Walker", "w": 0.999}], "ss": [{"d": "VA Senate District 8", "rep": "Mark Peake", "w": 1.0}]}, "munis": [{"m": "Lynchburg", "p": [{"n": "Larry Taylor", "r": "Mayor, Lynchburg, VA"}]}], "slug": "lynchburg-city"}, "51683": {"county": [], "districts": {"cd": [{"d": "VA-10", "rep": "Suhas Subramanyam", "w": 1.0}], "sh": [], "ss": [{"d": "VA Senate District 30", "rep": "Danica Roem", "w": 0.996}]}, "munis": [], "slug": "manassas-city"}, "51685": {"county": [], "districts": {"cd": [{"d": "VA-10", "rep": "Suhas Subramanyam", "w": 1.0}], "sh": [], "ss": [{"d": "VA Senate District 30", "rep": "Danica Roem", "w": 0.991}, {"d": "VA Senate District 29", "rep": "Jeremy McPike", "w": 0.009}]}, "munis": [{"m": "Manassas Park", "p": [{"n": "Jeanette Rishell", "r": "Mayor, Manassas Park, VA"}, {"n": "Michelle Davis-Younger", "r": "Mayor, Manassas, VA"}]}], "slug": "manassas-park-city"}, "51690": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 48", "rep": "Eric Phillips", "w": 1.0}], "ss": [{"d": "VA Senate District 7", "rep": "Bill Stanley", "w": 1.0}]}, "munis": [{"m": "Martinsville", "p": [{"n": "LC Jones", "r": "Mayor, Martinsville, VA"}]}], "slug": "martinsville-city"}, "51700": {"county": [], "districts": {"cd": [{"d": "VA-03", "rep": "Robert C. \"Bobby\" Scott", "w": 0.6}], "sh": [{"d": "VA House District 70", "rep": "Shelly Simonds", "w": 0.239}, {"d": "VA House District 85", "rep": "Cia Price", "w": 0.217}, {"d": "VA House District 69", "rep": "Mark Downey", "w": 0.13}], "ss": [{"d": "VA Senate District 24", "rep": "Danny Diggs", "w": 0.402}, {"d": "VA Senate District 23", "rep": "Mamie Locke", "w": 0.185}]}, "munis": [{"m": "Newport News", "p": [{"n": "McKinley L. Price", "r": "Mayor, Newport News, VA"}]}], "slug": "newport-news-city"}, "51710": {"county": [], "districts": {"cd": [{"d": "VA-03", "rep": "Robert C. \"Bobby\" Scott", "w": 0.639}, {"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.005}], "sh": [{"d": "VA House District 94", "rep": "Phil Hernandez", "w": 0.222}, {"d": "VA House District 93", "rep": "Jackie Glass", "w": 0.219}, {"d": "VA House District 92", "rep": "Bonita Anthony", "w": 0.135}, {"d": "VA House District 95", "rep": "Alex Askew", "w": 0.044}], "ss": [{"d": "VA Senate District 21", "rep": "Angelia Graves", "w": 0.569}, {"d": "VA Senate District 20", "rep": "Bill DeSteph", "w": 0.051}]}, "munis": [], "slug": "norfolk-city"}, "51720": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 45", "rep": "Terry Kilgore", "w": 1.0}], "ss": [{"d": "VA Senate District 6", "rep": "Todd Pillion", "w": 1.0}]}, "munis": [], "slug": "norton-city"}, "51730": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 1.0}], "sh": [{"d": "VA House District 82", "rep": "Kim Adams", "w": 0.998}], "ss": [{"d": "VA Senate District 13", "rep": "Lashrecse Aird", "w": 0.999}]}, "munis": [{"m": "Petersburg", "p": [{"n": "Samuel Parham", "r": "Mayor, Petersburg, VA"}]}], "slug": "petersburg-city"}, "51735": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.259}], "sh": [{"d": "VA House District 86", "rep": "Virgil Thornton", "w": 0.25}], "ss": [{"d": "VA Senate District 24", "rep": "Danny Diggs", "w": 0.25}]}, "munis": [{"m": "Poquoson", "p": [{"n": "David A. Hux", "r": "Mayor, Poquoson, VA"}]}], "slug": "poquoson-city"}, "51740": {"county": [], "districts": {"cd": [{"d": "VA-03", "rep": "Robert C. \"Bobby\" Scott", "w": 0.841}], "sh": [{"d": "VA House District 88", "rep": "Don Scott", "w": 0.685}, {"d": "VA House District 91", "rep": "Cliff Hayes", "w": 0.077}], "ss": [{"d": "VA Senate District 18", "rep": "Louise Lucas", "w": 0.496}, {"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 0.266}]}, "munis": [{"m": "Portsmouth", "p": [{"n": "Shannon E. Glover", "r": "Mayor, Portsmouth, VA"}]}], "slug": "portsmouth-city"}, "51750": {"county": [], "districts": {"cd": [{"d": "VA-09", "rep": "H. Morgan Griffith", "w": 1.0}], "sh": [{"d": "VA House District 42", "rep": "Jason Ballard", "w": 0.997}], "ss": [{"d": "VA Senate District 5", "rep": "Travis Hackworth", "w": 1.0}]}, "munis": [{"m": "Radford", "p": [{"n": "David Horton", "r": "Mayor, Radford, VA"}]}], "slug": "radford-city"}, "51760": {"county": [], "districts": {"cd": [{"d": "VA-04", "rep": "Jennifer L. McClellan", "w": 0.991}, {"d": "VA-01", "rep": "Robert J. Wittman", "w": 0.009}], "sh": [{"d": "VA House District 78", "rep": "Betsy Carr", "w": 0.397}, {"d": "VA House District 79", "rep": "Rae Cousins", "w": 0.369}, {"d": "VA House District 77", "rep": "Charlie Schmidt", "w": 0.232}], "ss": [{"d": "VA Senate District 14", "rep": "Lamont Bagby", "w": 0.713}, {"d": "VA Senate District 15", "rep": "Mike Jones", "w": 0.286}]}, "munis": [{"m": "Richmond", "p": [{"n": "Danny Avula", "r": "Mayor, Richmond, VA"}]}], "slug": "richmond-city"}, "51770": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.996}], "sh": [{"d": "VA House District 38", "rep": "Sam Rasoul", "w": 0.867}, {"d": "VA House District 40", "rep": "Joe McNamara", "w": 0.132}], "ss": [{"d": "VA Senate District 4", "rep": "David Suetterlein", "w": 1.0}]}, "munis": [{"m": "Roanoke", "p": [{"n": "Sherman Lea", "r": "Mayor, Roanoke, VA"}]}], "slug": "roanoke-city"}, "51775": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 0.995}], "sh": [{"d": "VA House District 40", "rep": "Joe McNamara", "w": 1.0}], "ss": [{"d": "VA Senate District 4", "rep": "David Suetterlein", "w": 0.998}]}, "munis": [{"m": "Salem", "p": [{"n": "Renée Ferris Turk", "r": "Mayor, Salem, VA"}]}], "slug": "salem-city"}, "51790": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 36", "rep": "Ellen McLaughlin", "w": 0.999}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 0.999}]}, "munis": [{"m": "Staunton", "p": [{"n": "Michele Edwards", "r": "Mayor, Staunton, VA"}]}], "slug": "staunton-city"}, "51800": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.972}], "sh": [{"d": "VA House District 89", "rep": "Kacey Carnegie", "w": 0.712}, {"d": "VA House District 84", "rep": "Nadarius Clark", "w": 0.258}], "ss": [{"d": "VA Senate District 17", "rep": "Emily Jordan", "w": 0.97}]}, "munis": [{"m": "Suffolk", "p": [{"n": "Michael Duman", "r": "Mayor, Suffolk, VA"}]}], "slug": "suffolk-city"}, "51810": {"county": [], "districts": {"cd": [{"d": "VA-02", "rep": "Jennifer A. Kiggans", "w": 0.615}], "sh": [{"d": "VA House District 98", "rep": "Andrew Rice", "w": 0.399}, {"d": "VA House District 99", "rep": "Anne Ferrell Tata", "w": 0.081}, {"d": "VA House District 97", "rep": "Michael Feggans", "w": 0.04}, {"d": "VA House District 100", "rep": "Rob Bloxom", "w": 0.035}, {"d": "VA House District 95", "rep": "Alex Askew", "w": 0.031}, {"d": "VA House District 96", "rep": "Kelly Fowler", "w": 0.031}], "ss": [{"d": "VA Senate District 19", "rep": "Christie Craig", "w": 0.408}, {"d": "VA Senate District 20", "rep": "Bill DeSteph", "w": 0.124}, {"d": "VA Senate District 22", "rep": "Aaron Rouse", "w": 0.084}]}, "munis": [], "slug": "virginia-beach-city"}, "51820": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 36", "rep": "Ellen McLaughlin", "w": 0.998}], "ss": [{"d": "VA Senate District 3", "rep": "Chris Head", "w": 0.998}]}, "munis": [{"m": "Waynesboro", "p": [{"n": "Kenny Lee", "r": "Mayor, Waynesboro, VA"}]}], "slug": "waynesboro-city"}, "51830": {"county": [], "districts": {"cd": [{"d": "VA-01", "rep": "Robert J. Wittman", "w": 1.0}], "sh": [{"d": "VA House District 71", "rep": "Jessica Anderson", "w": 0.996}], "ss": [{"d": "VA Senate District 24", "rep": "Danny Diggs", "w": 0.995}, {"d": "VA Senate District 26", "rep": "Ryan McDougle", "w": 0.005}]}, "munis": [{"m": "Williamsburg", "p": [{"n": "Douglas G. Pons", "r": "Mayor, Williamsburg, VA"}]}], "slug": "williamsburg-city"}, "51840": {"county": [], "districts": {"cd": [{"d": "VA-06", "rep": "Ben Cline", "w": 1.0}], "sh": [{"d": "VA House District 32", "rep": "Bill Wiley", "w": 0.999}], "ss": [{"d": "VA Senate District 1", "rep": "Timmy French", "w": 1.0}]}, "munis": [{"m": "Winchester", "p": [{"n": "John David Smith, Jr.", "r": "Mayor, Winchester, VA"}]}], "slug": "winchester-city"}, "53001": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 0.929}, {"d": "WA-04", "rep": "Dan Newhouse", "w": 0.071}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 0.932}, {"d": "WA House District 13", "rep": "Alex Ybarra, Tom Dent", "w": 0.068}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 0.932}, {"d": "WA Senate District 13", "rep": "Judy Warnick", "w": 0.068}]}, "munis": [{"m": "Othello", "p": [{"n": "Shawn Logan", "r": "Mayor, Othello, WA"}]}], "slug": "adams"}, "53003": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 0.999}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 1.0}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 1.0}]}, "munis": [{"m": "Clarkston", "p": [{"n": "Monika Lawrence", "r": "Mayor, Clarkston, WA"}]}], "slug": "asotin"}, "53005": {"county": [], "districts": {"cd": [{"d": "WA-04", "rep": "Dan Newhouse", "w": 0.999}], "sh": [{"d": "WA House District 16", "rep": "Mark Klicker, Skyler Rude", "w": 0.354}, {"d": "WA House District 8", "rep": "April Connors, Stephanie Barnard", "w": 0.289}, {"d": "WA House District 14", "rep": "Deb Manjarrez, Gloria Mendoza", "w": 0.246}, {"d": "WA House District 15", "rep": "Chris Corry, Jeremie Dufault", "w": 0.111}], "ss": [{"d": "WA Senate District 16", "rep": "Perry Dozier", "w": 0.354}, {"d": "WA Senate District 8", "rep": "Matt Boehnke", "w": 0.289}, {"d": "WA Senate District 14", "rep": "Curtis King", "w": 0.246}, {"d": "WA Senate District 15", "rep": "Nikki Torres", "w": 0.111}]}, "munis": [{"m": "Richland", "p": [{"n": "Theresa Richardson", "r": "Mayor, Richland, WA"}]}], "slug": "benton"}, "53007": {"county": [], "districts": {"cd": [{"d": "WA-08", "rep": "Kim Schrier", "w": 0.998}], "sh": [{"d": "WA House District 12", "rep": "Brian Burnett, Mike Steele", "w": 0.999}], "ss": [{"d": "WA Senate District 12", "rep": "Keith Goehner", "w": 0.999}]}, "munis": [{"m": "Chelan", "p": [{"n": "Erin McCardle", "r": "Mayor, Chelan, WA"}]}, {"m": "Leavenworth", "p": [{"n": "Carl Florea", "r": "Mayor, Leavenworth, WA"}]}, {"m": "Wenatchee", "p": [{"n": "Mike Poirier", "r": "Mayor, Wenatchee, WA"}]}], "slug": "chelan"}, "53009": {"county": [], "districts": {"cd": [{"d": "WA-06", "rep": "Emily Randall", "w": 0.663}], "sh": [{"d": "WA House District 24", "rep": "Adam Bernbaum, Steve Tharinger", "w": 0.662}], "ss": [{"d": "WA Senate District 24", "rep": "Mike Chapman", "w": 0.662}]}, "munis": [{"m": "Forks", "p": [{"n": "Tim Fletcher", "r": "Mayor, Forks, WA"}]}, {"m": "Port Angeles", "p": [{"n": "Kate Dexter", "r": "Mayor, Port Angeles, WA"}]}], "slug": "clallam"}, "53011": {"county": [], "districts": {"cd": [{"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 1.0}], "sh": [{"d": "WA House District 20", "rep": "Ed Orcutt, Peter Abbarno", "w": 0.573}, {"d": "WA House District 17", "rep": "Dave Stuebe, Kevin Waters", "w": 0.215}, {"d": "WA House District 18", "rep": "John Ley, Stephanie McClintock", "w": 0.125}, {"d": "WA House District 49", "rep": "Monica Stonier, Sharon Wylie", "w": 0.086}], "ss": [{"d": "WA Senate District 20", "rep": "John Braun", "w": 0.573}, {"d": "WA Senate District 17", "rep": "Paul Harris", "w": 0.215}, {"d": "WA Senate District 18", "rep": "Adrian Cortes", "w": 0.125}, {"d": "WA Senate District 49", "rep": "Annette Cleveland", "w": 0.086}]}, "munis": [{"m": "Battle Ground", "p": [{"n": "Troy McCoy", "r": "Mayor, Battle Ground, WA"}]}, {"m": "Camas", "p": [{"n": "Steve Hogan", "r": "Mayor, Camas, WA"}]}, {"m": "Vancouver", "p": [{"n": "Anne McEnerny-Ogle", "r": "Mayor, Vancouver, WA"}]}], "slug": "clark"}, "53013": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 1.0}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 1.0}]}, "munis": [], "slug": "columbia"}, "53015": {"county": [], "districts": {"cd": [{"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 1.0}], "sh": [{"d": "WA House District 20", "rep": "Ed Orcutt, Peter Abbarno", "w": 0.778}, {"d": "WA House District 19", "rep": "Jim Walsh, Joel McEntire", "w": 0.221}], "ss": [{"d": "WA Senate District 20", "rep": "John Braun", "w": 0.778}, {"d": "WA Senate District 19", "rep": "Jeff Wilson", "w": 0.221}]}, "munis": [{"m": "Kelso", "p": [{"n": "Veryl Anderson", "r": "Mayor, Kelso, WA"}]}, {"m": "Longview", "p": [{"n": "Spencer Boudreau", "r": "Mayor, Longview, WA"}]}], "slug": "cowlitz"}, "53017": {"county": [], "districts": {"cd": [{"d": "WA-04", "rep": "Dan Newhouse", "w": 0.998}], "sh": [{"d": "WA House District 7", "rep": "Andrew Engell, Hunter Abell", "w": 0.921}, {"d": "WA House District 13", "rep": "Alex Ybarra, Tom Dent", "w": 0.079}], "ss": [{"d": "WA Senate District 7", "rep": "Shelly Short", "w": 0.921}, {"d": "WA Senate District 13", "rep": "Judy Warnick", "w": 0.079}]}, "munis": [{"m": "Bridgeport", "p": [{"n": "Sergio Orozco", "r": "Mayor, Bridgeport, WA"}]}], "slug": "douglas"}, "53019": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 7", "rep": "Andrew Engell, Hunter Abell", "w": 1.0}], "ss": [{"d": "WA Senate District 7", "rep": "Shelly Short", "w": 1.0}]}, "munis": [], "slug": "ferry"}, "53021": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 0.899}, {"d": "WA-04", "rep": "Dan Newhouse", "w": 0.101}], "sh": [{"d": "WA House District 16", "rep": "Mark Klicker, Skyler Rude", "w": 0.983}, {"d": "WA House District 14", "rep": "Deb Manjarrez, Gloria Mendoza", "w": 0.009}, {"d": "WA House District 8", "rep": "April Connors, Stephanie Barnard", "w": 0.008}], "ss": [{"d": "WA Senate District 16", "rep": "Perry Dozier", "w": 0.983}, {"d": "WA Senate District 14", "rep": "Curtis King", "w": 0.009}, {"d": "WA Senate District 8", "rep": "Matt Boehnke", "w": 0.008}]}, "munis": [{"m": "Pasco", "p": [{"n": "Pete Serrano", "r": "Mayor, Pasco, WA"}]}], "slug": "franklin"}, "53023": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 1.0}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 1.0}]}, "munis": [], "slug": "garfield"}, "53025": {"county": [], "districts": {"cd": [{"d": "WA-04", "rep": "Dan Newhouse", "w": 1.0}], "sh": [{"d": "WA House District 13", "rep": "Alex Ybarra, Tom Dent", "w": 0.921}, {"d": "WA House District 16", "rep": "Mark Klicker, Skyler Rude", "w": 0.079}], "ss": [{"d": "WA Senate District 13", "rep": "Judy Warnick", "w": 0.921}, {"d": "WA Senate District 16", "rep": "Perry Dozier", "w": 0.079}]}, "munis": [{"m": "Electric City", "p": [{"n": "Diane Kohout", "r": "Mayor, Electric City, WA"}]}, {"m": "Ephrata", "p": [{"n": "Bruce Reim", "r": "Mayor, Ephrata, WA"}]}, {"m": "Mattawa", "p": [{"n": "Maria M. Celaya", "r": "Mayor, Mattawa, WA"}]}, {"m": "Moses Lake", "p": [{"n": "Dustin Swartz", "r": "Mayor, Moses Lake, WA"}]}, {"m": "Quincy", "p": [{"n": "Paul Worley", "r": "Mayor, Quincy, WA"}]}], "slug": "grant"}, "53027": {"county": [], "districts": {"cd": [{"d": "WA-06", "rep": "Emily Randall", "w": 0.871}], "sh": [{"d": "WA House District 24", "rep": "Adam Bernbaum, Steve Tharinger", "w": 0.613}, {"d": "WA House District 19", "rep": "Jim Walsh, Joel McEntire", "w": 0.258}], "ss": [{"d": "WA Senate District 24", "rep": "Mike Chapman", "w": 0.613}, {"d": "WA Senate District 19", "rep": "Jeff Wilson", "w": 0.258}]}, "munis": [{"m": "Aberdeen", "p": [{"n": "Douglas Orr", "r": "Mayor, Aberdeen, WA"}]}, {"m": "Hoquiam", "p": [{"n": "Ben Winkelman", "r": "Mayor, Hoquiam, WA"}]}, {"m": "Westport", "p": [{"n": "Ed Welter", "r": "Mayor, Westport, WA"}]}], "slug": "grays-harbor"}, "53029": {"county": [], "districts": {"cd": [{"d": "WA-02", "rep": "Rick Larsen", "w": 0.411}], "sh": [{"d": "WA House District 10", "rep": "Clyde Shavers, Dave Paul", "w": 0.41}], "ss": [{"d": "WA Senate District 10", "rep": "Ron Muzzall", "w": 0.41}]}, "munis": [{"m": "Oak Harbor", "p": [{"n": "Ronnie Wright", "r": "Mayor, Oak Harbor, WA"}]}], "slug": "island"}, "53031": {"county": [], "districts": {"cd": [{"d": "WA-06", "rep": "Emily Randall", "w": 0.836}], "sh": [{"d": "WA House District 24", "rep": "Adam Bernbaum, Steve Tharinger", "w": 0.834}], "ss": [{"d": "WA Senate District 24", "rep": "Mike Chapman", "w": 0.834}]}, "munis": [{"m": "Port Townsend", "p": [{"n": "David Faber", "r": "Mayor, Port Townsend, WA"}]}], "slug": "jefferson"}, "53033": {"county": [], "districts": {"cd": [{"d": "WA-08", "rep": "Kim Schrier", "w": 0.761}, {"d": "WA-09", "rep": "Adam Smith", "w": 0.087}, {"d": "WA-07", "rep": "Pramila Jayapal", "w": 0.066}, {"d": "WA-01", "rep": "Suzan K. DelBene", "w": 0.037}], "sh": [{"d": "WA House District 12", "rep": "Brian Burnett, Mike Steele", "w": 0.347}, {"d": "WA House District 5", "rep": "Lisa Callan, Zach Hall", "w": 0.334}, {"d": "WA House District 45", "rep": "Larry Springer, Roger Goodman", "w": 0.045}, {"d": "WA House District 34", "rep": "Brianna Thomas, Joe Fitzgibbon", "w": 0.029}, {"d": "WA House District 47", "rep": "Chris Stearns, Debra Entenman", "w": 0.028}, {"d": "WA House District 41", "rep": "Janice Zahn, My-Linh Thai", "w": 0.026}, {"d": "WA House District 33", "rep": "Edwin Obras, Mia Gregerson", "w": 0.02}, {"d": "WA House District 11", "rep": "David Hackney, Steve Bergquist", "w": 0.018}, {"d": "WA House District 48", "rep": "Amy Walen, Osman Salahuddin", "w": 0.018}, {"d": "WA House District 30", "rep": "Jamila Taylor, Kristine Reeves", "w": 0.017}, {"d": "WA House District 31", "rep": "Drew Stokesbary, Josh Penner", "w": 0.015}, {"d": "WA House District 1", "rep": "Davina Duerr, Shelley Kloba", "w": 0.013}, {"d": "WA House District 37", "rep": "Chipalo Street, Sharon Tomiko Santos", "w": 0.011}, {"d": "WA House District 46", "rep": "Darya Farivar, Gerry Pollet", "w": 0.009}, {"d": "WA House District 36", "rep": "Julia Reed, Liz Berry", "w": 0.007}, {"d": "WA House District 43", "rep": "Nicole Macri, Shaun Scott", "w": 0.006}, {"d": "WA House District 32", "rep": "Cindy Ryu, Lauren Davis", "w": 0.006}], "ss": [{"d": "WA Senate District 12", "rep": "Keith Goehner", "w": 0.347}, {"d": "WA Senate District 5", "rep": "Victoria Hunt", "w": 0.334}, {"d": "WA Senate District 45", "rep": "Manka Dhingra", "w": 0.045}, {"d": "WA Senate District 34", "rep": "Emily Alvarado", "w": 0.029}, {"d": "WA Senate District 47", "rep": "Claudia Kauffman", "w": 0.028}, {"d": "WA Senate District 41", "rep": "Lisa Wellman", "w": 0.026}, {"d": "WA Senate District 33", "rep": "Tina Orwall", "w": 0.02}, {"d": "WA Senate District 11", "rep": "Bob Hasegawa", "w": 0.018}, {"d": "WA Senate District 48", "rep": "Vandana Slatter", "w": 0.018}, {"d": "WA Senate District 30", "rep": "Claire Wilson", "w": 0.017}, {"d": "WA Senate District 31", "rep": "Phil Fortunato", "w": 0.015}, {"d": "WA Senate District 1", "rep": "Derek Stanford", "w": 0.013}, {"d": "WA Senate District 37", "rep": "Rebecca Saldaña", "w": 0.011}, {"d": "WA Senate District 46", "rep": "Javier Valdez", "w": 0.009}, {"d": "WA Senate District 36", "rep": "Noel Frame", "w": 0.007}, {"d": "WA Senate District 43", "rep": "Jamie Pedersen", "w": 0.006}, {"d": "WA Senate District 32", "rep": "Jesse Salomon", "w": 0.006}]}, "munis": [{"m": "Algona", "p": [{"n": "Troy Linnell", "r": "Mayor, Algona, WA"}]}, {"m": "Auburn", "p": [{"n": "Nancy Backus", "r": "Mayor, Auburn, WA"}]}, {"m": "Bellevue", "p": [{"n": "Lynne Robinson", "r": "Mayor, Bellevue, WA"}]}, {"m": "Bothell", "p": [{"n": "Mason Thompson", "r": "Mayor, Bothell, WA"}]}, {"m": "Burien", "p": [{"n": "Kevin Schilling", "r": "Mayor, Burien, WA"}]}, {"m": "Carnation", "p": [{"n": "Jim Ribail", "r": "Mayor, Carnation, WA"}]}, {"m": "Des Moines", "p": [{"n": "Matt Mahoney", "r": "Mayor, Des Moines, WA"}]}, {"m": "Duvall", "p": [{"n": "Amy Ockerlander", "r": "Mayor, Duvall, WA"}]}, {"m": "Enumclaw", "p": [{"n": "Jan Molinaro", "r": "Mayor, Enumclaw, WA"}]}, {"m": "Federal Way", "p": [{"n": "Jim Ferrell", "r": "Mayor, Federal Way, WA"}]}, {"m": "Issaquah", "p": [{"n": "Mary Lou Pauly", "r": "Mayor, Issaquah, WA"}]}, {"m": "Kenmore", "p": [{"n": "Nigel Herbig", "r": "Mayor, Kenmore, WA"}]}, {"m": "Kent", "p": [{"n": "Dana Ralph", "r": "Mayor, Kent, WA"}]}, {"m": "Kirkland", "p": [{"n": "Kelli Curtis", "r": "Mayor, Kirkland, WA"}]}, {"m": "Lake Forest Park", "p": [{"n": "Tom French", "r": "Mayor, Lake Forest Park, WA"}]}, {"m": "Maple Valley", "p": [{"n": "Sean P. Kelly", "r": "Mayor, Maple Valley, WA"}]}, {"m": "Mercer Island", "p": [{"n": "Salim Nice", "r": "Mayor, Mercer Island, WA"}]}, {"m": "North Bend", "p": [{"n": "Mary Miller", "r": "Mayor, North Bend, WA"}]}, {"m": "Redmond", "p": [{"n": "Angela Birney", "r": "Mayor, Redmond, WA"}]}, {"m": "Renton", "p": [{"n": "Armondo Pavone", "r": "Mayor, Renton, WA"}]}, {"m": "Seatac", "p": [{"n": "Mohamed Egal", "r": "Mayor, SeaTac, WA"}]}, {"m": "Seattle", "p": [{"n": "Katie Wilson", "r": "Mayor, Seattle, WA"}]}, {"m": "Shoreline", "p": [{"n": "Chris Roberts", "r": "Mayor, Shoreline, WA"}]}, {"m": "Tukwila", "p": [{"n": "Thomas McLeod", "r": "Mayor, Tukwila, WA"}]}, {"m": "Woodinville", "p": [{"n": "Mike Millman", "r": "Mayor, Woodinville, WA"}]}], "slug": "king"}, "53035": {"county": [], "districts": {"cd": [{"d": "WA-06", "rep": "Emily Randall", "w": 0.778}], "sh": [{"d": "WA House District 23", "rep": "Greg Nance, Tarra Simmons", "w": 0.312}, {"d": "WA House District 35", "rep": "Dan Griffey, Travis Couture", "w": 0.228}, {"d": "WA House District 26", "rep": "Adison Richards, Michelle Valdez", "w": 0.185}], "ss": [{"d": "WA Senate District 23", "rep": "Drew Hansen", "w": 0.312}, {"d": "WA Senate District 35", "rep": "Drew MacEwen", "w": 0.228}, {"d": "WA Senate District 26", "rep": "Deb Krishnadasan", "w": 0.185}]}, "munis": [{"m": "Bremerton", "p": [{"n": "Greg Wheeler", "r": "Mayor, Bremerton, WA"}]}], "slug": "kitsap"}, "53037": {"county": [], "districts": {"cd": [{"d": "WA-08", "rep": "Kim Schrier", "w": 0.999}], "sh": [{"d": "WA House District 13", "rep": "Alex Ybarra, Tom Dent", "w": 0.999}], "ss": [{"d": "WA Senate District 13", "rep": "Judy Warnick", "w": 0.999}]}, "munis": [{"m": "Cle Elum", "p": [{"n": "Matthew Lundh", "r": "Mayor, Cle Elum, WA"}]}, {"m": "Ellensburg", "p": [{"n": "Rich Elliott", "r": "Mayor, Ellensburg, WA"}]}], "slug": "kittitas"}, "53039": {"county": [], "districts": {"cd": [{"d": "WA-04", "rep": "Dan Newhouse", "w": 1.0}], "sh": [{"d": "WA House District 14", "rep": "Deb Manjarrez, Gloria Mendoza", "w": 0.671}, {"d": "WA House District 17", "rep": "Dave Stuebe, Kevin Waters", "w": 0.329}], "ss": [{"d": "WA Senate District 14", "rep": "Curtis King", "w": 0.671}, {"d": "WA Senate District 17", "rep": "Paul Harris", "w": 0.329}]}, "munis": [{"m": "White Salmon", "p": [{"n": "Marla Keethler", "r": "Mayor, White Salmon, WA"}]}], "slug": "klickitat"}, "53041": {"county": [], "districts": {"cd": [{"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 0.999}], "sh": [{"d": "WA House District 20", "rep": "Ed Orcutt, Peter Abbarno", "w": 0.769}, {"d": "WA House District 19", "rep": "Jim Walsh, Joel McEntire", "w": 0.231}], "ss": [{"d": "WA Senate District 20", "rep": "John Braun", "w": 0.769}, {"d": "WA Senate District 19", "rep": "Jeff Wilson", "w": 0.231}]}, "munis": [{"m": "Centralia", "p": [{"n": "Kelly Smith Johnston", "r": "Mayor, Centralia, WA"}]}, {"m": "Chehalis", "p": [{"n": "Tony Ketchum", "r": "Mayor, Chehalis, WA"}]}], "slug": "lewis"}, "53043": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 1.0}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 1.0}]}, "munis": [{"m": "Davenport", "p": [{"n": "Jonathan Chapman", "r": "Mayor, Davenport, WA"}]}], "slug": "lincoln"}, "53045": {"county": [], "districts": {"cd": [{"d": "WA-06", "rep": "Emily Randall", "w": 0.953}], "sh": [{"d": "WA House District 35", "rep": "Dan Griffey, Travis Couture", "w": 0.95}], "ss": [{"d": "WA Senate District 35", "rep": "Drew MacEwen", "w": 0.95}]}, "munis": [], "slug": "mason"}, "53047": {"county": [], "districts": {"cd": [{"d": "WA-04", "rep": "Dan Newhouse", "w": 0.999}], "sh": [{"d": "WA House District 7", "rep": "Andrew Engell, Hunter Abell", "w": 1.0}], "ss": [{"d": "WA Senate District 7", "rep": "Shelly Short", "w": 1.0}]}, "munis": [{"m": "Brewster", "p": [{"n": "Art Smyth", "r": "Mayor, Brewster, WA"}]}, {"m": "Okanogan", "p": [{"n": "Wayne L. Turner", "r": "Mayor, Okanogan, WA"}]}, {"m": "Omak", "p": [{"n": "Cindy Gagné", "r": "Mayor, Omak, WA"}]}, {"m": "Oroville", "p": [{"n": "Ed Naillon", "r": "Mayor, Oroville, WA"}]}, {"m": "Pateros", "p": [{"n": "Kelly Hook", "r": "Mayor, Pateros, WA"}]}, {"m": "Tonasket", "p": [{"n": "René Maldonado", "r": "Mayor, Tonasket, WA"}]}], "slug": "okanogan"}, "53049": {"county": [], "districts": {"cd": [{"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 0.77}], "sh": [{"d": "WA House District 19", "rep": "Jim Walsh, Joel McEntire", "w": 0.769}], "ss": [{"d": "WA Senate District 19", "rep": "Jeff Wilson", "w": 0.769}]}, "munis": [], "slug": "pacific"}, "53051": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 7", "rep": "Andrew Engell, Hunter Abell", "w": 1.0}], "ss": [{"d": "WA Senate District 7", "rep": "Shelly Short", "w": 1.0}]}, "munis": [], "slug": "pend-oreille"}, "53053": {"county": [], "districts": {"cd": [{"d": "WA-08", "rep": "Kim Schrier", "w": 0.695}, {"d": "WA-10", "rep": "Marilyn Strickland", "w": 0.155}, {"d": "WA-06", "rep": "Emily Randall", "w": 0.101}], "sh": [{"d": "WA House District 2", "rep": "Andrew Barkis, Matt Marshall", "w": 0.412}, {"d": "WA House District 31", "rep": "Drew Stokesbary, Josh Penner", "w": 0.293}, {"d": "WA House District 28", "rep": "Dan Bronoske, Mari Leavitt", "w": 0.09}, {"d": "WA House District 26", "rep": "Adison Richards, Michelle Valdez", "w": 0.064}, {"d": "WA House District 25", "rep": "Cyndy Jacobsen, Michael Keaton", "w": 0.037}, {"d": "WA House District 27", "rep": "Jake Fey, Laurie Jinkins", "w": 0.025}, {"d": "WA House District 29", "rep": "Melanie Morgan, Sharlett Mena", "w": 0.019}], "ss": [{"d": "WA Senate District 2", "rep": "Jim McCune", "w": 0.412}, {"d": "WA Senate District 31", "rep": "Phil Fortunato", "w": 0.293}, {"d": "WA Senate District 28", "rep": "T'wina Nobles", "w": 0.09}, {"d": "WA Senate District 26", "rep": "Deb Krishnadasan", "w": 0.064}, {"d": "WA Senate District 25", "rep": "Chris Gildon", "w": 0.037}, {"d": "WA Senate District 27", "rep": "Yasmin Trudeau", "w": 0.025}, {"d": "WA Senate District 29", "rep": "Steve Conway", "w": 0.019}]}, "munis": [{"m": "Buckley", "p": [{"n": "Beau Burkett", "r": "Mayor, Buckley, WA"}]}, {"m": "Edgewood", "p": [{"n": "Dave Olson", "r": "Mayor, Edgewood, WA"}]}, {"m": "Fife", "p": [{"n": "Kim Roscoe", "r": "Mayor, Fife, WA"}]}, {"m": "Gig Harbor", "p": [{"n": "Tracie Markley", "r": "Mayor, Gig Harbor, WA"}]}, {"m": "Orting", "p": [{"n": "Joshua Penner", "r": "Mayor, Orting, WA"}]}, {"m": "Roy", "p": [{"n": "Kimber Ivy", "r": "Mayor, Roy, WA"}]}, {"m": "Tacoma", "p": [{"n": "Victoria Woodards", "r": "Mayor, Tacoma, WA"}]}], "slug": "pierce"}, "53055": {"county": [], "districts": {"cd": [{"d": "WA-02", "rep": "Rick Larsen", "w": 0.413}], "sh": [{"d": "WA House District 40", "rep": "Alex Ramel, Debra Lekanoff", "w": 0.309}], "ss": [{"d": "WA Senate District 40", "rep": "Liz Lovelett", "w": 0.309}]}, "munis": [], "slug": "san-juan"}, "53057": {"county": [], "districts": {"cd": [{"d": "WA-02", "rep": "Rick Larsen", "w": 0.916}], "sh": [{"d": "WA House District 39", "rep": "Carolyn Eslick, Sam Low", "w": 0.794}, {"d": "WA House District 40", "rep": "Alex Ramel, Debra Lekanoff", "w": 0.073}, {"d": "WA House District 10", "rep": "Clyde Shavers, Dave Paul", "w": 0.049}], "ss": [{"d": "WA Senate District 39", "rep": "Keith Wagoner", "w": 0.794}, {"d": "WA Senate District 40", "rep": "Liz Lovelett", "w": 0.073}, {"d": "WA Senate District 10", "rep": "Ron Muzzall", "w": 0.049}]}, "munis": [{"m": "Anacortes", "p": [{"n": "Matt Miller", "r": "Mayor, Anacortes, WA"}]}, {"m": "Mount Vernon", "p": [{"n": "Peter Donovan", "r": "Mayor, Mount Vernon, WA"}]}], "slug": "skagit"}, "53059": {"county": [], "districts": {"cd": [{"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 1.0}], "sh": [{"d": "WA House District 17", "rep": "Dave Stuebe, Kevin Waters", "w": 1.0}], "ss": [{"d": "WA Senate District 17", "rep": "Paul Harris", "w": 1.0}]}, "munis": [], "slug": "skamania"}, "53061": {"county": [], "districts": {"cd": [{"d": "WA-08", "rep": "Kim Schrier", "w": 0.754}, {"d": "WA-01", "rep": "Suzan K. DelBene", "w": 0.119}, {"d": "WA-02", "rep": "Rick Larsen", "w": 0.089}], "sh": [{"d": "WA House District 39", "rep": "Carolyn Eslick, Sam Low", "w": 0.588}, {"d": "WA House District 12", "rep": "Brian Burnett, Mike Steele", "w": 0.207}, {"d": "WA House District 44", "rep": "April Berg, Brandy Donaghy", "w": 0.049}, {"d": "WA House District 10", "rep": "Clyde Shavers, Dave Paul", "w": 0.046}, {"d": "WA House District 38", "rep": "Julio Cortes, Mary Fosse", "w": 0.037}, {"d": "WA House District 21", "rep": "Lillian Ortiz-Self, Strom Peterson", "w": 0.016}, {"d": "WA House District 1", "rep": "Davina Duerr, Shelley Kloba", "w": 0.011}, {"d": "WA House District 32", "rep": "Cindy Ryu, Lauren Davis", "w": 0.007}], "ss": [{"d": "WA Senate District 39", "rep": "Keith Wagoner", "w": 0.588}, {"d": "WA Senate District 12", "rep": "Keith Goehner", "w": 0.207}, {"d": "WA Senate District 44", "rep": "John Lovick", "w": 0.049}, {"d": "WA Senate District 10", "rep": "Ron Muzzall", "w": 0.046}, {"d": "WA Senate District 38", "rep": "June Robinson", "w": 0.037}, {"d": "WA Senate District 21", "rep": "Marko Liias", "w": 0.016}, {"d": "WA Senate District 1", "rep": "Derek Stanford", "w": 0.011}, {"d": "WA Senate District 32", "rep": "Jesse Salomon", "w": 0.007}]}, "munis": [{"m": "Arlington", "p": [{"n": "Barbara Tolbert", "r": "Mayor, Arlington, WA"}]}, {"m": "Edmonds", "p": [{"n": "Mike Rosen", "r": "Mayor, Edmonds, WA"}]}, {"m": "Everett", "p": [{"n": "Cassie Franklin", "r": "Mayor, Everett, WA"}]}, {"m": "Granite Falls", "p": [{"n": "Matt Hartman", "r": "Mayor, Granite Falls, WA"}]}, {"m": "Marysville", "p": [{"n": "Jon Nehring", "r": "Mayor, Marysville, WA"}]}, {"m": "Mountlake Terrace", "p": [{"n": "Kyoko Matsumoto Wright", "r": "Mayor, Mountlake Terrace, WA"}]}, {"m": "Snohomish", "p": [{"n": "Linda Redmon", "r": "Mayor, Snohomish, WA"}]}, {"m": "Stanwood", "p": [{"n": "Sid Roberts", "r": "Mayor, Stanwood, WA"}]}], "slug": "snohomish"}, "53063": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 0.483}, {"d": "WA House District 6", "rep": "Jenny Graham, Mike Volz", "w": 0.233}, {"d": "WA House District 4", "rep": "Rob Chase, Suzanne Schmidt", "w": 0.225}, {"d": "WA House District 7", "rep": "Andrew Engell, Hunter Abell", "w": 0.036}, {"d": "WA House District 3", "rep": "Natasha Hill, Timm Ormsby", "w": 0.023}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 0.483}, {"d": "WA Senate District 6", "rep": "Jeff Holy", "w": 0.233}, {"d": "WA Senate District 4", "rep": "Leonard Christian", "w": 0.225}, {"d": "WA Senate District 7", "rep": "Shelly Short", "w": 0.036}, {"d": "WA Senate District 3", "rep": "Marcus Riccelli", "w": 0.023}]}, "munis": [{"m": "Cheney", "p": [{"n": "Chris Grover", "r": "Mayor, Cheney, WA"}]}, {"m": "Deer Park", "p": [{"n": "Tim Verzal", "r": "Mayor, Deer Park, WA"}]}, {"m": "Liberty Lake", "p": [{"n": "Cris Kaminskas", "r": "Mayor, Liberty Lake, WA"}]}, {"m": "Medical Lake", "p": [{"n": "Terri Cooper", "r": "Mayor, Medical Lake, WA"}]}, {"m": "Spokane", "p": [{"n": "Lisa Brown", "r": "Mayor, Spokane, WA"}]}, {"m": "Spokane Valley", "p": [{"n": "Pam Haley", "r": "Mayor, Spokane Valley, WA"}]}], "slug": "spokane"}, "53065": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 7", "rep": "Andrew Engell, Hunter Abell", "w": 1.0}], "ss": [{"d": "WA Senate District 7", "rep": "Shelly Short", "w": 1.0}]}, "munis": [], "slug": "stevens"}, "53067": {"county": [], "districts": {"cd": [{"d": "WA-10", "rep": "Marilyn Strickland", "w": 0.615}, {"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 0.368}], "sh": [{"d": "WA House District 35", "rep": "Dan Griffey, Travis Couture", "w": 0.399}, {"d": "WA House District 2", "rep": "Andrew Barkis, Matt Marshall", "w": 0.342}, {"d": "WA House District 22", "rep": "Beth Doglio, Lisa Parshley", "w": 0.155}, {"d": "WA House District 20", "rep": "Ed Orcutt, Peter Abbarno", "w": 0.047}, {"d": "WA House District 19", "rep": "Jim Walsh, Joel McEntire", "w": 0.037}], "ss": [{"d": "WA Senate District 35", "rep": "Drew MacEwen", "w": 0.399}, {"d": "WA Senate District 2", "rep": "Jim McCune", "w": 0.342}, {"d": "WA Senate District 22", "rep": "Jess Bateman", "w": 0.155}, {"d": "WA Senate District 20", "rep": "John Braun", "w": 0.047}, {"d": "WA Senate District 19", "rep": "Jeff Wilson", "w": 0.037}]}, "munis": [{"m": "Lacey", "p": [{"n": "Andy Ryder", "r": "Mayor, Lacey, WA"}]}, {"m": "Olympia", "p": [{"n": "Dontae Payne", "r": "Mayor, Olympia, WA"}]}], "slug": "thurston"}, "53069": {"county": [], "districts": {"cd": [{"d": "WA-03", "rep": "Marie Gluesenkamp Perez", "w": 0.964}], "sh": [{"d": "WA House District 19", "rep": "Jim Walsh, Joel McEntire", "w": 0.965}], "ss": [{"d": "WA Senate District 19", "rep": "Jeff Wilson", "w": 0.965}]}, "munis": [], "slug": "wahkiakum"}, "53071": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 16", "rep": "Mark Klicker, Skyler Rude", "w": 1.0}], "ss": [{"d": "WA Senate District 16", "rep": "Perry Dozier", "w": 1.0}]}, "munis": [{"m": "Walla Walla", "p": [{"n": "Tom Scribner", "r": "Mayor, Walla Walla, WA"}]}], "slug": "walla-walla"}, "53073": {"county": [], "districts": {"cd": [{"d": "WA-02", "rep": "Rick Larsen", "w": 0.866}], "sh": [{"d": "WA House District 42", "rep": "Alicia Rule, Joe Timmons", "w": 0.823}, {"d": "WA House District 40", "rep": "Alex Ramel, Debra Lekanoff", "w": 0.043}], "ss": [{"d": "WA Senate District 42", "rep": "Sharon Shewmake", "w": 0.823}, {"d": "WA Senate District 40", "rep": "Liz Lovelett", "w": 0.043}]}, "munis": [{"m": "Bellingham", "p": [{"n": "Kim Lund", "r": "Mayor, Bellingham, WA"}]}, {"m": "Ferndale", "p": [{"n": "Greg Hansen", "r": "Mayor, Ferndale, WA"}]}], "slug": "whatcom"}, "53075": {"county": [], "districts": {"cd": [{"d": "WA-05", "rep": "Michael Baumgartner", "w": 1.0}], "sh": [{"d": "WA House District 9", "rep": "Joe Schmick, Mary Dye", "w": 1.0}], "ss": [{"d": "WA Senate District 9", "rep": "Mark Schoesler", "w": 1.0}]}, "munis": [{"m": "Colfax", "p": [{"n": "Jim Retzer", "r": "Mayor, Colfax, WA"}]}, {"m": "Palouse", "p": [{"n": "Tim Sievers", "r": "Mayor, Palouse, WA"}]}, {"m": "Pullman", "p": [{"n": "Francis A. Benjamin", "r": "Mayor, Pullman, WA"}]}], "slug": "whitman"}, "53077": {"county": [], "districts": {"cd": [{"d": "WA-04", "rep": "Dan Newhouse", "w": 0.999}], "sh": [{"d": "WA House District 14", "rep": "Deb Manjarrez, Gloria Mendoza", "w": 0.512}, {"d": "WA House District 15", "rep": "Chris Corry, Jeremie Dufault", "w": 0.488}], "ss": [{"d": "WA Senate District 14", "rep": "Curtis King", "w": 0.512}, {"d": "WA Senate District 15", "rep": "Nikki Torres", "w": 0.488}]}, "munis": [{"m": "Sunnyside", "p": [{"n": "Dean R. Broersma", "r": "Mayor, Sunnyside, WA"}]}, {"m": "Yakima", "p": [{"n": "Patricia Byers", "r": "Mayor, Yakima, WA"}]}], "slug": "yakima"}, "54001": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 68", "rep": "Chris Phillips", "w": 1.0}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [{"m": "Philippi", "p": [{"n": "Philip Bowers", "r": "Mayor, Philippi, WV"}]}], "slug": "barbour"}, "54003": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 91", "rep": "Ian Masters", "w": 0.243}, {"d": "WV House District 90", "rep": "George Miller", "w": 0.161}, {"d": "WV House District 92", "rep": "Mike Hite", "w": 0.157}, {"d": "WV House District 97", "rep": "Chris Anders", "w": 0.108}, {"d": "WV House District 93", "rep": "Mike Hornby", "w": 0.105}, {"d": "WV House District 96", "rep": "Lisa White", "w": 0.088}, {"d": "WV House District 94", "rep": "Donald Bennett", "w": 0.069}, {"d": "WV House District 95", "rep": "Chuck Horst", "w": 0.068}], "ss": [{"d": "WV Senate District 15", "rep": "Darren Thorne, Tom Willis", "w": 0.656}, {"d": "WV Senate District 16", "rep": "Jason Barrett, Patricia Rucker", "w": 0.344}]}, "munis": [{"m": "Martinsburg", "p": [{"n": "Kevin Knowles", "r": "Mayor, Martinsburg, WV"}]}], "slug": "berkeley"}, "54005": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 32", "rep": "Josh Holstein", "w": 0.921}, {"d": "WV House District 31", "rep": "Margitta Mazzocchi", "w": 0.078}], "ss": [{"d": "WV Senate District 7", "rep": "Rupie Phillips, Zack Maynard", "w": 1.0}]}, "munis": [], "slug": "boone"}, "54007": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.999}], "sh": [{"d": "WV House District 63", "rep": "Lori Dittman", "w": 1.0}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [], "slug": "braxton"}, "54009": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 3", "rep": "Jimmy Willis", "w": 0.639}, {"d": "WV House District 2", "rep": "Mark Zatezalo", "w": 0.264}, {"d": "WV House District 1", "rep": "Pat McGeehan", "w": 0.097}], "ss": [{"d": "WV Senate District 1", "rep": "Laura Chapman, Ryan Weld", "w": 1.0}]}, "munis": [], "slug": "brooke"}, "54011": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 22", "rep": "Daniel Linville", "w": 0.501}, {"d": "WV House District 23", "rep": "Evan Worrell", "w": 0.26}, {"d": "WV House District 26", "rep": "Matthew Rohrbach", "w": 0.095}, {"d": "WV House District 24", "rep": "Patrick Lucas", "w": 0.073}, {"d": "WV House District 27", "rep": "Michael Amos", "w": 0.055}, {"d": "WV House District 25", "rep": "Sean Hornbuckle", "w": 0.016}], "ss": [{"d": "WV Senate District 4", "rep": "Amy Grady, Eric Tarr", "w": 0.568}, {"d": "WV Senate District 5", "rep": "Mike Woelfel, Scott Fuller", "w": 0.432}]}, "munis": [{"m": "Huntington", "p": [{"n": "Patrick Farrell", "r": "Mayor, Huntington, WV"}]}], "slug": "cabell"}, "54013": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.998}], "sh": [{"d": "WV House District 62", "rep": "Roger Hanshaw", "w": 1.0}], "ss": [{"d": "WV Senate District 12", "rep": "Ben Queen, Patrick Martin", "w": 1.0}]}, "munis": [], "slug": "calhoun"}, "54015": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 62", "rep": "Roger Hanshaw", "w": 1.0}], "ss": [{"d": "WV Senate District 8", "rep": "Glenn Jeffries, Kevan Bartlett", "w": 1.0}]}, "munis": [], "slug": "clay"}, "54017": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 8", "rep": "Bill Bell", "w": 1.0}], "ss": [{"d": "WV Senate District 2", "rep": "Charles Clements, Chris Rose", "w": 1.0}]}, "munis": [], "slug": "doddridge"}, "54019": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 51", "rep": "Marshall Clay", "w": 0.553}, {"d": "WV House District 50", "rep": "Elliott Pritt", "w": 0.35}, {"d": "WV House District 45", "rep": "Eric Brooks", "w": 0.094}], "ss": [{"d": "WV Senate District 10", "rep": "Jack Woodrum, Vince Deeds", "w": 0.859}, {"d": "WV Senate District 9", "rep": "Brian Helton, Rollan Roberts", "w": 0.141}]}, "munis": [], "slug": "fayette"}, "54021": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.997}], "sh": [{"d": "WV House District 62", "rep": "Roger Hanshaw", "w": 0.699}, {"d": "WV House District 63", "rep": "Lori Dittman", "w": 0.301}], "ss": [{"d": "WV Senate District 12", "rep": "Ben Queen, Patrick Martin", "w": 1.0}]}, "munis": [], "slug": "gilmer"}, "54023": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.999}], "sh": [{"d": "WV House District 85", "rep": "John Paul Hott", "w": 1.0}], "ss": [{"d": "WV Senate District 14", "rep": "Jay Taylor, Randy Smith", "w": 1.0}]}, "munis": [], "slug": "grant"}, "54025": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 47", "rep": "Ray Canterbury", "w": 0.448}, {"d": "WV House District 46", "rep": "Jeff Campbell", "w": 0.35}, {"d": "WV House District 48", "rep": "Greg Watt", "w": 0.201}], "ss": [{"d": "WV Senate District 10", "rep": "Jack Woodrum, Vince Deeds", "w": 1.0}]}, "munis": [], "slug": "greenbrier"}, "54027": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 89", "rep": "David Cannon", "w": 0.586}, {"d": "WV House District 88", "rep": "Rick Hillenbrand", "w": 0.413}], "ss": [{"d": "WV Senate District 15", "rep": "Darren Thorne, Tom Willis", "w": 1.0}]}, "munis": [{"m": "Romney", "p": [{"n": "Beverly C. Keadle", "r": "Mayor, Romney, WV"}]}], "slug": "hampshire"}, "54029": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.998}], "sh": [{"d": "WV House District 1", "rep": "Pat McGeehan", "w": 0.889}, {"d": "WV House District 2", "rep": "Mark Zatezalo", "w": 0.11}], "ss": [{"d": "WV Senate District 1", "rep": "Laura Chapman, Ryan Weld", "w": 0.998}]}, "munis": [], "slug": "hancock"}, "54031": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 86", "rep": "Bryan Ward", "w": 0.999}], "ss": [{"d": "WV Senate District 14", "rep": "Jay Taylor, Randy Smith", "w": 0.999}]}, "munis": [], "slug": "hardy"}, "54033": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 69", "rep": "Keith Marple", "w": 0.51}, {"d": "WV House District 72", "rep": "Clay Riley", "w": 0.355}, {"d": "WV House District 71", "rep": "Laura Kimble", "w": 0.114}, {"d": "WV House District 70", "rep": "Mickey Petitto", "w": 0.02}], "ss": [{"d": "WV Senate District 12", "rep": "Ben Queen, Patrick Martin", "w": 1.0}]}, "munis": [{"m": "Clarksburg", "p": [{"n": "Jim Malfregeot", "r": "Mayor, Clarksburg, WV"}]}], "slug": "harrison"}, "54035": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 16", "rep": "Joe Parsons", "w": 0.78}, {"d": "WV House District 17", "rep": "Jonathan Pinson", "w": 0.22}], "ss": [{"d": "WV Senate District 4", "rep": "Amy Grady, Eric Tarr", "w": 0.543}, {"d": "WV Senate District 8", "rep": "Glenn Jeffries, Kevan Bartlett", "w": 0.456}]}, "munis": [], "slug": "jackson"}, "54037": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.998}], "sh": [{"d": "WV House District 98", "rep": "Joe Funkhouser", "w": 0.433}, {"d": "WV House District 100", "rep": "Bill Ridenour", "w": 0.302}, {"d": "WV House District 97", "rep": "Chris Anders", "w": 0.137}, {"d": "WV House District 99", "rep": "Wayne Clark", "w": 0.126}], "ss": [{"d": "WV Senate District 16", "rep": "Jason Barrett, Patricia Rucker", "w": 0.999}]}, "munis": [], "slug": "jefferson"}, "54039": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 61", "rep": "Dean Jeffries", "w": 0.228}, {"d": "WV House District 53", "rep": "Tristan Leavitt", "w": 0.219}, {"d": "WV House District 52", "rep": "Tresa Howell", "w": 0.174}, {"d": "WV House District 60", "rep": "Dana Ferrell", "w": 0.155}, {"d": "WV House District 55", "rep": "J.B. Akers", "w": 0.141}, {"d": "WV House District 56", "rep": "Kayla Young", "w": 0.031}, {"d": "WV House District 59", "rep": "Andy Shamblin", "w": 0.019}, {"d": "WV House District 58", "rep": "Walter Hall", "w": 0.015}, {"d": "WV House District 57", "rep": "Hollis Lewis", "w": 0.01}, {"d": "WV House District 54", "rep": "Mike Pushkin", "w": 0.007}], "ss": [{"d": "WV Senate District 17", "rep": "Anne Charnock, Tom Takubo", "w": 0.607}, {"d": "WV Senate District 7", "rep": "Rupie Phillips, Zack Maynard", "w": 0.292}, {"d": "WV Senate District 8", "rep": "Glenn Jeffries, Kevan Bartlett", "w": 0.101}]}, "munis": [{"m": "Charleston", "p": [{"n": "Amy Shuler Goodwin", "r": "Mayor, Charleston, WV"}]}], "slug": "kanawha"}, "54041": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.997}], "sh": [{"d": "WV House District 64", "rep": "Adam Burkhammer", "w": 0.828}, {"d": "WV House District 69", "rep": "Keith Marple", "w": 0.172}], "ss": [{"d": "WV Senate District 12", "rep": "Ben Queen, Patrick Martin", "w": 1.0}]}, "munis": [{"m": "Weston", "p": [{"n": "Kim Harrison", "r": "Mayor, Weston, WV"}]}], "slug": "lewis"}, "54043": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 30", "rep": "Jeff Eldridge", "w": 0.912}, {"d": "WV House District 31", "rep": "Margitta Mazzocchi", "w": 0.088}], "ss": [{"d": "WV Senate District 7", "rep": "Rupie Phillips, Zack Maynard", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "54045": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 33", "rep": "Jordan Bridges", "w": 0.51}, {"d": "WV House District 31", "rep": "Margitta Mazzocchi", "w": 0.489}], "ss": [{"d": "WV Senate District 7", "rep": "Rupie Phillips, Zack Maynard", "w": 1.0}]}, "munis": [], "slug": "logan"}, "54047": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.999}], "sh": [{"d": "WV House District 36", "rep": "David Green", "w": 0.973}, {"d": "WV House District 34", "rep": "Mark Dean", "w": 0.026}], "ss": [{"d": "WV Senate District 6", "rep": "Craig Hart, Mark Maynard", "w": 0.999}]}, "munis": [], "slug": "mcdowell"}, "54049": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 74", "rep": "Guy Ward", "w": 0.518}, {"d": "WV House District 76", "rep": "Rick Garcia", "w": 0.234}, {"d": "WV House District 75", "rep": "Phil Mallow", "w": 0.188}, {"d": "WV House District 73", "rep": "Bryan Smith", "w": 0.059}], "ss": [{"d": "WV Senate District 2", "rep": "Charles Clements, Chris Rose", "w": 0.693}, {"d": "WV Senate District 13", "rep": "Joey Garcia, Mike Oliverio", "w": 0.307}]}, "munis": [{"m": "Fairmont", "p": [{"n": "Anne Bolyard", "r": "Mayor, Fairmont, WV"}]}], "slug": "marion"}, "54051": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.999}], "sh": [{"d": "WV House District 7", "rep": "Chuck Sheedy", "w": 0.849}, {"d": "WV House District 6", "rep": "Jeff Stephens", "w": 0.15}], "ss": [{"d": "WV Senate District 1", "rep": "Laura Chapman, Ryan Weld", "w": 0.674}, {"d": "WV Senate District 2", "rep": "Charles Clements, Chris Rose", "w": 0.326}]}, "munis": [], "slug": "marshall"}, "54053": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.999}], "sh": [{"d": "WV House District 18", "rep": "Jim Butler", "w": 0.665}, {"d": "WV House District 17", "rep": "Jonathan Pinson", "w": 0.335}], "ss": [{"d": "WV Senate District 4", "rep": "Amy Grady, Eric Tarr", "w": 0.999}]}, "munis": [{"m": "Point Pleasant", "p": [{"n": "Amber Tatterson", "r": "Mayor, Point Pleasant, WV"}]}], "slug": "mason"}, "54055": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 39", "rep": "Doug Smith", "w": 0.429}, {"d": "WV House District 41", "rep": "Jordan Maynor", "w": 0.247}, {"d": "WV House District 37", "rep": "Marty Gearheart", "w": 0.225}, {"d": "WV House District 38", "rep": "Joe Ellington", "w": 0.099}], "ss": [{"d": "WV Senate District 6", "rep": "Craig Hart, Mark Maynard", "w": 1.0}]}, "munis": [{"m": "Bluefield", "p": [{"n": "Ron Martin", "r": "Mayor, Bluefield, WV"}]}], "slug": "mercer"}, "54057": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.992}, {"d": "MD-06", "rep": "April McClain Delaney", "w": 0.008}], "sh": [{"d": "WV House District 88", "rep": "Rick Hillenbrand", "w": 0.601}, {"d": "WV House District 87", "rep": "Gary Howell", "w": 0.397}], "ss": [{"d": "WV Senate District 14", "rep": "Jay Taylor, Randy Smith", "w": 0.998}]}, "munis": [], "slug": "mineral"}, "54059": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.992}, {"d": "KY-05", "rep": "Harold Rogers", "w": 0.007}], "sh": [{"d": "WV House District 34", "rep": "Mark Dean", "w": 0.627}, {"d": "WV House District 29", "rep": "Corby Dillon", "w": 0.371}], "ss": [{"d": "WV Senate District 6", "rep": "Craig Hart, Mark Maynard", "w": 0.999}]}, "munis": [], "slug": "mingo"}, "54061": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 77", "rep": "Joe Statler", "w": 0.63}, {"d": "WV House District 78", "rep": "Geno Chiarelli", "w": 0.19}, {"d": "WV House District 82", "rep": "Dave McCormick", "w": 0.13}, {"d": "WV House District 80", "rep": "John Williams", "w": 0.021}, {"d": "WV House District 81", "rep": "Anitra Hamilton", "w": 0.016}, {"d": "WV House District 79", "rep": "Evan Hansen", "w": 0.012}], "ss": [{"d": "WV Senate District 2", "rep": "Charles Clements, Chris Rose", "w": 0.69}, {"d": "WV Senate District 13", "rep": "Joey Garcia, Mike Oliverio", "w": 0.31}]}, "munis": [{"m": "Morgantown", "p": [{"n": "Joe Abu-Ghannam", "r": "Mayor, Morgantown, WV"}]}], "slug": "monongalia"}, "54063": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 40", "rep": "Roy Cooper", "w": 0.999}], "ss": [{"d": "WV Senate District 10", "rep": "Jack Woodrum, Vince Deeds", "w": 1.0}]}, "munis": [], "slug": "monroe"}, "54065": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.996}], "sh": [{"d": "WV House District 90", "rep": "George Miller", "w": 0.6}, {"d": "WV House District 89", "rep": "David Cannon", "w": 0.398}], "ss": [{"d": "WV Senate District 15", "rep": "Darren Thorne, Tom Willis", "w": 0.999}]}, "munis": [], "slug": "morgan"}, "54067": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 49", "rep": "Stan Adkins", "w": 0.77}, {"d": "WV House District 48", "rep": "Greg Watt", "w": 0.23}], "ss": [{"d": "WV Senate District 10", "rep": "Jack Woodrum, Vince Deeds", "w": 1.0}]}, "munis": [{"m": "Summersville", "p": [{"n": "Robert Shafer", "r": "Mayor, Summersville, WV"}]}], "slug": "nicholas"}, "54069": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.998}], "sh": [{"d": "WV House District 4", "rep": "Bill Flanigan", "w": 0.591}, {"d": "WV House District 3", "rep": "Jimmy Willis", "w": 0.322}, {"d": "WV House District 5", "rep": "Shawn Fluharty", "w": 0.085}], "ss": [{"d": "WV Senate District 1", "rep": "Laura Chapman, Ryan Weld", "w": 0.998}]}, "munis": [{"m": "Wheeling", "p": [{"n": "Denny Magruder", "r": "Mayor, Wheeling, WV"}]}], "slug": "ohio"}, "54071": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.997}], "sh": [{"d": "WV House District 67", "rep": "Elías Coop-González", "w": 0.513}, {"d": "WV House District 86", "rep": "Bryan Ward", "w": 0.486}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [], "slug": "pendleton"}, "54073": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 9", "rep": "Betsy Kelly", "w": 0.999}], "ss": [{"d": "WV Senate District 3", "rep": "Mike Azinger, Trenton Barnhart", "w": 1.0}]}, "munis": [], "slug": "pleasants"}, "54075": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.998}], "sh": [{"d": "WV House District 66", "rep": "Jonathan Kyle", "w": 0.63}, {"d": "WV House District 46", "rep": "Jeff Campbell", "w": 0.37}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [], "slug": "pocahontas"}, "54077": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 84", "rep": "Buck Jennings", "w": 0.562}, {"d": "WV House District 83", "rep": "George Street", "w": 0.438}], "ss": [{"d": "WV Senate District 14", "rep": "Jay Taylor, Randy Smith", "w": 1.0}]}, "munis": [], "slug": "preston"}, "54079": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 19", "rep": "Kathie Hess Crouse", "w": 0.486}, {"d": "WV House District 21", "rep": "Jarred Cannon", "w": 0.299}, {"d": "WV House District 20", "rep": "Sarah Drennan", "w": 0.14}, {"d": "WV House District 18", "rep": "Jim Butler", "w": 0.075}], "ss": [{"d": "WV Senate District 4", "rep": "Amy Grady, Eric Tarr", "w": 0.543}, {"d": "WV Senate District 8", "rep": "Glenn Jeffries, Kevan Bartlett", "w": 0.457}]}, "munis": [], "slug": "putnam"}, "54081": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 43", "rep": "Chris Toney", "w": 0.425}, {"d": "WV House District 42", "rep": "John Jordan", "w": 0.279}, {"d": "WV House District 45", "rep": "Eric Brooks", "w": 0.15}, {"d": "WV House District 41", "rep": "Jordan Maynor", "w": 0.129}, {"d": "WV House District 44", "rep": "Bill Roop", "w": 0.017}], "ss": [{"d": "WV Senate District 9", "rep": "Brian Helton, Rollan Roberts", "w": 1.0}]}, "munis": [{"m": "Beckley", "p": [{"n": "Ryan Neal", "r": "Mayor, Beckley, WV"}]}], "slug": "raleigh"}, "54083": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.998}], "sh": [{"d": "WV House District 66", "rep": "Jonathan Kyle", "w": 0.604}, {"d": "WV House District 67", "rep": "Elías Coop-González", "w": 0.396}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [], "slug": "randolph"}, "54085": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.996}], "sh": [{"d": "WV House District 9", "rep": "Betsy Kelly", "w": 1.0}], "ss": [{"d": "WV Senate District 3", "rep": "Mike Azinger, Trenton Barnhart", "w": 1.0}]}, "munis": [], "slug": "ritchie"}, "54087": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 15", "rep": "Erica Moore", "w": 1.0}], "ss": [{"d": "WV Senate District 8", "rep": "Glenn Jeffries, Kevan Bartlett", "w": 1.0}]}, "munis": [], "slug": "roane"}, "54089": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 41", "rep": "Jordan Maynor", "w": 0.633}, {"d": "WV House District 40", "rep": "Roy Cooper", "w": 0.367}], "ss": [{"d": "WV Senate District 10", "rep": "Jack Woodrum, Vince Deeds", "w": 1.0}]}, "munis": [], "slug": "summers"}, "54091": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 73", "rep": "Bryan Smith", "w": 1.0}], "ss": [{"d": "WV Senate District 12", "rep": "Ben Queen, Patrick Martin", "w": 0.536}, {"d": "WV Senate District 14", "rep": "Jay Taylor, Randy Smith", "w": 0.464}]}, "munis": [], "slug": "taylor"}, "54093": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 85", "rep": "John Paul Hott", "w": 1.0}], "ss": [{"d": "WV Senate District 14", "rep": "Jay Taylor, Randy Smith", "w": 1.0}]}, "munis": [], "slug": "tucker"}, "54095": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 9", "rep": "Betsy Kelly", "w": 0.531}, {"d": "WV House District 8", "rep": "Bill Bell", "w": 0.469}], "ss": [{"d": "WV Senate District 2", "rep": "Charles Clements, Chris Rose", "w": 1.0}]}, "munis": [], "slug": "tyler"}, "54097": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.998}], "sh": [{"d": "WV House District 65", "rep": "Robbie Martin", "w": 0.701}, {"d": "WV House District 68", "rep": "Chris Phillips", "w": 0.181}, {"d": "WV House District 64", "rep": "Adam Burkhammer", "w": 0.118}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [], "slug": "upshur"}, "54099": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.998}], "sh": [{"d": "WV House District 29", "rep": "Corby Dillon", "w": 0.687}, {"d": "WV House District 28", "rep": "Ryan Browning", "w": 0.291}, {"d": "WV House District 27", "rep": "Michael Amos", "w": 0.022}], "ss": [{"d": "WV Senate District 5", "rep": "Mike Woelfel, Scott Fuller", "w": 0.671}, {"d": "WV Senate District 6", "rep": "Craig Hart, Mark Maynard", "w": 0.328}]}, "munis": [], "slug": "wayne"}, "54101": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.999}], "sh": [{"d": "WV House District 48", "rep": "Greg Watt", "w": 1.0}], "ss": [{"d": "WV Senate District 11", "rep": "Bill Hamilton, Robbie Morris", "w": 1.0}]}, "munis": [], "slug": "webster"}, "54103": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 1.0}], "sh": [{"d": "WV House District 72", "rep": "Clay Riley", "w": 0.405}, {"d": "WV House District 8", "rep": "Bill Bell", "w": 0.313}, {"d": "WV House District 7", "rep": "Chuck Sheedy", "w": 0.248}, {"d": "WV House District 77", "rep": "Joe Statler", "w": 0.034}], "ss": [{"d": "WV Senate District 2", "rep": "Charles Clements, Chris Rose", "w": 1.0}]}, "munis": [], "slug": "wetzel"}, "54105": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 0.995}, {"d": "WV-02", "rep": "Riley M. Moore", "w": 0.005}], "sh": [{"d": "WV House District 15", "rep": "Erica Moore", "w": 0.776}, {"d": "WV House District 14", "rep": "Dave Foggin", "w": 0.223}], "ss": [{"d": "WV Senate District 3", "rep": "Mike Azinger, Trenton Barnhart", "w": 1.0}]}, "munis": [], "slug": "wirt"}, "54107": {"county": [], "districts": {"cd": [{"d": "WV-02", "rep": "Riley M. Moore", "w": 0.999}], "sh": [{"d": "WV House District 14", "rep": "Dave Foggin", "w": 0.48}, {"d": "WV House District 10", "rep": "Bill Anderson", "w": 0.388}, {"d": "WV House District 13", "rep": "Scot Heckert", "w": 0.069}, {"d": "WV House District 12", "rep": "Vernon Criss", "w": 0.039}, {"d": "WV House District 11", "rep": "Bob Fehrenbacher", "w": 0.024}], "ss": [{"d": "WV Senate District 3", "rep": "Mike Azinger, Trenton Barnhart", "w": 1.0}]}, "munis": [{"m": "Parkersburg", "p": [{"n": "Tom Joyce", "r": "Mayor, Parkersburg, WV"}]}], "slug": "wood"}, "54109": {"county": [], "districts": {"cd": [{"d": "WV-01", "rep": "Carol D. Miller", "w": 1.0}], "sh": [{"d": "WV House District 35", "rep": "Adam Vance", "w": 0.892}, {"d": "WV House District 43", "rep": "Chris Toney", "w": 0.107}], "ss": [{"d": "WV Senate District 9", "rep": "Brian Helton, Rollan Roberts", "w": 0.999}]}, "munis": [], "slug": "wyoming"}, "55001": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.997}], "sh": [{"d": "WI House District 72", "rep": "Scott Krug", "w": 0.481}, {"d": "WI House District 41", "rep": "Tony Kurtz", "w": 0.211}, {"d": "WI House District 39", "rep": "Alex Dallman", "w": 0.15}, {"d": "WI House District 57", "rep": "Kevin Petersen", "w": 0.104}, {"d": "WI House District 71", "rep": "Vinnie Miresse", "w": 0.054}], "ss": [{"d": "WI Senate District 24", "rep": "Patrick Testin", "w": 0.535}, {"d": "WI Senate District 14", "rep": "Sarah Keyeski", "w": 0.211}, {"d": "WI Senate District 13", "rep": "John Jagler", "w": 0.15}, {"d": "WI Senate District 19", "rep": "Rachael Cabral-Guevara", "w": 0.104}]}, "munis": [], "slug": "adams"}, "55003": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.459}], "sh": [{"d": "WI House District 74", "rep": "Chanz Green", "w": 0.331}, {"d": "WI House District 73", "rep": "Angela Stroud", "w": 0.126}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 0.457}]}, "munis": [{"m": "Ashland", "p": [{"n": "Matthew MacKenzie", "r": "Mayor, Ashland, WI"}]}], "slug": "ashland"}, "55005": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 67", "rep": "Dave Armstrong", "w": 1.0}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 1.0}]}, "munis": [{"m": "Barron", "p": [{"n": "Rod Nordby", "r": "Mayor, Barron, WI"}]}], "slug": "barron"}, "55007": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.738}], "sh": [{"d": "WI House District 73", "rep": "Angela Stroud", "w": 0.398}, {"d": "WI House District 74", "rep": "Chanz Green", "w": 0.341}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 0.739}]}, "munis": [{"m": "Bayfield", "p": [{"n": "Ted Dougherty", "r": "Mayor, Bayfield, WI"}]}], "slug": "bayfield"}, "55009": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 0.869}], "sh": [{"d": "WI House District 2", "rep": "Shae Sortwell", "w": 0.334}, {"d": "WI House District 1", "rep": "Joel Kitchens", "w": 0.147}, {"d": "WI House District 4", "rep": "David Steffen", "w": 0.092}, {"d": "WI House District 5", "rep": "Joy Goeben", "w": 0.08}, {"d": "WI House District 88", "rep": "Ben Franklin", "w": 0.07}, {"d": "WI House District 6", "rep": "Elijah Behnke", "w": 0.056}, {"d": "WI House District 90", "rep": "Amaad Rivera-Wagner", "w": 0.047}, {"d": "WI House District 89", "rep": "Ryan Spaude", "w": 0.042}], "ss": [{"d": "WI Senate District 1", "rep": "André Jacque", "w": 0.481}, {"d": "WI Senate District 2", "rep": "Eric Wimberger", "w": 0.228}, {"d": "WI Senate District 30", "rep": "Jamie Wall", "w": 0.159}]}, "munis": [{"m": "De Pere", "p": [{"n": "James Boyd", "r": "Mayor, De Pere, WI"}]}, {"m": "Green Bay", "p": [{"n": "Eric Genrich", "r": "Mayor, Green Bay, WI"}]}], "slug": "brown"}, "55011": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 29", "rep": "Treig Pronschinske", "w": 1.0}], "ss": [{"d": "WI Senate District 10", "rep": "Rob Stafsholt", "w": 1.0}]}, "munis": [{"m": "Alma", "p": [{"n": "Richard Champeny", "r": "Mayor, Alma, WI"}]}], "slug": "buffalo"}, "55013": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 75", "rep": "Duke Tucker", "w": 0.809}, {"d": "WI House District 74", "rep": "Chanz Green", "w": 0.191}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 1.0}]}, "munis": [], "slug": "burnett"}, "55015": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 0.776}, {"d": "WI-06", "rep": "Glenn Grothman", "w": 0.224}], "sh": [{"d": "WI House District 3", "rep": "Ron Tusler", "w": 0.805}], "ss": [{"d": "WI Senate District 1", "rep": "André Jacque", "w": 0.805}]}, "munis": [], "slug": "calumet"}, "55017": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.788}, {"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.212}], "sh": [{"d": "WI House District 68", "rep": "Rob Summerfield", "w": 0.697}, {"d": "WI House District 92", "rep": "Clint Moses", "w": 0.13}, {"d": "WI House District 91", "rep": "Jodi Emerson", "w": 0.089}, {"d": "WI House District 69", "rep": "Karen Hurd", "w": 0.046}, {"d": "WI House District 67", "rep": "Dave Armstrong", "w": 0.037}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 0.781}, {"d": "WI Senate District 31", "rep": "Jeff Smith", "w": 0.219}]}, "munis": [{"m": "Chippewa Falls", "p": [{"n": "Gregory S. Hoffman", "r": "Mayor, Chippewa Falls, WI"}]}], "slug": "chippewa"}, "55019": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 69", "rep": "Karen Hurd", "w": 1.0}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 1.0}]}, "munis": [{"m": "Abbotsford", "p": [{"n": "James Weix", "r": "Mayor, Abbotsford, WI"}]}], "slug": "clark"}, "55021": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 0.998}], "sh": [{"d": "WI House District 42", "rep": "Maureen McCarville", "w": 0.505}, {"d": "WI House District 40", "rep": "Karen DeSanto", "w": 0.327}, {"d": "WI House District 39", "rep": "Alex Dallman", "w": 0.136}, {"d": "WI House District 41", "rep": "Tony Kurtz", "w": 0.031}], "ss": [{"d": "WI Senate District 14", "rep": "Sarah Keyeski", "w": 0.863}, {"d": "WI Senate District 13", "rep": "John Jagler", "w": 0.137}]}, "munis": [{"m": "Columbus", "p": [{"n": "Joe Hammer", "r": "Mayor, Columbus, WI"}]}, {"m": "Portage", "p": [{"n": "Mitchel Craig", "r": "Mayor, Portage, WI"}]}], "slug": "columbia"}, "55023": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 49", "rep": "Travis Tranel", "w": 1.0}], "ss": [{"d": "WI Senate District 17", "rep": "Howard Marklein", "w": 1.0}]}, "munis": [], "slug": "crawford"}, "55025": {"county": [], "districts": {"cd": [{"d": "WI-02", "rep": "Mark Pocan", "w": 1.0}], "sh": [{"d": "WI House District 81", "rep": "Alex Joers", "w": 0.194}, {"d": "WI House District 47", "rep": "Randy Udell", "w": 0.159}, {"d": "WI House District 50", "rep": "Jenna Jacobson", "w": 0.144}, {"d": "WI House District 46", "rep": "Joan Fitzgerald", "w": 0.13}, {"d": "WI House District 48", "rep": "Andrew Hysell", "w": 0.101}, {"d": "WI House District 80", "rep": "Mike Bare", "w": 0.075}, {"d": "WI House District 42", "rep": "Maureen McCarville", "w": 0.071}, {"d": "WI House District 51", "rep": "Todd Novak", "w": 0.059}, {"d": "WI House District 78", "rep": "Shelia Stubbs", "w": 0.03}, {"d": "WI House District 77", "rep": "Renuka Mayadev", "w": 0.016}, {"d": "WI House District 79", "rep": "Lisa Subeck", "w": 0.012}, {"d": "WI House District 76", "rep": "Francesca Hong", "w": 0.008}], "ss": [{"d": "WI Senate District 16", "rep": "Melissa Ratcliff", "w": 0.39}, {"d": "WI Senate District 27", "rep": "Dianne Hesselbein", "w": 0.281}, {"d": "WI Senate District 17", "rep": "Howard Marklein", "w": 0.203}, {"d": "WI Senate District 14", "rep": "Sarah Keyeski", "w": 0.071}, {"d": "WI Senate District 26", "rep": "Kelda Roys", "w": 0.054}]}, "munis": [{"m": "Fitchburg", "p": [{"n": "Julia Arata-Fratta", "r": "Mayor, Fitchburg, WI"}]}, {"m": "Madison", "p": [{"n": "Satya Rhodes-Conway", "r": "Mayor, Madison, WI"}]}, {"m": "Middleton", "p": [{"n": "Emily Kuhn", "r": "Mayor, Middleton, WI"}]}, {"m": "Stoughton", "p": [{"n": "Tim Swadley", "r": "Mayor, Stoughton, WI"}]}, {"m": "Sun Prairie", "p": [{"n": "Paul Esser", "r": "Mayor, Sun Prairie, WI"}]}, {"m": "Verona", "p": [{"n": "Luke Diaz", "r": "Mayor, Verona, WI"}]}], "slug": "dane"}, "55027": {"county": [], "districts": {"cd": [{"d": "WI-05", "rep": "Scott Fitzgerald", "w": 0.625}, {"d": "WI-06", "rep": "Glenn Grothman", "w": 0.374}], "sh": [{"d": "WI House District 37", "rep": "Mark Born", "w": 0.435}, {"d": "WI House District 38", "rep": "Will Penterman", "w": 0.328}, {"d": "WI House District 99", "rep": "Barbara Dittrich", "w": 0.118}, {"d": "WI House District 48", "rep": "Andrew Hysell", "w": 0.079}, {"d": "WI House District 59", "rep": "Rob Brooks", "w": 0.04}], "ss": [{"d": "WI Senate District 13", "rep": "John Jagler", "w": 0.763}, {"d": "WI Senate District 33", "rep": "Chris Kapenga", "w": 0.118}, {"d": "WI Senate District 16", "rep": "Melissa Ratcliff", "w": 0.079}, {"d": "WI Senate District 20", "rep": "Dan Feyen", "w": 0.04}]}, "munis": [{"m": "Beaver Dam", "p": [{"n": "Mike Wissell", "r": "Mayor, Beaver Dam, WI"}]}, {"m": "Waupun", "p": [{"n": "Rohn W. Bishop", "r": "Mayor, Waupun, WI"}]}], "slug": "dodge"}, "55029": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 0.215}], "sh": [{"d": "WI House District 1", "rep": "Joel Kitchens", "w": 0.206}], "ss": [{"d": "WI Senate District 1", "rep": "André Jacque", "w": 0.206}]}, "munis": [], "slug": "door"}, "55031": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.906}], "sh": [{"d": "WI House District 74", "rep": "Chanz Green", "w": 0.583}, {"d": "WI House District 73", "rep": "Angela Stroud", "w": 0.323}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 0.907}]}, "munis": [{"m": "Superior", "p": [{"n": "Jim Paine", "r": "Mayor, Superior, WI"}]}], "slug": "douglas"}, "55033": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 67", "rep": "Dave Armstrong", "w": 0.46}, {"d": "WI House District 93", "rep": "Christian Phelps", "w": 0.197}, {"d": "WI House District 28", "rep": "Rob Kreibich", "w": 0.189}, {"d": "WI House District 92", "rep": "Clint Moses", "w": 0.154}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 0.46}, {"d": "WI Senate District 31", "rep": "Jeff Smith", "w": 0.351}, {"d": "WI Senate District 10", "rep": "Rob Stafsholt", "w": 0.189}]}, "munis": [{"m": "Menomonie", "p": [{"n": "Randy Knaack", "r": "Mayor, Menomonie, WI"}]}], "slug": "dunn"}, "55035": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 91", "rep": "Jodi Emerson", "w": 0.633}, {"d": "WI House District 93", "rep": "Christian Phelps", "w": 0.367}], "ss": [{"d": "WI Senate District 31", "rep": "Jeff Smith", "w": 1.0}]}, "munis": [{"m": "Altoona", "p": [{"n": "Brendan Pratt", "r": "Mayor, Altoona, WI"}]}], "slug": "eau-claire"}, "55037": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.996}], "sh": [{"d": "WI House District 36", "rep": "Jeff Mursau", "w": 1.0}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 1.0}]}, "munis": [], "slug": "florence"}, "55039": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 1.0}], "sh": [{"d": "WI House District 39", "rep": "Alex Dallman", "w": 0.332}, {"d": "WI House District 59", "rep": "Rob Brooks", "w": 0.237}, {"d": "WI House District 37", "rep": "Mark Born", "w": 0.143}, {"d": "WI House District 27", "rep": "Lindee Brill", "w": 0.126}, {"d": "WI House District 60", "rep": "Jerry O'Connor", "w": 0.111}], "ss": [{"d": "WI Senate District 13", "rep": "John Jagler", "w": 0.475}, {"d": "WI Senate District 20", "rep": "Dan Feyen", "w": 0.348}, {"d": "WI Senate District 9", "rep": "Devin LeMahieu", "w": 0.126}]}, "munis": [], "slug": "fond-du-lac"}, "55041": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.999}], "sh": [{"d": "WI House District 36", "rep": "Jeff Mursau", "w": 1.0}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 1.0}]}, "munis": [], "slug": "forest"}, "55043": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 49", "rep": "Travis Tranel", "w": 0.82}, {"d": "WI House District 51", "rep": "Todd Novak", "w": 0.18}], "ss": [{"d": "WI Senate District 17", "rep": "Howard Marklein", "w": 1.0}]}, "munis": [], "slug": "grant"}, "55045": {"county": [], "districts": {"cd": [{"d": "WI-02", "rep": "Mark Pocan", "w": 1.0}], "sh": [{"d": "WI House District 50", "rep": "Jenna Jacobson", "w": 1.0}], "ss": [{"d": "WI Senate District 17", "rep": "Howard Marklein", "w": 1.0}]}, "munis": [{"m": "Monroe", "p": [{"n": "Donna Douglas", "r": "Mayor, Monroe, WI"}]}], "slug": "green"}, "55047": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 1.0}], "sh": [{"d": "WI House District 39", "rep": "Alex Dallman", "w": 1.0}], "ss": [{"d": "WI Senate District 13", "rep": "John Jagler", "w": 1.0}]}, "munis": [{"m": "Berlin", "p": [{"n": "Joel Bruessel", "r": "Mayor, Berlin, WI"}]}], "slug": "green-lake"}, "55049": {"county": [], "districts": {"cd": [{"d": "WI-02", "rep": "Mark Pocan", "w": 0.999}], "sh": [{"d": "WI House District 51", "rep": "Todd Novak", "w": 1.0}], "ss": [{"d": "WI Senate District 17", "rep": "Howard Marklein", "w": 1.0}]}, "munis": [], "slug": "iowa"}, "55051": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.872}], "sh": [{"d": "WI House District 74", "rep": "Chanz Green", "w": 0.872}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 0.872}]}, "munis": [], "slug": "iron"}, "55053": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.68}, {"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.32}], "sh": [{"d": "WI House District 70", "rep": "Nancy VanderMeer", "w": 1.0}], "ss": [{"d": "WI Senate District 24", "rep": "Patrick Testin", "w": 1.0}]}, "munis": [], "slug": "jackson"}, "55055": {"county": [], "districts": {"cd": [{"d": "WI-05", "rep": "Scott Fitzgerald", "w": 1.0}], "sh": [{"d": "WI House District 46", "rep": "Joan Fitzgerald", "w": 0.386}, {"d": "WI House District 38", "rep": "Will Penterman", "w": 0.27}, {"d": "WI House District 97", "rep": "Cindi Duchow", "w": 0.237}, {"d": "WI House District 99", "rep": "Barbara Dittrich", "w": 0.063}, {"d": "WI House District 43", "rep": "Brienne Brown", "w": 0.044}], "ss": [{"d": "WI Senate District 16", "rep": "Melissa Ratcliff", "w": 0.386}, {"d": "WI Senate District 33", "rep": "Chris Kapenga", "w": 0.3}, {"d": "WI Senate District 13", "rep": "John Jagler", "w": 0.27}, {"d": "WI Senate District 15", "rep": "Mark Spreitzer", "w": 0.044}]}, "munis": [{"m": "Watertown", "p": [{"n": "Emily McFarland", "r": "Mayor, Watertown, WI"}]}], "slug": "jefferson"}, "55057": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.541}, {"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.459}], "sh": [{"d": "WI House District 72", "rep": "Scott Krug", "w": 0.536}, {"d": "WI House District 70", "rep": "Nancy VanderMeer", "w": 0.252}, {"d": "WI House District 41", "rep": "Tony Kurtz", "w": 0.212}], "ss": [{"d": "WI Senate District 24", "rep": "Patrick Testin", "w": 0.788}, {"d": "WI Senate District 14", "rep": "Sarah Keyeski", "w": 0.212}]}, "munis": [], "slug": "juneau"}, "55059": {"county": [], "districts": {"cd": [{"d": "WI-01", "rep": "Bryan Steil", "w": 0.369}], "sh": [{"d": "WI House District 32", "rep": "Amanda Nedweski", "w": 0.282}, {"d": "WI House District 64", "rep": "Tip McGuire", "w": 0.06}, {"d": "WI House District 65", "rep": "Ben DeSmidt", "w": 0.028}], "ss": [{"d": "WI Senate District 11", "rep": "Steve Nass", "w": 0.282}, {"d": "WI Senate District 22", "rep": "Bob Wirch", "w": 0.087}]}, "munis": [{"m": "Kenosha", "p": [{"n": "David Bogdala", "r": "Mayor, Kenosha, WI"}]}], "slug": "kenosha"}, "55061": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 0.317}], "sh": [{"d": "WI House District 1", "rep": "Joel Kitchens", "w": 0.317}], "ss": [{"d": "WI Senate District 1", "rep": "André Jacque", "w": 0.317}]}, "munis": [{"m": "Algoma", "p": [{"n": "Steve Lautenbach", "r": "Mayor, Algoma, WI"}]}], "slug": "kewaunee"}, "55063": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 94", "rep": "Steve Doyle", "w": 0.496}, {"d": "WI House District 95", "rep": "Jill Billings", "w": 0.367}, {"d": "WI House District 96", "rep": "Tara Johnson", "w": 0.136}], "ss": [{"d": "WI Senate District 32", "rep": "Brad Pfaff", "w": 1.0}]}, "munis": [{"m": "La Crosse", "p": [{"n": "Mitch Reynolds", "r": "Mayor, La Crosse, WI"}]}, {"m": "Onalaska", "p": [{"n": "Kim Smith", "r": "Mayor, Onalaska, WI"}]}], "slug": "la-crosse"}, "55065": {"county": [], "districts": {"cd": [{"d": "WI-02", "rep": "Mark Pocan", "w": 1.0}], "sh": [{"d": "WI House District 51", "rep": "Todd Novak", "w": 1.0}], "ss": [{"d": "WI Senate District 17", "rep": "Howard Marklein", "w": 1.0}]}, "munis": [], "slug": "lafayette"}, "55067": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 35", "rep": "Calvin Callahan", "w": 1.0}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 1.0}]}, "munis": [{"m": "Antigo", "p": [{"n": "Thomas Bauknecht", "r": "Mayor, Antigo, WI"}]}], "slug": "langlade"}, "55069": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 35", "rep": "Calvin Callahan", "w": 1.0}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 1.0}]}, "munis": [], "slug": "lincoln"}, "55071": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 0.399}], "sh": [{"d": "WI House District 2", "rep": "Shae Sortwell", "w": 0.154}, {"d": "WI House District 25", "rep": "Paul Tittl", "w": 0.124}, {"d": "WI House District 3", "rep": "Ron Tusler", "w": 0.096}, {"d": "WI House District 27", "rep": "Lindee Brill", "w": 0.024}], "ss": [{"d": "WI Senate District 1", "rep": "André Jacque", "w": 0.25}, {"d": "WI Senate District 9", "rep": "Devin LeMahieu", "w": 0.148}]}, "munis": [{"m": "Manitowoc", "p": [{"n": "Justin M. Nickels", "r": "Mayor, Manitowoc, WI"}]}], "slug": "manitowoc"}, "55073": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 86", "rep": "John Spiros", "w": 0.288}, {"d": "WI House District 87", "rep": "Brent Jacobson", "w": 0.279}, {"d": "WI House District 69", "rep": "Karen Hurd", "w": 0.199}, {"d": "WI House District 35", "rep": "Calvin Callahan", "w": 0.179}, {"d": "WI House District 85", "rep": "Pat Snyder", "w": 0.055}], "ss": [{"d": "WI Senate District 29", "rep": "Cory Tomczyk", "w": 0.621}, {"d": "WI Senate District 23", "rep": "Jesse James", "w": 0.199}, {"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 0.179}]}, "munis": [{"m": "Wausau", "p": [{"n": "Doug Diny", "r": "Mayor, Wausau, WI"}]}], "slug": "marathon"}, "55075": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 0.92}], "sh": [{"d": "WI House District 36", "rep": "Jeff Mursau", "w": 0.922}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 0.922}]}, "munis": [{"m": "Marinette", "p": [{"n": "Steve Genisot", "r": "Mayor, Marinette, WI"}]}], "slug": "marinette"}, "55077": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 1.0}], "sh": [{"d": "WI House District 39", "rep": "Alex Dallman", "w": 1.0}], "ss": [{"d": "WI Senate District 13", "rep": "John Jagler", "w": 1.0}]}, "munis": [], "slug": "marquette"}, "55078": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 1.0}], "sh": [{"d": "WI House District 6", "rep": "Elijah Behnke", "w": 1.0}], "ss": [{"d": "WI Senate District 2", "rep": "Eric Wimberger", "w": 1.0}]}, "munis": [], "slug": "menominee"}, "55079": {"county": [], "districts": {"cd": [{"d": "WI-04", "rep": "Gwen Moore", "w": 0.118}, {"d": "WI-01", "rep": "Bryan Steil", "w": 0.07}, {"d": "WI-05", "rep": "Scott Fitzgerald", "w": 0.015}], "sh": [{"d": "WI House District 21", "rep": "Jessie Rodriguez", "w": 0.031}, {"d": "WI House District 63", "rep": "Bob Wittke", "w": 0.029}, {"d": "WI House District 12", "rep": "Russell Goodwin", "w": 0.017}, {"d": "WI House District 61", "rep": "Bob Donovan", "w": 0.016}, {"d": "WI House District 23", "rep": "Deb Andraca", "w": 0.014}, {"d": "WI House District 20", "rep": "Christine Sinicki", "w": 0.012}, {"d": "WI House District 11", "rep": "Sequanna Taylor", "w": 0.011}, {"d": "WI House District 10", "rep": "Darrin Madison", "w": 0.01}, {"d": "WI House District 14", "rep": "Angelito Tenorio", "w": 0.01}, {"d": "WI House District 7", "rep": "Karen Kirsch", "w": 0.009}, {"d": "WI House District 13", "rep": "Robyn Vining", "w": 0.009}, {"d": "WI House District 9", "rep": "Priscilla Prado", "w": 0.007}, {"d": "WI House District 17", "rep": "Supreme Moore Omokunde", "w": 0.007}, {"d": "WI House District 18", "rep": "Margaret Arney", "w": 0.006}, {"d": "WI House District 16", "rep": "Kalan Haywood", "w": 0.006}, {"d": "WI House District 19", "rep": "Ryan Clancy", "w": 0.005}], "ss": [{"d": "WI Senate District 7", "rep": "Chris Larson", "w": 0.048}, {"d": "WI Senate District 21", "rep": "Van Wanggaard", "w": 0.044}, {"d": "WI Senate District 4", "rep": "Dora Drake", "w": 0.038}, {"d": "WI Senate District 3", "rep": "Tim Carpenter", "w": 0.021}, {"d": "WI Senate District 5", "rep": "Rob Hutton", "w": 0.019}, {"d": "WI Senate District 6", "rep": "LaTonya Johnson", "w": 0.019}, {"d": "WI Senate District 8", "rep": "Jodi Habush Sinykin", "w": 0.014}]}, "munis": [{"m": "Cudahy", "p": [{"n": "Thomas Pavlic", "r": "Mayor, Cudahy, WI"}]}, {"m": "Franklin", "p": [{"n": "John Nelson", "r": "Mayor, Franklin, WI"}]}, {"m": "Glendale", "p": [{"n": "Bryan Kennedy", "r": "Mayor, Glendale, WI"}]}, {"m": "Greenfield", "p": [{"n": "Michael J. Neitzke", "r": "Mayor, Greenfield, WI"}]}, {"m": "Milwaukee", "p": [{"n": "Cavalier Johnson", "r": "Mayor, Milwaukee, WI"}]}, {"m": "Oak Creek", "p": [{"n": "Daniel Bukiewicz", "r": "Mayor, Oak Creek, WI"}]}, {"m": "South Milwaukee", "p": [{"n": "Jim Shelenske", "r": "Mayor, South Milwaukee, WI"}]}, {"m": "Wauwatosa", "p": [{"n": "Q91356856", "r": "Mayor, Wauwatosa, WI"}]}, {"m": "West Allis", "p": [{"n": "Dan Devine", "r": "Mayor, West Allis, WI"}]}], "slug": "milwaukee"}, "55081": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.847}, {"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.153}], "sh": [{"d": "WI House District 70", "rep": "Nancy VanderMeer", "w": 0.665}, {"d": "WI House District 95", "rep": "Jill Billings", "w": 0.334}], "ss": [{"d": "WI Senate District 24", "rep": "Patrick Testin", "w": 0.666}, {"d": "WI Senate District 32", "rep": "Brad Pfaff", "w": 0.334}]}, "munis": [{"m": "Sparta", "p": [{"n": "Kevin Riley", "r": "Mayor, Sparta, WI"}]}], "slug": "monroe"}, "55083": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 0.885}], "sh": [{"d": "WI House District 36", "rep": "Jeff Mursau", "w": 0.331}, {"d": "WI House District 4", "rep": "David Steffen", "w": 0.331}, {"d": "WI House District 6", "rep": "Elijah Behnke", "w": 0.186}, {"d": "WI House District 35", "rep": "Calvin Callahan", "w": 0.037}], "ss": [{"d": "WI Senate District 2", "rep": "Eric Wimberger", "w": 0.517}, {"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 0.368}]}, "munis": [], "slug": "oconto"}, "55085": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 34", "rep": "Rob Swearingen", "w": 0.97}, {"d": "WI House District 35", "rep": "Calvin Callahan", "w": 0.03}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 1.0}]}, "munis": [], "slug": "oneida"}, "55087": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 1.0}], "sh": [{"d": "WI House District 56", "rep": "Dave Murphy", "w": 0.533}, {"d": "WI House District 5", "rep": "Joy Goeben", "w": 0.34}, {"d": "WI House District 57", "rep": "Kevin Petersen", "w": 0.047}, {"d": "WI House District 2", "rep": "Shae Sortwell", "w": 0.037}, {"d": "WI House District 52", "rep": "Lee Snodgrass", "w": 0.034}, {"d": "WI House District 55", "rep": "Gus Gustafson", "w": 0.006}], "ss": [{"d": "WI Senate District 19", "rep": "Rachael Cabral-Guevara", "w": 0.587}, {"d": "WI Senate District 2", "rep": "Eric Wimberger", "w": 0.34}, {"d": "WI Senate District 1", "rep": "André Jacque", "w": 0.037}, {"d": "WI Senate District 18", "rep": "Kristin Dassler-Alfheim", "w": 0.036}]}, "munis": [{"m": "Appleton", "p": [{"n": "Jake Woodford", "r": "Mayor, Appleton, WI"}]}], "slug": "outagamie"}, "55089": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 0.209}], "sh": [{"d": "WI House District 59", "rep": "Rob Brooks", "w": 0.099}, {"d": "WI House District 22", "rep": "Paul Melotik", "w": 0.093}, {"d": "WI House District 23", "rep": "Deb Andraca", "w": 0.018}], "ss": [{"d": "WI Senate District 8", "rep": "Jodi Habush Sinykin", "w": 0.111}, {"d": "WI Senate District 20", "rep": "Dan Feyen", "w": 0.099}]}, "munis": [{"m": "Mequon", "p": [{"n": "Andrew Nerbun", "r": "Mayor, Mequon, WI"}]}, {"m": "Port Washington", "p": [{"n": "Ted Neitzke IV", "r": "Mayor, Port Washington, WI"}]}], "slug": "ozaukee"}, "55091": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 29", "rep": "Treig Pronschinske", "w": 1.0}], "ss": [{"d": "WI Senate District 10", "rep": "Rob Stafsholt", "w": 1.0}]}, "munis": [], "slug": "pepin"}, "55093": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.999}], "sh": [{"d": "WI House District 29", "rep": "Treig Pronschinske", "w": 0.68}, {"d": "WI House District 28", "rep": "Rob Kreibich", "w": 0.179}, {"d": "WI House District 30", "rep": "Shannon Zimmerman", "w": 0.141}], "ss": [{"d": "WI Senate District 10", "rep": "Rob Stafsholt", "w": 1.0}]}, "munis": [], "slug": "pierce"}, "55095": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 75", "rep": "Duke Tucker", "w": 1.0}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 1.0}]}, "munis": [{"m": "Amery", "p": [{"n": "Rick Van Blaricom", "r": "Mayor, Amery, WI"}]}], "slug": "polk"}, "55097": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 71", "rep": "Vinnie Miresse", "w": 0.494}, {"d": "WI House District 87", "rep": "Brent Jacobson", "w": 0.226}, {"d": "WI House District 57", "rep": "Kevin Petersen", "w": 0.141}, {"d": "WI House District 86", "rep": "John Spiros", "w": 0.139}], "ss": [{"d": "WI Senate District 24", "rep": "Patrick Testin", "w": 0.494}, {"d": "WI Senate District 29", "rep": "Cory Tomczyk", "w": 0.365}, {"d": "WI Senate District 19", "rep": "Rachael Cabral-Guevara", "w": 0.141}]}, "munis": [{"m": "Stevens Point", "p": [{"n": "Mike Wiza", "r": "Mayor, Stevens Point, WI"}]}], "slug": "portage"}, "55099": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 68", "rep": "Rob Summerfield", "w": 1.0}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 1.0}]}, "munis": [], "slug": "price"}, "55101": {"county": [], "districts": {"cd": [{"d": "WI-01", "rep": "Bryan Steil", "w": 0.429}], "sh": [{"d": "WI House District 33", "rep": "Robin Vos", "w": 0.166}, {"d": "WI House District 63", "rep": "Bob Wittke", "w": 0.096}, {"d": "WI House District 84", "rep": "Chuck Wichgers", "w": 0.091}, {"d": "WI House District 66", "rep": "Greta Neubauer", "w": 0.053}, {"d": "WI House District 62", "rep": "Angelina Cruz", "w": 0.024}], "ss": [{"d": "WI Senate District 11", "rep": "Steve Nass", "w": 0.166}, {"d": "WI Senate District 21", "rep": "Van Wanggaard", "w": 0.119}, {"d": "WI Senate District 28", "rep": "Julian Bradley", "w": 0.091}, {"d": "WI Senate District 22", "rep": "Bob Wirch", "w": 0.053}]}, "munis": [{"m": "Burlington", "p": [{"n": "Jon Schultz", "r": "Mayor, Burlington, WI"}]}, {"m": "Racine", "p": [{"n": "John Dickert", "r": "Mayor, Racine, WI"}]}], "slug": "racine"}, "55103": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 41", "rep": "Tony Kurtz", "w": 1.0}], "ss": [{"d": "WI Senate District 14", "rep": "Sarah Keyeski", "w": 1.0}]}, "munis": [], "slug": "richland"}, "55105": {"county": [], "districts": {"cd": [{"d": "WI-02", "rep": "Mark Pocan", "w": 0.548}, {"d": "WI-01", "rep": "Bryan Steil", "w": 0.451}], "sh": [{"d": "WI House District 45", "rep": "Clint Anderson", "w": 0.349}, {"d": "WI House District 44", "rep": "Ann Roe", "w": 0.308}, {"d": "WI House District 43", "rep": "Brienne Brown", "w": 0.242}, {"d": "WI House District 31", "rep": "Tyler August", "w": 0.1}], "ss": [{"d": "WI Senate District 15", "rep": "Mark Spreitzer", "w": 0.899}, {"d": "WI Senate District 11", "rep": "Steve Nass", "w": 0.1}]}, "munis": [], "slug": "rock"}, "55107": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 68", "rep": "Rob Summerfield", "w": 1.0}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 1.0}]}, "munis": [], "slug": "rusk"}, "55109": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 28", "rep": "Rob Kreibich", "w": 0.801}, {"d": "WI House District 30", "rep": "Shannon Zimmerman", "w": 0.199}], "ss": [{"d": "WI Senate District 10", "rep": "Rob Stafsholt", "w": 1.0}]}, "munis": [{"m": "Hudson", "p": [{"n": "Rich O'Connor", "r": "Mayor, Hudson, WI"}]}, {"m": "New Richmond", "p": [{"n": "Jim Zajkowsk", "r": "Mayor, New Richmond, WI"}]}], "slug": "st-croix"}, "55111": {"county": [], "districts": {"cd": [{"d": "WI-02", "rep": "Mark Pocan", "w": 0.876}, {"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.122}], "sh": [{"d": "WI House District 40", "rep": "Karen DeSanto", "w": 0.532}, {"d": "WI House District 41", "rep": "Tony Kurtz", "w": 0.468}], "ss": [{"d": "WI Senate District 14", "rep": "Sarah Keyeski", "w": 1.0}]}, "munis": [{"m": "Baraboo", "p": [{"n": "Rob Nelson", "r": "Mayor, Baraboo, WI"}]}], "slug": "sauk"}, "55113": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 74", "rep": "Chanz Green", "w": 1.0}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 1.0}]}, "munis": [], "slug": "sawyer"}, "55115": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 1.0}], "sh": [{"d": "WI House District 6", "rep": "Elijah Behnke", "w": 0.644}, {"d": "WI House District 87", "rep": "Brent Jacobson", "w": 0.278}, {"d": "WI House District 35", "rep": "Calvin Callahan", "w": 0.078}], "ss": [{"d": "WI Senate District 2", "rep": "Eric Wimberger", "w": 0.644}, {"d": "WI Senate District 29", "rep": "Cory Tomczyk", "w": 0.278}, {"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 0.078}]}, "munis": [], "slug": "shawano"}, "55117": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 0.407}], "sh": [{"d": "WI House District 27", "rep": "Lindee Brill", "w": 0.262}, {"d": "WI House District 59", "rep": "Rob Brooks", "w": 0.091}, {"d": "WI House District 26", "rep": "Joe Sheehan", "w": 0.035}, {"d": "WI House District 25", "rep": "Paul Tittl", "w": 0.02}], "ss": [{"d": "WI Senate District 9", "rep": "Devin LeMahieu", "w": 0.316}, {"d": "WI Senate District 20", "rep": "Dan Feyen", "w": 0.091}]}, "munis": [{"m": "Sheboygan", "p": [{"n": "Ryan Sorenson", "r": "Mayor, Sheboygan, WI"}]}], "slug": "sheboygan"}, "55119": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 68", "rep": "Rob Summerfield", "w": 0.814}, {"d": "WI House District 69", "rep": "Karen Hurd", "w": 0.186}], "ss": [{"d": "WI Senate District 23", "rep": "Jesse James", "w": 1.0}]}, "munis": [], "slug": "taylor"}, "55121": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 29", "rep": "Treig Pronschinske", "w": 0.638}, {"d": "WI House District 94", "rep": "Steve Doyle", "w": 0.216}, {"d": "WI House District 93", "rep": "Christian Phelps", "w": 0.145}], "ss": [{"d": "WI Senate District 10", "rep": "Rob Stafsholt", "w": 0.638}, {"d": "WI Senate District 32", "rep": "Brad Pfaff", "w": 0.216}, {"d": "WI Senate District 31", "rep": "Jeff Smith", "w": 0.145}]}, "munis": [{"m": "Arcadia", "p": [{"n": "John Kimmel", "r": "Mayor, Arcadia, WI"}]}], "slug": "trempealeau"}, "55123": {"county": [], "districts": {"cd": [{"d": "WI-03", "rep": "Derrick Van Orden", "w": 1.0}], "sh": [{"d": "WI House District 96", "rep": "Tara Johnson", "w": 0.998}], "ss": [{"d": "WI Senate District 32", "rep": "Brad Pfaff", "w": 0.998}]}, "munis": [], "slug": "vernon"}, "55125": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 34", "rep": "Rob Swearingen", "w": 1.0}], "ss": [{"d": "WI Senate District 12", "rep": "Mary Felzkowski", "w": 1.0}]}, "munis": [], "slug": "vilas"}, "55127": {"county": [], "districts": {"cd": [{"d": "WI-01", "rep": "Bryan Steil", "w": 0.938}, {"d": "WI-05", "rep": "Scott Fitzgerald", "w": 0.062}], "sh": [{"d": "WI House District 31", "rep": "Tyler August", "w": 0.536}, {"d": "WI House District 33", "rep": "Robin Vos", "w": 0.274}, {"d": "WI House District 43", "rep": "Brienne Brown", "w": 0.125}, {"d": "WI House District 32", "rep": "Amanda Nedweski", "w": 0.062}], "ss": [{"d": "WI Senate District 11", "rep": "Steve Nass", "w": 0.872}, {"d": "WI Senate District 15", "rep": "Mark Spreitzer", "w": 0.125}]}, "munis": [{"m": "Elkhorn", "p": [{"n": "Tim Shiroda", "r": "Mayor, Elkhorn, WI"}]}], "slug": "walworth"}, "55129": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 1.0}], "sh": [{"d": "WI House District 74", "rep": "Chanz Green", "w": 1.0}], "ss": [{"d": "WI Senate District 25", "rep": "Romaine Quinn", "w": 1.0}]}, "munis": [], "slug": "washburn"}, "55131": {"county": [], "districts": {"cd": [{"d": "WI-05", "rep": "Scott Fitzgerald", "w": 1.0}], "sh": [{"d": "WI House District 59", "rep": "Rob Brooks", "w": 0.356}, {"d": "WI House District 58", "rep": "Rick Gundrum", "w": 0.314}, {"d": "WI House District 98", "rep": "Jim Piwowarczyk", "w": 0.253}, {"d": "WI House District 22", "rep": "Paul Melotik", "w": 0.044}, {"d": "WI House District 24", "rep": "Dan Knodl", "w": 0.032}], "ss": [{"d": "WI Senate District 20", "rep": "Dan Feyen", "w": 0.671}, {"d": "WI Senate District 33", "rep": "Chris Kapenga", "w": 0.253}, {"d": "WI Senate District 8", "rep": "Jodi Habush Sinykin", "w": 0.076}]}, "munis": [{"m": "Hartford", "p": [{"n": "Timothy Michalak", "r": "Mayor, Hartford, WI"}]}, {"m": "West Bend", "p": [{"n": "Joel Ongert", "r": "Mayor, West Bend, WI"}]}], "slug": "washington"}, "55133": {"county": [], "districts": {"cd": [{"d": "WI-05", "rep": "Scott Fitzgerald", "w": 1.0}], "sh": [{"d": "WI House District 97", "rep": "Cindi Duchow", "w": 0.326}, {"d": "WI House District 99", "rep": "Barbara Dittrich", "w": 0.144}, {"d": "WI House District 84", "rep": "Chuck Wichgers", "w": 0.143}, {"d": "WI House District 83", "rep": "Dave Maxey", "w": 0.095}, {"d": "WI House District 15", "rep": "Adam Neylon", "w": 0.084}, {"d": "WI House District 98", "rep": "Jim Piwowarczyk", "w": 0.067}, {"d": "WI House District 24", "rep": "Dan Knodl", "w": 0.063}, {"d": "WI House District 82", "rep": "Scott Allen", "w": 0.051}, {"d": "WI House District 13", "rep": "Robyn Vining", "w": 0.026}], "ss": [{"d": "WI Senate District 33", "rep": "Chris Kapenga", "w": 0.537}, {"d": "WI Senate District 28", "rep": "Julian Bradley", "w": 0.289}, {"d": "WI Senate District 5", "rep": "Rob Hutton", "w": 0.11}, {"d": "WI Senate District 8", "rep": "Jodi Habush Sinykin", "w": 0.063}]}, "munis": [{"m": "Brookfield", "p": [{"n": "Steven V. Ponto", "r": "Mayor, Brookfield, WI"}]}, {"m": "Muskego", "p": [{"n": "Rick Petfalski", "r": "Mayor, Muskego, WI"}]}, {"m": "New Berlin", "p": [{"n": "Dave Ament", "r": "Mayor, New Berlin, WI"}]}, {"m": "Oconomowoc", "p": [{"n": "Robert P. Magnus", "r": "Mayor, Oconomowoc, WI"}]}, {"m": "Pewaukee", "p": [{"n": "Steve Bierce", "r": "Mayor, Pewaukee, WI"}]}, {"m": "Waukesha", "p": [{"n": "Shawn Reilly", "r": "Mayor, Waukesha, WI"}]}], "slug": "waukesha"}, "55135": {"county": [], "districts": {"cd": [{"d": "WI-08", "rep": "Tony Wied", "w": 1.0}], "sh": [{"d": "WI House District 57", "rep": "Kevin Petersen", "w": 0.424}, {"d": "WI House District 87", "rep": "Brent Jacobson", "w": 0.334}, {"d": "WI House District 56", "rep": "Dave Murphy", "w": 0.142}, {"d": "WI House District 6", "rep": "Elijah Behnke", "w": 0.1}], "ss": [{"d": "WI Senate District 19", "rep": "Rachael Cabral-Guevara", "w": 0.566}, {"d": "WI Senate District 29", "rep": "Cory Tomczyk", "w": 0.334}, {"d": "WI Senate District 2", "rep": "Eric Wimberger", "w": 0.1}]}, "munis": [], "slug": "waupaca"}, "55137": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 1.0}], "sh": [{"d": "WI House District 57", "rep": "Kevin Petersen", "w": 0.999}], "ss": [{"d": "WI Senate District 19", "rep": "Rachael Cabral-Guevara", "w": 0.999}]}, "munis": [], "slug": "waushara"}, "55139": {"county": [], "districts": {"cd": [{"d": "WI-06", "rep": "Glenn Grothman", "w": 0.92}, {"d": "WI-08", "rep": "Tony Wied", "w": 0.08}], "sh": [{"d": "WI House District 55", "rep": "Gus Gustafson", "w": 0.546}, {"d": "WI House District 57", "rep": "Kevin Petersen", "w": 0.118}, {"d": "WI House District 54", "rep": "Lori Palmeri", "w": 0.071}, {"d": "WI House District 39", "rep": "Alex Dallman", "w": 0.062}, {"d": "WI House District 53", "rep": "Dean Kaufert", "w": 0.046}], "ss": [{"d": "WI Senate District 19", "rep": "Rachael Cabral-Guevara", "w": 0.665}, {"d": "WI Senate District 18", "rep": "Kristin Dassler-Alfheim", "w": 0.117}, {"d": "WI Senate District 13", "rep": "John Jagler", "w": 0.062}]}, "munis": [{"m": "Menasha", "p": [{"n": "Austin Hammond", "r": "Mayor, Menasha, WI"}]}, {"m": "Neenah", "p": [{"n": "Jane B Lang", "r": "Mayor, Neenah, WI"}]}, {"m": "Oshkosh", "p": [{"n": "Matt Mugerauer", "r": "Mayor, Oshkosh, WI"}]}], "slug": "winnebago"}, "55141": {"county": [], "districts": {"cd": [{"d": "WI-07", "rep": "Thomas P. Tiffany", "w": 0.563}, {"d": "WI-03", "rep": "Derrick Van Orden", "w": 0.437}], "sh": [{"d": "WI House District 86", "rep": "John Spiros", "w": 0.557}, {"d": "WI House District 72", "rep": "Scott Krug", "w": 0.443}], "ss": [{"d": "WI Senate District 29", "rep": "Cory Tomczyk", "w": 0.557}, {"d": "WI Senate District 24", "rep": "Patrick Testin", "w": 0.443}]}, "munis": [{"m": "Marshfield", "p": [{"n": "Lois TeStrake", "r": "Mayor, Marshfield, WI"}]}, {"m": "Wisconsin Rapids", "p": [{"n": "Matt Zacher", "r": "Mayor, Wisconsin Rapids, WI"}]}], "slug": "wood"}, "56001": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 14", "rep": "Trey Sherwood", "w": 0.631}, {"d": "WY House District 46", "rep": "Ocean Andrew", "w": 0.367}], "ss": [{"d": "WY Senate District 10", "rep": "Gary Crum", "w": 0.998}]}, "munis": [{"m": "Laramie", "p": [{"n": "Brian Harrington", "r": "Mayor, Laramie, WY"}]}], "slug": "albany"}, "56003": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 26", "rep": "Dalton Banks", "w": 0.577}, {"d": "WY House District 27", "rep": "Martha Lawley", "w": 0.245}, {"d": "WY House District 28", "rep": "John Winter", "w": 0.179}], "ss": [{"d": "WY Senate District 19", "rep": "Dan Laursen", "w": 0.577}, {"d": "WY Senate District 20", "rep": "Ed Cooper", "w": 0.423}]}, "munis": [], "slug": "big-horn"}, "56005": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 3", "rep": "Abby Angelos", "w": 0.532}, {"d": "WY House District 52", "rep": "Reuben Tarver", "w": 0.463}], "ss": [{"d": "WY Senate District 23", "rep": "Eric Barlow", "w": 0.534}, {"d": "WY Senate District 1", "rep": "Ogden Driskill", "w": 0.463}]}, "munis": [{"m": "Gillette", "p": [{"n": "Shay Lundvall", "r": "Mayor, Gillette, WY"}]}], "slug": "campbell"}, "56007": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 47", "rep": "Bob Davis", "w": 0.694}, {"d": "WY House District 15", "rep": "Pam Thayer", "w": 0.305}], "ss": [{"d": "WY Senate District 11", "rep": "Larry Hicks", "w": 1.0}]}, "munis": [], "slug": "carbon"}, "56009": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 6", "rep": "Tomi Strock", "w": 0.659}, {"d": "WY House District 62", "rep": "Kevin Campbell", "w": 0.341}], "ss": [{"d": "WY Senate District 2", "rep": "Brian Boner", "w": 1.0}]}, "munis": [{"m": "Douglas", "p": [{"n": "Kim Pexton", "r": "Mayor, Douglas, WY"}]}], "slug": "converse"}, "56011": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 1", "rep": "Chip Neiman", "w": 1.0}], "ss": [{"d": "WY Senate District 1", "rep": "Ogden Driskill", "w": 1.0}]}, "munis": [], "slug": "crook"}, "56013": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 34", "rep": "Pepper Ottman", "w": 0.554}, {"d": "WY House District 33", "rep": "Ivan Posey", "w": 0.285}, {"d": "WY House District 28", "rep": "John Winter", "w": 0.15}, {"d": "WY House District 54", "rep": "Lloyd Larsen", "w": 0.01}], "ss": [{"d": "WY Senate District 26", "rep": "Tim Salazar", "w": 0.555}, {"d": "WY Senate District 25", "rep": "Cale Case", "w": 0.295}, {"d": "WY Senate District 20", "rep": "Ed Cooper", "w": 0.15}]}, "munis": [], "slug": "fremont"}, "56015": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 5", "rep": "Scott Smith", "w": 0.588}, {"d": "WY House District 2", "rep": "J.D. Williams", "w": 0.412}], "ss": [{"d": "WY Senate District 3", "rep": "Cheri Steinmetz", "w": 1.0}]}, "munis": [], "slug": "goshen"}, "56017": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 28", "rep": "John Winter", "w": 1.0}], "ss": [{"d": "WY Senate District 20", "rep": "Ed Cooper", "w": 1.0}]}, "munis": [], "slug": "hot-springs"}, "56019": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 40", "rep": "Marilyn Connolly", "w": 1.0}], "ss": [{"d": "WY Senate District 22", "rep": "Barry Crago", "w": 1.0}]}, "munis": [{"m": "Buffalo", "p": [{"n": "Shane J. Schrader", "r": "Mayor, Buffalo, WY"}]}], "slug": "johnson"}, "56021": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 10", "rep": "Justin Fornstrom", "w": 0.463}, {"d": "WY House District 4", "rep": "Jeremy Haroldson", "w": 0.26}, {"d": "WY House District 42", "rep": "Rob Geringer", "w": 0.193}, {"d": "WY House District 43", "rep": "Ann Lucas", "w": 0.044}, {"d": "WY House District 8", "rep": "Steve Johnson", "w": 0.017}, {"d": "WY House District 12", "rep": "Clarence Styvar", "w": 0.013}], "ss": [{"d": "WY Senate District 6", "rep": "Taft Love", "w": 0.722}, {"d": "WY Senate District 5", "rep": "Lynn Hutchings", "w": 0.206}, {"d": "WY Senate District 31", "rep": "Evie Brennan", "w": 0.045}, {"d": "WY Senate District 4", "rep": "Tara Nethercott", "w": 0.018}, {"d": "WY Senate District 8", "rep": "Jared Olsen", "w": 0.005}]}, "munis": [{"m": "Cheyenne", "p": [{"n": "Patrick Collins", "r": "Mayor, Cheyenne, WY"}]}], "slug": "laramie"}, "56023": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 18", "rep": "Scott Heiner", "w": 0.571}, {"d": "WY House District 22", "rep": "Andrew Byron", "w": 0.209}, {"d": "WY House District 21", "rep": "McKay Erickson", "w": 0.115}, {"d": "WY House District 20", "rep": "Mike Schmid", "w": 0.105}], "ss": [{"d": "WY Senate District 14", "rep": "Laura Pearson", "w": 0.675}, {"d": "WY Senate District 16", "rep": "Dan Dockstader", "w": 0.325}]}, "munis": [{"m": "Kemmerer", "p": [{"n": "William Thek", "r": "Mayor, Kemmerer, WY"}]}], "slug": "lincoln"}, "56025": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 38", "rep": "Jayme Lien", "w": 0.702}, {"d": "WY House District 58", "rep": "Bill Allemand", "w": 0.186}, {"d": "WY House District 62", "rep": "Kevin Campbell", "w": 0.092}, {"d": "WY House District 37", "rep": "Steve Harshman", "w": 0.014}], "ss": [{"d": "WY Senate District 30", "rep": "Charles Scott", "w": 0.888}, {"d": "WY Senate District 2", "rep": "Brian Boner", "w": 0.092}, {"d": "WY Senate District 29", "rep": "Bob Ide", "w": 0.015}]}, "munis": [{"m": "Casper", "p": [{"n": "Steve Cathey", "r": "Mayor, Casper, WY"}]}], "slug": "natrona"}, "56027": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 2", "rep": "J.D. Williams", "w": 1.0}], "ss": [{"d": "WY Senate District 3", "rep": "Cheri Steinmetz", "w": 1.0}]}, "munis": [], "slug": "niobrara"}, "56029": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 24", "rep": "Nina Webber", "w": 0.521}, {"d": "WY House District 50", "rep": "Rachel Rodriguez-Williams", "w": 0.233}, {"d": "WY House District 28", "rep": "John Winter", "w": 0.208}, {"d": "WY House District 26", "rep": "Dalton Banks", "w": 0.028}, {"d": "WY House District 25", "rep": "Paul Hoeft", "w": 0.01}], "ss": [{"d": "WY Senate District 18", "rep": "Tim French", "w": 0.753}, {"d": "WY Senate District 20", "rep": "Ed Cooper", "w": 0.208}, {"d": "WY Senate District 19", "rep": "Dan Laursen", "w": 0.038}]}, "munis": [], "slug": "park"}, "56031": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 4", "rep": "Jeremy Haroldson", "w": 1.0}], "ss": [{"d": "WY Senate District 6", "rep": "Taft Love", "w": 1.0}]}, "munis": [], "slug": "platte"}, "56033": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 51", "rep": "Laurie Bratten", "w": 0.438}, {"d": "WY House District 40", "rep": "Marilyn Connolly", "w": 0.322}, {"d": "WY House District 30", "rep": "Tom Kelly", "w": 0.238}], "ss": [{"d": "WY Senate District 22", "rep": "Barry Crago", "w": 0.527}, {"d": "WY Senate District 21", "rep": "Bo Biteman", "w": 0.473}]}, "munis": [{"m": "Sheridan", "p": [{"n": "Richard Bridger", "r": "Mayor, Sheridan, WY"}]}], "slug": "sheridan"}, "56035": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 20", "rep": "Mike Schmid", "w": 1.0}], "ss": [{"d": "WY Senate District 14", "rep": "Laura Pearson", "w": 1.0}]}, "munis": [], "slug": "sublette"}, "56037": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 47", "rep": "Bob Davis", "w": 0.799}, {"d": "WY House District 18", "rep": "Scott Heiner", "w": 0.194}], "ss": [{"d": "WY Senate District 11", "rep": "Larry Hicks", "w": 0.802}, {"d": "WY Senate District 14", "rep": "Laura Pearson", "w": 0.194}]}, "munis": [{"m": "Green River", "p": [{"n": "Pete Rust", "r": "Mayor, Green River, WY"}]}], "slug": "sweetwater"}, "56039": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 23", "rep": "Liz Storer", "w": 0.932}, {"d": "WY House District 22", "rep": "Andrew Byron", "w": 0.067}], "ss": [{"d": "WY Senate District 17", "rep": "Mike Gierau", "w": 0.933}, {"d": "WY Senate District 16", "rep": "Dan Dockstader", "w": 0.067}]}, "munis": [], "slug": "teton"}, "56041": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 19", "rep": "Joe Webb", "w": 0.751}, {"d": "WY House District 18", "rep": "Scott Heiner", "w": 0.245}], "ss": [{"d": "WY Senate District 15", "rep": "Wendy Schuler", "w": 0.754}, {"d": "WY Senate District 14", "rep": "Laura Pearson", "w": 0.245}]}, "munis": [{"m": "Evanston", "p": [{"n": "Kent Williams", "r": "Mayor, Evanston, WY"}]}], "slug": "uinta"}, "56043": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 27", "rep": "Martha Lawley", "w": 1.0}], "ss": [{"d": "WY Senate District 20", "rep": "Ed Cooper", "w": 1.0}]}, "munis": [{"m": "Worland", "p": [{"n": "Jim Gill", "r": "Mayor, Worland, WY"}]}], "slug": "washakie"}, "56045": {"county": [], "districts": {"cd": [{"d": "WY-00", "rep": "Harriet M. Hageman", "w": 1.0}], "sh": [{"d": "WY House District 1", "rep": "Chip Neiman", "w": 0.548}, {"d": "WY House District 2", "rep": "J.D. Williams", "w": 0.451}], "ss": [{"d": "WY Senate District 1", "rep": "Ogden Driskill", "w": 0.548}, {"d": "WY Senate District 3", "rep": "Cheri Steinmetz", "w": 0.451}]}, "munis": [], "slug": "weston"}, "72001": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 23", "rep": "Ensol Rodríguez", "w": 0.628}, {"d": "PR House District 22", "rep": "Joito Colón", "w": 0.372}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 1.0}]}, "munis": [], "slug": ""}, "72003": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 18", "rep": "Odalys González", "w": 0.677}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.678}]}, "munis": [], "slug": ""}, "72005": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 17", "rep": "Wilson Román", "w": 0.453}, {"d": "PR House District 16", "rep": "Rey Figueroa", "w": 0.03}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.483}]}, "munis": [], "slug": ""}, "72007": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 5", "rep": "Jorge Navarro Suárez", "w": 0.998}], "ss": [{"d": "PR Senate District 1", "rep": "Juan Oscar Morales, Nitza Morán", "w": 0.998}]}, "munis": [], "slug": ""}, "72009": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 27", "rep": "Estrella Martínez Soto", "w": 0.997}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 1.0}]}, "munis": [], "slug": ""}, "72011": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 18", "rep": "Odalys González", "w": 0.88}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.881}]}, "munis": [], "slug": ""}, "72013": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 14", "rep": "Edgar Robles", "w": 0.606}, {"d": "PR House District 13", "rep": "Jerry Nieves", "w": 0.134}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.74}]}, "munis": [], "slug": ""}, "72015": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 30", "rep": "Fernando Sanabria Colón", "w": 0.421}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.421}]}, "munis": [], "slug": ""}, "72017": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 13", "rep": "Jerry Nieves", "w": 0.606}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.606}]}, "munis": [], "slug": ""}, "72019": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 26", "rep": "Josean Jiménez", "w": 0.818}, {"d": "PR House District 28", "rep": "Chino Roque", "w": 0.181}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 1.0}]}, "munis": [], "slug": ""}, "72021": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 8", "rep": "Yashira Lebrón", "w": 0.396}, {"d": "PR House District 7", "rep": "Luis Pérez", "w": 0.294}, {"d": "PR House District 9", "rep": "Félix Pacheco", "w": 0.279}, {"d": "PR House District 6", "rep": "Ángel Morey Noble", "w": 0.029}], "ss": [{"d": "PR Senate District 2", "rep": "Carmelo Ríos Santiago, Migdalia Padilla Alvelo", "w": 0.999}]}, "munis": [], "slug": ""}, "72023": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 20", "rep": "Emilio Carlo", "w": 0.407}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.407}]}, "munis": [], "slug": ""}, "72025": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 32", "rep": "Conny Varela", "w": 0.617}, {"d": "PR House District 31", "rep": "Roberto López", "w": 0.381}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.999}]}, "munis": [], "slug": ""}, "72027": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 15", "rep": "Joel Franqui Atiles", "w": 0.747}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.747}]}, "munis": [], "slug": ""}, "72029": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 37", "rep": "Carmen Medina Calderón", "w": 0.764}, {"d": "PR House District 38", "rep": "Wanda Del Valle Correa", "w": 0.235}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.999}]}, "munis": [], "slug": ""}, "72031": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 38", "rep": "Wanda Del Valle Correa", "w": 0.345}, {"d": "PR House District 40", "rep": "Sergio Estévez", "w": 0.244}, {"d": "PR House District 39", "rep": "Roberto Rivera Ruiz de Porras", "w": 0.2}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.791}]}, "munis": [], "slug": ""}, "72033": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 6", "rep": "Ángel Morey Noble", "w": 0.449}, {"d": "PR House District 10", "rep": "Pellé Santiago", "w": 0.264}], "ss": [{"d": "PR Senate District 2", "rep": "Carmelo Ríos Santiago, Migdalia Padilla Alvelo", "w": 0.713}]}, "munis": [], "slug": ""}, "72035": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 29", "rep": "Gretchen Hau", "w": 0.998}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 1.0}]}, "munis": [], "slug": ""}, "72037": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 36", "rep": "Johnny Méndez Núñez", "w": 0.182}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.182}]}, "munis": [], "slug": ""}, "72039": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 22", "rep": "Joito Colón", "w": 0.998}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.998}]}, "munis": [], "slug": ""}, "72041": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 29", "rep": "Gretchen Hau", "w": 0.998}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.999}]}, "munis": [], "slug": ""}, "72043": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 26", "rep": "Josean Jiménez", "w": 0.545}, {"d": "PR House District 27", "rep": "Estrella Martínez Soto", "w": 0.455}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 1.0}]}, "munis": [], "slug": ""}, "72045": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 28", "rep": "Chino Roque", "w": 0.998}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.999}]}, "munis": [], "slug": ""}, "72047": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 28", "rep": "Chino Roque", "w": 0.667}, {"d": "PR House District 26", "rep": "Josean Jiménez", "w": 0.332}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.999}]}, "munis": [], "slug": ""}, "72049": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 36", "rep": "Johnny Méndez Núñez", "w": 0.07}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.07}]}, "munis": [], "slug": ""}, "72051": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 11", "rep": "Elinette González Aguayo", "w": 0.434}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.434}]}, "munis": [], "slug": ""}, "72053": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 36", "rep": "Johnny Méndez Núñez", "w": 0.286}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.286}]}, "munis": [], "slug": ""}, "72054": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 13", "rep": "Jerry Nieves", "w": 0.998}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.999}]}, "munis": [], "slug": ""}, "72055": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 21", "rep": "Omayra Martínez", "w": 0.467}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.467}]}, "munis": [], "slug": ""}, "72057": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 30", "rep": "Fernando Sanabria Colón", "w": 0.614}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.614}]}, "munis": [], "slug": ""}, "72059": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 23", "rep": "Ensol Rodríguez", "w": 0.659}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.659}]}, "munis": [], "slug": ""}, "72061": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 5", "rep": "Jorge Navarro Suárez", "w": 0.674}, {"d": "PR House District 6", "rep": "Ángel Morey Noble", "w": 0.318}], "ss": [{"d": "PR Senate District 1", "rep": "Juan Oscar Morales, Nitza Morán", "w": 0.675}, {"d": "PR Senate District 2", "rep": "Carmelo Ríos Santiago, Migdalia Padilla Alvelo", "w": 0.32}]}, "munis": [], "slug": ""}, "72063": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 31", "rep": "Roberto López", "w": 0.891}, {"d": "PR House District 33", "rep": "Ángel Peña Ramírez", "w": 0.108}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.999}]}, "munis": [], "slug": ""}, "72065": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 14", "rep": "Edgar Robles", "w": 0.386}, {"d": "PR House District 15", "rep": "Joel Franqui Atiles", "w": 0.325}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.711}]}, "munis": [], "slug": ""}, "72067": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 20", "rep": "Emilio Carlo", "w": 0.996}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 1.0}]}, "munis": [], "slug": ""}, "72069": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 35", "rep": "Sol Higgins", "w": 0.628}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.628}]}, "munis": [], "slug": ""}, "72071": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 16", "rep": "Rey Figueroa", "w": 0.602}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.602}]}, "munis": [], "slug": ""}, "72073": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 25", "rep": "Domingo Torres García", "w": 0.628}, {"d": "PR House District 22", "rep": "Joito Colón", "w": 0.372}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 1.0}]}, "munis": [], "slug": ""}, "72075": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 25", "rep": "Domingo Torres García", "w": 0.306}, {"d": "PR House District 27", "rep": "Estrella Martínez Soto", "w": 0.26}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.306}, {"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.261}]}, "munis": [], "slug": ""}, "72077": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 33", "rep": "Ángel Peña Ramírez", "w": 0.999}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 1.0}]}, "munis": [], "slug": ""}, "72079": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 21", "rep": "Omayra Martínez", "w": 0.595}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.595}]}, "munis": [], "slug": ""}, "72081": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 22", "rep": "Joito Colón", "w": 0.999}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 1.0}]}, "munis": [], "slug": ""}, "72083": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 21", "rep": "Omayra Martínez", "w": 0.998}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.998}]}, "munis": [], "slug": ""}, "72085": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 33", "rep": "Ángel Peña Ramírez", "w": 0.628}, {"d": "PR House District 35", "rep": "Sol Higgins", "w": 0.371}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 1.0}]}, "munis": [], "slug": ""}, "72087": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 37", "rep": "Carmen Medina Calderón", "w": 0.309}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.31}]}, "munis": [], "slug": ""}, "72089": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 36", "rep": "Johnny Méndez Núñez", "w": 0.553}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.553}]}, "munis": [], "slug": ""}, "72091": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 13", "rep": "Jerry Nieves", "w": 0.471}, {"d": "PR House District 12", "rep": "Edgardo Feliciano", "w": 0.179}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.651}]}, "munis": [], "slug": ""}, "72093": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 21", "rep": "Omayra Martínez", "w": 0.999}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.999}]}, "munis": [], "slug": ""}, "72095": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 34", "rep": "Christian Muriel", "w": 0.55}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.55}]}, "munis": [], "slug": ""}, "72097": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 19", "rep": "Lilly Rosas", "w": 0.279}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.28}]}, "munis": [], "slug": ""}, "72099": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 17", "rep": "Wilson Román", "w": 0.769}, {"d": "PR House District 18", "rep": "Odalys González", "w": 0.23}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 1.0}]}, "munis": [], "slug": ""}, "72101": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 12", "rep": "Edgardo Feliciano", "w": 0.999}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.999}]}, "munis": [], "slug": ""}, "72103": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 35", "rep": "Sol Higgins", "w": 0.713}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.713}]}, "munis": [], "slug": ""}, "72105": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 28", "rep": "Chino Roque", "w": 0.998}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.999}]}, "munis": [], "slug": ""}, "72107": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 26", "rep": "Josean Jiménez", "w": 0.999}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.999}]}, "munis": [], "slug": ""}, "72109": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 34", "rep": "Christian Muriel", "w": 0.625}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.625}]}, "munis": [], "slug": ""}, "72111": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 23", "rep": "Ensol Rodríguez", "w": 0.658}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.658}]}, "munis": [], "slug": ""}, "72113": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 25", "rep": "Domingo Torres García", "w": 0.44}, {"d": "PR House District 24", "rep": "Ángel Fourquet", "w": 0.113}, {"d": "PR House District 23", "rep": "Ensol Rodríguez", "w": 0.051}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.604}]}, "munis": [], "slug": ""}, "72115": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 15", "rep": "Joel Franqui Atiles", "w": 0.671}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.671}]}, "munis": [], "slug": ""}, "72117": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 18", "rep": "Odalys González", "w": 0.262}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.262}]}, "munis": [], "slug": ""}, "72119": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 37", "rep": "Carmen Medina Calderón", "w": 0.492}, {"d": "PR House District 36", "rep": "Johnny Méndez Núñez", "w": 0.185}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.678}]}, "munis": [], "slug": ""}, "72121": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 21", "rep": "Omayra Martínez", "w": 1.0}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 1.0}]}, "munis": [], "slug": ""}, "72123": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 30", "rep": "Fernando Sanabria Colón", "w": 0.602}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.602}]}, "munis": [], "slug": ""}, "72125": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 20", "rep": "Emilio Carlo", "w": 0.52}, {"d": "PR House District 19", "rep": "Lilly Rosas", "w": 0.479}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.999}]}, "munis": [], "slug": ""}, "72127": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 4", "rep": "Víctor Parés", "w": 0.152}, {"d": "PR House District 2", "rep": "Chino Ocasio", "w": 0.145}, {"d": "PR House District 5", "rep": "Jorge Navarro Suárez", "w": 0.138}, {"d": "PR House District 3", "rep": "Cheíto Hernández", "w": 0.112}, {"d": "PR House District 1", "rep": "Eddie Charbonier", "w": 0.095}], "ss": [{"d": "PR Senate District 1", "rep": "Juan Oscar Morales, Nitza Morán", "w": 0.641}]}, "munis": [], "slug": ""}, "72129": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 34", "rep": "Christian Muriel", "w": 0.804}, {"d": "PR House District 33", "rep": "Ángel Peña Ramírez", "w": 0.195}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 1.0}]}, "munis": [], "slug": ""}, "72131": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 16", "rep": "Rey Figueroa", "w": 0.998}], "ss": [{"d": "PR Senate District 4", "rep": "Jeison Rosa, Karen Román", "w": 0.999}]}, "munis": [], "slug": ""}, "72133": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 27", "rep": "Estrella Martínez Soto", "w": 0.297}, {"d": "PR House District 30", "rep": "Fernando Sanabria Colón", "w": 0.147}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 0.445}]}, "munis": [], "slug": ""}, "72135": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 9", "rep": "Félix Pacheco", "w": 0.998}], "ss": [{"d": "PR Senate District 2", "rep": "Carmelo Ríos Santiago, Migdalia Padilla Alvelo", "w": 0.998}]}, "munis": [], "slug": ""}, "72137": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 10", "rep": "Pellé Santiago", "w": 0.559}], "ss": [{"d": "PR Senate District 2", "rep": "Carmelo Ríos Santiago, Migdalia Padilla Alvelo", "w": 0.56}]}, "munis": [], "slug": ""}, "72139": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 38", "rep": "Wanda Del Valle Correa", "w": 0.725}, {"d": "PR House District 39", "rep": "Roberto Rivera Ruiz de Porras", "w": 0.273}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.998}]}, "munis": [], "slug": ""}, "72141": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 22", "rep": "Joito Colón", "w": 0.999}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 1.0}]}, "munis": [], "slug": ""}, "72143": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 11", "rep": "Elinette González Aguayo", "w": 0.411}, {"d": "PR House District 12", "rep": "Edgardo Feliciano", "w": 0.325}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.737}]}, "munis": [], "slug": ""}, "72145": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 12", "rep": "Edgardo Feliciano", "w": 0.474}, {"d": "PR House District 11", "rep": "Elinette González Aguayo", "w": 0.209}], "ss": [{"d": "PR Senate District 3", "rep": "Brenda Pérez Soto, Gaby González", "w": 0.682}]}, "munis": [], "slug": ""}, "72147": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 36", "rep": "Johnny Méndez Núñez", "w": 0.194}], "ss": [{"d": "PR Senate District 8", "rep": "Héctor Sánchez Álvarez, Marissa Jiménez", "w": 0.194}]}, "munis": [], "slug": ""}, "72149": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 26", "rep": "Josean Jiménez", "w": 0.999}], "ss": [{"d": "PR Senate District 6", "rep": "Rafy Santos, Wilmer Reyes Berríos", "w": 1.0}]}, "munis": [], "slug": ""}, "72151": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 34", "rep": "Christian Muriel", "w": 0.662}], "ss": [{"d": "PR Senate District 7", "rep": "Luis Daniel Colón La Santa, Wandy Soto", "w": 0.663}]}, "munis": [], "slug": ""}, "72153": {"county": [], "districts": {"cd": [], "sh": [{"d": "PR House District 21", "rep": "Omayra Martínez", "w": 0.646}, {"d": "PR House District 23", "rep": "Ensol Rodríguez", "w": 0.352}], "ss": [{"d": "PR Senate District 5", "rep": "Jamie Barlucea, Marially González", "w": 0.999}]}, "munis": [], "slug": ""}}