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,855 @@
1
+ {
2
+ "description": "A list of sandwiches.",
3
+ "sandwiches": [
4
+ {
5
+ "description": "Generally served hot, and often eaten with ketchup or brown sauce",
6
+ "origin": "United Kingdom",
7
+ "name": "Bacon"
8
+ },
9
+ {
10
+ "description": "A breakfast sandwich, usually fried or scrambled eggs",
11
+ "origin": null,
12
+ "name": "Bacon, egg and cheese"
13
+ },
14
+ {
15
+ "description": "Canned baked beans on white or brown bread. Sometimes butter is also used.",
16
+ "origin": "United States",
17
+ "name": "Baked bean"
18
+ },
19
+ {
20
+ "description": "Filling is typically meat, but can contain a wide range of foods, including sardines, tofu, pâté, or eggs. Served on an airy baguette with pickled carrots, cilantro and peppers.",
21
+ "origin": "Vietnam",
22
+ "name": "Bánh mì"
23
+ },
24
+ {
25
+ "description": "Served on a bun, with chopped or sliced meat (pulled pork, beef or chicken typically), and sometimes topped with coleslaw",
26
+ "origin": "United States",
27
+ "name": "Barbecue"
28
+ },
29
+ {
30
+ "description": "Ham and cheese, usually mantecoso, which is similar to farmer cheese",
31
+ "origin": "Chile",
32
+ "name": "Barros Jarpa"
33
+ },
34
+ {
35
+ "description": "Beef (usually thin cut steak) and cheese",
36
+ "origin": "Chile",
37
+ "name": "Barros Luco"
38
+ },
39
+ {
40
+ "description": "Melted cheese, roast beef, tomato and pickled cucumber in a hollowed-out French roll",
41
+ "origin": "Brazil",
42
+ "name": "Bauru"
43
+ },
44
+ {
45
+ "description": "Roast beef on a caraway kaiser roll",
46
+ "origin": "United States",
47
+ "name": "Beef on weck"
48
+ },
49
+ {
50
+ "description": "Named for its ingredients: bacon, lettuce and tomato",
51
+ "origin": "United States",
52
+ "name": "BLT"
53
+ },
54
+ {
55
+ "description": "Pre-sliced, sometimes fried bologna sausage between slices of white bread, along with various condiments, such as ketchup, mustard, and mayonnaise.",
56
+ "origin": "United States",
57
+ "name": "Bologna sandwich"
58
+ },
59
+ {
60
+ "description": "Usually grilled on white bread, containing a bratwurst sausage, onions, and a blend of tomato ketchup, mustard, and curry powder",
61
+ "origin": "Austria",
62
+ "name": "Bosna"
63
+ },
64
+ {
65
+ "description": "A convenience dish on a variety of bread rolls, containing such breakfast items as sausages, bacon, white or black pudding, mushrooms, tomatoes, hash browns and fried eggs, often eaten with ketchup or brown sauce,",
66
+ "origin": "United Kingdom and Ireland",
67
+ "name": "Breakfast roll"
68
+ },
69
+ {
70
+ "description": "Typically a scrambled or fried egg, cheese, and a sausage patty or other breakfast meat served on a biscuit or English muffin",
71
+ "origin": "United States",
72
+ "name": "Breakfast"
73
+ },
74
+ {
75
+ "description": "A dated reference to the poor quality of catering on the now-defunct British Rail, refers to any poor-quality sandwich, often stale.",
76
+ "origin": "United Kingdom",
77
+ "name": "British Rail"
78
+ },
79
+ {
80
+ "description": "A soft bread roll containing a ragout-based croquette. It is often eaten with mustard.",
81
+ "origin": "The Netherlands",
82
+ "name": "Broodje kroket"
83
+ },
84
+ {
85
+ "description": "Consists of a spicy patty which is shallow-fried, onions, and chutney or raita in a hamburger or hot dog bun.",
86
+ "origin": "Pakistan",
87
+ "name": "Bun kebab"
88
+ },
89
+ {
90
+ "description": "Single, open-faced, containing butter as the common ingredient, with sweet or savory toppings depending on the meal",
91
+ "origin": "Germany",
92
+ "name": "Butterbrot"
93
+ },
94
+ {
95
+ "description": "Sliced avocado, meat, white cheese, onions and red sauce (salsa roja), on a fluffy sesame-seeded egg roll, originally from the city of Puebla.",
96
+ "origin": "Mexico",
97
+ "name": "Cemita"
98
+ },
99
+ {
100
+ "description": "Thinly sliced churrasco-style steak, or lomito-style pork, with tomatoes, green beans and green chiles, served on a round roll",
101
+ "origin": "Chile",
102
+ "name": "Chacarero"
103
+ },
104
+ {
105
+ "description": "In the United States it is usually made with American cheese, and often served toasted alongside tomato soup or with sliced tomato inside. When toasted (pictured), it is commonly referred to as a \"grilled cheese sandwich\".",
106
+ "origin": null,
107
+ "name": "Cheese"
108
+ },
109
+ {
110
+ "description": "Slices of cheese (typically Cheddar) and pickle (a sweet, vinegary chutney with the most popular brand being Branston), sandwiched between two slices of bread.",
111
+ "origin": "United Kingdom",
112
+ "name": "Cheese and pickle"
113
+ },
114
+ {
115
+ "description": "Thinly sliced steak and melted cheese in a long roll, also known as a Philadelphia or Philly cheesesteak.",
116
+ "origin": "United States (Philadelphia, Pennsylvania)",
117
+ "name": "Cheesesteak"
118
+ },
119
+ {
120
+ "description": "A sandwich prepared with chicken salad as a filling.",
121
+ "origin": null,
122
+ "name": "Chicken salad"
123
+ },
124
+ {
125
+ "description": "Chickpea salad is a vegan sandwich filling that has a texture similar to tuna salad. Chickpea salad consists of mashed up chickpeas, vegenaise, onions, and other seasonings. Some versions also include tuna.",
126
+ "origin": "United States",
127
+ "name": "Chickpea salad"
128
+ },
129
+ {
130
+ "description": "A hamburger, with the patty topped with chili con carne",
131
+ "origin": "United States",
132
+ "name": "Chili burger"
133
+ },
134
+ {
135
+ "description": "Sliced white bread (or a large, flat bread roll) filled with chips usually sprinkled with salt and vinegar or tomato ketchup.",
136
+ "origin": "United Kingdom",
137
+ "name": "Chip butty"
138
+ },
139
+ {
140
+ "description": "Sandwiches prepared with thinly sliced or pressed salted and dried beef. Some chipped beef is smoked to add flavor.",
141
+ "origin": "U.S. military cuisine",
142
+ "name": "Chipped beef"
143
+ },
144
+ {
145
+ "description": "Filet mignon with mozzarella, tomatoes, mayonnaise, and commonly bacon, black or green olives, fried or hardboiled eggs and ham",
146
+ "origin": "Uruguay",
147
+ "name": "Chivito"
148
+ },
149
+ {
150
+ "description": "Grilled chorizo, usually served on a crusty roll with salsa-type condiments, such as pebre, salsa criolla or chimichurri. Morcipán is a variety of this using black pudding or blood sausage.",
151
+ "origin": "Argentina",
152
+ "name": "Choripán"
153
+ },
154
+ {
155
+ "description": "A brown gravy base and chow mein mixture in a hamburger-style bun",
156
+ "origin": "United States",
157
+ "name": "Chow mein"
158
+ },
159
+ {
160
+ "description": "Thinly cut steak, grilled and served on a toasted bun, usually with tomato, avocado and mayonnaise",
161
+ "origin": "Chile",
162
+ "name": "Churrasco"
163
+ },
164
+ {
165
+ "description": "A triple-decker sandwich made with sliced turkey or chicken, bacon, tomato and lettuce, usually contains mayonnaise",
166
+ "origin": "United States",
167
+ "name": "Club"
168
+ },
169
+ {
170
+ "description": "Corned beef with mustard, usually on rye bread",
171
+ "origin": null,
172
+ "name": "Corned beef"
173
+ },
174
+ {
175
+ "description": "Crisps and occasionally pickles on white bread",
176
+ "origin": "United Kingdom",
177
+ "name": "Crisp"
178
+ },
179
+ {
180
+ "description": "A grilled ham and cheese (typically Emmental or Gruyère) sandwich, sometimes coated in a mornay or béchamel sauce",
181
+ "origin": "France",
182
+ "name": "Croque-monsieur"
183
+ },
184
+ {
185
+ "description": "Ham, roasted pork, Swiss cheese, pickles, mustard, and sometimes Genoa salami on Cuban bread, usually pressed and warmed in a plancha",
186
+ "origin": "United States (Tampa, Florida) and Cuba",
187
+ "name": "Cuban"
188
+ },
189
+ {
190
+ "description": "Two thin slices of crustless, lightly buttered white bread, containing paper-thin slices of peeled cucumber",
191
+ "origin": "United Kingdom",
192
+ "name": "Cucumber"
193
+ },
194
+ {
195
+ "description": "Spicy cudighi (a Michigan variety of Cotechino Italian sausage), on a long, hard roll, often topped with mozzarella and tomato sauce",
196
+ "origin": "Italy",
197
+ "name": "Cudighi"
198
+ },
199
+ {
200
+ "description": "Multiple layers containing a wide variety of meats and condiments, named for Dagwood Bumstead of the comic strip Blondie",
201
+ "origin": "United States",
202
+ "name": "Dagwood"
203
+ },
204
+ {
205
+ "description": "Type of sandwich that may be ordered at a deli, choices include type of bread (toasted or untoasted,) type of meat (cold cut), type of sliced cheese, vegetable fillings (lettuce, tomato, onion, etc.) and condiments",
206
+ "origin": null,
207
+ "name": "Deli sandwich"
208
+ },
209
+ {
210
+ "description": "A sandwich containing a Denver omelette",
211
+ "origin": "United States",
212
+ "name": "Denver"
213
+ },
214
+ {
215
+ "description": "Doner kebab is meat cooked on a vertical spit, normally veal or beef but also may be a mixture of these with lamb, and sometimes chicken that may be served wrapped in a flatbread such as lavash or pita or as a sandwich.",
216
+ "origin": "Turkey",
217
+ "name": "Doner kebab"
218
+ },
219
+ {
220
+ "description": "Chopped or shredded, savory donkey meat in a bun, sold in Baoding, Hebei Province as street food, and also in high-end restaurants",
221
+ "origin": "China",
222
+ "name": "Donkey burger"
223
+ },
224
+ {
225
+ "description": "Two flat fried bara (bread), containing curried chickpeas or garbanzo beans",
226
+ "origin": "Trinidad and Tobago",
227
+ "name": "Doubles"
228
+ },
229
+ {
230
+ "description": "Made of ground beef, tomato sauces, spices and many onions and peppers. It is a popular food served at local family gatherings and fund raising benefits, usually made in large quantities.",
231
+ "origin": "United States (Woonsocket, Rhode Island)",
232
+ "name": "Dynamite"
233
+ },
234
+ {
235
+ "description": "On a piece of dark rye bread, a layer of leverpostej, topped with a slice of salt beef and a slice of meat aspic, topped with raw onion rings and garden cress.",
236
+ "origin": "Denmark",
237
+ "name": "Dyrlægens natmad"
238
+ },
239
+ {
240
+ "description": "Peanut butter, banana, and bacon inside of two slices of bread",
241
+ "origin": "United States",
242
+ "name": "Elvis sandwich"
243
+ },
244
+ {
245
+ "description": "Generic sandwich: This contains eggs, usually sliced hard boiled eggs or egg salad, but may be made with fried or (more rarely) scrambled egg, topped with the local roe spread, locally called kaviar.\nEgg salad sandwich: A chopped egg mixed with mayonaise.\nEggs Benedict is an open-faced sandwich consisting of an English muffin topped with meat, eggs, and hollandaise sauce.",
246
+ "origin": "Wordwide",
247
+ "name": "Egg"
248
+ },
249
+ {
250
+ "description": "White bread with nonpareils (= 'sprinkles' (U.S.) or 'hundreds and thousands' (U.K.)) on a spread of butter. Often cut into squares or triangles.",
251
+ "origin": "Australia and New Zealand",
252
+ "name": "Fairy bread"
253
+ },
254
+ {
255
+ "description": "Deep-fried balls of ground, seasoned chickpeas topped with salad vegetables, hot sauce, tahini-based sauces, and pickled vegetables, wrapped in or added to the pocket of a split-open pita bread.",
256
+ "origin": "Middle East",
257
+ "name": "Falafel"
258
+ },
259
+ {
260
+ "description": "Crusty bread rolls filled with fish (most commonly Bismarck or soused herring) and onions",
261
+ "origin": "Germany",
262
+ "name": "Fischbrötchen"
263
+ },
264
+ {
265
+ "description": "Consists of a single warmed, hollowed-out loaf of bread filled with one jar of creamy peanut butter, one jar of grape jelly, and a pound of bacon. In 1976, Elvis Presley and some of his friends flew to Colorado to consume them.",
266
+ "origin": "Colorado, United States",
267
+ "name": "Fool's Gold Loaf"
268
+ },
269
+ {
270
+ "description": "Peanut butter and marshmallow creme. Pictured is a fluffernutter sandwich prior to being assembled.",
271
+ "origin": "United States",
272
+ "name": "Fluffernutter"
273
+ },
274
+ {
275
+ "description": "Wet-cured ham, linguiça, fresh sausage (chipolata), steak or other roast meat, topped with melted cheese, a hot thick tomato, and beer sauce",
276
+ "origin": "Portugal",
277
+ "name": "Francesinha"
278
+ },
279
+ {
280
+ "description": "A bun with wet-cured ham, linguiça, and cheese, sauced with butter or margarine, piri-piri, and port wine, whiskey, cognac or brandy",
281
+ "origin": "Portugal",
282
+ "name": "Francesinha poveira"
283
+ },
284
+ {
285
+ "description": "Thinly sliced roast beef on a baguette, served hot, usually au jus (with juice)",
286
+ "origin": "United States",
287
+ "name": "French dip"
288
+ },
289
+ {
290
+ "description": "Sliced calves' brain on sliced bread",
291
+ "origin": "United States",
292
+ "name": "Fried brain"
293
+ },
294
+ {
295
+ "description": "A traditional Maltese sandwich made on a large round piece of Maltese ftira bread, topped with tomato paste, tuna, capers and red onions.",
296
+ "origin": "Malta",
297
+ "name": "Ftira"
298
+ },
299
+ {
300
+ "description": "A deli-style sandwich similar to the hoagie, often contains french fries, with other variations, prepared with masala steak, chicken, polony, Vienna sausages, calamari, fish, or chargrilled steak",
301
+ "origin": "South Africa",
302
+ "name": "Gatsby"
303
+ },
304
+ {
305
+ "description": "Half section of Italian or French bread with garlic butter, containing ham, provel or provolone cheese, topped with paprika, then toasted",
306
+ "origin": "Saint Louis, Missouri, United States",
307
+ "name": "Gerber"
308
+ },
309
+ {
310
+ "description": "A tamale inserted in a Mexican bread, bolillo, easy to find in Mexico City streets in the morning, also called torta de tamal",
311
+ "origin": "Mexico (Mexico City)",
312
+ "name": "Guajolota"
313
+ },
314
+ {
315
+ "description": "\"Pita gyro\" or \"psomaki gyro\", depending on the type of bread used, includes meat roasted on a vertical spit, with tomato, raw, often red onion and optional yogurt sauce, wrapped in pita or sandwich bread.",
316
+ "origin": "Greece",
317
+ "name": "Gyro"
318
+ },
319
+ {
320
+ "description": "Chocolate sprinkles or flakes usually served on buttered bread",
321
+ "origin": "The Netherlands",
322
+ "name": "Hagelslag or vlokken"
323
+ },
324
+ {
325
+ "description": "Ham, often with mustard",
326
+ "origin": null,
327
+ "name": "Ham"
328
+ },
329
+ {
330
+ "description": "A common sandwich prepared with ham and sliced cheese. Additional ingredients may include lettuce, tomato, mayonnaise and other ingredients.",
331
+ "origin": null,
332
+ "name": "Ham and cheese"
333
+ },
334
+ {
335
+ "description": "Sliced Danish canned ham with sliced scrabbled egg sheet in a halved-sweet bun",
336
+ "origin": "Hong Kong",
337
+ "name": "Ham and egg bun"
338
+ },
339
+ {
340
+ "description": "A ground beef patty, often with vegetables, sauces and other meats, usually on a round bun.",
341
+ "origin": "United States",
342
+ "name": "Hamburger"
343
+ },
344
+ {
345
+ "description": "A hot dog wrapped in a beef patty, deep-fried, then covered with chili, a few french fries, and a fried egg",
346
+ "origin": null,
347
+ "name": "Hamdog"
348
+ },
349
+ {
350
+ "description": "A thick-sliced, toasted, open-faced sandwich, it usually contains hamburger patties or ham, but other meat, such as deep-fried pork tenderloin, grilled or fried chicken breast, and fried fish filets, can be used. The meat is topped with french fries and covered with a cheese sauce.",
351
+ "origin": "Springfield, Illinois, United States",
352
+ "name": "Horseshoe"
353
+ },
354
+ {
355
+ "description": "Open-faced with turkey and bacon, topped with mornay sauce, and baked or broiled",
356
+ "origin": "United States (Louisville, Kentucky)",
357
+ "name": "Hot brown"
358
+ },
359
+ {
360
+ "description": "Coarsely shredded or sliced chicken, sandwiched between two pieces of sliced bread, and completely covered with gravy.",
361
+ "origin": "Quebec, Canada",
362
+ "name": "Hot chicken"
363
+ },
364
+ {
365
+ "description": "A cooked sausage, traditionally grilled or steamed and served in a sliced bun as a sandwich.",
366
+ "origin": "Germany",
367
+ "name": "Hot dog"
368
+ },
369
+ {
370
+ "description": "Often open-faced, sliced turkey on white bread drenched in turkey gravy, often served with mashed potatoes. These are sometimes served at Hofbrau-style restaurants.",
371
+ "origin": "United States",
372
+ "name": "Hot turkey"
373
+ },
374
+ {
375
+ "description": "Vanilla ice cream between thin biscuits, cookies or slices of cake, normally chocolate",
376
+ "origin": "United States",
377
+ "name": "Ice cream"
378
+ },
379
+ {
380
+ "description": "Thin slices of seasoned, juicy roast beef, often garnished with giardiniera or Italian sweet peppers, on a dense, long Italian-style roll",
381
+ "origin": "United States (Chicago, Illinois)",
382
+ "name": "Italian beef"
383
+ },
384
+ {
385
+ "description": "Not a sandwich, it refers to a set of toppings to put in a sandwich, refers to the colors of the Italian flag: red (tomato), white (mayonnaise) and green (avocado)",
386
+ "origin": "Chile",
387
+ "name": "Italiano"
388
+ },
389
+ {
390
+ "description": "Buttered bread, with jam (traditionally strawberry), normally eaten at lunchtime or as a quick snack, may also be eaten at breakfast or for high tea",
391
+ "origin": "United Kingdom",
392
+ "name": "Jam"
393
+ },
394
+ {
395
+ "description": "A French baguette with butter and ham. Also known as \"Parisien\", it is the most popular sandwich in France.",
396
+ "origin": "France",
397
+ "name": "Jambon-beurre"
398
+ },
399
+ {
400
+ "description": "Meat, cheese, lettuce and tomato, between flattened, fried green plantains (instead of bread), with garlic-flavored mayonnaise",
401
+ "origin": "United States",
402
+ "name": "Jibarito"
403
+ },
404
+ {
405
+ "description": "A cheeseburger with the cheese inside the meat patty rather than on top",
406
+ "origin": "United States",
407
+ "name": "Jucy Lucy"
408
+ },
409
+ {
410
+ "description": "Breaded, deep-fried pork cutlet (tonkatsu)",
411
+ "origin": "Japan",
412
+ "name": "Katsu sando"
413
+ },
414
+ {
415
+ "description": "Lamb or goat intestines, containing seasoned offal",
416
+ "origin": null,
417
+ "name": "Kokoretsi"
418
+ },
419
+ {
420
+ "description": "Buttered brown bread with smoked pork sausage (Kottenwurst), fresh onion rings and spicy mustard",
421
+ "origin": "Germany",
422
+ "name": "Kottenbutter"
423
+ },
424
+ {
425
+ "description": "Leberkäse is a meatloaf-like dish which, despite the name, contains neither liver nor cheese. It is commonly served on a Kaiser roll with mustard.",
426
+ "origin": "Southern Germany, Austria and Switzerland",
427
+ "name": "Leberkäse"
428
+ },
429
+ {
430
+ "description": "Lettuce and mayonnaise",
431
+ "origin": null,
432
+ "name": "Lettuce"
433
+ },
434
+ {
435
+ "description": "They are typically prepared with buttered rye bread, Limburger cheese, sliced onion and mustard. Pictured is Limburger cheese and bread.",
436
+ "origin": null,
437
+ "name": "Limburger sandwich"
438
+ },
439
+ {
440
+ "description": "Lobster meat tossed with either mayonnaise (\"cold\") or drawn butter (\"hot\") stuffed into a slit opening at the top of a grilled bread roll or hot dog bun.",
441
+ "origin": "Northeastern United States",
442
+ "name": "Lobster roll"
443
+ },
444
+ {
445
+ "description": "Lox on a bagel with cream cheese, thinly sliced onion, capers and possibly sliced tomato",
446
+ "origin": "United States",
447
+ "name": "Lox"
448
+ },
449
+ {
450
+ "description": "A hamburger or cheeseburger with a glazed doughnuts instead of a bun",
451
+ "origin": "United States",
452
+ "name": "Luther burger"
453
+ },
454
+ {
455
+ "description": "Marmite spread thinly with butter or margarine onto toast or bread",
456
+ "origin": "United Kingdom",
457
+ "name": "Marmite"
458
+ },
459
+ {
460
+ "description": "Filet américain (steak tartare) with Worcestershire sauce, pickles, onions, peppers and martino sauce",
461
+ "origin": "Belgium",
462
+ "name": "Martino"
463
+ },
464
+ {
465
+ "description": "Meatballs in marinara sauce, with melted Parmesan or provolone cheese, on a long bun or section of Italian loaf. Might include Italian-style accompaniments such as bell peppers, basil, or Italian-dressed lettuce",
466
+ "origin": "United States",
467
+ "name": "Meatball"
468
+ },
469
+ {
470
+ "description": "Roast pork, ham, mustard, Swiss cheese, and dill pickles served on sweet bread.",
471
+ "origin": "Cuba",
472
+ "name": "Medianoche"
473
+ },
474
+ {
475
+ "description": "French fries and fried meat with sauce on a demi-baguette.",
476
+ "origin": "Belgium",
477
+ "name": "Mitraillette"
478
+ },
479
+ {
480
+ "description": "A generic sandwich containing a filling, and a layer of cheese, grilled or fried until the cheese is melted",
481
+ "origin": "United States",
482
+ "name": "Melt"
483
+ },
484
+ {
485
+ "description": "Open sandwich consisting of a sliced bun, topped with Mett (seasoned minced pork without bacon), frequently with a garnish of raw onion rings or diced raw onion",
486
+ "origin": "Germany",
487
+ "name": "Mettbrötchen"
488
+ },
489
+ {
490
+ "description": "A typical food of Mexico and a kind of bread in Spain. In Mexico, Molletes are prepared with melted cheese and beans with other ingredients, such as salsa, ham or bacon.",
491
+ "origin": "Spain and Mexico",
492
+ "name": "Mollete"
493
+ },
494
+ {
495
+ "description": "Minute and usually grilled, could be filled with anything. Some bars offer a variety of 200 different types of these sandwiches.[citation needed]",
496
+ "origin": "Spain",
497
+ "name": "Montadito"
498
+ },
499
+ {
500
+ "description": "Sliced ham and cheese (usually Emmental or Gruyère) between slices of French toast and batter-fried. In some regions it is sprinkled with powdered sugar and served with jelly or jam). In other regions (New England), it is served savory with French mustard and no powdered sugar.",
501
+ "origin": "United States",
502
+ "name": "Monte Cristo"
503
+ },
504
+ {
505
+ "description": "A sandwich made from cured and smoked brisket with yellow mustard, usually on rye bread.",
506
+ "origin": "Canada",
507
+ "name": "Montreal-style smoked meat"
508
+ },
509
+ {
510
+ "description": "Any sandwich containing mortadella, a large Italian sausage",
511
+ "origin": "Brazil",
512
+ "name": "Mortadella"
513
+ },
514
+ {
515
+ "description": "A hot dog bun containing a Chicago-style corn-roll tamale, topped with chili",
516
+ "origin": "United States",
517
+ "name": "Mother-in-law"
518
+ },
519
+ {
520
+ "description": "Originated in New Orleans' Italian-American community, meats, cheeses, and olive salad on a round bun",
521
+ "origin": "United States",
522
+ "name": "Muffuletta"
523
+ },
524
+ {
525
+ "description": "Biscuit smeared with butter and topped with sugared aniseed balls, traditionally served in celebration of a birth",
526
+ "origin": "The Netherlands",
527
+ "name": "Beschuit met muisjes"
528
+ },
529
+ {
530
+ "description": "A sandwich that consists of hamburger made with naan bread. Sometimes ham is used instead of beef.",
531
+ "origin": "Pakistan",
532
+ "name": "Naan sandwich"
533
+ },
534
+ {
535
+ "description": "Consists of a single slice of bread with one or more food items on top. See also pizza.",
536
+ "origin": "Nordic",
537
+ "name": "Open-faced sandwich"
538
+ },
539
+ {
540
+ "description": "Made with pambazo bread dipped in a red guajillo pepper sauce and filled with potatoes with chorizo.",
541
+ "origin": "Mexico",
542
+ "name": "Pambazo"
543
+ },
544
+ {
545
+ "description": "Round bread (bread bagnats) opened in two, rub each half with a clove of garlic, moisten with vinegar, olive oil, salt and pepper, the choice can be added green salad, tomatoes, hard boiled eggs, tuna, anchovies, cucumbers, fava beans, small fresh artichokes, green peppers, radishes, fresh spring onions, basil and black olives of Nice. Serve chilled.",
546
+ "origin": "France",
547
+ "name": "Pan-bagnat"
548
+ },
549
+ {
550
+ "description": "In Italy, panino is the word for a sandwich made from bread other than sliced bread, in which case Italians call it a tramezzino. Examples of bread types used are ciabatta, rosetta and baguette. The bread is cut horizontally and filled with deli ingredients such as salami, ham, cheese, mortadella, or other food, and sometimes served warm after having been pressed by a warming grill. In the United States, United Kingdom and Canada, the term panini has been adopted to refer to a pressed and toasted sandwich; there is widespread availability and use of sandwich presses, often known as \"panini presses\" or \"toasted sandwich makers.\"",
551
+ "origin": "Italy",
552
+ "name": "Panini"
553
+ },
554
+ {
555
+ "description": "Consists of a hamburger patty, pieces of sautéed or grilled onion and Cheddar or Swiss cheese between two slices of bread",
556
+ "origin": "United States",
557
+ "name": "Patty melt"
558
+ },
559
+ {
560
+ "description": "Jam is often used in place of jelly. Also known as a 'PB&J'.",
561
+ "origin": "United States",
562
+ "name": "Peanut butter and jelly"
563
+ },
564
+ {
565
+ "description": "A simple Argentine sandwich, traditionally filled with cheese, cured meat, tomato and mayonnaise. The term pebete actually refers to the bread used for the sandwich; a soft oval bun with a spongy inside, and a thin toasted crust.",
566
+ "origin": "Argentina",
567
+ "name": "Pebete"
568
+ },
569
+ {
570
+ "description": "A stuffed and fried bread roll (sometimes called stuffed pistolettes) in the Cajun areas around Lafayette. Also refers to a type of submarine shaped bread about half the size of a baguette that is popular in New Orleans for Vietnamese bánh mì and other sandwiches.",
571
+ "origin": null,
572
+ "name": "Pistolette"
573
+ },
574
+ {
575
+ "description": "A patty dish popular in the Balkan region of Southeastern Europe, a sandwich utilizes the Pljeskavica patty and bread.",
576
+ "origin": "Serbia",
577
+ "name": "Pljeskavica"
578
+ },
579
+ {
580
+ "description": "A cold meal originating in the United Kingdom, commonly served in pubs. Its core components are (cheddar) cheese, ploughman's pickle and bread. It is traditionally eaten with beer.",
581
+ "origin": "United Kingdom",
582
+ "name": "Ploughman's lunch"
583
+ },
584
+ {
585
+ "description": "A crusty bread loaf typically filled with fried seafood or roast beef.",
586
+ "origin": "United States",
587
+ "name": "Po' boy"
588
+ },
589
+ {
590
+ "description": "Kielbasa sausage in a bun, covered with french fries, barbecue sauce (or hot sauce), and coleslaw",
591
+ "origin": "United States",
592
+ "name": "Polish boy"
593
+ },
594
+ {
595
+ "description": "A half-inch slice of thick sausage, usually with diced red or sweet onion, sliced pickles, ketchup, mustard, and sometimes mayonnaise, on white bread",
596
+ "origin": "Finland",
597
+ "name": "Porilainen"
598
+ },
599
+ {
600
+ "description": "A popular dish in Macau, the bun is extremely crisp outside and very soft inside, and a freshly fried pork chop is filled into the bun horizontally.",
601
+ "origin": "Macau",
602
+ "name": "Pork chop bun"
603
+ },
604
+ {
605
+ "description": "The Pork Tenderloin sandwich features a thin, tenderized deep fried pork loin,usually served on a bun.",
606
+ "origin": "United States",
607
+ "name": "Pork tenderloin"
608
+ },
609
+ {
610
+ "description": null,
611
+ "origin": "Australia",
612
+ "name": "Prawn roll"
613
+ },
614
+ {
615
+ "description": "Selection of grilled meats topped with french fries, coleslaw, and tomato on Italian bread",
616
+ "origin": "Pittsburgh, Pennsylvania, United States",
617
+ "name": "Primanti"
618
+ },
619
+ {
620
+ "description": "Ham and turkey topped with broiled cheese. Sometimes includes bacon and tomato.",
621
+ "origin": "United States (St. Louis)",
622
+ "name": "Prosperity Sandwich"
623
+ },
624
+ {
625
+ "description": "This sandwich can be made in a pan. Margarine on the outside, pizza sauce and fillings on the inside. The term \"pudgy pie\" is sometimes used to refer to pie irons, a gadget used for campfire cooking.",
626
+ "origin": "United States",
627
+ "name": "Pudgy Pie"
628
+ },
629
+ {
630
+ "description": "Form of barbecue in which pork is cooked using a slow cook method until the meat becomes tender enough that it can be \"pulled\", or easily broken into individual pieces",
631
+ "origin": "Southern United States",
632
+ "name": "Pulled pork sandwich"
633
+ },
634
+ {
635
+ "description": "Corned beef, sauerkraut, Swiss cheese, topped with Russian or Thousand Island dressing, on rye bread, then grilled",
636
+ "origin": "United States",
637
+ "name": "Reuben"
638
+ },
639
+ {
640
+ "description": "Basic ingredients are eggs, chopped onions, sambal paste, salt and pepper cooked as an omelette with the bread added on top before it's fully cooked. Many variation includes canned sardines, chicken, beef, mutton. Garnished with mayo, chili sauce and cheese slice.",
641
+ "origin": "Malaysia",
642
+ "name": "Roti john"
643
+ },
644
+ {
645
+ "description": "Stewed pork, chopped finely, and stuffed in mo, a kind of flatbread",
646
+ "origin": "China",
647
+ "name": "Rou jia mo"
648
+ },
649
+ {
650
+ "description": "A bun filled with a mixture of (usually) loose meat, cabbage, and cheese. The fillings are baked inside the bread, similar to a kolache. Popular in the Midwestern United States, especially Nebraska.",
651
+ "origin": "United States",
652
+ "name": "Runza"
653
+ },
654
+ {
655
+ "description": "Alternating layers of bread and filling frosted to resemble a layer cake",
656
+ "origin": "United States",
657
+ "name": "Sandwich loaf"
658
+ },
659
+ {
660
+ "description": "Made with single-, double- or triple-layered, buttered, thin white bread with crust removed, toasted or untoasted, contains thinly sliced meat and may include ham, eggs, cheese, tomatoes, green peppers, lettuce, olives, and sometimes other vegetables, even asparagus.",
661
+ "origin": "Argentina",
662
+ "name": "De miga"
663
+ },
664
+ {
665
+ "description": "Especially noted from Beigel Bake in Brick Lane, east London.",
666
+ "origin": "United Kingdom",
667
+ "name": "Salt beef bagel"
668
+ },
669
+ {
670
+ "description": "Sausages, may be pork, beef or vegetarian. Served with red sauce, brown sauce or no sauce at all.",
671
+ "origin": "United Kingdom and Germany",
672
+ "name": "Sausage"
673
+ },
674
+ {
675
+ "description": "Flat bread with fillings of beef, spinach, tomatoes, cucumber, tahini sauce wrapped and grilled. Other toppings to can be added.",
676
+ "origin": "The Levant",
677
+ "name": "Shawarma"
678
+ },
679
+ {
680
+ "description": "Essentially a miniature hamburger about three inches in diameter, but may contain other ingredients besides a hamburger patty",
681
+ "origin": "United States",
682
+ "name": "Slider"
683
+ },
684
+ {
685
+ "description": "Ground meat, usually beef, cooked with seasoned tomato sauce and served on a round bun.",
686
+ "origin": "United States",
687
+ "name": "Sloppy joe"
688
+ },
689
+ {
690
+ "description": "A triple decker rye bread sandwich made with one or more types of sliced deli meat, such as turkey, ham, pastrami, corned beef, roast beef, or sliced beef tongue, along with Swiss cheese, coleslaw, and Russian dressing",
691
+ "origin": "United States",
692
+ "name": "Sloppy joe (New Jersey)"
693
+ },
694
+ {
695
+ "description": "A square of thin chocolate bar topped with a toasted marshmallow between two squares of graham cracker",
696
+ "origin": "United States",
697
+ "name": "S'more"
698
+ },
699
+ {
700
+ "description": "Multiple layers of white or light rye bread containing creamy fillings, such as egg and mayonnaise, liver paté, olives, shrimp, ham, various cold cuts, caviar, tomato, cucumber, cheese and smoked salmon",
701
+ "origin": "Sweden",
702
+ "name": "Smörgåstårta"
703
+ },
704
+ {
705
+ "description": "Open-faced, buttered dark rye bread with cold cuts, pieces of meat or fish, cheese or spreads",
706
+ "origin": "Denmark",
707
+ "name": "Smørrebrød"
708
+ },
709
+ {
710
+ "description": "An open-faced sandwich on rugbrød, with smoked herring, chives and a raw egg yolk",
711
+ "origin": "Denmark",
712
+ "name": "Sol over Gudhjem"
713
+ },
714
+ {
715
+ "description": "A sizzling skewer of lamb, beef, pork or chicken roasted on a vertical grill, shaved off the spit, and marinade ranging from hot barbecue to sweet, all laid out on a rolled pita bread, sprinkled with your choice of lettuce, tomato, cheese, red onion, oregano and doused with tzatziki sauce.",
716
+ "origin": "Greece",
717
+ "name": "Souvlaki"
718
+ },
719
+ {
720
+ "description": "Marinated cubes of chicken, pork, lamb, veal, venison or beef, grilled on a spit, and served in a bun",
721
+ "origin": "United States",
722
+ "name": "Spiedie"
723
+ },
724
+ {
725
+ "description": "An egg foo young patty (containing bean sprouts and minced white onions), dill pickle slices, white onion, mayonnaise, lettuce, and tomato on white bread",
726
+ "origin": "Saint Louis, Mo, United States",
727
+ "name": "St. Paul"
728
+ },
729
+ {
730
+ "description": "A grilled, over-stuffed submarine roll, containing shaved steak, and topped with salami, melted provolone, sautéed onions, and bell peppers.",
731
+ "origin": "United States",
732
+ "name": "Steak bomb"
733
+ },
734
+ {
735
+ "description": "Prepared with steak that has been broiled, fried, grilled, barbecued or seared using steel grates or gridirons then served on bread or a roll. Steak sandwiches may include toppings such as cheese, onions, mushrooms, bell peppers, hot peppers, tomatoes, and in some instances fried eggs, cole slaw, and french fries.",
736
+ "origin": "United States",
737
+ "name": "Steak"
738
+ },
739
+ {
740
+ "description": "A generic sandwich served on a long French or Italian roll which may contain a wide variety of sliced meats, vegetables, and condiments, including lettuce, tomato, sweet peppers, onions, olives, and/or mushrooms. Also known regionally as a hero, a hoagie, a grinder, or a zep, among other names. In the United Kingdom it is named a baguette, after the French bread used to make it.",
741
+ "origin": "United States",
742
+ "name": "Submarine/Sub sandwich/Baguette"
743
+ },
744
+ {
745
+ "description": "Common in Iowa, consists of a mixture of unseasoned ground beef and sauteed onions, sometimes topped with pickles, ketchup and mustard, on a bun",
746
+ "origin": "United States",
747
+ "name": "Tavern"
748
+ },
749
+ {
750
+ "description": "Thinly sliced white bread with crusts removed, lightly buttered, containing a light spread of cream cheese or mayonnaise mixture, and often radishes, cucumber, asparagus, or watercress. Other fillings may be pimento cheese, ham with mustard, smoked salmon, fruit jam, curried chicken, and egg salad.",
751
+ "origin": "United Kingdom",
752
+ "name": "Tea"
753
+ },
754
+ {
755
+ "description": "Contains hot sopressata, capicola, and primadonna cheese, on a ciabatta roll, grilled, with balsamic vinegar, extra virgin olive oil, roasted red peppers, and sliced hot cherry peppers",
756
+ "origin": "United States",
757
+ "name": "The Scooch"
758
+ },
759
+ {
760
+ "description": "Vegan version of the BLT: Smoky baked tempeh, lettuce, tomato and avocado served sourdough toasted bread",
761
+ "origin": "United States",
762
+ "name": "TLT (Tempeh, Lettuce, and Tomato)"
763
+ },
764
+ {
765
+ "description": "A thin slice of toast between two thin slices of bread with a layer of butter, and adding salt and pepper to taste.",
766
+ "origin": "UK",
767
+ "name": "Toast"
768
+ },
769
+ {
770
+ "description": "A slice of toast with ham, a maraschino cherry in the middle of a pineapple slice, and cheese, grilled from above, so the cheese starts to melt",
771
+ "origin": "Germany",
772
+ "name": "Toast Hawaii"
773
+ },
774
+ {
775
+ "description": "Two slices of bread with cheddar-like cheese (and sometimes ham) in between, which is then toasted or grilled",
776
+ "origin": "Australia",
777
+ "name": "Toastie"
778
+ },
779
+ {
780
+ "description": "Tofu with veggies. Typically broiled or baked tofu.",
781
+ "origin": "United States",
782
+ "name": "Tofu Sandwich"
783
+ },
784
+ {
785
+ "description": "Sautéed beef tongue and scrambled eggs, served open-faced ada pav",
786
+ "origin": null,
787
+ "name": "Tongue toast"
788
+ },
789
+ {
790
+ "description": "Round roll stuffed with sliced meat, sauce, and other ingredients, often made ahead and tightly wrapped to meld the filling with the bread.",
791
+ "origin": "México",
792
+ "name": "Torta"
793
+ },
794
+ {
795
+ "description": "Birote bread (bolillo) sliced open on one side, and filled with chopped, fried pork, and sometimes chicken or shredded meat, beans and cheese, served submerged in a sauce made mostly of a dried chile de árbol.",
796
+ "origin": "México (Guadalajara)",
797
+ "name": "Torta ahogada"
798
+ },
799
+ {
800
+ "description": "Triangular white bread with the crusts removed, with fillings such as tuna and olive and prosciutto, served in Italian bars throughout the day",
801
+ "origin": "Italy",
802
+ "name": "Tramezzino"
803
+ },
804
+ {
805
+ "description": "Although there are numerous variations, the main distinction is a combination of three meats, typically grilled, such as beef (usually churrasco steak or cube steak), roast pork (pernil), chicken, and ham. Condiments may include some combination of mustard, ketchup, and mayonnaise, often combined to create a “special” sauce. Popular toppings include thin crispy fried potato sticks or shoe string potatoes, thinly sliced cabbage, lettuce, onion, tomato, pickles, and Swiss cheese. The sandwich is often finished in a sandwich press until bread is toasted.",
806
+ "origin": "Puerto Rico",
807
+ "name": "Tripleta"
808
+ },
809
+ {
810
+ "description": "Usually made with tuna salad and includes ingredients such as mayonnaise and celery. Other common variations include the tuna boat and tuna melt.",
811
+ "origin": "United States",
812
+ "name": "Tuna"
813
+ },
814
+ {
815
+ "description": "A potato fritter coated in chickpea flour (batata vada) in a bun",
816
+ "origin": "India",
817
+ "name": "Vada pav"
818
+ },
819
+ {
820
+ "description": "Vegemite is a dark brown Australian food paste made from used brewers' yeast extract, a by-product of beer manufacturing, various vegetables, wheat and spice additives. It is a spread for sandwiches, toast, crumpets and cracker biscuits as well as a filling for pastries.",
821
+ "origin": "Australia",
822
+ "name": "Vegemite"
823
+ },
824
+ {
825
+ "description": "Many types of vegetables are used to prepare vegetable sandwiches.",
826
+ "origin": null,
827
+ "name": "Vegetable"
828
+ },
829
+ {
830
+ "description": "A hot melted cheese sauce, poured over slices (or other pieces) of toasted bread. Or the hot cheese sauce may be served in a bowl accompanied by the toast.",
831
+ "origin": "United Kingdom",
832
+ "name": "Welsh rarebit"
833
+ },
834
+ {
835
+ "description": "Flat bread (often a tortilla) tightly wrapped around the sandwich filling with the ends tucked in to form a neat bundle, fillings can vary widely",
836
+ "origin": null,
837
+ "name": "Wrap"
838
+ },
839
+ {
840
+ "description": "A simple and common German sandwich prepared with thin slices of lunch meat or sausage. Sometimes butter is added to add flavor.",
841
+ "origin": "Germany",
842
+ "name": "Wurstbrot (sausage bread)"
843
+ },
844
+ {
845
+ "description": "A hot dog bun stuffed with fried noodles, frequently topped with pickles, such as beni shōga, with mayonnaise",
846
+ "origin": "Japan",
847
+ "name": "Yakisoba-pan"
848
+ },
849
+ {
850
+ "description": "A halved baguette or other bread usually topped with mushrooms and cheese, ham or other meats, and vegetables",
851
+ "origin": "Poland",
852
+ "name": "Zapiekanka"
853
+ }
854
+ ]
855
+ }