-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.src.html
More file actions
774 lines (742 loc) · 96.4 KB
/
index.src.html
File metadata and controls
774 lines (742 loc) · 96.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
<!DOCTYPE html>
<html lang="en">
<head>
<title>PlanScore</title>
<!--[include_head]-->
<!-- PapaParse CSV reader -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/4.3.6/papaparse.min.js"></script>
<!-- various polyfills required by IE -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser-polyfill.min.js"></script>
<!-- local config -->
<link href="index.css?[hash]" rel="stylesheet" />
<script src="index.js?[hash]"></script>
<!-- OG tags -->
<meta property="og:title" content="PlanScore" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://planscore.org" />
<meta property="og:image" content="https://planscore.org/images/OG-default-01.jpg" />
<meta property="og:description" content="PlanScore is a first-of-its-kind gerrymandering scoring service for new district plans, allowing users to upload maps and instantly receive projected data about their partisan consequences. You can also use historical data to discover how partisan advantage has influenced redistricting in your state." />
<!-- Twitter tags note that per https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started, we need only use the card metas that differ from OG -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@PlanScore" />
</head>
<body>
<!--[include_navbar]-->
<div class="container container-mainbody">
<h1 class="title">Score Electoral District Maps</h1>
<h2 class="subtitle">Evaluate their fairness.</h2>
<div class="intro">
<p>Most of our federal and state legislators are elected from districts. Every ten years, state governments redraw district boundaries in a process known as redistricting. PlanScore promotes fairness in the redistricting process. We make it easy for policymakers and advocates to <a href="/upload.html">score new district maps</a> and assess whether they’re fair or gerrymandered. We also provide access to the most comprehensive <a href="/about/historical-data/">historical dataset</a> of partisan gerrymandering ever assembled.</p>
</div>
<div class="row" id="boundarypicker">
<div class="center" data-boundary="ushouse" role="button" tabindex="0" title="Show U.S. House analysis sized by absolute bias times number of seats">
<a href="javascript:void(0);">U.S. House</a>
</div>
<div class="center" data-boundary="statesenate" role="button" tabindex="0" title="Show partisan skew analysis for State Senate district plans">
<a href="javascript:void(0);">State Senates</a>
</div>
<div class="center" data-boundary="statehouse" role="button" tabindex="0" title="Show partisan skew analysis for State House district plans">
<a href="javascript:void(0);">State Houses</a>
</div>
</div>
<br/>
<div id="maplegend">
<div class="maplegend-colors">
<div class="slice d3"></div>
<div class="slice d2"></div>
<div class="slice d1"></div>
<div class="slice balanced"></div>
<div class="slice r1"></div>
<div class="slice r2"></div>
<div class="slice r3"></div>
<div class="slice nodata"></div>
<div class="demtext">Skews Democrat</div>
<div class="reptext">Skews Republican</div>
<div class="nodatatext">No Data</div>
</div>
<!-- Legend for U.S. House tab -->
<div id="ushouse-legend" style="display: none;">
<span class="swatch"> </span>
<div class="content">
<b class="caption">Total YYYY Bias</b>
<span class="bias">N.N% (N.N seats) pro-Pppppppp</span>
<span class="seats">BAD TIMES</span>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/1999/xhtml" id="map" version="1.1" xmlns="http://www.w3.org/2000/svg" width="720" height="400" viewBox="0 0 720 400" role="img" aria-label="Interactive map of United States showing partisan gerrymandering bias by state">
<style>
svg {
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
font-size: 12px;
}
.state-shape {
stroke: #555;
stroke-width: 1.0;
cursor: pointer;
transition: fill 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.offshore-box {
stroke: #555;
stroke-width: 1.0;
cursor: pointer;
transition: fill 0.5s ease-in-out;
}
.state-label {
font-size: 9px;
font-weight: bold;
text-anchor: middle;
dominant-baseline: middle;
transition: fill 0.5s ease-in-out;
user-select: none;
pointer-events: none;
}
.state-underline {
transition: fill 0.5s ease-in-out;
}
.suppress-transition {
transition: none !important;
}
</style>
<desc>Created with render-graph4.py</desc>
<rect fill="white" x="0" y="0" width="720" height="400" />
<g class="states">
<g class="state-shape" id="state-shape-AK" style="fill:white;transform:translate(96.7px,341.7px);" data-area="187653488185" aria-label="Alaska">
<path d="M 3.7 -32.1 L 4.4 -32.3 L 5.2 -33.4 L 5.5 -33.5 L 6.0 -33.0 L 5.7 -31.8 L 6.1 -31.3 L 7.8 -31.4 L 9.4 -30.7 L 9.4 -30.4 L 8.8 -29.9 L 8.9 -29.3 L 10.0 -28.9 L 9.3 -28.4 L 13.7 -27.7 L 15.6 -26.4 L 16.5 -25.5 L 19.0 -24.9 L 20.6 -23.6 L 22.7 -24.2 L 23.9 -23.9 L 26.9 -21.0 L 21.7 28.4 L 22.5 29.5 L 23.5 30.0 L 24.2 29.9 L 25.7 28.7 L 26.2 28.8 L 27.4 31.2 L 28.4 32.3 L 29.7 34.7 L 30.4 35.2 L 31.9 35.6 L 32.4 35.5 L 33.1 32.7 L 33.9 31.9 L 35.6 31.8 L 36.9 32.6 L 39.4 36.2 L 41.5 38.8 L 43.3 42.1 L 44.7 44.0 L 46.2 46.8 L 46.9 47.5 L 49.5 48.8 L 51.7 51.1 L 52.1 52.3 L 52.6 54.9 L 51.2 57.9 L 50.8 57.9 L 49.8 56.7 L 48.1 56.1 L 47.5 55.7 L 47.0 54.1 L 46.1 53.1 L 44.5 50.4 L 44.5 50.0 L 45.3 49.5 L 45.4 49.2 L 44.9 48.0 L 44.2 47.2 L 44.1 47.4 L 44.4 48.4 L 44.3 48.6 L 43.2 49.0 L 42.5 49.0 L 41.8 49.5 L 41.3 48.7 L 40.9 48.7 L 40.8 49.0 L 41.1 50.5 L 40.5 51.4 L 40.1 51.2 L 40.1 49.3 L 39.3 47.7 L 39.5 46.6 L 39.8 46.7 L 40.6 47.7 L 41.0 47.0 L 40.6 45.9 L 42.3 46.1 L 43.2 46.9 L 43.6 46.2 L 41.8 45.4 L 41.7 45.1 L 42.0 44.4 L 41.0 42.2 L 40.4 41.3 L 39.6 40.8 L 40.5 42.4 L 40.6 44.0 L 39.3 46.4 L 39.1 46.4 L 37.4 39.0 L 38.0 39.3 L 38.1 39.1 L 37.2 37.4 L 36.7 35.6 L 36.1 34.4 L 35.9 34.5 L 36.5 37.8 L 37.1 39.2 L 37.1 40.3 L 35.9 39.3 L 35.1 39.6 L 34.8 37.3 L 34.4 36.5 L 33.6 37.0 L 32.3 36.3 L 33.9 37.8 L 34.5 38.9 L 34.5 39.3 L 33.7 39.6 L 32.3 39.3 L 31.8 39.6 L 30.0 38.0 L 28.3 35.5 L 24.6 33.2 L 25.5 32.0 L 25.3 31.2 L 23.8 32.0 L 22.7 32.2 L 20.2 30.6 L 18.1 29.8 L 17.0 29.7 L 14.4 30.1 L 13.2 28.9 L 11.3 28.0 L 9.8 26.9 L 7.7 27.9 L 7.7 26.6 L 8.8 26.6 L 9.8 26.1 L 8.8 25.8 L 8.2 25.4 L 8.0 24.0 L 6.6 24.3 L 5.1 24.2 L 4.2 25.0 L 4.2 25.6 L 4.9 26.0 L 5.0 26.2 L 4.4 27.5 L 4.6 28.0 L 4.2 29.2 L 3.3 28.5 L 2.1 28.9 L 1.3 28.4 L -0.7 29.3 L -2.0 30.7 L -3.3 31.1 L -3.9 31.6 L -5.3 31.6 L -6.8 31.1 L -6.8 30.8 L -6.0 29.9 L -4.4 29.4 L -3.6 28.5 L -4.5 29.1 L -5.6 29.0 L -5.8 28.8 L -5.3 27.1 L -3.7 25.4 L -3.6 23.1 L -1.9 22.8 L -0.9 22.0 L -0.3 22.9 L 0.6 22.7 L 1.7 23.6 L 2.2 23.6 L 2.1 23.1 L 0.5 22.1 L 0.4 21.7 L 0.8 21.0 L 0.7 20.6 L 0.2 21.1 L -1.3 20.7 L -2.9 21.7 L -4.3 22.1 L -4.4 22.4 L -4.2 23.3 L -5.0 23.3 L -5.7 24.1 L -7.5 26.7 L -8.5 27.5 L -10.5 28.3 L -12.0 29.7 L -12.2 29.9 L -12.0 30.2 L -10.5 31.2 L -10.6 32.2 L -10.9 32.9 L -12.4 33.7 L -13.6 35.2 L -18.7 37.4 L -20.0 38.7 L -21.0 39.3 L -21.2 40.0 L -23.4 40.5 L -25.1 41.2 L -26.9 41.5 L -27.2 41.8 L -26.7 42.5 L -27.9 43.8 L -30.0 43.7 L -31.7 45.0 L -31.6 43.9 L -31.8 43.7 L -33.6 44.5 L -34.9 44.4 L -36.5 44.7 L -36.6 44.2 L -36.1 43.5 L -36.6 43.1 L -37.1 43.4 L -38.1 44.8 L -39.3 45.4 L -40.8 45.1 L -42.8 46.0 L -44.4 45.6 L -46.3 45.9 L -46.9 45.8 L -47.3 45.5 L -47.2 44.8 L -45.7 43.3 L -44.9 43.7 L -41.2 43.7 L -37.8 41.5 L -35.7 41.1 L -34.9 41.2 L -34.1 42.1 L -33.6 42.2 L -32.5 40.9 L -30.7 39.7 L -27.9 38.8 L -27.3 39.3 L -26.5 38.0 L -25.2 36.7 L -24.0 36.0 L -23.0 35.8 L -22.2 33.2 L -22.1 32.1 L -21.0 30.9 L -19.9 30.3 L -19.4 29.7 L -19.9 29.6 L -22.8 30.2 L -23.4 29.5 L -23.6 28.5 L -23.9 28.4 L -24.2 28.8 L -24.4 30.3 L -25.1 30.8 L -26.0 28.1 L -26.8 27.9 L -27.9 26.2 L -28.4 26.3 L -29.0 27.4 L -29.7 28.1 L -30.6 27.1 L -31.7 27.4 L -32.2 27.2 L -32.2 26.5 L -31.1 25.6 L -31.3 23.6 L -30.1 22.3 L -29.9 18.7 L -30.1 18.6 L -31.0 19.0 L -32.9 19.2 L -34.4 18.6 L -34.7 18.1 L -34.8 16.6 L -36.3 13.6 L -36.2 13.2 L -34.9 12.8 L -34.3 12.0 L -34.5 10.7 L -34.9 10.6 L -35.1 10.3 L -35.1 9.2 L -35.4 8.7 L -35.2 8.3 L -35.1 6.9 L -34.8 6.3 L -33.2 5.2 L -31.4 3.4 L -30.2 3.3 L -29.0 1.2 L -28.2 0.5 L -26.7 0.9 L -26.4 1.3 L -26.4 2.1 L -25.2 2.8 L -23.4 1.5 L -23.2 1.1 L -23.4 0.5 L -23.0 0.1 L -22.6 1.6 L -21.3 2.0 L -20.3 2.0 L -19.0 0.2 L -18.8 -2.3 L -19.3 -2.8 L -19.3 -3.4 L -19.0 -3.5 L -18.3 -3.0 L -17.3 -4.0 L -17.6 -4.8 L -17.9 -5.1 L -18.9 -4.7 L -20.7 -4.7 L -22.0 -3.7 L -22.1 -4.4 L -22.6 -4.3 L -23.2 -5.3 L -24.9 -6.2 L -26.4 -6.4 L -28.0 -7.7 L -28.2 -8.2 L -28.0 -11.6 L -27.9 -11.7 L -27.8 -11.4 L -27.2 -11.2 L -26.8 -11.4 L -27.0 -12.1 L -28.7 -14.1 L -28.9 -14.6 L -28.9 -15.1 L -28.3 -15.4 L -23.2 -16.3 L -19.6 -16.4 L -18.6 -15.7 L -19.6 -14.5 L -20.0 -13.6 L -19.9 -13.4 L -18.1 -12.5 L -16.8 -11.4 L -15.7 -12.4 L -15.0 -12.0 L -14.6 -12.4 L -14.7 -12.8 L -15.5 -13.2 L -16.3 -13.1 L -15.5 -14.4 L -16.2 -15.6 L -16.2 -16.3 L -16.0 -16.6 L -15.5 -16.5 L -15.3 -15.6 L -15.1 -15.5 L -14.1 -16.1 L -14.5 -16.6 L -16.3 -17.3 L -17.5 -18.2 L -17.1 -20.1 L -17.0 -21.4 L -18.1 -24.7 L -18.7 -25.7 L -18.9 -26.5 L -18.9 -27.2 L -17.9 -28.1 L -17.1 -29.4 L -14.5 -28.2 L -12.5 -28.4 L -11.5 -28.9 L -9.7 -31.1 L -7.5 -32.8 L -6.7 -33.1 L -6.1 -32.6 L -5.0 -32.7 L -2.0 -34.3 L -1.6 -34.3 L -1.1 -33.7 L 0.7 -33.4 L 2.1 -34.0 L 3.3 -35.3 L 4.5 -34.3 L 4.7 -33.6 L 4.6 -33.2 L 3.6 -32.9 L 3.7 -32.1 Z" />
<path d="M 44.3 51.7 L 45.0 52.6 L 45.4 53.6 L 45.9 54.2 L 46.1 54.9 L 46.8 56.0 L 47.2 57.9 L 47.1 58.3 L 46.1 58.2 L 44.7 56.7 L 44.6 57.0 L 45.0 58.0 L 44.6 58.3 L 44.3 58.3 L 43.0 56.5 L 42.8 55.6 L 42.4 55.6 L 42.5 55.1 L 43.5 54.1 L 42.2 53.6 L 42.2 53.1 L 42.7 52.2 L 42.4 51.8 L 41.9 52.3 L 41.6 52.2 L 41.7 50.9 L 41.4 49.8 L 42.7 49.9 L 43.6 51.2 L 44.3 51.7 Z" />
<path d="M 37.9 45.0 L 38.3 47.4 L 38.6 50.9 L 38.2 50.6 L 37.4 48.9 L 36.6 47.6 L 36.6 46.0 L 36.2 45.2 L 35.9 46.2 L 35.2 46.7 L 35.3 45.8 L 35.1 43.9 L 33.3 41.4 L 33.3 40.7 L 34.1 40.1 L 35.1 39.7 L 37.5 41.2 L 37.7 43.6 L 37.6 44.2 L 37.4 44.4 L 37.9 45.0 Z" />
<path d="M -9.6 37.6 L -9.2 37.8 L -9.5 38.9 L -9.4 39.8 L -9.7 40.4 L -12.3 42.0 L -13.3 41.8 L -14.7 42.9 L -15.2 43.1 L -14.7 42.1 L -15.6 41.9 L -16.0 41.6 L -16.0 39.0 L -13.4 37.1 L -12.1 36.8 L -10.2 35.0 L -8.3 34.0 L -8.6 34.9 L -7.8 35.9 L -7.6 36.6 L -7.9 36.7 L -9.6 36.6 L -10.1 37.2 L -9.6 37.6 Z" />
<path d="M -39.8 -8.1 L -38.2 -8.1 L -37.9 -7.2 L -38.1 -6.4 L -37.1 -5.0 L -36.2 -4.3 L -36.3 -3.9 L -36.8 -3.8 L -37.9 -4.2 L -38.3 -4.0 L -38.6 -3.3 L -38.9 -3.5 L -39.0 -4.8 L -39.7 -7.1 L -40.2 -7.5 L -41.2 -7.2 L -41.6 -8.0 L -41.4 -8.9 L -40.6 -10.0 L -40.2 -8.7 L -39.8 -8.1 Z" />
<path d="M -37.8 13.6 L -37.5 13.8 L -37.3 14.2 L -37.8 16.2 L -39.6 16.1 L -40.6 14.9 L -41.3 13.6 L -41.3 13.0 L -41.1 12.6 L -40.1 13.4 L -39.0 13.0 L -38.0 13.1 L -37.8 13.6 Z" />
<path d="M -53.0 46.4 L -52.2 46.1 L -52.1 46.3 L -51.8 47.2 L -52.6 47.8 L -54.0 48.1 L -56.7 48.3 L -57.6 47.7 L -57.2 47.4 L -55.8 47.5 L -55.1 47.0 L -54.3 46.8 L -54.6 45.7 L -54.4 45.4 L -52.9 45.5 L -53.0 46.4 Z" />
<path d="M -61.9 48.3 L -60.9 48.0 L -59.9 46.8 L -59.0 47.0 L -58.6 46.1 L -57.6 46.0 L -57.1 46.6 L -57.6 47.3 L -58.8 47.6 L -60.0 48.3 L -61.9 48.3 Z" />
<path d="M -75.6 44.4 L -74.4 45.2 L -73.3 46.4 L -75.1 45.7 L -76.6 44.2 L -77.7 43.8 L -79.8 42.7 L -77.8 43.2 L -76.8 43.7 L -76.3 42.5 L -75.7 42.7 L -75.4 42.9 L -75.4 43.3 L -76.2 43.9 L -75.6 44.4 Z" />
<path d="M -82.8 40.9 L -83.0 41.3 L -82.4 42.1 L -82.4 42.4 L -84.5 42.2 L -84.6 41.7 L -84.4 41.3 L -83.6 41.0 L -83.3 40.6 L -82.7 40.8 L -82.8 40.9 Z" />
</g>
<g class="state-shape" id="state-shape-AL" style="fill:white;transform:translate(476.4px,272.0px);" data-area="136142344023" aria-label="Alabama">
<path d="M 23.1 11.2 L 23.8 15.3 L 23.9 17.9 L 24.9 21.0 L 25.5 24.5 L -5.2 29.5 L -5.6 29.9 L -5.7 31.3 L -4.4 36.5 L -8.6 38.2 L -9.3 38.2 L -9.8 37.6 L -9.7 35.3 L -10.1 34.4 L -10.9 33.6 L -12.0 33.5 L -12.5 33.8 L -12.8 34.5 L -12.7 38.4 L -13.0 39.3 L -14.1 40.0 L -16.6 40.3 L -18.0 29.6 L -19.8 19.1 L -19.9 -0.6 L -20.3 -29.4 L 10.0 -34.2 L 23.4 3.2 L 23.7 5.4 L 23.1 11.2 Z" />
</g>
<g class="state-shape" id="state-shape-AR" style="fill:white;transform:translate(402.7px,250.4px);" data-area="140307309592" aria-label="Arkansas">
<path d="M 25.0 -27.6 L 26.2 -27.6 L 26.4 -26.6 L 26.1 -25.2 L 24.6 -21.7 L 24.5 -20.6 L 24.7 -19.8 L 25.1 -19.6 L 31.6 -20.4 L 30.4 -14.7 L 28.5 -12.5 L 28.0 -11.3 L 27.7 -9.3 L 27.5 -5.9 L 26.7 -3.1 L 25.5 -0.8 L 23.6 1.4 L 22.9 2.6 L 18.5 14.7 L 18.1 16.6 L 18.0 18.0 L 18.9 21.4 L 19.1 23.0 L 18.9 24.6 L 18.4 26.7 L -0.2 28.5 L -18.9 30.0 L -19.4 22.5 L -19.8 22.0 L -22.8 21.1 L -25.0 -14.1 L -25.4 -15.4 L -27.3 -19.9 L -28.3 -23.0 L -2.0 -24.9 L 25.0 -27.6 Z" />
</g>
<g class="state-shape" id="state-shape-AZ" style="fill:white;transform:translate(165.5px,252.4px);" data-area="307483419786" aria-label="Arizona">
<path d="M 36.2 -38.0 L 27.4 50.4 L 1.3 47.2 L -20.2 32.9 L -42.5 17.4 L -43.2 17.2 L -42.8 17.2 L -41.0 13.0 L -40.6 11.5 L -40.6 9.2 L -40.1 7.7 L -39.2 6.3 L -36.0 2.8 L -35.2 1.2 L -34.6 -0.6 L -34.4 -2.6 L -34.4 -5.3 L -35.3 -12.1 L -35.4 -14.4 L -34.0 -22.5 L -33.5 -31.3 L -33.2 -33.1 L -32.3 -34.6 L -31.6 -35.1 L -31.0 -35.2 L -29.8 -34.6 L -28.5 -32.4 L -28.0 -32.1 L -26.9 -32.0 L -26.0 -32.6 L -25.1 -34.5 L -23.4 -40.4 L -22.4 -46.5 L 6.8 -41.8 L 36.2 -38.0 Z" />
</g>
<g class="state-shape" id="state-shape-CA" style="fill:white;transform:translate(79.5px,191.9px);" data-area="410972686560" aria-label="California">
<path d="M 10.0 -13.4 L 29.3 15.1 L 39.9 30.0 L 50.7 44.8 L 50.6 47.8 L 51.6 55.7 L 51.6 58.2 L 51.3 60.2 L 50.7 61.8 L 50.0 63.3 L 46.8 66.8 L 45.8 68.3 L 45.4 69.7 L 45.3 72.0 L 45.1 73.2 L 43.1 77.7 L 13.8 74.4 L 12.0 68.7 L 9.8 64.1 L 1.1 51.7 L -0.9 49.3 L -3.0 47.2 L -6.9 44.6 L -11.5 41.1 L -19.1 37.5 L -20.2 36.4 L -21.2 35.0 L -21.7 33.1 L -22.0 27.9 L -23.0 22.9 L -27.5 12.9 L -29.3 7.3 L -32.3 1.6 L -32.7 0.3 L -32.7 -0.8 L -32.3 -1.3 L -31.7 -1.4 L -30.3 -0.8 L -29.7 -0.7 L -29.2 -1.2 L -28.9 -2.3 L -28.9 -4.1 L -29.3 -5.6 L -29.9 -6.7 L -31.7 -8.1 L -32.8 -9.7 L -33.5 -11.4 L -33.8 -13.6 L -33.7 -16.1 L -33.3 -16.6 L -32.8 -16.6 L -32.3 -16.3 L -30.7 -14.0 L -30.1 -13.9 L -29.6 -14.5 L -29.2 -16.6 L -29.6 -21.9 L -30.1 -22.7 L -31.2 -23.1 L -31.8 -22.9 L -33.7 -21.2 L -34.4 -21.2 L -34.9 -21.7 L -36.3 -25.6 L -36.6 -28.5 L -37.1 -30.2 L -39.9 -36.2 L -40.6 -38.9 L -40.6 -41.2 L -39.5 -48.0 L -39.3 -51.8 L -39.6 -56.2 L -40.8 -63.1 L -40.8 -65.7 L -39.3 -70.2 L -36.7 -76.2 L -35.6 -79.1 L -35.3 -80.7 L -35.1 -83.7 L -34.6 -86.6 L -11.9 -79.8 L 11.1 -73.6 L 0.3 -28.7 L 0.4 -28.3 L 10.0 -13.4 Z" />
</g>
<g class="state-shape" id="state-shape-CO" style="fill:white;transform:translate(244.5px,188.5px);" data-area="259950043186" aria-label="Colorado">
<path d="M 19.8 -28.5 L 40.2 -27.6 L 40.5 -27.4 L 38.9 31.8 L 18.3 30.9 L -2.8 29.6 L -22.8 27.9 L -42.7 25.9 L -36.4 -33.1 L -8.3 -30.4 L 19.8 -28.5 Z" />
</g>
<g class="state-shape" id="state-shape-CT" style="fill:white;transform:translate(610.0px,100.2px);" data-area="12900439925" aria-label="Connecticut">
<path d="M 6.7 -9.0 L 8.1 -3.9 L 10.3 2.3 L 6.6 3.5 L 3.9 4.9 L -6.8 13.2 L -7.6 12.3 L -7.8 11.5 L -6.4 8.9 L -6.3 6.7 L -6.9 4.5 L -8.4 0.4 L -9.4 -3.6 L 6.7 -9.0 Z" />
</g>
<g class="state-shape" id="state-shape-DC" style="fill:white;transform:translate(573.1px,155.3px);" data-area="159982577" aria-label="District of Columbia">
<path d="M 1.1 0.1 L 0.1 1.4 L -0.4 0.6 L -1.2 -0.2 L -0.7 -1.0 L -0.3 -1.1 L 1.0 -0.3 L 1.1 0.1 Z" />
</g>
<g class="state-shape" id="state-shape-DE" style="fill:white;transform:translate(592.1px,149.5px);" data-area="5913351807" aria-label="Delaware">
<path d="M -3.7 -11.7 L -3.4 -9.8 L -2.7 -8.3 L -1.7 -6.9 L -1.7 -5.8 L -1.4 -4.5 L -0.2 -2.0 L 0.6 -1.2 L 1.6 -0.6 L 5.4 0.2 L 6.7 1.4 L 7.1 3.2 L 6.9 6.1 L 0.0 8.1 L -0.4 8.1 L -0.5 7.9 L -5.0 -4.5 L -6.9 -9.1 L -6.4 -10.0 L -5.6 -10.8 L -4.7 -11.4 L -3.7 -11.7 Z" />
</g>
<g class="state-shape" id="state-shape-FL" style="fill:white;transform:translate(552.4px,329.7px);" data-area="151425010984" aria-label="Florida">
<path d="M -50.5 -33.2 L -49.3 -32.4 L -46.7 -29.3 L -46.0 -29.0 L -16.6 -34.8 L -15.6 -34.8 L -13.7 -33.8 L -12.7 -33.8 L -12.0 -34.1 L -11.5 -34.8 L -10.5 -38.1 L -9.6 -38.6 L -8.1 -38.5 L -4.7 -36.8 L -3.0 -36.5 L -2.1 -30.1 L -1.5 -28.0 L -0.5 -26.3 L 5.2 -19.4 L 10.6 -14.6 L 12.8 -11.9 L 15.1 -8.4 L 18.7 -1.2 L 24.4 6.5 L 24.5 7.5 L 24.1 8.1 L 23.5 8.3 L 22.7 7.8 L 20.0 4.6 L 18.1 1.8 L 13.3 -6.6 L 12.0 -7.6 L 11.1 -7.8 L 10.6 -7.7 L 10.6 -6.2 L 11.5 -4.3 L 18.3 6.3 L 20.4 8.8 L 23.9 12.0 L 25.1 15.7 L 26.3 19.8 L 27.1 23.4 L 27.7 30.6 L 28.6 35.6 L 28.4 36.4 L 27.7 36.6 L 27.0 36.3 L 26.5 35.4 L 25.9 35.5 L 25.8 36.5 L 26.1 39.1 L 25.6 40.2 L 24.7 40.7 L 22.2 41.3 L 18.7 43.6 L 17.6 43.8 L 16.6 43.6 L 16.4 43.2 L 16.7 42.6 L 19.0 40.8 L 19.6 39.7 L 19.3 39.1 L 17.6 38.3 L 17.0 36.6 L 15.7 36.2 L 11.4 35.7 L 9.8 35.0 L 8.4 33.7 L 6.1 32.5 L 4.9 31.4 L 3.9 29.6 L 2.9 26.2 L 2.2 25.3 L 0.3 24.3 L -4.7 22.6 L -6.6 21.3 L -7.3 20.2 L -10.5 13.8 L -10.6 11.8 L -10.2 7.4 L -10.5 5.8 L -11.2 5.2 L -11.9 5.5 L -13.7 9.0 L -14.2 8.9 L -14.9 7.9 L -15.1 6.6 L -15.3 2.1 L -15.9 -2.6 L -16.7 -5.9 L -17.7 -8.3 L -21.0 -12.9 L -23.8 -16.0 L -25.9 -17.7 L -29.2 -19.5 L -33.5 -23.0 L -35.5 -23.7 L -37.1 -23.1 L -38.7 -21.4 L -39.2 -20.3 L -39.5 -18.8 L -40.2 -17.7 L -41.2 -17.0 L -42.8 -16.7 L -51.9 -17.7 L -53.9 -18.0 L -55.7 -18.9 L -59.0 -21.5 L -63.0 -22.8 L -65.0 -22.8 L -65.7 -22.5 L -65.5 -22.0 L -63.6 -20.2 L -63.7 -19.7 L -64.6 -19.4 L -65.9 -19.6 L -69.1 -21.0 L -73.7 -21.0 L -76.9 -22.0 L -78.1 -21.9 L -80.3 -21.1 L -81.6 -26.3 L -81.5 -27.7 L -81.1 -28.1 L -50.5 -33.2 Z" />
</g>
<g class="state-shape" id="state-shape-GA" style="fill:white;transform:translate(519.5px,267.9px);" data-area="156210825917" aria-label="Georgia">
<path d="M -15.6 -33.2 L -4.5 -35.4 L -4.2 -32.6 L -3.9 -31.4 L -3.1 -30.0 L -2.1 -28.8 L -0.0 -27.5 L 6.3 -24.6 L 8.3 -22.3 L 10.1 -20.7 L 18.7 -15.2 L 23.0 -11.6 L 25.2 -10.2 L 26.0 -9.5 L 28.2 -5.7 L 31.1 1.6 L 30.4 3.2 L 30.0 4.9 L 29.8 8.3 L 29.3 10.1 L 29.2 12.0 L 29.2 17.0 L 30.0 25.2 L 28.2 24.9 L 24.8 23.3 L 23.3 23.1 L 22.4 23.6 L 21.4 27.0 L 20.9 27.7 L 20.2 28.0 L 19.2 27.9 L 17.3 26.9 L 16.3 26.9 L -13.1 32.7 L -13.8 32.5 L -16.4 29.4 L -17.6 28.6 L -18.1 25.1 L -19.2 22.1 L -19.3 19.3 L -19.9 15.7 L -19.4 9.7 L -19.6 7.7 L -33.1 -30.1 L -15.6 -33.2 Z" />
</g>
<g class="state-shape" id="state-shape-HI" style="fill:white;transform:translate(242.1px,380.8px);" data-area="17015523613" aria-label="Hawaii">
<path d="M -2.8 -7.6 L -1.8 -7.5 L 0.2 -6.7 L 4.7 -4.4 L 5.5 -3.4 L 5.7 -1.9 L 6.3 -2.1 L 6.8 -1.9 L 7.4 -1.1 L 9.6 0.8 L 10.1 1.7 L 9.8 2.5 L 7.8 4.5 L 6.7 4.9 L 4.3 5.2 L 3.1 5.9 L 1.7 7.7 L 0.8 10.1 L -0.1 10.7 L -0.8 10.6 L -1.7 10.1 L -3.7 8.0 L -4.5 3.8 L -8.0 -1.9 L -7.8 -2.8 L -6.4 -4.5 L -6.1 -5.2 L -6.2 -6.2 L -7.4 -7.8 L -7.1 -9.5 L -5.9 -9.3 L -4.1 -7.9 L -2.8 -7.6 Z" />
<path d="M -17.7 -18.8 L -15.9 -19.6 L -15.2 -19.5 L -13.0 -18.1 L -11.0 -17.4 L -10.6 -16.6 L -10.7 -15.7 L -11.4 -15.0 L -13.7 -14.7 L -14.8 -14.0 L -15.6 -14.0 L -16.6 -15.0 L -17.4 -16.8 L -19.4 -17.0 L -20.0 -17.4 L -20.9 -19.0 L -21.0 -20.0 L -20.7 -20.5 L -20.1 -20.8 L -17.7 -18.8 Z" />
<path d="M -17.7 -12.9 L -19.1 -12.8 L -19.9 -13.4 L -18.7 -14.2 L -17.5 -13.1 L -17.4 -13.0 L -17.7 -12.9 Z" />
<path d="M -23.3 -16.3 L -24.2 -16.6 L -26.3 -18.8 L -24.4 -19.2 L -22.6 -18.2 L -22.1 -17.4 L -22.7 -16.6 L -23.3 -16.3 Z" />
<path d="M -24.0 -22.9 L -22.5 -22.9 L -22.3 -22.4 L -22.4 -21.8 L -22.9 -21.5 L -24.4 -21.1 L -27.4 -21.8 L -29.6 -21.3 L -30.0 -21.6 L -30.2 -22.4 L -30.2 -23.1 L -29.8 -23.5 L -27.2 -23.0 L -24.0 -22.9 Z" />
<path d="M -39.8 -29.0 L -38.3 -27.2 L -36.5 -25.7 L -36.1 -24.9 L -36.3 -24.5 L -37.4 -24.1 L -39.7 -24.9 L -42.2 -25.0 L -43.5 -26.3 L -44.9 -28.9 L -44.5 -29.2 L -43.0 -29.1 L -42.2 -30.6 L -41.4 -31.2 L -40.8 -30.8 L -40.4 -29.9 L -39.8 -29.0 Z" />
<path d="M -62.5 -33.8 L -65.1 -34.7 L -67.5 -36.7 L -67.3 -37.6 L -65.8 -39.1 L -64.7 -39.5 L -62.9 -39.6 L -61.9 -39.1 L -60.9 -38.2 L -61.1 -36.8 L -61.0 -34.9 L -61.5 -34.3 L -62.5 -33.8 Z" />
<path d="M -72.8 -32.8 L -73.1 -33.1 L -73.4 -34.2 L -72.5 -35.1 L -71.9 -36.5 L -71.4 -36.5 L -70.9 -35.9 L -71.0 -35.1 L -72.8 -32.8 Z" />
</g>
<g class="state-shape" id="state-shape-IA" style="fill:white;transform:translate(381.9px,142.2px);" data-area="144388443715" aria-label="Iowa">
<path d="M 34.1 2.4 L 33.4 2.8 L 30.9 3.4 L 30.0 4.6 L 29.7 5.9 L 29.9 9.0 L 29.6 10.8 L 28.8 13.5 L 26.9 18.1 L 26.0 23.0 L 24.5 22.8 L 22.1 21.2 L 20.7 20.8 L -2.9 22.7 L -24.8 24.1 L -25.5 21.8 L -26.0 14.6 L -26.5 11.7 L -29.2 3.4 L -32.9 -3.9 L -33.7 -6.4 L -33.9 -9.9 L -33.1 -16.3 L -33.0 -19.4 L -4.3 -21.1 L 24.3 -23.7 L 24.7 -18.0 L 25.0 -16.5 L 25.7 -15.1 L 26.7 -13.9 L 29.3 -11.9 L 30.5 -10.6 L 34.0 -8.4 L 35.2 -0.8 L 34.9 1.2 L 34.1 2.4 Z" />
</g>
<g class="state-shape" id="state-shape-ID" style="fill:white;transform:translate(155.0px,100.6px);" data-area="223080605687" aria-label="Idaho">
<path d="M 5.9 -27.1 L 5.6 -25.9 L 5.8 -25.1 L 7.0 -24.2 L 10.0 -22.9 L 11.0 -21.9 L 11.7 -20.6 L 12.3 -18.7 L 12.6 -16.5 L 13.2 -9.2 L 13.4 -8.5 L 14.0 -8.0 L 16.7 -6.8 L 18.9 -4.8 L 20.2 -4.2 L 28.5 -3.0 L 29.8 -2.9 L 30.8 -3.2 L 33.6 -5.0 L 34.7 -5.4 L 36.1 -5.5 L 38.5 -5.2 L 32.9 36.7 L 16.0 34.2 L -0.4 31.5 L -17.2 28.3 L -33.3 25.0 L -26.2 -9.5 L -26.6 -11.1 L -26.5 -12.3 L -25.7 -13.8 L -23.4 -16.6 L -22.2 -18.5 L -20.2 -22.1 L -17.4 -26.6 L -16.3 -29.5 L -16.2 -30.4 L -16.5 -31.2 L -18.7 -32.2 L -20.0 -34.3 L -20.2 -35.6 L -10.8 -79.1 L -1.8 -77.1 L -4.1 -64.0 L -4.2 -62.6 L -2.9 -60.2 L -2.5 -56.2 L -1.1 -52.4 L 3.4 -44.2 L 7.0 -38.9 L 7.7 -33.3 L 7.5 -32.5 L 6.3 -30.7 L 6.3 -30.0 L 6.6 -28.9 L 5.9 -27.1 Z" />
</g>
<g class="state-shape" id="state-shape-IL" style="fill:white;transform:translate(433.8px,167.2px);" data-area="147482488718" aria-label="Illinois">
<path d="M 21.0 3.9 L 21.3 6.8 L 20.1 9.6 L 19.8 11.6 L 20.6 17.6 L 20.6 19.8 L 20.2 21.6 L 18.1 26.3 L 17.7 28.9 L 17.9 30.9 L 16.1 34.3 L 15.0 38.7 L 14.4 38.9 L 12.5 38.7 L 11.9 39.2 L 11.7 40.1 L 11.8 42.4 L 11.6 43.4 L 10.7 43.6 L 8.6 43.0 L 7.6 43.0 L 7.1 43.4 L 6.2 45.1 L 3.3 43.7 L 1.1 41.9 L -0.5 40.0 L -4.3 33.8 L -7.1 32.0 L -8.6 30.5 L -9.5 28.6 L -10.9 20.8 L -12.2 17.6 L -14.4 15.0 L -20.4 9.8 L -22.6 7.6 L -24.4 5.3 L -25.4 2.9 L -25.9 -0.0 L -25.7 -3.4 L -24.8 -7.2 L -23.1 -11.4 L -22.2 -14.2 L -22.0 -15.9 L -22.1 -18.9 L -21.9 -20.2 L -21.5 -21.1 L -21.0 -21.5 L -18.5 -22.2 L -17.7 -22.6 L -17.1 -23.4 L -16.8 -24.4 L -16.7 -27.1 L -17.8 -33.4 L 10.0 -37.2 L 11.0 -35.1 L 11.7 -31.0 L 12.2 -29.4 L 14.9 -27.0 L 15.8 -26.6 L 16.7 -26.5 L 21.0 3.9 Z" />
</g>
<g class="state-shape" id="state-shape-IN" style="fill:white;transform:translate(467.9px,163.1px);" data-area="93362335644" aria-label="Indiana">
<path d="M 11.0 -30.0 L 18.1 9.6 L 16.8 10.9 L 16.4 12.1 L 16.6 13.2 L 17.6 13.7 L 17.9 14.2 L 18.0 14.8 L 17.7 15.7 L 16.7 17.3 L 15.9 17.9 L 15.3 17.8 L 13.6 16.8 L 13.1 16.8 L 12.6 17.0 L 11.9 18.4 L 11.1 21.7 L 10.4 23.0 L 9.4 24.3 L 7.7 25.7 L 5.5 28.4 L 4.3 29.4 L 2.5 29.9 L 0.3 29.4 L -0.7 29.6 L -1.1 30.1 L -1.7 32.2 L -2.5 32.9 L -3.4 32.8 L -5.3 31.4 L -6.8 31.8 L -9.5 33.6 L -10.2 33.5 L -11.5 32.5 L -12.4 32.4 L -13.2 32.8 L -14.7 34.4 L -16.3 34.9 L -16.4 33.0 L -16.0 30.4 L -14.0 25.7 L -13.6 24.0 L -13.5 21.9 L -14.3 17.3 L -14.3 15.4 L -14.1 13.8 L -13.1 11.6 L -12.9 10.2 L -17.5 -22.4 L -15.4 -22.8 L -13.1 -23.9 L -12.0 -24.8 L -10.7 -26.5 L 10.7 -30.3 L 11.0 -30.0 Z" />
</g>
<g class="state-shape" id="state-shape-KS" style="fill:white;transform:translate(328.1px,198.4px);" data-area="214687832852" aria-label="Kansas">
<path d="M 43.8 -14.2 L 45.8 20.7 L 23.3 21.7 L 0.8 22.3 L -22.4 22.3 L -44.8 21.9 L -43.6 -22.3 L -24.2 -22.0 L -4.9 -22.1 L 14.4 -22.5 L 33.7 -23.3 L 35.8 -22.0 L 38.0 -19.7 L 39.8 -18.4 L 41.1 -16.6 L 43.3 -15.2 L 43.8 -14.2 Z" />
</g>
<g class="state-shape" id="state-shape-KY" style="fill:white;transform:translate(485.9px,198.5px);" data-area="116349373549" aria-label="Kentucky">
<path d="M 26.5 -18.7 L 27.9 -16.6 L 31.6 -12.6 L 32.3 -10.5 L 33.6 -8.6 L 34.2 -6.8 L 32.0 -3.1 L 29.1 -0.4 L 27.6 3.2 L 25.4 5.1 L 23.9 7.0 L 22.8 9.5 L 22.5 11.7 L 4.6 15.1 L -13.2 18.2 L -31.2 20.9 L -49.2 23.3 L -49.0 20.8 L -46.3 16.3 L -45.9 15.0 L -46.0 13.8 L -45.2 12.2 L -44.7 11.8 L -44.2 11.6 L -41.5 12.3 L -40.6 12.1 L -40.4 11.3 L -40.5 8.9 L -40.2 7.9 L -39.6 7.4 L -37.8 7.6 L -37.2 7.3 L -36.1 3.2 L -34.5 -0.4 L -32.7 -1.0 L -31.2 -2.6 L -30.4 -3.0 L -29.5 -2.9 L -28.2 -1.9 L -27.5 -1.8 L -24.8 -3.6 L -23.3 -4.0 L -21.4 -2.6 L -20.5 -2.5 L -19.7 -3.2 L -19.1 -5.3 L -18.7 -5.8 L -17.8 -6.0 L -16.2 -5.6 L -15.3 -5.5 L -14.2 -5.8 L -13.2 -6.3 L -10.2 -9.9 L -8.5 -11.1 L -7.6 -12.4 L -6.9 -13.7 L -6.1 -17.0 L -5.4 -18.4 L -4.9 -18.6 L -4.3 -18.6 L -2.3 -17.5 L -1.6 -17.8 L -0.8 -18.7 L -0.2 -20.0 L -0.0 -21.0 L -0.4 -21.6 L -1.4 -22.3 L -1.6 -23.4 L -1.2 -24.5 L -0.0 -25.8 L 0.7 -25.9 L 4.6 -25.2 L 6.5 -24.3 L 10.4 -23.7 L 11.7 -23.1 L 13.7 -21.5 L 14.7 -21.1 L 19.7 -21.2 L 23.9 -20.6 L 25.3 -20.0 L 26.5 -18.7 Z" />
</g>
<g class="state-shape" id="state-shape-LA" style="fill:white;transform:translate(407.7px,304.6px);" data-area="122324328218" aria-label="Louisiana">
<path d="M 10.9 3.3 L 33.1 0.8 L 34.4 2.5 L 35.4 4.4 L 36.9 8.7 L 33.8 9.4 L 32.5 10.8 L 31.4 11.3 L 29.5 11.5 L 27.6 11.4 L 27.0 11.5 L 26.4 12.0 L 26.1 12.7 L 26.1 13.6 L 26.5 14.5 L 27.3 15.6 L 28.7 15.9 L 30.0 15.5 L 33.6 13.8 L 35.7 14.3 L 38.7 13.4 L 39.3 13.5 L 39.8 14.3 L 39.9 15.2 L 38.2 19.2 L 38.7 20.7 L 39.1 23.2 L 39.7 23.9 L 41.2 24.6 L 44.3 25.2 L 45.5 25.6 L 46.3 26.5 L 46.4 26.9 L 46.2 27.4 L 45.5 27.7 L 40.5 28.3 L 39.0 27.0 L 36.3 26.9 L 35.5 26.7 L 35.0 26.2 L 34.0 23.9 L 33.2 23.4 L 32.4 23.3 L 31.7 23.5 L 31.3 24.1 L 31.1 27.2 L 30.4 28.1 L 29.1 28.3 L 27.6 27.3 L 26.9 27.2 L 26.1 27.5 L 24.0 28.9 L 22.0 29.2 L 18.6 28.5 L 16.0 28.3 L 15.5 27.6 L 15.5 25.6 L 15.1 24.8 L 14.1 24.5 L 11.9 24.8 L 11.0 24.6 L 10.6 24.2 L 9.9 21.7 L 8.7 21.2 L 7.2 21.4 L 3.9 24.1 L 2.9 24.6 L 2.0 24.7 L -0.4 24.4 L -6.0 22.9 L -14.3 23.7 L -15.8 23.5 L -18.4 22.5 L -17.6 14.1 L -16.5 8.0 L -16.8 2.3 L -17.6 -0.5 L -20.2 -4.4 L -21.4 -9.3 L -23.1 -11.9 L -23.9 -24.2 L -5.3 -25.7 L 13.3 -27.6 L 13.5 -25.0 L 15.0 -19.5 L 15.1 -16.9 L 14.1 -11.7 L 12.5 -7.8 L 11.9 -5.6 L 12.0 -1.8 L 10.4 2.2 L 10.5 3.0 L 10.9 3.3 Z" />
</g>
<g class="state-shape" id="state-shape-MA" style="fill:white;transform:translate(616.9px,87.8px);" data-area="19751706500" aria-label="Massachusetts">
<path d="M 6.3 -10.8 L 7.6 -10.0 L 8.3 -8.9 L 8.2 -7.7 L 7.3 -4.6 L 7.3 -3.9 L 7.6 -3.5 L 7.9 -3.5 L 9.6 -4.1 L 10.4 -3.8 L 11.6 -2.9 L 14.2 0.0 L 15.7 0.8 L 16.7 0.6 L 17.3 0.1 L 17.3 -3.1 L 17.8 -3.8 L 18.1 -3.9 L 18.4 -3.6 L 19.2 -0.7 L 19.1 1.7 L 18.6 2.6 L 15.8 5.1 L 15.2 5.5 L 13.6 5.8 L 10.4 8.3 L 8.2 6.2 L 5.8 2.5 L 5.0 2.0 L 4.0 1.9 L -16.3 8.8 L -17.1 3.5 L -17.3 -1.2 L 0.6 -7.4 L 3.4 -9.6 L 6.3 -10.8 Z" />
</g>
<g class="state-shape" id="state-shape-MD" style="fill:white;transform:translate(574.6px,149.2px);" data-area="26527987073" aria-label="Maryland">
<path d="M 10.5 -8.7 L 12.3 -4.3 L 15.8 5.5 L 17.0 8.5 L 17.4 8.5 L 24.3 6.5 L 24.1 8.2 L 24.4 13.3 L 24.1 15.0 L 23.8 15.5 L 23.2 15.5 L 22.9 15.2 L 22.6 11.5 L 22.3 10.7 L 21.7 10.2 L 21.2 10.6 L 20.9 11.6 L 21.4 16.0 L 19.0 17.3 L 18.3 16.4 L 16.8 15.4 L 16.0 13.7 L 15.4 13.6 L 13.9 13.8 L 13.4 13.4 L 11.7 9.9 L 11.6 7.0 L 11.0 6.6 L 9.6 6.2 L 9.1 5.5 L 9.1 3.9 L 9.9 -0.4 L 9.7 -1.3 L 8.7 -1.3 L 8.4 -1.7 L 9.4 -5.0 L 9.4 -6.0 L 9.0 -6.3 L 8.4 -6.1 L 7.3 -4.9 L 5.6 -3.8 L 5.3 4.3 L 5.6 7.7 L 6.0 8.8 L 7.9 11.8 L 8.0 12.8 L 7.8 14.2 L 9.0 15.8 L 9.0 16.2 L 8.6 16.6 L 7.4 16.7 L 4.3 15.8 L 1.1 15.7 L -0.0 15.4 L -0.9 14.8 L -1.7 14.2 L -1.3 9.0 L -1.5 7.6 L -0.5 6.2 L -0.5 5.9 L -2.0 5.1 L -2.7 5.9 L -6.7 3.4 L -8.6 2.5 L -11.2 2.4 L -14.3 1.9 L -17.1 2.3 L -20.1 3.7 L -23.6 6.1 L -26.2 8.3 L -27.2 8.6 L -28.7 2.1 L -8.4 -3.2 L 10.5 -8.7 Z" />
</g>
<g class="state-shape" id="state-shape-ME" style="fill:white;transform:translate(624.7px,31.9px);" data-area="86196250925" aria-label="Maine">
<path d="M -11.4 -29.7 L -10.1 -29.6 L -8.0 -28.1 L -6.9 -27.8 L -6.4 -28.2 L -5.4 -30.2 L -3.8 -30.4 L -2.6 -31.9 L -1.9 -31.9 L -0.1 -31.3 L 2.2 -31.1 L 3.3 -30.6 L 12.4 -8.7 L 13.1 -8.1 L 15.1 -7.3 L 17.5 -4.7 L 20.6 -4.0 L 21.7 -3.5 L 22.7 -2.1 L 23.2 0.1 L 23.2 2.4 L 21.9 4.2 L 19.4 9.7 L 18.1 11.4 L 17.3 11.9 L 16.6 12.0 L 15.9 11.7 L 14.8 10.6 L 13.8 10.6 L 13.2 11.4 L 13.1 13.8 L 12.3 14.5 L 11.5 14.4 L 9.7 13.2 L 9.2 13.2 L 8.8 13.5 L 8.4 14.3 L 8.4 15.4 L 8.6 16.5 L 9.3 18.0 L 9.6 20.6 L 9.3 22.0 L 8.8 22.9 L 7.9 23.8 L 4.6 25.9 L 3.5 26.8 L 1.5 30.1 L 0.3 31.1 L -0.0 34.2 L -1.6 38.5 L -1.7 41.2 L -3.5 41.0 L -4.4 40.4 L -15.5 10.1 L -14.9 9.5 L -14.5 8.5 L -13.7 4.5 L -13.1 -0.6 L -13.2 -4.0 L -14.3 -6.4 L -14.5 -7.3 L -14.0 -11.5 L -14.3 -14.4 L -13.4 -18.6 L -12.0 -28.5 L -11.8 -29.4 L -11.4 -29.7 Z" />
</g>
<g class="state-shape" id="state-shape-MI" style="fill:white;transform:translate(475.7px,108.8px);" data-area="148399564489" aria-label="Michigan">
<path d="M 10.9 -22.3 L 11.9 -17.9 L 12.0 -15.7 L 11.2 -12.1 L 9.2 -6.0 L 9.2 -4.8 L 9.6 -4.4 L 10.1 -4.4 L 11.2 -4.9 L 12.2 -5.7 L 13.7 -8.0 L 15.1 -12.1 L 15.6 -12.4 L 16.5 -12.2 L 18.3 -11.1 L 19.5 -9.7 L 20.2 -8.2 L 21.6 -3.9 L 24.7 0.8 L 25.2 2.1 L 24.9 5.7 L 24.6 6.2 L 23.0 7.2 L 22.0 8.5 L 21.4 10.2 L 21.0 13.6 L 20.5 14.4 L 19.3 15.7 L 18.7 17.0 L 18.1 19.6 L 18.1 22.1 L 3.4 25.1 L 3.3 24.3 L 2.9 24.1 L -18.4 27.8 L -17.0 25.3 L -15.7 22.2 L -15.2 19.8 L -15.1 17.5 L -15.5 14.5 L -17.3 6.8 L -19.9 0.4 L -20.2 -1.4 L -20.2 -3.3 L -18.4 -15.4 L -17.7 -17.2 L -15.8 -20.4 L -15.0 -22.6 L -14.3 -23.3 L -13.8 -23.1 L -14.4 -20.0 L -14.0 -17.8 L -13.7 -17.9 L -13.1 -19.3 L -12.6 -19.5 L -12.1 -19.2 L -11.7 -17.9 L -11.1 -18.1 L -10.6 -18.9 L -10.5 -20.2 L -11.2 -24.9 L -10.9 -25.5 L -9.8 -26.2 L -9.4 -27.0 L -8.8 -32.7 L -8.3 -33.7 L -7.6 -33.9 L -5.3 -33.3 L -0.6 -33.2 L 2.1 -32.8 L 3.5 -32.3 L 8.9 -29.4 L 10.1 -28.4 L 10.7 -27.3 L 10.7 -24.1 L 10.9 -22.3 Z" />
<path d="M -47.6 -47.4 L -45.5 -47.9 L -43.3 -47.6 L -41.6 -46.8 L -38.6 -45.0 L -33.9 -42.8 L -32.5 -42.8 L -31.5 -42.3 L -30.9 -42.5 L -30.0 -43.6 L -28.5 -43.2 L -27.8 -43.3 L -26.1 -45.3 L -25.2 -45.8 L -20.7 -46.3 L -17.5 -47.8 L -16.0 -47.8 L -13.7 -48.6 L -12.6 -48.6 L -11.7 -48.1 L -11.0 -46.3 L -10.3 -45.7 L -9.0 -45.6 L -5.7 -46.3 L -4.7 -46.1 L -3.8 -45.7 L -3.2 -45.1 L -2.8 -44.2 L -2.3 -41.7 L -0.3 -40.3 L -0.1 -39.8 L -0.6 -39.0 L -1.5 -38.6 L -5.2 -38.9 L -5.7 -38.3 L -6.2 -37.1 L -7.0 -36.7 L -7.9 -36.8 L -10.1 -37.7 L -13.3 -37.8 L -15.2 -37.6 L -18.3 -36.8 L -20.6 -36.4 L -22.1 -35.3 L -24.3 -32.3 L -26.1 -30.5 L -26.6 -30.7 L -26.7 -32.3 L -27.2 -32.8 L -27.9 -32.1 L -28.3 -30.8 L -28.6 -30.4 L -29.0 -30.5 L -30.2 -31.3 L -30.9 -31.4 L -31.6 -29.8 L -32.2 -25.4 L -34.6 -20.0 L -35.8 -20.7 L -37.2 -22.9 L -38.9 -28.2 L -39.4 -29.2 L -40.2 -29.9 L -44.5 -31.8 L -46.9 -32.1 L -58.6 -35.3 L -60.3 -36.6 L -63.6 -40.5 L -61.3 -43.0 L -57.7 -44.0 L -55.7 -45.3 L -49.4 -51.2 L -47.9 -52.9 L -46.5 -55.0 L -45.5 -55.5 L -45.0 -54.7 L -45.0 -52.8 L -45.5 -51.9 L -48.1 -49.0 L -48.4 -47.8 L -48.2 -47.5 L -47.6 -47.4 Z" />
<path d="M -56.7 -60.5 L -56.8 -60.8 L -56.3 -61.9 L -56.0 -63.6 L -55.0 -65.2 L -53.7 -66.1 L -51.6 -66.6 L -51.2 -66.6 L -51.1 -65.7 L -51.8 -64.7 L -54.5 -62.4 L -55.7 -60.8 L -56.7 -60.5 Z" />
</g>
<g class="state-shape" id="state-shape-MN" style="fill:white;transform:translate(368.1px,77.3px);" data-area="231766540150" aria-label="Minnesota">
<path d="M -10.3 -45.2 L -8.7 -45.0 L -7.4 -44.1 L -6.6 -43.0 L -4.8 -39.7 L -4.0 -38.7 L -3.4 -38.4 L 0.2 -38.5 L 2.6 -38.3 L 7.0 -37.4 L 12.1 -36.1 L 15.2 -35.6 L 19.3 -35.6 L 24.0 -36.3 L 25.3 -36.3 L 26.3 -35.9 L 27.5 -35.1 L 30.3 -34.1 L 33.0 -32.7 L 38.0 -31.9 L 46.0 -29.6 L 44.3 -27.6 L 39.8 -25.4 L 36.6 -23.0 L 29.4 -15.7 L 22.6 -8.2 L 21.7 -6.7 L 21.3 -5.2 L 21.4 -0.7 L 21.2 0.7 L 20.4 2.2 L 18.4 4.7 L 17.8 6.9 L 17.8 12.2 L 17.5 18.5 L 17.9 20.8 L 18.7 22.6 L 20.1 24.4 L 25.5 28.5 L 29.8 32.6 L 30.9 33.2 L 33.7 34.2 L 35.5 35.5 L 36.5 36.7 L 37.3 38.1 L 37.8 39.5 L 38.1 41.3 L 9.5 43.9 L -19.2 45.6 L -20.1 37.2 L -20.4 26.6 L -20.7 22.2 L -21.7 18.0 L -23.6 14.2 L -24.0 12.9 L -24.1 11.1 L -23.5 7.3 L -23.7 3.9 L -26.1 -13.6 L -29.4 -27.4 L -30.4 -37.4 L -11.5 -38.3 L -11.2 -38.5 L -11.1 -39.4 L -11.4 -44.8 L -11.0 -45.2 L -10.3 -45.2 Z" />
</g>
<g class="state-shape" id="state-shape-MO" style="fill:white;transform:translate(398.1px,196.9px);" data-area="186132913558" aria-label="Missouri">
<path d="M -19.1 -31.9 L 4.6 -33.9 L 6.0 -33.4 L 8.3 -31.8 L 9.8 -31.6 L 9.8 -29.3 L 10.1 -27.3 L 10.8 -25.3 L 11.8 -23.5 L 14.6 -20.5 L 21.6 -14.4 L 23.7 -11.6 L 24.8 -8.7 L 26.1 -1.2 L 26.9 0.7 L 28.6 2.4 L 31.4 4.1 L 35.2 10.3 L 36.7 12.3 L 39.0 14.0 L 41.8 15.5 L 41.9 16.7 L 41.6 17.9 L 38.8 22.6 L 38.7 24.8 L 37.8 27.2 L 36.2 33.1 L 29.6 33.9 L 29.2 33.7 L 29.0 32.8 L 29.2 31.8 L 30.9 27.3 L 30.9 26.1 L 30.5 25.8 L 2.5 28.6 L -23.8 30.6 L -26.2 -12.9 L -27.0 -13.9 L -28.9 -15.0 L -30.2 -16.9 L -32.0 -18.2 L -34.2 -20.5 L -36.7 -22.2 L -39.7 -27.6 L -41.0 -30.6 L -19.1 -31.9 Z" />
</g>
<g class="state-shape" id="state-shape-MS" style="fill:white;transform:translate(439.9px,277.4px);" data-area="123777781843" aria-label="Mississippi">
<path d="M 16.8 10.4 L 16.8 14.4 L 18.5 23.8 L 19.9 34.9 L 16.5 34.8 L 14.1 35.1 L 8.3 37.6 L 7.1 37.8 L 6.2 37.7 L 5.5 37.3 L 5.0 36.6 L 3.2 31.5 L 2.2 29.7 L 0.9 28.0 L -20.8 30.4 L -21.6 30.3 L -21.6 28.8 L -20.2 25.3 L -20.3 21.5 L -19.6 19.3 L -18.1 15.4 L -17.0 10.0 L -17.3 7.4 L -18.9 1.0 L -18.9 -0.2 L -18.3 -2.5 L -18.2 -4.3 L -18.3 -5.8 L -19.2 -8.6 L -19.1 -10.9 L -18.3 -13.8 L -15.8 -20.2 L -14.4 -24.3 L -13.7 -25.6 L -11.5 -28.1 L -10.1 -31.5 L 16.2 -34.9 L 16.8 10.4 Z" />
</g>
<g class="state-shape" id="state-shape-MT" style="fill:white;transform:translate(212.9px,63.6px);" data-area="385107353600" aria-label="Montana">
<path d="M -55.0 -39.2 L -27.1 -34.0 L 0.4 -29.9 L 28.0 -26.8 L 42.8 -25.6 L 57.6 -24.6 L 54.4 36.6 L 36.0 35.5 L 17.7 33.9 L -0.6 31.9 L -18.8 29.6 L -19.1 29.8 L -19.4 31.8 L -21.9 31.5 L -23.3 31.6 L -24.4 32.0 L -27.0 33.7 L -28.0 34.0 L -29.1 34.0 L -37.8 32.8 L -39.0 32.1 L -41.2 30.1 L -44.0 28.9 L -44.5 28.4 L -44.8 27.7 L -45.3 20.2 L -45.8 17.9 L -46.4 16.1 L -47.1 14.9 L -47.9 14.1 L -51.2 12.6 L -52.0 11.9 L -52.3 11.4 L -52.2 10.4 L -51.3 8.1 L -51.6 6.9 L -51.6 6.3 L -50.5 4.5 L -50.2 3.7 L -51.0 -2.0 L -54.5 -7.2 L -59.1 -15.5 L -60.4 -19.2 L -60.9 -23.2 L -62.1 -25.7 L -62.1 -27.0 L -59.8 -40.2 L -55.0 -39.2 Z" />
</g>
<g class="state-shape" id="state-shape-NC" style="fill:white;transform:translate(561.1px,213.2px);" data-area="123451920505" aria-label="North Carolina">
<path d="M 43.2 -15.2 L 44.2 -15.2 L 45.1 -14.3 L 45.5 -13.4 L 45.8 -11.3 L 45.6 -10.3 L 44.8 -8.2 L 44.3 -7.5 L 43.8 -7.3 L 43.4 -7.4 L 43.3 -8.0 L 44.2 -10.6 L 44.2 -11.3 L 43.0 -14.6 L 43.2 -15.2 Z" />
<path d="M 41.1 -18.8 L 40.8 -18.0 L 40.5 -17.8 L 40.0 -17.9 L 38.9 -19.4 L 37.9 -19.8 L 37.0 -21.2 L 36.3 -21.6 L 35.5 -21.7 L 35.0 -21.4 L 33.7 -20.0 L 32.9 -18.6 L 32.2 -17.9 L 29.1 -15.9 L 29.0 -14.9 L 29.8 -14.5 L 31.0 -14.6 L 34.6 -15.6 L 36.2 -15.5 L 36.9 -14.9 L 37.6 -12.9 L 38.2 -12.4 L 39.0 -12.6 L 40.0 -13.7 L 40.6 -13.7 L 40.9 -13.2 L 41.3 -10.9 L 40.7 -10.3 L 38.9 -9.3 L 38.1 -7.5 L 37.5 -7.1 L 36.8 -7.2 L 36.0 -8.2 L 35.4 -8.4 L 35.0 -8.2 L 34.0 -7.4 L 33.0 -7.0 L 30.1 -6.6 L 28.2 -7.2 L 26.9 -7.3 L 26.1 -7.2 L 25.5 -6.7 L 25.1 -5.9 L 25.3 -5.4 L 26.0 -4.7 L 27.0 -4.2 L 28.7 -4.1 L 32.3 -4.9 L 33.0 -4.7 L 33.3 -4.0 L 33.2 -3.4 L 30.9 -0.1 L 30.5 1.0 L 30.4 1.7 L 30.9 2.2 L 31.6 2.1 L 33.8 0.7 L 34.5 0.5 L 34.9 1.4 L 34.7 2.5 L 33.8 4.1 L 32.5 5.3 L 26.0 9.0 L 24.1 10.4 L 23.0 11.9 L 21.3 15.2 L 20.3 16.6 L 14.0 22.5 L -0.3 12.2 L -1.2 12.1 L -14.6 15.3 L -15.2 15.2 L -15.7 14.8 L -17.6 11.7 L -18.1 11.1 L -18.6 10.9 L -18.9 11.2 L -19.3 13.0 L -19.6 13.4 L -20.1 13.1 L -20.8 11.5 L -21.8 11.1 L -35.4 14.2 L -36.2 14.6 L -37.9 16.2 L -40.2 16.5 L -42.4 18.3 L -43.7 18.8 L -57.2 21.5 L -57.2 20.0 L -56.8 18.6 L -56.2 17.3 L -55.2 16.1 L -53.4 14.6 L -49.3 12.3 L -46.9 10.5 L -44.9 8.4 L -41.4 3.5 L -37.6 1.2 L -35.3 -0.8 L -33.3 -4.8 L -33.0 -7.1 L -15.4 -11.2 L 2.1 -15.5 L 19.5 -20.2 L 36.7 -25.2 L 38.7 -22.7 L 39.5 -21.0 L 41.1 -18.8 Z" />
<path d="M 38.9 -0.5 L 39.3 -0.1 L 39.1 0.9 L 37.8 3.1 L 37.1 4.9 L 36.4 5.5 L 36.2 4.1 L 36.7 2.0 L 37.9 0.0 L 38.4 -0.4 L 38.9 -0.5 Z" />
</g>
<g class="state-shape" id="state-shape-ND" style="fill:white;transform:translate(305.4px,63.4px);" data-area="183373287214" aria-label="North Dakota">
<path d="M 39.1 22.4 L 20.0 22.9 L 0.9 22.9 L -18.2 22.5 L -37.3 21.7 L -34.8 -24.4 L -18.1 -23.7 L -1.3 -23.3 L 15.5 -23.3 L 32.3 -23.6 L 33.4 -13.2 L 36.1 -2.1 L 36.9 2.0 L 39.1 18.4 L 39.2 20.7 L 39.1 22.4 Z" />
</g>
<g class="state-shape" id="state-shape-NE" style="fill:white;transform:translate(312.6px,152.7px);" data-area="205761327777" aria-label="Nebraska">
<path d="M 35.6 -17.1 L 36.4 -14.4 L 40.2 -6.9 L 42.8 1.3 L 43.3 4.2 L 43.8 11.3 L 44.2 13.0 L 46.0 17.0 L 48.6 21.7 L 49.2 22.4 L 29.9 23.2 L 10.6 23.7 L -8.7 23.7 L -28.1 23.4 L -27.6 8.5 L -27.8 8.3 L -48.3 7.3 L -46.8 -23.4 L -16.5 -22.2 L 14.1 -22.0 L 15.6 -21.6 L 18.2 -19.9 L 19.9 -19.6 L 21.5 -19.8 L 25.2 -21.6 L 26.6 -21.8 L 27.7 -21.6 L 28.8 -21.1 L 32.1 -18.3 L 33.5 -17.4 L 34.3 -17.1 L 35.6 -17.1 Z" />
</g>
<g class="state-shape" id="state-shape-NH" style="fill:white;transform:translate(611.6px,70.3px);" data-area="26015460796" aria-label="New Hampshire">
<path d="M -3.3 -28.6 L -2.4 -28.3 L 8.7 1.9 L 9.6 2.6 L 11.4 2.8 L 11.6 6.7 L 8.7 7.9 L 5.9 10.1 L -6.2 14.3 L -7.0 9.5 L -6.8 6.5 L -7.5 3.0 L -7.8 0.5 L -7.2 -5.4 L -7.8 -11.4 L -7.6 -12.2 L -6.6 -14.1 L -6.3 -15.4 L -6.4 -20.0 L -7.1 -22.9 L -7.2 -24.2 L -7.0 -25.8 L -6.6 -26.5 L -5.2 -27.1 L -4.4 -28.8 L -3.9 -28.9 L -3.3 -28.6 Z" />
</g>
<g class="state-shape" id="state-shape-NJ" style="fill:white;transform:translate(593.9px,123.4px);" data-area="20181500454" aria-label="New Jersey">
<path d="M 7.7 0.3 L 8.0 10.1 L 7.8 15.6 L 7.4 18.5 L 6.6 21.4 L 6.0 23.3 L 5.3 23.6 L 4.2 23.2 L 1.8 21.5 L -2.6 20.1 L -4.4 18.2 L -5.4 16.0 L -5.5 14.6 L -3.4 11.0 L -2.8 8.5 L -2.9 7.0 L -3.5 5.6 L -4.6 3.9 L -6.7 1.8 L -7.1 0.1 L -6.9 -2.6 L -5.1 -8.4 L -4.6 -11.6 L -2.3 -10.4 L 2.2 -8.4 L 3.4 -7.6 L 5.2 -4.7 L 5.3 -1.8 L 5.7 -0.4 L 6.0 -0.1 L 6.3 -0.1 L 7.0 -1.0 L 7.3 -1.1 L 7.7 -0.7 L 7.7 0.3 Z" />
</g>
<g class="state-shape" id="state-shape-NM" style="fill:white;transform:translate(233.3px,256.3px);" data-area="312784409173" aria-label="New Mexico">
<path d="M 39.5 -36.4 L 39.2 -27.7 L 38.1 -27.8 L 37.8 -27.4 L 35.1 38.7 L 16.7 37.9 L -8.2 36.2 L -8.5 36.5 L -8.8 40.8 L -29.8 39.0 L -30.1 39.3 L -30.8 47.4 L -40.3 46.5 L -31.5 -41.9 L -13.8 -40.1 L 3.9 -38.5 L 21.7 -37.3 L 39.5 -36.4 Z" />
</g>
<g class="state-shape" id="state-shape-NV" style="fill:white;transform:translate(118.6px,165.9px);" data-area="295223193629" aria-label="Nevada">
<path d="M 24.1 42.5 L 23.6 46.0 L 22.1 51.4 L 21.5 53.0 L 20.8 54.1 L 19.9 54.6 L 18.9 54.5 L 18.5 54.1 L 17.1 52.0 L 15.9 51.3 L 14.8 51.8 L 13.9 53.1 L 13.5 55.0 L 12.9 64.3 L 11.7 70.8 L -1.6 52.5 L -14.5 34.3 L -26.8 16.0 L -38.6 -2.3 L -38.7 -2.9 L -27.9 -47.6 L -12.0 -43.7 L 4.1 -40.0 L 20.3 -36.7 L 36.6 -33.7 L 24.1 42.5 Z" />
</g>
<g class="state-shape" id="state-shape-NY" style="fill:white;transform:translate(575.8px,88.9px);" data-area="126651726255" aria-label="New York">
<path d="M 26.8 31.5 L 26.2 31.5 L 25.7 31.2 L 25.6 30.5 L 25.6 29.6 L 26.4 28.0 L 27.9 26.4 L 29.3 25.6 L 32.7 24.1 L 42.4 18.4 L 43.2 18.2 L 43.6 18.3 L 43.7 18.8 L 43.4 19.3 L 42.5 20.1 L 41.3 21.7 L 39.2 23.4 L 36.4 25.1 L 32.2 28.5 L 26.8 31.5 Z" />
<path d="M 0.8 -30.8 L 11.3 -34.5 L 12.0 -33.1 L 12.8 -30.1 L 13.2 -25.2 L 14.7 -21.3 L 15.3 -18.7 L 17.4 -15.1 L 18.4 -11.9 L 21.1 -8.7 L 21.9 -7.5 L 23.0 -3.8 L 23.8 -2.1 L 24.0 2.3 L 24.8 8.2 L 25.8 12.1 L 27.5 16.6 L 27.9 18.8 L 27.6 20.5 L 26.3 22.7 L 26.5 23.5 L 27.3 24.4 L 24.8 27.9 L 23.2 29.8 L 22.7 29.0 L 21.9 27.4 L 21.1 26.5 L 15.6 24.0 L 12.2 22.1 L 10.0 20.3 L 6.4 16.4 L 5.2 15.6 L 3.9 15.1 L -22.7 22.9 L -37.7 26.9 L -42.3 27.9 L -43.4 24.0 L -41.4 22.7 L -40.4 21.5 L -37.0 15.1 L -37.8 12.0 L -38.9 10.8 L -38.6 10.0 L -36.6 8.0 L -34.3 6.5 L -24.5 3.5 L -17.2 0.5 L -15.7 -0.4 L -14.4 -1.5 L -13.3 -3.0 L -12.9 -4.7 L -13.2 -7.0 L -14.5 -10.9 L -13.8 -13.8 L -13.8 -16.1 L -13.4 -17.4 L -11.5 -20.1 L -6.3 -26.2 L -1.2 -30.6 L -0.5 -30.9 L 0.8 -30.8 Z" />
</g>
<g class="state-shape" id="state-shape-OH" style="fill:white;transform:translate(505.2px,151.8px);" data-area="109927262488" aria-label="Ohio">
<path d="M 20.3 -33.2 L 24.9 -13.4 L 24.2 -12.8 L 23.5 -11.8 L 22.6 -8.6 L 22.6 -6.3 L 23.4 0.3 L 23.2 2.2 L 22.7 4.5 L 20.8 9.7 L 20.1 10.4 L 17.8 11.6 L 16.9 12.6 L 16.4 14.1 L 15.4 18.8 L 15.0 19.1 L 14.2 19.2 L 13.3 19.0 L 12.2 18.5 L 11.6 18.8 L 11.0 19.9 L 10.1 23.5 L 7.1 28.0 L 5.9 26.7 L 4.6 26.1 L 0.3 25.5 L -4.6 25.6 L -5.7 25.2 L -7.6 23.6 L -8.9 23.0 L -12.8 22.4 L -14.7 21.5 L -18.6 20.8 L -19.2 20.9 L -26.1 -17.9 L -11.5 -20.9 L -11.2 -20.3 L -10.5 -19.7 L -9.2 -19.0 L -8.2 -18.7 L -2.4 -19.1 L -0.9 -19.0 L 0.6 -18.6 L 2.4 -18.9 L 6.5 -21.1 L 8.7 -22.7 L 10.7 -24.5 L 12.6 -26.8 L 17.2 -31.1 L 20.3 -33.2 Z" />
</g>
<g class="state-shape" id="state-shape-OK" style="fill:white;transform:translate(344.0px,243.8px);" data-area="193689147269" aria-label="Oklahoma">
<path d="M 33.6 -7.1 L 35.9 27.7 L 33.7 26.1 L 30.9 25.4 L 25.7 23.3 L 23.5 22.9 L 21.6 23.0 L 19.5 23.4 L 13.6 25.9 L 11.6 26.3 L 10.2 26.2 L 7.5 25.3 L 6.1 25.0 L 1.4 25.6 L 0.4 25.6 L -1.3 25.0 L -6.9 25.2 L -8.4 24.7 L -11.1 21.9 L -12.9 21.0 L -15.3 20.5 L -22.4 20.1 L -23.4 19.7 L -25.4 18.5 L -28.6 18.5 L -29.6 18.3 L -33.2 16.1 L -35.5 15.5 L -35.7 -13.7 L -35.8 -14.0 L -71.5 -15.2 L -71.2 -23.9 L -45.4 -23.1 L -20.3 -23.0 L 4.3 -23.5 L 29.8 -24.7 L 30.3 -16.1 L 31.6 -12.5 L 33.3 -8.6 L 33.6 -7.1 Z" />
</g>
<g class="state-shape" id="state-shape-OR" style="fill:white;transform:translate(91.4px,88.6px);" data-area="251133390966" aria-label="Oregon">
<path d="M 46.7 -15.7 L 41.1 -6.0 L 37.9 -1.8 L 37.2 -0.3 L 37.0 0.9 L 37.4 2.5 L 30.3 37.0 L 10.4 32.5 L -8.7 27.6 L -28.0 22.3 L -46.5 16.7 L -46.6 8.7 L -46.3 6.7 L -45.7 4.6 L -43.8 0.9 L -39.2 -6.2 L -37.7 -8.9 L -34.2 -18.4 L -29.7 -28.2 L -28.6 -31.9 L -27.4 -37.0 L -26.5 -39.8 L -25.3 -41.9 L -23.9 -43.1 L -22.7 -43.0 L -21.4 -42.5 L -18.1 -39.4 L -17.2 -38.9 L -18.2 -34.2 L -16.7 -32.7 L -14.6 -31.6 L -11.6 -30.8 L -4.8 -29.8 L -1.8 -28.9 L 1.4 -28.9 L 6.5 -27.2 L 8.2 -26.9 L 9.8 -26.9 L 13.1 -27.4 L 18.2 -26.6 L 23.0 -26.9 L 24.6 -26.8 L 37.5 -23.7 L 43.5 -22.6 L 45.1 -20.1 L 46.8 -19.5 L 47.2 -19.2 L 47.3 -17.8 L 46.7 -15.7 Z" />
</g>
<g class="state-shape" id="state-shape-PA" style="fill:white;transform:translate(558.7px,128.8px);" data-area="121274394613" aria-label="Pennsylvania">
<path d="M 28.7 -3.4 L 30.6 -1.5 L 31.7 0.2 L 32.3 1.8 L 32.3 3.6 L 31.6 5.8 L 29.7 9.1 L 28.6 9.3 L 27.7 9.9 L 26.9 10.7 L 26.4 11.6 L 0.7 19.0 L -24.9 25.5 L -33.2 -10.2 L -29.1 -13.7 L -26.2 -15.9 L -25.3 -12.1 L -24.9 -11.9 L -3.5 -17.6 L 21.1 -24.8 L 22.3 -24.4 L 23.4 -23.6 L 27.7 -19.1 L 30.6 -17.1 L 30.1 -14.0 L 28.1 -7.3 L 28.1 -5.0 L 28.4 -3.9 L 28.7 -3.4 Z" />
</g>
<g class="state-shape" id="state-shape-RI" style="fill:white;transform:translate(621.3px,95.4px);" data-area="3944352346" aria-label="Rhode Island">
<path d="M 5.9 0.8 L 5.3 2.1 L 4.6 2.4 L 4.2 2.4 L 3.1 1.0 L 2.7 0.9 L 2.3 1.1 L 1.7 2.3 L 2.2 4.4 L 2.1 5.0 L 0.9 6.3 L -1.1 7.2 L -3.2 1.0 L -4.7 -4.2 L -0.7 -5.6 L 0.7 -5.5 L 1.9 -4.4 L 3.8 -1.2 L 5.9 0.8 Z" />
</g>
<g class="state-shape" id="state-shape-SC" style="fill:white;transform:translate(547.9px,241.3px);" data-area="77171732818" aria-label="South Carolina">
<path d="M 27.3 -5.6 L 24.5 -1.6 L 20.2 6.7 L 18.5 9.6 L 15.7 13.0 L 12.1 16.1 L 11.1 17.3 L 7.1 24.2 L 6.6 24.4 L 6.3 24.1 L 5.8 22.5 L 5.5 22.0 L 5.0 22.0 L 4.6 22.4 L 4.2 23.5 L 4.5 26.0 L 4.4 27.1 L 3.8 28.0 L 2.8 28.3 L -0.2 20.8 L -2.6 16.9 L -5.4 15.1 L -9.6 11.5 L -18.0 6.1 L -20.1 4.3 L -22.1 2.0 L -28.4 -0.9 L -30.4 -2.2 L -31.5 -3.3 L -32.3 -4.7 L -32.6 -5.9 L -32.8 -8.7 L -29.6 -9.5 L -26.9 -11.6 L -24.7 -11.7 L -22.9 -13.4 L -22.2 -13.8 L -8.5 -16.9 L -7.5 -16.5 L -6.8 -14.9 L -6.4 -14.6 L -6.1 -15.0 L -5.7 -16.9 L -5.3 -17.1 L -4.3 -16.3 L -2.5 -13.3 L -2.0 -12.8 L -1.4 -12.7 L 12.0 -15.9 L 13.0 -15.8 L 27.3 -5.6 Z" />
</g>
<g class="state-shape" id="state-shape-SD" style="fill:white;transform:translate(307.5px,108.5px);" data-area="198407012479" aria-label="South Dakota">
<path d="M 37.0 -22.7 L 36.6 -20.2 L 36.6 -18.3 L 37.0 -17.1 L 38.4 -14.7 L 39.1 -12.8 L 39.8 -10.1 L 40.1 -7.0 L 40.5 6.0 L 41.4 15.1 L 41.3 17.7 L 40.6 23.7 L 40.7 27.0 L 39.4 27.0 L 38.6 26.8 L 37.2 25.8 L 33.9 23.1 L 32.8 22.5 L 31.7 22.3 L 30.3 22.5 L 26.6 24.3 L 25.0 24.6 L 23.3 24.2 L 20.7 22.5 L 19.2 22.1 L -11.4 21.9 L -41.7 20.7 L -39.4 -23.4 L -20.3 -22.6 L -1.2 -22.2 L 17.9 -22.2 L 37.0 -22.7 Z" />
</g>
<g class="state-shape" id="state-shape-TN" style="fill:white;transform:translate(473.2px,227.9px);" data-area="107796487399" aria-label="Tennessee">
<path d="M 35.2 -17.6 L 54.9 -21.7 L 54.7 -19.4 L 52.6 -15.4 L 50.4 -13.4 L 46.6 -11.2 L 43.1 -6.2 L 41.1 -4.1 L 38.6 -2.3 L 34.5 0.0 L 32.8 1.4 L 31.8 2.7 L 31.1 3.9 L 30.8 5.3 L 30.7 6.8 L 12.8 10.1 L -6.1 13.1 L -24.0 15.7 L -43.4 18.1 L -42.9 16.4 L -42.8 13.2 L -42.5 11.3 L -42.0 10.1 L -40.1 7.8 L -38.9 2.2 L -37.2 -3.8 L -36.4 -6.0 L -18.4 -8.4 L -0.5 -11.2 L 17.4 -14.2 L 35.2 -17.6 Z" />
</g>
<g class="state-shape" id="state-shape-TX" style="fill:white;transform:translate(318.2px,303.8px);" data-area="689630218067" aria-label="Texas">
<path d="M -45.6 -75.3 L -9.9 -74.0 L -9.8 -44.8 L -9.5 -44.5 L -7.2 -43.9 L -3.9 -41.9 L -2.8 -41.6 L 0.5 -41.6 L 2.5 -40.3 L 3.9 -39.9 L 10.3 -39.6 L 12.7 -39.2 L 14.7 -38.2 L 17.5 -35.4 L 19.3 -34.8 L 24.6 -35.0 L 26.2 -34.5 L 27.3 -34.4 L 31.9 -35.1 L 33.4 -34.8 L 36.0 -33.9 L 37.4 -33.8 L 39.5 -34.2 L 43.6 -36.1 L 45.6 -36.8 L 48.0 -37.1 L 50.3 -37.1 L 52.3 -36.5 L 57.1 -34.6 L 59.6 -34.0 L 61.7 -32.4 L 64.6 -31.4 L 65.1 -31.0 L 66.4 -11.2 L 68.3 -8.1 L 69.5 -3.3 L 72.1 0.5 L 72.7 3.1 L 73.1 8.8 L 71.9 14.9 L 71.2 23.3 L 69.5 23.3 L 67.8 23.7 L 57.1 28.8 L 56.7 29.3 L 56.6 30.7 L 56.2 31.6 L 53.6 34.4 L 51.3 38.1 L 50.1 39.2 L 46.5 41.8 L 42.7 45.4 L 40.9 46.4 L 39.9 46.4 L 39.3 46.2 L 39.1 45.9 L 39.2 45.3 L 40.4 42.7 L 40.0 42.0 L 39.2 41.9 L 37.6 42.9 L 33.6 46.4 L 32.1 48.7 L 31.1 49.8 L 30.1 50.4 L 27.7 51.4 L 26.7 52.3 L 25.8 54.2 L 25.9 56.3 L 24.3 61.2 L 24.0 63.0 L 24.2 64.5 L 25.5 68.9 L 24.9 75.4 L 25.3 77.0 L 26.6 81.0 L 26.7 82.1 L 26.5 82.7 L 25.3 83.0 L 24.1 82.8 L 19.9 80.6 L 11.5 77.8 L 7.9 75.9 L 5.1 73.6 L 3.2 71.1 L -0.0 64.2 L -4.0 58.1 L -5.6 56.3 L -10.2 51.8 L -13.0 48.3 L -14.3 46.1 L -16.5 40.4 L -18.9 35.4 L -19.7 34.2 L -21.8 31.8 L -23.2 30.8 L -25.7 29.7 L -32.4 27.7 L -37.9 25.3 L -40.3 25.0 L -43.3 25.1 L -45.4 25.6 L -46.9 27.1 L -47.9 29.0 L -49.4 33.7 L -50.2 35.1 L -51.1 36.1 L -53.1 36.3 L -56.0 36.2 L -58.1 35.7 L -59.5 34.9 L -62.4 32.2 L -68.0 28.0 L -69.9 26.1 L -71.0 24.5 L -72.0 22.5 L -73.7 16.7 L -74.7 13.9 L -75.9 11.6 L -77.1 9.7 L -79.5 6.9 L -83.4 3.6 L -87.2 -2.3 L -88.5 -3.9 L -89.8 -4.8 L -92.7 -5.8 L -93.7 -6.7 L -93.4 -11.1 L -93.1 -11.4 L -66.9 -9.6 L -50.1 -8.7 L -49.8 -8.9 L -47.1 -75.0 L -46.8 -75.3 L -45.6 -75.3 Z" />
</g>
<g class="state-shape" id="state-shape-UT" style="fill:white;transform:translate(175.4px,176.7px);" data-area="216597641419" aria-label="Utah">
<path d="M 12.5 -39.4 L 10.6 -24.4 L 10.7 -24.2 L 32.6 -21.3 L 26.3 37.6 L -3.1 33.9 L -32.4 29.2 L -20.3 -44.5 L -4.4 -41.9 L 12.5 -39.4 Z" />
</g>
<g class="state-shape" id="state-shape-VA" style="fill:white;transform:translate(559.5px,182.1px);" data-area="110183715221" aria-label="Virginia">
<path d="M 10.5 -28.3 L 12.8 -26.7 L 13.4 -25.9 L 13.7 -25.0 L 13.8 -23.8 L 13.5 -21.1 L 13.5 -18.9 L 13.0 -18.2 L 12.8 -17.5 L 12.9 -16.8 L 13.5 -15.8 L 14.9 -14.8 L 16.9 -14.0 L 19.4 -13.4 L 23.4 -13.0 L 24.9 -12.6 L 26.4 -11.4 L 27.9 -9.0 L 28.0 -7.4 L 28.5 -5.1 L 28.4 -4.3 L 27.9 -4.0 L 27.3 -4.1 L 25.8 -5.2 L 25.2 -5.5 L 24.6 -5.2 L 24.3 -4.7 L 24.6 -4.1 L 25.1 -3.5 L 27.8 -2.1 L 28.1 -1.6 L 28.1 -1.1 L 27.6 -0.8 L 26.8 -0.8 L 24.3 -1.8 L 23.4 -2.0 L 22.5 -1.4 L 22.4 -0.9 L 22.7 -0.4 L 23.3 0.0 L 25.3 0.6 L 27.6 2.1 L 28.8 2.4 L 30.6 2.0 L 33.6 0.3 L 34.8 0.3 L 35.7 0.9 L 36.5 1.8 L 38.4 5.9 L 16.7 12.1 L -6.2 18.1 L -29.2 23.5 L -51.1 28.1 L -50.8 25.9 L -49.7 23.4 L -48.2 21.5 L -46.0 19.6 L -44.5 16.0 L -41.6 13.3 L -39.4 9.6 L -38.0 9.9 L -35.4 11.3 L -34.0 11.8 L -29.1 11.3 L -27.6 10.9 L -26.1 10.0 L -21.4 6.4 L -18.8 4.8 L -18.2 3.8 L -17.6 1.8 L -17.9 -1.6 L -17.7 -2.6 L -15.0 -7.3 L -13.0 -13.1 L -12.6 -13.5 L -12.0 -13.6 L -10.4 -12.6 L -9.7 -12.4 L -8.9 -12.6 L -8.3 -13.0 L -7.5 -14.2 L -5.9 -18.0 L -2.7 -21.7 L -1.4 -25.0 L -0.5 -26.2 L 0.2 -26.5 L 1.6 -25.9 L 2.2 -26.1 L 3.8 -28.7 L 4.7 -30.5 L 6.0 -30.5 L 7.2 -30.2 L 10.5 -28.3 Z" />
<path d="M 35.6 -4.7 L 35.0 -4.8 L 34.6 -5.4 L 34.2 -7.2 L 33.6 -8.5 L 33.5 -10.2 L 34.1 -13.8 L 34.1 -15.7 L 36.5 -17.0 L 36.9 -13.9 L 37.0 -11.6 L 36.0 -5.4 L 35.6 -4.7 Z" />
</g>
<g class="state-shape" id="state-shape-VT" style="fill:white;transform:translate(596.8px,62.7px);" data-area="24211894516" aria-label="Vermont">
<path d="M 8.5 22.0 L 2.8 23.9 L 2.1 22.5 L 0.8 18.7 L 0.1 17.5 L -2.6 14.3 L -3.6 11.2 L -5.6 7.6 L -6.2 4.9 L -7.8 1.0 L -8.3 -4.5 L -8.8 -6.4 L -9.7 -8.2 L 7.8 -14.6 L 8.3 -12.3 L 8.4 -7.6 L 8.2 -6.4 L 7.2 -4.6 L 7.0 -3.8 L 7.5 2.3 L 7.0 8.2 L 7.2 10.7 L 8.0 14.2 L 7.8 17.2 L 8.5 22.0 Z" />
</g>
<g class="state-shape" id="state-shape-WA" style="fill:white;transform:translate(109.0px,38.8px);" data-area="174561804375" aria-label="Washington">
<path d="M 29.6 8.1 L 26.0 24.9 L 25.8 26.4 L 25.9 27.2 L 19.9 26.1 L 6.8 23.0 L 0.5 23.2 L -4.5 22.4 L -8.0 23.0 L -9.8 22.9 L -16.1 21.0 L -17.6 20.8 L -19.5 20.9 L -22.7 19.9 L -30.3 18.8 L -33.2 17.8 L -34.8 16.8 L -35.9 15.6 L -34.9 11.0 L -34.6 10.8 L -34.4 10.3 L -34.6 9.4 L -35.2 8.1 L -36.3 6.9 L -37.4 6.0 L -42.3 3.9 L -43.1 3.0 L -43.5 2.1 L -43.4 1.5 L -43.0 1.2 L -41.5 2.1 L -41.0 2.1 L -40.5 1.4 L -40.1 0.4 L -39.9 -1.0 L -41.1 -2.4 L -41.5 -3.6 L -41.6 -5.6 L -41.4 -6.4 L -41.0 -6.7 L -40.4 -6.6 L -39.6 -5.3 L -39.2 -5.1 L -38.5 -5.4 L -38.2 -6.1 L -38.5 -7.2 L -40.6 -8.7 L -40.9 -10.0 L -40.5 -15.3 L -41.6 -23.5 L -41.3 -24.9 L -39.9 -28.1 L -39.6 -28.2 L -38.6 -27.7 L -35.1 -25.0 L -32.2 -23.3 L -29.0 -20.5 L -27.8 -20.0 L -25.2 -19.4 L -24.4 -18.9 L -24.3 -18.2 L -24.7 -17.3 L -27.2 -14.8 L -28.3 -13.2 L -28.7 -12.2 L -28.5 -11.7 L -27.9 -11.7 L -25.2 -14.9 L -24.4 -15.3 L -23.8 -15.1 L -23.7 -13.6 L -24.2 -11.5 L -26.6 -7.2 L -26.6 -6.3 L -26.0 -6.0 L -24.9 -6.4 L -23.6 -7.8 L -21.6 -9.6 L -20.6 -11.2 L -18.5 -15.5 L -18.4 -16.7 L -18.9 -20.2 L -18.0 -23.1 L -18.1 -25.5 L -18.8 -29.0 L -18.7 -31.5 L 8.0 -23.9 L 35.1 -17.3 L 29.6 8.1 Z" />
</g>
<g class="state-shape" id="state-shape-WI" style="fill:white;transform:translate(415.4px,99.4px);" data-area="152165787575" aria-label="Wisconsin">
<path d="M 30.2 -5.5 L 27.1 5.0 L 26.3 8.9 L 25.9 12.6 L 25.7 18.8 L 25.9 22.1 L 26.4 24.5 L 28.4 30.6 L 0.5 34.5 L -3.1 32.3 L -4.3 31.0 L -7.0 28.9 L -8.0 27.5 L -8.9 24.8 L -9.2 19.5 L -9.5 17.5 L -10.2 15.7 L -11.3 14.1 L -13.5 12.2 L -16.5 11.1 L -17.6 10.5 L -21.8 6.5 L -27.1 2.4 L -28.6 0.7 L -29.5 -1.3 L -29.8 -3.7 L -29.5 -15.6 L -28.9 -17.4 L -26.9 -19.9 L -26.2 -21.4 L -26.0 -22.8 L -26.1 -27.2 L -25.7 -28.7 L -24.9 -30.1 L -22.3 -29.9 L -20.3 -30.5 L -18.5 -31.5 L -14.2 -34.8 L -12.9 -35.5 L -11.8 -35.8 L -11.3 -35.3 L -11.1 -34.6 L -12.1 -31.4 L -12.1 -30.8 L -11.8 -30.5 L -9.5 -29.7 L -7.1 -29.5 L -5.1 -30.0 L -3.4 -31.1 L -0.1 -27.2 L 1.6 -25.9 L 13.3 -22.7 L 16.0 -22.3 L 19.4 -20.9 L 20.5 -20.1 L 21.5 -18.5 L 23.0 -13.6 L 24.5 -11.3 L 25.6 -10.6 L 21.8 -3.3 L 21.2 -0.6 L 21.3 0.3 L 21.6 0.8 L 22.4 0.9 L 23.2 0.2 L 25.7 -3.3 L 27.7 -7.4 L 29.6 -10.5 L 30.3 -11.3 L 30.9 -11.6 L 31.4 -10.9 L 31.5 -9.5 L 30.2 -5.5 Z" />
</g>
<g class="state-shape" id="state-shape-WV" style="fill:white;transform:translate(532.1px,173.5px);" data-area="63514330671" aria-label="West Virginia">
<path d="M 13.9 -22.2 L 15.3 -15.7 L 15.5 -15.7 L 16.5 -16.0 L 18.5 -17.8 L 20.9 -19.5 L 23.2 -21.0 L 25.0 -21.8 L 26.6 -22.3 L 28.1 -22.4 L 32.1 -21.8 L 31.3 -20.1 L 29.6 -17.4 L 29.1 -17.3 L 27.5 -17.8 L 26.5 -17.1 L 24.8 -13.1 L 21.5 -9.3 L 20.0 -5.6 L 19.2 -4.3 L 18.5 -3.9 L 17.7 -3.7 L 17.1 -3.9 L 15.5 -4.9 L 14.9 -4.9 L 14.5 -4.5 L 12.5 1.4 L 9.7 6.1 L 9.6 7.1 L 9.9 10.5 L 9.2 12.6 L 8.5 13.6 L 6.0 15.1 L 1.3 18.8 L -0.2 19.6 L -1.6 20.0 L -6.5 20.5 L -8.0 20.0 L -10.5 18.5 L -11.9 18.3 L -12.6 16.4 L -13.8 14.6 L -14.6 12.4 L -18.2 8.5 L -19.7 6.3 L -16.7 1.8 L -15.9 -1.6 L -15.4 -2.7 L -14.7 -3.1 L -12.9 -2.5 L -12.0 -2.5 L -11.5 -2.8 L -11.1 -4.0 L -10.5 -7.6 L -9.8 -9.2 L -8.8 -10.2 L -6.4 -11.5 L -5.6 -12.8 L -4.1 -17.3 L -3.5 -20.1 L -3.5 -22.4 L -4.3 -29.5 L -3.9 -32.1 L -2.9 -34.1 L -1.9 -35.0 L 1.7 -19.2 L 13.9 -22.2 Z" />
</g>
<g class="state-shape" id="state-shape-WY" style="fill:white;transform:translate(227.8px,127.3px);" data-area="251230410779" aria-label="Wyoming">
<path d="M 39.5 -27.1 L 36.5 32.7 L 16.3 31.4 L -4.8 29.6 L -26.2 27.3 L -41.7 25.1 L -37.5 -7.3 L -33.9 -34.1 L -13.1 -31.5 L 4.0 -29.7 L 22.3 -28.1 L 39.5 -27.1 Z" />
</g>
</g>
<g class="offshore-boxes">
<path d="M 637.9 97.1 L 685.7 97.1 L 685.7 126.1 L 637.9 126.1 Z" style="fill:white;" class="offshore-box" id="offshore-box-VT" aria-label="Vermont" />
<path d="M 637.9 127.8 L 685.7 127.8 L 685.7 156.8 L 637.9 156.8 Z" style="fill:white;" class="offshore-box" id="offshore-box-NH" aria-label="New Hampshire" />
<path d="M 637.9 158.5 L 685.7 158.5 L 685.7 187.5 L 637.9 187.5 Z" style="fill:white;" class="offshore-box" id="offshore-box-MA" aria-label="Massachusetts" />
<path d="M 637.9 189.2 L 685.7 189.2 L 685.7 218.2 L 637.9 218.2 Z" style="fill:white;" class="offshore-box" id="offshore-box-RI" aria-label="Rhode Island" />
<path d="M 637.9 219.9 L 685.7 219.9 L 685.7 248.9 L 637.9 248.9 Z" style="fill:white;" class="offshore-box" id="offshore-box-CT" aria-label="Connecticut" />
<path d="M 637.9 250.6 L 685.7 250.6 L 685.7 279.6 L 637.9 279.6 Z" style="fill:white;" class="offshore-box" id="offshore-box-NJ" aria-label="New Jersey" />
<path d="M 637.9 281.3 L 685.7 281.3 L 685.7 310.3 L 637.9 310.3 Z" style="fill:white;" class="offshore-box" id="offshore-box-DE" aria-label="Delaware" />
<path d="M 637.9 312.1 L 685.7 312.1 L 685.7 341.1 L 637.9 341.1 Z" style="fill:white;" class="offshore-box" id="offshore-box-MD" aria-label="Maryland" />
</g>
<g class="labels">
<text x="96.7" y="341.7" class="state-label" id="state-label-AK" style="fill:black;">AK</text>
<rect x="90.7" y="346.7" width="12" height="1.5" class="state-underline" id="state-underline-AK" style="fill:black;" />
<text x="476.4" y="272.0" class="state-label" id="state-label-AL" style="fill:black;">AL</text>
<rect x="470.4" y="277.0" width="12" height="1.5" class="state-underline" id="state-underline-AL" style="fill:black;" />
<text x="402.7" y="250.4" class="state-label" id="state-label-AR" style="fill:black;">AR</text>
<rect x="396.7" y="255.4" width="12" height="1.5" class="state-underline" id="state-underline-AR" style="fill:black;" />
<text x="165.5" y="252.4" class="state-label" id="state-label-AZ" style="fill:black;">AZ</text>
<rect x="159.5" y="257.4" width="12" height="1.5" class="state-underline" id="state-underline-AZ" style="fill:black;" />
<text x="79.5" y="191.9" class="state-label" id="state-label-CA" style="fill:black;">CA</text>
<rect x="73.5" y="196.9" width="12" height="1.5" class="state-underline" id="state-underline-CA" style="fill:black;" />
<text x="244.5" y="188.5" class="state-label" id="state-label-CO" style="fill:black;">CO</text>
<rect x="238.5" y="193.5" width="12" height="1.5" class="state-underline" id="state-underline-CO" style="fill:black;" />
<text x="661.8" y="234.4" class="state-label" id="state-label-CT" style="fill:black;">CT</text>
<rect x="655.8" y="239.4" width="12" height="1.5" class="state-underline" id="state-underline-CT" style="fill:black;" />
<text x="661.8" y="295.8" class="state-label" id="state-label-DE" style="fill:black;">DE</text>
<rect x="655.8" y="300.8" width="12" height="1.5" class="state-underline" id="state-underline-DE" style="fill:black;" />
<text x="552.4" y="329.7" class="state-label" id="state-label-FL" style="fill:black;">FL</text>
<rect x="546.4" y="334.7" width="12" height="1.5" class="state-underline" id="state-underline-FL" style="fill:black;" />
<text x="519.5" y="267.9" class="state-label" id="state-label-GA" style="fill:black;">GA</text>
<rect x="513.5" y="272.9" width="12" height="1.5" class="state-underline" id="state-underline-GA" style="fill:black;" />
<text x="242.1" y="380.8" class="state-label" id="state-label-HI" style="fill:black;">HI</text>
<rect x="236.1" y="385.8" width="12" height="1.5" class="state-underline" id="state-underline-HI" style="fill:black;" />
<text x="381.9" y="142.2" class="state-label" id="state-label-IA" style="fill:black;">IA</text>
<rect x="375.9" y="147.2" width="12" height="1.5" class="state-underline" id="state-underline-IA" style="fill:black;" />
<text x="155.0" y="100.6" class="state-label" id="state-label-ID" style="fill:black;">ID</text>
<rect x="149.0" y="105.6" width="12" height="1.5" class="state-underline" id="state-underline-ID" style="fill:black;" />
<text x="433.8" y="167.2" class="state-label" id="state-label-IL" style="fill:black;">IL</text>
<rect x="427.8" y="172.2" width="12" height="1.5" class="state-underline" id="state-underline-IL" style="fill:black;" />
<text x="467.9" y="163.1" class="state-label" id="state-label-IN" style="fill:black;">IN</text>
<rect x="461.9" y="168.1" width="12" height="1.5" class="state-underline" id="state-underline-IN" style="fill:black;" />
<text x="328.1" y="198.4" class="state-label" id="state-label-KS" style="fill:black;">KS</text>
<rect x="322.1" y="203.4" width="12" height="1.5" class="state-underline" id="state-underline-KS" style="fill:black;" />
<text x="485.9" y="198.5" class="state-label" id="state-label-KY" style="fill:black;">KY</text>
<rect x="479.9" y="203.5" width="12" height="1.5" class="state-underline" id="state-underline-KY" style="fill:black;" />
<text x="407.7" y="304.6" class="state-label" id="state-label-LA" style="fill:black;">LA</text>
<rect x="401.7" y="309.6" width="12" height="1.5" class="state-underline" id="state-underline-LA" style="fill:black;" />
<text x="661.8" y="173.0" class="state-label" id="state-label-MA" style="fill:black;">MA</text>
<rect x="655.8" y="178.0" width="12" height="1.5" class="state-underline" id="state-underline-MA" style="fill:black;" />
<text x="661.8" y="326.6" class="state-label" id="state-label-MD" style="fill:black;">MD</text>
<rect x="655.8" y="331.6" width="12" height="1.5" class="state-underline" id="state-underline-MD" style="fill:black;" />
<text x="624.7" y="31.9" class="state-label" id="state-label-ME" style="fill:black;">ME</text>
<rect x="618.7" y="36.9" width="12" height="1.5" class="state-underline" id="state-underline-ME" style="fill:black;" />
<text x="475.7" y="108.8" class="state-label" id="state-label-MI" style="fill:black;">MI</text>
<rect x="469.7" y="113.8" width="12" height="1.5" class="state-underline" id="state-underline-MI" style="fill:black;" />
<text x="368.1" y="77.3" class="state-label" id="state-label-MN" style="fill:black;">MN</text>
<rect x="362.1" y="82.3" width="12" height="1.5" class="state-underline" id="state-underline-MN" style="fill:black;" />
<text x="398.1" y="196.9" class="state-label" id="state-label-MO" style="fill:black;">MO</text>
<rect x="392.1" y="201.9" width="12" height="1.5" class="state-underline" id="state-underline-MO" style="fill:black;" />
<text x="439.9" y="277.4" class="state-label" id="state-label-MS" style="fill:black;">MS</text>
<rect x="433.9" y="282.4" width="12" height="1.5" class="state-underline" id="state-underline-MS" style="fill:black;" />
<text x="212.9" y="63.6" class="state-label" id="state-label-MT" style="fill:black;">MT</text>
<rect x="206.9" y="68.6" width="12" height="1.5" class="state-underline" id="state-underline-MT" style="fill:black;" />
<text x="561.1" y="213.2" class="state-label" id="state-label-NC" style="fill:black;">NC</text>
<rect x="555.1" y="218.2" width="12" height="1.5" class="state-underline" id="state-underline-NC" style="fill:black;" />
<text x="305.4" y="63.4" class="state-label" id="state-label-ND" style="fill:black;">ND</text>
<rect x="299.4" y="68.4" width="12" height="1.5" class="state-underline" id="state-underline-ND" style="fill:black;" />
<text x="312.6" y="152.7" class="state-label" id="state-label-NE" style="fill:black;">NE</text>
<rect x="306.6" y="157.7" width="12" height="1.5" class="state-underline" id="state-underline-NE" style="fill:black;" />
<text x="661.8" y="142.3" class="state-label" id="state-label-NH" style="fill:black;">NH</text>
<rect x="655.8" y="147.3" width="12" height="1.5" class="state-underline" id="state-underline-NH" style="fill:black;" />
<text x="661.8" y="265.1" class="state-label" id="state-label-NJ" style="fill:black;">NJ</text>
<rect x="655.8" y="270.1" width="12" height="1.5" class="state-underline" id="state-underline-NJ" style="fill:black;" />
<text x="233.3" y="256.3" class="state-label" id="state-label-NM" style="fill:black;">NM</text>
<rect x="227.3" y="261.3" width="12" height="1.5" class="state-underline" id="state-underline-NM" style="fill:black;" />
<text x="118.6" y="165.9" class="state-label" id="state-label-NV" style="fill:black;">NV</text>
<rect x="112.6" y="170.9" width="12" height="1.5" class="state-underline" id="state-underline-NV" style="fill:black;" />
<text x="575.8" y="88.9" class="state-label" id="state-label-NY" style="fill:black;">NY</text>
<rect x="569.8" y="93.9" width="12" height="1.5" class="state-underline" id="state-underline-NY" style="fill:black;" />
<text x="505.2" y="151.8" class="state-label" id="state-label-OH" style="fill:black;">OH</text>
<rect x="499.2" y="156.8" width="12" height="1.5" class="state-underline" id="state-underline-OH" style="fill:black;" />
<text x="344.0" y="243.8" class="state-label" id="state-label-OK" style="fill:black;">OK</text>
<rect x="338.0" y="248.8" width="12" height="1.5" class="state-underline" id="state-underline-OK" style="fill:black;" />
<text x="91.4" y="88.6" class="state-label" id="state-label-OR" style="fill:black;">OR</text>
<rect x="85.4" y="93.6" width="12" height="1.5" class="state-underline" id="state-underline-OR" style="fill:black;" />
<text x="558.7" y="128.8" class="state-label" id="state-label-PA" style="fill:black;">PA</text>
<rect x="552.7" y="133.8" width="12" height="1.5" class="state-underline" id="state-underline-PA" style="fill:black;" />
<text x="661.8" y="203.7" class="state-label" id="state-label-RI" style="fill:black;">RI</text>
<rect x="655.8" y="208.7" width="12" height="1.5" class="state-underline" id="state-underline-RI" style="fill:black;" />
<text x="547.9" y="241.3" class="state-label" id="state-label-SC" style="fill:black;">SC</text>
<rect x="541.9" y="246.3" width="12" height="1.5" class="state-underline" id="state-underline-SC" style="fill:black;" />
<text x="307.5" y="108.5" class="state-label" id="state-label-SD" style="fill:black;">SD</text>
<rect x="301.5" y="113.5" width="12" height="1.5" class="state-underline" id="state-underline-SD" style="fill:black;" />
<text x="473.2" y="227.9" class="state-label" id="state-label-TN" style="fill:black;">TN</text>
<rect x="467.2" y="232.9" width="12" height="1.5" class="state-underline" id="state-underline-TN" style="fill:black;" />
<text x="318.2" y="303.8" class="state-label" id="state-label-TX" style="fill:black;">TX</text>
<rect x="312.2" y="308.8" width="12" height="1.5" class="state-underline" id="state-underline-TX" style="fill:black;" />
<text x="175.4" y="176.7" class="state-label" id="state-label-UT" style="fill:black;">UT</text>
<rect x="169.4" y="181.7" width="12" height="1.5" class="state-underline" id="state-underline-UT" style="fill:black;" />
<text x="559.5" y="182.1" class="state-label" id="state-label-VA" style="fill:black;">VA</text>
<rect x="553.5" y="187.1" width="12" height="1.5" class="state-underline" id="state-underline-VA" style="fill:black;" />
<text x="661.8" y="111.6" class="state-label" id="state-label-VT" style="fill:black;">VT</text>
<rect x="655.8" y="116.6" width="12" height="1.5" class="state-underline" id="state-underline-VT" style="fill:black;" />
<text x="109.0" y="38.8" class="state-label" id="state-label-WA" style="fill:black;">WA</text>
<rect x="103.0" y="43.8" width="12" height="1.5" class="state-underline" id="state-underline-WA" style="fill:black;" />
<text x="415.4" y="99.4" class="state-label" id="state-label-WI" style="fill:black;">WI</text>
<rect x="409.4" y="104.4" width="12" height="1.5" class="state-underline" id="state-underline-WI" style="fill:black;" />
<text x="532.1" y="173.5" class="state-label" id="state-label-WV" style="fill:black;">WV</text>
<rect x="526.1" y="178.5" width="12" height="1.5" class="state-underline" id="state-underline-WV" style="fill:black;" />
<text x="227.8" y="127.3" class="state-label" id="state-label-WY" style="fill:black;">WY</text>
<rect x="221.8" y="132.3" width="12" height="1.5" class="state-underline" id="state-underline-WY" style="fill:black;" />
</g>
<g id="state-tooltip" style="display: none;">
<path class="shape" d="M 5,0 L 255,0 A 5,5 0 0 1 260,5 L 260,47 A 5,5 0 0 1 255,52 L 137.5,52 L 130,59.5 L 122.5,52 L 5,52 A 5,5 0 0 1 0,47 L 0,5 A 5,5 0 0 1 5,0 Z" fill="white" stroke="#555" stroke-width="1" />
<foreignObject class="content" x="10" y="8" width="240" height="36" style="pointer-events: auto;">
<div xmlns="http://www.w3.org/1999/xhtml" style="font-size: 12px; line-height: 1.4; text-align: center;">
<div>
<strong class="state-name">N/A</strong>
<a class="link" href="#" style="color: #0066cc; display: none;">N/A</a>
</div>
<div class="bias">N/A</div>
</div>
</foreignObject>
</g>
<g id="ushouse-text" style="display: none;">
<foreignObject class="content" x="370" y="380" width="300" height="40" style="pointer-events: auto;">
<p xmlns="http://www.w3.org/1999/xhtml">States sized by efficiency gap in seats (EG% × seats)<br />to show impact on aggregate bias in the U.S. House</p>
</foreignObject>
</g>
</svg>
<div class="container visible-xs-block">
<div id="yearpicker-small" class="row">
<!-- two giant hit boxes for next/prev; year readout is positioned over top -->
<div class="col-xs-6 left nextprev" title="Previous year"><i class="glyphicon glyphicon-chevron-left"></i></div>
<div class="col-xs-6 right nextprev" title="Next year"><i class="glyphicon glyphicon-chevron-right"></i></div>
<div class="readout center"></div>
</div>
</div>
<form id="margin-swing">
<span id="margin-range-caption">45% D / 55% R vote share at D+1 Swing</span>
<br>
D+12
<input type="range" id="margin-swing-range" name="margin-swing" min="-12" max="12" step="1" value="0">
R+12
</form>
<div class="row hidden-xs">
<div id="yearpicker-big">
<div id="yearpicker-playbutton">
<a data-status="paused" href="javascript:void(0);" title="Play an animation showing change in plan skew over time" aria-label="Play animation"><i class="glyphicon glyphicon-play" aria-hidden="true"></i></a>
<a data-status="playing" class="hidden" href="javascript:void(0);" title="Pause the animation" aria-label="Pause animation"><i class="glyphicon glyphicon-pause" aria-hidden="true"></i></a>
</div>
<svg id="yearpicker-timeline" version="1.1" xmlns="http://www.w3.org/2000/svg" width="100%" height="60">
<!-- moving current year flag -->
<g id="yearpicker-current">
<line x1="54.26%" y1="16" x2="54.26%" y2="32" />
<rect x="calc(54.26% - 19px)" y="0" width="38" height="17" rx="2" />
<text x="54.26%" y="13" class="above">2000</text>
</g>
<!-- horizonatal background line -->
<line x1="0" y1="32" x2="100%" y2="32" />
<!-- all selectable years -->
<a id="yearpicker-1972">
<rect class="hitarea" x="0.56%" y="20" width="3.70%" height="24" />
<circle cx="2.41%" cy="32" r="9" />
<text x="2.41%" y="60" class="below">1972</text>
</a>
<a id="yearpicker-1974"><rect class="hitarea" x="4.26%" y="20" width="3.70%" height="24" /><circle cx="6.11%" cy="32" r="4" /></a>
<a id="yearpicker-1976"><rect class="hitarea" x="7.96%" y="20" width="3.70%" height="24" /><circle cx="9.81%" cy="32" r="4" /></a>
<a id="yearpicker-1978"><rect class="hitarea" x="11.67%" y="20" width="3.70%" height="24" /><circle cx="13.52%" cy="32" r="4" /></a>
<a id="yearpicker-1980"><rect class="hitarea" x="15.37%" y="20" width="3.70%" height="24" /><circle cx="17.22%" cy="32" r="4" /></a>
<a id="yearpicker-1982">
<rect class="hitarea" x="19.07%" y="20" width="3.70%" height="24" />
<circle cx="20.93%" cy="32" r="9" />
<text x="20.93%" y="60" class="below">1982</text>
</a>
<a id="yearpicker-1984"><rect class="hitarea" x="22.78%" y="20" width="3.70%" height="24" /><circle cx="24.63%" cy="32" r="4" /></a>
<a id="yearpicker-1986"><rect class="hitarea" x="26.48%" y="20" width="3.70%" height="24" /><circle cx="28.33%" cy="32" r="4" /></a>
<a id="yearpicker-1988"><rect class="hitarea" x="30.19%" y="20" width="3.70%" height="24" /><circle cx="32.04%" cy="32" r="4" /></a>
<a id="yearpicker-1990"><rect class="hitarea" x="33.89%" y="20" width="3.70%" height="24" /><circle cx="35.74%" cy="32" r="4" /></a>
<a id="yearpicker-1992">
<rect class="hitarea" x="37.59%" y="20" width="3.70%" height="24" />
<circle cx="39.44%" cy="32" r="9" />
<text x="39.44%" y="60" class="below">1992</text>
</a>
<a id="yearpicker-1994"><rect class="hitarea" x="41.30%" y="20" width="3.70%" height="24" /><circle cx="43.15%" cy="32" r="4" /></a>
<a id="yearpicker-1996"><rect class="hitarea" x="45.00%" y="20" width="3.70%" height="24" /><circle cx="46.85%" cy="32" r="4" /></a>
<a id="yearpicker-1998"><rect class="hitarea" x="48.70%" y="20" width="3.70%" height="24" /><circle cx="50.56%" cy="32" r="4" /></a>
<a id="yearpicker-2000" class="active"><rect class="hitarea" x="52.41%" y="20" width="3.70%" height="24" /><circle cx="54.26%" cy="32" r="4" /></a>
<a id="yearpicker-2002">
<rect class="hitarea" x="56.11%" y="20" width="3.70%" height="24" />
<circle cx="57.96%" cy="32" r="9" />
<text x="57.96%" y="60" class="below">2002</text>
</a>
<a id="yearpicker-2004"><rect class="hitarea" x="59.81%" y="20" width="3.70%" height="24" /><circle cx="61.67%" cy="32" r="4" /></a>
<a id="yearpicker-2006"><rect class="hitarea" x="63.52%" y="20" width="3.70%" height="24" /><circle cx="65.37%" cy="32" r="4" /></a>
<a id="yearpicker-2008"><rect class="hitarea" x="67.22%" y="20" width="3.70%" height="24" /><circle cx="69.07%" cy="32" r="4" /></a>
<a id="yearpicker-2010"><rect class="hitarea" x="70.93%" y="20" width="3.70%" height="24" /><circle cx="72.78%" cy="32" r="4" /></a>
<a id="yearpicker-2012">
<rect class="hitarea" x="74.63%" y="20" width="3.70%" height="24" />
<circle cx="76.48%" cy="32" r="9" />
<text x="76.48%" y="60" class="below">2012</text>
</a>
<a id="yearpicker-2014"><rect class="hitarea" x="78.33%" y="20" width="3.70%" height="24" /><circle cx="80.19%" cy="32" r="4" /></a>
<a id="yearpicker-2016"><rect class="hitarea" x="82.04%" y="20" width="3.70%" height="24" /><circle cx="83.89%" cy="32" r="4" /></a>
<a id="yearpicker-2018"><rect class="hitarea" x="85.74%" y="20" width="3.70%" height="24" /><circle cx="87.59%" cy="32" r="4" /></a>
<a id="yearpicker-2020"><rect class="hitarea" x="89.44%" y="20" width="3.70%" height="24" /><circle cx="91.30%" cy="32" r="4" /></a>
<a id="yearpicker-2022">
<rect class="hitarea" x="93.15%" y="20" width="3.70%" height="24" />
<circle cx="95.00%" cy="32" r="9" />
<text x="95.00%" y="60" class="below">2022</text>
</a>
<a id="yearpicker-2024"><rect class="hitarea" x="96.85%" y="20" width="3.70%" height="24" /><circle cx="98.70%" cy="32" r="4" /></a>
</svg>
<svg id="yearpicker-future" class="yearpicker-future-disabled" version="1.1" xmlns="http://www.w3.org/2000/svg" width="100%" height="100">
<!-- Top path -->
<a id="yearpicker-2026">
<path d="M 0 32 C 16 32, 16 24, 32 24 L 36 24" />
<rect class="background" x="42" y="14" width="126" height="19" rx="2" />
<rect class="hitarea" x="20" y="14" width="150" height="23" />
<circle cx="36" cy="24" r="4" />
<text x="46" y="29">2024 + Remaps*</text>
</a>
<!-- Bottom path -->
<a id="yearpicker-predict">
<path d="M 0 32 C 16 32, 16 44, 32 44 L 36 44" />
<rect class="background" x="42" y="34" width="128" height="19" rx="2" />
<rect class="hitarea" x="20" y="34" width="150" height="23" />
<circle cx="36" cy="44" r="4" />
<text x="46" y="49">2026 Scenarios</text>
</a>
</svg>
</div>
</div>
<p id="map-footnotes">
<sup>*</sup> Observed 2024 scores used for states without new maps. <a href="https://planscore.org/models/data/2025A/">Modeled scores</a> used for states with new maps.
<br><sup>†</sup> Efficiency gaps for future elections are calculated with turnout-weighted seat and vote shares
</p>
<div class="container">
<!-- be careful of changing the structure: updateStateListingSwatches() expects A with span + statename in order to key to a state -->
<!-- note that there are multiple of these for varying screen widths -->
<!-- note too that updateStateListingHashes() will update the lirnks below to include #! components, to link to the state with year+district selected -->
<div class="row states-listing visible-lg-block">
<div class="col-lg-3">
<a href="/alabama/" data-href="/alabama/"><span class="swatch"></span> Alabama</a>
<a href="/alaska/" data-href="/alaska/"><span class="swatch"></span> Alaska</a>
<a href="/arizona/" data-href="/arizona/"><span class="swatch"></span> Arizona</a>
<a href="/arkansas/" data-href="/arkansas/"><span class="swatch"></span> Arkansas</a>
<a href="/california/" data-href="/california/"><span class="swatch"></span> California</a>
<a href="/colorado/" data-href="/colorado/"><span class="swatch"></span> Colorado</a>
<a href="/connecticut/" data-href="/connecticut/"><span class="swatch"></span> Connecticut</a>
<a href="/delaware/" data-href="/delaware/"><span class="swatch"></span> Delaware</a>
<a href="/florida/" data-href="/florida/"><span class="swatch"></span> Florida</a>
<a href="/georgia/" data-href="/georgia/"><span class="swatch"></span> Georgia</a>
<a href="/hawaii/" data-href="/hawaii/"><span class="swatch"></span> Hawaii</a>
<a href="/idaho/" data-href="/idaho/"><span class="swatch"></span> Idaho</a>
<a href="/illinois/" data-href="/illinois/"><span class="swatch"></span> Illinois</a>
</div>
<div class="col-lg-3">
<a href="/indiana/" data-href="/indiana/"><span class="swatch"></span> Indiana</a>
<a href="/iowa/" data-href="/iowa/"><span class="swatch"></span> Iowa</a>
<a href="/kansas/" data-href="/kansas/"><span class="swatch"></span> Kansas</a>
<a href="/kentucky/" data-href="/kentucky/"><span class="swatch"></span> Kentucky</a>
<a href="/louisiana/" data-href="/louisiana/"><span class="swatch"></span> Louisiana</a>
<a href="/maine/" data-href="/maine/"><span class="swatch"></span> Maine</a>
<a href="/maryland/" data-href="/maryland/"><span class="swatch"></span> Maryland</a>
<a href="/massachusetts/" data-href="/massachusetts/"><span class="swatch"></span> Massachusetts</a>
<a href="/michigan/" data-href="/michigan/"><span class="swatch"></span> Michigan</a>
<a href="/minnesota/" data-href="/minnesota/"><span class="swatch"></span> Minnesota</a>
<a href="/mississippi/" data-href="/mississippi/"><span class="swatch"></span> Mississippi</a>
<a href="/missouri/" data-href="/missouri/"><span class="swatch"></span> Missouri</a>
<a href="/montana/" data-href="/montana/"><span class="swatch"></span> Montana</a>
</div>
<div class="col-lg-3">
<a href="/nebraska/" data-href="/nebraska/"><span class="swatch"></span> Nebraska</a>
<a href="/nevada/" data-href="/nevada/"><span class="swatch"></span> Nevada</a>
<a href="/new_hampshire/" data-href="/new_hampshire/"><span class="swatch"></span> New Hampshire</a>
<a href="/new_jersey/" data-href="/new_jersey/"><span class="swatch"></span> New Jersey</a>
<a href="/new_mexico/" data-href="/new_mexico/"><span class="swatch"></span> New Mexico</a>
<a href="/new_york/" data-href="/new_york/"><span class="swatch"></span> New York</a>
<a href="/north_carolina/" data-href="/north_carolina/"><span class="swatch"></span> North Carolina</a>
<a href="/north_dakota/" data-href="/north_dakota/"><span class="swatch"></span> North Dakota</a>
<a href="/ohio/" data-href="/ohio/"><span class="swatch"></span> Ohio</a>
<a href="/oklahoma/" data-href="/oklahoma/"><span class="swatch"></span> Oklahoma</a>
<a href="/oregon/" data-href="/oregon/"><span class="swatch"></span> Oregon</a>
<a href="/pennsylvania/" data-href="/pennsylvania/"><span class="swatch"></span> Pennsylvania</a>
</div>
<div class="col-lg-3">
<a href="/rhode_island/" data-href="/rhode_island/"><span class="swatch"></span> Rhode Island</a>
<a href="/south_carolina/" data-href="/south_carolina/"><span class="swatch"></span> South Carolina</a>
<a href="/south_dakota/" data-href="/south_dakota/"><span class="swatch"></span> South Dakota</a>
<a href="/tennessee/" data-href="/tennessee/"><span class="swatch"></span> Tennessee</a>
<a href="/texas/" data-href="/texas/"><span class="swatch"></span> Texas</a>
<a href="/utah/" data-href="/utah/"><span class="swatch"></span> Utah</a>
<a href="/vermont/" data-href="/vermont/"><span class="swatch"></span> Vermont</a>
<a href="/virginia/" data-href="/virginia/"><span class="swatch"></span> Virginia</a>
<a href="/washington/" data-href="/washington/"><span class="swatch"></span> Washington</a>
<a href="/west_virginia/" data-href="/west_virginia/"><span class="swatch"></span> West Virginia</a>
<a href="/wisconsin/" data-href="/wisconsin/"><span class="swatch"></span> Wisconsin</a>
<a href="/wyoming/" data-href="/wyoming/"><span class="swatch"></span> Wyoming</a>
</div>
</div>
<div class="row states-listing visible-sm-block visible-md-block">
<div class="col-sm-4">
<a href="/alabama/" data-href="/alabama/"><span class="swatch"></span> Alabama</a>
<a href="/alaska/" data-href="/alaska/"><span class="swatch"></span> Alaska</a>
<a href="/arizona/" data-href="/arizona/"><span class="swatch"></span> Arizona</a>
<a href="/arkansas/" data-href="/arkansas/"><span class="swatch"></span> Arkansas</a>
<a href="/california/" data-href="/california/"><span class="swatch"></span> California</a>
<a href="/colorado/" data-href="/colorado/"><span class="swatch"></span> Colorado</a>
<a href="/connecticut/" data-href="/connecticut/"><span class="swatch"></span> Connecticut</a>
<a href="/delaware/" data-href="/delaware/"><span class="swatch"></span> Delaware</a>
<a href="/florida/" data-href="/florida/"><span class="swatch"></span> Florida</a>
<a href="/georgia/" data-href="/georgia/"><span class="swatch"></span> Georgia</a>
<a href="/hawaii/" data-href="/hawaii/"><span class="swatch"></span> Hawaii</a>
<a href="/idaho/" data-href="/idaho/"><span class="swatch"></span> Idaho</a>
<a href="/illinois/" data-href="/illinois/"><span class="swatch"></span> Illinois</a>
<a href="/indiana/" data-href="/indiana/"><span class="swatch"></span> Indiana</a>
<a href="/iowa/" data-href="/iowa/"><span class="swatch"></span> Iowa</a>
<a href="/kansas/" data-href="/kansas/"><span class="swatch"></span> Kansas</a>
<a href="/kentucky/" data-href="/kentucky/"><span class="swatch"></span> Kentucky</a>
</div>
<div class="col-sm-4">
<a href="/louisiana/" data-href="/louisiana/"><span class="swatch"></span> Louisiana</a>
<a href="/maine/" data-href="/maine/"><span class="swatch"></span> Maine</a>
<a href="/maryland/" data-href="/maryland/"><span class="swatch"></span> Maryland</a>
<a href="/massachusetts/" data-href="/massachusetts/"><span class="swatch"></span> Massachusetts</a>
<a href="/michigan/" data-href="/michigan/"><span class="swatch"></span> Michigan</a>
<a href="/minnesota/" data-href="/minnesota/"><span class="swatch"></span> Minnesota</a>
<a href="/mississippi/" data-href="/mississippi/"><span class="swatch"></span> Mississippi</a>
<a href="/missouri/" data-href="/missouri/"><span class="swatch"></span> Missouri</a>
<a href="/montana/" data-href="/montana/"><span class="swatch"></span> Montana</a>
<a href="/nebraska/" data-href="/nebraska/"><span class="swatch"></span> Nebraska</a>
<a href="/nevada/" data-href="/nevada/"><span class="swatch"></span> Nevada</a>
<a href="/new_hampshire/" data-href="/new_hampshire/"><span class="swatch"></span> New Hampshire</a>
<a href="/new_jersey/" data-href="/new_jersey/"><span class="swatch"></span> New Jersey</a>
<a href="/new_mexico/" data-href="/new_mexico/"><span class="swatch"></span> New Mexico</a>
<a href="/new_york/" data-href="/new_york/"><span class="swatch"></span> New York</a>
<a href="/north_carolina/" data-href="/north_carolina/"><span class="swatch"></span> North Carolina</a>
<a href="/north_dakota/" data-href="/north_dakota/"><span class="swatch"></span> North Dakota</a>
</div>
<div class="col-sm-4">
<a href="/ohio/" data-href="/ohio/"><span class="swatch"></span> Ohio</a>
<a href="/oklahoma/" data-href="/oklahoma/"><span class="swatch"></span> Oklahoma</a>
<a href="/oregon/" data-href="/oregon/"><span class="swatch"></span> Oregon</a>
<a href="/pennsylvania/" data-href="/pennsylvania/"><span class="swatch"></span> Pennsylvania</a>
<a href="/rhode_island/" data-href="/rhode_island/"><span class="swatch"></span> Rhode Island</a>
<a href="/south_carolina/" data-href="/south_carolina/"><span class="swatch"></span> South Carolina</a>
<a href="/south_dakota/" data-href="/south_dakota/"><span class="swatch"></span> South Dakota</a>
<a href="/tennessee/" data-href="/tennessee/"><span class="swatch"></span> Tennessee</a>
<a href="/texas/" data-href="/texas/"><span class="swatch"></span> Texas</a>
<a href="/utah/" data-href="/utah/"><span class="swatch"></span> Utah</a>
<a href="/vermont/" data-href="/vermont/"><span class="swatch"></span> Vermont</a>
<a href="/virginia/" data-href="/virginia/"><span class="swatch"></span> Virginia</a>
<a href="/washington/" data-href="/washington/"><span class="swatch"></span> Washington</a>
<a href="/west_virginia/" data-href="/west_virginia/"><span class="swatch"></span> West Virginia</a>
<a href="/wisconsin/" data-href="/wisconsin/"><span class="swatch"></span> Wisconsin</a>
<a href="/wyoming/" data-href="/wyoming/"><span class="swatch"></span> Wyoming</a>
</div>
</div>
<div class="row states-listing visible-xs-block">
<div class="col-xs-6">
<a href="/alabama/" data-href="/alabama/"><span class="swatch"></span> Alabama</a>
<a href="/alaska/" data-href="/alaska/"><span class="swatch"></span> Alaska</a>
<a href="/arizona/" data-href="/arizona/"><span class="swatch"></span> Arizona</a>
<a href="/arkansas/" data-href="/arkansas/"><span class="swatch"></span> Arkansas</a>
<a href="/california/" data-href="/california/"><span class="swatch"></span> California</a>
<a href="/colorado/" data-href="/colorado/"><span class="swatch"></span> Colorado</a>
<a href="/connecticut/" data-href="/connecticut/"><span class="swatch"></span> Connecticut</a>
<a href="/delaware/" data-href="/delaware/"><span class="swatch"></span> Delaware</a>
<a href="/florida/" data-href="/florida/"><span class="swatch"></span> Florida</a>
<a href="/georgia/" data-href="/georgia/"><span class="swatch"></span> Georgia</a>
<a href="/hawaii/" data-href="/hawaii/"><span class="swatch"></span> Hawaii</a>
<a href="/idaho/" data-href="/idaho/"><span class="swatch"></span> Idaho</a>
<a href="/illinois/" data-href="/illinois/"><span class="swatch"></span> Illinois</a>
<a href="/indiana/" data-href="/indiana/"><span class="swatch"></span> Indiana</a>
<a href="/iowa/" data-href="/iowa/"><span class="swatch"></span> Iowa</a>
<a href="/kansas/" data-href="/kansas/"><span class="swatch"></span> Kansas</a>
<a href="/kentucky/" data-href="/kentucky/"><span class="swatch"></span> Kentucky</a>
<a href="/louisiana/" data-href="/louisiana/"><span class="swatch"></span> Louisiana</a>
<a href="/maine/" data-href="/maine/"><span class="swatch"></span> Maine</a>
<a href="/maryland/" data-href="/maryland/"><span class="swatch"></span> Maryland</a>
<a href="/massachusetts/" data-href="/massachusetts/"><span class="swatch"></span> Massachusetts</a>
<a href="/michigan/" data-href="/michigan/"><span class="swatch"></span> Michigan</a>
<a href="/minnesota/" data-href="/minnesota/"><span class="swatch"></span> Minnesota</a>
<a href="/mississippi/" data-href="/mississippi/"><span class="swatch"></span> Mississippi</a>
<a href="/missouri/" data-href="/missouri/"><span class="swatch"></span> Missouri</a>
<a href="/montana/" data-href="/montana/"><span class="swatch"></span> Montana</a>
</div>
<div class="col-xs-6">
<a href="/nebraska/" data-href="/nebraska/"><span class="swatch"></span> Nebraska</a>
<a href="/nevada/" data-href="/nevada/"><span class="swatch"></span> Nevada</a>
<a href="/new_hampshire/" data-href="/new_hampshire/"><span class="swatch"></span> New Hampshire</a>
<a href="/new_jersey/" data-href="/new_jersey/"><span class="swatch"></span> New Jersey</a>
<a href="/new_mexico/" data-href="/new_mexico/"><span class="swatch"></span> New Mexico</a>
<a href="/new_york/" data-href="/new_york/"><span class="swatch"></span> New York</a>
<a href="/north_carolina/" data-href="/north_carolina/"><span class="swatch"></span> North Carolina</a>
<a href="/north_dakota/" data-href="/north_dakota/"><span class="swatch"></span> North Dakota</a>
<a href="/ohio/" data-href="/ohio/"><span class="swatch"></span> Ohio</a>
<a href="/oklahoma/" data-href="/oklahoma/"><span class="swatch"></span> Oklahoma</a>
<a href="/oregon/" data-href="/oregon/"><span class="swatch"></span> Oregon</a>
<a href="/pennsylvania/" data-href="/pennsylvania/"><span class="swatch"></span> Pennsylvania</a>
<a href="/rhode_island/" data-href="/rhode_island/"><span class="swatch"></span> Rhode Island</a>
<a href="/south_carolina/" data-href="/south_carolina/"><span class="swatch"></span> South Carolina</a>
<a href="/south_dakota/" data-href="/south_dakota/"><span class="swatch"></span> South Dakota</a>
<a href="/tennessee/" data-href="/tennessee/"><span class="swatch"></span> Tennessee</a>
<a href="/texas/" data-href="/texas/"><span class="swatch"></span> Texas</a>
<a href="/utah/" data-href="/utah/"><span class="swatch"></span> Utah</a>
<a href="/vermont/" data-href="/vermont/"><span class="swatch"></span> Vermont</a>
<a href="/virginia/" data-href="/virginia/"><span class="swatch"></span> Virginia</a>
<a href="/washington/" data-href="/washington/"><span class="swatch"></span> Washington</a>
<a href="/west_virginia/" data-href="/west_virginia/"><span class="swatch"></span> West Virginia</a>
<a href="/wisconsin/" data-href="/wisconsin/"><span class="swatch"></span> Wisconsin</a>
<a href="/wyoming/" data-href="/wyoming/"><span class="swatch"></span> Wyoming</a>
</div>
</div>
</div>
<h2>What is Partisan Gerrymandering?</h2>
<p>Gerrymandering is the process by which politicians draw voting maps to make it easier to get reelected. Through gerrymandering, a party is able to translate its votes into seats more efficiently than its opponent. Seats translate to legislative power and more control over the policies the government enacts.</p>
<p>Gerrymandering has been a practice in American elections nearly since the founding of the country. But in recent redistricting cycles, the accuracy of voter databases and mapping software has skyrocketed, leading to a trend of increasingly skewed maps in the states where politicians control district line drawing. One way to combat gerrymandering is through the creation of independent redistricting commissions, bodies separate from state legislatures that are responsible for drawing the districts. You can <a href="https://campaignlegal.org/democracyu/accountability/independent-redistricting-commissions" target="_blank">learn more about independent redistricting commissions</a> in Campaign Legal Center's DemocracyU toolkit, and <a href="https://campaignlegal.org/story/how-michigan-voters-came-together-flip-gerrymandering-its-head" target="_blank">read the story of Nancy Wang, executive director of Voters Not Politicians</a>, the group that spurred the creation of the Michigan Independent Redistricting Commission in 2018. </p>
<p>But first, in order to understand the impact of gerrymandering on our voting maps, we need to be able to measure it.</p>
<h3>How Do We Measure It?</h3>
<p>We use four distinct measures of partisan gerrymandering: the efficiency gap, partisan bias, the mean-median difference, and declination. All of these metrics are reliable when a state is competitive, but only the efficiency gap and declination should be trusted when one party predominates in a state.</p>
<ul class="nav nav-tabs" id="tabs-metrics">
<li class="active"><a href="#tab-efficiencygap" data-toggle="tab">Efficiency Gap</a></li>
<li><a href="#tab-partisanbias" data-toggle="tab">Partisan Bias</a></li>
<li><a href="#tab-meanmedian" data-toggle="tab">Mean-<span class="mobilespace"> </span>Median</a></li>
<li><a href="#tab-declination2" data-toggle="tab">Declination</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="tab-efficiencygap">
<p>Partisan gerrymandering is always carried out by cracking a party’s supporters among many districts, in which their preferred candidates lose by relatively narrow margins; and/or by packing a party’s backers in a few districts, in which their preferred candidates win by enormous margins. Both cracking and packing produce votes that are inefficient in the sense that they do not contribute to a candidate’s election. In the case of cracking, all votes cast for the losing candidate are inefficient. In the case of packing, all votes cast for the winning candidate, above the 50% (plus one) threshold needed for victory, are inefficient. The efficiency gap is calculated by taking one party’s total inefficient votes in an election, subtracting the other party’s total inefficient votes, and dividing by the total number of votes cast. It captures in a single number the extent to which district lines crack and pack one party’s voters more than the other party’s voters.</p>
<p><a href="/metrics/efficiencygap/">Learn more about the efficiency gap <i class="glyphicon glyphicon-chevron-right" style="font-size:0.8em;"></i></a></p>
</div>
<div class="tab-pane fade" id="tab-partisanbias">
<p>Partisan bias is the difference between each party’s seat share and 50% in a hypothetical, perfectly tied election. For example, if a party would win 55% of a plan’s districts if it received 50% of the statewide vote, then the plan would have a bias of 5% in this party’s favor. To calculate partisan bias, the observed vote share in each district is shifted by the amount necessary to simulate a tied statewide election. Each party’s seat share in this hypothetical election is then determined. The difference between each party’s seat share and 50% is partisan bias.</p>
<p><a href="/metrics/partisanbias/">Learn more about partisan bias <i class="glyphicon glyphicon-chevron-right" style="font-size:0.8em;"></i></a></p>
</div>
<div class="tab-pane fade" id="tab-meanmedian">
<p>The mean-median difference is a party’s median vote share minus its mean vote share, across all of a plan’s districts. For example, if a party has a median vote share of 45% and a mean vote share of 50%, then the plan has a mean-median difference of 5% against this party. When the mean and the median diverge significantly, the district distribution is skewed in favor of one party and against its opponent. Conversely, when the mean and the median are close, the district distribution is more symmetric.</p>
<p><a href="/metrics/meanmedian/">Learn more about the mean-median difference <i class="glyphicon glyphicon-chevron-right" style="font-size:0.8em;"></i></a></p>
</div>
<div class="tab-pane fade" id="tab-declination2">
<p>
A gerrymander designs districts with the win/loss threshold in mind, to ensure that more districts of the favored party end up on the winning side of the threshold. A neutral map designs districts for other reasons, and does not treat the win/loss threshold as special.
The declination metric treats threshold-related asymmetry in the distribution of votes across districts as indicative of partisan gerrymandering.
</p>
<p><a href="/metrics/declination/">Learn more about the declination <i class="glyphicon glyphicon-chevron-right" style="font-size:0.8em;"></i></a></p>
</div>
</div>
</div><!--/container-mainbody-->
<!-- this popup will be displayed by selectState() -->
<div id="stateinfo-popup">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title"><span data-field="statename"></span></h4>
<span data-field="analysis"></span>
<br>
<a href="javascript:void(0);" class="learnmore"><span>Learn More <i class="glyphicon glyphicon-chevron-right" style="font-size:0.8em;"></i></span></a>
</div>
<!--[include_footer]-->
</body>
</html>
<!-- 😱 -->