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,3688 @@
1
+ {
2
+ "prefixes": [
3
+ {
4
+ "part": "ab-",
5
+ "definition": "away, from"
6
+ },
7
+ {
8
+ "part": "abs-",
9
+ "definition": "away, from"
10
+ },
11
+ {
12
+ "part": "ad-",
13
+ "definition": "movement to, change into, addition or increase"
14
+ },
15
+ {
16
+ "part": "a-",
17
+ "definition": "movement to, change into, addition or increase"
18
+ },
19
+ {
20
+ "part": "ac-",
21
+ "definition": "movement to, change into, addition or increase"
22
+ },
23
+ {
24
+ "part": "af-",
25
+ "definition": "movement to, change into, addition or increase"
26
+ },
27
+ {
28
+ "part": "ag-",
29
+ "definition": "movement to, change into, addition or increase"
30
+ },
31
+ {
32
+ "part": "al-",
33
+ "definition": "movement to, change into, addition or increase"
34
+ },
35
+ {
36
+ "part": "an-",
37
+ "definition": "movement to, change into, addition or increase"
38
+ },
39
+ {
40
+ "part": "ap-",
41
+ "definition": "movement to, change into, addition or increase"
42
+ },
43
+ {
44
+ "part": "at-",
45
+ "definition": "movement to, change into, addition or increase"
46
+ },
47
+ {
48
+ "part": "as-",
49
+ "definition": "movement to, change into, addition or increase"
50
+ },
51
+ {
52
+ "part": "at-",
53
+ "definition": "movement to, change into, addition or increase"
54
+ },
55
+ {
56
+ "part": "ante-",
57
+ "definition": "before, preceding"
58
+ },
59
+ {
60
+ "part": "anti-",
61
+ "definition": "opposing, against, the opposite"
62
+ },
63
+ {
64
+ "part": "ant-",
65
+ "definition": "opposing, against, the opposite"
66
+ },
67
+ {
68
+ "part": "be-",
69
+ "definition": "all over, all around, completely, having, covered with, affect with, cause to be "
70
+ },
71
+ {
72
+ "part": "com-",
73
+ "definition": "with, jointly, completely"
74
+ },
75
+ {
76
+ "part": "co-",
77
+ "definition": "with, jointly, completely"
78
+ },
79
+ {
80
+ "part": "col-",
81
+ "definition": "with, jointly, completely"
82
+ },
83
+ {
84
+ "part": "con-",
85
+ "definition": "with, jointly, completely"
86
+ },
87
+ {
88
+ "part": "cor-",
89
+ "definition": "with, jointly, completely"
90
+ },
91
+ {
92
+ "part": "contra-",
93
+ "definition": "against, opposite"
94
+ },
95
+ {
96
+ "part": "counter-",
97
+ "definition": "opposition, opposite direction"
98
+ },
99
+ {
100
+ "part": "de-",
101
+ "definition": "down, away, completely, removal, reversal"
102
+ },
103
+ {
104
+ "part": "dia-",
105
+ "definition": "through, across"
106
+ },
107
+ {
108
+ "part": "di-",
109
+ "definition": "through, across"
110
+ },
111
+ {
112
+ "part": "dis-",
113
+ "definition": "negation, removal, expulsion"
114
+ },
115
+ {
116
+ "part": "di-",
117
+ "definition": "negation, removal, expulsion"
118
+ },
119
+ {
120
+ "part": "en-",
121
+ "definition": "put into or on, bring into the condition of, intensification"
122
+ },
123
+ {
124
+ "part": "em-",
125
+ "definition": "put into or on, bring into the condition of, intensification"
126
+ },
127
+ {
128
+ "part": "ex-",
129
+ "definition": "out, upward,completely,previous"
130
+ },
131
+ {
132
+ "part": "e-",
133
+ "definition": "out, upward,completely,previous"
134
+ },
135
+ {
136
+ "part": "ef-",
137
+ "definition": "out, upward,completely,previous"
138
+ },
139
+ {
140
+ "part": "hemi-",
141
+ "definition": "half"
142
+ },
143
+ {
144
+ "part": "hyper-",
145
+ "definition": "beyond, more than, more than normal"
146
+ },
147
+ {
148
+ "part": "hypo-",
149
+ "definition": "under"
150
+ },
151
+ {
152
+ "part": "in-",
153
+ "definition": "not, without,in, into, towards, inside"
154
+ },
155
+ {
156
+ "part": "il-",
157
+ "definition": "not, without,in, into, towards, inside"
158
+ },
159
+ {
160
+ "part": "im-",
161
+ "definition": "not, without,in, into, towards, inside"
162
+ },
163
+ {
164
+ "part": "ir-",
165
+ "definition": "not, without,in, into, towards, inside"
166
+ },
167
+ {
168
+ "part": "infra-",
169
+ "definition": "below"
170
+ },
171
+ {
172
+ "part": "inter-",
173
+ "definition": "between, among"
174
+ },
175
+ {
176
+ "part": "intra-",
177
+ "definition": "inside, within"
178
+ },
179
+ {
180
+ "part": "non-",
181
+ "definition": "absence, negation"
182
+ },
183
+ {
184
+ "part": "ob-",
185
+ "definition": "blocking, against, concealing"
186
+ },
187
+ {
188
+ "part": "oc-",
189
+ "definition": "blocking, against, concealing"
190
+ },
191
+ {
192
+ "part": "of-",
193
+ "definition": "blocking, against, concealing"
194
+ },
195
+ {
196
+ "part": "op-",
197
+ "definition": "blocking, against, concealing"
198
+ },
199
+ {
200
+ "part": "out-",
201
+ "definition": "surpassing, exceeding,external, away from"
202
+ },
203
+ {
204
+ "part": "over-",
205
+ "definition": "excessively, completely,upper, outer, over, above"
206
+ },
207
+ {
208
+ "part": "peri-",
209
+ "definition": "round, about"
210
+ },
211
+ {
212
+ "part": "post-",
213
+ "definition": "after in time or order"
214
+ },
215
+ {
216
+ "part": "pre-",
217
+ "definition": "before in time, place, order or importance"
218
+ },
219
+ {
220
+ "part": "pro-",
221
+ "definition": "favouring, in support of,acting for,motion forwards or away,before in time, place or order"
222
+ },
223
+ {
224
+ "part": "re-",
225
+ "definition": "again"
226
+ },
227
+ {
228
+ "part": "semi-",
229
+ "definition": "half, partly"
230
+ },
231
+ {
232
+ "part": "sub-",
233
+ "definition": "at a lower position,lower in rank,nearly, approximately"
234
+ },
235
+ {
236
+ "part": "suc-",
237
+ "definition": "at a lower position,lower in rank,nearly, approximately"
238
+ },
239
+ {
240
+ "part": "suf-",
241
+ "definition": "at a lower position,lower in rank,nearly, approximately"
242
+ },
243
+ {
244
+ "part": "sug-",
245
+ "definition": "at a lower position,lower in rank,nearly, approximately"
246
+ },
247
+ {
248
+ "part": "sup-",
249
+ "definition": "at a lower position,lower in rank,nearly, approximately"
250
+ },
251
+ {
252
+ "part": "sur-",
253
+ "definition": "at a lower position,lower in rank,nearly, approximately"
254
+ },
255
+ {
256
+ "part": "sus-",
257
+ "definition": "at a lower position,lower in rank,nearly, approximately"
258
+ },
259
+ {
260
+ "part": "syn-",
261
+ "definition": "in union, acting together"
262
+ },
263
+ {
264
+ "part": "sym-",
265
+ "definition": "in union, acting together"
266
+ },
267
+ {
268
+ "part": "trans-",
269
+ "definition": "across, beyond,into a different state"
270
+ },
271
+ {
272
+ "part": "ultra-",
273
+ "definition": "beyond,extreme"
274
+ },
275
+ {
276
+ "part": "un-",
277
+ "definition": "not,reversal or cancellation of action or state"
278
+ },
279
+ {
280
+ "part": "under-",
281
+ "definition": "beneath, below,lower in rank,not enough"
282
+ },
283
+ {
284
+ "part": "a-",
285
+ "definition": "not, without"
286
+ },
287
+ {
288
+ "part": "an-",
289
+ "definition": "not, without"
290
+ },
291
+ {
292
+ "part": "de-",
293
+ "definition": "from, down, away, to do the opposite, reverse, against"
294
+ },
295
+ {
296
+ "part": "di-",
297
+ "definition": "two, twice, double"
298
+ },
299
+ {
300
+ "part": "dy-",
301
+ "definition": "two, twice, double"
302
+ },
303
+ {
304
+ "part": "dys-",
305
+ "definition": "bad, abnormal, difficult, impaired, unfavorable"
306
+ },
307
+ {
308
+ "part": "e-",
309
+ "definition": "not, missing, out, fully, away, computer network related"
310
+ },
311
+ {
312
+ "part": "ec-",
313
+ "definition": "out of, outside"
314
+ },
315
+ {
316
+ "part": "eco-",
317
+ "definition": "household, environment, relating to ecology or economy"
318
+ },
319
+ {
320
+ "part": "ecto-",
321
+ "definition": "outside, external"
322
+ },
323
+ {
324
+ "part": "en-",
325
+ "definition": "put into, make, provide with, surround with"
326
+ },
327
+ {
328
+ "part": "em-",
329
+ "definition": "put into, make, provide with, surround with"
330
+ },
331
+ {
332
+ "part": "end-",
333
+ "definition": "inside, within"
334
+ },
335
+ {
336
+ "part": "epi-",
337
+ "definition": "upon, close to, over, after, altered"
338
+ },
339
+ {
340
+ "part": "equi-",
341
+ "definition": "equal"
342
+ },
343
+ {
344
+ "part": "ev-",
345
+ "definition": "time, age"
346
+ },
347
+ {
348
+ "part": "et-",
349
+ "definition": "time, age"
350
+ },
351
+ {
352
+ "part": "ex-",
353
+ "definition": "out of, away from, lacking, former"
354
+ },
355
+ {
356
+ "part": "exter-",
357
+ "definition": "outside of, beyond"
358
+ },
359
+ {
360
+ "part": "extra-",
361
+ "definition": "outside of, beyond"
362
+ },
363
+ {
364
+ "part": "extro-",
365
+ "definition": "outside of, beyond"
366
+ },
367
+ {
368
+ "part": "macr-",
369
+ "definition": "lean"
370
+ },
371
+ {
372
+ "part": "ab-",
373
+ "definition": "away, from"
374
+ },
375
+ {
376
+ "part": "abs-",
377
+ "definition": "away, from"
378
+ },
379
+ {
380
+ "part": "ad-",
381
+ "definition": "movement to, change into, addition or increase"
382
+ },
383
+ {
384
+ "part": "a-",
385
+ "definition": "movement to, change into, addition or increase"
386
+ },
387
+ {
388
+ "part": "ac-",
389
+ "definition": "movement to, change into, addition or increase"
390
+ },
391
+ {
392
+ "part": "af-",
393
+ "definition": "movement to, change into, addition or increase"
394
+ },
395
+ {
396
+ "part": "ag-",
397
+ "definition": "movement to, change into, addition or increase"
398
+ },
399
+ {
400
+ "part": "al-",
401
+ "definition": "movement to, change into, addition or increase"
402
+ },
403
+ {
404
+ "part": "an-",
405
+ "definition": "movement to, change into, addition or increase"
406
+ },
407
+ {
408
+ "part": "ap-",
409
+ "definition": "movement to, change into, addition or increase"
410
+ },
411
+ {
412
+ "part": "at-",
413
+ "definition": "movement to, change into, addition or increase"
414
+ },
415
+ {
416
+ "part": "as-",
417
+ "definition": "movement to, change into, addition or increase"
418
+ },
419
+ {
420
+ "part": "at-",
421
+ "definition": "movement to, change into, addition or increase"
422
+ },
423
+ {
424
+ "part": "ante-",
425
+ "definition": "before, preceding"
426
+ },
427
+ {
428
+ "part": "anti-",
429
+ "definition": "opposing, against, the opposite"
430
+ },
431
+ {
432
+ "part": "ant-",
433
+ "definition": "opposing, against, the opposite"
434
+ },
435
+ {
436
+ "part": "be-",
437
+ "definition": "all over, all around, completely, having, covered with, affect with, cause to be "
438
+ },
439
+ {
440
+ "part": "com-",
441
+ "definition": "with, jointly, completely"
442
+ },
443
+ {
444
+ "part": "co-",
445
+ "definition": "with, jointly, completely"
446
+ },
447
+ {
448
+ "part": "col-",
449
+ "definition": "with, jointly, completely"
450
+ },
451
+ {
452
+ "part": "con-",
453
+ "definition": "with, jointly, completely"
454
+ },
455
+ {
456
+ "part": "cor-",
457
+ "definition": "with, jointly, completely"
458
+ },
459
+ {
460
+ "part": "contra-",
461
+ "definition": "against, opposite"
462
+ },
463
+ {
464
+ "part": "counter-",
465
+ "definition": "opposition, opposite direction"
466
+ },
467
+ {
468
+ "part": "de-",
469
+ "definition": "down, away, completely, removal, reversal"
470
+ },
471
+ {
472
+ "part": "dia-",
473
+ "definition": "through, across"
474
+ },
475
+ {
476
+ "part": "di-",
477
+ "definition": "through, across"
478
+ },
479
+ {
480
+ "part": "dis-",
481
+ "definition": "negation, removal, expulsion"
482
+ },
483
+ {
484
+ "part": "di-",
485
+ "definition": "negation, removal, expulsion"
486
+ },
487
+ {
488
+ "part": "en-",
489
+ "definition": "put into or on, bring into the condition of, intensification"
490
+ },
491
+ {
492
+ "part": "em-",
493
+ "definition": "put into or on, bring into the condition of, intensification"
494
+ },
495
+ {
496
+ "part": "ex-",
497
+ "definition": "out, upward,completely,previous"
498
+ },
499
+ {
500
+ "part": "e-",
501
+ "definition": "out, upward,completely,previous"
502
+ },
503
+ {
504
+ "part": "ef-",
505
+ "definition": "out, upward,completely,previous"
506
+ },
507
+ {
508
+ "part": "hemi-",
509
+ "definition": "half"
510
+ },
511
+ {
512
+ "part": "hyper-",
513
+ "definition": "beyond, more than, more than normal"
514
+ },
515
+ {
516
+ "part": "hypo-",
517
+ "definition": "under"
518
+ },
519
+ {
520
+ "part": "in-",
521
+ "definition": "not, without,in, into, towards, inside"
522
+ },
523
+ {
524
+ "part": "il-",
525
+ "definition": "not, without,in, into, towards, inside"
526
+ },
527
+ {
528
+ "part": "im-",
529
+ "definition": "not, without,in, into, towards, inside"
530
+ },
531
+ {
532
+ "part": "ir-",
533
+ "definition": "not, without,in, into, towards, inside"
534
+ },
535
+ {
536
+ "part": "infra-",
537
+ "definition": "below"
538
+ },
539
+ {
540
+ "part": "inter-",
541
+ "definition": "between, among"
542
+ },
543
+ {
544
+ "part": "intra-",
545
+ "definition": "inside, within"
546
+ },
547
+ {
548
+ "part": "non-",
549
+ "definition": "absence, negation"
550
+ },
551
+ {
552
+ "part": "ob-",
553
+ "definition": "blocking, against, concealing"
554
+ },
555
+ {
556
+ "part": "oc-",
557
+ "definition": "blocking, against, concealing"
558
+ },
559
+ {
560
+ "part": "of-",
561
+ "definition": "blocking, against, concealing"
562
+ },
563
+ {
564
+ "part": "op-",
565
+ "definition": "blocking, against, concealing"
566
+ },
567
+ {
568
+ "part": "out-",
569
+ "definition": "surpassing, exceeding,external, away from"
570
+ },
571
+ {
572
+ "part": "over-",
573
+ "definition": "excessively, completely,upper, outer, over, above"
574
+ },
575
+ {
576
+ "part": "peri-",
577
+ "definition": "round, about"
578
+ },
579
+ {
580
+ "part": "post-",
581
+ "definition": "after in time or order"
582
+ },
583
+ {
584
+ "part": "pre-",
585
+ "definition": "before in time, place, order or importance"
586
+ },
587
+ {
588
+ "part": "pro-",
589
+ "definition": "favouring, in support of,acting for,motion forwards or away,before in time, place or order"
590
+ },
591
+ {
592
+ "part": "re-",
593
+ "definition": "again"
594
+ },
595
+ {
596
+ "part": "semi-",
597
+ "definition": "half, partly"
598
+ },
599
+ {
600
+ "part": "sub-",
601
+ "definition": "at a lower position,lower in rank,nearly, approximately"
602
+ },
603
+ {
604
+ "part": "suc-",
605
+ "definition": "at a lower position,lower in rank,nearly, approximately"
606
+ },
607
+ {
608
+ "part": "suf-",
609
+ "definition": "at a lower position,lower in rank,nearly, approximately"
610
+ },
611
+ {
612
+ "part": "sug-",
613
+ "definition": "at a lower position,lower in rank,nearly, approximately"
614
+ },
615
+ {
616
+ "part": "sup-",
617
+ "definition": "at a lower position,lower in rank,nearly, approximately"
618
+ },
619
+ {
620
+ "part": "sur-",
621
+ "definition": "at a lower position,lower in rank,nearly, approximately"
622
+ },
623
+ {
624
+ "part": "sus-",
625
+ "definition": "at a lower position,lower in rank,nearly, approximately"
626
+ },
627
+ {
628
+ "part": "syn-",
629
+ "definition": "in union, acting together"
630
+ },
631
+ {
632
+ "part": "sym-",
633
+ "definition": "in union, acting together"
634
+ },
635
+ {
636
+ "part": "trans-",
637
+ "definition": "across, beyond,into a different state"
638
+ },
639
+ {
640
+ "part": "ultra-",
641
+ "definition": "beyond,extreme"
642
+ },
643
+ {
644
+ "part": "un-",
645
+ "definition": "not,reversal or cancellation of action or state"
646
+ },
647
+ {
648
+ "part": "under-",
649
+ "definition": "beneath, below,lower in rank,not enough"
650
+ }
651
+ ],
652
+ "roots": [
653
+ {
654
+ "part": "a",
655
+ "definition": "to, toward, near, in addition to, by"
656
+ },
657
+ {
658
+ "part": "ac",
659
+ "definition": "to, toward, near, in addition to, by"
660
+ },
661
+ {
662
+ "part": "ad",
663
+ "definition": "to, toward, near, in addition to, by"
664
+ },
665
+ {
666
+ "part": "af",
667
+ "definition": "to, toward, near, in addition to, by"
668
+ },
669
+ {
670
+ "part": "ag",
671
+ "definition": "to, toward, near, in addition to, by"
672
+ },
673
+ {
674
+ "part": "al",
675
+ "definition": "to, toward, near, in addition to, by"
676
+ },
677
+ {
678
+ "part": "an",
679
+ "definition": "to, toward, near, in addition to, by"
680
+ },
681
+ {
682
+ "part": "ap",
683
+ "definition": "to, toward, near, in addition to, by"
684
+ },
685
+ {
686
+ "part": "as",
687
+ "definition": "to, toward, near, in addition to, by"
688
+ },
689
+ {
690
+ "part": "at",
691
+ "definition": "to, toward, near, in addition to, by"
692
+ },
693
+ {
694
+ "part": "ab",
695
+ "definition": "away from, off"
696
+ },
697
+ {
698
+ "part": "abs",
699
+ "definition": "away from, off"
700
+ },
701
+ {
702
+ "part": "acer",
703
+ "definition": "bitter, sour, sharp"
704
+ },
705
+ {
706
+ "part": "acid",
707
+ "definition": "bitter, sour, sharp"
708
+ },
709
+ {
710
+ "part": "acri",
711
+ "definition": "bitter, sour, sharp"
712
+ },
713
+ {
714
+ "part": "act",
715
+ "definition": "do, act, drive"
716
+ },
717
+ {
718
+ "part": "ag",
719
+ "definition": "do, act, drive"
720
+ },
721
+ {
722
+ "part": "acu",
723
+ "definition": "sharp"
724
+ },
725
+ {
726
+ "part": "aer",
727
+ "definition": "air, atmosphere, aviation"
728
+ },
729
+ {
730
+ "part": "aero",
731
+ "definition": "air, atmosphere, aviation"
732
+ },
733
+ {
734
+ "part": "ag",
735
+ "definition": "do, move, go"
736
+ },
737
+ {
738
+ "part": "agi",
739
+ "definition": "do, move, go"
740
+ },
741
+ {
742
+ "part": "ig",
743
+ "definition": "do, move, go"
744
+ },
745
+ {
746
+ "part": "act",
747
+ "definition": "do, move, go"
748
+ },
749
+ {
750
+ "part": "agri",
751
+ "definition": "pertaining to fields or soil"
752
+ },
753
+ {
754
+ "part": "agro",
755
+ "definition": "pertaining to fields or soil"
756
+ },
757
+ {
758
+ "part": "alb",
759
+ "definition": "white, without pigment"
760
+ },
761
+ {
762
+ "part": "albo",
763
+ "definition": "white, without pigment"
764
+ },
765
+ {
766
+ "part": "ali",
767
+ "definition": "other"
768
+ },
769
+ {
770
+ "part": "allo",
771
+ "definition": "other"
772
+ },
773
+ {
774
+ "part": "alter",
775
+ "definition": "other"
776
+ },
777
+ {
778
+ "part": "alt",
779
+ "definition": "high, deep"
780
+ },
781
+ {
782
+ "part": "am",
783
+ "definition": "love, like, liking"
784
+ },
785
+ {
786
+ "part": "ami",
787
+ "definition": "love, like, liking"
788
+ },
789
+ {
790
+ "part": "amor",
791
+ "definition": "love, like, liking"
792
+ },
793
+ {
794
+ "part": "ambi",
795
+ "definition": "both"
796
+ },
797
+ {
798
+ "part": "ambul",
799
+ "definition": "to walk"
800
+ },
801
+ {
802
+ "part": "ana",
803
+ "definition": "up, back, again, anew"
804
+ },
805
+ {
806
+ "part": "ano",
807
+ "definition": "up, back, again, anew"
808
+ },
809
+ {
810
+ "part": "andr",
811
+ "definition": "male, characteristics of men"
812
+ },
813
+ {
814
+ "part": "andro",
815
+ "definition": "male, characteristics of men"
816
+ },
817
+ {
818
+ "part": "ang",
819
+ "definition": "angular"
820
+ },
821
+ {
822
+ "part": "anim",
823
+ "definition": "mind, life, spirit, anger"
824
+ },
825
+ {
826
+ "part": "ann",
827
+ "definition": "yearly"
828
+ },
829
+ {
830
+ "part": "annu",
831
+ "definition": "yearly"
832
+ },
833
+ {
834
+ "part": "enni",
835
+ "definition": "yearly"
836
+ },
837
+ {
838
+ "part": "ante",
839
+ "definition": "before"
840
+ },
841
+ {
842
+ "part": "anthrop",
843
+ "definition": "man"
844
+ },
845
+ {
846
+ "part": "anti",
847
+ "definition": "against, opposite"
848
+ },
849
+ {
850
+ "part": "ant",
851
+ "definition": "against, opposite"
852
+ },
853
+ {
854
+ "part": "anti",
855
+ "definition": "old"
856
+ },
857
+ {
858
+ "part": "antico",
859
+ "definition": "old"
860
+ },
861
+ {
862
+ "part": "apo",
863
+ "definition": "away from, detached, formed"
864
+ },
865
+ {
866
+ "part": "ap",
867
+ "definition": "away from, detached, formed"
868
+ },
869
+ {
870
+ "part": "aph",
871
+ "definition": "away from, detached, formed"
872
+ },
873
+ {
874
+ "part": "aqu",
875
+ "definition": "water"
876
+ },
877
+ {
878
+ "part": "arch",
879
+ "definition": "chief, first, rule"
880
+ },
881
+ {
882
+ "part": "aster",
883
+ "definition": "star"
884
+ },
885
+ {
886
+ "part": "astr",
887
+ "definition": "star"
888
+ },
889
+ {
890
+ "part": "auc",
891
+ "definition": "to originate, to increase"
892
+ },
893
+ {
894
+ "part": "aug",
895
+ "definition": "to originate, to increase"
896
+ },
897
+ {
898
+ "part": "aut",
899
+ "definition": "to originate, to increase"
900
+ },
901
+ {
902
+ "part": "aud",
903
+ "definition": "to hear, listen"
904
+ },
905
+ {
906
+ "part": "audi",
907
+ "definition": "to hear, listen"
908
+ },
909
+ {
910
+ "part": "aur",
911
+ "definition": "to hear, listen"
912
+ },
913
+ {
914
+ "part": "aus",
915
+ "definition": "to hear, listen"
916
+ },
917
+ {
918
+ "part": "aug",
919
+ "definition": "increase"
920
+ },
921
+ {
922
+ "part": "auc",
923
+ "definition": "increase"
924
+ },
925
+ {
926
+ "part": "aut",
927
+ "definition": "self"
928
+ },
929
+ {
930
+ "part": "auto",
931
+ "definition": "self"
932
+ },
933
+ {
934
+ "part": "bar",
935
+ "definition": "weight, pressure"
936
+ },
937
+ {
938
+ "part": "be",
939
+ "definition": "on, around, over, about, excessively, make, cause, name, affect"
940
+ },
941
+ {
942
+ "part": "belli",
943
+ "definition": "war"
944
+ },
945
+ {
946
+ "part": "bene",
947
+ "definition": "good, well, gentle"
948
+ },
949
+ {
950
+ "part": "bi",
951
+ "definition": "two"
952
+ },
953
+ {
954
+ "part": "bine",
955
+ "definition": "two"
956
+ },
957
+ {
958
+ "part": "bibl",
959
+ "definition": "book"
960
+ },
961
+ {
962
+ "part": "bibli",
963
+ "definition": "book"
964
+ },
965
+ {
966
+ "part": "biblio",
967
+ "definition": "book"
968
+ },
969
+ {
970
+ "part": "bio",
971
+ "definition": "life"
972
+ },
973
+ {
974
+ "part": "bi",
975
+ "definition": "life"
976
+ },
977
+ {
978
+ "part": "brev",
979
+ "definition": "short"
980
+ },
981
+ {
982
+ "part": "cad",
983
+ "definition": "to take, to seize, to hold"
984
+ },
985
+ {
986
+ "part": "cap",
987
+ "definition": "to take, to seize, to hold"
988
+ },
989
+ {
990
+ "part": "cas",
991
+ "definition": "to take, to seize, to hold"
992
+ },
993
+ {
994
+ "part": "ceiv",
995
+ "definition": "to take, to seize, to hold"
996
+ },
997
+ {
998
+ "part": "cept",
999
+ "definition": "to take, to seize, to hold"
1000
+ },
1001
+ {
1002
+ "part": "capt",
1003
+ "definition": "to take, to seize, to hold"
1004
+ },
1005
+ {
1006
+ "part": "cid",
1007
+ "definition": "to take, to seize, to hold"
1008
+ },
1009
+ {
1010
+ "part": "cip",
1011
+ "definition": "to take, to seize, to hold"
1012
+ },
1013
+ {
1014
+ "part": "cad",
1015
+ "definition": "to fall"
1016
+ },
1017
+ {
1018
+ "part": "cas",
1019
+ "definition": "to fall"
1020
+ },
1021
+ {
1022
+ "part": "calor",
1023
+ "definition": "heat"
1024
+ },
1025
+ {
1026
+ "part": "capit",
1027
+ "definition": "head"
1028
+ },
1029
+ {
1030
+ "part": "capt",
1031
+ "definition": "head"
1032
+ },
1033
+ {
1034
+ "part": "carn",
1035
+ "definition": "flesh"
1036
+ },
1037
+ {
1038
+ "part": "cat",
1039
+ "definition": "down, with"
1040
+ },
1041
+ {
1042
+ "part": "cata",
1043
+ "definition": "down, with"
1044
+ },
1045
+ {
1046
+ "part": "cath",
1047
+ "definition": "down, with"
1048
+ },
1049
+ {
1050
+ "part": "caus",
1051
+ "definition": "burn, heat"
1052
+ },
1053
+ {
1054
+ "part": "caut",
1055
+ "definition": "burn, heat"
1056
+ },
1057
+ {
1058
+ "part": "cause",
1059
+ "definition": "cause, motive"
1060
+ },
1061
+ {
1062
+ "part": "cuse",
1063
+ "definition": "cause, motive"
1064
+ },
1065
+ {
1066
+ "part": "cus",
1067
+ "definition": "cause, motive"
1068
+ },
1069
+ {
1070
+ "part": "ceas",
1071
+ "definition": "to go, to yield, move, go, surrender"
1072
+ },
1073
+ {
1074
+ "part": "ced",
1075
+ "definition": "to go, to yield, move, go, surrender"
1076
+ },
1077
+ {
1078
+ "part": "cede",
1079
+ "definition": "to go, to yield, move, go, surrender"
1080
+ },
1081
+ {
1082
+ "part": "ceed",
1083
+ "definition": "to go, to yield, move, go, surrender"
1084
+ },
1085
+ {
1086
+ "part": "cess",
1087
+ "definition": "to go, to yield, move, go, surrender"
1088
+ },
1089
+ {
1090
+ "part": "cent",
1091
+ "definition": "hundred"
1092
+ },
1093
+ {
1094
+ "part": "centr",
1095
+ "definition": "center"
1096
+ },
1097
+ {
1098
+ "part": "centri",
1099
+ "definition": "center"
1100
+ },
1101
+ {
1102
+ "part": "chrom",
1103
+ "definition": "color"
1104
+ },
1105
+ {
1106
+ "part": "chron",
1107
+ "definition": "time"
1108
+ },
1109
+ {
1110
+ "part": "cide",
1111
+ "definition": "to kill, to cut, cut down"
1112
+ },
1113
+ {
1114
+ "part": "cis",
1115
+ "definition": "to kill, to cut, cut down"
1116
+ },
1117
+ {
1118
+ "part": "cise",
1119
+ "definition": "to kill, to cut, cut down"
1120
+ },
1121
+ {
1122
+ "part": "circum",
1123
+ "definition": "around"
1124
+ },
1125
+ {
1126
+ "part": "cit",
1127
+ "definition": "call, start"
1128
+ },
1129
+ {
1130
+ "part": "civ",
1131
+ "definition": "citizen"
1132
+ },
1133
+ {
1134
+ "part": "clam",
1135
+ "definition": "cry out"
1136
+ },
1137
+ {
1138
+ "part": "claim",
1139
+ "definition": "cry out"
1140
+ },
1141
+ {
1142
+ "part": "clin",
1143
+ "definition": "lean, bend"
1144
+ },
1145
+ {
1146
+ "part": "clud",
1147
+ "definition": "to close, shut"
1148
+ },
1149
+ {
1150
+ "part": "clus claus",
1151
+ "definition": "to close, shut"
1152
+ },
1153
+ {
1154
+ "part": "co",
1155
+ "definition": "with, together"
1156
+ },
1157
+ {
1158
+ "part": "cog",
1159
+ "definition": "with, together"
1160
+ },
1161
+ {
1162
+ "part": "col",
1163
+ "definition": "with, together"
1164
+ },
1165
+ {
1166
+ "part": "coll",
1167
+ "definition": "with, together"
1168
+ },
1169
+ {
1170
+ "part": "con",
1171
+ "definition": "with, together"
1172
+ },
1173
+ {
1174
+ "part": "com",
1175
+ "definition": "with, together"
1176
+ },
1177
+ {
1178
+ "part": "cor",
1179
+ "definition": "with, together"
1180
+ },
1181
+ {
1182
+ "part": "cogn",
1183
+ "definition": "to know"
1184
+ },
1185
+ {
1186
+ "part": "gnos",
1187
+ "definition": "to know"
1188
+ },
1189
+ {
1190
+ "part": "com",
1191
+ "definition": "fully"
1192
+ },
1193
+ {
1194
+ "part": "con",
1195
+ "definition": "fully"
1196
+ },
1197
+ {
1198
+ "part": "contr",
1199
+ "definition": "against, opposite"
1200
+ },
1201
+ {
1202
+ "part": "contra",
1203
+ "definition": "against, opposite"
1204
+ },
1205
+ {
1206
+ "part": "counter",
1207
+ "definition": "against, opposite"
1208
+ },
1209
+ {
1210
+ "part": "cord",
1211
+ "definition": "heart"
1212
+ },
1213
+ {
1214
+ "part": "cor",
1215
+ "definition": "heart"
1216
+ },
1217
+ {
1218
+ "part": "cardi",
1219
+ "definition": "heart"
1220
+ },
1221
+ {
1222
+ "part": "corp",
1223
+ "definition": "body"
1224
+ },
1225
+ {
1226
+ "part": "cort",
1227
+ "definition": "correct"
1228
+ },
1229
+ {
1230
+ "part": "cosm",
1231
+ "definition": "universe, world"
1232
+ },
1233
+ {
1234
+ "part": "cour",
1235
+ "definition": "run, course"
1236
+ },
1237
+ {
1238
+ "part": "cur",
1239
+ "definition": "run, course"
1240
+ },
1241
+ {
1242
+ "part": "curr",
1243
+ "definition": "run, course"
1244
+ },
1245
+ {
1246
+ "part": "curs",
1247
+ "definition": "run, course"
1248
+ },
1249
+ {
1250
+ "part": "crat",
1251
+ "definition": "rule"
1252
+ },
1253
+ {
1254
+ "part": "cracy",
1255
+ "definition": "rule"
1256
+ },
1257
+ {
1258
+ "part": "cre",
1259
+ "definition": "grow"
1260
+ },
1261
+ {
1262
+ "part": "cresc",
1263
+ "definition": "grow"
1264
+ },
1265
+ {
1266
+ "part": "cret",
1267
+ "definition": "grow"
1268
+ },
1269
+ {
1270
+ "part": "crease",
1271
+ "definition": "grow"
1272
+ },
1273
+ {
1274
+ "part": "crea",
1275
+ "definition": "create"
1276
+ },
1277
+ {
1278
+ "part": "cred",
1279
+ "definition": "believe"
1280
+ },
1281
+ {
1282
+ "part": "cresc",
1283
+ "definition": "rise, grow"
1284
+ },
1285
+ {
1286
+ "part": "cret",
1287
+ "definition": "rise, grow"
1288
+ },
1289
+ {
1290
+ "part": "crease",
1291
+ "definition": "rise, grow"
1292
+ },
1293
+ {
1294
+ "part": "cru",
1295
+ "definition": "rise, grow"
1296
+ },
1297
+ {
1298
+ "part": "crit",
1299
+ "definition": "separate, choose"
1300
+ },
1301
+ {
1302
+ "part": "cur",
1303
+ "definition": "run"
1304
+ },
1305
+ {
1306
+ "part": "curs",
1307
+ "definition": "run"
1308
+ },
1309
+ {
1310
+ "part": "cura",
1311
+ "definition": "care"
1312
+ },
1313
+ {
1314
+ "part": "cycl",
1315
+ "definition": "wheel, circle, circular"
1316
+ },
1317
+ {
1318
+ "part": "cyclo",
1319
+ "definition": "wheel, circle, circular"
1320
+ },
1321
+ {
1322
+ "part": "dec",
1323
+ "definition": "ten, ten times"
1324
+ },
1325
+ {
1326
+ "part": "deca",
1327
+ "definition": "ten, ten times"
1328
+ },
1329
+ {
1330
+ "part": "dec",
1331
+ "definition": "suitable"
1332
+ },
1333
+ {
1334
+ "part": "dign",
1335
+ "definition": "suitable"
1336
+ },
1337
+ {
1338
+ "part": "dei",
1339
+ "definition": "God"
1340
+ },
1341
+ {
1342
+ "part": "div",
1343
+ "definition": "God"
1344
+ },
1345
+ {
1346
+ "part": "dem",
1347
+ "definition": "people, populace, population"
1348
+ },
1349
+ {
1350
+ "part": "demo",
1351
+ "definition": "people, populace, population"
1352
+ },
1353
+ {
1354
+ "part": "dent",
1355
+ "definition": "tooth"
1356
+ },
1357
+ {
1358
+ "part": "dont",
1359
+ "definition": "tooth"
1360
+ },
1361
+ {
1362
+ "part": "derm",
1363
+ "definition": "skin, covering"
1364
+ },
1365
+ {
1366
+ "part": "dia",
1367
+ "definition": "through, across, between"
1368
+ },
1369
+ {
1370
+ "part": "dic",
1371
+ "definition": "say, speak"
1372
+ },
1373
+ {
1374
+ "part": "dict",
1375
+ "definition": "say, speak"
1376
+ },
1377
+ {
1378
+ "part": "dit",
1379
+ "definition": "say, speak"
1380
+ },
1381
+ {
1382
+ "part": "dis",
1383
+ "definition": "not, opposite of, reverse, separate, deprive of, away"
1384
+ },
1385
+ {
1386
+ "part": "dif",
1387
+ "definition": "not, opposite of, reverse, separate, deprive of, away"
1388
+ },
1389
+ {
1390
+ "part": "dit",
1391
+ "definition": "give"
1392
+ },
1393
+ {
1394
+ "part": "doc",
1395
+ "definition": "teach, prove"
1396
+ },
1397
+ {
1398
+ "part": "doct",
1399
+ "definition": "teach, prove"
1400
+ },
1401
+ {
1402
+ "part": "domin",
1403
+ "definition": "master, that which is under control"
1404
+ },
1405
+ {
1406
+ "part": "don",
1407
+ "definition": "give"
1408
+ },
1409
+ {
1410
+ "part": "dorm",
1411
+ "definition": "sleep"
1412
+ },
1413
+ {
1414
+ "part": "dox",
1415
+ "definition": "thought, opinion, praise"
1416
+ },
1417
+ {
1418
+ "part": "duc",
1419
+ "definition": "to lead, pull"
1420
+ },
1421
+ {
1422
+ "part": "duct",
1423
+ "definition": "to lead, pull"
1424
+ },
1425
+ {
1426
+ "part": "dura",
1427
+ "definition": "hard, lasting"
1428
+ },
1429
+ {
1430
+ "part": "dynam",
1431
+ "definition": "power"
1432
+ },
1433
+ {
1434
+ "part": "erg",
1435
+ "definition": "work, effect"
1436
+ },
1437
+ {
1438
+ "part": "fa",
1439
+ "definition": "speak"
1440
+ },
1441
+ {
1442
+ "part": "fess",
1443
+ "definition": "speak"
1444
+ },
1445
+ {
1446
+ "part": "fac",
1447
+ "definition": "do, make"
1448
+ },
1449
+ {
1450
+ "part": "fact",
1451
+ "definition": "do, make"
1452
+ },
1453
+ {
1454
+ "part": "fec",
1455
+ "definition": "do, make"
1456
+ },
1457
+ {
1458
+ "part": "fect",
1459
+ "definition": "do, make"
1460
+ },
1461
+ {
1462
+ "part": "fic",
1463
+ "definition": "do, make"
1464
+ },
1465
+ {
1466
+ "part": "fas",
1467
+ "definition": "do, make"
1468
+ },
1469
+ {
1470
+ "part": "fea",
1471
+ "definition": "do, make"
1472
+ },
1473
+ {
1474
+ "part": "fall",
1475
+ "definition": "deceive"
1476
+ },
1477
+ {
1478
+ "part": "fals",
1479
+ "definition": "deceive"
1480
+ },
1481
+ {
1482
+ "part": "femto",
1483
+ "definition": "quadrillionth"
1484
+ },
1485
+ {
1486
+ "part": "fer",
1487
+ "definition": "bear, carry"
1488
+ },
1489
+ {
1490
+ "part": "fic",
1491
+ "definition": "shape, make, fashion"
1492
+ },
1493
+ {
1494
+ "part": "feign",
1495
+ "definition": "shape, make, fashion"
1496
+ },
1497
+ {
1498
+ "part": "fain",
1499
+ "definition": "shape, make, fashion"
1500
+ },
1501
+ {
1502
+ "part": "fit",
1503
+ "definition": "shape, make, fashion"
1504
+ },
1505
+ {
1506
+ "part": "feat",
1507
+ "definition": "shape, make, fashion"
1508
+ },
1509
+ {
1510
+ "part": "fid",
1511
+ "definition": "belief, faith"
1512
+ },
1513
+ {
1514
+ "part": "fid",
1515
+ "definition": "faith, trust"
1516
+ },
1517
+ {
1518
+ "part": "fide",
1519
+ "definition": "faith, trust"
1520
+ },
1521
+ {
1522
+ "part": "feder",
1523
+ "definition": "faith, trust"
1524
+ },
1525
+ {
1526
+ "part": "fig",
1527
+ "definition": "shape, form"
1528
+ },
1529
+ {
1530
+ "part": "fila",
1531
+ "definition": "thread"
1532
+ },
1533
+ {
1534
+ "part": "fili",
1535
+ "definition": "thread"
1536
+ },
1537
+ {
1538
+ "part": "fin",
1539
+ "definition": "end, ended, finished"
1540
+ },
1541
+ {
1542
+ "part": "fix",
1543
+ "definition": "repair, attach"
1544
+ },
1545
+ {
1546
+ "part": "flex",
1547
+ "definition": "bend"
1548
+ },
1549
+ {
1550
+ "part": "flect",
1551
+ "definition": "bend"
1552
+ },
1553
+ {
1554
+ "part": "flict",
1555
+ "definition": "strike"
1556
+ },
1557
+ {
1558
+ "part": "flu",
1559
+ "definition": "flow"
1560
+ },
1561
+ {
1562
+ "part": "fluc",
1563
+ "definition": "flow"
1564
+ },
1565
+ {
1566
+ "part": "fluv",
1567
+ "definition": "flow"
1568
+ },
1569
+ {
1570
+ "part": "flux",
1571
+ "definition": "flow"
1572
+ },
1573
+ {
1574
+ "part": "for",
1575
+ "definition": "before"
1576
+ },
1577
+ {
1578
+ "part": "fore",
1579
+ "definition": "before"
1580
+ },
1581
+ {
1582
+ "part": "forc",
1583
+ "definition": "strength, strong"
1584
+ },
1585
+ {
1586
+ "part": "fort",
1587
+ "definition": "strength, strong"
1588
+ },
1589
+ {
1590
+ "part": "form",
1591
+ "definition": "shape, resemble"
1592
+ },
1593
+ {
1594
+ "part": "fract",
1595
+ "definition": "break"
1596
+ },
1597
+ {
1598
+ "part": "frag",
1599
+ "definition": "break"
1600
+ },
1601
+ {
1602
+ "part": "frai",
1603
+ "definition": "break"
1604
+ },
1605
+ {
1606
+ "part": "fuge",
1607
+ "definition": "flee"
1608
+ },
1609
+ {
1610
+ "part": "fuse",
1611
+ "definition": "pour"
1612
+ },
1613
+ {
1614
+ "part": "gam",
1615
+ "definition": "marriage"
1616
+ },
1617
+ {
1618
+ "part": "gastr",
1619
+ "definition": "stomach"
1620
+ },
1621
+ {
1622
+ "part": "gastro",
1623
+ "definition": "stomach"
1624
+ },
1625
+ {
1626
+ "part": "gen",
1627
+ "definition": "kind"
1628
+ },
1629
+ {
1630
+ "part": "gen",
1631
+ "definition": "birth, race, produce"
1632
+ },
1633
+ {
1634
+ "part": "geo",
1635
+ "definition": "earth"
1636
+ },
1637
+ {
1638
+ "part": "germ",
1639
+ "definition": "vital part"
1640
+ },
1641
+ {
1642
+ "part": "gest",
1643
+ "definition": "carry, bear"
1644
+ },
1645
+ {
1646
+ "part": "giga",
1647
+ "definition": "billion"
1648
+ },
1649
+ {
1650
+ "part": "gin",
1651
+ "definition": "careful"
1652
+ },
1653
+ {
1654
+ "part": "gloss",
1655
+ "definition": "tongue"
1656
+ },
1657
+ {
1658
+ "part": "glot",
1659
+ "definition": "tongue"
1660
+ },
1661
+ {
1662
+ "part": "glu",
1663
+ "definition": "lump, bond, glue"
1664
+ },
1665
+ {
1666
+ "part": "glo",
1667
+ "definition": "lump, bond, glue"
1668
+ },
1669
+ {
1670
+ "part": "gor",
1671
+ "definition": "to gather, to bring together"
1672
+ },
1673
+ {
1674
+ "part": "grad",
1675
+ "definition": "to gather, to bring together, step, go"
1676
+ },
1677
+ {
1678
+ "part": "gress",
1679
+ "definition": "to gather, to bring together, step, go"
1680
+ },
1681
+ {
1682
+ "part": "gree",
1683
+ "definition": "to gather, to bring together, step, go"
1684
+ },
1685
+ {
1686
+ "part": "graph",
1687
+ "definition": "write, written, draw"
1688
+ },
1689
+ {
1690
+ "part": "gram",
1691
+ "definition": "write, written, draw"
1692
+ },
1693
+ {
1694
+ "part": "graf",
1695
+ "definition": "write, written, draw"
1696
+ },
1697
+ {
1698
+ "part": "grat",
1699
+ "definition": "pleasing"
1700
+ },
1701
+ {
1702
+ "part": "grav",
1703
+ "definition": "heavy, weighty"
1704
+ },
1705
+ {
1706
+ "part": "greg",
1707
+ "definition": "herd"
1708
+ },
1709
+ {
1710
+ "part": "hale",
1711
+ "definition": "make whole, sound"
1712
+ },
1713
+ {
1714
+ "part": "heal",
1715
+ "definition": "make whole, sound"
1716
+ },
1717
+ {
1718
+ "part": "helio",
1719
+ "definition": "sun"
1720
+ },
1721
+ {
1722
+ "part": "hema",
1723
+ "definition": "blood"
1724
+ },
1725
+ {
1726
+ "part": "hemo",
1727
+ "definition": "blood"
1728
+ },
1729
+ {
1730
+ "part": "her",
1731
+ "definition": "stick"
1732
+ },
1733
+ {
1734
+ "part": "here",
1735
+ "definition": "stick"
1736
+ },
1737
+ {
1738
+ "part": "hes",
1739
+ "definition": "stick"
1740
+ },
1741
+ {
1742
+ "part": "hetero",
1743
+ "definition": "other, different"
1744
+ },
1745
+ {
1746
+ "part": "hex",
1747
+ "definition": "six"
1748
+ },
1749
+ {
1750
+ "part": "ses",
1751
+ "definition": "six"
1752
+ },
1753
+ {
1754
+ "part": "sex",
1755
+ "definition": "six"
1756
+ },
1757
+ {
1758
+ "part": "homo",
1759
+ "definition": "same"
1760
+ },
1761
+ {
1762
+ "part": "hum",
1763
+ "definition": "earth, ground, man"
1764
+ },
1765
+ {
1766
+ "part": "human",
1767
+ "definition": "earth, ground, man"
1768
+ },
1769
+ {
1770
+ "part": "hydr",
1771
+ "definition": "water"
1772
+ },
1773
+ {
1774
+ "part": "hydra",
1775
+ "definition": "water"
1776
+ },
1777
+ {
1778
+ "part": "hydro",
1779
+ "definition": "water"
1780
+ },
1781
+ {
1782
+ "part": "hyper",
1783
+ "definition": "over, above"
1784
+ },
1785
+ {
1786
+ "part": "hypn",
1787
+ "definition": "sleep"
1788
+ },
1789
+ {
1790
+ "part": "an",
1791
+ "definition": "Noun: related to, one that is"
1792
+ },
1793
+ {
1794
+ "part": "ics",
1795
+ "definition": "Noun: related to the arts and sciences"
1796
+ },
1797
+ {
1798
+ "part": "ignis",
1799
+ "definition": "fire"
1800
+ },
1801
+ {
1802
+ "part": "in",
1803
+ "definition": "into, on, near, towards"
1804
+ },
1805
+ {
1806
+ "part": "im",
1807
+ "definition": "into, on, near, towards"
1808
+ },
1809
+ {
1810
+ "part": "in",
1811
+ "definition": "not"
1812
+ },
1813
+ {
1814
+ "part": "im",
1815
+ "definition": "not"
1816
+ },
1817
+ {
1818
+ "part": "il",
1819
+ "definition": "not"
1820
+ },
1821
+ {
1822
+ "part": "ir",
1823
+ "definition": "not"
1824
+ },
1825
+ {
1826
+ "part": "infra",
1827
+ "definition": "beneath"
1828
+ },
1829
+ {
1830
+ "part": "inter",
1831
+ "definition": "between, among"
1832
+ },
1833
+ {
1834
+ "part": "intra",
1835
+ "definition": "within, during, between layers, underneath"
1836
+ },
1837
+ {
1838
+ "part": "intro",
1839
+ "definition": "into, within, inward"
1840
+ },
1841
+ {
1842
+ "part": "ty",
1843
+ "definition": "Noun: state or quality"
1844
+ },
1845
+ {
1846
+ "part": "jac",
1847
+ "definition": "throw"
1848
+ },
1849
+ {
1850
+ "part": "ject",
1851
+ "definition": "throw"
1852
+ },
1853
+ {
1854
+ "part": "join",
1855
+ "definition": "join"
1856
+ },
1857
+ {
1858
+ "part": "junct",
1859
+ "definition": "join"
1860
+ },
1861
+ {
1862
+ "part": "judice",
1863
+ "definition": "judge"
1864
+ },
1865
+ {
1866
+ "part": "jug",
1867
+ "definition": "to join"
1868
+ },
1869
+ {
1870
+ "part": "junct",
1871
+ "definition": "to join"
1872
+ },
1873
+ {
1874
+ "part": "just",
1875
+ "definition": "to join"
1876
+ },
1877
+ {
1878
+ "part": "juven",
1879
+ "definition": "young"
1880
+ },
1881
+ {
1882
+ "part": "labor",
1883
+ "definition": "work"
1884
+ },
1885
+ {
1886
+ "part": "lau",
1887
+ "definition": "wash"
1888
+ },
1889
+ {
1890
+ "part": "lav",
1891
+ "definition": "wash"
1892
+ },
1893
+ {
1894
+ "part": "lot",
1895
+ "definition": "wash"
1896
+ },
1897
+ {
1898
+ "part": "lut",
1899
+ "definition": "wash"
1900
+ },
1901
+ {
1902
+ "part": "lect",
1903
+ "definition": "choose, gather, select, read"
1904
+ },
1905
+ {
1906
+ "part": "leg",
1907
+ "definition": "choose, gather, select, read"
1908
+ },
1909
+ {
1910
+ "part": "lig",
1911
+ "definition": "choose, gather, select, read"
1912
+ },
1913
+ {
1914
+ "part": "leg",
1915
+ "definition": "law"
1916
+ },
1917
+ {
1918
+ "part": "levi",
1919
+ "definition": "light"
1920
+ },
1921
+ {
1922
+ "part": "lex",
1923
+ "definition": "law"
1924
+ },
1925
+ {
1926
+ "part": "leag",
1927
+ "definition": "law"
1928
+ },
1929
+ {
1930
+ "part": "leg",
1931
+ "definition": "law"
1932
+ },
1933
+ {
1934
+ "part": "liber",
1935
+ "definition": "free"
1936
+ },
1937
+ {
1938
+ "part": "liver",
1939
+ "definition": "free"
1940
+ },
1941
+ {
1942
+ "part": "lide",
1943
+ "definition": "strike"
1944
+ },
1945
+ {
1946
+ "part": "liter",
1947
+ "definition": "letters"
1948
+ },
1949
+ {
1950
+ "part": "loc",
1951
+ "definition": "place, area"
1952
+ },
1953
+ {
1954
+ "part": "loco",
1955
+ "definition": "place, area"
1956
+ },
1957
+ {
1958
+ "part": "log",
1959
+ "definition": "word, study, say, speech, reason, study"
1960
+ },
1961
+ {
1962
+ "part": "logo",
1963
+ "definition": "word, study, say, speech, reason, study"
1964
+ },
1965
+ {
1966
+ "part": "ology",
1967
+ "definition": "word, study, say, speech, reason, study"
1968
+ },
1969
+ {
1970
+ "part": "loqu",
1971
+ "definition": "talk, speak"
1972
+ },
1973
+ {
1974
+ "part": "locut",
1975
+ "definition": "talk, speak"
1976
+ },
1977
+ {
1978
+ "part": "luc",
1979
+ "definition": "light"
1980
+ },
1981
+ {
1982
+ "part": "lum",
1983
+ "definition": "light"
1984
+ },
1985
+ {
1986
+ "part": "lun",
1987
+ "definition": "light"
1988
+ },
1989
+ {
1990
+ "part": "lus",
1991
+ "definition": "light"
1992
+ },
1993
+ {
1994
+ "part": "lust",
1995
+ "definition": "light"
1996
+ },
1997
+ {
1998
+ "part": "lude",
1999
+ "definition": "play"
2000
+ },
2001
+ {
2002
+ "part": "macer",
2003
+ "definition": "lean"
2004
+ },
2005
+ {
2006
+ "part": "magn",
2007
+ "definition": "great"
2008
+ },
2009
+ {
2010
+ "part": "main",
2011
+ "definition": "strength, foremost"
2012
+ },
2013
+ {
2014
+ "part": "mal",
2015
+ "definition": "bad, badly"
2016
+ },
2017
+ {
2018
+ "part": "man",
2019
+ "definition": "hand, make, do"
2020
+ },
2021
+ {
2022
+ "part": "manu",
2023
+ "definition": "hand, make, do"
2024
+ },
2025
+ {
2026
+ "part": "mand",
2027
+ "definition": "command"
2028
+ },
2029
+ {
2030
+ "part": "mania",
2031
+ "definition": "madness"
2032
+ },
2033
+ {
2034
+ "part": "mar",
2035
+ "definition": "sea, pool"
2036
+ },
2037
+ {
2038
+ "part": "mari",
2039
+ "definition": "sea, pool"
2040
+ },
2041
+ {
2042
+ "part": "mer",
2043
+ "definition": "sea, pool"
2044
+ },
2045
+ {
2046
+ "part": "matri",
2047
+ "definition": "mother"
2048
+ },
2049
+ {
2050
+ "part": "medi",
2051
+ "definition": "half, middle, between, halfway"
2052
+ },
2053
+ {
2054
+ "part": "mega",
2055
+ "definition": "great, million"
2056
+ },
2057
+ {
2058
+ "part": "mem",
2059
+ "definition": "recall, remember"
2060
+ },
2061
+ {
2062
+ "part": "ment",
2063
+ "definition": "mind"
2064
+ },
2065
+ {
2066
+ "part": "meso",
2067
+ "definition": "middle"
2068
+ },
2069
+ {
2070
+ "part": "meta",
2071
+ "definition": "beyond, change"
2072
+ },
2073
+ {
2074
+ "part": "meter",
2075
+ "definition": "measure"
2076
+ },
2077
+ {
2078
+ "part": "metr",
2079
+ "definition": "admeasure, apportion"
2080
+ },
2081
+ {
2082
+ "part": "micro",
2083
+ "definition": "small, millionth"
2084
+ },
2085
+ {
2086
+ "part": "migra",
2087
+ "definition": "wander"
2088
+ },
2089
+ {
2090
+ "part": "mill",
2091
+ "definition": "thousand"
2092
+ },
2093
+ {
2094
+ "part": "kilo",
2095
+ "definition": "thousand"
2096
+ },
2097
+ {
2098
+ "part": "milli",
2099
+ "definition": "thousandth"
2100
+ },
2101
+ {
2102
+ "part": "min",
2103
+ "definition": "little, small"
2104
+ },
2105
+ {
2106
+ "part": "mis",
2107
+ "definition": "wrong, bad, badly"
2108
+ },
2109
+ {
2110
+ "part": "mit",
2111
+ "definition": "send"
2112
+ },
2113
+ {
2114
+ "part": "miss",
2115
+ "definition": "send"
2116
+ },
2117
+ {
2118
+ "part": "mob",
2119
+ "definition": "move"
2120
+ },
2121
+ {
2122
+ "part": "mov",
2123
+ "definition": "move"
2124
+ },
2125
+ {
2126
+ "part": "mot",
2127
+ "definition": "move"
2128
+ },
2129
+ {
2130
+ "part": "mon",
2131
+ "definition": "warn, remind"
2132
+ },
2133
+ {
2134
+ "part": "mono",
2135
+ "definition": "one"
2136
+ },
2137
+ {
2138
+ "part": "mor",
2139
+ "definition": "mortal, death"
2140
+ },
2141
+ {
2142
+ "part": "mort",
2143
+ "definition": "mortal, death"
2144
+ },
2145
+ {
2146
+ "part": "morph",
2147
+ "definition": "shape, form"
2148
+ },
2149
+ {
2150
+ "part": "multi",
2151
+ "definition": "many, much"
2152
+ },
2153
+ {
2154
+ "part": "nano",
2155
+ "definition": "billionth"
2156
+ },
2157
+ {
2158
+ "part": "nasc",
2159
+ "definition": "to be born"
2160
+ },
2161
+ {
2162
+ "part": "nat",
2163
+ "definition": "to be born"
2164
+ },
2165
+ {
2166
+ "part": "gnant",
2167
+ "definition": "to be born"
2168
+ },
2169
+ {
2170
+ "part": "nai",
2171
+ "definition": "to be born"
2172
+ },
2173
+ {
2174
+ "part": "nat",
2175
+ "definition": "to be from, to spring forth"
2176
+ },
2177
+ {
2178
+ "part": "nasc",
2179
+ "definition": "to be from, to spring forth"
2180
+ },
2181
+ {
2182
+ "part": "neo",
2183
+ "definition": "new"
2184
+ },
2185
+ {
2186
+ "part": "neur",
2187
+ "definition": "nerve"
2188
+ },
2189
+ {
2190
+ "part": "nom",
2191
+ "definition": "law, order"
2192
+ },
2193
+ {
2194
+ "part": "nom",
2195
+ "definition": "name"
2196
+ },
2197
+ {
2198
+ "part": "nym",
2199
+ "definition": "name"
2200
+ },
2201
+ {
2202
+ "part": "nomen",
2203
+ "definition": "name"
2204
+ },
2205
+ {
2206
+ "part": "nomin",
2207
+ "definition": "name"
2208
+ },
2209
+ {
2210
+ "part": "non",
2211
+ "definition": "nine"
2212
+ },
2213
+ {
2214
+ "part": "non",
2215
+ "definition": "not"
2216
+ },
2217
+ {
2218
+ "part": "nov",
2219
+ "definition": "new"
2220
+ },
2221
+ {
2222
+ "part": "nox",
2223
+ "definition": "night"
2224
+ },
2225
+ {
2226
+ "part": "noc",
2227
+ "definition": "night"
2228
+ },
2229
+ {
2230
+ "part": "numer",
2231
+ "definition": "number"
2232
+ },
2233
+ {
2234
+ "part": "numisma",
2235
+ "definition": "coin"
2236
+ },
2237
+ {
2238
+ "part": "ob",
2239
+ "definition": "toward, against, in the way"
2240
+ },
2241
+ {
2242
+ "part": "oc",
2243
+ "definition": "toward, against, in the way"
2244
+ },
2245
+ {
2246
+ "part": "of",
2247
+ "definition": "toward, against, in the way"
2248
+ },
2249
+ {
2250
+ "part": "op",
2251
+ "definition": "toward, against, in the way"
2252
+ },
2253
+ {
2254
+ "part": "oct",
2255
+ "definition": "eight"
2256
+ },
2257
+ {
2258
+ "part": "oligo",
2259
+ "definition": "few, little"
2260
+ },
2261
+ {
2262
+ "part": "omni",
2263
+ "definition": "all, every"
2264
+ },
2265
+ {
2266
+ "part": "onym",
2267
+ "definition": "name"
2268
+ },
2269
+ {
2270
+ "part": "oper",
2271
+ "definition": "work"
2272
+ },
2273
+ {
2274
+ "part": "ortho",
2275
+ "definition": "straight, correct"
2276
+ },
2277
+ {
2278
+ "part": "over",
2279
+ "definition": "excessive, above"
2280
+ },
2281
+ {
2282
+ "part": "pac",
2283
+ "definition": "peace"
2284
+ },
2285
+ {
2286
+ "part": "pair",
2287
+ "definition": "arrange, assemblage, two"
2288
+ },
2289
+ {
2290
+ "part": "pare",
2291
+ "definition": "arrange, assemblage, two"
2292
+ },
2293
+ {
2294
+ "part": "paleo",
2295
+ "definition": "old"
2296
+ },
2297
+ {
2298
+ "part": "pan",
2299
+ "definition": "all"
2300
+ },
2301
+ {
2302
+ "part": "para",
2303
+ "definition": "beside"
2304
+ },
2305
+ {
2306
+ "part": "pat",
2307
+ "definition": "feel, suffer"
2308
+ },
2309
+ {
2310
+ "part": "pass",
2311
+ "definition": "feel, suffer"
2312
+ },
2313
+ {
2314
+ "part": "path",
2315
+ "definition": "feel, suffer"
2316
+ },
2317
+ {
2318
+ "part": "pater",
2319
+ "definition": "father"
2320
+ },
2321
+ {
2322
+ "part": "patr",
2323
+ "definition": "father"
2324
+ },
2325
+ {
2326
+ "part": "path",
2327
+ "definition": "feeling, suffering"
2328
+ },
2329
+ {
2330
+ "part": "pathy",
2331
+ "definition": "feeling, suffering"
2332
+ },
2333
+ {
2334
+ "part": "ped",
2335
+ "definition": "foot"
2336
+ },
2337
+ {
2338
+ "part": "pod",
2339
+ "definition": "foot"
2340
+ },
2341
+ {
2342
+ "part": "pedo",
2343
+ "definition": "child"
2344
+ },
2345
+ {
2346
+ "part": "pel",
2347
+ "definition": "drive, push, urge"
2348
+ },
2349
+ {
2350
+ "part": "puls",
2351
+ "definition": "drive, push, urge"
2352
+ },
2353
+ {
2354
+ "part": "pend",
2355
+ "definition": "hang, weigh"
2356
+ },
2357
+ {
2358
+ "part": "pens",
2359
+ "definition": "hang, weigh"
2360
+ },
2361
+ {
2362
+ "part": "pond",
2363
+ "definition": "hang, weigh"
2364
+ },
2365
+ {
2366
+ "part": "per",
2367
+ "definition": "through, intensive"
2368
+ },
2369
+ {
2370
+ "part": "peri",
2371
+ "definition": "around"
2372
+ },
2373
+ {
2374
+ "part": "phage",
2375
+ "definition": "eat"
2376
+ },
2377
+ {
2378
+ "part": "phan",
2379
+ "definition": "show, make visible"
2380
+ },
2381
+ {
2382
+ "part": "phas",
2383
+ "definition": "show, make visible"
2384
+ },
2385
+ {
2386
+ "part": "phen",
2387
+ "definition": "show, make visible"
2388
+ },
2389
+ {
2390
+ "part": "fan",
2391
+ "definition": "show, make visible"
2392
+ },
2393
+ {
2394
+ "part": "phant",
2395
+ "definition": "show, make visible"
2396
+ },
2397
+ {
2398
+ "part": "fant",
2399
+ "definition": "show, make visible"
2400
+ },
2401
+ {
2402
+ "part": "phe",
2403
+ "definition": "speak"
2404
+ },
2405
+ {
2406
+ "part": "phil",
2407
+ "definition": "love"
2408
+ },
2409
+ {
2410
+ "part": "phlegma",
2411
+ "definition": "inflammation"
2412
+ },
2413
+ {
2414
+ "part": "phobia",
2415
+ "definition": "fear"
2416
+ },
2417
+ {
2418
+ "part": "phobos",
2419
+ "definition": "fear"
2420
+ },
2421
+ {
2422
+ "part": "phon",
2423
+ "definition": "sound"
2424
+ },
2425
+ {
2426
+ "part": "phot",
2427
+ "definition": "light"
2428
+ },
2429
+ {
2430
+ "part": "photo",
2431
+ "definition": "light"
2432
+ },
2433
+ {
2434
+ "part": "pico",
2435
+ "definition": "trillionth"
2436
+ },
2437
+ {
2438
+ "part": "pict",
2439
+ "definition": "paint, show, draw"
2440
+ },
2441
+ {
2442
+ "part": "plac",
2443
+ "definition": "please"
2444
+ },
2445
+ {
2446
+ "part": "plais",
2447
+ "definition": "please"
2448
+ },
2449
+ {
2450
+ "part": "pli",
2451
+ "definition": "fold"
2452
+ },
2453
+ {
2454
+ "part": "ply",
2455
+ "definition": "fold"
2456
+ },
2457
+ {
2458
+ "part": "plore",
2459
+ "definition": "cry out, wail"
2460
+ },
2461
+ {
2462
+ "part": "plu",
2463
+ "definition": "more"
2464
+ },
2465
+ {
2466
+ "part": "plur",
2467
+ "definition": "more"
2468
+ },
2469
+ {
2470
+ "part": "plus",
2471
+ "definition": "more"
2472
+ },
2473
+ {
2474
+ "part": "pneuma",
2475
+ "definition": "breath"
2476
+ },
2477
+ {
2478
+ "part": "pneumon",
2479
+ "definition": "breath"
2480
+ },
2481
+ {
2482
+ "part": "pod",
2483
+ "definition": "foot, feet"
2484
+ },
2485
+ {
2486
+ "part": "poli",
2487
+ "definition": "city"
2488
+ },
2489
+ {
2490
+ "part": "poly",
2491
+ "definition": "many"
2492
+ },
2493
+ {
2494
+ "part": "pon",
2495
+ "definition": "place, put"
2496
+ },
2497
+ {
2498
+ "part": "pos",
2499
+ "definition": "place, put"
2500
+ },
2501
+ {
2502
+ "part": "pound",
2503
+ "definition": "place, put"
2504
+ },
2505
+ {
2506
+ "part": "pop",
2507
+ "definition": "people"
2508
+ },
2509
+ {
2510
+ "part": "port",
2511
+ "definition": "carry"
2512
+ },
2513
+ {
2514
+ "part": "portion",
2515
+ "definition": "part, share"
2516
+ },
2517
+ {
2518
+ "part": "post",
2519
+ "definition": "after, behind"
2520
+ },
2521
+ {
2522
+ "part": "pot",
2523
+ "definition": "power"
2524
+ },
2525
+ {
2526
+ "part": "pre",
2527
+ "definition": "before"
2528
+ },
2529
+ {
2530
+ "part": "pur",
2531
+ "definition": "before"
2532
+ },
2533
+ {
2534
+ "part": "prehendere",
2535
+ "definition": "seize, grasp"
2536
+ },
2537
+ {
2538
+ "part": "prin",
2539
+ "definition": "first"
2540
+ },
2541
+ {
2542
+ "part": "prim",
2543
+ "definition": "first"
2544
+ },
2545
+ {
2546
+ "part": "prime",
2547
+ "definition": "first"
2548
+ },
2549
+ {
2550
+ "part": "pro",
2551
+ "definition": "for, foward"
2552
+ },
2553
+ {
2554
+ "part": "proto",
2555
+ "definition": "first"
2556
+ },
2557
+ {
2558
+ "part": "psych",
2559
+ "definition": "mind, soul"
2560
+ },
2561
+ {
2562
+ "part": "punct",
2563
+ "definition": "point, dot"
2564
+ },
2565
+ {
2566
+ "part": "pute",
2567
+ "definition": "think"
2568
+ },
2569
+ {
2570
+ "part": "quat",
2571
+ "definition": "four"
2572
+ },
2573
+ {
2574
+ "part": "quad",
2575
+ "definition": "four"
2576
+ },
2577
+ {
2578
+ "part": "quint",
2579
+ "definition": "five"
2580
+ },
2581
+ {
2582
+ "part": "penta",
2583
+ "definition": "five"
2584
+ },
2585
+ {
2586
+ "part": "quip",
2587
+ "definition": "ship"
2588
+ },
2589
+ {
2590
+ "part": "quir",
2591
+ "definition": "seek, ask"
2592
+ },
2593
+ {
2594
+ "part": "quis",
2595
+ "definition": "seek, ask"
2596
+ },
2597
+ {
2598
+ "part": "quest",
2599
+ "definition": "seek, ask"
2600
+ },
2601
+ {
2602
+ "part": "quer",
2603
+ "definition": "seek, ask"
2604
+ },
2605
+ {
2606
+ "part": "re",
2607
+ "definition": "back, again"
2608
+ },
2609
+ {
2610
+ "part": "reg",
2611
+ "definition": "straighten"
2612
+ },
2613
+ {
2614
+ "part": "recti",
2615
+ "definition": "straighten"
2616
+ },
2617
+ {
2618
+ "part": "retro",
2619
+ "definition": "backwards"
2620
+ },
2621
+ {
2622
+ "part": "ri",
2623
+ "definition": "laughter"
2624
+ },
2625
+ {
2626
+ "part": "ridi",
2627
+ "definition": "laughter"
2628
+ },
2629
+ {
2630
+ "part": "risi",
2631
+ "definition": "laughter"
2632
+ },
2633
+ {
2634
+ "part": "rog",
2635
+ "definition": "ask"
2636
+ },
2637
+ {
2638
+ "part": "roga",
2639
+ "definition": "ask"
2640
+ },
2641
+ {
2642
+ "part": "rupt",
2643
+ "definition": "break"
2644
+ },
2645
+ {
2646
+ "part": "sacr",
2647
+ "definition": "sacred"
2648
+ },
2649
+ {
2650
+ "part": "sanc",
2651
+ "definition": "sacred"
2652
+ },
2653
+ {
2654
+ "part": "secr",
2655
+ "definition": "sacred"
2656
+ },
2657
+ {
2658
+ "part": "salv",
2659
+ "definition": "safe, healthy"
2660
+ },
2661
+ {
2662
+ "part": "salu",
2663
+ "definition": "safe, healthy"
2664
+ },
2665
+ {
2666
+ "part": "sanct",
2667
+ "definition": "holy"
2668
+ },
2669
+ {
2670
+ "part": "sat",
2671
+ "definition": "enough"
2672
+ },
2673
+ {
2674
+ "part": "satis",
2675
+ "definition": "enough"
2676
+ },
2677
+ {
2678
+ "part": "sci",
2679
+ "definition": "know"
2680
+ },
2681
+ {
2682
+ "part": "scio",
2683
+ "definition": "know"
2684
+ },
2685
+ {
2686
+ "part": "scientia",
2687
+ "definition": "know"
2688
+ },
2689
+ {
2690
+ "part": "scope",
2691
+ "definition": "see, watch"
2692
+ },
2693
+ {
2694
+ "part": "scrib",
2695
+ "definition": "write"
2696
+ },
2697
+ {
2698
+ "part": "script",
2699
+ "definition": "write"
2700
+ },
2701
+ {
2702
+ "part": "se",
2703
+ "definition": "apart, move away from"
2704
+ },
2705
+ {
2706
+ "part": "sect",
2707
+ "definition": "cut"
2708
+ },
2709
+ {
2710
+ "part": "sec",
2711
+ "definition": "cut"
2712
+ },
2713
+ {
2714
+ "part": "sed",
2715
+ "definition": "sit"
2716
+ },
2717
+ {
2718
+ "part": "sess",
2719
+ "definition": "sit"
2720
+ },
2721
+ {
2722
+ "part": "sid",
2723
+ "definition": "sit"
2724
+ },
2725
+ {
2726
+ "part": "semi",
2727
+ "definition": "half, partial"
2728
+ },
2729
+ {
2730
+ "part": "sen",
2731
+ "definition": "old, grow old"
2732
+ },
2733
+ {
2734
+ "part": "scen",
2735
+ "definition": "old, grow old"
2736
+ },
2737
+ {
2738
+ "part": "sent",
2739
+ "definition": "feel, think"
2740
+ },
2741
+ {
2742
+ "part": "sens",
2743
+ "definition": "feel, think"
2744
+ },
2745
+ {
2746
+ "part": "sept",
2747
+ "definition": "seven"
2748
+ },
2749
+ {
2750
+ "part": "sequ",
2751
+ "definition": "follow"
2752
+ },
2753
+ {
2754
+ "part": "secu",
2755
+ "definition": "follow"
2756
+ },
2757
+ {
2758
+ "part": "sue",
2759
+ "definition": "follow"
2760
+ },
2761
+ {
2762
+ "part": "serv",
2763
+ "definition": "save, serve, keep"
2764
+ },
2765
+ {
2766
+ "part": "sign",
2767
+ "definition": "sign, mark, seal"
2768
+ },
2769
+ {
2770
+ "part": "signi",
2771
+ "definition": "sign, mark, seal"
2772
+ },
2773
+ {
2774
+ "part": "simil",
2775
+ "definition": "like, resembling"
2776
+ },
2777
+ {
2778
+ "part": "simul",
2779
+ "definition": "like, resembling"
2780
+ },
2781
+ {
2782
+ "part": "sist",
2783
+ "definition": "stand, withstand, make up"
2784
+ },
2785
+ {
2786
+ "part": "sta",
2787
+ "definition": "stand, withstand, make up"
2788
+ },
2789
+ {
2790
+ "part": "stit",
2791
+ "definition": "stand, withstand, make up"
2792
+ },
2793
+ {
2794
+ "part": "soci",
2795
+ "definition": "to join, companions"
2796
+ },
2797
+ {
2798
+ "part": "sol",
2799
+ "definition": "alone"
2800
+ },
2801
+ {
2802
+ "part": "solus",
2803
+ "definition": "alone"
2804
+ },
2805
+ {
2806
+ "part": "solv",
2807
+ "definition": "loosen, explain"
2808
+ },
2809
+ {
2810
+ "part": "solu",
2811
+ "definition": "loosen, explain"
2812
+ },
2813
+ {
2814
+ "part": "solut",
2815
+ "definition": "loosen, explain"
2816
+ },
2817
+ {
2818
+ "part": "somn",
2819
+ "definition": "sleep"
2820
+ },
2821
+ {
2822
+ "part": "soph",
2823
+ "definition": "wise"
2824
+ },
2825
+ {
2826
+ "part": "spec",
2827
+ "definition": "look, see"
2828
+ },
2829
+ {
2830
+ "part": "spect",
2831
+ "definition": "look, see"
2832
+ },
2833
+ {
2834
+ "part": "spi",
2835
+ "definition": "look, see"
2836
+ },
2837
+ {
2838
+ "part": "spic",
2839
+ "definition": "look, see"
2840
+ },
2841
+ {
2842
+ "part": "sper",
2843
+ "definition": "render favorable"
2844
+ },
2845
+ {
2846
+ "part": "sphere",
2847
+ "definition": "ball, sphere"
2848
+ },
2849
+ {
2850
+ "part": "spir",
2851
+ "definition": "breath"
2852
+ },
2853
+ {
2854
+ "part": "stand",
2855
+ "definition": "stand"
2856
+ },
2857
+ {
2858
+ "part": "stant",
2859
+ "definition": "stand"
2860
+ },
2861
+ {
2862
+ "part": "stab",
2863
+ "definition": "stand"
2864
+ },
2865
+ {
2866
+ "part": "stat",
2867
+ "definition": "stand"
2868
+ },
2869
+ {
2870
+ "part": "stan",
2871
+ "definition": "stand"
2872
+ },
2873
+ {
2874
+ "part": "sti",
2875
+ "definition": "stand"
2876
+ },
2877
+ {
2878
+ "part": "sta",
2879
+ "definition": "stand"
2880
+ },
2881
+ {
2882
+ "part": "st",
2883
+ "definition": "stand"
2884
+ },
2885
+ {
2886
+ "part": "stead",
2887
+ "definition": "stand"
2888
+ },
2889
+ {
2890
+ "part": "strain",
2891
+ "definition": "bind, pull, draw tight"
2892
+ },
2893
+ {
2894
+ "part": "strict",
2895
+ "definition": "bind, pull, draw tight"
2896
+ },
2897
+ {
2898
+ "part": "string",
2899
+ "definition": "bind, pull, draw tight"
2900
+ },
2901
+ {
2902
+ "part": "stige",
2903
+ "definition": "bind, pull, draw tight"
2904
+ },
2905
+ {
2906
+ "part": "stru",
2907
+ "definition": "build"
2908
+ },
2909
+ {
2910
+ "part": "struct",
2911
+ "definition": "build"
2912
+ },
2913
+ {
2914
+ "part": "stroy",
2915
+ "definition": "build"
2916
+ },
2917
+ {
2918
+ "part": "stry",
2919
+ "definition": "build"
2920
+ },
2921
+ {
2922
+ "part": "sub",
2923
+ "definition": "under, below, from, secretly, instead of"
2924
+ },
2925
+ {
2926
+ "part": "suc",
2927
+ "definition": "under, below, from, secretly, instead of"
2928
+ },
2929
+ {
2930
+ "part": "suf",
2931
+ "definition": "under, below, from, secretly, instead of"
2932
+ },
2933
+ {
2934
+ "part": "sup",
2935
+ "definition": "under, below, from, secretly, instead of"
2936
+ },
2937
+ {
2938
+ "part": "sur",
2939
+ "definition": "under, below, from, secretly, instead of"
2940
+ },
2941
+ {
2942
+ "part": "sus",
2943
+ "definition": "under, below, from, secretly, instead of"
2944
+ },
2945
+ {
2946
+ "part": "sume",
2947
+ "definition": "take, use, waste"
2948
+ },
2949
+ {
2950
+ "part": "sump",
2951
+ "definition": "take, use, waste"
2952
+ },
2953
+ {
2954
+ "part": "super",
2955
+ "definition": "over, above"
2956
+ },
2957
+ {
2958
+ "part": "supra",
2959
+ "definition": "over, above"
2960
+ },
2961
+ {
2962
+ "part": "syn",
2963
+ "definition": "together, at the same time"
2964
+ },
2965
+ {
2966
+ "part": "sym",
2967
+ "definition": "together, at the same time"
2968
+ },
2969
+ {
2970
+ "part": "tact",
2971
+ "definition": "touch"
2972
+ },
2973
+ {
2974
+ "part": "tang",
2975
+ "definition": "touch"
2976
+ },
2977
+ {
2978
+ "part": "tag",
2979
+ "definition": "touch"
2980
+ },
2981
+ {
2982
+ "part": "tig",
2983
+ "definition": "touch"
2984
+ },
2985
+ {
2986
+ "part": "ting",
2987
+ "definition": "touch"
2988
+ },
2989
+ {
2990
+ "part": "tain",
2991
+ "definition": "hold, keep, have"
2992
+ },
2993
+ {
2994
+ "part": "ten",
2995
+ "definition": "hold, keep, have"
2996
+ },
2997
+ {
2998
+ "part": "tent",
2999
+ "definition": "hold, keep, have"
3000
+ },
3001
+ {
3002
+ "part": "tin",
3003
+ "definition": "hold, keep, have"
3004
+ },
3005
+ {
3006
+ "part": "tect",
3007
+ "definition": "cover"
3008
+ },
3009
+ {
3010
+ "part": "teg",
3011
+ "definition": "cover"
3012
+ },
3013
+ {
3014
+ "part": "tele",
3015
+ "definition": "distance, far, from afar"
3016
+ },
3017
+ {
3018
+ "part": "tem",
3019
+ "definition": "time"
3020
+ },
3021
+ {
3022
+ "part": "tempo",
3023
+ "definition": "time"
3024
+ },
3025
+ {
3026
+ "part": "ten",
3027
+ "definition": "hold"
3028
+ },
3029
+ {
3030
+ "part": "tin",
3031
+ "definition": "hold"
3032
+ },
3033
+ {
3034
+ "part": "tain",
3035
+ "definition": "hold"
3036
+ },
3037
+ {
3038
+ "part": "tend",
3039
+ "definition": "stretch, strain"
3040
+ },
3041
+ {
3042
+ "part": "tent",
3043
+ "definition": "stretch, strain"
3044
+ },
3045
+ {
3046
+ "part": "tens",
3047
+ "definition": "stretch, strain"
3048
+ },
3049
+ {
3050
+ "part": "tera",
3051
+ "definition": "trillion"
3052
+ },
3053
+ {
3054
+ "part": "term",
3055
+ "definition": "end, boundary, limit"
3056
+ },
3057
+ {
3058
+ "part": "terr",
3059
+ "definition": "earth"
3060
+ },
3061
+ {
3062
+ "part": "terra",
3063
+ "definition": "earth"
3064
+ },
3065
+ {
3066
+ "part": "test",
3067
+ "definition": "to bear witness"
3068
+ },
3069
+ {
3070
+ "part": "the",
3071
+ "definition": "God, a god"
3072
+ },
3073
+ {
3074
+ "part": "theo",
3075
+ "definition": "God, a god"
3076
+ },
3077
+ {
3078
+ "part": "therm",
3079
+ "definition": "heat"
3080
+ },
3081
+ {
3082
+ "part": "thesis",
3083
+ "definition": "place, put"
3084
+ },
3085
+ {
3086
+ "part": "thet",
3087
+ "definition": "place, put"
3088
+ },
3089
+ {
3090
+ "part": "tire",
3091
+ "definition": "draw, pull"
3092
+ },
3093
+ {
3094
+ "part": "tom",
3095
+ "definition": "cut"
3096
+ },
3097
+ {
3098
+ "part": "tor",
3099
+ "definition": "twist"
3100
+ },
3101
+ {
3102
+ "part": "tors",
3103
+ "definition": "twist"
3104
+ },
3105
+ {
3106
+ "part": "tort",
3107
+ "definition": "twist"
3108
+ },
3109
+ {
3110
+ "part": "tox",
3111
+ "definition": "poison"
3112
+ },
3113
+ {
3114
+ "part": "tract",
3115
+ "definition": "drag, draw, pull"
3116
+ },
3117
+ {
3118
+ "part": "tra",
3119
+ "definition": "drag, draw, pull"
3120
+ },
3121
+ {
3122
+ "part": "trai",
3123
+ "definition": "drag, draw, pull"
3124
+ },
3125
+ {
3126
+ "part": "treat",
3127
+ "definition": "drag, draw, pull"
3128
+ },
3129
+ {
3130
+ "part": "trans",
3131
+ "definition": "across, beyond, change"
3132
+ },
3133
+ {
3134
+ "part": "tri",
3135
+ "definition": "three"
3136
+ },
3137
+ {
3138
+ "part": "trib",
3139
+ "definition": "pay, bestow"
3140
+ },
3141
+ {
3142
+ "part": "tribute",
3143
+ "definition": "give"
3144
+ },
3145
+ {
3146
+ "part": "turbo",
3147
+ "definition": "disturb"
3148
+ },
3149
+ {
3150
+ "part": "typ",
3151
+ "definition": "print"
3152
+ },
3153
+ {
3154
+ "part": "ultima",
3155
+ "definition": "last"
3156
+ },
3157
+ {
3158
+ "part": "umber",
3159
+ "definition": "shadow"
3160
+ },
3161
+ {
3162
+ "part": "umbraticum",
3163
+ "definition": "shadow"
3164
+ },
3165
+ {
3166
+ "part": "un",
3167
+ "definition": "not, against, opposite"
3168
+ },
3169
+ {
3170
+ "part": "uni",
3171
+ "definition": "one"
3172
+ },
3173
+ {
3174
+ "part": "vac",
3175
+ "definition": "empty"
3176
+ },
3177
+ {
3178
+ "part": "vade",
3179
+ "definition": "go"
3180
+ },
3181
+ {
3182
+ "part": "vale",
3183
+ "definition": "strength, worth"
3184
+ },
3185
+ {
3186
+ "part": "vali",
3187
+ "definition": "strength, worth"
3188
+ },
3189
+ {
3190
+ "part": "valu",
3191
+ "definition": "strength, worth"
3192
+ },
3193
+ {
3194
+ "part": "veh",
3195
+ "definition": "to carry"
3196
+ },
3197
+ {
3198
+ "part": "vect",
3199
+ "definition": "to carry"
3200
+ },
3201
+ {
3202
+ "part": "ven",
3203
+ "definition": "come"
3204
+ },
3205
+ {
3206
+ "part": "vent",
3207
+ "definition": "come"
3208
+ },
3209
+ {
3210
+ "part": "ver",
3211
+ "definition": "true"
3212
+ },
3213
+ {
3214
+ "part": "veri",
3215
+ "definition": "true"
3216
+ },
3217
+ {
3218
+ "part": "verb",
3219
+ "definition": "word"
3220
+ },
3221
+ {
3222
+ "part": "verv",
3223
+ "definition": "word"
3224
+ },
3225
+ {
3226
+ "part": "vert",
3227
+ "definition": "turn, change"
3228
+ },
3229
+ {
3230
+ "part": "vers",
3231
+ "definition": "turn, change"
3232
+ },
3233
+ {
3234
+ "part": "vi",
3235
+ "definition": "way"
3236
+ },
3237
+ {
3238
+ "part": "vic",
3239
+ "definition": "change, substitute"
3240
+ },
3241
+ {
3242
+ "part": "vicis",
3243
+ "definition": "change, substitute"
3244
+ },
3245
+ {
3246
+ "part": "vict",
3247
+ "definition": "conquer"
3248
+ },
3249
+ {
3250
+ "part": "vinc",
3251
+ "definition": "conquer"
3252
+ },
3253
+ {
3254
+ "part": "vid",
3255
+ "definition": "see"
3256
+ },
3257
+ {
3258
+ "part": "vis",
3259
+ "definition": "see"
3260
+ },
3261
+ {
3262
+ "part": "viv",
3263
+ "definition": "alive, life"
3264
+ },
3265
+ {
3266
+ "part": "vita",
3267
+ "definition": "alive, life"
3268
+ },
3269
+ {
3270
+ "part": "vivi",
3271
+ "definition": "alive, life"
3272
+ },
3273
+ {
3274
+ "part": "voc",
3275
+ "definition": "call"
3276
+ },
3277
+ {
3278
+ "part": "voke",
3279
+ "definition": "call"
3280
+ },
3281
+ {
3282
+ "part": "vol",
3283
+ "definition": "will"
3284
+ },
3285
+ {
3286
+ "part": "volcan",
3287
+ "definition": "fire"
3288
+ },
3289
+ {
3290
+ "part": "volv",
3291
+ "definition": "turn about, roll"
3292
+ },
3293
+ {
3294
+ "part": "volt",
3295
+ "definition": "turn about, roll"
3296
+ },
3297
+ {
3298
+ "part": "vol",
3299
+ "definition": "turn about, roll"
3300
+ },
3301
+ {
3302
+ "part": "vor",
3303
+ "definition": "eat greedily"
3304
+ },
3305
+ {
3306
+ "part": "with",
3307
+ "definition": "against"
3308
+ },
3309
+ {
3310
+ "part": "zo",
3311
+ "definition": "animal"
3312
+ }
3313
+ ],
3314
+ "suffixes": [
3315
+ {
3316
+ "part": "-able",
3317
+ "definition": "Adjective: worth, ability"
3318
+ },
3319
+ {
3320
+ "part": "-ible",
3321
+ "definition": "Adjective: worth, ability"
3322
+ },
3323
+ {
3324
+ "part": "-acy",
3325
+ "definition": "Noun: state or quality"
3326
+ },
3327
+ {
3328
+ "part": "-cy",
3329
+ "definition": "Noun: state or quality"
3330
+ },
3331
+ {
3332
+ "part": "-ade",
3333
+ "definition": "act, product, sweet drink"
3334
+ },
3335
+ {
3336
+ "part": "-age",
3337
+ "definition": "Noun: activity, or result of action"
3338
+ },
3339
+ {
3340
+ "part": "-al",
3341
+ "definition": "Noun: action, result of action"
3342
+ },
3343
+ {
3344
+ "part": "-al",
3345
+ "definition": "Adjective: quality, relation"
3346
+ },
3347
+ {
3348
+ "part": "-ial",
3349
+ "definition": "Adjective: quality, relation"
3350
+ },
3351
+ {
3352
+ "part": "-ical",
3353
+ "definition": "Adjective: quality, relation"
3354
+ },
3355
+ {
3356
+ "part": "-an",
3357
+ "definition": "Noun: person"
3358
+ },
3359
+ {
3360
+ "part": "-ance",
3361
+ "definition": "Noun: action, state, quality or process"
3362
+ },
3363
+ {
3364
+ "part": "-ence",
3365
+ "definition": "Noun: action, state, quality or process"
3366
+ },
3367
+ {
3368
+ "part": "-ancy",
3369
+ "definition": "Noun: state, quality or capacity"
3370
+ },
3371
+ {
3372
+ "part": "-ency",
3373
+ "definition": "Noun: state, quality or capacity"
3374
+ },
3375
+ {
3376
+ "part": "-ant",
3377
+ "definition": "Noun: an agent, something that performs the action"
3378
+ },
3379
+ {
3380
+ "part": "-ent",
3381
+ "definition": "Noun: an agent, something that performs the action"
3382
+ },
3383
+ {
3384
+ "part": "-ant",
3385
+ "definition": "Adjective: kind of agent, indication"
3386
+ },
3387
+ {
3388
+ "part": "-ent",
3389
+ "definition": "Adjective: kind of agent, indication"
3390
+ },
3391
+ {
3392
+ "part": "-ient",
3393
+ "definition": "Adjective: kind of agent, indication"
3394
+ },
3395
+ {
3396
+ "part": "-ar",
3397
+ "definition": "Adjective: resembling, related to"
3398
+ },
3399
+ {
3400
+ "part": "-ary",
3401
+ "definition": "Adjective: resembling, related to"
3402
+ },
3403
+ {
3404
+ "part": "-ard",
3405
+ "definition": "Noun: characterized"
3406
+ },
3407
+ {
3408
+ "part": "-art",
3409
+ "definition": "Noun: characterized"
3410
+ },
3411
+ {
3412
+ "part": "-ate",
3413
+ "definition": "Noun: state, office, fuction"
3414
+ },
3415
+ {
3416
+ "part": "-ate",
3417
+ "definition": "Verb: cause to be"
3418
+ },
3419
+ {
3420
+ "part": "-ate",
3421
+ "definition": "Adjective: kind of state"
3422
+ },
3423
+ {
3424
+ "part": "-ation",
3425
+ "definition": "Noun: action, resulting state"
3426
+ },
3427
+ {
3428
+ "part": "-cade",
3429
+ "definition": "procession"
3430
+ },
3431
+ {
3432
+ "part": "-drome",
3433
+ "definition": "run, step"
3434
+ },
3435
+ {
3436
+ "part": "-ed",
3437
+ "definition": "Verb: past tense"
3438
+ },
3439
+ {
3440
+ "part": "-ed",
3441
+ "definition": "Adjective: having the quality or characteristics of"
3442
+ },
3443
+ {
3444
+ "part": "-en",
3445
+ "definition": "Verb: to cause to become"
3446
+ },
3447
+ {
3448
+ "part": "-en",
3449
+ "definition": "Adjective: material"
3450
+ },
3451
+ {
3452
+ "part": "-ence",
3453
+ "definition": "Noun: action or process, quality or state"
3454
+ },
3455
+ {
3456
+ "part": "-ency",
3457
+ "definition": "Noun: action or process, quality or state"
3458
+ },
3459
+ {
3460
+ "part": "-er",
3461
+ "definition": "Adjective: comparative"
3462
+ },
3463
+ {
3464
+ "part": "-ier",
3465
+ "definition": "Adjective: comparative"
3466
+ },
3467
+ {
3468
+ "part": "-er",
3469
+ "definition": "Noun: person or thing that does something"
3470
+ },
3471
+ {
3472
+ "part": "-or",
3473
+ "definition": "Noun: person or thing that does something"
3474
+ },
3475
+ {
3476
+ "part": "-er",
3477
+ "definition": "Verb: action"
3478
+ },
3479
+ {
3480
+ "part": "-or",
3481
+ "definition": "Verb: action"
3482
+ },
3483
+ {
3484
+ "part": "-ery",
3485
+ "definition": "collective qualities, art, practice, trade, collection, state, condition"
3486
+ },
3487
+ {
3488
+ "part": "-es",
3489
+ "definition": "Noun: plural of most nouns ending in -ch, -s, -sh, -o and -z and some in -f and -y"
3490
+ },
3491
+ {
3492
+ "part": "-ies",
3493
+ "definition": "Noun: plural of most nouns ending in -ch, -s, -sh, -o and -z and some in -f and -y"
3494
+ },
3495
+ {
3496
+ "part": "-es",
3497
+ "definition": "Verb: third person singular present indicative of verbs that end in -ch, -s, -sh, - and some in -y"
3498
+ },
3499
+ {
3500
+ "part": "-ies",
3501
+ "definition": "Verb: third person singular present indicative of verbs that end in -ch, -s, -sh, - and some in -y"
3502
+ },
3503
+ {
3504
+ "part": "-ess",
3505
+ "definition": "female"
3506
+ },
3507
+ {
3508
+ "part": "-est",
3509
+ "definition": "Adjective or Adverb: superlative"
3510
+ },
3511
+ {
3512
+ "part": "-iest",
3513
+ "definition": "Adjective or Adverb: superlative"
3514
+ },
3515
+ {
3516
+ "part": "-fold",
3517
+ "definition": "Adverb: in a manner of, marked by"
3518
+ },
3519
+ {
3520
+ "part": "-ful",
3521
+ "definition": "Noun: an amount or quanity that fills"
3522
+ },
3523
+ {
3524
+ "part": "-ful",
3525
+ "definition": "Adjective: having, giving, marked by"
3526
+ },
3527
+ {
3528
+ "part": "-fy",
3529
+ "definition": "make, form into"
3530
+ },
3531
+ {
3532
+ "part": "-ia",
3533
+ "definition": "Noun: names, diseases"
3534
+ },
3535
+ {
3536
+ "part": "-ian",
3537
+ "definition": "Noun: related to, one that is"
3538
+ },
3539
+ {
3540
+ "part": "-iatry",
3541
+ "definition": "Noun: art of healing"
3542
+ },
3543
+ {
3544
+ "part": "-ic",
3545
+ "definition": "Adjective: quality, relation"
3546
+ },
3547
+ {
3548
+ "part": "-ic",
3549
+ "definition": "Noun: related to the arts and sciences"
3550
+ },
3551
+ {
3552
+ "part": "-ice",
3553
+ "definition": "Noun: act"
3554
+ },
3555
+ {
3556
+ "part": "-ify",
3557
+ "definition": "Verb: cause"
3558
+ },
3559
+ {
3560
+ "part": "-ile",
3561
+ "definition": "Adjective: having the qualities of"
3562
+ },
3563
+ {
3564
+ "part": "-ing",
3565
+ "definition": "Noun: material made for, activity, result of an activity"
3566
+ },
3567
+ {
3568
+ "part": "-ing",
3569
+ "definition": "Verb: present participle"
3570
+ },
3571
+ {
3572
+ "part": "-ing",
3573
+ "definition": "Adjective: activity"
3574
+ },
3575
+ {
3576
+ "part": "-ion",
3577
+ "definition": "Noun: condition or action"
3578
+ },
3579
+ {
3580
+ "part": "-ish",
3581
+ "definition": "Adjective: having the character of"
3582
+ },
3583
+ {
3584
+ "part": "-ism",
3585
+ "definition": "Noun: doctrine, belief, action or conduct"
3586
+ },
3587
+ {
3588
+ "part": "-ist",
3589
+ "definition": "Noun: person or member"
3590
+ },
3591
+ {
3592
+ "part": "-ite",
3593
+ "definition": "Noun: state or quality"
3594
+ },
3595
+ {
3596
+ "part": "-ity",
3597
+ "definition": "Noun: state or quality"
3598
+ },
3599
+ {
3600
+ "part": "-ive",
3601
+ "definition": "Noun: condition"
3602
+ },
3603
+ {
3604
+ "part": "-ive",
3605
+ "definition": "Adjective: having the quality of"
3606
+ },
3607
+ {
3608
+ "part": "-ative",
3609
+ "definition": "Adjective: having the quality of"
3610
+ },
3611
+ {
3612
+ "part": "-itive",
3613
+ "definition": "Adjective: having the quality of"
3614
+ },
3615
+ {
3616
+ "part": "-ize",
3617
+ "definition": "Verb: cause"
3618
+ },
3619
+ {
3620
+ "part": "-less",
3621
+ "definition": "Adjective: without, missing"
3622
+ },
3623
+ {
3624
+ "part": "-ly",
3625
+ "definition": "Adverb: in the manner of"
3626
+ },
3627
+ {
3628
+ "part": "-ment",
3629
+ "definition": "Noun: condition or result"
3630
+ },
3631
+ {
3632
+ "part": "-ness",
3633
+ "definition": "Noun: state, condition, quality"
3634
+ },
3635
+ {
3636
+ "part": "-or",
3637
+ "definition": "Noun: condition or activity"
3638
+ },
3639
+ {
3640
+ "part": "-ory",
3641
+ "definition": "Noun: place for, serves for"
3642
+ },
3643
+ {
3644
+ "part": "-ous",
3645
+ "definition": "Adjective: having the quality of, relating to"
3646
+ },
3647
+ {
3648
+ "part": "-eous",
3649
+ "definition": "Adjective: having the quality of, relating to"
3650
+ },
3651
+ {
3652
+ "part": "-ose",
3653
+ "definition": "Adjective: having the quality of, relating to"
3654
+ },
3655
+ {
3656
+ "part": "-ious",
3657
+ "definition": "Adjective: having the quality of, relating to"
3658
+ },
3659
+ {
3660
+ "part": "-ship",
3661
+ "definition": "Noun: status, condition"
3662
+ },
3663
+ {
3664
+ "part": "-ster",
3665
+ "definition": "person"
3666
+ },
3667
+ {
3668
+ "part": "-ure",
3669
+ "definition": "Noun: act, condition, process, function"
3670
+ },
3671
+ {
3672
+ "part": "-ward",
3673
+ "definition": "Adverb: in a direction or manner"
3674
+ },
3675
+ {
3676
+ "part": "-wise",
3677
+ "definition": "Adverb: in the manner of, with regard to"
3678
+ },
3679
+ {
3680
+ "part": "-y",
3681
+ "definition": "Noun: state, condition, result of an activity"
3682
+ },
3683
+ {
3684
+ "part": "-y",
3685
+ "definition": "Adjective: marked by, having"
3686
+ }
3687
+ ]
3688
+ }