mnemorandom 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,2979 @@
1
+ {
2
+ "description": "U.S. Counties by State",
3
+ "source": "https://en.wikipedia.org/wiki/List_of_counties_by_U.S._state",
4
+ "counties": {
5
+ "Mississippi": [
6
+ "Adams",
7
+ "Alcorn",
8
+ "Amite",
9
+ "Attala",
10
+ "Benton",
11
+ "Bolivar",
12
+ "Calhoun",
13
+ "Carroll",
14
+ "Chickasaw",
15
+ "Choctaw",
16
+ "Claiborne",
17
+ "Clarke",
18
+ "Clay",
19
+ "Coahoma",
20
+ "Copiah",
21
+ "Covington",
22
+ "DeSoto",
23
+ "Forrest",
24
+ "Franklin",
25
+ "George",
26
+ "Greene",
27
+ "Grenada",
28
+ "Hancock",
29
+ "Harrison",
30
+ "Hinds",
31
+ "Holmes",
32
+ "Humphreys",
33
+ "Issaquena",
34
+ "Itawamba",
35
+ "Jackson",
36
+ "Jasper",
37
+ "Jefferson",
38
+ "Jefferson Davis",
39
+ "Jones",
40
+ "Kemper",
41
+ "Lafayette",
42
+ "Lamar",
43
+ "Lauderdale",
44
+ "Lawrence",
45
+ "Leake",
46
+ "Lee",
47
+ "Leflore",
48
+ "Lincoln",
49
+ "Lowndes",
50
+ "Madison",
51
+ "Marion",
52
+ "Marshall",
53
+ "Monroe",
54
+ "Montgomery",
55
+ "Neshoba",
56
+ "Newton",
57
+ "Noxubee",
58
+ "Oktibbeha",
59
+ "Panola",
60
+ "Pearl River",
61
+ "Perry",
62
+ "Pike",
63
+ "Pontotoc",
64
+ "Prentiss",
65
+ "Quitman",
66
+ "Rankin",
67
+ "Scott",
68
+ "Sharkey",
69
+ "Simpson",
70
+ "Smith",
71
+ "Stone",
72
+ "Sunflower",
73
+ "Tallahatchie",
74
+ "Tate",
75
+ "Tippah",
76
+ "Tishomingo",
77
+ "Tunica",
78
+ "Union",
79
+ "Walthall",
80
+ "Warren"
81
+ ],
82
+ "Oklahoma": [
83
+ "Adair",
84
+ "Alfalfa",
85
+ "Atoka",
86
+ "Beaver",
87
+ "Beckham",
88
+ "Blaine",
89
+ "Bryan",
90
+ "Caddo",
91
+ "Canadian",
92
+ "Carter",
93
+ "Cherokee",
94
+ "Choctaw",
95
+ "Cimarron",
96
+ "Cleveland",
97
+ "Coal",
98
+ "Comanche",
99
+ "Cotton",
100
+ "Craig",
101
+ "Creek",
102
+ "Custer",
103
+ "Delaware",
104
+ "Dewey",
105
+ "Ellis",
106
+ "Garfield",
107
+ "Garvin",
108
+ "Grady",
109
+ "Grant",
110
+ "Greer",
111
+ "Harmon",
112
+ "Harper",
113
+ "Haskell",
114
+ "Hughes",
115
+ "Jackson",
116
+ "Jefferson",
117
+ "Johnston",
118
+ "Kay",
119
+ "Kingfisher",
120
+ "Kiowa",
121
+ "Latimer",
122
+ "Le Flore",
123
+ "Lincoln",
124
+ "Logan",
125
+ "Love",
126
+ "Major",
127
+ "Marshall",
128
+ "Mayes",
129
+ "McClain",
130
+ "McCurtain",
131
+ "McIntosh",
132
+ "Murray",
133
+ "Muskogee",
134
+ "Noble",
135
+ "Nowata",
136
+ "Okfuskee",
137
+ "Oklahoma",
138
+ "Okmulgee",
139
+ "Osage",
140
+ "Ottawa",
141
+ "Pawnee",
142
+ "Payne",
143
+ "Pittsburg",
144
+ "Pontotoc",
145
+ "Pottawatomie",
146
+ "Pushmataha",
147
+ "Roger Mills",
148
+ "Rogers",
149
+ "Seminole",
150
+ "Sequoyah",
151
+ "Stephens",
152
+ "Texas",
153
+ "Tillman",
154
+ "Tulsa",
155
+ "Wagoner"
156
+ ],
157
+ "Wyoming": [
158
+ "Albany",
159
+ "Big Horn",
160
+ "Campbell",
161
+ "Carbon",
162
+ "Converse",
163
+ "Crook",
164
+ "Fremont",
165
+ "Goshen",
166
+ "Hot Springs",
167
+ "Johnson",
168
+ "Laramie",
169
+ "Lincoln",
170
+ "Natrona",
171
+ "Niobrara",
172
+ "Park",
173
+ "Platte",
174
+ "Sheridan",
175
+ "Sublette",
176
+ "Sweetwater",
177
+ "Teton",
178
+ "Uinta"
179
+ ],
180
+ "Minnesota": [
181
+ "Aitkin",
182
+ "Anoka",
183
+ "Becker",
184
+ "Beltrami",
185
+ "Benton",
186
+ "Big Stone",
187
+ "Blue Earth",
188
+ "Brown",
189
+ "Carlton",
190
+ "Carver",
191
+ "Cass",
192
+ "Chippewa",
193
+ "Chisago",
194
+ "Clay",
195
+ "Clearwater",
196
+ "Cook",
197
+ "Cottonwood",
198
+ "Crow Wing",
199
+ "Dakota",
200
+ "Dodge",
201
+ "Douglas",
202
+ "Faribault",
203
+ "Fillmore",
204
+ "Freeborn",
205
+ "Goodhue",
206
+ "Grant",
207
+ "Hennepin",
208
+ "Houston",
209
+ "Hubbard",
210
+ "Isanti",
211
+ "Itasca",
212
+ "Jackson",
213
+ "Kanabec",
214
+ "Kandiyohi",
215
+ "Kittson",
216
+ "Koochiching",
217
+ "Lac qui Parle",
218
+ "Lake",
219
+ "Lake of the Woods",
220
+ "Le Sueur",
221
+ "Lincoln",
222
+ "Lyon",
223
+ "Mahnomen",
224
+ "Marshall",
225
+ "Martin",
226
+ "McLeod",
227
+ "Meeker",
228
+ "Mille Lacs",
229
+ "Morrison",
230
+ "Mower",
231
+ "Murray",
232
+ "Nicollet",
233
+ "Nobles",
234
+ "Norman",
235
+ "Olmsted",
236
+ "Otter Tail",
237
+ "Pennington",
238
+ "Pine",
239
+ "Pipestone",
240
+ "Polk",
241
+ "Pope",
242
+ "Ramsey",
243
+ "Red Lake",
244
+ "Redwood",
245
+ "Renville",
246
+ "Rice",
247
+ "Rock",
248
+ "Roseau",
249
+ "Scott",
250
+ "Sherburne",
251
+ "Sibley",
252
+ "St. Louis",
253
+ "Stearns",
254
+ "Steele",
255
+ "Stevens",
256
+ "Swift",
257
+ "Todd",
258
+ "Traverse",
259
+ "Wabasha",
260
+ "Wadena"
261
+ ],
262
+ "Illinois": [
263
+ "Adams",
264
+ "Alexander",
265
+ "Bond",
266
+ "Boone",
267
+ "Brown",
268
+ "Bureau",
269
+ "Calhoun",
270
+ "Carroll",
271
+ "Cass",
272
+ "Champaign",
273
+ "Christian",
274
+ "Clark",
275
+ "Clay",
276
+ "Clinton",
277
+ "Coles",
278
+ "Cook",
279
+ "Crawford",
280
+ "Cumberland",
281
+ "DeKalb",
282
+ "De Witt",
283
+ "Douglas",
284
+ "DuPage",
285
+ "Edgar",
286
+ "Edwards",
287
+ "Effingham",
288
+ "Fayette",
289
+ "Ford",
290
+ "Franklin",
291
+ "Fulton",
292
+ "Gallatin",
293
+ "Greene",
294
+ "Grundy",
295
+ "Hamilton",
296
+ "Hancock",
297
+ "Hardin",
298
+ "Henderson",
299
+ "Henry",
300
+ "Iroquois",
301
+ "Jackson",
302
+ "Jasper",
303
+ "Jefferson",
304
+ "Jersey",
305
+ "Jo Daviess",
306
+ "Johnson",
307
+ "Kane",
308
+ "Kankakee",
309
+ "Kendall",
310
+ "Knox",
311
+ "LaSalle",
312
+ "Lake",
313
+ "Lawrence",
314
+ "Lee",
315
+ "Livingston",
316
+ "Logan",
317
+ "Macon",
318
+ "Macoupin",
319
+ "Madison",
320
+ "Marion",
321
+ "Marshall",
322
+ "Mason",
323
+ "Massac",
324
+ "McDonough",
325
+ "McHenry",
326
+ "McLean",
327
+ "Menard",
328
+ "Mercer",
329
+ "Monroe",
330
+ "Montgomery",
331
+ "Morgan",
332
+ "Moultrie",
333
+ "Ogle",
334
+ "Peoria",
335
+ "Perry",
336
+ "Piatt",
337
+ "Pike",
338
+ "Pope",
339
+ "Pulaski",
340
+ "Putnam",
341
+ "Randolph",
342
+ "Richland",
343
+ "Rock Island",
344
+ "Saline",
345
+ "Sangamon",
346
+ "Schuyler",
347
+ "Scott",
348
+ "Shelby",
349
+ "St. Clair",
350
+ "Stark",
351
+ "Stephenson",
352
+ "Tazewell",
353
+ "Union",
354
+ "Vermilion",
355
+ "Wabash",
356
+ "Warren"
357
+ ],
358
+ "Arkansas": [
359
+ "Arkansas",
360
+ "Ashley",
361
+ "Baxter",
362
+ "Benton",
363
+ "Boone",
364
+ "Bradley",
365
+ "Calhoun",
366
+ "Carroll",
367
+ "Chicot",
368
+ "Clark",
369
+ "Clay",
370
+ "Cleburne",
371
+ "Cleveland",
372
+ "Columbia",
373
+ "Conway",
374
+ "Craighead",
375
+ "Crawford",
376
+ "Crittenden",
377
+ "Cross",
378
+ "Dallas",
379
+ "Desha",
380
+ "Drew",
381
+ "Faulkner",
382
+ "Franklin",
383
+ "Fulton",
384
+ "Garland",
385
+ "Grant",
386
+ "Greene",
387
+ "Hempstead",
388
+ "Hot Spring",
389
+ "Howard",
390
+ "Independence",
391
+ "Izard",
392
+ "Jackson",
393
+ "Jefferson",
394
+ "Johnson",
395
+ "Lafayette",
396
+ "Lawrence",
397
+ "Lee",
398
+ "Lincoln",
399
+ "Little River",
400
+ "Logan",
401
+ "Lonoke",
402
+ "Madison",
403
+ "Marion",
404
+ "Miller",
405
+ "Mississippi",
406
+ "Monroe",
407
+ "Montgomery",
408
+ "Nevada",
409
+ "Newton",
410
+ "Ouachita",
411
+ "Perry",
412
+ "Phillips",
413
+ "Pike",
414
+ "Poinsett",
415
+ "Polk",
416
+ "Pope",
417
+ "Prairie",
418
+ "Pulaski",
419
+ "Randolph",
420
+ "Saline",
421
+ "Scott",
422
+ "Searcy",
423
+ "Sebastian",
424
+ "Sevier",
425
+ "Sharp",
426
+ "St. Francis",
427
+ "Stone",
428
+ "Union",
429
+ "Van Buren"
430
+ ],
431
+ "New Mexico": [
432
+ "Bernalillo",
433
+ "Catron",
434
+ "Chaves",
435
+ "Cibola",
436
+ "Colfax",
437
+ "Curry",
438
+ "De Baca",
439
+ "Do\\u00f1a Ana",
440
+ "Eddy",
441
+ "Grant",
442
+ "Guadalupe",
443
+ "Harding",
444
+ "Hidalgo",
445
+ "Lea",
446
+ "Lincoln",
447
+ "Los Alamos",
448
+ "Luna",
449
+ "McKinley",
450
+ "Mora",
451
+ "Otero",
452
+ "Quay",
453
+ "Rio Arriba",
454
+ "Roosevelt",
455
+ "San Juan",
456
+ "San Miguel",
457
+ "Sandoval",
458
+ "Santa Fe",
459
+ "Sierra",
460
+ "Socorro",
461
+ "Taos",
462
+ "Torrance",
463
+ "Union",
464
+ "Valencia"
465
+ ],
466
+ "Ohio": [
467
+ "Adams",
468
+ "Allen",
469
+ "Ashland",
470
+ "Ashtabula",
471
+ "Athens",
472
+ "Auglaize",
473
+ "Belmont",
474
+ "Brown",
475
+ "Butler",
476
+ "Carroll",
477
+ "Champaign",
478
+ "Clark",
479
+ "Clermont",
480
+ "Clinton",
481
+ "Columbiana",
482
+ "Coshocton",
483
+ "Crawford",
484
+ "Cuyahoga",
485
+ "Darke",
486
+ "Defiance",
487
+ "Delaware",
488
+ "Erie",
489
+ "Fairfield",
490
+ "Fayette",
491
+ "Franklin",
492
+ "Fulton",
493
+ "Gallia",
494
+ "Geauga",
495
+ "Greene",
496
+ "Guernsey",
497
+ "Hamilton",
498
+ "Hancock",
499
+ "Hardin",
500
+ "Harrison",
501
+ "Henry",
502
+ "Highland",
503
+ "Hocking",
504
+ "Holmes",
505
+ "Huron",
506
+ "Jackson",
507
+ "Jefferson",
508
+ "Knox",
509
+ "Lake",
510
+ "Lawrence",
511
+ "Licking",
512
+ "Logan",
513
+ "Lorain",
514
+ "Lucas",
515
+ "Madison",
516
+ "Mahoning",
517
+ "Marion",
518
+ "Medina",
519
+ "Meigs",
520
+ "Mercer",
521
+ "Miami",
522
+ "Monroe",
523
+ "Montgomery",
524
+ "Morgan",
525
+ "Morrow",
526
+ "Muskingum",
527
+ "Noble",
528
+ "Ottawa",
529
+ "Paulding",
530
+ "Perry",
531
+ "Pickaway",
532
+ "Pike",
533
+ "Portage",
534
+ "Preble",
535
+ "Putnam",
536
+ "Richland",
537
+ "Ross",
538
+ "Sandusky",
539
+ "Scioto",
540
+ "Seneca",
541
+ "Shelby",
542
+ "Stark",
543
+ "Summit",
544
+ "Trumbull",
545
+ "Tuscarawas",
546
+ "Union",
547
+ "Van Wert",
548
+ "Vinton"
549
+ ],
550
+ "Indiana": [
551
+ "Adams",
552
+ "Allen",
553
+ "Bartholomew",
554
+ "Benton",
555
+ "Blackford",
556
+ "Boone",
557
+ "Brown",
558
+ "Carroll",
559
+ "Cass",
560
+ "Clark",
561
+ "Clay",
562
+ "Clinton",
563
+ "Crawford",
564
+ "Daviess",
565
+ "DeKalb",
566
+ "Dearborn",
567
+ "Decatur",
568
+ "Delaware",
569
+ "Dubois",
570
+ "Elkhart",
571
+ "Fayette",
572
+ "Floyd",
573
+ "Fountain",
574
+ "Franklin",
575
+ "Fulton",
576
+ "Gibson",
577
+ "Grant",
578
+ "Greene",
579
+ "Hamilton",
580
+ "Hancock",
581
+ "Harrison",
582
+ "Hendricks",
583
+ "Henry",
584
+ "Howard",
585
+ "Huntington",
586
+ "Jackson",
587
+ "Jasper",
588
+ "Jay",
589
+ "Jefferson",
590
+ "Jennings",
591
+ "Johnson",
592
+ "Knox",
593
+ "Kosciusko",
594
+ "LaGrange",
595
+ "LaPorte",
596
+ "Lake",
597
+ "Lawrence",
598
+ "Madison",
599
+ "Marion",
600
+ "Marshall",
601
+ "Martin",
602
+ "Miami",
603
+ "Monroe",
604
+ "Montgomery",
605
+ "Morgan",
606
+ "Newton",
607
+ "Noble",
608
+ "Ohio",
609
+ "Orange",
610
+ "Owen",
611
+ "Parke",
612
+ "Perry",
613
+ "Pike",
614
+ "Porter",
615
+ "Posey",
616
+ "Pulaski",
617
+ "Putnam",
618
+ "Randolph",
619
+ "Ripley",
620
+ "Rush",
621
+ "Scott",
622
+ "Shelby",
623
+ "Spencer",
624
+ "St. Joseph",
625
+ "Starke",
626
+ "Steuben",
627
+ "Sullivan",
628
+ "Switzerland",
629
+ "Tippecanoe",
630
+ "Tipton",
631
+ "Union",
632
+ "Vanderburgh",
633
+ "Vermillion",
634
+ "Vigo",
635
+ "Wabash",
636
+ "Warren"
637
+ ],
638
+ "Maryland": [
639
+ "Allegany",
640
+ "Anne Arundel",
641
+ "Baltimore",
642
+ "Calvert",
643
+ "Caroline",
644
+ "Carroll",
645
+ "Cecil",
646
+ "Charles",
647
+ "Dorchester",
648
+ "Frederick",
649
+ "Garrett",
650
+ "Harford",
651
+ "Howard",
652
+ "Kent",
653
+ "Montgomery",
654
+ "Prince George's",
655
+ "Queen Anne's",
656
+ "Somerset",
657
+ "St. Mary's",
658
+ "Talbot"
659
+ ],
660
+ "Louisiana": [
661
+ "Acadia",
662
+ "Allen",
663
+ "Ascension",
664
+ "Assumption",
665
+ "Avoyelles",
666
+ "Beauregard",
667
+ "Bienville",
668
+ "Bossier",
669
+ "Caddo",
670
+ "Calcasieu",
671
+ "Caldwell",
672
+ "Cameron",
673
+ "Catahoula",
674
+ "Claiborne",
675
+ "Concordia",
676
+ "De Soto",
677
+ "East Baton Rouge",
678
+ "East Carroll",
679
+ "East Feliciana",
680
+ "Evangeline",
681
+ "Franklin",
682
+ "Grant",
683
+ "Iberia",
684
+ "Iberville",
685
+ "Jackson",
686
+ "Jefferson Davis",
687
+ "Jefferson",
688
+ "La Salle",
689
+ "Lafayette",
690
+ "Lafourche",
691
+ "Lincoln",
692
+ "Livingston",
693
+ "Madison",
694
+ "Morehouse",
695
+ "Natchitoches",
696
+ "Orleans",
697
+ "Ouachita",
698
+ "Plaquemines",
699
+ "Pointe Coupee",
700
+ "Rapides",
701
+ "Red River",
702
+ "Richland",
703
+ "Sabine",
704
+ "St. Bernard",
705
+ "St. Charles",
706
+ "St. Helena",
707
+ "St. James",
708
+ "St. John the Baptist",
709
+ "St. Landry",
710
+ "St. Martin",
711
+ "St. Mary",
712
+ "St. Tammany",
713
+ "Tangipahoa",
714
+ "Tensas",
715
+ "Terrebonne",
716
+ "Union",
717
+ "Vermilion",
718
+ "Vernon"
719
+ ],
720
+ "Idaho": [
721
+ "Ada",
722
+ "Adams",
723
+ "Bannock",
724
+ "Bear Lake",
725
+ "Benewah",
726
+ "Bingham",
727
+ "Blaine",
728
+ "Boise",
729
+ "Bonner",
730
+ "Bonneville",
731
+ "Boundary",
732
+ "Butte",
733
+ "Camas",
734
+ "Canyon",
735
+ "Caribou",
736
+ "Cassia",
737
+ "Clark",
738
+ "Clearwater",
739
+ "Custer",
740
+ "Elmore",
741
+ "Franklin",
742
+ "Fremont",
743
+ "Gem",
744
+ "Gooding",
745
+ "Idaho",
746
+ "Jefferson",
747
+ "Jerome",
748
+ "Kootenai",
749
+ "Latah",
750
+ "Lemhi",
751
+ "Lewis",
752
+ "Lincoln",
753
+ "Madison",
754
+ "Minidoka",
755
+ "Nez Perce",
756
+ "Oneida",
757
+ "Owyhee",
758
+ "Payette",
759
+ "Power",
760
+ "Shoshone",
761
+ "Teton",
762
+ "Twin Falls",
763
+ "Valley"
764
+ ],
765
+ "Arizona": [
766
+ "Apache",
767
+ "Cochise",
768
+ "Coconino",
769
+ "Gila",
770
+ "Graham",
771
+ "Greenlee",
772
+ "La Paz",
773
+ "Maricopa",
774
+ "Mohave",
775
+ "Navajo",
776
+ "Pima",
777
+ "Pinal",
778
+ "Santa Cruz"
779
+ ],
780
+ "Wisconsin": [
781
+ "Adams",
782
+ "Ashland",
783
+ "Barron",
784
+ "Bayfield",
785
+ "Brown",
786
+ "Buffalo",
787
+ "Burnett",
788
+ "Calumet",
789
+ "Chippewa",
790
+ "Clark",
791
+ "Columbia",
792
+ "Crawford",
793
+ "Dane",
794
+ "Dodge",
795
+ "Door",
796
+ "Douglas",
797
+ "Dunn",
798
+ "Eau Claire",
799
+ "Florence",
800
+ "Fond du Lac",
801
+ "Forest",
802
+ "Grant",
803
+ "Green",
804
+ "Green Lake",
805
+ "Iowa",
806
+ "Iron",
807
+ "Jackson",
808
+ "Jefferson",
809
+ "Juneau",
810
+ "Kenosha",
811
+ "Kewaunee",
812
+ "La Crosse",
813
+ "Lafayette",
814
+ "Langlade",
815
+ "Lincoln",
816
+ "Manitowoc",
817
+ "Marathon",
818
+ "Marinette",
819
+ "Marquette",
820
+ "Menominee",
821
+ "Milwaukee",
822
+ "Monroe",
823
+ "Oconto",
824
+ "Oneida",
825
+ "Outagamie",
826
+ "Ozaukee",
827
+ "Pepin",
828
+ "Pierce",
829
+ "Polk",
830
+ "Portage",
831
+ "Price",
832
+ "Racine",
833
+ "Richland",
834
+ "Rock",
835
+ "Rusk",
836
+ "Sauk",
837
+ "Sawyer",
838
+ "Shawano",
839
+ "Sheboygan",
840
+ "St. Croix",
841
+ "Taylor",
842
+ "Trempealeau",
843
+ "Vernon",
844
+ "Vilas",
845
+ "Walworth"
846
+ ],
847
+ "Michigan": [
848
+ "Alcona",
849
+ "Alger",
850
+ "Allegan",
851
+ "Alpena",
852
+ "Antrim",
853
+ "Arenac",
854
+ "Baraga",
855
+ "Barry",
856
+ "Bay",
857
+ "Benzie",
858
+ "Berrien",
859
+ "Branch",
860
+ "Calhoun",
861
+ "Cass",
862
+ "Charlevoix",
863
+ "Cheboygan",
864
+ "Chippewa",
865
+ "Clare",
866
+ "Clinton",
867
+ "Crawford",
868
+ "Delta",
869
+ "Dickinson",
870
+ "Eaton",
871
+ "Emmet",
872
+ "Genesee",
873
+ "Gladwin",
874
+ "Gogebic",
875
+ "Grand Traverse",
876
+ "Gratiot",
877
+ "Hillsdale",
878
+ "Houghton",
879
+ "Huron",
880
+ "Ingham",
881
+ "Ionia",
882
+ "Iosco",
883
+ "Iron",
884
+ "Isabella",
885
+ "Jackson",
886
+ "Kalamazoo",
887
+ "Kalkaska",
888
+ "Kent",
889
+ "Keweenaw",
890
+ "Lake",
891
+ "Lapeer",
892
+ "Leelanau",
893
+ "Lenawee",
894
+ "Livingston",
895
+ "Luce",
896
+ "Mackinac",
897
+ "Macomb",
898
+ "Manistee",
899
+ "Marquette",
900
+ "Mason",
901
+ "Mecosta",
902
+ "Menominee",
903
+ "Midland",
904
+ "Missaukee",
905
+ "Monroe",
906
+ "Montcalm",
907
+ "Montmorency",
908
+ "Muskegon",
909
+ "Newaygo",
910
+ "Oakland",
911
+ "Oceana",
912
+ "Ogemaw",
913
+ "Ontonagon",
914
+ "Osceola",
915
+ "Oscoda",
916
+ "Otsego",
917
+ "Ottawa",
918
+ "Presque Isle",
919
+ "Roscommon",
920
+ "Saginaw",
921
+ "Sanilac",
922
+ "Schoolcraft",
923
+ "Shiawassee",
924
+ "St. Clair",
925
+ "St. Joseph",
926
+ "Tuscola",
927
+ "Van Buren"
928
+ ],
929
+ "Kansas": [
930
+ "Allen",
931
+ "Anderson",
932
+ "Atchison",
933
+ "Barber",
934
+ "Barton",
935
+ "Bourbon",
936
+ "Brown",
937
+ "Butler",
938
+ "Chase",
939
+ "Chautauqua",
940
+ "Cherokee",
941
+ "Cheyenne",
942
+ "Clark",
943
+ "Clay",
944
+ "Cloud",
945
+ "Coffey",
946
+ "Comanche",
947
+ "Cowley",
948
+ "Crawford",
949
+ "Decatur",
950
+ "Dickinson",
951
+ "Doniphan",
952
+ "Douglas",
953
+ "Edwards",
954
+ "Elk",
955
+ "Ellis",
956
+ "Ellsworth",
957
+ "Finney",
958
+ "Ford",
959
+ "Franklin",
960
+ "Geary",
961
+ "Gove",
962
+ "Graham",
963
+ "Grant",
964
+ "Gray",
965
+ "Greeley",
966
+ "Greenwood",
967
+ "Hamilton",
968
+ "Harper",
969
+ "Harvey",
970
+ "Haskell",
971
+ "Hodgeman",
972
+ "Jackson",
973
+ "Jefferson",
974
+ "Jewell",
975
+ "Johnson",
976
+ "Kearny",
977
+ "Kingman",
978
+ "Kiowa",
979
+ "Labette",
980
+ "Lane",
981
+ "Leavenworth",
982
+ "Lincoln",
983
+ "Linn",
984
+ "Logan",
985
+ "Lyon",
986
+ "Marion",
987
+ "Marshall",
988
+ "McPherson",
989
+ "Meade",
990
+ "Miami",
991
+ "Mitchell",
992
+ "Montgomery",
993
+ "Morris",
994
+ "Morton",
995
+ "Nemaha",
996
+ "Neosho",
997
+ "Ness",
998
+ "Norton",
999
+ "Osage",
1000
+ "Osborne",
1001
+ "Ottawa",
1002
+ "Pawnee",
1003
+ "Phillips",
1004
+ "Pottawatomie",
1005
+ "Pratt",
1006
+ "Rawlins",
1007
+ "Reno",
1008
+ "Republic",
1009
+ "Rice",
1010
+ "Riley",
1011
+ "Rooks",
1012
+ "Rush",
1013
+ "Russell",
1014
+ "Saline",
1015
+ "Scott",
1016
+ "Sedgwick",
1017
+ "Seward",
1018
+ "Shawnee",
1019
+ "Sheridan",
1020
+ "Sherman",
1021
+ "Smith",
1022
+ "Stafford",
1023
+ "Stanton",
1024
+ "Stevens",
1025
+ "Sumner",
1026
+ "Thomas",
1027
+ "Trego",
1028
+ "Wabaunsee",
1029
+ "Wallace"
1030
+ ],
1031
+ "Utah": [
1032
+ "Beaver",
1033
+ "Box Elder",
1034
+ "Cache",
1035
+ "Carbon",
1036
+ "Daggett",
1037
+ "Davis",
1038
+ "Duchesne",
1039
+ "Emery",
1040
+ "Garfield",
1041
+ "Grand",
1042
+ "Iron",
1043
+ "Juab",
1044
+ "Kane",
1045
+ "Millard",
1046
+ "Morgan",
1047
+ "Piute",
1048
+ "Rich",
1049
+ "Salt Lake",
1050
+ "San Juan",
1051
+ "Sanpete",
1052
+ "Sevier",
1053
+ "Summit",
1054
+ "Tooele",
1055
+ "Uintah",
1056
+ "Utah"
1057
+ ],
1058
+ "Virginia": [
1059
+ "Accomack",
1060
+ "Albemarle",
1061
+ "Alleghany",
1062
+ "Amelia",
1063
+ "Amherst",
1064
+ "Appomattox",
1065
+ "Arlington",
1066
+ "Augusta",
1067
+ "Bath",
1068
+ "Bedford",
1069
+ "Bland",
1070
+ "Botetourt",
1071
+ "Brunswick",
1072
+ "Buchanan",
1073
+ "Buckingham",
1074
+ "Campbell",
1075
+ "Caroline",
1076
+ "Carroll",
1077
+ "Charles City",
1078
+ "Charlotte",
1079
+ "Chesterfield",
1080
+ "Clarke",
1081
+ "Craig",
1082
+ "Culpeper",
1083
+ "Cumberland",
1084
+ "Dickenson",
1085
+ "Dinwiddie",
1086
+ "Essex",
1087
+ "Fairfax",
1088
+ "Fauquier",
1089
+ "Floyd",
1090
+ "Fluvanna",
1091
+ "Franklin",
1092
+ "Frederick",
1093
+ "Giles",
1094
+ "Gloucester",
1095
+ "Goochland",
1096
+ "Grayson",
1097
+ "Greene",
1098
+ "Greensville",
1099
+ "Halifax",
1100
+ "Hanover",
1101
+ "Henrico",
1102
+ "Henry",
1103
+ "Highland",
1104
+ "Isle of Wight",
1105
+ "James City",
1106
+ "King George",
1107
+ "King William",
1108
+ "King and Queen",
1109
+ "Lancaster",
1110
+ "Lee",
1111
+ "Loudoun",
1112
+ "Louisa",
1113
+ "Lunenburg",
1114
+ "Madison",
1115
+ "Mathews",
1116
+ "Mecklenburg",
1117
+ "Middlesex",
1118
+ "Montgomery",
1119
+ "Nelson",
1120
+ "New Kent",
1121
+ "Northampton",
1122
+ "Northumberland",
1123
+ "Nottoway",
1124
+ "Orange",
1125
+ "Page",
1126
+ "Patrick",
1127
+ "Pittsylvania",
1128
+ "Powhatan",
1129
+ "Prince Edward",
1130
+ "Prince George",
1131
+ "Prince William",
1132
+ "Pulaski",
1133
+ "Rappahannock",
1134
+ "Richmond",
1135
+ "Roanoke",
1136
+ "Rockbridge",
1137
+ "Rockingham",
1138
+ "Russell",
1139
+ "Scott",
1140
+ "Shenandoah",
1141
+ "Smyth",
1142
+ "Southampton",
1143
+ "Spotsylvania",
1144
+ "Stafford",
1145
+ "Surry",
1146
+ "Sussex",
1147
+ "Tazewell"
1148
+ ],
1149
+ "Oregon": [
1150
+ "Baker",
1151
+ "Benton",
1152
+ "Clackamas",
1153
+ "Clatsop",
1154
+ "Columbia",
1155
+ "Coos",
1156
+ "Crook",
1157
+ "Curry",
1158
+ "Deschutes",
1159
+ "Douglas",
1160
+ "Gilliam",
1161
+ "Grant",
1162
+ "Harney",
1163
+ "Hood River",
1164
+ "Jackson",
1165
+ "Jefferson",
1166
+ "Josephine",
1167
+ "Klamath",
1168
+ "Lake",
1169
+ "Lane",
1170
+ "Lincoln",
1171
+ "Linn",
1172
+ "Malheur",
1173
+ "Marion",
1174
+ "Morrow",
1175
+ "Multnomah",
1176
+ "Polk",
1177
+ "Sherman",
1178
+ "Tillamook",
1179
+ "Umatilla",
1180
+ "Union",
1181
+ "Wallowa"
1182
+ ],
1183
+ "Connecticut": [
1184
+ "Fairfield",
1185
+ "Hartford",
1186
+ "Litchfield",
1187
+ "Middlesex",
1188
+ "New Haven",
1189
+ "New London",
1190
+ "Tolland"
1191
+ ],
1192
+ "Tennessee": [
1193
+ "Anderson",
1194
+ "Bedford",
1195
+ "Benton",
1196
+ "Bledsoe",
1197
+ "Blount",
1198
+ "Bradley",
1199
+ "Campbell",
1200
+ "Cannon",
1201
+ "Carroll",
1202
+ "Carter",
1203
+ "Cheatham",
1204
+ "Chester",
1205
+ "Claiborne",
1206
+ "Clay",
1207
+ "Cocke",
1208
+ "Coffee",
1209
+ "Crockett",
1210
+ "Cumberland",
1211
+ "Davidson",
1212
+ "DeKalb",
1213
+ "Decatur",
1214
+ "Dickson",
1215
+ "Dyer",
1216
+ "Fayette",
1217
+ "Fentress",
1218
+ "Franklin",
1219
+ "Gibson",
1220
+ "Giles",
1221
+ "Grainger",
1222
+ "Greene",
1223
+ "Grundy",
1224
+ "Hamblen",
1225
+ "Hamilton",
1226
+ "Hancock",
1227
+ "Hardeman",
1228
+ "Hardin",
1229
+ "Hawkins",
1230
+ "Haywood",
1231
+ "Henderson",
1232
+ "Henry",
1233
+ "Hickman",
1234
+ "Houston",
1235
+ "Humphreys",
1236
+ "Jackson",
1237
+ "Jefferson",
1238
+ "Johnson",
1239
+ "Knox",
1240
+ "Lake",
1241
+ "Lauderdale",
1242
+ "Lawrence",
1243
+ "Lewis",
1244
+ "Lincoln",
1245
+ "Loudon",
1246
+ "Macon",
1247
+ "Madison",
1248
+ "Marion",
1249
+ "Marshall",
1250
+ "Maury",
1251
+ "McMinn",
1252
+ "McNairy",
1253
+ "Meigs",
1254
+ "Monroe",
1255
+ "Montgomery",
1256
+ "Moore",
1257
+ "Morgan",
1258
+ "Obion",
1259
+ "Overton",
1260
+ "Perry",
1261
+ "Pickett",
1262
+ "Polk",
1263
+ "Putnam",
1264
+ "Rhea",
1265
+ "Roane",
1266
+ "Robertson",
1267
+ "Rutherford",
1268
+ "Scott",
1269
+ "Sequatchie",
1270
+ "Sevier",
1271
+ "Shelby",
1272
+ "Smith",
1273
+ "Stewart",
1274
+ "Sullivan",
1275
+ "Sumner",
1276
+ "Tipton",
1277
+ "Trousdale",
1278
+ "Unicoi",
1279
+ "Union",
1280
+ "Van Buren"
1281
+ ],
1282
+ "California": [
1283
+ "Alameda",
1284
+ "Alpine",
1285
+ "Amador",
1286
+ "Butte",
1287
+ "Calaveras",
1288
+ "Colusa",
1289
+ "Contra Costa",
1290
+ "Del Norte",
1291
+ "El Dorado",
1292
+ "Fresno",
1293
+ "Glenn",
1294
+ "Humboldt",
1295
+ "Imperial",
1296
+ "Inyo",
1297
+ "Kern",
1298
+ "Kings",
1299
+ "Lake",
1300
+ "Lassen",
1301
+ "Los Angeles",
1302
+ "Madera",
1303
+ "Marin",
1304
+ "Mariposa",
1305
+ "Mendocino",
1306
+ "Merced",
1307
+ "Modoc",
1308
+ "Mono",
1309
+ "Monterey",
1310
+ "Napa",
1311
+ "Nevada",
1312
+ "Orange",
1313
+ "Placer",
1314
+ "Plumas",
1315
+ "Riverside",
1316
+ "Sacramento",
1317
+ "San Benito",
1318
+ "San Bernardino",
1319
+ "San Diego",
1320
+ "San Joaquin",
1321
+ "San Luis Obispo",
1322
+ "San Mateo",
1323
+ "Santa Barbara",
1324
+ "Santa Clara",
1325
+ "Santa Cruz",
1326
+ "Shasta",
1327
+ "Sierra",
1328
+ "Siskiyou",
1329
+ "Solano",
1330
+ "Sonoma",
1331
+ "Stanislaus",
1332
+ "Sutter",
1333
+ "Tehama",
1334
+ "Trinity",
1335
+ "Tulare",
1336
+ "Tuolumne",
1337
+ "Ventura"
1338
+ ],
1339
+ "Texas": [
1340
+ "Anderson",
1341
+ "Andrews",
1342
+ "Angelina",
1343
+ "Aransas",
1344
+ "Archer",
1345
+ "Armstrong",
1346
+ "Atascosa",
1347
+ "Austin",
1348
+ "Bailey",
1349
+ "Bandera",
1350
+ "Bastrop",
1351
+ "Baylor",
1352
+ "Bee",
1353
+ "Bell",
1354
+ "Bexar",
1355
+ "Blanco",
1356
+ "Borden",
1357
+ "Bosque",
1358
+ "Bowie",
1359
+ "Brazoria",
1360
+ "Brazos",
1361
+ "Brewster",
1362
+ "Briscoe",
1363
+ "Brooks",
1364
+ "Brown",
1365
+ "Burleson",
1366
+ "Burnet",
1367
+ "Caldwell",
1368
+ "Calhoun",
1369
+ "Callahan",
1370
+ "Cameron",
1371
+ "Camp",
1372
+ "Carson",
1373
+ "Cass",
1374
+ "Castro",
1375
+ "Chambers",
1376
+ "Cherokee",
1377
+ "Childress",
1378
+ "Clay",
1379
+ "Cochran",
1380
+ "Coke",
1381
+ "Coleman",
1382
+ "Collin",
1383
+ "Collingsworth",
1384
+ "Colorado",
1385
+ "Comal",
1386
+ "Comanche",
1387
+ "Concho",
1388
+ "Cooke",
1389
+ "Coryell",
1390
+ "Cottle",
1391
+ "Crane",
1392
+ "Crockett",
1393
+ "Crosby",
1394
+ "Culberson",
1395
+ "Dallam",
1396
+ "Dallas",
1397
+ "Dawson",
1398
+ "DeWitt",
1399
+ "Deaf Smith",
1400
+ "Delta",
1401
+ "Denton",
1402
+ "Dickens",
1403
+ "Dimmit",
1404
+ "Donley",
1405
+ "Duval",
1406
+ "Eastland",
1407
+ "Ector",
1408
+ "Edwards",
1409
+ "El Paso",
1410
+ "Ellis",
1411
+ "Erath",
1412
+ "Falls",
1413
+ "Fannin",
1414
+ "Fayette",
1415
+ "Fisher",
1416
+ "Floyd",
1417
+ "Foard",
1418
+ "Fort Bend",
1419
+ "Franklin",
1420
+ "Freestone",
1421
+ "Frio",
1422
+ "Gaines",
1423
+ "Galveston",
1424
+ "Garza",
1425
+ "Gillespie",
1426
+ "Glasscock",
1427
+ "Goliad",
1428
+ "Gonzales",
1429
+ "Gray",
1430
+ "Grayson",
1431
+ "Gregg",
1432
+ "Grimes",
1433
+ "Guadalupe",
1434
+ "Hale",
1435
+ "Hall",
1436
+ "Hamilton",
1437
+ "Hansford",
1438
+ "Hardeman",
1439
+ "Hardin",
1440
+ "Harris",
1441
+ "Harrison",
1442
+ "Hartley",
1443
+ "Haskell",
1444
+ "Hays",
1445
+ "Hemphill",
1446
+ "Henderson",
1447
+ "Hidalgo",
1448
+ "Hill",
1449
+ "Hockley",
1450
+ "Hood",
1451
+ "Hopkins",
1452
+ "Houston",
1453
+ "Howard",
1454
+ "Hudspeth",
1455
+ "Hunt",
1456
+ "Hutchinson",
1457
+ "Irion",
1458
+ "Jack",
1459
+ "Jackson",
1460
+ "Jasper",
1461
+ "Jeff Davis",
1462
+ "Jefferson",
1463
+ "Jim Hogg",
1464
+ "Jim Wells",
1465
+ "Johnson",
1466
+ "Jones",
1467
+ "Karnes",
1468
+ "Kaufman",
1469
+ "Kendall",
1470
+ "Kenedy",
1471
+ "Kent",
1472
+ "Kerr",
1473
+ "Kimble",
1474
+ "King",
1475
+ "Kinney",
1476
+ "Kleberg",
1477
+ "Knox",
1478
+ "La Salle",
1479
+ "Lamar",
1480
+ "Lamb",
1481
+ "Lampasas",
1482
+ "Lavaca",
1483
+ "Lee",
1484
+ "Leon",
1485
+ "Liberty",
1486
+ "Limestone",
1487
+ "Lipscomb",
1488
+ "Live Oak",
1489
+ "Llano",
1490
+ "Loving",
1491
+ "Lubbock",
1492
+ "Lynn",
1493
+ "Madison",
1494
+ "Marion",
1495
+ "Martin",
1496
+ "Mason",
1497
+ "Matagorda",
1498
+ "Maverick",
1499
+ "McCulloch",
1500
+ "McLennan",
1501
+ "McMullen",
1502
+ "Medina",
1503
+ "Menard",
1504
+ "Midland",
1505
+ "Milam",
1506
+ "Mills",
1507
+ "Mitchell",
1508
+ "Montague",
1509
+ "Montgomery",
1510
+ "Moore",
1511
+ "Morris",
1512
+ "Motley",
1513
+ "Nacogdoches",
1514
+ "Navarro",
1515
+ "Newton",
1516
+ "Nolan",
1517
+ "Nueces",
1518
+ "Ochiltree",
1519
+ "Oldham",
1520
+ "Orange",
1521
+ "Palo Pinto",
1522
+ "Panola",
1523
+ "Parker",
1524
+ "Parmer",
1525
+ "Pecos",
1526
+ "Polk",
1527
+ "Potter",
1528
+ "Presidio",
1529
+ "Rains",
1530
+ "Randall",
1531
+ "Reagan",
1532
+ "Real",
1533
+ "Red River",
1534
+ "Reeves",
1535
+ "Refugio",
1536
+ "Roberts",
1537
+ "Robertson",
1538
+ "Rockwall",
1539
+ "Runnels",
1540
+ "Rusk",
1541
+ "Sabine",
1542
+ "San Augustine",
1543
+ "San Jacinto",
1544
+ "San Patricio",
1545
+ "San Saba",
1546
+ "Schleicher",
1547
+ "Scurry",
1548
+ "Shackelford",
1549
+ "Shelby",
1550
+ "Sherman",
1551
+ "Smith",
1552
+ "Somervell",
1553
+ "Starr",
1554
+ "Stephens",
1555
+ "Sterling",
1556
+ "Stonewall",
1557
+ "Sutton",
1558
+ "Swisher",
1559
+ "Tarrant",
1560
+ "Taylor",
1561
+ "Terrell",
1562
+ "Terry",
1563
+ "Throckmorton",
1564
+ "Titus",
1565
+ "Tom Green",
1566
+ "Travis",
1567
+ "Trinity",
1568
+ "Tyler",
1569
+ "Upshur",
1570
+ "Upton",
1571
+ "Uvalde",
1572
+ "Val Verde",
1573
+ "Van Zandt",
1574
+ "Victoria",
1575
+ "Walker",
1576
+ "Waller",
1577
+ "Ward"
1578
+ ],
1579
+ "West Virginia": [
1580
+ "Barbour",
1581
+ "Berkeley",
1582
+ "Boone",
1583
+ "Braxton",
1584
+ "Brooke",
1585
+ "Cabell",
1586
+ "Calhoun",
1587
+ "Clay",
1588
+ "Doddridge",
1589
+ "Fayette",
1590
+ "Gilmer",
1591
+ "Grant",
1592
+ "Greenbrier",
1593
+ "Hampshire",
1594
+ "Hancock",
1595
+ "Hardy",
1596
+ "Harrison",
1597
+ "Jackson",
1598
+ "Jefferson",
1599
+ "Kanawha",
1600
+ "Lewis",
1601
+ "Lincoln",
1602
+ "Logan",
1603
+ "Marion",
1604
+ "Marshall",
1605
+ "Mason",
1606
+ "McDowell",
1607
+ "Mercer",
1608
+ "Mineral",
1609
+ "Mingo",
1610
+ "Monongalia",
1611
+ "Monroe",
1612
+ "Morgan",
1613
+ "Nicholas",
1614
+ "Ohio",
1615
+ "Pendleton",
1616
+ "Pleasants",
1617
+ "Pocahontas",
1618
+ "Preston",
1619
+ "Putnam",
1620
+ "Raleigh",
1621
+ "Randolph",
1622
+ "Ritchie",
1623
+ "Roane",
1624
+ "Summers",
1625
+ "Taylor",
1626
+ "Tucker",
1627
+ "Tyler",
1628
+ "Upshur"
1629
+ ],
1630
+ "South Carolina": [
1631
+ "Abbeville",
1632
+ "Aiken",
1633
+ "Allendale",
1634
+ "Anderson",
1635
+ "Bamberg",
1636
+ "Barnwell",
1637
+ "Beaufort",
1638
+ "Berkeley",
1639
+ "Calhoun",
1640
+ "Charleston",
1641
+ "Cherokee",
1642
+ "Chester",
1643
+ "Chesterfield",
1644
+ "Clarendon",
1645
+ "Colleton",
1646
+ "Darlington",
1647
+ "Dillon",
1648
+ "Dorchester",
1649
+ "Edgefield",
1650
+ "Fairfield",
1651
+ "Florence",
1652
+ "Georgetown",
1653
+ "Greenville",
1654
+ "Greenwood",
1655
+ "Hampton",
1656
+ "Horry",
1657
+ "Jasper",
1658
+ "Kershaw",
1659
+ "Lancaster",
1660
+ "Laurens",
1661
+ "Lee",
1662
+ "Lexington",
1663
+ "Marion",
1664
+ "Marlboro",
1665
+ "McCormick",
1666
+ "Newberry",
1667
+ "Oconee",
1668
+ "Orangeburg",
1669
+ "Pickens",
1670
+ "Richland",
1671
+ "Saluda",
1672
+ "Spartanburg",
1673
+ "Sumter",
1674
+ "Union"
1675
+ ],
1676
+ "New Hampshire": [
1677
+ "Belknap",
1678
+ "Carroll",
1679
+ "Cheshire",
1680
+ "Coos",
1681
+ "Grafton",
1682
+ "Hillsborough",
1683
+ "Merrimack",
1684
+ "Rockingham",
1685
+ "Strafford",
1686
+ "Sullivan"
1687
+ ],
1688
+ "Massachusetts": [
1689
+ "Barnstable",
1690
+ "Berkshire",
1691
+ "Bristol",
1692
+ "Dukes",
1693
+ "Essex",
1694
+ "Franklin",
1695
+ "Hampden",
1696
+ "Hampshire",
1697
+ "Middlesex",
1698
+ "Norfolk",
1699
+ "Plymouth",
1700
+ "Suffolk"
1701
+ ],
1702
+ "Vermont": [
1703
+ "Addison",
1704
+ "Bennington",
1705
+ "Caledonia",
1706
+ "Chittenden",
1707
+ "Essex",
1708
+ "Franklin",
1709
+ "Grand Isle",
1710
+ "Lamoille",
1711
+ "Orange",
1712
+ "Orleans",
1713
+ "Rutland"
1714
+ ],
1715
+ "Georgia": [
1716
+ "Appling",
1717
+ "Atkinson",
1718
+ "Bacon",
1719
+ "Baker",
1720
+ "Baldwin",
1721
+ "Banks",
1722
+ "Barrow",
1723
+ "Bartow",
1724
+ "Ben Hill",
1725
+ "Berrien",
1726
+ "Bibb",
1727
+ "Bleckley",
1728
+ "Brantley",
1729
+ "Brooks",
1730
+ "Bryan",
1731
+ "Bulloch",
1732
+ "Burke",
1733
+ "Butts",
1734
+ "Calhoun",
1735
+ "Camden",
1736
+ "Candler",
1737
+ "Carroll",
1738
+ "Catoosa",
1739
+ "Charlton",
1740
+ "Chatham",
1741
+ "Chattahoochee",
1742
+ "Chattooga",
1743
+ "Cherokee",
1744
+ "Clarke",
1745
+ "Clay",
1746
+ "Clayton",
1747
+ "Clinch",
1748
+ "Cobb",
1749
+ "Coffee",
1750
+ "Colquitt",
1751
+ "Columbia",
1752
+ "Cook",
1753
+ "Coweta",
1754
+ "Crawford",
1755
+ "Crisp",
1756
+ "Dade",
1757
+ "Dawson",
1758
+ "DeKalb",
1759
+ "Decatur",
1760
+ "Dodge",
1761
+ "Dooly",
1762
+ "Dougherty",
1763
+ "Douglas",
1764
+ "Early",
1765
+ "Echols",
1766
+ "Effingham",
1767
+ "Elbert",
1768
+ "Emanuel",
1769
+ "Evans",
1770
+ "Fannin",
1771
+ "Fayette",
1772
+ "Floyd",
1773
+ "Forsyth",
1774
+ "Franklin",
1775
+ "Fulton",
1776
+ "Gilmer",
1777
+ "Glascock",
1778
+ "Glynn",
1779
+ "Gordon",
1780
+ "Grady",
1781
+ "Greene",
1782
+ "Gwinnett",
1783
+ "Habersham",
1784
+ "Hall",
1785
+ "Hancock",
1786
+ "Haralson",
1787
+ "Harris",
1788
+ "Hart",
1789
+ "Heard",
1790
+ "Henry",
1791
+ "Houston",
1792
+ "Irwin",
1793
+ "Jackson",
1794
+ "Jasper",
1795
+ "Jeff Davis",
1796
+ "Jefferson",
1797
+ "Jenkins",
1798
+ "Johnson",
1799
+ "Jones",
1800
+ "Lamar",
1801
+ "Lanier",
1802
+ "Laurens",
1803
+ "Lee",
1804
+ "Liberty",
1805
+ "Lincoln",
1806
+ "Long",
1807
+ "Lowndes",
1808
+ "Lumpkin",
1809
+ "Macon",
1810
+ "Madison",
1811
+ "Marion",
1812
+ "McDuffie",
1813
+ "McIntosh",
1814
+ "Meriwether",
1815
+ "Miller",
1816
+ "Mitchell",
1817
+ "Monroe",
1818
+ "Montgomery",
1819
+ "Morgan",
1820
+ "Murray",
1821
+ "Muscogee",
1822
+ "Newton",
1823
+ "Oconee",
1824
+ "Oglethorpe",
1825
+ "Paulding",
1826
+ "Peach",
1827
+ "Pickens",
1828
+ "Pierce",
1829
+ "Pike",
1830
+ "Polk",
1831
+ "Pulaski",
1832
+ "Putnam",
1833
+ "Quitman",
1834
+ "Rabun",
1835
+ "Randolph",
1836
+ "Richmond",
1837
+ "Rockdale",
1838
+ "Schley",
1839
+ "Screven",
1840
+ "Seminole",
1841
+ "Spalding",
1842
+ "Stephens",
1843
+ "Stewart",
1844
+ "Sumter",
1845
+ "Talbot",
1846
+ "Taliaferro",
1847
+ "Tattnall",
1848
+ "Taylor",
1849
+ "Telfair",
1850
+ "Terrell",
1851
+ "Thomas",
1852
+ "Tift",
1853
+ "Toombs",
1854
+ "Towns",
1855
+ "Treutlen",
1856
+ "Troup",
1857
+ "Turner",
1858
+ "Twiggs",
1859
+ "Union",
1860
+ "Upson",
1861
+ "Walker",
1862
+ "Walton",
1863
+ "Ware",
1864
+ "Warren"
1865
+ ],
1866
+ "North Dakota": [
1867
+ "Adams",
1868
+ "Barnes",
1869
+ "Benson",
1870
+ "Billings",
1871
+ "Bottineau",
1872
+ "Bowman",
1873
+ "Burke",
1874
+ "Burleigh",
1875
+ "Cass",
1876
+ "Cavalier",
1877
+ "Dickey",
1878
+ "Divide",
1879
+ "Dunn",
1880
+ "Eddy",
1881
+ "Emmons",
1882
+ "Foster",
1883
+ "Golden Valley",
1884
+ "Grand Forks",
1885
+ "Grant",
1886
+ "Griggs",
1887
+ "Hettinger",
1888
+ "Kidder",
1889
+ "LaMoure",
1890
+ "Logan",
1891
+ "McHenry",
1892
+ "McIntosh",
1893
+ "McKenzie",
1894
+ "McLean",
1895
+ "Mercer",
1896
+ "Morton",
1897
+ "Mountrail",
1898
+ "Nelson",
1899
+ "Oliver",
1900
+ "Pembina",
1901
+ "Pierce",
1902
+ "Ramsey",
1903
+ "Ransom",
1904
+ "Renville",
1905
+ "Richland",
1906
+ "Rolette",
1907
+ "Sargent",
1908
+ "Sheridan",
1909
+ "Sioux",
1910
+ "Slope",
1911
+ "Stark",
1912
+ "Steele",
1913
+ "Stutsman",
1914
+ "Towner",
1915
+ "Traill",
1916
+ "Walsh",
1917
+ "Ward"
1918
+ ],
1919
+ "Hawaii": [
1920
+ "Hawaii",
1921
+ "Kalawao",
1922
+ "Kauai",
1923
+ "Maui"
1924
+ ],
1925
+ "Pennsylvania": [
1926
+ "Adams",
1927
+ "Allegheny",
1928
+ "Armstrong",
1929
+ "Beaver",
1930
+ "Bedford",
1931
+ "Berks",
1932
+ "Blair",
1933
+ "Bradford",
1934
+ "Bucks",
1935
+ "Butler",
1936
+ "Cambria",
1937
+ "Cameron",
1938
+ "Carbon",
1939
+ "Centre",
1940
+ "Chester",
1941
+ "Clarion",
1942
+ "Clearfield",
1943
+ "Clinton",
1944
+ "Columbia",
1945
+ "Crawford",
1946
+ "Cumberland",
1947
+ "Dauphin",
1948
+ "Delaware",
1949
+ "Elk",
1950
+ "Erie",
1951
+ "Fayette",
1952
+ "Forest",
1953
+ "Franklin",
1954
+ "Fulton",
1955
+ "Greene",
1956
+ "Huntingdon",
1957
+ "Indiana",
1958
+ "Jefferson",
1959
+ "Juniata",
1960
+ "Lackawanna",
1961
+ "Lancaster",
1962
+ "Lawrence",
1963
+ "Lebanon",
1964
+ "Lehigh",
1965
+ "Luzerne",
1966
+ "Lycoming",
1967
+ "McKean",
1968
+ "Mercer",
1969
+ "Mifflin",
1970
+ "Monroe",
1971
+ "Montgomery",
1972
+ "Montour",
1973
+ "Northampton",
1974
+ "Northumberland",
1975
+ "Perry",
1976
+ "Philadelphia",
1977
+ "Pike",
1978
+ "Potter",
1979
+ "Schuylkill",
1980
+ "Snyder",
1981
+ "Somerset",
1982
+ "Sullivan",
1983
+ "Susquehanna",
1984
+ "Tioga",
1985
+ "Union",
1986
+ "Venango"
1987
+ ],
1988
+ "Florida": [
1989
+ "Alachua",
1990
+ "Baker",
1991
+ "Bay",
1992
+ "Bradford",
1993
+ "Brevard",
1994
+ "Broward",
1995
+ "Calhoun",
1996
+ "Charlotte",
1997
+ "Citrus",
1998
+ "Clay",
1999
+ "Collier",
2000
+ "Columbia",
2001
+ "DeSoto",
2002
+ "Dixie",
2003
+ "Duval",
2004
+ "Escambia",
2005
+ "Flagler",
2006
+ "Franklin",
2007
+ "Gadsden",
2008
+ "Gilchrist",
2009
+ "Glades",
2010
+ "Gulf",
2011
+ "Hamilton",
2012
+ "Hardee",
2013
+ "Hendry",
2014
+ "Hernando",
2015
+ "Highlands",
2016
+ "Hillsborough",
2017
+ "Holmes",
2018
+ "Indian River",
2019
+ "Jackson",
2020
+ "Jefferson",
2021
+ "Lafayette",
2022
+ "Lake",
2023
+ "Lee",
2024
+ "Leon",
2025
+ "Levy",
2026
+ "Liberty",
2027
+ "Madison",
2028
+ "Manatee",
2029
+ "Marion",
2030
+ "Martin",
2031
+ "Miami-Dade",
2032
+ "Monroe",
2033
+ "Nassau",
2034
+ "Okaloosa",
2035
+ "Okeechobee",
2036
+ "Orange",
2037
+ "Osceola",
2038
+ "Palm Beach",
2039
+ "Pasco",
2040
+ "Pinellas",
2041
+ "Polk",
2042
+ "Putnam",
2043
+ "Santa Rosa",
2044
+ "Sarasota",
2045
+ "Seminole",
2046
+ "St. Johns",
2047
+ "St. Lucie",
2048
+ "Sumter",
2049
+ "Suwannee",
2050
+ "Taylor",
2051
+ "Union",
2052
+ "Volusia",
2053
+ "Wakulla",
2054
+ "Walton"
2055
+ ],
2056
+ "Alaska": [
2057
+ "Aleutians East",
2058
+ "Bristol Bay",
2059
+ "Denali",
2060
+ "Fairbanks North Star",
2061
+ "Kenai Peninsula",
2062
+ "Ketchikan Gateway",
2063
+ "Kodiak Island",
2064
+ "Lake and Peninsula",
2065
+ "Matanuska-Susitna",
2066
+ "North Slope",
2067
+ "Northwest Arctic",
2068
+ "Unorganized"
2069
+ ],
2070
+ "Kentucky": [
2071
+ "Adair",
2072
+ "Allen",
2073
+ "Anderson",
2074
+ "Ballard",
2075
+ "Barren",
2076
+ "Bath",
2077
+ "Bell",
2078
+ "Boone",
2079
+ "Bourbon",
2080
+ "Boyd",
2081
+ "Boyle",
2082
+ "Bracken",
2083
+ "Breathitt",
2084
+ "Breckinridge",
2085
+ "Bullitt",
2086
+ "Butler",
2087
+ "Caldwell",
2088
+ "Calloway",
2089
+ "Campbell",
2090
+ "Carlisle",
2091
+ "Carroll",
2092
+ "Carter",
2093
+ "Casey",
2094
+ "Christian",
2095
+ "Clark",
2096
+ "Clay",
2097
+ "Clinton",
2098
+ "Crittenden",
2099
+ "Cumberland",
2100
+ "Daviess",
2101
+ "Edmonson",
2102
+ "Elliott",
2103
+ "Estill",
2104
+ "Fayette",
2105
+ "Fleming",
2106
+ "Floyd",
2107
+ "Franklin",
2108
+ "Fulton",
2109
+ "Gallatin",
2110
+ "Garrard",
2111
+ "Grant",
2112
+ "Graves",
2113
+ "Grayson",
2114
+ "Green",
2115
+ "Greenup",
2116
+ "Hancock",
2117
+ "Hardin",
2118
+ "Harlan",
2119
+ "Harrison",
2120
+ "Hart",
2121
+ "Henderson",
2122
+ "Henry",
2123
+ "Hickman",
2124
+ "Hopkins",
2125
+ "Jackson",
2126
+ "Jefferson",
2127
+ "Jessamine",
2128
+ "Johnson",
2129
+ "Kenton",
2130
+ "Knott",
2131
+ "Knox",
2132
+ "LaRue",
2133
+ "Laurel",
2134
+ "Lawrence",
2135
+ "Lee",
2136
+ "Leslie",
2137
+ "Letcher",
2138
+ "Lewis",
2139
+ "Lincoln",
2140
+ "Livingston",
2141
+ "Logan",
2142
+ "Lyon",
2143
+ "Madison",
2144
+ "Magoffin",
2145
+ "Marion",
2146
+ "Marshall",
2147
+ "Martin",
2148
+ "Mason",
2149
+ "McCracken",
2150
+ "McCreary",
2151
+ "McLean",
2152
+ "Meade",
2153
+ "Menifee",
2154
+ "Mercer",
2155
+ "Metcalfe",
2156
+ "Monroe",
2157
+ "Montgomery",
2158
+ "Morgan",
2159
+ "Muhlenberg",
2160
+ "Nelson",
2161
+ "Nicholas",
2162
+ "Ohio",
2163
+ "Oldham",
2164
+ "Owen",
2165
+ "Owsley",
2166
+ "Pendleton",
2167
+ "Perry",
2168
+ "Pike",
2169
+ "Powell",
2170
+ "Pulaski",
2171
+ "Robertson",
2172
+ "Rockcastle",
2173
+ "Rowan",
2174
+ "Russell",
2175
+ "Scott",
2176
+ "Shelby",
2177
+ "Simpson",
2178
+ "Spencer",
2179
+ "Taylor",
2180
+ "Todd",
2181
+ "Trigg",
2182
+ "Trimble",
2183
+ "Union",
2184
+ "Warren"
2185
+ ],
2186
+ "Rhode Island": [
2187
+ "Bristol",
2188
+ "Kent",
2189
+ "Newport",
2190
+ "Providence"
2191
+ ],
2192
+ "Nebraska": [
2193
+ "Adams",
2194
+ "Antelope",
2195
+ "Arthur",
2196
+ "Banner",
2197
+ "Blaine",
2198
+ "Boone",
2199
+ "Box Butte",
2200
+ "Boyd",
2201
+ "Brown",
2202
+ "Buffalo",
2203
+ "Burt",
2204
+ "Butler",
2205
+ "Cass",
2206
+ "Cedar",
2207
+ "Chase",
2208
+ "Cherry",
2209
+ "Cheyenne",
2210
+ "Clay",
2211
+ "Colfax",
2212
+ "Cuming",
2213
+ "Custer",
2214
+ "Dakota",
2215
+ "Dawes",
2216
+ "Dawson",
2217
+ "Deuel",
2218
+ "Dixon",
2219
+ "Dodge",
2220
+ "Douglas",
2221
+ "Dundy",
2222
+ "Fillmore",
2223
+ "Franklin",
2224
+ "Frontier",
2225
+ "Furnas",
2226
+ "Gage",
2227
+ "Garden",
2228
+ "Garfield",
2229
+ "Gosper",
2230
+ "Grant",
2231
+ "Greeley",
2232
+ "Hall",
2233
+ "Hamilton",
2234
+ "Harlan",
2235
+ "Hayes",
2236
+ "Hitchcock",
2237
+ "Holt",
2238
+ "Hooker",
2239
+ "Howard",
2240
+ "Jefferson",
2241
+ "Johnson",
2242
+ "Kearney",
2243
+ "Keith",
2244
+ "Keya Paha",
2245
+ "Kimball",
2246
+ "Knox",
2247
+ "Lancaster",
2248
+ "Lincoln",
2249
+ "Logan",
2250
+ "Loup",
2251
+ "Madison",
2252
+ "McPherson",
2253
+ "Merrick",
2254
+ "Morrill",
2255
+ "Nance",
2256
+ "Nemaha",
2257
+ "Nuckolls",
2258
+ "Otoe",
2259
+ "Pawnee",
2260
+ "Perkins",
2261
+ "Phelps",
2262
+ "Pierce",
2263
+ "Platte",
2264
+ "Polk",
2265
+ "Red Willow",
2266
+ "Richardson",
2267
+ "Rock",
2268
+ "Saline",
2269
+ "Sarpy",
2270
+ "Saunders",
2271
+ "Scotts Bluff",
2272
+ "Seward",
2273
+ "Sheridan",
2274
+ "Sherman",
2275
+ "Sioux",
2276
+ "Stanton",
2277
+ "Thayer",
2278
+ "Thomas",
2279
+ "Thurston",
2280
+ "Valley"
2281
+ ],
2282
+ "Missouri": [
2283
+ "Adair",
2284
+ "Andrew",
2285
+ "Atchison",
2286
+ "Audrain",
2287
+ "Barry",
2288
+ "Barton",
2289
+ "Bates",
2290
+ "Benton",
2291
+ "Bollinger",
2292
+ "Boone",
2293
+ "Buchanan",
2294
+ "Butler",
2295
+ "Caldwell",
2296
+ "Callaway",
2297
+ "Camden",
2298
+ "Cape Girardeau",
2299
+ "Carroll",
2300
+ "Carter",
2301
+ "Cass",
2302
+ "Cedar",
2303
+ "Chariton",
2304
+ "Christian",
2305
+ "Clark",
2306
+ "Clay",
2307
+ "Clinton",
2308
+ "Cole",
2309
+ "Cooper",
2310
+ "Crawford",
2311
+ "Dade",
2312
+ "Dallas",
2313
+ "Daviess",
2314
+ "DeKalb",
2315
+ "Dent",
2316
+ "Douglas",
2317
+ "Dunklin",
2318
+ "Franklin",
2319
+ "Gasconade",
2320
+ "Gentry",
2321
+ "Greene",
2322
+ "Grundy",
2323
+ "Harrison",
2324
+ "Henry",
2325
+ "Hickory",
2326
+ "Holt",
2327
+ "Howard",
2328
+ "Howell",
2329
+ "Iron",
2330
+ "Jackson",
2331
+ "Jasper",
2332
+ "Jefferson",
2333
+ "Johnson",
2334
+ "Knox",
2335
+ "Laclede",
2336
+ "Lafayette",
2337
+ "Lawrence",
2338
+ "Lewis",
2339
+ "Lincoln",
2340
+ "Linn",
2341
+ "Livingston",
2342
+ "Macon",
2343
+ "Madison",
2344
+ "Maries",
2345
+ "Marion",
2346
+ "McDonald",
2347
+ "Mercer",
2348
+ "Miller",
2349
+ "Mississippi",
2350
+ "Moniteau",
2351
+ "Monroe",
2352
+ "Montgomery",
2353
+ "Morgan",
2354
+ "New Madrid",
2355
+ "Newton",
2356
+ "Nodaway",
2357
+ "Oregon",
2358
+ "Osage",
2359
+ "Ozark",
2360
+ "Pemiscot",
2361
+ "Perry",
2362
+ "Pettis",
2363
+ "Phelps",
2364
+ "Pike",
2365
+ "Platte",
2366
+ "Polk",
2367
+ "Pulaski",
2368
+ "Putnam",
2369
+ "Ralls",
2370
+ "Randolph",
2371
+ "Ray",
2372
+ "Reynolds",
2373
+ "Ripley",
2374
+ "Saline",
2375
+ "Schuyler",
2376
+ "Scotland",
2377
+ "Scott",
2378
+ "Shannon",
2379
+ "Shelby",
2380
+ "St. Charles",
2381
+ "St. Clair",
2382
+ "St. Francois",
2383
+ "St. Louis",
2384
+ "Ste. Genevieve",
2385
+ "Stoddard",
2386
+ "Stone",
2387
+ "Sullivan",
2388
+ "Taney",
2389
+ "Texas",
2390
+ "Vernon",
2391
+ "Warren"
2392
+ ],
2393
+ "Iowa": [
2394
+ "Adair",
2395
+ "Adams",
2396
+ "Allamakee",
2397
+ "Appanoose",
2398
+ "Audubon",
2399
+ "Benton",
2400
+ "Black Hawk",
2401
+ "Boone",
2402
+ "Bremer",
2403
+ "Buchanan",
2404
+ "Buena Vista",
2405
+ "Butler",
2406
+ "Calhoun",
2407
+ "Carroll",
2408
+ "Cass",
2409
+ "Cedar",
2410
+ "Cerro Gordo",
2411
+ "Cherokee",
2412
+ "Chickasaw",
2413
+ "Clarke",
2414
+ "Clay",
2415
+ "Clayton",
2416
+ "Clinton",
2417
+ "Crawford",
2418
+ "Dallas",
2419
+ "Davis",
2420
+ "Decatur",
2421
+ "Delaware",
2422
+ "Des Moines",
2423
+ "Dickinson",
2424
+ "Dubuque",
2425
+ "Emmet",
2426
+ "Fayette",
2427
+ "Floyd",
2428
+ "Franklin",
2429
+ "Fremont",
2430
+ "Greene",
2431
+ "Grundy",
2432
+ "Guthrie",
2433
+ "Hamilton",
2434
+ "Hancock",
2435
+ "Hardin",
2436
+ "Harrison",
2437
+ "Henry",
2438
+ "Howard",
2439
+ "Humboldt",
2440
+ "Ida",
2441
+ "Iowa",
2442
+ "Jackson",
2443
+ "Jasper",
2444
+ "Jefferson",
2445
+ "Johnson",
2446
+ "Jones",
2447
+ "Keokuk",
2448
+ "Kossuth",
2449
+ "Lee",
2450
+ "Linn",
2451
+ "Louisa",
2452
+ "Lucas",
2453
+ "Lyon",
2454
+ "Madison",
2455
+ "Mahaska",
2456
+ "Marion",
2457
+ "Marshall",
2458
+ "Mills",
2459
+ "Mitchell",
2460
+ "Monona",
2461
+ "Monroe",
2462
+ "Montgomery",
2463
+ "Muscatine",
2464
+ "O'Brien",
2465
+ "Osceola",
2466
+ "Page",
2467
+ "Palo Alto",
2468
+ "Plymouth",
2469
+ "Pocahontas",
2470
+ "Polk",
2471
+ "Pottawattamie",
2472
+ "Poweshiek",
2473
+ "Ringgold",
2474
+ "Sac",
2475
+ "Scott",
2476
+ "Shelby",
2477
+ "Sioux",
2478
+ "Story",
2479
+ "Tama",
2480
+ "Taylor",
2481
+ "Union",
2482
+ "Van Buren",
2483
+ "Wapello",
2484
+ "Warren"
2485
+ ],
2486
+ "Alabama": [
2487
+ "Autauga",
2488
+ "Baldwin",
2489
+ "Barbour",
2490
+ "Bibb",
2491
+ "Blount",
2492
+ "Bullock",
2493
+ "Butler",
2494
+ "Calhoun",
2495
+ "Chambers",
2496
+ "Cherokee",
2497
+ "Chilton",
2498
+ "Choctaw",
2499
+ "Clarke",
2500
+ "Clay",
2501
+ "Cleburne",
2502
+ "Coffee",
2503
+ "Colbert",
2504
+ "Conecuh",
2505
+ "Coosa",
2506
+ "Covington",
2507
+ "Crenshaw",
2508
+ "Cullman",
2509
+ "Dale",
2510
+ "Dallas",
2511
+ "DeKalb",
2512
+ "Elmore",
2513
+ "Escambia",
2514
+ "Etowah",
2515
+ "Fayette",
2516
+ "Franklin",
2517
+ "Geneva",
2518
+ "Greene",
2519
+ "Hale",
2520
+ "Henry",
2521
+ "Houston",
2522
+ "Jackson",
2523
+ "Jefferson",
2524
+ "Lamar",
2525
+ "Lauderdale",
2526
+ "Lawrence",
2527
+ "Lee",
2528
+ "Limestone",
2529
+ "Lowndes",
2530
+ "Macon",
2531
+ "Madison",
2532
+ "Marengo",
2533
+ "Marion",
2534
+ "Marshall",
2535
+ "Mobile",
2536
+ "Monroe",
2537
+ "Montgomery",
2538
+ "Morgan",
2539
+ "Perry",
2540
+ "Pickens",
2541
+ "Pike",
2542
+ "Randolph",
2543
+ "Russell",
2544
+ "Shelby",
2545
+ "St. Clair",
2546
+ "Sumter",
2547
+ "Talladega",
2548
+ "Tallapoosa",
2549
+ "Tuscaloosa",
2550
+ "Walker"
2551
+ ],
2552
+ "South Dakota": [
2553
+ "Aurora",
2554
+ "Beadle",
2555
+ "Bennett",
2556
+ "Bon Homme",
2557
+ "Brookings",
2558
+ "Brown",
2559
+ "Brule",
2560
+ "Buffalo",
2561
+ "Butte",
2562
+ "Campbell",
2563
+ "Charles Mix",
2564
+ "Clark",
2565
+ "Clay",
2566
+ "Codington",
2567
+ "Corson",
2568
+ "Custer",
2569
+ "Davison",
2570
+ "Day",
2571
+ "Deuel",
2572
+ "Dewey",
2573
+ "Douglas",
2574
+ "Edmunds",
2575
+ "Fall River",
2576
+ "Faulk",
2577
+ "Grant",
2578
+ "Gregory",
2579
+ "Haakon",
2580
+ "Hamlin",
2581
+ "Hand",
2582
+ "Hanson",
2583
+ "Harding",
2584
+ "Hughes",
2585
+ "Hutchinson",
2586
+ "Hyde",
2587
+ "Jackson",
2588
+ "Jerauld",
2589
+ "Jones",
2590
+ "Kingsbury",
2591
+ "Lake",
2592
+ "Lawrence",
2593
+ "Lincoln",
2594
+ "Lyman",
2595
+ "Marshall",
2596
+ "McCook",
2597
+ "McPherson",
2598
+ "Meade",
2599
+ "Mellette",
2600
+ "Miner",
2601
+ "Minnehaha",
2602
+ "Moody",
2603
+ "Oglala Lakota",
2604
+ "Pennington",
2605
+ "Perkins",
2606
+ "Potter",
2607
+ "Roberts",
2608
+ "Sanborn",
2609
+ "Spink",
2610
+ "Stanley",
2611
+ "Sully",
2612
+ "Todd",
2613
+ "Tripp",
2614
+ "Turner",
2615
+ "Union",
2616
+ "Walworth"
2617
+ ],
2618
+ "Colorado": [
2619
+ "Adams",
2620
+ "Alamosa",
2621
+ "Arapahoe",
2622
+ "Archuleta",
2623
+ "Baca",
2624
+ "Bent",
2625
+ "Boulder",
2626
+ "Chaffee",
2627
+ "Cheyenne",
2628
+ "Clear Creek",
2629
+ "Conejos",
2630
+ "Costilla",
2631
+ "Crowley",
2632
+ "Custer",
2633
+ "Delta",
2634
+ "Dolores",
2635
+ "Douglas",
2636
+ "Eagle",
2637
+ "El Paso",
2638
+ "Elbert",
2639
+ "Fremont",
2640
+ "Garfield",
2641
+ "Gilpin",
2642
+ "Grand",
2643
+ "Gunnison",
2644
+ "Hinsdale",
2645
+ "Huerfano",
2646
+ "Jackson",
2647
+ "Jefferson",
2648
+ "Kiowa",
2649
+ "Kit Carson",
2650
+ "La Plata",
2651
+ "Lake",
2652
+ "Larimer",
2653
+ "Las Animas",
2654
+ "Lincoln",
2655
+ "Logan",
2656
+ "Mesa",
2657
+ "Mineral",
2658
+ "Moffat",
2659
+ "Montezuma",
2660
+ "Montrose",
2661
+ "Morgan",
2662
+ "Otero",
2663
+ "Ouray",
2664
+ "Park",
2665
+ "Phillips",
2666
+ "Pitkin",
2667
+ "Prowers",
2668
+ "Pueblo",
2669
+ "Rio Blanco",
2670
+ "Rio Grande",
2671
+ "Routt",
2672
+ "Saguache",
2673
+ "San Juan",
2674
+ "San Miguel",
2675
+ "Sedgwick",
2676
+ "Summit",
2677
+ "Teller"
2678
+ ],
2679
+ "New Jersey": [
2680
+ "Atlantic",
2681
+ "Bergen",
2682
+ "Burlington",
2683
+ "Camden",
2684
+ "Cape May",
2685
+ "Cumberland",
2686
+ "Essex",
2687
+ "Gloucester",
2688
+ "Hudson",
2689
+ "Hunterdon",
2690
+ "Mercer",
2691
+ "Middlesex",
2692
+ "Monmouth",
2693
+ "Morris",
2694
+ "Ocean",
2695
+ "Passaic",
2696
+ "Salem",
2697
+ "Somerset",
2698
+ "Sussex",
2699
+ "Union"
2700
+ ],
2701
+ "Washington": [
2702
+ "Adams",
2703
+ "Asotin",
2704
+ "Benton",
2705
+ "Chelan",
2706
+ "Clallam",
2707
+ "Clark",
2708
+ "Columbia",
2709
+ "Cowlitz",
2710
+ "Douglas",
2711
+ "Ferry",
2712
+ "Franklin",
2713
+ "Garfield",
2714
+ "Grant",
2715
+ "Grays Harbor",
2716
+ "Island",
2717
+ "Jefferson",
2718
+ "King",
2719
+ "Kitsap",
2720
+ "Kittitas",
2721
+ "Klickitat",
2722
+ "Lewis",
2723
+ "Lincoln",
2724
+ "Mason",
2725
+ "Okanogan",
2726
+ "Pacific",
2727
+ "Pend Oreille",
2728
+ "Pierce",
2729
+ "San Juan",
2730
+ "Skagit",
2731
+ "Skamania",
2732
+ "Snohomish",
2733
+ "Spokane",
2734
+ "Stevens",
2735
+ "Thurston",
2736
+ "Wahkiakum",
2737
+ "Walla Walla"
2738
+ ],
2739
+ "North Carolina": [
2740
+ "Alamance",
2741
+ "Alexander",
2742
+ "Alleghany",
2743
+ "Anson",
2744
+ "Ashe",
2745
+ "Avery",
2746
+ "Beaufort",
2747
+ "Bertie",
2748
+ "Bladen",
2749
+ "Brunswick",
2750
+ "Buncombe",
2751
+ "Burke",
2752
+ "Cabarrus",
2753
+ "Caldwell",
2754
+ "Camden",
2755
+ "Carteret",
2756
+ "Caswell",
2757
+ "Catawba",
2758
+ "Chatham",
2759
+ "Cherokee",
2760
+ "Chowan",
2761
+ "Clay",
2762
+ "Cleveland",
2763
+ "Columbus",
2764
+ "Craven",
2765
+ "Cumberland",
2766
+ "Currituck",
2767
+ "Dare",
2768
+ "Davidson",
2769
+ "Davie",
2770
+ "Duplin",
2771
+ "Durham",
2772
+ "Edgecombe",
2773
+ "Forsyth",
2774
+ "Franklin",
2775
+ "Gaston",
2776
+ "Gates",
2777
+ "Graham",
2778
+ "Granville",
2779
+ "Greene",
2780
+ "Guilford",
2781
+ "Halifax",
2782
+ "Harnett",
2783
+ "Haywood",
2784
+ "Henderson",
2785
+ "Hertford",
2786
+ "Hoke",
2787
+ "Hyde",
2788
+ "Iredell",
2789
+ "Jackson",
2790
+ "Johnston",
2791
+ "Jones",
2792
+ "Lee",
2793
+ "Lenoir",
2794
+ "Lincoln",
2795
+ "Macon",
2796
+ "Madison",
2797
+ "Martin",
2798
+ "McDowell",
2799
+ "Mecklenburg",
2800
+ "Mitchell",
2801
+ "Montgomery",
2802
+ "Moore",
2803
+ "Nash",
2804
+ "New Hanover",
2805
+ "Northampton",
2806
+ "Onslow",
2807
+ "Orange",
2808
+ "Pamlico",
2809
+ "Pasquotank",
2810
+ "Pender",
2811
+ "Perquimans",
2812
+ "Person",
2813
+ "Pitt",
2814
+ "Polk",
2815
+ "Randolph",
2816
+ "Richmond",
2817
+ "Robeson",
2818
+ "Rockingham",
2819
+ "Rowan",
2820
+ "Rutherford",
2821
+ "Sampson",
2822
+ "Scotland",
2823
+ "Stanly",
2824
+ "Stokes",
2825
+ "Surry",
2826
+ "Swain",
2827
+ "Transylvania",
2828
+ "Tyrrell",
2829
+ "Union",
2830
+ "Vance",
2831
+ "Wake"
2832
+ ],
2833
+ "New York": [
2834
+ "Albany",
2835
+ "Allegany",
2836
+ "Broome",
2837
+ "Cattaraugus",
2838
+ "Cayuga",
2839
+ "Chautauqua",
2840
+ "Chemung",
2841
+ "Chenango",
2842
+ "Clinton",
2843
+ "Columbia",
2844
+ "Cortland",
2845
+ "Delaware",
2846
+ "Dutchess",
2847
+ "Erie",
2848
+ "Essex",
2849
+ "Franklin",
2850
+ "Fulton",
2851
+ "Genesee",
2852
+ "Greene",
2853
+ "Hamilton",
2854
+ "Herkimer",
2855
+ "Jefferson",
2856
+ "Lewis",
2857
+ "Livingston",
2858
+ "Madison",
2859
+ "Monroe",
2860
+ "Montgomery",
2861
+ "Nassau",
2862
+ "Niagara",
2863
+ "Oneida",
2864
+ "Onondaga",
2865
+ "Ontario",
2866
+ "Orange",
2867
+ "Orleans",
2868
+ "Oswego",
2869
+ "Otsego",
2870
+ "Putnam",
2871
+ "Rensselaer",
2872
+ "Rockland",
2873
+ "Saratoga",
2874
+ "Schenectady",
2875
+ "Schoharie",
2876
+ "Schuyler",
2877
+ "Seneca",
2878
+ "St. Lawrence",
2879
+ "Steuben",
2880
+ "Suffolk",
2881
+ "Sullivan",
2882
+ "Tioga",
2883
+ "Tompkins",
2884
+ "Ulster"
2885
+ ],
2886
+ "Montana": [
2887
+ "Beaverhead",
2888
+ "Big Horn",
2889
+ "Blaine",
2890
+ "Broadwater",
2891
+ "Carbon",
2892
+ "Carter",
2893
+ "Cascade",
2894
+ "Chouteau",
2895
+ "Custer",
2896
+ "Daniels",
2897
+ "Dawson",
2898
+ "Deer Lodge",
2899
+ "Fallon",
2900
+ "Fergus",
2901
+ "Flathead",
2902
+ "Gallatin",
2903
+ "Garfield",
2904
+ "Glacier",
2905
+ "Golden Valley",
2906
+ "Granite",
2907
+ "Hill",
2908
+ "Jefferson",
2909
+ "Judith Basin",
2910
+ "Lake",
2911
+ "Lewis and Clark",
2912
+ "Liberty",
2913
+ "Lincoln",
2914
+ "Madison",
2915
+ "McCone",
2916
+ "Meagher",
2917
+ "Mineral",
2918
+ "Missoula",
2919
+ "Musselshell",
2920
+ "Park",
2921
+ "Petroleum",
2922
+ "Phillips",
2923
+ "Pondera",
2924
+ "Powder River",
2925
+ "Powell",
2926
+ "Prairie",
2927
+ "Ravalli",
2928
+ "Richland",
2929
+ "Roosevelt",
2930
+ "Rosebud",
2931
+ "Sanders",
2932
+ "Sheridan",
2933
+ "Silver Bow",
2934
+ "Stillwater",
2935
+ "Sweet Grass",
2936
+ "Teton",
2937
+ "Toole",
2938
+ "Treasure",
2939
+ "Valley"
2940
+ ],
2941
+ "Nevada": [
2942
+ "Churchill",
2943
+ "Clark",
2944
+ "Douglas",
2945
+ "Elko",
2946
+ "Esmeralda",
2947
+ "Eureka",
2948
+ "Humboldt",
2949
+ "Lander",
2950
+ "Lincoln",
2951
+ "Lyon",
2952
+ "Mineral",
2953
+ "Nye",
2954
+ "Pershing",
2955
+ "Storey"
2956
+ ],
2957
+ "Delaware": [
2958
+ "Kent",
2959
+ "New Castle",
2960
+ "Sussex"
2961
+ ],
2962
+ "Maine": [
2963
+ "Androscoggin",
2964
+ "Aroostook",
2965
+ "Cumberland",
2966
+ "Franklin",
2967
+ "Hancock",
2968
+ "Kennebec",
2969
+ "Knox",
2970
+ "Lincoln",
2971
+ "Oxford",
2972
+ "Penobscot",
2973
+ "Piscataquis",
2974
+ "Sagadahoc",
2975
+ "Somerset",
2976
+ "Waldo"
2977
+ ]
2978
+ }
2979
+ }