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,506 @@
1
+ {
2
+ "description": "The 2014 Fortune 500 list",
3
+ "companies":
4
+ [
5
+ "Wal-Mart Stores",
6
+ "Exxon Mobil",
7
+ "Chevron",
8
+ "Berkshire Hathaway",
9
+ "Apple",
10
+ "Phillips 66",
11
+ "General Motors",
12
+ "Ford Motor",
13
+ "General Electric",
14
+ "Valero Energy",
15
+ "AT&T",
16
+ "CVS Caremark",
17
+ "Fannie Mae",
18
+ "UnitedHealth Group",
19
+ "McKesson",
20
+ "Verizon Communications",
21
+ "Hewlett-Packard",
22
+ "J.P. Morgan Chase & Co.",
23
+ "Costco Wholesale",
24
+ "Express Scripts Holding",
25
+ "Bank of America",
26
+ "Cardinal Health",
27
+ "International Business Machines",
28
+ "Kroger",
29
+ "Marathon Petroleum",
30
+ "Citigroup",
31
+ "Archer Daniels Midland",
32
+ "AmerisourceBergen",
33
+ "Wells Fargo",
34
+ "Boeing",
35
+ "Procter & Gamble",
36
+ "Freddie Mac",
37
+ "Home Depot",
38
+ "Microsoft",
39
+ "Amazon.com",
40
+ "Target",
41
+ "Walgreen Co.",
42
+ "WellPoint",
43
+ "Johnson & Johnson",
44
+ "American International Group",
45
+ "State Farm Insurance Cos.",
46
+ "MetLife",
47
+ "PepsiCo",
48
+ "Comcast",
49
+ "United Technologies",
50
+ "Google",
51
+ "ConocoPhillips",
52
+ "Dow Chemical",
53
+ "Caterpillar",
54
+ "United Parcel Service",
55
+ "Pfizer",
56
+ "Lowe’s Companies",
57
+ "Intel Corporation",
58
+ "Energy Transfer Equity, L.P.",
59
+ "Cisco Systems, Inc.",
60
+ "Enterprise Products Partners L.P.",
61
+ "Aetna Inc.",
62
+ "The Coca-Cola Company",
63
+ "Lockheed Martin Corporation",
64
+ "Best Buy Co., Inc.",
65
+ "The Walt Disney Company",
66
+ "CHS Inc.",
67
+ "Sysco Corporation",
68
+ "FedEx Corporation",
69
+ "Merck & Co., Inc.",
70
+ "INTL FCStone Inc.",
71
+ "Safeway Inc.",
72
+ "Johnson Controls, Inc.",
73
+ "Ingram Micro Inc.",
74
+ "Plains GP Holdings, L.P.",
75
+ "World Fuel Services Corporation",
76
+ "Prudential Financial, Inc.",
77
+ "Humana Inc.",
78
+ "The Goldman Sachs Group, Inc.",
79
+ "Tesoro Corporation",
80
+ "Liberty Mutual Holding Company Inc.",
81
+ "Honeywell International Inc.",
82
+ "United Continental Holdings, Inc.",
83
+ "HCA Holdings, Inc.",
84
+ "Deere & Company",
85
+ "Delta Air Lines, Inc.",
86
+ "Oracle Corporation",
87
+ "Morgan Stanley",
88
+ "Hess Corporation",
89
+ "Twenty-First Century Fox, Inc.",
90
+ "E.I. du Pont de Nemours and Company",
91
+ "Sears Holdings Corporation",
92
+ "New York Life Insurance Company",
93
+ "Mondelez International, Inc.",
94
+ "American Express Company",
95
+ "Nationwide Mutual Insurance Co.",
96
+ "The Allstate Corporation",
97
+ "Tyson Foods, Inc.",
98
+ "Supervalu Inc.",
99
+ "TIAA-CREF",
100
+ "Massachusetts Mutual Life Insurance Company",
101
+ "CIGNA Corporation",
102
+ "DIRECTV",
103
+ "General Dynamics Corporation",
104
+ "Philip Morris International Inc.",
105
+ "3M Company",
106
+ "Time Warner Inc.",
107
+ "Halliburton Company",
108
+ "Publix Super Markets, Inc.",
109
+ "International Paper Company",
110
+ "McDonald’s Corporation",
111
+ "Macy’s, Inc.",
112
+ "The TJX Companies, Inc.",
113
+ "Fluor Corporation",
114
+ "Northwestern Mutual Life Insurance Company,Inc.",
115
+ "Tech Data Corporation",
116
+ "American Airlines Group Inc.",
117
+ "The Hartford Financial Services Group, Inc.",
118
+ "The Travelers Companies, Inc.",
119
+ "Nike, Inc.",
120
+ "Occidental Petroleum Corporation",
121
+ "Avnet, Inc.",
122
+ "Rite Aid Corporation",
123
+ "Exelon Corporation",
124
+ "Qualcomm Incorporated",
125
+ "Emerson Electric Co.",
126
+ "Northrop Grumman Corporation",
127
+ "Duke Energy Corporation",
128
+ "Capital One Financial Corporation",
129
+ "Aflac Incorporated",
130
+ "Raytheon Company",
131
+ "Staples, Inc.",
132
+ "EMC Corporation",
133
+ "Eli Lilly and Company",
134
+ "Alcoa Inc.",
135
+ "National Oilwell Varco, Inc.",
136
+ "Baker Hughes Incorporated",
137
+ "US Foods, Inc.",
138
+ "Time Warner Cable Inc.",
139
+ "Union Pacific Corporation",
140
+ "Abbott Laboratories",
141
+ "Xerox Corporation",
142
+ "Arrow Electronics, Inc",
143
+ "Kimberly-Clark Corporation",
144
+ "U.S. Bancorp",
145
+ "United Services Automobile Association",
146
+ "Freeport-McMoRan Copper & Gold Inc.",
147
+ "Icahn Enterprises L.P.",
148
+ "ManpowerGroup Inc.",
149
+ "HollyFrontier Corporation",
150
+ "Global Partners LP",
151
+ "The Goodyear Tire & Rubber Company",
152
+ "PBF Energy Inc.",
153
+ "Danaher Corporation",
154
+ "Nucor Corporation",
155
+ "Kohl’s Corporation",
156
+ "AbbVie Inc.",
157
+ "Whirlpool Corporation",
158
+ "Amgen Inc.",
159
+ "Jabil Circuit, Inc.",
160
+ "Kraft Foods Group, Inc.",
161
+ "The Progressive Corporation",
162
+ "CenturyLink, Inc.",
163
+ "General Mills, Inc.",
164
+ "Southwest Airlines Co.",
165
+ "Altria Group, Inc.",
166
+ "AutoNation, Inc.",
167
+ "Chesapeake Energy Corporation",
168
+ "Dollar General Corporation",
169
+ "TRW Automotive Holdings Corp.",
170
+ "United States Steel Corporation",
171
+ "Colgate-Palmolive Company",
172
+ "Cummins Inc.",
173
+ "PACCAR Inc",
174
+ "The Southern Company",
175
+ "Illinois Tool Works Inc.",
176
+ "The PNC Financial Services Group, Inc.",
177
+ "Medtronic, Inc.",
178
+ "The AES Corporation",
179
+ "Murphy USA Inc.",
180
+ "Bristol-Myers Squibb Company",
181
+ "Lear Corporation",
182
+ "The Gap, Inc.",
183
+ "Apache Corporation",
184
+ "eBay Inc.",
185
+ "The Bank of New York Mellon Corporation",
186
+ "CBS Corporation",
187
+ "PG&E Corporation",
188
+ "ConAgra Foods, Inc.",
189
+ "Computer Sciences Corporation",
190
+ "American Electric Power Company, Inc.",
191
+ "Western Digital Corporation",
192
+ "Marathon Oil Corporation",
193
+ "Baxter International Inc.",
194
+ "PPG Industries, Inc.",
195
+ "NextEra Energy, Inc.",
196
+ "Community Health Systems, Inc.",
197
+ "Loews Corporation",
198
+ "Penske Automotive Group, Inc.",
199
+ "FirstEnergy Corp.",
200
+ "Starbucks Corporation",
201
+ "Monsanto Company",
202
+ "Kellogg Company",
203
+ "Land O’Lakes, Inc.",
204
+ "ONEOK, Inc.",
205
+ "Omnicom Group Inc.",
206
+ "Anadarko Petroleum Corporation",
207
+ "EOG Resources, Inc.",
208
+ "DISH Network Corporation",
209
+ "Genuine Parts Company",
210
+ "Kinder Morgan, Inc.",
211
+ "Waste Management, Inc.",
212
+ "The Chubb Corporation",
213
+ "Aramark Holdings Corporation",
214
+ "Viacom Inc.",
215
+ "Las Vegas Sands Corp.",
216
+ "Dominion Resources, Inc.",
217
+ "Ecolab Inc.",
218
+ "Smithfield Foods, Inc.",
219
+ "Thermo Fisher Scientific Inc.",
220
+ "Yum! Brands, Inc.",
221
+ "Parker-Hannifin Corporation",
222
+ "Whole Foods Market, Inc.",
223
+ "Marriott International, Inc.",
224
+ "C. H. Robinson Worldwide, Inc.",
225
+ "L-3 Communications Holdings, Inc.",
226
+ "Edison International",
227
+ "Toys “R” Us, Inc.",
228
+ "Nordstrom, Inc.",
229
+ "Consolidated Edison, Inc.",
230
+ "Marsh & McLennan Companies, Inc.",
231
+ "Texas Instruments Incorporated",
232
+ "Textron Inc.",
233
+ "Tenet Healthcare Corporation",
234
+ "DaVita HealthCare Partners Inc.",
235
+ "CSX Corporation",
236
+ "Lincoln National Corporation",
237
+ "Praxair, Inc.",
238
+ "PPL Corporation",
239
+ "J.C. Penney Company, Inc.",
240
+ "Peter Kiewit Sons’, Inc.",
241
+ "Jacobs Engineering Group Inc.",
242
+ "Visa Inc.",
243
+ "H.J. Heinz Company",
244
+ "CarMax, Inc.",
245
+ "V.F. Corporation",
246
+ "Entergy Corporation",
247
+ "Automatic Data Processing, Inc.",
248
+ "NRG Energy, Inc.",
249
+ "Guardian Life Ins. Co. of America",
250
+ "Liberty Interactive Corporation",
251
+ "Norfolk Southern Corporation",
252
+ "Office Depot, Inc.",
253
+ "Ameriprise Financial, Inc.",
254
+ "Gilead Sciences, Inc.",
255
+ "Centene Corporation",
256
+ "Leucadia National Corporation",
257
+ "Huntsman Corporation",
258
+ "Health Net, Inc.",
259
+ "Stanley Black & Decker, Inc.",
260
+ "URS Corporation",
261
+ "Xcel Energy Inc.",
262
+ "Bed Bath & Beyond Inc.",
263
+ "Navistar International Corporation",
264
+ "Synnex Corporation",
265
+ "First Data Corporation",
266
+ "AGCO Corporation",
267
+ "L Brands, Inc.",
268
+ "Hertz Global Holdings, Inc.",
269
+ "CDW Corporation",
270
+ "CST Brands, Inc.",
271
+ "Sempra Energy",
272
+ "R.R. Donnelley & Sons Company",
273
+ "BB&T Corporation",
274
+ "Devon Energy Corporation",
275
+ "Family Dollar Stores, Inc.",
276
+ "Unum Group",
277
+ "Ally Financial Inc.",
278
+ "Reinsurance Group of America, Incorporated",
279
+ "State Street Corporation",
280
+ "Air Products & Chemicals, Inc.",
281
+ "Ross Stores, Inc.",
282
+ "The Sherwin-Williams Company",
283
+ "The Estée Lauder Companies Inc.",
284
+ "BlackRock, Inc.",
285
+ "Western Refining, Inc.",
286
+ "Avon Products, Inc.",
287
+ "The Mosaic Company",
288
+ "Public Service Enterprise Group Incorporated",
289
+ "Dean Foods Company",
290
+ "Cameron International Corporation",
291
+ "MGM Resorts International",
292
+ "KKR & Co. L.P.",
293
+ "Hilton Worldwide Holdings Inc.",
294
+ "DTE Energy Company",
295
+ "Genworth Financial, Inc.",
296
+ "Henry Schein, Inc.",
297
+ "Rock-Tenn Company",
298
+ "WellCare Health Plans, Inc.",
299
+ "W.W. Grainger, Inc.",
300
+ "Discover Financial Services",
301
+ "Eastman Chemical Company",
302
+ "Principal Financial Group, Inc.",
303
+ "Reliance Steel & Aluminum Co.",
304
+ "AutoZone, Inc.",
305
+ "Dover Corporation",
306
+ "Micron Technology, Inc.",
307
+ "Owens & Minor, Inc.",
308
+ "Assurant, Inc.",
309
+ "GameStop Corp.",
310
+ "Stryker Corporation",
311
+ "Group 1 Automotive, Inc.",
312
+ "Cognizant Technology Solutions Corporation",
313
+ "Sonic Automotive, Inc.",
314
+ "Autoliv, Inc.",
315
+ "Hormel Foods Corporation",
316
+ "Motorola Solutions, Inc.",
317
+ "Crown Holdings, Inc.",
318
+ "SunTrust Banks, Inc.",
319
+ "Campbell Soup Company",
320
+ "Fidelity National Financial, Inc.",
321
+ "HD Supply Holdings, Inc.",
322
+ "Caesars Entertainment Corporation",
323
+ "Darden Restaurants, Inc.",
324
+ "Weyerhaeuser Company",
325
+ "Ball Corporation",
326
+ "Precision Castparts Corp.",
327
+ "Masco Corporation",
328
+ "Universal Health Services, Inc.",
329
+ "Republic Services, Inc.",
330
+ "MasterCard Incorporated",
331
+ "Newmont Mining Corporation",
332
+ "Broadcom Corporation",
333
+ "Reynolds American Inc.",
334
+ "PVH Corp.",
335
+ "Charter Communications, Inc.",
336
+ "AECOM Technology Corporation",
337
+ "CenterPoint Energy, Inc.",
338
+ "Pacific Life",
339
+ "Thrivent Financial for Lutherans",
340
+ "Becton, Dickinson and Company",
341
+ "Franklin Resources, Inc.",
342
+ "Tenneco Inc.",
343
+ "TravelCenters of America LLC",
344
+ "Avis Budget Group, Inc.",
345
+ "Facebook, Inc.",
346
+ "Dollar Tree, Inc.",
347
+ "Corning Incorporated",
348
+ "Ashland Inc.",
349
+ "Sealed Air Corporation",
350
+ "Core-Mark Holding Company, Inc.",
351
+ "Oshkosh Corporation",
352
+ "Coca-Cola Enterprises, Inc.",
353
+ "WESCO International, Inc.",
354
+ "Applied Materials, Inc.",
355
+ "Visteon Corporation",
356
+ "BorgWarner Inc.",
357
+ "Spectrum Group International, Inc.",
358
+ "Oaktree Capital Group, LLC",
359
+ "Steel Dynamics, Inc.",
360
+ "Jarden Corporation",
361
+ "Mohawk Industries, Inc.",
362
+ "Terex Corporation",
363
+ "Northeast Utilities",
364
+ "KBR, Inc.",
365
+ "Fifth Third Bancorp",
366
+ "UGI Corporation",
367
+ "CBRE Group, Inc.",
368
+ "Quest Diagnostics Incorporated",
369
+ "Peabody Energy Corporation",
370
+ "The Hershey Company",
371
+ "Boston Scientific Corporation",
372
+ "FMC Technologies, Inc.",
373
+ "The Interpublic Group of Companies, Inc.",
374
+ "Commercial Metals Company",
375
+ "The Pantry, Inc.",
376
+ "Owens-Illinois, Inc.",
377
+ "American Family Ins. Group",
378
+ "Ralph Lauren Corporation",
379
+ "Biogen Idec Inc.",
380
+ "PetSmart, Inc.",
381
+ "Mylan Inc.",
382
+ "Symantec Corporation",
383
+ "Ameren Corporation",
384
+ "The Williams Companies, Inc.",
385
+ "Barnes & Noble, Inc.",
386
+ "Huntington Ingalls Industries, Inc.",
387
+ "The Priceline Group Inc.",
388
+ "Agilent Technologies, Inc.",
389
+ "Dana Holding Corporation",
390
+ "Dillard’s, Inc.",
391
+ "Seaboard Corporation",
392
+ "Vanguard Health Systems, Inc.",
393
+ "Casey’s General Stores, Inc.",
394
+ "O’Reilly Automotive, Inc.",
395
+ "The Blackstone Group L.P.",
396
+ "Mutual of Omaha Insurance Company",
397
+ "Molina Healthcare, Inc.",
398
+ "CMS Energy Corporation",
399
+ "Targa Resources Corp.",
400
+ "Quanta Services, Inc.",
401
+ "Cablevision Systems Corporation",
402
+ "Avery Dennison Corporation",
403
+ "Celanese Corporation",
404
+ "Foot Locker, Inc.",
405
+ "Celgene Corporation",
406
+ "Advance Auto Parts, Inc.",
407
+ "Mattel, Inc.",
408
+ "Live Nation Entertainment, Inc.",
409
+ "General Cable Corporation",
410
+ "Ryder System, Inc.",
411
+ "EMCOR Group, Inc.",
412
+ "Allergan, Inc.",
413
+ "W.R. Berkley Corporation",
414
+ "Rockwell Automation, Inc.",
415
+ "NetApp, Inc.",
416
+ "Ingredion Incorporated",
417
+ "Level 3 Communications, Inc.",
418
+ "Calpine Corporation",
419
+ "Omnicare, Inc.",
420
+ "Erie Insurance Group",
421
+ "SLM Corporation",
422
+ "D.R. Horton, Inc.",
423
+ "CC Media Holdings, Inc.",
424
+ "Anixter International Inc.",
425
+ "Dick’s Sporting Goods, Inc.",
426
+ "SanDisk Corporation",
427
+ "NCR Corporation",
428
+ "Starwood Hotels & Resorts Worldwide, Inc.",
429
+ "Expeditors International of Washington, Inc.",
430
+ "Fidelity National Information Services, Inc.",
431
+ "United Natural Foods, Inc.",
432
+ "Auto-Owners Insurance Group",
433
+ "Windstream Holdings, Inc.",
434
+ "Dr Pepper Snapple Group, Inc.",
435
+ "Lennar Corporation",
436
+ "Sanmina",
437
+ "Harley-Davidson, Inc.",
438
+ "CONSOL Energy Inc.",
439
+ "The J.M. Smucker Company",
440
+ "Newell Rubbermaid Inc.",
441
+ "CH2M HILL Companies, Ltd.",
442
+ "Energy Future Holdings Corp.",
443
+ "Susser Holdings Corporation",
444
+ "Laboratory Corporation of America Holdings",
445
+ "Kindred Healthcare, Inc.",
446
+ "Leidos Holdings Inc.",
447
+ "Booz Allen Hamilton Holding Corp.",
448
+ "The Jones Financial Companies,L.L.L.P.",
449
+ "Cliffs Natural Resources Inc.",
450
+ "PulteGroup, Inc.",
451
+ "Regions Financial Corporation",
452
+ "NiSource Inc.",
453
+ "Graybar Electric Company, Inc.",
454
+ "Integrys Energy Group, Inc.",
455
+ "The Clorox Company",
456
+ "Wynn Resorts, Limited",
457
+ "The Andersons, Inc.",
458
+ "J.B. Hunt Transport Services, Inc.",
459
+ "AK Steel Holding Corporation",
460
+ "Harbinger Group Inc.",
461
+ "MeadWestvaco Corporation",
462
+ "The Western Union Company",
463
+ "The Charles Schwab Corporation",
464
+ "Discovery Communications, Inc.",
465
+ "Spectra Energy Corp",
466
+ "St. Jude Medical, Inc.",
467
+ "CF Industries Holdings, Inc.",
468
+ "Con-way Inc.",
469
+ "Old Republic International Corporation",
470
+ "JetBlue Airways Corporation",
471
+ "Calumet Specialty Products Partners, L.P.",
472
+ "Kelly Services, Inc.",
473
+ "Domtar Corporation",
474
+ "Murphy Oil Corporation",
475
+ "Harris Corporation",
476
+ "Asbury Automotive Group, Inc.",
477
+ "Big Lots, Inc.",
478
+ "Advanced Micro Devices, Inc.",
479
+ "Owens Corning",
480
+ "Realogy Holdings Corp.",
481
+ "Host Hotels & Resorts, Inc.",
482
+ "MRC Global Inc.",
483
+ "Simon Property Group, Inc.",
484
+ "Tractor Supply Company",
485
+ "Gannett Co., Inc.",
486
+ "Alaska Air Group, Inc.",
487
+ "Insight Enterprises, Inc.",
488
+ "McGraw Hill Financial, Inc.",
489
+ "Buckeye Partners, L.P.",
490
+ "Quintiles Transnational Holdings Inc.",
491
+ "American Financial Group, Inc.",
492
+ "United Stationers Inc.",
493
+ "Coach, Inc.",
494
+ "LKQ Corporation",
495
+ "Noble Energy, Inc.",
496
+ "Bemis Company, Inc.",
497
+ "Joy Global Inc.",
498
+ "Wyndham Worldwide Corporation",
499
+ "NII Holdings, Inc.",
500
+ "Lorillard, Inc.",
501
+ "Alleghany Corporation",
502
+ "Airgas, Inc.",
503
+ "First American Financial Corporation",
504
+ "United Rentals, Inc."
505
+ ]
506
+ }
@@ -0,0 +1,155 @@
1
+ {
2
+ "description": "A list of all industries on LinkedIn, as of May 21, 2013",
3
+ "source": "http://robertwdempsey.com/liindustries",
4
+ "industries":
5
+ [
6
+ "Accounting",
7
+ "Airlines/Aviation",
8
+ "Alternative Dispute Resolution",
9
+ "Alternative Medicine",
10
+ "Animation",
11
+ "Apparel & Fashion",
12
+ "Architecture & Planning",
13
+ "Arts & Crafts",
14
+ "Automotive",
15
+ "Aviation & Aerospace",
16
+ "Banking",
17
+ "Biotechnology",
18
+ "Broadcast Media",
19
+ "Building Materials",
20
+ "Business Supplies & Equipment",
21
+ "Capital Markets",
22
+ "Chemicals",
23
+ "Civic & Social Organization",
24
+ "Civil Engineering",
25
+ "Commercial Real Estate",
26
+ "Computer & Network Security",
27
+ "Computer Games",
28
+ "Computer Hardware",
29
+ "Computer Networking",
30
+ "Computer Software",
31
+ "Construction",
32
+ "Consumer Electronics",
33
+ "Consumer Goods",
34
+ "Consumer Services",
35
+ "Cosmetics",
36
+ "Dairy",
37
+ "Defense & Space",
38
+ "Design",
39
+ "Education Management",
40
+ "E-learning",
41
+ "Electrical & Electronic Manufacturing",
42
+ "Entertainment",
43
+ "Environmental Services",
44
+ "Events Services",
45
+ "Executive Office",
46
+ "Facilities Services",
47
+ "Farming",
48
+ "Financial Services",
49
+ "Fine Art",
50
+ "Fishery",
51
+ "Food & Beverages",
52
+ "Food Production",
53
+ "Fundraising",
54
+ "Furniture",
55
+ "Gambling & Casinos",
56
+ "Glass, Ceramics & Concrete",
57
+ "Government Administration",
58
+ "Government Relations",
59
+ "Graphic Design",
60
+ "Health, Wellness & Fitness",
61
+ "Higher Education",
62
+ "Hospital & Health Care",
63
+ "Hospitality",
64
+ "Human Resources",
65
+ "Import & Export",
66
+ "Individual & Family Services",
67
+ "Industrial Automation",
68
+ "Information Services",
69
+ "Information Technology & Services",
70
+ "Insurance",
71
+ "International Affairs",
72
+ "International Trade & Development",
73
+ "Internet",
74
+ "Investment Banking/Venture",
75
+ "Investment Management",
76
+ "Judiciary",
77
+ "Law Enforcement",
78
+ "Law Practice",
79
+ "Legal Services",
80
+ "Legislative Office",
81
+ "Leisure & Travel",
82
+ "Libraries",
83
+ "Logistics & Supply Chain",
84
+ "Luxury Goods & Jewelry",
85
+ "Machinery",
86
+ "Management Consulting",
87
+ "Maritime",
88
+ "Marketing & Advertising",
89
+ "Market Research",
90
+ "Mechanical or Industrial Engineering",
91
+ "Media Production",
92
+ "Medical Device",
93
+ "Medical Practice",
94
+ "Mental Health Care",
95
+ "Military",
96
+ "Mining & Metals",
97
+ "Motion Pictures & Film",
98
+ "Museums & Institutions",
99
+ "Music",
100
+ "Nanotechnology",
101
+ "Newspapers",
102
+ "Nonprofit Organization Management",
103
+ "Oil & Energy",
104
+ "Online Publishing",
105
+ "Outsourcing/Offshoring",
106
+ "Package/Freight Delivery",
107
+ "Packaging & Containers",
108
+ "Paper & Forest Products",
109
+ "Performing Arts",
110
+ "Pharmaceuticals",
111
+ "Philanthropy",
112
+ "Photography",
113
+ "Plastics",
114
+ "Political Organization",
115
+ "Primary/Secondary",
116
+ "Printing",
117
+ "Professional Training",
118
+ "Program Development",
119
+ "Public Policy",
120
+ "Public Relations",
121
+ "Public Safety",
122
+ "Publishing",
123
+ "Railroad Manufacture",
124
+ "Ranching",
125
+ "Real Estate",
126
+ "Recreational",
127
+ "Facilities & Services",
128
+ "Religious Institutions",
129
+ "Renewables & Environment",
130
+ "Research",
131
+ "Restaurants",
132
+ "Retail",
133
+ "Security & Investigations",
134
+ "Semiconductors",
135
+ "Shipbuilding",
136
+ "Sporting Goods",
137
+ "Sports",
138
+ "Staffing & Recruiting",
139
+ "Supermarkets",
140
+ "Telecommunications",
141
+ "Textiles",
142
+ "Think Tanks",
143
+ "Tobacco",
144
+ "Translation & Localization",
145
+ "Transportation/Trucking/Railroad",
146
+ "Utilities",
147
+ "Venture Capital",
148
+ "Veterinary",
149
+ "Warehousing",
150
+ "Wholesale",
151
+ "Wine & Spirits",
152
+ "Wireless",
153
+ "Writing & Editing"
154
+ ]
155
+ }