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,1448 @@
1
+ {
2
+ "description": "Birds of North America, grouped by family",
3
+ "source": "http://listing.aba.org/aba-checklist/",
4
+ "birds": [
5
+ {
6
+ "family": "Ducks, Geese, and Swans",
7
+ "members": [
8
+ "Black-bellied Whistling-Duck",
9
+ "Fulvous Whistling-Duck",
10
+ "Taiga Bean-Goose",
11
+ "Tundra Bean-Goose",
12
+ "Pink-footed Goose",
13
+ "Greater White-fronted Goose",
14
+ "Lesser White-fronted Goose",
15
+ "Graylag Goose",
16
+ "Emperor Goose",
17
+ "Snow Goose",
18
+ "Ross's Goose",
19
+ "Brant",
20
+ "Barnacle Goose",
21
+ "Cackling Goose",
22
+ "Canada Goose",
23
+ "Mute Swan",
24
+ "Trumpeter Swan",
25
+ "Tundra Swan",
26
+ "Whooper Swan",
27
+ "Egyptian Goose",
28
+ "Muscovy Duck",
29
+ "Wood Duck",
30
+ "Gadwall",
31
+ "Falcated Duck",
32
+ "Eurasian Wigeon",
33
+ "American Wigeon",
34
+ "American Black Duck",
35
+ "Mallard",
36
+ "Mottled Duck",
37
+ "Eastern Spot-billed Duck",
38
+ "Blue-winged Teal",
39
+ "Cinnamon Teal",
40
+ "Northern Shoveler",
41
+ "White-cheeked Pintail",
42
+ "Northern Pintail",
43
+ "Garganey",
44
+ "Baikal Teal",
45
+ "Green-winged Teal",
46
+ "Canvasback",
47
+ "Redhead",
48
+ "Common Pochard",
49
+ "Ring-necked Duck",
50
+ "Tufted Duck",
51
+ "Greater Scaup",
52
+ "Lesser Scaup",
53
+ "Steller's Eider",
54
+ "Spectacled Eider",
55
+ "King Eider",
56
+ "Common Eider",
57
+ "Harlequin Duck",
58
+ "Labrador Duck",
59
+ "Surf Scoter",
60
+ "White-winged Scoter",
61
+ "Common Scoter",
62
+ "Black Scoter",
63
+ "Long-tailed Duck",
64
+ "Bufflehead",
65
+ "Common Goldeneye",
66
+ "Barrow's Goldeneye",
67
+ "Smew",
68
+ "Hooded Merganser",
69
+ "Common Merganser",
70
+ "Red-breasted Merganser",
71
+ "Masked Duck",
72
+ "Ruddy Duck"
73
+ ]
74
+ },
75
+ {
76
+ "family": "Curassows and Guans",
77
+ "members": [
78
+ "Plain Chachalaca"
79
+ ]
80
+ },
81
+ {
82
+ "family": "New World Quail",
83
+ "members": [
84
+ "Mountain Quail",
85
+ "Scaled Quail",
86
+ "California Quail",
87
+ "Gambel's Quail",
88
+ "Northern Bobwhite",
89
+ "Montezuma Quail"
90
+ ]
91
+ },
92
+ {
93
+ "family": "Partridges, Grouse, Turkeys, and Old World Quail",
94
+ "members": [
95
+ "Chukar",
96
+ "Himalayan Snowcock",
97
+ "Gray Partridge",
98
+ "Ring-necked Pheasant",
99
+ "Ruffed Grouse",
100
+ "Greater Sage-Grouse",
101
+ "Gunnison Sage-Grouse",
102
+ "Spruce Grouse",
103
+ "Willow Ptarmigan",
104
+ "Rock Ptarmigan",
105
+ "White-tailed Ptarmigan",
106
+ "Dusky Grouse",
107
+ "Sooty Grouse",
108
+ "Sharp-tailed Grouse",
109
+ "Greater Prairie-Chicken",
110
+ "Lesser Prairie-Chicken",
111
+ "Wild Turkey"
112
+ ]
113
+ },
114
+ {
115
+ "family": "Loons",
116
+ "members": [
117
+ "Red-throated Loon",
118
+ "Arctic Loon",
119
+ "Pacific Loon",
120
+ "Common Loon",
121
+ "Yellow-billed Loon"
122
+ ]
123
+ },
124
+ {
125
+ "family": "Grebes",
126
+ "members": [
127
+ "Least Grebe",
128
+ "Pied-billed Grebe",
129
+ "Horned Grebe",
130
+ "Red-necked Grebe",
131
+ "Eared Grebe",
132
+ "Western Grebe",
133
+ "Clark's Grebe"
134
+ ]
135
+ },
136
+ {
137
+ "family": "Flamingos",
138
+ "members": [
139
+ "American Flamingo"
140
+ ]
141
+ },
142
+ {
143
+ "family": "Albatrosses",
144
+ "members": [
145
+ "Yellow-nosed Albatross",
146
+ "White-capped Albatross",
147
+ "Salvin’s Albatross",
148
+ "Black-browed Albatross",
149
+ "Light-mantled Albatross",
150
+ "Wandering Albatross",
151
+ "Laysan Albatross",
152
+ "Black-footed Albatross",
153
+ "Short-tailed Albatross"
154
+ ]
155
+ },
156
+ {
157
+ "family": "Shearwaters and Petrels",
158
+ "members": [
159
+ "Northern Fulmar",
160
+ "Great-winged Petrel",
161
+ "Providence Petrel",
162
+ "Trindade Petrel",
163
+ "Murphy's Petrel",
164
+ "Mottled Petrel",
165
+ "Bermuda Petrel",
166
+ "Black-capped Petrel",
167
+ "Hawaiian Petrel",
168
+ "Fea's Petrel",
169
+ "Zino’s Petrel",
170
+ "Cook's Petrel",
171
+ "Stejneger's Petrel",
172
+ "Bulwer's Petrel",
173
+ "White-chinned Petrel",
174
+ "Parkinson's Petrel",
175
+ "Streaked Shearwater",
176
+ "Cory's Shearwater",
177
+ "Cape Verde Shearwater",
178
+ "Pink-footed Shearwater",
179
+ "Flesh-footed Shearwater",
180
+ "Great Shearwater",
181
+ "Wedge-tailed Shearwater",
182
+ "Buller's Shearwater",
183
+ "Sooty Shearwater",
184
+ "Short-tailed Shearwater",
185
+ "Manx Shearwater",
186
+ "Newell’s Shearwater",
187
+ "Black-vented Shearwater",
188
+ "Audubon's Shearwater",
189
+ "Barolo Shearwater"
190
+ ]
191
+ },
192
+ {
193
+ "family": "Storm-Petrels",
194
+ "members": [
195
+ "Wilson's Storm-Petrel",
196
+ "White-faced Storm-Petrel",
197
+ "European Storm-Petrel",
198
+ "Black-bellied Storm-Petrel",
199
+ "Fork-tailed Storm-Petrel",
200
+ "Ringed Storm-Petrel",
201
+ "Swinhoe's Storm-Petrel",
202
+ "Leach's Storm-Petrel",
203
+ "Townsend's Storm-Petrel",
204
+ "Ashy Storm-Petrel",
205
+ "Band-rumped Storm-Petrel",
206
+ "Wedge-rumped Storm-Petrel",
207
+ "Black Storm-Petrel",
208
+ "Tristram's Storm-Petrel",
209
+ "Least Storm-Petrel"
210
+ ]
211
+ },
212
+ {
213
+ "family": "Tropicbirds",
214
+ "members": [
215
+ "White-tailed Tropicbird",
216
+ "Red-billed Tropicbird",
217
+ "Red-tailed Tropicbird"
218
+ ]
219
+ },
220
+ {
221
+ "family": "Storks",
222
+ "members": [
223
+ "Jabiru",
224
+ "Wood Stork"
225
+ ]
226
+ },
227
+ {
228
+ "family": "Frigatebirds",
229
+ "members": [
230
+ "Magnificent Frigatebird",
231
+ "Great Frigatebird",
232
+ "Lesser Frigatebird"
233
+ ]
234
+ },
235
+ {
236
+ "family": "Boobies and Gannets",
237
+ "members": [
238
+ "Masked Booby",
239
+ "Blue-footed Booby",
240
+ "Brown Booby",
241
+ "Red-footed Booby",
242
+ "Northern Gannet"
243
+ ]
244
+ },
245
+ {
246
+ "family": "Cormorants",
247
+ "members": [
248
+ "Brandt's Cormorant",
249
+ "Neotropic Cormorant",
250
+ "Double-crested Cormorant",
251
+ "Great Cormorant",
252
+ "Red-faced Cormorant",
253
+ "Pelagic Cormorant"
254
+ ]
255
+ },
256
+ {
257
+ "family": "Darters",
258
+ "members": [
259
+ "Anhinga"
260
+ ]
261
+ },
262
+ {
263
+ "family": "Pelicans",
264
+ "members": [
265
+ "American White Pelican",
266
+ "Brown Pelican"
267
+ ]
268
+ },
269
+ {
270
+ "family": "Bitterns, Herons, and Allies",
271
+ "members": [
272
+ "American Bittern",
273
+ "Yellow Bittern",
274
+ "Least Bittern",
275
+ "Bare-throated Tiger-Heron",
276
+ "Great Blue Heron",
277
+ "Gray Heron",
278
+ "Great Egret",
279
+ "Intermediate Egret",
280
+ "Chinese Egret",
281
+ "Little Egret",
282
+ "Western Reef-Heron",
283
+ "Snowy Egret",
284
+ "Little Blue Heron",
285
+ "Tricolored Heron",
286
+ "Reddish Egret",
287
+ "Cattle Egret",
288
+ "Chinese Pond-Heron",
289
+ "Green Heron",
290
+ "Black-crowned Night-Heron",
291
+ "Yellow-crowned Night-Heron"
292
+ ]
293
+ },
294
+ {
295
+ "family": "Ibises and Spoonbills",
296
+ "members": [
297
+ "White Ibis",
298
+ "Scarlet Ibis",
299
+ "Glossy Ibis",
300
+ "White-faced Ibis",
301
+ "Roseate Spoonbill"
302
+ ]
303
+ },
304
+ {
305
+ "family": "New World Vultures",
306
+ "members": [
307
+ "Black Vulture",
308
+ "Turkey Vulture",
309
+ "California Condor"
310
+ ]
311
+ },
312
+ {
313
+ "family": "Ospreys",
314
+ "members": [
315
+ "Osprey"
316
+ ]
317
+ },
318
+ {
319
+ "family": "Hawks, Kites, Eagles, and Allies",
320
+ "members": [
321
+ "Hook-billed Kite",
322
+ "Swallow-tailed Kite",
323
+ "White-tailed Kite",
324
+ "Snail Kite",
325
+ "Double-toothed Kite",
326
+ "Mississippi Kite",
327
+ "Bald Eagle",
328
+ "White-tailed Eagle",
329
+ "Steller's Sea-Eagle",
330
+ "Northern Harrier",
331
+ "Sharp-shinned Hawk",
332
+ "Cooper's Hawk",
333
+ "Northern Goshawk",
334
+ "Crane Hawk",
335
+ "Common Black Hawk",
336
+ "Roadside Hawk",
337
+ "Harris's Hawk",
338
+ "White-tailed Hawk",
339
+ "Gray Hawk",
340
+ "Red-shouldered Hawk",
341
+ "Broad-winged Hawk",
342
+ "Short-tailed Hawk",
343
+ "Swainson's Hawk",
344
+ "Zone-tailed Hawk",
345
+ "Red-tailed Hawk",
346
+ "Rough-legged Hawk",
347
+ "Ferruginous Hawk",
348
+ "Golden Eagle"
349
+ ]
350
+ },
351
+ {
352
+ "family": "Rails, Gallinules, and Coots",
353
+ "members": [
354
+ "Yellow Rail",
355
+ "Black Rail",
356
+ "Corn Crake",
357
+ "Ridgway’s Rail",
358
+ "Clapper Rail",
359
+ "King Rail",
360
+ "Virginia Rail",
361
+ "Rufous-necked Wood-Rail",
362
+ "Sora",
363
+ "Paint-billed Crake",
364
+ "Spotted Rail",
365
+ "Purple Swamphen",
366
+ "Purple Gallinule",
367
+ "Common Gallinule",
368
+ "Common Moorhen",
369
+ "Eurasian Coot",
370
+ "American Coot"
371
+ ]
372
+ },
373
+ {
374
+ "family": "Sungrebes",
375
+ "members": [
376
+ "Sungrebe"
377
+ ]
378
+ },
379
+ {
380
+ "family": "Limpkins",
381
+ "members": [
382
+ "Limpkin"
383
+ ]
384
+ },
385
+ {
386
+ "family": "Cranes",
387
+ "members": [
388
+ "Sandhill Crane",
389
+ "Common Crane",
390
+ "Whooping Crane"
391
+ ]
392
+ },
393
+ {
394
+ "family": "Thick-knees",
395
+ "members": [
396
+ "Double-striped Thick-knee"
397
+ ]
398
+ },
399
+ {
400
+ "family": "Stilts and Avocets",
401
+ "members": [
402
+ "Black-winged Stilt",
403
+ "Black-necked Stilt",
404
+ "American Avocet"
405
+ ]
406
+ },
407
+ {
408
+ "family": "Oystercatchers",
409
+ "members": [
410
+ "Eurasian Oystercatcher",
411
+ "American Oystercatcher",
412
+ "Black Oystercatcher"
413
+ ]
414
+ },
415
+ {
416
+ "family": "Lapwings and Plovers",
417
+ "members": [
418
+ "Northern Lapwing",
419
+ "Black-bellied Plover",
420
+ "European Golden-Plover",
421
+ "American Golden-Plover",
422
+ "Pacific Golden-Plover",
423
+ "Lesser Sand-Plover",
424
+ "Greater Sand-Plover",
425
+ "Collared Plover",
426
+ "Snowy Plover",
427
+ "Wilson's Plover",
428
+ "Common Ringed Plover",
429
+ "Semipalmated Plover",
430
+ "Piping Plover",
431
+ "Little Ringed Plover",
432
+ "Killdeer",
433
+ "Mountain Plover",
434
+ "Eurasian Dotterel"
435
+ ]
436
+ },
437
+ {
438
+ "family": "Jacanas",
439
+ "members": [
440
+ "Northern Jacana"
441
+ ]
442
+ },
443
+ {
444
+ "family": "Sandpipers, Phalaropes, and Allies",
445
+ "members": [
446
+ "Terek Sandpiper",
447
+ "Common Sandpiper",
448
+ "Spotted Sandpiper",
449
+ "Green Sandpiper",
450
+ "Solitary Sandpiper",
451
+ "Gray-tailed Tattler",
452
+ "Wandering Tattler",
453
+ "Spotted Redshank",
454
+ "Greater Yellowlegs",
455
+ "Common Greenshank",
456
+ "Willet",
457
+ "Lesser Yellowlegs",
458
+ "Marsh Sandpiper",
459
+ "Wood Sandpiper",
460
+ "Common Redshank",
461
+ "Upland Sandpiper",
462
+ "Little Curlew",
463
+ "Eskimo Curlew",
464
+ "Whimbrel",
465
+ "Bristle-thighed Curlew",
466
+ "Far Eastern Curlew",
467
+ "Slender-billed Curlew",
468
+ "Eurasian Curlew",
469
+ "Long-billed Curlew",
470
+ "Black-tailed Godwit",
471
+ "Hudsonian Godwit",
472
+ "Bar-tailed Godwit",
473
+ "Marbled Godwit",
474
+ "Ruddy Turnstone",
475
+ "Black Turnstone",
476
+ "Great Knot",
477
+ "Red Knot",
478
+ "Surfbird",
479
+ "Ruff",
480
+ "Broad-billed Sandpiper",
481
+ "Sharp-tailed Sandpiper",
482
+ "Stilt Sandpiper",
483
+ "Curlew Sandpiper",
484
+ "Temminck's Stint",
485
+ "Long-toed Stint",
486
+ "Spoon-billed Sandpiper",
487
+ "Red-necked Stint",
488
+ "Sanderling",
489
+ "Dunlin",
490
+ "Rock Sandpiper",
491
+ "Purple Sandpiper",
492
+ "Baird's Sandpiper",
493
+ "Little Stint",
494
+ "Least Sandpiper",
495
+ "White-rumped Sandpiper",
496
+ "Buff-breasted Sandpiper",
497
+ "Pectoral Sandpiper",
498
+ "Semipalmated Sandpiper",
499
+ "Western Sandpiper",
500
+ "Short-billed Dowitcher",
501
+ "Long-billed Dowitcher",
502
+ "Jack Snipe",
503
+ "Wilson's Snipe",
504
+ "Common Snipe",
505
+ "Pin-tailed Snipe",
506
+ "Solitary Snipe",
507
+ "Eurasian Woodcock",
508
+ "American Woodcock",
509
+ "Wilson's Phalarope",
510
+ "Red-necked Phalarope",
511
+ "Red Phalarope"
512
+ ]
513
+ },
514
+ {
515
+ "family": "Pratincoles",
516
+ "members": [
517
+ "Oriental Pratincole"
518
+ ]
519
+ },
520
+ {
521
+ "family": "Skuas and Jaegers",
522
+ "members": [
523
+ "Great Skua",
524
+ "South Polar Skua",
525
+ "Pomarine Jaeger",
526
+ "Parasitic Jaeger",
527
+ "Long-tailed Jaeger"
528
+ ]
529
+ },
530
+ {
531
+ "family": "Auks, Murres, and Puffins",
532
+ "members": [
533
+ "Dovekie",
534
+ "Common Murre",
535
+ "Thick-billed Murre",
536
+ "Razorbill",
537
+ "Great Auk",
538
+ "Black Guillemot",
539
+ "Pigeon Guillemot",
540
+ "Long-billed Murrelet",
541
+ "Marbled Murrelet",
542
+ "Kittlitz's Murrelet",
543
+ "Scripps's Murrelet",
544
+ "Guadalupe Murrelet",
545
+ "Craveri's Murrelet",
546
+ "Ancient Murrelet",
547
+ "Cassin's Auklet",
548
+ "Parakeet Auklet",
549
+ "Least Auklet",
550
+ "Whiskered Auklet",
551
+ "Crested Auklet",
552
+ "Rhinoceros Auklet",
553
+ "Atlantic Puffin",
554
+ "Horned Puffin",
555
+ "Tufted Puffin"
556
+ ]
557
+ },
558
+ {
559
+ "family": "Gulls, Terns, and Skimmers",
560
+ "members": [
561
+ "Swallow-tailed Gull",
562
+ "Black-legged Kittiwake",
563
+ "Red-legged Kittiwake",
564
+ "Ivory Gull",
565
+ "Sabine's Gull",
566
+ "Bonaparte's Gull",
567
+ "Gray-hooded Gull",
568
+ "Black-headed Gull",
569
+ "Little Gull",
570
+ "Ross's Gull",
571
+ "Laughing Gull",
572
+ "Franklin's Gull",
573
+ "Belcher's Gull",
574
+ "Black-tailed Gull",
575
+ "Heermann's Gull",
576
+ "Mew Gull",
577
+ "Ring-billed Gull",
578
+ "Western Gull",
579
+ "Yellow-footed Gull",
580
+ "California Gull",
581
+ "Herring Gull",
582
+ "Yellow-legged Gull",
583
+ "Thayer's Gull",
584
+ "Iceland Gull",
585
+ "Lesser Black-backed Gull",
586
+ "Slaty-backed Gull",
587
+ "Glaucous-winged Gull",
588
+ "Glaucous Gull",
589
+ "Great Black-backed Gull",
590
+ "Kelp Gull",
591
+ "Brown Noddy",
592
+ "Black Noddy",
593
+ "Sooty Tern",
594
+ "Bridled Tern",
595
+ "Aleutian Tern",
596
+ "Least Tern",
597
+ "Large-billed Tern",
598
+ "Gull-billed Tern",
599
+ "Caspian Tern",
600
+ "Black Tern",
601
+ "White-winged Tern",
602
+ "Whiskered Tern",
603
+ "Roseate Tern",
604
+ "Common Tern",
605
+ "Arctic Tern",
606
+ "Forster's Tern",
607
+ "Royal Tern",
608
+ "Sandwich Tern",
609
+ "Elegant Tern",
610
+ "Black Skimmer"
611
+ ]
612
+ },
613
+ {
614
+ "family": "Pigeons and Doves",
615
+ "members": [
616
+ "Rock Pigeon",
617
+ "Scaly-naped Pigeon",
618
+ "White-crowned Pigeon",
619
+ "Red-billed Pigeon",
620
+ "Band-tailed Pigeon",
621
+ "Oriental Turtle-Dove",
622
+ "European Turtle-Dove",
623
+ "Eurasian Collared-Dove",
624
+ "Spotted Dove",
625
+ "Passenger Pigeon",
626
+ "Inca Dove",
627
+ "Common Ground-Dove",
628
+ "Ruddy Ground-Dove",
629
+ "Ruddy Quail-Dove",
630
+ "Key West Quail-Dove",
631
+ "White-tipped Dove",
632
+ "White-winged Dove",
633
+ "Zenaida Dove",
634
+ "Mourning Dove"
635
+ ]
636
+ },
637
+ {
638
+ "family": "Cuckoos, Roadrunners, and Anis",
639
+ "members": [
640
+ "Common Cuckoo",
641
+ "Oriental Cuckoo",
642
+ "Yellow-billed Cuckoo",
643
+ "Mangrove Cuckoo",
644
+ "Black-billed Cuckoo",
645
+ "Greater Roadrunner",
646
+ "Smooth-billed Ani",
647
+ "Groove-billed Ani"
648
+ ]
649
+ },
650
+ {
651
+ "family": "Barn Owls",
652
+ "members": [
653
+ "Barn Owl"
654
+ ]
655
+ },
656
+ {
657
+ "family": "Typical Owls",
658
+ "members": [
659
+ "Flammulated Owl",
660
+ "Oriental Scops-Owl",
661
+ "Western Screech-Owl",
662
+ "Eastern Screech-Owl",
663
+ "Whiskered Screech-Owl",
664
+ "Great Horned Owl",
665
+ "Snowy Owl",
666
+ "Northern Hawk Owl",
667
+ "Northern Pygmy-Owl",
668
+ "Ferruginous Pygmy-Owl",
669
+ "Elf Owl",
670
+ "Burrowing Owl",
671
+ "Mottled Owl",
672
+ "Spotted Owl",
673
+ "Barred Owl",
674
+ "Great Gray Owl",
675
+ "Long-eared Owl",
676
+ "Stygian Owl",
677
+ "Short-eared Owl",
678
+ "Boreal Owl",
679
+ "Northern Saw-whet Owl",
680
+ "Northern Boobook"
681
+ ]
682
+ },
683
+ {
684
+ "family": "Goatsuckers",
685
+ "members": [
686
+ "Lesser Nighthawk",
687
+ "Common Nighthawk",
688
+ "Antillean Nighthawk",
689
+ "Common Pauraque",
690
+ "Common Poorwill",
691
+ "Chuck-will's-widow",
692
+ "Buff-collared Nightjar",
693
+ "Eastern Whip-poor-will",
694
+ "Mexican Whip-poor-will",
695
+ "Gray Nightjar"
696
+ ]
697
+ },
698
+ {
699
+ "family": "Swifts",
700
+ "members": [
701
+ "Black Swift",
702
+ "White-collared Swift",
703
+ "Chimney Swift",
704
+ "Vaux's Swift",
705
+ "White-throated Needletail",
706
+ "Common Swift",
707
+ "Fork-tailed Swift",
708
+ "White-throated Swift",
709
+ "Antillean Palm-Swift"
710
+ ]
711
+ },
712
+ {
713
+ "family": "Hummingbirds",
714
+ "members": [
715
+ "Green Violetear",
716
+ "Green-breasted Mango",
717
+ "Magnificent Hummingbird",
718
+ "Plain-capped Starthroat",
719
+ "Blue-throated Hummingbird",
720
+ "Bahama Woodstar",
721
+ "Lucifer Hummingbird",
722
+ "Ruby-throated Hummingbird",
723
+ "Black-chinned Hummingbird",
724
+ "Anna's Hummingbird",
725
+ "Costa's Hummingbird",
726
+ "Bumblebee Hummingbird",
727
+ "Broad-tailed Hummingbird",
728
+ "Rufous Hummingbird",
729
+ "Allen's Hummingbird",
730
+ "Calliope Hummingbird",
731
+ "Broad-billed Hummingbird",
732
+ "Berylline Hummingbird",
733
+ "Buff-bellied Hummingbird",
734
+ "Cinnamon Hummingbird",
735
+ "Violet-crowned Hummingbird",
736
+ "White-eared Hummingbird",
737
+ "Xantus's Hummingbird"
738
+ ]
739
+ },
740
+ {
741
+ "family": "Trogons",
742
+ "members": [
743
+ "Elegant Trogon",
744
+ "Eared Quetzal"
745
+ ]
746
+ },
747
+ {
748
+ "family": "Hoopoes",
749
+ "members": [
750
+ "Eurasian Hoopoe"
751
+ ]
752
+ },
753
+ {
754
+ "family": "Kingfishers",
755
+ "members": [
756
+ "Ringed Kingfisher",
757
+ "Belted Kingfisher",
758
+ "Amazon Kingfisher",
759
+ "Green Kingfisher"
760
+ ]
761
+ },
762
+ {
763
+ "family": "Woodpeckers and Allies",
764
+ "members": [
765
+ "Eurasian Wryneck",
766
+ "Lewis's Woodpecker",
767
+ "Red-headed Woodpecker",
768
+ "Acorn Woodpecker",
769
+ "Gila Woodpecker",
770
+ "Golden-fronted Woodpecker",
771
+ "Red-bellied Woodpecker",
772
+ "Williamson's Sapsucker",
773
+ "Yellow-bellied Sapsucker",
774
+ "Red-naped Sapsucker",
775
+ "Red-breasted Sapsucker",
776
+ "Great Spotted Woodpecker",
777
+ "Ladder-backed Woodpecker",
778
+ "Nuttall's Woodpecker",
779
+ "Downy Woodpecker",
780
+ "Hairy Woodpecker",
781
+ "Arizona Woodpecker",
782
+ "Red-cockaded Woodpecker",
783
+ "White-headed Woodpecker",
784
+ "American Three-toed Woodpecker",
785
+ "Black-backed Woodpecker",
786
+ "Northern Flicker",
787
+ "Gilded Flicker",
788
+ "Pileated Woodpecker",
789
+ "Ivory-billed Woodpecker"
790
+ ]
791
+ },
792
+ {
793
+ "family": "Caracaras and Falcons",
794
+ "members": [
795
+ "Collared Forest-Falcon",
796
+ "Crested Caracara",
797
+ "Eurasian Kestrel",
798
+ "American Kestrel",
799
+ "Red-footed Falcon",
800
+ "Merlin",
801
+ "Eurasian Hobby",
802
+ "Aplomado Falcon",
803
+ "Gyrfalcon",
804
+ "Peregrine Falcon",
805
+ "Prairie Falcon"
806
+ ]
807
+ },
808
+ {
809
+ "family": "Lories, Lovebirds, and Australasian Parrots",
810
+ "members": [
811
+ "Rosy-faced Lovebird"
812
+ ]
813
+ },
814
+ {
815
+ "family": "Parakeets, Macaws, and Parrots",
816
+ "members": [
817
+ "Monk Parakeet",
818
+ "Carolina Parakeet",
819
+ "Nanday Parakeet",
820
+ "Green Parakeet",
821
+ "Thick-billed Parrot",
822
+ "White-winged Parakeet",
823
+ "Red-crowned Parrot"
824
+ ]
825
+ },
826
+ {
827
+ "family": "Tyrant Flycatchers",
828
+ "members": [
829
+ "Northern Beardless-Tyrannulet",
830
+ "Greenish Elaenia",
831
+ "White-crested Elaenia",
832
+ "Tufted Flycatcher",
833
+ "Olive-sided Flycatcher",
834
+ "Greater Pewee",
835
+ "Western Wood-Pewee",
836
+ "Eastern Wood-Pewee",
837
+ "Cuban Pewee",
838
+ "Yellow-bellied Flycatcher",
839
+ "Acadian Flycatcher",
840
+ "Alder Flycatcher",
841
+ "Willow Flycatcher",
842
+ "Least Flycatcher",
843
+ "Hammond's Flycatcher",
844
+ "Gray Flycatcher",
845
+ "Dusky Flycatcher",
846
+ "Pacific-slope Flycatcher",
847
+ "Cordilleran Flycatcher",
848
+ "Buff-breasted Flycatcher",
849
+ "Black Phoebe",
850
+ "Eastern Phoebe",
851
+ "Say's Phoebe",
852
+ "Vermilion Flycatcher",
853
+ "Dusky-capped Flycatcher",
854
+ "Ash-throated Flycatcher",
855
+ "Nutting's Flycatcher",
856
+ "Great Crested Flycatcher",
857
+ "Brown-crested Flycatcher",
858
+ "La Sagra's Flycatcher",
859
+ "Great Kiskadee",
860
+ "Social Flycatcher",
861
+ "Sulphur-bellied Flycatcher",
862
+ "Piratic Flycatcher",
863
+ "Variegated Flycatcher",
864
+ "Crowned Slaty Flycatcher",
865
+ "Tropical Kingbird",
866
+ "Couch's Kingbird",
867
+ "Cassin's Kingbird",
868
+ "Thick-billed Kingbird",
869
+ "Western Kingbird",
870
+ "Eastern Kingbird",
871
+ "Gray Kingbird",
872
+ "Loggerhead Kingbird",
873
+ "Scissor-tailed Flycatcher",
874
+ "Fork-tailed Flycatcher"
875
+ ]
876
+ },
877
+ {
878
+ "family": "Becards, Tityras, and Allies",
879
+ "members": [
880
+ "Masked Tityra",
881
+ "Gray-collared Becard",
882
+ "Rose-throated Becard"
883
+ ]
884
+ },
885
+ {
886
+ "family": "Shrikes",
887
+ "members": [
888
+ "Brown Shrike",
889
+ "Loggerhead Shrike",
890
+ "Northern Shrike"
891
+ ]
892
+ },
893
+ {
894
+ "family": "Vireos",
895
+ "members": [
896
+ "White-eyed Vireo",
897
+ "Thick-billed Vireo",
898
+ "Bell's Vireo",
899
+ "Black-capped Vireo",
900
+ "Gray Vireo",
901
+ "Yellow-throated Vireo",
902
+ "Plumbeous Vireo",
903
+ "Cassin's Vireo",
904
+ "Blue-headed Vireo",
905
+ "Hutton's Vireo",
906
+ "Warbling Vireo",
907
+ "Philadelphia Vireo",
908
+ "Red-eyed Vireo",
909
+ "Yellow-green Vireo",
910
+ "Black-whiskered Vireo",
911
+ "Yucatan Vireo"
912
+ ]
913
+ },
914
+ {
915
+ "family": "Jays and Crows",
916
+ "members": [
917
+ "Gray Jay",
918
+ "Brown Jay",
919
+ "Green Jay",
920
+ "Pinyon Jay",
921
+ "Steller's Jay",
922
+ "Blue Jay",
923
+ "Florida Scrub-Jay",
924
+ "Island Scrub-Jay",
925
+ "California Scrub-Jay",
926
+ "Woodhouse's Scrub-Jay",
927
+ "Mexican Jay",
928
+ "Clark's Nutcracker",
929
+ "Black-billed Magpie",
930
+ "Yellow-billed Magpie",
931
+ "Eurasian Jackdaw",
932
+ "American Crow",
933
+ "Northwestern Crow",
934
+ "Tamaulipas Crow",
935
+ "Fish Crow",
936
+ "Chihuahuan Raven",
937
+ "Common Raven"
938
+ ]
939
+ },
940
+ {
941
+ "family": "Larks",
942
+ "members": [
943
+ "Eurasian Skylark",
944
+ "Horned Lark"
945
+ ]
946
+ },
947
+ {
948
+ "family": "Swallows",
949
+ "members": [
950
+ "Purple Martin",
951
+ "Cuban Martin",
952
+ "Gray-breasted Martin",
953
+ "Southern Martin",
954
+ "Brown-chested Martin",
955
+ "Tree Swallow",
956
+ "Mangrove Swallow",
957
+ "Violet-green Swallow",
958
+ "Bahama Swallow",
959
+ "Northern Rough-winged Swallow",
960
+ "Bank Swallow",
961
+ "Cliff Swallow",
962
+ "Cave Swallow",
963
+ "Barn Swallow",
964
+ "Common House-Martin"
965
+ ]
966
+ },
967
+ {
968
+ "family": "Chickadees and Titmice",
969
+ "members": [
970
+ "Carolina Chickadee",
971
+ "Black-capped Chickadee",
972
+ "Mountain Chickadee",
973
+ "Mexican Chickadee",
974
+ "Chestnut-backed Chickadee",
975
+ "Boreal Chickadee",
976
+ "Gray-headed Chickadee",
977
+ "Bridled Titmouse",
978
+ "Oak Titmouse",
979
+ "Juniper Titmouse",
980
+ "Tufted Titmouse",
981
+ "Black-crested Titmouse"
982
+ ]
983
+ },
984
+ {
985
+ "family": "Verdin",
986
+ "members": [
987
+ "Verdin"
988
+ ]
989
+ },
990
+ {
991
+ "family": "Bushtits",
992
+ "members": [
993
+ "Bushtit"
994
+ ]
995
+ },
996
+ {
997
+ "family": "Nuthatches",
998
+ "members": [
999
+ "Red-breasted Nuthatch",
1000
+ "White-breasted Nuthatch",
1001
+ "Pygmy Nuthatch",
1002
+ "Brown-headed Nuthatch"
1003
+ ]
1004
+ },
1005
+ {
1006
+ "family": "Creepers",
1007
+ "members": [
1008
+ "Brown Creeper"
1009
+ ]
1010
+ },
1011
+ {
1012
+ "family": "Wrens",
1013
+ "members": [
1014
+ "Rock Wren",
1015
+ "Canyon Wren",
1016
+ "House Wren",
1017
+ "Pacific Wren",
1018
+ "Winter Wren",
1019
+ "Sedge Wren",
1020
+ "Marsh Wren",
1021
+ "Carolina Wren",
1022
+ "Bewick's Wren",
1023
+ "Cactus Wren",
1024
+ "Sinaloa Wren"
1025
+ ]
1026
+ },
1027
+ {
1028
+ "family": "Gnatcatchers and Gnatwrens",
1029
+ "members": [
1030
+ "Blue-gray Gnatcatcher",
1031
+ "California Gnatcatcher",
1032
+ "Black-tailed Gnatcatcher",
1033
+ "Black-capped Gnatcatcher"
1034
+ ]
1035
+ },
1036
+ {
1037
+ "family": "Dippers",
1038
+ "members": [
1039
+ "American Dipper"
1040
+ ]
1041
+ },
1042
+ {
1043
+ "family": "Bulbuls",
1044
+ "members": [
1045
+ "Red-whiskered Bulbul"
1046
+ ]
1047
+ },
1048
+ {
1049
+ "family": "Kinglets",
1050
+ "members": [
1051
+ "Golden-crowned Kinglet",
1052
+ "Ruby-crowned Kinglet"
1053
+ ]
1054
+ },
1055
+ {
1056
+ "family": "Leaf Warblers",
1057
+ "members": [
1058
+ "Willow Warbler",
1059
+ "Common Chiffchaff",
1060
+ "Wood Warbler",
1061
+ "Dusky Warbler",
1062
+ "Pallas's Leaf Warbler",
1063
+ "Yellow-browed Warbler",
1064
+ "Arctic Warbler",
1065
+ "Kamchatka Leaf Warbler"
1066
+ ]
1067
+ },
1068
+ {
1069
+ "family": "Sylviid Warblers",
1070
+ "members": [
1071
+ "Lesser Whitethroat",
1072
+ "Wrentit"
1073
+ ]
1074
+ },
1075
+ {
1076
+ "family": "Reed Warblers",
1077
+ "members": [
1078
+ "Sedge Warbler"
1079
+ ]
1080
+ },
1081
+ {
1082
+ "family": "Grassbirds",
1083
+ "members": [
1084
+ "Middendorff's Grasshopper-Warbler",
1085
+ "Lanceolated Warbler"
1086
+ ]
1087
+ },
1088
+ {
1089
+ "family": "Old World Flycatchers",
1090
+ "members": [
1091
+ "Gray-streaked Flycatcher",
1092
+ "Asian Brown Flycatcher",
1093
+ "Spotted Flycatcher",
1094
+ "Dark-sided Flycatcher",
1095
+ "Rufous-tailed Robin",
1096
+ "Siberian Rubythroat",
1097
+ "Bluethroat",
1098
+ "Siberian Blue Robin",
1099
+ "Red-flanked Bluetail",
1100
+ "Narcissus Flycatcher",
1101
+ "Mugimaki Flycatcher",
1102
+ "Taiga Flycatcher",
1103
+ "Northern Wheatear",
1104
+ "Common Redstart",
1105
+ "Stonechat"
1106
+ ]
1107
+ },
1108
+ {
1109
+ "family": "Thrushes",
1110
+ "members": [
1111
+ "Eastern Bluebird",
1112
+ "Western Bluebird",
1113
+ "Mountain Bluebird",
1114
+ "Townsend's Solitaire",
1115
+ "Brown-backed Solitaire",
1116
+ "Orange-billed Nightingale-Thrush",
1117
+ "Black-headed Nightingale-Thrush",
1118
+ "Veery",
1119
+ "Gray-cheeked Thrush",
1120
+ "Bicknell's Thrush",
1121
+ "Swainson's Thrush",
1122
+ "Hermit Thrush",
1123
+ "Wood Thrush",
1124
+ "Eurasian Blackbird",
1125
+ "Eyebrowed Thrush",
1126
+ "Dusky Thrush",
1127
+ "Fieldfare",
1128
+ "Redwing",
1129
+ "Song Thrush",
1130
+ "Clay-colored Thrush",
1131
+ "White-throated Thrush",
1132
+ "Rufous-backed Robin",
1133
+ "American Robin",
1134
+ "Red-legged Thrush",
1135
+ "Varied Thrush",
1136
+ "Aztec Thrush"
1137
+ ]
1138
+ },
1139
+ {
1140
+ "family": "Mockingbirds and Thrashers",
1141
+ "members": [
1142
+ "Blue Mockingbird",
1143
+ "Gray Catbird",
1144
+ "Curve-billed Thrasher",
1145
+ "Brown Thrasher",
1146
+ "Long-billed Thrasher",
1147
+ "Bendire's Thrasher",
1148
+ "California Thrasher",
1149
+ "Le Conte's Thrasher",
1150
+ "Crissal Thrasher",
1151
+ "Sage Thrasher",
1152
+ "Bahama Mockingbird",
1153
+ "Northern Mockingbird"
1154
+ ]
1155
+ },
1156
+ {
1157
+ "family": "Starlings",
1158
+ "members": [
1159
+ "European Starling",
1160
+ "Common Myna"
1161
+ ]
1162
+ },
1163
+ {
1164
+ "family": "Accentors",
1165
+ "members": [
1166
+ "Siberian Accentor"
1167
+ ]
1168
+ },
1169
+ {
1170
+ "family": "Wagtails and Pipits",
1171
+ "members": [
1172
+ "Eastern Yellow Wagtail",
1173
+ "Citrine Wagtail",
1174
+ "Gray Wagtail",
1175
+ "White Wagtail",
1176
+ "Tree Pipit",
1177
+ "Olive-backed Pipit",
1178
+ "Pechora Pipit",
1179
+ "Red-throated Pipit",
1180
+ "American Pipit",
1181
+ "Sprague's Pipit"
1182
+ ]
1183
+ },
1184
+ {
1185
+ "family": "Waxwings",
1186
+ "members": [
1187
+ "Bohemian Waxwing",
1188
+ "Cedar Waxwing"
1189
+ ]
1190
+ },
1191
+ {
1192
+ "family": "Silky-flycatchers",
1193
+ "members": [
1194
+ "Gray Silky-flycatcher",
1195
+ "Phainopepla"
1196
+ ]
1197
+ },
1198
+ {
1199
+ "family": "Olive Warblers",
1200
+ "members": [
1201
+ "Olive Warbler"
1202
+ ]
1203
+ },
1204
+ {
1205
+ "family": "Longspurs and Snow Buntings",
1206
+ "members": [
1207
+ "Lapland Longspur",
1208
+ "Chestnut-collared Longspur",
1209
+ "Smith's Longspur",
1210
+ "McCown's Longspur",
1211
+ "Snow Bunting",
1212
+ "McKay's Bunting"
1213
+ ]
1214
+ },
1215
+ {
1216
+ "family": "Wood-Warblers",
1217
+ "members": [
1218
+ "Ovenbird",
1219
+ "Worm-eating Warbler",
1220
+ "Louisiana Waterthrush",
1221
+ "Northern Waterthrush",
1222
+ "Bachman's Warbler",
1223
+ "Golden-winged Warbler",
1224
+ "Blue-winged Warbler",
1225
+ "Black-and-white Warbler",
1226
+ "Prothonotary Warbler",
1227
+ "Swainson's Warbler",
1228
+ "Crescent-chested Warbler",
1229
+ "Tennessee Warbler",
1230
+ "Orange-crowned Warbler",
1231
+ "Colima Warbler",
1232
+ "Lucy's Warbler",
1233
+ "Nashville Warbler",
1234
+ "Virginia's Warbler",
1235
+ "Connecticut Warbler",
1236
+ "Gray-crowned Yellowthroat",
1237
+ "MacGillivray's Warbler",
1238
+ "Mourning Warbler",
1239
+ "Kentucky Warbler",
1240
+ "Common Yellowthroat",
1241
+ "Hooded Warbler",
1242
+ "American Redstart",
1243
+ "Kirtland's Warbler",
1244
+ "Cape May Warbler",
1245
+ "Cerulean Warbler",
1246
+ "Northern Parula",
1247
+ "Tropical Parula",
1248
+ "Magnolia Warbler",
1249
+ "Bay-breasted Warbler",
1250
+ "Blackburnian Warbler",
1251
+ "Yellow Warbler",
1252
+ "Chestnut-sided Warbler",
1253
+ "Blackpoll Warbler",
1254
+ "Black-throated Blue Warbler",
1255
+ "Palm Warbler",
1256
+ "Pine Warbler",
1257
+ "Yellow-rumped Warbler",
1258
+ "Yellow-throated Warbler",
1259
+ "Prairie Warbler",
1260
+ "Grace's Warbler",
1261
+ "Black-throated Gray Warbler",
1262
+ "Townsend's Warbler",
1263
+ "Hermit Warbler",
1264
+ "Golden-cheeked Warbler",
1265
+ "Black-throated Green Warbler",
1266
+ "Fan-tailed Warbler",
1267
+ "Rufous-capped Warbler",
1268
+ "Golden-crowned Warbler",
1269
+ "Canada Warbler",
1270
+ "Wilson's Warbler",
1271
+ "Red-faced Warbler",
1272
+ "Painted Redstart",
1273
+ "Slate-throated Redstart",
1274
+ "Yellow-breasted Chat"
1275
+ ]
1276
+ },
1277
+ {
1278
+ "family": "Spindalises",
1279
+ "members": [
1280
+ "Western Spindalis"
1281
+ ]
1282
+ },
1283
+ {
1284
+ "family": "Tanagers",
1285
+ "members": [
1286
+ "Red-legged Honeycreeper",
1287
+ "Bananaquit",
1288
+ "Yellow-faced Grassquit",
1289
+ "Black-faced Grassquit",
1290
+ "White-collared Seedeater"
1291
+ ]
1292
+ },
1293
+ {
1294
+ "family": "Emberizids",
1295
+ "members": [
1296
+ "Olive Sparrow",
1297
+ "Green-tailed Towhee",
1298
+ "Spotted Towhee",
1299
+ "Eastern Towhee",
1300
+ "Rufous-crowned Sparrow",
1301
+ "Canyon Towhee",
1302
+ "California Towhee",
1303
+ "Abert's Towhee",
1304
+ "Rufous-winged Sparrow",
1305
+ "Botteri's Sparrow",
1306
+ "Cassin's Sparrow",
1307
+ "Bachman's Sparrow",
1308
+ "American Tree Sparrow",
1309
+ "Chipping Sparrow",
1310
+ "Clay-colored Sparrow",
1311
+ "Brewer's Sparrow",
1312
+ "Field Sparrow",
1313
+ "Worthen's Sparrow",
1314
+ "Black-chinned Sparrow",
1315
+ "Vesper Sparrow",
1316
+ "Lark Sparrow",
1317
+ "Five-striped Sparrow",
1318
+ "Black-throated Sparrow",
1319
+ "Sagebrush Sparrow",
1320
+ "Bell's Sparrow",
1321
+ "Lark Bunting",
1322
+ "Savannah Sparrow",
1323
+ "Grasshopper Sparrow",
1324
+ "Baird's Sparrow",
1325
+ "Henslow's Sparrow",
1326
+ "Le Conte's Sparrow",
1327
+ "Nelson's Sparrow",
1328
+ "Saltmarsh Sparrow",
1329
+ "Seaside Sparrow",
1330
+ "Fox Sparrow",
1331
+ "Song Sparrow",
1332
+ "Lincoln's Sparrow",
1333
+ "Swamp Sparrow",
1334
+ "White-throated Sparrow",
1335
+ "Harris's Sparrow",
1336
+ "White-crowned Sparrow",
1337
+ "Golden-crowned Sparrow",
1338
+ "Dark-eyed Junco",
1339
+ "Yellow-eyed Junco",
1340
+ "Pine Bunting",
1341
+ "Yellow-browed Bunting",
1342
+ "Little Bunting",
1343
+ "Rustic Bunting",
1344
+ "Yellow-throated Bunting",
1345
+ "Yellow-breasted Bunting",
1346
+ "Gray Bunting",
1347
+ "Pallas's Bunting",
1348
+ "Reed Bunting"
1349
+ ]
1350
+ },
1351
+ {
1352
+ "family": "Cardinals, Piranga Tanagers and Allies",
1353
+ "members": [
1354
+ "Hepatic Tanager",
1355
+ "Summer Tanager",
1356
+ "Scarlet Tanager",
1357
+ "Western Tanager",
1358
+ "Flame-colored Tanager",
1359
+ "Crimson-collared Grosbeak",
1360
+ "Northern Cardinal",
1361
+ "Pyrrhuloxia",
1362
+ "Yellow Grosbeak",
1363
+ "Rose-breasted Grosbeak",
1364
+ "Black-headed Grosbeak",
1365
+ "Blue Bunting",
1366
+ "Blue Grosbeak",
1367
+ "Lazuli Bunting",
1368
+ "Indigo Bunting",
1369
+ "Varied Bunting",
1370
+ "Painted Bunting",
1371
+ "Dickcissel"
1372
+ ]
1373
+ },
1374
+ {
1375
+ "family": "Blackbirds",
1376
+ "members": [
1377
+ "Bobolink",
1378
+ "Red-winged Blackbird",
1379
+ "Tricolored Blackbird",
1380
+ "Tawny-shouldered Blackbird",
1381
+ "Eastern Meadowlark",
1382
+ "Western Meadowlark",
1383
+ "Yellow-headed Blackbird",
1384
+ "Rusty Blackbird",
1385
+ "Brewer's Blackbird",
1386
+ "Common Grackle",
1387
+ "Boat-tailed Grackle",
1388
+ "Great-tailed Grackle",
1389
+ "Shiny Cowbird",
1390
+ "Bronzed Cowbird",
1391
+ "Brown-headed Cowbird",
1392
+ "Black-vented Oriole",
1393
+ "Orchard Oriole",
1394
+ "Hooded Oriole",
1395
+ "Streak-backed Oriole",
1396
+ "Bullock's Oriole",
1397
+ "Spot-breasted Oriole",
1398
+ "Altamira Oriole",
1399
+ "Audubon's Oriole",
1400
+ "Baltimore Oriole",
1401
+ "Scott's Oriole"
1402
+ ]
1403
+ },
1404
+ {
1405
+ "family": "Fringilline and Cardueline Finches and Allies",
1406
+ "members": [
1407
+ "Common Chaffinch",
1408
+ "Brambling",
1409
+ "Asian Rosy-Finch",
1410
+ "Gray-crowned Rosy-Finch",
1411
+ "Black Rosy-Finch",
1412
+ "Brown-capped Rosy-Finch",
1413
+ "Pine Grosbeak",
1414
+ "Eurasian Bullfinch",
1415
+ "Common Rosefinch",
1416
+ "Pallas's Rosefinch",
1417
+ "House Finch",
1418
+ "Purple Finch",
1419
+ "Cassin's Finch",
1420
+ "Red Crossbill",
1421
+ "White-winged Crossbill",
1422
+ "Common Redpoll",
1423
+ "Hoary Redpoll",
1424
+ "Eurasian Siskin",
1425
+ "Pine Siskin",
1426
+ "Lesser Goldfinch",
1427
+ "Lawrence's Goldfinch",
1428
+ "American Goldfinch",
1429
+ "Oriental Greenfinch",
1430
+ "Evening Grosbeak",
1431
+ "Hawfinch"
1432
+ ]
1433
+ },
1434
+ {
1435
+ "family": "Old World Sparrows",
1436
+ "members": [
1437
+ "House Sparrow",
1438
+ "Eurasian Tree Sparrow"
1439
+ ]
1440
+ },
1441
+ {
1442
+ "family": "Waxbills",
1443
+ "members": [
1444
+ "Scaly-breasted Munia"
1445
+ ]
1446
+ }
1447
+ ]
1448
+ }