-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMSDX_day_20180922_SRB_clus_sept.csv
We can't make this file beautiful and searchable because it's too large.
3101 lines (3101 loc) · 850 KB
/
MSDX_day_20180922_SRB_clus_sept.csv
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
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
stfips,F,M,county_name,state,cat_rucc,a_dbcp_ln_sept,a_tdi_ln_sept,a_2np_ln_sept,a_acetophenone_ln_sept,a_acrolein_ln_sept,a_acrylic_acid_ln_sept,a_c3h3n_ln_sept,a_sb_ln_sept,a_benzidine_ln_sept,a_biphenyl_ln_sept,a_dehp_ln_sept,a_cd_ln_sept,a_cs2_ln_sept,a_cl_ln_sept,a_c6h5cl_ln_sept,a_chloroform_ln_sept,a_chloroprene_ln_sept,a_cr_ln_sept,a_cresol_ln_sept,a_cumene_ln_sept,a_cn_ln_sept,a_dbp_ln_sept,a_diesel_ln_sept,a_me2_phthalate_ln_sept,a_ech_ln_sept,a_etacrylate_ln_sept,a_etcl_ln_sept,a_egly_ln_sept,a_eox_ln_sept,a_hexane_ln_sept,a_n2h2_ln_sept,a_hcl_ln_sept,a_isophorone_ln_sept,a_pb_ln_sept,a_mn_ln_sept,a_hg_ln_sept,a_meoh_ln_sept,a_mibk_ln_sept,a_mma_ln_sept,a_mecl_ln_sept,a_mehydrazine_ln_sept,a_otoluidine_ln_sept,a_pahpom_ln_sept,a_ph3_ln_sept,a_p_ln_sept,a_proo_ln_sept,a_quinoline_ln_sept,a_stryene_ln_sept,a_c2hcl3_ln_sept,a_11dce_ln_sept,a_pm10_mean_ln_sept,a_pm25_mean_sept,a_co_mean_ln_sept,per_totpopss_ave_sept,per_pswithsw_ave_sept,d303_percent_sept,sewagenpdesperkm_sept,indnpdesperkm_sept,stormnpdesperkm_sept,numdays_rain_activity_tot_sept,avgofd3_ave_sept,na_ln_ave_sept,no3_mean_ave_sept,cl_ln_ave_sept,hg_ln_ave_sept,mean_hg_ln_sept,mean_pb_ln_sept,mean_ti_pct_ln_sept,mean_fe_pct_ln_sept,radon_zone_sept,pct_au_ln_sept,pct_manure_acres_ln_sept,pct_irrigated_acres_ln_sept,farms_per_acre_ln_sept,fungicides_ln_sept,facilities_rate_log_sept,hwyprop_sept,ryprop_sept,rate_food_env_neg_sept,pct_pub_transport_log_sept,rate_al_pn_gm_env_log_sept,rate_civic_env_log_sept,rate_ed_env_log_sept,rate_ent_env_log_sept,rate_hc_env_log_sept,rate_trans_env_log_sept,to_unit_rate_log_sept,fatal_rate_log_sept,pct_rent_occ_sept,pct_vac_units_sept,pct_pers_lt_pov_sept,pct_no_eng_sept,pct_hs_more_sept,pct_unemp_sept,med_rooms_sept,work_out_co_sept,pct_mt_10units_log_sept,violent_rate_log_sept,cluster_ward_1_sept,cluster_ward_2_sept,cluster_ward_3_sept,cluster_ward_4_sept,cluster_ward_5_sept,cluster_ward_6_sept,cluster_ward_7_sept,cluster_ward_8_sept,cluster_ward_9_sept,cluster_ward_10_sept,cluster_ward_11_sept,cluster_ward_12_sept,cluster_ward_13_sept,cluster_ward_14_sept,cluster_ward_15_sept,cluster_ward_16_sept,cluster_ward_17_sept,cluster_ward_18_sept,cluster_ward_19_sept,cluster_ward_20_sept,cluster_ward_21_sept,cluster_ward_22_sept,cluster_ward_23_sept,cluster_ward_24_sept,cluster_ward_25_sept,cluster_ward_26_sept
1001,96,90,Autauga County,AL,1,1,5,5,7,7,2,7,6,1,6,5,5,7,3,5,6,6,7,7,7,7,6,5,6,6,5,7,7,3,6,2,6,1,5,5,5,7,7,7,7,1,6,6,2,1,6,7,7,5,7,6,6,1,2,1,1,1,5,7,1,6,6,1,6,6,6,6,7,4,3,4,4,5,4,3,2,6,2,4,2,2,5,2,4,2,2,3,5,2,3,3,2,4,3,6,7,2,5,6,7,1,6,7,6,5,4,2,1,1,2,7,1,7,6,3,7,7,4,7,1,6,1,2,2
1003,214,222,Baldwin County,AL,2,1,5,4,4,7,7,4,4,5,6,6,4,6,6,4,7,5,6,6,6,5,5,6,5,7,7,5,5,5,5,6,6,5,6,5,6,5,6,7,6,7,4,6,1,5,5,5,5,3,5,7,5,1,4,1,4,6,6,7,1,6,7,1,7,6,3,4,6,1,5,3,3,4,5,7,3,5,3,5,3,3,3,3,5,6,3,3,4,2,7,3,3,5,3,3,3,7,6,5,6,6,6,6,5,7,5,1,1,7,3,6,1,4,5,5,6,6,4,7,1,7,6,2,2
1005,35,35,Barbour County,AL,3,4,3,3,4,6,5,5,5,1,4,4,4,5,5,5,3,5,4,4,3,4,6,3,4,4,7,4,5,3,4,4,4,2,5,7,3,5,7,4,4,1,6,5,4,7,4,4,6,4,4,6,7,1,3,1,2,7,6,6,1,6,6,1,6,5,3,2,6,1,3,4,5,5,3,3,5,5,5,6,2,3,6,2,1,3,6,7,4,5,6,7,3,1,4,3,2,2,4,5,5,1,4,3,4,4,3,1,1,1,2,4,1,4,4,3,6,5,5,7,2,3,2,1,2
1007,36,33,Bibb County,AL,1,1,3,3,5,5,6,7,5,1,3,5,5,4,5,2,3,3,5,6,6,3,4,3,6,3,3,4,4,3,3,4,4,7,5,7,5,3,5,3,4,5,7,6,1,1,4,6,3,4,4,6,6,1,2,1,3,1,5,6,1,6,6,1,6,6,4,5,6,2,3,2,1,2,2,3,3,4,3,1,5,2,3,1,1,1,3,3,4,2,4,6,1,1,5,4,7,4,6,4,4,6,3,4,3,4,5,2,1,1,2,4,1,6,4,2,6,7,4,3,1,4,1,2,2
1009,61,78,Blount County,AL,1,1,5,4,5,5,4,7,3,5,4,5,5,5,4,4,3,5,4,6,5,5,4,4,6,5,6,5,5,3,5,6,3,5,4,4,5,4,6,6,5,5,7,5,2,4,5,7,5,5,5,7,7,1,3,6,4,7,6,7,1,6,6,2,6,6,3,2,2,2,3,6,7,3,5,4,1,2,3,2,2,1,1,1,2,1,3,4,5,1,3,3,5,2,3,5,7,1,1,5,5,6,4,4,4,5,5,2,2,1,3,5,1,7,5,3,4,6,4,6,1,5,1,2,2
1011,6,14,Bullock County,AL,3,3,2,2,4,7,2,6,6,1,5,5,5,6,4,3,2,2,2,3,2,2,3,2,3,2,7,3,3,3,2,2,2,5,4,5,3,2,4,3,5,1,6,7,2,6,3,5,5,3,2,6,6,1,2,1,2,6,2,5,1,6,6,1,6,6,4,2,6,1,3,3,5,3,3,3,2,1,7,7,1,3,1,1,1,2,1,1,4,4,5,7,5,1,7,2,4,4,6,3,3,3,2,2,2,2,2,1,1,1,1,3,1,5,3,2,5,3,5,7,1,1,1,2,2
1013,22,17,Butler County,AL,3,1,4,3,4,5,3,6,3,4,4,5,3,4,4,3,2,4,3,3,5,5,5,3,4,4,4,5,5,3,5,2,3,1,2,6,3,4,5,4,4,1,4,4,2,4,4,5,7,3,4,5,6,1,3,1,2,7,3,6,1,6,7,1,7,6,1,2,6,1,5,4,4,1,1,3,3,6,4,5,1,2,5,3,1,3,5,7,7,4,5,7,1,2,7,4,3,3,6,5,5,1,4,3,4,4,3,1,1,1,1,4,1,3,6,3,3,7,5,2,1,2,4,2,2
1015,154,141,Calhoun County,AL,1,3,7,5,7,7,5,7,6,6,7,5,6,6,3,4,5,6,7,5,7,6,6,6,7,6,5,6,7,5,7,6,4,5,7,5,5,6,7,6,6,3,7,6,2,4,6,5,6,6,6,6,7,1,2,4,2,7,7,7,1,6,5,2,6,6,6,6,3,3,1,4,5,4,5,4,6,3,4,6,5,4,4,2,4,5,5,6,3,5,4,5,3,3,5,4,2,5,7,6,6,6,7,6,6,6,4,3,2,1,4,7,2,6,7,3,5,6,3,4,1,3,3,2,2
1017,30,34,Chambers County,AL,3,3,6,4,7,6,6,7,3,1,5,5,5,6,4,4,4,5,5,5,6,6,6,5,6,7,7,6,6,4,5,3,7,7,4,5,4,5,6,5,5,2,7,5,4,1,6,5,6,5,6,6,7,1,3,7,1,1,5,6,1,6,6,2,6,6,6,6,7,7,5,4,4,3,2,3,4,5,3,1,3,1,3,2,2,4,2,6,3,4,4,6,1,1,5,4,5,2,7,5,6,6,5,5,5,5,4,3,3,1,1,6,3,4,5,2,3,7,4,1,2,2,3,2,2
1019,40,31,Cherokee County,AL,4,3,4,3,6,5,5,7,5,4,4,5,4,4,3,3,4,4,4,5,4,4,4,4,6,5,4,4,4,4,4,6,6,5,4,5,3,4,5,3,3,5,7,4,4,5,4,5,4,5,4,7,7,2,4,5,5,7,5,6,1,6,5,2,5,6,7,5,6,4,3,4,3,5,3,4,2,4,3,5,2,2,1,2,2,3,3,1,7,1,7,5,1,1,2,2,6,2,6,4,5,6,4,5,3,4,5,3,2,1,5,4,1,3,4,4,4,6,3,7,2,4,6,2,2
1021,57,69,Chilton County,AL,1,1,3,3,7,5,6,7,4,1,3,4,5,4,4,3,3,4,4,5,4,4,4,3,5,4,3,5,4,3,4,3,4,4,5,6,5,3,5,5,4,5,4,5,2,1,4,5,4,4,4,6,7,1,5,5,3,1,6,6,1,6,6,1,6,6,6,5,6,3,3,4,3,3,4,3,2,5,3,2,2,4,5,1,2,2,2,4,4,1,5,5,3,1,3,4,6,1,1,4,4,5,4,5,4,5,5,2,1,1,2,4,1,4,5,3,7,7,4,6,1,4,3,2,2
1023,28,46,Choctaw County,AL,4,1,3,2,1,5,6,6,5,5,2,5,2,3,5,5,5,2,3,3,3,2,2,2,2,4,5,3,2,5,2,5,3,2,3,4,3,5,3,2,3,4,2,2,2,5,2,5,2,3,4,3,6,1,7,1,1,1,3,6,1,6,6,1,6,6,2,2,6,1,5,2,3,1,1,1,1,2,6,6,6,4,4,3,1,2,1,1,4,1,6,7,1,1,7,4,5,2,6,7,2,5,2,2,2,3,3,1,1,1,1,2,1,6,3,2,6,3,4,2,1,2,3,2,2
1025,25,34,Clarke County,AL,3,1,2,2,7,6,6,5,4,5,2,5,3,4,7,5,7,2,2,3,3,2,2,2,3,7,6,3,3,5,2,5,4,2,2,5,4,6,3,3,3,7,2,3,1,7,3,5,2,3,2,4,6,1,4,4,2,1,4,6,1,6,7,1,7,6,1,1,5,1,5,2,1,1,1,3,2,7,2,6,3,2,3,1,2,5,5,1,3,1,6,7,1,2,7,4,3,4,6,3,6,6,3,5,3,4,5,1,1,1,1,2,1,4,2,2,6,6,4,1,1,3,1,2,2
1027,13,9,Clay County,AL,4,1,4,2,2,5,6,7,3,5,5,4,5,3,3,2,2,3,5,4,7,3,3,3,6,3,3,3,4,4,2,5,3,3,4,4,3,3,6,3,3,4,3,4,2,5,3,5,2,5,2,6,7,1,7,7,1,7,4,6,1,6,6,2,6,6,6,4,7,5,1,4,5,2,3,3,4,1,4,2,3,2,4,3,1,1,4,7,3,3,5,6,2,1,4,3,4,1,6,3,3,5,4,3,3,3,5,3,2,1,3,4,2,3,3,2,3,4,4,1,1,2,2,2,2
1029,35,40,Cleburne County,AL,4,3,5,3,3,6,4,7,7,5,5,4,5,3,2,2,3,3,5,5,4,3,3,4,5,3,3,3,4,4,3,5,6,4,5,3,3,3,6,3,4,5,5,4,5,4,4,5,3,5,3,6,7,1,7,6,1,7,4,6,1,6,5,2,6,6,6,4,6,6,1,4,5,1,1,3,4,6,5,5,3,1,1,2,2,1,1,3,7,2,3,4,2,1,4,3,7,1,6,4,4,6,4,4,3,3,5,3,3,1,3,4,2,3,4,2,4,4,4,1,2,3,3,2,2
1031,47,41,Coffee County,AL,3,3,5,4,6,6,4,5,6,1,5,5,4,6,5,5,5,5,5,4,6,6,5,3,7,5,4,6,5,3,7,4,3,4,5,3,4,5,5,5,5,1,7,5,2,1,5,4,6,4,5,6,6,1,4,1,1,7,5,7,1,6,7,1,7,6,2,2,5,1,5,6,7,5,5,4,4,3,4,4,2,2,3,4,4,4,4,6,1,6,4,5,4,3,4,5,5,2,4,5,5,1,5,3,5,5,3,1,1,1,2,4,1,6,5,4,6,7,6,7,1,4,2,2,2
1033,57,76,Colbert County,AL,1,1,6,5,5,6,7,7,6,1,6,6,7,6,7,4,6,7,5,6,7,7,7,6,7,7,6,6,7,4,6,6,5,7,5,7,7,6,7,6,5,6,6,6,2,7,6,6,6,6,7,3,6,2,2,6,2,7,7,7,1,5,5,3,5,6,3,5,4,2,1,4,5,4,2,4,7,7,2,3,2,4,2,2,4,6,4,7,5,4,3,4,1,3,4,6,4,4,3,6,6,6,6,6,6,6,6,4,2,1,3,6,2,5,6,4,6,7,5,6,1,4,6,3,2
1035,12,8,Conecuh County,AL,4,1,2,2,5,5,4,5,4,5,6,5,5,3,7,2,4,3,2,3,3,2,7,2,3,2,3,3,3,4,2,5,2,1,2,5,3,4,3,2,3,1,2,3,2,6,2,5,2,3,2,6,6,1,4,1,1,6,4,6,1,6,7,1,7,6,1,1,3,1,5,3,1,1,1,3,4,7,6,2,1,2,1,1,1,1,1,7,6,1,6,7,1,2,7,4,6,2,6,4,2,1,2,4,2,3,2,1,1,1,1,2,1,3,4,3,5,7,5,4,1,2,1,2,2
1037,10,12,Coosa County,AL,4,1,3,2,6,5,6,7,3,1,3,4,6,3,5,2,2,3,4,4,5,3,3,3,3,3,3,3,4,3,3,4,4,4,4,6,4,3,5,5,3,6,2,4,2,5,3,5,3,4,3,7,6,1,6,7,3,1,4,6,1,6,6,2,6,6,5,4,6,5,1,2,1,2,2,1,3,4,3,1,4,4,1,1,1,1,1,3,6,1,7,5,1,1,6,4,7,1,6,4,3,6,3,4,2,2,6,3,3,1,3,3,2,4,3,1,5,6,4,2,1,2,1,2,2
1039,60,53,Covington County,AL,3,3,2,3,3,6,6,5,4,4,4,4,3,4,3,3,3,7,4,3,4,4,4,2,7,4,6,4,5,3,5,5,2,1,3,3,3,4,5,4,4,1,4,5,2,4,4,4,4,3,4,5,5,1,4,1,3,7,4,6,1,6,7,1,7,6,1,1,3,1,5,4,6,4,3,3,3,4,3,6,1,2,5,4,2,5,5,6,5,3,5,6,1,2,6,3,2,2,6,5,5,1,4,3,4,5,3,1,1,1,1,3,1,4,5,3,5,6,6,7,1,2,5,2,2
1041,25,13,Crenshaw County,AL,4,3,2,2,6,5,4,6,6,1,5,5,5,6,4,2,2,3,3,3,2,2,3,2,3,2,3,4,3,3,2,3,2,1,4,4,3,2,3,2,3,1,2,3,2,1,3,5,5,3,3,6,6,1,3,1,2,7,3,6,1,6,7,1,7,6,2,2,6,1,5,5,6,3,1,3,1,1,5,6,1,2,4,2,1,2,1,7,6,3,6,7,1,1,4,2,6,1,6,3,3,1,2,2,2,3,2,1,1,1,2,3,1,4,3,3,5,3,6,6,1,1,6,2,2
1043,142,100,Cullman County,AL,3,1,5,4,4,5,6,7,5,1,6,5,6,5,6,4,4,5,5,5,6,6,5,5,5,7,6,5,6,3,5,6,4,7,4,4,5,4,7,7,5,4,5,6,2,6,5,6,7,5,6,6,7,1,2,7,3,7,6,7,1,6,6,2,6,6,4,2,2,2,3,7,7,3,5,6,5,3,3,4,2,1,3,2,2,4,3,4,5,3,5,4,3,2,2,3,4,4,1,5,5,5,5,5,5,6,5,2,2,1,3,6,1,5,5,4,5,7,5,5,1,5,5,2,2
1045,55,42,Dale County,AL,2,4,4,4,7,6,5,5,6,1,5,5,3,7,5,6,5,5,5,5,5,5,6,4,7,5,6,5,5,3,7,6,3,7,6,4,3,4,6,6,5,2,7,5,2,5,6,4,7,3,6,7,6,1,4,1,2,7,5,7,1,6,7,1,7,5,1,1,4,1,5,4,4,6,4,4,2,6,3,3,5,3,5,4,3,2,6,7,4,7,5,5,5,4,6,3,5,4,6,6,5,3,5,3,5,5,4,1,1,1,1,5,1,5,6,4,7,6,5,7,1,3,2,1,2
1047,38,29,Dallas County,AL,2,1,7,4,7,6,3,7,6,4,5,6,5,5,5,4,4,5,4,7,6,6,6,3,5,5,4,7,6,4,4,3,5,2,5,6,5,6,6,5,6,2,6,4,2,4,5,5,5,4,6,5,6,1,4,1,1,6,6,6,1,6,6,1,6,6,7,3,6,2,3,4,3,4,2,4,6,5,3,6,6,2,6,3,2,4,6,7,5,7,4,7,2,2,7,3,2,2,7,6,6,3,5,7,6,5,4,2,2,1,3,6,2,5,5,4,7,7,3,7,1,2,2,2,2
1049,106,96,DeKalb County,AL,3,3,5,4,5,5,7,7,6,1,4,5,4,4,6,3,4,4,4,4,4,5,4,5,6,6,4,5,5,4,5,6,5,4,4,7,5,4,7,4,4,6,7,5,3,6,5,5,5,5,4,7,7,2,3,6,1,7,6,7,1,6,5,2,5,6,6,5,2,2,3,7,7,3,4,7,3,5,2,3,2,2,5,3,2,3,3,4,5,2,4,5,5,1,4,4,3,2,4,5,5,6,5,5,4,6,6,2,1,1,3,5,1,3,4,5,5,6,3,6,2,3,4,2,2
1051,208,219,Elmore County,AL,1,3,4,4,7,6,3,7,5,1,4,4,4,6,3,4,4,5,5,6,6,6,5,5,5,5,4,7,5,3,5,3,5,1,5,5,4,5,6,7,6,1,4,5,2,1,5,6,7,4,6,7,6,1,2,5,1,1,6,7,1,6,6,2,6,6,4,3,6,3,3,3,2,4,4,3,2,2,3,2,2,2,4,2,2,1,2,3,6,1,4,3,2,4,3,6,7,3,1,5,5,1,5,5,5,6,3,2,2,1,1,6,2,7,5,3,7,7,4,7,1,6,1,2,2
1053,53,38,Escambia County,AL,3,1,3,4,6,7,7,5,5,5,7,5,7,6,6,3,7,5,3,6,6,4,5,3,5,7,6,5,5,4,4,5,4,3,3,5,5,6,6,5,5,5,5,6,2,7,5,5,4,3,4,7,6,1,4,1,3,1,6,6,1,6,7,1,7,6,2,1,3,1,5,2,3,4,3,4,5,5,4,7,6,3,6,2,1,3,2,4,6,3,5,7,1,2,6,4,3,3,6,7,6,5,4,7,4,5,5,1,1,1,1,5,1,4,5,4,7,5,5,7,1,3,2,2,2
1055,159,174,Etowah County,AL,1,3,6,5,7,6,5,7,5,6,7,7,7,7,4,5,6,6,6,5,7,7,7,6,7,6,5,7,7,5,7,6,5,7,6,6,6,6,7,6,7,5,7,6,2,3,7,5,7,6,7,7,7,1,2,6,3,7,7,7,1,6,5,2,5,6,6,2,5,2,3,5,6,2,3,4,3,6,3,5,1,3,5,3,4,6,5,7,4,4,3,5,2,3,5,5,3,4,7,7,7,7,7,6,7,6,6,2,1,1,3,6,2,7,6,3,5,7,3,3,1,3,3,2,2
1057,22,15,Fayette County,AL,3,1,3,2,4,4,4,7,3,1,3,6,4,3,4,2,3,3,3,4,3,3,3,2,4,3,3,3,4,3,2,5,4,5,5,6,4,3,6,3,3,4,7,3,2,1,3,6,4,4,3,3,6,1,6,7,2,6,6,6,1,6,6,2,6,6,3,3,5,2,3,3,4,1,1,4,4,2,5,2,1,2,3,1,2,4,3,6,6,3,4,6,1,1,6,3,5,4,5,4,3,5,2,4,3,3,5,2,2,1,3,3,1,5,3,4,3,4,4,4,1,3,3,2,2
1059,47,36,Franklin County,AL,3,1,4,3,3,4,7,7,3,1,4,6,4,4,6,3,4,5,4,5,6,4,7,3,7,6,5,4,5,2,4,6,4,5,3,6,6,4,6,5,4,6,4,4,2,7,4,6,5,5,4,3,5,1,4,5,1,7,5,7,1,5,5,2,5,6,2,4,5,2,1,6,7,3,2,4,4,3,4,2,5,1,4,1,2,4,3,7,5,4,4,6,5,1,4,3,4,4,4,4,4,6,4,5,4,4,6,2,1,1,3,4,2,3,5,3,4,6,5,4,1,2,3,3,2
1061,22,33,Geneva County,AL,1,3,4,3,6,6,3,4,6,1,3,4,2,4,4,3,5,4,7,5,4,4,4,2,7,4,3,4,5,3,4,4,2,4,4,4,2,4,6,3,4,2,7,4,2,5,4,4,4,3,5,6,5,1,6,1,1,7,4,6,1,6,7,1,7,5,1,1,4,1,5,6,6,6,6,4,2,1,4,4,1,1,5,3,1,1,4,7,6,2,5,6,1,1,6,4,6,1,6,6,4,3,4,2,3,4,3,1,1,1,1,4,1,6,4,4,6,5,5,7,1,2,3,1,2
1063,1,2,Greene County,AL,1,1,3,2,6,5,7,7,5,4,2,5,4,3,6,4,4,2,4,3,4,2,4,2,4,2,2,3,3,3,2,2,5,6,4,4,6,4,4,2,2,5,7,2,2,1,3,6,2,3,3,5,6,1,6,1,2,6,3,6,1,6,6,1,6,6,6,3,6,2,3,4,4,3,1,3,2,7,4,2,6,1,1,2,2,2,5,7,7,4,7,7,1,1,7,2,6,5,5,3,2,6,2,4,2,2,5,2,2,1,4,4,2,4,3,2,5,4,4,2,1,1,4,2,2
1065,13,16,Hale County,AL,1,1,3,2,7,5,7,7,4,4,2,5,4,4,5,3,3,3,4,4,6,3,4,2,4,3,3,3,3,3,2,3,5,6,4,5,5,3,4,2,3,5,7,2,2,1,3,6,2,4,3,6,6,1,5,1,1,6,3,6,1,6,6,1,6,6,6,4,7,2,3,4,3,2,2,4,2,2,4,5,3,1,1,4,1,1,3,3,6,2,6,7,1,1,6,3,6,3,5,4,3,6,3,4,3,3,5,2,2,1,4,4,2,3,3,4,5,6,4,3,1,3,1,2,2
1067,27,22,Henry County,AL,1,4,2,3,7,5,3,5,6,1,3,4,2,5,5,4,5,3,3,4,3,3,6,2,4,3,7,3,4,3,3,4,4,5,4,5,3,3,4,3,3,2,7,3,5,6,4,4,3,3,4,6,6,1,3,1,1,7,5,6,1,6,6,1,7,5,2,1,5,1,5,4,6,5,4,4,5,6,5,3,2,1,1,1,1,1,1,4,6,1,6,6,2,1,5,3,6,2,6,6,4,4,3,2,2,3,3,1,1,1,2,3,1,4,4,4,5,4,5,7,2,3,3,1,2
1069,152,140,Houston County,AL,1,4,6,5,7,6,5,4,7,1,6,4,5,6,6,4,7,6,5,6,6,7,6,5,7,6,5,6,7,5,6,4,5,6,5,6,6,6,7,6,5,3,7,5,4,6,6,4,6,4,6,7,7,1,4,1,2,1,7,7,1,6,7,1,7,5,3,1,1,1,5,5,5,6,6,4,4,7,2,6,5,5,6,6,5,6,6,6,3,6,3,5,2,3,4,4,2,5,4,7,6,4,6,5,6,6,4,1,1,1,1,6,1,4,6,4,6,7,5,7,2,5,6,1,2
1071,69,83,Jackson County,AL,3,3,5,3,3,5,7,7,6,1,5,5,4,4,6,3,3,5,3,4,4,5,4,5,4,7,5,5,5,3,5,6,4,5,4,5,5,5,6,4,3,7,4,4,2,7,4,5,5,5,4,5,7,2,4,6,2,7,6,7,1,5,5,2,5,6,5,7,2,2,1,5,5,4,3,7,4,7,4,4,2,3,6,2,3,4,3,6,6,3,4,4,1,1,4,3,4,3,1,5,5,7,4,5,4,6,6,2,1,1,3,4,1,3,4,6,5,6,4,5,1,4,5,3,2
1073,1050,1164,Jefferson County,AL,1,1,7,6,6,7,6,7,5,1,7,5,7,7,6,5,7,7,7,7,7,7,6,7,7,6,7,7,7,6,7,6,6,7,7,7,7,7,7,6,7,7,7,6,1,4,7,7,7,6,7,7,7,1,2,6,5,1,7,7,1,6,6,1,6,6,4,7,3,3,3,2,3,2,3,3,4,6,7,5,6,3,5,5,4,6,4,7,3,7,3,5,4,5,5,5,1,7,5,7,7,7,7,7,7,7,7,4,2,1,6,7,2,7,7,2,6,6,5,1,1,5,3,2,2
1075,32,30,Lamar County,AL,4,1,3,2,5,4,7,7,4,1,2,6,4,3,6,2,3,3,4,5,6,3,3,2,6,3,2,3,4,2,2,5,3,6,5,7,2,3,5,4,3,1,2,3,2,1,3,6,4,4,2,2,6,1,4,1,1,1,5,6,1,5,6,2,6,6,3,5,6,2,3,3,3,1,1,3,6,1,3,3,3,1,6,1,1,2,3,7,3,3,5,5,1,1,6,3,5,1,5,3,3,3,2,3,2,3,2,2,1,1,2,4,1,6,3,3,3,4,4,3,1,2,2,2,2
1077,107,107,Lauderdale County,AL,1,1,7,5,6,6,7,7,6,1,7,6,6,6,6,5,7,7,6,6,7,7,6,6,7,7,6,7,7,6,6,6,6,6,4,7,7,6,7,6,6,6,6,7,2,7,6,6,7,5,7,3,6,2,4,6,3,7,6,7,1,5,5,3,5,6,6,7,5,2,1,5,2,4,4,5,2,2,3,5,2,4,5,1,5,5,5,6,3,5,4,5,2,3,4,5,4,6,5,6,7,6,7,6,6,6,6,7,2,1,4,6,1,7,6,5,6,7,5,7,1,5,5,3,2
1079,67,52,Lawrence County,AL,1,1,6,3,3,5,7,7,7,1,7,5,7,6,7,3,6,6,7,6,6,4,4,4,6,7,7,4,5,3,5,6,5,7,6,6,7,6,6,7,5,4,3,3,2,7,5,6,5,5,7,4,6,1,5,7,2,7,5,7,1,5,5,2,5,6,4,3,2,2,1,6,6,5,3,6,1,3,3,4,1,1,3,1,2,1,1,3,6,1,3,5,2,1,5,4,7,2,1,4,4,5,4,7,4,5,4,2,2,1,4,7,1,5,4,5,7,5,5,7,1,4,3,3,2
1081,174,219,Lee County,AL,1,3,6,5,7,7,6,7,4,1,6,6,5,7,4,5,7,6,6,6,7,7,7,6,7,7,7,7,7,5,6,4,7,7,7,6,5,6,7,6,7,1,7,5,3,6,7,5,6,5,7,6,7,1,2,6,2,1,7,7,1,6,6,2,6,6,7,5,7,4,3,2,2,3,3,3,2,6,5,4,5,2,2,2,4,2,3,6,2,7,3,7,4,5,5,1,4,7,7,7,7,7,7,5,7,6,4,2,2,1,1,7,2,6,6,2,6,7,4,2,2,6,3,1,2
1083,141,145,Limestone County,AL,1,1,6,5,5,6,7,7,7,1,7,6,7,6,7,5,6,6,6,6,7,7,5,6,6,7,7,6,6,3,7,7,5,7,6,6,6,6,7,6,5,3,6,6,2,7,6,5,7,6,7,5,6,1,3,5,2,6,7,7,1,5,5,3,5,6,6,6,5,3,1,5,4,6,6,5,4,6,5,3,3,2,3,1,2,2,3,3,5,3,2,4,3,3,3,5,6,5,1,6,7,3,6,7,6,6,4,3,3,1,5,7,2,6,6,5,6,7,5,7,1,5,3,3,2
1085,17,14,Lowndes County,AL,1,1,3,2,7,5,2,6,5,1,3,4,3,5,3,4,2,2,5,6,3,2,5,2,3,3,2,7,3,3,3,2,3,1,3,4,2,5,4,5,6,1,2,3,2,1,3,6,3,3,7,6,6,1,3,1,1,7,3,6,1,6,6,1,6,6,3,4,6,2,3,6,5,5,2,4,3,7,6,1,5,2,1,5,2,1,1,1,7,1,5,7,1,1,7,4,7,1,6,3,3,1,2,5,2,3,2,1,2,1,3,5,2,7,4,3,7,7,5,4,1,2,1,2,2
1087,14,9,Macon County,AL,3,3,5,3,6,7,3,6,3,1,4,4,3,5,2,3,4,4,3,4,6,6,5,4,6,4,7,6,6,3,5,2,4,7,5,4,3,5,5,5,5,1,7,7,2,6,5,5,6,4,5,6,7,1,3,6,3,1,4,6,1,6,6,1,6,6,7,3,6,1,3,3,2,5,4,3,1,6,6,1,3,5,6,5,1,1,6,7,7,6,5,7,4,2,7,3,6,5,7,5,5,5,4,3,5,4,3,1,1,1,1,5,1,6,5,3,5,7,5,7,1,2,2,2,2
1089,613,701,Madison County,AL,1,1,6,5,6,6,6,7,6,1,7,6,6,6,7,5,7,6,6,6,7,7,6,7,6,7,6,7,7,6,7,7,5,7,6,4,6,6,7,6,7,2,6,5,2,6,7,5,7,7,7,7,7,1,2,5,6,6,7,7,1,6,5,3,5,6,6,5,5,3,1,4,4,5,5,5,3,4,4,5,4,4,4,4,4,6,4,6,2,6,3,3,5,6,4,6,1,7,5,6,7,3,7,6,7,7,4,3,2,1,4,7,1,6,6,5,6,7,4,7,1,6,4,3,2
1091,32,38,Marengo County,AL,3,1,2,2,7,5,4,6,5,5,2,5,3,3,7,6,6,3,4,3,4,3,3,2,3,3,3,3,4,4,2,4,5,3,6,5,7,6,6,3,3,5,3,3,2,5,3,5,2,3,2,5,6,1,6,1,1,6,4,6,1,6,6,1,6,6,7,5,6,4,5,4,3,2,2,3,5,7,4,3,6,2,5,6,4,3,6,5,5,2,5,7,2,2,7,5,4,4,6,3,3,5,2,4,3,4,5,3,2,1,6,3,3,3,3,2,6,3,3,3,1,3,3,2,2
1093,39,44,Marion County,AL,4,3,3,2,2,4,6,7,3,1,3,7,4,3,4,2,3,3,5,4,5,3,4,3,6,3,2,4,4,2,3,6,4,6,3,5,3,3,5,3,3,3,3,3,2,4,3,6,7,4,3,3,6,1,4,6,2,7,6,7,1,5,6,2,5,6,2,2,6,1,3,4,5,1,1,4,6,5,4,6,3,2,1,1,4,5,2,7,6,3,4,5,1,1,6,3,4,3,5,4,3,4,3,3,3,4,3,1,1,1,2,4,1,5,4,3,2,5,5,2,1,2,2,2,2
1095,110,103,Marshall County,AL,2,1,3,4,6,5,6,7,3,1,5,5,5,5,6,3,4,5,5,5,5,5,5,5,6,6,4,5,6,3,7,7,3,4,5,6,4,5,7,5,4,3,7,5,2,5,5,5,6,5,5,6,7,1,2,6,1,7,7,7,1,6,5,2,5,6,6,5,2,2,3,7,7,3,4,4,5,3,2,6,1,2,4,3,3,6,2,7,3,4,4,5,5,2,4,4,3,3,1,5,5,5,5,5,5,6,4,3,2,1,4,6,1,4,5,4,4,6,4,2,1,4,5,2,2
1097,495,514,Mobile County,AL,1,1,6,5,6,7,7,4,5,6,6,6,6,7,7,5,7,6,7,6,7,7,6,7,6,7,7,7,7,7,7,6,6,6,7,6,7,6,7,7,7,7,7,5,1,5,7,5,6,5,7,7,5,1,3,6,5,1,7,7,1,6,7,1,7,6,4,3,5,1,5,2,1,2,5,3,5,6,4,4,6,4,4,3,3,4,3,7,5,6,3,6,4,3,6,5,1,6,7,7,7,6,7,7,7,7,6,1,1,7,2,7,1,6,6,3,6,4,4,7,1,4,2,2,2
1099,11,20,Monroe County,AL,3,1,3,2,7,5,2,5,4,5,5,5,4,3,7,4,5,2,2,4,3,3,5,2,3,7,6,3,3,4,2,5,4,2,3,6,3,6,3,3,3,4,3,3,2,6,3,5,2,3,3,5,6,1,6,1,1,6,4,6,1,6,7,1,7,6,1,1,5,1,5,3,3,2,1,3,5,2,4,2,2,2,3,1,1,3,1,4,1,2,6,7,1,2,7,4,2,3,6,4,5,5,2,4,3,4,4,1,1,1,1,2,1,4,3,4,6,7,4,7,1,3,3,2,2
1101,387,404,Montgomery County,AL,1,3,7,5,7,7,4,6,6,1,6,5,6,7,3,5,6,7,7,7,7,7,6,7,6,6,5,7,7,5,7,3,5,1,7,6,6,7,7,7,7,1,7,7,2,1,7,7,6,5,7,7,6,1,2,5,2,6,7,7,1,6,6,1,6,6,4,4,6,2,3,5,5,3,4,4,3,7,5,3,6,3,6,5,4,5,4,7,2,7,3,6,3,4,5,5,1,6,7,7,7,1,7,6,7,7,4,1,2,1,3,7,2,7,7,3,7,4,5,4,1,5,3,1,2
1103,281,276,Morgan County,AL,1,1,6,5,5,6,7,7,7,1,7,5,7,6,7,4,6,7,7,6,7,7,6,6,7,7,7,6,7,3,7,7,6,7,7,6,7,7,7,7,7,3,6,5,2,7,6,5,7,6,7,6,7,1,2,7,3,7,7,7,1,6,5,2,5,6,4,4,3,2,1,6,6,4,4,4,6,3,4,6,2,3,5,3,4,5,3,7,2,5,2,4,4,3,4,5,4,6,2,6,6,4,6,7,7,6,4,2,2,1,3,7,1,5,6,4,7,7,5,6,1,5,5,2,2
1105,10,7,Perry County,AL,4,1,3,2,5,4,6,7,3,1,2,5,3,2,4,2,2,2,2,5,2,2,2,2,3,2,2,3,3,3,2,2,4,3,2,4,3,2,3,2,2,4,6,2,2,4,2,6,2,4,2,5,6,1,6,1,1,1,3,5,1,6,6,1,6,6,7,5,7,3,3,3,5,2,1,4,3,2,5,1,3,1,7,2,1,1,1,6,7,5,6,7,2,1,7,2,6,2,6,3,2,5,1,5,2,2,4,2,2,1,3,4,2,4,3,3,6,7,3,3,1,1,1,2,2
1107,21,30,Pickens County,AL,4,1,4,2,6,5,6,7,5,1,2,5,4,4,6,2,3,2,3,5,4,3,3,2,6,3,3,3,3,3,2,3,3,5,4,6,4,2,4,2,3,1,7,3,2,1,3,6,2,4,2,3,6,1,3,1,3,7,4,6,1,6,6,2,6,6,3,5,6,2,3,4,6,4,2,4,2,3,4,2,2,2,5,1,2,2,3,7,2,2,5,7,1,2,6,3,6,3,5,3,3,5,2,3,2,4,2,1,2,1,3,3,1,5,3,4,3,4,5,5,1,3,2,2,2
1109,69,55,Pike County,AL,3,3,3,3,6,6,3,6,7,1,7,6,7,7,5,5,3,3,4,3,4,3,4,3,4,3,3,4,4,3,3,3,4,2,7,3,6,3,4,3,4,1,5,4,2,1,4,5,7,3,3,7,6,1,4,1,2,7,5,7,1,6,6,1,6,6,2,2,6,1,5,5,6,5,4,4,5,4,5,7,3,2,3,4,3,3,6,7,6,6,5,7,3,2,7,2,3,4,5,4,4,1,4,3,3,4,2,1,1,1,2,3,1,4,4,4,4,4,5,7,1,3,2,1,2
1111,31,28,Randolph County,AL,3,3,4,3,2,5,5,7,5,4,4,4,4,3,3,2,3,3,4,4,3,3,3,3,4,3,7,4,4,4,2,4,6,4,2,3,3,3,6,4,3,6,3,4,3,4,4,5,5,5,3,6,7,1,6,7,2,7,5,6,1,6,6,2,6,6,4,4,7,6,3,5,5,4,4,3,3,3,2,1,1,3,5,2,2,3,4,3,3,2,5,6,2,1,4,4,5,1,7,4,4,6,3,5,3,4,6,3,2,1,2,3,2,3,3,3,3,5,4,2,2,3,2,1,2
1113,63,62,Russell County,AL,1,4,7,6,7,7,5,6,6,1,6,6,7,7,3,5,7,7,7,6,7,7,6,6,6,7,7,6,7,6,7,4,7,7,7,7,6,7,7,6,6,1,7,6,4,7,7,5,7,5,7,7,7,1,4,6,1,7,5,7,1,6,6,1,6,6,7,4,6,1,3,2,3,4,3,3,3,6,4,7,6,2,5,4,2,2,5,7,4,7,5,6,3,1,5,1,7,5,5,7,7,5,7,6,6,5,5,1,1,1,2,7,1,7,7,3,7,7,4,4,2,3,3,1,2
1115,151,136,St. Clair County,AL,1,1,7,4,6,6,5,7,5,7,6,6,7,5,5,4,4,5,6,6,6,6,5,5,7,5,6,6,6,3,5,6,4,5,6,6,6,4,7,7,5,5,7,5,2,5,5,6,7,5,6,7,7,1,4,4,3,7,7,7,1,6,6,2,6,6,4,2,2,2,3,4,4,3,3,3,4,6,4,3,1,2,4,2,2,1,3,3,4,1,4,4,1,2,2,5,7,2,2,5,6,6,6,5,4,6,5,2,2,1,4,7,1,7,5,2,5,7,4,6,1,6,5,2,1
1117,578,616,Shelby County,AL,1,1,6,5,5,7,6,7,5,4,6,5,7,6,5,5,6,6,6,7,7,7,5,7,7,6,7,7,6,4,7,5,6,6,7,7,7,6,7,5,7,7,6,7,1,5,6,6,7,5,7,7,7,1,3,4,5,1,7,7,1,6,6,2,6,6,6,2,2,2,3,2,2,3,4,3,3,4,4,5,1,2,4,4,4,5,4,7,3,1,2,1,4,7,1,7,7,6,1,6,6,7,7,6,6,7,7,2,2,1,3,7,2,7,7,2,6,7,4,6,1,7,4,2,2
1119,11,10,Sumter County,AL,4,1,4,2,2,5,2,6,6,5,2,5,5,2,5,5,4,2,5,4,3,2,2,2,3,3,3,3,3,4,2,2,4,3,4,5,5,4,3,2,3,4,2,2,2,1,3,6,2,3,2,4,6,1,6,1,1,6,3,6,1,6,6,1,6,6,3,5,6,3,3,4,1,2,1,3,3,7,4,4,7,4,4,4,2,1,4,7,3,5,6,7,1,1,7,1,4,6,6,6,2,5,2,4,2,3,4,2,2,1,4,3,3,3,3,3,6,3,4,3,1,1,4,2,2
1121,82,68,Talladega County,AL,2,1,7,4,5,6,7,7,5,6,7,5,7,6,5,4,5,6,7,5,6,6,5,5,7,6,6,6,6,4,6,5,5,4,6,6,5,6,7,6,6,6,7,6,2,6,6,5,6,6,6,7,7,1,5,5,5,7,7,7,1,6,6,2,6,6,7,5,5,4,1,4,2,4,4,4,6,4,7,5,6,2,4,4,3,2,3,6,6,4,4,6,2,2,6,4,4,4,5,6,6,6,6,6,6,6,6,4,2,1,5,6,2,7,6,5,5,7,4,2,1,4,2,2,2
1123,52,54,Tallapoosa County,AL,3,3,5,3,6,5,5,7,2,1,4,4,4,5,5,3,3,4,3,4,6,4,5,3,5,4,6,4,5,4,4,3,3,6,5,6,4,4,6,5,4,2,7,5,2,4,5,5,4,4,4,6,6,1,3,7,2,6,6,7,1,6,6,2,6,6,6,5,7,6,5,2,1,3,3,3,2,3,3,4,2,2,4,5,2,4,5,7,4,4,6,5,1,2,5,4,4,3,6,5,4,5,4,4,4,5,3,3,3,1,2,4,3,3,4,2,3,5,4,6,1,4,4,2,2
1125,204,204,Tuscaloosa County,AL,1,1,6,5,7,6,7,7,3,1,6,7,6,7,6,5,7,7,7,6,7,7,7,6,7,6,6,7,7,5,7,5,5,7,6,7,6,6,7,6,7,5,7,5,1,1,7,6,6,5,7,6,7,1,4,6,3,6,7,7,1,6,6,2,6,6,6,6,6,2,3,2,2,3,3,4,3,6,6,5,5,4,3,4,5,5,4,7,4,7,3,6,4,4,5,3,1,7,6,7,7,7,7,6,7,7,5,2,2,1,3,7,1,7,7,4,5,7,4,5,1,6,5,2,2
1127,82,100,Walker County,AL,1,1,5,4,4,5,5,7,4,1,5,5,6,5,5,3,5,5,5,6,5,5,4,4,6,5,6,5,5,3,5,6,6,6,6,6,7,4,6,5,5,7,5,5,1,1,5,6,5,4,5,5,7,1,3,7,5,7,7,7,1,6,6,2,6,6,4,2,2,2,3,3,4,2,2,3,2,5,4,3,2,4,2,2,2,4,2,6,5,2,4,5,1,1,5,4,5,2,1,5,5,7,5,6,5,6,7,3,2,1,5,4,1,6,5,2,4,6,5,3,1,3,3,2,2
1129,20,17,Washington County,AL,4,1,2,2,1,5,7,5,5,5,2,6,3,5,6,6,4,2,2,2,2,2,2,2,3,7,7,2,2,6,3,6,5,3,1,4,4,3,3,6,3,7,2,2,2,6,3,5,1,3,2,4,5,1,7,4,3,6,3,6,1,6,7,1,7,6,1,2,5,1,5,2,3,2,1,3,6,6,3,1,6,1,1,1,1,1,5,3,6,1,6,6,1,2,6,4,6,1,6,3,7,6,1,6,4,3,6,1,1,1,1,3,1,5,2,3,4,6,4,4,1,3,1,2,2
1131,9,13,Wilcox County,AL,4,1,2,2,7,5,2,6,5,5,4,5,2,2,6,5,5,2,2,4,5,2,2,2,2,2,1,2,2,4,2,4,2,2,2,4,2,6,3,2,3,3,2,3,2,6,2,5,2,3,2,4,6,1,5,1,2,1,3,6,1,6,6,1,6,6,7,3,6,2,5,3,3,1,1,3,1,1,6,2,5,2,1,1,1,1,1,1,6,1,7,7,2,1,7,3,5,1,6,2,2,4,1,2,2,3,3,1,1,1,2,2,2,2,2,3,6,7,4,5,1,1,3,2,2
1133,28,26,Winston County,AL,3,1,5,3,2,5,4,7,3,1,4,5,4,3,4,3,5,3,3,5,4,4,3,3,4,6,5,4,5,2,3,6,3,5,3,3,3,3,6,6,3,5,3,4,2,6,4,6,7,5,4,3,6,1,5,5,1,6,6,7,1,5,6,2,6,6,2,1,1,1,3,5,5,1,1,3,7,2,2,5,2,1,1,1,1,2,3,5,3,2,6,6,2,1,5,2,4,1,5,4,4,5,3,4,3,4,5,1,1,1,2,4,1,4,3,1,3,5,5,1,1,2,5,2,2
2016,1,6,Aleutians West Ce,AK,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,2,1,1,1,1,6,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,7,1,1,1,7,1,1,1,1,1,7,1,1,7,7,3,7,4,7,1,1,7,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,4,1,1,1,1,7,1,1,6,1,7,3
2020,636,719,Anchorage Borough,AK,1,1,7,5,6,6,3,1,2,1,6,2,6,6,2,5,7,6,7,6,6,6,6,7,6,6,5,7,6,2,7,3,7,2,7,3,7,6,5,6,6,4,7,6,1,1,7,2,6,2,7,3,1,1,4,5,1,1,1,1,1,1,5,1,5,1,1,1,1,1,3,1,2,3,4,1,1,5,4,4,7,5,6,6,6,7,6,7,2,7,1,1,6,7,6,1,1,7,7,7,7,1,7,7,7,7,4,1,1,7,1,5,1,2,3,1,4,1,7,2,1,7,6,3,5
2050,0,6,Bethel Census Are,AK,3,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,6,1,1,1,1,1,3,2,1,3,1,1,1,1,1,1,1,1,1,1,2,4,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,3,1,1,1,7,1,7,3,1,1,6,1,1,7,6,6,7,2,7,1,1,5,1,2,2,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,4,2,5,4
2068,1,2,Denali Borough,AK,4,1,1,1,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,4,1,1,4,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,7,1,1,7,5,7,4,7,2,7,1,1,7,7,1,5,7,7,1,2,6,7,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,5,1,1,6,7,1,3
2070,0,1,Dillingham Census,AK,4,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,6,1,1,1,1,1,2,1,1,2,2,7,1,1,1,1,1,1,1,1,6,1,1,1,1,1,7,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,7,1,1,1,7,2,7,1,5,3,7,1,6,7,7,7,7,3,7,1,1,4,7,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,6,2,5,4
2090,105,99,Fairbanks N. Star,AK,1,1,6,5,5,7,3,2,3,1,5,1,6,6,4,4,6,6,5,5,6,6,5,5,4,6,5,6,5,2,5,3,6,5,7,7,7,5,3,5,5,1,6,7,1,1,6,2,5,1,6,1,1,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,2,1,1,3,5,2,2,6,6,5,7,7,6,7,1,2,7,4,1,6,7,7,1,1,7,7,6,6,1,6,7,6,6,4,1,1,1,1,5,1,6,3,1,4,5,5,2,1,7,6,1,6
2100,0,1,Haines Borough,AK,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,7,1,1,1,1,1,1,1,1,3,6,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,1,1,7,7,7,5,1,6,7,5,7,1,1,6,7,3,3,7,7,1,1,5,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,7,7,2,4
2110,23,23,Juneau Borough,AK,2,1,4,3,3,5,1,1,4,1,3,1,5,3,1,2,7,3,3,3,3,3,3,1,3,4,3,5,3,1,3,1,5,1,7,2,7,4,4,3,4,5,4,4,1,1,4,1,2,1,3,1,1,1,2,5,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,4,1,1,1,1,1,1,7,1,7,2,6,3,6,5,5,1,1,7,1,1,6,7,4,1,1,7,1,4,4,1,4,5,5,4,2,1,1,1,1,2,1,1,2,1,2,1,7,1,1,7,5,2,3
2122,64,68,Kenai Peninsula B,AK,3,1,1,2,2,2,5,2,2,1,2,1,2,3,3,3,2,3,2,2,6,1,2,1,1,2,3,3,3,1,1,3,2,2,4,1,2,3,2,2,2,5,2,2,1,1,2,3,2,1,4,1,1,1,7,5,1,1,1,1,1,1,7,1,6,1,1,1,1,1,3,1,1,1,1,1,2,1,2,5,4,6,5,6,7,5,7,1,5,5,7,2,5,7,7,1,1,5,7,3,2,1,3,2,2,5,2,1,1,1,1,2,1,6,1,1,2,2,7,1,1,7,7,4,4
2130,11,11,Ketchikan Gateway,AK,3,1,4,3,4,4,1,2,1,1,3,1,4,4,1,3,4,4,3,3,4,3,3,1,2,4,3,5,3,1,4,1,5,1,3,2,5,3,5,3,4,2,4,2,1,1,5,1,3,1,4,1,1,1,5,7,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,4,1,1,1,7,2,6,1,4,1,4,1,1,7,5,1,6,7,6,1,1,7,1,4,4,1,5,5,4,3,3,1,1,1,1,2,1,4,5,1,2,3,7,1,1,7,1,4,3
2150,19,13,Kodiak Island Bor,AK,3,1,1,3,3,2,1,4,1,1,2,1,3,5,1,5,4,3,3,2,2,2,2,1,2,4,3,5,2,1,3,1,4,1,5,2,4,3,2,3,4,2,4,2,1,1,5,1,3,1,7,1,1,1,5,7,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,3,1,1,1,1,4,1,1,2,6,6,6,7,7,3,7,1,1,7,5,1,7,6,4,1,1,6,7,4,4,1,4,5,4,3,2,1,1,1,1,2,1,7,2,1,2,2,7,1,1,7,7,5,4
2170,137,159,Matanuska-Susitna,AK,1,1,2,3,3,3,1,1,1,1,3,1,2,3,1,2,3,3,2,3,3,3,3,1,3,3,3,4,3,1,2,1,3,1,5,1,2,3,2,3,3,1,4,4,2,7,4,1,3,1,3,1,1,1,7,1,1,1,1,1,1,1,3,1,2,1,1,1,1,1,3,1,1,1,1,1,1,7,3,3,5,5,5,6,7,4,7,1,7,2,7,3,4,7,7,1,5,2,7,4,4,1,4,3,4,6,2,1,1,1,1,2,1,1,1,1,2,3,7,1,1,7,5,1,4
2180,2,2,Nome Census Area,AK,3,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,3,3,1,3,7,6,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,7,1,1,2,7,6,7,4,1,2,7,1,2,7,7,6,7,3,7,1,1,5,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,5,3,6,4
2185,3,4,North Slope Borou,AK,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,6,3,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,7,1,6,1,1,1,1,1,5,1,1,1,1,1,6,1,1,1,7,1,6,1,5,1,7,1,1,7,6,2,7,3,7,1,1,7,7,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,7,1,4,4
2188,1,2,Northwest Arctic,AK,3,1,1,1,1,6,1,1,1,1,1,1,2,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,3,1,1,3,6,4,1,1,1,1,1,1,1,1,2,6,1,1,1,1,1,1,6,1,5,2,1,1,1,1,5,1,1,1,1,1,4,1,1,1,5,1,1,2,2,1,1,1,1,7,7,6,7,2,7,1,1,6,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,6,3,3,3
2201,1,1,Prince of Wales -,AK,4,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,2,6,1,2,7,6,1,1,1,1,1,1,1,1,4,7,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,1,1,1,1,1,1,1,4,2,6,4,7,2,1,1,7,1,1,6,7,4,4,6,7,1,1,3,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,7,5,4,2
2220,5,4,Sitka Borough,AK,3,1,1,3,3,3,1,2,1,1,3,1,3,4,1,3,4,3,3,2,4,2,3,1,3,3,3,5,3,2,4,1,4,1,6,2,4,3,2,3,3,1,4,2,7,1,5,1,2,1,5,1,1,1,2,7,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,2,1,1,1,1,2,1,1,1,5,1,1,1,1,1,1,1,2,7,3,1,6,7,6,1,1,5,1,4,4,1,4,4,3,2,2,1,1,1,1,2,1,6,5,1,2,1,7,1,1,7,1,2,3
2232,1,3,Skagway-Hoonah-An,AK,4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,5,4,2,1,1,1,1,1,1,1,3,4,1,1,1,1,1,1,7,1,7,1,1,1,1,1,1,1,1,1,1,1,3,1,1,7,7,6,1,2,7,1,7,1,1,7,7,4,6,6,7,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,7,1,1,7,7,1,1
2240,7,6,Southeast Fairban,AK,4,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,4,1,1,6,4,5,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,7,1,6,1,1,1,1,1,3,1,1,1,1,1,1,7,1,7,3,6,7,2,7,2,7,1,4,6,7,6,7,7,7,1,1,3,7,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,7,1,1,5,7,4,4
2261,4,6,Valdez-Cordova Ce,AK,4,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,2,1,1,2,7,5,1,1,1,1,1,1,1,1,5,4,1,1,1,1,1,1,7,1,6,1,1,1,1,1,5,1,1,1,1,1,6,7,2,7,6,7,7,6,7,4,7,1,3,6,7,2,6,7,7,1,1,6,7,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,7,7,4,4
2280,6,3,Wrangell-Petersbu,AK,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,1,1,2,5,4,1,1,1,1,1,1,1,1,3,7,1,1,1,1,1,1,7,1,7,1,1,1,1,1,5,2,1,1,1,1,1,1,5,1,6,1,1,1,2,1,7,1,2,6,6,1,5,6,7,1,1,4,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,7,3,4,1
2290,0,2,Yukon-Koyukuk Cen,AK,4,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,1,2,1,1,1,7,1,1,1,1,1,6,5,1,7,7,5,1,1,1,1,2,1,1,1,4,4,1,1,1,1,1,1,5,1,4,1,1,1,1,1,5,1,1,1,1,1,7,2,1,1,5,7,7,1,2,3,6,1,6,6,7,7,7,3,7,1,1,2,7,2,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,7,1,1,2,1,2,4
4001,5,5,Apache County,AZ,3,1,1,1,1,5,1,2,2,1,1,2,2,2,1,1,2,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,2,3,1,1,2,1,1,1,2,4,1,3,3,6,1,3,1,1,2,3,1,1,6,1,1,1,1,1,1,7,1,4,1,1,7,5,5,6,3,2,1,1,2,1,1,3,2,1,5,1,2,2,2,1,1,1,7,4,7,7,7,1,7,1,3,1,1,2,2,5,1,3,1,6,6,4,6,1,4,1,5,4,1,2,1,2,5,1,1,1,1,5,6
4003,128,140,Cochise County,AZ,2,1,2,3,4,4,4,3,2,1,3,1,1,4,2,4,4,4,2,2,3,4,3,1,3,4,4,5,4,2,3,3,2,2,2,2,2,4,2,3,6,3,5,3,4,4,3,2,3,1,5,5,1,1,3,1,2,1,1,1,1,7,5,4,5,1,3,7,5,6,3,1,1,5,5,7,2,4,3,2,3,5,4,2,6,4,6,4,7,6,5,6,7,4,5,1,1,6,4,5,5,4,5,2,5,6,4,6,7,1,5,2,6,6,1,4,3,4,4,5,1,5,4,5,7
4005,77,75,Coconino County,AZ,1,1,5,5,6,6,4,4,2,1,7,2,4,6,2,5,6,6,3,4,6,6,5,4,5,6,5,6,5,2,5,3,4,3,5,2,4,5,3,5,6,4,6,5,6,1,5,4,5,2,7,1,1,1,3,4,1,1,1,1,1,7,3,4,3,1,3,3,4,5,3,1,1,1,1,1,4,2,1,6,6,3,5,6,7,7,6,4,7,7,7,6,7,6,6,1,1,6,7,6,6,5,7,5,6,6,5,5,4,1,3,4,5,7,2,2,4,6,5,1,1,7,7,5,7
4007,53,40,Gila County,AZ,2,1,2,2,2,6,3,3,7,1,2,1,7,3,5,3,4,3,5,2,2,2,2,1,2,3,2,4,5,1,2,3,2,1,7,4,4,3,2,2,3,2,3,4,7,1,2,3,2,2,5,5,2,1,3,1,2,1,1,1,1,7,4,4,4,1,6,7,7,7,3,1,1,2,2,1,2,7,2,4,3,4,3,4,6,5,6,3,6,2,7,6,7,4,7,1,2,2,3,3,3,3,3,6,3,5,2,7,7,1,6,2,6,6,1,1,2,3,6,1,1,5,6,5,6
4009,79,90,Graham County,AZ,3,1,6,3,3,3,1,3,3,1,4,1,2,4,1,3,4,4,2,2,2,4,2,1,2,4,3,4,2,2,2,1,2,2,1,1,2,4,2,3,3,2,5,4,6,4,3,1,4,1,4,7,2,1,3,4,1,1,1,1,1,6,4,5,4,1,2,7,6,7,3,2,1,5,4,1,1,4,1,2,3,3,5,4,5,3,3,1,6,5,4,7,7,3,7,1,3,4,6,5,5,4,4,2,5,5,3,7,7,1,3,2,7,4,1,3,3,5,2,3,1,4,3,5,5
4011,57,54,Greenlee County,AZ,3,1,1,1,1,2,1,3,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,1,4,4,2,1,1,1,2,7,2,1,6,1,1,1,1,1,3,3,1,1,4,1,2,1,1,1,1,6,4,4,3,1,2,7,7,7,3,2,1,3,4,6,5,1,3,6,2,4,1,1,1,1,1,1,2,7,6,2,7,5,5,1,1,2,6,2,2,1,1,1,1,2,1,7,7,1,2,1,7,5,1,2,1,1,2,3,1,3,1,5,6
4012,8,7,La Paz County,AZ,3,1,3,2,2,3,1,5,4,1,2,3,2,3,7,3,3,3,3,1,5,2,2,1,5,3,2,3,2,2,3,1,1,1,2,3,2,4,3,2,2,4,4,1,7,7,2,3,2,2,4,4,2,1,5,4,1,1,1,1,1,7,6,4,6,1,3,5,6,6,3,1,1,5,2,1,6,6,3,5,1,6,7,3,5,2,7,1,7,3,7,6,7,2,6,1,2,2,5,3,3,1,3,1,4,3,2,6,6,1,3,1,7,5,4,2,2,2,7,5,1,4,6,5,6
4013,8404,8927,Maricopa County,AZ,1,1,3,7,7,7,6,6,4,1,6,3,7,7,6,7,7,7,7,7,7,7,6,7,6,7,7,7,7,4,7,4,5,7,7,6,7,7,7,7,7,4,6,6,3,5,7,3,7,2,7,7,2,1,1,5,2,6,3,5,1,7,6,4,6,1,3,6,6,7,3,2,4,6,6,7,2,5,5,3,7,3,3,4,5,6,5,4,3,6,3,3,7,5,3,1,1,7,6,7,7,1,7,7,7,7,5,7,7,1,3,7,7,7,7,3,6,2,7,6,1,7,4,5,7
4015,151,169,Mohave County,AZ,2,1,5,4,4,4,3,4,6,1,4,3,3,5,6,4,5,5,3,2,6,5,4,3,7,5,4,6,4,2,5,3,4,4,3,3,6,5,3,7,6,4,5,2,6,7,4,4,6,2,5,3,1,2,2,4,1,1,1,1,1,7,5,5,4,1,7,7,6,7,3,1,1,4,1,6,2,5,2,3,5,4,5,3,4,5,5,3,7,5,6,4,6,4,6,1,3,6,3,5,5,6,5,4,6,7,6,7,6,1,6,3,7,5,3,1,4,4,7,2,1,5,5,5,6
4017,33,45,Navajo County,AZ,2,3,3,2,2,7,1,3,2,1,4,2,2,3,2,3,2,2,1,2,2,2,2,1,2,3,2,3,2,1,2,1,3,3,4,2,2,2,1,2,3,4,3,7,6,3,2,3,2,1,4,2,1,1,3,1,1,1,1,1,1,7,1,4,1,1,3,3,3,3,3,1,1,1,2,1,2,3,3,3,6,2,3,2,5,3,4,3,7,4,7,7,7,2,7,1,1,2,7,3,3,5,3,3,3,6,5,3,4,1,2,1,5,7,1,2,2,2,5,1,1,4,2,5,7
4019,1529,1597,Pima County,AZ,1,1,7,5,6,7,4,6,3,1,6,2,4,7,2,5,7,7,5,5,6,7,6,6,6,6,5,7,6,2,6,3,5,3,6,2,5,6,5,5,7,4,6,5,6,1,6,2,6,3,7,6,2,1,1,1,1,1,1,5,1,5,6,4,6,1,3,7,5,7,3,1,1,3,2,1,2,3,4,2,7,2,4,3,5,6,4,5,4,7,3,5,7,6,4,1,1,7,5,7,7,5,7,5,7,7,6,7,7,1,5,6,6,7,1,2,5,1,7,3,1,6,3,5,7
4021,573,623,Pinal County,AZ,1,1,4,4,4,5,4,4,7,1,2,1,6,2,7,6,4,3,5,4,6,5,4,5,4,2,3,6,4,1,4,3,3,2,7,5,4,4,4,3,7,2,1,3,6,5,4,3,5,1,3,7,2,1,2,4,2,6,1,1,1,6,6,4,5,1,3,7,6,7,3,1,4,6,5,7,5,6,3,2,2,3,3,2,4,2,3,4,7,3,7,6,7,3,6,1,5,5,7,3,3,3,5,5,6,7,2,7,7,1,3,3,6,5,7,3,2,5,6,6,1,5,1,5,7
4023,38,35,Santa Cruz County,AZ,2,1,4,5,5,5,1,3,1,1,5,1,2,6,1,4,4,6,3,2,4,6,5,3,4,6,5,6,4,2,4,1,3,1,1,2,3,4,4,5,5,2,6,4,6,4,5,1,5,1,6,7,2,1,3,1,2,1,1,1,1,5,6,4,6,1,6,7,6,6,3,1,1,4,3,1,6,4,2,2,6,2,2,2,5,2,6,5,3,6,3,7,7,1,6,1,2,4,4,6,6,3,6,3,6,5,4,7,7,1,5,4,6,6,1,1,4,5,7,1,1,5,2,5,7
4025,154,164,Yavapai County,AZ,1,1,3,4,5,5,3,3,1,1,4,2,2,5,2,4,5,5,5,3,5,5,4,3,4,5,4,5,5,2,2,3,3,1,4,2,3,4,3,4,6,1,5,3,4,1,4,3,4,1,5,4,2,1,3,1,2,1,1,1,1,7,5,4,5,1,3,6,6,7,3,1,1,5,3,1,2,4,3,4,3,4,3,5,7,7,5,1,7,5,5,3,6,6,3,1,1,5,5,5,5,1,5,2,6,7,3,7,7,1,5,3,7,4,1,2,3,4,7,2,1,7,6,5,6
4027,193,199,Yuma County,AZ,1,1,5,5,5,5,5,5,4,1,5,2,4,6,7,5,6,7,6,3,5,7,5,5,5,6,6,7,7,2,6,4,4,1,6,5,4,6,5,5,6,6,7,3,4,7,6,3,4,3,7,4,2,1,2,5,2,1,1,1,1,7,6,4,6,1,4,4,5,5,3,1,4,5,5,6,2,7,2,1,6,3,3,2,3,3,6,6,3,5,7,6,7,1,7,1,1,6,5,7,7,1,6,4,7,7,4,6,6,1,2,4,7,7,3,4,5,1,7,6,1,5,1,5,6
5001,12,24,Arkansas County,AR,3,7,6,1,3,2,5,3,4,7,7,4,3,1,3,1,6,2,3,2,2,3,2,4,2,5,3,4,2,3,7,6,3,3,4,6,3,3,5,2,2,2,2,2,7,5,2,6,2,3,1,3,5,2,2,1,2,1,3,6,1,5,6,2,6,4,4,4,4,3,5,5,5,7,7,7,6,1,3,4,1,6,7,6,5,5,5,7,5,6,4,6,1,2,5,3,1,3,6,1,1,4,4,3,4,4,3,4,4,1,5,3,3,2,4,7,2,5,5,6,2,2,6,3,4
5003,58,73,Ashley County,AR,3,7,3,7,7,3,4,2,4,7,7,3,5,4,6,2,7,3,6,7,6,3,4,2,2,7,3,4,5,5,2,7,4,1,7,7,4,7,5,2,3,1,5,2,6,7,3,6,3,3,1,2,5,2,3,1,5,1,2,6,1,5,6,2,6,4,4,3,5,2,5,5,2,7,6,6,3,5,1,6,1,2,3,6,1,3,6,6,1,4,4,6,3,2,6,2,2,2,7,5,2,1,2,4,4,4,1,3,3,1,4,2,2,6,4,6,7,6,5,7,2,2,4,3,5
5005,36,38,Baxter County,AR,3,6,5,1,3,3,2,2,1,6,3,7,2,1,3,1,3,2,3,2,4,4,6,2,3,1,2,4,3,7,5,5,3,1,3,2,2,4,4,7,3,3,3,4,6,1,2,4,6,3,1,2,5,2,4,6,2,1,4,7,1,1,4,3,4,4,2,6,1,3,3,6,4,2,3,1,2,2,2,7,1,5,6,2,5,6,7,1,5,2,5,3,2,4,2,1,1,4,1,2,1,1,4,3,4,5,1,5,1,1,6,2,2,2,5,1,2,5,3,1,2,4,7,4,5
5007,820,838,Benton County,AR,1,6,6,1,6,6,5,2,4,5,4,4,4,7,3,2,6,7,7,6,7,7,5,6,7,1,6,7,6,4,6,5,5,6,6,5,4,6,7,4,7,5,6,5,7,1,5,6,6,5,1,5,5,5,1,6,2,1,4,7,1,1,4,3,4,3,7,6,2,2,3,2,7,3,5,3,3,2,2,3,2,1,4,5,4,4,3,5,4,5,3,3,6,4,1,3,2,5,2,2,2,6,6,6,6,7,6,4,2,1,4,5,2,4,6,3,4,7,1,2,5,6,3,4,5
5009,77,100,Boone County,AR,3,6,4,1,4,4,4,2,1,5,5,6,2,1,2,2,6,4,2,3,5,6,6,2,7,1,4,6,5,4,5,5,4,1,7,5,3,5,6,6,4,6,4,6,7,4,3,4,7,4,1,2,4,3,3,5,3,1,2,7,1,1,4,3,4,4,1,7,1,5,3,3,7,3,3,1,5,5,2,6,1,2,6,7,7,6,5,7,4,5,3,5,2,3,3,2,2,4,2,2,1,1,5,4,4,5,1,6,1,1,6,3,3,1,6,1,3,7,3,2,2,4,6,4,5
5011,9,11,Bradley County,AR,3,7,3,6,7,4,3,2,2,7,6,3,5,3,6,1,4,3,2,3,2,2,2,2,2,7,2,3,2,4,2,7,2,2,3,7,5,5,4,1,3,4,6,2,6,6,2,5,2,2,1,2,5,2,3,4,2,1,2,6,1,5,6,2,6,4,4,1,5,1,5,3,3,3,3,1,3,1,3,2,1,3,7,7,2,3,1,7,5,5,6,7,5,1,7,1,3,2,7,1,1,1,2,4,3,2,1,2,2,1,4,2,1,3,3,1,3,3,4,4,2,1,5,3,5
5013,6,6,Calhoun County,AR,4,7,2,7,7,4,6,2,3,7,6,3,6,6,6,1,2,6,2,4,2,2,3,2,2,7,5,4,4,4,4,7,3,2,4,6,4,3,3,1,2,5,7,2,7,5,4,5,2,2,2,2,5,2,5,1,3,1,2,6,1,4,6,2,6,4,4,1,3,1,5,7,2,2,1,1,7,3,2,1,3,4,1,1,2,1,1,1,5,1,7,5,1,2,4,1,6,1,7,1,1,1,2,6,3,1,1,1,1,1,3,4,1,5,3,2,4,3,4,2,1,1,2,3,5
5015,40,41,Carroll County,AR,3,6,5,1,3,3,3,2,2,5,3,5,2,1,4,1,2,2,4,3,3,4,4,2,7,2,3,4,3,3,3,5,3,4,3,2,2,3,4,2,3,6,2,4,7,7,2,3,3,3,1,3,5,4,5,6,3,1,4,6,1,1,4,3,4,3,3,4,1,2,3,4,7,4,4,3,2,2,3,7,1,7,3,7,7,5,5,1,3,5,5,5,6,2,4,1,2,2,4,2,2,1,4,3,3,4,1,3,2,1,6,3,3,1,4,1,2,5,2,1,3,4,7,4,5
5017,6,3,Chicot County,AR,3,7,4,1,4,3,3,3,3,7,2,3,3,2,4,1,5,2,3,3,3,3,3,4,2,7,2,4,3,4,4,6,2,1,5,6,3,3,3,2,2,1,2,1,7,4,3,6,2,2,2,2,5,2,2,1,2,1,2,5,1,5,6,2,6,4,3,4,5,4,5,6,2,7,7,6,4,7,2,2,6,6,1,6,2,5,4,6,7,6,5,7,4,1,7,2,3,6,6,2,2,1,4,2,4,3,2,5,6,1,5,3,5,3,5,7,4,3,5,7,3,1,2,3,5
5019,13,16,Clark County,AR,3,7,3,4,7,4,4,2,7,7,2,4,7,1,5,1,3,2,7,3,4,4,3,3,3,1,2,4,3,4,4,6,4,1,7,7,3,5,5,2,3,1,2,3,5,1,2,5,4,2,1,2,5,2,2,7,2,1,3,6,1,5,6,3,6,3,3,1,3,1,5,5,3,3,1,4,6,4,4,3,3,1,3,6,4,4,3,6,5,7,4,6,4,3,3,1,2,6,1,1,1,1,4,7,4,4,1,1,1,1,2,2,1,1,5,4,2,4,2,1,2,3,6,4,4
5021,18,19,Clay County,AR,3,4,2,1,3,2,3,4,3,4,3,7,3,2,2,1,2,3,3,3,3,4,2,4,2,3,3,4,5,4,3,5,3,1,4,5,2,5,7,2,2,4,2,3,7,1,2,5,3,4,1,1,5,5,1,1,1,1,2,6,1,3,5,4,5,4,6,5,5,2,5,5,4,7,7,7,6,2,3,6,1,1,4,6,2,2,3,6,6,4,4,6,1,1,4,1,4,3,6,2,2,4,3,3,4,3,2,4,4,1,6,5,3,3,5,7,2,4,4,7,3,1,2,4,5
5023,17,31,Cleburne County,AR,3,6,4,1,4,3,6,2,2,7,4,5,2,2,4,2,4,3,2,3,5,5,3,2,3,1,3,4,4,3,4,4,4,3,5,3,5,4,5,2,3,4,3,5,7,4,3,5,5,3,1,3,5,2,1,7,1,1,3,7,1,4,5,3,5,4,3,1,1,2,5,2,6,2,2,1,4,1,4,4,1,2,5,3,6,4,4,3,4,2,7,4,2,3,3,1,4,3,5,1,1,5,4,4,4,4,5,2,2,1,4,2,1,1,4,2,3,6,4,3,2,5,7,4,3
5025,13,7,Cleveland County,AR,1,7,2,1,2,3,5,2,4,7,1,3,5,1,5,1,5,1,3,3,2,2,1,2,2,6,3,3,2,4,3,7,3,3,5,7,3,3,3,1,2,4,1,2,6,6,2,5,1,2,1,2,5,1,2,1,3,1,2,5,1,5,6,2,6,4,2,1,3,1,5,2,5,1,1,1,1,2,3,1,1,5,1,6,1,1,1,4,2,1,5,5,1,3,4,2,7,1,7,1,1,5,1,6,2,2,4,1,1,1,5,2,1,2,3,1,1,4,3,1,1,2,1,3,5
5027,41,46,Columbia County,AR,3,7,4,6,6,4,6,2,3,7,6,4,5,2,7,2,4,7,5,3,5,5,3,3,6,1,6,6,7,6,4,7,5,2,4,6,4,6,6,4,6,1,6,4,6,1,4,5,5,5,1,2,5,2,2,5,4,1,3,6,1,5,6,2,6,3,3,1,3,1,5,5,4,2,1,3,6,3,6,7,5,2,5,7,2,4,3,6,5,6,5,7,2,3,6,2,2,5,7,2,2,3,4,6,5,4,2,1,1,1,2,6,1,4,5,2,4,6,5,2,2,2,6,4,5
5029,23,20,Conway County,AR,3,7,4,1,3,4,3,2,3,7,3,4,6,1,3,1,6,2,4,3,3,4,3,3,6,1,2,4,4,3,4,2,3,1,3,7,6,7,4,4,3,1,2,4,7,4,2,5,4,3,1,3,5,1,3,7,2,1,3,6,1,3,5,3,5,4,6,2,2,4,5,6,7,6,5,5,4,4,5,6,1,7,5,6,4,3,5,7,5,3,4,5,2,3,5,1,5,4,2,1,1,1,3,5,3,4,1,3,2,1,4,2,2,3,5,5,2,5,4,1,1,2,6,4,3
5031,112,154,Craighead County,AR,1,5,7,1,4,4,4,4,3,6,3,6,3,7,2,2,5,3,4,4,7,6,4,5,4,3,5,6,5,4,5,5,4,2,5,6,3,5,7,5,4,5,4,3,7,6,4,5,5,4,2,2,5,5,2,1,4,1,5,7,1,4,5,3,5,4,4,3,4,2,5,4,4,7,7,6,5,3,4,4,1,3,6,6,4,7,5,7,2,7,2,5,3,3,4,2,1,6,5,2,1,4,5,5,6,6,3,3,4,1,5,6,3,4,6,7,2,6,4,7,3,4,5,4,3
5033,112,151,Crawford County,AR,1,7,6,1,4,4,3,2,4,6,4,4,3,1,3,2,4,3,4,3,5,5,5,4,6,2,3,5,4,3,4,3,4,2,7,3,4,5,6,7,5,1,3,5,7,5,7,3,5,3,2,3,5,5,2,7,2,1,4,7,1,1,5,3,5,3,4,3,1,5,5,1,7,5,5,5,3,7,3,6,3,1,2,4,2,2,3,4,3,4,2,5,4,2,5,2,6,4,2,2,2,1,5,4,5,6,1,3,2,1,6,5,1,4,5,5,2,6,3,3,4,4,2,4,5
5035,79,79,Crittenden County,AR,1,5,5,4,5,6,7,6,5,6,4,6,4,7,4,4,7,6,5,5,6,7,5,7,7,7,7,7,7,5,7,7,5,2,6,4,5,7,6,7,6,6,5,4,7,1,6,6,7,5,5,4,6,6,1,1,2,1,3,7,1,5,5,3,5,4,4,3,4,5,5,3,2,7,7,7,6,7,5,5,5,3,4,5,1,3,2,7,4,7,3,7,3,2,6,1,5,6,1,7,5,7,6,6,6,5,7,6,7,1,6,5,4,5,7,7,7,2,4,7,4,3,1,3,5
5037,21,13,Cross County,AR,3,6,4,1,4,3,7,4,6,6,3,6,2,1,2,1,4,3,6,2,4,4,3,5,3,3,7,5,6,3,4,5,3,2,5,3,2,5,4,6,3,3,3,4,7,1,2,5,4,5,1,2,5,5,1,1,4,1,3,6,1,5,5,3,5,4,5,4,5,4,5,5,5,7,7,7,4,1,6,5,2,5,6,7,1,2,5,7,3,6,2,6,2,2,6,2,4,2,6,2,1,5,4,3,4,3,4,5,5,1,5,3,3,1,6,7,5,5,4,7,3,2,6,3,5
5039,9,12,Dallas County,AR,3,7,1,3,7,3,5,2,7,7,2,3,7,1,6,1,4,2,4,2,2,2,2,2,2,2,2,3,2,4,3,7,3,2,4,7,2,5,4,2,2,3,2,2,7,4,2,5,2,2,1,3,5,1,4,1,2,1,2,6,1,4,6,2,6,4,3,1,4,1,5,7,1,1,1,2,3,2,4,7,4,7,7,6,2,4,1,3,1,5,6,6,3,1,6,1,5,4,7,1,1,4,2,6,3,2,4,1,1,1,2,2,1,2,3,2,2,3,3,1,1,1,1,4,3
5041,2,7,Desha County,AR,3,7,2,1,3,2,3,3,4,7,1,4,3,1,5,1,4,2,3,2,2,2,2,4,2,2,2,3,2,3,3,6,2,2,4,6,2,3,4,1,2,1,2,1,7,4,2,6,2,3,1,2,5,2,2,1,2,1,2,6,1,5,6,2,6,4,3,4,5,5,5,3,2,7,7,6,6,4,2,3,1,6,1,7,2,4,1,7,6,7,4,7,3,1,7,2,2,4,6,3,2,1,3,2,3,3,1,6,7,1,6,3,4,2,3,7,3,2,5,7,2,1,5,3,5
5043,13,10,Drew County,AR,3,7,3,1,4,3,4,2,4,7,6,3,4,1,4,1,4,2,2,3,3,3,4,3,2,7,3,4,4,4,3,7,3,1,3,5,3,4,6,2,6,1,2,2,6,6,2,6,3,2,1,2,5,2,2,1,3,1,1,6,1,5,6,2,6,4,4,2,5,2,5,6,3,6,6,5,6,2,3,6,2,5,6,7,4,5,5,6,5,6,4,6,2,3,7,1,3,3,6,2,1,1,3,4,3,3,1,2,3,1,4,2,2,2,4,5,3,4,4,7,2,2,7,3,5
5045,163,176,Faulkner County,AR,1,7,5,2,5,5,5,2,4,7,3,4,4,1,3,2,7,4,6,5,6,6,4,5,7,1,4,6,6,4,6,3,4,1,5,7,4,7,7,6,4,1,4,4,6,4,4,5,7,3,1,4,6,1,2,6,2,1,6,7,1,4,5,3,5,4,3,4,1,3,5,5,4,5,5,5,3,4,2,5,2,2,4,6,5,4,2,4,5,6,2,4,3,5,6,2,4,6,1,1,1,1,6,6,6,6,1,3,2,1,4,5,1,4,6,4,3,6,4,2,1,5,5,4,3
5047,14,22,Franklin County,AR,1,7,4,1,2,4,3,2,4,6,2,4,3,1,4,1,2,2,2,2,2,3,3,2,6,1,2,3,2,3,2,3,2,2,4,3,2,2,4,6,3,1,2,3,6,5,4,4,3,2,1,3,5,3,1,7,2,1,3,6,1,1,5,3,5,3,5,5,3,7,5,5,7,4,3,3,5,3,3,1,2,6,1,7,3,2,3,1,4,3,3,5,2,2,5,1,6,3,5,2,1,1,2,2,2,3,1,4,4,1,6,2,2,2,4,3,1,4,3,2,3,2,1,4,4
5049,6,7,Fulton County,AR,4,5,2,1,1,2,2,2,1,5,2,7,2,1,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,4,2,1,1,2,1,2,2,5,1,1,1,2,6,5,2,4,2,3,1,1,4,3,6,5,3,1,2,6,1,3,5,3,4,4,4,6,1,3,3,1,3,2,1,2,1,4,2,1,1,2,1,2,3,3,1,4,6,1,6,5,1,2,5,1,6,3,5,2,2,1,2,1,2,2,1,2,2,1,4,1,2,2,3,1,2,3,5,4,2,2,1,4,5
5051,47,57,Garland County,AR,1,7,6,4,7,6,3,2,7,7,4,4,6,1,5,5,4,4,6,4,5,6,5,3,4,2,4,6,5,5,5,6,4,1,6,5,3,6,6,4,5,1,4,5,5,1,5,5,5,3,1,3,5,1,2,7,1,1,6,7,1,4,5,3,5,4,7,6,2,6,3,1,3,1,2,1,2,2,4,6,6,6,4,4,5,7,4,6,3,6,5,5,4,4,4,1,1,6,1,1,1,1,6,7,6,6,1,6,4,1,7,4,2,2,6,1,3,7,3,4,2,5,7,4,3
5053,14,12,Grant County,AR,1,7,3,6,7,5,5,2,6,7,3,4,6,1,4,2,5,4,7,4,4,4,3,2,6,6,4,4,5,3,4,6,5,5,6,7,5,5,5,3,4,5,3,4,6,6,3,5,4,3,1,4,6,1,3,1,4,1,2,6,1,4,6,3,5,4,3,1,2,1,5,5,2,1,1,1,4,5,2,5,2,3,1,3,2,2,1,1,4,2,3,3,1,3,2,2,7,1,6,1,1,7,3,7,4,3,7,1,1,1,2,3,1,3,6,1,3,6,3,2,1,4,1,3,3
5055,36,61,Greene County,AR,3,4,5,1,4,3,5,4,3,5,3,7,3,1,2,2,4,4,7,6,5,5,4,5,4,7,4,5,6,4,4,5,4,1,7,7,2,5,7,4,4,1,4,3,7,1,3,5,4,5,1,2,5,5,1,1,2,1,3,7,1,4,5,3,5,4,6,5,5,3,5,5,4,7,7,6,5,2,3,4,1,5,6,6,2,4,2,7,2,6,3,4,1,2,4,2,2,5,1,2,1,1,5,5,5,5,1,3,4,1,5,7,3,3,5,7,3,6,4,7,3,3,4,4,4
5057,22,29,Hempstead County,AR,3,7,4,2,6,4,5,2,5,7,3,4,6,4,5,2,4,5,3,4,4,4,5,3,4,2,5,4,5,5,4,6,4,4,4,5,3,4,6,2,3,3,7,3,7,4,4,4,4,3,2,2,5,2,6,4,2,1,2,6,1,5,6,2,6,3,3,2,5,2,5,4,6,4,3,3,6,4,6,2,2,4,7,4,4,4,6,6,7,6,4,6,6,2,5,1,3,4,1,2,2,3,4,7,4,4,2,2,2,1,4,4,2,5,5,3,4,5,5,5,2,2,3,4,5
5059,20,20,Hot Spring County,AR,3,7,3,6,7,5,4,2,7,7,4,4,7,1,5,2,4,4,5,4,5,6,4,4,4,3,4,5,5,4,5,6,5,2,6,7,4,5,5,3,6,2,4,6,6,1,3,5,6,3,1,3,5,1,3,7,2,1,4,7,1,4,6,3,5,4,5,4,3,2,5,2,2,3,3,3,3,5,3,4,2,1,4,2,3,2,2,4,4,3,3,4,2,3,3,1,6,2,7,1,1,4,5,7,4,4,6,2,2,1,4,3,1,2,6,2,3,7,2,1,1,3,3,4,3
5061,28,26,Howard County,AR,3,7,4,1,5,4,3,2,4,7,4,4,5,2,5,1,5,2,4,4,3,4,3,2,3,1,2,4,3,5,2,6,4,3,3,6,2,4,5,2,3,1,7,2,6,1,2,4,3,3,1,2,5,3,3,7,3,1,3,6,1,5,6,2,5,3,6,2,5,2,5,4,7,4,4,1,6,1,3,7,1,2,7,5,1,6,1,6,5,5,5,5,5,2,3,1,2,3,7,1,1,1,3,7,4,3,1,2,2,1,4,3,2,3,4,1,3,7,5,2,2,2,2,4,5
5063,31,37,Independence Coun,AR,3,6,5,1,7,3,7,2,4,6,4,6,4,7,5,5,3,6,5,3,7,5,3,3,3,1,6,5,7,4,3,5,6,5,6,4,4,5,5,2,3,6,3,5,7,5,3,6,4,5,1,2,4,2,2,6,3,1,3,6,1,4,5,3,5,4,4,2,1,2,3,1,5,6,5,6,5,2,3,5,1,3,5,6,2,6,2,3,6,4,3,4,2,3,5,2,1,4,1,1,3,7,4,6,4,5,6,3,2,1,3,4,2,4,5,6,5,6,5,2,2,3,3,4,4
5065,5,6,Izard County,AR,4,6,2,1,4,2,5,2,2,6,2,7,2,2,3,1,2,1,2,2,2,2,2,2,2,1,2,3,2,4,2,4,3,3,3,4,1,2,4,4,2,6,1,2,6,5,1,5,2,3,1,2,4,2,3,1,3,1,3,6,1,4,5,3,5,4,3,2,1,1,3,5,6,4,2,2,1,1,4,2,3,2,1,2,1,2,1,7,5,2,6,6,1,3,2,1,5,3,5,2,1,5,2,2,2,3,5,2,1,1,3,1,1,2,3,1,1,3,5,2,2,2,3,4,5
5067,8,6,Jackson County,AR,3,6,3,1,5,3,7,3,3,6,3,6,4,2,5,3,3,3,3,3,7,4,3,4,3,1,3,4,4,4,4,5,5,4,6,5,4,3,5,2,3,5,3,3,7,3,2,5,3,3,2,2,5,3,3,1,4,1,3,6,1,5,5,3,5,4,4,2,3,2,5,1,4,7,7,7,6,6,4,2,2,6,1,7,1,6,3,6,2,6,4,6,1,1,6,2,3,2,6,1,1,6,4,5,4,3,6,2,3,1,3,4,3,4,5,7,4,5,5,7,2,1,2,3,5
5069,58,58,Jefferson County,AR,1,7,5,3,5,5,6,3,5,7,5,4,5,3,3,2,7,4,5,4,5,6,4,5,5,7,6,6,5,5,7,6,5,4,7,6,5,7,6,4,5,6,4,3,7,7,4,5,5,3,3,3,6,1,1,1,4,1,4,7,1,5,6,2,6,4,2,5,2,1,5,5,3,7,7,6,5,5,5,5,5,6,5,7,4,5,5,6,4,7,4,6,3,3,6,3,2,6,7,1,1,6,6,7,6,6,6,2,3,1,3,5,2,5,6,7,3,7,4,7,1,2,3,3,5
5071,46,39,Johnson County,AR,3,7,3,1,3,4,2,2,4,7,3,4,3,1,4,1,3,2,4,2,4,4,3,2,2,1,2,4,3,3,3,4,4,1,2,5,2,3,4,7,2,5,2,4,6,5,2,4,6,3,1,3,5,2,3,7,4,1,2,7,1,1,5,3,5,3,5,3,2,5,5,6,7,3,3,4,5,4,3,5,1,2,5,4,2,2,1,7,4,5,4,5,5,2,6,1,3,3,5,1,1,1,3,4,3,4,1,4,3,1,6,2,1,1,5,4,1,5,3,2,2,2,4,4,5
5073,9,7,Lafayette County,AR,4,7,2,1,6,3,4,2,2,7,1,4,5,4,6,1,2,2,2,5,2,2,4,2,7,2,3,3,3,6,2,7,2,3,2,5,2,4,5,4,2,1,7,2,6,1,3,5,2,2,2,2,5,3,5,1,5,1,3,5,1,5,6,2,6,3,4,1,2,1,5,2,6,6,3,5,3,2,4,1,5,1,6,7,1,2,1,1,6,3,7,7,2,1,6,1,5,2,7,5,2,3,2,4,3,2,2,1,2,1,3,4,2,3,3,5,3,2,5,6,3,1,1,4,5
5075,11,9,Lawrence County,AR,3,5,2,1,4,2,6,3,4,6,2,6,2,2,4,2,2,2,3,2,5,3,2,4,2,2,2,3,3,4,3,5,4,3,4,6,2,3,5,2,2,4,2,2,7,1,2,5,2,4,1,1,4,4,1,1,4,1,4,6,1,4,5,3,5,4,6,4,4,2,5,3,5,7,7,6,5,7,3,5,3,1,6,7,3,3,1,7,4,6,4,6,1,1,4,1,4,4,6,1,1,5,2,4,3,3,5,4,4,1,4,4,3,2,4,7,2,4,5,3,2,1,6,4,3
5077,1,1,Lee County,AR,3,6,2,1,3,3,7,4,2,7,6,5,2,1,2,2,3,3,2,3,3,3,2,4,6,2,7,4,4,3,3,5,2,6,3,7,4,3,4,6,3,2,3,2,7,4,2,6,3,3,2,3,5,4,2,1,3,1,2,5,1,5,5,3,5,4,5,2,4,2,5,5,4,7,7,6,4,1,5,2,1,3,5,7,1,1,1,7,6,7,4,7,3,1,7,3,4,4,6,2,1,5,3,2,3,2,3,4,5,1,4,2,3,4,4,7,4,4,4,7,3,1,4,3,5
5079,5,4,Lincoln County,AR,1,7,2,1,2,3,4,2,4,7,5,3,4,1,4,1,6,2,2,3,3,3,2,3,2,6,3,3,2,3,3,6,3,3,4,4,2,3,4,2,4,2,2,2,7,5,2,5,3,2,1,3,5,1,1,1,5,1,2,5,1,5,6,2,6,4,2,2,3,2,5,1,5,7,7,6,1,2,3,1,3,2,1,4,2,1,1,5,3,4,5,6,1,1,6,2,6,2,6,1,1,5,2,5,3,3,4,3,3,1,6,2,2,2,4,6,2,6,4,7,2,2,1,3,5
5081,12,12,Little River Coun,AR,3,7,3,4,7,4,4,2,5,7,7,4,6,6,7,4,7,4,3,7,3,3,6,2,5,2,3,3,3,5,3,6,6,6,5,7,6,5,3,3,3,4,7,2,7,3,4,4,2,2,4,2,5,3,5,5,1,1,3,6,1,6,6,2,6,3,4,3,4,2,5,3,6,6,4,5,4,3,3,4,4,2,4,4,2,2,4,6,2,4,5,5,3,3,5,1,5,3,7,4,2,1,2,5,3,3,2,2,2,1,4,2,2,5,3,5,6,7,6,4,3,2,6,4,4
5083,44,50,Logan County,AR,3,7,4,1,3,3,4,1,3,7,3,4,3,1,5,1,3,3,2,2,3,4,3,2,3,1,4,4,4,3,3,4,3,1,2,6,2,3,4,6,3,4,2,4,7,4,2,4,4,3,1,3,5,2,6,7,2,1,2,6,1,3,5,3,5,3,6,5,4,6,5,5,7,4,3,4,3,2,3,5,1,3,5,7,3,2,6,5,3,3,4,5,2,2,4,2,4,3,5,1,1,1,3,4,4,4,1,4,4,1,5,2,2,1,5,4,2,5,3,2,2,2,2,4,4
5085,52,52,Lonoke County,AR,1,7,5,2,4,5,5,2,6,7,6,4,3,1,3,1,6,5,5,5,4,5,4,5,7,5,5,5,5,3,5,5,4,4,6,5,3,5,5,5,4,4,3,4,6,5,4,5,4,3,1,4,5,1,4,4,6,1,4,7,1,5,5,3,5,4,5,3,4,2,5,5,3,7,7,6,2,4,4,6,2,2,2,6,2,2,1,6,5,4,2,3,2,4,2,4,7,2,3,1,1,6,5,6,5,6,5,2,3,1,4,3,2,3,6,7,3,6,5,7,1,5,2,3,5
5087,34,24,Madison County,AR,1,6,2,1,1,2,3,2,3,6,2,4,2,1,6,1,2,2,5,2,2,3,2,2,7,1,4,3,2,3,2,5,2,5,2,2,1,2,3,1,2,1,2,2,7,4,2,3,3,3,1,3,5,4,7,1,3,1,1,6,1,1,4,3,4,3,7,4,1,6,5,5,7,3,3,1,2,2,3,2,3,1,1,2,2,1,6,1,7,2,6,6,3,2,1,1,6,3,5,1,1,1,2,2,2,3,1,4,2,1,7,2,2,1,3,2,1,4,2,1,3,2,3,4,2
5089,22,27,Marion County,AR,4,6,2,1,2,3,3,2,1,6,2,7,1,1,2,1,2,2,1,2,2,2,3,2,7,1,2,3,2,5,2,5,2,1,3,2,1,2,4,7,2,4,1,2,7,5,2,4,7,3,1,2,4,3,4,7,3,1,3,6,1,1,4,3,4,4,3,7,1,2,3,6,5,4,2,1,2,2,2,3,3,1,4,7,3,1,1,3,6,2,6,5,2,3,4,1,5,2,5,2,1,1,2,2,2,3,1,7,2,1,5,3,2,1,3,1,1,3,3,1,2,3,6,4,5
5091,58,80,Miller County,AR,1,7,5,5,7,6,5,2,3,7,7,7,5,7,6,4,6,6,4,7,7,7,7,6,7,4,5,7,6,6,6,6,5,7,6,5,4,7,6,5,7,4,7,5,7,5,7,4,7,3,7,2,5,3,3,5,6,1,3,7,1,6,6,2,6,3,3,1,2,1,5,5,5,6,3,5,5,7,3,1,2,5,5,4,1,1,1,6,6,6,4,6,2,3,6,1,7,6,7,6,4,3,6,7,6,5,5,2,2,1,3,6,2,7,7,6,7,7,5,6,3,3,2,4,5
5093,56,43,Mississippi Count,AR,2,4,5,2,4,4,5,5,4,5,3,7,4,7,4,3,4,5,4,4,4,5,4,6,4,4,7,6,5,4,5,6,5,1,6,5,6,5,6,7,4,5,4,2,7,6,4,5,5,4,5,3,6,6,1,1,1,1,5,7,1,5,5,3,5,4,5,5,4,4,5,5,2,7,7,7,7,5,5,2,2,5,4,7,2,3,3,7,6,7,5,7,2,1,7,1,1,3,7,6,3,4,5,4,5,5,5,7,7,1,7,4,4,6,6,7,6,5,4,7,3,2,3,3,5
5095,11,5,Monroe County,AR,3,7,3,1,2,2,3,3,2,7,7,4,2,1,1,1,2,1,3,2,2,2,1,4,2,1,1,2,2,3,4,5,1,4,4,4,2,2,2,1,2,1,3,2,7,1,1,6,2,3,1,3,5,2,1,1,4,1,1,6,1,5,5,3,5,4,5,4,4,2,5,4,4,7,7,6,5,6,6,1,2,7,5,7,1,3,5,7,1,7,6,7,1,1,4,1,4,4,6,1,1,1,2,1,2,2,1,3,4,1,6,1,2,1,3,7,1,2,5,7,2,1,6,3,6
5097,2,3,Montgomery County,AR,4,7,1,1,6,5,1,1,6,7,1,3,5,1,3,1,1,1,2,2,1,1,1,1,1,1,1,2,1,4,2,6,1,1,1,3,1,1,2,1,3,1,1,3,6,7,1,4,1,2,1,2,5,2,7,5,2,1,3,5,1,4,5,3,5,3,7,5,1,4,3,4,6,2,3,1,1,3,1,4,1,1,1,5,6,1,5,3,2,1,7,6,4,2,5,1,5,1,6,1,1,1,1,3,2,2,1,6,3,1,6,2,2,2,3,1,1,2,4,1,2,2,7,4,5
5099,9,14,Nevada County,AR,3,7,2,1,4,3,4,2,7,7,1,4,7,1,6,1,3,2,5,2,3,2,2,2,2,1,2,3,3,5,2,7,2,1,4,6,3,4,3,1,2,1,7,2,4,4,1,5,1,2,1,2,5,2,5,6,2,1,2,5,1,5,6,2,6,3,4,3,4,1,5,7,5,1,1,3,2,3,6,4,4,1,5,5,3,2,1,7,6,4,6,7,2,2,5,2,6,2,7,1,1,3,2,6,2,2,1,1,1,1,3,3,1,2,3,2,2,2,4,1,2,1,1,4,5
5101,10,7,Newton County,AR,4,7,1,1,1,2,2,2,2,6,1,5,1,1,1,1,1,1,1,2,1,2,3,1,7,1,1,2,1,3,1,5,1,1,5,3,1,1,2,5,2,1,1,2,6,7,1,4,2,3,1,3,5,2,5,1,2,1,1,6,1,1,4,3,4,4,3,2,1,5,5,6,1,2,2,1,1,2,5,4,3,1,7,2,5,1,1,1,5,1,6,6,1,2,3,1,7,4,4,1,1,1,1,1,2,2,1,4,2,1,7,1,2,1,2,1,1,2,3,1,2,1,3,4,4
5103,35,25,Ouachita County,AR,3,7,2,7,7,4,6,2,6,7,7,4,7,5,7,2,7,5,3,4,5,5,4,3,3,1,4,6,5,5,6,7,5,2,5,6,4,5,5,3,4,1,7,4,6,7,5,5,4,3,2,2,5,2,2,5,3,1,3,6,1,5,6,2,6,3,3,1,5,1,5,1,2,1,1,1,7,1,7,4,5,6,3,7,3,3,4,7,4,6,5,6,1,3,7,3,4,4,1,1,1,3,5,7,5,4,1,1,1,1,1,5,1,6,6,1,4,6,4,2,2,2,2,4,4
5105,6,8,Perry County,AR,1,7,3,4,7,4,3,2,2,7,2,4,5,1,3,1,5,2,4,3,2,2,2,2,6,2,2,3,2,3,2,5,2,1,2,7,5,6,3,4,2,1,1,2,6,7,2,5,2,2,1,3,5,1,7,7,1,1,2,5,1,3,5,3,5,4,7,5,1,4,5,6,5,5,5,4,1,1,4,1,6,1,5,5,1,1,5,1,2,1,5,4,2,3,3,1,7,2,5,1,1,1,2,4,2,2,1,3,2,1,5,2,1,3,3,4,1,3,3,2,1,2,3,4,4
5107,4,4,Phillips County,AR,3,6,4,1,4,4,6,4,2,7,3,4,2,2,3,1,4,6,4,3,4,5,4,6,5,2,5,5,7,3,6,5,3,7,4,6,7,5,6,3,4,1,5,3,7,7,3,6,4,4,1,2,5,3,1,1,2,1,3,6,1,5,6,2,6,4,6,5,4,3,5,4,2,7,7,7,7,3,4,5,6,4,4,7,2,3,5,7,3,7,4,7,2,1,7,1,2,4,6,4,2,1,5,3,4,4,2,6,6,1,6,3,3,1,6,7,4,6,5,7,2,1,2,3,5
5109,7,10,Pike County,AR,4,7,2,1,2,3,2,1,6,7,1,4,6,1,4,1,1,1,3,2,2,2,1,1,1,1,1,2,2,4,2,6,2,1,2,5,1,2,3,1,2,1,1,2,5,7,1,4,1,2,1,2,5,2,5,6,2,1,2,6,1,5,6,3,5,3,7,1,1,2,5,1,6,3,3,2,4,1,2,7,5,1,1,7,4,5,1,5,4,2,6,6,3,2,3,1,5,1,6,1,1,1,2,5,2,2,1,1,1,1,3,2,1,2,3,1,1,5,4,2,2,1,6,4,5
5111,19,20,Poinsett County,AR,1,5,5,1,3,3,2,4,3,6,3,6,2,7,3,1,3,2,3,3,4,4,3,5,3,3,7,5,4,3,4,5,3,2,4,4,2,4,6,7,3,2,3,3,7,7,3,5,4,4,1,2,5,5,2,1,3,1,3,6,1,5,5,3,5,4,5,3,4,3,5,4,5,7,7,7,6,4,4,5,1,5,1,6,1,2,4,7,6,6,3,7,2,1,5,1,5,2,6,3,1,4,4,3,4,4,3,5,5,1,5,4,3,3,5,7,5,5,4,7,3,1,2,3,5
5113,25,36,Polk County,AR,3,7,3,1,2,3,2,1,1,7,2,3,3,1,2,1,2,2,2,2,2,3,2,2,2,1,2,3,2,4,2,4,2,1,3,3,1,2,4,2,2,1,2,3,6,7,2,4,2,2,1,2,5,3,6,7,2,1,2,6,1,4,5,3,5,3,6,1,2,3,5,3,7,3,2,1,5,3,1,6,3,1,3,5,4,5,5,7,5,3,5,6,4,3,5,1,1,3,6,2,1,1,2,4,3,3,1,5,3,1,6,2,2,2,3,1,1,7,5,1,3,2,6,4,4
5115,72,74,Pope County,AR,2,7,4,1,4,4,4,2,2,7,4,4,3,1,5,2,4,4,5,2,5,6,4,3,3,1,3,5,4,4,5,4,4,1,3,5,4,5,5,6,4,1,4,5,7,7,3,4,6,4,2,2,5,2,3,7,2,1,3,7,1,1,5,3,5,4,7,2,2,4,5,4,6,4,4,5,5,3,4,4,1,2,3,6,4,5,5,6,3,6,3,5,3,3,5,2,2,5,7,1,1,1,5,5,5,6,1,4,3,1,5,3,2,4,6,4,3,7,3,1,2,3,5,4,3
5117,3,5,Prairie County,AR,4,7,2,1,1,2,4,3,6,7,7,4,3,1,2,1,2,2,6,2,2,2,1,3,2,4,2,3,2,3,5,5,2,2,4,3,2,2,2,1,1,2,1,2,7,7,2,5,2,2,2,3,5,2,3,1,3,1,2,5,1,5,5,3,5,4,4,3,4,2,5,4,5,7,7,6,4,4,3,6,1,6,1,6,1,1,1,5,5,5,6,5,1,2,3,1,6,3,6,1,1,4,2,2,2,2,4,3,3,1,4,1,2,4,4,7,1,3,5,6,2,2,2,3,5
5119,406,374,Pulaski County,AR,1,7,7,5,7,7,6,2,5,7,5,4,5,1,5,2,7,7,7,6,6,7,6,7,7,4,6,7,7,7,7,6,5,4,7,7,5,7,7,7,7,5,5,5,7,7,6,5,7,6,2,7,7,1,1,6,2,1,7,7,1,4,5,3,5,4,5,7,2,3,5,4,3,6,5,6,4,6,5,6,7,5,6,7,5,7,5,7,2,7,2,4,5,6,4,2,1,7,6,1,1,6,7,7,7,7,6,4,3,1,5,5,2,5,7,5,5,3,4,6,1,5,5,4,4
5121,33,31,Randolph County,AR,3,4,1,1,2,2,1,3,6,5,3,7,2,1,1,1,2,2,4,2,3,3,2,3,2,2,2,4,3,4,2,4,3,1,3,3,2,3,4,2,2,1,2,3,7,7,2,5,3,4,1,1,5,4,4,6,4,1,2,6,1,4,5,3,5,4,4,4,2,3,3,3,6,7,6,6,4,3,3,2,1,4,1,6,2,3,1,6,3,4,4,5,1,2,5,2,3,2,6,2,2,1,3,3,3,3,1,3,3,1,4,5,2,2,4,6,1,5,5,4,2,1,2,4,5
5123,16,6,St. Francis Count,AR,3,6,4,1,4,4,7,4,4,7,3,5,2,2,2,2,3,3,3,3,4,5,3,5,6,3,7,5,4,3,5,6,4,3,3,5,2,4,6,7,4,3,3,4,7,6,3,6,4,4,3,2,5,5,2,1,4,1,3,6,1,5,5,3,5,4,5,4,4,3,5,2,4,7,7,6,4,7,5,3,5,5,3,6,1,2,6,7,6,7,4,7,1,1,7,1,3,4,1,3,1,5,5,4,4,4,3,6,5,1,5,3,3,5,6,7,5,5,4,6,3,2,5,3,1
5125,112,140,Saline County,AR,1,7,6,7,7,6,5,2,4,7,3,4,5,1,5,2,5,5,5,5,6,6,4,4,7,6,5,6,6,4,5,6,5,4,6,7,4,6,6,5,5,5,4,5,7,7,5,5,5,4,1,4,5,1,3,6,2,1,5,7,1,4,5,3,5,4,6,7,1,3,5,7,1,1,2,1,2,3,2,3,2,2,4,5,2,3,2,5,2,2,1,1,2,5,2,3,7,3,5,1,1,6,5,7,6,6,7,4,2,1,5,4,2,4,6,1,4,6,4,1,1,6,3,4,3
5127,18,25,Scott County,AR,3,7,3,1,1,5,3,1,1,7,2,3,3,1,2,1,2,2,2,2,3,3,2,2,2,1,2,3,2,4,2,2,2,1,3,4,2,2,3,4,3,1,2,4,7,7,2,4,3,2,1,3,5,3,7,5,2,1,1,5,1,4,5,3,5,3,6,5,2,6,5,6,6,1,1,1,1,4,1,1,1,1,5,7,1,1,1,7,5,5,4,6,5,1,2,1,4,4,6,2,1,1,2,5,3,2,1,4,4,1,7,2,2,4,4,1,1,4,5,1,2,1,4,4,3
5129,5,5,Searcy County,AR,4,6,1,1,1,2,2,2,1,6,1,6,2,1,1,1,1,1,1,1,1,1,2,1,6,1,1,2,1,3,2,4,1,1,1,2,1,1,2,6,1,1,1,2,6,7,1,4,2,3,1,2,5,2,3,5,3,1,2,6,1,1,4,3,4,4,3,3,1,4,3,6,3,2,1,1,2,3,2,1,5,3,7,6,4,1,1,7,7,3,6,7,1,2,3,1,4,4,5,1,1,1,1,1,2,2,1,6,2,1,7,1,2,1,3,1,1,2,2,1,2,1,2,4,3
5131,230,255,Sebastian County,AR,1,7,7,1,6,6,5,2,5,7,5,4,5,1,6,2,6,6,6,5,7,7,7,6,5,2,5,7,7,5,6,4,6,1,7,5,6,7,7,7,7,1,6,5,6,7,7,3,7,5,2,3,5,4,1,7,2,1,5,7,1,3,5,3,5,3,5,6,2,6,5,7,5,3,3,4,5,3,4,6,6,6,5,5,6,7,3,6,3,7,2,4,6,3,3,1,2,7,7,2,2,1,7,6,7,6,2,4,3,1,6,7,2,3,6,4,4,6,4,2,3,4,6,4,4
5133,26,22,Sevier County,AR,3,7,2,1,4,3,2,2,5,7,7,4,5,3,7,3,5,2,2,5,3,4,3,2,3,1,2,4,3,5,2,6,5,4,5,5,6,3,5,2,2,2,7,3,6,7,2,4,3,2,1,2,5,3,5,4,3,1,3,6,1,5,6,2,5,3,3,6,4,2,5,4,6,3,4,3,4,4,1,4,1,2,6,5,1,4,6,6,6,5,4,6,7,1,3,1,3,3,6,3,1,1,3,6,4,3,1,2,2,1,4,4,2,2,4,2,3,7,5,1,3,2,5,4,5
5135,12,11,Sharp County,AR,3,5,2,1,5,3,6,2,3,6,2,6,2,2,4,2,3,2,2,2,4,3,2,3,2,1,2,3,3,4,4,4,4,3,2,2,2,2,3,2,2,4,2,3,7,7,2,5,3,3,1,1,4,3,2,4,4,1,2,5,1,4,5,3,5,4,4,5,1,3,3,7,6,3,3,1,1,5,1,5,1,2,6,5,6,3,3,1,5,2,7,6,1,3,5,1,5,2,5,2,2,5,2,3,3,3,5,3,2,1,5,2,2,3,5,1,2,4,5,2,2,1,7,4,5
5137,3,6,Stone County,AR,4,6,2,1,3,3,2,2,2,6,2,6,2,2,2,1,2,1,1,2,2,2,1,2,2,1,1,2,2,3,2,4,2,3,1,5,2,2,4,4,2,2,1,2,6,7,1,5,2,3,1,2,4,2,4,7,2,1,2,6,1,4,5,3,5,4,3,2,1,2,3,7,6,2,3,1,1,1,5,5,6,2,7,6,6,2,1,1,6,3,6,6,1,2,3,1,3,1,5,1,1,5,2,2,2,2,4,3,2,1,6,1,2,2,3,1,1,3,4,2,2,2,2,4,4
5139,56,53,Union County,AR,2,7,6,7,7,5,6,3,4,7,7,4,7,7,7,2,5,7,5,7,7,6,5,4,4,7,6,7,7,6,7,7,7,3,7,6,6,7,7,3,6,1,7,6,5,7,7,5,6,6,5,2,6,2,3,1,3,1,4,7,1,4,6,2,6,4,3,1,5,1,5,2,2,1,1,1,7,6,5,2,1,6,6,4,3,5,5,5,6,5,5,6,2,3,6,2,1,3,7,3,2,3,6,7,6,5,2,1,1,1,2,7,1,6,7,1,7,7,5,1,2,2,5,3,5
5141,4,7,Van Buren County,AR,4,7,2,1,2,3,2,2,2,7,2,5,2,1,1,1,4,1,2,2,2,2,1,2,2,1,1,3,2,3,2,3,2,1,2,3,2,2,3,2,2,1,1,2,7,7,2,5,2,2,1,3,5,2,1,7,3,1,2,6,1,3,5,3,5,4,3,1,1,4,5,6,5,3,3,1,1,3,3,2,1,1,4,6,6,2,1,7,7,1,7,5,1,2,5,1,5,5,5,1,1,1,2,2,2,3,1,3,2,1,5,1,1,3,3,2,1,3,4,1,2,2,4,4,4
5143,427,494,Washington County,AR,1,7,7,1,6,6,6,2,6,6,4,4,6,3,3,2,7,7,7,5,7,7,5,6,7,1,7,7,7,5,6,5,5,7,6,2,4,6,7,4,6,3,5,5,7,7,5,4,6,6,2,4,5,5,2,7,4,1,3,7,1,1,5,3,4,3,7,5,2,6,5,2,7,3,5,3,4,4,3,6,5,5,6,6,4,6,4,4,4,7,2,5,6,4,6,1,2,7,6,2,1,5,7,5,7,7,5,4,3,1,7,5,2,4,7,1,4,6,1,2,5,5,5,4,3
5145,88,81,White County,AR,2,7,5,1,4,4,6,2,4,7,3,5,3,1,4,2,4,3,6,4,5,5,3,4,6,1,3,5,4,4,5,4,4,3,6,3,3,5,6,4,3,3,3,4,7,6,3,5,4,3,1,3,7,2,3,6,4,1,3,6,1,5,5,3,5,4,4,2,3,2,5,7,5,6,6,6,2,5,4,6,3,2,4,4,4,5,3,4,6,5,3,4,3,3,7,1,3,6,1,1,1,5,5,5,5,6,4,3,2,1,5,3,2,2,6,6,3,5,5,4,2,4,4,4,5
5147,8,8,Woodruff County,AR,4,6,2,1,2,2,3,3,4,7,2,5,4,1,2,1,1,1,2,2,4,2,1,3,1,1,1,2,2,3,2,5,3,3,5,2,3,2,2,1,1,3,1,1,6,5,1,5,1,3,1,2,5,3,2,1,5,1,2,5,1,5,5,3,5,4,5,3,4,2,5,5,2,7,7,7,7,1,6,2,1,6,7,7,1,3,5,7,4,7,5,7,1,1,6,2,3,5,5,1,1,5,2,3,2,2,5,3,4,1,6,2,2,1,3,7,1,2,5,7,2,1,2,3,3
5149,27,20,Yell County,AR,3,7,2,1,2,4,3,2,2,7,2,4,4,1,5,1,2,2,4,2,3,3,3,2,2,1,2,3,2,3,2,3,3,1,2,4,2,3,3,5,4,1,2,3,7,7,2,4,3,2,1,2,5,2,3,6,2,1,3,5,1,3,5,3,5,3,7,5,3,5,5,3,7,4,4,5,3,1,4,2,2,1,3,5,1,3,3,5,5,5,5,5,6,1,4,1,5,3,6,1,1,1,2,5,3,4,1,4,4,1,6,2,2,4,3,5,1,4,3,2,2,2,3,4,4
6001,2080,2030,Alameda County,CA,1,1,4,1,7,7,7,7,7,4,6,4,7,3,7,6,7,7,7,7,7,7,6,7,6,1,7,7,7,5,7,3,6,3,7,7,7,7,7,6,7,1,6,7,7,7,6,2,7,6,6,7,5,1,2,6,5,1,4,5,1,1,7,1,7,1,7,7,5,6,3,4,3,5,6,1,5,6,6,2,7,4,5,6,6,6,7,7,2,7,1,3,7,5,4,1,4,7,5,1,1,1,7,7,7,7,1,7,7,1,5,7,7,7,7,2,7,1,5,3,1,7,4,1,7
6003,0,5,Alpine County,CA,4,1,2,1,1,3,2,6,4,4,1,2,2,3,7,4,1,1,2,2,3,1,1,1,1,1,1,3,1,1,1,2,1,1,2,3,2,1,1,1,2,1,1,1,3,7,1,2,1,2,6,4,2,2,7,5,4,1,1,1,1,6,2,1,2,1,7,7,7,7,3,7,1,4,2,1,6,1,5,7,5,7,7,7,7,2,1,1,7,6,7,6,6,7,6,1,5,7,4,2,1,1,1,1,1,1,1,7,7,1,4,1,7,7,4,1,1,1,1,1,1,7,7,1,4
6005,70,68,Amador County,CA,3,1,2,1,3,6,4,6,6,4,1,2,6,2,7,3,2,3,5,5,5,2,3,4,5,3,4,3,4,2,5,7,2,1,5,6,5,4,2,2,4,1,2,2,6,7,3,3,1,3,4,6,3,1,5,6,2,1,2,1,1,4,5,1,5,1,7,7,7,7,3,7,3,7,7,1,3,2,2,3,3,6,6,3,7,7,4,1,5,4,5,2,5,6,3,2,3,5,4,1,1,1,4,3,2,5,1,7,7,1,6,4,6,6,7,2,2,1,1,4,1,7,6,1,7
6007,428,450,Butte County,CA,1,1,6,1,6,7,4,5,7,4,3,2,7,2,7,4,6,4,6,6,6,3,5,6,5,1,4,4,6,4,6,3,3,1,7,7,7,6,5,5,7,1,4,7,7,7,3,2,3,4,4,6,3,1,2,5,2,1,1,1,1,4,4,1,4,1,6,2,6,7,5,1,3,7,7,6,2,2,3,3,6,3,6,6,6,7,4,5,2,7,2,6,6,5,7,1,1,6,4,1,1,1,6,7,6,7,1,7,7,1,3,6,7,6,7,3,4,1,1,7,1,7,6,1,5
6009,47,53,Calaveras County,CA,3,1,2,1,3,6,2,6,6,4,1,2,6,3,7,4,2,2,5,5,6,2,2,3,3,1,2,3,3,2,4,2,1,1,4,6,5,3,2,2,4,1,2,3,6,7,5,2,1,3,6,6,3,1,3,6,2,1,2,1,1,4,5,1,5,1,6,7,7,7,3,6,1,6,7,1,1,2,1,1,3,4,3,2,7,3,5,1,5,2,7,3,5,6,6,3,5,1,1,1,1,1,4,3,2,5,1,7,7,1,3,3,6,7,7,1,1,1,1,1,1,7,7,1,5
6011,24,35,Colusa County,CA,3,1,3,1,7,6,3,5,7,4,1,1,7,1,7,2,2,2,6,6,3,1,2,3,2,1,2,2,3,2,6,2,1,1,6,7,7,2,2,2,3,1,2,2,7,7,2,2,7,2,2,3,3,2,6,4,4,1,1,1,1,1,6,1,6,1,7,2,6,7,5,2,2,7,7,1,5,7,6,1,4,4,3,4,4,1,5,1,6,7,3,5,7,1,7,1,2,5,6,1,1,1,3,7,1,3,1,7,7,1,5,3,6,5,6,5,2,1,2,7,1,6,4,1,4
6013,1661,1594,Contra Costa Coun,CA,1,1,4,1,6,7,6,7,7,4,5,3,7,4,7,6,7,5,7,7,7,5,6,7,6,3,6,7,7,3,7,2,5,1,7,7,7,7,5,6,7,1,5,6,7,7,6,2,6,5,7,7,5,1,1,6,6,1,5,1,1,1,7,1,7,1,7,7,5,6,3,2,2,6,7,1,3,5,5,2,7,2,4,6,5,6,6,6,1,6,1,1,7,7,3,5,5,7,4,1,1,1,7,7,7,7,1,7,7,7,4,7,6,7,7,4,6,1,5,6,1,7,4,1,7
6015,69,75,Del Norte County,CA,3,1,4,5,4,7,3,5,6,1,4,1,6,1,7,5,4,3,6,4,4,3,7,3,3,1,2,2,5,1,4,3,2,2,5,6,5,4,4,3,5,1,3,7,7,7,2,2,1,2,2,5,2,5,5,5,7,1,1,1,1,6,5,1,5,1,7,1,6,7,5,1,2,1,3,1,2,4,1,1,7,4,7,2,3,4,7,7,5,7,4,6,6,2,7,1,1,5,4,2,1,1,5,3,4,4,1,7,7,1,6,4,7,7,7,1,7,2,6,4,1,6,7,1,3
6017,292,284,El Dorado County,CA,1,1,5,1,5,7,4,6,7,4,3,2,7,2,7,4,5,4,6,6,6,4,5,4,5,3,4,3,5,2,5,7,2,1,6,7,6,5,4,4,6,2,4,4,6,7,4,2,2,3,3,5,3,2,2,6,3,1,2,1,1,5,3,1,4,1,5,7,7,7,3,3,1,5,7,6,1,3,1,3,7,3,3,6,7,6,6,3,4,4,6,1,6,7,4,4,6,5,7,2,2,1,6,6,6,7,2,7,7,1,5,6,7,6,7,2,3,2,1,5,1,7,7,1,7
6019,971,965,Fresno County,CA,1,1,3,1,6,7,6,7,7,4,4,7,7,4,7,6,5,5,7,7,6,5,6,7,7,1,5,5,7,4,7,4,3,2,7,7,7,7,5,7,7,1,6,4,7,7,4,2,6,6,7,7,7,1,2,5,2,1,1,1,1,1,5,1,5,1,7,5,6,7,3,1,6,7,7,5,3,3,3,2,7,3,4,3,3,5,4,7,5,7,2,7,7,2,7,1,1,7,5,1,1,1,7,7,7,7,1,7,7,1,4,6,7,7,7,5,4,1,1,7,1,6,3,1,7
6021,51,70,Glenn County,CA,3,1,4,1,7,6,3,5,7,4,2,1,7,3,7,4,3,3,7,5,4,2,3,3,4,1,3,3,5,2,7,3,2,1,6,7,7,4,3,3,5,1,3,3,7,7,2,2,2,3,5,6,2,1,6,4,4,1,1,1,1,1,6,1,6,1,5,1,6,7,5,7,4,7,7,1,4,2,1,1,3,3,1,2,4,2,3,1,7,7,2,6,7,2,7,1,4,6,6,1,1,1,4,7,4,4,1,7,7,1,4,4,7,7,7,5,4,1,1,7,1,5,5,1,3
6023,193,242,Humboldt County,CA,2,1,5,1,5,6,4,7,7,4,3,1,6,2,7,4,5,5,7,6,5,3,5,5,4,1,4,3,6,2,6,4,2,1,6,7,6,6,6,4,6,1,5,3,7,7,3,3,3,4,5,6,2,2,5,5,7,1,2,1,1,4,5,1,5,1,7,2,5,7,5,3,2,6,5,4,5,3,1,2,6,4,6,6,6,7,4,5,5,7,3,6,6,6,7,1,1,5,5,1,1,1,6,4,6,7,1,7,7,7,5,5,6,7,7,2,3,1,6,3,1,7,6,1,4
6025,341,409,Imperial County,CA,1,1,4,1,4,7,3,7,7,1,3,6,7,4,7,5,5,4,7,5,5,4,5,6,5,1,2,4,6,3,6,3,3,1,7,7,7,6,4,5,7,1,2,4,7,7,2,2,3,4,6,7,3,1,3,6,7,1,1,1,1,6,6,3,6,1,4,3,5,4,5,2,4,6,6,7,3,6,2,1,7,1,4,2,2,3,4,7,6,7,3,7,7,1,7,1,1,7,4,2,2,1,6,7,6,7,1,4,5,1,4,6,7,7,7,5,2,1,7,7,1,6,2,4,7
6027,44,53,Inyo County,CA,3,1,3,1,3,2,1,6,5,1,2,6,6,3,7,4,2,2,7,2,2,1,3,1,2,1,2,3,4,3,2,3,1,1,4,5,4,2,2,2,3,1,2,1,5,7,1,3,1,3,5,5,2,2,6,5,2,1,1,1,1,5,6,6,5,1,7,7,6,7,3,4,1,4,1,1,4,4,1,7,6,4,7,6,7,7,5,1,7,7,5,4,6,5,5,1,1,5,5,1,1,1,3,5,3,3,1,7,7,1,6,3,7,7,5,1,1,1,3,1,1,7,7,4,7
6029,915,991,Kern County,CA,1,1,2,1,6,7,5,7,7,1,4,7,7,4,7,6,6,5,7,6,7,4,6,7,7,7,4,5,6,6,7,7,3,5,7,7,7,6,5,5,7,1,5,4,7,7,4,1,5,5,7,7,6,1,2,5,1,1,1,1,1,3,6,1,5,1,5,4,6,7,3,1,5,7,7,7,3,4,2,3,7,3,3,3,4,4,4,4,5,7,3,7,7,2,7,1,1,6,5,1,1,3,7,7,7,7,4,6,7,1,6,6,7,7,7,6,3,1,4,7,1,5,3,1,7
6031,185,211,Kings County,CA,1,1,4,1,7,7,4,7,7,4,3,6,7,3,7,5,5,4,7,6,6,4,5,7,7,1,4,3,6,4,7,4,3,5,7,7,7,6,4,5,7,1,7,3,7,7,3,2,6,4,5,7,7,2,3,5,2,1,1,1,1,1,6,1,5,1,7,3,5,7,5,1,7,7,7,1,3,7,4,1,7,3,4,2,3,2,2,4,6,7,1,6,7,2,7,1,3,7,4,1,1,1,6,7,6,7,1,6,7,1,4,6,7,7,7,5,3,1,3,7,1,6,1,1,7
6033,56,69,Lake County,CA,2,1,2,1,4,6,3,5,6,4,2,1,7,2,7,5,3,4,6,6,6,3,4,3,4,1,3,4,5,2,6,2,2,1,6,6,7,4,3,3,5,1,4,2,6,7,3,2,2,3,3,2,2,2,6,6,7,1,1,1,1,1,7,1,7,1,7,6,6,7,5,7,1,6,7,6,2,2,1,3,4,3,6,4,4,7,5,3,5,6,7,6,6,3,7,1,3,3,6,1,1,1,5,6,4,6,1,7,7,1,5,4,6,5,7,3,3,1,2,6,1,6,4,1,7
6035,152,180,Lassen County,CA,3,1,1,1,2,4,1,4,6,4,1,1,5,1,7,2,2,1,5,3,3,2,2,1,2,1,1,1,3,1,2,1,1,1,2,5,6,2,2,2,2,1,2,1,5,7,2,1,1,1,2,4,2,4,7,5,4,1,1,1,1,6,1,1,1,1,3,2,7,7,5,3,2,6,4,7,2,3,1,2,5,2,5,2,4,3,3,1,6,6,6,4,6,4,7,1,1,4,5,1,1,1,3,3,2,5,1,7,7,1,2,2,7,4,5,3,1,1,1,4,1,6,1,1,4
6037,10110,10320,Los Angeles Count,CA,1,1,7,7,7,7,7,7,7,6,7,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,4,7,7,7,7,7,7,7,1,7,7,4,7,7,3,7,7,7,7,7,2,2,5,4,1,5,5,7,1,6,1,6,1,7,7,7,7,3,1,2,4,6,6,4,5,6,2,7,4,4,4,5,6,5,5,2,7,1,6,7,2,6,1,1,7,6,1,2,3,7,7,7,7,1,7,7,7,6,7,7,7,7,2,7,1,4,6,2,7,4,2,7
6039,186,167,Madera County,CA,1,1,5,1,5,7,4,6,7,4,3,4,7,2,7,5,4,4,7,6,5,3,5,6,7,1,3,3,6,2,7,3,2,1,7,7,7,5,4,7,7,1,4,2,7,7,3,2,7,4,4,7,5,2,6,5,2,6,1,1,1,1,4,1,5,1,6,4,6,7,3,3,6,7,7,6,2,4,2,2,6,2,3,3,3,4,3,5,6,7,4,7,7,1,7,2,4,5,6,1,1,1,6,7,6,7,1,6,7,1,2,5,7,6,7,5,2,1,1,7,1,6,3,1,5
6041,430,373,Marin County,CA,1,1,6,1,6,7,5,7,7,4,5,2,7,3,7,5,7,5,7,7,7,4,6,6,6,1,6,6,6,3,7,3,3,2,6,6,7,6,5,5,7,1,5,4,6,7,4,3,3,4,6,6,3,2,1,6,6,6,5,1,1,1,7,1,7,1,7,7,5,6,5,4,5,4,5,4,1,5,5,2,7,3,6,7,7,7,6,5,1,7,1,1,7,7,1,3,5,7,2,1,1,1,7,7,7,7,1,7,7,7,4,6,6,7,7,2,6,1,6,1,2,7,7,1,7
6043,34,24,Mariposa County,CA,4,1,2,1,2,5,1,6,5,4,1,3,5,2,7,4,1,1,5,3,4,1,2,2,2,1,1,3,2,2,2,1,1,1,3,4,4,2,1,3,3,1,1,1,7,7,1,1,1,3,5,7,4,2,7,5,1,1,1,1,1,1,4,1,4,1,6,4,6,7,3,1,1,5,4,1,2,7,1,5,7,1,7,6,7,4,3,1,4,6,7,5,4,6,7,1,3,4,4,1,1,1,2,3,1,3,1,7,7,1,5,2,7,6,6,1,1,1,1,1,1,7,6,1,4
6045,56,89,Mendocino County,CA,2,1,5,1,5,6,4,6,6,4,3,1,7,3,7,5,4,3,7,5,5,3,4,3,4,1,3,4,6,2,4,3,2,1,6,6,6,5,5,4,6,1,3,2,7,7,2,2,2,3,5,7,2,2,5,5,7,1,1,1,7,1,7,1,7,1,7,2,6,7,5,2,1,6,6,4,4,2,1,1,5,4,6,4,7,6,4,6,6,7,3,5,7,5,6,1,1,6,7,1,1,1,6,5,5,6,1,7,7,7,4,5,5,7,7,2,2,1,4,6,1,7,5,1,6
6047,384,421,Merced County,CA,1,1,7,1,5,7,2,6,7,4,4,3,7,2,7,5,5,5,7,7,6,4,5,7,6,1,4,3,6,3,6,2,3,1,7,7,7,6,5,7,7,1,5,6,7,7,6,2,7,4,3,7,6,2,4,5,4,7,2,1,1,1,6,1,6,1,6,3,6,6,5,1,7,7,7,6,3,7,2,1,6,2,3,2,2,3,3,6,5,7,2,7,7,1,7,1,3,6,7,1,1,1,6,7,6,7,1,6,7,1,4,6,7,6,7,5,3,1,2,7,1,6,2,1,7
6049,17,12,Modoc County,CA,3,1,1,1,1,4,1,3,6,4,1,1,5,1,7,2,2,1,4,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,6,5,3,2,1,1,2,1,1,1,7,7,1,1,1,1,2,3,2,5,7,4,6,1,1,1,1,6,1,1,1,1,3,1,7,7,5,3,1,7,5,7,3,2,1,2,1,2,7,6,6,3,5,1,4,6,6,7,6,3,7,1,2,4,4,1,1,1,1,2,1,2,1,7,7,1,2,1,7,4,5,4,1,1,1,5,1,3,5,1,4
6051,16,10,Mono County,CA,3,1,1,1,3,7,1,5,5,4,2,3,4,1,7,1,3,1,5,2,3,1,2,1,2,1,1,1,3,2,1,1,1,1,2,3,2,2,1,2,2,1,2,6,3,6,1,2,1,2,2,7,3,4,5,5,4,1,1,1,1,4,3,1,2,1,4,7,4,6,3,3,1,4,2,6,1,7,1,7,7,5,7,4,7,3,7,1,7,7,7,3,7,7,5,1,2,7,4,1,1,1,3,2,1,2,1,7,7,1,5,2,7,5,4,2,1,1,1,4,1,7,7,1,7
6053,920,980,Monterey County,CA,1,1,3,1,6,7,4,7,7,4,5,4,7,2,7,5,6,5,7,7,7,5,6,6,6,1,6,4,7,3,7,5,3,1,7,7,7,7,5,5,7,1,5,3,7,7,5,3,4,5,3,6,3,2,3,5,3,1,1,1,7,1,7,1,7,1,7,5,6,6,3,4,4,7,7,7,1,7,6,2,7,3,5,4,6,6,5,6,3,7,2,4,7,2,7,1,1,7,5,1,1,1,7,7,7,7,1,6,7,7,5,7,7,7,7,4,4,1,4,7,1,7,5,1,7
6055,188,189,Napa County,CA,1,1,3,1,6,7,3,7,7,4,4,2,7,2,7,5,6,5,7,7,7,4,5,7,5,1,4,5,6,3,7,2,4,2,7,7,7,6,5,5,7,1,5,4,7,7,4,2,5,4,4,5,3,2,3,6,6,1,2,1,1,1,7,1,7,1,7,5,6,7,5,7,3,7,7,6,2,2,7,2,7,7,6,6,7,7,7,5,4,7,2,2,7,4,3,2,3,6,3,1,1,1,7,7,6,7,1,7,7,1,5,6,5,7,7,2,3,1,4,7,2,7,6,1,7
6057,138,125,Nevada County,CA,2,1,5,1,5,7,4,6,7,4,3,2,7,2,7,4,5,4,6,7,6,3,4,4,4,2,3,3,6,2,5,4,2,1,6,7,6,5,4,3,6,1,3,3,6,7,2,2,2,3,4,6,2,2,5,5,4,1,2,1,1,5,2,1,3,1,6,3,6,7,3,2,2,6,7,3,2,3,2,2,6,2,5,6,7,7,3,3,3,4,6,2,5,7,3,4,3,5,4,2,2,1,5,5,5,6,2,7,7,1,5,5,7,6,7,1,3,1,1,2,1,7,7,1,7
6059,3915,4108,Orange County,CA,1,1,7,7,7,7,6,7,7,5,6,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,4,7,7,7,7,7,7,7,1,6,7,7,7,7,3,7,7,7,7,7,2,2,5,5,1,5,5,7,3,7,1,6,1,6,7,6,7,5,6,2,6,7,1,3,5,6,3,7,3,3,5,6,7,6,4,2,7,1,3,7,4,3,1,2,7,2,1,1,1,7,7,7,7,1,7,7,7,6,7,7,7,7,1,7,1,4,6,2,7,6,2,7
6061,867,804,Placer County,CA,1,1,6,1,6,7,5,7,7,4,4,3,7,3,7,5,7,5,7,7,6,5,6,6,5,6,5,6,7,2,7,7,5,1,7,7,7,6,6,5,7,1,4,5,7,7,6,3,4,4,6,6,3,2,2,6,4,1,3,1,1,5,3,1,3,1,5,6,6,7,3,1,2,6,7,4,2,4,2,4,6,2,4,6,6,7,4,3,3,5,5,1,6,7,2,6,5,6,3,2,2,1,7,7,6,7,2,7,7,1,4,7,7,7,7,2,4,1,1,3,1,7,6,1,7
6063,29,35,Plumas County,CA,3,1,1,1,2,5,2,5,5,4,1,1,5,1,7,2,2,1,4,3,5,1,2,1,2,1,1,2,2,1,2,2,1,1,6,5,3,2,2,1,2,7,1,1,7,6,1,1,1,2,2,7,3,2,3,5,2,1,1,1,1,6,1,1,1,1,5,2,6,7,3,7,1,5,2,1,2,2,1,6,3,4,7,6,7,6,1,7,5,6,7,4,5,7,7,1,2,3,5,1,1,1,2,2,1,4,1,7,7,1,5,2,7,5,6,2,1,1,1,1,1,7,7,1,3
6065,2156,2332,Riverside County,CA,1,1,7,7,6,7,5,7,7,1,6,7,7,4,7,6,7,5,6,7,7,5,7,7,7,7,5,5,7,5,7,6,5,3,7,7,7,7,6,6,7,1,4,5,5,7,7,3,6,5,7,7,4,2,2,5,2,6,2,5,1,6,5,3,6,1,3,5,7,7,3,1,3,6,7,7,3,5,4,2,7,2,3,3,5,5,5,4,4,6,5,5,7,3,6,2,4,7,6,1,2,1,7,7,7,7,1,6,7,1,3,7,7,7,7,4,6,1,5,7,1,7,4,4,7
6067,3491,2927,Sacramento County,CA,1,1,3,1,6,7,4,7,7,4,6,6,7,4,7,6,7,6,7,7,7,6,7,7,7,6,5,6,7,5,7,7,5,1,7,7,7,7,6,6,7,7,5,6,7,7,7,2,6,5,7,7,4,2,1,5,5,6,3,5,1,1,6,1,7,1,5,7,6,7,5,2,4,7,7,6,2,5,5,2,7,3,5,6,5,6,5,6,3,7,1,5,7,6,5,1,2,7,5,1,1,1,7,7,7,7,1,7,7,1,4,7,6,7,7,6,5,1,3,7,2,7,4,1,7
6069,74,106,San Benito County,CA,1,1,5,1,5,6,6,7,7,4,3,4,7,3,7,4,5,6,6,7,6,4,5,7,5,1,6,3,6,3,6,5,3,1,6,7,7,6,4,5,6,1,5,3,7,7,3,3,3,5,4,6,4,2,3,5,4,1,1,1,1,1,7,1,7,1,7,4,5,7,3,2,2,6,7,6,4,2,7,1,7,3,4,3,3,4,5,1,3,6,1,2,7,3,5,4,6,5,4,1,1,1,6,7,6,6,1,6,7,1,6,6,7,7,7,2,4,1,2,7,1,7,3,1,7
6071,2050,2217,San Bernardino Co,CA,1,1,6,7,6,7,6,7,7,4,6,7,7,5,7,6,7,5,7,7,7,6,7,7,7,7,5,5,7,6,7,7,6,6,7,7,7,7,6,7,7,2,3,5,5,7,7,3,7,6,7,4,3,2,3,5,2,6,1,5,1,7,5,4,5,1,5,7,6,7,3,1,2,2,4,6,3,4,2,2,7,3,3,4,4,4,4,4,4,7,4,5,7,3,7,1,4,7,6,2,2,3,7,7,7,7,3,7,7,1,3,7,7,7,7,3,6,1,4,4,2,7,2,4,7
6073,4275,4371,San Diego County,CA,1,1,3,1,7,7,2,7,7,1,6,7,7,5,7,6,7,5,7,7,7,6,7,7,6,1,4,6,7,6,7,6,5,1,7,7,7,7,7,6,7,1,5,6,4,7,7,2,6,6,7,7,5,2,2,6,2,1,3,5,7,5,6,1,6,1,5,3,7,7,5,1,3,6,7,6,3,5,4,2,7,3,4,5,6,6,5,5,2,7,1,4,7,5,5,1,1,7,5,1,1,1,7,7,7,7,1,7,7,7,3,7,7,7,7,3,5,1,7,6,2,7,5,4,7
6075,1002,976,San Francisco Cou,CA,1,1,5,1,7,7,6,7,7,4,7,4,7,6,7,6,7,7,7,7,7,7,7,7,7,1,7,7,7,6,7,4,5,2,7,7,7,7,6,6,7,6,7,7,4,7,6,3,7,6,7,7,5,2,2,7,6,7,7,1,7,1,7,1,7,1,7,7,6,6,3,5,1,1,3,1,1,5,7,2,7,6,7,5,7,7,7,7,1,7,1,3,7,5,3,1,3,7,7,1,1,1,7,7,7,7,1,7,5,7,5,7,6,7,7,1,7,1,6,1,2,7,6,1,7
6077,792,795,San Joaquin Count,CA,1,1,3,1,6,7,2,7,7,4,4,3,7,4,7,6,6,4,7,7,7,5,6,7,7,2,4,5,7,3,7,4,4,2,7,7,7,6,6,6,7,1,4,7,6,7,7,1,6,5,7,7,7,2,3,5,6,7,3,5,1,1,6,1,7,1,6,6,6,7,5,2,6,7,7,7,4,7,4,2,7,3,4,4,3,4,4,5,3,7,1,6,7,2,7,1,3,7,6,1,1,1,7,7,7,7,1,7,7,1,4,7,7,7,7,7,3,1,3,7,2,7,3,1,7
6079,674,748,San Luis Obispo C,CA,1,1,3,1,6,6,4,7,7,4,4,6,7,2,7,5,5,5,7,7,6,4,5,6,5,1,4,6,7,4,7,4,4,1,7,7,7,6,5,5,7,1,5,2,7,7,4,2,3,5,5,7,4,2,3,5,4,1,2,1,7,1,6,1,6,1,7,6,5,6,3,1,2,6,7,3,2,3,2,3,6,4,6,5,7,7,5,5,2,7,3,4,7,6,5,1,1,6,3,1,1,1,7,6,6,7,1,5,7,7,6,6,7,7,7,3,3,1,6,6,2,7,6,1,7
6081,1243,1274,San Mateo County,CA,1,1,4,1,7,7,6,7,7,4,6,3,7,3,7,6,7,6,7,7,7,6,6,7,6,2,7,7,7,4,7,2,5,5,7,7,7,7,6,6,7,3,6,6,3,6,6,2,6,5,6,7,3,2,1,6,6,1,5,1,1,1,7,1,7,1,7,7,6,6,3,6,2,5,7,4,3,6,6,1,7,3,4,5,6,6,7,4,1,7,1,1,7,6,1,1,5,7,3,1,1,1,7,7,7,7,1,7,7,7,3,7,7,7,7,2,7,1,6,5,2,7,5,1,7
6083,392,458,Santa Barbara Cou,CA,1,1,7,1,6,7,5,7,7,1,5,7,7,4,7,6,6,5,7,7,7,5,6,7,6,1,5,7,7,5,7,6,4,1,7,7,7,7,6,6,7,1,3,5,6,7,7,3,5,6,7,7,4,2,2,5,3,1,1,1,1,1,7,1,6,1,7,2,5,6,1,3,3,6,7,6,3,5,3,2,7,4,6,4,7,7,5,6,2,7,1,5,7,4,5,1,1,7,4,1,1,3,7,7,7,7,1,6,7,7,6,7,7,7,7,3,4,1,7,6,2,7,6,1,7
6085,3193,3262,Santa Clara Count,CA,1,1,4,1,7,7,6,7,7,4,6,3,7,3,7,6,7,6,7,7,7,6,6,7,6,3,7,7,7,5,7,3,6,5,7,7,7,7,6,6,7,1,5,6,4,6,5,2,7,6,6,7,4,2,1,6,5,1,2,5,1,1,7,1,7,1,7,4,5,7,3,2,4,7,7,6,4,6,6,2,7,3,4,5,5,6,5,5,1,7,1,1,7,6,2,1,2,7,3,1,1,1,7,7,7,7,1,7,6,1,5,7,7,7,7,3,7,1,4,6,2,7,3,1,7
6087,434,472,Santa Cruz County,CA,1,1,7,1,6,7,4,7,7,4,5,3,7,3,7,5,6,5,7,7,6,4,6,6,6,1,6,6,7,3,7,4,4,2,7,7,7,7,6,5,7,3,5,5,5,7,4,3,4,6,5,7,3,2,2,5,7,1,4,1,7,1,7,1,7,1,7,5,6,6,3,2,4,6,7,4,1,3,6,2,7,4,5,6,7,7,4,7,3,7,2,3,7,5,5,1,3,7,6,1,1,1,7,7,7,7,1,6,7,7,4,7,7,7,7,1,4,1,5,7,2,7,7,1,7
6089,261,311,Shasta County,CA,1,1,5,1,6,7,5,5,7,4,4,2,7,1,7,4,5,6,7,6,6,4,5,7,5,1,5,3,7,3,6,4,3,1,6,7,7,6,5,7,7,3,5,3,4,7,7,3,5,4,2,5,3,4,4,5,2,1,3,1,1,5,1,1,1,1,6,4,6,7,5,2,2,6,7,3,2,3,1,6,6,3,7,5,6,7,4,6,4,7,2,5,5,6,7,1,1,6,6,1,1,1,7,7,6,7,1,7,7,1,5,6,6,5,7,2,4,1,1,3,1,6,6,1,4
6091,3,9,Sierra County,CA,4,1,2,1,1,4,2,5,5,4,1,2,6,2,7,2,1,1,4,3,4,1,1,1,1,1,1,2,2,1,2,2,1,1,3,6,3,1,2,1,2,2,1,1,3,6,1,2,1,2,3,6,2,2,6,4,2,1,1,1,1,6,1,1,1,1,5,2,6,7,3,1,1,6,3,1,6,2,2,2,1,3,1,6,6,7,7,1,6,6,7,3,5,6,7,1,5,4,1,1,1,1,2,1,1,1,1,7,7,1,3,1,7,5,5,2,1,1,1,1,1,7,6,1,4
6093,54,80,Siskiyou County,CA,3,1,2,7,2,6,2,3,6,4,3,1,5,2,7,4,3,1,5,4,3,2,7,1,2,1,1,2,3,1,2,2,1,2,4,6,3,2,2,2,3,7,1,4,6,7,1,2,1,2,2,5,2,6,7,5,7,1,1,1,1,6,1,1,1,1,5,1,6,7,5,1,3,6,5,7,5,2,1,3,5,6,7,3,7,6,4,1,5,6,5,6,6,6,7,1,1,5,4,2,1,1,3,3,3,5,1,7,7,1,3,3,7,6,6,5,3,1,1,4,1,5,7,1,4
6095,677,582,Solano County,CA,1,1,3,1,6,7,4,7,7,4,5,3,7,4,7,5,6,4,7,7,7,5,6,7,6,1,5,6,6,3,7,5,4,2,7,7,7,6,5,5,7,2,4,5,5,7,4,2,5,4,6,7,4,2,2,5,7,1,2,5,1,1,7,1,7,1,7,7,5,6,5,2,2,7,7,6,2,7,5,2,7,2,4,5,3,3,5,6,3,7,1,2,7,6,5,5,5,7,5,1,1,1,7,7,7,7,1,7,7,1,5,7,6,7,7,5,6,1,4,7,2,7,3,1,7
6097,567,558,Sonoma County,CA,1,1,3,1,6,7,6,7,7,4,5,2,7,3,7,5,7,5,7,7,7,6,6,7,6,1,4,6,7,3,7,2,4,6,7,7,7,7,6,5,7,6,5,4,7,7,5,2,5,4,6,6,3,2,4,4,7,7,4,1,1,1,7,1,7,1,7,3,6,6,5,3,5,7,7,5,2,3,6,2,7,4,6,6,7,7,5,5,3,7,1,2,7,6,3,2,2,7,3,1,1,1,7,7,7,7,1,7,7,7,3,7,6,7,7,3,3,1,5,7,1,7,6,1,7
6099,684,706,Stanislaus County,CA,1,1,3,1,6,7,3,7,7,4,4,6,7,3,7,5,6,5,7,7,7,5,6,7,6,1,4,3,7,3,7,3,4,1,7,7,7,6,6,6,7,1,5,7,6,7,7,2,5,5,5,7,7,2,3,5,4,7,5,5,1,1,6,1,6,1,5,4,5,7,5,1,7,7,7,6,3,4,4,3,6,3,3,4,4,5,3,5,5,7,1,5,7,2,7,1,3,6,4,1,1,1,7,7,7,7,1,7,7,1,4,7,7,7,7,4,4,1,2,7,2,7,3,1,7
6101,189,199,Sutter County,CA,1,1,5,1,7,7,4,6,7,4,4,2,7,2,7,5,5,5,7,7,6,4,5,7,5,2,4,3,6,3,7,7,3,1,7,7,7,6,5,5,6,3,5,4,6,7,6,2,4,4,3,7,3,2,4,5,4,1,1,1,1,1,6,1,6,1,5,4,6,7,5,5,3,7,7,1,1,3,6,4,5,2,4,4,5,6,4,6,4,7,1,5,7,3,7,3,6,7,5,1,1,1,6,7,6,6,1,7,7,1,4,6,7,5,7,5,4,1,2,7,2,6,4,1,4
6103,83,86,Tehama County,CA,2,1,3,1,4,5,4,5,6,4,2,1,7,2,7,3,4,3,6,6,4,2,4,4,4,1,3,2,5,2,6,3,2,1,6,6,7,4,4,6,5,6,3,2,7,7,2,2,4,2,3,7,3,2,6,4,2,1,1,1,1,4,3,1,3,1,6,3,6,7,5,1,2,7,7,6,1,4,1,2,5,3,4,3,4,4,5,1,5,6,4,6,7,3,7,1,3,5,7,1,1,1,5,7,4,6,1,7,7,1,3,4,7,5,7,4,6,1,1,6,1,6,4,1,3
6105,8,5,Trinity County,CA,4,1,1,1,1,2,2,4,4,4,1,1,2,1,7,2,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,3,2,2,1,1,1,1,3,1,1,3,6,1,2,1,1,2,6,2,3,6,7,7,1,1,1,1,4,4,1,4,1,7,2,6,7,5,1,1,2,2,1,2,2,1,3,3,3,4,1,5,2,6,1,3,6,7,6,4,5,7,1,2,2,5,1,1,1,1,1,1,2,1,7,7,1,4,1,7,5,3,1,1,1,3,2,1,6,7,1,4
6107,566,619,Tulare County,CA,1,1,3,1,6,7,5,7,7,4,4,7,7,4,7,5,5,5,7,7,6,5,5,7,7,1,5,4,6,5,7,4,5,6,7,7,7,6,5,5,7,2,7,7,7,7,4,3,3,5,6,7,5,2,4,5,1,1,1,1,1,1,4,1,4,1,5,4,6,7,3,1,7,7,7,7,3,2,3,2,6,2,4,3,3,3,3,5,5,7,2,7,7,1,7,1,1,5,7,1,1,1,6,7,7,7,1,7,7,1,2,7,7,7,7,5,4,1,1,7,1,6,2,1,7
6109,71,66,Tuolumne County,CA,2,1,3,1,4,6,1,6,6,4,2,2,7,2,7,3,3,2,7,5,6,2,4,3,3,1,2,3,5,2,5,1,2,1,6,7,6,4,3,3,5,4,3,3,5,7,2,1,2,3,3,6,3,2,2,5,2,1,1,1,1,4,4,1,4,1,6,5,6,7,3,1,1,5,5,6,1,4,1,3,5,5,7,5,6,6,4,1,7,6,7,3,5,6,6,2,2,4,1,1,1,1,5,3,4,6,1,7,7,1,3,4,7,5,7,2,2,1,1,2,1,7,7,1,5
6111,1159,1170,Ventura County,CA,1,1,3,1,6,7,4,7,7,1,6,7,7,6,7,6,7,6,7,7,7,6,7,7,6,7,5,6,7,7,7,7,4,7,7,7,7,7,6,7,7,3,6,5,5,7,5,3,6,6,7,7,5,2,1,6,5,1,2,5,7,1,6,1,6,1,6,3,6,6,1,3,3,6,7,1,3,4,4,2,6,3,4,4,6,7,4,5,2,6,1,2,7,4,4,5,3,7,3,1,1,3,7,7,7,7,1,7,7,7,6,7,7,7,7,2,4,1,6,7,2,7,5,1,7
6113,425,401,Yolo County,CA,1,1,2,1,6,7,5,7,7,4,5,3,7,3,7,6,6,6,7,7,7,5,6,7,7,3,5,5,7,3,7,7,3,1,7,7,7,6,5,5,7,1,5,4,7,7,7,3,6,4,6,6,3,2,3,5,5,1,1,1,1,1,7,1,7,1,7,5,5,7,5,4,3,7,7,5,7,7,7,4,7,3,4,6,6,5,6,6,3,7,1,6,7,4,6,1,4,7,7,1,1,1,7,7,7,7,1,7,7,1,4,7,6,7,7,6,4,1,4,7,2,7,6,1,7
6115,133,132,Yuba County,CA,1,1,4,1,6,7,4,6,7,4,2,2,7,2,7,4,4,4,7,7,6,3,5,5,5,2,4,3,6,2,6,5,2,1,7,7,7,5,4,4,6,1,2,4,6,7,3,3,5,3,4,6,3,2,5,4,3,1,2,1,1,4,5,1,5,1,6,2,7,7,3,3,2,7,7,1,2,3,2,2,6,4,5,3,5,3,4,5,5,7,3,7,7,2,7,1,6,6,7,1,1,1,5,7,5,6,1,7,7,1,4,6,6,6,7,3,3,1,1,7,1,5,3,1,4
8001,983,1031,Adams County,CO,1,1,2,1,6,7,1,7,7,1,6,7,7,6,6,5,7,6,7,7,7,7,7,7,6,3,1,7,7,7,7,6,6,7,7,6,6,7,5,6,7,7,7,5,7,6,5,7,7,5,7,3,1,3,2,6,3,1,6,6,1,6,2,6,2,2,4,7,3,5,1,3,4,7,6,1,3,6,6,2,7,6,3,3,3,3,5,1,2,6,1,2,7,4,3,5,7,7,6,2,1,7,7,7,7,7,7,6,7,1,6,7,5,7,6,5,6,1,5,4,2,7,2,6,6
8003,12,13,Alamosa County,CO,3,1,1,1,4,3,1,5,1,1,6,3,1,3,1,4,3,1,2,3,3,4,3,1,2,1,1,3,4,2,3,2,2,1,5,1,2,4,2,2,4,3,1,5,1,1,1,1,2,2,5,7,1,2,4,1,1,1,2,1,1,7,5,4,1,1,5,7,6,6,3,1,4,7,7,7,1,5,1,6,1,6,7,4,7,7,4,1,7,7,3,7,7,5,7,1,2,6,6,1,1,1,5,1,3,3,1,7,7,1,4,2,7,7,4,6,1,1,1,7,1,5,7,5,5
8005,1346,1463,Arapahoe County,CO,1,1,2,1,6,7,1,6,7,1,6,7,5,4,6,5,7,5,7,6,7,7,7,7,6,4,1,5,7,5,7,7,5,7,7,4,5,7,4,6,7,7,6,5,4,5,5,4,7,5,7,3,1,2,2,6,3,1,5,5,1,7,2,6,2,2,4,7,4,6,1,3,2,6,5,1,1,4,5,2,7,4,3,6,6,7,5,1,1,6,1,1,7,7,1,6,6,7,4,2,1,7,7,6,7,7,7,6,7,1,6,7,5,7,4,3,5,1,6,1,2,7,5,6,7
8007,10,10,Archuleta County,CO,3,1,1,1,2,3,1,4,1,1,6,2,1,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,2,2,1,2,1,1,3,1,1,2,1,2,2,1,1,5,1,1,1,3,1,1,2,7,1,3,6,6,1,1,3,1,1,7,1,3,1,1,4,6,5,7,3,2,3,5,5,1,1,3,1,7,1,6,1,5,7,7,1,1,7,3,7,3,6,7,3,1,1,4,7,2,1,1,2,1,1,2,1,6,7,1,6,1,6,4,1,1,1,1,1,1,2,7,7,5,2
8009,2,2,Baca County,CO,4,1,1,1,1,1,1,3,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,5,1,1,6,1,1,1,7,2,6,2,2,3,5,5,5,1,1,2,6,3,1,7,2,1,2,1,5,7,6,1,7,7,1,7,3,6,6,5,4,1,3,1,1,5,1,1,1,1,1,1,1,1,4,6,1,4,1,5,2,1,6,1,1,4,2,1,1,1,7,7
8011,0,1,Bent County,CO,3,1,1,1,1,1,1,3,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,1,1,3,1,1,5,1,5,1,1,1,1,7,2,6,1,2,3,5,3,4,1,2,4,7,5,1,1,4,1,1,3,4,7,4,6,4,6,1,7,6,5,6,7,3,4,5,4,2,5,1,1,1,1,1,1,1,1,4,5,1,7,1,6,3,1,3,1,1,3,1,1,2,6,7,6
8013,523,626,Boulder County,CO,1,1,2,1,6,6,1,6,7,1,6,7,5,4,5,5,7,3,6,6,7,6,7,7,5,1,1,7,7,6,7,6,5,7,7,4,6,7,4,5,7,6,6,5,4,7,4,4,6,5,7,7,2,3,1,7,6,1,7,5,1,5,1,5,1,2,7,7,5,7,1,4,3,6,7,6,4,3,5,4,7,4,5,6,7,7,4,1,1,7,1,2,6,7,3,6,2,7,4,2,1,7,7,6,7,7,7,7,7,1,7,7,6,7,4,4,7,1,1,6,2,7,6,5,6
8015,18,16,Chaffee County,CO,3,1,1,1,3,2,1,4,3,1,6,3,2,1,1,2,3,1,3,1,2,3,3,1,3,1,1,1,2,3,2,5,5,5,2,2,3,3,1,2,2,4,1,7,1,7,1,3,1,2,2,5,1,2,4,6,5,1,4,1,1,7,1,4,1,2,6,7,6,7,1,1,1,6,6,1,2,7,1,6,5,6,4,6,7,7,6,1,4,5,6,3,6,7,3,2,1,4,4,1,1,1,3,5,4,3,1,7,7,1,4,2,7,4,3,1,1,1,2,3,2,7,7,5,6
8017,4,3,Cheyenne County,CO,4,1,1,1,1,1,1,4,1,1,1,3,1,2,1,3,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,4,3,1,1,5,1,1,1,1,1,1,7,3,6,2,2,3,6,5,5,1,2,2,6,2,1,4,6,1,1,1,7,1,7,1,5,1,1,7,4,6,3,5,6,1,6,1,1,4,1,1,1,1,1,1,1,1,4,6,1,4,1,5,6,1,5,1,1,6,3,1,3,1,7,6
8019,12,9,Clear Creek Count,CO,1,1,1,1,4,7,1,6,6,1,6,4,2,4,3,4,4,1,3,3,2,2,4,4,2,1,1,4,3,5,4,6,2,3,2,3,2,3,2,2,4,3,1,7,1,1,1,3,3,2,6,6,2,3,4,5,6,1,6,1,1,7,1,5,1,2,5,7,6,7,1,7,1,1,2,1,4,7,1,6,7,6,1,4,7,3,5,1,7,4,6,1,3,7,1,4,7,5,4,1,1,5,4,3,2,2,4,7,7,1,4,2,6,7,1,1,2,1,2,2,2,7,7,5,6
8021,1,1,Conejos County,CO,4,1,1,1,1,4,1,4,1,1,3,2,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,1,1,1,1,1,2,3,1,3,1,1,1,3,1,1,3,6,1,3,6,1,2,1,1,1,1,7,4,3,1,1,5,6,6,7,3,1,2,7,7,7,1,2,1,2,4,6,1,1,1,3,1,1,7,2,7,7,7,2,5,2,5,1,6,1,1,1,1,1,1,2,1,6,7,1,3,1,7,6,1,4,1,1,1,5,1,2,3,4,6
8025,1,0,Crowley County,CO,4,1,1,1,1,1,1,4,2,1,1,3,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,4,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,1,2,3,4,6,1,2,1,1,7,2,6,1,2,4,6,4,6,1,6,2,6,4,1,4,1,3,1,5,6,1,2,1,1,1,1,1,5,4,6,7,4,4,4,5,1,5,1,1,4,1,2,1,1,3,6,7,1,7,1,6,3,1,2,1,1,4,2,1,2,1,6,2
8027,1,1,Custer County,CO,4,1,1,1,1,1,1,4,2,1,2,3,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3,1,4,1,2,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,2,1,5,1,2,7,1,1,1,1,1,1,7,4,5,1,2,6,7,6,7,1,5,4,6,4,1,1,1,2,1,1,7,1,5,7,2,1,1,2,2,7,4,3,7,2,1,3,1,4,1,1,4,1,1,1,1,4,7,7,1,6,1,7,2,1,1,1,1,3,1,1,7,7,5,2
8029,66,57,Delta County,CO,3,3,1,1,2,2,1,4,2,1,5,3,1,2,3,3,2,1,1,2,2,2,2,1,2,1,1,2,2,2,2,1,1,2,2,1,2,2,1,2,2,4,1,5,1,1,1,3,1,1,4,7,1,2,5,6,4,1,5,1,1,7,1,2,1,1,6,6,5,5,1,4,4,7,7,4,2,3,1,3,1,7,6,4,7,6,2,1,4,3,4,4,6,4,4,4,3,2,5,1,1,4,3,2,2,4,3,6,6,1,7,1,6,6,2,4,1,1,2,5,2,6,6,4,6
8031,1235,1251,Denver County,CO,1,1,3,1,7,7,1,6,7,1,6,7,6,7,6,5,7,7,7,6,7,7,7,7,6,4,1,6,7,7,7,7,6,7,7,5,6,7,5,6,7,7,6,6,6,4,6,6,7,6,7,7,3,2,1,7,2,1,7,7,1,7,1,5,1,2,6,7,5,7,1,7,1,1,4,1,3,4,5,5,7,6,7,6,7,7,7,1,2,7,1,5,7,4,4,1,5,7,6,2,1,7,7,7,7,7,7,7,7,1,7,7,6,7,5,1,6,1,4,1,3,7,5,5,5
8033,2,2,Dolores County,CO,4,1,1,1,1,1,1,3,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,4,1,1,2,1,1,1,1,1,1,1,5,1,1,1,1,1,3,1,1,1,3,1,2,6,7,2,1,1,1,1,7,1,4,1,1,5,6,2,3,1,5,1,6,4,1,7,2,1,7,1,7,1,1,7,1,1,1,1,4,7,4,5,3,5,1,5,1,6,1,1,4,1,1,1,1,2,5,5,1,6,1,5,2,1,3,1,1,2,1,2,4,6,5,2
8035,1306,1395,Douglas County,CO,1,1,2,1,5,6,1,5,7,1,5,6,3,2,4,3,6,3,6,4,5,5,6,7,5,2,1,3,6,5,6,6,3,6,6,3,4,5,3,5,6,6,1,3,3,3,3,3,5,2,6,7,2,2,3,5,1,1,6,1,1,7,1,6,1,2,5,7,5,7,1,1,4,5,5,6,1,4,5,2,7,3,3,5,5,4,4,1,3,1,1,1,5,7,1,7,7,6,1,2,1,7,6,5,6,7,6,5,7,1,6,5,4,6,2,3,4,1,3,2,3,7,4,5,6
8037,156,152,Eagle County,CO,2,1,1,1,4,3,1,4,1,1,6,3,1,1,1,1,3,1,2,2,3,2,4,2,4,1,1,1,4,3,2,5,2,1,2,1,1,2,1,3,2,2,1,5,1,1,1,3,2,2,1,5,1,2,2,5,1,1,4,1,1,7,1,2,1,2,6,6,5,6,3,3,1,6,4,1,1,7,1,6,7,7,5,6,7,6,7,1,3,7,7,1,7,7,1,3,2,7,1,1,1,1,4,1,2,5,1,7,6,1,7,2,6,4,1,1,1,1,1,1,1,7,7,4,6
8039,42,33,Elbert County,CO,1,1,1,1,2,2,1,5,5,1,3,4,2,1,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,4,1,5,1,4,3,1,1,2,1,1,1,3,1,2,1,3,1,3,1,2,3,3,1,2,7,1,5,1,2,1,1,7,2,7,1,2,4,7,4,4,1,2,3,6,3,1,1,4,2,3,6,4,1,1,6,1,3,1,3,1,1,1,4,7,1,7,7,1,4,2,1,5,2,2,1,3,4,6,7,1,6,2,4,4,1,3,2,1,5,1,2,7,5,6,6
8041,1352,1357,El Paso County,CO,1,1,2,1,6,6,1,6,6,1,7,7,6,3,6,4,6,1,7,5,7,7,7,6,5,1,1,3,6,5,6,5,4,5,6,5,4,6,4,5,6,6,1,7,1,6,4,1,6,3,5,6,1,2,2,6,7,1,5,6,1,7,2,6,2,2,4,7,5,7,1,3,2,6,4,1,2,3,4,2,6,5,5,5,6,7,3,1,3,7,1,1,6,7,3,6,1,7,6,1,1,7,7,6,7,7,7,3,7,1,6,6,4,7,3,1,1,1,5,3,2,7,3,6,7
8043,32,21,Fremont County,CO,2,1,1,1,4,2,1,5,2,1,5,4,2,2,2,3,3,1,3,3,3,4,3,2,3,1,1,3,3,3,3,5,4,3,3,3,3,4,2,3,4,3,1,3,1,4,2,1,2,2,5,5,1,2,2,7,3,1,2,1,1,7,2,5,1,2,6,7,6,7,1,7,2,6,7,1,1,5,1,1,5,6,5,2,6,5,3,1,3,4,4,3,5,4,2,2,3,5,5,1,1,5,5,4,5,5,4,7,7,1,7,2,7,6,2,1,1,1,3,2,2,6,5,5,6
8045,125,131,Garfield County,CO,2,3,1,1,5,7,1,4,2,1,6,3,2,2,1,2,2,1,2,3,3,3,4,2,4,1,1,2,4,2,3,1,2,2,2,1,2,3,2,4,3,2,1,7,2,1,1,3,2,1,3,7,1,2,4,6,3,1,5,1,1,7,2,3,1,1,3,5,3,5,1,3,2,6,6,6,1,6,1,7,7,7,6,5,7,7,5,1,2,7,2,1,7,6,1,2,3,6,4,1,1,3,5,2,3,5,1,5,5,1,7,4,7,6,2,2,1,1,3,1,2,7,7,5,6
8047,3,1,Gilpin County,CO,1,1,1,1,3,6,1,5,6,1,5,4,2,1,4,1,3,1,3,4,2,2,4,4,2,1,1,3,3,5,3,6,2,4,3,2,3,3,2,1,2,7,1,5,1,5,2,3,2,2,2,6,2,3,7,6,2,1,6,1,1,6,1,5,1,2,7,7,6,7,1,5,1,1,1,1,1,1,3,2,6,1,1,7,7,1,7,1,4,3,7,1,4,7,1,1,7,6,4,2,1,5,4,3,2,1,5,7,7,1,5,3,6,5,1,1,3,1,1,1,2,7,4,5,3
8049,15,21,Grand County,CO,4,1,1,1,2,4,1,4,1,1,3,4,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,4,1,5,1,2,2,1,1,1,1,1,2,4,1,3,1,3,1,2,1,2,2,5,1,2,4,5,1,1,3,1,1,5,1,3,1,2,5,7,6,7,1,2,2,6,5,1,2,6,1,7,7,7,5,5,7,6,6,1,5,6,7,1,5,7,1,1,2,7,3,1,1,4,2,1,1,2,3,7,7,1,5,1,6,5,1,1,1,1,2,1,2,7,7,5,6
8051,8,15,Gunnison County,CO,3,1,1,1,4,2,1,5,1,1,6,3,1,3,1,4,3,1,1,2,3,2,3,1,3,1,1,3,3,3,2,4,2,1,6,1,2,3,1,3,4,1,1,6,1,1,1,3,1,2,6,7,1,2,3,5,2,1,2,1,1,7,1,2,1,1,6,7,6,7,1,2,3,5,4,1,1,2,1,5,7,7,4,2,7,5,7,1,5,7,7,5,5,7,4,1,1,7,5,1,1,1,3,1,2,3,1,7,7,1,6,2,7,7,2,1,1,1,1,1,2,7,7,4,6
8053,1,0,Hinsdale County,CO,4,1,1,1,1,1,1,3,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,3,1,1,1,6,1,3,5,1,3,1,1,1,1,7,1,3,1,1,5,7,7,7,3,1,1,3,2,1,1,1,2,7,5,1,1,7,7,7,1,1,1,7,7,1,4,7,1,1,2,1,6,1,1,1,1,1,1,1,1,7,7,1,6,1,7,3,1,1,1,1,1,1,2,7,7,4,2
8055,4,0,Huerfano County,CO,3,1,1,1,2,2,1,5,2,1,4,3,1,3,1,4,1,1,1,2,1,1,1,1,1,1,1,3,1,3,1,3,1,2,1,2,1,1,1,1,3,2,1,3,1,1,1,1,1,2,5,4,1,2,4,6,3,1,2,1,1,7,3,5,1,1,5,7,6,7,1,6,3,6,3,1,1,7,1,7,4,7,6,3,6,6,6,1,7,6,7,6,7,4,7,1,2,2,6,1,1,4,2,2,1,2,4,6,7,1,7,1,7,7,1,1,1,1,3,1,1,3,7,5,6
8059,1234,1265,Jefferson County,CO,1,1,2,1,6,7,1,7,7,1,6,7,4,5,5,5,7,5,6,6,7,7,7,7,6,4,1,7,6,7,7,7,5,7,6,4,6,6,4,5,7,6,5,5,3,5,5,5,7,4,7,7,2,2,3,6,3,1,7,5,1,7,1,6,1,2,5,7,6,7,1,4,2,5,6,1,2,4,5,3,7,5,3,6,6,7,5,1,2,5,1,1,6,7,1,7,6,7,4,2,1,7,7,6,7,7,7,6,7,1,5,7,6,7,6,1,6,1,2,2,3,7,5,5,6
8061,3,1,Kiowa County,CO,4,1,1,1,1,1,1,3,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,5,1,1,1,1,2,1,1,1,1,1,1,4,1,1,5,1,4,1,1,1,1,7,3,6,2,2,4,6,4,5,1,2,2,4,1,1,7,2,2,2,5,6,1,1,1,4,1,1,7,6,6,4,3,6,1,5,2,1,4,1,1,1,1,1,1,1,1,5,7,1,7,1,5,2,1,4,1,1,5,1,1,1,1,7,6
8063,7,8,Kit Carson County,CO,3,1,1,1,1,1,1,4,1,1,1,3,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,5,1,1,6,1,1,1,7,2,7,1,2,1,6,4,4,1,3,2,7,6,1,7,6,1,7,4,4,1,3,4,5,7,1,7,5,5,4,6,3,1,6,1,5,4,1,1,1,1,1,1,2,1,5,6,1,3,1,5,6,1,7,1,1,6,5,1,4,7,7,7
8065,11,8,Lake County,CO,3,1,1,1,3,6,1,4,1,1,6,3,1,1,1,2,4,1,2,2,2,2,3,2,2,1,1,2,2,4,3,5,1,1,5,3,1,2,1,2,2,3,1,6,2,4,1,3,3,2,2,6,1,2,5,6,7,1,5,1,1,7,1,3,1,2,7,7,6,7,1,6,1,2,3,1,4,6,2,5,7,7,1,3,7,3,6,1,5,6,7,4,7,4,5,1,6,7,4,1,1,1,4,1,2,2,1,7,7,1,5,2,5,6,2,1,1,1,2,1,1,6,7,4,6
8067,113,123,La Plata County,CO,3,1,2,1,5,7,1,3,2,1,7,2,2,1,2,1,4,1,6,2,4,5,5,2,4,1,1,1,5,6,4,2,3,2,2,5,3,5,2,4,4,4,1,7,1,1,2,4,2,1,1,6,1,2,4,6,2,1,4,1,1,7,1,3,1,1,4,7,4,6,3,1,4,7,7,1,2,4,1,7,6,7,6,6,7,7,7,1,5,6,6,3,6,7,4,2,1,6,4,2,1,4,6,3,5,5,3,6,6,1,5,3,6,5,2,2,1,1,2,1,3,7,7,5,6
8069,707,819,Larimer County,CO,1,1,2,1,5,5,1,5,3,1,6,4,3,2,3,2,5,1,4,4,4,5,5,6,5,1,1,3,6,4,6,5,3,3,5,3,6,6,3,4,6,5,6,4,3,7,3,1,5,2,5,5,1,2,1,7,2,1,5,5,1,5,1,5,1,2,4,7,5,7,1,1,3,6,7,6,2,4,5,4,6,5,4,6,7,7,4,1,4,6,2,2,6,7,2,6,2,7,3,1,1,5,6,4,6,7,5,5,7,1,5,5,6,6,3,4,5,1,3,5,2,7,7,6,6
8071,11,17,Las Animas County,CO,3,1,1,1,2,6,1,5,1,1,4,2,1,4,1,5,3,1,1,2,3,2,2,1,2,1,1,4,2,2,3,1,1,2,1,1,1,2,1,2,3,1,1,4,1,1,1,1,1,2,6,2,1,1,4,6,5,1,2,1,1,7,1,6,1,1,4,6,4,5,1,2,1,6,2,1,1,3,1,1,5,7,4,1,7,5,3,1,4,6,6,6,7,3,4,1,1,5,5,2,1,1,3,1,3,3,1,5,6,1,7,1,6,7,3,1,1,1,3,1,1,4,6,6,2
8073,3,3,Lincoln County,CO,4,1,1,1,1,1,1,4,1,1,1,3,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,7,1,1,1,2,1,2,1,1,3,4,5,1,1,1,1,7,3,6,2,2,3,6,5,5,1,1,2,6,2,1,6,5,2,6,1,2,7,2,6,5,7,1,7,6,5,3,5,5,1,5,1,3,4,1,1,1,1,1,1,1,1,5,6,1,6,1,5,2,1,5,1,1,6,1,1,4,5,6,5
8075,32,30,Logan County,CO,3,1,1,1,3,1,5,4,2,1,3,3,1,1,3,1,2,1,1,1,2,2,2,2,2,1,1,1,2,3,2,2,1,2,2,1,1,2,1,2,3,3,1,1,1,6,1,1,1,2,2,1,1,2,5,1,1,7,2,1,1,7,3,7,2,2,2,6,4,4,1,1,5,7,6,6,4,6,2,2,1,6,3,5,6,7,6,1,5,6,4,4,6,5,2,4,1,5,3,1,1,4,3,2,2,4,4,3,6,1,3,2,6,4,1,6,2,1,7,3,1,5,5,6,7
8077,362,394,Mesa County,CO,1,4,2,1,5,5,1,5,7,1,6,3,2,2,1,2,5,1,4,4,5,5,5,4,5,1,7,2,6,2,6,1,3,3,5,5,3,6,3,7,6,4,1,6,1,6,2,4,7,2,3,7,2,2,3,7,3,1,3,1,1,7,1,3,1,1,3,4,2,3,1,3,2,6,7,5,3,5,1,2,5,6,3,6,7,7,5,1,3,5,1,3,6,6,4,3,1,6,4,1,1,5,6,4,7,6,4,4,4,1,5,5,5,5,3,4,1,1,4,5,2,6,7,5,6
8081,51,71,Moffat County,CO,3,4,1,1,3,5,1,5,3,1,7,3,3,2,5,2,4,1,2,3,2,2,2,1,2,1,1,2,2,2,3,1,2,5,2,3,4,4,1,2,2,7,1,7,1,7,1,3,2,1,2,2,1,2,4,7,3,1,1,1,1,7,4,3,3,1,4,5,3,3,1,6,2,6,3,6,1,3,1,7,7,7,4,3,6,6,6,1,5,5,4,2,6,4,4,3,3,7,3,1,1,7,4,6,4,3,7,4,5,1,5,2,6,5,3,3,1,1,6,3,2,6,7,5,6
8083,27,8,Montezuma County,CO,3,1,1,1,3,6,1,3,2,1,6,2,2,2,1,2,2,1,2,2,2,2,3,1,2,1,1,2,2,1,2,1,2,3,1,2,2,2,2,2,2,4,1,6,1,6,1,3,2,1,3,3,1,2,1,7,2,1,2,1,1,7,2,4,2,1,3,4,1,3,1,1,2,7,7,6,2,4,1,5,3,5,6,4,7,7,3,1,3,4,4,5,6,5,6,2,2,2,6,1,1,5,3,3,2,4,5,3,4,1,4,2,5,6,2,2,1,1,2,1,3,6,7,6,6
8085,56,43,Montrose County,CO,3,3,1,1,4,4,1,5,2,1,6,2,2,1,2,1,3,1,2,3,4,4,4,2,4,1,1,1,4,2,4,1,2,3,3,2,3,4,2,3,4,4,1,6,1,6,1,3,2,1,1,6,1,2,4,7,6,1,2,1,1,7,1,2,1,1,3,4,1,2,1,1,2,6,7,6,2,2,1,5,3,7,1,5,7,7,4,1,3,4,2,4,6,5,3,3,2,5,4,1,1,4,5,3,4,5,4,3,4,1,7,3,4,3,3,4,1,1,4,4,2,6,6,5,2
8087,155,152,Morgan County,CO,3,1,1,1,4,2,1,5,3,1,5,4,3,2,4,2,3,1,4,1,3,3,3,4,2,1,1,2,3,3,4,5,2,4,2,2,3,4,1,2,3,5,5,3,1,5,1,1,2,2,3,1,1,2,2,5,3,6,4,1,1,5,4,6,3,2,3,6,5,4,1,2,4,7,7,7,4,6,6,3,1,6,3,3,3,6,4,1,6,6,3,4,7,2,2,4,1,5,2,1,1,6,5,5,5,4,6,3,5,1,4,2,5,6,3,6,1,1,7,6,1,5,3,6,2
8089,17,14,Otero County,CO,3,1,2,1,3,2,1,5,1,1,5,3,1,3,3,4,3,1,1,1,2,2,2,1,2,1,1,3,2,2,2,1,2,2,1,1,2,2,1,2,3,4,1,4,1,6,1,1,1,2,6,2,1,1,1,4,6,7,3,1,1,7,2,6,1,2,4,6,4,5,1,1,2,7,7,6,3,5,2,5,5,7,1,6,5,6,7,1,1,6,3,6,7,3,7,3,2,6,5,1,1,4,4,2,4,3,3,6,6,1,7,2,7,7,3,4,1,1,3,3,1,3,3,6,7
8091,4,3,Ouray County,CO,4,1,1,1,1,1,1,3,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,5,1,1,1,7,1,3,1,1,1,6,1,2,5,5,6,1,4,1,1,7,1,3,1,1,6,7,4,6,1,2,2,7,6,6,7,6,1,7,3,7,1,6,7,7,1,1,7,5,7,1,5,7,2,4,4,2,6,1,1,3,1,1,1,1,2,7,6,1,7,1,6,3,1,2,1,1,1,1,2,7,7,4,6
8093,28,25,Park County,CO,1,1,1,1,2,7,1,4,2,1,3,4,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,4,2,6,1,2,1,1,1,1,1,1,1,4,1,7,1,6,1,2,1,2,1,5,1,2,7,4,2,1,2,1,1,7,2,5,2,2,5,7,6,7,1,2,2,5,2,1,1,3,1,4,7,5,1,5,7,2,4,1,1,1,7,1,4,7,1,1,7,1,4,1,1,4,2,1,1,3,3,7,7,1,6,1,7,6,1,1,1,1,5,1,2,7,7,5,6
8095,5,5,Phillips County,CO,4,1,1,1,1,1,1,3,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,6,1,1,1,1,1,1,1,1,4,1,1,1,2,1,1,7,2,7,1,2,2,6,4,4,1,3,4,7,7,6,6,2,2,3,1,7,7,7,5,7,1,1,1,4,4,3,6,5,1,6,1,3,3,1,1,1,1,1,1,1,1,3,6,1,2,1,5,3,1,7,1,1,7,6,1,4,7,7,6
8097,28,35,Pitkin County,CO,3,1,1,1,4,2,1,4,1,1,4,3,1,1,1,1,5,1,1,2,2,1,3,1,3,1,1,1,3,3,1,5,2,1,3,1,1,2,1,2,2,4,1,2,1,5,1,3,1,2,2,7,1,2,2,6,1,1,5,1,1,7,1,2,1,2,7,7,5,6,1,3,1,5,5,5,1,1,2,7,7,7,6,7,7,7,7,1,5,7,7,1,6,7,1,1,1,7,4,1,1,1,3,1,1,3,1,7,7,1,7,2,6,4,1,2,1,1,1,3,1,7,7,4,6
8099,5,10,Prowers County,CO,3,1,1,1,2,2,1,3,1,1,3,2,1,1,1,1,3,1,1,1,2,2,2,4,1,1,1,1,1,2,4,1,1,1,2,1,1,2,3,7,2,3,1,2,2,5,1,1,7,1,1,5,1,1,3,4,5,6,2,1,1,7,2,6,2,2,3,6,6,6,1,2,3,7,6,1,3,5,1,6,3,7,4,4,6,5,1,1,2,7,4,6,7,2,2,2,1,5,4,1,1,1,3,2,4,3,1,4,6,1,6,2,6,2,3,5,1,1,5,3,1,3,6,7,6
8101,179,192,Pueblo County,CO,1,1,5,1,6,5,1,5,5,1,7,4,6,2,5,2,5,1,6,4,5,6,5,5,5,1,1,2,6,3,6,4,6,5,6,7,7,6,2,5,6,7,1,7,1,3,3,1,5,2,3,7,1,2,1,7,6,1,3,5,1,7,2,6,1,2,4,6,5,6,1,1,1,6,6,1,2,5,2,5,6,7,3,4,6,7,2,1,4,6,2,5,7,5,5,3,1,6,7,1,1,7,6,7,6,7,7,6,7,1,7,5,6,5,3,3,1,1,3,3,1,5,5,6,6
8103,5,12,Rio Blanco County,CO,4,4,1,1,1,4,1,3,2,1,1,3,2,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,3,4,1,1,1,1,1,1,4,1,2,1,4,1,3,1,1,2,3,1,2,4,5,3,1,2,1,1,7,4,3,2,1,3,5,2,3,1,4,2,6,4,1,6,3,1,7,2,7,1,4,7,6,6,1,7,6,6,2,5,7,5,4,1,6,4,1,1,5,1,3,1,1,5,4,5,1,5,1,6,5,1,1,1,1,5,3,2,6,7,5,2
8105,1,6,Rio Grande County,CO,3,1,1,1,2,2,1,5,1,1,6,2,1,1,1,1,3,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,1,1,2,4,1,6,1,7,1,3,1,1,1,6,1,3,6,4,4,1,3,1,1,7,2,3,1,1,5,7,6,7,3,5,4,7,7,7,7,5,1,7,1,6,5,6,7,5,1,1,1,6,6,5,7,4,5,3,3,5,6,1,1,1,2,1,2,2,1,6,7,1,3,1,7,4,2,6,1,1,1,7,1,4,6,4,5
8107,55,79,Routt County,CO,3,1,1,1,3,7,1,4,2,1,5,3,2,1,4,1,4,1,2,2,2,2,3,2,3,1,1,1,3,3,2,4,2,4,4,2,2,2,2,2,2,5,1,6,1,7,1,3,2,1,2,7,1,2,4,6,6,1,4,1,1,6,1,3,1,2,5,5,6,6,3,1,3,6,5,1,2,3,1,7,7,7,1,7,7,7,5,1,4,6,7,1,5,7,1,1,1,7,3,1,1,6,3,4,2,3,6,5,6,1,6,2,6,6,2,3,1,1,1,2,2,7,7,4,5
8109,1,0,Saguache County,CO,4,1,1,1,1,2,1,4,1,1,3,3,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3,1,4,1,1,1,1,1,1,1,1,1,3,1,2,2,1,1,3,1,1,2,5,1,3,6,4,3,1,1,1,1,7,2,4,1,1,7,7,6,7,3,1,3,6,4,7,1,4,1,7,1,7,1,4,7,2,1,1,7,6,7,7,7,2,5,1,4,4,5,1,1,1,1,1,1,1,1,7,7,1,6,1,7,4,1,6,1,1,1,6,1,3,1,4,6
8113,0,4,San Miguel County,CO,4,3,1,1,2,7,1,5,2,1,2,2,1,4,1,5,1,1,1,1,1,1,1,1,1,1,1,5,1,2,1,1,1,2,1,1,1,1,1,1,4,6,1,6,1,1,1,3,1,2,7,4,1,2,4,6,3,1,3,1,1,7,1,4,1,1,5,7,1,3,1,3,1,6,3,1,1,1,1,5,7,7,7,7,7,6,7,1,6,7,7,3,6,7,1,1,1,7,6,1,1,4,2,2,1,1,3,7,4,1,7,1,4,7,1,1,1,1,2,1,2,7,7,5,6
8115,0,2,Sedgwick County,CO,4,1,1,1,1,1,1,3,2,1,1,3,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,6,1,1,2,6,1,1,1,1,1,1,1,1,5,1,1,6,2,1,1,7,1,7,1,2,2,5,6,5,1,2,4,7,6,1,4,7,2,3,2,7,1,1,7,7,1,1,5,5,5,2,6,4,1,6,2,1,3,1,1,1,1,1,1,1,1,3,6,1,2,1,5,3,1,6,1,1,7,6,2,2,7,7,2
8117,44,51,Summit County,CO,3,1,1,1,4,6,1,4,1,1,6,4,1,1,1,1,3,1,2,2,2,2,4,3,4,1,1,1,3,4,3,6,2,1,1,3,1,2,1,3,2,1,1,6,1,1,1,1,3,2,1,6,1,2,4,5,2,1,6,1,1,7,2,3,1,2,6,7,5,7,1,2,2,5,3,1,2,7,2,7,7,7,6,6,7,6,7,1,7,7,7,2,6,7,1,1,1,7,4,1,1,1,4,1,2,4,1,7,7,1,6,2,6,4,1,1,1,1,4,1,2,7,7,5,6
8119,40,50,Teller County,CO,1,1,1,1,4,4,1,5,2,1,6,4,2,1,3,1,3,1,2,3,2,5,3,2,3,1,1,1,3,4,2,6,2,3,2,3,4,3,1,2,2,4,1,7,1,5,2,1,2,2,2,7,1,2,4,5,2,1,4,1,1,7,2,6,2,2,6,7,5,7,1,4,6,5,3,1,1,1,3,4,4,7,3,7,7,4,6,1,3,1,7,1,3,7,2,5,6,3,4,1,1,5,4,2,3,4,4,7,7,1,7,2,5,4,1,1,1,1,4,1,2,7,5,6,6
8121,6,8,Washington County,CO,4,1,1,1,1,1,1,5,2,1,1,3,1,3,3,4,1,1,2,1,1,1,1,2,1,1,1,3,1,3,1,4,1,3,3,1,2,1,1,1,2,3,1,1,1,5,1,1,1,2,6,1,1,1,6,1,3,1,1,1,1,6,4,6,2,2,2,6,3,4,1,1,2,6,4,1,6,2,1,1,1,7,1,5,2,2,7,1,7,5,5,3,4,5,1,5,3,4,4,1,1,5,1,3,1,1,5,4,6,1,3,1,5,7,1,6,1,1,7,3,1,3,4,6,5
8123,784,803,Weld County,CO,1,1,2,1,5,5,5,6,7,1,5,7,4,5,4,3,6,2,6,5,5,6,6,6,5,1,1,7,7,5,7,5,4,6,6,4,5,7,4,5,6,4,7,3,4,6,4,4,6,5,7,3,1,4,3,7,3,6,6,1,1,6,3,6,2,2,3,6,3,4,1,1,6,7,7,7,4,4,6,2,4,5,4,4,5,4,5,1,6,6,1,4,7,4,4,6,4,6,3,4,1,6,6,5,7,7,5,4,6,1,5,6,5,7,3,7,6,1,6,6,2,7,3,6,6
8125,21,13,Yuma County,CO,3,1,1,1,1,1,1,5,1,1,1,3,1,4,1,4,1,1,1,1,1,1,1,1,1,1,1,4,1,2,1,1,1,1,1,1,1,1,1,1,3,6,1,1,1,6,1,1,1,2,6,2,1,1,6,1,1,6,2,1,1,7,2,7,1,2,1,5,4,4,1,2,4,7,6,7,7,4,1,5,1,7,7,7,6,6,7,1,1,6,4,4,6,4,1,6,1,4,3,1,1,1,1,1,1,2,1,3,6,1,3,1,5,7,1,7,1,1,6,6,1,4,6,7,6
9001,2173,2288,Fairfield County,CT,1,7,7,6,7,7,7,6,6,4,7,7,7,7,6,7,7,7,6,7,7,7,6,7,6,6,7,7,7,6,7,7,5,5,7,4,7,7,7,7,7,6,7,7,1,6,7,6,6,7,7,7,5,3,3,6,7,7,6,7,7,4,7,5,7,7,7,7,7,7,1,4,1,2,6,1,4,6,6,2,7,4,6,6,7,7,7,1,1,6,1,1,7,6,3,6,2,7,2,7,7,6,7,7,7,7,6,7,7,7,5,6,7,5,7,1,6,2,4,3,4,7,6,2,7
9003,1596,1637,Hartford County,CT,1,7,7,6,7,7,6,6,4,4,7,5,7,7,5,5,7,7,7,7,6,7,6,7,6,7,7,7,7,6,7,7,6,2,7,5,7,7,7,7,7,4,6,7,1,3,7,6,6,7,7,6,5,3,2,5,7,6,7,7,1,1,6,5,6,7,7,7,6,6,5,2,3,5,7,1,5,6,6,4,7,5,6,6,5,7,6,5,2,7,1,2,7,5,5,5,2,7,2,7,7,4,7,7,7,7,5,5,6,7,2,7,5,6,7,2,6,2,2,6,5,7,5,2,7
9005,243,266,Litchfield County,CT,2,7,7,5,7,7,6,6,4,5,7,5,6,6,4,6,6,6,5,7,5,7,5,6,5,7,7,7,6,6,6,7,4,3,6,4,6,5,6,5,7,3,6,7,1,5,7,6,5,7,6,4,4,4,4,5,5,1,4,6,1,3,6,5,6,7,6,7,7,6,3,6,6,3,6,1,6,5,7,2,6,5,6,6,7,7,7,1,1,4,3,1,6,6,2,6,6,6,2,6,6,4,6,7,6,7,5,6,7,7,3,5,7,4,7,2,5,3,2,5,5,7,6,2,7
9007,329,341,Middlesex County,CT,1,7,7,5,7,7,6,6,4,1,7,6,6,6,4,5,7,7,6,7,5,7,6,7,6,6,7,7,7,6,6,7,5,2,7,5,7,6,6,7,7,2,6,7,4,5,7,5,5,7,7,6,4,4,5,5,6,7,4,6,1,1,7,4,7,6,7,7,6,6,1,2,3,4,6,1,5,6,7,4,6,5,4,6,6,7,5,1,1,5,3,1,6,7,3,6,6,7,1,7,7,3,7,7,7,7,4,6,6,7,3,6,6,4,7,1,6,1,4,5,4,7,7,2,7
9009,1130,1191,New Haven County,CT,1,7,7,6,7,7,7,6,6,4,7,7,7,7,5,6,7,7,6,7,6,7,6,7,6,6,7,7,7,6,6,7,5,3,7,5,7,7,7,7,7,4,6,7,1,5,7,6,7,7,7,7,5,5,2,6,7,6,7,7,1,4,7,5,7,7,7,7,6,6,1,2,3,3,6,1,5,6,5,5,7,5,5,5,5,7,6,1,2,7,2,2,7,5,5,4,3,7,2,7,7,5,7,7,7,7,5,7,7,7,4,6,6,5,7,1,6,1,4,5,5,7,5,2,7
9011,409,433,New London County,CT,1,6,7,5,7,7,7,6,6,1,7,4,6,6,4,5,6,6,6,7,5,7,5,6,5,6,6,7,7,6,6,6,4,2,6,4,7,7,7,5,7,1,6,7,1,6,6,5,5,7,6,5,4,5,2,6,7,6,5,6,1,1,7,4,7,6,7,7,6,5,1,2,6,2,5,1,3,7,7,5,7,5,6,5,5,6,7,1,2,7,3,1,6,6,2,5,2,6,3,6,6,1,7,7,7,7,4,4,6,7,3,6,6,4,7,1,6,2,4,4,5,7,7,2,7
9013,289,297,Tolland County,CT,1,6,7,5,7,7,6,6,5,1,7,4,6,6,4,4,7,6,6,7,5,7,5,6,5,7,7,7,6,5,6,6,5,2,6,4,7,6,6,6,7,3,6,7,1,1,6,5,5,6,6,6,3,4,6,4,6,1,5,6,7,1,7,4,7,7,7,7,7,6,3,3,6,5,6,1,2,5,7,2,7,4,3,6,5,4,6,1,2,5,1,1,6,7,2,6,7,7,1,6,6,4,6,7,7,7,5,5,6,7,3,6,6,5,7,1,5,2,2,6,5,7,2,1,7
9015,113,136,Windham County,CT,2,6,6,6,7,7,7,6,7,1,7,4,6,7,3,5,6,7,6,7,4,6,5,5,5,7,6,6,6,5,5,6,3,1,6,3,6,5,5,5,7,2,7,7,2,6,6,5,4,6,7,5,3,5,5,4,5,1,5,6,1,1,7,4,7,7,7,7,6,5,3,1,6,4,6,1,6,6,7,3,5,5,6,3,6,5,5,1,3,6,2,2,6,4,5,4,5,6,4,7,7,3,6,7,6,6,5,4,6,7,6,5,6,5,7,2,5,2,1,3,6,7,4,1,6
10001,813,876,Kent County,DE,1,6,3,3,7,6,7,6,5,1,7,6,4,2,6,6,3,6,6,7,6,5,4,7,4,6,7,3,4,6,4,5,5,2,6,4,6,4,4,7,6,4,5,7,1,6,5,7,4,7,4,3,6,2,6,1,7,1,2,1,7,5,7,4,7,6,7,7,7,6,5,2,7,6,6,7,3,6,7,4,6,5,5,6,5,5,7,6,2,6,2,3,6,4,4,6,3,6,6,2,5,5,5,5,5,7,4,3,5,7,4,6,3,6,7,7,7,2,3,6,4,6,5,2,5
10003,2151,2322,New Castle County,DE,1,7,5,5,7,7,7,4,7,1,7,6,7,5,7,6,6,7,7,7,7,7,6,7,6,7,7,7,6,7,7,6,6,5,7,6,7,6,6,5,7,5,3,7,1,6,7,7,6,7,7,6,7,3,1,5,7,6,6,1,1,6,6,5,6,7,7,7,7,7,3,5,4,5,6,7,4,6,6,3,7,5,5,6,5,6,6,5,4,6,1,2,6,6,4,7,2,7,7,5,7,6,7,7,7,7,7,6,4,7,6,7,4,7,7,6,7,5,2,5,4,7,3,2,6
10005,637,678,Sussex County,DE,2,6,4,4,7,6,6,4,6,4,7,4,4,2,4,6,4,6,4,7,5,5,3,5,5,2,7,3,3,6,5,5,6,4,4,3,4,3,4,6,6,5,2,7,1,6,4,6,4,6,3,2,4,2,5,1,7,6,4,1,1,5,7,4,7,6,7,7,7,6,5,5,7,7,7,7,4,5,5,5,6,5,4,6,6,5,7,1,6,2,7,3,5,3,3,6,3,5,7,3,7,6,5,4,5,7,5,2,4,7,3,4,2,5,7,7,7,3,4,6,3,7,7,2,6
11001,1115,1262,District of Colum,DC,1,6,7,7,7,7,6,5,6,5,7,6,7,6,6,7,7,7,6,7,7,7,6,7,6,6,6,7,7,7,7,4,7,6,6,5,7,7,7,7,7,6,7,7,1,5,7,7,7,7,7,7,7,3,1,1,7,7,7,7,1,5,5,6,6,7,7,7,7,7,5,2,1,1,1,1,1,4,7,4,7,5,7,7,7,7,7,7,3,7,3,6,7,4,7,1,3,7,7,7,7,7,7,7,7,7,7,5,2,1,2,7,2,7,7,1,6,2,1,1,6,7,3,2,1
12001,310,303,Alachua County,FL,1,6,7,5,6,7,2,3,3,1,6,2,7,6,2,4,7,6,6,6,7,7,5,6,5,6,5,5,6,5,7,4,5,3,6,4,5,7,7,7,7,7,6,6,1,7,6,1,7,3,6,7,4,2,4,1,7,7,6,7,1,7,7,2,7,4,2,1,3,1,3,2,3,6,7,1,3,7,6,6,7,3,6,5,6,7,5,6,2,7,2,7,6,7,6,1,1,7,7,6,6,5,7,5,6,7,5,1,1,1,1,5,1,5,7,3,4,6,3,7,3,5,5,3,1
12003,57,74,Baker County,FL,1,6,2,3,3,7,4,3,3,1,3,2,5,3,2,3,2,3,5,6,4,3,4,4,4,4,3,2,3,2,4,5,2,2,3,3,3,5,4,4,5,2,3,7,1,1,3,2,3,2,4,6,4,2,7,1,6,1,3,7,1,5,7,2,7,4,1,1,5,1,6,7,3,3,4,1,2,3,3,2,2,3,3,4,2,1,3,5,6,1,2,5,3,2,3,4,6,1,1,4,4,4,3,4,2,4,4,1,1,1,1,2,1,6,5,2,3,7,2,5,3,5,1,2,1
12005,152,166,Bay County,FL,1,4,6,5,6,7,6,3,7,1,7,4,5,6,7,4,7,6,6,5,5,5,5,6,5,6,6,1,5,5,7,4,6,4,6,6,6,7,6,7,7,4,6,6,1,5,6,3,7,3,6,6,4,1,2,6,4,1,6,7,1,6,7,1,7,5,3,3,5,1,6,6,1,1,3,3,2,5,2,7,3,5,3,4,3,4,5,5,5,6,7,4,5,5,3,1,1,7,7,6,6,6,7,5,6,7,6,1,1,7,2,4,1,4,6,2,5,1,6,3,2,5,6,2,1
12007,37,50,Bradford County,FL,3,6,6,3,5,7,3,3,3,1,6,2,5,4,3,3,4,4,3,6,4,4,4,4,4,4,3,2,3,2,5,5,4,3,3,3,3,5,5,5,6,4,4,7,3,6,3,2,4,2,4,7,4,2,7,1,6,1,5,7,1,6,7,3,7,4,3,2,5,1,6,6,6,2,6,1,3,4,3,3,4,2,3,3,1,3,4,1,7,2,4,5,4,3,3,4,6,4,7,5,5,5,4,4,2,4,5,1,1,1,1,3,1,5,5,2,4,7,2,1,3,4,1,2,1
12009,637,684,Brevard County,FL,1,5,6,5,6,7,5,4,6,1,5,4,4,6,4,5,6,6,6,6,6,6,5,7,6,6,5,2,5,3,7,5,4,2,7,3,5,7,6,7,6,3,6,6,3,4,6,3,7,5,7,5,2,2,1,5,6,1,6,7,1,7,7,2,7,3,3,3,5,1,6,6,1,6,6,1,4,4,5,4,3,3,4,4,5,5,5,5,4,4,4,2,6,6,3,4,1,7,7,6,7,4,7,5,6,7,5,1,1,1,1,4,1,6,7,1,5,1,6,6,3,6,4,4,1
12011,3046,3347,Broward County,FL,1,3,6,7,7,7,5,3,6,1,6,6,4,7,2,7,7,7,7,7,6,7,7,7,7,6,6,7,7,3,7,4,5,7,7,5,6,7,7,7,7,1,7,7,1,6,7,3,7,6,7,6,2,3,1,1,7,6,7,7,1,4,7,1,7,4,4,4,1,1,6,5,1,3,6,1,2,5,6,5,7,3,4,5,4,7,7,5,2,6,4,3,7,5,4,1,3,7,5,7,7,1,7,5,7,7,5,2,1,7,2,6,3,5,7,1,5,1,7,5,3,7,5,4,1
12013,12,6,Calhoun County,FL,3,4,3,2,2,7,3,3,4,1,2,3,2,2,5,2,2,2,2,6,2,2,2,2,2,3,2,1,2,2,3,2,4,2,2,4,3,3,3,6,6,3,2,7,2,5,2,3,2,2,2,5,5,1,7,1,3,1,3,7,1,6,7,1,7,5,1,1,4,1,6,5,2,4,4,4,2,1,3,7,5,4,1,4,5,3,1,1,5,2,5,6,5,2,5,1,6,1,6,3,3,4,3,2,1,2,3,1,1,1,1,2,1,4,4,3,2,3,4,6,2,2,5,1,1
12015,155,174,Charlotte County,FL,1,4,5,5,5,7,5,3,4,1,5,4,2,6,2,4,5,6,4,5,5,6,5,7,5,6,5,1,5,3,7,3,3,1,5,2,4,7,5,6,5,1,6,5,1,1,6,2,6,2,6,4,2,3,4,5,3,1,4,7,1,6,7,1,7,3,1,1,2,1,6,4,2,7,5,1,2,2,4,4,2,3,5,4,6,7,7,3,3,1,6,2,6,5,2,2,3,6,2,6,6,1,6,3,6,7,4,1,1,7,1,4,1,3,7,1,4,1,6,7,3,6,6,3,1
12017,104,104,Citrus County,FL,2,5,4,4,4,7,3,3,3,1,4,3,3,5,1,4,4,5,3,6,6,6,4,5,4,5,4,1,4,2,6,2,5,5,4,3,7,6,5,7,6,6,4,6,3,5,4,2,7,2,5,3,3,2,6,1,6,1,6,7,1,7,7,2,7,4,2,1,1,1,3,5,3,3,5,1,2,2,2,4,3,4,2,4,5,6,7,3,5,1,5,3,5,4,5,2,3,3,1,5,5,7,5,5,5,6,7,1,1,7,1,4,1,5,6,1,3,6,3,5,3,4,7,3,1
12019,422,467,Clay County,FL,1,6,5,5,6,7,5,3,5,1,6,2,6,6,3,4,6,6,6,7,7,6,7,6,6,6,5,2,5,3,6,5,5,5,6,4,5,7,7,6,6,6,6,7,1,6,5,3,6,3,6,7,3,2,4,1,6,1,6,7,1,6,7,3,7,4,2,3,6,1,6,3,3,1,5,1,2,2,5,4,2,3,4,4,3,5,2,3,2,3,2,1,5,7,3,6,7,5,1,6,6,7,6,6,6,7,6,1,1,1,1,4,1,6,6,2,5,7,3,4,4,6,4,3,1
12021,330,330,Collier County,FL,1,3,7,5,6,7,5,3,3,1,6,5,3,6,1,5,7,6,4,6,6,6,5,7,5,6,5,2,6,3,7,3,4,1,7,2,5,7,6,5,6,2,6,7,1,5,6,2,6,3,7,3,2,2,3,4,5,1,5,7,1,5,7,1,7,3,2,1,1,1,6,2,2,5,4,1,2,6,4,2,7,3,5,5,5,7,7,3,6,4,7,3,7,5,2,1,1,7,2,7,7,1,7,4,6,7,4,1,1,7,2,5,1,6,7,1,4,1,7,7,2,7,6,4,1
12023,78,75,Columbia County,FL,3,6,6,4,5,7,4,3,5,1,4,2,5,5,2,4,4,5,6,6,6,6,4,5,6,5,4,1,4,3,6,5,3,2,4,6,5,6,5,6,6,2,5,7,3,6,5,2,6,3,5,6,4,2,7,1,7,1,6,7,1,5,7,2,7,4,1,1,3,1,3,5,2,4,6,1,2,5,5,6,1,3,4,4,2,5,5,3,7,3,4,5,4,3,5,3,3,4,7,6,6,4,6,3,5,6,4,1,1,1,1,4,1,5,7,2,4,7,3,5,3,4,2,2,1
12027,13,12,DeSoto County,FL,3,4,4,4,3,6,3,3,3,1,3,4,2,5,1,3,5,5,2,3,5,4,3,5,4,5,4,1,4,2,6,2,2,1,5,4,2,6,4,5,4,5,5,4,1,7,4,2,4,2,5,3,3,3,7,5,5,6,2,7,1,7,7,1,7,3,1,1,2,1,6,4,7,7,7,3,2,4,4,3,7,3,4,1,1,3,1,4,6,4,6,7,7,1,4,1,3,2,1,5,5,1,4,2,3,4,3,1,1,1,1,3,1,4,6,1,3,4,5,7,3,3,1,3,1
12029,13,12,Dixie County,FL,3,5,1,2,1,7,2,3,1,1,1,2,2,2,2,1,2,2,2,5,2,2,1,2,5,2,2,1,2,1,3,1,1,1,6,1,2,3,3,5,5,3,2,6,1,4,1,1,2,2,2,2,3,2,7,1,6,6,2,7,1,7,7,2,7,4,1,1,1,1,6,1,2,3,2,1,5,3,1,3,3,4,1,1,2,1,4,1,6,1,7,6,4,1,6,1,5,1,7,3,2,1,2,1,1,3,2,1,1,7,1,1,2,3,3,1,1,3,4,5,2,2,6,2,1
12031,2331,2450,Duval County,FL,1,6,3,5,6,7,6,5,6,1,6,3,7,7,4,5,7,7,7,7,7,7,6,7,6,6,6,3,6,7,7,5,6,5,7,6,6,7,7,7,7,6,6,7,1,6,6,3,7,5,7,7,4,3,2,1,6,1,7,7,1,5,7,2,7,4,1,5,6,1,6,5,3,3,5,1,5,6,5,4,7,3,4,6,3,4,7,6,3,7,2,3,6,5,3,4,1,7,7,7,7,7,7,7,7,7,7,1,1,7,1,5,1,7,7,2,7,7,4,6,4,5,2,3,1
12033,315,315,Escambia County,FL,1,1,6,5,6,7,7,7,5,5,7,6,5,6,6,5,6,7,6,7,6,6,6,6,5,6,6,2,6,6,7,6,7,4,6,5,6,7,6,7,7,5,6,6,1,6,6,4,7,4,7,7,5,1,2,1,6,1,5,7,1,6,7,1,7,6,3,2,5,1,6,1,2,3,5,5,2,5,5,5,7,4,5,4,5,5,5,5,3,6,4,5,5,5,5,4,1,7,7,7,7,6,7,7,6,7,6,1,1,7,2,7,1,5,7,4,6,2,5,7,2,5,3,2,1
12035,97,110,Flagler County,FL,2,5,3,4,6,7,4,3,3,1,7,3,2,5,3,3,6,5,4,7,7,4,4,6,7,5,4,1,4,2,6,4,3,3,6,3,3,6,5,7,5,4,4,6,1,6,4,3,7,3,4,7,3,2,2,1,4,1,6,7,1,6,7,3,7,4,7,7,6,1,6,5,1,4,3,1,2,6,4,2,6,3,3,5,2,6,6,4,6,1,5,2,6,6,3,5,5,5,1,6,5,5,5,5,4,5,5,4,1,1,3,3,2,3,6,1,5,4,5,6,3,6,2,3,1
12037,1,4,Franklin County,FL,3,4,1,2,2,7,3,2,3,1,6,2,1,2,1,1,4,2,1,3,1,1,1,1,1,2,2,1,1,1,3,2,1,1,2,3,1,2,2,1,5,5,2,7,2,6,1,3,1,1,2,3,4,1,2,1,6,1,2,7,1,6,7,1,7,5,3,1,3,1,6,5,1,1,1,1,1,4,1,1,4,5,5,2,5,3,4,4,4,2,7,6,4,2,2,1,1,4,6,2,2,1,2,1,1,2,1,1,1,7,1,1,1,5,3,1,1,2,4,1,2,6,7,2,1
12039,29,23,Gadsden County,FL,1,4,7,4,3,7,4,3,3,1,3,3,3,4,2,3,4,5,4,6,6,5,3,4,4,5,4,1,5,2,5,3,5,2,3,5,3,6,6,3,6,3,4,7,4,1,4,3,4,2,4,4,5,1,6,4,5,1,3,7,1,6,7,1,7,5,2,1,3,1,6,6,2,5,6,1,4,6,6,1,5,5,1,6,2,1,5,1,7,3,4,6,5,2,6,4,6,2,1,5,5,4,5,3,3,5,4,1,1,1,1,3,1,5,6,3,3,5,1,6,2,3,2,1,1
12041,18,16,Gilchrist County,FL,1,5,7,2,2,7,2,3,3,1,2,2,5,3,1,2,2,3,3,6,3,3,2,2,6,3,2,1,2,1,3,3,3,2,2,2,3,4,3,6,5,3,2,6,1,6,2,2,4,2,3,4,4,2,7,1,7,7,3,7,1,7,7,2,7,4,1,1,1,1,6,6,6,5,6,3,1,2,4,3,6,2,4,2,1,1,1,1,7,1,5,5,4,2,3,2,7,1,7,4,3,4,2,2,1,3,4,1,1,1,1,2,1,3,4,2,2,4,3,5,3,4,3,2,1
12043,4,1,Glades County,FL,3,4,1,2,1,5,4,3,4,1,1,6,1,2,1,1,2,2,1,2,1,1,1,3,1,2,1,1,1,1,5,2,1,1,2,3,1,3,2,2,2,5,1,6,1,6,2,2,2,2,1,4,3,3,6,1,3,1,2,6,1,6,7,1,7,3,2,1,1,1,6,1,4,7,5,1,3,7,3,4,7,3,1,3,1,1,5,1,6,1,7,5,7,2,7,1,6,1,7,2,2,1,2,1,1,2,2,1,1,1,2,1,1,2,2,1,4,2,6,6,3,3,5,3,1
12045,9,3,Gulf County,FL,3,4,3,2,2,7,4,3,4,1,7,3,2,2,5,2,7,3,3,4,2,2,2,1,2,2,3,1,2,2,3,3,4,2,2,6,3,3,3,6,5,5,3,6,1,5,2,3,3,1,2,4,4,1,3,4,5,1,2,7,1,6,7,1,7,5,3,1,5,1,6,3,1,1,1,1,3,2,1,2,1,6,1,1,3,1,1,1,6,1,7,6,4,3,5,2,4,3,6,3,3,4,2,2,1,3,3,1,1,7,1,2,1,4,3,1,2,2,5,1,1,4,7,2,1
12047,16,16,Hamilton County,FL,3,5,2,2,2,7,6,3,6,1,2,2,4,2,4,2,2,6,3,5,3,2,2,3,5,3,5,1,2,2,4,5,4,1,2,4,2,3,3,5,5,1,2,6,2,7,2,3,5,2,2,5,4,2,7,1,6,1,4,7,1,4,7,2,7,5,1,1,4,1,6,2,4,5,5,3,2,5,5,5,6,2,1,3,1,1,6,1,7,3,6,7,5,1,6,3,5,2,7,3,3,1,2,2,1,3,2,1,1,1,1,1,1,4,4,4,4,3,3,6,3,2,1,2,1
12049,17,20,Hardee County,FL,3,4,2,3,3,6,2,3,4,1,2,4,2,4,3,2,2,4,4,4,3,4,3,4,7,4,3,1,3,2,4,2,2,2,3,6,2,5,3,4,5,5,3,4,1,7,4,2,3,2,4,3,3,3,7,1,5,7,3,7,1,7,7,2,7,3,1,1,1,1,6,7,5,7,7,1,4,4,7,3,7,1,4,5,1,1,6,1,5,5,6,7,7,1,7,1,4,2,7,4,4,4,4,2,2,4,4,1,1,1,1,3,1,4,4,1,2,3,5,7,4,2,2,3,1
12051,13,17,Hendry County,FL,2,3,3,3,3,6,4,2,3,1,2,6,2,3,1,2,3,4,2,3,3,3,3,4,3,4,3,1,3,1,5,3,2,1,6,5,2,5,3,3,3,6,4,7,1,7,3,2,3,2,3,4,2,3,6,5,2,6,2,7,1,6,7,1,7,3,4,1,1,1,6,2,3,7,7,1,5,5,3,4,7,3,3,5,2,2,7,3,5,5,4,7,7,1,6,1,4,3,1,4,4,1,4,2,2,5,2,1,1,1,2,3,2,2,4,1,5,2,7,7,3,4,3,3,1
12053,243,239,Hernando County,FL,1,5,4,5,5,7,3,3,4,1,5,3,3,6,2,4,5,6,6,6,7,6,5,6,5,6,5,2,5,3,6,2,4,3,5,5,6,7,6,5,6,6,6,6,1,6,5,2,7,3,6,3,3,2,2,4,2,1,5,7,1,7,7,2,7,4,1,1,1,1,6,7,4,5,7,1,2,6,3,4,2,3,4,5,5,7,5,3,5,1,4,3,6,4,4,3,4,2,1,6,6,5,6,4,6,7,5,1,1,7,1,5,1,6,6,1,4,6,3,5,3,5,5,3,1
12055,72,82,Highlands County,FL,2,4,4,4,4,7,4,3,2,1,3,5,2,5,2,3,4,5,3,3,5,5,4,5,6,5,4,1,4,2,6,3,3,1,5,7,3,6,5,4,6,6,5,5,1,4,4,3,7,2,5,4,3,3,3,1,2,7,2,7,1,7,7,2,7,3,2,1,3,1,6,2,2,7,7,1,3,4,2,5,6,2,4,5,4,6,6,3,4,2,7,5,6,3,3,1,1,5,7,5,5,1,5,2,5,6,3,3,1,1,1,3,1,4,6,2,3,4,6,7,3,3,4,3,1
12057,2129,2241,Hillsborough Coun,FL,1,4,5,6,6,7,3,4,6,1,6,4,7,7,4,5,7,7,7,7,7,7,6,7,7,7,6,2,6,6,7,2,6,6,7,5,7,7,7,7,7,7,7,6,1,5,7,2,7,5,7,7,4,3,2,5,7,1,7,7,1,7,7,2,7,4,2,1,1,1,3,4,2,6,7,1,4,4,5,5,7,4,4,5,4,6,3,5,4,7,2,4,7,5,4,2,1,7,7,7,7,7,7,7,7,7,7,1,1,7,1,7,1,7,7,2,5,3,4,7,4,6,4,3,1
12059,10,8,Holmes County,FL,3,4,2,3,5,7,3,4,5,1,2,4,2,3,3,2,2,3,6,5,4,3,3,2,7,3,3,2,3,2,4,3,2,3,2,2,2,4,4,2,5,2,6,6,1,6,3,4,3,2,3,5,5,1,7,1,4,1,2,7,1,6,7,1,7,5,2,1,5,1,6,1,4,3,5,3,1,3,6,2,1,4,3,2,1,1,1,7,7,1,5,6,4,1,5,2,6,1,6,4,4,3,3,2,2,3,2,1,1,1,1,2,1,4,5,3,5,4,5,7,2,2,1,1,1
12061,152,142,Indian River Coun,FL,1,4,5,4,5,6,4,3,2,1,4,5,3,5,3,4,7,6,3,4,5,5,7,6,7,5,5,1,5,2,6,3,3,1,7,2,4,7,5,7,5,4,5,4,1,1,5,3,7,3,6,4,2,2,3,1,3,1,4,7,1,6,7,2,7,3,2,2,5,1,6,7,5,7,7,1,3,6,4,6,4,3,7,4,5,5,6,3,6,3,5,2,6,5,3,2,2,7,5,6,6,1,6,3,5,6,4,5,1,7,1,4,1,3,7,1,4,1,7,7,3,6,6,4,1
12063,18,24,Jackson County,FL,3,4,3,3,5,7,3,3,5,1,3,3,2,4,4,3,5,4,5,5,4,4,4,3,7,4,3,2,3,2,4,3,4,3,3,6,3,5,5,4,5,3,6,6,3,6,3,4,4,2,4,5,5,1,7,1,4,1,3,7,1,6,7,1,7,5,3,2,5,1,6,3,4,6,6,6,3,5,5,4,2,4,6,5,1,4,3,7,7,3,5,6,4,2,4,4,3,3,1,7,4,4,4,3,2,5,4,1,1,1,2,2,1,5,5,4,5,5,4,7,2,3,3,1,1
12065,7,10,Jefferson County,FL,1,5,4,2,2,7,3,3,2,1,2,2,2,3,2,2,2,3,3,6,3,2,2,3,2,3,2,1,2,2,4,2,5,1,2,2,2,4,3,2,6,5,2,7,3,6,2,3,3,2,3,4,4,1,7,1,6,7,2,7,1,5,7,1,7,5,6,2,3,1,6,1,3,5,5,1,1,7,5,7,6,2,5,5,5,2,7,5,6,1,4,6,2,3,3,5,7,2,7,3,3,1,3,2,1,2,2,1,1,1,1,2,1,5,4,4,2,3,3,6,2,4,1,1,1
12067,6,4,Lafayette County,FL,4,5,2,2,1,7,2,2,6,1,1,2,3,2,4,1,2,2,2,5,2,2,1,2,7,2,2,1,2,1,2,3,3,1,2,3,2,3,2,7,5,3,1,6,1,4,1,2,5,2,2,3,4,2,7,1,6,7,2,7,1,6,7,2,7,4,1,1,1,1,6,5,5,5,5,1,4,1,2,1,1,1,1,1,1,1,1,1,1,2,6,6,6,2,3,5,5,1,7,3,2,1,2,1,1,1,2,1,1,1,1,2,1,2,3,2,1,3,3,5,3,3,1,2,1
12069,385,401,Lake County,FL,1,5,6,5,5,7,4,4,4,1,6,3,3,6,4,5,6,6,6,6,6,6,5,6,5,6,5,2,5,3,7,3,4,2,6,2,5,7,6,6,7,2,6,6,1,6,6,3,6,3,7,6,3,2,4,1,6,1,6,7,1,7,7,3,7,4,3,6,6,1,6,2,3,6,7,1,3,6,3,4,4,2,6,6,6,6,6,3,6,1,5,2,6,4,2,2,5,5,7,7,7,4,6,4,5,7,5,6,1,1,1,6,1,6,6,2,5,6,5,6,4,6,5,3,1
12071,687,686,Lee County,FL,1,3,6,5,6,7,7,3,5,1,5,5,3,6,2,4,6,7,6,6,6,6,5,7,5,6,6,1,5,2,7,3,4,1,6,2,6,7,6,7,6,1,6,6,1,6,6,3,7,3,6,6,3,3,3,4,4,1,7,7,1,6,7,1,7,3,1,1,1,1,6,3,1,5,7,1,3,2,3,4,6,3,4,4,4,7,6,4,5,4,7,2,6,5,2,1,1,7,7,6,7,1,7,4,6,7,4,1,1,7,1,5,1,3,7,1,4,1,6,7,2,6,5,3,1
12073,212,193,Leon County,FL,1,5,7,5,6,7,4,4,4,1,6,3,3,6,2,5,7,7,6,6,6,7,6,6,6,6,5,2,6,3,7,3,5,1,5,4,5,7,6,6,7,3,7,7,3,4,6,3,6,4,7,4,6,1,3,1,7,1,5,7,1,6,7,1,7,5,7,1,4,1,3,2,3,3,4,1,1,6,6,4,7,2,7,6,6,6,5,6,3,7,2,6,5,7,7,2,1,7,7,7,7,3,7,4,6,7,4,1,1,1,1,5,1,6,7,3,5,2,3,5,2,6,4,1,1
12075,28,30,Levy County,FL,4,5,6,3,3,7,2,3,3,1,2,2,4,3,1,2,3,3,2,6,4,3,3,3,3,4,3,2,3,1,4,2,4,4,4,2,6,4,4,7,5,5,3,6,1,6,3,2,7,2,3,3,3,2,7,1,4,6,3,7,1,7,7,2,7,4,1,1,1,1,6,4,3,6,5,3,3,6,2,7,2,3,1,4,1,1,5,5,6,1,6,6,5,3,5,2,6,1,1,4,4,6,4,4,2,5,6,1,1,7,1,2,1,4,5,3,2,4,4,6,3,3,4,3,1
12077,3,6,Liberty County,FL,4,4,3,2,2,7,3,2,2,1,4,3,1,2,2,2,2,2,2,6,2,2,2,1,2,3,2,1,2,2,3,2,2,2,2,4,2,3,3,4,6,3,2,7,1,5,2,3,2,2,2,4,4,1,7,1,6,1,1,6,1,6,7,1,7,5,1,1,1,1,6,6,1,1,1,1,4,1,4,3,1,2,6,1,1,2,6,1,7,1,7,6,5,1,3,1,6,1,6,3,3,4,2,2,1,1,3,1,1,1,1,1,1,4,4,2,2,3,3,5,2,3,2,2,1
12079,14,20,Madison County,FL,3,5,6,3,3,7,3,3,7,1,2,2,5,3,4,2,3,3,3,6,4,3,2,3,5,3,3,1,3,2,5,3,5,1,2,5,2,5,4,6,5,3,3,6,3,1,3,3,6,2,3,4,4,2,7,1,6,7,2,7,1,5,7,1,7,5,3,2,5,1,6,2,3,5,5,1,3,5,4,5,1,1,3,4,1,2,6,1,7,3,5,7,4,2,4,2,4,2,7,4,4,1,3,2,2,3,2,1,1,1,1,2,1,4,6,4,2,4,3,5,2,2,2,2,1
12081,330,378,Manatee County,FL,1,4,5,6,5,6,4,3,6,1,5,4,6,6,3,5,6,6,6,6,5,6,5,7,7,6,5,2,6,2,7,3,5,4,7,3,5,7,6,7,6,5,6,4,1,3,5,2,7,3,6,7,3,3,1,5,6,6,6,7,1,7,7,2,7,4,1,1,1,1,6,2,2,7,7,1,3,3,4,3,5,3,3,4,3,5,5,5,5,5,6,3,6,5,2,1,3,7,7,6,6,6,6,5,6,7,6,1,1,7,1,4,1,6,7,2,4,1,3,7,4,6,3,3,1
12083,341,383,Marion County,FL,1,5,6,5,5,7,5,3,3,1,6,3,4,6,2,5,5,6,5,6,7,7,5,6,6,6,5,1,6,3,7,4,4,3,5,5,5,7,7,6,7,3,6,7,7,5,6,3,7,4,7,5,4,2,6,1,7,1,6,7,1,7,7,3,7,4,2,3,6,1,3,2,4,5,7,1,4,3,3,4,2,3,3,5,5,4,5,4,6,2,5,4,6,4,5,2,2,4,7,7,7,5,6,5,6,7,5,1,1,1,1,5,1,5,7,2,5,7,4,3,3,4,5,3,1
12085,107,135,Martin County,FL,1,4,7,5,5,6,4,3,5,1,5,6,3,6,3,4,7,6,7,5,5,5,6,7,7,6,5,1,5,2,7,3,3,1,6,3,4,7,6,7,6,1,6,5,6,3,5,2,6,3,6,5,2,3,4,1,2,1,3,7,1,6,7,1,7,3,2,2,1,1,6,1,1,6,7,1,3,7,6,5,4,4,6,6,6,7,6,3,4,2,5,2,6,6,2,2,4,7,7,6,6,1,7,3,6,7,4,1,1,7,1,4,2,4,7,1,5,1,7,7,3,7,7,4,1
12086,3245,3403,Miami-Dade County,FL,1,1,7,6,7,7,5,3,5,1,6,5,5,6,3,6,7,7,5,7,7,7,7,7,7,6,6,4,7,5,7,4,5,4,6,4,6,7,7,7,7,1,6,7,7,1,7,3,7,7,7,6,2,2,1,1,5,1,1,1,1,3,7,1,7,3,1,1,1,1,1,2,1,1,1,1,2,5,5,2,7,2,3,5,3,6,6,6,3,7,3,6,7,2,7,1,1,7,7,7,7,1,7,6,7,7,4,1,1,7,1,6,1,5,7,1,5,1,6,1,3,7,3,4,1
12087,59,49,Monroe County,FL,2,1,3,3,4,6,3,2,3,1,3,4,5,3,2,2,5,4,4,3,3,2,4,4,3,3,3,1,3,1,6,3,6,1,7,4,6,5,3,3,4,3,4,4,7,1,2,2,4,2,3,3,1,2,1,1,7,1,2,7,1,1,7,1,7,3,6,7,1,1,6,1,1,1,1,1,1,7,1,1,6,1,1,1,3,1,6,6,6,7,7,3,7,6,1,1,1,7,7,4,4,1,6,5,5,6,2,7,1,7,4,2,5,4,5,1,2,1,7,3,2,7,3,4,1
12089,111,108,Nassau County,FL,1,6,4,4,4,7,5,3,5,1,5,2,6,5,5,3,7,5,6,7,5,5,4,5,5,5,4,1,4,2,6,6,6,4,5,6,5,7,5,4,6,7,4,7,5,1,4,2,5,2,5,7,4,3,7,1,6,1,5,7,1,4,7,2,7,4,1,3,6,1,6,4,3,1,3,1,1,6,4,1,2,1,3,1,1,1,4,3,4,2,5,2,3,5,3,5,6,6,6,5,5,6,5,6,5,6,6,1,1,7,1,3,1,5,6,2,7,7,3,3,4,7,1,2,1
12091,199,220,Okaloosa County,FL,1,3,6,4,5,7,6,4,2,5,5,4,2,5,2,4,5,5,4,5,5,5,5,5,6,5,4,1,5,4,6,4,3,2,5,2,4,7,5,7,6,2,6,7,6,4,5,4,6,3,5,5,5,1,2,1,4,1,4,7,1,6,7,1,7,5,3,3,4,1,6,3,1,3,4,1,2,4,2,3,3,4,2,5,5,4,7,5,3,7,5,2,6,7,3,4,1,7,5,6,6,3,6,3,6,7,4,1,1,7,2,4,1,4,6,3,4,2,6,6,2,6,2,2,1
12093,30,41,Okeechobee County,FL,2,4,2,3,3,5,4,3,5,1,3,5,2,4,2,3,3,5,2,2,3,4,4,3,4,4,4,1,3,2,6,4,2,1,5,3,3,5,4,5,3,1,4,5,6,1,4,3,4,2,4,4,3,3,6,5,4,7,2,7,1,6,7,2,7,3,1,1,1,1,6,3,4,6,6,1,4,2,4,6,7,6,4,5,3,5,5,1,7,4,6,5,7,1,3,1,3,1,1,5,5,1,5,2,3,5,3,1,1,1,1,3,1,2,4,1,5,4,7,7,3,4,6,3,1
12095,2244,2402,Orange County,FL,1,5,7,5,7,7,5,4,6,1,7,4,4,7,5,5,7,7,6,7,7,7,6,7,6,6,6,2,6,5,7,4,5,4,7,3,6,7,7,7,7,7,6,7,6,4,6,3,7,5,7,7,4,2,2,4,4,1,7,7,1,7,7,3,7,4,3,4,6,1,6,2,1,5,7,1,2,7,5,6,7,4,4,5,5,6,7,4,4,7,2,4,7,5,3,2,2,7,7,7,7,6,7,6,7,7,6,3,1,1,1,6,1,6,7,1,5,2,5,6,4,6,5,3,1
12097,372,428,Osceola County,FL,1,5,6,5,6,7,5,4,5,1,7,4,3,6,4,5,7,6,6,6,6,7,5,7,7,6,5,2,6,3,7,3,5,4,7,3,5,7,7,7,7,5,6,6,7,4,6,3,7,4,7,4,3,3,4,1,6,1,5,7,1,7,7,2,7,3,2,1,4,1,6,1,3,7,6,1,1,7,6,6,6,3,3,5,6,5,7,3,6,6,5,3,7,4,3,2,6,6,7,7,7,6,7,5,6,7,6,1,1,1,1,5,1,6,7,2,5,5,6,6,3,6,5,3,1
12099,2031,2082,Palm Beach County,FL,1,3,6,6,6,7,4,3,5,1,5,6,4,6,4,6,7,6,6,6,5,7,7,7,7,6,5,3,6,3,7,3,5,4,7,5,6,7,7,7,7,1,6,7,7,4,6,3,7,4,6,6,2,3,2,4,5,6,4,7,1,6,7,1,7,3,6,2,1,1,6,3,1,7,7,1,1,5,5,2,7,2,4,5,5,7,7,5,3,4,5,2,7,6,3,1,1,7,7,6,7,1,7,4,7,7,4,5,1,7,6,5,3,4,7,1,6,1,7,7,3,7,4,4,1
12101,679,754,Pasco County,FL,1,5,4,5,6,7,4,3,5,1,5,3,5,6,2,4,6,6,6,7,6,7,5,7,6,6,5,1,6,3,7,3,5,5,6,4,6,7,6,6,7,7,5,6,5,4,5,3,6,3,6,5,3,2,3,1,6,6,7,7,1,7,7,2,7,4,1,1,1,1,6,3,6,6,7,3,1,3,5,3,3,4,4,5,4,6,5,4,5,1,5,3,6,4,3,1,6,5,7,6,6,6,7,5,6,7,6,1,1,7,1,5,1,6,7,2,4,3,4,6,4,4,4,3,1
12103,945,966,Pinellas County,FL,1,4,3,5,6,7,5,4,6,1,6,3,6,6,3,5,7,6,6,7,7,5,7,7,7,6,5,2,5,6,7,4,6,6,7,5,7,7,6,7,7,7,3,5,7,1,6,3,7,5,7,7,4,3,1,1,7,1,7,7,1,7,7,2,7,4,2,2,1,1,6,5,2,2,6,1,4,2,5,4,7,4,4,5,5,7,5,5,2,6,5,2,6,6,3,1,2,7,7,6,7,7,7,7,7,7,7,1,1,7,1,6,1,6,7,1,4,2,5,4,4,6,5,3,1
12105,1350,1434,Polk County,FL,1,5,6,5,6,7,3,3,4,1,5,4,3,6,5,5,5,6,7,6,6,6,5,6,7,6,5,1,6,3,7,2,6,6,6,5,5,7,7,6,7,7,6,5,5,5,6,2,7,3,7,5,3,3,2,4,5,1,7,7,1,7,7,2,7,4,2,3,5,1,3,1,3,7,7,3,5,7,4,6,6,3,5,4,4,4,5,4,5,5,6,4,6,3,4,2,2,6,7,7,7,7,7,6,6,7,7,4,1,1,1,5,1,5,7,2,4,5,5,7,4,5,4,3,1
12107,99,82,Putnam County,FL,2,6,5,5,7,7,3,3,5,1,7,3,4,6,4,5,7,6,4,6,6,5,4,4,6,6,5,2,5,2,6,4,4,5,5,6,4,7,7,6,6,6,6,7,7,7,5,2,6,3,6,7,3,2,7,1,5,1,6,7,1,7,7,3,7,4,4,7,6,1,6,3,1,5,6,1,3,2,2,3,6,5,4,7,3,4,5,5,5,2,6,7,5,2,4,2,4,4,7,7,6,7,5,7,5,6,6,2,1,1,1,3,1,6,6,3,6,5,4,6,3,3,4,3,1
12109,501,505,St. Johns County,FL,1,6,6,4,6,7,5,3,4,1,6,2,4,6,3,4,6,5,6,6,7,6,5,6,6,6,5,1,5,2,6,5,4,4,6,4,4,6,6,7,6,5,6,6,5,6,5,2,6,3,6,7,3,2,3,1,6,1,6,7,1,5,7,2,7,4,3,4,6,1,6,1,1,5,5,1,2,5,7,3,5,2,3,2,6,4,3,1,5,4,5,1,5,7,1,5,5,7,7,6,6,6,6,6,6,7,6,1,1,7,1,4,1,4,6,3,5,7,5,7,4,7,5,3,1
12111,425,402,St. Lucie County,FL,1,4,5,5,5,6,4,3,4,1,5,5,3,6,4,4,5,6,6,5,6,6,7,6,7,6,5,1,5,2,7,3,3,1,7,2,4,7,6,7,6,2,6,4,7,3,6,3,7,3,6,6,3,2,5,1,2,6,3,7,1,6,7,1,7,3,2,2,4,1,6,2,3,7,7,1,2,6,4,4,6,3,2,6,5,6,6,5,5,3,5,4,6,4,4,2,4,7,7,6,6,1,6,3,6,7,4,1,1,1,1,4,2,4,7,1,5,1,7,7,3,5,5,4,1
12113,215,205,Santa Rosa County,FL,1,1,3,4,5,7,7,7,4,5,7,5,5,5,6,3,5,6,6,6,5,5,6,4,4,5,5,2,4,4,6,5,6,4,5,4,4,6,5,6,6,5,5,6,7,6,4,4,6,3,5,6,5,1,2,1,6,1,4,7,1,6,7,1,7,6,3,2,4,1,6,2,1,3,4,3,2,3,3,5,3,1,3,5,5,2,4,3,6,2,4,2,4,6,4,5,7,4,1,6,5,6,6,6,5,6,5,1,1,7,2,5,1,5,6,3,6,5,5,7,2,6,3,2,1
12115,332,385,Sarasota County,FL,1,4,6,6,6,7,4,3,5,1,5,4,4,6,2,5,7,6,6,5,5,6,5,7,7,6,5,2,6,3,7,4,4,2,7,2,5,7,7,7,6,6,6,5,6,1,6,3,7,4,7,6,3,3,2,4,6,6,6,7,1,7,7,1,7,3,2,6,1,1,6,3,6,6,6,1,2,3,2,3,6,4,6,4,6,7,6,4,4,2,6,1,6,7,2,2,2,7,6,7,7,4,7,4,6,7,5,1,1,7,1,5,2,5,7,1,5,1,4,6,4,7,6,3,1
12117,825,902,Seminole County,FL,1,5,6,6,6,7,5,4,5,1,7,4,4,7,5,5,7,7,6,7,7,7,6,7,6,6,6,2,6,3,7,4,5,4,7,3,6,7,7,7,7,4,7,7,7,3,7,3,7,5,7,7,3,2,2,1,7,1,7,7,1,7,7,3,7,4,1,3,6,1,6,1,2,5,7,1,2,3,5,5,6,4,3,6,6,7,6,3,1,6,1,1,7,7,2,6,6,7,7,7,7,6,7,5,6,7,6,1,1,1,1,6,1,5,7,1,5,2,5,5,4,7,6,3,1
12119,32,18,Sumter County,FL,2,5,4,4,3,7,3,3,2,1,4,3,3,5,3,4,5,5,3,6,6,5,4,6,4,5,4,1,4,2,6,2,3,2,3,3,4,6,5,4,6,4,4,7,3,6,4,2,5,2,5,4,3,2,5,1,4,7,6,7,1,7,7,3,7,4,2,3,5,1,6,3,6,6,7,1,3,6,4,3,2,2,3,4,3,1,6,3,5,1,6,4,6,3,3,1,6,1,1,5,5,4,5,3,4,6,4,2,1,1,1,5,1,5,6,1,3,6,4,4,4,6,2,3,1
12121,50,47,Suwannee County,FL,3,5,4,3,2,7,5,3,6,1,2,2,2,3,6,2,3,4,4,5,4,3,2,3,7,3,4,1,2,2,4,4,3,1,3,3,3,4,3,5,5,2,3,6,7,1,2,3,3,2,3,4,4,2,7,1,7,7,5,7,1,5,7,2,7,5,1,1,4,1,6,4,6,6,7,1,3,3,6,6,2,2,4,3,3,2,6,3,5,1,5,6,5,3,6,2,4,3,1,4,4,3,3,2,2,5,3,1,1,1,1,2,1,3,5,4,3,4,3,7,3,3,3,2,1
12123,19,26,Taylor County,FL,3,5,4,2,3,7,2,2,6,1,2,2,3,3,4,2,5,3,2,6,3,3,2,2,6,3,2,1,3,1,3,2,3,1,7,3,3,5,5,4,6,6,3,7,6,1,2,2,5,2,3,3,4,1,6,1,6,1,3,7,1,6,7,1,7,5,2,1,1,1,6,1,2,3,1,1,5,4,1,6,2,4,1,2,3,6,6,1,6,2,7,6,4,2,4,1,2,2,7,4,3,1,3,2,2,3,2,1,1,7,1,2,1,3,5,1,2,3,4,1,2,3,5,2,1
12125,28,30,Union County,FL,3,6,6,3,2,7,2,3,3,1,2,2,5,3,1,2,3,3,4,6,3,3,3,3,3,3,3,2,3,2,4,5,3,2,3,3,3,5,4,6,6,4,3,7,5,5,3,2,3,2,3,6,4,2,7,1,6,1,2,7,1,6,7,2,7,4,1,1,3,1,3,4,3,5,6,1,2,1,5,1,5,2,6,1,2,1,1,5,6,4,3,4,5,2,2,2,6,1,7,4,4,4,3,2,2,3,4,1,1,1,1,2,1,5,4,2,2,5,2,6,3,4,1,2,1
12127,519,574,Volusia County,FL,1,5,3,5,6,7,5,3,4,1,6,3,3,6,3,5,6,7,7,6,6,6,5,7,6,6,6,1,6,3,7,4,4,2,7,6,5,7,6,7,7,4,6,7,3,5,6,3,7,5,7,7,3,2,2,1,5,1,7,7,1,7,7,3,7,4,4,6,6,1,6,1,1,4,7,1,2,4,6,4,6,4,3,4,4,6,5,5,4,4,5,3,6,5,5,2,2,7,7,7,7,4,7,4,6,7,5,2,1,7,1,5,1,5,7,1,5,1,6,4,3,5,4,3,1
12129,18,14,Wakulla County,FL,1,5,4,3,3,7,5,3,2,1,2,2,1,3,2,2,5,5,2,6,5,4,2,2,3,3,5,1,3,2,4,4,2,1,3,2,2,5,3,2,6,4,3,7,3,4,3,3,4,2,3,4,4,1,7,1,7,1,3,7,1,6,7,1,7,5,5,1,1,1,6,2,1,2,2,1,3,3,2,4,5,3,6,3,3,1,4,1,6,1,5,3,4,4,2,2,7,1,1,4,4,3,4,2,2,4,2,1,1,7,1,2,1,5,5,2,3,4,3,3,2,6,5,2,1
12131,42,52,Walton County,FL,3,3,2,3,3,7,3,3,4,4,3,4,2,3,1,2,3,3,4,5,5,3,3,3,7,3,3,1,3,3,5,2,3,2,3,2,2,4,4,4,5,2,3,7,5,7,2,4,4,2,3,4,5,1,1,1,4,1,2,7,1,6,7,1,7,5,2,2,5,1,6,4,3,4,3,3,1,7,3,6,3,4,3,2,4,2,5,5,6,2,7,5,4,3,3,1,4,7,1,4,4,4,4,2,2,5,3,1,1,7,1,2,1,3,5,3,2,4,6,6,2,5,7,2,1
12133,18,18,Washington County,FL,3,4,3,2,2,7,2,3,4,1,2,4,2,3,4,2,2,3,4,5,3,3,2,2,7,3,3,1,2,2,4,2,4,3,2,2,3,4,3,6,5,5,3,6,6,5,2,4,3,2,3,5,5,1,7,1,3,1,2,7,1,6,7,1,7,5,2,2,5,1,6,3,1,2,3,3,1,2,2,7,3,1,3,6,3,3,5,4,1,1,6,6,5,2,4,2,6,1,6,4,3,5,3,3,2,4,4,2,1,1,1,2,1,4,5,3,2,4,5,5,2,3,4,1,1
13001,67,58,Appling County,GA,3,5,3,3,3,6,5,3,2,1,2,3,4,3,3,2,5,5,5,4,4,3,3,2,4,3,5,1,5,4,3,5,7,1,5,3,2,5,3,3,3,5,3,4,7,1,4,3,3,3,3,4,6,4,7,1,5,1,4,1,1,5,7,2,7,5,1,2,5,1,6,1,6,6,7,5,3,2,4,7,3,3,7,4,3,5,5,5,3,2,5,6,5,2,3,3,4,2,6,4,4,1,3,2,2,3,2,1,1,1,1,3,1,3,5,4,3,5,3,7,3,3,2,2,3
13003,19,23,Atkinson County,GA,4,5,2,2,2,7,3,3,2,1,2,3,4,2,2,2,2,2,5,4,2,2,2,2,3,3,2,1,3,3,2,5,7,1,3,3,2,4,4,7,3,1,2,4,7,1,3,3,7,2,2,4,5,3,6,1,6,1,4,1,1,4,6,2,6,5,1,1,4,1,6,1,5,6,6,4,7,6,3,1,6,1,1,4,1,1,1,1,7,5,5,7,7,1,4,2,5,2,7,3,3,1,2,2,1,2,2,1,1,1,1,2,1,3,4,4,2,3,2,7,3,1,1,2,3
13005,42,38,Bacon County,GA,3,5,2,2,2,6,3,3,1,1,2,3,4,3,2,2,3,3,5,4,3,2,2,2,3,3,3,1,3,3,2,5,7,1,4,3,2,2,2,2,3,1,2,4,7,6,4,3,5,2,3,4,5,4,7,1,6,1,6,1,1,5,7,2,7,5,1,2,5,1,6,1,5,6,7,4,4,5,2,4,3,4,5,1,1,5,5,7,6,4,5,7,3,2,3,3,4,2,6,3,3,1,2,2,1,2,2,1,1,1,1,2,1,4,4,3,2,3,3,7,3,2,1,2,3
13007,3,2,Baker County,GA,1,4,2,2,2,7,3,3,2,1,2,3,3,2,2,2,1,2,4,4,2,2,2,2,3,2,2,1,4,3,2,2,6,2,2,4,2,2,2,2,5,4,2,7,7,5,3,4,2,2,2,5,5,1,7,1,3,1,1,1,1,5,7,1,7,5,4,3,5,1,6,4,4,7,6,5,1,1,5,1,5,1,7,1,1,1,1,1,7,3,5,7,4,1,7,3,7,1,6,5,3,4,2,2,2,1,4,1,1,1,2,4,1,4,3,5,3,3,3,7,2,3,1,1,3
13009,184,208,Baldwin County,GA,2,4,5,4,5,6,3,5,3,1,3,5,7,5,3,4,6,5,7,5,6,6,5,4,7,5,4,2,6,6,6,4,7,5,6,7,6,4,5,5,5,6,5,6,6,1,6,4,5,6,5,6,7,4,2,7,6,1,4,1,1,7,6,2,6,5,6,6,7,2,6,5,3,2,3,3,2,4,5,7,5,6,6,2,3,6,7,4,4,7,5,6,4,3,5,3,3,4,3,5,6,7,5,6,5,5,7,2,4,1,2,5,2,5,6,2,6,6,4,1,4,4,5,1,3
13011,55,60,Banks County,GA,4,4,6,3,3,6,4,6,6,1,3,6,6,4,2,3,5,4,6,6,5,5,4,5,4,7,4,1,5,6,5,5,7,2,4,3,3,4,4,3,4,6,3,5,7,1,5,4,3,5,4,4,7,5,6,6,4,1,5,1,1,6,5,1,5,6,7,4,7,7,3,3,7,4,6,4,2,7,5,3,4,1,6,1,2,1,1,1,7,1,2,4,3,1,1,4,7,1,5,5,5,1,4,3,2,3,4,3,5,1,1,4,3,3,6,3,3,6,3,2,5,5,4,1,3
13013,337,372,Barrow County,GA,1,4,6,5,5,7,5,7,4,1,5,6,7,6,3,5,6,6,7,7,7,7,6,7,6,7,6,2,7,7,6,5,7,2,6,6,5,6,6,5,6,1,5,7,7,1,7,4,6,6,7,5,7,4,6,6,5,1,6,1,1,6,5,1,5,6,7,6,7,5,3,3,6,2,4,4,3,5,3,4,4,3,2,2,3,2,3,4,6,4,1,2,5,3,2,5,7,2,5,6,6,1,6,4,5,5,7,3,5,1,1,6,3,6,6,2,5,7,4,2,5,6,2,1,7
13015,356,344,Bartow County,GA,1,3,6,5,5,7,7,7,7,1,5,6,7,6,4,5,6,7,7,7,7,7,6,7,6,6,7,2,7,5,6,5,7,5,7,7,6,6,6,7,6,6,5,6,7,1,7,5,6,6,6,6,7,4,3,6,6,1,6,1,1,6,5,2,5,7,6,6,6,6,3,1,5,4,4,5,6,6,4,6,5,3,3,5,3,3,3,5,6,4,1,2,5,2,2,5,5,3,6,6,6,7,6,6,5,6,7,4,3,1,4,6,2,5,6,4,5,7,3,3,5,6,5,2,3
13017,50,54,Ben Hill County,GA,3,5,5,4,4,6,4,3,5,1,3,3,7,4,2,3,4,5,7,4,5,5,4,4,5,5,4,1,6,4,5,4,7,1,7,3,4,4,5,5,4,4,5,4,7,1,5,3,5,4,5,4,6,2,5,1,3,1,3,1,1,5,6,2,6,5,3,4,6,1,6,2,2,6,6,5,7,1,6,6,6,6,4,5,1,5,6,6,1,7,4,7,4,1,5,3,3,5,7,5,5,1,5,5,3,3,3,1,2,1,3,4,1,3,5,4,3,5,2,7,3,2,2,1,3
13019,76,73,Berrien County,GA,3,5,4,3,2,7,3,3,3,1,2,3,6,3,3,2,3,3,5,4,4,3,3,2,4,4,3,1,4,3,4,5,7,1,4,4,2,3,5,7,4,1,3,5,7,1,4,3,7,2,3,4,5,2,7,1,6,1,2,1,1,5,6,2,6,5,2,1,5,1,6,1,4,6,7,5,4,4,6,5,5,4,7,2,1,3,6,7,2,4,4,6,3,1,3,3,6,2,7,4,4,1,3,2,2,3,2,1,1,1,1,3,1,3,4,4,2,4,2,7,3,3,5,1,3
13021,552,526,Bibb County,GA,1,4,7,5,7,7,5,5,5,1,6,5,7,7,4,5,7,7,7,6,7,7,6,7,6,6,6,1,7,7,7,4,7,5,6,6,7,7,6,6,7,7,7,5,6,1,7,4,6,5,7,7,7,2,2,5,6,1,4,6,1,7,6,2,6,5,6,7,7,4,6,7,4,3,4,5,4,7,5,7,7,5,5,5,5,7,5,7,4,7,4,6,3,3,6,4,2,6,7,7,7,7,7,7,6,7,7,3,4,1,2,6,3,3,7,3,7,3,3,2,3,5,4,1,3
13023,43,58,Bleckley County,GA,3,4,2,3,4,6,3,4,2,1,2,4,5,3,4,2,3,3,5,4,3,3,3,3,7,3,3,1,4,5,3,3,7,2,4,3,3,2,3,3,4,4,3,4,7,1,5,4,3,4,3,6,6,3,7,1,3,1,2,1,1,7,6,2,6,5,6,5,6,1,6,7,4,6,6,4,4,2,6,7,2,1,1,2,2,5,1,5,4,4,3,5,2,2,5,5,6,2,6,4,4,1,3,2,2,2,2,1,2,1,2,3,1,3,4,4,6,3,4,7,3,3,3,1,3
13025,45,56,Brantley County,GA,1,6,2,2,5,6,3,3,4,1,2,3,3,2,6,2,5,2,3,4,2,2,2,2,3,3,2,1,3,3,2,6,5,1,3,4,2,3,3,2,3,2,2,3,7,6,3,2,5,2,2,5,5,4,7,1,6,1,3,1,1,5,7,2,7,5,6,3,6,1,6,2,2,3,5,3,1,5,3,4,5,2,1,2,2,1,1,3,6,1,6,5,2,2,3,2,7,1,7,3,3,1,2,1,1,3,2,1,1,1,2,3,1,4,3,3,5,3,3,5,3,3,1,2,3
13027,23,27,Brooks County,GA,1,5,4,3,3,7,4,3,3,1,3,3,6,4,3,3,3,4,5,5,4,4,3,3,4,4,4,1,5,2,5,4,7,1,4,5,2,4,4,7,5,6,4,6,7,6,5,3,7,2,4,4,5,2,7,1,5,1,4,1,1,5,7,1,7,5,1,2,5,1,6,2,4,7,7,5,3,4,7,1,4,1,1,2,1,2,5,6,7,3,5,7,3,2,4,4,6,3,1,5,5,1,3,2,2,3,3,1,1,1,1,3,1,5,5,4,3,5,3,7,2,3,3,1,3
13029,153,131,Bryan County,GA,1,5,3,3,7,7,7,3,4,1,7,4,4,4,5,3,6,4,4,5,5,4,4,4,4,7,4,1,5,4,5,5,6,3,4,5,3,4,3,7,4,4,3,5,6,6,5,2,4,3,4,6,5,6,5,1,5,6,3,1,1,6,7,2,7,5,5,5,6,1,6,3,1,1,2,4,1,5,4,5,3,4,1,3,1,1,7,1,5,3,2,3,4,4,1,6,7,5,1,7,4,5,4,3,2,4,5,1,1,1,1,4,1,7,5,3,6,4,4,6,4,7,3,2,7
13031,285,315,Bulloch County,GA,2,5,5,4,5,6,2,3,2,1,7,5,6,5,2,4,5,5,6,4,6,6,5,3,5,7,4,1,6,5,5,5,7,2,5,4,3,4,5,5,5,2,5,5,7,4,5,2,5,3,5,4,5,6,4,1,4,1,2,5,1,7,7,2,7,5,2,3,5,1,6,2,2,6,6,6,3,6,5,7,4,4,3,6,4,5,5,3,3,7,3,7,5,4,7,3,3,7,3,6,6,3,5,3,5,6,4,1,1,1,1,5,1,4,6,5,4,6,4,7,4,5,4,2,7
13033,44,68,Burke County,GA,1,5,5,3,2,6,6,4,4,1,2,6,5,3,4,6,5,3,5,6,3,3,3,3,6,7,6,1,4,6,3,4,7,2,4,5,7,3,3,3,4,4,6,3,7,1,4,3,2,4,3,5,6,6,7,4,4,1,3,1,1,7,7,2,7,5,4,5,7,2,6,2,4,6,5,6,4,2,6,5,6,1,1,5,1,2,4,6,7,4,3,7,3,1,7,3,5,1,7,4,4,4,3,3,2,4,4,1,1,1,2,4,1,4,4,5,3,3,6,7,5,2,1,2,6
13035,75,91,Butts County,GA,1,4,5,4,4,6,5,6,4,1,4,5,6,5,5,3,5,5,5,6,6,6,5,6,5,5,5,1,6,6,5,4,7,4,4,3,5,5,5,4,5,6,4,5,7,1,6,4,5,5,5,6,7,2,4,6,7,1,6,1,1,7,6,2,6,6,6,6,7,6,3,4,2,2,5,4,1,3,6,7,1,1,1,4,2,2,5,4,7,3,4,3,2,2,2,4,7,4,6,5,5,7,5,5,4,3,6,3,3,1,1,5,2,4,6,2,4,6,3,2,4,5,3,1,3
13037,15,24,Calhoun County,GA,4,4,2,2,2,7,2,4,3,1,1,3,3,2,2,1,1,2,4,3,2,2,3,2,3,2,7,1,3,3,2,2,6,2,2,3,2,2,2,2,4,2,2,5,7,5,3,4,2,3,2,5,6,1,3,1,1,1,3,1,1,6,6,1,6,6,3,2,4,1,6,4,6,7,6,5,3,5,7,4,6,2,7,2,1,3,6,7,7,5,5,7,1,1,4,2,6,2,5,5,2,4,2,2,1,1,3,1,2,1,2,2,1,4,3,4,3,3,4,7,2,1,2,1,3
13039,130,127,Camden County,GA,2,6,3,3,6,7,5,3,5,1,3,2,6,4,6,3,7,4,5,6,5,4,4,3,4,4,4,1,5,2,5,7,7,4,4,6,4,6,4,3,5,4,3,4,7,6,5,3,3,2,4,7,4,4,5,1,3,1,4,1,1,4,7,2,7,5,7,4,6,1,6,4,1,2,2,3,3,4,3,5,4,3,2,5,2,4,4,4,7,7,5,3,5,6,5,5,3,4,6,4,4,6,4,4,3,5,5,1,1,1,1,3,1,4,5,2,7,7,4,1,4,5,6,2,5
13043,23,37,Candler County,GA,3,5,6,2,3,5,2,3,1,1,2,4,4,3,1,2,2,3,4,4,3,3,3,3,3,3,2,1,3,5,3,5,6,1,4,2,2,2,3,2,4,6,2,3,7,1,4,3,2,3,3,4,6,5,7,1,4,1,2,1,1,7,7,2,6,5,3,4,6,1,6,1,4,6,7,5,2,6,7,7,3,6,1,4,1,5,7,6,7,5,5,7,6,1,6,3,5,2,6,4,3,1,3,2,2,2,2,1,1,1,2,3,1,3,5,4,2,4,4,7,4,2,4,2,3
13045,555,559,Carroll County,GA,1,3,6,5,5,6,6,7,7,1,5,5,7,6,4,4,6,6,7,7,7,6,5,6,6,6,6,1,6,5,5,5,7,5,7,3,6,5,6,5,5,6,5,7,7,1,6,5,6,5,6,6,7,2,5,6,6,1,5,1,1,6,5,2,6,6,4,3,7,6,3,3,6,3,5,4,4,6,3,7,3,2,4,5,3,4,4,4,4,6,2,4,4,2,3,4,5,5,7,6,6,7,6,6,5,6,7,3,2,1,1,5,2,4,5,2,4,7,4,3,3,6,3,2,7
13047,165,200,Catoosa County,GA,1,3,6,5,6,7,7,7,7,1,7,6,7,6,7,5,7,7,6,7,7,7,6,7,6,6,7,5,7,5,7,6,7,3,6,5,5,7,6,5,6,3,6,6,6,6,7,5,6,6,6,7,7,5,5,4,7,1,5,1,1,4,5,2,5,6,7,7,5,6,3,6,6,2,3,3,2,4,3,6,2,2,2,2,4,4,4,3,3,3,2,2,3,3,1,5,7,3,1,7,7,5,7,5,5,6,5,5,4,1,5,6,3,2,7,2,5,7,4,1,5,5,3,2,3
13049,28,24,Charlton County,GA,3,6,1,2,2,7,4,3,3,1,2,2,3,2,2,2,2,2,4,5,2,2,3,2,3,2,2,1,2,2,2,6,4,3,2,3,2,2,2,2,4,4,1,5,5,4,2,2,2,2,2,5,4,3,7,1,6,1,1,1,1,4,7,2,7,6,1,1,6,1,6,1,3,2,2,1,5,5,5,7,1,1,5,6,1,2,1,4,5,2,5,7,1,1,4,3,6,2,7,3,2,4,2,3,1,2,4,1,1,1,1,2,1,5,3,2,3,4,1,4,3,3,2,1,3
13051,699,898,Chatham County,GA,1,5,6,5,7,7,7,4,5,1,7,4,7,7,6,5,7,7,7,6,7,7,6,7,6,7,6,2,7,6,7,6,7,4,6,7,6,7,7,7,7,5,7,5,6,7,7,3,6,6,7,7,6,6,3,1,3,1,6,6,1,6,7,2,7,4,5,6,7,2,6,1,2,2,3,1,3,6,6,7,7,6,5,6,6,6,6,7,4,7,3,5,5,4,5,4,1,7,6,7,7,6,7,6,7,7,6,1,2,7,3,7,2,7,7,2,7,3,5,2,4,6,5,2,7
13053,4,0,Chattahoochee Cou,GA,1,4,4,3,5,6,4,6,5,1,3,4,5,6,2,3,5,4,5,6,4,4,5,3,5,7,7,2,5,5,3,3,7,6,5,7,3,5,4,4,5,1,7,4,7,6,6,4,2,4,4,7,7,1,1,6,4,1,2,1,1,7,6,1,6,6,7,5,7,1,6,5,1,1,1,1,1,6,1,1,5,1,1,1,1,1,1,1,1,7,4,3,6,7,6,6,5,1,6,5,5,4,4,4,2,3,3,1,1,1,2,5,1,6,4,1,6,3,5,1,3,3,1,2,3
13055,71,80,Chattooga County,GA,3,3,5,4,3,6,7,7,7,1,4,6,7,5,3,3,6,5,6,6,5,5,4,5,5,5,7,2,7,4,5,6,7,4,5,5,4,5,5,5,5,4,4,6,7,3,6,5,4,5,5,7,7,3,3,5,5,1,3,1,1,5,5,2,5,6,6,3,1,2,6,1,4,3,3,4,2,1,5,3,2,3,3,1,2,1,1,5,2,4,3,5,3,1,4,2,5,3,6,5,5,5,4,5,4,4,5,3,1,1,4,5,1,4,6,4,4,6,3,2,3,2,1,2,3
13057,1082,1148,Cherokee County,GA,1,4,7,6,6,7,7,7,6,1,6,6,7,7,3,5,7,7,7,7,7,7,6,7,6,6,7,1,7,6,7,5,7,4,6,5,6,6,7,6,7,6,6,7,5,1,7,4,7,6,7,6,7,4,5,7,6,1,6,1,1,6,5,2,5,7,4,5,7,7,3,2,4,2,5,1,2,3,4,4,4,2,4,5,4,2,5,3,2,1,1,1,6,6,1,7,7,5,2,7,7,6,7,6,6,7,6,3,3,1,1,6,3,5,5,2,5,7,3,2,5,7,2,2,3
13059,428,411,Clarke County,GA,1,4,7,5,6,7,6,6,3,1,6,6,7,6,3,5,7,7,7,6,7,7,6,7,7,7,6,3,7,7,7,5,7,1,7,5,6,6,6,6,6,5,6,6,7,1,7,4,5,7,7,4,7,5,1,7,7,1,7,1,1,6,5,1,5,6,7,7,7,6,3,7,6,3,6,4,3,6,3,6,7,7,5,5,7,7,5,6,2,7,1,7,6,5,7,1,2,7,5,7,7,1,7,5,6,6,6,5,7,1,3,6,2,7,7,2,5,4,5,3,5,6,6,1,3
13061,6,3,Clay County,GA,4,4,1,2,4,6,2,5,3,1,2,4,2,2,3,2,3,2,2,3,3,2,3,2,3,2,7,2,2,3,3,2,4,2,2,4,2,2,3,2,3,6,5,3,7,6,3,4,2,3,2,6,6,1,7,1,3,1,2,1,1,6,6,1,6,6,2,3,6,2,6,5,3,6,4,5,3,1,7,1,1,1,1,1,1,2,1,1,5,5,7,7,1,1,6,1,6,2,6,5,2,3,2,1,1,1,2,1,1,1,3,3,1,3,3,4,4,3,4,7,2,1,1,1,1
13063,386,416,Clayton County,GA,1,4,7,6,6,7,6,7,4,1,6,6,7,7,6,5,7,7,7,7,7,7,6,7,6,6,7,2,7,7,7,5,7,4,7,4,6,7,7,6,7,4,6,6,6,1,7,4,6,6,7,7,7,2,1,7,7,7,6,7,1,6,5,2,6,6,5,7,6,3,3,5,4,1,3,1,2,6,5,5,7,2,3,6,3,3,7,5,3,7,1,3,7,4,4,4,7,7,7,7,7,5,7,6,6,7,6,2,5,1,1,7,2,6,6,1,6,5,3,1,4,6,2,1,2
13065,29,30,Clinch County,GA,3,5,2,2,2,6,2,3,3,1,1,2,3,2,2,1,1,2,4,3,2,1,2,2,2,2,2,1,3,2,2,5,6,1,3,3,1,2,6,7,3,1,1,4,7,1,2,2,5,2,2,4,5,2,6,1,6,1,2,1,1,4,7,2,7,5,1,1,4,1,6,2,1,3,3,1,5,3,3,7,5,1,1,5,2,7,6,6,6,5,4,7,2,1,2,3,2,3,7,3,2,1,2,1,1,1,2,1,1,1,1,2,1,3,3,2,1,2,2,5,3,2,1,2,2
13067,2591,2633,Cobb County,GA,1,3,7,6,7,7,7,7,6,1,6,6,7,7,3,5,7,7,7,7,7,7,6,7,7,7,7,2,7,7,7,6,7,5,7,5,6,7,7,6,7,7,7,7,5,1,7,4,7,6,7,7,7,3,1,7,7,6,6,6,1,6,5,2,5,7,5,2,7,6,1,2,2,2,5,1,2,3,5,5,7,3,4,6,6,5,7,4,3,6,1,1,7,7,2,7,6,7,3,7,7,7,7,7,7,7,7,4,4,1,1,7,3,6,6,2,6,5,3,2,5,7,4,2,3
13069,138,128,Coffee County,GA,3,5,5,4,3,6,4,3,2,1,3,3,6,5,2,3,4,5,7,4,4,4,4,3,4,5,4,1,5,4,4,5,7,1,5,3,3,3,4,6,4,1,5,5,7,1,5,3,7,3,5,4,6,3,7,1,4,1,2,5,1,5,6,2,6,5,2,3,6,1,6,4,6,7,7,4,6,1,5,7,5,5,3,2,2,5,6,5,6,4,5,6,6,1,5,2,2,3,7,5,5,1,4,3,3,5,3,1,1,1,2,3,1,3,5,4,3,5,3,7,3,3,4,2,7
13071,141,165,Colquitt County,GA,3,5,5,5,4,7,3,3,2,1,4,3,6,6,2,4,6,6,6,5,5,5,5,3,5,6,5,1,6,3,5,3,7,2,5,3,3,3,7,6,5,2,6,6,7,1,6,3,5,3,6,4,6,2,6,1,5,1,3,1,1,5,6,1,6,5,2,3,6,1,6,4,5,7,7,5,5,3,5,5,6,2,5,4,1,4,4,5,6,6,4,6,6,1,5,3,3,4,7,6,6,4,5,3,4,5,4,1,1,1,3,5,1,4,5,4,4,6,2,7,2,3,3,1,7
13073,631,715,Columbia County,GA,1,5,7,5,6,7,7,5,5,1,6,7,7,6,5,6,7,7,7,7,7,7,6,7,6,7,6,3,7,7,7,5,7,3,6,6,7,7,6,6,6,3,7,6,5,6,7,3,6,5,7,6,7,6,3,6,4,7,5,1,1,7,6,2,6,5,4,6,7,5,6,7,2,2,4,3,2,4,5,2,1,1,3,5,3,3,4,3,4,1,2,1,6,7,2,7,7,4,1,7,7,5,7,5,6,6,6,2,2,1,1,6,2,5,7,2,5,7,5,5,6,7,3,1,4
13075,55,59,Cook County,GA,3,5,4,3,3,7,3,3,3,1,3,3,6,4,3,3,3,4,5,5,4,4,4,3,4,4,3,2,6,3,5,4,7,1,5,4,2,4,6,7,4,5,3,5,7,1,5,3,7,3,5,4,5,2,6,1,5,1,5,1,1,5,6,1,6,5,1,1,5,1,6,3,6,7,7,4,6,7,4,7,5,1,4,2,2,4,1,1,5,4,3,7,4,1,4,4,5,2,7,4,4,1,4,2,2,3,2,1,1,1,1,3,1,6,5,3,2,4,2,7,3,2,1,1,7
13077,472,565,Coweta County,GA,1,3,5,5,5,7,5,7,7,1,5,5,7,6,5,4,5,6,6,6,7,7,5,6,6,6,7,1,6,5,5,4,7,5,6,4,5,5,5,5,5,7,5,6,7,4,7,5,6,5,6,6,7,2,5,6,5,1,5,1,1,6,6,2,6,6,5,5,7,7,3,5,3,3,5,4,2,6,3,5,4,2,3,4,4,2,3,5,3,3,1,1,5,5,2,6,6,5,6,6,6,7,6,6,5,6,7,3,4,1,1,5,3,5,4,2,4,7,3,3,3,7,3,2,3
13079,27,38,Crawford County,GA,1,4,6,3,5,6,4,5,4,1,2,4,5,4,6,2,6,4,5,6,4,3,3,3,4,4,3,1,4,5,3,2,7,3,4,4,4,3,3,3,4,5,2,3,7,1,5,4,3,4,3,6,7,2,7,1,5,1,1,1,1,7,6,2,6,6,3,5,7,4,1,2,3,5,5,4,2,2,6,1,4,2,5,1,2,1,1,4,5,1,3,5,1,2,3,5,7,1,6,4,4,5,3,4,2,2,5,2,3,1,1,4,3,3,4,2,6,4,3,7,3,4,1,1,2
13081,74,42,Crisp County,GA,3,5,2,4,4,7,3,4,2,1,3,3,6,4,3,3,4,4,6,5,6,5,4,5,5,4,4,2,5,4,6,2,7,1,5,3,3,5,5,4,5,3,4,4,7,1,5,4,7,4,5,5,6,2,4,1,3,1,4,1,1,6,6,1,6,5,4,4,6,1,6,1,3,7,6,5,7,7,6,7,6,5,5,3,2,5,4,7,6,7,4,7,4,1,6,4,3,4,7,5,5,3,5,3,3,4,3,1,2,1,3,5,1,5,6,4,3,5,3,7,3,3,4,1,7
13083,36,36,Dade County,GA,1,3,5,4,4,6,7,7,7,1,6,5,6,5,7,3,5,5,5,6,5,5,5,6,5,5,6,3,6,4,6,6,7,5,5,4,5,5,5,4,5,6,4,6,7,4,6,5,5,5,5,6,7,4,1,7,4,1,3,1,1,5,5,2,5,6,5,7,1,2,6,7,6,2,4,3,3,7,2,7,6,3,4,1,4,1,3,1,6,2,3,2,3,1,4,4,7,1,6,5,5,7,6,5,3,3,7,3,2,1,3,5,2,4,6,2,5,6,4,1,2,4,4,2,3
13085,87,97,Dawson County,GA,1,4,6,3,3,6,5,7,2,1,3,6,5,4,3,3,6,4,5,6,6,5,4,5,4,7,6,1,5,6,4,5,7,2,3,2,3,3,4,3,4,1,3,5,6,1,5,4,4,5,4,4,7,5,6,7,6,1,3,1,1,5,5,2,5,7,6,6,7,6,3,6,5,1,4,3,1,1,5,6,1,1,7,3,6,3,3,4,7,1,5,1,3,4,1,6,7,3,6,5,5,1,4,2,2,3,3,3,2,1,1,4,2,3,5,2,3,5,3,2,5,7,7,1,3
13087,77,74,Decatur County,GA,3,4,5,4,4,7,6,3,3,1,4,3,6,5,3,3,4,7,6,5,6,5,4,3,5,5,6,1,7,2,6,5,7,2,5,5,3,6,5,4,6,4,5,7,7,5,5,4,5,5,5,4,5,1,6,1,3,6,4,1,1,6,7,1,7,5,2,2,5,1,6,4,5,7,7,5,6,7,6,6,6,4,4,2,2,4,6,7,3,5,5,7,4,2,5,3,3,3,6,6,5,4,5,3,3,4,4,1,1,1,1,4,1,4,6,4,5,6,3,7,2,3,2,1,1
13089,2087,2231,DeKalb County,GA,1,4,7,6,7,7,7,7,5,1,6,7,7,7,4,5,7,7,7,7,7,7,7,7,7,7,7,2,7,7,7,5,7,3,7,4,6,7,7,6,7,6,6,7,6,1,7,4,7,6,7,7,7,3,2,7,7,7,6,7,1,6,5,2,5,6,5,7,6,2,1,3,2,1,3,1,2,4,5,4,7,3,4,6,5,5,7,7,2,7,1,3,7,6,4,5,7,7,6,7,7,5,7,6,7,7,6,2,6,1,1,7,3,6,7,1,6,3,4,1,5,7,2,2,3
13091,96,100,Dodge County,GA,3,5,3,2,2,6,2,4,2,1,2,4,3,3,3,2,3,3,4,3,3,3,3,2,6,3,2,1,4,5,2,4,6,1,4,2,2,2,3,3,3,1,3,4,7,6,4,3,2,3,3,4,6,3,7,1,3,1,1,1,1,6,6,2,6,5,6,7,6,2,6,6,2,6,6,5,1,2,7,6,2,1,1,2,2,6,3,5,5,5,5,6,2,1,4,2,4,3,6,3,3,1,2,2,2,3,2,2,3,1,2,2,1,4,4,4,2,4,3,7,3,2,3,1,3
13093,17,25,Dooly County,GA,3,4,1,2,2,6,4,4,3,1,2,4,4,2,4,2,5,3,5,5,3,2,2,3,3,3,3,1,4,4,7,3,7,1,3,4,2,3,2,2,3,3,2,3,7,1,3,4,6,4,2,5,6,2,6,1,3,1,3,1,1,6,6,1,6,6,4,3,6,2,6,7,3,7,7,6,7,4,5,5,2,1,1,1,1,2,1,7,6,6,5,7,4,2,5,5,5,2,6,3,3,1,2,2,1,2,2,1,1,1,3,3,1,4,4,4,2,3,3,7,3,2,1,1,5
13095,242,261,Dougherty County,GA,1,4,7,4,6,7,3,4,2,1,5,4,7,6,2,4,5,5,7,6,7,6,6,6,6,5,4,3,7,6,7,3,7,2,6,5,6,7,6,6,6,6,5,6,7,1,6,4,5,5,6,7,7,1,1,1,1,7,5,1,1,5,6,1,6,5,4,4,5,1,6,2,6,7,6,3,4,7,4,7,6,6,6,7,5,7,5,6,4,7,4,7,4,3,7,2,1,6,7,6,6,4,7,5,6,6,4,1,2,1,2,6,1,7,7,3,4,3,3,7,2,4,5,1,3
13097,451,489,Douglas County,GA,1,3,7,5,6,7,6,7,7,1,6,6,7,7,4,5,7,7,7,7,7,7,6,7,6,6,7,1,7,6,7,5,7,5,6,3,6,6,7,6,6,7,6,7,6,1,7,5,7,5,7,7,7,2,4,7,7,1,7,1,1,6,5,2,5,6,6,4,6,5,3,5,3,3,5,3,2,4,6,6,5,2,5,6,5,4,6,4,3,4,1,1,5,5,2,6,7,6,7,7,7,7,7,6,6,6,7,2,3,1,1,7,2,4,6,2,5,7,4,2,4,6,2,2,3
13099,31,40,Early County,GA,3,4,2,2,6,6,3,4,5,1,2,4,3,3,4,2,7,3,4,4,3,2,4,2,3,2,2,2,3,3,2,3,6,3,3,5,3,4,3,2,3,4,7,4,7,6,3,4,2,2,2,6,6,1,6,1,4,1,2,1,1,6,7,1,7,5,5,2,5,2,6,2,3,7,6,6,5,5,6,1,5,4,7,3,2,1,6,6,3,5,4,7,2,2,6,2,4,3,6,6,3,4,2,2,2,2,3,2,2,1,3,2,1,3,3,5,5,3,4,7,2,2,4,1,1
13101,1,2,Echols County,GA,1,5,2,2,1,6,4,3,6,1,1,2,4,2,3,1,1,3,3,4,2,2,2,2,2,2,3,1,3,2,4,5,5,1,2,4,1,2,4,7,3,1,1,4,7,1,2,3,7,2,2,5,5,2,7,1,7,1,1,1,1,4,7,2,7,5,1,1,4,1,6,6,1,5,4,3,1,1,6,6,7,1,1,1,1,1,1,1,1,4,5,7,7,1,2,2,7,1,7,3,2,1,2,1,1,1,2,1,1,1,1,2,1,3,3,3,2,2,2,6,3,3,1,2,3
13103,293,355,Effingham County,GA,1,5,2,3,6,6,7,3,6,1,7,5,5,4,5,3,6,4,5,5,5,4,4,4,4,7,4,2,5,5,4,5,7,3,4,5,3,4,4,4,4,4,4,4,7,6,5,2,4,3,4,5,5,7,6,6,5,1,4,1,1,6,7,2,7,4,5,2,6,1,6,3,2,4,4,4,1,2,6,4,2,1,1,2,2,1,4,1,5,1,2,2,2,4,2,6,7,3,1,7,4,5,4,4,2,5,5,1,1,1,1,4,1,7,5,4,6,5,4,5,4,6,1,2,3
13105,76,60,Elbert County,GA,3,4,4,4,7,6,5,5,4,1,4,6,6,5,3,3,3,6,6,5,5,5,7,4,7,4,5,2,6,6,5,5,7,4,5,2,3,3,4,4,4,6,4,5,7,1,5,3,4,5,5,4,7,6,6,6,4,1,4,1,1,7,5,1,5,6,7,7,7,7,3,4,4,2,4,3,1,6,3,7,2,4,1,2,3,3,1,5,6,4,4,6,3,1,5,4,3,4,7,5,5,4,4,3,4,4,3,4,6,1,1,5,4,5,6,2,4,6,4,6,6,3,6,1,3
13107,79,75,Emanuel County,GA,3,5,3,2,3,6,3,4,2,1,2,5,5,3,1,3,2,3,5,4,4,3,3,3,5,3,3,2,4,5,3,4,7,1,3,4,2,2,3,3,4,1,3,4,7,1,4,3,2,4,4,4,6,5,6,1,4,1,2,1,1,7,6,2,6,5,3,3,6,1,6,2,3,5,4,4,4,5,6,7,4,5,1,7,2,5,4,5,6,6,5,7,5,1,3,3,3,2,6,4,3,1,3,2,2,4,2,1,1,1,1,3,1,5,5,4,2,4,5,7,4,1,4,2,6
13109,36,43,Evans County,GA,3,5,3,3,3,6,2,3,1,1,3,4,5,3,2,2,2,3,5,4,4,4,4,3,4,4,3,1,4,5,4,5,7,1,5,3,2,3,5,3,4,2,3,4,7,1,4,2,3,3,3,4,6,5,5,1,6,1,4,1,1,6,7,2,7,5,6,2,6,1,6,5,6,6,7,4,4,1,7,7,4,4,1,5,1,3,1,7,4,6,5,7,5,1,6,2,4,2,6,4,4,1,3,3,2,2,2,1,1,1,1,4,1,4,5,3,2,5,2,7,4,3,6,2,3
13111,40,54,Fannin County,GA,4,4,3,3,3,5,3,7,1,1,3,6,4,3,7,2,4,3,5,4,6,4,3,4,4,3,5,2,4,5,3,5,7,1,5,2,5,2,3,3,3,2,3,4,7,1,4,4,4,5,3,5,7,5,6,6,4,1,2,1,1,5,5,2,5,7,3,2,7,5,3,7,3,2,3,1,1,4,1,7,3,3,3,2,7,6,5,4,2,1,7,4,1,2,2,2,5,1,6,4,4,3,3,3,3,3,2,2,2,1,1,3,2,1,4,2,2,5,3,4,6,5,7,2,3
13113,274,252,Fayette County,GA,1,4,7,5,6,7,5,7,5,1,5,5,7,6,6,5,6,6,7,7,7,7,6,7,7,6,6,2,7,6,6,4,7,4,6,3,5,6,6,6,7,5,6,6,7,1,7,4,7,5,7,7,7,2,3,6,3,1,6,1,1,6,6,2,6,6,6,6,7,5,3,6,1,3,6,3,2,1,6,5,6,2,2,6,7,6,7,1,2,1,1,1,5,7,1,7,7,5,1,6,7,6,7,6,5,6,6,3,5,1,1,6,2,5,5,2,5,7,3,4,4,7,5,1,6
13115,317,352,Floyd County,GA,1,3,7,5,5,7,6,7,7,1,5,6,7,6,3,5,7,7,7,6,7,7,6,6,6,6,6,1,7,6,6,6,7,5,7,6,6,7,7,6,6,7,6,7,7,1,7,5,6,6,7,7,7,3,2,6,7,1,3,1,1,6,5,2,5,7,7,7,4,5,3,2,5,5,4,4,5,6,4,7,4,4,5,3,4,6,4,7,4,6,2,5,6,2,5,3,2,5,7,7,7,7,6,6,6,6,7,6,3,1,7,6,2,3,7,4,5,7,3,3,3,5,3,2,3
13117,694,757,Forsyth County,GA,1,4,7,5,6,7,6,7,2,1,6,6,7,6,3,5,7,7,7,7,7,7,6,7,6,7,7,1,7,6,6,5,7,2,6,3,5,6,6,5,6,6,6,6,7,1,7,4,6,6,7,5,7,4,5,7,5,1,6,5,1,6,5,2,5,7,6,6,7,5,3,5,7,3,5,3,2,3,4,4,5,1,4,5,5,3,5,3,5,1,1,1,6,6,1,7,7,1,1,7,7,4,7,5,5,6,5,3,2,1,1,6,2,4,5,2,5,7,3,3,5,7,6,1,3
13119,80,98,Franklin County,GA,4,4,6,4,5,6,5,6,6,1,5,6,6,5,4,4,4,5,6,6,5,5,6,5,4,5,5,3,6,6,5,6,7,3,5,4,3,4,5,3,5,1,4,5,7,1,5,4,4,5,5,4,7,5,6,6,4,1,5,1,1,6,5,1,5,6,7,6,6,6,3,4,7,4,6,5,2,7,5,7,1,2,5,4,4,4,5,7,7,2,5,4,1,1,2,4,6,1,6,5,5,1,4,3,4,3,3,3,5,1,1,4,3,6,6,3,4,6,3,1,6,5,4,1,3
13121,3098,3340,Fulton County,GA,1,4,7,6,7,7,7,7,5,1,7,7,7,7,4,5,7,7,7,7,7,7,7,7,7,7,7,3,7,7,7,6,7,4,7,5,7,7,7,7,7,4,7,7,7,1,7,4,7,7,7,7,7,2,1,7,7,7,6,7,1,6,5,2,5,7,5,5,6,3,1,3,1,3,5,1,5,5,6,6,7,4,6,6,6,7,7,7,3,7,2,5,6,6,7,2,4,7,7,7,7,6,7,7,7,7,6,2,3,1,1,7,2,7,7,1,6,4,3,3,5,7,5,2,3
13123,59,73,Gilmer County,GA,3,4,4,3,3,5,6,7,3,1,4,6,6,4,6,3,4,4,5,5,6,5,4,5,4,4,7,1,5,5,4,5,7,2,4,2,3,2,3,3,4,2,3,5,7,1,5,4,4,5,3,5,7,5,6,6,3,1,3,1,1,5,5,2,5,7,3,3,7,5,3,3,5,1,2,1,4,4,1,4,6,2,1,1,4,4,4,4,4,3,7,4,6,1,2,2,5,2,1,4,4,1,4,3,3,4,2,3,2,1,1,4,2,2,5,2,3,6,3,4,5,5,2,2,3
13125,9,11,Glascock County,GA,4,4,2,2,2,6,3,4,2,1,2,6,3,2,2,5,1,2,4,5,2,2,2,3,7,4,2,1,3,6,2,4,6,1,1,3,2,2,2,2,3,3,3,3,7,3,3,3,1,4,2,6,7,5,7,1,3,7,4,1,1,7,6,2,6,5,3,3,6,2,6,6,1,1,2,4,1,1,7,4,5,1,1,3,1,1,1,5,3,2,5,6,1,1,7,3,7,2,6,3,3,1,2,1,1,1,2,1,1,1,2,2,1,4,3,3,2,3,5,2,4,2,6,1,3
13127,241,283,Glynn County,GA,1,6,5,4,7,7,7,3,6,1,4,3,6,6,7,5,7,7,6,7,7,6,5,6,6,5,6,2,7,4,6,7,7,1,7,7,5,7,7,5,5,3,5,5,6,7,6,3,5,4,5,7,5,4,3,1,4,1,5,1,1,5,7,2,7,5,7,7,6,1,6,1,1,1,2,1,6,5,3,7,5,5,7,3,7,7,7,7,5,7,6,5,5,5,4,4,1,7,1,5,5,1,6,4,5,6,3,2,2,7,3,5,2,5,7,2,7,5,4,1,4,6,7,2,3
13129,193,170,Gordon County,GA,3,3,5,5,5,7,7,7,7,1,6,7,7,6,4,4,5,6,7,6,7,7,5,6,6,6,7,2,7,5,6,5,7,4,7,5,6,6,6,6,6,5,5,7,7,4,6,5,6,6,6,6,7,4,3,6,6,1,3,1,1,5,5,2,5,7,7,6,5,6,6,4,7,4,5,5,7,5,4,7,6,4,4,3,5,3,6,4,7,5,1,2,6,1,2,3,4,5,1,6,6,6,6,6,5,5,6,3,3,1,4,6,2,6,7,5,5,7,3,1,5,5,3,2,3
13131,54,51,Grady County,GA,3,5,4,3,3,7,5,3,2,1,3,3,5,4,2,3,4,5,5,5,5,4,4,3,4,4,4,1,5,2,5,3,7,2,4,3,2,3,4,4,5,2,4,7,7,5,5,3,7,2,4,4,5,1,6,1,5,1,4,1,1,5,7,1,7,5,2,1,4,1,6,3,5,6,7,5,5,5,6,4,3,2,3,5,1,2,3,5,4,5,4,7,4,2,6,4,6,2,6,5,5,3,4,2,2,4,3,1,1,1,1,4,1,5,6,5,3,5,3,7,2,4,4,1,3
13133,17,24,Greene County,GA,3,4,2,2,2,6,3,5,3,1,2,6,4,3,5,2,2,3,5,3,3,3,3,4,7,6,3,1,3,6,3,5,7,3,3,5,2,2,2,2,3,3,2,4,7,1,3,4,7,5,2,5,7,5,4,5,5,1,5,1,1,7,6,2,6,6,6,7,6,5,3,1,5,3,2,3,5,4,4,7,5,4,6,2,1,5,1,6,5,4,6,7,3,2,5,6,4,3,6,3,3,5,3,3,2,3,5,2,6,1,1,2,3,3,4,2,2,3,4,2,4,5,5,1,7
13135,2759,2726,Gwinnett County,GA,1,4,7,6,7,7,6,7,4,1,6,7,7,7,4,5,7,7,7,7,7,7,6,7,7,7,7,2,7,7,7,5,7,2,7,4,6,7,7,6,7,4,7,7,7,1,7,4,7,6,7,6,7,4,1,6,7,1,6,6,1,6,5,2,5,6,4,4,6,4,1,3,3,2,5,3,2,3,5,5,6,2,3,6,6,4,7,3,3,5,1,1,7,7,1,7,6,7,2,7,7,4,7,6,7,7,6,2,3,1,1,7,3,6,7,2,6,3,4,3,5,7,4,2,6
13137,158,180,Habersham County,GA,3,4,5,4,3,6,3,6,5,1,4,6,6,4,3,3,5,4,6,5,6,5,4,5,5,5,4,2,5,6,5,5,7,1,5,3,3,3,5,4,4,1,4,5,5,5,5,4,4,5,4,3,7,5,6,6,6,1,5,1,1,5,5,1,5,7,7,6,7,6,3,2,7,3,5,3,4,6,2,6,2,2,3,2,5,4,3,1,6,4,3,4,6,2,2,4,4,2,1,5,5,1,5,3,3,5,3,4,4,1,1,4,2,2,6,2,3,6,2,3,6,6,5,1,7
13139,590,618,Hall County,GA,1,4,7,5,5,6,5,6,4,1,5,6,7,6,2,4,6,6,7,6,7,7,5,6,6,7,6,1,7,6,6,5,7,2,6,3,6,5,6,5,5,1,5,6,7,1,7,4,7,6,6,4,7,5,5,7,5,1,6,1,1,6,5,1,5,7,7,4,7,6,3,3,7,2,5,3,4,5,4,7,6,2,5,4,3,5,6,3,4,6,2,4,7,2,2,5,4,6,7,6,6,1,6,5,5,7,5,4,4,1,2,5,3,3,7,2,4,7,3,5,5,7,5,1,7
13141,17,14,Hancock County,GA,3,4,2,2,2,6,3,5,3,1,2,6,4,2,4,2,2,3,4,3,3,2,2,3,7,3,2,1,3,6,2,4,6,4,2,5,3,1,2,2,3,4,2,3,7,1,3,4,4,5,2,6,7,5,6,6,4,1,2,1,1,7,6,2,6,6,5,5,7,5,6,3,3,2,2,3,1,1,6,2,7,3,5,3,1,1,5,3,6,4,7,7,1,1,7,3,7,3,6,3,3,6,2,4,2,2,5,2,3,1,1,2,2,3,3,2,2,3,5,1,4,1,1,1,6
13143,111,128,Haralson County,GA,1,3,7,4,4,6,5,7,7,1,4,5,6,5,2,3,5,5,6,6,6,5,4,5,5,5,6,1,6,5,4,5,7,4,6,4,5,4,7,4,4,5,4,7,7,7,6,5,4,5,4,6,7,2,2,7,5,1,5,1,1,6,5,2,5,6,5,4,7,5,3,4,5,1,3,3,4,6,3,2,5,3,5,5,4,3,1,6,7,4,3,5,1,1,2,3,7,2,7,5,5,6,5,5,3,4,6,3,2,1,1,5,2,3,5,2,4,6,3,2,3,4,3,2,3
13145,64,79,Harris County,GA,1,3,5,3,7,6,6,6,4,1,3,4,5,6,3,2,4,4,5,6,5,4,5,4,5,7,7,2,4,4,4,2,7,7,4,6,3,3,4,5,5,5,7,5,7,4,5,5,3,4,5,7,7,1,6,6,4,1,3,1,1,7,6,2,6,6,7,6,7,7,3,1,3,4,4,4,1,5,7,4,3,2,3,4,1,1,1,5,4,1,5,2,4,4,1,6,7,2,1,4,4,5,4,3,2,4,3,3,4,1,1,5,2,5,5,2,4,5,4,3,3,7,1,1,3
13147,58,55,Hart County,GA,3,4,5,4,7,6,6,6,5,1,6,6,6,5,4,4,4,7,6,6,5,5,7,5,4,5,6,4,7,6,5,6,7,5,5,3,4,5,5,3,5,2,4,5,7,1,6,4,5,6,5,4,7,6,7,6,6,1,4,1,1,6,5,1,5,6,7,4,7,5,3,6,7,4,5,5,3,2,3,7,6,2,7,4,6,3,1,6,5,2,6,5,2,2,4,4,4,1,7,5,5,4,4,3,5,4,4,3,4,1,2,5,2,5,6,4,5,6,4,3,6,5,5,1,3
13149,19,30,Heard County,GA,1,3,5,2,2,6,5,7,6,1,2,4,5,3,3,2,2,3,5,5,4,3,3,4,5,3,7,2,4,5,3,4,7,5,4,3,5,2,3,4,4,6,2,4,7,1,4,5,3,4,3,6,7,1,5,6,6,1,3,1,1,6,6,2,6,6,4,5,6,6,3,7,6,2,1,3,3,1,7,6,2,1,1,1,1,1,7,4,5,3,4,4,1,1,4,3,7,2,7,4,3,7,3,5,2,2,6,2,3,1,1,3,2,3,4,2,2,4,4,1,2,4,1,1,3
13151,782,791,Henry County,GA,1,4,7,5,6,7,6,6,5,1,5,6,6,6,5,5,6,7,7,7,7,7,6,7,6,6,7,2,7,7,6,4,7,3,6,3,5,6,6,6,7,7,5,6,7,1,7,4,6,5,7,7,7,2,2,7,3,1,6,1,1,6,6,2,6,6,4,6,7,4,3,3,4,3,6,4,2,3,4,4,4,1,3,5,3,4,6,3,5,1,1,1,5,6,1,7,7,5,1,7,7,5,7,5,5,6,5,3,4,1,1,6,2,5,6,2,5,7,3,6,4,7,1,1,3
13153,412,467,Houston County,GA,1,4,5,5,6,6,4,5,4,1,5,4,6,6,7,4,6,6,6,5,7,6,6,6,6,6,5,1,7,6,6,3,7,3,6,5,5,5,5,6,7,3,6,4,7,1,7,4,7,5,6,6,7,2,2,1,5,1,5,5,1,7,6,1,6,5,5,6,6,2,6,4,5,6,6,6,2,4,5,5,5,4,5,4,3,5,3,4,3,6,2,3,5,6,3,5,5,6,4,6,7,5,6,4,6,6,5,2,2,1,4,6,1,3,7,4,7,3,4,7,3,6,2,1,6
13155,24,22,Irwin County,GA,3,5,3,2,2,6,4,3,4,1,2,3,5,3,2,2,2,3,5,4,3,3,3,3,3,3,4,1,4,3,3,4,7,1,6,2,2,2,3,6,3,3,2,3,7,1,4,3,5,3,3,4,6,2,7,1,6,1,1,1,1,5,6,2,6,5,3,3,5,1,6,4,4,7,7,5,4,1,6,3,1,1,1,4,1,1,5,6,3,3,4,6,2,2,5,4,7,2,7,3,3,1,2,2,1,2,2,1,1,1,2,2,1,4,4,5,2,3,2,7,3,2,1,1,1
13157,375,358,Jackson County,GA,3,4,6,4,4,6,5,6,5,1,4,6,6,5,2,4,5,5,6,6,6,6,5,6,5,7,5,1,6,6,6,5,7,2,5,4,4,5,5,4,4,1,4,6,7,1,6,4,5,6,5,4,7,5,5,6,5,6,5,1,1,6,5,1,5,6,7,6,7,6,3,7,7,4,6,4,5,6,5,3,1,2,2,2,4,2,4,4,7,4,2,3,4,2,2,5,7,1,1,5,5,1,5,4,3,5,5,3,5,1,1,4,3,4,6,2,4,7,4,1,5,6,2,1,6
13159,39,45,Jasper County,GA,1,4,4,3,4,6,5,6,5,1,2,6,5,3,3,2,3,4,5,5,4,3,4,5,7,3,4,1,5,6,3,4,7,5,3,4,5,4,3,4,5,6,2,4,6,7,4,4,2,5,3,6,7,3,7,5,5,1,3,1,1,7,6,2,6,6,4,6,7,7,3,4,5,3,2,3,5,1,7,3,2,2,1,3,1,1,1,7,3,2,5,5,1,2,3,5,7,1,6,4,4,7,3,6,2,2,7,3,3,1,1,4,3,4,4,2,6,4,4,1,4,5,4,1,3
13161,50,45,Jeff Davis County,GA,3,5,2,2,2,6,2,3,1,1,2,3,5,3,1,2,3,3,5,3,3,3,3,2,3,3,2,1,3,4,2,5,7,1,4,2,2,2,3,3,3,3,3,4,7,1,4,3,3,3,2,4,6,4,6,1,3,1,4,1,1,6,6,2,6,5,1,2,5,1,6,3,6,6,6,4,2,3,4,7,1,1,1,2,3,4,1,5,4,3,5,6,5,1,4,2,4,4,6,3,3,1,2,2,2,2,2,1,1,1,1,3,1,3,4,3,2,4,3,7,3,2,5,2,3
13163,44,55,Jefferson County,GA,3,5,3,2,2,5,6,4,3,1,2,6,4,3,3,5,2,3,5,5,3,3,3,3,3,6,3,2,4,6,3,4,7,2,3,3,5,2,3,2,3,2,4,3,7,1,4,3,2,4,3,5,6,5,6,1,6,1,3,1,1,7,6,2,6,5,4,4,6,1,6,5,5,6,6,6,6,7,6,6,3,1,4,2,1,4,3,5,4,5,4,7,1,1,7,3,4,4,6,3,3,4,3,2,2,3,3,1,1,1,2,3,1,5,4,5,2,4,6,7,4,2,1,2,1
13165,24,31,Jenkins County,GA,3,5,4,2,2,5,2,4,3,1,2,5,4,3,2,4,1,2,5,4,2,2,2,2,3,3,2,3,3,6,2,4,6,1,3,2,2,1,2,2,3,1,2,3,7,1,3,3,2,4,5,4,6,6,7,1,5,1,3,1,2,7,7,2,7,5,4,4,6,1,6,4,3,6,5,5,7,4,7,3,2,4,1,4,1,3,1,5,6,5,6,7,4,1,7,2,4,2,7,3,3,1,2,2,1,2,2,1,1,1,1,2,1,6,3,4,2,3,6,7,5,1,1,2,5
13167,31,29,Johnson County,GA,4,5,2,2,2,6,3,4,2,1,2,5,4,2,1,2,2,2,4,4,3,3,2,2,6,3,2,1,3,6,2,4,6,2,2,4,2,1,2,2,4,7,2,3,7,1,3,3,2,4,2,5,7,4,7,1,4,1,3,1,2,7,6,2,6,5,5,3,6,1,6,1,3,6,4,6,1,1,7,5,5,1,1,2,1,2,1,5,7,2,5,7,1,1,4,2,7,2,6,3,3,1,2,2,1,2,2,1,1,1,1,3,1,3,4,4,2,3,5,2,4,1,1,2,1
13169,104,119,Jones County,GA,1,4,4,3,6,7,4,5,4,1,3,5,5,4,3,3,5,4,5,5,5,5,4,4,5,4,4,1,5,6,4,4,7,6,3,5,6,4,4,4,5,7,3,5,7,1,5,4,4,5,4,7,7,3,6,5,5,1,3,1,2,7,6,2,6,6,4,6,7,6,6,3,3,3,2,3,1,7,3,3,1,1,1,1,1,1,1,1,5,1,2,3,3,4,3,6,7,1,6,5,5,7,5,6,3,4,7,3,4,1,1,4,3,4,5,2,7,5,4,1,3,6,1,1,1
13171,60,54,Lamar County,GA,1,4,7,4,4,6,3,6,4,1,4,5,6,5,6,4,5,5,6,6,6,6,5,5,5,5,4,1,6,6,5,3,7,5,5,3,6,6,5,4,5,7,4,6,7,1,6,4,4,5,5,7,7,2,7,7,6,1,3,1,2,7,6,2,6,6,5,7,7,6,3,6,6,5,5,5,2,2,7,5,5,3,1,5,6,2,3,5,5,5,2,3,2,2,4,4,7,3,6,5,6,7,5,6,3,3,7,3,4,1,2,5,2,4,6,3,3,6,3,7,3,5,2,1,3
13173,27,18,Lanier County,GA,1,5,2,3,2,7,3,3,4,1,2,3,5,3,3,3,2,3,4,4,3,3,3,2,4,3,3,2,4,3,5,5,6,1,3,4,2,2,4,7,4,1,3,5,7,4,4,3,7,2,4,4,5,2,7,1,7,1,2,1,2,4,7,2,7,5,1,1,4,1,6,7,2,7,5,4,1,2,6,7,1,1,6,2,2,5,1,1,2,4,5,6,2,1,5,2,7,3,7,4,4,1,3,2,2,2,2,1,1,1,1,3,1,6,4,3,2,4,2,7,3,3,1,1,3
13175,229,234,Laurens County,GA,3,5,4,4,4,6,4,4,2,1,4,4,6,5,3,3,4,5,6,4,6,5,5,3,7,5,4,1,5,6,5,4,7,2,5,5,4,3,4,4,5,5,5,5,7,1,5,3,5,4,5,5,7,4,6,5,4,1,3,1,2,7,6,2,6,5,3,4,6,1,6,2,2,5,5,6,4,5,6,7,4,4,2,6,1,6,4,6,5,6,5,6,2,2,4,3,2,2,6,5,5,1,5,3,5,5,3,1,1,1,1,5,1,3,6,5,3,6,4,6,3,4,5,2,3
13177,133,146,Lee County,GA,1,4,5,3,4,7,3,4,2,1,3,3,5,4,2,3,4,4,5,5,5,4,4,3,4,4,3,1,6,4,4,2,7,2,4,4,3,4,4,3,5,6,3,6,7,1,5,4,5,4,4,6,6,1,7,1,3,1,3,1,2,6,6,1,6,5,4,3,5,1,6,2,2,7,6,5,3,2,6,2,3,1,3,2,1,1,3,4,2,3,2,2,3,5,2,6,7,3,1,5,5,4,5,3,3,4,3,1,2,1,3,4,1,5,5,4,3,4,3,7,2,6,2,1,3
13179,84,75,Liberty County,GA,1,5,4,4,6,7,7,4,4,1,7,4,5,5,5,4,7,6,5,6,6,5,5,4,5,7,5,1,6,4,6,6,7,2,6,6,3,6,5,7,5,2,5,6,7,5,6,3,5,3,5,5,5,5,3,1,5,1,4,1,2,5,7,2,7,5,4,4,6,1,6,3,1,2,1,3,3,3,3,4,3,4,4,5,2,1,6,3,3,7,4,5,6,7,7,2,2,4,6,7,6,4,6,2,5,6,4,1,1,1,2,5,1,6,6,2,5,5,4,3,4,4,1,2,6
13181,17,12,Lincoln County,GA,4,5,5,3,7,6,6,5,2,1,3,7,4,3,2,3,3,4,4,5,4,3,3,3,3,4,4,2,4,6,5,5,6,4,2,3,2,3,3,2,4,6,3,4,7,1,4,3,3,5,3,4,7,6,6,5,1,1,4,1,2,7,5,2,5,5,7,2,6,4,6,4,3,2,4,1,1,1,7,3,1,1,1,5,3,1,1,4,5,1,7,5,1,2,5,2,7,1,7,4,4,4,4,2,2,2,3,2,3,1,1,3,3,3,4,2,3,4,4,1,6,4,6,1,3
13183,14,17,Long County,GA,1,5,2,2,2,6,7,3,4,1,2,3,3,3,4,2,7,3,3,6,3,3,3,2,3,3,3,1,3,4,3,6,6,1,4,6,2,7,2,7,3,1,2,4,6,7,3,2,2,2,2,4,5,5,7,1,3,1,1,1,2,5,7,2,7,5,2,2,5,1,6,3,2,3,3,4,1,1,4,1,6,1,1,1,1,1,5,1,2,7,5,6,6,3,7,2,7,1,7,3,3,1,2,1,1,2,2,1,1,1,1,2,1,3,3,3,2,3,4,6,3,3,1,2,6
13185,490,440,Lowndes County,GA,1,5,6,5,5,7,5,3,5,1,5,3,7,7,4,5,5,7,6,5,7,6,6,5,6,6,6,1,7,4,7,5,7,1,6,6,4,6,6,7,5,2,7,5,6,3,7,3,7,4,7,4,6,2,4,1,6,1,5,1,2,4,7,2,7,5,2,2,5,1,6,3,2,6,6,4,5,7,6,7,3,5,7,4,3,6,5,4,6,7,4,6,4,4,5,3,1,6,6,7,7,1,6,4,6,6,5,1,1,1,1,5,1,5,7,4,5,6,3,7,3,5,5,1,7
13187,52,72,Lumpkin County,GA,3,4,4,3,3,5,3,7,1,1,3,6,5,4,5,3,4,4,5,5,5,4,4,5,4,4,3,1,4,6,3,5,7,1,3,2,3,2,3,3,4,2,3,4,7,6,5,4,4,5,4,3,7,5,7,5,4,1,4,1,2,5,5,2,5,7,7,5,7,7,3,2,5,1,4,1,1,2,2,5,3,2,1,2,5,4,5,4,7,5,3,4,5,2,2,4,6,2,1,4,4,1,3,2,2,4,3,5,4,1,1,3,3,2,5,2,2,5,3,1,5,6,1,2,3
13189,58,58,McDuffie County,GA,1,5,5,3,3,6,6,5,3,1,3,6,6,4,3,6,4,4,5,6,5,4,4,4,7,6,4,3,5,6,4,5,7,2,4,5,5,5,4,3,4,5,6,5,7,1,5,3,4,5,6,5,7,5,6,7,3,1,4,1,2,7,6,2,6,5,3,7,7,5,6,5,2,4,5,4,4,7,4,2,4,5,6,5,2,4,3,5,6,6,4,6,1,1,6,4,5,4,7,4,4,4,5,3,3,4,4,2,2,1,1,3,2,7,5,2,3,5,5,4,5,4,6,1,3
13191,23,22,McIntosh County,GA,1,5,3,2,6,6,7,3,5,1,2,3,3,3,6,2,6,3,3,5,4,2,3,2,4,2,3,1,4,3,5,7,5,1,4,5,2,5,4,7,3,3,2,3,5,6,3,2,3,2,2,6,5,5,4,1,2,1,2,1,2,5,7,2,7,4,6,7,6,2,6,1,1,2,1,1,1,7,4,7,3,6,5,1,2,1,1,1,3,1,7,6,3,2,4,2,6,2,7,3,3,1,3,1,1,2,2,3,2,7,3,3,2,3,4,1,5,3,5,2,4,4,5,2,5
13193,27,30,Macon County,GA,3,4,2,2,2,5,3,5,4,1,2,4,4,2,4,2,7,3,4,6,3,2,2,3,2,3,3,1,3,5,3,2,6,1,3,5,3,3,2,2,3,1,2,2,7,1,3,4,5,4,2,6,7,2,6,1,5,1,4,1,2,7,6,1,6,6,2,2,6,1,6,2,7,6,6,5,4,1,7,4,7,2,1,3,2,3,6,7,1,5,4,7,4,1,7,4,5,4,6,3,3,1,2,2,2,3,2,1,1,1,3,2,1,4,4,4,5,3,4,7,3,2,1,1,3
13195,106,122,Madison County,GA,1,4,5,4,4,6,5,6,5,1,4,6,6,4,2,3,4,5,6,6,5,5,5,5,7,7,5,1,7,6,4,5,7,2,5,3,3,5,5,3,4,2,3,5,7,1,6,4,4,6,4,4,7,5,7,1,3,1,3,5,2,6,5,1,5,6,7,7,7,5,3,3,7,3,6,5,1,3,4,1,2,1,1,2,1,1,1,6,7,2,2,3,3,2,1,5,7,1,1,5,5,1,4,3,3,4,4,3,4,1,1,4,2,3,5,3,4,6,4,1,5,5,2,1,3
13197,18,11,Marion County,GA,1,4,3,2,2,6,4,6,4,1,2,4,5,5,3,2,4,3,5,5,3,3,3,2,3,7,4,2,4,4,2,3,7,1,4,6,2,3,3,3,4,2,2,3,7,6,4,4,2,4,3,6,6,1,7,1,2,1,2,1,2,7,6,1,6,6,3,3,6,2,6,2,5,4,4,4,3,1,7,1,1,5,6,2,2,1,6,1,7,3,5,7,5,1,2,4,6,3,6,3,3,1,2,3,2,1,2,1,1,1,4,5,1,6,3,3,5,3,4,4,3,3,1,1,3
13199,61,47,Meriwether County,GA,1,4,6,3,3,6,5,6,3,1,3,4,5,4,4,2,2,4,5,5,5,4,4,4,5,6,7,1,4,5,3,3,7,4,4,5,4,3,3,4,4,6,3,5,7,1,5,4,7,4,3,6,7,1,7,5,3,1,2,1,2,7,6,2,6,6,7,7,7,6,3,1,1,5,4,3,4,2,7,6,5,2,6,3,2,2,1,4,6,5,4,6,1,1,6,5,6,2,6,4,4,6,3,4,3,4,6,2,4,1,1,4,2,4,4,2,3,5,3,2,3,3,1,1,3
13201,20,26,Miller County,GA,4,4,1,2,5,6,4,3,4,1,2,3,3,2,2,2,6,3,3,4,2,2,3,2,3,2,3,1,4,2,2,3,5,2,2,5,2,3,2,2,4,3,2,4,7,6,3,4,2,2,2,5,6,1,7,1,6,1,3,1,2,6,7,1,7,5,3,4,6,1,6,3,4,7,7,5,3,1,7,7,4,2,7,5,5,2,1,6,7,3,3,7,1,2,2,4,6,1,6,6,3,4,2,2,1,1,3,2,3,1,3,2,1,3,3,5,5,3,4,7,2,2,1,1,3
13205,64,57,Mitchell County,GA,3,5,3,3,3,7,3,3,2,1,3,3,6,4,3,3,3,4,5,5,4,4,4,3,4,4,3,1,5,3,4,3,7,2,4,4,3,2,4,3,5,3,3,6,7,7,5,4,3,3,4,5,6,1,6,1,3,1,5,1,2,5,6,1,6,5,2,2,5,1,6,3,6,7,7,5,6,6,7,3,5,1,1,6,1,1,4,7,4,5,3,7,3,1,5,3,5,1,6,4,4,4,4,3,2,4,4,1,1,1,2,4,1,5,5,5,3,4,3,7,2,2,1,1,3
13207,85,79,Monroe County,GA,1,4,6,4,5,6,3,6,4,1,3,5,6,4,5,3,5,4,5,6,5,5,4,5,5,5,4,1,5,6,5,3,7,6,4,4,6,4,4,4,4,7,4,5,7,1,6,4,4,5,4,7,7,2,7,6,6,1,4,1,2,7,6,2,6,6,4,7,7,7,3,4,5,4,4,3,3,6,7,7,1,2,6,4,2,2,4,6,7,2,3,2,2,4,2,6,7,3,6,5,5,7,5,6,3,4,7,3,4,1,1,5,3,4,6,1,7,5,3,1,3,6,5,1,3
13209,29,28,Montgomery County,GA,4,5,2,2,2,5,3,3,1,1,2,4,3,2,1,2,2,2,4,3,3,3,2,2,6,3,2,1,3,5,2,5,6,2,2,3,2,2,3,2,4,1,2,3,7,6,3,3,2,3,2,4,6,4,5,1,4,1,2,1,2,6,6,2,6,5,3,3,5,1,6,3,2,6,6,4,1,1,7,5,1,3,1,4,4,1,5,4,6,3,6,6,4,2,2,3,7,2,6,3,3,1,2,2,1,2,2,1,1,1,1,3,1,3,4,3,2,3,4,7,3,3,2,2,1
13211,85,86,Morgan County,GA,3,4,5,3,3,6,5,6,5,1,3,6,5,4,5,2,3,5,5,5,5,4,4,5,7,7,5,1,5,7,4,5,7,3,4,6,3,4,4,4,6,4,3,4,7,1,5,4,4,5,4,5,7,4,7,6,5,1,5,1,2,7,6,2,6,6,7,6,7,6,3,4,6,4,5,4,3,7,6,6,1,3,4,4,5,3,1,4,7,3,3,3,1,3,4,6,5,2,5,4,4,5,4,3,2,3,5,3,3,1,1,4,2,4,5,2,3,4,4,5,4,6,5,1,6
13213,94,93,Murray County,GA,1,4,6,4,3,6,7,7,7,1,6,7,7,5,6,4,5,6,7,6,6,6,5,5,5,5,7,2,7,5,5,5,7,3,6,4,6,5,5,5,5,2,4,6,7,1,6,4,5,6,5,6,7,5,7,5,4,1,3,1,2,4,5,2,5,7,7,3,6,6,6,2,4,5,4,4,3,3,3,3,2,1,4,1,1,1,3,3,6,5,2,4,5,1,2,1,7,2,1,5,5,3,5,5,4,5,3,3,3,1,3,5,2,4,6,4,4,7,3,5,5,5,2,2,3
13215,373,353,Muscogee County,GA,1,4,7,6,7,7,6,6,6,1,6,6,7,7,3,5,7,7,7,6,7,7,6,7,6,7,7,4,7,6,7,4,7,7,7,7,6,7,7,6,7,2,7,5,7,6,7,4,6,6,7,7,7,1,1,7,5,1,4,5,2,7,6,2,6,6,7,6,7,2,6,6,1,3,5,1,3,7,4,5,7,5,4,3,3,5,3,7,2,7,3,5,6,4,6,3,2,7,5,7,7,5,7,7,7,7,5,1,2,1,1,7,2,7,7,1,7,4,4,1,3,5,3,1,3
13217,336,369,Newton County,GA,1,4,7,5,5,7,6,6,6,1,5,7,7,6,4,5,6,7,7,7,7,7,6,7,6,7,7,1,7,7,6,5,7,3,6,5,5,6,6,7,7,3,6,6,7,1,7,4,6,6,6,6,7,3,3,6,6,1,5,1,2,7,6,2,6,6,5,7,7,5,3,3,6,4,5,4,4,3,5,5,4,2,5,4,3,3,2,4,6,3,1,2,3,3,4,6,7,3,6,6,6,5,6,5,5,6,5,3,5,1,1,7,3,5,6,2,6,7,4,1,4,6,3,1,6
13219,167,188,Oconee County,GA,1,4,6,4,4,6,5,6,4,1,4,6,6,5,3,3,5,5,5,6,6,5,5,6,7,7,5,1,6,6,5,5,7,1,4,5,4,4,5,4,5,2,4,6,7,1,6,4,5,5,5,4,7,5,6,4,5,1,5,1,2,7,5,1,5,6,7,7,7,6,3,3,7,4,6,3,1,7,5,1,3,1,1,6,3,3,5,1,7,2,1,1,5,7,2,7,7,1,1,5,5,1,5,3,3,4,5,4,6,1,2,4,2,4,6,2,4,6,4,6,5,7,1,1,3
13221,29,36,Oglethorpe County,GA,1,4,5,3,7,6,4,5,2,1,3,6,5,3,4,2,4,4,5,5,3,3,3,4,7,7,4,1,5,6,3,5,7,1,4,4,2,3,3,2,3,2,2,4,7,3,5,4,4,5,3,4,7,5,7,5,2,1,4,1,2,7,5,1,5,6,7,7,7,6,3,6,7,4,5,4,1,1,6,1,4,1,5,2,4,1,1,1,7,1,3,4,1,2,1,6,7,1,6,4,4,1,3,2,2,2,3,3,6,1,1,3,4,3,4,2,3,4,4,2,5,5,1,1,3
13223,533,540,Paulding County,GA,1,3,6,5,6,7,7,7,7,1,5,6,7,6,3,5,7,7,6,7,7,7,6,7,6,6,7,1,7,6,6,6,7,5,6,5,6,6,6,6,6,7,6,7,7,1,7,5,6,5,7,7,7,2,3,6,3,1,5,1,2,6,5,2,5,7,4,4,7,6,3,4,4,2,3,1,1,3,2,2,3,2,4,4,2,1,5,3,4,1,1,1,4,5,1,6,7,2,1,7,7,7,7,6,5,6,7,3,2,1,1,6,3,4,5,1,5,7,4,2,5,6,1,2,1
13225,105,128,Peach County,GA,3,4,3,3,4,6,5,5,4,1,3,4,6,4,4,3,5,5,6,5,4,4,4,5,5,4,5,1,6,5,5,4,7,2,4,4,4,4,4,4,4,3,4,3,7,1,5,4,7,4,4,6,7,2,5,1,4,1,4,1,2,7,6,1,6,5,3,6,7,2,6,5,4,6,7,5,7,7,2,7,6,4,3,5,3,2,7,4,5,6,2,6,5,3,7,4,7,5,6,4,4,4,4,4,3,4,4,2,2,1,3,4,1,3,5,3,6,4,4,7,3,4,1,2,3
13227,81,85,Pickens County,GA,1,4,5,4,4,6,6,7,6,1,4,6,6,4,4,3,5,5,5,6,6,5,4,5,5,4,6,1,5,5,4,5,7,2,5,3,3,3,4,4,4,3,4,5,5,3,6,4,4,5,4,5,7,5,4,5,3,1,5,1,2,5,5,2,5,7,3,6,7,7,3,2,5,3,5,1,2,4,3,4,4,2,5,2,5,3,4,4,2,1,6,2,3,2,1,5,6,1,1,5,5,4,4,3,3,4,4,3,2,1,1,4,2,3,4,2,3,6,3,3,5,6,4,2,3
13229,101,112,Pierce County,GA,3,5,3,2,2,6,3,3,3,1,2,3,3,3,2,2,4,3,4,4,3,3,3,2,3,3,3,1,3,3,2,6,6,1,5,4,2,3,2,3,3,1,3,3,7,3,4,2,6,2,3,4,5,4,7,1,5,1,4,1,2,5,7,2,7,5,2,1,4,1,6,4,3,7,7,5,4,1,4,7,1,4,1,3,1,1,3,1,7,2,4,6,3,2,2,4,7,1,7,3,3,1,2,1,2,3,2,1,1,1,1,2,1,4,4,4,2,3,3,7,3,3,3,2,3
13231,85,86,Pike County,GA,1,4,6,3,3,6,3,6,3,1,3,4,5,4,6,3,4,4,5,6,5,5,4,5,5,4,4,1,5,5,4,2,7,4,5,3,3,3,4,3,5,6,3,5,7,1,6,4,4,5,4,7,7,2,7,4,3,1,4,1,2,7,6,2,6,6,6,7,7,3,3,5,3,5,6,4,1,3,6,1,4,1,1,3,1,1,1,1,2,1,1,2,2,3,2,6,7,1,6,5,5,6,4,5,3,3,6,2,2,1,1,4,1,4,4,2,3,5,2,2,3,6,1,1,3
13233,185,190,Polk County,GA,3,3,5,4,4,6,7,7,6,1,5,5,6,5,3,4,6,6,6,6,6,6,5,6,5,5,6,2,7,5,5,6,7,5,5,5,5,5,5,5,5,6,5,7,7,1,6,5,5,5,5,6,7,2,3,5,4,1,4,1,2,6,5,2,5,7,7,7,5,5,6,5,4,2,3,4,5,7,4,7,3,3,6,3,3,2,3,5,5,6,2,5,6,1,5,3,6,3,1,6,6,7,6,6,4,5,7,6,3,1,6,5,2,4,6,3,5,6,4,4,4,4,3,2,3
13235,31,28,Pulaski County,GA,3,5,2,3,3,6,3,4,2,1,2,4,4,3,4,2,3,3,4,4,3,3,3,3,4,3,3,1,4,5,3,3,6,1,3,2,3,2,3,3,3,5,2,4,7,1,4,4,5,4,3,5,6,2,6,1,4,1,2,1,2,6,6,2,6,5,7,7,6,2,6,2,4,6,6,5,3,1,7,3,2,5,1,3,1,6,5,5,3,5,5,5,5,3,4,6,5,2,6,4,3,1,3,2,2,2,2,2,2,1,3,3,1,3,4,4,2,3,3,7,3,4,1,1,1
13237,76,50,Putnam County,GA,3,4,2,3,3,6,4,5,4,1,2,5,5,3,3,2,2,4,5,4,4,3,3,4,7,3,4,1,4,6,3,4,7,5,3,6,5,2,3,3,4,6,3,4,6,3,4,4,3,5,3,6,7,4,6,5,6,1,5,1,2,7,6,2,6,6,4,5,7,7,6,1,5,4,4,3,5,4,6,6,5,4,7,4,2,2,6,4,6,2,7,5,4,3,2,3,6,1,5,4,4,7,3,5,2,3,6,3,4,1,1,3,3,5,4,2,3,4,4,1,4,6,6,1,6
13239,2,4,Quitman County,GA,4,4,2,2,2,6,3,5,2,1,2,4,3,3,4,2,1,3,3,4,2,2,5,2,3,3,7,2,3,3,3,3,5,1,3,6,2,4,4,2,4,6,2,5,7,6,3,4,3,3,2,6,6,1,3,1,3,1,1,1,2,6,6,1,6,6,2,5,7,4,6,5,1,1,2,3,4,7,7,1,1,4,1,1,1,1,1,7,1,2,7,7,1,1,5,1,7,1,6,3,3,1,2,2,2,1,2,1,1,1,4,3,1,4,3,2,6,3,4,2,2,1,2,1,3
13241,40,32,Rabun County,GA,4,4,4,3,4,5,2,6,4,1,4,6,5,3,3,2,3,3,5,4,5,4,3,3,3,4,3,2,3,6,4,5,7,1,3,6,2,2,3,3,3,5,3,5,6,6,4,4,3,5,3,3,6,6,4,5,3,1,5,1,2,6,5,1,5,7,7,6,7,7,3,4,4,2,4,1,2,3,2,7,5,5,4,2,6,6,6,4,2,2,7,3,5,3,3,5,2,2,6,4,4,3,4,3,2,3,2,4,5,1,1,3,3,2,4,2,2,5,1,5,6,6,4,1,3
13243,12,12,Randolph County,GA,3,4,2,2,2,7,2,5,2,1,2,4,3,2,3,2,1,2,4,4,3,2,4,2,3,3,7,1,3,3,3,2,6,2,2,3,2,2,3,2,4,2,2,5,7,5,3,4,2,3,2,6,6,1,5,1,2,6,3,1,2,6,6,1,6,5,3,4,6,2,6,1,3,6,6,6,6,4,6,6,6,4,1,1,1,3,6,7,3,6,5,7,3,1,6,4,4,2,6,3,3,3,2,2,2,2,2,2,2,1,4,3,1,4,4,4,4,3,4,7,2,1,2,1,1
13245,419,486,Richmond County,GA,1,5,7,6,6,7,7,4,6,1,6,7,7,7,6,7,7,7,7,7,7,7,6,7,6,7,7,4,7,7,7,5,7,3,7,7,7,7,7,6,7,4,7,6,6,1,7,3,7,7,7,6,7,6,1,5,3,1,6,5,2,7,6,2,6,5,7,7,7,2,3,3,2,2,4,3,4,5,5,6,7,5,7,5,4,7,5,7,3,7,3,6,5,4,7,3,3,6,1,7,7,5,7,6,7,7,6,2,2,1,3,7,1,4,7,2,6,4,6,3,6,4,4,2,3
13247,212,185,Rockdale County,GA,1,4,7,5,6,7,6,7,6,1,6,7,7,6,4,5,7,7,7,7,7,7,6,7,6,7,7,2,7,7,7,5,7,3,7,6,5,7,7,6,7,4,6,6,7,1,7,4,6,6,7,6,7,3,3,6,7,1,6,1,2,6,5,2,5,6,4,7,7,6,3,6,5,3,6,3,4,3,5,4,5,3,4,6,5,5,6,4,2,4,1,2,6,5,2,7,7,5,7,7,7,5,7,6,5,6,5,2,6,1,1,7,5,6,6,1,6,5,3,1,5,7,2,1,6
13249,19,14,Schley County,GA,4,4,2,2,2,6,5,6,2,1,2,4,5,3,4,3,5,4,5,5,3,3,3,2,3,5,5,2,6,4,2,4,7,1,3,4,2,4,3,3,4,4,2,4,7,1,3,4,4,4,4,6,7,1,5,1,3,1,1,1,2,7,6,1,6,6,2,2,6,2,6,7,5,4,4,5,6,1,7,1,3,3,1,6,3,1,1,1,2,4,4,6,3,2,4,3,7,2,6,3,3,1,3,3,2,1,2,1,1,1,3,3,1,6,4,3,3,4,4,6,3,2,1,1,1
13251,74,59,Screven County,GA,3,5,2,2,2,5,2,4,5,1,6,6,4,3,2,2,2,3,5,4,3,3,3,2,5,4,3,1,3,5,2,4,7,2,3,3,4,2,3,2,3,2,2,3,7,4,3,2,2,3,3,4,6,6,7,1,5,1,2,1,2,7,7,2,7,5,3,2,6,1,6,4,2,7,5,6,2,3,6,5,5,5,4,7,2,2,1,4,7,3,5,6,3,1,7,5,5,1,7,4,3,3,2,2,2,3,3,1,1,1,1,3,1,4,4,5,2,4,5,7,5,3,4,2,6
13253,27,21,Seminole County,GA,3,4,3,3,6,7,5,3,5,1,2,3,4,3,2,2,6,5,4,5,4,3,4,2,4,3,4,1,5,2,4,3,6,2,4,5,3,4,3,3,4,3,3,6,7,7,4,4,3,2,3,5,5,1,7,1,4,1,2,1,2,6,7,1,7,6,3,4,6,1,6,4,5,7,7,5,3,5,4,7,6,4,7,4,1,4,7,1,5,2,7,7,4,2,6,2,6,1,6,7,4,4,3,2,2,2,4,2,2,1,2,3,1,3,5,5,5,4,4,7,2,2,2,1,3
13255,173,189,Spalding County,GA,1,4,6,5,5,7,4,6,3,1,5,5,7,6,6,5,6,6,7,7,7,7,6,6,6,6,5,2,7,6,6,3,7,4,6,3,6,7,6,6,6,5,6,6,7,1,7,4,6,5,6,7,7,2,3,7,5,1,6,1,2,7,6,2,6,6,5,6,7,4,3,4,4,3,5,1,2,7,3,4,6,5,5,2,2,5,5,4,4,7,2,5,4,2,5,3,6,5,7,6,7,6,7,6,5,6,6,2,3,1,2,6,1,5,6,1,5,7,2,4,4,5,4,1,3
13257,80,81,Stephens County,GA,3,4,7,4,5,6,5,6,7,1,5,6,7,5,5,4,6,5,7,6,6,6,5,5,5,5,5,3,6,6,6,6,7,3,6,3,4,6,6,5,5,1,5,6,7,3,6,4,5,5,6,4,6,6,2,6,6,1,6,1,2,6,5,1,5,7,7,6,6,6,3,5,6,4,5,3,6,3,2,7,2,3,6,2,5,4,7,7,4,5,5,5,3,2,2,3,3,3,6,6,6,1,6,4,4,4,3,3,6,1,1,5,3,5,7,2,4,7,2,3,6,4,4,1,3
13259,10,8,Stewart County,GA,4,4,3,2,2,6,3,5,4,1,2,4,4,5,3,2,2,2,4,5,2,2,4,2,3,7,7,2,3,3,2,2,6,1,3,5,2,5,3,2,4,1,2,4,7,6,3,4,3,4,3,6,6,1,4,1,4,1,2,1,2,6,6,1,6,6,4,6,7,2,6,3,3,2,2,4,2,6,7,7,7,6,1,3,1,3,1,6,3,5,5,7,2,1,7,2,6,2,5,3,3,1,2,3,2,1,2,1,1,1,3,4,1,7,3,3,6,2,4,6,2,1,3,1,3
13261,108,113,Sumter County,GA,3,4,4,4,4,6,5,5,3,1,3,4,6,5,3,4,5,5,6,5,6,6,5,3,5,5,5,2,6,5,5,4,7,1,5,5,3,4,5,5,6,1,4,5,7,1,5,4,7,4,5,6,6,2,6,1,4,1,2,1,2,6,6,1,6,6,2,2,6,2,6,2,4,7,7,6,4,1,7,6,2,2,7,3,3,5,3,7,6,7,4,7,5,2,6,2,2,5,7,5,5,1,5,4,5,5,3,1,1,1,2,6,1,6,6,5,4,6,4,7,3,3,2,1,3
13263,11,8,Talbot County,GA,4,4,4,2,2,6,3,6,3,1,2,4,4,4,2,2,2,2,4,5,3,2,3,3,3,7,7,1,3,5,2,2,6,1,3,5,2,2,2,3,3,1,2,4,7,1,3,4,2,4,2,6,7,1,4,5,2,1,2,1,2,7,6,2,6,6,7,5,7,5,3,2,3,2,1,4,2,6,7,1,6,2,1,1,2,1,1,7,4,1,4,7,1,1,7,5,7,3,6,3,3,1,2,2,2,1,2,2,2,1,1,4,3,5,3,2,3,3,4,2,3,2,1,1,3
13265,3,4,Taliaferro County,GA,4,4,2,2,2,5,2,5,2,1,2,6,3,2,4,1,1,2,4,3,2,2,2,3,7,2,2,1,2,6,2,5,6,2,2,3,2,2,2,2,3,5,1,3,6,1,2,3,6,5,2,4,7,5,7,1,3,1,4,1,2,7,6,1,6,6,3,4,6,4,6,6,3,1,1,3,5,6,7,1,1,1,1,1,1,1,1,1,7,3,6,7,1,1,7,2,7,1,6,3,2,4,2,2,1,1,4,2,4,1,1,2,4,3,3,2,1,3,5,2,5,1,1,1,3
13267,112,102,Tattnall County,GA,3,5,4,3,3,5,7,3,2,1,2,4,3,3,2,3,4,3,4,4,3,3,3,2,3,3,3,2,4,4,3,5,6,1,3,3,2,4,3,4,4,2,3,3,7,1,4,3,2,3,4,4,6,5,7,1,5,1,4,1,2,6,6,2,7,5,5,3,5,1,6,4,6,6,7,6,1,1,5,5,4,2,7,2,2,1,1,6,2,6,6,7,6,1,6,2,5,1,6,4,3,1,3,1,2,4,2,1,1,2,1,3,1,5,4,5,2,4,2,7,3,3,2,2,6
13269,22,30,Taylor County,GA,4,4,6,2,2,5,4,6,3,1,2,4,4,3,6,2,4,3,4,5,3,3,3,3,3,5,3,1,4,5,2,3,6,1,3,4,2,2,2,2,3,7,2,3,7,4,3,4,3,4,3,6,6,2,6,1,5,1,2,1,2,7,6,2,6,6,3,4,6,2,6,4,5,5,4,4,1,7,6,2,3,1,1,1,1,1,5,6,5,3,6,7,2,1,6,2,6,2,6,3,3,3,2,2,2,2,2,1,2,2,2,2,1,5,4,3,2,4,4,6,3,2,1,1,3
13271,46,41,Telfair County,GA,3,5,3,2,2,6,2,3,2,1,2,3,5,2,1,2,2,2,5,3,2,2,2,2,4,3,2,1,3,4,2,5,7,1,4,2,2,1,3,2,3,1,2,3,7,1,3,3,2,3,2,4,6,3,4,1,5,1,3,1,2,6,6,2,6,5,3,4,6,1,6,5,3,6,6,4,3,4,6,7,2,5,1,1,2,3,6,5,3,3,6,7,2,1,5,3,4,2,6,3,3,1,2,2,1,2,2,1,2,2,2,2,1,3,3,3,2,3,4,6,3,1,2,2,3
13273,25,22,Terrell County,GA,1,4,4,3,3,7,2,5,2,1,3,3,5,4,2,3,3,3,5,5,4,4,4,3,4,3,3,2,5,4,7,2,7,2,4,4,3,3,3,3,5,2,3,5,7,4,4,4,3,3,4,6,6,1,5,1,3,1,1,1,2,6,6,1,6,6,6,4,5,2,6,2,3,7,6,6,4,7,5,1,6,5,1,4,2,2,4,5,4,7,3,7,3,1,7,3,6,2,6,4,4,4,4,3,2,2,3,2,3,2,4,4,1,6,5,5,2,4,4,7,2,2,3,1,1
13275,193,191,Thomas County,GA,2,5,6,4,4,7,4,3,2,1,4,3,6,5,2,4,4,5,6,5,6,5,5,3,5,5,5,2,6,4,5,4,7,2,5,3,4,4,5,5,6,3,5,7,7,6,5,3,6,3,6,4,5,1,4,1,6,1,5,1,2,5,7,1,7,5,1,1,4,1,6,3,3,6,6,5,5,7,3,7,5,2,1,2,4,7,3,5,4,6,4,6,3,3,5,5,2,5,4,5,5,3,5,4,5,5,3,1,1,2,1,5,1,7,6,4,4,6,3,7,2,4,5,1,3
13277,153,136,Tift County,GA,2,5,6,4,5,6,5,3,3,1,4,3,6,5,2,4,5,5,6,5,6,6,5,4,5,5,5,1,6,4,7,4,7,1,6,4,3,4,5,7,5,2,5,5,7,1,6,3,6,3,5,5,6,2,5,1,5,1,3,1,2,5,6,2,6,5,3,3,5,1,6,7,4,7,7,4,5,7,4,7,3,3,5,6,3,7,4,5,4,6,3,6,6,2,6,3,2,5,7,5,6,3,6,4,4,5,3,1,1,2,2,5,1,4,6,3,4,6,1,7,3,4,3,1,3
13279,119,119,Toombs County,GA,3,5,4,4,4,6,3,3,2,1,4,4,6,4,2,3,4,4,6,4,5,5,4,3,5,5,4,1,5,5,4,5,7,1,5,3,3,3,5,4,5,1,4,5,7,5,5,3,4,3,4,4,6,5,5,1,5,1,3,1,2,6,6,2,6,5,3,4,6,1,6,4,4,6,7,5,2,3,6,7,6,6,1,7,5,7,6,5,3,7,5,7,6,2,4,2,3,2,7,5,5,1,5,3,3,4,3,1,1,2,2,5,1,4,6,4,3,6,3,7,3,3,3,2,6
13281,32,27,Towns County,GA,4,4,3,2,2,4,1,6,2,1,3,6,3,3,7,2,3,3,3,3,4,3,3,3,3,3,2,2,3,6,3,5,5,1,1,4,3,2,3,2,3,1,2,4,4,1,3,4,3,5,3,4,7,6,2,5,5,1,3,1,2,5,5,1,5,7,6,2,7,7,3,6,1,1,3,1,1,1,2,7,2,4,1,1,7,7,5,1,7,1,7,3,4,3,2,2,5,1,6,3,3,1,3,2,2,2,2,5,4,2,1,2,3,3,3,2,2,4,2,2,6,6,7,1,3
13283,21,22,Treutlen County,GA,3,5,3,2,2,5,3,3,2,1,2,4,3,2,1,2,1,2,4,3,3,2,3,2,7,3,2,1,3,5,3,5,6,2,2,4,2,1,2,2,6,2,2,3,7,1,3,3,2,3,2,4,7,4,7,1,4,1,2,1,2,6,6,2,6,5,1,2,5,1,6,6,1,5,6,4,1,7,7,7,2,1,6,2,1,2,1,6,4,4,4,7,4,1,7,4,6,2,6,3,3,1,3,2,1,1,2,1,1,2,1,2,1,3,4,3,2,3,5,6,3,2,1,2,1
13285,238,237,Troup County,GA,2,3,7,4,6,6,7,7,5,1,4,4,7,5,3,4,4,5,7,5,6,6,5,5,5,6,7,2,6,5,6,3,7,6,6,6,6,5,5,7,6,4,7,5,5,1,6,5,6,5,5,6,7,1,3,7,6,1,4,1,2,6,6,2,6,6,5,6,7,7,3,7,3,3,2,1,6,7,7,7,7,4,6,4,2,6,6,6,4,7,2,5,3,3,4,5,2,5,6,5,6,6,6,5,5,6,5,3,4,2,1,6,2,5,6,1,3,7,4,1,2,5,5,2,3
13287,46,43,Turner County,GA,3,5,3,3,2,6,4,3,3,1,2,3,4,3,2,2,2,4,5,4,4,3,3,4,4,4,3,1,4,3,5,3,7,2,4,2,2,3,3,3,4,2,3,4,7,4,4,4,6,3,3,5,6,2,5,1,5,1,2,1,2,5,6,2,6,5,3,4,5,2,6,5,4,7,7,4,4,5,6,3,1,1,1,3,1,2,1,7,7,6,4,7,5,2,6,4,5,6,6,4,4,3,4,2,2,2,3,1,2,2,3,3,1,4,5,4,3,4,2,7,3,2,3,1,3
13289,30,18,Twiggs County,GA,1,4,4,3,7,6,4,5,4,1,3,4,5,4,4,3,3,5,5,6,4,4,4,3,6,4,4,1,5,5,4,3,7,4,4,5,5,4,4,4,4,5,2,4,6,1,5,4,2,4,4,7,7,3,7,1,3,1,3,1,2,7,6,2,6,5,6,6,7,2,6,5,2,5,3,4,2,7,7,1,2,1,5,1,1,1,1,1,6,1,4,6,1,1,7,5,7,3,6,5,5,6,4,5,2,2,6,2,3,2,3,3,1,3,5,3,7,3,4,6,3,3,1,1,3
13291,61,43,Union County,GA,4,4,3,3,2,5,1,7,2,1,3,6,3,3,7,2,5,3,4,3,5,4,3,4,3,3,3,2,4,6,3,5,6,1,3,2,2,2,3,3,3,1,3,5,4,1,4,4,3,5,3,3,7,5,5,5,4,1,3,1,2,5,4,2,5,7,5,4,7,6,3,6,2,3,5,3,1,4,1,7,1,2,1,4,7,7,1,1,2,1,7,4,1,3,1,2,4,4,6,4,4,1,3,2,2,3,2,4,3,2,1,3,3,2,4,3,2,5,2,5,6,6,7,2,3
13293,102,88,Upson County,GA,3,4,7,4,4,6,4,6,3,1,3,4,7,5,7,3,5,5,6,5,6,5,5,4,5,5,4,1,5,6,5,3,7,4,5,3,4,4,5,4,5,4,5,5,6,1,5,4,5,4,5,6,7,2,5,6,3,1,2,1,2,7,6,2,6,6,7,7,7,6,3,2,6,5,5,3,5,6,4,6,6,4,3,2,2,4,3,5,3,6,2,5,3,1,6,2,3,3,6,5,5,6,5,5,4,4,6,3,3,2,1,5,2,3,6,2,3,6,3,3,3,3,3,1,3
13295,185,201,Walker County,GA,1,3,5,5,5,7,7,7,7,1,7,6,7,6,7,5,7,6,7,7,7,7,6,6,6,6,7,5,7,5,6,6,7,4,6,5,5,7,6,6,6,5,6,6,7,4,7,5,6,6,6,6,7,4,1,4,5,1,3,1,2,5,5,2,5,6,5,7,1,3,3,7,6,3,4,5,3,1,5,5,3,2,4,2,3,1,4,4,3,3,2,4,2,1,3,3,7,3,1,6,7,6,6,6,5,6,6,3,2,2,3,6,3,2,7,3,5,7,4,1,3,4,2,2,3
13297,546,557,Walton County,GA,1,4,6,5,5,7,5,6,6,2,5,6,6,6,3,4,6,6,6,7,7,7,6,6,7,7,7,1,7,7,6,5,7,2,6,4,4,6,6,5,6,2,5,6,7,7,7,4,6,6,6,5,7,4,6,6,4,1,5,1,2,6,5,2,5,6,6,7,7,6,3,5,5,3,6,4,2,2,5,4,2,1,3,4,3,2,5,5,5,3,1,2,4,3,2,6,7,1,7,6,6,3,6,4,4,6,5,3,5,2,1,6,3,5,6,3,5,7,4,2,5,7,3,1,3
13299,169,144,Ware County,GA,2,5,6,4,5,7,5,3,2,2,4,3,6,5,2,4,6,6,6,4,6,6,5,4,5,5,5,1,6,5,6,6,7,1,5,4,4,5,5,5,5,1,6,6,6,1,6,3,7,3,6,4,5,3,3,1,5,1,4,1,2,4,7,2,7,5,1,1,4,1,6,1,2,5,5,4,4,7,2,7,7,6,6,3,3,7,5,6,6,6,5,6,4,2,5,4,2,4,6,6,6,1,6,3,5,5,4,1,1,2,1,5,1,3,7,4,4,5,2,6,3,2,4,2,3
13301,10,14,Warren County,GA,4,4,2,2,2,6,6,5,2,2,2,6,4,2,4,4,2,2,5,4,3,2,2,3,7,4,2,1,3,6,3,5,6,2,2,5,2,2,2,2,3,2,3,3,6,1,3,3,4,5,2,5,7,5,6,6,2,1,4,1,2,7,6,2,6,5,3,5,7,6,6,3,3,2,2,4,5,6,7,6,2,6,7,4,2,1,7,7,3,3,4,7,2,1,7,3,7,4,6,3,3,4,2,2,2,1,3,2,2,2,1,2,2,4,4,2,2,3,5,1,5,1,1,1,3
13303,65,74,Washington County,GA,3,4,3,3,3,6,4,5,2,2,2,5,4,4,2,3,2,4,4,4,3,3,3,3,5,3,3,2,4,6,3,4,6,3,3,6,4,2,3,3,4,3,3,5,7,1,4,3,3,4,5,7,7,5,6,1,4,1,4,1,2,7,6,2,6,5,3,5,7,2,6,6,3,5,4,6,6,4,6,6,6,3,3,4,1,3,5,6,6,5,4,7,1,2,7,4,3,3,6,4,4,5,3,3,2,4,5,2,2,2,3,3,1,6,4,4,3,4,5,7,4,3,2,2,3
13305,102,120,Wayne County,GA,3,5,4,3,4,6,7,3,4,2,3,3,5,4,5,3,7,4,5,6,4,4,4,3,4,4,3,1,5,3,4,6,7,1,5,6,3,7,4,6,4,1,4,4,5,5,4,2,4,2,4,5,5,5,7,1,5,1,2,1,2,5,7,2,7,5,2,2,5,1,6,2,1,5,5,4,4,1,3,6,5,5,7,3,2,5,5,5,4,4,5,6,5,2,4,4,3,3,7,5,5,1,4,2,3,4,3,1,1,2,1,3,1,3,5,4,4,5,3,7,3,4,4,2,3
13307,2,1,Webster County,GA,4,4,2,2,2,6,3,5,3,2,1,4,4,3,3,2,2,2,4,5,2,2,3,2,3,7,7,1,3,4,2,2,6,1,2,4,1,2,2,2,4,2,2,4,7,6,3,4,3,3,2,6,7,1,6,1,2,1,1,1,2,6,6,1,6,6,2,2,6,1,6,6,3,7,5,5,1,6,7,1,1,1,1,1,1,1,1,1,1,1,6,6,5,1,6,3,7,3,6,3,3,1,2,2,1,1,2,1,1,2,1,4,1,5,3,4,6,3,5,7,3,1,1,1,1
13309,30,24,Wheeler County,GA,4,5,2,2,2,6,2,3,1,2,2,4,3,2,1,2,1,2,4,3,2,2,2,2,6,3,2,1,3,5,2,5,6,2,2,3,2,1,2,2,4,1,2,4,7,5,3,3,2,3,2,4,6,4,7,1,4,1,1,1,2,6,6,2,6,5,2,2,6,1,6,2,1,5,6,4,1,2,7,2,1,1,1,2,1,1,1,7,4,3,6,7,3,2,4,2,7,3,6,3,3,1,2,2,1,1,2,1,1,2,1,2,1,3,3,3,2,3,4,7,3,1,1,2,3
13311,94,81,White County,GA,4,4,4,3,3,5,3,6,4,2,3,6,4,4,6,3,4,4,5,4,5,4,4,4,4,4,3,1,4,6,4,5,7,1,3,3,2,2,3,3,4,1,3,5,6,1,5,4,4,5,3,3,7,5,7,5,5,1,5,1,2,5,5,2,5,7,7,6,7,7,3,7,6,3,5,4,1,3,3,6,2,1,5,2,7,2,5,1,5,2,6,3,4,3,1,3,6,1,6,4,4,1,3,2,3,3,3,6,7,2,2,3,3,2,5,3,2,6,2,3,6,6,7,1,6
13313,212,240,Whitfield County,GA,1,3,7,5,6,7,7,7,7,2,7,7,7,6,7,5,6,7,7,7,7,7,6,7,6,6,7,3,7,5,7,6,7,4,7,4,6,7,7,6,6,2,6,6,6,5,7,5,6,7,6,6,7,5,1,7,6,1,5,1,2,4,5,2,5,6,7,6,5,6,3,6,5,3,5,4,7,5,2,4,5,4,6,3,5,5,5,1,4,6,1,3,7,1,2,2,2,6,7,6,6,3,7,7,6,6,4,5,4,2,5,6,2,4,7,3,5,7,3,2,5,5,4,2,3
13315,26,27,Wilcox County,GA,4,5,2,2,2,6,3,4,3,2,2,3,4,3,2,2,2,3,4,4,3,2,3,3,3,3,3,1,3,4,4,4,6,1,4,2,2,2,2,2,3,1,2,3,7,1,3,4,6,3,2,4,6,2,6,1,4,1,2,1,2,5,6,2,6,5,5,5,6,1,6,7,6,6,7,4,5,1,7,2,4,1,1,2,1,1,1,3,5,2,6,7,1,2,3,3,6,2,6,3,3,1,2,2,1,2,2,1,2,2,3,3,1,3,4,3,2,3,3,7,3,2,1,1,1
13317,20,38,Wilkes County,GA,3,4,2,2,7,6,2,5,1,2,2,6,5,3,4,2,2,3,5,4,3,3,3,3,7,3,2,1,3,6,3,5,7,4,3,3,2,3,3,2,4,1,3,4,7,1,4,3,3,5,2,4,7,5,6,6,3,1,2,1,2,7,5,1,5,6,3,3,6,6,6,3,5,4,4,4,7,5,7,2,4,6,5,1,7,6,7,5,4,4,5,6,2,1,3,5,3,2,7,3,3,1,3,2,2,2,2,2,3,2,1,2,4,2,4,2,2,4,5,2,5,3,6,1,3
13319,32,44,Wilkinson County,GA,4,4,4,3,5,6,4,5,3,2,3,5,5,4,3,3,3,4,5,5,4,3,4,3,6,4,3,2,4,6,3,3,7,4,4,5,5,3,3,3,4,5,2,4,6,1,5,4,2,4,4,6,7,4,4,1,5,1,4,1,2,7,6,2,6,5,6,5,7,1,6,2,1,2,2,4,6,1,7,4,4,1,1,2,1,1,1,1,7,1,5,6,2,2,5,5,6,1,6,4,4,6,3,5,2,2,6,2,1,2,3,3,1,5,5,3,7,3,4,3,3,3,1,1,6
13321,54,59,Worth County,GA,1,5,3,3,3,6,3,3,2,2,3,3,4,4,2,3,3,4,5,5,4,4,4,3,4,4,3,1,4,3,4,2,7,2,3,3,3,2,4,4,4,2,3,5,7,1,5,4,5,3,4,6,6,2,7,1,4,1,2,1,2,5,6,1,6,5,3,4,5,1,6,5,3,7,6,5,1,6,4,3,4,2,1,5,3,2,3,6,3,4,4,6,1,2,6,4,7,2,6,4,4,4,3,2,2,4,3,1,2,2,3,4,1,4,5,4,3,5,2,7,2,3,3,1,3
15001,6,9,Hawaii County,HI,2,1,4,4,5,4,3,2,1,2,4,1,1,5,1,3,4,5,2,2,4,5,4,1,4,5,4,5,4,1,3,3,3,7,3,1,3,4,2,4,4,1,5,2,4,1,4,2,4,1,5,1,1,1,3,4,1,1,1,1,2,4,7,1,7,1,1,1,1,1,6,4,1,3,7,1,2,1,5,3,6,1,3,2,6,5,5,6,4,7,5,5,7,6,6,1,1,7,1,5,5,1,5,2,6,7,3,1,1,7,1,3,1,4,7,1,3,5,3,5,1,7,5,1,4
15003,47,54,Honolulu County,HI,1,1,7,5,6,5,4,2,2,2,6,2,4,6,3,5,7,6,6,4,6,7,6,5,6,6,5,7,7,4,7,4,5,1,4,2,6,6,5,6,7,1,6,3,6,1,6,3,5,2,6,6,1,4,1,1,1,1,1,1,2,1,7,1,7,1,1,1,1,1,6,3,2,5,7,1,1,7,4,3,7,4,3,3,4,5,5,6,2,7,3,2,7,6,5,1,1,7,3,6,7,1,7,4,7,7,4,1,1,7,1,6,1,5,7,1,4,1,7,6,3,7,5,4,4
15007,6,4,Kauai County,HI,2,1,3,2,3,2,2,1,1,2,2,1,1,2,1,1,3,2,1,1,2,2,2,1,2,3,2,3,2,1,2,2,1,2,2,2,1,2,1,2,2,1,3,1,6,1,2,2,1,1,2,2,1,1,2,4,1,1,1,1,2,1,7,1,7,1,1,1,1,1,6,3,1,6,7,1,3,1,5,6,6,2,5,4,7,6,7,7,1,7,6,3,7,6,4,1,1,7,1,3,3,1,4,1,4,6,2,1,1,7,1,1,1,1,5,1,2,1,7,6,1,7,7,5,4
15009,8,5,Maui County,HI,2,1,4,4,5,3,3,2,1,2,4,1,2,5,2,4,5,5,2,2,3,3,4,2,4,5,4,5,4,1,3,3,3,2,4,2,3,4,2,4,4,1,5,2,3,1,4,2,2,1,5,6,1,2,2,4,1,1,1,1,2,5,7,1,7,1,1,1,1,1,6,6,1,5,7,1,2,1,7,4,6,3,4,3,7,5,7,6,3,7,7,3,7,6,4,1,1,7,1,5,5,1,5,2,6,7,3,1,1,2,1,3,1,6,6,1,3,1,7,6,1,7,7,3,4
16001,699,774,Ada County,ID,1,4,6,1,7,7,7,2,5,4,6,2,7,7,7,5,6,7,7,7,6,7,6,7,7,1,6,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,5,3,7,3,7,7,7,7,2,3,3,4,7,1,5,6,2,6,5,1,2,1,7,5,5,4,3,4,5,7,7,7,3,3,5,5,6,4,7,7,7,7,4,4,2,6,1,1,6,7,2,5,1,7,5,1,1,3,7,7,6,7,3,4,7,2,3,7,7,7,3,4,6,1,1,6,2,7,6,3,7
16003,2,1,Adams County,ID,4,1,1,1,1,7,1,1,3,4,1,1,1,1,3,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,1,1,1,1,7,1,1,6,4,1,2,1,1,1,1,3,2,4,6,1,5,1,1,5,2,5,3,1,1,1,4,5,7,7,6,5,1,6,6,1,3,4,1,7,6,7,7,1,3,1,1,1,2,2,7,5,3,5,6,2,3,1,4,1,1,1,1,1,1,1,1,7,7,2,2,1,7,1,1,1,1,1,1,1,1,5,6,1,2
16005,149,167,Bannock County,ID,1,6,5,1,7,7,7,4,5,7,7,2,7,7,7,4,5,7,7,7,5,7,5,5,5,1,6,7,7,7,6,6,6,6,5,7,6,7,7,7,7,1,4,7,7,1,7,4,7,6,7,7,2,7,3,4,7,1,2,5,2,7,5,3,5,1,3,5,3,3,3,7,5,7,7,7,3,7,1,2,7,6,6,7,7,7,5,5,2,6,2,4,5,7,6,6,2,6,5,1,7,1,6,7,6,6,1,7,5,2,3,7,5,7,3,6,7,1,5,6,4,5,6,5,6
16007,15,15,Bear Lake County,ID,3,6,1,1,2,7,6,1,5,7,2,2,6,5,4,1,1,1,5,7,1,2,1,1,1,1,1,2,2,2,2,2,1,5,1,5,6,1,2,2,7,1,1,7,5,1,3,4,2,1,1,3,2,7,3,1,7,1,1,1,2,7,5,3,5,1,1,4,1,3,3,2,5,7,7,1,1,7,1,7,6,2,1,1,7,6,1,1,6,1,7,2,3,6,6,6,3,4,2,1,1,4,2,3,1,1,3,4,4,2,4,2,7,6,1,2,4,1,4,2,4,4,7,6,3
16009,2,5,Benewah County,ID,3,1,2,1,7,7,5,2,3,4,2,1,2,4,6,3,1,3,3,7,2,2,2,1,3,1,3,3,2,2,2,5,4,6,3,6,2,3,3,4,7,2,1,7,5,6,6,3,3,2,1,7,3,5,6,5,6,1,1,1,2,1,1,1,1,1,4,4,7,6,1,2,1,1,1,1,4,3,2,1,2,7,1,4,4,3,1,1,5,3,5,5,3,4,7,3,2,3,3,2,1,1,3,3,1,2,1,3,7,2,3,3,5,6,1,3,2,4,2,2,1,5,7,1,3
16011,71,89,Bingham County,ID,3,5,3,7,7,7,6,2,4,6,6,1,7,7,7,2,3,2,5,7,3,5,3,2,4,1,2,5,4,3,3,7,5,4,5,7,3,3,5,5,7,2,2,7,6,6,6,4,4,3,4,7,2,6,7,1,5,1,1,1,2,7,4,2,4,1,1,5,3,4,3,3,5,7,7,7,7,5,1,2,7,3,5,4,5,2,5,1,5,2,2,4,6,5,5,6,4,3,2,1,5,1,5,5,2,5,1,5,5,2,3,6,6,7,2,7,6,1,5,7,3,5,3,5,5
16013,22,15,Blaine County,ID,3,5,3,1,2,7,2,1,2,6,1,1,2,2,6,1,1,1,3,7,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5,5,2,1,2,2,7,1,1,6,4,1,2,4,2,2,1,3,2,5,3,4,6,1,1,1,2,7,4,1,2,1,7,7,4,5,1,1,2,6,5,1,2,2,2,6,7,6,6,7,7,7,7,1,7,6,7,1,6,7,2,2,1,6,3,1,1,1,2,2,1,3,1,7,6,2,7,2,5,3,1,1,1,1,2,3,2,7,7,4,6
16015,1,0,Boise County,ID,1,4,2,1,5,7,4,1,2,4,1,1,1,2,6,1,1,2,2,7,1,1,1,1,2,1,2,2,1,1,1,4,2,1,1,4,1,1,2,2,7,2,1,6,2,1,2,3,2,1,1,4,2,3,7,5,4,1,1,1,2,4,4,1,1,1,7,7,5,6,1,3,1,4,3,1,1,1,2,2,3,2,1,1,2,1,6,7,7,1,7,4,4,6,6,1,7,1,3,1,1,1,1,2,1,1,1,6,7,2,6,2,6,3,1,1,1,1,1,3,2,7,6,3,6
16017,22,27,Bonner County,ID,3,1,4,2,7,7,7,2,3,4,6,1,6,7,7,4,3,2,6,7,3,3,2,2,3,1,2,5,4,3,3,7,4,7,6,7,3,4,5,6,6,1,2,7,4,1,6,2,4,2,5,6,2,6,7,5,7,1,2,5,2,6,2,1,1,1,7,7,6,6,1,2,2,4,5,4,3,3,1,3,4,6,6,7,7,6,1,1,4,3,7,5,3,6,6,2,2,5,3,2,1,3,4,5,4,5,2,6,7,2,5,6,6,6,2,2,6,1,4,2,1,6,7,1,6
16019,229,221,Bonneville County,ID,1,5,6,7,7,7,7,4,6,5,7,2,6,7,7,4,5,6,7,7,5,6,5,5,7,1,5,7,7,7,6,7,6,6,6,7,6,7,7,7,7,2,5,7,7,1,7,4,7,7,7,5,2,7,4,1,6,1,1,5,2,7,4,2,3,1,4,7,3,4,3,3,4,7,7,7,3,7,1,5,7,4,5,7,7,7,4,1,3,4,1,3,6,7,4,7,1,5,3,1,7,3,7,7,6,6,3,6,5,2,3,7,7,7,3,7,7,1,5,7,3,6,7,5,6
16021,2,8,Boundary County,ID,3,1,2,1,5,7,4,1,2,4,1,1,2,2,5,1,1,1,2,7,1,2,1,1,1,1,1,3,2,2,1,5,2,4,2,6,2,2,3,3,7,1,1,7,3,1,4,1,2,1,1,4,2,5,7,6,7,1,1,1,2,6,3,1,1,1,7,6,5,5,1,2,2,3,4,6,2,5,1,3,1,3,5,4,7,5,5,1,2,3,3,5,5,4,7,5,2,2,3,1,1,1,2,2,1,2,1,5,7,2,2,3,6,7,1,4,2,1,6,4,1,5,6,2,6
16023,0,2,Butte County,ID,4,5,1,1,1,7,1,1,4,5,1,1,1,1,3,1,1,1,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,7,2,1,6,4,4,1,4,1,1,1,3,2,5,6,1,6,1,1,1,2,7,3,1,2,1,3,7,5,6,1,2,2,6,5,7,7,7,1,3,7,6,7,1,7,3,7,1,7,3,5,6,5,5,5,3,2,4,3,1,1,1,1,2,1,1,1,7,6,2,6,1,7,4,1,4,1,1,3,2,2,3,7,4,6
16027,370,454,Canyon County,ID,1,3,6,6,7,7,7,2,5,4,6,2,6,7,7,5,5,7,7,7,6,7,7,7,7,1,6,7,6,7,7,5,7,7,7,7,6,7,7,7,7,6,6,7,5,5,7,3,7,7,7,7,2,3,5,1,6,1,5,5,2,6,5,1,1,1,3,5,6,6,3,7,6,7,7,7,5,4,6,3,3,3,5,6,4,5,5,5,3,5,1,3,7,3,5,3,4,5,6,2,2,3,7,7,6,7,4,6,7,2,2,7,7,7,2,6,6,2,1,7,2,6,4,3,6
16029,36,27,Caribou County,ID,3,6,1,1,5,7,6,1,7,6,5,1,7,7,4,1,1,2,7,7,1,2,1,1,1,1,3,2,4,2,1,3,2,4,3,5,7,2,2,4,7,4,1,6,5,6,3,4,1,1,3,5,2,7,4,1,7,1,1,6,2,7,5,3,4,1,2,5,2,3,3,3,2,7,6,7,7,2,1,6,1,6,7,6,3,5,1,1,2,2,6,2,4,7,3,6,1,4,3,2,3,3,1,3,1,2,2,6,5,2,5,3,6,5,1,6,6,1,5,6,3,5,5,5,4
16031,31,33,Cassia County,ID,3,6,6,1,3,7,3,1,2,7,2,1,3,7,7,1,4,2,4,7,3,4,3,1,3,1,2,5,4,3,3,3,3,5,5,7,3,4,5,5,7,1,3,5,5,5,5,5,5,3,1,3,1,5,6,1,6,2,1,1,2,7,6,2,5,1,3,4,4,4,3,1,5,7,7,7,5,5,1,2,2,3,3,5,6,7,1,1,6,5,3,4,7,3,4,5,3,4,3,1,1,1,5,4,4,4,1,5,6,2,3,6,6,6,2,7,3,1,6,7,2,5,5,5,4
16035,2,3,Clearwater County,ID,3,1,3,1,2,7,1,1,2,4,1,1,3,2,6,1,2,1,2,7,1,2,1,1,2,1,1,3,2,2,2,2,2,5,2,6,2,2,3,3,7,4,1,7,5,6,3,1,2,1,1,4,3,5,5,5,7,2,1,1,2,4,1,1,1,1,4,5,6,6,1,5,2,2,1,1,2,2,1,4,1,7,6,3,4,5,7,1,5,3,6,4,3,4,7,3,2,3,3,1,1,1,2,2,1,2,1,4,7,2,3,3,7,5,1,2,1,1,3,2,1,4,7,1,2
16039,13,18,Elmore County,ID,2,5,2,1,3,7,3,3,2,5,1,1,2,2,6,3,3,2,2,7,2,3,2,1,3,1,2,5,2,2,2,3,4,4,5,6,2,3,4,4,7,5,2,7,5,4,5,3,4,2,4,3,2,3,5,4,5,2,1,1,2,7,5,1,2,1,6,7,5,5,1,2,3,6,5,7,2,6,1,2,4,6,4,3,2,2,4,1,7,7,5,3,6,7,5,2,2,3,4,1,1,1,3,2,2,4,1,7,7,2,7,3,6,7,1,6,1,1,3,6,2,5,2,3,4
16041,31,45,Franklin County,ID,1,6,4,3,2,7,6,2,5,7,5,1,3,7,6,1,2,1,5,7,2,2,7,1,2,1,2,3,3,2,2,2,3,4,2,6,3,2,3,4,7,4,1,7,5,7,5,5,2,1,1,5,2,7,5,1,7,2,2,1,2,7,6,3,6,1,2,5,2,3,3,6,6,7,7,1,3,1,4,5,2,1,1,4,3,4,1,1,3,2,3,1,5,7,4,7,5,1,2,1,1,1,3,2,1,2,1,4,6,2,3,4,5,6,1,2,2,1,4,2,5,5,3,6,2
16043,10,14,Fremont County,ID,3,4,5,4,1,7,6,1,2,4,3,1,1,5,6,1,2,6,3,7,1,2,1,1,2,1,6,3,2,2,1,4,2,5,1,5,2,2,3,3,7,3,3,6,5,6,4,3,2,1,2,4,2,7,7,1,4,2,1,1,2,7,2,1,1,1,4,5,4,4,1,1,3,6,7,7,3,4,1,1,5,5,1,1,2,1,1,1,3,1,7,5,6,4,4,3,6,1,3,1,1,1,2,2,1,2,1,6,5,2,3,4,5,6,1,7,5,1,5,7,2,4,7,4,5
16045,16,19,Gem County,ID,1,3,4,7,7,7,6,2,4,4,5,3,4,6,7,5,4,5,5,7,4,6,7,2,6,2,6,6,4,4,4,5,6,7,5,7,5,5,6,5,7,6,3,7,6,7,7,3,6,5,4,5,2,3,7,1,5,2,2,1,2,4,4,1,1,1,7,6,7,7,6,3,4,7,7,7,2,1,1,3,1,4,4,7,5,5,1,1,1,2,1,4,5,4,4,4,6,1,4,2,2,3,6,5,3,3,4,7,7,2,4,6,7,7,2,4,4,3,1,4,2,6,6,3,2
16047,4,12,Gooding County,ID,3,5,2,1,2,7,5,1,2,6,2,1,2,5,6,1,1,3,2,7,1,2,1,1,4,1,3,3,2,2,1,3,2,6,2,6,2,2,3,3,7,5,1,6,5,4,4,4,2,2,1,3,1,4,6,4,6,2,6,1,2,7,5,1,2,1,2,5,7,7,1,3,7,7,7,7,4,7,1,1,2,5,1,6,3,4,7,1,4,5,3,4,7,3,2,3,4,2,3,1,1,1,3,3,1,3,1,6,6,2,2,3,6,5,1,5,2,1,5,6,2,4,5,4,3
16049,5,6,Idaho County,ID,3,1,2,1,1,7,1,1,2,4,1,1,1,1,5,1,1,1,1,7,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,5,1,1,2,2,7,4,1,6,5,6,2,1,1,1,1,3,3,5,7,4,6,2,1,1,2,6,1,1,1,1,7,5,6,6,1,1,2,3,1,6,4,5,1,1,3,5,1,4,6,6,6,1,7,3,6,5,3,5,7,2,2,2,3,1,1,1,1,1,1,3,1,4,7,2,3,2,7,7,1,4,1,1,3,2,1,5,7,1,6
16051,38,43,Jefferson County,ID,1,4,5,7,6,7,6,1,4,5,5,1,3,7,7,1,3,7,5,7,2,3,2,2,4,1,6,5,4,3,3,5,4,4,3,7,3,3,5,4,7,4,3,6,6,6,6,4,3,3,4,4,2,6,7,1,3,2,2,1,2,7,3,1,2,1,1,6,5,6,3,3,5,7,7,7,2,6,2,1,7,5,3,5,4,2,3,1,6,1,1,3,6,6,3,7,6,2,3,1,5,1,5,4,2,3,1,6,6,2,4,6,7,7,2,7,6,1,4,7,2,5,3,4,4
16053,35,34,Jerome County,ID,3,6,7,1,3,6,5,1,3,7,2,1,3,7,7,1,3,4,4,7,2,5,3,1,7,1,4,5,3,3,2,4,4,5,3,7,3,4,4,7,7,3,3,7,5,5,6,4,7,4,2,4,1,4,6,1,3,2,6,1,2,7,5,1,3,1,1,4,4,4,3,2,7,7,7,7,5,7,1,5,1,6,6,6,1,2,1,1,7,6,1,4,7,3,5,4,5,3,3,1,1,1,5,5,4,3,1,4,5,2,2,5,6,6,1,6,3,1,5,7,2,5,3,4,4
16055,159,192,Kootenai County,ID,1,1,6,4,7,7,7,2,5,4,7,1,7,7,7,6,5,7,7,7,6,7,5,6,7,1,6,7,6,6,6,7,7,7,7,7,6,6,7,7,7,7,6,7,3,7,7,3,7,6,5,7,3,6,4,4,7,2,3,6,2,3,2,1,1,1,6,6,6,6,1,4,1,4,6,6,3,5,1,6,2,6,4,6,6,7,4,1,2,4,4,3,3,7,6,5,3,6,4,2,1,3,7,7,6,6,3,6,7,2,4,7,5,7,3,4,6,3,3,4,1,6,7,1,7
16057,30,21,Latah County,ID,2,1,4,3,7,7,3,1,3,4,4,1,5,5,7,5,5,3,4,7,4,5,4,3,5,2,3,7,4,5,5,6,7,6,5,7,6,5,6,5,7,6,4,7,6,5,6,3,6,5,2,6,2,5,5,4,6,2,3,5,2,1,1,1,1,1,3,3,6,6,1,3,4,3,4,6,2,3,2,6,6,6,4,7,7,5,6,1,1,7,1,6,5,7,6,2,3,7,1,2,2,1,6,6,3,5,3,4,7,2,2,5,5,6,2,5,2,1,1,4,1,6,6,1,4
16059,5,6,Lemhi County,ID,3,1,2,1,1,7,1,1,2,4,1,1,1,1,4,1,1,1,1,5,1,1,1,1,1,1,1,2,1,1,1,1,1,6,1,4,1,1,2,1,7,4,1,7,5,4,1,1,1,1,1,6,3,5,7,6,5,2,1,5,2,7,1,1,1,1,6,7,5,6,1,1,2,5,5,6,5,4,1,5,3,5,1,5,7,7,6,1,7,4,6,5,3,5,7,2,1,3,3,1,1,1,1,1,1,2,1,7,7,2,7,1,7,4,1,3,1,1,2,2,1,5,7,3,2
16061,1,2,Lewis County,ID,4,1,2,1,6,7,2,1,2,4,1,1,2,1,6,1,2,1,2,7,1,2,1,1,2,1,1,3,2,2,1,4,3,3,3,6,3,3,3,2,7,3,1,6,6,5,3,2,2,1,1,5,2,5,6,4,6,2,2,1,2,4,1,1,1,1,4,6,7,7,6,3,2,4,1,1,7,5,2,7,1,7,1,7,6,6,1,1,6,4,5,3,2,6,7,5,5,1,3,1,1,1,2,2,1,1,1,5,7,2,2,3,6,6,1,3,1,1,2,4,1,4,1,1,2
16063,3,3,Lincoln County,ID,4,6,3,1,1,6,4,1,2,6,1,1,1,5,6,1,1,2,2,7,1,1,1,1,4,1,2,2,1,1,1,2,2,4,1,5,1,1,2,2,7,2,1,5,4,7,2,4,1,1,2,3,2,4,6,4,4,2,2,1,2,7,4,1,2,1,2,5,5,5,3,2,4,6,7,7,5,5,2,7,7,5,1,4,1,2,1,1,7,4,4,4,7,3,2,2,6,2,3,1,1,1,2,3,1,1,1,6,6,2,3,3,5,5,1,4,2,1,4,6,2,4,1,4,6
16065,47,37,Madison County,ID,3,4,7,7,6,7,7,3,5,5,7,2,5,7,7,2,6,7,7,7,6,7,5,4,5,1,7,7,7,7,6,6,6,7,6,7,5,7,7,7,7,4,7,7,6,5,7,4,7,6,7,4,2,7,6,1,3,2,1,1,2,7,4,2,2,1,1,5,3,4,3,4,4,7,7,7,3,5,2,3,6,1,4,2,6,6,4,1,4,7,2,7,6,7,6,5,2,7,1,1,4,1,7,7,6,4,1,4,5,2,5,7,5,7,3,7,7,1,5,7,2,6,2,5,3
16067,24,22,Minidoka County,ID,3,6,5,1,2,7,3,1,3,7,1,1,3,6,7,1,3,2,4,7,2,5,3,2,3,1,2,5,4,3,3,3,3,5,6,7,3,3,5,4,7,7,3,6,4,5,6,4,5,3,1,4,1,5,6,1,3,2,4,1,2,7,5,1,3,1,2,4,4,4,3,6,6,7,7,7,5,3,1,5,1,5,3,5,5,2,1,1,6,3,2,5,7,3,5,3,4,4,3,1,1,1,4,4,2,3,1,6,6,2,3,6,6,6,1,7,2,1,4,7,2,4,4,4,7
16069,36,28,Nez Perce County,ID,1,1,6,4,7,7,6,2,5,4,7,1,7,6,7,6,7,7,6,7,7,7,5,3,7,2,6,7,5,5,5,7,7,6,7,7,6,7,6,6,7,5,5,7,7,4,6,3,7,6,6,6,2,5,3,6,6,2,3,5,2,4,1,1,1,1,3,1,7,7,6,2,3,5,6,1,3,7,1,4,5,6,6,6,6,7,6,1,3,6,1,4,3,6,3,5,2,6,2,2,2,1,7,7,5,5,4,7,7,2,1,6,7,7,2,3,5,1,1,5,1,6,7,1,4
16071,10,7,Oneida County,ID,4,6,2,1,1,7,5,1,2,7,2,1,1,4,5,1,1,1,3,7,1,1,5,1,1,1,1,2,2,2,1,2,1,2,1,5,3,1,2,1,7,7,1,5,5,4,3,5,1,1,1,4,2,7,6,1,7,2,1,1,2,7,6,3,6,1,3,4,3,4,3,1,4,7,7,1,1,6,1,7,2,1,1,7,6,5,1,1,4,1,6,3,3,7,3,6,4,1,3,1,1,1,2,3,1,1,1,6,6,2,3,2,5,6,1,3,6,1,5,2,4,5,7,6,2
16073,25,20,Owyhee County,ID,1,5,2,5,3,7,5,1,4,6,2,1,3,6,6,3,2,3,4,7,2,2,6,1,3,1,5,3,2,2,1,4,3,6,2,6,2,2,3,4,7,4,2,6,6,5,5,4,3,1,1,2,1,2,7,1,6,2,1,5,2,7,6,1,3,1,3,5,6,6,3,1,3,6,5,7,7,2,1,2,2,2,7,1,2,1,5,1,4,6,6,6,7,2,6,1,6,2,4,2,1,3,3,3,1,2,2,6,7,2,3,4,6,6,1,5,3,1,5,5,1,4,5,3,7
16075,50,51,Payette County,ID,3,3,4,7,5,7,5,2,3,4,6,3,5,4,7,6,3,3,3,7,4,6,7,2,5,2,7,5,4,3,4,3,5,5,4,7,5,5,6,5,7,4,3,7,5,6,7,2,5,2,2,4,2,3,6,1,6,2,3,1,2,5,5,1,1,1,7,7,6,6,3,5,6,7,7,7,5,7,2,3,1,6,5,7,5,4,1,1,5,5,2,4,6,3,5,3,6,5,4,3,3,4,5,4,2,4,5,7,7,2,2,7,7,7,2,5,6,3,1,7,1,5,4,2,6
16077,10,14,Power County,ID,1,6,2,1,4,7,6,1,2,7,2,1,7,5,6,1,1,2,3,7,1,4,1,1,1,1,2,2,2,2,1,4,2,2,2,5,2,1,2,2,7,3,1,5,5,5,4,4,1,1,2,5,2,6,5,4,7,2,2,1,2,7,5,2,5,1,2,3,3,3,3,5,3,7,6,7,6,6,1,5,1,4,6,6,1,2,7,4,7,4,3,5,7,3,3,5,4,4,3,1,3,1,2,3,1,2,1,5,5,2,2,4,5,7,1,7,4,1,5,7,4,5,1,5,6
16079,9,9,Shoshone County,ID,3,1,3,1,2,7,4,1,7,4,1,1,2,5,7,1,2,2,2,7,1,3,2,1,2,1,2,3,2,2,2,3,3,6,5,6,2,2,3,4,6,4,2,7,4,5,4,2,3,2,1,5,3,5,5,4,7,2,1,5,2,5,1,1,1,1,7,7,5,6,1,1,1,1,1,1,5,2,1,5,2,7,4,3,7,4,1,1,1,5,6,5,3,4,7,2,2,5,3,1,1,1,3,2,1,3,1,7,7,2,5,2,5,4,1,1,2,1,3,1,1,3,6,1,6
16081,9,8,Teton County,ID,4,4,2,4,1,7,4,1,2,4,1,1,1,2,4,1,1,1,2,6,1,1,1,1,2,1,1,2,2,1,2,3,2,5,2,4,2,1,3,3,7,6,1,5,5,6,4,3,2,1,1,4,2,7,7,1,6,2,1,1,2,7,3,2,2,1,5,6,2,6,3,2,5,7,7,7,2,1,2,7,6,2,7,6,7,7,6,1,1,5,6,4,6,7,1,2,5,2,3,2,2,1,2,2,1,1,1,7,6,2,6,2,7,7,1,5,2,1,4,5,2,7,7,5,2
16083,130,147,Twin Falls County,ID,2,6,5,1,4,7,7,2,4,7,5,1,5,7,7,3,4,7,6,7,3,6,4,5,7,1,6,6,5,4,5,5,6,6,5,7,5,5,6,6,7,3,5,7,5,3,6,4,7,5,5,3,1,4,5,1,6,2,4,1,2,7,5,1,2,1,4,5,6,6,3,1,6,7,7,7,5,2,1,4,6,5,5,6,6,7,7,4,6,6,2,4,6,5,5,4,1,5,6,1,1,1,6,7,5,6,1,6,7,2,2,7,6,7,2,6,5,1,6,7,2,5,7,4,7
16085,1,2,Valley County,ID,4,1,2,1,1,7,1,1,2,4,1,1,1,2,4,1,1,1,1,7,1,1,1,1,1,1,1,2,1,1,1,1,2,6,5,4,1,1,2,1,6,4,1,7,5,6,2,1,1,1,1,3,2,4,4,5,5,2,1,5,2,5,3,1,1,1,7,5,5,5,1,2,1,4,3,6,7,1,1,7,2,7,7,6,7,7,7,1,5,2,7,2,3,7,5,1,1,5,3,1,1,1,2,1,1,2,1,5,7,2,7,1,6,1,1,3,1,1,1,2,1,7,7,2,3
16087,12,10,Washington County,ID,3,1,3,6,2,7,1,1,2,4,2,1,2,1,5,4,1,1,2,7,1,2,6,1,2,1,7,3,2,1,1,1,2,5,2,5,4,2,3,2,7,6,1,6,5,5,3,1,2,2,1,3,2,4,6,5,6,2,1,1,2,3,4,1,1,1,7,4,7,7,6,2,2,7,7,6,7,4,1,7,1,5,5,3,2,2,1,1,5,5,3,4,6,3,6,4,3,5,3,2,2,3,3,2,1,2,3,7,7,2,5,3,7,5,1,4,5,1,1,6,1,5,7,2,6
17001,215,189,Adams County,IL,2,6,6,7,6,4,6,6,6,2,6,7,7,7,5,7,7,7,4,2,5,5,5,7,5,6,6,6,7,7,7,5,7,6,7,7,7,7,6,5,5,4,7,7,5,4,6,5,4,7,7,4,4,4,2,6,5,2,5,6,2,5,3,5,3,4,1,4,3,3,1,5,7,5,3,7,6,4,7,2,5,6,6,7,7,4,5,5,1,5,3,2,2,6,4,5,1,5,5,7,7,5,6,6,7,6,5,3,2,2,4,7,3,3,4,7,6,4,4,4,4,4,3,6,6
17003,5,6,Alexander County,IL,3,3,2,4,3,3,3,5,4,2,3,7,4,3,7,6,6,3,3,3,2,3,6,6,4,4,3,4,3,6,7,5,5,5,7,7,6,5,3,3,7,6,3,4,5,7,3,4,2,6,2,3,4,5,2,5,7,6,5,5,2,1,5,4,5,5,4,7,4,4,6,6,3,1,1,4,6,4,7,1,6,7,6,7,4,1,5,7,7,5,6,7,2,1,7,2,6,4,7,3,3,7,3,5,4,2,7,4,4,2,4,6,3,4,3,5,2,3,2,3,4,1,3,4,6
17005,35,40,Bond County,IL,1,3,4,6,3,3,4,6,6,2,3,7,7,2,3,7,3,3,3,3,3,3,3,5,5,4,3,4,5,6,4,6,3,5,3,3,4,4,3,3,3,4,3,4,5,4,4,5,2,6,4,5,4,3,6,5,2,2,4,6,2,1,4,5,4,4,1,4,1,3,3,4,6,1,2,5,4,5,7,4,6,3,1,5,2,2,1,5,5,2,2,2,2,3,4,3,6,3,5,2,2,5,3,3,4,3,5,2,2,2,4,4,5,6,4,7,2,4,1,1,4,4,6,4,3
17007,213,236,Boone County,IL,1,4,4,7,5,6,6,7,4,2,6,4,7,7,4,7,6,7,6,6,5,5,6,7,5,7,6,6,6,7,6,4,5,6,6,6,6,6,7,6,6,5,7,4,5,4,7,6,5,7,7,4,5,4,5,1,3,2,6,7,2,6,3,7,3,4,2,1,5,4,1,5,6,5,5,4,6,3,7,2,4,4,2,7,2,2,2,4,7,2,1,1,6,5,3,7,7,5,2,7,7,3,6,4,6,5,5,3,3,2,4,6,7,4,4,7,6,3,4,5,5,7,3,6,7
17009,28,28,Brown County,IL,3,5,2,5,2,2,7,6,3,2,6,6,4,1,2,6,4,2,6,2,2,2,2,4,2,3,7,4,3,6,2,6,3,7,3,5,2,3,2,4,3,5,3,3,5,7,2,5,1,6,2,4,4,4,4,1,1,2,2,1,2,5,3,5,3,4,1,2,2,2,1,7,5,1,2,3,4,3,7,2,1,5,1,5,3,1,1,5,4,5,5,2,4,1,2,4,4,4,6,2,2,5,2,3,4,1,5,2,2,2,2,6,3,4,2,6,1,3,4,4,4,2,2,5,1
17011,154,142,Bureau County,IL,3,5,2,6,3,3,7,7,4,2,3,5,7,7,6,6,4,4,5,3,3,3,4,7,3,7,4,4,5,7,4,5,4,7,3,6,6,4,3,4,5,5,4,2,6,4,4,6,3,7,5,6,6,3,6,1,3,6,4,6,2,6,3,7,3,4,3,2,2,3,1,2,6,5,4,7,6,4,7,4,1,6,1,6,5,5,4,5,4,4,2,1,5,6,3,6,5,5,3,4,4,6,4,4,4,5,6,5,4,2,5,5,6,7,3,7,6,3,4,7,4,5,5,6,7
17013,9,13,Calhoun County,IL,1,5,3,7,6,4,5,6,5,2,5,7,5,3,6,6,2,3,3,4,4,3,3,5,5,6,6,4,4,6,3,6,5,5,6,3,4,3,3,2,3,5,3,3,5,5,3,4,2,6,3,4,4,5,6,1,1,2,2,1,2,4,4,5,3,4,3,6,5,6,1,7,2,2,2,3,4,1,7,2,3,7,1,3,1,2,1,5,1,2,7,2,1,4,3,2,6,2,5,3,4,6,3,5,2,1,6,5,3,2,6,5,6,4,6,5,6,5,3,6,5,3,1,5,3
17015,28,38,Carroll County,IL,3,5,4,5,3,3,7,7,3,2,2,3,7,2,7,6,4,2,5,2,2,2,2,6,2,7,7,3,3,7,4,5,4,5,5,5,5,5,2,3,2,6,2,2,5,4,3,6,3,7,2,5,5,3,6,1,5,6,5,6,2,6,2,7,2,4,2,7,2,3,1,2,7,5,4,7,6,1,7,5,3,7,1,7,2,4,7,4,2,3,5,2,3,6,6,6,5,4,3,2,2,6,4,5,3,3,7,7,3,2,4,7,7,4,2,7,2,4,5,6,5,4,7,6,7
17017,85,76,Cass County,IL,3,5,4,6,3,2,7,7,4,2,2,6,4,1,2,7,5,2,3,2,3,3,3,5,3,4,7,4,3,6,3,6,4,6,3,2,3,3,2,4,3,4,3,2,5,6,3,5,2,6,2,4,4,3,5,1,4,2,4,6,2,5,3,5,3,4,1,2,4,3,1,3,5,6,6,3,6,3,7,4,2,7,1,6,3,2,1,3,1,4,2,3,6,4,5,5,5,2,6,2,2,6,3,3,5,3,6,2,3,2,3,7,5,4,2,7,2,4,3,5,4,2,6,5,7
17019,282,297,Champaign County,IL,1,3,3,7,6,5,5,7,5,2,5,6,5,7,7,7,7,6,4,3,5,6,5,7,5,7,5,7,7,7,6,4,6,7,7,5,6,7,4,5,6,7,6,3,5,7,6,6,5,7,6,3,7,3,2,1,6,2,5,7,2,1,3,6,3,4,3,4,2,4,1,5,4,5,4,3,3,6,6,3,7,5,4,7,5,5,5,6,2,7,1,5,6,7,4,2,1,7,2,6,7,6,6,4,7,7,6,5,4,2,6,6,7,3,4,7,5,2,2,6,5,6,3,5,7
17021,130,149,Christian County,IL,3,4,4,6,4,2,4,7,4,2,5,6,7,6,4,7,5,6,3,3,3,4,4,5,4,5,5,5,4,7,5,6,5,7,4,3,5,6,5,5,4,6,6,2,5,3,6,5,3,6,7,4,5,3,5,4,6,6,5,6,2,3,3,5,3,4,3,5,4,4,3,2,4,2,1,4,5,2,6,3,5,7,3,6,3,4,5,5,4,4,2,2,2,5,3,4,5,5,5,7,6,7,4,3,6,5,7,4,4,2,6,6,4,4,3,7,4,2,2,2,4,3,2,5,7
17023,56,60,Clark County,IL,3,1,3,5,3,2,3,6,4,2,3,6,3,2,5,6,3,3,4,3,3,3,3,5,3,4,3,4,3,6,4,2,4,6,6,3,5,3,4,3,3,7,2,4,5,7,4,7,2,7,2,3,6,4,6,1,4,7,5,6,2,1,3,6,4,4,1,1,1,2,3,5,5,5,3,7,7,5,6,7,2,4,1,7,5,2,3,4,2,3,4,2,1,4,3,5,5,2,2,3,3,6,3,4,4,3,6,2,2,2,3,4,5,3,4,7,5,5,2,4,5,3,3,5,6
17025,54,55,Clay County,IL,3,3,5,5,3,2,2,6,2,2,3,7,3,2,2,6,3,2,2,3,4,2,2,5,2,7,2,4,6,6,4,6,2,5,3,2,4,4,4,2,3,6,5,4,5,5,3,5,4,7,2,3,6,3,6,7,6,2,3,5,2,1,4,5,4,4,1,2,5,3,3,7,4,1,1,4,7,3,5,6,6,3,4,7,1,2,1,6,2,2,3,3,1,3,4,4,3,1,4,2,2,5,3,2,4,3,6,2,2,2,3,4,3,4,5,7,2,4,2,3,4,2,3,4,3
17027,112,110,Clinton County,IL,1,3,3,7,3,3,3,5,5,4,3,7,6,2,5,6,3,2,3,4,3,3,3,5,5,7,4,4,3,6,3,6,4,7,5,4,4,3,3,3,3,5,5,3,5,5,4,5,6,6,2,4,4,3,5,6,7,6,6,6,2,1,4,5,4,4,2,7,3,6,3,5,7,4,2,5,4,2,7,6,6,6,4,7,1,2,3,7,5,2,2,1,3,4,1,5,6,3,5,3,4,5,3,4,4,5,5,4,3,2,7,6,4,3,5,7,4,3,2,5,4,5,4,4,4
17029,94,85,Coles County,IL,2,1,3,7,5,4,4,7,3,2,4,6,5,2,7,7,7,5,7,3,5,5,5,6,4,7,4,6,6,7,5,4,3,6,5,3,5,6,7,4,6,6,4,4,6,5,5,6,4,7,3,3,6,4,2,6,4,6,4,7,2,1,3,6,3,4,2,3,3,4,1,4,3,1,3,3,5,3,7,6,4,6,6,7,5,7,5,3,3,7,2,6,4,5,4,2,2,7,4,2,3,4,6,3,6,6,5,4,4,2,5,6,6,5,4,7,4,5,2,7,4,4,5,5,3
17031,21791,22802,Cook County,IL,1,3,4,7,7,7,7,7,6,1,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,3,6,7,7,7,7,7,7,7,7,7,7,7,5,6,7,7,7,7,7,7,7,3,1,7,7,7,7,7,2,5,4,7,4,5,7,7,2,6,3,3,1,2,2,3,4,4,6,2,7,4,5,4,3,4,7,6,2,7,1,4,7,4,6,2,2,7,1,7,7,7,7,7,7,7,7,7,6,7,7,7,7,7,3,4,5,1,4,3,6,7,2,6,7
17033,86,85,Crawford County,IL,3,1,7,6,3,2,2,6,5,2,7,6,4,7,4,7,5,6,4,4,7,4,3,5,4,5,5,5,4,6,6,3,5,7,4,5,4,5,5,5,4,7,7,4,4,6,6,6,2,7,7,3,6,4,6,1,6,2,4,6,2,1,4,5,4,4,1,4,4,3,3,4,4,6,5,7,7,1,7,4,4,5,5,7,5,5,3,1,1,2,4,3,3,4,4,5,2,2,2,7,6,7,4,5,5,4,7,2,2,2,4,5,3,4,6,7,4,5,2,6,5,2,5,5,5
17035,23,46,Cumberland County,IL,4,1,5,4,2,2,2,6,3,2,2,6,3,2,5,6,2,2,5,3,2,2,2,5,2,3,2,3,2,6,2,5,3,5,2,2,4,2,2,2,2,5,2,2,6,6,3,5,2,7,2,3,6,4,7,5,3,2,3,5,2,1,3,5,4,4,1,5,1,3,3,5,6,1,2,3,6,6,5,3,1,2,5,7,4,1,1,5,3,1,4,2,1,4,4,5,7,1,4,2,2,6,2,2,2,2,6,2,2,2,4,4,4,3,2,7,2,4,2,4,5,4,2,5,3
17037,467,502,DeKalb County,IL,1,4,6,7,5,5,6,7,5,2,4,4,7,4,6,7,5,5,5,6,5,5,5,7,5,7,6,7,6,7,5,4,4,7,6,4,6,6,5,6,6,7,3,2,6,7,6,6,7,7,4,5,4,3,3,1,5,2,6,7,2,6,3,7,3,4,6,6,2,4,1,6,7,4,3,7,5,3,7,3,7,4,3,6,4,5,6,5,3,7,1,3,6,7,5,4,5,7,2,4,5,4,6,4,7,6,5,6,4,2,6,7,7,3,4,7,4,2,3,4,5,7,2,6,7
17039,69,84,De Witt County,IL,3,4,7,6,5,3,3,7,5,2,3,6,6,4,5,7,4,4,3,3,3,5,3,6,3,4,3,5,4,7,7,4,7,6,5,3,7,4,3,3,4,6,3,3,5,6,4,6,2,7,4,3,6,3,5,1,5,6,5,6,2,4,3,6,3,4,5,5,4,5,1,5,4,1,1,3,6,5,6,5,2,7,6,6,5,3,3,6,2,4,2,2,1,6,4,5,6,5,4,4,4,6,3,3,5,3,6,6,5,2,6,6,5,5,2,7,3,2,3,4,4,4,2,5,7
17041,34,37,Douglas County,IL,3,1,2,5,5,2,3,7,5,2,5,6,4,5,7,6,3,2,5,3,2,2,2,5,3,7,2,4,6,7,4,3,4,5,6,3,5,4,5,2,6,5,2,2,5,6,3,6,5,7,2,3,6,4,5,1,6,2,5,6,2,1,3,6,3,4,2,3,2,4,1,4,6,2,3,3,7,6,6,5,1,5,3,7,7,3,5,1,5,3,1,1,6,4,1,6,5,4,4,2,3,5,3,3,4,3,6,4,4,2,5,6,6,3,2,7,5,4,2,6,5,4,5,5,3
17043,6010,6298,DuPage County,IL,1,3,4,7,7,7,7,7,6,2,6,6,7,6,6,7,7,7,6,7,6,7,6,7,6,7,7,7,7,7,7,3,7,7,7,6,7,7,7,7,7,7,7,6,5,7,7,7,7,7,7,7,7,3,1,1,7,7,7,7,2,5,4,7,4,5,7,7,2,6,3,3,1,2,4,7,3,3,6,3,7,2,3,6,5,6,7,7,1,4,1,1,7,7,1,7,5,7,1,7,7,7,7,7,7,7,7,7,6,2,7,7,7,6,4,3,5,1,3,6,5,7,3,6,5
17045,40,51,Edgar County,IL,3,1,2,6,4,3,6,7,4,2,3,6,4,7,6,7,6,6,4,4,3,4,4,6,3,7,5,5,4,7,4,4,5,6,5,3,5,6,5,3,5,5,4,3,6,6,5,7,2,7,2,3,6,4,6,6,2,6,3,6,2,1,3,6,4,4,2,2,2,2,1,2,3,1,1,3,7,2,7,2,1,5,6,7,5,5,7,6,2,4,3,3,1,5,3,6,4,4,2,3,4,6,4,4,4,3,6,3,3,2,4,5,6,2,4,7,6,4,2,3,5,2,4,5,5
17047,34,38,Edwards County,IL,4,1,4,5,5,2,3,6,4,2,3,6,3,3,4,6,2,2,4,4,7,2,2,5,2,3,2,3,4,5,2,5,5,6,2,3,4,4,2,2,3,7,2,3,5,5,3,5,1,7,1,4,7,4,6,5,5,2,4,5,2,1,4,5,4,4,3,5,4,5,3,7,6,1,2,4,5,1,7,2,4,1,1,6,2,4,1,5,1,1,3,2,1,5,2,4,4,2,3,2,2,7,2,6,3,1,7,2,2,2,6,7,3,5,2,6,2,5,2,4,5,2,2,4,3
17049,181,169,Effingham County,IL,3,1,4,6,4,3,2,6,4,2,4,6,5,6,3,7,4,5,4,2,3,3,3,6,3,4,4,5,5,6,4,6,3,5,3,3,5,4,5,4,5,4,5,4,5,7,5,5,3,7,6,2,6,3,6,6,5,6,5,7,2,1,4,5,4,4,1,2,5,3,3,1,7,1,2,4,5,7,6,6,3,7,6,7,5,7,7,3,6,4,2,2,2,6,3,6,1,6,4,6,5,5,5,3,4,5,6,1,2,2,2,5,4,5,3,7,3,3,2,3,4,5,5,4,6
17051,36,55,Fayette County,IL,3,3,6,5,3,2,3,6,3,2,3,7,7,1,5,6,3,2,2,2,3,2,3,5,2,4,2,3,3,6,3,6,3,5,2,2,4,3,3,2,2,4,3,3,5,6,3,5,2,6,1,3,4,3,6,6,5,2,3,6,2,1,4,5,4,4,1,3,2,3,3,3,6,2,2,7,6,6,5,4,1,2,3,6,2,3,4,1,4,2,3,4,1,2,5,3,4,2,4,2,2,5,3,3,4,4,5,2,2,2,4,4,4,2,3,7,2,3,2,5,4,3,2,4,6
17053,36,38,Ford County,IL,1,3,6,5,3,2,7,7,4,2,2,5,5,6,4,6,3,2,2,2,2,2,3,6,4,3,2,3,3,7,7,2,3,6,2,3,4,3,3,3,2,5,2,2,5,7,3,6,2,7,2,3,4,3,4,1,5,6,4,6,2,3,3,7,3,4,3,5,2,5,1,3,6,4,3,3,6,2,7,7,2,5,4,7,2,5,1,5,6,4,2,1,2,6,1,7,5,4,3,2,3,4,3,2,4,3,4,6,5,2,6,5,6,2,3,7,2,3,3,4,5,4,2,6,7
17055,64,86,Franklin County,IL,2,4,5,6,7,4,5,5,4,2,4,7,5,4,2,7,5,5,3,4,5,5,7,6,7,7,5,5,4,5,5,6,4,7,5,4,5,4,3,7,5,7,7,5,5,7,5,4,7,7,4,4,4,4,2,7,6,2,5,6,2,1,4,4,4,4,2,6,1,5,3,5,4,2,1,4,4,3,6,6,1,7,2,5,6,5,6,7,3,3,3,5,1,3,6,2,5,2,6,3,4,6,5,3,5,5,6,3,2,2,6,5,2,5,3,6,3,4,2,1,4,1,5,4,1
17057,115,112,Fulton County,IL,3,5,5,6,4,3,5,7,4,2,3,6,6,2,4,7,4,4,4,3,4,3,3,5,3,6,6,5,4,7,3,5,5,6,7,7,5,4,3,3,4,6,5,3,5,7,4,5,2,6,2,5,5,3,4,6,5,6,5,6,2,5,3,6,3,4,3,4,4,5,1,4,6,1,2,3,6,3,6,2,2,6,3,1,3,3,4,6,4,4,3,2,1,4,6,5,5,5,5,3,4,7,4,4,5,5,7,6,3,2,6,6,4,2,3,7,3,4,3,5,4,3,3,6,6
17059,18,17,Gallatin County,IL,4,1,3,7,7,2,4,5,4,2,4,7,4,5,5,6,1,2,2,2,7,2,2,5,4,2,3,2,2,5,2,5,4,4,1,6,2,2,2,2,3,4,1,2,6,5,2,4,1,7,1,4,7,4,4,4,6,2,5,5,2,1,4,4,5,5,7,3,2,3,3,5,5,7,5,4,5,1,7,5,3,7,1,1,4,1,6,6,1,1,4,7,1,3,6,3,6,1,5,2,2,5,2,3,2,1,5,4,4,2,4,5,4,5,2,6,3,3,1,1,5,1,6,4,3
17061,38,34,Greene County,IL,3,5,3,7,5,2,6,6,3,2,4,7,5,2,6,6,3,2,2,2,2,2,2,5,2,5,7,3,4,6,2,6,4,5,2,2,4,3,2,3,2,6,2,3,5,7,2,5,1,6,1,5,4,4,4,4,7,2,3,5,2,4,4,5,3,4,1,5,4,5,1,4,5,6,3,4,5,3,6,4,1,3,4,4,3,4,1,6,3,4,3,4,1,4,4,5,6,1,6,2,2,5,2,3,4,3,5,4,3,2,5,6,6,2,2,7,3,5,3,1,5,2,1,5,6
17063,289,351,Grundy County,IL,1,4,2,6,5,5,7,7,6,2,4,5,7,3,7,7,6,3,4,5,5,4,4,7,4,6,6,5,7,7,4,3,5,6,6,6,7,6,5,7,6,7,2,3,5,5,6,6,4,7,3,5,5,3,5,1,5,6,6,7,2,4,4,7,4,4,7,7,2,6,1,5,5,3,2,3,7,7,6,3,5,6,3,5,2,4,7,3,5,5,1,1,5,7,3,5,6,5,2,3,3,7,5,7,5,5,7,7,5,2,7,7,7,4,1,7,3,4,4,6,5,7,4,6,7
17065,11,15,Hamilton County,IL,3,4,2,5,7,2,3,5,5,2,5,7,3,3,3,6,2,2,2,3,5,2,6,5,6,7,2,3,2,5,2,6,2,5,2,3,3,2,2,7,2,5,7,5,6,7,3,4,6,6,1,3,6,4,6,1,5,2,2,5,2,1,4,5,4,4,4,4,3,4,3,5,4,1,1,4,5,1,7,1,6,2,1,2,1,2,1,5,6,1,5,4,2,3,3,3,6,1,5,2,2,4,2,1,3,2,2,3,3,2,5,4,3,4,2,7,2,4,2,1,4,1,3,4,1
17067,40,37,Hancock County,IL,3,6,3,4,2,2,4,6,7,2,7,5,4,7,5,6,3,3,4,2,2,2,2,5,2,3,3,3,4,6,3,4,6,6,5,7,4,3,2,5,2,6,2,2,5,7,2,5,2,5,2,6,4,4,6,6,5,2,4,6,2,5,3,5,3,4,1,3,3,3,1,2,6,3,2,4,6,1,6,7,3,7,1,7,7,5,3,3,7,2,3,2,1,6,3,6,5,1,5,3,3,5,2,4,3,3,5,2,2,2,5,4,3,3,2,7,2,3,4,4,4,3,5,6,7
17069,7,13,Hardin County,IL,4,1,2,7,3,2,7,5,4,2,4,7,6,2,7,6,2,6,2,3,3,2,2,5,5,3,7,3,3,5,2,5,4,6,4,7,7,3,2,5,2,7,2,3,5,7,3,4,2,7,2,5,6,5,5,1,7,2,6,6,2,1,5,4,5,5,7,2,2,2,3,7,2,2,2,2,2,1,7,1,5,5,7,1,1,2,7,7,5,2,6,6,1,2,5,1,5,1,5,4,3,4,2,4,3,1,4,4,3,2,3,6,3,2,3,3,5,4,1,1,5,1,1,4,7
17071,13,16,Henderson County,IL,4,6,2,4,2,2,4,7,7,2,3,5,4,3,4,6,3,2,5,2,2,1,4,5,3,5,2,2,2,7,2,5,2,5,5,4,5,2,3,4,2,6,1,2,5,6,2,5,2,6,2,6,5,3,3,1,6,2,3,6,2,6,4,6,3,4,4,5,5,6,1,5,6,6,5,7,2,3,6,1,1,7,1,6,3,1,1,5,3,2,6,2,1,5,4,2,7,1,5,3,2,6,2,5,2,2,6,4,4,2,7,3,5,3,2,7,2,4,4,4,4,3,4,6,7
17073,126,120,Henry County,IL,1,6,5,6,4,4,7,7,7,2,4,4,7,3,5,7,4,3,6,4,3,3,5,7,3,7,6,5,4,7,4,5,4,6,4,5,5,4,3,5,4,5,3,2,5,6,4,6,3,7,3,7,5,3,4,1,5,6,4,6,2,6,3,7,2,4,2,2,4,4,1,3,7,5,3,7,5,6,6,4,1,6,3,6,5,5,5,6,2,2,1,1,3,6,3,7,5,4,4,3,4,5,4,6,5,5,7,3,3,2,5,7,5,5,3,7,5,3,5,4,5,5,4,6,7
17075,91,75,Iroquois County,IL,3,3,2,5,2,2,7,7,2,2,2,5,4,7,5,6,4,2,2,2,2,2,5,6,7,3,2,4,3,7,5,2,2,5,3,4,3,2,3,5,3,3,2,2,5,5,3,6,2,7,5,2,4,3,5,1,5,6,4,5,2,3,3,7,3,4,5,5,3,5,1,2,6,4,2,7,6,5,6,2,3,7,3,7,3,2,6,1,7,4,3,2,4,4,2,6,5,3,3,2,3,4,3,1,3,4,3,7,6,2,7,5,6,6,2,7,2,2,3,6,5,4,2,6,7
17077,63,73,Jackson County,IL,2,3,2,7,7,5,3,5,7,2,5,7,7,2,3,7,5,4,3,4,5,6,6,6,6,6,6,6,5,6,5,6,6,7,6,3,5,5,4,7,5,6,5,6,5,6,5,4,5,6,3,5,4,4,1,7,7,6,7,6,2,1,4,4,4,5,6,6,3,3,3,3,4,2,2,4,3,1,7,5,6,6,5,6,6,5,5,7,3,7,3,7,6,6,6,1,2,7,6,2,4,6,6,4,6,6,6,3,4,2,4,7,3,5,3,6,3,4,2,6,4,3,3,4,6
17079,46,60,Jasper County,IL,3,1,7,5,3,2,2,6,3,2,5,6,3,2,2,7,3,3,3,4,4,4,3,5,3,5,3,5,4,6,4,5,3,7,2,3,5,4,4,3,4,7,4,6,5,5,4,5,2,7,2,3,7,4,5,1,5,2,2,5,2,1,3,5,4,4,1,5,2,4,3,4,7,1,1,4,6,1,6,1,1,3,5,7,1,1,1,1,5,1,3,2,1,5,2,6,5,2,4,2,3,6,4,3,4,2,7,2,2,2,5,4,3,3,3,7,2,6,2,6,5,3,3,4,3
17081,85,108,Jefferson County,IL,3,7,6,6,7,4,5,5,4,2,6,7,5,7,2,7,4,6,3,4,4,5,6,6,6,7,5,5,5,6,6,6,3,7,5,4,5,6,4,7,5,4,7,6,6,4,6,4,7,6,6,3,4,4,5,1,6,2,4,6,2,1,4,5,4,4,2,6,2,6,3,3,7,3,3,5,3,6,6,4,6,5,6,5,3,7,6,5,4,4,3,4,2,3,4,3,2,6,5,6,6,4,5,2,6,5,4,3,3,2,7,5,3,5,4,6,5,5,2,3,4,3,4,4,1
17083,41,34,Jersey County,IL,1,4,3,7,5,5,4,6,6,5,5,7,7,4,6,6,5,4,4,6,5,4,5,6,6,6,5,5,5,6,4,7,6,7,7,6,5,4,4,3,4,6,5,6,5,5,5,5,2,6,4,6,5,5,6,1,3,2,3,6,2,3,4,5,3,4,4,6,5,5,1,6,4,4,2,7,2,2,7,5,5,6,3,5,4,4,4,6,3,3,3,1,2,5,5,4,7,2,6,4,6,7,5,5,4,4,7,5,3,2,5,6,6,5,7,7,6,5,3,4,6,5,2,5,3
17085,39,35,Jo Daviess County,IL,3,6,5,4,2,3,5,7,6,2,2,3,5,2,7,6,2,2,5,2,2,2,2,5,7,7,4,3,2,7,3,5,3,6,6,6,3,5,2,2,3,4,2,2,5,7,2,6,2,6,3,5,5,4,6,1,4,2,5,6,2,5,2,7,2,4,3,7,3,4,1,4,7,1,2,3,5,5,6,2,3,7,5,7,7,5,7,4,4,3,7,1,2,6,2,6,5,4,3,2,2,4,3,4,2,4,5,7,4,2,4,6,7,5,2,6,2,4,5,5,5,5,6,6,7
17087,25,24,Johnson County,IL,3,1,2,7,5,3,6,5,5,2,4,7,5,2,3,6,2,3,4,3,2,2,5,5,5,3,6,3,3,5,3,5,6,7,7,7,6,3,2,6,3,7,2,3,4,5,4,4,2,6,2,5,5,5,7,7,5,2,4,6,2,1,5,4,5,5,5,3,4,3,3,5,3,2,2,3,2,7,7,5,6,3,7,4,1,1,1,4,5,1,6,3,2,1,6,3,6,2,6,3,3,7,2,6,3,2,7,3,4,2,5,5,3,2,3,4,4,2,1,1,4,3,5,4,4
17089,2636,2806,Kane County,IL,1,4,4,7,6,6,7,7,7,2,6,4,7,6,7,7,7,7,6,7,6,7,6,7,6,7,7,7,7,7,6,3,6,7,7,6,7,7,7,7,7,7,6,5,5,5,7,6,7,7,7,5,5,4,1,4,5,7,7,7,2,6,3,7,3,4,7,7,2,5,1,5,6,3,6,5,5,4,6,1,7,3,4,3,4,4,5,4,2,4,1,1,7,4,3,7,6,6,1,7,7,6,7,6,7,7,7,7,4,2,7,7,7,5,2,7,5,2,3,6,5,7,2,6,7
17091,382,395,Kankakee County,IL,1,3,2,7,5,4,7,7,5,2,5,5,6,7,7,7,7,6,6,4,6,5,7,7,5,6,6,6,7,7,5,2,5,7,7,6,7,7,6,6,6,6,7,3,5,6,6,6,4,7,7,4,4,3,4,6,4,7,5,7,2,4,4,7,4,4,6,6,3,6,3,2,5,6,5,7,5,3,7,2,6,6,5,7,4,5,6,5,3,6,1,3,5,4,5,4,3,6,3,7,7,6,6,6,7,6,7,7,5,2,7,7,6,3,3,7,5,3,3,7,6,6,3,6,7
17093,815,877,Kendall County,IL,1,4,5,7,5,6,7,7,6,2,5,4,7,7,7,7,7,6,6,7,6,6,5,7,5,7,7,7,7,7,6,3,6,7,6,5,7,6,5,6,6,7,6,4,5,5,7,6,6,7,7,6,5,3,6,1,5,6,5,7,2,5,4,7,4,4,7,7,3,5,1,7,6,4,4,3,2,2,6,2,7,2,2,5,3,2,6,3,5,1,1,1,6,7,1,7,7,6,2,7,7,7,6,6,6,6,7,7,5,2,7,7,7,4,2,7,5,4,3,2,5,7,2,6,7
17095,94,96,Knox County,IL,2,6,2,7,6,4,5,7,5,2,6,5,6,7,3,7,6,7,3,3,4,5,4,7,4,6,6,6,6,7,7,5,3,6,4,4,4,6,7,6,6,6,7,3,6,5,7,6,4,6,7,6,6,3,4,1,3,6,4,6,2,6,3,6,2,4,2,5,5,6,1,3,6,2,1,3,4,5,6,6,6,6,4,7,3,7,7,6,2,5,2,3,4,5,5,5,2,6,5,7,7,4,5,4,6,6,5,5,4,2,7,6,4,4,3,7,5,3,3,6,4,3,3,6,7
17097,4175,4472,Lake County,IL,1,3,3,7,6,7,7,7,6,1,6,5,7,6,4,7,7,7,6,7,6,6,7,7,6,7,7,7,7,7,6,4,6,7,7,5,7,7,7,6,7,7,6,6,4,7,7,7,6,7,7,6,5,5,3,6,7,2,7,7,2,6,4,7,4,5,7,7,2,5,3,2,2,2,4,7,3,3,6,2,7,3,4,6,5,6,7,5,1,3,1,1,7,7,3,7,4,7,2,6,7,7,7,5,7,7,7,7,5,7,7,7,7,5,2,5,6,2,4,3,6,7,4,6,7
17099,429,445,La Salle County,IL,2,4,2,7,6,5,6,7,6,2,5,5,7,7,7,7,5,6,6,4,7,4,6,7,4,6,5,6,7,7,5,4,6,7,5,7,7,6,5,7,7,7,7,2,5,7,6,6,7,7,6,7,5,3,4,4,4,7,6,7,2,6,4,7,3,4,7,7,3,5,1,1,6,4,2,3,7,5,7,4,4,7,5,3,4,6,5,6,4,4,2,2,5,5,4,5,3,5,3,6,7,5,6,7,6,6,6,7,5,2,7,6,7,7,3,7,6,3,4,4,4,5,6,6,7
17101,61,51,Lawrence County,IL,3,1,5,6,4,2,2,6,5,2,4,6,4,3,3,7,5,2,4,5,4,4,4,5,4,3,2,5,4,6,5,3,5,7,4,4,5,4,3,4,4,7,2,3,6,5,4,5,2,7,2,4,6,4,5,1,7,6,6,6,2,1,4,5,4,4,2,6,5,6,3,7,5,6,5,7,3,3,7,6,6,6,7,6,2,3,1,5,5,3,3,4,1,5,5,3,5,5,3,3,3,7,4,6,5,3,7,4,3,2,6,4,4,6,4,7,2,6,2,4,6,1,4,4,7
17103,103,109,Lee County,IL,2,5,2,6,4,4,4,7,3,2,2,4,7,3,7,7,5,2,6,3,5,3,4,7,4,3,2,5,4,7,5,4,4,7,6,7,7,4,4,3,4,7,2,2,5,7,4,6,4,7,4,5,5,3,3,1,3,6,4,6,2,6,3,7,3,4,5,5,1,3,1,2,6,6,5,3,7,6,7,3,6,6,5,6,4,6,6,4,4,5,2,1,3,4,4,6,5,5,2,2,2,4,5,7,5,5,4,5,3,2,6,5,7,7,4,7,3,2,4,6,4,5,5,6,7
17105,128,159,Livingston County,IL,2,4,1,6,3,2,7,7,5,2,2,5,6,4,6,7,4,2,3,3,5,3,3,6,3,4,2,5,4,7,3,3,2,7,3,4,5,3,2,5,4,4,3,1,5,7,3,6,2,7,5,4,5,3,4,5,4,6,5,6,2,4,4,7,3,4,4,5,3,6,1,2,5,1,1,4,7,3,6,5,6,7,5,6,2,4,7,5,6,5,1,2,3,4,4,6,3,5,3,2,2,4,4,4,5,5,5,6,5,2,7,6,7,7,3,7,4,2,4,7,5,5,3,6,7
17107,85,99,Logan County,IL,3,4,3,6,6,3,5,7,6,2,3,6,6,3,3,7,6,5,3,3,4,4,4,6,4,3,5,5,4,7,5,5,5,6,6,6,6,4,4,3,4,6,2,2,5,7,4,6,3,7,4,4,5,3,5,1,5,6,4,6,2,4,3,6,3,4,2,4,3,4,1,2,6,4,2,3,6,7,7,3,5,6,7,7,6,3,6,5,3,6,2,2,3,4,5,5,4,5,5,3,3,6,5,7,5,4,6,4,4,2,5,7,5,6,4,7,3,3,3,3,4,4,2,5,7
17109,50,61,McDonough County,IL,2,6,5,6,6,3,2,7,7,2,3,6,5,2,2,7,4,3,5,2,4,4,4,6,4,4,2,5,4,7,5,5,4,7,5,3,5,4,2,4,5,4,4,3,6,6,4,5,4,6,1,5,5,3,3,5,6,2,5,7,2,5,3,5,3,4,2,5,3,5,1,4,6,1,2,7,6,3,6,6,7,5,6,7,6,4,7,6,4,7,2,6,5,7,7,4,2,7,5,2,2,5,4,4,6,5,5,4,4,2,7,5,4,3,3,7,2,3,4,4,4,3,5,6,7
17111,2099,2297,McHenry County,IL,1,4,3,7,6,6,7,7,6,2,5,4,7,6,5,7,7,6,6,7,5,6,6,7,5,7,7,7,7,7,5,3,6,7,6,6,6,6,6,7,7,5,6,5,6,5,7,6,5,7,7,5,5,5,5,1,6,2,7,7,2,6,3,7,3,4,7,6,3,4,3,4,6,6,6,5,4,2,7,2,7,4,3,5,4,3,6,3,3,1,1,1,6,7,2,7,6,5,1,6,7,6,6,4,7,7,6,5,3,2,6,7,7,5,2,7,5,2,3,4,6,7,4,6,7
17113,928,938,McLean County,IL,1,4,3,7,6,6,4,7,3,2,6,6,5,6,2,7,7,6,6,4,6,6,6,7,5,6,5,7,6,7,7,3,5,7,6,3,5,6,4,5,7,3,6,3,6,5,6,6,6,7,7,4,6,3,2,5,5,6,5,7,2,4,3,6,3,4,5,5,4,5,1,2,6,3,1,4,2,7,6,3,6,4,4,7,6,5,5,5,2,7,1,2,5,7,5,6,1,7,4,6,7,4,7,4,7,7,5,6,5,2,7,6,5,5,4,7,4,3,3,4,4,7,3,5,7
17115,603,632,Macon County,IL,1,4,3,7,7,5,5,7,6,2,6,6,7,7,6,7,6,7,6,6,5,5,5,7,5,6,6,6,7,7,7,5,7,7,7,7,6,7,6,6,6,7,7,4,5,6,7,6,5,7,7,3,7,3,1,6,5,6,5,7,2,3,3,6,3,4,3,4,4,4,1,3,4,2,2,3,4,7,6,3,6,5,4,6,5,5,5,6,2,5,2,4,3,5,6,5,1,7,4,7,7,7,6,6,7,6,7,5,4,2,5,7,5,6,4,7,6,2,2,4,4,4,2,5,6
17117,146,136,Macoupin County,IL,1,4,2,6,3,3,3,6,5,2,4,7,7,2,5,7,4,3,3,4,3,3,5,5,6,5,5,4,4,6,3,6,4,7,7,5,4,4,3,3,3,6,3,3,5,6,4,5,2,6,2,7,5,4,5,7,5,6,5,6,2,3,4,5,3,4,1,5,1,3,3,2,6,2,2,4,2,2,6,2,2,6,3,6,3,4,3,4,3,2,3,2,1,5,4,4,6,1,6,3,4,6,3,4,5,5,6,3,2,2,5,4,5,4,4,7,5,4,2,4,4,3,4,5,7
17119,663,752,Madison County,IL,1,4,4,7,6,7,5,6,7,5,7,7,7,6,7,7,7,7,7,7,7,6,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,6,6,7,7,7,7,5,6,7,5,4,7,7,7,6,4,4,5,5,7,6,7,2,1,4,5,4,4,2,6,3,4,3,4,5,4,4,5,5,7,6,4,7,6,3,6,3,6,6,5,3,5,2,2,3,6,4,3,5,5,6,7,7,7,7,6,7,7,7,3,3,2,5,7,4,6,7,7,7,3,2,5,4,5,2,4,6
17121,105,122,Marion County,IL,2,4,3,6,5,3,3,6,3,2,5,7,6,3,2,7,4,4,4,4,4,4,5,5,4,7,3,5,5,6,6,6,5,6,5,3,6,6,5,5,3,7,7,6,5,4,4,5,7,6,3,2,4,3,2,7,6,6,5,6,2,1,4,5,4,4,1,5,2,4,3,4,4,3,3,4,6,7,6,2,3,7,3,6,3,6,6,7,2,3,2,3,2,4,6,4,3,5,5,2,4,4,5,4,6,5,3,2,2,2,6,5,4,5,3,7,3,4,2,5,4,2,4,4,6
17123,78,85,Marshall County,IL,1,5,2,5,3,3,3,7,4,2,2,5,6,7,5,6,4,3,3,4,3,2,3,6,2,4,3,4,6,7,3,4,3,6,5,5,5,4,4,4,6,5,2,2,6,5,4,6,2,7,2,7,6,3,4,1,5,7,3,6,2,6,3,7,3,4,4,4,3,5,1,3,5,5,4,3,7,3,7,3,5,7,1,6,4,2,1,5,5,2,4,1,1,6,2,7,6,2,3,3,3,5,3,3,3,3,5,6,5,2,7,5,7,5,2,7,7,5,4,2,4,5,1,6,7
17125,50,50,Mason County,IL,3,5,4,5,4,2,5,7,5,2,2,6,6,1,4,6,4,3,4,3,2,3,3,5,3,4,6,4,3,7,2,5,4,6,6,7,6,3,2,2,4,7,3,2,6,6,3,5,1,6,1,5,5,3,6,1,6,7,4,6,2,5,3,6,3,4,1,2,2,3,1,5,5,7,7,7,6,2,6,3,2,7,6,6,3,4,1,6,3,3,3,2,1,4,5,5,6,1,5,2,3,7,3,4,4,3,7,2,3,2,3,6,6,2,2,7,2,4,3,5,4,3,6,5,6
17127,39,36,Massac County,IL,3,1,4,7,5,5,7,5,5,2,5,7,6,4,7,7,6,6,4,4,5,5,5,6,7,5,7,5,7,5,6,5,6,6,7,7,7,7,5,6,5,7,4,5,5,6,5,4,5,7,4,6,6,5,7,1,5,6,6,6,2,1,5,4,5,5,5,4,5,4,6,4,4,6,6,3,6,5,7,4,3,3,6,6,3,4,7,6,1,2,3,4,1,3,5,2,5,3,6,5,5,7,5,6,5,3,7,3,3,2,5,7,2,3,5,6,6,4,1,4,5,3,5,4,7
17129,36,52,Menard County,IL,1,5,3,5,2,2,3,7,3,2,3,6,3,2,2,6,4,2,3,2,2,2,5,5,2,3,2,3,2,7,2,6,3,5,3,2,3,2,2,2,2,6,2,2,5,3,3,5,1,6,1,5,5,3,4,1,5,2,5,5,2,5,3,6,3,4,2,4,4,4,1,7,6,5,3,3,5,1,7,1,2,5,5,7,1,2,1,7,5,2,2,2,2,7,2,6,7,5,5,2,2,6,2,3,3,2,6,4,4,2,5,5,5,1,2,7,2,4,3,6,4,6,2,5,7
17131,43,52,Mercer County,IL,1,6,3,5,3,2,4,7,7,2,3,4,7,3,5,6,5,3,5,3,3,2,4,5,2,7,3,4,3,7,2,5,4,5,4,4,6,3,3,3,3,6,2,2,5,7,3,5,2,6,4,7,5,3,7,1,4,2,3,6,2,6,3,6,2,4,3,4,4,4,1,4,6,5,4,3,6,2,6,2,1,6,1,7,3,2,5,4,4,2,2,1,1,6,5,7,7,3,4,3,3,6,2,7,3,3,6,3,3,2,5,4,4,6,2,7,3,4,4,4,5,4,2,6,7
17133,122,106,Monroe County,IL,1,3,4,7,5,6,5,5,6,5,5,7,7,5,7,7,5,5,5,6,5,5,4,6,5,6,6,5,6,6,5,7,6,7,7,6,7,5,5,4,4,7,6,7,5,5,6,4,3,6,5,5,5,4,6,1,6,2,5,7,2,1,4,4,4,4,2,6,2,4,3,4,4,5,3,5,1,2,6,2,6,7,1,5,2,4,7,1,6,2,1,1,2,7,1,6,7,4,6,5,6,7,5,7,4,4,7,4,3,2,6,6,4,5,7,6,6,4,2,3,6,7,3,4,2
17135,67,64,Montgomery County,IL,3,4,4,6,3,2,3,6,4,2,3,7,7,2,3,7,4,3,2,3,3,3,3,5,4,4,3,4,5,6,3,6,4,6,3,2,4,4,4,3,4,6,3,3,5,6,3,5,2,6,2,5,4,3,5,6,4,6,4,5,2,1,4,5,4,4,1,4,2,3,3,3,5,1,2,4,5,3,6,5,2,7,4,5,4,5,6,5,7,3,2,4,1,3,4,4,4,3,5,2,3,6,4,3,5,4,6,3,3,2,4,4,4,4,4,7,2,3,2,3,4,2,5,5,6
17137,87,96,Morgan County,IL,2,5,2,6,4,3,7,6,4,2,3,6,5,1,2,7,6,3,5,3,4,4,4,5,4,5,7,5,6,6,5,6,5,6,4,3,4,6,5,5,5,5,4,4,5,6,4,5,3,6,1,4,4,3,5,5,5,6,3,6,2,4,3,5,3,4,2,5,3,4,1,2,5,4,2,3,3,6,7,4,4,5,6,7,4,6,3,6,5,6,2,2,3,4,5,4,3,6,6,2,2,6,5,6,6,5,6,4,4,2,5,7,5,1,4,7,3,5,3,5,4,4,5,5,4
17139,52,57,Moultrie County,IL,3,3,4,5,5,2,3,7,5,2,3,6,7,3,7,6,3,3,5,3,2,3,2,5,3,4,3,4,3,7,6,5,5,5,4,3,4,4,5,2,3,6,3,2,5,6,3,6,4,7,3,3,5,3,5,1,6,2,3,5,2,1,3,6,4,4,2,5,1,3,1,6,5,1,2,3,6,2,6,5,2,6,7,7,4,5,4,1,7,3,1,1,5,4,1,5,6,3,4,4,4,6,2,2,4,3,6,3,3,2,5,6,7,3,2,7,4,5,2,3,4,4,3,5,7
17141,161,184,Ogle County,IL,2,5,3,6,3,4,5,7,3,2,2,4,7,2,7,6,3,3,6,4,3,3,4,6,3,4,3,4,4,7,4,4,3,5,7,7,5,4,5,4,4,2,2,2,5,4,4,6,3,7,3,4,5,3,6,1,3,6,5,7,2,6,3,7,2,4,2,3,3,3,1,5,6,3,3,4,6,3,7,3,4,6,1,7,6,3,5,4,6,4,1,1,5,5,3,7,5,6,2,3,3,3,4,6,4,5,3,3,3,2,4,5,7,5,3,7,2,2,4,4,5,6,3,6,7
17143,1255,1355,Peoria County,IL,1,5,5,7,6,6,4,7,7,2,5,5,7,7,5,7,7,6,7,5,6,6,5,7,5,6,5,7,7,7,7,4,7,7,7,7,7,7,6,5,7,7,7,4,4,5,7,6,6,7,7,7,6,3,2,4,4,6,6,7,2,6,3,6,3,4,2,4,3,6,1,4,5,5,4,7,3,5,7,3,7,6,6,5,5,7,3,6,2,6,2,4,5,6,5,4,2,7,1,7,7,7,7,6,7,7,7,4,4,2,6,7,6,5,4,7,6,2,4,6,4,5,4,6,7
17145,29,43,Perry County,IL,3,4,4,6,7,3,3,5,6,2,3,7,5,2,2,7,4,3,2,4,3,3,6,5,6,7,6,5,3,6,4,6,4,6,4,2,3,4,3,7,4,5,7,4,5,4,4,4,6,6,4,4,4,4,4,6,6,2,5,6,2,1,4,4,4,4,3,4,4,3,3,3,5,3,2,5,3,1,7,5,3,5,1,4,1,4,6,6,5,2,3,4,2,2,6,2,5,4,6,2,3,6,3,4,5,4,6,2,3,2,5,5,3,6,3,6,2,3,2,2,4,2,2,4,3
17147,44,69,Piatt County,IL,1,3,2,5,4,2,3,7,7,2,3,6,5,4,7,6,3,3,4,3,2,2,2,5,2,3,3,3,3,7,7,4,5,5,5,3,4,3,3,2,3,6,3,1,5,4,4,6,2,7,5,3,6,3,5,1,5,2,4,6,2,1,3,6,3,4,3,4,3,5,1,6,5,3,2,7,6,5,7,2,2,6,4,7,4,3,5,3,1,2,1,1,1,7,1,7,7,2,4,4,4,6,2,3,3,3,6,5,5,2,5,5,6,5,2,7,4,3,2,4,5,5,4,5,7
17149,49,36,Pike County,IL,3,5,3,6,6,2,7,6,4,2,5,7,6,3,7,6,3,2,3,2,2,2,2,4,2,3,7,3,3,6,2,6,5,6,4,5,5,2,2,3,2,3,2,2,5,1,2,5,1,5,2,4,4,4,4,4,5,2,3,5,2,4,4,5,3,4,2,3,5,4,1,2,5,5,2,7,6,6,5,6,4,2,4,7,3,3,1,6,5,3,5,4,1,4,5,5,4,2,6,2,2,5,2,3,3,3,5,3,3,2,4,6,4,3,2,7,5,3,4,4,4,2,5,5,7
17151,6,6,Pope County,IL,4,1,3,7,3,3,7,5,4,2,4,7,6,2,6,6,2,5,3,4,2,2,5,5,6,3,7,3,5,5,2,5,5,7,7,7,7,4,2,6,2,6,2,2,4,7,3,4,4,6,2,5,6,5,2,1,1,2,3,5,2,1,5,4,5,5,6,4,3,3,3,4,2,4,1,3,1,1,7,1,3,1,7,1,1,1,1,7,1,1,7,6,2,3,7,1,7,1,5,4,3,7,2,5,3,1,7,4,3,2,4,5,2,2,3,4,6,3,1,2,5,2,1,4,1
17153,8,11,Pulaski County,IL,4,1,2,5,3,3,3,5,4,2,2,7,4,3,7,6,6,2,3,3,2,2,3,5,5,3,2,3,3,5,7,5,5,7,7,7,5,5,2,3,6,6,2,3,4,6,3,4,2,6,3,4,5,5,6,1,6,2,5,6,2,1,5,4,5,5,5,7,4,5,6,6,3,5,3,4,4,7,7,1,6,3,7,7,2,2,1,7,6,4,5,7,1,2,7,2,7,3,7,2,2,7,2,5,3,2,7,5,4,2,6,6,3,6,3,5,2,4,2,2,4,1,4,4,7
17155,16,25,Putnam County,IL,4,5,3,5,3,3,3,7,5,2,3,4,6,7,7,6,3,3,5,3,3,2,5,6,2,3,3,3,5,7,3,4,4,6,3,6,6,3,3,5,5,5,2,2,5,1,3,6,3,7,2,7,6,3,4,1,1,7,5,6,2,6,3,7,3,4,4,5,4,5,1,7,5,3,3,7,7,1,7,1,3,7,1,7,7,1,1,1,1,1,6,1,5,6,3,6,7,1,3,3,3,6,2,4,2,1,6,7,4,2,6,3,6,6,2,6,6,4,4,5,4,6,3,6,7
17157,58,68,Randolph County,IL,3,3,3,6,7,2,3,5,4,4,3,7,5,2,5,6,4,2,3,3,2,3,3,6,3,4,3,4,3,6,3,6,4,7,6,2,5,3,2,3,3,6,3,3,7,3,3,4,2,6,2,3,5,4,5,5,5,2,5,6,2,1,4,4,4,4,4,3,3,3,3,6,6,1,1,5,4,1,6,6,3,6,5,7,4,4,7,5,4,2,3,2,2,2,4,5,4,3,6,2,3,7,3,5,4,5,7,3,3,2,4,4,3,3,3,7,2,4,2,4,5,3,2,4,7
17159,67,67,Richland County,IL,3,1,6,6,5,3,4,6,4,2,5,6,4,2,3,7,6,4,3,4,4,4,4,6,4,5,3,5,5,7,5,5,5,6,2,3,5,5,5,4,5,7,4,6,5,4,4,5,3,7,2,3,7,3,3,7,5,2,3,6,2,1,4,5,4,4,1,3,4,4,3,5,7,1,1,4,3,2,6,7,2,4,1,5,3,6,6,5,2,4,4,4,1,6,6,4,2,4,4,2,3,7,5,5,5,3,7,2,2,2,5,5,3,4,4,7,3,5,2,3,5,3,4,4,4
17161,394,390,Rock Island Count,IL,1,6,6,7,6,6,7,7,7,2,6,7,7,7,6,7,7,7,7,5,6,6,7,7,5,7,7,7,7,7,7,5,6,6,7,7,7,7,5,7,7,6,7,4,4,4,7,6,7,7,7,7,6,3,2,6,5,6,6,7,2,6,3,6,2,4,2,3,5,4,1,3,5,5,5,7,5,6,7,3,7,6,5,6,4,6,3,6,2,6,1,3,6,5,5,3,3,7,4,7,7,7,7,7,7,7,7,3,4,2,4,7,4,6,5,7,5,3,4,2,5,5,3,6,7
17163,533,565,St. Clair County,IL,1,3,4,7,6,7,6,6,7,6,7,7,7,7,7,7,7,7,6,7,6,6,6,7,7,6,6,7,7,6,7,7,7,7,7,7,7,7,6,7,7,7,7,7,5,5,7,4,5,7,7,7,7,3,4,7,5,6,7,7,2,1,4,5,4,4,3,7,5,6,3,2,4,4,4,5,5,4,6,3,7,6,3,7,3,5,5,7,4,6,2,5,4,5,6,3,5,5,6,7,7,7,7,6,7,7,7,5,4,2,6,7,4,6,7,7,7,5,2,5,5,5,3,4,1
17165,53,56,Saline County,IL,3,3,5,7,6,3,5,5,4,2,4,7,4,2,4,7,5,5,2,3,7,5,6,6,6,6,5,5,5,5,4,5,3,6,2,5,4,5,4,7,5,6,4,5,4,3,4,4,6,6,1,4,6,4,3,1,6,2,4,6,2,1,4,5,5,4,4,4,3,4,3,3,3,4,1,7,3,1,7,6,6,4,3,5,5,7,5,7,2,4,4,5,2,3,6,2,3,4,6,2,3,5,5,2,6,4,4,4,4,2,4,5,3,4,3,6,3,5,1,1,4,1,3,4,3
17167,701,729,Sangamon County,IL,1,4,2,7,6,5,5,7,4,2,5,6,5,5,4,7,6,6,6,3,5,5,5,6,5,6,5,6,6,7,6,6,6,7,6,3,6,6,5,5,6,7,5,3,4,4,6,5,4,6,5,5,6,3,3,6,6,2,5,7,2,4,3,5,3,4,3,6,4,4,1,2,5,3,2,3,2,6,6,3,7,6,7,7,5,7,6,6,2,6,2,2,3,7,2,4,1,6,1,5,6,7,6,4,7,7,7,5,4,2,6,6,4,3,5,7,4,2,3,3,4,6,5,5,7
17169,36,28,Schuyler County,IL,3,5,2,4,2,2,7,6,4,2,3,6,3,1,2,6,2,2,4,2,2,2,2,5,2,3,7,3,2,6,2,5,3,6,2,3,4,3,2,3,2,7,2,3,4,7,2,5,1,6,1,4,4,3,5,1,6,6,1,5,2,5,3,5,3,4,1,1,4,3,1,1,5,2,1,4,7,5,5,7,1,5,6,6,3,3,6,1,1,2,3,3,1,6,4,5,6,1,5,2,2,5,2,2,3,1,5,2,2,2,3,6,4,2,2,6,1,3,4,4,4,2,3,5,7
17171,17,31,Scott County,IL,4,5,1,6,4,2,7,6,4,2,2,6,4,1,6,6,2,1,3,2,2,1,1,5,1,2,7,2,2,6,2,6,4,5,2,2,4,2,2,5,1,4,1,2,5,3,2,5,1,6,1,4,4,4,6,1,1,2,2,6,2,4,3,5,3,4,2,3,4,3,1,7,4,6,4,3,2,7,7,5,1,6,1,7,2,1,1,7,3,3,3,2,1,5,3,5,7,1,6,1,1,5,1,3,2,1,5,3,4,2,4,5,5,2,2,6,2,3,3,2,4,3,2,5,6
17173,50,71,Shelby County,IL,3,3,2,5,4,2,3,6,4,2,2,6,5,3,5,6,3,3,4,2,2,2,2,5,2,4,3,3,3,6,4,6,4,6,3,3,4,4,3,2,3,4,3,2,5,4,3,5,3,7,2,3,5,3,5,5,5,6,4,6,2,1,4,5,4,4,1,4,4,3,3,4,6,1,1,5,4,2,6,3,5,2,1,7,3,2,3,4,5,1,3,2,1,5,2,5,6,3,4,3,3,5,2,2,3,4,5,2,3,2,3,6,5,2,2,7,2,2,2,3,4,4,4,5,7
17175,29,24,Stark County,IL,1,5,2,5,3,2,4,7,4,2,2,4,6,6,5,6,3,3,3,3,2,2,2,6,2,3,4,3,4,7,2,5,3,7,5,4,4,3,3,2,4,4,2,2,5,1,4,6,1,7,2,6,6,3,6,1,5,2,3,6,2,6,3,6,3,4,3,5,4,6,1,5,6,1,2,3,7,1,7,2,1,3,1,2,1,3,6,1,5,3,2,2,1,6,6,7,7,1,3,3,3,5,2,3,2,1,5,5,5,2,7,4,5,5,2,7,6,4,4,4,4,3,2,6,7
17177,91,93,Stephenson County,IL,2,5,6,7,5,4,3,7,2,2,5,3,7,6,5,7,5,6,5,4,4,5,4,7,4,5,5,6,5,7,5,4,4,6,6,5,6,6,5,5,5,6,6,4,5,4,6,6,4,7,7,4,5,4,5,1,5,6,5,6,2,6,2,7,2,4,2,3,4,4,1,3,7,1,2,3,7,3,7,4,5,5,4,7,5,5,6,5,2,4,3,2,3,6,5,6,3,5,2,6,6,3,6,4,6,5,4,4,4,2,4,5,7,6,4,7,4,5,5,3,5,5,2,6,7
17179,883,986,Tazewell County,IL,1,5,6,7,5,5,6,7,6,2,4,6,7,4,5,7,6,6,6,5,5,5,5,7,5,6,5,6,7,7,6,5,6,6,7,7,7,6,5,4,6,7,4,4,4,5,6,6,4,7,4,7,6,3,2,1,6,7,6,7,2,5,3,6,3,4,2,4,3,4,1,5,6,6,6,3,3,5,7,5,5,5,3,6,4,3,3,3,2,4,1,1,2,6,2,5,6,6,5,4,5,7,6,6,6,7,7,4,4,2,6,7,6,6,4,7,6,2,3,4,3,6,3,6,7
17181,23,25,Union County,IL,3,3,2,6,6,3,5,5,5,2,4,7,4,2,5,6,4,4,3,4,4,3,4,6,4,4,5,4,6,6,4,6,5,6,7,7,5,4,3,5,4,6,3,6,5,1,4,4,2,6,2,4,4,4,7,4,5,2,4,6,2,1,5,4,5,5,4,3,3,3,3,3,5,4,4,7,4,4,7,4,6,6,1,4,2,5,5,7,7,4,2,5,3,3,7,2,5,5,7,3,3,6,3,4,4,3,6,3,3,2,3,5,3,3,4,5,3,4,2,5,4,2,3,4,7
17183,187,199,Vermilion County,IL,1,1,2,6,4,3,2,7,3,2,5,6,5,7,6,7,6,6,4,3,3,4,6,6,4,7,5,5,5,7,7,2,6,6,4,7,5,5,4,5,5,7,6,6,7,1,6,6,3,7,7,2,5,3,3,6,5,6,6,7,2,1,3,6,3,4,3,5,2,5,1,5,5,1,2,7,6,2,6,3,5,6,2,7,3,3,5,6,4,5,2,4,4,4,6,4,2,6,2,6,6,7,5,4,6,6,7,6,4,2,6,6,7,6,3,7,6,3,2,5,5,2,2,5,7
17185,72,57,Wabash County,IL,3,1,5,6,5,3,3,6,5,2,3,6,4,3,3,7,5,3,5,4,6,4,3,5,4,5,3,5,4,6,5,4,6,7,3,4,6,4,4,4,4,7,4,4,5,5,4,5,2,7,2,4,7,3,4,1,7,2,5,5,2,1,4,5,4,4,2,7,3,6,3,4,4,1,2,4,2,1,7,4,1,5,4,7,2,3,4,6,2,4,3,5,2,5,5,4,5,5,3,2,3,7,4,7,4,2,7,5,3,2,6,5,4,5,5,6,2,4,2,5,6,2,2,4,7
17187,31,36,Warren County,IL,3,6,5,6,4,3,3,7,7,2,3,5,5,3,3,7,6,4,5,2,3,4,4,6,4,6,3,5,4,7,4,5,3,7,5,2,3,4,4,3,4,6,4,3,5,7,4,5,6,6,3,6,5,3,5,1,4,6,4,5,2,6,3,6,3,4,3,4,4,3,1,6,6,2,1,3,5,7,6,1,1,6,7,6,3,3,3,7,4,4,2,2,3,5,5,6,5,5,5,4,5,5,4,4,5,3,5,4,4,2,6,5,4,3,3,7,3,5,3,2,4,3,2,6,7
17189,34,40,Washington County,IL,3,4,3,5,7,2,2,5,5,2,2,7,5,2,2,6,3,2,3,3,2,2,3,5,4,7,2,3,3,6,2,6,3,6,2,2,3,2,3,5,2,4,7,3,5,3,3,4,4,6,1,3,4,4,7,7,5,2,4,6,2,1,4,5,4,4,2,6,4,5,3,4,7,5,3,7,6,6,7,1,5,7,4,7,2,3,3,1,4,1,3,1,3,4,1,5,5,2,6,2,2,6,2,4,3,3,6,3,3,2,6,4,3,3,3,7,2,4,2,4,4,4,4,4,2
17191,54,54,Wayne County,IL,3,4,2,6,3,2,2,5,3,2,4,7,6,2,3,6,4,3,3,3,3,3,3,5,4,7,2,4,3,6,3,6,3,7,4,3,6,3,3,6,3,7,7,5,5,4,3,5,3,7,1,3,6,4,6,6,6,2,2,5,2,1,4,5,4,4,2,5,4,5,3,2,4,1,1,4,6,5,4,3,6,3,4,5,3,4,3,7,1,2,3,4,1,3,5,4,4,4,5,2,2,6,3,4,4,3,6,2,3,2,6,4,3,4,3,7,2,4,2,2,4,2,4,4,7
17193,58,41,White County,IL,3,3,5,6,7,2,4,5,5,2,4,7,3,5,5,7,3,3,3,3,7,4,3,5,3,6,3,5,4,5,4,5,5,6,3,3,5,4,3,3,4,6,4,4,5,3,3,4,2,7,1,4,7,4,5,1,6,2,4,5,2,1,4,5,4,4,6,4,3,3,3,6,4,6,4,5,5,3,7,6,4,5,4,4,1,5,6,6,5,3,4,4,1,3,4,3,5,2,4,2,2,6,3,5,5,3,7,3,3,2,4,6,3,6,3,7,4,5,2,3,5,1,4,4,2
17195,187,196,Whiteside County,IL,2,5,5,6,4,4,7,7,5,2,4,4,7,2,7,7,6,4,7,3,4,4,5,7,4,7,7,5,5,7,6,5,5,6,7,7,7,5,3,5,5,6,4,3,5,4,5,6,7,7,3,6,5,3,6,1,5,7,5,6,2,6,3,7,2,4,2,2,2,3,1,6,7,7,7,7,7,6,7,3,6,6,6,5,3,5,4,5,1,4,1,2,5,4,3,6,3,5,3,3,4,6,5,7,6,6,7,3,3,2,5,7,7,6,3,7,3,3,5,6,5,4,4,6,3
17197,4132,4419,Will County,IL,1,3,3,7,7,6,7,7,6,2,6,5,7,6,7,7,7,6,7,7,6,6,6,7,6,7,7,7,7,7,6,2,6,7,7,6,7,7,6,7,7,7,6,5,4,7,7,7,7,7,6,7,5,3,4,4,6,6,7,7,2,4,4,7,4,5,7,7,2,6,3,2,4,4,4,4,4,4,6,1,7,4,3,5,3,2,6,4,3,1,1,1,6,7,3,7,7,6,1,6,6,7,6,7,7,7,7,7,6,2,7,7,7,6,2,7,4,2,4,5,6,7,2,6,7
17199,128,185,Williamson County,IL,2,3,2,7,7,5,3,5,5,2,5,7,5,6,2,7,5,6,3,4,5,5,7,6,7,6,6,6,5,6,6,6,5,7,6,6,5,5,4,7,5,6,6,6,4,7,6,4,7,6,7,5,4,4,5,7,7,2,6,7,2,1,5,5,5,4,3,4,2,2,3,2,2,1,1,3,4,3,6,5,1,5,3,4,5,6,5,7,4,5,3,5,2,4,6,2,4,4,6,6,6,6,6,3,6,6,7,3,3,2,2,6,3,7,4,5,4,3,2,2,4,3,4,4,4
17201,1107,1138,Winnebago County,IL,1,5,6,7,6,6,6,7,6,2,6,4,7,6,6,7,6,7,7,6,5,6,7,7,6,6,6,7,7,7,7,5,6,7,7,7,7,7,7,7,7,7,7,5,4,3,7,6,6,7,7,4,6,3,3,1,6,2,7,7,2,6,3,7,2,4,3,3,5,4,1,3,6,4,5,4,7,4,7,2,6,4,5,7,5,6,4,6,3,6,1,2,6,5,5,5,2,7,1,7,7,3,7,5,7,7,5,4,3,2,4,7,7,5,5,7,6,3,4,4,5,6,4,6,7
17203,285,297,Woodford County,IL,1,5,3,6,3,4,4,7,5,2,3,5,6,6,4,6,4,4,4,4,4,3,3,6,3,4,4,4,5,7,4,4,5,6,6,7,5,4,4,2,4,6,2,2,5,7,4,6,2,7,2,6,6,3,7,6,4,6,5,7,2,5,3,6,3,4,5,6,3,5,1,4,6,4,2,7,5,5,7,4,1,3,3,1,4,1,1,5,3,1,1,1,2,7,1,7,7,3,4,3,3,6,4,4,3,5,6,6,5,2,7,6,7,5,2,7,6,3,4,6,4,6,1,6,7
18001,85,101,Adams County,IN,3,1,7,6,4,4,5,7,5,4,5,6,4,5,6,7,5,6,6,6,5,6,7,6,7,5,5,6,6,6,7,3,6,6,5,6,5,6,7,7,7,2,5,6,4,1,5,7,7,7,5,5,6,4,6,1,7,7,6,1,2,1,2,7,3,6,5,3,4,6,1,5,7,2,5,5,7,4,2,2,3,4,4,3,3,2,1,4,5,3,1,2,7,4,1,7,4,6,3,6,6,3,5,5,5,5,3,7,6,2,7,7,7,7,5,7,4,7,3,4,4,5,3,5,4
18003,1212,1214,Allen County,IN,1,1,7,7,6,6,5,7,7,4,6,6,6,6,6,7,6,7,7,7,7,7,7,7,7,6,6,7,6,6,7,4,6,6,6,7,7,6,7,7,6,2,7,5,4,1,6,7,7,7,7,7,7,3,3,6,7,6,5,1,2,1,3,7,3,6,4,4,5,6,1,3,6,3,5,5,5,6,4,3,6,5,5,3,5,5,4,5,2,6,2,2,5,6,3,6,1,7,4,7,7,3,7,6,7,7,4,6,6,2,6,7,7,7,7,7,6,2,3,6,5,6,3,5,6
18005,229,242,Bartholomew Count,IN,1,1,6,7,5,5,4,6,7,4,4,5,5,6,2,7,5,6,7,4,5,6,4,6,5,6,5,6,6,6,5,3,6,6,7,7,6,6,7,5,5,2,6,4,4,4,5,6,5,7,6,7,6,4,5,1,6,6,6,1,2,1,3,6,3,5,3,6,4,6,1,3,6,6,6,5,5,4,4,3,5,3,3,5,4,4,4,5,3,5,2,1,4,6,2,5,2,6,2,6,6,4,6,5,6,6,4,5,5,2,6,7,7,4,6,7,5,6,2,5,5,6,4,4,3
18007,47,50,Benton County,IN,1,1,3,5,2,2,3,7,3,2,2,5,3,7,5,6,2,2,3,3,2,2,2,6,4,3,3,3,3,7,2,2,3,6,2,6,2,2,4,3,2,4,2,3,4,3,7,7,2,7,2,3,4,3,5,1,3,6,3,1,2,1,3,7,4,4,3,5,2,4,1,5,5,1,1,3,6,5,4,1,5,5,6,2,2,2,1,1,4,4,2,1,3,7,1,7,6,4,3,3,3,4,2,2,3,2,4,6,4,2,7,3,7,2,4,7,5,3,2,5,5,4,1,6,3
18009,28,35,Blackford County,IN,3,1,5,7,7,4,7,7,4,2,4,6,6,5,4,7,4,6,5,4,5,6,5,6,7,5,5,6,5,6,5,4,5,7,4,5,4,5,7,6,5,6,5,4,4,4,5,7,7,7,6,5,6,4,5,1,4,7,7,1,2,1,3,7,3,6,3,3,5,6,1,4,7,1,2,3,6,1,2,2,3,7,4,5,2,2,6,1,3,2,2,2,1,5,3,6,6,3,3,6,6,3,5,6,5,3,3,5,5,2,6,6,7,7,6,6,4,7,3,2,4,3,2,5,5
18011,258,228,Boone County,IN,1,1,7,7,5,5,6,7,5,4,5,6,5,6,7,7,6,6,5,5,5,6,5,7,5,5,6,6,5,6,6,3,5,6,5,6,6,5,6,5,5,3,5,4,4,4,7,6,6,7,5,6,6,4,6,1,7,2,5,1,2,1,3,7,3,5,5,7,2,4,1,3,6,2,3,3,5,6,4,5,1,3,4,5,4,4,5,1,5,2,1,1,2,7,1,7,7,5,3,6,6,5,6,4,6,5,5,6,4,2,6,6,7,1,6,7,7,6,3,4,5,7,1,5,3
18013,12,9,Brown County,IN,1,1,5,6,3,4,6,6,7,4,3,6,3,4,5,6,4,3,4,5,4,4,3,5,3,3,3,5,4,6,4,2,4,6,4,4,4,3,5,2,4,7,3,4,3,5,4,6,3,7,4,6,6,3,4,1,7,2,6,1,2,1,3,6,3,5,2,6,6,7,3,6,3,2,3,3,1,1,2,2,6,4,1,4,7,2,1,1,1,1,6,2,2,6,2,4,7,1,3,5,4,5,3,4,4,3,5,6,6,2,7,6,4,4,5,3,5,4,3,1,5,6,7,4,5
18015,55,52,Carroll County,IN,1,1,4,6,4,4,5,7,4,2,3,6,5,4,5,6,6,4,5,5,4,4,3,6,3,4,6,5,4,7,5,3,5,5,6,6,6,4,5,4,4,5,4,4,4,4,7,7,4,7,4,3,6,3,7,1,6,2,4,1,2,1,3,7,4,5,4,5,3,4,1,3,7,1,2,3,5,1,4,2,4,5,3,3,1,1,3,1,2,2,4,1,3,5,2,6,6,2,3,7,5,4,4,3,4,3,5,5,4,2,6,5,7,3,6,7,6,7,3,4,5,5,3,6,3
18017,181,174,Cass County,IN,2,1,3,7,7,4,4,7,6,2,4,7,6,6,6,7,5,5,6,4,5,6,5,6,5,5,5,6,6,7,6,2,6,6,7,5,7,6,7,5,5,5,6,5,4,7,5,7,6,7,6,4,6,3,6,5,5,7,4,1,2,1,3,7,3,5,4,7,3,5,1,4,7,5,4,3,6,3,3,3,6,6,5,4,4,4,4,4,2,5,1,1,5,5,2,6,3,5,4,7,7,4,6,6,6,5,4,6,4,2,7,6,7,6,6,7,4,7,3,6,4,4,3,6,5
18019,219,226,Clark County,IN,1,1,7,7,7,7,7,7,7,2,6,6,7,6,5,7,7,7,7,7,7,7,6,7,6,6,7,7,7,6,7,6,6,7,7,7,7,7,7,7,6,7,6,6,6,5,7,5,7,7,7,7,7,3,1,4,4,2,7,1,2,1,3,5,4,5,5,7,5,7,1,5,4,3,5,5,5,4,5,3,6,4,4,2,3,3,5,6,1,6,1,2,2,4,3,3,6,7,3,7,7,7,7,7,7,6,7,7,4,2,7,7,4,4,7,5,6,7,2,4,6,5,2,4,6
18021,84,78,Clay County,IN,1,1,6,6,3,4,3,7,5,2,5,6,5,5,5,7,5,5,5,4,5,6,4,6,4,5,4,6,5,6,5,2,5,6,5,4,6,4,5,4,5,5,5,6,4,3,4,7,5,7,5,7,6,4,5,1,7,6,6,1,2,1,3,6,4,4,2,3,2,6,3,4,6,1,2,3,4,3,4,3,4,5,1,6,3,4,3,6,2,2,2,2,1,5,4,5,6,5,2,5,5,6,4,5,5,4,6,4,3,2,6,5,5,4,6,7,6,7,3,2,5,4,4,5,3
18023,133,186,Clinton County,IN,3,1,6,7,4,5,7,7,3,4,5,6,4,5,6,7,5,6,6,5,5,6,4,6,4,5,7,6,6,7,7,4,5,6,4,6,5,5,6,6,5,2,5,6,4,4,7,7,6,7,5,4,6,4,5,1,6,7,5,1,2,1,3,7,4,5,4,3,3,4,1,5,7,4,3,5,7,2,5,3,5,4,5,2,2,3,1,1,6,5,1,2,6,4,4,6,5,5,3,6,6,4,5,4,6,5,5,6,4,2,5,6,7,2,7,7,6,7,3,4,5,5,3,5,3
18025,26,23,Crawford County,IN,4,1,3,5,3,4,7,6,4,2,2,6,3,2,6,6,2,7,3,5,3,3,3,6,2,3,7,3,3,5,3,2,4,6,3,4,4,2,3,7,2,7,2,6,3,7,2,5,3,7,2,6,7,4,5,1,6,2,5,1,2,1,3,5,4,5,3,6,2,7,3,7,4,2,2,4,1,5,4,7,6,6,7,1,2,1,1,1,3,1,6,6,1,2,4,2,7,3,3,3,3,6,2,5,3,2,6,5,3,2,7,3,3,1,4,3,3,4,2,1,6,3,5,4,3
18027,65,84,Daviess County,IN,3,1,5,6,5,3,5,6,4,2,5,6,4,5,7,7,4,5,4,5,5,6,5,5,4,5,4,6,5,6,5,2,6,6,4,6,6,5,6,4,4,7,5,6,3,5,4,5,6,7,5,7,6,3,5,1,7,7,6,1,2,1,4,5,4,4,3,4,4,6,3,6,7,6,4,5,6,3,2,2,1,4,4,3,3,5,6,4,6,2,3,4,6,2,3,4,4,5,2,5,5,7,5,6,6,4,7,4,3,2,6,5,4,2,6,7,4,7,3,5,6,4,4,4,3
18029,72,114,Dearborn County,IN,1,1,6,6,5,5,5,7,7,2,7,5,6,5,5,7,5,5,7,7,6,6,7,7,7,6,5,6,6,5,7,6,7,7,5,7,7,5,6,7,6,7,3,6,3,3,6,6,6,7,4,5,5,5,3,1,6,6,6,1,2,1,3,6,4,6,2,5,3,7,3,5,6,3,5,3,4,7,3,5,5,5,6,5,5,5,4,3,3,2,1,1,2,5,1,6,7,5,1,5,5,7,6,7,5,5,7,4,3,2,6,7,7,5,6,4,5,6,2,4,6,7,6,4,3
18031,111,106,Decatur County,IN,3,1,5,6,4,4,3,6,7,2,5,5,5,6,2,7,5,6,5,3,5,5,4,6,5,6,5,5,4,5,5,3,5,6,5,4,4,5,6,5,4,3,6,5,4,6,5,6,5,7,6,4,5,4,6,5,6,6,4,1,2,1,2,6,3,6,2,5,4,5,1,4,7,3,4,4,7,6,5,3,1,6,7,4,5,5,3,6,6,5,1,2,2,4,2,5,3,5,3,6,6,4,4,6,5,4,4,3,3,2,5,7,7,2,6,7,4,5,2,4,5,5,2,4,6
18033,153,219,De Kalb County,IN,2,1,7,6,4,5,5,7,6,4,4,5,7,5,6,7,6,6,7,7,5,6,7,7,5,5,5,6,5,6,6,4,6,7,7,7,7,5,7,6,5,6,6,4,3,7,5,7,7,7,6,7,6,3,6,1,4,7,6,1,2,1,2,7,3,6,4,4,6,7,1,5,7,5,5,4,7,4,5,5,3,5,6,5,3,2,1,1,5,1,1,1,2,6,2,7,4,5,2,6,6,3,6,5,5,5,4,6,5,2,5,7,7,5,6,6,5,5,3,4,5,6,4,5,1
18035,218,254,Delaware County,IN,1,1,7,7,6,6,6,7,7,2,6,6,7,6,5,7,6,5,6,4,6,7,5,6,5,4,4,7,6,6,6,4,6,6,7,5,7,6,7,5,6,3,3,5,4,3,3,7,7,7,4,5,7,4,5,5,7,7,7,1,2,1,3,7,3,6,3,2,5,6,1,4,6,3,3,3,5,5,4,5,6,6,5,3,4,5,5,6,2,6,2,5,3,5,6,3,2,6,5,5,5,4,7,6,7,6,3,5,4,2,5,6,7,1,7,7,4,6,3,3,5,4,3,5,6
18037,237,228,Dubois County,IN,3,1,6,6,5,5,7,6,5,2,5,7,6,5,7,7,5,5,5,6,7,5,7,6,4,5,6,5,5,6,5,3,7,6,7,7,6,6,7,4,5,7,5,7,4,3,4,5,5,7,7,7,7,4,2,7,7,2,6,1,2,1,4,5,4,5,3,7,1,7,3,6,7,2,2,5,7,3,3,7,1,5,2,2,5,6,3,3,3,3,1,1,4,4,1,6,1,6,1,6,6,7,6,6,5,5,7,7,3,2,7,6,3,6,6,7,4,6,3,4,6,6,6,4,4
18039,457,468,Elkhart County,IN,1,6,7,7,6,6,6,7,5,7,6,6,6,7,6,7,6,7,6,6,6,7,7,7,7,6,6,7,7,7,7,5,7,6,7,7,6,7,7,7,7,2,7,6,4,1,7,7,7,7,7,5,7,3,6,1,7,7,6,1,2,1,3,7,3,5,3,2,5,6,1,6,7,7,7,5,7,4,5,3,5,3,3,4,4,4,4,5,3,5,1,1,7,3,2,6,1,6,6,7,7,3,7,6,7,7,5,4,3,2,6,7,7,4,7,7,7,7,3,6,5,6,4,6,6
18041,41,42,Fayette County,IN,3,1,7,7,5,4,3,6,5,2,5,5,5,6,2,7,5,6,5,4,6,6,7,6,5,6,5,6,5,5,6,3,6,7,4,5,6,6,6,5,5,3,6,4,4,4,5,7,5,7,6,5,5,5,4,1,5,7,3,1,2,1,3,6,4,6,1,1,1,2,1,2,6,1,1,3,6,1,5,6,1,4,5,2,2,4,3,6,1,5,2,1,1,3,5,4,4,6,1,6,6,4,6,5,6,4,5,2,2,2,3,7,7,2,7,6,4,6,2,4,5,5,3,4,3
18043,147,142,Floyd County,IN,1,1,7,7,7,7,7,7,7,2,6,6,7,7,6,7,6,7,6,7,7,7,6,7,6,7,7,7,7,7,7,5,7,7,7,7,7,7,7,7,7,7,7,6,7,5,7,5,7,7,7,7,7,3,1,1,3,2,7,1,2,1,3,5,4,5,5,6,5,6,3,7,4,1,5,6,5,7,3,1,6,4,4,2,3,4,2,7,3,5,1,2,2,5,2,6,7,6,6,7,7,7,7,7,7,6,7,7,5,2,7,7,4,4,7,4,6,7,2,4,6,6,2,4,3
18045,73,95,Fountain County,IN,3,1,5,6,4,3,4,7,3,2,3,6,4,7,7,6,4,3,6,4,4,4,4,6,3,7,4,5,4,7,5,3,6,6,7,7,5,4,5,3,4,6,3,4,4,7,7,6,4,7,4,3,5,4,6,1,7,7,4,1,2,1,3,6,4,4,3,5,2,5,1,5,6,3,2,3,6,4,5,5,1,5,6,1,1,2,1,1,4,3,3,2,2,5,3,6,6,1,2,4,4,6,4,5,5,3,7,5,4,2,6,5,7,5,6,7,6,5,3,5,5,4,2,5,3
18047,40,42,Franklin County,IN,1,1,5,6,3,4,3,7,6,2,4,5,5,3,3,6,4,3,6,5,7,4,7,6,6,4,3,5,4,5,4,5,5,6,3,6,4,3,4,7,3,6,3,4,4,4,4,7,4,7,3,5,5,5,6,1,3,2,4,1,2,1,3,6,4,6,2,2,2,5,3,3,7,3,4,5,4,2,6,5,1,5,3,2,4,2,3,4,6,1,3,1,2,3,2,6,7,3,3,4,4,6,3,6,4,4,6,3,3,2,4,5,7,4,5,6,3,5,2,5,6,6,4,4,3
18049,65,78,Fulton County,IN,3,1,6,6,7,3,4,7,5,2,4,6,4,4,5,6,3,4,5,3,4,4,3,6,7,4,4,5,4,7,4,3,5,6,7,6,7,4,6,6,4,2,4,4,4,4,3,7,7,7,4,4,6,3,7,1,6,6,5,1,2,1,3,7,3,5,3,1,4,6,1,1,7,7,6,7,7,3,3,4,4,6,3,4,3,3,3,5,4,3,4,1,3,4,3,6,5,3,4,7,5,3,4,5,4,4,3,4,3,2,7,5,7,6,6,7,4,7,3,5,4,4,3,6,4
18051,247,276,Gibson County,IN,1,1,4,6,6,4,4,6,5,2,5,6,4,5,7,7,4,5,5,5,7,5,4,6,4,5,4,5,4,5,5,3,6,6,3,5,6,4,5,3,4,7,4,6,4,7,4,5,4,7,4,6,6,3,3,4,6,7,6,1,2,1,4,5,4,4,5,7,2,7,3,4,6,5,4,5,6,5,2,7,2,6,3,3,2,4,6,1,5,3,3,2,2,5,4,3,5,5,3,5,5,7,5,7,4,4,7,7,4,2,7,6,4,7,6,7,4,6,2,4,7,4,3,4,3
18053,156,145,Grant County,IN,2,1,5,7,7,5,6,7,6,2,5,7,6,6,5,7,6,6,6,4,5,6,5,6,6,6,5,6,6,6,7,3,6,6,7,5,6,6,6,5,6,4,6,4,4,3,5,7,5,7,6,5,6,4,5,1,7,7,7,1,2,1,3,7,3,6,5,4,3,6,1,4,4,1,2,3,5,3,5,3,4,5,3,3,4,4,4,5,2,5,2,3,3,4,6,5,2,6,7,6,6,3,6,6,6,6,4,7,5,2,7,6,7,6,6,7,5,6,2,3,4,4,3,5,6
18055,70,75,Greene County,IN,1,1,4,6,3,3,2,6,3,2,4,6,3,4,2,7,5,4,4,4,5,6,4,5,4,5,4,5,4,6,5,2,4,6,3,6,4,4,5,4,4,5,5,6,4,5,4,6,5,7,4,6,6,4,4,1,7,2,6,1,2,1,3,5,4,4,3,3,2,4,3,5,6,4,3,5,3,1,5,6,1,5,3,3,4,3,2,6,2,2,4,3,1,4,4,3,6,3,2,5,5,6,4,4,5,5,6,3,3,2,5,4,3,2,6,6,3,7,3,1,5,3,3,4,6
18057,1367,1481,Hamilton County,IN,1,1,7,7,6,6,6,7,5,4,6,6,6,6,6,7,7,6,6,5,6,6,5,7,6,6,6,7,6,6,6,4,6,7,7,5,6,6,6,5,6,6,5,5,4,5,6,7,7,7,6,6,7,3,5,5,7,6,7,1,2,1,3,7,3,5,7,6,5,5,1,3,5,5,5,3,2,3,5,5,2,2,4,5,4,5,3,3,3,1,1,1,5,7,1,7,6,6,2,6,6,6,7,5,7,7,6,7,5,2,6,7,7,2,7,7,7,3,3,4,5,7,3,5,6
18059,269,265,Hancock County,IN,1,1,7,7,5,6,7,7,5,4,5,6,7,6,6,7,6,6,5,6,5,6,4,7,7,5,5,6,5,6,6,3,5,6,6,5,6,5,6,4,5,7,5,5,3,3,7,7,5,7,6,6,7,4,7,1,7,7,7,1,2,1,2,6,3,5,6,4,4,6,1,6,7,2,5,4,4,4,4,3,1,3,3,4,4,3,3,1,3,1,1,1,2,7,1,7,7,3,2,6,6,6,6,5,6,6,6,7,5,2,7,7,7,2,6,7,7,5,3,3,5,7,2,5,6
18061,110,136,Harrison County,IN,1,1,6,6,6,6,7,7,5,2,4,5,5,5,5,6,4,7,4,6,5,5,5,6,4,4,7,4,5,5,4,3,6,6,4,5,6,5,5,7,4,7,5,5,4,4,5,5,4,7,4,7,7,3,3,1,7,2,6,1,2,1,3,5,4,5,3,5,4,5,1,3,6,2,3,5,3,4,3,2,1,2,4,1,2,2,4,1,4,1,1,1,1,4,2,5,7,3,1,5,5,7,4,6,4,5,7,5,4,2,6,5,3,3,6,6,4,7,2,2,6,6,4,4,5
18063,542,613,Hendricks County,IN,1,1,6,7,6,6,7,7,6,4,6,6,6,7,6,7,5,6,6,5,5,6,5,7,5,5,5,6,5,6,6,3,5,6,6,6,6,5,6,4,6,7,5,5,3,6,7,6,5,7,5,7,7,4,6,1,7,7,7,1,2,1,3,6,3,5,3,7,2,3,1,5,6,1,2,4,2,3,4,3,2,2,4,5,3,3,3,1,1,1,1,1,2,7,1,7,7,6,1,6,6,6,6,6,6,6,6,4,3,2,5,6,7,1,6,7,6,6,3,3,6,7,2,5,6
18065,92,125,Henry County,IN,2,1,5,6,4,4,5,7,5,2,4,6,7,5,4,7,6,6,7,4,4,6,4,6,6,5,5,6,5,6,5,4,5,6,5,6,6,5,6,4,6,7,5,3,4,3,5,7,5,7,5,5,7,4,6,4,7,7,6,1,2,1,3,6,3,6,3,2,2,4,1,5,6,4,3,3,4,4,5,3,2,4,5,2,3,3,3,5,4,3,1,1,1,4,3,6,5,5,1,6,6,4,5,5,6,5,4,4,3,2,6,7,7,2,6,7,5,6,2,2,5,5,5,4,6
18067,328,354,Howard County,IN,1,1,6,7,7,5,5,7,4,2,5,6,5,6,5,7,6,6,7,4,6,6,6,6,5,6,6,7,6,7,6,4,6,7,5,7,6,6,6,5,6,5,6,5,4,1,6,7,6,7,6,4,7,3,5,5,7,7,7,1,2,1,3,7,3,5,5,5,3,5,1,2,6,1,4,3,3,2,5,5,4,5,3,1,4,4,4,6,2,5,2,2,3,6,3,5,1,6,6,7,6,4,6,5,7,6,4,6,5,2,7,6,7,7,7,7,5,7,3,3,5,6,4,5,6
18069,116,142,Huntington County,IN,3,1,6,7,7,5,6,7,6,2,5,6,4,5,5,7,6,7,5,6,5,6,4,7,7,5,6,6,5,6,6,5,6,6,6,5,5,5,6,7,5,4,5,6,4,5,5,7,7,7,5,6,6,3,5,1,7,7,7,1,2,1,3,7,3,7,3,3,2,5,1,4,6,4,2,5,7,7,6,5,2,5,3,3,5,2,2,1,2,3,2,1,3,6,2,7,5,4,2,6,6,3,6,7,6,5,3,6,4,2,6,7,7,7,7,7,5,7,1,5,4,5,3,5,6
18071,131,154,Jackson County,IN,2,1,7,7,5,5,4,6,7,2,4,5,4,5,3,7,5,5,6,4,5,6,4,6,4,5,4,6,6,6,6,3,6,7,4,6,5,6,7,4,6,4,5,4,4,3,4,6,6,7,5,5,6,3,5,4,6,7,5,1,2,1,3,5,4,5,4,6,6,7,3,3,6,5,4,4,6,6,3,4,4,4,2,5,3,5,5,3,4,5,2,2,4,4,1,4,3,5,6,5,5,5,6,5,6,5,5,5,4,2,7,7,4,5,6,7,3,6,3,3,5,5,6,4,5
18073,92,107,Jasper County,IN,1,1,3,6,3,3,7,7,4,2,3,5,4,3,4,6,4,3,3,3,3,3,3,6,6,3,3,4,3,7,4,2,5,6,3,5,5,3,4,3,3,7,3,4,4,7,5,7,4,7,3,4,4,3,7,1,6,6,4,1,2,1,4,7,4,5,6,6,2,7,3,3,7,6,6,5,6,6,3,3,3,5,3,1,3,3,1,1,5,3,1,1,3,5,5,6,5,4,3,5,4,7,4,5,4,4,7,7,4,2,7,5,7,2,5,7,3,4,3,4,5,6,4,6,6
18075,83,103,Jay County,IN,3,1,5,6,5,3,5,7,4,2,4,6,5,5,3,7,3,5,4,4,5,5,7,6,7,5,4,5,4,5,5,3,5,5,6,7,5,4,6,7,6,3,5,5,4,6,4,7,6,7,6,5,6,5,6,1,3,7,5,1,2,1,3,7,3,6,4,3,5,6,1,4,7,3,3,4,7,2,3,4,2,6,3,5,1,2,3,3,1,3,2,2,5,4,2,6,5,3,3,5,5,3,4,7,5,4,3,6,5,2,7,6,7,3,6,7,3,6,3,3,5,3,2,5,5
18077,42,48,Jefferson County,IN,3,1,5,6,5,4,5,6,7,2,7,5,5,5,4,7,4,5,7,5,5,5,5,7,6,5,5,6,6,5,7,6,6,6,4,6,6,5,5,5,6,7,5,4,3,4,5,6,5,7,5,4,5,4,2,4,7,7,4,1,2,1,3,5,4,7,3,6,6,6,3,2,5,2,4,5,5,2,4,4,5,3,4,4,4,4,2,1,2,4,3,2,3,5,4,4,3,5,2,5,6,7,6,6,6,4,7,5,3,2,7,5,5,4,5,5,4,6,2,4,6,5,5,4,5
18079,56,73,Jennings County,IN,3,1,4,6,4,4,3,6,7,2,5,5,5,3,3,7,4,3,5,4,5,6,4,6,4,3,3,6,5,5,5,4,6,7,5,5,5,5,7,4,5,6,3,5,3,4,2,6,5,7,3,5,6,4,4,7,5,6,5,1,2,1,3,5,4,5,2,4,6,6,1,3,6,1,3,5,4,2,1,2,3,4,1,3,3,1,1,1,5,2,4,2,2,3,6,3,6,2,3,4,4,6,5,6,5,4,6,3,3,2,4,7,5,3,6,6,3,6,2,6,6,5,3,4,4
18081,501,548,Johnson County,IN,1,1,6,7,6,6,7,7,7,4,6,6,6,6,6,7,6,6,7,6,5,6,5,7,6,6,5,7,6,6,6,3,6,7,7,6,6,6,7,5,6,5,6,5,4,7,7,6,5,7,6,7,7,3,3,1,7,2,7,1,2,1,3,6,3,5,2,2,3,4,1,3,6,5,4,3,4,4,4,2,1,3,5,3,4,3,2,1,3,4,1,1,3,6,2,6,7,6,4,6,6,6,6,5,6,6,6,4,3,2,6,7,7,2,6,7,7,3,3,6,5,7,2,4,6
18083,157,190,Knox County,IN,2,1,6,7,5,4,5,6,5,2,5,6,4,6,5,7,7,6,4,7,6,6,5,6,5,6,5,6,5,6,6,4,6,7,4,5,6,5,7,5,5,7,6,4,4,5,5,5,5,7,6,5,7,3,3,1,7,2,5,1,2,1,4,5,4,4,3,5,4,6,3,4,6,7,7,7,5,7,4,6,2,5,7,3,4,6,6,7,2,6,3,5,3,5,7,2,2,5,2,6,6,7,6,6,6,5,7,4,3,2,5,6,4,5,7,7,5,6,2,6,7,3,5,4,4
18085,279,326,Kosciusko County,IN,2,4,7,6,7,4,6,7,6,5,5,6,5,5,6,7,4,6,5,5,4,6,5,6,7,5,6,5,5,7,5,4,5,6,6,7,5,5,6,7,5,5,6,6,4,1,6,7,7,7,5,5,6,3,7,1,6,7,6,1,2,1,3,7,3,6,4,2,5,5,1,4,7,6,6,5,7,3,4,5,5,5,5,4,4,3,3,3,5,2,5,1,6,5,2,6,3,4,2,6,5,3,6,5,5,6,3,6,3,2,6,7,7,7,6,7,5,6,3,4,5,6,6,5,6
18087,60,56,Lagrange County,IN,3,4,6,6,5,4,4,7,5,5,3,5,4,4,6,6,3,4,5,6,4,5,5,6,7,4,4,5,4,6,5,3,5,7,5,6,5,4,6,7,4,2,7,5,4,3,4,7,7,7,4,5,6,3,7,1,6,2,5,1,2,1,2,7,3,6,4,2,2,4,1,5,7,7,7,7,5,5,4,2,5,2,4,3,5,2,1,1,5,1,5,1,7,1,1,6,5,4,1,4,4,3,4,4,4,5,3,5,3,2,7,6,7,2,5,6,5,6,3,5,5,6,2,5,6
18089,1383,1449,Lake County,IN,1,1,6,7,7,7,7,7,7,1,7,5,7,7,7,7,7,7,7,7,7,7,6,7,7,7,7,7,7,7,7,5,7,7,7,7,7,7,7,6,6,7,7,7,3,4,7,7,6,7,7,7,5,3,2,6,7,7,7,5,2,3,4,7,4,5,7,7,2,6,3,4,2,6,5,5,4,5,6,3,7,6,3,3,3,5,5,6,2,6,2,4,6,5,6,3,4,7,5,7,7,7,7,6,7,7,7,7,5,7,7,7,6,7,3,6,6,2,3,4,6,6,2,6,6
18091,279,269,La Porte County,IN,1,1,7,7,5,5,5,7,7,2,5,7,6,6,6,7,6,7,7,5,6,6,5,7,7,5,5,6,6,7,7,4,6,6,6,7,6,6,6,6,7,7,5,6,3,7,5,7,6,7,5,4,6,3,6,5,7,6,5,1,2,1,4,7,4,5,7,7,1,7,3,4,6,7,7,5,7,6,6,5,6,6,5,3,5,6,3,4,5,4,3,2,5,5,3,5,3,6,3,6,6,7,6,6,7,6,7,7,4,7,7,7,6,4,6,7,5,6,3,7,5,6,4,6,6
18093,70,92,Lawrence County,IN,2,1,6,7,5,5,2,6,2,2,6,6,4,6,3,7,6,6,5,4,6,7,5,6,5,6,5,6,6,6,6,2,6,6,5,7,6,6,7,5,5,3,6,7,4,5,5,5,6,7,6,5,6,3,2,6,7,2,6,1,2,1,3,5,4,5,3,5,5,7,1,4,4,1,1,3,3,6,3,3,5,4,6,5,4,5,1,4,2,2,3,2,1,4,4,3,4,5,2,6,6,3,6,4,6,5,4,5,3,2,7,6,4,4,7,5,4,7,3,5,5,4,3,4,5
18095,271,283,Madison County,IN,1,1,6,7,6,5,6,7,4,4,5,6,7,6,7,7,6,6,7,5,6,6,5,6,6,6,5,7,6,6,6,4,6,7,6,7,5,6,7,6,6,3,6,5,4,1,6,7,6,7,6,7,7,4,5,4,7,7,7,1,2,1,3,7,3,6,5,4,4,6,1,2,5,3,3,3,4,2,5,3,5,5,4,2,3,4,3,6,3,5,2,2,2,4,4,5,4,5,1,6,7,4,6,6,7,7,5,6,5,2,7,7,7,4,7,7,6,6,3,7,5,5,2,5,6
18097,2070,2372,Marion County,IN,1,1,7,7,6,7,7,7,7,4,6,6,7,7,7,7,7,7,7,6,6,7,6,7,6,6,6,7,6,7,7,4,6,7,7,7,7,7,7,6,7,6,7,6,3,4,7,7,6,7,7,7,7,3,2,5,7,7,7,6,2,1,3,6,3,5,4,4,4,4,1,3,2,2,6,3,5,6,4,4,7,5,6,5,4,5,4,6,2,7,3,3,5,5,4,3,2,7,5,7,7,7,7,6,7,7,7,6,4,2,5,7,7,2,7,4,7,3,3,5,6,6,2,5,6
18099,93,113,Marshall County,IN,3,3,7,6,5,4,4,7,6,4,5,5,6,5,6,7,5,6,5,5,4,5,4,6,7,5,5,5,4,7,5,3,5,6,6,7,4,5,6,7,6,7,5,5,3,3,5,7,7,7,5,5,5,3,7,4,7,7,5,1,2,1,3,7,3,5,6,6,4,5,1,5,7,6,6,6,7,7,3,6,4,4,5,4,5,5,4,3,4,3,3,1,6,4,2,6,4,5,1,6,6,4,6,3,5,5,4,7,4,2,7,7,7,3,6,7,5,6,3,2,5,5,5,6,6
18101,27,31,Martin County,IN,3,1,4,6,3,2,5,6,3,2,3,6,3,3,7,6,3,3,5,4,4,4,5,5,3,3,3,4,3,5,3,2,5,5,4,7,5,3,5,3,3,7,3,4,4,5,2,5,4,7,3,6,6,3,5,1,6,2,3,1,2,1,4,5,4,4,2,4,1,6,3,2,6,3,2,3,6,5,1,2,1,5,1,5,3,2,7,1,7,1,4,3,1,3,5,2,6,2,3,4,4,7,3,5,4,2,7,4,2,2,6,4,3,2,5,5,3,5,3,1,6,3,2,4,3
18103,115,104,Miami County,IN,3,1,6,6,7,4,5,7,5,2,4,6,5,5,6,7,4,6,6,4,5,6,4,6,6,5,5,6,5,7,5,4,5,6,6,5,6,5,7,5,5,6,6,4,4,3,5,7,5,7,5,4,6,3,6,1,6,6,6,1,2,1,3,7,3,5,3,3,2,4,1,3,7,4,4,4,6,7,3,1,5,4,5,1,4,2,2,5,4,4,4,1,3,5,2,6,5,3,3,7,6,3,5,6,6,5,4,5,4,2,6,6,7,6,6,7,4,7,3,2,4,4,2,5,6
18105,223,244,Monroe County,IN,1,1,7,7,6,6,4,6,5,2,5,6,5,6,2,7,7,6,6,5,7,7,5,6,5,6,5,7,6,6,6,4,6,7,6,6,6,6,6,5,7,3,7,5,3,1,6,6,6,7,7,6,6,3,2,7,7,2,6,1,2,1,3,6,4,4,4,5,5,6,1,3,4,2,4,3,3,4,4,4,7,3,3,6,5,6,5,6,1,7,2,6,6,7,2,2,1,7,2,7,7,4,7,5,7,6,5,5,4,2,6,7,5,5,7,4,5,7,3,2,5,6,6,5,4
18107,179,183,Montgomery County,IN,3,1,7,6,4,4,5,7,5,4,5,6,6,7,7,7,6,5,5,5,5,5,4,6,4,7,6,6,6,7,5,3,6,6,6,7,7,5,7,4,5,5,5,5,4,5,7,6,5,7,5,5,6,4,6,1,6,7,6,1,2,1,3,7,4,4,2,2,1,3,1,3,7,3,3,4,7,4,6,4,2,4,3,2,3,4,4,6,3,5,2,2,2,6,2,6,2,4,2,6,6,5,5,5,6,5,6,3,3,2,5,6,7,1,6,7,6,6,3,2,5,5,5,5,6
18109,247,265,Morgan County,IN,1,1,7,7,6,5,7,7,6,4,6,6,5,7,6,7,6,7,5,5,6,7,5,6,5,6,6,7,6,6,6,5,6,6,5,5,6,5,6,5,6,7,6,7,3,3,7,6,6,7,6,6,7,4,6,1,7,2,7,1,2,1,3,6,4,5,2,2,5,5,3,5,5,1,2,3,2,5,4,2,3,2,4,3,2,2,2,1,2,2,1,1,1,5,1,5,7,4,2,7,7,6,6,6,6,6,6,4,4,2,4,7,7,2,7,6,7,7,3,3,6,7,2,5,6
18111,18,20,Newton County,IN,1,1,3,5,2,3,7,7,5,2,2,5,4,3,5,6,3,3,4,3,2,3,5,6,6,3,3,3,4,7,3,3,3,5,3,4,4,2,4,3,4,6,2,2,4,3,2,7,2,7,2,3,4,3,7,1,5,7,4,1,2,1,4,7,4,5,6,6,2,6,3,3,6,6,3,3,7,3,5,3,5,7,1,6,1,2,1,1,6,2,2,1,4,4,3,7,7,3,3,3,3,6,2,4,3,3,6,7,5,2,7,5,6,3,4,7,4,3,3,6,5,5,4,6,4
18113,106,126,Noble County,IN,3,3,7,6,4,5,5,7,6,4,4,5,7,5,6,7,4,5,5,7,5,5,6,6,7,5,5,5,6,6,5,4,6,6,7,7,6,5,6,7,4,4,6,6,4,3,4,7,7,7,5,6,6,3,7,1,5,7,6,1,2,1,3,7,3,6,3,2,4,5,1,3,7,5,6,5,7,1,4,3,3,4,7,4,4,3,3,4,2,3,3,1,6,3,1,6,5,5,2,5,5,3,5,5,5,5,3,5,4,2,5,7,7,5,6,7,5,6,3,4,5,5,4,5,6
18115,12,13,Ohio County,IN,1,1,6,6,4,5,6,7,7,2,7,5,6,6,5,6,5,5,7,7,5,5,7,7,7,7,5,6,6,5,7,6,7,6,5,7,7,6,5,7,6,7,4,5,4,4,6,6,6,7,5,5,5,5,2,1,6,2,2,1,2,1,3,5,4,6,3,7,4,7,3,3,4,5,6,3,2,1,5,1,1,2,1,1,6,2,1,1,2,3,3,1,1,4,3,5,7,5,3,6,6,7,5,7,4,1,7,6,6,2,7,6,6,4,6,3,5,6,2,3,6,6,2,4,3
18117,35,34,Orange County,IN,3,1,3,6,3,3,5,6,2,2,3,6,3,3,7,6,3,7,3,4,7,4,4,5,3,3,7,4,3,5,3,2,4,6,3,5,5,4,4,5,3,3,3,4,4,1,2,5,4,7,3,6,6,3,6,6,6,6,3,6,2,1,3,5,4,5,4,6,3,7,1,3,5,1,1,5,6,4,2,4,1,6,3,1,4,3,3,1,1,2,3,4,3,3,4,3,5,5,3,4,3,4,3,3,4,3,4,5,3,2,7,4,3,2,5,5,2,5,3,2,5,3,4,4,5
18119,37,41,Owen County,IN,1,1,6,6,3,3,3,6,3,4,3,6,5,4,3,6,5,4,3,4,3,4,3,5,3,4,3,4,3,6,4,2,4,7,3,5,5,3,5,3,3,3,4,4,3,4,3,6,4,7,4,6,6,4,7,1,7,2,5,1,2,1,3,6,4,4,3,3,5,5,3,2,6,2,4,3,1,1,4,1,1,2,3,1,2,1,3,1,4,1,5,2,1,3,3,2,7,2,2,4,4,5,3,4,4,4,5,3,3,2,4,5,4,3,5,5,3,5,3,1,5,5,2,5,3
18121,45,43,Parke County,IN,3,1,6,6,3,3,3,7,4,2,4,6,5,7,7,6,3,4,4,4,3,4,3,5,3,7,3,4,4,7,4,3,5,5,5,4,6,3,4,3,5,6,4,4,3,1,3,7,3,7,4,6,6,4,6,1,6,2,3,1,2,1,3,6,4,4,1,1,1,2,3,6,4,4,4,4,2,1,5,2,2,4,4,2,2,3,6,5,3,2,5,3,3,4,2,5,6,3,2,4,4,7,3,6,5,3,7,2,2,2,3,4,7,3,5,6,7,4,3,1,5,3,1,5,6
18123,40,42,Perry County,IN,3,1,5,6,4,4,6,6,6,2,5,6,5,5,7,7,7,5,6,7,6,6,4,6,4,5,7,6,5,5,6,3,6,6,7,7,6,5,6,6,5,7,5,7,3,1,5,5,5,7,7,7,7,4,3,1,6,2,5,1,2,1,4,4,4,5,2,4,1,6,3,3,6,1,1,3,7,3,5,6,2,6,3,1,2,3,3,7,6,2,4,2,1,3,3,3,5,5,4,5,5,7,4,7,5,3,7,4,2,2,6,7,2,6,7,4,4,7,2,2,6,4,6,4,5
18125,78,67,Pike County,IN,3,1,3,6,4,3,5,6,5,2,4,7,4,4,7,6,3,4,4,5,4,4,5,5,3,4,3,4,3,5,4,3,6,6,3,6,7,3,5,3,3,7,4,6,3,3,3,5,3,7,4,7,6,3,3,4,7,2,6,1,2,1,4,5,4,4,6,7,3,7,3,3,5,1,1,3,6,1,4,2,1,6,5,3,1,2,1,1,4,1,3,1,1,3,4,2,7,2,3,4,4,7,3,7,4,2,7,7,4,2,7,5,4,6,5,6,4,5,3,1,7,3,1,4,4
18127,518,556,Porter County,IN,1,1,7,7,6,6,5,7,7,1,6,4,6,7,7,7,7,6,7,6,6,6,5,7,7,6,7,7,6,7,6,4,7,6,7,7,7,6,6,5,5,7,6,7,3,5,7,7,5,7,6,6,4,3,5,5,7,7,6,6,2,1,4,7,4,5,7,7,1,7,3,5,4,6,6,5,4,7,5,4,7,4,4,3,3,6,5,1,2,3,1,1,5,7,2,6,6,6,2,6,6,7,6,6,6,7,7,7,4,7,7,7,6,6,4,7,5,5,3,5,6,7,3,6,5
18129,79,95,Posey County,IN,1,1,4,6,7,4,7,6,7,2,6,7,5,7,7,7,5,7,5,4,7,5,3,7,4,5,6,5,5,5,7,6,7,6,4,4,6,6,5,4,7,7,5,7,3,3,5,5,4,7,5,5,6,4,6,6,6,6,6,1,2,1,4,4,4,4,7,6,3,6,3,4,5,6,5,5,6,3,3,1,1,6,3,2,4,1,1,5,2,1,2,1,1,6,2,5,6,4,4,5,5,7,4,7,5,4,7,6,4,2,7,7,3,7,6,7,6,6,2,2,5,6,2,4,4
18131,30,40,Pulaski County,IN,3,1,4,5,3,3,3,7,4,2,3,5,4,3,4,6,3,3,3,3,3,3,2,6,3,3,3,4,3,7,3,2,5,7,5,4,5,3,4,5,3,7,3,3,5,7,2,7,4,7,3,3,4,3,7,1,5,6,3,1,2,1,3,7,4,5,6,3,4,7,3,4,6,7,6,7,7,1,3,5,3,6,7,6,3,5,1,1,5,2,4,2,1,4,3,6,5,1,4,7,4,6,3,5,3,3,6,6,4,2,7,4,7,1,5,7,3,5,3,5,5,4,5,6,6
18133,101,122,Putnam County,IN,1,1,5,6,4,4,5,7,5,4,4,6,7,4,6,7,3,3,4,4,6,5,4,6,4,3,3,5,5,6,4,2,5,6,5,4,7,4,7,3,4,4,3,5,3,3,3,6,5,7,3,7,6,4,6,1,7,2,6,1,2,1,3,6,4,4,1,2,1,3,1,5,5,3,3,4,5,4,4,4,1,3,6,2,3,3,2,4,1,2,3,1,2,5,3,5,5,4,1,4,4,5,5,7,4,5,5,3,3,2,3,5,7,2,6,7,5,6,3,1,5,6,2,5,6
18135,56,62,Randolph County,IN,3,1,5,6,3,4,5,7,5,2,3,6,5,4,3,6,4,4,4,3,3,4,7,6,3,4,6,4,4,5,5,3,4,6,5,5,4,3,5,3,4,3,4,4,3,1,3,7,4,7,4,5,5,5,6,1,7,6,6,1,2,1,2,7,3,6,3,3,6,6,1,5,6,1,2,4,7,2,3,3,2,4,4,3,3,4,1,4,3,4,2,3,1,4,4,6,6,3,3,4,4,4,4,7,4,4,4,5,5,2,6,5,7,2,5,7,3,5,2,6,5,3,4,4,6
18137,82,89,Ripley County,IN,3,1,6,5,3,3,4,6,7,2,7,5,5,4,4,6,6,4,7,4,7,4,7,6,6,4,3,4,4,5,6,6,6,6,3,7,6,4,5,7,5,6,4,3,3,1,3,6,4,7,3,4,4,5,5,6,4,2,6,1,2,1,3,5,4,6,2,4,5,6,3,7,6,3,4,3,7,6,3,1,3,6,3,1,5,6,5,1,1,3,1,1,1,4,1,6,6,6,3,4,4,7,4,6,4,4,7,3,3,2,4,6,6,3,5,6,3,5,2,5,6,6,6,4,4
18139,39,38,Rush County,IN,3,1,5,6,3,3,3,6,5,4,4,5,5,4,3,7,3,4,4,3,5,5,3,6,6,4,4,5,4,5,5,2,4,5,4,4,4,4,5,5,4,3,4,5,4,5,3,7,4,7,4,5,5,4,7,1,7,6,5,1,2,1,2,6,3,6,3,2,1,3,1,6,7,1,1,4,6,2,4,6,6,5,6,6,2,3,1,1,6,5,1,1,2,4,2,6,6,4,3,5,5,4,4,3,5,3,3,3,3,2,6,7,7,2,6,7,5,5,2,3,5,5,1,4,3
18141,712,681,St. Joseph County,IN,1,4,7,7,6,6,6,7,7,4,6,5,7,7,7,7,7,7,6,6,6,7,6,7,7,6,6,7,6,7,7,4,6,7,7,7,6,7,7,7,7,2,7,6,3,1,6,7,7,7,7,6,7,3,5,1,7,7,6,1,2,1,3,7,4,5,4,6,3,4,1,7,6,6,7,6,5,5,6,3,6,6,5,4,4,6,5,6,2,5,1,3,6,5,4,5,2,7,6,7,7,4,7,5,7,7,5,7,4,2,7,7,7,3,7,7,6,3,3,4,5,5,3,6,1
18143,51,61,Scott County,IN,3,1,7,6,4,5,5,6,7,2,5,5,5,5,4,7,4,7,5,5,6,5,4,6,4,5,7,5,6,5,5,5,6,6,3,4,6,5,6,6,4,5,5,5,3,4,4,5,5,7,5,5,6,3,2,7,3,2,6,1,2,1,3,5,4,5,4,7,5,7,1,7,5,3,4,3,6,5,4,6,4,5,1,3,2,4,1,1,3,4,3,4,1,2,3,3,5,4,3,5,5,6,5,6,5,4,6,7,4,2,7,6,3,3,6,5,3,6,2,3,6,4,4,4,3
18145,127,115,Shelby County,IN,1,1,7,7,5,5,6,7,7,4,6,6,5,6,6,7,6,6,7,5,5,6,4,6,6,6,5,6,5,6,7,3,6,6,5,5,5,6,7,5,5,3,7,6,3,1,7,6,7,7,6,6,6,4,7,1,7,2,6,1,2,1,2,6,3,5,4,3,2,4,1,7,5,5,4,3,6,5,3,4,3,3,2,2,2,3,4,1,1,5,1,1,2,4,2,5,5,5,1,7,7,5,6,5,6,5,6,5,4,2,6,7,7,2,6,7,6,6,2,4,5,6,2,4,6
18147,82,80,Spencer County,IN,4,1,4,5,3,4,6,6,6,2,4,6,5,4,7,6,5,3,5,6,5,4,5,6,3,5,7,4,4,5,7,3,7,7,7,6,7,4,4,7,4,7,3,7,3,3,4,5,3,7,7,7,7,4,5,1,6,2,6,1,2,1,4,4,4,5,4,4,3,5,3,7,6,4,4,4,6,5,3,1,1,5,1,3,4,2,1,4,3,1,3,1,2,5,3,5,6,3,4,4,4,7,3,7,4,4,7,4,3,2,7,7,3,7,5,6,3,5,2,3,6,5,2,4,3
18149,44,55,Starke County,IN,3,1,4,6,4,4,4,7,4,2,4,5,4,4,5,6,4,4,4,3,3,4,3,6,6,4,4,4,5,7,3,3,5,5,4,5,4,4,6,7,4,6,4,5,3,1,3,7,6,7,4,4,5,3,7,1,5,7,3,1,2,1,3,7,4,5,7,6,2,7,3,7,4,7,6,5,5,3,4,5,2,5,1,2,3,1,1,1,1,2,5,3,4,2,5,5,6,2,4,5,5,7,4,5,4,4,7,7,3,2,7,5,6,2,4,6,5,5,3,6,5,5,4,6,5
18151,71,83,Steuben County,IN,3,1,7,6,4,5,4,7,3,2,4,5,5,4,6,7,4,4,5,5,4,5,7,6,4,4,4,5,6,6,5,3,5,5,6,7,4,5,6,6,4,6,4,6,5,7,4,7,6,7,4,6,6,3,7,1,7,7,6,1,2,1,2,7,3,6,4,2,4,5,1,6,6,5,4,5,6,7,5,5,5,6,4,2,5,3,3,4,6,3,7,1,4,6,3,5,4,5,1,5,5,4,5,4,5,5,4,6,4,2,7,6,7,3,6,6,3,6,3,1,5,6,6,5,6
18153,73,69,Sullivan County,IN,1,1,4,6,3,3,3,6,4,2,3,6,3,4,3,6,3,4,4,4,3,4,3,5,3,4,3,4,4,6,3,2,5,7,4,5,5,3,4,3,3,6,4,4,3,5,3,7,3,7,4,5,6,4,3,1,7,6,6,1,2,1,4,5,4,4,2,4,3,5,3,6,7,6,5,4,5,5,2,5,1,6,5,4,1,2,1,6,2,2,4,3,3,5,6,5,6,5,2,4,4,7,3,6,4,4,7,4,3,2,6,3,4,5,5,7,3,6,2,5,6,3,4,5,4
18155,10,19,Switzerland Count,IN,4,1,5,5,3,4,5,6,7,2,7,5,5,4,6,6,3,4,7,6,4,4,7,6,7,7,4,4,6,4,7,6,7,6,5,7,7,6,4,7,7,7,3,3,3,3,5,6,5,7,4,4,4,5,4,1,2,2,5,1,2,1,3,5,4,6,3,6,4,7,3,7,5,4,6,3,4,1,5,1,1,4,1,1,1,1,1,1,6,3,6,4,2,2,6,2,7,4,3,5,4,7,3,7,3,2,7,6,6,2,6,6,7,3,5,4,4,4,2,3,6,4,1,4,3
18157,876,875,Tippecanoe County,IN,1,1,7,7,6,6,6,7,4,2,6,6,6,7,7,7,7,7,7,7,7,7,6,7,6,7,6,7,6,7,7,4,7,7,7,7,7,7,7,6,7,2,7,5,3,1,7,7,6,7,7,3,7,4,4,4,7,7,6,5,2,1,3,7,4,5,3,3,1,4,1,7,5,6,5,4,5,3,6,3,7,4,3,3,5,4,4,5,2,7,1,5,6,7,6,2,1,7,3,7,7,4,7,6,7,7,7,5,4,2,6,7,7,1,7,7,7,3,2,6,5,6,3,6,6
18159,39,51,Tipton County,IN,1,1,5,6,6,3,5,7,3,2,3,6,6,4,6,6,4,4,7,4,3,3,4,6,4,4,6,4,3,6,3,3,4,5,3,4,4,3,4,4,3,3,3,3,3,1,3,7,3,7,4,5,7,3,6,1,7,7,5,1,2,1,3,7,3,5,6,5,3,5,1,7,7,1,1,5,5,4,3,2,1,4,7,2,2,4,5,1,4,2,1,1,2,6,1,7,7,2,3,6,4,4,3,3,4,3,4,7,5,2,7,4,7,6,4,7,3,4,3,6,5,6,3,5,3
18161,19,17,Union County,IN,4,1,4,5,2,3,4,6,5,2,2,5,5,3,2,6,3,3,5,4,3,3,7,6,6,3,5,4,3,5,3,5,4,5,4,5,4,3,4,4,2,4,2,3,3,1,3,7,3,7,3,6,5,5,6,1,5,2,4,1,2,1,2,6,4,6,3,1,2,4,1,7,7,1,2,3,6,4,6,3,1,5,1,3,5,1,1,1,1,4,3,2,3,4,4,7,7,4,3,4,3,5,3,5,3,2,5,4,3,2,4,4,7,4,4,6,2,4,1,1,6,5,6,4,3
18163,622,690,Vanderburgh Count,IN,1,1,3,7,7,7,6,6,7,2,7,7,6,7,7,7,7,7,7,6,7,7,6,7,6,7,7,7,7,6,7,5,7,7,6,6,7,7,7,6,7,7,7,7,3,3,7,5,7,7,7,7,7,3,2,7,4,7,6,1,2,1,4,4,4,4,7,7,3,7,3,7,3,2,5,4,4,4,5,4,6,5,6,3,5,5,5,6,3,6,2,3,3,5,4,2,1,7,6,7,7,7,7,7,7,7,7,7,5,2,7,7,3,7,7,6,6,3,2,6,6,5,4,4,6
18165,51,68,Vermillion County,IN,1,1,3,6,4,3,4,7,5,2,4,6,4,7,6,7,4,4,4,4,5,5,4,5,4,7,4,5,4,7,5,3,6,6,6,4,7,4,5,3,6,7,4,4,4,7,4,7,3,7,4,4,6,4,4,1,6,6,6,1,2,1,3,6,4,4,2,3,1,3,1,7,5,1,3,3,6,7,2,2,2,7,4,1,1,1,1,1,3,2,3,2,2,5,4,3,6,5,2,5,5,7,4,5,5,3,7,3,3,2,4,5,7,4,6,6,7,5,3,1,5,3,3,5,6
18167,302,344,Vigo County,IN,1,1,3,7,6,6,6,7,7,2,6,6,6,6,6,7,7,7,7,5,6,7,6,7,5,7,6,7,6,7,7,5,6,7,7,6,7,6,7,5,7,6,7,6,3,1,6,7,6,7,7,7,7,4,4,4,7,6,6,1,2,1,3,6,4,4,2,3,2,6,3,7,4,4,4,5,5,6,4,5,3,6,6,4,5,7,5,6,2,6,3,5,3,5,6,2,1,6,2,7,7,7,7,6,7,6,7,4,3,2,6,7,7,5,7,6,7,6,3,1,5,4,3,5,6
18169,79,72,Wabash County,IN,3,1,6,6,7,4,5,7,7,2,6,6,5,7,7,7,4,5,5,4,5,5,4,6,7,5,5,6,4,6,6,3,6,6,7,7,6,5,6,5,4,3,5,4,3,1,5,7,6,7,5,5,6,3,6,1,7,7,6,1,2,1,3,7,3,6,3,2,2,3,1,6,7,5,4,4,7,3,4,4,2,4,7,1,3,5,3,1,3,4,1,1,2,5,3,7,3,4,1,7,6,3,5,7,5,5,3,4,4,2,5,6,7,7,6,7,5,6,2,2,4,5,5,5,6
18171,16,19,Warren County,IN,4,1,4,5,2,2,3,7,3,2,2,5,3,7,6,6,2,3,5,4,2,2,4,5,2,7,4,3,2,7,5,2,5,5,4,6,4,2,3,2,3,5,2,2,5,4,7,7,2,7,3,3,5,4,7,1,5,2,2,1,2,1,3,7,3,4,2,5,1,4,1,7,4,4,3,3,6,7,6,1,1,6,7,1,1,1,1,1,6,1,2,1,1,6,1,7,7,3,2,4,3,6,2,3,3,2,6,5,4,2,6,4,7,3,3,7,5,3,2,1,5,4,1,5,3
18173,277,296,Warrick County,IN,1,1,4,7,6,5,6,6,6,2,6,6,5,6,7,7,6,5,5,6,7,6,5,6,5,6,7,6,5,5,7,4,7,6,5,6,7,5,6,6,5,7,5,7,3,3,4,6,6,7,7,7,7,4,2,1,6,6,7,1,2,1,4,5,4,4,6,7,4,7,3,7,5,3,3,3,3,5,4,1,2,3,3,1,3,3,2,1,5,1,1,1,2,7,2,7,7,4,1,5,5,7,5,7,6,5,7,6,5,2,7,7,4,7,7,6,4,6,2,3,6,6,1,4,6
18175,44,56,Washington County,IN,1,1,5,6,4,5,7,7,5,2,4,5,5,5,5,6,4,7,4,5,5,5,4,5,4,5,7,5,5,5,4,3,6,5,5,5,6,5,6,7,4,6,5,5,4,6,4,5,5,7,5,5,6,3,5,6,4,2,4,1,2,1,3,5,4,5,4,6,4,7,1,7,7,3,3,5,4,2,5,1,4,4,3,5,4,2,6,4,3,1,2,3,1,3,3,5,6,2,3,5,5,6,4,5,5,4,6,6,4,2,7,5,5,3,6,6,4,7,3,2,6,4,5,4,5
18177,155,148,Wayne County,IN,2,1,6,6,4,4,3,7,7,2,4,5,5,4,2,7,5,4,5,3,5,5,7,6,5,4,5,6,6,5,5,3,6,6,7,7,7,6,6,4,5,6,4,3,3,5,4,7,5,7,5,6,5,5,4,5,4,7,6,1,2,1,2,6,4,6,3,2,2,4,1,7,6,3,4,4,6,7,3,5,5,5,6,3,6,5,4,5,3,6,2,3,3,4,5,5,2,6,6,5,5,6,6,6,6,6,5,4,3,2,5,6,7,5,6,7,3,5,2,5,5,4,2,4,6
18179,82,90,Wells County,IN,1,1,5,6,7,4,6,7,6,2,5,6,4,5,4,7,5,5,5,6,5,5,6,6,7,5,4,6,5,6,5,3,5,5,7,7,6,5,6,7,5,2,5,5,3,3,4,7,7,7,5,6,6,4,6,1,6,7,6,1,2,1,3,7,3,6,3,4,3,6,1,7,5,1,3,4,6,2,4,3,4,3,1,6,3,2,1,1,1,2,1,1,3,7,1,7,5,4,3,6,6,3,5,5,5,4,3,6,5,2,7,7,7,7,6,7,4,6,3,7,4,6,2,5,3
18181,88,84,White County,IN,3,1,4,6,4,3,4,7,4,2,4,5,4,4,5,6,4,4,4,4,3,4,3,6,3,4,5,4,4,7,4,2,5,4,5,6,6,4,5,3,4,5,5,4,3,5,7,7,4,7,4,3,4,3,7,1,3,6,6,1,2,1,3,7,4,5,3,2,2,3,1,7,7,5,3,3,7,6,2,6,2,5,1,7,4,2,4,1,6,3,6,1,5,5,2,5,5,2,4,7,5,5,4,3,5,4,6,5,4,2,6,6,7,4,5,7,7,6,2,4,5,5,7,6,6
18183,99,110,Whitley County,IN,1,3,6,6,7,4,4,7,7,4,4,5,4,4,5,7,4,5,5,6,4,5,4,6,7,4,4,5,4,6,4,3,5,4,6,7,6,4,5,7,4,2,5,5,3,4,4,7,7,7,4,7,6,3,7,1,4,7,6,1,2,1,3,7,3,6,3,2,5,6,1,7,7,4,2,5,7,4,5,5,2,3,4,3,4,3,1,1,3,1,2,1,2,6,1,7,6,4,3,5,5,3,5,5,4,4,3,5,4,2,6,7,7,7,6,7,4,5,3,3,5,6,5,5,6
19001,22,20,Adair County,IA,4,7,2,2,1,1,3,2,2,6,2,3,1,2,4,2,1,2,2,1,2,2,1,4,1,2,2,2,2,2,3,3,1,4,2,2,1,2,2,1,1,2,2,1,3,3,1,2,2,2,2,4,3,3,5,1,2,2,2,1,2,5,3,7,2,3,6,4,4,6,1,5,7,1,1,3,7,4,2,7,4,5,7,5,7,6,5,1,7,4,2,1,1,7,2,7,4,2,4,3,2,1,2,2,2,2,2,7,7,2,7,2,4,4,2,7,2,3,6,3,4,3,6,7,2
19003,12,15,Adams County,IA,4,7,6,2,1,1,2,2,1,6,1,3,2,2,3,1,2,2,1,2,2,1,1,4,1,2,2,2,2,2,3,2,1,2,2,2,1,2,2,1,1,2,2,1,3,4,1,2,2,2,2,4,3,4,3,7,1,2,2,1,2,5,3,6,2,3,5,3,4,6,1,7,7,1,1,3,7,3,2,7,6,7,7,6,3,7,7,5,1,4,4,2,1,6,3,7,4,3,4,3,2,1,1,1,2,1,2,6,7,2,7,3,4,2,1,6,1,2,6,1,4,1,7,7,2
19005,29,32,Allamakee County,IA,3,6,2,2,2,2,2,5,2,2,3,3,2,2,5,4,3,2,2,2,2,2,5,3,2,2,2,3,2,6,3,2,2,3,1,2,3,2,3,2,2,4,3,2,3,4,2,5,3,5,2,3,4,4,6,1,4,2,4,1,2,5,2,7,2,4,5,2,4,5,1,6,7,2,2,3,7,2,6,6,1,7,6,1,3,2,1,7,4,3,6,2,6,5,2,4,3,3,2,3,3,6,2,4,6,3,5,6,6,2,5,2,5,1,2,6,2,3,6,6,5,3,5,7,4
19007,30,42,Appanoose County,IA,3,7,2,2,3,2,6,4,2,5,3,4,2,3,3,3,3,3,6,1,2,3,2,3,3,3,2,4,2,4,3,3,2,3,2,2,3,3,2,2,2,7,4,3,3,3,2,3,4,3,4,3,4,4,2,6,1,2,4,1,2,4,3,6,2,3,3,4,4,4,1,7,5,1,1,3,5,1,4,3,2,6,6,2,2,5,1,6,6,5,5,5,2,5,5,3,2,5,3,4,3,5,3,3,3,3,4,5,5,2,7,2,3,5,2,5,2,3,5,2,4,1,6,7,2
19009,15,11,Audubon County,IA,4,7,6,2,2,1,1,2,2,6,2,3,1,2,3,2,2,2,1,1,2,3,2,5,1,3,2,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,2,3,1,2,1,3,2,2,4,3,3,5,1,1,2,2,1,2,4,3,7,2,3,5,3,5,6,1,4,7,1,1,3,5,3,3,2,1,7,1,2,5,3,1,1,1,2,2,1,2,5,2,7,4,1,4,3,3,1,2,2,2,1,2,6,7,2,7,2,4,3,2,7,2,4,7,1,4,2,1,7,2
19011,130,109,Benton County,IA,1,7,5,3,3,3,5,5,3,2,3,3,3,3,4,2,3,3,5,3,3,3,3,5,7,3,5,4,3,6,3,4,3,3,3,5,3,3,4,7,3,6,3,2,5,5,3,5,4,5,3,7,4,3,5,1,1,2,3,1,2,1,3,6,2,3,4,5,4,5,1,5,7,1,2,3,5,2,6,6,3,5,5,1,3,3,3,1,1,2,1,1,2,7,1,7,7,3,4,4,4,6,3,5,3,4,6,5,7,2,7,5,4,4,2,7,4,3,6,4,4,5,3,7,4
19013,333,398,Black Hawk County,IA,1,7,7,5,5,6,5,5,5,4,6,3,6,6,3,5,6,6,7,4,7,6,5,7,7,6,5,7,6,6,7,3,6,2,5,7,6,7,6,7,6,3,6,6,3,3,7,4,7,5,6,7,5,3,2,1,3,6,6,1,2,3,3,7,2,3,4,3,3,5,1,7,7,2,3,3,5,7,6,4,6,5,6,2,5,6,3,6,2,6,1,4,5,7,3,3,1,7,5,6,6,4,7,7,7,7,5,5,6,2,6,5,4,5,5,7,4,2,6,6,4,4,4,7,4
19015,95,94,Boone County,IA,3,7,5,4,5,3,4,3,4,7,4,3,3,5,4,4,4,5,4,4,3,5,3,6,4,5,5,5,5,3,4,4,4,3,4,4,3,5,3,3,4,3,7,5,3,1,4,3,4,3,5,6,3,3,3,1,1,2,4,1,2,1,3,7,2,3,5,3,3,5,1,6,7,2,2,3,4,3,5,3,2,5,3,2,4,4,4,1,1,4,1,1,2,7,1,5,5,6,1,7,5,4,4,4,5,4,5,5,6,2,6,3,4,4,3,7,5,6,7,5,4,4,4,7,2
19017,119,112,Bremer County,IA,1,7,6,3,3,3,3,4,3,2,4,3,3,4,2,3,3,4,4,3,4,4,3,5,7,4,3,5,3,5,4,3,3,2,3,5,4,5,5,7,3,2,4,5,3,4,4,4,4,5,4,7,4,3,5,1,3,2,4,1,2,4,3,7,2,3,4,2,4,5,1,7,7,1,2,1,5,6,4,3,2,4,6,6,3,5,6,3,4,3,1,1,3,7,5,7,5,5,3,5,5,4,4,4,4,4,3,5,6,2,7,3,4,3,3,7,7,5,7,3,4,5,6,7,4
19019,68,77,Buchanan County,IA,3,7,4,3,3,3,4,5,3,2,4,3,2,4,3,3,4,4,4,3,7,4,3,5,7,4,4,4,2,6,4,4,3,2,4,4,3,3,5,7,3,3,4,4,3,4,4,5,4,5,4,7,4,3,6,1,3,2,4,1,2,1,3,7,2,4,4,4,4,5,1,6,7,1,1,3,6,6,5,5,3,6,7,2,4,3,1,1,3,3,3,2,5,6,3,6,5,3,4,4,4,4,4,4,4,4,4,5,6,2,7,3,4,3,4,7,3,4,6,5,5,4,5,7,2
19021,98,111,Buena Vista Count,IA,3,7,3,2,2,2,1,1,1,6,3,2,2,3,1,2,3,3,6,2,1,2,2,5,5,3,2,3,2,2,3,1,2,4,2,4,3,2,2,3,2,5,3,2,3,5,2,1,3,3,2,4,3,3,4,1,2,2,5,1,2,1,2,7,2,3,5,2,3,5,1,7,7,1,1,3,7,2,6,3,2,4,6,1,5,6,1,1,1,6,2,3,7,5,2,7,2,5,3,3,3,3,3,3,3,4,2,6,7,2,6,2,5,2,2,7,2,3,7,5,4,3,6,7,2
19023,72,55,Butler County,IA,4,7,4,2,2,2,3,4,3,4,2,2,2,2,2,2,2,2,4,3,2,2,2,5,7,3,2,3,3,4,2,3,2,2,1,4,2,2,2,7,2,4,2,2,3,4,3,4,3,4,2,6,4,3,6,1,3,2,3,1,2,4,3,6,2,3,4,4,3,5,1,5,7,1,1,3,7,1,6,6,2,4,1,1,3,2,1,1,2,2,1,1,3,5,1,7,6,1,3,3,3,3,2,3,2,3,3,5,6,2,6,2,5,2,2,7,7,3,7,5,4,3,2,7,2
19025,25,34,Calhoun County,IA,4,7,4,2,1,1,2,2,1,6,2,2,1,2,2,1,2,2,2,2,1,2,1,4,7,2,2,2,2,2,2,2,1,1,1,1,1,2,2,7,1,2,2,1,3,4,1,2,6,2,2,4,3,3,5,1,1,6,3,1,2,3,2,7,2,3,5,4,3,5,1,6,7,1,1,1,7,2,5,5,2,4,7,3,6,5,1,1,2,3,5,3,2,6,1,7,4,4,3,3,2,1,1,1,2,2,2,6,6,2,6,4,6,3,2,7,2,2,7,1,3,2,1,7,2
19027,123,135,Carroll County,IA,3,7,6,3,4,2,2,2,2,6,4,3,2,4,5,3,4,4,2,2,3,5,4,6,5,4,3,5,4,2,4,2,3,1,2,2,4,4,4,4,4,1,5,4,3,1,3,1,4,2,4,4,3,3,3,1,2,2,5,1,2,4,3,7,2,3,5,4,4,6,1,6,7,1,2,3,6,4,3,3,6,6,6,4,5,7,6,7,4,4,1,1,2,6,1,7,1,6,3,5,5,1,4,4,5,4,3,6,6,2,7,3,4,3,3,7,3,5,7,2,3,4,2,7,4
19029,37,33,Cass County,IA,3,7,4,3,3,2,2,2,2,6,3,3,2,4,3,2,3,4,2,1,3,3,2,5,2,4,3,4,2,2,4,2,2,1,3,2,2,2,2,3,2,1,4,3,3,1,3,2,3,3,4,4,3,4,4,1,2,2,3,1,2,5,3,6,2,3,5,3,4,6,1,6,7,1,1,3,7,6,3,6,4,7,7,3,5,6,4,1,1,4,2,3,2,6,4,7,2,6,4,4,4,1,3,3,3,3,3,7,7,2,7,2,4,1,3,7,2,3,6,1,4,3,7,7,4
19031,52,76,Cedar County,IA,3,6,5,3,3,3,5,7,6,2,3,4,6,3,5,5,3,3,5,3,4,3,4,6,2,7,5,3,3,7,3,5,4,4,3,5,5,3,2,4,4,6,3,2,6,7,3,5,7,6,3,7,5,3,6,1,2,2,3,1,2,6,3,7,2,4,4,3,4,5,1,7,7,1,1,3,6,6,4,2,3,5,4,1,2,4,1,1,5,3,1,1,2,7,1,7,7,2,5,4,6,6,2,7,3,3,6,5,6,2,6,4,4,3,2,7,4,3,5,4,5,5,1,7,4
19033,152,152,Cerro Gordo Count,IA,2,7,7,4,5,5,3,3,4,4,5,3,4,5,2,4,6,5,4,3,7,5,5,7,4,5,4,6,5,6,7,2,4,2,4,4,6,5,5,7,5,4,6,6,3,5,5,3,7,4,6,7,3,3,3,1,2,2,5,1,2,5,2,7,2,3,5,5,3,4,1,6,7,4,2,3,7,6,5,7,6,6,7,3,7,7,7,7,3,6,3,2,3,7,3,5,1,6,2,6,6,3,6,6,6,5,3,6,5,2,7,6,5,4,3,7,7,4,7,5,4,4,6,7,2
19035,29,46,Cherokee County,IA,3,6,3,2,1,2,2,2,1,6,3,2,1,2,1,2,2,2,4,1,2,2,5,4,3,2,2,3,2,2,2,2,1,5,3,2,2,2,2,2,2,4,3,2,3,4,2,2,2,2,3,4,3,2,2,1,2,2,4,1,2,1,2,7,2,3,6,7,4,6,1,7,7,2,1,1,6,1,5,5,1,7,7,1,5,6,1,1,5,5,2,1,2,7,2,7,2,6,3,3,3,3,2,2,2,2,2,7,7,2,7,2,4,4,2,7,2,3,7,4,4,3,6,7,4
19037,36,35,Chickasaw County,IA,3,7,4,2,2,2,3,4,2,2,3,3,2,3,2,2,3,3,2,2,2,3,2,4,2,3,3,4,3,5,2,3,2,2,1,7,2,3,2,2,2,3,3,3,3,1,2,4,3,5,3,5,3,3,6,1,2,2,4,1,2,5,3,7,2,3,4,3,4,5,1,6,7,1,1,3,7,6,4,6,4,7,7,5,6,3,7,4,2,2,2,2,2,6,5,7,4,2,2,4,3,3,3,3,3,2,2,6,6,2,6,2,4,4,2,7,7,4,7,2,4,4,2,7,4
19039,30,22,Clarke County,IA,3,7,4,3,2,2,6,3,2,6,3,3,2,3,3,2,2,3,7,1,3,3,2,5,2,3,3,4,2,3,3,2,2,3,2,6,3,2,3,2,2,6,4,2,5,7,2,2,3,2,3,4,3,3,5,1,2,2,3,1,2,4,4,6,3,3,5,4,5,5,1,6,7,1,1,3,6,7,1,2,6,7,7,4,1,5,7,1,5,5,3,2,4,6,5,5,3,5,3,4,4,1,3,4,3,2,2,6,7,2,7,2,4,2,3,5,2,3,5,1,4,3,6,7,2
19041,58,66,Clay County,IA,3,6,7,3,4,2,1,1,4,5,3,2,2,4,2,2,4,4,3,2,3,3,3,6,6,4,3,4,3,2,4,1,3,2,4,2,4,5,3,3,3,6,4,3,6,7,3,1,4,3,3,5,3,2,1,1,3,6,3,1,2,1,2,6,2,3,5,4,3,5,1,6,7,2,1,1,6,5,4,7,5,7,4,5,7,7,5,7,2,6,2,2,3,7,2,6,2,6,3,4,4,4,5,5,4,3,3,7,6,2,7,2,5,1,4,7,2,3,7,1,4,4,6,7,2
19043,30,43,Clayton County,IA,4,6,2,2,2,2,3,5,3,2,2,3,2,2,4,4,2,2,2,2,2,2,4,4,4,2,2,2,2,6,3,4,2,3,3,2,2,2,3,1,1,5,2,2,3,7,2,5,2,5,2,4,4,4,6,1,2,2,3,1,2,3,2,7,2,4,4,3,4,4,1,4,7,2,1,3,6,2,6,4,2,5,3,2,7,4,3,1,5,3,5,2,2,5,2,7,4,4,3,3,2,5,2,3,5,3,5,5,5,2,5,2,5,1,2,7,1,2,5,6,5,3,4,7,4
19045,164,182,Clinton County,IA,2,6,6,5,4,5,7,7,6,2,5,4,7,5,7,6,4,7,6,3,5,5,6,7,5,7,7,6,7,7,7,6,6,5,7,6,7,7,6,6,4,7,6,2,3,3,5,6,6,7,6,7,5,3,3,1,3,6,5,1,2,6,2,7,2,4,4,5,4,4,1,6,7,1,2,3,7,6,5,5,6,7,5,2,3,7,3,5,2,5,2,3,3,6,4,6,3,6,4,6,6,7,5,7,6,5,7,6,5,2,6,7,4,5,3,7,5,5,5,6,6,4,3,7,4
19047,60,53,Crawford County,IA,3,7,3,2,2,1,3,1,1,6,3,3,2,2,3,2,2,2,3,1,1,2,2,5,1,2,2,3,2,2,2,3,2,4,1,1,2,2,2,2,2,3,3,2,3,6,2,2,2,2,2,4,3,3,4,1,1,2,3,1,2,4,3,7,2,3,4,4,4,5,1,6,7,1,1,1,5,3,3,2,1,7,1,5,5,4,5,1,2,5,2,3,6,4,2,7,2,5,3,3,3,1,2,3,2,3,2,6,6,2,7,1,4,2,2,7,2,3,7,2,4,3,5,7,4
19049,311,346,Dallas County,IA,1,7,6,4,6,3,3,3,5,6,3,4,3,5,4,4,4,4,4,4,3,4,4,5,3,5,6,5,5,3,5,2,4,3,3,7,4,5,3,4,3,7,7,2,7,7,4,2,4,3,5,6,3,3,4,4,2,6,5,1,2,3,3,7,2,3,4,3,3,5,1,7,6,5,4,1,7,3,5,6,3,4,3,4,4,3,5,1,2,4,1,1,5,7,1,7,7,6,2,7,5,4,4,5,5,5,4,5,6,2,6,4,5,6,3,7,4,4,6,4,4,6,2,7,4
19051,14,20,Davis County,IA,4,7,1,2,1,1,2,5,2,5,2,4,2,2,4,1,2,2,3,2,3,2,1,3,5,2,2,2,2,5,2,4,2,4,4,5,2,2,1,1,1,6,2,2,3,3,2,4,6,4,2,4,4,4,5,7,3,2,2,1,2,3,3,6,2,3,3,5,5,4,1,7,6,2,2,3,6,3,2,6,6,4,1,6,7,5,7,1,3,2,3,3,6,4,2,5,5,1,4,3,2,5,1,3,2,2,5,6,6,2,6,5,3,1,2,6,3,3,5,4,4,2,3,6,2
19053,26,30,Decatur County,IA,4,7,3,2,2,1,1,3,1,6,4,3,1,2,2,2,2,2,4,1,2,2,1,3,1,2,2,3,1,3,3,1,1,2,1,2,1,2,1,2,1,2,3,2,3,4,2,1,3,2,2,3,3,4,5,5,4,2,3,1,2,6,4,6,3,3,5,7,4,6,1,5,6,1,1,3,3,5,4,2,6,6,7,4,7,3,1,4,6,6,5,5,5,5,6,5,4,5,3,3,3,1,2,1,2,2,2,7,7,2,7,1,3,2,2,5,2,3,6,2,4,1,1,7,2
19055,59,57,Delaware County,IA,3,6,4,3,2,2,5,6,5,2,3,3,2,3,4,2,3,3,3,2,3,3,2,5,4,3,4,4,4,7,3,4,2,2,7,2,3,3,3,3,2,3,4,3,3,3,3,5,6,6,3,6,4,3,7,1,2,2,4,1,2,1,2,7,2,4,5,5,4,3,1,6,7,1,1,3,7,4,5,2,2,6,6,3,4,3,3,1,1,3,4,1,2,6,2,7,4,3,4,4,4,5,3,4,4,3,5,5,5,2,6,3,5,2,2,7,3,4,5,4,5,5,4,7,4
19057,101,121,Des Moines County,IA,2,6,6,4,5,4,6,6,7,2,5,4,5,6,4,5,6,6,7,2,5,5,6,7,5,5,5,6,5,7,6,5,4,4,7,6,6,5,5,5,6,6,6,3,3,1,5,5,6,6,5,6,5,3,3,1,2,6,6,1,2,6,3,6,2,4,3,3,5,4,1,7,6,5,4,3,7,6,2,6,5,6,6,4,6,7,6,7,2,5,2,3,2,6,4,4,1,6,6,5,6,6,6,7,6,5,6,4,5,2,6,5,4,5,5,6,4,6,4,5,5,4,6,6,2
19059,34,41,Dickinson County,IA,3,6,4,3,3,2,2,2,6,5,3,2,2,3,4,4,4,3,4,2,3,2,3,4,6,3,2,4,2,2,4,1,2,2,2,3,3,2,2,4,2,5,4,2,3,3,2,1,3,3,3,5,3,2,3,7,4,2,5,1,2,1,2,6,2,3,4,3,3,5,1,7,7,2,3,1,6,3,5,7,1,7,7,5,6,6,3,5,4,3,7,1,1,7,1,5,2,6,2,4,3,3,4,4,3,3,2,6,6,2,7,2,6,3,2,7,2,3,6,3,4,6,7,7,4
19061,202,224,Dubuque County,IA,1,6,7,5,6,5,6,6,7,2,6,3,6,6,7,5,6,6,7,4,6,6,5,7,7,6,5,7,6,7,6,4,5,6,6,6,6,7,6,5,7,6,6,6,3,3,6,5,6,6,6,5,4,3,4,1,2,2,6,1,2,3,2,7,2,4,3,4,4,4,1,7,7,1,1,3,6,7,5,6,5,7,6,3,6,5,6,7,2,5,1,1,3,6,3,6,1,6,3,6,6,5,6,7,7,6,5,5,5,2,6,5,5,6,5,7,4,6,5,4,5,6,4,7,4
19063,15,28,Emmet County,IA,3,6,4,2,2,2,4,2,6,5,2,2,2,2,4,4,4,2,5,2,4,3,2,5,7,2,3,4,2,2,4,1,2,2,2,5,2,3,3,4,2,7,3,2,3,6,2,1,7,4,2,6,3,2,4,1,4,2,5,1,2,3,2,6,2,3,5,2,1,3,1,6,7,1,1,1,7,1,6,7,6,4,7,3,4,6,1,1,3,4,3,2,4,5,3,6,3,4,3,3,2,3,3,4,4,2,2,6,4,2,7,2,6,2,4,7,2,3,7,3,3,2,6,7,4
19065,43,40,Fayette County,IA,3,7,4,3,3,2,2,5,2,2,3,3,2,3,3,2,2,3,3,2,6,3,5,5,7,3,3,4,2,6,2,3,2,3,2,4,3,3,3,5,2,7,4,4,3,3,3,5,3,5,3,5,4,3,6,1,2,2,3,1,2,4,3,7,2,3,4,3,4,5,1,5,7,1,1,3,7,2,5,7,1,6,7,2,4,5,4,1,4,4,2,3,3,6,3,7,3,3,3,4,4,3,3,3,5,4,3,5,6,2,6,3,4,2,2,7,2,4,6,4,5,2,2,7,4
19067,38,54,Floyd County,IA,3,7,5,3,3,2,4,4,3,2,4,2,2,4,3,3,6,4,2,3,3,4,3,5,2,4,3,4,7,4,3,3,3,1,2,3,4,6,4,6,3,2,4,4,3,5,3,4,4,5,4,6,3,3,5,1,2,2,4,1,2,6,2,7,2,3,4,5,4,5,1,5,7,4,2,2,7,6,4,6,3,3,4,5,5,6,7,7,2,5,2,2,3,6,3,7,4,5,3,4,4,3,4,4,4,3,3,6,6,2,7,2,4,2,2,7,7,4,7,4,4,3,6,7,4
19069,28,20,Franklin County,IA,3,7,4,2,4,2,4,3,2,5,2,2,2,2,2,2,3,3,3,2,3,2,2,5,2,3,4,3,5,3,4,4,2,2,2,3,2,4,2,7,2,5,3,3,3,4,2,3,7,4,2,6,3,3,5,1,1,2,3,1,2,4,2,7,2,3,5,4,3,5,1,6,7,2,2,3,7,4,5,5,3,6,1,5,5,7,5,1,3,4,3,2,5,6,2,7,4,3,3,3,3,3,2,3,2,2,2,5,6,2,6,2,4,2,2,7,7,3,7,3,4,3,2,7,4
19071,16,23,Fremont County,IA,4,6,4,2,3,2,4,2,5,7,2,3,4,2,6,1,2,2,4,2,2,2,3,5,2,2,3,2,2,1,3,3,5,3,4,3,3,2,1,2,1,5,2,1,3,4,2,2,2,2,3,6,3,4,5,1,2,2,4,1,2,6,3,7,2,3,3,3,4,5,1,7,6,4,2,3,6,6,5,1,2,5,1,4,3,4,1,5,7,4,3,2,4,6,1,7,6,1,4,3,2,7,2,5,2,2,7,5,6,2,6,2,4,1,2,7,2,2,6,5,4,3,1,7,5
19073,24,36,Greene County,IA,3,7,4,2,2,2,2,2,2,6,2,3,2,2,3,2,2,2,2,2,1,2,2,5,6,3,2,3,2,2,2,2,2,2,2,2,2,3,4,4,1,4,2,2,3,1,2,2,2,2,2,4,3,3,4,1,3,2,4,1,2,3,3,7,2,3,4,4,3,5,1,6,6,3,2,3,7,2,4,6,3,4,5,2,6,2,5,1,1,4,3,2,3,6,3,7,4,3,3,3,3,3,2,2,2,2,2,6,6,2,7,3,5,2,2,7,3,2,7,2,3,2,6,7,2
19075,49,51,Grundy County,IA,1,7,3,2,2,2,3,4,3,5,2,3,2,2,2,2,2,2,4,3,2,2,2,5,7,2,2,3,4,5,2,3,2,4,1,4,3,3,3,6,2,7,2,2,3,7,3,4,2,4,2,6,4,3,5,1,2,2,3,1,2,3,3,6,2,3,7,3,3,5,1,7,7,1,1,1,7,7,4,5,1,6,7,6,4,4,1,1,4,2,1,1,3,7,2,7,6,1,3,3,3,5,2,4,2,2,5,5,6,2,7,3,4,3,3,7,2,3,7,5,3,4,5,7,4
19077,50,43,Guthrie County,IA,1,7,2,2,1,1,2,2,3,6,1,3,1,2,3,1,1,2,1,2,1,2,1,4,1,2,2,2,1,2,1,2,2,2,1,3,1,1,2,1,1,2,2,1,3,3,1,1,2,2,2,4,3,3,5,4,1,2,3,1,2,4,3,7,2,3,4,3,4,6,1,5,7,1,1,3,6,1,4,1,1,6,5,1,4,6,1,1,2,2,5,2,2,6,2,7,6,2,3,3,2,1,1,2,2,2,2,6,7,2,7,1,4,1,1,7,2,2,7,2,4,3,7,7,2
19079,45,60,Hamilton County,IA,3,7,6,3,2,2,3,3,2,6,3,2,3,3,4,5,3,3,4,2,3,3,2,5,4,4,3,4,6,3,5,2,3,2,2,2,3,4,6,5,2,3,4,3,3,3,3,3,4,3,3,5,3,3,4,1,3,6,5,1,2,1,2,7,2,3,4,3,3,5,1,6,7,3,2,1,7,7,6,5,2,7,1,6,6,4,5,1,4,5,1,1,4,7,1,7,3,5,3,4,4,4,3,4,3,3,4,6,6,2,6,5,5,2,3,7,3,3,7,3,3,4,4,7,4
19081,36,38,Hancock County,IA,3,7,4,2,2,2,4,2,4,5,2,3,1,2,2,1,2,2,6,2,2,2,1,4,6,2,2,2,2,3,3,3,2,1,2,6,2,3,3,7,1,5,3,2,3,4,2,2,3,4,2,5,3,3,6,1,2,6,4,1,2,5,2,6,2,3,5,5,2,4,1,3,7,3,2,1,7,2,3,4,2,3,1,1,7,2,1,1,3,3,2,1,4,6,1,7,4,4,3,3,2,1,2,2,2,2,2,6,5,2,7,3,6,3,2,7,2,2,7,5,4,3,1,7,2
19083,56,50,Hardin County,IA,3,7,3,2,2,2,4,3,2,5,2,3,2,2,2,2,3,3,3,2,2,2,2,5,3,3,3,3,4,4,5,3,2,2,1,2,2,3,2,7,2,3,3,2,3,5,2,3,4,4,2,5,4,3,5,1,2,2,4,1,2,3,3,6,2,3,5,3,3,4,1,7,7,1,2,1,7,4,6,4,1,5,3,5,4,6,5,1,1,4,2,2,4,6,3,7,3,3,3,3,3,4,2,3,3,3,4,5,6,2,5,2,5,3,2,7,2,3,7,3,3,3,3,7,4
19085,33,39,Harrison County,IA,1,7,5,3,3,2,4,1,6,6,2,3,4,3,6,2,2,3,3,2,3,3,6,6,2,3,3,3,3,1,4,3,3,4,4,6,3,3,2,4,2,6,3,2,3,4,3,2,4,2,3,6,3,4,6,1,2,2,2,2,2,4,3,7,2,3,6,4,4,5,1,5,6,6,5,3,7,7,3,6,1,7,1,3,1,4,3,3,4,3,2,1,1,6,3,7,6,4,4,4,4,6,3,5,3,3,6,6,6,2,7,3,5,2,3,7,3,3,6,6,4,4,5,7,4
19087,71,85,Henry County,IA,3,7,6,3,3,2,4,6,7,2,3,4,4,4,3,3,4,4,6,2,3,4,2,6,3,6,3,4,3,6,3,4,2,3,5,7,4,6,4,4,3,3,4,3,3,1,3,5,4,5,4,6,4,4,3,1,4,2,4,2,2,5,3,6,2,4,3,4,5,4,1,7,7,2,2,3,6,7,4,6,4,2,6,3,6,6,3,1,5,5,2,2,4,6,3,6,3,5,5,4,4,5,3,5,4,4,5,5,6,2,7,5,4,5,3,6,4,4,5,4,5,4,4,6,4
19089,30,34,Howard County,IA,3,6,2,2,2,1,2,4,2,2,2,7,2,2,4,4,2,2,2,2,2,2,4,3,3,3,2,3,3,5,1,2,1,3,1,3,2,2,2,2,2,6,3,2,3,3,2,4,2,5,2,4,3,4,6,1,1,2,2,2,2,6,3,6,2,3,4,2,4,6,1,6,7,1,1,3,7,3,3,3,3,6,5,6,6,5,1,1,4,2,2,2,5,4,2,7,3,3,2,3,3,3,2,3,4,2,2,5,6,2,6,2,4,2,1,7,5,3,7,3,5,3,1,7,4
19091,20,31,Humboldt County,IA,3,7,3,3,3,2,4,2,1,5,3,2,2,3,3,3,4,4,2,2,2,3,2,5,7,4,3,4,3,3,3,3,2,2,3,3,3,3,4,7,2,7,4,3,4,4,3,2,5,3,3,4,3,3,5,1,4,2,5,2,2,3,2,7,1,3,5,4,3,5,1,5,7,1,1,1,7,1,6,6,3,2,7,3,7,4,5,1,2,4,2,2,2,7,2,7,4,3,3,4,4,1,3,4,3,2,2,6,6,2,6,3,5,2,2,7,3,4,7,3,3,4,6,7,4
19093,19,24,Ida County,IA,4,7,1,2,2,1,2,1,1,6,7,2,2,2,2,1,2,2,7,1,1,2,1,5,1,2,2,3,1,2,2,2,1,5,1,2,2,2,3,1,1,4,2,2,3,7,2,1,2,2,2,4,3,3,5,1,1,2,3,2,2,4,3,7,2,3,5,4,4,6,1,7,7,1,1,1,7,2,5,7,3,6,1,4,4,6,7,1,3,5,3,2,2,6,2,7,2,4,3,3,2,1,2,2,2,2,2,6,7,2,7,1,4,2,2,7,1,3,7,1,4,2,1,7,2
19095,76,92,Iowa County,IA,4,7,5,2,5,2,5,5,2,4,2,3,3,2,4,2,2,2,4,3,2,2,2,4,5,2,4,3,4,6,2,4,2,4,2,6,3,2,7,4,3,4,2,2,4,4,2,5,3,5,3,6,4,3,4,1,3,2,5,2,2,1,3,6,2,3,4,4,4,5,1,7,7,1,2,3,6,4,6,6,1,6,6,2,7,6,3,1,4,3,1,1,4,7,1,7,4,3,4,3,3,6,2,5,2,3,6,6,6,2,6,5,4,4,2,7,4,3,6,4,4,5,4,7,4
19097,38,44,Jackson County,IA,3,6,6,3,2,2,7,7,4,2,3,3,5,3,6,5,3,3,4,2,3,3,2,5,6,7,6,4,3,7,3,5,3,4,4,3,4,4,4,3,3,4,4,3,3,3,3,6,3,6,3,6,5,3,6,1,4,2,3,2,2,5,2,7,2,4,4,4,5,5,1,6,7,2,2,3,6,3,5,6,3,7,3,2,6,5,1,1,4,4,3,3,2,5,2,6,5,4,4,4,4,5,3,5,4,3,7,6,5,2,5,6,5,2,2,6,2,4,5,3,5,4,4,7,4
19099,164,145,Jasper County,IA,3,7,7,4,6,3,7,4,4,5,5,3,3,6,2,4,4,5,4,3,4,5,4,6,7,5,6,6,4,4,6,4,3,3,3,4,4,5,3,5,6,7,7,5,3,7,4,4,6,4,5,5,4,3,4,1,1,2,4,2,2,1,4,6,3,3,5,5,3,5,1,7,7,3,2,1,5,6,4,5,5,2,3,3,5,3,3,1,5,4,1,1,2,7,1,5,4,6,2,7,5,5,6,5,6,5,5,6,6,2,7,6,5,6,3,7,5,6,6,5,4,5,6,7,2
19101,33,29,Jefferson County,IA,3,7,6,3,3,3,3,6,2,4,3,4,3,4,3,3,4,4,4,2,7,4,3,6,5,4,3,5,7,6,4,4,2,3,7,7,3,4,2,3,3,3,4,2,3,1,3,5,6,5,4,5,4,4,2,1,2,2,4,2,2,3,3,6,2,3,4,3,4,4,1,7,7,1,1,4,7,6,4,5,2,5,6,6,7,5,3,1,1,6,2,3,4,7,2,5,2,5,5,4,4,4,4,5,4,3,4,5,6,2,6,7,3,3,5,6,5,4,5,2,5,4,6,6,2
19103,763,850,Johnson County,IA,1,7,7,6,6,6,7,7,4,2,6,4,6,7,5,5,7,7,6,5,7,7,6,7,5,7,7,7,7,7,7,6,6,7,6,5,6,7,6,6,7,5,7,5,7,3,7,5,7,6,7,7,5,3,3,4,4,2,6,2,2,4,3,6,2,3,3,3,5,5,1,6,7,1,2,3,6,6,5,4,7,4,6,6,6,6,6,6,2,7,1,5,6,7,2,2,2,7,5,7,7,6,7,7,7,6,7,5,6,2,6,7,4,5,5,7,7,7,6,4,5,7,4,7,4
19105,72,72,Jones County,IA,1,6,3,3,2,2,5,7,3,2,3,3,4,4,4,3,3,3,5,2,7,3,4,5,4,4,5,4,2,7,3,5,3,4,3,6,3,3,3,3,3,5,4,3,4,4,3,5,5,6,4,6,4,3,6,1,4,6,3,2,2,4,2,7,2,4,3,3,4,3,1,4,7,1,1,3,5,5,5,6,1,6,5,3,5,4,6,1,2,4,2,2,3,6,2,7,5,5,4,4,5,6,3,5,4,3,6,5,5,2,5,5,4,5,3,7,4,4,5,4,5,5,4,7,4
19107,37,38,Keokuk County,IA,4,7,3,2,2,2,2,5,2,4,2,3,2,2,4,2,2,2,2,2,2,2,1,4,6,2,2,3,2,6,2,4,2,3,3,5,2,2,3,4,2,5,2,2,3,6,2,4,6,4,2,5,4,3,5,1,2,2,3,2,2,1,3,6,2,3,3,3,4,4,1,7,7,2,1,3,6,1,5,4,1,5,5,1,2,2,1,7,7,2,3,3,1,6,2,7,6,1,4,3,3,5,2,3,2,2,5,6,6,2,7,3,4,3,2,7,4,3,6,3,4,2,4,7,4
19109,30,53,Kossuth County,IA,3,7,2,3,2,2,3,2,2,5,3,2,2,4,3,3,5,4,4,1,2,3,2,5,7,4,3,4,2,2,2,3,2,2,2,3,3,3,2,7,2,2,6,3,3,4,3,2,7,4,4,5,2,3,6,1,3,2,4,2,2,5,2,6,2,3,5,3,2,4,1,5,7,2,1,3,7,2,4,7,4,7,1,7,5,6,1,3,4,3,2,3,2,6,2,7,2,3,3,4,4,3,3,3,3,3,3,6,5,2,7,6,6,3,2,7,3,3,7,4,3,2,4,7,4
19111,77,100,Lee County,IA,2,6,4,4,4,3,6,6,7,2,7,5,6,7,5,6,6,6,6,2,4,5,4,6,4,5,6,5,7,6,5,5,7,4,7,7,5,7,5,7,4,4,5,2,3,1,4,5,5,6,4,7,4,4,3,6,2,6,6,2,2,4,3,6,2,4,4,4,4,4,1,7,7,3,3,3,7,7,3,6,3,6,3,2,5,6,5,6,1,4,3,2,3,6,5,4,2,6,7,5,5,5,5,6,6,5,5,4,5,2,6,6,3,3,4,6,5,5,5,4,5,3,4,6,4
19113,1178,1259,Linn County,IA,1,7,7,5,6,6,7,7,4,2,5,4,6,6,7,5,7,6,7,5,6,6,6,7,6,6,7,7,6,7,7,4,6,5,6,6,6,7,5,6,7,7,6,4,7,4,7,5,7,5,7,7,4,3,3,1,4,2,6,2,2,3,3,7,2,3,4,6,4,5,1,7,7,2,2,3,5,5,6,5,6,5,3,5,6,5,5,4,2,5,1,1,4,7,2,5,1,7,4,6,7,7,6,7,7,7,7,6,7,2,6,6,4,6,4,7,6,2,6,4,6,6,3,7,4
19115,41,52,Louisa County,IA,4,6,4,2,2,3,4,7,7,2,2,4,4,2,5,5,2,3,5,3,4,2,2,5,3,7,3,3,3,7,2,5,4,4,4,5,7,3,2,2,3,6,2,2,3,4,2,5,3,5,2,7,5,3,7,1,4,6,3,2,2,6,3,6,2,4,4,3,4,4,1,6,7,6,5,3,4,3,5,3,5,6,1,1,3,2,1,1,4,3,4,2,6,4,3,5,6,2,5,3,3,6,2,6,2,2,6,5,6,2,6,4,4,3,2,6,3,4,5,5,5,4,4,7,5
19117,24,17,Lucas County,IA,3,7,1,3,3,2,7,4,3,5,3,3,3,3,3,2,2,4,4,1,2,3,2,5,6,4,3,4,2,3,2,2,2,4,3,2,3,5,4,3,2,3,4,3,3,1,3,3,3,3,3,4,4,4,3,6,5,2,3,2,2,4,4,6,2,3,4,5,5,5,1,7,6,1,1,1,3,3,2,5,3,4,7,5,6,7,1,5,5,3,3,4,4,4,3,5,3,5,3,4,4,4,3,3,3,2,3,6,7,2,7,3,4,1,2,5,3,4,3,5,4,2,6,7,2
19119,58,67,Lyon County,IA,4,6,3,2,1,1,3,1,2,5,2,2,1,2,4,4,2,2,2,2,2,2,5,3,3,2,2,3,2,1,2,2,2,5,1,1,2,2,2,3,1,4,2,2,3,7,2,2,2,2,2,5,3,2,2,1,2,2,4,2,2,1,2,6,2,3,6,3,3,5,1,7,7,3,2,3,7,2,6,2,3,5,1,2,1,5,4,3,5,1,2,1,4,4,1,7,5,4,3,3,2,3,2,2,2,2,2,6,6,2,7,2,6,1,2,7,2,2,7,2,6,3,3,7,2
19121,75,77,Madison County,IA,1,7,4,3,5,2,2,3,3,6,3,3,2,4,3,3,3,4,4,3,4,4,3,4,3,4,5,4,3,3,4,2,2,2,2,5,2,3,3,4,3,2,7,3,3,4,3,2,4,2,4,5,3,3,4,1,1,2,2,2,2,4,3,7,2,3,5,4,5,6,1,5,6,3,1,3,4,2,4,3,2,2,1,2,4,5,1,3,1,3,1,1,1,7,2,7,6,4,3,7,4,3,3,3,4,3,3,6,7,2,7,3,4,5,3,6,3,5,6,1,4,5,4,7,2
19123,92,104,Mahaska County,IA,3,7,5,4,4,3,7,5,3,5,3,3,3,5,5,4,6,5,3,4,3,5,3,5,7,5,4,5,3,5,4,4,3,4,3,4,4,4,3,5,4,6,5,2,3,1,4,4,6,4,6,4,4,3,2,1,3,2,3,2,2,3,3,6,2,3,4,6,5,6,1,6,7,1,1,3,6,6,3,3,2,2,1,4,5,5,6,5,1,6,2,2,3,5,3,5,5,5,2,5,5,6,4,5,5,4,6,6,7,2,7,5,4,6,4,7,4,5,6,3,4,4,6,7,4
19125,273,297,Marion County,IA,3,7,6,4,4,2,7,4,3,5,3,3,4,5,4,3,6,5,4,3,4,5,3,5,7,5,5,5,4,4,5,3,4,4,4,6,5,5,6,5,4,5,7,2,3,4,4,3,4,3,5,5,4,3,4,1,3,2,4,2,2,3,3,6,2,3,4,5,4,5,1,6,6,1,1,3,5,2,5,5,6,4,1,1,5,5,5,5,2,4,1,1,4,6,2,6,3,6,2,7,5,6,5,6,5,4,6,6,6,2,7,6,4,4,4,6,4,5,5,4,4,5,3,7,4
19127,128,132,Marshall County,IA,2,7,6,4,4,3,5,4,3,5,4,3,5,5,2,3,4,5,7,2,3,5,4,6,4,5,5,6,6,5,5,4,4,3,2,3,5,5,4,4,4,5,6,3,3,5,4,4,5,4,5,5,4,3,3,1,2,2,5,2,2,1,3,6,2,3,6,3,3,5,1,6,7,1,1,1,6,4,6,7,5,6,3,3,3,5,7,5,3,5,1,3,6,5,3,6,2,6,7,6,6,6,5,6,6,5,6,5,6,2,6,5,4,2,3,7,4,5,7,3,3,4,4,7,4
19129,33,34,Mills County,IA,1,7,5,4,4,4,4,2,7,7,4,3,5,5,7,4,5,5,4,5,5,5,7,6,3,5,4,5,4,2,7,3,5,6,5,5,5,4,3,4,4,7,5,4,3,5,5,2,7,3,6,7,3,4,6,1,3,2,3,2,2,5,3,7,2,3,4,5,4,5,1,6,3,4,2,3,6,7,4,4,1,6,6,4,5,2,1,3,2,2,1,2,1,5,3,7,6,4,4,5,6,7,4,6,4,3,7,6,6,2,7,3,4,1,4,7,4,6,6,1,4,6,4,7,2
19131,35,47,Mitchell County,IA,3,6,7,3,2,2,4,3,2,2,3,3,2,3,5,4,3,3,2,2,2,2,2,4,2,3,3,3,5,4,2,3,2,2,1,2,3,4,3,2,2,2,4,2,3,5,2,3,3,5,3,6,3,3,7,1,4,2,3,2,2,6,3,6,2,3,4,4,4,5,1,5,7,2,3,1,6,1,6,4,2,7,1,4,5,3,1,1,6,1,2,3,4,6,1,7,3,2,2,3,3,4,2,3,3,2,3,5,6,2,6,2,4,2,1,7,7,3,7,4,4,3,5,7,2
19133,26,20,Monona County,IA,3,6,3,2,2,2,3,1,3,6,2,3,2,2,2,2,2,2,3,1,2,2,2,5,1,2,2,3,2,1,3,2,3,4,2,2,3,2,2,2,1,6,3,2,3,3,2,2,2,2,2,5,3,3,5,1,1,2,2,2,2,4,3,7,2,3,4,3,4,5,1,5,7,7,6,3,6,4,5,7,2,7,7,6,3,7,1,4,5,4,3,2,1,5,2,7,4,4,3,3,3,6,2,5,3,2,6,6,6,2,6,1,5,1,2,7,3,3,6,5,3,2,5,7,4
19135,29,27,Monroe County,IA,3,7,2,2,2,1,7,4,3,5,2,4,2,2,5,1,2,3,3,2,2,2,1,4,6,2,3,3,3,4,2,4,3,4,7,3,4,3,2,2,1,5,2,2,7,1,2,4,5,3,2,4,4,4,1,1,1,2,2,2,2,4,3,6,2,3,4,5,5,5,1,7,6,2,1,3,6,3,1,5,2,4,1,2,4,5,1,6,1,2,3,2,3,5,2,5,5,4,4,3,3,5,2,4,2,2,5,6,6,2,7,3,3,2,3,5,2,2,5,1,4,2,3,7,1
19137,36,36,Montgomery County,IA,3,7,7,3,3,2,3,2,2,6,2,3,3,3,4,3,4,4,2,2,2,3,3,6,2,4,3,4,3,2,3,3,2,2,5,3,2,4,2,3,2,5,4,2,7,1,3,2,4,2,4,5,3,4,4,1,3,2,4,2,2,5,3,7,2,3,5,4,4,6,1,6,7,1,1,3,7,5,3,7,3,7,7,4,7,7,4,5,1,5,3,2,2,5,4,6,2,4,4,4,4,4,4,3,4,2,4,7,7,2,7,2,4,5,2,7,2,4,6,4,4,2,4,7,2
19139,119,119,Muscatine County,IA,2,6,5,5,6,5,6,7,7,2,4,4,7,5,6,6,5,7,6,4,7,5,5,6,4,7,6,6,7,7,5,5,6,5,6,6,7,7,7,5,5,7,6,3,7,1,6,5,7,6,6,7,6,3,5,1,2,6,5,2,2,6,3,6,2,4,3,4,4,3,1,6,7,5,5,3,7,6,5,3,6,6,5,2,4,4,4,6,5,4,1,2,6,4,2,5,2,5,7,6,6,7,5,7,6,5,7,4,5,2,5,7,4,6,3,7,5,6,5,4,5,5,4,7,4
19141,36,30,O'Brien County,IA,3,6,5,2,2,1,3,1,1,5,3,2,2,3,3,2,3,3,2,2,2,2,5,4,3,3,2,3,2,2,7,2,2,1,2,2,2,5,5,2,2,2,3,2,7,3,2,2,3,3,2,4,3,2,2,1,3,2,3,2,2,1,2,7,1,3,6,3,4,6,1,5,7,3,2,1,7,3,4,7,6,6,1,6,5,7,1,1,1,3,2,1,4,5,1,7,3,5,3,3,3,3,3,3,3,3,2,6,7,2,7,2,4,2,2,7,2,3,7,2,4,3,6,7,1
19143,31,22,Osceola County,IA,3,6,2,2,2,1,2,1,5,5,2,2,1,2,5,4,2,2,2,2,2,1,2,4,3,2,2,2,1,2,2,2,2,6,1,1,2,2,2,2,1,2,2,2,7,3,1,1,2,3,2,4,3,2,4,1,3,2,4,2,2,1,2,6,2,3,6,3,3,6,1,7,7,5,3,1,7,5,5,1,1,6,1,3,5,3,1,1,1,3,2,1,2,5,1,7,4,2,3,3,2,3,2,2,2,1,2,6,7,2,7,2,5,1,2,7,1,2,7,2,4,2,1,7,2
19145,56,58,Page County,IA,3,7,6,3,3,2,6,2,2,6,2,3,3,3,3,2,4,4,3,2,2,4,3,5,2,4,4,5,6,2,3,4,3,5,4,3,4,5,4,3,3,3,4,2,6,1,3,3,4,3,3,5,3,4,2,5,3,2,3,2,2,6,3,7,2,3,5,4,4,5,1,7,6,2,2,3,7,2,4,6,3,5,7,5,3,7,3,5,2,5,2,4,2,6,5,7,3,6,4,4,4,5,4,5,5,3,6,6,6,2,7,2,4,1,3,7,3,4,6,4,4,3,7,7,2
19147,42,36,Palo Alto County,IA,3,7,5,2,2,1,1,2,4,5,2,2,1,2,2,2,2,2,2,1,2,2,1,4,7,2,2,3,1,2,4,1,2,3,2,3,2,2,1,4,1,3,2,2,7,3,1,1,3,3,3,7,3,3,5,1,3,2,4,2,2,3,2,6,2,3,5,3,2,5,1,4,7,5,3,3,7,3,3,6,5,2,7,4,3,5,1,5,3,5,4,3,2,6,1,7,3,4,3,3,2,3,2,2,2,2,2,6,6,2,7,2,5,5,2,7,1,2,7,4,4,2,4,7,2
19149,126,149,Plymouth County,IA,3,6,4,3,3,2,3,1,2,6,4,2,2,4,2,3,4,4,4,2,2,4,6,5,4,4,3,4,2,1,3,2,3,3,3,3,4,3,2,3,3,4,4,4,7,5,3,2,4,2,4,6,3,2,5,1,3,2,5,2,2,1,2,7,2,3,5,7,4,5,1,6,7,4,2,3,7,3,6,4,1,6,7,2,6,5,3,1,2,3,1,1,2,7,1,7,4,5,3,4,4,5,3,4,4,4,5,7,6,2,7,2,5,3,2,7,4,5,7,6,4,5,3,7,4
19151,13,15,Pocahontas County,IA,4,7,3,2,1,1,2,2,1,5,1,2,1,2,2,1,1,2,3,2,1,1,1,4,7,2,2,2,2,2,2,2,1,1,1,2,1,2,2,5,1,2,2,1,7,1,1,2,4,3,2,5,3,3,5,1,1,2,3,2,2,1,2,7,2,3,5,6,3,5,1,5,7,1,1,3,7,1,5,5,1,5,1,6,6,5,5,1,5,2,3,2,2,7,1,7,4,1,3,3,2,3,1,2,1,2,2,6,6,2,7,2,5,1,2,7,1,2,7,5,4,1,1,7,4
19153,2691,2885,Polk County,IA,1,7,7,5,7,6,7,3,6,6,6,4,4,7,3,5,7,7,6,5,7,7,6,7,6,6,7,7,7,6,7,4,5,6,6,7,6,7,6,6,7,4,7,5,7,3,7,3,7,4,7,7,4,3,1,5,5,6,7,2,2,3,3,7,2,3,4,3,3,5,1,6,5,2,3,1,3,6,6,5,7,5,6,6,6,7,4,6,1,6,1,1,6,7,3,3,1,7,2,7,7,6,7,6,7,7,6,5,6,2,6,6,5,6,5,7,5,2,6,5,4,6,4,7,4
19155,193,224,Pottawattamie Cou,IA,1,7,7,5,5,6,6,2,7,6,5,3,7,6,7,4,6,6,6,4,6,6,7,7,6,6,5,6,6,2,7,3,5,5,7,7,6,7,6,7,6,7,6,4,7,1,6,3,7,5,6,6,3,4,4,5,4,6,5,2,2,4,3,7,2,3,5,5,4,5,1,4,6,5,3,3,5,7,5,3,5,6,5,4,5,6,5,5,4,6,1,2,4,6,2,4,6,7,7,6,7,7,6,7,7,6,7,6,6,2,7,5,4,2,5,7,5,5,6,2,4,5,4,7,4
19157,75,78,Poweshiek County,IA,3,7,7,3,3,2,7,5,2,5,3,3,2,4,1,2,4,4,4,2,3,4,3,5,7,4,3,5,3,5,3,4,2,2,2,3,3,4,4,7,3,3,4,3,6,5,3,4,6,4,3,5,4,3,1,1,2,2,4,2,2,1,3,6,2,3,5,6,4,6,1,7,7,1,1,3,6,6,3,5,1,2,6,2,5,5,5,5,3,5,5,2,4,7,4,6,2,6,4,4,5,5,3,4,4,3,5,6,7,2,7,5,5,2,3,7,3,4,6,2,4,5,6,7,2
19159,14,14,Ringgold County,IA,4,7,2,1,1,1,5,2,1,6,1,3,1,1,3,1,1,1,2,1,2,1,1,3,1,2,1,2,1,2,2,2,1,5,1,1,1,1,1,1,1,1,1,1,6,1,1,2,1,2,1,3,3,4,1,1,1,2,2,2,2,6,4,6,2,3,4,5,4,5,1,7,7,2,2,3,5,1,4,2,2,6,7,4,2,6,1,4,1,4,6,5,4,5,2,5,3,3,3,2,2,1,1,1,1,1,1,6,7,2,7,1,4,1,2,6,1,2,6,3,4,1,7,7,1
19161,35,29,Sac County,IA,4,7,2,2,2,1,2,1,1,6,3,2,1,2,2,1,2,2,4,2,1,2,1,4,6,2,2,2,1,2,2,2,1,3,2,2,2,1,2,4,1,1,2,2,7,1,1,2,2,2,2,4,3,3,5,1,3,2,4,2,2,4,3,7,2,3,5,3,3,6,1,7,7,4,3,1,7,6,2,3,2,6,7,1,6,3,7,1,1,3,5,2,2,6,1,7,4,3,3,3,2,1,2,2,2,2,2,6,6,2,7,1,5,1,1,7,1,3,7,4,3,2,3,7,2
19163,502,485,Scott County,IA,1,6,7,6,6,6,7,7,7,2,7,7,7,6,6,6,7,7,7,5,6,7,7,7,5,7,7,7,7,7,7,5,6,4,7,7,7,7,6,7,7,6,6,4,7,1,6,6,7,6,7,7,5,3,2,6,3,2,6,2,2,6,3,6,2,4,4,4,5,5,1,6,7,2,3,3,5,7,6,4,6,5,5,3,6,7,5,4,1,6,1,3,5,7,4,5,3,7,7,6,7,7,7,7,7,7,7,5,5,2,6,7,4,6,5,7,5,3,5,4,6,6,4,6,6
19165,31,37,Shelby County,IA,3,7,2,2,2,2,2,2,3,6,2,3,1,2,3,2,2,2,2,1,1,2,2,5,1,2,2,3,2,2,2,2,1,1,2,2,2,2,2,2,1,2,2,2,7,1,2,2,2,2,3,4,3,3,4,1,2,2,3,2,2,4,3,7,2,3,4,3,4,5,1,7,6,1,1,3,6,1,5,5,1,6,7,3,6,4,4,1,1,3,1,1,2,7,1,7,3,4,4,3,3,4,2,2,2,2,3,6,7,2,7,2,4,4,2,7,2,2,7,4,4,4,2,7,4
19167,195,183,Sioux County,IA,3,6,5,3,2,2,5,1,1,6,3,2,2,3,3,2,4,5,6,2,3,3,7,4,6,3,5,4,4,2,3,4,2,2,3,3,3,4,5,3,3,2,4,3,6,3,3,3,4,2,3,5,3,2,3,1,5,2,6,2,2,1,2,7,2,3,6,5,4,5,1,6,7,6,5,3,7,5,4,5,2,2,5,2,4,5,1,3,3,2,1,1,5,4,1,7,1,4,3,4,4,3,3,4,4,4,2,6,6,2,7,3,4,3,3,7,3,4,7,5,5,5,3,7,2
19169,270,318,Story County,IA,1,7,7,4,6,5,4,3,4,7,5,3,5,6,5,4,6,6,7,4,5,6,5,7,5,6,6,6,7,4,6,4,6,4,6,5,5,7,5,5,5,4,7,4,7,4,5,3,6,4,6,6,4,3,2,1,4,2,6,2,2,1,3,7,2,3,4,2,3,4,1,6,7,3,3,1,5,4,6,6,7,4,7,5,6,3,4,3,3,7,1,5,6,7,3,4,2,7,3,7,6,6,6,6,7,6,6,5,6,2,6,5,5,4,4,7,5,5,6,6,4,6,3,7,4
19171,44,51,Tama County,IA,3,7,3,2,2,2,3,5,2,5,2,3,2,3,2,2,2,3,4,2,2,3,2,5,7,3,2,3,2,5,2,3,2,3,1,3,2,2,2,6,2,5,3,2,6,5,3,4,3,4,3,6,4,3,4,1,1,2,3,2,2,1,4,6,2,3,5,5,4,5,1,5,7,2,1,3,7,3,4,4,1,6,4,3,2,4,1,1,1,3,2,3,6,6,2,7,5,4,4,3,3,5,2,4,3,3,5,6,7,2,6,4,4,4,2,7,2,3,7,4,4,3,4,7,2
19173,22,26,Taylor County,IA,4,7,4,2,1,1,5,2,1,6,1,3,1,2,3,1,1,2,1,1,2,1,1,3,1,2,2,2,1,2,1,2,1,3,1,2,1,1,1,1,1,1,1,1,7,4,1,2,1,2,1,4,3,4,2,1,2,2,2,2,2,6,4,6,2,3,4,5,4,5,1,6,7,2,1,3,6,1,5,6,1,2,7,3,3,5,6,4,1,3,4,4,4,6,2,7,5,1,3,2,2,1,1,1,1,1,1,6,6,2,7,1,4,1,1,6,1,2,6,2,4,1,7,7,1
19175,56,48,Union County,IA,3,7,5,3,4,2,5,3,2,6,3,3,3,4,4,3,4,5,4,2,7,4,3,6,2,4,5,5,5,2,7,4,2,1,3,2,3,4,4,3,3,1,5,2,7,1,3,3,4,3,4,3,3,3,2,7,1,2,4,2,2,5,4,6,3,3,4,4,4,5,1,7,6,1,1,3,7,3,1,7,7,6,7,3,6,7,1,7,5,5,2,3,2,7,2,5,2,3,1,5,5,1,5,4,4,2,3,6,6,2,6,5,4,5,3,6,4,4,6,3,4,2,7,7,2
19177,22,22,Van Buren County,IA,4,7,2,2,1,2,2,6,4,4,3,4,2,3,3,1,1,2,7,2,2,2,1,4,4,2,2,2,2,6,2,4,1,2,5,7,2,2,2,3,1,5,2,1,7,1,1,4,3,5,2,6,4,4,2,1,1,2,4,2,2,3,3,6,2,3,3,5,5,5,1,6,6,1,1,3,6,1,5,5,3,3,1,4,6,3,1,1,7,2,4,4,4,5,2,6,5,1,5,3,2,5,1,2,2,2,4,5,6,2,6,3,4,3,2,6,4,2,5,2,6,1,6,6,1
19179,85,99,Wapello County,IA,2,7,4,4,5,4,7,5,3,5,4,4,4,5,5,4,6,5,4,3,6,5,4,6,7,5,4,6,4,5,5,4,4,4,4,6,5,5,5,4,4,7,5,3,7,5,5,4,7,4,5,4,4,4,2,7,3,6,5,2,2,3,3,6,2,3,4,5,5,4,1,6,5,2,2,3,5,7,3,6,6,6,7,2,4,7,4,7,4,4,2,4,3,5,6,2,2,5,7,6,6,6,6,6,6,5,6,5,6,2,7,5,3,3,4,6,4,5,5,2,4,2,6,7,2
19181,241,285,Warren County,IA,1,7,6,4,6,4,7,3,4,5,4,3,2,6,2,4,5,5,4,4,5,5,5,6,6,5,6,6,4,3,6,3,3,3,4,6,3,5,3,6,5,3,7,2,6,1,5,3,5,3,5,7,4,3,3,1,4,2,3,2,2,4,4,6,2,3,3,3,5,5,1,6,5,2,2,3,2,4,6,5,4,3,4,4,4,3,1,4,5,2,1,1,2,7,2,7,7,7,2,7,6,4,5,3,5,5,4,5,6,2,7,5,4,5,4,6,4,5,5,5,4,6,4,7,2
19183,73,73,Washington County,IA,1,7,7,4,4,3,4,6,3,2,4,4,4,4,4,3,4,5,5,3,4,5,3,5,4,6,4,5,4,6,4,4,3,5,6,6,5,5,4,3,6,3,5,4,7,1,4,5,4,5,4,6,4,3,5,1,4,6,5,2,2,4,3,6,2,3,4,4,5,6,1,6,7,2,2,3,7,4,4,5,4,4,6,4,6,6,6,1,1,4,1,1,5,5,1,7,5,5,5,5,5,5,4,6,4,4,5,6,7,2,7,5,4,3,5,7,4,5,5,4,5,5,2,7,5
19185,10,6,Wayne County,IA,4,7,2,2,1,1,6,4,2,5,5,4,1,2,1,1,2,2,3,1,1,1,1,3,1,2,1,2,1,3,1,1,1,2,3,2,1,1,2,1,1,2,2,1,7,1,1,3,1,3,1,4,4,4,2,7,3,2,2,2,2,5,4,6,2,3,3,6,4,4,1,7,7,1,1,3,7,1,5,2,1,7,7,6,3,6,1,1,6,2,5,4,1,6,2,5,4,1,3,2,2,1,1,2,2,1,2,6,6,2,7,1,3,1,2,6,1,2,4,1,4,1,7,7,1
19187,91,131,Webster County,IA,2,7,6,4,4,3,5,3,2,5,4,3,3,5,4,4,6,5,4,2,4,5,4,6,7,5,5,6,7,3,5,4,3,1,4,2,4,7,5,6,4,2,5,3,7,5,4,3,5,5,5,4,3,3,4,1,2,2,6,2,2,1,2,7,2,3,5,4,3,5,1,6,6,2,1,1,7,3,6,7,4,7,7,3,6,7,7,7,2,6,2,2,4,6,3,5,2,6,7,5,5,3,5,4,6,5,3,6,6,2,6,6,5,6,3,7,4,5,7,5,4,3,5,7,2
19189,34,31,Winnebago County,IA,3,7,3,2,2,2,3,3,6,5,3,4,2,2,4,4,2,2,2,2,3,3,2,4,6,3,2,3,4,3,3,2,2,4,2,6,3,3,3,7,2,5,5,3,7,3,2,2,4,4,3,5,3,3,4,1,4,2,6,2,2,5,2,6,2,3,6,3,2,4,1,7,7,1,1,1,7,1,6,6,1,6,1,6,6,5,4,1,3,4,1,2,4,7,1,7,3,4,3,3,3,3,2,3,3,2,2,6,4,2,7,5,6,4,2,7,2,3,7,3,4,3,5,7,4
19191,60,63,Winneshiek County,IA,3,6,4,3,2,2,2,4,2,2,3,3,2,3,4,3,3,3,2,2,2,3,7,4,2,3,2,4,2,5,2,1,2,3,2,2,3,2,3,2,2,2,4,2,7,3,2,4,3,5,3,3,3,4,6,1,3,2,4,2,2,6,2,6,2,4,4,2,4,5,1,7,7,2,1,3,5,1,6,6,2,7,5,1,7,4,5,4,7,5,1,2,4,6,3,7,2,4,2,3,3,4,3,3,5,4,3,5,6,2,6,2,4,2,2,7,2,3,6,6,5,5,2,7,4
19193,369,328,Woodbury County,IA,1,6,7,5,5,5,6,2,4,6,5,3,5,6,3,4,6,6,6,3,5,6,5,7,5,6,6,7,7,5,7,4,5,6,6,6,7,7,6,5,6,7,6,3,7,1,6,3,6,4,6,6,3,2,2,1,2,2,6,2,2,4,3,7,2,3,5,7,4,6,1,3,7,5,4,3,6,6,5,6,6,6,7,3,6,6,4,6,1,6,1,3,6,5,2,4,3,7,7,6,6,7,6,7,7,6,7,7,7,2,7,4,5,2,4,7,6,2,7,3,3,4,3,7,4
19195,33,41,Worth County,IA,4,7,4,2,2,2,2,3,4,4,2,2,2,2,6,5,2,2,2,2,4,1,2,4,1,2,2,2,2,3,4,2,2,2,2,3,3,2,2,6,5,3,2,2,7,3,2,3,3,4,2,7,3,3,6,1,1,2,5,2,2,6,2,7,1,3,4,4,2,4,1,6,6,4,3,3,7,4,6,2,3,7,7,1,6,2,6,1,1,2,2,2,3,6,2,7,7,3,3,3,2,4,2,4,2,2,3,6,5,2,6,3,5,3,1,7,7,2,7,3,4,3,1,7,4
19197,23,22,Wright County,IA,3,7,5,2,2,2,2,3,2,5,2,2,2,2,3,3,3,2,3,2,1,2,2,4,4,2,2,3,3,3,7,2,3,5,1,5,2,3,2,6,2,1,2,2,7,1,2,2,3,3,3,5,3,3,4,1,2,2,4,2,2,4,2,7,2,3,5,3,3,6,1,7,7,1,1,1,7,2,5,6,4,7,4,2,5,7,1,1,4,5,3,1,5,6,2,6,3,5,3,3,2,1,2,2,3,3,2,6,6,2,6,3,5,5,2,7,1,3,7,3,3,2,5,7,2
20001,31,34,Allen County,KS,3,4,7,3,3,1,2,4,3,5,3,4,6,4,7,6,3,3,4,2,2,3,5,3,6,3,3,5,2,3,2,4,4,5,6,4,7,3,3,4,3,1,7,2,7,1,2,1,3,4,6,6,3,5,2,7,6,2,5,2,2,1,4,5,4,3,3,6,3,5,4,6,6,1,1,1,6,4,1,7,1,6,1,1,6,6,7,6,5,4,4,5,3,5,3,4,3,4,5,4,4,1,3,6,3,3,2,4,4,2,6,2,4,7,3,6,4,3,4,2,5,1,6,6,1
20003,18,25,Anderson County,KS,3,4,5,2,2,1,1,2,2,5,1,4,3,2,3,6,1,2,2,2,2,1,1,4,6,2,2,2,1,2,2,3,2,4,1,2,3,1,3,6,1,3,2,1,7,1,1,1,7,4,2,5,3,4,2,6,6,2,4,2,2,3,4,5,4,3,2,5,4,6,4,6,5,5,3,1,6,3,2,2,4,5,1,5,6,5,7,1,6,2,4,4,3,5,2,6,5,4,5,3,2,5,1,3,2,2,5,5,5,2,5,1,4,2,2,6,1,2,5,4,4,2,7,6,1
20005,32,30,Atchison County,KS,3,6,7,4,5,3,3,2,7,6,6,4,5,6,2,7,3,5,5,5,4,5,7,5,4,7,6,6,4,2,4,2,4,6,7,7,7,5,2,4,4,5,6,3,7,1,7,2,4,4,5,6,3,4,2,6,6,6,5,2,2,6,3,6,2,3,3,5,2,3,1,6,5,5,3,1,7,1,3,6,5,6,6,5,5,7,3,6,2,5,2,4,1,6,5,5,3,6,4,6,6,6,5,6,5,3,6,3,4,2,6,6,4,2,3,6,3,4,6,2,5,2,3,7,1
20007,5,18,Barber County,KS,4,3,1,1,1,1,1,1,1,5,1,2,1,1,1,5,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,4,1,2,2,3,3,1,3,6,2,2,2,4,5,5,4,2,3,5,5,5,4,7,2,6,2,1,5,4,3,7,6,7,7,6,7,7,1,5,1,4,6,3,2,6,1,6,2,5,4,2,2,1,1,1,1,1,1,3,6,2,5,1,6,4,1,5,1,1,5,4,2,1,6,7,1
20009,37,50,Barton County,KS,3,3,4,3,3,1,2,1,2,5,3,2,2,4,1,7,6,4,2,1,2,4,3,2,2,4,3,5,2,2,3,2,2,5,1,2,3,3,3,3,3,1,5,2,7,1,3,2,3,4,4,2,2,2,2,1,6,6,5,2,2,4,4,6,3,2,2,4,3,3,1,7,4,7,6,1,6,4,2,7,2,7,6,3,6,7,7,4,1,5,4,4,5,5,4,5,1,5,7,5,5,1,4,3,5,4,3,5,6,2,5,3,5,1,3,6,3,3,7,4,2,2,7,7,1
20011,24,15,Bourbon County,KS,3,4,7,3,3,2,6,3,3,5,3,4,3,4,3,6,3,4,7,2,3,3,3,4,7,4,6,5,3,3,3,5,2,5,3,2,3,4,2,3,3,3,4,2,7,1,3,2,3,4,5,6,4,4,1,7,7,2,6,2,2,1,4,5,4,3,3,6,3,6,4,6,4,2,1,1,6,4,3,6,1,6,1,4,6,7,7,6,6,5,5,4,2,6,2,5,2,4,5,4,4,4,4,4,4,3,4,6,5,2,7,3,4,6,3,5,3,3,3,4,5,1,4,6,1
20013,12,8,Brown County,KS,3,6,2,2,4,1,2,2,5,6,5,4,6,5,2,6,2,2,2,2,1,2,3,4,2,3,2,3,2,2,1,2,1,3,5,2,2,2,1,2,2,2,3,1,7,4,3,2,2,3,2,5,3,4,2,5,4,6,6,2,2,6,3,6,2,3,4,5,2,3,1,4,4,3,2,1,7,4,2,7,1,1,1,6,4,7,1,7,6,6,3,4,4,6,5,6,3,4,4,3,3,4,2,2,2,2,3,4,4,2,6,2,5,3,2,7,2,3,6,7,5,2,5,7,1
20015,142,164,Butler County,KS,1,3,5,5,4,2,4,2,5,5,3,3,3,3,4,7,4,4,6,3,4,4,6,4,4,4,6,5,5,2,5,3,3,5,6,3,4,5,3,5,4,1,7,3,7,6,3,3,4,5,3,5,3,4,4,7,5,2,4,2,2,1,4,5,3,3,4,6,4,4,4,5,4,5,3,1,6,4,3,3,1,3,3,2,3,3,3,3,4,3,2,1,3,7,2,6,6,5,2,4,4,1,4,3,5,6,2,5,5,2,5,4,5,5,3,6,3,7,5,4,4,5,3,6,1
20017,1,2,Chase County,KS,4,3,2,1,1,1,1,2,1,5,1,3,2,1,1,5,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,1,1,4,1,1,1,1,1,1,1,3,1,1,7,1,1,1,1,4,1,3,3,4,4,4,6,2,2,2,2,1,4,6,3,3,2,6,4,4,4,5,3,1,1,1,6,7,1,6,3,6,1,2,7,1,1,4,7,5,6,2,1,7,1,3,6,1,5,2,2,1,1,1,1,1,1,4,5,2,5,1,6,1,1,5,1,1,5,1,3,1,1,6,1
20019,6,9,Chautauqua County,KS,4,3,3,1,2,1,3,2,1,4,1,3,1,1,3,5,1,1,2,2,1,1,2,2,7,2,2,2,1,2,1,2,1,4,1,1,1,1,1,5,1,1,1,1,7,1,1,2,1,4,1,5,4,6,4,5,2,6,2,2,2,1,4,5,4,3,6,6,1,4,4,7,3,1,1,1,1,1,1,3,1,5,1,1,3,5,1,1,1,1,6,4,2,5,3,5,4,1,5,2,2,3,1,1,1,1,1,3,3,2,5,1,4,3,2,4,1,2,5,4,5,1,6,6,1
20021,24,43,Cherokee County,KS,3,4,7,3,3,2,5,3,5,2,3,4,3,4,7,6,3,5,6,3,2,4,3,3,6,4,5,4,6,3,2,7,4,5,4,6,5,5,4,7,5,7,4,3,7,1,3,3,6,4,4,7,4,6,1,4,7,2,6,2,2,1,4,4,4,3,6,7,3,6,4,7,6,3,2,1,7,1,2,6,1,5,6,5,2,3,1,3,4,4,4,5,1,4,4,3,6,2,5,4,4,6,3,4,4,4,7,7,4,2,7,3,2,5,3,6,3,5,2,6,6,1,3,5,1
20023,1,2,Cheyenne County,KS,4,1,1,1,1,1,1,3,1,2,1,3,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,1,1,7,1,1,1,1,1,1,3,1,1,5,1,7,2,4,2,2,7,2,7,1,2,2,3,4,4,1,3,5,7,6,1,7,1,2,2,1,3,7,7,4,5,7,6,1,3,6,2,4,6,1,7,2,1,4,2,1,1,1,1,1,1,1,5,6,2,3,1,6,3,1,6,1,1,6,2,1,2,1,7,1
20025,6,3,Clark County,KS,4,1,1,1,1,1,2,1,1,5,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,1,1,1,1,1,1,1,1,1,1,7,4,1,1,1,3,1,3,1,2,4,1,6,2,1,2,2,1,4,5,3,2,2,5,3,4,4,6,4,6,2,1,7,2,1,7,4,5,7,3,5,7,1,1,7,4,4,4,4,7,1,7,3,3,4,2,1,1,1,1,1,1,1,3,5,2,3,1,6,1,1,4,1,1,6,1,1,1,1,7,1
20027,16,10,Clay County,KS,3,4,6,3,3,1,2,2,4,6,2,3,2,3,4,6,2,3,4,2,2,3,2,3,4,3,3,4,2,2,2,2,2,6,2,2,2,2,2,4,2,6,4,2,7,7,2,2,2,4,3,1,3,2,3,1,6,2,7,2,2,3,4,6,3,3,2,5,5,3,1,7,4,6,5,1,7,1,4,7,2,7,6,1,5,6,1,6,1,3,4,3,3,7,2,6,4,6,4,4,3,1,3,2,3,2,2,4,5,2,5,2,4,2,2,6,2,3,6,2,3,2,6,7,1
20029,11,29,Cloud County,KS,3,4,1,2,3,1,1,1,5,6,2,3,2,3,1,6,2,3,2,1,2,2,2,3,2,3,2,3,2,2,1,1,3,4,2,4,2,2,1,5,2,3,4,1,7,1,2,1,3,3,2,2,2,2,3,2,6,2,4,2,2,4,4,6,3,3,2,5,5,3,1,6,2,7,6,1,6,3,2,7,2,6,7,7,3,6,7,1,1,4,5,3,2,6,3,5,2,2,4,3,3,1,3,3,3,2,2,5,5,2,4,2,4,1,2,6,2,3,6,1,2,1,4,7,1
20031,12,14,Coffey County,KS,3,4,2,2,1,1,1,2,2,5,1,3,2,2,3,6,2,2,1,2,1,2,1,3,1,2,2,2,1,2,2,1,1,4,2,1,2,1,2,3,1,1,2,1,7,5,1,1,2,4,2,4,3,4,2,6,6,2,5,2,2,3,4,5,3,3,3,5,2,5,4,5,3,4,2,1,6,4,2,5,1,6,1,6,4,4,5,1,1,3,3,1,3,7,3,5,3,2,5,3,2,1,1,2,2,2,2,5,4,2,6,1,5,1,2,6,1,2,5,4,4,3,5,6,1
20033,5,6,Comanche County,KS,4,3,1,1,1,1,1,1,1,5,1,2,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,3,1,2,1,2,4,2,5,2,1,2,2,3,4,5,4,2,3,4,5,4,4,7,3,6,2,1,1,1,2,7,6,5,1,7,1,6,1,1,1,5,6,3,1,7,1,5,2,3,5,2,1,1,1,1,1,1,1,2,4,2,4,1,6,2,1,4,1,1,6,2,2,1,1,7,1
20035,95,121,Cowley County,KS,2,3,2,4,4,2,2,2,5,4,6,3,3,5,3,7,3,4,7,2,5,4,4,4,3,4,5,5,4,2,4,2,3,7,3,2,4,5,3,3,4,3,5,3,7,3,4,2,4,5,4,6,3,6,2,5,4,2,3,2,2,1,4,5,4,3,3,6,4,4,4,5,3,4,3,1,6,1,3,3,1,6,7,3,5,4,4,6,3,6,4,4,4,6,6,4,2,5,6,5,5,1,5,5,5,5,3,5,5,2,6,4,5,2,4,5,3,7,5,7,5,2,6,6,1
20037,64,89,Crawford County,KS,2,3,7,4,5,3,6,3,5,4,4,4,4,5,6,7,5,5,4,3,4,5,4,4,6,5,5,6,5,3,4,6,4,5,3,5,5,5,3,6,5,5,5,4,7,1,4,2,4,4,5,7,4,5,1,4,7,2,6,2,2,1,4,4,4,3,6,7,3,6,4,6,4,5,3,1,5,1,4,5,3,7,3,5,5,7,6,7,2,7,3,5,4,6,3,2,2,6,7,5,6,6,5,5,6,5,5,6,4,2,7,5,3,5,4,6,4,5,2,2,5,2,5,6,1
20039,2,2,Decatur County,KS,4,1,1,2,1,1,1,2,1,5,1,2,1,2,1,6,1,2,1,1,1,2,1,1,1,2,1,2,2,1,1,1,1,3,3,1,1,1,1,1,1,7,2,1,7,6,1,1,2,2,1,2,1,1,5,2,5,2,3,2,2,7,3,6,2,2,1,4,3,4,1,5,2,7,5,1,6,4,1,7,1,7,7,5,7,7,7,5,1,4,6,3,3,7,1,6,2,2,3,2,2,1,1,1,1,1,1,5,7,2,3,1,5,2,2,6,1,3,6,5,1,1,7,7,1
20041,42,27,Dickinson County,KS,3,4,4,3,3,2,4,2,5,6,2,3,2,3,4,6,3,4,3,2,3,3,2,4,6,3,4,4,3,2,3,4,2,5,5,2,2,3,2,4,2,1,4,2,7,1,2,3,3,4,3,2,3,2,3,4,6,2,5,2,2,1,4,6,3,3,3,6,4,4,1,5,6,6,3,1,6,3,4,6,3,5,7,5,7,6,1,4,4,4,3,1,3,7,1,6,4,5,5,4,4,1,3,3,4,3,2,4,6,2,5,2,5,2,3,6,3,4,5,3,3,3,6,7,1
20043,12,7,Doniphan County,KS,1,6,2,2,4,2,5,2,6,6,5,6,7,6,2,6,2,3,3,3,4,2,4,4,5,3,4,3,5,2,6,3,5,4,4,4,4,4,2,2,2,7,2,1,7,1,4,3,2,3,2,7,3,4,4,2,4,6,6,2,2,7,3,6,2,3,3,6,3,4,4,5,4,1,2,1,7,4,2,2,1,6,1,1,1,1,1,1,7,4,3,3,1,4,6,4,6,3,4,3,3,6,2,5,2,2,6,5,4,2,6,4,4,2,3,7,2,2,6,2,5,2,1,7,1
20045,392,412,Douglas County,KS,1,5,7,5,6,5,5,3,6,6,6,4,5,7,2,7,6,6,6,5,6,6,6,6,5,7,6,7,7,4,6,4,6,7,6,4,6,7,6,6,6,7,7,5,7,1,6,3,5,5,6,6,3,3,1,6,5,2,6,5,2,4,4,6,3,3,2,5,4,5,1,7,4,5,5,1,3,4,5,6,6,6,4,4,7,6,4,5,3,7,1,5,6,7,3,2,3,7,5,6,6,7,7,7,7,6,7,5,5,2,6,6,4,3,6,6,5,2,5,3,4,6,5,7,1
20047,6,14,Edwards County,KS,4,3,1,1,1,1,1,1,1,4,1,2,1,2,2,6,1,1,1,1,1,2,1,2,1,2,1,2,1,1,1,1,1,5,1,1,1,1,1,1,1,2,2,1,7,1,1,1,2,3,1,3,2,2,4,2,6,2,3,2,2,4,4,6,3,2,2,5,3,3,4,6,4,7,7,1,7,2,2,5,3,7,1,5,7,6,1,5,2,3,6,3,6,5,1,6,3,5,4,2,2,1,1,1,1,1,1,3,5,2,3,1,4,1,1,6,1,2,7,6,2,1,1,7,1
20049,5,11,Elk County,KS,4,3,2,1,2,1,2,2,3,5,1,3,2,1,3,5,1,1,1,1,1,1,4,2,7,2,1,2,1,2,1,2,2,5,1,1,4,1,1,5,1,1,7,1,7,5,1,2,1,4,1,5,3,5,2,7,5,2,2,2,2,1,4,5,4,3,3,6,2,5,4,5,5,4,1,1,1,1,1,5,1,1,1,2,3,1,1,6,6,2,7,4,2,4,3,4,5,1,5,2,2,3,1,1,1,1,1,4,4,2,6,1,5,2,1,4,2,2,5,2,5,1,1,6,1
20051,94,98,Ellis County,KS,2,3,4,3,4,2,1,1,2,5,3,2,2,3,1,6,5,4,2,1,3,3,3,2,3,4,3,5,3,2,3,1,2,6,4,1,2,3,2,3,3,1,4,2,7,4,3,1,3,3,3,2,2,1,2,4,6,2,4,2,2,4,4,6,2,2,2,3,3,3,1,6,7,6,3,1,4,6,1,7,1,7,7,5,6,7,5,4,6,7,2,4,5,7,2,5,1,6,2,4,4,1,5,3,3,4,2,5,5,2,7,3,6,1,3,5,2,3,7,1,2,5,7,7,1
20053,9,13,Ellsworth County,KS,3,3,1,1,1,1,3,1,3,5,1,2,1,1,2,5,1,1,1,1,1,1,1,2,4,2,2,2,2,1,1,2,2,2,3,2,1,1,1,2,1,4,1,1,7,1,1,2,1,4,1,2,2,2,3,5,7,2,2,2,2,4,4,6,3,3,2,3,4,3,1,6,3,5,2,1,7,7,2,4,1,7,7,5,7,6,1,1,7,2,7,1,5,6,2,6,3,3,4,2,2,1,1,2,1,1,1,4,4,2,5,1,4,1,1,5,1,2,6,3,2,2,7,7,1
20055,188,177,Finney County,KS,2,1,4,4,4,2,3,2,2,2,4,2,5,5,5,7,4,5,3,2,3,4,4,2,3,5,4,5,4,2,4,3,4,5,3,2,4,4,2,4,5,5,5,3,7,1,4,2,7,2,4,2,1,2,2,2,6,2,5,2,3,5,3,6,2,2,1,5,4,5,1,3,6,7,6,1,6,3,1,3,4,6,5,4,5,6,3,3,4,7,1,5,7,2,3,3,1,6,7,5,5,6,5,5,5,5,6,5,7,2,4,4,5,2,3,7,3,1,5,6,1,5,6,7,1
20057,211,227,Ford County,KS,2,1,3,3,3,1,4,1,1,2,3,2,3,3,3,6,5,3,2,1,2,2,3,2,2,3,3,4,4,1,2,3,3,5,3,2,3,3,2,3,2,6,4,2,7,6,2,2,1,3,3,6,1,2,4,2,6,2,3,2,3,3,4,6,3,2,2,5,4,4,1,5,6,7,6,1,6,6,2,5,5,5,3,4,4,6,2,7,6,7,2,4,7,2,3,3,1,6,6,4,4,1,4,4,3,4,2,4,6,2,3,2,5,1,2,6,2,1,6,5,2,4,5,7,1
20059,59,63,Franklin County,KS,1,5,5,4,4,3,3,2,3,5,4,4,4,6,1,7,4,5,3,3,5,5,5,6,4,5,4,5,4,3,5,2,4,5,3,2,4,4,4,5,4,5,6,3,7,1,4,2,5,4,5,5,3,4,2,6,7,6,6,2,3,4,4,5,3,3,2,5,3,5,4,6,6,6,3,1,3,6,2,4,4,4,7,5,4,3,7,7,4,5,2,1,3,6,2,5,5,5,5,5,5,6,5,5,5,4,6,5,4,2,5,4,3,1,5,6,3,6,6,5,4,4,4,6,1
20061,32,32,Geary County,KS,2,4,3,4,5,4,2,2,7,6,5,3,3,5,6,7,5,5,6,3,7,5,4,5,4,5,4,6,4,3,5,2,3,6,7,5,3,5,5,4,5,2,6,4,7,1,5,2,3,4,5,2,3,3,2,4,6,2,6,2,3,1,4,6,3,3,1,6,4,4,1,7,3,6,4,1,4,7,3,5,6,7,6,6,2,3,7,4,3,7,4,4,6,6,5,2,5,5,7,6,6,4,6,4,6,4,4,5,6,2,4,4,6,3,4,5,3,2,4,4,3,3,2,7,1
20063,5,9,Gove County,KS,4,1,1,1,1,1,2,2,1,4,1,2,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,3,1,1,1,1,1,1,1,1,1,1,7,1,1,2,1,2,1,2,2,2,5,2,7,2,4,2,3,7,3,6,2,2,3,4,2,4,1,6,5,7,5,1,7,5,1,1,1,4,1,5,1,4,1,1,7,2,4,3,3,6,1,7,2,2,4,2,1,1,1,1,1,1,1,7,6,2,7,1,7,3,1,6,1,1,6,3,2,2,1,7,1
20065,5,4,Graham County,KS,4,3,4,1,1,1,3,1,1,5,1,2,1,2,2,6,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,3,1,3,1,1,1,1,1,1,1,1,2,1,7,1,1,2,1,2,2,2,1,1,5,2,6,2,2,2,3,6,3,6,2,2,2,3,2,3,1,5,5,6,4,1,6,1,2,6,2,7,1,6,4,7,1,7,6,2,6,3,3,6,1,7,2,1,4,2,2,1,1,1,1,1,1,4,5,2,6,1,5,2,1,5,2,2,6,1,2,1,6,7,1
20067,8,7,Grant County,KS,3,1,4,2,2,1,5,2,2,2,2,2,1,7,2,6,2,4,1,1,2,2,1,1,2,2,4,3,4,1,2,4,2,4,3,1,2,4,2,2,2,5,3,1,7,1,2,3,2,2,2,2,1,1,4,2,1,2,4,2,3,5,3,6,2,2,1,5,5,6,1,7,6,7,7,1,6,1,1,2,1,5,7,5,4,6,6,4,7,4,3,3,7,2,3,5,2,3,5,3,3,4,2,2,2,2,3,4,6,2,4,2,6,7,2,6,3,2,5,6,1,5,7,7,1
20069,16,19,Gray County,KS,4,1,1,1,1,1,2,1,1,2,1,1,1,2,2,5,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,5,1,1,1,1,1,1,1,3,1,1,7,1,1,2,1,2,1,3,1,2,5,2,5,2,4,2,3,3,4,6,3,2,2,6,4,5,1,5,6,7,7,1,7,2,3,1,1,6,1,1,6,2,6,1,5,5,1,2,6,3,1,7,4,2,5,2,2,4,1,1,1,1,3,5,6,2,4,1,6,2,1,7,1,1,6,5,1,4,1,7,1
20071,2,0,Greeley County,KS,4,1,1,1,1,1,1,3,1,2,1,2,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,3,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,3,1,1,5,2,6,6,4,2,3,7,3,6,2,2,1,4,4,5,1,6,5,6,3,1,7,1,1,2,6,7,1,5,7,1,1,1,5,4,5,3,6,6,1,6,1,1,4,2,1,1,1,1,1,1,1,5,7,2,4,1,6,3,1,5,1,1,5,1,1,3,1,7,1
20073,14,11,Greenwood County,KS,3,3,1,2,2,1,2,2,2,5,2,3,2,2,2,6,2,2,1,1,1,2,2,2,6,2,2,3,1,2,1,2,2,3,2,1,2,1,1,4,1,1,2,1,7,3,1,2,2,4,2,4,3,5,1,7,5,6,3,2,3,1,4,5,3,3,3,6,3,6,4,5,6,5,2,1,2,2,1,7,2,7,6,1,7,3,1,1,6,4,7,4,2,5,3,3,4,2,5,3,2,1,2,1,2,2,2,5,6,2,6,1,5,1,1,5,2,3,5,3,4,1,3,6,1
20075,2,6,Hamilton County,KS,4,1,1,1,1,1,1,3,1,2,1,2,1,2,2,4,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,5,2,1,1,1,1,1,1,5,1,1,7,1,1,1,1,1,2,2,1,1,4,2,6,2,3,2,3,7,2,6,2,2,1,4,5,5,1,5,4,7,4,1,6,2,1,1,1,4,1,3,4,5,1,1,3,6,5,5,7,3,1,5,1,1,5,2,1,4,1,1,1,1,3,4,6,2,5,1,6,5,2,5,1,1,5,2,1,3,1,7,1
20077,10,3,Harper County,KS,4,3,3,1,1,1,1,2,2,5,1,2,1,2,2,5,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,1,1,5,2,2,1,1,1,1,1,1,3,1,7,1,2,1,1,4,1,3,2,4,2,2,1,2,1,2,3,3,5,5,4,2,3,4,4,3,4,5,3,5,2,1,7,1,3,7,2,7,1,4,5,6,6,4,7,4,5,3,2,6,2,5,3,2,5,2,2,1,1,1,2,1,1,3,5,2,4,1,5,1,2,6,1,5,5,3,3,1,4,7,1
20079,61,58,Harvey County,KS,1,3,6,6,3,4,3,3,5,5,4,3,3,7,5,7,5,5,7,5,4,5,6,5,5,6,6,6,4,2,5,3,3,5,4,6,4,5,3,5,6,1,6,3,7,4,5,2,4,5,6,4,2,2,2,2,7,2,6,2,3,4,5,5,4,3,3,5,4,3,4,7,6,7,7,1,6,4,5,5,5,4,5,4,6,6,1,5,2,5,1,1,6,6,2,6,4,5,4,5,5,1,5,5,5,5,3,3,5,2,7,4,5,6,5,6,3,7,6,2,3,5,4,6,1
20081,2,10,Haskell County,KS,4,1,1,1,1,1,2,1,2,2,1,1,1,7,3,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,1,1,1,1,1,1,1,3,1,1,7,1,1,2,1,2,1,2,1,1,5,2,1,2,6,2,3,4,3,6,2,2,1,4,5,6,1,4,6,7,7,1,7,2,1,7,1,2,1,1,1,1,7,1,7,5,3,3,7,3,1,5,3,3,4,2,2,5,1,2,1,1,4,4,6,2,4,1,5,5,1,7,1,1,6,4,1,4,1,7,1
20083,5,4,Hodgeman County,KS,4,1,1,1,1,1,2,1,1,4,1,2,1,1,2,5,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,3,1,1,1,1,1,1,1,1,1,1,7,1,1,2,1,3,1,4,1,2,6,2,6,2,2,2,3,3,4,6,3,2,2,4,3,4,1,6,6,7,6,1,7,1,1,1,1,1,1,1,1,3,1,5,6,3,5,3,2,7,1,6,3,1,4,2,2,1,1,1,1,1,1,5,6,2,6,1,5,2,1,5,1,1,6,3,2,2,1,7,1
20085,51,51,Jackson County,KS,1,5,5,3,5,2,4,2,7,6,2,3,5,7,3,6,2,4,2,4,2,3,3,4,3,4,4,4,3,2,2,3,5,5,2,3,5,2,2,3,2,7,7,2,7,1,3,2,4,3,3,5,3,4,3,5,3,2,6,2,3,4,4,6,2,3,1,3,1,2,1,6,6,5,3,1,4,4,1,2,4,6,5,5,2,4,4,4,6,2,2,2,2,7,2,6,6,3,5,4,4,7,2,6,3,2,7,2,3,2,4,3,4,4,3,5,3,4,5,2,4,4,3,7,1
20087,63,66,Jefferson County,KS,1,5,5,2,4,2,4,3,6,6,2,4,4,7,2,6,3,3,3,3,2,3,5,4,2,7,6,3,3,2,2,3,5,5,3,4,5,3,2,2,2,7,7,2,7,1,3,2,2,4,3,7,3,3,1,4,7,2,6,2,3,4,4,6,3,3,1,5,2,4,4,6,6,5,5,1,4,1,4,4,1,2,6,5,4,3,3,3,4,1,3,1,1,7,2,6,7,2,5,4,3,7,2,6,2,3,7,4,3,2,5,3,4,4,2,6,2,3,6,4,5,5,5,7,1
20089,1,1,Jewell County,KS,4,4,1,1,1,1,1,1,2,6,1,3,1,1,1,5,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,5,1,2,1,1,1,1,1,1,1,1,7,3,1,1,1,3,1,1,2,2,2,2,6,6,2,2,3,5,3,6,2,3,3,5,4,6,1,5,2,6,4,1,7,2,1,4,2,7,1,4,3,2,1,4,2,2,6,3,1,7,1,7,3,3,3,2,2,1,1,1,1,1,1,7,6,2,7,1,6,1,1,6,1,2,7,2,2,1,7,7,1
20091,3071,3136,Johnson County,KS,1,5,7,5,6,7,6,4,5,5,6,7,6,7,5,7,7,7,6,6,7,7,6,7,7,7,7,7,7,5,7,6,6,6,7,6,6,7,6,6,7,6,7,6,7,6,7,3,6,5,7,7,4,4,1,4,4,2,7,7,3,4,4,5,3,3,3,6,3,6,1,6,5,4,5,1,2,4,6,4,3,4,4,5,6,7,6,4,1,5,1,1,6,7,1,7,4,7,3,7,7,7,7,6,7,7,7,6,5,2,7,7,5,6,6,5,6,2,6,5,5,7,4,6,1
20093,10,11,Kearny County,KS,4,1,1,1,1,1,2,2,2,2,1,2,1,7,3,5,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,6,1,1,2,1,1,1,1,3,1,1,7,4,1,2,1,2,2,2,1,1,4,2,7,2,2,2,3,7,3,6,2,2,1,5,4,5,1,5,6,7,6,1,6,2,1,7,1,2,1,3,5,1,1,1,2,5,2,3,7,3,1,6,4,1,4,2,2,5,1,3,1,1,4,5,7,2,5,1,6,7,1,6,1,1,5,5,1,5,2,7,1
20095,8,6,Kingman County,KS,3,3,4,2,2,1,2,2,3,5,2,2,2,2,4,6,2,2,3,1,1,2,3,2,5,3,2,3,2,2,1,2,1,3,3,5,2,2,1,3,2,1,5,1,7,5,7,2,2,4,2,3,2,3,6,2,5,6,2,2,3,4,5,5,4,2,6,5,5,4,1,5,3,7,5,1,7,3,4,6,1,2,1,2,5,4,1,1,3,3,4,3,2,6,1,6,5,2,5,3,3,1,2,2,2,2,2,3,5,2,4,2,6,3,2,6,2,6,6,3,3,3,1,7,1
20097,3,3,Kiowa County,KS,4,3,1,1,1,1,1,1,1,4,1,2,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,5,1,1,7,1,1,1,1,3,1,3,2,2,4,2,1,2,1,2,3,4,4,6,3,2,2,5,4,4,1,6,2,7,6,1,7,3,1,5,3,3,1,7,3,6,1,1,1,5,6,3,3,6,2,6,2,4,4,2,1,1,1,1,1,1,1,3,5,2,3,1,4,1,1,6,1,1,6,2,2,1,7,7,1
20099,38,38,Labette County,KS,3,4,7,3,4,2,3,3,6,2,3,3,4,4,6,7,4,4,4,3,2,4,7,4,7,4,4,5,4,4,3,5,3,5,4,6,5,6,3,6,3,2,7,3,7,1,3,2,4,4,4,7,4,6,1,7,2,2,5,2,3,1,5,4,4,3,3,7,3,6,4,6,3,4,3,1,7,2,3,7,2,5,5,1,1,6,6,4,6,5,4,4,2,5,2,5,2,4,7,5,5,4,4,4,5,4,4,5,5,2,7,4,3,6,3,6,3,4,4,2,5,1,3,6,1
20101,2,1,Lane County,KS,4,1,1,1,1,1,1,2,1,2,1,2,1,1,2,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,1,2,1,1,7,1,1,1,1,2,1,2,1,2,4,2,7,6,3,2,3,6,3,6,2,2,2,4,2,4,1,6,4,7,5,1,7,1,2,7,1,5,1,4,7,1,1,1,7,3,5,2,1,7,1,7,1,1,4,2,1,4,1,1,1,1,4,5,6,2,6,1,5,1,1,5,1,1,5,6,2,2,1,7,1
20103,97,148,Leavenworth Count,KS,1,5,5,4,5,5,5,3,4,6,4,7,6,7,4,7,5,6,5,6,7,5,7,5,6,7,7,6,5,4,6,6,5,6,5,5,5,5,4,6,5,6,6,4,7,1,6,3,5,4,6,7,4,3,1,5,6,2,6,5,3,5,4,6,3,3,2,4,2,4,1,7,5,3,5,1,3,3,5,3,5,4,3,5,5,4,5,4,2,6,1,1,5,7,2,7,5,5,5,6,6,7,5,6,6,6,7,4,3,2,5,6,3,5,4,5,5,5,6,5,5,6,3,7,1
20105,12,6,Lincoln County,KS,4,3,1,1,1,1,1,1,2,6,1,2,1,1,1,5,1,1,1,1,1,1,1,2,5,2,1,2,1,1,1,1,1,2,2,1,1,1,1,3,1,1,1,1,7,1,1,1,1,4,1,1,2,2,4,2,7,2,4,2,3,3,4,6,2,2,2,3,3,3,1,5,2,5,2,1,7,2,2,5,5,6,1,5,3,5,1,4,1,2,6,2,2,6,1,7,3,3,4,2,2,1,1,1,1,1,1,5,5,2,5,1,5,3,1,5,1,1,7,3,2,1,7,7,1
20107,11,15,Linn County,KS,1,4,3,2,2,1,6,2,3,5,1,4,4,2,2,6,1,2,3,2,1,1,2,3,7,2,5,2,2,3,1,4,4,4,1,2,4,1,1,3,1,6,2,1,7,1,1,1,2,4,1,5,4,3,2,7,6,2,5,5,3,3,4,5,4,3,2,6,5,6,4,7,3,3,2,1,2,3,2,3,3,1,6,1,4,2,5,4,6,1,6,3,1,5,4,5,6,1,5,2,2,7,1,5,2,2,6,7,6,2,6,2,4,1,2,5,1,2,5,5,5,3,4,6,1
20109,4,2,Logan County,KS,4,1,1,1,1,1,1,3,1,2,1,2,1,2,1,4,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,7,6,1,1,1,2,3,2,1,1,4,2,7,2,2,2,3,7,3,6,2,2,2,4,3,4,1,5,2,7,4,1,7,3,2,7,1,7,7,2,7,3,1,6,1,4,4,1,1,7,2,7,3,3,4,2,1,1,1,1,1,1,1,6,7,2,7,1,6,5,1,5,1,1,5,2,1,2,7,7,1
20111,152,122,Lyon County,KS,2,4,6,4,5,3,1,2,1,5,5,3,6,5,1,7,6,6,5,2,5,5,5,5,5,5,4,6,5,3,7,1,5,6,5,3,5,5,2,5,5,2,6,5,7,1,5,1,5,4,6,3,3,4,1,7,6,6,4,2,3,3,4,6,3,3,2,6,3,5,4,5,4,4,2,1,3,6,2,6,4,6,6,4,4,6,2,1,4,7,2,5,7,5,5,3,1,7,4,6,6,3,6,6,6,5,4,4,5,2,5,5,6,2,4,6,4,5,5,4,3,3,5,6,1
20113,63,47,McPherson County,KS,3,3,2,4,4,2,4,2,5,5,4,3,4,5,6,7,4,5,4,2,7,4,3,4,6,5,4,5,7,2,6,3,5,5,5,4,5,6,5,5,3,7,5,3,7,1,7,2,4,5,5,3,3,2,3,2,6,2,6,2,3,4,4,6,3,3,3,6,4,3,1,4,5,7,7,1,7,5,4,6,4,3,4,3,6,5,7,4,5,5,1,1,3,6,2,7,2,4,3,5,5,1,5,5,5,4,3,4,5,2,5,3,5,3,4,6,3,4,6,3,3,5,3,7,1
20115,14,13,Marion County,KS,3,3,2,1,1,1,2,2,2,5,1,3,1,3,3,6,1,1,3,1,1,1,1,2,3,2,1,2,1,2,1,2,1,5,2,3,1,1,1,2,1,1,1,1,7,1,1,2,1,4,1,3,3,3,3,5,5,2,6,2,3,3,4,6,3,3,3,6,4,4,1,5,6,5,4,1,6,3,2,5,6,3,1,4,7,3,1,4,6,2,5,2,5,6,1,7,4,5,5,2,2,1,1,1,1,3,1,4,5,2,6,1,5,1,2,6,1,2,6,4,3,2,6,7,1
20117,42,27,Marshall County,KS,3,5,3,2,2,1,3,2,2,6,1,3,3,2,2,6,2,2,2,2,1,2,1,4,1,2,2,3,2,2,1,3,2,3,5,2,2,4,3,1,1,3,2,1,7,1,2,2,1,3,2,2,2,3,3,2,7,6,7,2,3,4,4,6,3,3,1,6,4,4,1,4,4,5,3,1,7,4,1,7,1,6,1,2,7,7,4,3,1,2,4,2,3,6,2,6,2,4,5,3,2,5,2,3,2,2,5,5,5,2,5,1,6,4,2,7,2,2,5,4,3,1,6,7,1
20119,8,8,Meade County,KS,4,1,3,1,1,1,3,1,1,5,1,1,1,2,2,5,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,1,2,3,1,1,1,1,1,1,1,2,1,7,1,1,2,1,2,2,2,1,2,5,2,3,2,3,2,3,1,4,5,3,2,1,4,3,3,1,5,6,7,6,1,4,3,3,5,1,6,1,3,2,2,1,1,7,5,4,2,7,4,1,7,3,1,4,2,2,1,1,1,1,1,1,3,5,2,4,1,6,3,1,7,1,2,6,6,1,2,1,7,1
20121,75,84,Miami County,KS,1,5,5,3,3,3,4,3,3,5,2,4,4,4,2,6,4,4,3,4,3,3,5,5,6,7,5,4,4,3,3,4,4,5,3,3,4,3,3,3,2,6,6,2,7,1,3,2,3,4,3,6,4,4,1,7,4,2,5,2,3,4,4,5,4,3,2,5,4,6,4,6,5,5,5,1,2,4,3,6,5,4,6,3,2,2,7,3,7,2,1,1,1,7,1,6,7,3,5,4,4,7,3,5,3,4,7,5,5,2,5,3,5,2,3,6,3,3,6,2,5,6,3,6,1
20123,2,10,Mitchell County,KS,3,3,1,1,1,1,1,2,2,6,1,2,1,2,1,5,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,1,1,4,2,1,1,1,1,3,1,1,1,1,7,1,1,1,1,3,2,1,2,2,1,6,7,2,5,2,3,4,3,6,2,3,2,4,4,4,1,7,3,6,4,1,7,1,2,1,1,7,1,7,2,6,1,5,6,4,5,2,2,7,2,6,1,2,4,2,2,1,2,1,1,1,1,7,6,2,5,1,5,4,1,6,1,2,7,4,2,2,5,7,1
20125,89,96,Montgomery County,KS,2,4,7,4,5,3,4,2,6,4,4,3,5,5,6,7,4,5,7,4,4,5,6,4,7,5,5,5,5,3,6,4,5,5,6,6,5,6,5,7,4,1,7,4,7,1,4,3,7,4,5,7,4,6,1,7,6,2,5,2,3,1,4,5,4,3,2,5,2,4,4,5,5,5,3,1,7,2,3,7,2,7,5,5,6,7,6,3,5,5,5,4,3,5,3,4,1,5,7,5,5,3,5,5,6,5,3,4,4,2,5,3,3,7,4,6,4,6,4,3,5,1,4,6,1
20127,2,7,Morris County,KS,4,4,2,2,1,1,2,2,4,6,1,3,2,2,4,6,2,2,3,1,1,2,1,3,1,2,2,2,2,2,1,2,1,3,1,2,1,1,1,1,1,1,2,1,7,5,1,1,2,4,2,3,3,3,6,6,4,2,4,2,3,1,4,6,3,3,1,6,4,4,4,7,4,4,2,1,5,2,2,1,1,7,7,1,4,3,6,1,5,3,6,2,3,6,1,5,4,3,5,3,2,1,1,1,2,1,2,4,5,2,4,1,5,4,2,5,1,3,4,2,3,2,6,7,1
20129,7,3,Morton County,KS,4,1,1,1,1,1,1,2,1,2,1,1,1,2,1,5,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,4,2,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,2,1,1,2,4,2,1,2,2,2,3,6,2,6,2,2,1,4,5,4,4,4,3,7,6,1,6,1,4,5,3,3,1,1,6,4,1,1,1,5,5,3,7,5,2,4,2,1,5,2,1,1,1,1,1,1,1,3,4,2,3,1,5,5,2,5,1,1,4,2,1,4,1,7,1
20131,16,17,Nemaha County,KS,4,6,2,2,2,1,2,2,3,6,2,3,3,2,2,6,1,2,2,1,1,2,1,3,1,2,2,2,1,2,1,2,3,3,2,2,3,2,2,1,1,4,2,1,7,1,1,2,2,3,1,3,3,4,3,2,6,2,7,2,3,5,4,6,2,3,2,4,3,3,1,7,6,3,2,1,7,2,1,7,2,7,5,6,6,6,1,5,7,2,3,2,2,6,1,7,2,3,5,3,2,6,1,4,2,2,6,3,4,2,5,1,4,1,2,7,1,2,5,4,4,3,6,7,1
20133,43,40,Neosho County,KS,3,3,5,3,4,2,2,2,5,5,3,4,7,4,7,6,3,4,3,2,2,3,6,3,7,4,3,4,2,3,3,4,4,4,7,3,7,3,2,6,4,6,7,2,7,1,3,2,4,4,4,7,3,5,1,7,3,2,5,2,3,1,4,5,4,3,2,6,2,5,4,5,4,4,2,1,6,2,2,7,1,7,1,6,3,6,7,5,3,4,3,4,2,6,3,4,3,3,5,4,4,4,4,5,4,3,3,4,4,2,7,3,3,5,2,6,6,3,3,4,5,1,5,6,1
20135,1,4,Ness County,KS,4,1,1,1,1,1,1,1,1,5,1,2,1,1,1,5,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,2,1,3,1,2,4,2,6,2,1,2,3,4,3,6,2,2,2,3,3,4,1,4,2,6,3,1,7,1,1,5,4,7,1,5,6,6,1,1,2,4,6,2,3,6,1,7,1,4,4,2,2,1,1,1,1,1,1,6,6,2,6,1,6,2,1,5,1,2,6,1,2,1,1,7,1
20137,14,11,Norton County,KS,3,1,1,1,1,1,2,2,1,5,1,2,1,1,1,5,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,3,1,1,1,1,1,1,1,1,1,1,7,4,1,1,1,2,2,2,1,1,3,5,6,2,2,2,3,7,3,6,2,2,2,3,3,3,1,6,3,7,5,1,5,2,1,5,5,6,7,7,4,6,1,4,1,3,5,3,3,6,2,6,1,3,3,2,2,1,1,1,1,1,1,5,7,2,5,1,6,4,1,6,1,1,7,2,2,1,5,7,1
20139,65,72,Osage County,KS,1,4,5,2,3,2,2,2,6,6,2,3,4,7,2,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,3,2,3,5,2,2,3,2,2,2,2,5,7,2,7,1,2,2,3,4,2,5,3,4,1,7,7,2,6,2,3,4,4,5,3,3,3,6,4,6,4,6,3,3,2,1,6,5,2,4,2,5,7,3,3,1,3,1,6,2,2,2,2,6,2,5,7,4,5,3,3,6,2,4,3,3,5,6,6,2,6,3,4,2,3,6,2,4,5,4,4,4,5,6,1
20141,5,3,Osborne County,KS,4,3,1,1,1,1,1,1,1,6,1,2,1,1,1,4,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,7,1,1,1,3,3,1,1,2,1,3,4,6,2,2,2,3,4,3,6,2,2,2,3,3,3,1,6,3,7,5,1,7,1,2,7,5,7,1,7,3,7,1,6,1,2,6,3,1,6,2,6,2,2,4,2,1,1,1,1,1,1,1,7,6,2,6,1,6,1,1,5,1,1,7,1,2,1,7,7,1
20143,9,13,Ottawa County,KS,4,4,2,2,1,1,2,1,3,6,1,3,1,2,1,6,1,2,1,2,1,1,1,2,7,2,2,2,1,1,1,2,1,2,4,2,2,2,2,6,1,1,1,1,7,1,1,2,7,4,2,2,2,2,4,2,7,2,4,2,3,1,4,6,3,3,2,4,5,3,1,5,3,6,4,1,7,4,2,1,2,7,7,5,4,5,1,7,7,1,4,2,2,6,3,6,6,3,4,3,2,1,1,2,1,1,2,4,5,2,4,1,4,2,2,5,1,2,6,3,2,3,1,7,1
20145,26,23,Pawnee County,KS,3,3,3,2,1,1,1,1,2,5,1,2,1,2,1,6,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,2,1,1,1,1,1,1,7,2,1,7,7,1,1,1,3,2,2,2,2,2,2,6,6,2,2,3,4,4,6,3,2,2,4,4,4,1,5,5,7,6,1,4,3,2,7,1,3,7,5,3,6,1,1,7,4,4,3,2,6,7,7,2,4,5,3,2,1,2,1,2,1,2,5,6,2,5,1,5,1,2,6,1,2,6,5,2,2,3,7,1
20147,17,13,Phillips County,KS,3,3,1,2,1,1,3,1,1,6,1,2,1,2,2,6,2,2,1,1,2,1,1,2,1,2,2,2,2,1,1,3,2,3,1,2,1,2,1,1,1,2,2,1,7,3,1,2,1,2,2,2,1,1,4,2,7,2,3,2,3,7,3,6,2,2,3,3,3,3,1,5,4,6,4,1,7,3,1,7,1,5,1,6,2,7,7,5,5,3,6,2,1,6,1,6,2,3,4,3,2,1,1,2,1,1,2,5,6,2,6,1,6,2,1,5,2,2,7,4,2,2,1,7,1
20149,100,95,Pottawatomie Coun,KS,3,5,3,2,3,2,2,2,6,6,2,3,4,7,4,6,3,2,3,2,2,3,2,4,2,3,2,3,2,2,2,2,5,5,2,3,6,2,2,2,2,7,6,2,7,4,2,2,7,3,2,3,2,3,3,2,5,2,5,2,3,3,4,6,3,3,3,6,4,4,1,6,4,6,5,1,6,1,5,2,1,5,7,6,2,6,6,3,4,3,2,2,2,7,1,6,6,2,5,3,3,7,2,6,3,3,7,5,5,2,5,2,6,2,2,5,2,3,4,5,3,5,6,7,1
20151,12,21,Pratt County,KS,3,3,5,3,4,2,1,2,1,4,3,2,2,4,1,7,2,4,2,2,3,4,3,3,3,4,3,5,3,2,3,1,2,7,2,1,2,4,2,3,4,4,5,2,7,4,3,1,3,4,5,2,1,2,4,2,5,2,4,2,3,4,5,6,4,2,3,6,5,6,1,4,5,7,6,1,7,4,2,7,2,5,1,2,6,7,1,1,1,5,5,2,3,7,3,6,2,5,5,5,5,1,4,2,4,2,3,4,6,2,4,3,5,5,4,7,3,4,6,6,2,3,7,7,1
20153,2,10,Rawlins County,KS,4,1,2,1,1,1,1,2,1,4,1,2,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,1,1,7,5,1,1,1,1,1,2,1,1,6,2,5,2,2,2,3,7,2,6,2,2,1,5,3,4,1,6,3,7,5,1,7,1,1,1,6,6,1,2,4,7,1,5,1,3,6,4,3,6,1,6,2,3,3,2,1,1,1,1,1,1,1,4,7,2,3,1,6,3,1,5,1,1,6,5,1,1,1,7,1
20155,159,150,Reno County,KS,2,3,7,4,5,3,6,2,4,5,4,2,3,5,4,7,6,6,3,3,5,5,4,4,7,5,6,6,7,2,5,5,3,5,5,4,4,7,4,7,4,1,6,3,7,5,5,3,5,5,5,3,2,2,4,2,6,2,5,2,3,4,5,5,4,3,4,4,5,3,4,6,4,7,6,1,5,1,6,5,3,6,4,3,5,5,3,4,3,6,2,3,5,5,3,4,1,5,1,6,6,1,5,5,6,6,3,2,4,2,4,5,5,3,4,6,5,7,6,5,3,3,5,7,1
20157,5,7,Republic County,KS,4,4,1,2,1,1,1,1,3,6,1,3,3,2,1,6,2,2,1,1,2,2,1,3,1,2,1,2,1,1,2,1,1,3,3,3,1,2,2,1,1,4,2,1,7,3,1,1,2,3,2,2,2,2,2,2,5,2,2,2,3,5,3,6,2,3,3,5,5,3,1,5,2,7,7,1,7,5,1,1,5,5,1,7,7,5,1,4,6,2,6,2,3,7,1,6,2,4,4,2,2,1,1,2,2,1,2,5,6,2,6,1,5,2,3,7,1,2,6,4,2,1,2,7,1
20159,13,19,Rice County,KS,3,3,4,2,2,1,4,2,3,5,2,2,1,2,3,6,2,3,1,2,2,2,2,2,5,2,4,3,5,1,1,3,2,6,3,6,2,4,2,3,2,1,2,1,7,1,2,3,1,4,2,2,2,2,4,2,7,2,5,2,3,4,4,6,3,3,2,3,3,2,1,4,3,7,5,1,7,2,2,7,5,4,5,4,6,3,1,6,2,3,4,3,4,6,5,7,3,3,4,3,3,1,2,2,2,2,2,3,5,2,3,3,4,2,2,6,2,2,7,2,2,2,1,7,1
20161,215,238,Riley County,KS,2,5,7,5,5,5,3,2,5,6,5,3,4,6,6,7,6,6,6,3,6,7,5,5,5,6,5,7,6,2,6,3,4,7,3,4,5,6,4,5,6,7,7,5,7,7,6,2,5,4,7,2,3,3,1,2,2,6,6,2,3,3,4,6,3,3,1,5,4,3,1,1,4,5,4,1,1,5,1,5,4,5,4,5,5,5,3,6,2,7,1,6,6,7,6,2,2,7,1,7,7,6,6,5,7,6,6,5,5,2,5,5,6,1,6,5,4,2,4,5,3,5,5,7,1
20163,10,8,Rooks County,KS,4,3,1,1,1,1,2,1,1,5,1,2,1,1,1,5,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,2,1,6,1,1,1,1,1,1,1,5,1,1,7,5,1,1,1,2,1,2,1,1,3,2,5,2,2,2,3,5,3,6,2,2,3,2,2,3,1,5,3,6,3,1,6,2,1,7,2,7,1,2,2,5,1,1,3,3,5,2,2,7,2,7,2,2,4,2,2,1,1,1,1,1,1,6,5,2,7,1,7,1,1,5,1,2,7,5,2,1,5,7,1
20165,5,5,Rush County,KS,4,3,1,1,1,1,1,1,2,5,1,2,1,1,1,5,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,1,1,6,1,1,1,1,1,1,1,4,1,1,7,3,1,1,4,3,2,2,2,2,3,2,5,2,3,2,3,4,4,6,3,2,3,4,4,4,1,6,4,7,5,1,7,2,2,7,1,7,1,2,3,4,1,1,2,1,6,2,5,5,1,6,4,1,5,2,2,1,1,1,1,1,1,6,7,2,6,1,6,3,1,5,1,2,7,4,2,1,1,7,1
20167,5,8,Russell County,KS,3,3,5,2,1,2,1,1,2,5,1,2,1,2,1,6,1,2,2,1,2,1,1,2,1,2,1,2,1,1,2,1,1,7,2,1,1,2,1,1,1,4,2,1,6,4,1,1,1,3,1,2,2,1,1,6,7,2,3,2,3,4,4,6,2,2,3,2,2,3,1,3,3,4,1,1,7,4,2,6,5,7,1,4,6,6,7,6,7,4,6,4,3,5,2,6,2,4,4,2,2,1,2,1,2,2,1,6,5,2,7,1,7,1,3,5,1,2,7,1,2,1,5,7,1
20169,94,117,Saline County,KS,2,3,6,4,5,3,3,2,6,6,5,3,4,5,3,7,4,5,3,2,4,5,4,5,7,5,4,6,5,3,5,3,4,6,7,3,6,6,6,6,5,7,5,4,7,7,4,2,5,4,5,2,2,2,2,5,7,2,5,2,3,3,4,6,3,3,3,5,4,4,1,3,4,6,5,1,6,6,3,7,5,6,7,6,6,6,6,5,6,6,1,2,5,7,2,4,1,6,4,5,5,1,6,5,6,6,3,4,5,2,6,4,4,3,4,5,3,1,6,2,2,5,6,7,1
20171,8,3,Scott County,KS,3,1,1,1,1,1,1,2,1,2,1,2,1,1,3,5,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,3,1,1,1,1,1,1,1,3,1,1,6,1,1,1,1,2,2,2,1,1,4,2,6,2,7,2,3,7,3,6,2,2,3,4,3,5,1,7,7,7,6,1,7,3,1,6,1,4,1,6,7,5,1,1,5,4,4,1,5,6,1,7,1,4,4,2,1,5,1,2,1,1,4,6,7,3,6,2,6,4,1,6,1,1,4,4,1,4,7,7,1
20173,1372,1326,Sedgwick County,KS,1,3,7,7,6,6,3,3,6,5,6,3,5,6,6,7,6,6,7,5,6,6,7,6,6,7,7,7,7,4,7,2,5,6,6,5,6,7,5,6,7,5,7,5,6,5,7,2,6,7,7,7,3,3,1,5,7,2,6,5,3,3,5,5,4,3,5,5,4,3,4,3,4,7,6,1,6,4,6,4,6,5,5,3,5,6,4,4,2,7,2,2,6,6,3,4,1,7,4,7,7,1,7,6,7,7,4,4,5,3,5,6,4,4,5,6,4,7,6,6,4,5,4,6,1
20175,24,40,Seward County,KS,3,1,1,4,4,2,1,3,1,4,4,1,5,5,1,7,5,5,3,3,4,4,4,2,4,5,4,6,5,2,4,1,4,6,6,3,4,5,3,4,4,7,5,2,6,5,4,1,2,2,5,2,1,2,2,2,1,2,5,2,3,4,3,6,2,2,1,5,4,4,4,1,6,7,6,1,4,4,1,6,2,6,3,1,6,7,4,4,3,7,2,6,7,1,3,2,1,5,4,5,5,1,5,5,5,4,3,3,5,3,3,4,5,3,5,6,3,1,6,4,1,4,2,7,1
20177,788,865,Shawnee County,KS,1,5,7,5,7,6,3,3,7,6,6,4,6,7,3,7,7,6,6,5,5,6,6,6,5,6,5,7,6,4,6,2,5,7,6,5,6,6,4,5,6,7,7,5,6,5,6,2,5,4,7,7,4,3,1,6,5,2,6,5,3,4,4,6,3,3,2,5,3,5,4,3,4,6,6,1,3,7,5,5,6,5,6,5,5,6,5,5,3,6,2,2,5,7,2,4,1,7,7,7,7,7,7,7,7,7,7,5,5,3,5,7,4,5,5,6,5,2,5,6,4,5,4,7,1
20179,2,2,Sheridan County,KS,4,1,1,2,1,1,1,3,1,5,1,2,1,3,1,6,3,2,1,1,1,2,1,2,1,2,2,3,1,2,1,1,1,4,2,1,1,1,1,2,2,3,3,1,7,3,1,1,2,2,5,2,2,1,6,2,7,2,2,2,3,7,3,6,2,2,3,4,3,5,1,6,4,7,7,1,7,2,1,1,1,4,1,1,1,2,1,5,7,1,4,5,1,7,1,7,2,4,4,3,2,1,1,1,2,1,2,6,7,3,4,1,5,6,2,7,1,3,6,6,2,2,7,7,1
20181,4,13,Sherman County,KS,3,1,4,2,2,1,1,3,1,2,2,3,1,2,1,6,4,2,1,1,2,2,2,2,2,2,2,3,2,2,3,1,1,4,2,1,1,2,1,2,2,3,3,1,7,1,1,1,2,1,3,7,1,1,4,2,7,2,3,2,3,7,2,6,1,2,1,3,3,4,1,1,3,7,6,1,7,4,1,7,2,5,1,7,5,7,6,6,1,6,5,4,6,7,1,6,1,4,4,3,2,1,3,1,2,1,2,5,7,3,3,2,5,5,3,7,1,2,6,5,1,3,6,7,1
20183,1,0,Smith County,KS,4,3,1,2,1,1,2,1,1,6,1,2,1,2,1,6,1,2,1,1,1,2,1,2,1,2,2,3,2,1,1,2,2,4,2,1,1,1,1,2,1,7,3,1,7,7,2,2,7,3,2,1,2,1,4,2,7,2,4,2,3,6,3,6,2,2,3,3,3,4,1,5,4,6,5,1,7,2,2,5,3,5,1,3,2,7,1,3,7,2,6,3,1,6,1,6,2,1,4,3,3,1,1,2,2,1,2,5,6,3,6,2,6,4,1,6,1,3,7,1,2,1,4,7,1
20185,1,8,Stafford County,KS,4,3,1,1,1,1,2,1,2,5,1,2,1,1,1,5,1,1,1,1,1,1,1,2,1,2,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,6,1,1,7,4,1,2,1,4,1,2,2,2,6,2,5,2,4,2,3,4,4,5,4,2,3,5,4,3,4,3,4,7,7,1,7,2,2,6,1,7,1,5,7,6,1,4,6,3,6,3,5,5,2,7,3,1,5,2,2,1,1,1,1,1,1,3,5,3,3,1,4,2,1,7,1,2,7,4,2,1,6,7,1
20187,3,3,Stanton County,KS,4,1,1,1,1,1,2,2,1,2,1,2,1,5,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,4,2,1,1,1,1,1,1,7,1,1,6,6,1,2,1,1,1,2,1,1,4,2,1,2,2,2,3,6,2,6,2,2,2,4,5,5,1,1,6,7,6,1,7,1,2,1,1,1,1,1,1,3,1,1,3,6,5,5,7,4,1,4,2,4,5,2,1,1,1,1,1,1,1,3,5,3,4,1,5,4,1,6,1,1,5,4,1,4,1,7,1
20189,8,10,Stevens County,KS,3,1,1,2,2,1,2,2,1,2,1,1,1,7,1,6,2,2,1,2,1,1,1,1,1,2,1,2,1,1,2,2,1,3,3,1,1,1,1,1,1,4,2,1,7,1,1,1,1,1,1,1,1,2,4,2,1,2,5,2,3,5,3,6,2,2,1,5,5,5,4,5,5,7,6,1,7,1,3,7,1,6,1,1,2,4,1,1,6,4,4,3,7,4,2,4,2,4,5,2,2,1,2,1,2,1,2,3,5,3,2,1,5,4,2,7,1,2,5,6,1,5,3,7,1
20191,48,51,Sumner County,KS,1,3,4,5,3,2,2,2,5,5,3,2,2,4,5,6,3,3,6,3,2,3,5,4,4,5,6,4,2,2,2,2,2,4,3,2,2,3,2,3,4,3,7,2,6,4,4,1,3,5,4,6,3,5,2,5,5,2,2,2,3,1,5,5,4,3,4,5,5,3,4,2,2,5,4,1,5,3,3,4,2,3,4,1,4,3,7,3,5,3,3,2,3,7,4,6,5,4,4,4,4,1,3,3,3,4,2,4,5,3,5,2,4,2,2,7,2,7,5,5,5,3,4,6,1
20193,13,24,Thomas County,KS,3,1,3,2,2,1,1,2,1,4,2,2,1,2,1,6,2,2,1,1,2,1,2,2,1,2,2,3,1,2,2,1,1,3,1,1,1,1,1,1,1,5,2,1,7,4,1,1,1,2,2,2,1,1,4,2,7,2,4,2,3,7,3,6,2,2,2,4,4,5,1,3,4,7,6,1,7,6,1,7,1,5,7,6,6,7,7,6,7,6,3,2,3,7,5,7,1,5,4,3,2,1,3,1,2,2,2,6,7,3,3,2,5,4,3,7,1,2,6,2,1,4,3,7,1
20195,5,2,Trego County,KS,4,3,1,1,1,1,2,1,1,5,1,2,1,1,1,5,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,1,6,1,1,7,4,1,2,1,2,1,2,1,2,3,2,6,6,2,2,3,5,3,6,2,2,2,3,2,3,1,3,3,6,3,1,7,4,1,7,1,7,1,1,3,6,1,1,2,1,6,4,4,6,1,7,3,3,4,2,2,1,1,1,1,1,1,5,5,3,6,1,6,3,1,5,1,1,6,2,2,1,1,7,1
20197,29,36,Wabaunsee County,KS,1,5,4,2,3,2,1,2,7,6,1,3,4,7,4,6,1,2,2,3,1,1,2,3,2,2,2,2,2,2,1,1,4,4,2,3,5,2,1,1,1,5,7,1,7,3,2,1,2,4,2,3,3,3,4,5,6,2,4,2,3,4,4,6,3,3,2,6,4,5,4,3,3,6,3,1,4,4,4,3,3,3,6,1,5,1,1,1,5,1,5,1,2,7,1,6,7,1,5,3,2,7,2,5,2,1,6,5,6,3,5,2,6,3,2,5,1,2,4,2,3,4,3,7,1
20199,5,1,Wallace County,KS,4,1,1,1,1,1,1,3,1,2,1,2,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,7,1,1,1,1,1,1,1,3,1,1,6,1,1,1,1,1,1,3,1,1,5,2,7,2,2,2,3,7,3,6,2,2,1,4,4,4,1,2,4,7,5,1,7,1,1,2,5,1,1,1,7,4,1,1,1,3,5,5,4,6,1,7,1,1,4,2,1,1,1,1,1,1,1,5,6,3,4,1,5,3,1,6,1,1,6,2,1,2,1,7,1
20201,7,6,Washington County,KS,4,5,2,1,1,1,2,2,2,6,1,3,5,1,3,5,1,1,2,1,1,1,1,3,1,2,1,2,1,1,1,2,1,4,4,4,1,1,1,1,1,4,1,1,6,3,1,2,1,3,1,1,3,2,3,2,3,2,6,2,3,4,4,6,2,3,2,5,5,3,1,2,5,6,4,1,7,2,1,4,1,5,7,4,2,6,6,6,7,2,5,3,2,5,1,7,4,1,4,2,2,1,1,1,1,1,1,4,5,3,5,1,4,3,1,6,1,2,6,2,3,1,2,7,1
20203,1,3,Wichita County,KS,4,1,1,1,1,1,2,2,1,2,1,2,1,1,2,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,1,1,1,1,1,1,1,2,1,1,6,3,1,2,1,2,1,2,1,1,5,2,7,2,5,2,3,7,3,6,2,2,2,4,4,4,1,2,6,7,6,1,7,1,1,4,6,4,1,3,5,3,7,7,1,4,5,5,7,4,1,6,2,1,4,2,1,4,1,2,1,1,4,5,7,3,4,1,5,1,1,6,1,1,5,1,1,2,1,7,1
20205,18,25,Wilson County,KS,3,3,6,3,7,1,5,2,6,5,3,3,6,3,6,6,3,5,4,3,6,3,7,3,7,3,5,4,5,3,6,4,6,5,5,3,7,4,4,7,5,7,7,2,7,6,2,3,7,4,3,7,4,5,1,7,4,2,4,2,3,1,4,5,3,3,2,6,2,5,4,3,4,5,3,1,7,1,3,6,1,5,1,5,6,6,5,4,6,3,5,3,1,5,2,3,3,1,5,4,4,3,4,5,4,2,2,4,5,3,6,3,4,6,3,6,6,4,4,4,5,1,2,6,1
20207,3,5,Woodson County,KS,4,3,3,2,3,1,2,2,4,5,2,3,6,2,6,6,2,2,2,2,2,2,5,3,7,3,2,3,1,2,2,2,3,5,6,2,6,2,2,5,2,4,7,1,7,4,2,2,3,4,2,6,3,5,1,7,6,2,3,2,3,1,4,5,3,3,2,6,2,4,4,6,3,3,1,1,5,4,1,1,5,7,1,4,3,5,1,1,7,1,6,4,1,6,2,5,5,2,5,3,3,1,2,3,2,1,2,3,4,3,6,2,3,3,2,5,4,3,5,1,4,1,6,6,1
20209,303,298,Wyandotte County,KS,1,5,7,6,6,7,6,5,6,6,6,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,6,4,1,7,3,7,6,7,7,4,3,1,7,1,2,7,6,3,5,4,6,3,3,2,6,2,6,1,7,1,2,5,1,7,6,7,3,7,5,4,5,2,5,5,7,3,7,3,5,7,3,6,2,6,7,4,7,7,7,7,7,7,7,7,6,4,3,7,7,5,7,6,3,6,2,6,5,5,2,1,7,1
21001,12,12,Adair County,KY,3,3,5,3,2,3,2,6,4,2,3,5,2,3,3,2,2,3,4,6,3,3,2,3,2,3,3,3,2,4,2,5,3,7,2,3,2,2,2,2,4,3,3,3,1,3,4,4,2,7,3,4,7,5,1,7,5,6,3,7,3,1,4,4,4,7,3,2,1,2,1,7,6,2,3,4,1,5,5,4,7,2,1,5,3,3,5,4,5,2,5,7,4,1,7,2,5,4,6,4,3,3,3,3,3,3,3,2,2,3,4,4,2,1,4,3,2,4,2,5,6,2,3,3,7
21003,28,29,Allen County,KY,3,1,6,3,3,4,4,7,5,2,3,6,3,4,2,2,4,4,6,5,3,4,6,4,5,4,4,4,3,5,3,4,5,3,3,5,5,3,4,2,3,6,3,4,1,4,5,4,3,7,3,4,6,6,1,7,3,6,4,7,3,1,4,4,4,6,5,4,1,2,1,2,3,4,6,5,3,1,4,3,2,2,4,1,1,2,1,3,7,2,5,6,3,1,3,3,6,1,6,4,4,6,3,4,4,3,6,3,2,3,5,6,2,1,5,3,3,5,3,5,7,3,6,3,7
21005,44,41,Anderson County,KY,3,3,7,3,3,5,2,6,7,2,3,5,4,4,3,3,5,4,4,6,5,4,4,5,3,4,3,5,4,4,4,7,5,6,4,4,5,4,3,3,5,6,4,3,1,3,6,5,4,7,4,5,5,4,1,7,5,2,5,7,3,1,3,5,4,6,5,7,4,7,4,7,6,5,7,3,5,7,5,4,2,3,6,3,2,2,1,1,1,2,1,1,2,4,2,5,7,1,4,5,5,5,4,5,4,3,5,6,7,3,7,3,6,2,6,2,3,5,1,4,5,6,1,4,5
21007,4,7,Ballard County,KY,4,1,3,5,2,3,6,5,4,2,2,7,4,3,7,5,7,5,3,3,2,2,3,6,6,3,7,3,3,5,6,5,5,6,7,7,5,7,3,4,5,7,2,3,3,1,3,4,4,6,2,4,6,5,4,2,5,2,5,6,3,1,5,4,5,5,5,7,5,6,6,6,4,5,5,6,5,2,6,2,1,1,1,1,3,2,1,1,1,1,4,4,1,3,2,3,6,2,6,4,3,7,2,6,3,2,7,3,4,3,7,6,3,4,4,5,5,4,1,6,5,2,2,4,7
21009,61,56,Barren County,KY,3,1,7,4,4,4,5,7,5,2,5,5,3,5,2,4,5,5,7,6,5,5,4,5,3,5,5,5,4,5,5,4,4,4,5,7,3,4,2,3,6,4,4,5,1,4,5,4,5,7,5,4,6,5,2,7,4,6,5,7,3,1,3,4,4,6,3,2,1,2,1,3,7,4,4,5,5,5,4,5,2,3,1,4,3,6,2,7,6,5,3,5,3,2,4,5,2,3,6,5,5,1,5,4,4,5,3,3,2,3,4,7,2,5,7,4,4,6,2,5,7,4,6,3,1
21011,17,11,Bath County,KY,4,3,3,2,2,3,2,6,4,2,3,4,3,7,1,2,2,3,4,4,2,3,2,4,2,3,2,3,2,3,3,7,3,7,2,3,3,2,2,2,3,3,2,2,2,1,4,6,2,6,3,4,6,5,1,7,4,2,3,6,3,1,2,5,3,7,5,5,4,7,4,6,2,5,5,4,3,5,5,2,3,1,7,1,1,2,1,4,4,2,4,7,1,1,6,4,7,3,4,3,3,5,2,3,3,2,5,6,4,3,7,2,6,3,5,3,3,4,1,4,5,2,4,4,1
21013,21,21,Bell County,KY,3,4,4,3,3,4,3,6,3,2,4,6,3,4,2,3,4,4,3,4,5,5,3,3,3,4,3,5,3,4,4,6,5,5,5,2,3,4,3,2,4,7,3,6,1,7,5,5,5,6,3,7,7,6,1,7,5,2,7,7,3,1,3,4,3,7,6,4,3,4,4,5,1,2,1,1,3,5,5,7,3,3,1,1,2,6,1,7,5,6,3,7,1,1,7,2,2,4,6,4,4,1,4,3,5,4,2,4,4,3,5,3,2,1,6,1,3,7,1,3,6,1,2,3,7
21015,510,442,Boone County,KY,1,1,7,7,6,7,6,7,7,2,7,5,7,7,5,6,7,7,7,7,7,7,7,7,7,7,6,7,7,6,7,7,7,5,6,6,7,7,7,7,7,7,6,6,2,3,7,6,7,7,7,6,5,5,3,2,7,2,7,7,3,1,2,6,3,6,5,7,5,7,4,3,4,5,7,4,6,7,7,6,6,4,3,5,4,4,6,5,4,5,2,1,4,6,1,7,6,7,4,7,7,7,7,7,6,6,7,6,5,3,7,7,6,6,7,3,6,6,2,5,6,7,5,4,7
21017,44,37,Bourbon County,KY,1,3,6,4,4,4,6,6,7,2,3,4,4,7,3,4,5,6,5,5,4,5,4,5,3,5,5,5,5,4,6,7,5,6,6,3,4,5,4,5,4,7,4,3,1,7,6,6,4,7,4,6,5,5,3,7,7,2,6,7,3,1,2,5,3,6,7,7,4,7,1,4,6,6,7,4,5,6,3,4,1,4,1,6,2,4,7,7,6,7,2,4,4,3,2,4,6,4,4,5,5,6,4,5,5,3,6,6,7,3,7,4,4,4,6,4,6,5,1,6,5,5,2,4,7
21019,123,131,Boyd County,KY,1,3,6,6,7,6,7,7,6,2,7,5,6,6,7,6,7,7,7,6,7,7,7,7,5,7,6,7,7,7,7,7,7,5,7,7,7,7,5,5,7,6,7,7,2,4,7,7,6,6,6,7,7,6,1,7,4,2,7,7,3,1,1,6,3,7,2,4,5,7,4,6,6,3,4,3,5,7,3,7,3,4,7,4,4,7,4,7,4,5,3,5,2,4,7,6,4,6,5,6,7,6,7,6,6,5,6,6,5,3,6,5,2,5,7,2,5,7,2,3,7,3,4,4,7
21021,48,62,Boyle County,KY,3,3,7,4,5,4,6,6,7,2,4,5,4,5,3,3,6,5,5,6,6,5,4,6,3,6,4,6,6,5,5,6,5,6,5,4,5,6,4,7,4,5,5,4,1,5,6,5,6,7,5,5,6,5,1,7,4,2,6,7,3,1,3,4,3,6,6,6,4,6,1,7,6,5,5,4,6,6,4,7,5,2,3,3,7,7,4,7,5,6,2,3,4,3,3,5,3,4,5,5,5,5,6,6,5,4,5,7,4,3,5,4,4,1,6,3,3,5,1,3,6,5,4,3,5
21023,19,24,Bracken County,KY,1,3,4,5,3,4,4,6,5,2,6,4,5,3,2,3,3,3,4,5,2,4,7,5,4,6,3,4,3,4,3,7,5,4,2,3,5,3,3,5,3,6,3,3,2,4,5,6,4,7,3,4,5,6,2,2,6,2,6,7,3,1,2,5,3,7,4,4,5,7,4,1,4,6,7,3,1,1,7,1,1,3,7,1,1,1,1,1,6,3,5,3,1,2,3,5,7,4,3,4,4,7,3,6,3,2,7,5,6,3,3,4,6,4,4,3,3,5,1,5,6,4,1,4,3
21025,8,8,Breathitt County,KY,3,4,3,3,2,4,2,5,2,2,2,5,2,3,1,2,2,3,2,4,2,3,2,3,2,3,2,4,2,4,2,7,2,2,1,1,2,2,2,2,3,4,3,3,2,1,4,6,2,6,3,6,7,5,5,7,5,2,7,6,3,1,2,4,2,7,5,2,1,3,4,4,1,1,2,3,1,4,2,7,7,2,4,3,2,7,3,3,7,4,3,7,1,1,7,2,4,1,5,4,3,1,2,2,3,3,2,2,3,3,3,2,2,1,5,2,2,4,1,5,6,1,1,3,7
21027,19,19,Breckinridge Coun,KY,4,1,2,3,6,3,5,6,4,2,2,6,3,3,6,5,4,2,3,5,2,3,2,5,2,3,7,3,3,5,3,3,4,6,3,7,4,3,2,3,2,7,5,6,2,5,4,4,2,7,7,6,6,4,3,6,6,7,5,6,3,1,3,4,4,5,3,5,1,3,4,2,5,3,4,5,2,3,4,2,6,1,6,1,2,2,1,3,5,1,7,5,1,2,5,2,6,3,4,4,3,7,2,5,3,3,6,6,2,3,4,4,2,2,4,5,2,3,2,5,6,3,3,4,7
21029,146,135,Bullitt County,KY,1,1,7,5,7,6,7,7,6,2,5,7,6,6,5,6,6,7,5,7,7,6,6,6,5,6,7,6,6,5,5,5,6,5,5,5,6,7,6,7,5,7,7,6,3,5,7,5,6,7,6,7,7,5,6,2,5,2,7,7,3,1,3,5,4,6,3,6,2,6,1,3,4,3,4,4,1,5,4,3,4,2,4,3,2,1,3,1,2,1,1,1,1,3,1,5,7,3,4,6,6,7,6,6,6,6,7,5,3,3,6,6,7,5,7,3,4,7,2,3,6,6,2,4,5
21031,15,19,Butler County,KY,4,1,3,2,2,3,5,7,6,2,2,6,4,4,4,4,2,3,5,4,2,3,2,3,2,3,7,4,2,5,2,4,5,5,3,6,4,3,3,5,5,6,2,3,1,1,7,4,2,7,5,5,6,5,1,7,4,2,4,5,3,1,4,4,4,5,2,2,1,2,4,6,6,3,2,5,4,5,4,6,1,2,1,3,4,2,4,6,4,2,5,5,2,1,3,2,5,3,5,3,3,7,2,6,3,2,7,1,2,3,3,5,2,6,4,5,2,4,2,2,7,2,2,3,7
21033,15,8,Caldwell County,KY,3,1,2,5,3,4,7,6,4,2,4,7,6,3,6,3,3,6,5,4,2,3,2,4,4,3,7,4,4,5,3,5,4,3,4,3,7,4,2,5,3,5,3,4,3,5,4,4,3,7,3,4,6,5,1,7,4,2,3,6,3,1,5,4,5,5,7,3,2,3,4,5,5,6,4,6,6,6,6,7,1,2,1,2,4,3,4,5,1,3,4,5,1,3,4,3,5,3,5,5,4,4,3,4,3,2,4,3,3,3,4,6,2,5,5,5,6,4,1,7,6,2,3,4,7
21035,83,70,Calloway County,KY,3,1,6,4,5,5,7,6,7,2,5,7,5,7,6,4,4,6,3,4,6,6,4,5,4,6,7,6,6,5,6,6,5,4,5,7,6,6,5,5,4,2,5,6,1,4,5,5,7,6,5,4,5,5,3,2,3,6,5,7,3,1,5,4,5,5,4,2,6,2,6,6,5,6,6,6,3,2,4,6,6,1,6,5,5,5,4,4,3,6,5,6,4,4,7,3,2,4,1,6,5,4,6,5,5,5,4,2,2,3,4,6,2,5,7,6,6,7,2,5,5,4,4,3,7
21037,217,228,Campbell County,KY,1,1,7,7,7,7,6,7,7,2,7,5,7,7,5,5,7,7,6,7,7,7,7,7,7,7,6,7,7,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,2,4,7,6,7,7,7,6,6,6,6,7,6,2,7,7,3,1,2,6,3,7,6,7,6,7,4,7,7,4,7,3,2,3,7,5,7,6,4,4,3,4,4,7,2,6,1,2,3,5,2,4,7,7,3,7,7,7,7,7,7,6,7,7,7,3,5,7,6,6,7,2,6,3,1,4,6,6,3,4,7
21039,10,10,Carlisle County,KY,4,1,3,2,4,3,6,5,4,2,2,7,4,3,7,5,5,4,3,4,3,3,2,5,5,3,7,3,4,5,4,5,5,6,7,7,4,5,2,4,3,7,7,2,2,5,4,5,3,6,3,4,6,5,4,2,3,2,5,6,3,1,5,4,5,5,5,4,5,4,6,7,5,5,4,6,1,4,5,1,1,1,1,1,1,1,1,1,3,1,4,4,1,3,5,4,7,1,6,4,3,7,2,5,3,1,7,3,3,3,5,4,3,5,4,5,5,3,2,4,5,2,1,4,7
21041,22,21,Carroll County,KY,3,1,3,4,3,4,4,6,7,2,7,5,5,3,6,6,4,3,7,5,4,3,6,7,7,6,3,4,7,4,7,6,6,5,5,7,7,7,6,6,7,7,3,3,2,1,4,6,4,7,3,4,5,4,1,2,4,2,7,7,3,1,3,5,4,6,4,6,4,7,4,5,5,6,7,4,7,7,7,7,1,7,5,6,5,6,5,7,7,6,4,5,2,2,6,2,3,5,4,4,4,7,4,6,4,2,7,6,6,3,5,5,7,4,6,3,4,4,2,6,6,4,6,4,5
21043,44,51,Carter County,KY,3,3,3,4,6,5,7,6,5,2,4,4,4,3,7,5,2,3,4,5,7,4,7,5,2,4,3,4,3,3,4,7,6,3,4,7,4,3,2,2,4,7,5,4,2,5,5,7,4,6,3,6,7,6,2,7,2,2,6,7,3,1,2,5,3,6,1,3,3,6,4,3,4,3,4,3,1,6,4,4,3,1,6,3,2,2,3,3,7,1,4,7,1,1,6,2,6,2,4,4,4,5,4,4,4,4,5,5,4,3,5,2,2,2,6,2,3,5,3,4,6,2,2,4,3