mnemorandom 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,223 @@
1
+ {
2
+ "description": "a list of exclamatory words and expressions from http://www.enchantedlearning.com/wordlist/interjections.shtml",
3
+ "interjections": [
4
+ "aah",
5
+ "ack",
6
+ "agreed",
7
+ "ah",
8
+ "aha",
9
+ "ahem",
10
+ "alas",
11
+ "all right",
12
+ "amen",
13
+ "argh",
14
+ "as if",
15
+ "aw",
16
+ "ay",
17
+ "aye",
18
+ "bah",
19
+ "blast",
20
+ "boo hoo",
21
+ "bother",
22
+ "boy",
23
+ "brr",
24
+ "by golly",
25
+ "bye",
26
+ "cheerio",
27
+ "cheers",
28
+ "chin up",
29
+ "come on",
30
+ "crikey",
31
+ "curses",
32
+ "dear me",
33
+ "doggone",
34
+ "drat",
35
+ "duh",
36
+ "easy does it",
37
+ "eek",
38
+ "egads",
39
+ "er",
40
+ "exactly",
41
+ "fair enough",
42
+ "fiddle-dee-dee",
43
+ "fiddlesticks",
44
+ "fie",
45
+ "foo",
46
+ "fooey",
47
+ "gadzooks",
48
+ "gah",
49
+ "gangway",
50
+ "g'day",
51
+ "gee",
52
+ "gee whiz",
53
+ "geez",
54
+ "gesundheit",
55
+ "get lost",
56
+ "get outta here",
57
+ "go on",
58
+ "good",
59
+ "good golly",
60
+ "good job",
61
+ "gosh",
62
+ "gracious",
63
+ "great",
64
+ "grr",
65
+ "gulp",
66
+ "ha",
67
+ "ha-ha",
68
+ "hah",
69
+ "hallelujah",
70
+ "harrumph",
71
+ "haw",
72
+ "hee",
73
+ "here",
74
+ "hey",
75
+ "hmm",
76
+ "ho hum",
77
+ "hoo",
78
+ "hooray",
79
+ "hot dog",
80
+ "how",
81
+ "huh",
82
+ "hum",
83
+ "humbug",
84
+ "hurray",
85
+ "huzza",
86
+ "I say",
87
+ "ick",
88
+ "is it",
89
+ "ixnay",
90
+ "jeez",
91
+ "just kidding",
92
+ "just a sec",
93
+ "just wondering",
94
+ "kapish",
95
+ "la",
96
+ "la-di-dah",
97
+ "lo",
98
+ "look",
99
+ "look here",
100
+ "long time",
101
+ "lordy",
102
+ "man",
103
+ "meh",
104
+ "mmm",
105
+ "most certainly",
106
+ "my",
107
+ "my my",
108
+ "my word",
109
+ "nah",
110
+ "naw",
111
+ "never",
112
+ "no",
113
+ "no can do",
114
+ "nooo",
115
+ "not",
116
+ "no thanks",
117
+ "no way",
118
+ "nuts",
119
+ "oh",
120
+ "oho",
121
+ "oh-oh",
122
+ "oh no",
123
+ "okay",
124
+ "okey-dokey",
125
+ "om",
126
+ "oof",
127
+ "ooh",
128
+ "oopsey",
129
+ "over",
130
+ "oy",
131
+ "oyez",
132
+ "peace",
133
+ "pff",
134
+ "pew",
135
+ "phew",
136
+ "pish posh",
137
+ "psst",
138
+ "ptui",
139
+ "quite",
140
+ "rah",
141
+ "rats",
142
+ "ready",
143
+ "right",
144
+ "right on",
145
+ "roger",
146
+ "roger that",
147
+ "rumble",
148
+ "say",
149
+ "see ya",
150
+ "shame",
151
+ "shh",
152
+ "shoo",
153
+ "shucks",
154
+ "sigh",
155
+ "sleep tight",
156
+ "snap",
157
+ "sorry",
158
+ "sssh",
159
+ "sup",
160
+ "ta",
161
+ "ta-da",
162
+ "ta ta",
163
+ "take that",
164
+ "tally ho",
165
+ "tch",
166
+ "thanks",
167
+ "there",
168
+ "there there",
169
+ "time out",
170
+ "toodles",
171
+ "touche",
172
+ "tsk",
173
+ "tsk-tsk",
174
+ "tut",
175
+ "tut-tut",
176
+ "ugh",
177
+ "uh",
178
+ "uh-oh",
179
+ "um",
180
+ "ur",
181
+ "urgh",
182
+ "very nice",
183
+ "very well",
184
+ "voila",
185
+ "vroom",
186
+ "wah",
187
+ "well",
188
+ "well done",
189
+ "well, well",
190
+ "what",
191
+ "whatever",
192
+ "whee",
193
+ "when",
194
+ "whoa",
195
+ "whoo",
196
+ "whoopee",
197
+ "whoops",
198
+ "whoopsey",
199
+ "whew",
200
+ "why",
201
+ "word",
202
+ "wow",
203
+ "wuzzup",
204
+ "ya",
205
+ "yea",
206
+ "yeah",
207
+ "yech",
208
+ "yikes",
209
+ "yippee",
210
+ "yo",
211
+ "yoo-hoo",
212
+ "you bet",
213
+ "you don't say",
214
+ "you know",
215
+ "yow",
216
+ "yum",
217
+ "yummy",
218
+ "zap",
219
+ "zounds",
220
+ "zowie",
221
+ "zzz"
222
+ ]
223
+ }
@@ -0,0 +1,155 @@
1
+ {
2
+ "description" : "List of names from the novel Infinite Jest by David Foster Wallace",
3
+ "infinitejest": [
4
+ "Joelle Van Dyne",
5
+ "Michael Pemulis",
6
+ "Mario Incandenza",
7
+ "Orin Incandenza",
8
+ "Avril Incandenza",
9
+ "Ken Erdedy",
10
+ "Poor Tony Krause",
11
+ "Ortho Stice",
12
+ "Randy Lenz",
13
+ "U.S.S. Millicent Kent",
14
+ "Medical attaché",
15
+ "Hugh Steeply",
16
+ "Tiny Ewell",
17
+ "Clenette Henderson",
18
+ "LaMont Chu",
19
+ "Remy Marathe",
20
+ "Gerhardt Schtitt",
21
+ "Ann Kittenplan",
22
+ "Ted Schacht",
23
+ "Dr. James Orin Incandenza",
24
+ "Katherine Ann Gompert",
25
+ "Jim Troelsch",
26
+ "Trevor Axford",
27
+ "Donald W. Gately",
28
+ "Geoffrey Day",
29
+ "Bruce Green",
30
+ "John Wayne",
31
+ "Emil Minty",
32
+ "Pat Montesian",
33
+ "Lyle",
34
+ "Tina Echt",
35
+ "Gene Fackelmann",
36
+ "Mr. and Mrs. Ernest Feaster",
37
+ "Johnette Foltz",
38
+ "Fortier",
39
+ "Chandler Foss",
40
+ "Keith Freer",
41
+ "Judith Fukuoka-Hearn",
42
+ "Amy Johnson",
43
+ "Ken N. Johnson",
44
+ "S. Johnson",
45
+ "Glenn K",
46
+ "Petropolis Kahn",
47
+ "E. J. Kenkle",
48
+ "Trent Kite",
49
+ "Eliot Kornspan",
50
+ "David Krane",
51
+ "Noreen Lace-Forché",
52
+ "Disney R. Leith",
53
+ "Barry Loach",
54
+ "Lolasister",
55
+ "Bernadette Longley",
56
+ "Otis P. Lord",
57
+ "Marathe’s father",
58
+ "Gene Martinez",
59
+ "Wade McDade",
60
+ "Kieran McKenn",
61
+ "Stokely McNair",
62
+ "Lateral Alice Moore",
63
+ "Nimitz",
64
+ "Molly Notkin",
65
+ "Tony Nwangi",
66
+ "Urquhart Ogilvie Jr.",
67
+ "Gwendine O’Shay",
68
+ "Annie P.",
69
+ "Luria P---",
70
+ "Alfonso Parias-Carbo",
71
+ "Matty Pemulis",
72
+ "J. J. Penn",
73
+ "Miles H. Penn",
74
+ "Timmy Peterson",
75
+ "Fully Functional Phil",
76
+ "Pointgravè",
77
+ "Todd Possalthwaite",
78
+ "Thierry Poutrincourt",
79
+ "Madame Psychosis",
80
+ "Graham Rader",
81
+ "Ross Reat",
82
+ "Hugh G. Rection",
83
+ "Equus Reese",
84
+ "Lum Riney",
85
+ "Dr. Dolores Rusk",
86
+ "Dianne Saltoone",
87
+ "Sergeant at Arms",
88
+ "Phillip T. Smothergill",
89
+ "Whitey Sorkin",
90
+ "Carol Spodek",
91
+ "Danielle Steenbok",
92
+ "Jim Struck",
93
+ "Audern Tallat-Kelpsa",
94
+ "Mary Esther Thode",
95
+ "Corbett Thorp",
96
+ "Hester Thrale",
97
+ "Dr. E. Zegarelli, D.D.S",
98
+ "Carl E. Yee",
99
+ "WYYY student engineer",
100
+ "The Wraith",
101
+ "Dr. Wo",
102
+ "Yolanda Willis",
103
+ "Carl Whale",
104
+ "Cosgrove Watt",
105
+ "Tex Watson",
106
+ "P. Tom Veals",
107
+ "Caryn and Sharyn Vaught",
108
+ "Ruth van Cleve",
109
+ "Frannie Unwin",
110
+ "Charlotte Treat",
111
+ "Roy Tony",
112
+ "Tingly",
113
+ "Rodney Tine Jr.",
114
+ "Rodney P. Tine",
115
+ "Calvin Thrust",
116
+ "Mildred L. Bonk",
117
+ "Dr. Charles Tavis",
118
+ "Harriet Bonk-Green",
119
+ "Hal Incandenza",
120
+ "The A.D.A.",
121
+ "Bertraund Antitoi",
122
+ "Lucien Antitoi",
123
+ "Idris Arslanian",
124
+ "Kevin Bain",
125
+ "Marlon Bain",
126
+ "Jennie Bash",
127
+ "Peter Beak",
128
+ "Jennifer Belbin",
129
+ "Eighties Bill",
130
+ "Kent Blott",
131
+ "Sixties Bob",
132
+ "Mildred Bonk",
133
+ "Bridget C Boone",
134
+ "Mr. Bouncety-Bounce",
135
+ "Otto Brandt",
136
+ "Broullîme",
137
+ "Bobby C",
138
+ "Ibn-Said Chawaf",
139
+ "Soma Richardson-Levy-O’Byrne-Chawaf",
140
+ "Susan T. Cheese",
141
+ "Marla Dean Chumm",
142
+ "Mrs. Clarke",
143
+ "Eric Clipperton",
144
+ "April Cortelyu",
145
+ "Kyle Dempsey Coyle",
146
+ "Zoltan Csikszentmihalyi",
147
+ "Aubrey deLint",
148
+ "DesMonts",
149
+ "Gavin Diehl",
150
+ "Tommy Doocey",
151
+ "Anton Doucette",
152
+ "Rik Dunkel",
153
+ "Guillaume DuPlessis"
154
+ ]
155
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "description":"H.P Lovecraft favorite words, from http://arkhamarchivist.com/wordcount-lovecraft-favorite-words/",
3
+ "words":[
4
+ "abnormal",
5
+ "accursed",
6
+ "amorphous",
7
+ "antediluvian",
8
+ "antique",
9
+ "antiquarian",
10
+ "blasphemy",
11
+ "blasphemous",
12
+ "cat",
13
+ "charnel",
14
+ "comprehension",
15
+ "cyclopean",
16
+ "dank",
17
+ "decadent",
18
+ "daemoniac",
19
+ "effulgence",
20
+ "eldritch",
21
+ "fainted",
22
+ "fainting",
23
+ "foetid",
24
+ "fungus",
25
+ "fungoid",
26
+ "fungous",
27
+ "furtive",
28
+ "gambrel",
29
+ "gibbous",
30
+ "gibbered",
31
+ "gibbering",
32
+ "hideous",
33
+ "immemorial",
34
+ "indescribable",
35
+ "iridescence",
36
+ "loathing",
37
+ "loathsome",
38
+ "lurk",
39
+ "madness",
40
+ "manuscript",
41
+ "mortal",
42
+ "nameless",
43
+ "noisome",
44
+ "non-euclidean",
45
+ "proportion",
46
+ "disproportionate",
47
+ "shunned",
48
+ "singularly",
49
+ "spectral",
50
+ "squamous",
51
+ "stench",
52
+ "stygian",
53
+ "swarthy",
54
+ "tenebrous",
55
+ "tentacle",
56
+ "ululating",
57
+ "unmentionable",
58
+ "unnamable",
59
+ "unutterable"
60
+ ]
61
+ }
@@ -0,0 +1,94 @@
1
+ {
2
+ "description": "Mr Men and Little Miss characters",
3
+ "source": "http://www.mrmen.com",
4
+ "mr_men": [
5
+ "Birthday",
6
+ "Bounce",
7
+ "Brave",
8
+ "Bump",
9
+ "Busy",
10
+ "Chatterbox",
11
+ "Cheerful",
12
+ "Christmas",
13
+ "Clever",
14
+ "Clumsy",
15
+ "Cool",
16
+ "Daydream",
17
+ "Dizzy",
18
+ "Forgetful",
19
+ "Funny",
20
+ "Fussy",
21
+ "Good",
22
+ "Greedy",
23
+ "Grumble",
24
+ "Grumpy",
25
+ "Happy",
26
+ "Impossible",
27
+ "Jelly",
28
+ "Lazy",
29
+ "Mean",
30
+ "Messy",
31
+ "Mischief",
32
+ "Muddle",
33
+ "Nobody",
34
+ "Noisy",
35
+ "Nonsense",
36
+ "Nosey",
37
+ "Perfect",
38
+ "Quiet",
39
+ "Rude",
40
+ "Rush",
41
+ "Silly",
42
+ "Skinny",
43
+ "Slow",
44
+ "Small",
45
+ "Sneeze",
46
+ "Snow",
47
+ "Strong",
48
+ "Tall",
49
+ "Tickle",
50
+ "Topsy-Turvy",
51
+ "Uppity",
52
+ "Worry",
53
+ "Wrong"
54
+ ],
55
+ "little_miss": [
56
+ "Bad",
57
+ "Birthday",
58
+ "Bossy",
59
+ "Brainy",
60
+ "Busy",
61
+ "Chatterbox",
62
+ "Christmas",
63
+ "Contrary",
64
+ "Curious",
65
+ "Dotty",
66
+ "Fickle",
67
+ "Fun",
68
+ "Giggles",
69
+ "Greedy",
70
+ "Helpful",
71
+ "Hug",
72
+ "Late",
73
+ "Lucky",
74
+ "Magic",
75
+ "Naughty",
76
+ "Neat",
77
+ "Princess",
78
+ "Quick",
79
+ "Scary",
80
+ "Scatterbrain",
81
+ "Shy",
82
+ "Somersault",
83
+ "Splendid",
84
+ "Star",
85
+ "Stubborn",
86
+ "Sunshine",
87
+ "Tidy",
88
+ "Tiny",
89
+ "Trouble",
90
+ "Twins",
91
+ "Whoops",
92
+ "Wise"
93
+ ]
94
+ }
@@ -0,0 +1,161 @@
1
+ {"description": "Phrases coined by Shakespeare, from http://www.pathguy.com/shakeswo.htm",
2
+ "phrases": ["All our yesterdays ",
3
+ "All that glitters is not gold ",
4
+ "All's well that ends well ",
5
+ "As good luck would have it ",
6
+ "As merry as the day is long ",
7
+ "Bated breath ",
8
+ "Bag and baggage ",
9
+ "Bear a charmed life ",
10
+ "Be-all and the end-all ",
11
+ "Beggar all description ",
12
+ "Better foot before ",
13
+ "The better part of valor is discretion ",
14
+ "In a better world than this ",
15
+ "Neither a borrower nor a lender be ",
16
+ "Brave new world ",
17
+ "Break the ice ",
18
+ "Breathed his last ",
19
+ "Brevity is the soul of wit ",
20
+ "Refuse to budge an inch ",
21
+ "Catch a cold ",
22
+ "Cold comfort ",
23
+ "Conscience does make cowards of us all ",
24
+ "Come what come may ",
25
+ "Comparisons are odorous ",
26
+ "Crack of doom ",
27
+ "Dead as a doornail ",
28
+ "A dish fit for the gods ",
29
+ "Cry havoc and let slip the dogs of war ",
30
+ "Dog will have his day ",
31
+ "Devil incarnate ",
32
+ "Eaten me out of house and home ",
33
+ "Elbow room ",
34
+ "Farewell to all my greatness ",
35
+ "Faint hearted ",
36
+ "Fancy-free ",
37
+ "Fight till the last gasp ",
38
+ "Flaming youth ",
39
+ "Forever and a day ",
40
+ "For goodness' sake ",
41
+ "Foregone conclusion ",
42
+ "Full circle ",
43
+ "The game is afoot ",
44
+ "The game is up ",
45
+ "Give the devil his due ",
46
+ "Good riddance ",
47
+ "Jealousy is the green-eyed monster ",
48
+ "It was Greek to me ",
49
+ "Heart of gold ",
50
+ "Her infinite variety ",
51
+ "'Tis high time ",
52
+ "Hoist with his own petard ",
53
+ "Household words ",
54
+ "A horse, a horse! My kingdom for a horse! ",
55
+ "Ill wind which blows no man to good ",
56
+ "Improbable fiction ",
57
+ "In a pickle ",
58
+ "In my heart of hearts ",
59
+ "In my mind's eye ",
60
+ "Infinite space ",
61
+ "Infirm of purpose ",
62
+ "In my book of memory ",
63
+ "It is but so-so",
64
+ "It smells to heaven ",
65
+ "Itching palm ",
66
+ "Kill with kindness ",
67
+ "Killing frost ",
68
+ "Knit brow ",
69
+ "Knock knock! Who's there? ",
70
+ "Laid on with a trowel ",
71
+ "Laughing stock ",
72
+ "Laugh yourself into stitches ",
73
+ "Lean and hungry look ",
74
+ "Lie low ",
75
+ "Live long day ",
76
+ "Love is blind ",
77
+ "Men's evil manners live in brass; their virtues we write in water ",
78
+ "Melted into thin air ",
79
+ "Though this be madness, yet there is method in it ",
80
+ "Make a virtue of necessity ",
81
+ "The Makings of",
82
+ "Milk of human kindness ",
83
+ "Ministering angel ",
84
+ "Misery acquaints a man with strange bedfellows ",
85
+ "More honored in the breach than in the observance ",
86
+ "More in sorrow than in anger ",
87
+ "More sinned against than sinning ",
88
+ "Much Ado About Nothing ",
89
+ "Murder most foul ",
90
+ "Naked truth ",
91
+ "Neither rhyme nor reason ",
92
+ "Not slept one wink ",
93
+ "Nothing in his life became him like the leaving it ",
94
+ "Obvious as a nose on a man's face ",
95
+ "Once more into the breach ",
96
+ "One fell swoop ",
97
+ "One that loved not wisely but too well ",
98
+ "Time is out of joint ",
99
+ "Out of the jaws of death ",
100
+ "Own flesh and blood ",
101
+ "Star-crossed lovers ",
102
+ "Parting is such sweet sorrow ",
103
+ "What's past is prologue ",
104
+ "[What] a piece of work [is man] ",
105
+ "Pitched battle ",
106
+ "A plague on both your houses ",
107
+ "Play fast and loose ",
108
+ "Pomp and circumstance ",
109
+ "A poor thing, but mine own ",
110
+ "Pound of flesh ",
111
+ "Primrose path ",
112
+ "Quality of mercy is not strained ",
113
+ "Salad days ",
114
+ "Sea change ",
115
+ "Seen better days ",
116
+ "Send packing ",
117
+ "How sharper than the serpent's tooth it is to have a thankless child ",
118
+ "Shall I compare thee to a summer's day ",
119
+ "Make short shrift ",
120
+ "Sick at heart ",
121
+ "Snail paced ",
122
+ "Something in the wind ",
123
+ "Something wicked this way comes ",
124
+ "A sorry sight ",
125
+ "Sound and fury ",
126
+ "Spotless reputation ",
127
+ "Stony hearted ",
128
+ "Such stuff as dreams are made on ",
129
+ "Smooth runs the water where the brook is deep ",
130
+ "The short and the long of it ",
131
+ "Sweet are the uses of adversity ",
132
+ "Sweets to the sweet ",
133
+ "Swift as a shadow ",
134
+ "Tedious as a twice-told tale ",
135
+ "Set my teeth on edge ",
136
+ "Tell truth and shame the devil ",
137
+ "Thereby hangs a tale ",
138
+ "There's no such thing ",
139
+ "There's the rub ",
140
+ "This mortal coil ",
141
+ "To gild refined gold, to paint the lily ",
142
+ "To thine own self be true ",
143
+ "Too much of a good thing ",
144
+ "Tower of strength ",
145
+ "Towering passion ",
146
+ "Trippingly on the tongue ",
147
+ "Truth will out ",
148
+ "Violent delights have violent ends ",
149
+ "Wear my heart upon my sleeve ",
150
+ "What the dickens ",
151
+ "What's done is done ",
152
+ "What's in a name? A rose by any other name would smell as sweet. ",
153
+ "What fools these mortals be ",
154
+ "Wild-goose chase ",
155
+ "Wish is father to that thought ",
156
+ "Witching time of night ",
157
+ "Working-day world ",
158
+ "The world's my oyster ",
159
+ "Yeoman's service "
160
+ ]
161
+ }