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,460 @@
1
+ {
2
+ "description": "A list of Harry Potter spells and descriptions",
3
+ "spells": [
4
+ {
5
+ "incantation": "Accio",
6
+ "effect": "Summons an object",
7
+ "type": "Charm"
8
+ },
9
+ {
10
+ "incantation": "Aguamenti",
11
+ "effect": "Shoots water from wand",
12
+ "type": "Charm"
13
+ },
14
+ {
15
+ "incantation": "Alohomora",
16
+ "effect": "Opens locked objects",
17
+ "type": "Charm"
18
+ },
19
+ {
20
+ "incantation": "Anapneo",
21
+ "effect": "Clears the target's airway",
22
+ "type": "Spell"
23
+ },
24
+ {
25
+ "incantation": "Aparecium",
26
+ "effect": "Reveals invisible ink",
27
+ "type": "Spell"
28
+ },
29
+ {
30
+ "incantation": "Avada Kedavra",
31
+ "effect": "Murders opponent. Unforgivable",
32
+ "type": "Curse"
33
+ },
34
+ {
35
+ "incantation": "Avifors",
36
+ "effect": "Turns small objects into birds",
37
+ "type": "Charm"
38
+ },
39
+ {
40
+ "incantation": "Avis",
41
+ "effect": "Launches birds from wand",
42
+ "type": "Spell"
43
+ },
44
+ {
45
+ "incantation": "Cave Inimicum",
46
+ "effect": "Strengthens an enclosure from enemies",
47
+ "type": "Spell"
48
+ },
49
+ {
50
+ "incantation": "Colloportus",
51
+ "effect": "Magically locks door",
52
+ "type": "Spell"
53
+ },
54
+ {
55
+ "incantation": "Confringo",
56
+ "effect": "Explodes flames on target",
57
+ "type": "Curse"
58
+ },
59
+ {
60
+ "incantation": "Confundus",
61
+ "effect": "Confuses opponent",
62
+ "type": "Charm"
63
+ },
64
+ {
65
+ "incantation": "Conjunctivitis",
66
+ "effect": "Damages opponent's eyesight",
67
+ "type": "Curse"
68
+ },
69
+ {
70
+ "incantation": "Crucio",
71
+ "effect": "Tortures opponent. Unforgivable",
72
+ "type": "Curse"
73
+ },
74
+ {
75
+ "incantation": "Defodio",
76
+ "effect": "Digs out materials",
77
+ "type": "Spell"
78
+ },
79
+ {
80
+ "incantation": "Deletrius",
81
+ "effect": "Counters Prior Incatato",
82
+ "type": "Spell"
83
+ },
84
+ {
85
+ "incantation": "Densaugeo",
86
+ "effect": "Enlarges teeth",
87
+ "type": "Spell"
88
+ },
89
+ {
90
+ "incantation": "Deprimo",
91
+ "effect": "Damages with wind",
92
+ "type": "Spell"
93
+ },
94
+ {
95
+ "incantation": "Diffindo",
96
+ "effect": "Splits seams",
97
+ "type": "Spell"
98
+ },
99
+ {
100
+ "incantation": "Dissendium",
101
+ "effect": "Opens \"One eyed witch\" hump",
102
+ "type": "Spell"
103
+ },
104
+ {
105
+ "incantation": "Duro",
106
+ "effect": "Makes objects hard",
107
+ "type": "Spell"
108
+ },
109
+ {
110
+ "incantation": "Engorgio",
111
+ "effect": "Enlarges an item",
112
+ "type": "Charm"
113
+ },
114
+ {
115
+ "incantation": "Ennervate",
116
+ "effect": "Counters Stupefy",
117
+ "type": "Spell"
118
+ },
119
+ {
120
+ "incantation": "Episkey",
121
+ "effect": "Heals minor injuries",
122
+ "type": "Spell"
123
+ },
124
+ {
125
+ "incantation": "Erecto",
126
+ "effect": "Erects things",
127
+ "type": "Spell"
128
+ },
129
+ {
130
+ "incantation": "Expecto Patronum",
131
+ "effect": "Creates a Patronus",
132
+ "type": "Charm"
133
+ },
134
+ {
135
+ "incantation": "Expelliarmus",
136
+ "effect": "Disarms an opponent",
137
+ "type": "Charm"
138
+ },
139
+ {
140
+ "incantation": "Expulso",
141
+ "effect": "Makes objects explode",
142
+ "type": "Spell"
143
+ },
144
+ {
145
+ "incantation": "Ferula",
146
+ "effect": "Creates bandages",
147
+ "type": "Spell"
148
+ },
149
+ {
150
+ "incantation": "Fidelius",
151
+ "effect": "Hides a secret within someone",
152
+ "type": "Charm"
153
+ },
154
+ {
155
+ "incantation": "Finite Incantatum",
156
+ "effect": "Stops any current spells",
157
+ "type": "Spell"
158
+ },
159
+ {
160
+ "incantation": "Flagrate",
161
+ "effect": "Allows user to write on objects",
162
+ "type": "Spell"
163
+ },
164
+ {
165
+ "incantation": "Flipendo",
166
+ "effect": "Knocks an object backwards",
167
+ "type": "Jinx"
168
+ },
169
+ {
170
+ "incantation": "Furnunculus",
171
+ "effect": "Produces boils on opponent",
172
+ "type": "Curse"
173
+ },
174
+ {
175
+ "incantation": "Geminio",
176
+ "effect": "Duplicates an object",
177
+ "type": "Spell"
178
+ },
179
+ {
180
+ "incantation": "Glisseo",
181
+ "effect": "Turns stairs into ramps",
182
+ "type": "Spell"
183
+ },
184
+ {
185
+ "incantation": "Homenum Revelio",
186
+ "effect": "Reveals humans nearby",
187
+ "type": "Spell"
188
+ },
189
+ {
190
+ "incantation": "Homorphus",
191
+ "effect": "Lockhart's Werewolf \"cure\"",
192
+ "type": "Charm"
193
+ },
194
+ {
195
+ "incantation": "Immobulus",
196
+ "effect": "Renders target immobile",
197
+ "type": "Charm"
198
+ },
199
+ {
200
+ "incantation": "Impedimenta",
201
+ "effect": "Slows an advancing object",
202
+ "type": "Charm"
203
+ },
204
+ {
205
+ "incantation": "Imperio",
206
+ "effect": "Controls a person. Unforgivable",
207
+ "type": "Curse"
208
+ },
209
+ {
210
+ "incantation": "Impervius",
211
+ "effect": "Makes an object repel water",
212
+ "type": "Charm"
213
+ },
214
+ {
215
+ "incantation": "Incarcerous",
216
+ "effect": "Ties victim up",
217
+ "type": "Spell"
218
+ },
219
+ {
220
+ "incantation": "Incendio",
221
+ "effect": "Starts a fire",
222
+ "type": "Spell"
223
+ },
224
+ {
225
+ "incantation": "Langlock",
226
+ "effect": "Glues opponent's tongue to roof of mouth",
227
+ "type": "Spell"
228
+ },
229
+ {
230
+ "incantation": "Legilimens",
231
+ "effect": "Allows the caster to delve into the mind of the victim",
232
+ "type": "Spell"
233
+ },
234
+ {
235
+ "incantation": "Levicorpus",
236
+ "effect": "Hangs victim upside down by feet",
237
+ "type": "Spell"
238
+ },
239
+ {
240
+ "incantation": "Liberacorpus",
241
+ "effect": "Counters Levicorpus",
242
+ "type": "Spell"
243
+ },
244
+ {
245
+ "incantation": "Locomotor Mortis",
246
+ "effect": "Locks opponents legs",
247
+ "type": "Curse"
248
+ },
249
+ {
250
+ "incantation": "Lumos",
251
+ "effect": "Creates light at wand tip",
252
+ "type": "Spell"
253
+ },
254
+ {
255
+ "incantation": "Meteolojinx Recanto",
256
+ "effect": "Causes weather effect spells to stop",
257
+ "type": "Spell"
258
+ },
259
+ {
260
+ "incantation": "Mobiliarbus",
261
+ "effect": "Moves objects with wand",
262
+ "type": "Charm"
263
+ },
264
+ {
265
+ "incantation": "Mobilicorpus",
266
+ "effect": "Moves unconscious bodies",
267
+ "type": "Spell"
268
+ },
269
+ {
270
+ "incantation": "Morsmorde",
271
+ "effect": "Conjures the Dark Mark",
272
+ "type": "Spell"
273
+ },
274
+ {
275
+ "incantation": "Muffliato",
276
+ "effect": "Prevents nearby people from listening to conversations",
277
+ "type": "Spell"
278
+ },
279
+ {
280
+ "incantation": "Nox",
281
+ "effect": "Counters Lumos",
282
+ "type": "Spell"
283
+ },
284
+ {
285
+ "incantation": "Obliviate",
286
+ "effect": "Erases memories",
287
+ "type": "Charm"
288
+ },
289
+ {
290
+ "incantation": "Obscuro",
291
+ "effect": "Blindfolds the victim",
292
+ "type": "Spell"
293
+ },
294
+ {
295
+ "incantation": "Oppugno",
296
+ "effect": "Makes conjured items attack",
297
+ "type": "Spell"
298
+ },
299
+ {
300
+ "incantation": "Orchideous",
301
+ "effect": "Conjures a bunch of flowers",
302
+ "type": "Spell"
303
+ },
304
+ {
305
+ "incantation": "Pack",
306
+ "effect": "Packs a trunk (suitcase)",
307
+ "type": "Spell"
308
+ },
309
+ {
310
+ "incantation": "Peskipiksi Pesternomi",
311
+ "effect": "Removes Pixies (maybe)",
312
+ "type": "Spell"
313
+ },
314
+ {
315
+ "incantation": "Petrificus Totalus",
316
+ "effect": "Binds victim's body",
317
+ "type": "Spell"
318
+ },
319
+ {
320
+ "incantation": "Piertotum Locomotor",
321
+ "effect": "Animates statues and armor suits",
322
+ "type": "Spell"
323
+ },
324
+ {
325
+ "incantation": "Point Me",
326
+ "effect": "Makes wand act like a compass",
327
+ "type": "Charm"
328
+ },
329
+ {
330
+ "incantation": "Priori Incantatem",
331
+ "effect": "Result when brother wands duel",
332
+ "type": "Spell"
333
+ },
334
+ {
335
+ "incantation": "Prior Incantato",
336
+ "effect": "Reveals a wand's last spell / cast",
337
+ "type": "Spell"
338
+ },
339
+ {
340
+ "incantation": "Protego",
341
+ "effect": "Causes spells to reflect back to the sender",
342
+ "type": "Charm"
343
+ },
344
+ {
345
+ "incantation": "Protego Horribilis",
346
+ "effect": "Protects one from Dark Magic",
347
+ "type": "Spell"
348
+ },
349
+ {
350
+ "incantation": "Protego Totalum",
351
+ "effect": "Protects an area",
352
+ "type": "Spell"
353
+ },
354
+ {
355
+ "incantation": "Quietus",
356
+ "effect": "Counters Sonorus",
357
+ "type": "Spell"
358
+ },
359
+ {
360
+ "incantation": "Reducio",
361
+ "effect": "Returns items to original size. Counters Engorgio",
362
+ "type": "Spell"
363
+ },
364
+ {
365
+ "incantation": "Reducto",
366
+ "effect": "Blasts solid objects aside",
367
+ "type": "Spell"
368
+ },
369
+ {
370
+ "incantation": "Relashio",
371
+ "effect": "Releases user from binding",
372
+ "type": "Spell"
373
+ },
374
+ {
375
+ "incantation": "Rennervate",
376
+ "effect": "Cures unconsciousness",
377
+ "type": "Spell"
378
+ },
379
+ {
380
+ "incantation": "Reparo",
381
+ "effect": "Repairs things",
382
+ "type": "Spell"
383
+ },
384
+ {
385
+ "incantation": "Repello Muggletum",
386
+ "effect": "Keeps Muggles away",
387
+ "type": "Spell"
388
+ },
389
+ {
390
+ "incantation": "Rictusempra",
391
+ "effect": "Tickles opponent",
392
+ "type": "Charm"
393
+ },
394
+ {
395
+ "incantation": "Riddikulus",
396
+ "effect": "Defeats a boggart when used with laughter",
397
+ "type": "Spell"
398
+ },
399
+ {
400
+ "incantation": "Salvio Hexia",
401
+ "effect": "Protects against hexes",
402
+ "type": "Spell"
403
+ },
404
+ {
405
+ "incantation": "Scruge",
406
+ "effect": "Destroys ectoplasm (remains of ghosts)",
407
+ "type": "Charm"
408
+ },
409
+ {
410
+ "incantation": "Sectumsempra",
411
+ "effect": "Causes wounds as if slashed by a sword",
412
+ "type": "Spell"
413
+ },
414
+ {
415
+ "incantation": "Serpensortia",
416
+ "effect": "Produces a snake",
417
+ "type": "Spell"
418
+ },
419
+ {
420
+ "incantation": "Silencio",
421
+ "effect": "Silences victim",
422
+ "type": "Spell"
423
+ },
424
+ {
425
+ "incantation": "Sonorus",
426
+ "effect": "Amplifies voice",
427
+ "type": "Spell"
428
+ },
429
+ {
430
+ "incantation": "Specialis Revelio",
431
+ "effect": "Reveals hidden secrets or magical properties",
432
+ "type": "Spell"
433
+ },
434
+ {
435
+ "incantation": "Stupefy",
436
+ "effect": "Knocks out opponent",
437
+ "type": "Spell"
438
+ },
439
+ {
440
+ "incantation": "Tarantallegra",
441
+ "effect": "Forces opponent to dance",
442
+ "type": "Spell"
443
+ },
444
+ {
445
+ "incantation": "Tergeo",
446
+ "effect": "Cleans up messes",
447
+ "type": "Spell"
448
+ },
449
+ {
450
+ "incantation": "Waddiwasi",
451
+ "effect": "Unsticks an object",
452
+ "type": "Spell"
453
+ },
454
+ {
455
+ "incantation": "Wingardium Leviosa",
456
+ "effect": "Makes an object fly",
457
+ "type": "Charm"
458
+ }
459
+ ]
460
+ }
@@ -0,0 +1,25 @@
1
+ [{
2
+ "word": "been",
3
+ "verb-type": "state-verb"
4
+ }, {
5
+ "word": "being",
6
+ "verb-type": "state-verb"
7
+ }, {
8
+ "word": "be",
9
+ "verb-type": "state-verb"
10
+ }, {
11
+ "word": "were",
12
+ "verb-type": "state-verb"
13
+ }, {
14
+ "word": "was",
15
+ "verb-type": "state-verb"
16
+ }, {
17
+ "word": "are",
18
+ "verb-type": "state-verb"
19
+ }, {
20
+ "word": "is",
21
+ "verb-type": "state-verb"
22
+ }, {
23
+ "word": "am",
24
+ "verb-type": "state-verb"
25
+ }]
@@ -0,0 +1,39 @@
1
+ {
2
+ "description": "A list of states of drunkenness.",
3
+ "states_of_drunkenness":
4
+ [ "drunk",
5
+ "hammered",
6
+ "intoxicated",
7
+ "impaired",
8
+ "stinko",
9
+ "wrecked",
10
+ "pissed",
11
+ "blotto",
12
+ "sloshed",
13
+ "buzzed",
14
+ "tight",
15
+ "canned",
16
+ "baked",
17
+ "thrashed",
18
+ "trashed",
19
+ "tipsy",
20
+ "smashed",
21
+ "totaled",
22
+ "tore up",
23
+ "gone",
24
+ "soused",
25
+ "thirsty",
26
+ "annihilated",
27
+ "blitzed",
28
+ "stoned",
29
+ "lit",
30
+ "plastered",
31
+ "three sheets to the wind",
32
+ "tanked",
33
+ "delerious",
34
+ "friendly",
35
+ "disorderly",
36
+ "rowdy",
37
+ "stewed"
38
+ ]
39
+ }
@@ -0,0 +1,169 @@
1
+ {
2
+ "description": "Arabic stop words",
3
+ "stopWords":
4
+ [
5
+ "،",
6
+ "أ",
7
+ "ا",
8
+ "ب",
9
+ "ـ",
10
+ "ف",
11
+ "و",
12
+ "و6",
13
+ "اف",
14
+ "ان",
15
+ "او",
16
+ "اي",
17
+ "بن",
18
+ "به",
19
+ "تم",
20
+ "ثم",
21
+ "ضد",
22
+ "عن",
23
+ "فى",
24
+ "في",
25
+ "قد",
26
+ "كل",
27
+ "لا",
28
+ "لم",
29
+ "لن",
30
+ "له",
31
+ "ما",
32
+ "مع",
33
+ "من",
34
+ "هو",
35
+ "هي",
36
+ "اثر",
37
+ "اجل",
38
+ "احد",
39
+ "اذا",
40
+ "اكد",
41
+ "الا",
42
+ "الف",
43
+ "الى",
44
+ "اما",
45
+ "امس",
46
+ "انه",
47
+ "اول",
48
+ "بان",
49
+ "برس",
50
+ "بعد",
51
+ "بعض",
52
+ "بها",
53
+ "بين",
54
+ "حتى",
55
+ "حول",
56
+ "حيث",
57
+ "حين",
58
+ "دون",
59
+ "ذلك",
60
+ "سنة",
61
+ "صفر",
62
+ "ضمن",
63
+ "عام",
64
+ "عدة",
65
+ "عدد",
66
+ "عدم",
67
+ "عشر",
68
+ "على",
69
+ "عند",
70
+ "غدا",
71
+ "غير",
72
+ "فان",
73
+ "فيه",
74
+ "قال",
75
+ "قبل",
76
+ "قوة",
77
+ "كان",
78
+ "كلم",
79
+ "كما",
80
+ "لدى",
81
+ "لكن",
82
+ "لها",
83
+ "منذ",
84
+ "نحو",
85
+ "هذا",
86
+ "هذه",
87
+ "وان",
88
+ "وفي",
89
+ "وقد",
90
+ "وقف",
91
+ "ولا",
92
+ "ولم",
93
+ "ومن",
94
+ "وهو",
95
+ "وهي",
96
+ "يوم",
97
+ "فى",
98
+ "اخرى",
99
+ "اطار",
100
+ "اكثر",
101
+ "الان",
102
+ "التى",
103
+ "التي",
104
+ "الذى",
105
+ "الذي",
106
+ "امام",
107
+ "انها",
108
+ "ايار",
109
+ "ايام",
110
+ "ايضا",
111
+ "باسم",
112
+ "بسبب",
113
+ "بشكل",
114
+ "جميع",
115
+ "خلال",
116
+ "شخصا",
117
+ "صباح",
118
+ "عاما",
119
+ "عشرة",
120
+ "عليه",
121
+ "فيها",
122
+ "كانت",
123
+ "لقاء",
124
+ "مايو",
125
+ "مساء",
126
+ "منها",
127
+ "نفسه",
128
+ "هناك",
129
+ "واحد",
130
+ "واكد",
131
+ "وقال",
132
+ "وكان",
133
+ "يكون",
134
+ "يمكن",
135
+ "مليون",
136
+ "اربعة",
137
+ "اعادة",
138
+ "اعلنت",
139
+ "الاول",
140
+ "الذين",
141
+ "الوقت",
142
+ "اليوم",
143
+ "ثلاثة",
144
+ "حاليا",
145
+ "حوالى",
146
+ "زيارة",
147
+ "سنوات",
148
+ "عليها",
149
+ "عندما",
150
+ "للامم",
151
+ "مقابل",
152
+ "مليار",
153
+ "نهاية",
154
+ "واضاف",
155
+ "واوضح",
156
+ "وقالت",
157
+ "وكانت",
158
+ "الاولى",
159
+ "الثاني",
160
+ "الذاتي",
161
+ "السابق",
162
+ "الماضي",
163
+ "المقبل",
164
+ "لوكالة",
165
+ "واضافت",
166
+ "الاخيرة",
167
+ "الثانية"
168
+ ]
169
+ }