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,408 @@
1
+ {
2
+ "Worldwide or Serving Multiple Countries": [
3
+ "Albino Squirrel Preservation Society",
4
+ "Alley Cat Allies",
5
+ "Animal People (based in U.S.)",
6
+ "Animal Transportation Association",
7
+ "Animal Welfare Institute",
8
+ "AnimaNaturalis",
9
+ "Association of Zoos and Aquariums",
10
+ "Association for Assessment and Accreditation of Laboratory Animal Care International",
11
+ "Bat Conservation International",
12
+ "BirdLife International",
13
+ "Brooke Hospital for Animals (equine)",
14
+ "Care for the Wild International",
15
+ "Compassion in World Farming",
16
+ "The Donkey Sanctuary (based in U.K.)",
17
+ "Friends of Animals",
18
+ "Global Alliance for Rabies Control",
19
+ "Grey2K USA",
20
+ "Humane Slaughter Association (based in UK)",
21
+ "Humane Society International",
22
+ "International Animal Rescue",
23
+ "International Bird Rescue (based in California)",
24
+ "International Fund for Animal Welfare (IFAW)",
25
+ "International Primate Protection League",
26
+ "Jane Goodall Institute",
27
+ "Let's Adopt",
28
+ "Marine Connection",
29
+ "Monkey World (based in U.K.)",
30
+ "Parrots International",
31
+ "Performing Animal Welfare Society",
32
+ "Royal Society for the Prevention of Cruelty to Animals[1]",
33
+ "SANCCOB (seabirds, based in South Africa)",
34
+ "Sea Shepherd Conservation Society",
35
+ "Shark Trust",
36
+ "Universities Federation for Animal Welfare (UFAW)",
37
+ "Vegan Outreach",
38
+ "Vets Beyond Borders",
39
+ "Vets for Change",
40
+ "Whale and Dolphin Conservation Society",
41
+ "Wolf Preservation Foundation",
42
+ "World Animal Protection",
43
+ "World Association of Zoos and Aquariums",
44
+ "World Horse Welfare"
45
+ ],
46
+ "Australia": [
47
+ "Animals Australia",
48
+ "Lone Pine Koala Sanctuary",
49
+ "Lost Dogs' Home",
50
+ "RSPCA Australia",
51
+ "Voiceless, the animal protection institute",
52
+ "Cat Protection Society of NSW",
53
+ "DoggieRescue.com",
54
+ "RSPCA NSW",
55
+ "Cat Protection Society of Victoria"
56
+ ],
57
+ "Belgium": [
58
+ "Prince Laurent Foundation"
59
+ ],
60
+ "Bolivia": [
61
+ "Comunidad Inti Wara Yassi",
62
+ "La Senda Verde (wildlife)",
63
+ "Voluntarios en Defensa de los Animales"
64
+ ],
65
+ "Canada": [
66
+ "Alberta SPCA",
67
+ "Canada's Accredited Zoos and Aquariums",
68
+ "Canadian Association for Laboratory Animal Science",
69
+ "Canadian Council on Animal Care (lab animals)",
70
+ "Canadian Federation of Humane Societies",
71
+ "Canadian Science Centre for Human and Animal Health",
72
+ "Cochrane & Area Humane Society",
73
+ "Dog Legislation Council of Canada",
74
+ "Fauna Foundation",
75
+ "Little RES Q (Toronto, turtles)",
76
+ "Nova Scotia Society for the Prevention of Cruelty",
77
+ "Ontario Society for the Prevention of Cruelty to Animals",
78
+ "Prairie Wildlife Rehabilitation Centre",
79
+ "Richmond Animal Protection Society",
80
+ "Second Chance Animal Rescue Society",
81
+ "Senior Animals In Need Today Society",
82
+ "Toronto Cat Rescue",
83
+ "Toronto Humane Society",
84
+ "Vancouver Orphan Kitten Rescue Association",
85
+ "Voice for Animals Humane Society"
86
+ ],
87
+ "China": [
88
+ "China Animal Disease Control Center[2]",
89
+ "Chinese Animal Protection Network",
90
+ "Wah Yan College Cats",
91
+ "Jane Goodall Institute (Hong Kong)",
92
+ "Society for the Prevention of Cruelty to Animals (Hong Kong)",
93
+ "Ping An A Fu[3]",
94
+ "Vshine Animal Protection Organization[4]",
95
+ "Home of Love[5]"
96
+ ],
97
+ "Denmark": [
98
+ "Anima (organization)",
99
+ "Inges kattehjem"
100
+ ],
101
+ "Egypt": [
102
+ "Society for Protection of Animal Rights in Egypt"
103
+ ],
104
+ "Germany": [
105
+ "Deutsche Arbeitsgemeinschaft zum Schutz der Eulen (owls)"
106
+ ],
107
+ "Ghana": [
108
+ "Ghana Wildlife Society"
109
+ ],
110
+ "Hungary": [
111
+ "White Cross Animal Protection Society[6]"
112
+ ],
113
+ "India": [
114
+ "Abubshahar Wildlife Sanctuary",
115
+ "Animal Aid Unlimited (Udaipur, Rajasthan)",
116
+ "Animal Welfare Board of India",
117
+ "Bir Bara Ban Wildlife Sanctuary",
118
+ "Bir Shikargah Wildlife Sanctuary",
119
+ "The Blue Cross of Hyderabad",
120
+ "Blue Cross of India (Chennai)",
121
+ "Buddha Society for Animal Welfare",
122
+ "Ch. Surender Singh Memorial Herbal Park, Kairu",
123
+ "Federation of Indian Animal Protection Organization",
124
+ "GOAL Foundation: Group of Animal Lovers - Gujarat province",
125
+ "Help In Suffering (Jaipur, Rajasthan)",
126
+ "Khol Hi-Raitan Wildlife Sanctuary",
127
+ "Let's Live Together (dogs, Bangalore)",
128
+ "National Institute of Animal Welfare",
129
+ "Wildlife Institute of India",
130
+ "Wildlife Rescue & Rehabilitation Centre (Bangalore)",
131
+ "Wildlife SOS"
132
+ ],
133
+ "Indonesia": [
134
+ "Bali Street Dog Foundation",
135
+ "Profauna Indonesia",
136
+ "Bali Animal Welfare Association"
137
+ ],
138
+ "Palestine": [
139
+ "Palestine Wildlife Society (wildlife, nature, animals & farms)"
140
+ ],
141
+ "Japan": [
142
+ "Japan Animal Welfare Society"
143
+ ],
144
+ "Jersey": [
145
+ "Jersey Society for the Prevention of Cruelty to Animals"
146
+ ],
147
+ "Kenya": [
148
+ "David Sheldrick Wildlife Trust",
149
+ "Kenya Society for the Protection and Care of Animals"
150
+ ],
151
+ "Malaysia": [
152
+ "Sarawak Society for the Prevention of Cruelty to Animals",
153
+ "SPCA Selangor, Malaysia"
154
+ ],
155
+ "Malta": [
156
+ "St. Francis Foundation for Animals"
157
+ ],
158
+ "Mexico": [
159
+ "NACER.org"
160
+ ],
161
+ "Mozambique": [
162
+ "Mozambique Animal Protection Society"
163
+ ],
164
+ "Namibia": [
165
+ "Tierschutzverein Swakopmund (SPCA)"
166
+ ],
167
+ "Nepal": [
168
+ "Animal Rights Club Nepal",
169
+ "Animal Nepal",
170
+ "Animal Welfare Network Nepal",
171
+ "Kathmandu Animal Treatment Centre"
172
+ ],
173
+ "The Netherlands": [
174
+ "Dutch Society for the Protection of Animals"
175
+ ],
176
+ "Norway": [
177
+ "Dyrebeskyttelsen Norge"
178
+ ],
179
+ "New Zealand": [
180
+ "Royal New Zealand Society for the Prevention of Cruelty to Animals",
181
+ "PAWS Rescue & Rehabilitation[7]"
182
+ ],
183
+ "Pakistan": [
184
+ "Pakistan Animal Welfare Society"
185
+ ],
186
+ "The Philippines": [
187
+ "Compassion and Responsibility for Animals",
188
+ "Philippine Animal Welfare Society",
189
+ "Philippine Tarsier Foundation"
190
+ ],
191
+ "Serbia": [
192
+ "Organization for Respect and Care for Animals"
193
+ ],
194
+ "Singapore": [
195
+ "Animal Concerns Research and Education Society (ACRES)",
196
+ "Agency for Animal Welfare Ltd. (AAW)",
197
+ "Singapore Society for the Prevention of Cruelty to Animals"
198
+ ],
199
+ "Somalia": [
200
+ "Somali Animal Health Services Project[8]"
201
+ ],
202
+ "Sri Lanka": [
203
+ "Dog Care Clinic"
204
+ ],
205
+ "South Africa": [
206
+ "Cape of Good Hope SPCA",
207
+ "Chimp Eden"
208
+ ],
209
+ "Sweden": [],
210
+ "Thailand": [
211
+ "Elephant Nature Park",
212
+ "Elephantstay",
213
+ "Thai Animal Guardians"
214
+ ],
215
+ "Turkey": [
216
+ "Let's Adopt",
217
+ "HAYTAP"
218
+ ],
219
+ "Uganda": [
220
+ "Ziwa Rhino Sanctuary"
221
+ ],
222
+ "United Kingdom": [
223
+ "Animal Allsorts",
224
+ "Assisi Animal Sanctuary",
225
+ "Badger Trust",
226
+ "Battersea Dogs and Cats Home (London)",
227
+ "Blue Cross",
228
+ "British Divers Marine Life Rescue",
229
+ "British Horse Society",
230
+ "Cats Protection",
231
+ "Dogs Trust",
232
+ "DSPCA (Dublin)",
233
+ "Eurogroup for Animals",
234
+ "Farm Animal Welfare Council",
235
+ "Hillside Animal Sanctuary",
236
+ "The Horse Trust",
237
+ "Hounds for Heroes",
238
+ "Irish Blue Cross",
239
+ "League Against Cruel Sports",
240
+ "The Mayhew Animal Home",
241
+ "National Animal Welfare Trust",
242
+ "National Office of Animal Health",
243
+ "National Wildlife Crime Unit",
244
+ "Oxford Centre for Animal Ethics",
245
+ "People's Dispensary for Sick Animals",
246
+ "Redwings Horse Sanctuary",
247
+ "Retired Greyhound Trust",
248
+ "Royal Society for the Prevention of Cruelty to Animals (RSPCA)",
249
+ "Save Me (animal welfare)",
250
+ "Scottish Society for Prevention of Cruelty to Animals",
251
+ "Screech Owl Sanctuary",
252
+ "Swan Sanctuary, Shepperton",
253
+ "Thornberry Animal Sanctuary",
254
+ "Ulster Society for the Prevention of Cruelty to Animals",
255
+ "Wetheriggs Zoo and Animal Sanctuary"
256
+ ],
257
+ "United States of America": [
258
+ "Alabama Wildlife Center",
259
+ "Alley Cat Allies",
260
+ "Alley Cat Rescue",
261
+ "Alliance for Animals",
262
+ "American Humane Association",
263
+ "American Pet Association",
264
+ "American Society for the Prevention of Cruelty to Animals",
265
+ "American Tortoise Rescue",
266
+ "Animal Care & Control of NYC",
267
+ "Animal Chaplain Services (based in Florida)",
268
+ "Animal Legal Defense Fund",
269
+ "Animal Medical Center of New York",
270
+ "Animal Ministry Institute",
271
+ "Animal People",
272
+ "Animal Protection and Rescue League",
273
+ "Animal Rescue Foundation",
274
+ "Animal Rescue League of Iowa",
275
+ "Animal Rescue League of Western Pennsylvania",
276
+ "Animal Rescue Media Education (ARME)",
277
+ "Arizona Humane Society",
278
+ "Bat World Sanctuary",
279
+ "Bay Area Dog-lovers Responsible About Pit Bulls (based in California)",
280
+ "BC Animal Welfare Society",
281
+ "Bergen County SPCA",
282
+ "Best Friends Animal Society",
283
+ "Black Pine Animal Sanctuary",
284
+ "Blankets Fur Beasties",
285
+ "Born Free USA",
286
+ "California Equine Rescue Center",
287
+ "California Equine Retirement Foundation",
288
+ "Carolina Tiger Rescue",
289
+ "Center for Elephant Conservation",
290
+ "Center for Great Apes",
291
+ "Chimps Inc.",
292
+ "City Kitties",
293
+ "Coastal Pet Rescue",
294
+ "Copper Country Humane Society",
295
+ "Crash's Landing & Big Sid's Sanctuary",
296
+ "Dedication and Everlasting Love to Animals Rescue",
297
+ "Detroit Dog Rescue",
298
+ "Dogs Deserve Better (based in Virginia)",
299
+ "Doris Day Animal Foundation",
300
+ "Dumb Friends League",
301
+ "East County Animal Rescue",
302
+ "East Lake Pet Orphanage (Dallas)",
303
+ "Farm Sanctuary",
304
+ "Feral Cat Coalition of Oregon",
305
+ "FixNation",
306
+ "Folsom City Zoo Sanctuary",
307
+ "Forgotten Cats",
308
+ "Foundation Against Companion-Animal Euthanasia (FACE)",
309
+ "Frankie's Friends",
310
+ "Franklin County Dog Shelter",
311
+ "Friends of Animals",
312
+ "Friends of Indianapolis Animal Care & Control",
313
+ "Furry Feet Rescue",
314
+ "Goathouse Refuge (cats)",
315
+ "Habitat for Hounds",
316
+ "Hand2Paw",
317
+ "Hawaiian Humane Society",
318
+ "Heaven's Corner",
319
+ "Help for Helpless Animals (Dallas)",
320
+ "Hope for Paws",
321
+ "House Rabbit Society",
322
+ "Houston Society for the Prevention of Cruelty to Animals",
323
+ "Humane Farm Animal Care",
324
+ "Humane League of Lancaster County",
325
+ "Humane Research Council",
326
+ "Humane Society of Huron Valley",
327
+ "Humane Society of Indianapolis",
328
+ "Humane Society of the United States (HSUS)",
329
+ "Humanity for Horses",
330
+ "IndyFeral",
331
+ "Ironwood Pig Sanctuary",
332
+ "It's Meow Or Never For Ferals, Inc.",
333
+ "Kentucky Humane Society",
334
+ "Kids Against Animal Cruelty",
335
+ "Kitten Rescue",
336
+ "Lange Foundation",
337
+ "Last Hope, Inc.",
338
+ "Liberty Humane Society",
339
+ "Marin Humane Society",
340
+ "Marine Mammal Care Center",
341
+ "Massachusetts Society for the Prevention of Cruelty to Animals-Angell Animal Medical Center",
342
+ "Michiana Animal Alliance",
343
+ "Michigan Humane Society",
344
+ "Midwest Avian Adoption and Rescue Services (MAARS)",
345
+ "Monmouth County SPCA",
346
+ "Muttshack Animal Rescue Foundation",
347
+ "National Animal Interest Alliance",
348
+ "National Center for Prosecution of Animal Abuse",
349
+ "New Jersey Society for the Prevention of Cruelty to Animals",
350
+ "No Kill Advocacy Center",
351
+ "North Shore Animal League America",
352
+ "Northcoast Marine Mammal Center",
353
+ "NYC Feral Cat Initiative",
354
+ "Office of Laboratory Animal Welfare",
355
+ "Old Friends Equine",
356
+ "Operation Kindness",
357
+ "Our Pack (pit bulls)",
358
+ "Pennsylvania SPCA",
359
+ "Pets for Vets",
360
+ "Project Bay Cat",
361
+ "Project Puppy Mills",
362
+ "Puppycide Database Project",
363
+ "Purrfect pals (cats)",
364
+ "Redwings Horse Sanctuary",
365
+ "Respect For All Animals Movement (RFAAM)[10]",
366
+ "Safe Humane Chicago",
367
+ "San Antonio Feral Cat Coalition",
368
+ "Sanctuary One",
369
+ "Sky Ark",
370
+ "SPOT Low Cost Spay/Neuter Clinic (Tampa Bay)",
371
+ "Tabby's Place",
372
+ "The Anti-Cruelty Society",
373
+ "The Cat House on the Kings",
374
+ "The Elephant Sanctuary (Hohenwald)",
375
+ "The Garold Wayne Interactive Zoological Foundation",
376
+ "The Gentle Barn",
377
+ "The Humane League",
378
+ "The Wild Animal Sanctuary (based in Colorado)",
379
+ "Tiger Haven",
380
+ "Unchain Your Dog",
381
+ "United States Association of Reptile Keepers",
382
+ "Villalobos Rescue Center (New Orleans, featured on the television series Pit Bulls & Parolees)",
383
+ "Winn Feline Foundation",
384
+ "Winslow Farm",
385
+ "Wisconsin Black Bear Education Center",
386
+ "Woodstock Farm Animal Sanctuary"
387
+ ],
388
+ "Zimbabwe": [
389
+ "Zimbabwe Society for the Prevention of Cruelty to Animals"
390
+ ],
391
+ "See also": [
392
+ "Animal rescue group",
393
+ "List of animal rights groups",
394
+ "Society for the Prevention of Cruelty to Animals"
395
+ ],
396
+ "References": [
397
+ "Jump up ^ \"National Programme for the Protection of Animals (NPPA)\", lobbying efforts of the society are described; \"Legal Advice Service\" outlines help the society provides to people trying to enforce or deal with the national Act on the Protection of Animals, newly enacted in 1998.",
398
+ "Jump up ^ \"Our international work\", RCPCA, accessed August 16, 2014.",
399
+ "Jump up ^ \"Puntland Livelihood Support Program\", Vétérinaires sans Frontières Suisse, accessed Oct. 11, 2014.",
400
+ "Jump up ^ Affiliated to the Veterinary Bureau of the Agriculture Ministry; see \"China Animal Disease Control Center Opens in Beijing\", Xinhua News Agency June 17, 2006.",
401
+ "Jump up ^ formerly Pet 100, mentioned here: \"Street Dog Welfare in China\", Humane Society International, accessed August 16, 2014.",
402
+ "Jump up ^ mentioned here: \"Street Dog Welfare in China\", Humane Society International, accessed August 16, 2014.",
403
+ "Jump up ^ PAWS Rescue & Rehabilitation Facebook Page",
404
+ "Jump up ^ Somalia: Somali Animal Health Services Project: Mid-Term Project Evaluation Report\", accessed Oct. 11, 2014.",
405
+ "Jump up ^ The organization also has a similar website under the name \"Respect for All Animals Ministry\", accessed August 14, 2014."
406
+ ],
407
+ "External links": []
408
+ }
@@ -0,0 +1,24 @@
1
+ [
2
+ "Abu Sayyaf",
3
+ "Al-Mourabitoun",
4
+ "Al-Nusra Front",
5
+ "al-Qaeda",
6
+ "al-Qaeda in the Arabian Peninsula",
7
+ "al-Qaeda in the Islamic Maghreb",
8
+ "Al-Shabaab",
9
+ "Ansar al-Islam",
10
+ "Boko Haram",
11
+ "Hamas",
12
+ "Izz ad-Din al-Qassam Brigades",
13
+ "Hezbollah (External Security Organisation)",
14
+ "Islamic Movement of Uzbekistan",
15
+ "Islamic State of Iraq and the Levant",
16
+ "Jaish-e-Mohammed",
17
+ "Jamiat ul-Ansar",
18
+ "Jemaah Islamiyah",
19
+ "Kurdistan Workers' Party",
20
+ "Lashkar-e-Taiba",
21
+ "Lashkar-e-Jhangvi",
22
+ "Liberation Tigers of Tamil Eelam",
23
+ "Palestinian Islamic Jihad"
24
+ ]
@@ -0,0 +1,54 @@
1
+ [
2
+ "Abu Nidal Organization",
3
+ "Abu Sayyaf",
4
+ "Aden-Abyan Islamic Army",
5
+ "al-Aqsa Martyrs' Brigades",
6
+ "al-Gama'a al-Islamiyya",
7
+ "Al-Itihaad al-Islamiya",
8
+ "Al-Mourabitoun",
9
+ "Al-Nusra Front",
10
+ "al-Qaeda",
11
+ "al-Qaeda in the Arabian Peninsula",
12
+ "al-Qaeda in the Islamic Maghreb",
13
+ "Al-Shabaab",
14
+ "Ansar al-Islam",
15
+ "Armed Islamic Group of Algeria",
16
+ "Osbat al-Ansar",
17
+ "Aum Shinrikyo",
18
+ "Babbar Khalsa International",
19
+ "Boko Haram",
20
+ "Caucasus Emirate",
21
+ "Egyptian Islamic Jihad",
22
+ "ETA",
23
+ "Hamas",
24
+ "Haqqani network",
25
+ "Harkat-ul-Mujahideen",
26
+ "Hezb-e Islami Gulbuddin",
27
+ "Hezbollah",
28
+ "Hezbollah (External Security Organisation)",
29
+ "International Sikh Youth Federation",
30
+ "Islamic Movement of Uzbekistan",
31
+ "Islamic State of Iraq and the Levant",
32
+ "Jaish-e-Mohammed",
33
+ "Jaish al-Muhajireen wal-Ansar",
34
+ "Jemaah Islamiyah",
35
+ "Kach and Kahane Chai",
36
+ "Kurdistan Workers' Party",
37
+ "Lashkar-e-Taiba",
38
+ "Lashkar-e-Jhangvi",
39
+ "Liberation Tigers of Tamil Eelam",
40
+ "Movement for Oneness and Jihad in West Africa",
41
+ "National Liberation Army",
42
+ "Palestine Liberation Front",
43
+ "Palestinian Islamic Jihad",
44
+ "Popular Front for the Liberation of Palestine",
45
+ "Popular Front for the Liberation of Palestine – General Command",
46
+ "Quds Force",
47
+ "Revolutionary Armed Forces of Colombia",
48
+ "Shining Path",
49
+ "Taliban",
50
+ "Tehrik-i-Taliban Pakistan",
51
+ "United Self-Defense Forces of Colombia",
52
+ "Vanguards of Conquest",
53
+ "World Tamil Movement"
54
+ ]
@@ -0,0 +1,6 @@
1
+ [
2
+ "East Turkestan Information Center",
3
+ "East Turkestan Islamic Movement",
4
+ "East Turkestan Liberation Organization",
5
+ "World Uygur Youth Congress"
6
+ ]
@@ -0,0 +1,9 @@
1
+ [
2
+ "Ajnad Misr",
3
+ "Ansar Bait al-Maqdis",
4
+ "Hamas",
5
+ "Izz ad-Din al-Qassam Brigades",
6
+ "Hezbollah",
7
+ "Islamic State of Iraq and the Levant",
8
+ "Muslim Brotherhood"
9
+ ]
@@ -0,0 +1,31 @@
1
+ [
2
+ "Abu Nidal Organization",
3
+ "al-Aqsa Foundation",
4
+ "al-Aqsa Martyrs' Brigades",
5
+ "al-Gama'a al-Islamiyya",
6
+ "al-Qaeda",
7
+ "Takfir wal-Hijra",
8
+ "Babbar Khalsa International",
9
+ "Communist Party of the Philippines/New People's Army",
10
+ "ETA",
11
+ "Great Eastern Islamic Raiders' Front",
12
+ "Izz ad-Din al-Qassam Brigades",
13
+ "Hezbollah (Military Wing)",
14
+ "Hizbul Mujahideen",
15
+ "Hofstad Network",
16
+ "Holy Land Foundation for Relief and Development",
17
+ "International Sikh Youth Federation",
18
+ "Islamic State of Iraq and the Levant",
19
+ "Khalistan Zindabad Force",
20
+ "Kurdistan Freedom Falcons",
21
+ "Kurdistan Workers' Party",
22
+ "Liberation Tigers of Tamil Eelam",
23
+ "National Liberation Army",
24
+ "Palestinian Islamic Jihad",
25
+ "Popular Front for the Liberation of Palestine",
26
+ "Popular Front for the Liberation of Palestine – General Command",
27
+ "Revolutionary Armed Forces of Colombia",
28
+ "Revolutionary People's Liberation Party–Front",
29
+ "Shining Path",
30
+ "Stichting Al Aqsa"
31
+ ]
@@ -0,0 +1,35 @@
1
+ [
2
+ "Akhil Bharat Nepali Ekta Samaj",
3
+ "Al-Badr",
4
+ "al-Qaeda",
5
+ "Al-Umar-Mujahideen",
6
+ "All Tripura Tiger Force",
7
+ "Babbar Khalsa International",
8
+ "Communist Party of India (Marxist–Leninist)",
9
+ "Deendar Anjuman",
10
+ "Dukhtaran-e-Millat",
11
+ "Harkat-ul-Mujahideen",
12
+ "Hizbul Mujahideen",
13
+ "Indian Mujahideen",
14
+ "International Sikh Youth Federation",
15
+ "Islamic State of Iraq and the Levant",
16
+ "Jaish-e-Mohammed",
17
+ "Jamaat-ul-Mujahideen Bangladesh",
18
+ "Kangleipak Communist Party",
19
+ "Kanglei Yawol Kanna Lup",
20
+ "Khalistan Commando Force",
21
+ "Khalistan Zindabad Force",
22
+ "Lashkar-e-Taiba",
23
+ "Liberation Tigers of Tamil Eelam",
24
+ "Manipur People’s Liberation Front",
25
+ "Maoist Communist Centre of India",
26
+ "National Democratic Front of Bodoland",
27
+ "National Liberation Front of Tripura",
28
+ "People's Liberation Army of Manipur",
29
+ "People's Revolutionary Party of Kangleipak",
30
+ "Students Islamic Movement of India",
31
+ "Tamil Nadu Liberation Army",
32
+ "Tamil National Retrieval Troops",
33
+ "United Liberation Front of Assam",
34
+ "United National Liberation Front"
35
+ ]
@@ -0,0 +1,7 @@
1
+ [
2
+ "al-Qaeda",
3
+ "Jundallah",
4
+ "Komalah",
5
+ "Kurdistan Workers' Party",
6
+ "People's Mujahedin of Iran"
7
+ ]
@@ -0,0 +1,13 @@
1
+ [
2
+ "al-Aqsa Foundation",
3
+ "Comite' de Blenfaisance et de Solidarite' avec la Plestine",
4
+ "Force 17",
5
+ "Hamas",
6
+ "Holy Land Foundation for Relief and Development",
7
+ "Islamic State of Iraq and the Levant",
8
+ "Kach and Kahane Chai",
9
+ "Palestine al-muslima",
10
+ "Palestine Liberation Front",
11
+ "Palestinian Relief Development Fund – Interpal",
12
+ "Tanzim"
13
+ ]
@@ -0,0 +1,11 @@
1
+ [
2
+ "al-Qaeda",
3
+ "Aum Shinrikyo",
4
+ "East Turkestan Liberation Organization",
5
+ "Hizb ut-Tahrir",
6
+ "Islamic Movement of Uzbekistan",
7
+ "Kurdistan Workers' Party",
8
+ "Muslim Brotherhood",
9
+ "Party of Free Life of Kurdistan",
10
+ "Taliban"
11
+ ]
@@ -0,0 +1,23 @@
1
+ [
2
+ "al-Gama'a al-Islamiyya",
3
+ "al-Haramain Foundation",
4
+ "Al-Nusra Front",
5
+ "al-Qaeda",
6
+ "al-Qaeda in the Islamic Maghreb",
7
+ "Osbat al-Ansar",
8
+ "Caucasus Emirate",
9
+ "Egyptian Islamic Jihad",
10
+ "Hizb ut-Tahrir",
11
+ "Islamic Jihad – Jamaat Mujahideen",
12
+ "Islamic Movement of Uzbekistan",
13
+ "Islamic State of Iraq and the Levant",
14
+ "Jamiat al-Islah al-Idzhtimai",
15
+ "Jamiat-e Islami",
16
+ "Jund al-Sham",
17
+ "Lashkar-e-Taiba",
18
+ "Muslim Brotherhood",
19
+ "People's Congress of Ichkeria and Dagestan",
20
+ "Society of the Revival of Islamic Heritage",
21
+ "Supreme Military Majlis ul-Shura of the United Mujahideen Forces of Caucasus",
22
+ "Taliban"
23
+ ]
@@ -0,0 +1,9 @@
1
+ [
2
+ "Al-Nusra Front",
3
+ "al-Qaeda in the Arabian Peninsula",
4
+ "East Turkestan Liberation Organization",
5
+ "Hezbollah Al-Hejaz",
6
+ "Houthis",
7
+ "Islamic State of Iraq and the Levant",
8
+ "Muslim Brotherhood"
9
+ ]
@@ -0,0 +1,15 @@
1
+ [
2
+ "Al-Nusra Front",
3
+ "Communist Party of Turkey/Marxist–Leninist",
4
+ "Ergenekon",
5
+ "Great Eastern Islamic Raiders' Front",
6
+ "Hezbollah (Turkey)",
7
+ "Hilafet Devleti",
8
+ "Islamic State of Iraq and the Levant",
9
+ "Kurdistan Democratic Party/North",
10
+ "Kurdistan Workers' Party",
11
+ "Marxist–Leninist Communist Party",
12
+ "Revolutionary Party of Kurdistan",
13
+ "Revolutionary People's Liberation Party–Front",
14
+ "Tevhid-Selam (Al-Quds Army)"
15
+ ]
@@ -0,0 +1,4 @@
1
+ [
2
+ "Donetsk People's Republic",
3
+ "Lugansk People's Republic"
4
+ ]