faker 2.0.0 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (584) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1896 -11
  3. data/README.md +140 -307
  4. data/lib/faker/blockchain/aeternity.rb +70 -0
  5. data/lib/faker/blockchain/bitcoin.rb +27 -2
  6. data/lib/faker/blockchain/ethereum.rb +11 -1
  7. data/lib/faker/blockchain/tezos.rb +92 -9
  8. data/lib/faker/blockchain.rb +9 -0
  9. data/lib/faker/books/culture_series.rb +49 -0
  10. data/lib/faker/books/dune.rb +71 -5
  11. data/lib/faker/books/lovecraft.rb +182 -7
  12. data/lib/faker/books/the_kingkiller_chronicle.rb +61 -0
  13. data/lib/faker/books.rb +9 -0
  14. data/lib/faker/creature/animal.rb +9 -0
  15. data/lib/faker/creature/bird.rb +203 -0
  16. data/lib/faker/creature/cat.rb +27 -0
  17. data/lib/faker/creature/dog.rb +72 -0
  18. data/lib/faker/creature/horse.rb +18 -0
  19. data/lib/faker/creature.rb +9 -0
  20. data/lib/faker/default/address.rb +251 -6
  21. data/lib/faker/default/adjective.rb +35 -0
  22. data/lib/faker/default/alphanumeric.rb +49 -6
  23. data/lib/faker/default/ancient.rb +36 -0
  24. data/lib/faker/default/app.rb +45 -0
  25. data/lib/faker/default/appliance.rb +18 -0
  26. data/lib/faker/default/artist.rb +9 -0
  27. data/lib/faker/default/avatar.rb +32 -1
  28. data/lib/faker/default/bank.rb +117 -22
  29. data/lib/faker/default/barcode.rb +165 -0
  30. data/lib/faker/default/beer.rb +75 -3
  31. data/lib/faker/default/blood.rb +48 -0
  32. data/lib/faker/default/book.rb +61 -0
  33. data/lib/faker/default/boolean.rb +14 -1
  34. data/lib/faker/default/business.rb +27 -0
  35. data/lib/faker/default/camera.rb +46 -0
  36. data/lib/faker/default/cannabis.rb +90 -0
  37. data/lib/faker/default/chile_rut.rb +62 -8
  38. data/lib/faker/default/chuck_norris.rb +13 -2
  39. data/lib/faker/default/code.rb +165 -38
  40. data/lib/faker/default/coffee.rb +45 -0
  41. data/lib/faker/default/coin.rb +18 -0
  42. data/lib/faker/default/color.rb +123 -5
  43. data/lib/faker/default/commerce.rb +102 -11
  44. data/lib/faker/default/company.rb +445 -23
  45. data/lib/faker/default/compass.rb +135 -0
  46. data/lib/faker/default/computer.rb +63 -0
  47. data/lib/faker/default/construction.rb +54 -0
  48. data/lib/faker/default/cosmere.rb +90 -0
  49. data/lib/faker/default/crypto.rb +52 -5
  50. data/lib/faker/default/crypto_coin.rb +45 -0
  51. data/lib/faker/default/currency.rb +27 -0
  52. data/lib/faker/default/date.rb +145 -5
  53. data/lib/faker/default/dc_comics.rb +45 -0
  54. data/lib/faker/default/demographic.rb +57 -0
  55. data/lib/faker/default/dessert.rb +27 -0
  56. data/lib/faker/default/device.rb +54 -0
  57. data/lib/faker/default/driving_licence.rb +87 -14
  58. data/lib/faker/default/drone.rb +332 -0
  59. data/lib/faker/default/educator.rb +73 -6
  60. data/lib/faker/default/electrical_components.rb +27 -0
  61. data/lib/faker/default/emotion.rb +33 -0
  62. data/lib/faker/default/esport.rb +45 -0
  63. data/lib/faker/default/file.rb +53 -4
  64. data/lib/faker/default/finance.rb +74 -2
  65. data/lib/faker/default/food.rb +93 -3
  66. data/lib/faker/default/funny_name.rb +45 -0
  67. data/lib/faker/default/game.rb +48 -0
  68. data/lib/faker/default/gender.rb +31 -0
  69. data/lib/faker/default/greek_philosophers.rb +18 -0
  70. data/lib/faker/default/hacker.rb +59 -1
  71. data/lib/faker/default/hipster.rb +103 -7
  72. data/lib/faker/default/hobby.rb +22 -0
  73. data/lib/faker/default/house.rb +18 -0
  74. data/lib/faker/default/html.rb +230 -0
  75. data/lib/faker/default/id_number.rb +313 -8
  76. data/lib/faker/default/industry_segments.rb +36 -0
  77. data/lib/faker/default/invoice.rb +34 -7
  78. data/lib/faker/default/job.rb +36 -0
  79. data/lib/faker/default/json.rb +68 -8
  80. data/lib/faker/default/kpop.rb +54 -0
  81. data/lib/faker/default/lorem.rb +194 -21
  82. data/lib/faker/default/lorem_flickr.rb +67 -2
  83. data/lib/faker/default/markdown.rb +100 -9
  84. data/lib/faker/default/marketing.rb +9 -0
  85. data/lib/faker/default/measurement.rb +93 -2
  86. data/lib/faker/default/military.rb +71 -0
  87. data/lib/faker/default/mountain.rb +33 -0
  88. data/lib/faker/default/movie.rb +33 -0
  89. data/lib/faker/default/name.rb +98 -0
  90. data/lib/faker/default/nation.rb +45 -5
  91. data/lib/faker/default/{nhs.rb → national_health_service.rb} +27 -4
  92. data/lib/faker/default/nato_phonetic_alphabet.rb +9 -0
  93. data/lib/faker/default/number.rb +151 -12
  94. data/lib/faker/default/omniauth.rb +233 -92
  95. data/lib/faker/default/phone_number.rb +113 -11
  96. data/lib/faker/default/placeholdit.rb +24 -3
  97. data/lib/faker/default/programming_language.rb +18 -0
  98. data/lib/faker/default/quote.rb +124 -0
  99. data/lib/faker/default/relationship.rb +46 -1
  100. data/lib/faker/default/restaurant.rb +54 -2
  101. data/lib/faker/default/science.rb +135 -0
  102. data/lib/faker/default/slack_emoji.rb +81 -0
  103. data/lib/faker/default/source.rb +43 -0
  104. data/lib/faker/default/south_africa.rb +93 -3
  105. data/lib/faker/default/space.rb +128 -1
  106. data/lib/faker/default/sport.rb +116 -0
  107. data/lib/faker/default/string.rb +18 -4
  108. data/lib/faker/default/stripe.rb +64 -3
  109. data/lib/faker/default/subscription.rb +45 -0
  110. data/lib/faker/default/superhero.rb +45 -0
  111. data/lib/faker/default/tea.rb +41 -0
  112. data/lib/faker/default/team.rb +45 -0
  113. data/lib/faker/default/theater.rb +49 -0
  114. data/lib/faker/default/time.rb +80 -0
  115. data/lib/faker/default/types.rb +91 -11
  116. data/lib/faker/default/university.rb +45 -0
  117. data/lib/faker/default/vehicle.rb +225 -42
  118. data/lib/faker/default/verb.rb +45 -0
  119. data/lib/faker/default/vulnerability_identifier.rb +23 -0
  120. data/lib/faker/default/world_cup.rb +50 -0
  121. data/lib/faker/default/x.rb +189 -0
  122. data/lib/faker/default.rb +9 -0
  123. data/lib/faker/fantasy/tolkien.rb +67 -0
  124. data/lib/faker/fantasy.rb +9 -0
  125. data/lib/faker/games/clash_of_clans.rb +48 -0
  126. data/lib/faker/games/control.rb +113 -0
  127. data/lib/faker/games/dnd.rb +178 -0
  128. data/lib/faker/games/dota.rb +60 -0
  129. data/lib/faker/games/elder_scrolls.rb +98 -0
  130. data/lib/faker/games/fallout.rb +37 -0
  131. data/lib/faker/games/final_fantasy_xiv.rb +73 -0
  132. data/lib/faker/games/half_life.rb +27 -0
  133. data/lib/faker/games/heroes.rb +40 -0
  134. data/lib/faker/games/heroes_of_the_storm.rb +38 -2
  135. data/lib/faker/games/league_of_legends.rb +54 -0
  136. data/lib/faker/games/minecraft.rb +113 -0
  137. data/lib/faker/games/myst.rb +45 -0
  138. data/lib/faker/games/overwatch.rb +27 -0
  139. data/lib/faker/games/pokemon.rb +27 -0
  140. data/lib/faker/games/sonic_the_hedgehog.rb +27 -0
  141. data/lib/faker/games/street_fighter.rb +61 -0
  142. data/lib/faker/games/super_mario.rb +48 -0
  143. data/lib/faker/games/super_smash_bros.rb +18 -0
  144. data/lib/faker/games/tarkov.rb +205 -0
  145. data/lib/faker/games/touhou.rb +75 -0
  146. data/lib/faker/games/warhammer_fantasy.rb +74 -0
  147. data/lib/faker/games/witcher.rb +93 -0
  148. data/lib/faker/games/world_of_warcraft.rb +44 -1
  149. data/lib/faker/games/zelda.rb +37 -1
  150. data/lib/faker/games.rb +9 -0
  151. data/lib/faker/internet/http.rb +48 -0
  152. data/lib/faker/internet.rb +582 -0
  153. data/lib/faker/japanese_media/conan.rb +48 -0
  154. data/lib/faker/japanese_media/cowboy_bebop.rb +61 -0
  155. data/lib/faker/japanese_media/doraemon.rb +48 -0
  156. data/lib/faker/japanese_media/dragon_ball.rb +35 -0
  157. data/lib/faker/japanese_media/fullmetal_alchemist_brotherhood.rb +48 -0
  158. data/lib/faker/japanese_media/kamen_rider.rb +102 -0
  159. data/lib/faker/japanese_media/naruto.rb +61 -0
  160. data/lib/faker/japanese_media/one_piece.rb +55 -1
  161. data/lib/faker/japanese_media/studio_ghibli.rb +48 -0
  162. data/lib/faker/japanese_media/sword_art_online.rb +36 -0
  163. data/lib/faker/japanese_media.rb +9 -0
  164. data/lib/faker/locations/australia.rb +49 -0
  165. data/lib/faker/locations.rb +9 -0
  166. data/lib/faker/movies/avatar.rb +49 -0
  167. data/lib/faker/movies/back_to_the_future.rb +28 -0
  168. data/lib/faker/movies/departed.rb +49 -0
  169. data/lib/faker/movies/ghostbusters.rb +28 -0
  170. data/lib/faker/movies/hackers.rb +48 -0
  171. data/lib/faker/movies/harry_potter.rb +54 -0
  172. data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +69 -0
  173. data/lib/faker/movies/hobbit.rb +41 -4
  174. data/lib/faker/movies/how_to_train_your_dragon.rb +48 -0
  175. data/lib/faker/movies/lebowski.rb +27 -0
  176. data/lib/faker/movies/lord_of_the_rings.rb +31 -3
  177. data/lib/faker/movies/princess_bride.rb +19 -0
  178. data/lib/faker/movies/star_wars.rb +169 -5
  179. data/lib/faker/movies/the_room.rb +63 -0
  180. data/lib/faker/movies/tron.rb +161 -0
  181. data/lib/faker/movies/v_for_vendetta.rb +29 -0
  182. data/lib/faker/movies.rb +9 -0
  183. data/lib/faker/music/bossa_nova.rb +35 -0
  184. data/lib/faker/music/grateful_dead.rb +18 -2
  185. data/lib/faker/music/hiphop.rb +48 -0
  186. data/lib/faker/music/opera.rb +273 -1
  187. data/lib/faker/music/pearl_jam.rb +48 -0
  188. data/lib/faker/music/phish.rb +36 -1
  189. data/lib/faker/music/prince.rb +64 -0
  190. data/lib/faker/music/rock_band.rb +21 -0
  191. data/lib/faker/music/rush.rb +35 -0
  192. data/lib/faker/music/smashing_pumpkins.rb +62 -0
  193. data/lib/faker/music/umphreys_mcgee.rb +9 -0
  194. data/lib/faker/music.rb +149 -0
  195. data/lib/faker/quotes/chiquito.rb +80 -0
  196. data/lib/faker/quotes/rajnikanth.rb +27 -0
  197. data/lib/faker/quotes/shakespeare.rb +70 -0
  198. data/lib/faker/quotes.rb +9 -0
  199. data/lib/faker/religion/bible.rb +50 -0
  200. data/lib/faker/religion.rb +9 -0
  201. data/lib/faker/sports/basketball.rb +36 -0
  202. data/lib/faker/sports/chess.rb +90 -0
  203. data/lib/faker/sports/football.rb +45 -0
  204. data/lib/faker/sports/mountaineering.rb +22 -0
  205. data/lib/faker/sports/volleyball.rb +74 -0
  206. data/lib/faker/sports.rb +9 -0
  207. data/lib/faker/travel/airport.rb +43 -0
  208. data/lib/faker/travel/train_station.rb +54 -0
  209. data/lib/faker/travel.rb +9 -0
  210. data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +22 -0
  211. data/lib/faker/tv_shows/archer.rb +51 -0
  212. data/lib/faker/tv_shows/big_bang_theory.rb +37 -0
  213. data/lib/faker/tv_shows/bojack_horseman.rb +28 -0
  214. data/lib/faker/tv_shows/breaking_bad.rb +18 -0
  215. data/lib/faker/tv_shows/brooklyn_nine_nine.rb +38 -0
  216. data/lib/faker/tv_shows/buffy.rb +47 -2
  217. data/lib/faker/tv_shows/community.rb +19 -0
  218. data/lib/faker/tv_shows/dr_who.rb +65 -2
  219. data/lib/faker/tv_shows/dumb_and_dumber.rb +28 -0
  220. data/lib/faker/tv_shows/family_guy.rb +28 -0
  221. data/lib/faker/tv_shows/final_space.rb +51 -0
  222. data/lib/faker/tv_shows/friends.rb +27 -0
  223. data/lib/faker/tv_shows/futurama.rb +65 -0
  224. data/lib/faker/tv_shows/game_of_thrones.rb +46 -0
  225. data/lib/faker/tv_shows/hey_arnold.rb +27 -0
  226. data/lib/faker/tv_shows/how_i_met_your_mother.rb +37 -0
  227. data/lib/faker/tv_shows/michael_scott.rb +10 -0
  228. data/lib/faker/tv_shows/new_girl.rb +19 -0
  229. data/lib/faker/tv_shows/parks_and_rec.rb +18 -0
  230. data/lib/faker/tv_shows/rick_and_morty.rb +28 -0
  231. data/lib/faker/tv_shows/ru_paul.rb +18 -0
  232. data/lib/faker/tv_shows/seinfeld.rb +28 -0
  233. data/lib/faker/tv_shows/silicon_valley.rb +75 -0
  234. data/lib/faker/tv_shows/simpsons.rb +42 -0
  235. data/lib/faker/tv_shows/south_park.rb +34 -0
  236. data/lib/faker/tv_shows/spongebob.rb +50 -0
  237. data/lib/faker/tv_shows/star_trek.rb +36 -0
  238. data/lib/faker/tv_shows/stargate.rb +28 -0
  239. data/lib/faker/tv_shows/stranger_things.rb +19 -0
  240. data/lib/faker/tv_shows/suits.rb +37 -0
  241. data/lib/faker/tv_shows/supernatural.rb +48 -0
  242. data/lib/faker/tv_shows/the_expanse.rb +36 -0
  243. data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +30 -2
  244. data/lib/faker/tv_shows/the_it_crowd.rb +37 -0
  245. data/lib/faker/tv_shows/the_office.rb +37 -0
  246. data/lib/faker/tv_shows/the_thick_of_it.rb +28 -0
  247. data/lib/faker/tv_shows/twin_peaks.rb +28 -0
  248. data/lib/faker/tv_shows/venture_bros.rb +38 -0
  249. data/lib/faker/tv_shows.rb +9 -0
  250. data/lib/faker/version.rb +2 -2
  251. data/lib/faker.rb +125 -45
  252. data/lib/helpers/base58.rb +1 -1
  253. data/lib/helpers/char.rb +22 -27
  254. data/lib/helpers/deprecator.rb +118 -0
  255. data/lib/helpers/positional_generator.rb +478 -0
  256. data/lib/helpers/unique_generator.rb +18 -14
  257. data/lib/locales/README.md +18 -2
  258. data/lib/locales/ar.yml +1608 -46
  259. data/lib/locales/bg.yml +937 -21
  260. data/lib/locales/ca-CAT.yml +347 -12
  261. data/lib/locales/ca.yml +580 -15
  262. data/lib/locales/da-DK.yml +530 -36
  263. data/lib/locales/de-AT.yml +3487 -25
  264. data/lib/locales/de-CH.yml +6051 -9
  265. data/lib/locales/de.yml +7185 -97
  266. data/lib/locales/ee.yml +1185 -27
  267. data/lib/locales/en/address.yml +1829 -559
  268. data/lib/locales/en/adjective.yml +179 -0
  269. data/lib/locales/en/airport.yml +381 -0
  270. data/lib/locales/en/ancient.yml +128 -4
  271. data/lib/locales/en/animal.yml +141 -2
  272. data/lib/locales/en/app.yml +89 -2
  273. data/lib/locales/en/appliance.yml +81 -2
  274. data/lib/locales/en/aqua_teen_hunger_force.yml +33 -1
  275. data/lib/locales/en/archer.yml +75 -0
  276. data/lib/locales/en/artist.yml +43 -1
  277. data/lib/locales/en/australia.yml +108 -0
  278. data/lib/locales/en/avatar.yml +57 -0
  279. data/lib/locales/en/back_to_the_future.yml +145 -117
  280. data/lib/locales/en/bank.yml +92 -3
  281. data/lib/locales/en/barcode.yml +24 -0
  282. data/lib/locales/en/beer.yml +232 -6
  283. data/lib/locales/en/bible.yml +87 -0
  284. data/lib/locales/en/big_bang_theory.yml +37 -0
  285. data/lib/locales/en/bird.yml +1280 -0
  286. data/lib/locales/en/blood.yml +13 -0
  287. data/lib/locales/en/bojack_horseman.yml +63 -3
  288. data/lib/locales/en/book.yml +486 -3
  289. data/lib/locales/en/bossa_nova.yml +110 -3
  290. data/lib/locales/en/breaking_bad.yml +110 -25
  291. data/lib/locales/en/brooklyn_nine_nine.yml +34 -0
  292. data/lib/locales/en/buffy.yml +239 -257
  293. data/lib/locales/en/business.yml +18 -2
  294. data/lib/locales/en/camera.yml +611 -0
  295. data/lib/locales/en/cannabis.yml +344 -10
  296. data/lib/locales/en/cat.yml +155 -3
  297. data/lib/locales/en/chess.yml +102 -0
  298. data/lib/locales/en/chiquito.yml +63 -0
  299. data/lib/locales/en/chuck_norris.yml +78 -79
  300. data/lib/locales/en/clash_of_clan.yml +99 -0
  301. data/lib/locales/en/code.yml +501 -1
  302. data/lib/locales/en/coffee.yml +450 -25
  303. data/lib/locales/en/color.yml +73 -1
  304. data/lib/locales/en/commerce.yml +117 -6
  305. data/lib/locales/en/community.yml +55 -30
  306. data/lib/locales/en/company.yml +1756 -13
  307. data/lib/locales/en/compass.yml +108 -12
  308. data/lib/locales/en/computer.yml +55 -0
  309. data/lib/locales/en/conan.yml +169 -0
  310. data/lib/locales/en/construction.yml +416 -422
  311. data/lib/locales/en/control.yml +247 -0
  312. data/lib/locales/en/cosmere.yml +219 -54
  313. data/lib/locales/en/cowboy_bebop.yml +160 -0
  314. data/lib/locales/en/culture_series.yml +298 -298
  315. data/lib/locales/en/currency.yml +358 -3
  316. data/lib/locales/en/dc_comics.yml +178 -49
  317. data/lib/locales/en/demographic.yml +218 -5
  318. data/lib/locales/en/departed.yml +46 -0
  319. data/lib/locales/en/dessert.yml +78 -3
  320. data/lib/locales/en/device.yml +112 -4
  321. data/lib/locales/en/dnd.yml +636 -0
  322. data/lib/locales/en/dog.yml +262 -7
  323. data/lib/locales/en/doraemon.yml +284 -0
  324. data/lib/locales/en/dota.yml +704 -63
  325. data/lib/locales/en/dr_who.yml +468 -93
  326. data/lib/locales/en/dragon_ball.yml +243 -1
  327. data/lib/locales/en/driving_license.yml +181 -0
  328. data/lib/locales/en/drone.yml +95 -0
  329. data/lib/locales/en/dumb_and_dumber.yml +72 -56
  330. data/lib/locales/en/dune.yml +270 -131
  331. data/lib/locales/en/educator.yml +75 -6
  332. data/lib/locales/en/elder_scrolls.yml +582 -9
  333. data/lib/locales/en/electrical_components.yml +49 -3
  334. data/lib/locales/en/emotion.yml +480 -0
  335. data/lib/locales/en/esport.yml +58 -5
  336. data/lib/locales/en/fallout.yml +311 -133
  337. data/lib/locales/en/family_guy.yml +54 -4
  338. data/lib/locales/en/file.yml +109 -2
  339. data/lib/locales/en/final_fantasy_xiv.yml +754 -0
  340. data/lib/locales/en/final_space.yml +35 -0
  341. data/lib/locales/en/finance.yml +80 -4
  342. data/lib/locales/en/food.yml +1067 -10
  343. data/lib/locales/en/football.yml +121 -5
  344. data/lib/locales/en/fresh_prince_of_bel_air.yml +119 -70
  345. data/lib/locales/en/friends.yml +162 -3
  346. data/lib/locales/en/fullmetal_alchemist_brotherhood.yml +78 -0
  347. data/lib/locales/en/funny_name.yml +752 -1
  348. data/lib/locales/en/futurama.yml +336 -0
  349. data/lib/locales/en/game.yml +11 -0
  350. data/lib/locales/en/game_of_thrones.yml +2487 -5
  351. data/lib/locales/en/gender.yml +15 -2
  352. data/lib/locales/en/ghostbusters.yml +101 -88
  353. data/lib/locales/en/grateful_dead.yml +47 -45
  354. data/lib/locales/en/greek_philosophers.yml +44 -23
  355. data/lib/locales/en/hacker.yml +110 -5
  356. data/lib/locales/en/hackers.yml +53 -0
  357. data/lib/locales/en/half_life.yml +84 -3
  358. data/lib/locales/en/harry_potter.yml +323 -6
  359. data/lib/locales/en/heroes.yml +408 -3
  360. data/lib/locales/en/heroes_of_the_storm.yml +131 -4
  361. data/lib/locales/en/hey_arnold.yml +104 -21
  362. data/lib/locales/en/hipster.yml +203 -1
  363. data/lib/locales/en/hitchhikers_guide_to_the_galaxy.yml +243 -42
  364. data/lib/locales/en/hobby.yml +170 -0
  365. data/lib/locales/en/horse.yml +446 -2
  366. data/lib/locales/en/house.yml +34 -2
  367. data/lib/locales/en/how_i_met_your_mother.yml +97 -25
  368. data/lib/locales/en/how_to_train_your_dragon.yml +173 -0
  369. data/lib/locales/en/id_number.yml +7 -2
  370. data/lib/locales/en/industry_segments.yml +188 -4
  371. data/lib/locales/en/internet.yml +136 -3
  372. data/lib/locales/en/jack_handey.yml +54 -0
  373. data/lib/locales/en/job.yml +98 -7
  374. data/lib/locales/en/kamen_rider.yml +718 -0
  375. data/lib/locales/en/kpop.yml +954 -80
  376. data/lib/locales/en/league_of_legends.yml +285 -6
  377. data/lib/locales/en/lebowski.yml +58 -40
  378. data/lib/locales/en/lorem.yml +1095 -6
  379. data/lib/locales/en/lovecraft.yml +76 -6
  380. data/lib/locales/en/markdown.yml +12 -2
  381. data/lib/locales/en/marketing.yml +54 -1
  382. data/lib/locales/en/measurement.yml +42 -8
  383. data/lib/locales/en/michael_scott.yml +41 -42
  384. data/lib/locales/en/military.yml +179 -5
  385. data/lib/locales/en/minecraft.yml +663 -0
  386. data/lib/locales/en/mitch_hedberg.yml +46 -0
  387. data/lib/locales/en/mountain.yml +171 -0
  388. data/lib/locales/en/mountaineering.yml +14 -0
  389. data/lib/locales/en/movie.yml +206 -2
  390. data/lib/locales/en/music.yml +461 -29
  391. data/lib/locales/en/myst.yml +87 -31
  392. data/lib/locales/en/name.yml +6068 -5
  393. data/lib/locales/en/naruto.yml +230 -0
  394. data/lib/locales/en/nato_phonetic_alphabet.yml +27 -1
  395. data/lib/locales/en/new_girl.yml +35 -37
  396. data/lib/locales/en/one_piece.yml +359 -6
  397. data/lib/locales/en/opera.yml +169 -1
  398. data/lib/locales/en/overwatch.yml +2648 -37
  399. data/lib/locales/en/parks_and_rec.yml +33 -4
  400. data/lib/locales/en/pearl_jam.yml +213 -0
  401. data/lib/locales/en/phish.yml +391 -1
  402. data/lib/locales/en/phone_number.yml +78 -3
  403. data/lib/locales/en/pokemon.yml +417 -4
  404. data/lib/locales/en/prince.yml +227 -0
  405. data/lib/locales/en/princess_bride.yml +48 -2
  406. data/lib/locales/en/programming_language.yml +753 -3
  407. data/lib/locales/en/quote.yml +606 -163
  408. data/lib/locales/en/rajnikanth.yml +77 -0
  409. data/lib/locales/en/relationship.yml +29 -6
  410. data/lib/locales/en/restaurant.yml +31 -31
  411. data/lib/locales/en/rick_and_morty.yml +116 -3
  412. data/lib/locales/en/rock_band.yml +228 -1
  413. data/lib/locales/en/rupaul.yml +120 -122
  414. data/lib/locales/en/rush.yml +32 -0
  415. data/lib/locales/en/science.yml +481 -3
  416. data/lib/locales/en/seinfeld.yml +110 -3
  417. data/lib/locales/en/shakespeare.yml +46 -53
  418. data/lib/locales/en/silicon_valley.yml +122 -50
  419. data/lib/locales/en/simpsons.yml +897 -23
  420. data/lib/locales/en/slack_emoji.yml +874 -8
  421. data/lib/locales/en/smashing_pumpkins.yml +382 -0
  422. data/lib/locales/en/source.yml +35 -0
  423. data/lib/locales/en/south_park.yml +360 -2
  424. data/lib/locales/en/space.yml +373 -14
  425. data/lib/locales/en/spongebob.yml +489 -0
  426. data/lib/locales/en/sport.yml +130 -0
  427. data/lib/locales/en/star_trek.yml +105 -4
  428. data/lib/locales/en/star_wars.yml +564 -219
  429. data/lib/locales/en/stargate.yml +65 -18
  430. data/lib/locales/en/stranger_thing.yml +31 -33
  431. data/lib/locales/en/street_fighter.yml +1524 -0
  432. data/lib/locales/en/stripe.yml +3 -3
  433. data/lib/locales/en/studio_ghibli.yml +107 -0
  434. data/lib/locales/en/subscription.yml +47 -5
  435. data/lib/locales/en/suits.yml +45 -0
  436. data/lib/locales/en/super_mario.yml +58 -0
  437. data/lib/locales/en/super_smash_bros.yml +23 -5
  438. data/lib/locales/en/superhero.yml +574 -4
  439. data/lib/locales/en/supernatural.yml +141 -0
  440. data/lib/locales/en/sword_art_online.yml +327 -331
  441. data/lib/locales/en/tarkov.yml +593 -0
  442. data/lib/locales/en/tea.yml +172 -0
  443. data/lib/locales/en/team.yml +125 -3
  444. data/lib/locales/en/the_expanse.yml +92 -4
  445. data/lib/locales/en/the_it_crowd.yml +148 -152
  446. data/lib/locales/en/the_kingkiller_chronicle.yml +56 -0
  447. data/lib/locales/en/the_office.yml +82 -0
  448. data/lib/locales/en/the_room.yml +68 -0
  449. data/lib/locales/en/the_thick_of_it.yml +83 -3
  450. data/lib/locales/en/theater.yml +597 -0
  451. data/lib/locales/en/tolkien.yml +2453 -0
  452. data/lib/locales/en/touhou.yml +839 -0
  453. data/lib/locales/en/train_station.yml +280 -0
  454. data/lib/locales/en/tron.yml +227 -0
  455. data/lib/locales/en/twin_peaks.yml +130 -3
  456. data/lib/locales/en/umphreys_mcgee.yml +266 -1
  457. data/lib/locales/en/university.yml +15 -2
  458. data/lib/locales/en/v_for_vendetta.yml +157 -160
  459. data/lib/locales/en/vehicle.yml +2809 -75
  460. data/lib/locales/en/venture_bros.yml +225 -4
  461. data/lib/locales/en/verbs.yml +3785 -5
  462. data/lib/locales/en/volleyball.yml +501 -0
  463. data/lib/locales/en/warhammer_fantasy.yml +549 -0
  464. data/lib/locales/en/witcher.yml +426 -7
  465. data/lib/locales/en/world_cup.yml +1132 -235
  466. data/lib/locales/en/world_of_warcraft.yml +122 -4
  467. data/lib/locales/en/yoda.yml +38 -1
  468. data/lib/locales/en/zelda.yml +962 -4
  469. data/lib/locales/en-AU.yml +728 -17
  470. data/lib/locales/en-BORK.yml +104 -1
  471. data/lib/locales/en-CA.yml +373 -15
  472. data/lib/locales/en-GB.yml +118 -8
  473. data/lib/locales/en-IND.yml +1259 -16
  474. data/lib/locales/en-KE.yml +212 -0
  475. data/lib/locales/en-MS.yml +364 -16
  476. data/lib/locales/en-NEP.yml +213 -36
  477. data/lib/locales/en-NG.yml +737 -65
  478. data/lib/locales/en-NZ.yml +1183 -27
  479. data/lib/locales/en-PAK.yml +392 -9
  480. data/lib/locales/en-SG.yml +581 -15
  481. data/lib/locales/en-TH.yml +360 -0
  482. data/lib/locales/en-UG.yml +374 -75
  483. data/lib/locales/en-US.yml +6937 -71
  484. data/lib/locales/en-ZA.yml +1394 -13
  485. data/lib/locales/en-au-ocker.yml +266 -21
  486. data/lib/locales/en.yml +0 -50
  487. data/lib/locales/es-AR.yml +4570 -0
  488. data/lib/locales/es-MX.yml +1910 -41
  489. data/lib/locales/es.yml +2172 -52
  490. data/lib/locales/fa.yml +1624 -3
  491. data/lib/locales/fi-FI.yml +316 -16
  492. data/lib/locales/fr/address.yml +773 -0
  493. data/lib/locales/fr/adjective.yml +266 -0
  494. data/lib/locales/fr/ancient.yml +141 -0
  495. data/lib/locales/fr/animal.yml +122 -0
  496. data/lib/locales/fr/appliance.yml +69 -0
  497. data/lib/locales/fr/book.yml +31 -0
  498. data/lib/locales/fr/color.yml +34 -0
  499. data/lib/locales/fr/company.yml +497 -0
  500. data/lib/locales/fr/compass.yml +71 -0
  501. data/lib/locales/fr/demographic.yml +6 -0
  502. data/lib/locales/fr/gender.yml +21 -0
  503. data/lib/locales/fr/internet.yml +15 -0
  504. data/lib/locales/fr/lorem.yml +1094 -0
  505. data/lib/locales/fr/measurement.yml +34 -0
  506. data/lib/locales/fr/name.yml +1193 -0
  507. data/lib/locales/fr/phone_number.yml +38 -0
  508. data/lib/locales/fr/pokemon.yml +421 -0
  509. data/lib/locales/fr-CA.yml +2756 -44
  510. data/lib/locales/fr-CH.yml +2455 -42
  511. data/lib/locales/fr.yml +2 -111
  512. data/lib/locales/he.yml +255 -9
  513. data/lib/locales/hy.yml +3630 -124
  514. data/lib/locales/id.yml +840 -10
  515. data/lib/locales/it.yml +1310 -31
  516. data/lib/locales/ja/README.md +13 -0
  517. data/lib/locales/ja/address.yml +363 -0
  518. data/lib/locales/ja/adjective.yml +148 -0
  519. data/lib/locales/ja/ancient.yml +18 -0
  520. data/lib/locales/ja/animal.yml +87 -0
  521. data/lib/locales/ja/artist.yml +46 -0
  522. data/lib/locales/ja/bank.yml +139 -0
  523. data/lib/locales/ja/book.yml +496 -0
  524. data/lib/locales/ja/cat.yml +79 -0
  525. data/lib/locales/ja/coffee.yml +22 -0
  526. data/lib/locales/ja/color.yml +35 -0
  527. data/lib/locales/ja/commerce.yml +103 -0
  528. data/lib/locales/ja/company.yml +26 -0
  529. data/lib/locales/ja/dog.yml +339 -0
  530. data/lib/locales/ja/emotion.yml +49 -0
  531. data/lib/locales/ja/food.yml +41 -0
  532. data/lib/locales/ja/football.yml +115 -0
  533. data/lib/locales/ja/gender.yml +6 -0
  534. data/lib/locales/ja/lorem.yml +1020 -0
  535. data/lib/locales/ja/name.yml +213 -0
  536. data/lib/locales/ja/naruto.yml +230 -0
  537. data/lib/locales/ja/overwatch.yml +37 -0
  538. data/lib/locales/ja/phone_number.yml +13 -0
  539. data/lib/locales/ja/pokemon.yml +441 -0
  540. data/lib/locales/ja/relationship.yml +33 -0
  541. data/lib/locales/ja/restaurant.yml +82 -0
  542. data/lib/locales/ja/space.yml +23 -0
  543. data/lib/locales/ja/sport.yml +130 -0
  544. data/lib/locales/ja/studio_ghibli.yml +112 -0
  545. data/lib/locales/ja/subscription.yml +50 -0
  546. data/lib/locales/ja/super_mario.yml +73 -0
  547. data/lib/locales/ja/super_smash_bros.yml +8 -0
  548. data/lib/locales/ja/touhou.yml +466 -0
  549. data/lib/locales/ja/university.yml +22 -0
  550. data/lib/locales/ja/zelda.yml +19 -0
  551. data/lib/locales/ko.yml +1450 -17
  552. data/lib/locales/lt.yml +315 -0
  553. data/lib/locales/lv.yml +1221 -27
  554. data/lib/locales/mi-NZ.yml +283 -0
  555. data/lib/locales/nb-NO.yml +518 -27
  556. data/lib/locales/nl.yml +33514 -55
  557. data/lib/locales/pl.yml +4008 -38
  558. data/lib/locales/pt-BR.yml +8210 -641
  559. data/lib/locales/pt.yml +846 -45
  560. data/lib/locales/ru.yml +1355 -30
  561. data/lib/locales/sk.yml +4416 -41
  562. data/lib/locales/sv.yml +731 -41
  563. data/lib/locales/th.yml +380 -0
  564. data/lib/locales/tr.yml +77 -19
  565. data/lib/locales/uk.yml +1814 -48
  566. data/lib/locales/vi.yml +392 -48
  567. data/lib/locales/zh-CN/bank.yml +17 -0
  568. data/lib/locales/zh-CN.yml +541 -19
  569. data/lib/locales/zh-TW.yml +1031 -15
  570. metadata +230 -125
  571. data/History.md +0 -176
  572. data/lib/faker/books/book.rb +0 -25
  573. data/lib/faker/default/bossa_nova.rb +0 -15
  574. data/lib/faker/default/fillmurray.rb +0 -15
  575. data/lib/faker/default/internet.rb +0 -207
  576. data/lib/faker/default/lorem_pixel.rb +0 -38
  577. data/lib/faker/default/twitter.rb +0 -174
  578. data/lib/faker/games/game.rb +0 -21
  579. data/lib/faker/movies/movie.rb +0 -11
  580. data/lib/faker/music/music.rb +0 -47
  581. data/lib/faker/quotes/quote.rb +0 -32
  582. data/lib/locales/en/hobbit.yml +0 -19
  583. data/lib/locales/en/lord_of_the_rings.yml +0 -6
  584. data/lib/locales/ja.yml +0 -98
@@ -1,73 +1,2347 @@
1
1
  fr-CA:
2
2
  faker:
3
3
  address:
4
- postcode: /[A-CEJ-NPR-TVXY][0-9][A-CEJ-NPR-TV-Z] ?[0-9][A-CEJ-NPR-TV-Z][0-9]/
5
- state: [Alberta, British Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Nova Scotia, Northwest Territories, Nunavut, Ontario, Prince Edward Island, Quebec, Saskatchewan, Yukon]
6
- state_abbr: ["AB", "BC", "MB", "NB", "NL", "NS", "NU", "NT", "ON", "PE", "QC", "SK", "YT"]
7
- country_code: ['CA']
8
- building_number: ['####', '###', '##', '#']
9
- street_prefix: ["Allée, Voie", "Rue", "Avenue", "Boulevard", "Quai", "Passage", "Impasse", "Place"]
10
- street_suffix: ["de l'Abbaye", "Adolphe Mille", "d'Alésia", "d'Argenteuil", "d'Assas", "du Bac", "de Paris", "La Boétie", "Bonaparte", "de la Bûcherie", "de Caumartin", "Charlemagne", "du Chat-qui-Pêche", "de la Chaussée-d'Antin", "du Dahomey", "Dauphine", "Delesseux", "du Faubourg Saint-Honoré", "du Faubourg-Saint-Denis", "de la Ferronnerie", "des Francs-Bourgeois", "des Grands Augustins", "de la Harpe", "du Havre", "de la Huchette", "Joubert", "Laffitte", "Lepic", "des Lombards", "Marcadet", "Molière", "Monsieur-le-Prince", "de Montmorency", "Montorgueil", "Mouffetard", "de Nesle", "Oberkampf", "de l'Odéon", "d'Orsel", "de la Paix", "des Panoramas", "Pastourelle", "Pierre Charron", "de la Pompe", "de Presbourg", "de Provence", "de Richelieu", "de Rivoli", "des Rosiers", "Royale", "d'Abbeville", "Saint-Honoré", "Saint-Bernard", "Saint-Denis", "Saint-Dominique", "Saint-Jacques", "Saint-Séverin", "des Saussaies", "de Seine", "de Solférino", "Du Sommerard", "de Tilsitt", "Vaneau", "de Vaugirard", "de la Victoire", "Zadkine"]
4
+ postcode: "/[A-CEJ-NPR-TVXY][0-9][A-CEJ-NPR-TV-Z] ?[0-9][A-CEJ-NPR-TV-Z][0-9]/"
5
+ state:
6
+ - Alberta
7
+ - Colombie-Britannique
8
+ - Île-du-Prince-Édouard
9
+ - Manitoba
10
+ - Nouveau-Brunswick
11
+ - Nouvelle-Écosse
12
+ - Nunavut
13
+ - Ontario
14
+ - Terre-Neuve-et-Labrador
15
+ - Territoires du Nord-Ouest
16
+ - Québec
17
+ - Saskatchewan
18
+ - Yukon
19
+ state_abbr:
20
+ - AB
21
+ - BC
22
+ - MB
23
+ - NB
24
+ - NL
25
+ - NS
26
+ - NU
27
+ - NT
28
+ - 'ON'
29
+ - PE
30
+ - QC
31
+ - SK
32
+ - YT
33
+ building_number:
34
+ - "####"
35
+ - "###"
36
+ - "##"
37
+ - "#"
38
+ street_prefix:
39
+ - Allée, Voie
40
+ - Rue
41
+ - Avenue
42
+ - Boulevard
43
+ - Quai
44
+ - Passage
45
+ - Impasse
46
+ - Place
47
+ street_suffix:
48
+ - de l'Abbaye
49
+ - Adolphe Mille
50
+ - d'Alésia
51
+ - d'Argenteuil
52
+ - d'Assas
53
+ - du Bac
54
+ - de Paris
55
+ - La Boétie
56
+ - Bonaparte
57
+ - de la Bûcherie
58
+ - de Caumartin
59
+ - Charlemagne
60
+ - du Chat-qui-Pêche
61
+ - de la Chaussée-d'Antin
62
+ - du Dahomey
63
+ - Dauphine
64
+ - Delesseux
65
+ - du Faubourg Saint-Honoré
66
+ - du Faubourg-Saint-Denis
67
+ - de la Ferronnerie
68
+ - des Francs-Bourgeois
69
+ - des Grands Augustins
70
+ - de la Harpe
71
+ - du Havre
72
+ - de la Huchette
73
+ - Joubert
74
+ - Laffitte
75
+ - Lepic
76
+ - des Lombards
77
+ - Marcadet
78
+ - Molière
79
+ - Monsieur-le-Prince
80
+ - de Montmorency
81
+ - Montorgueil
82
+ - Mouffetard
83
+ - de Nesle
84
+ - Oberkampf
85
+ - de l'Odéon
86
+ - d'Orsel
87
+ - de la Paix
88
+ - des Panoramas
89
+ - Pastourelle
90
+ - Pierre Charron
91
+ - de la Pompe
92
+ - de Presbourg
93
+ - de Provence
94
+ - de Richelieu
95
+ - de Rivoli
96
+ - des Rosiers
97
+ - Royale
98
+ - d'Abbeville
99
+ - Saint-Honoré
100
+ - Saint-Bernard
101
+ - Saint-Denis
102
+ - Saint-Dominique
103
+ - Saint-Jacques
104
+ - Saint-Séverin
105
+ - des Saussaies
106
+ - de Seine
107
+ - de Solférino
108
+ - Du Sommerard
109
+ - de Tilsitt
110
+ - Vaneau
111
+ - de Vaugirard
112
+ - de la Victoire
113
+ - Zadkine
11
114
  street_name:
12
115
  - "#{street_suffix}"
13
116
  street_address:
14
117
  - " #{street_name} #{building_number}"
15
- default_country: [Canada]
16
-
118
+ default_country:
119
+ - Canada
120
+ default_country_code:
121
+ - CA
17
122
  internet:
18
- free_email: [gmail.com, yahoo.ca, hotmail.com]
19
- domain_suffix: [ca, com, biz, info, name, net, org]
20
-
123
+ domain_suffix:
124
+ - ca
125
+ - com
126
+ - biz
127
+ - info
128
+ - name
129
+ - net
130
+ - org
21
131
  phone_number:
22
- area_code: ["204", "226", "236", "249", "250", "289", "306", "343", "365", "403", "416", "418", "431", "437", "438", "450", "506", "514", "519", "579", "581", "587", "604", "613", "639", "647", "705", "709", "778", "780", "807", "819", "867", "873", "902", "905"]
23
- exchange_code: ["201", "202", "203", "205", "206", "207", "208", "209", "210", "212", "213", "214", "215", "216", "217", "218", "219", "224", "225", "227", "228", "229", "231", "234", "239", "240", "248", "251", "252", "253", "254", "256", "260", "262", "267", "269", "270", "276", "281", "283", "301", "302", "303", "304", "305", "307", "308", "309", "310", "312", "313", "314", "315", "316", "317", "318", "319", "320", "321", "323", "330", "331", "334", "336", "337", "339", "347", "351", "352", "360", "361", "386", "401", "402", "404", "405", "406", "407", "408", "409", "410", "412", "413", "414", "415", "417", "419", "423", "424", "425", "434", "435", "440", "443", "445", "464", "469", "470", "475", "478", "479", "480", "484", "501", "502", "503", "504", "505", "507", "508", "509", "510", "512", "513", "515", "516", "517", "518", "520", "530", "540", "541", "551", "557", "559", "561", "562", "563", "564", "567", "570", "571", "573", "574", "580", "585", "586", "601", "602", "603", "605", "606", "607", "608", "609", "610", "612", "614", "615", "616", "617", "618", "619", "620", "623", "626", "630", "631", "636", "641", "646", "650", "651", "660", "661", "662", "667", "678", "682", "701", "702", "703", "704", "706", "707", "708", "712", "713", "714", "715", "716", "717", "718", "719", "720", "724", "727", "731", "732", "734", "737", "740", "754", "757", "760", "763", "765", "770", "772", "773", "774", "775", "781", "785", "786", "801", "802", "803", "804", "805", "806", "808", "810", "812", "813", "814", "815", "816", "817", "818", "828", "830", "831", "832", "835", "843", "845", "847", "848", "850", "856", "857", "858", "859", "860", "862", "863", "864", "865", "870", "872", "878", "901", "903", "904", "906", "907", "908", "909", "910", "912", "913", "914", "915", "916", "917", "918", "919", "920", "925", "928", "931", "936", "937", "940", "941", "947", "949", "952", "954", "956", "959", "970", "971", "972", "973", "975", "978", "979", "980", "984", "985", "989"]
132
+ country_code:
133
+ - '1'
134
+ subscriber_number:
135
+ - "####"
136
+ extension:
137
+ - "####"
138
+ area_code:
139
+ - '204'
140
+ - '226'
141
+ - '236'
142
+ - '249'
143
+ - '250'
144
+ - '289'
145
+ - '306'
146
+ - '343'
147
+ - '365'
148
+ - '403'
149
+ - '416'
150
+ - '418'
151
+ - '431'
152
+ - '437'
153
+ - '438'
154
+ - '450'
155
+ - '506'
156
+ - '514'
157
+ - '519'
158
+ - '579'
159
+ - '581'
160
+ - '587'
161
+ - '604'
162
+ - '613'
163
+ - '639'
164
+ - '647'
165
+ - '705'
166
+ - '709'
167
+ - '778'
168
+ - '780'
169
+ - '807'
170
+ - '819'
171
+ - '867'
172
+ - '873'
173
+ - '902'
174
+ - '905'
175
+ exchange_code:
176
+ - '201'
177
+ - '202'
178
+ - '203'
179
+ - '205'
180
+ - '206'
181
+ - '207'
182
+ - '208'
183
+ - '209'
184
+ - '210'
185
+ - '212'
186
+ - '213'
187
+ - '214'
188
+ - '215'
189
+ - '216'
190
+ - '217'
191
+ - '218'
192
+ - '219'
193
+ - '224'
194
+ - '225'
195
+ - '227'
196
+ - '228'
197
+ - '229'
198
+ - '231'
199
+ - '234'
200
+ - '239'
201
+ - '240'
202
+ - '248'
203
+ - '251'
204
+ - '252'
205
+ - '253'
206
+ - '254'
207
+ - '256'
208
+ - '260'
209
+ - '262'
210
+ - '267'
211
+ - '269'
212
+ - '270'
213
+ - '276'
214
+ - '281'
215
+ - '283'
216
+ - '301'
217
+ - '302'
218
+ - '303'
219
+ - '304'
220
+ - '305'
221
+ - '307'
222
+ - '308'
223
+ - '309'
224
+ - '310'
225
+ - '312'
226
+ - '313'
227
+ - '314'
228
+ - '315'
229
+ - '316'
230
+ - '317'
231
+ - '318'
232
+ - '319'
233
+ - '320'
234
+ - '321'
235
+ - '323'
236
+ - '330'
237
+ - '331'
238
+ - '334'
239
+ - '336'
240
+ - '337'
241
+ - '339'
242
+ - '347'
243
+ - '351'
244
+ - '352'
245
+ - '360'
246
+ - '361'
247
+ - '386'
248
+ - '401'
249
+ - '402'
250
+ - '404'
251
+ - '405'
252
+ - '406'
253
+ - '407'
254
+ - '408'
255
+ - '409'
256
+ - '410'
257
+ - '412'
258
+ - '413'
259
+ - '414'
260
+ - '415'
261
+ - '417'
262
+ - '419'
263
+ - '423'
264
+ - '424'
265
+ - '425'
266
+ - '434'
267
+ - '435'
268
+ - '440'
269
+ - '443'
270
+ - '445'
271
+ - '464'
272
+ - '469'
273
+ - '470'
274
+ - '475'
275
+ - '478'
276
+ - '479'
277
+ - '480'
278
+ - '484'
279
+ - '501'
280
+ - '502'
281
+ - '503'
282
+ - '504'
283
+ - '505'
284
+ - '507'
285
+ - '508'
286
+ - '509'
287
+ - '510'
288
+ - '512'
289
+ - '513'
290
+ - '515'
291
+ - '516'
292
+ - '517'
293
+ - '518'
294
+ - '520'
295
+ - '530'
296
+ - '540'
297
+ - '541'
298
+ - '551'
299
+ - '557'
300
+ - '559'
301
+ - '561'
302
+ - '562'
303
+ - '563'
304
+ - '564'
305
+ - '567'
306
+ - '570'
307
+ - '571'
308
+ - '573'
309
+ - '574'
310
+ - '580'
311
+ - '585'
312
+ - '586'
313
+ - '601'
314
+ - '602'
315
+ - '603'
316
+ - '605'
317
+ - '606'
318
+ - '607'
319
+ - '608'
320
+ - '609'
321
+ - '610'
322
+ - '612'
323
+ - '614'
324
+ - '615'
325
+ - '616'
326
+ - '617'
327
+ - '618'
328
+ - '619'
329
+ - '620'
330
+ - '623'
331
+ - '626'
332
+ - '630'
333
+ - '631'
334
+ - '636'
335
+ - '641'
336
+ - '646'
337
+ - '650'
338
+ - '651'
339
+ - '660'
340
+ - '661'
341
+ - '662'
342
+ - '667'
343
+ - '678'
344
+ - '682'
345
+ - '701'
346
+ - '702'
347
+ - '703'
348
+ - '704'
349
+ - '706'
350
+ - '707'
351
+ - '708'
352
+ - '712'
353
+ - '713'
354
+ - '714'
355
+ - '715'
356
+ - '716'
357
+ - '717'
358
+ - '718'
359
+ - '719'
360
+ - '720'
361
+ - '724'
362
+ - '727'
363
+ - '731'
364
+ - '732'
365
+ - '734'
366
+ - '737'
367
+ - '740'
368
+ - '754'
369
+ - '757'
370
+ - '760'
371
+ - '763'
372
+ - '765'
373
+ - '770'
374
+ - '772'
375
+ - '773'
376
+ - '774'
377
+ - '775'
378
+ - '781'
379
+ - '785'
380
+ - '786'
381
+ - '801'
382
+ - '802'
383
+ - '803'
384
+ - '804'
385
+ - '805'
386
+ - '806'
387
+ - '808'
388
+ - '810'
389
+ - '812'
390
+ - '813'
391
+ - '814'
392
+ - '815'
393
+ - '816'
394
+ - '817'
395
+ - '818'
396
+ - '828'
397
+ - '830'
398
+ - '831'
399
+ - '832'
400
+ - '835'
401
+ - '843'
402
+ - '845'
403
+ - '847'
404
+ - '848'
405
+ - '850'
406
+ - '856'
407
+ - '857'
408
+ - '858'
409
+ - '859'
410
+ - '860'
411
+ - '862'
412
+ - '863'
413
+ - '864'
414
+ - '865'
415
+ - '870'
416
+ - '872'
417
+ - '878'
418
+ - '901'
419
+ - '903'
420
+ - '904'
421
+ - '906'
422
+ - '907'
423
+ - '908'
424
+ - '909'
425
+ - '910'
426
+ - '912'
427
+ - '913'
428
+ - '914'
429
+ - '915'
430
+ - '916'
431
+ - '917'
432
+ - '918'
433
+ - '919'
434
+ - '920'
435
+ - '925'
436
+ - '928'
437
+ - '931'
438
+ - '936'
439
+ - '937'
440
+ - '940'
441
+ - '941'
442
+ - '947'
443
+ - '949'
444
+ - '952'
445
+ - '954'
446
+ - '956'
447
+ - '959'
448
+ - '970'
449
+ - '971'
450
+ - '972'
451
+ - '973'
452
+ - '975'
453
+ - '978'
454
+ - '979'
455
+ - '980'
456
+ - '984'
457
+ - '985'
458
+ - '989'
24
459
  formats:
25
460
  - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
26
461
  - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
27
- - "1-#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
462
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
28
463
  - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number}"
29
464
  - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
30
465
  - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
31
- - "1-#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
466
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
32
467
  - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number}"
33
468
  - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
34
469
  - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
35
- - "1-#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
470
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
36
471
  - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
37
472
  - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
38
473
  - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
39
- - "1-#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
474
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
40
475
  - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
41
476
  - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
42
477
  - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
43
- - "1-#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
478
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
44
479
  - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number} x#{PhoneNumber.extension}"
480
+ cell_phone:
481
+ formats:
482
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
483
+ - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
484
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
485
+ - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number}"
486
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
487
+ - "(#{PhoneNumber.area_code}) #{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
488
+ - "#{PhoneNumber.area_code}-#{PhoneNumber.exchange_code}-#{PhoneNumber.subscriber_number}"
489
+ - "#{PhoneNumber.area_code}.#{PhoneNumber.exchange_code}.#{PhoneNumber.subscriber_number}"
45
490
  company:
46
- suffix: [SARL, SA, EURL, SAS, SEM, SCOP, GIE, EI]
47
- # Buzzword wordlist from http://www.1728.com/buzzword.htm
491
+ suffix:
492
+ - SARL
493
+ - SA
494
+ - EURL
495
+ - SAS
496
+ - SEM
497
+ - SCOP
498
+ - GIE
499
+ - EI
48
500
  buzzwords:
49
- - ["Adaptive", "Advanced", "Ameliorated", "Assimilated", "Automated", "Balanced", "Business-focused", "Centralized", "Cloned", "Compatible", "Configurable", "Cross-group", "Cross-platform", "Customer-focused", "Customizable", "Decentralized", "De-engineered", "Devolved", "Digitized", "Distributed", "Diverse", "Down-sized", "Enhanced", "Enterprise-wide", "Ergonomic", "Exclusive", "Expanded", "Extended", "Face to face", "Focused", "Front-line", "Fully-configurable", "Function-based", "Fundamental", "Future-proofed", "Grass-roots", "Horizontal", "Implemented", "Innovative", "Integrated", "Intuitive", "Inverse", "Managed", "Mandatory", "Monitored", "Multi-channelled", "Multi-lateral", "Multi-layered", "Multi-tiered", "Networked", "Object-based", "Open-architected", "Open-source", "Operative", "Optimized", "Optional", "Organic", "Organized", "Persevering", "Persistent", "Phased", "Polarised", "Pre-emptive", "Proactive", "Profit-focused", "Profound", "Programmable", "Progressive", "Public-key", "Quality-focused", "Reactive", "Realigned", "Re-contextualized", "Re-engineered", "Reduced", "Reverse-engineered", "Right-sized", "Robust", "Seamless", "Secured", "Self-enabling", "Sharable", "Stand-alone", "Streamlined", "Switchable", "Synchronised", "Synergistic", "Synergized", "Team-oriented", "Total", "Triple-buffered", "Universal", "Up-sized", "Upgradable", "User-centric", "User-friendly", "Versatile", "Virtual", "Visionary", "Vision-oriented"]
50
- - ["24 hour", "24/7", "3rd generation", "4th generation", "5th generation", "6th generation", "actuating", "analyzing", "asymmetric", "asynchronous", "attitude-oriented", "background", "bandwidth-monitored", "bi-directional", "bifurcated", "bottom-line", "clear-thinking", "client-driven", "client-server", "coherent", "cohesive", "composite", "context-sensitive", "contextually-based", "content-based", "dedicated", "demand-driven", "didactic", "directional", "discrete", "disintermediate", "dynamic", "eco-centric", "empowering", "encompassing", "even-keeled", "executive", "explicit", "exuding", "fault-tolerant", "foreground", "fresh-thinking", "full-range", "global", "grid-enabled", "heuristic", "high-level", "holistic", "homogeneous", "human-resource", "hybrid", "impactful", "incremental", "intangible", "interactive", "intermediate", "leading edge", "local", "logistical", "maximized", "methodical", "mission-critical", "mobile", "modular", "motivating", "multimedia", "multi-state", "multi-tasking", "national", "needs-based", "neutral", "next generation", "non-volatile", "object-oriented", "optimal", "optimizing", "radical", "real-time", "reciprocal", "regional", "responsive", "scalable", "secondary", "solution-oriented", "stable", "static", "systematic", "systemic", "system-worthy", "tangible", "tertiary", "transitional", "uniform", "upward-trending", "user-facing", "value-added", "web-enabled", "well-modulated", "zero administration", "zero defect", "zero tolerance"]
51
- - ["ability", "access", "adapter", "algorithm", "alliance", "analyzer", "application", "approach", "architecture", "archive", "artificial intelligence", "array", "attitude", "benchmark", "budgetary management", "capability", "capacity", "challenge", "circuit", "collaboration", "complexity", "concept", "conglomeration", "contingency", "core", "customer loyalty", "database", "data-warehouse", "definition", "emulation", "encoding", "encryption", "extranet", "firmware", "flexibility", "focus group", "forecast", "frame", "framework", "function", "functionalities", "Graphic Interface", "groupware", "Graphical User Interface", "hardware", "help-desk", "hierarchy", "hub", "implementation", "info-mediaries", "infrastructure", "initiative", "installation", "instruction set", "interface", "internet solution", "intranet", "knowledge user", "knowledge base", "local area network", "leverage", "matrices", "matrix", "methodology", "middleware", "migration", "model", "moderator", "monitoring", "moratorium", "neural-net", "open architecture", "open system", "orchestration", "paradigm", "parallelism", "policy", "portal", "pricing structure", "process improvement", "product", "productivity", "project", "projection", "protocol", "secured line", "service-desk", "software", "solution", "standardization", "strategy", "structure", "success", "superstructure", "support", "synergy", "system engine", "task-force", "throughput", "time-frame", "toolset", "utilisation", "website", "workforce"]
52
- # BS wordlist from http://dack.com/web/bullshit.html
501
+ -
502
+ - Adaptive
503
+ - Advanced
504
+ - Ameliorated
505
+ - Assimilated
506
+ - Automated
507
+ - Balanced
508
+ - Business-focused
509
+ - Centralized
510
+ - Cloned
511
+ - Compatible
512
+ - Configurable
513
+ - Cross-group
514
+ - Cross-platform
515
+ - Customer-focused
516
+ - Customizable
517
+ - Decentralized
518
+ - De-engineered
519
+ - Devolved
520
+ - Digitized
521
+ - Distributed
522
+ - Diverse
523
+ - Down-sized
524
+ - Enhanced
525
+ - Enterprise-wide
526
+ - Ergonomic
527
+ - Exclusive
528
+ - Expanded
529
+ - Extended
530
+ - Face to face
531
+ - Focused
532
+ - Front-line
533
+ - Fully-configurable
534
+ - Function-based
535
+ - Fundamental
536
+ - Future-proofed
537
+ - Grass-roots
538
+ - Horizontal
539
+ - Implemented
540
+ - Innovative
541
+ - Integrated
542
+ - Intuitive
543
+ - Inverse
544
+ - Managed
545
+ - Mandatory
546
+ - Monitored
547
+ - Multi-channelled
548
+ - Multi-lateral
549
+ - Multi-layered
550
+ - Multi-tiered
551
+ - Networked
552
+ - Object-based
553
+ - Open-architected
554
+ - Open-source
555
+ - Operative
556
+ - Optimized
557
+ - Optional
558
+ - Organic
559
+ - Organized
560
+ - Persevering
561
+ - Persistent
562
+ - Phased
563
+ - Polarised
564
+ - Pre-emptive
565
+ - Proactive
566
+ - Profit-focused
567
+ - Profound
568
+ - Programmable
569
+ - Progressive
570
+ - Public-key
571
+ - Quality-focused
572
+ - Reactive
573
+ - Realigned
574
+ - Re-contextualized
575
+ - Re-engineered
576
+ - Reduced
577
+ - Reverse-engineered
578
+ - Right-sized
579
+ - Robust
580
+ - Seamless
581
+ - Secured
582
+ - Self-enabling
583
+ - Sharable
584
+ - Stand-alone
585
+ - Streamlined
586
+ - Switchable
587
+ - Synchronised
588
+ - Synergistic
589
+ - Synergized
590
+ - Team-oriented
591
+ - Total
592
+ - Triple-buffered
593
+ - Universal
594
+ - Up-sized
595
+ - Upgradable
596
+ - User-centric
597
+ - User-friendly
598
+ - Versatile
599
+ - Virtual
600
+ - Visionary
601
+ - Vision-oriented
602
+ -
603
+ - 24 hour
604
+ - 24/7
605
+ - 3rd generation
606
+ - 4th generation
607
+ - 5th generation
608
+ - 6th generation
609
+ - actuating
610
+ - analyzing
611
+ - asymmetric
612
+ - asynchronous
613
+ - attitude-oriented
614
+ - background
615
+ - bandwidth-monitored
616
+ - bi-directional
617
+ - bifurcated
618
+ - bottom-line
619
+ - clear-thinking
620
+ - client-driven
621
+ - client-server
622
+ - coherent
623
+ - cohesive
624
+ - composite
625
+ - context-sensitive
626
+ - contextually-based
627
+ - content-based
628
+ - dedicated
629
+ - demand-driven
630
+ - didactic
631
+ - directional
632
+ - discrete
633
+ - disintermediate
634
+ - dynamic
635
+ - eco-centric
636
+ - empowering
637
+ - encompassing
638
+ - even-keeled
639
+ - executive
640
+ - explicit
641
+ - exuding
642
+ - fault-tolerant
643
+ - foreground
644
+ - fresh-thinking
645
+ - full-range
646
+ - global
647
+ - grid-enabled
648
+ - heuristic
649
+ - high-level
650
+ - holistic
651
+ - homogeneous
652
+ - human-resource
653
+ - hybrid
654
+ - impactful
655
+ - incremental
656
+ - intangible
657
+ - interactive
658
+ - intermediate
659
+ - leading edge
660
+ - local
661
+ - logistical
662
+ - maximized
663
+ - methodical
664
+ - mission-critical
665
+ - mobile
666
+ - modular
667
+ - motivating
668
+ - multimedia
669
+ - multi-state
670
+ - multi-tasking
671
+ - national
672
+ - needs-based
673
+ - neutral
674
+ - next generation
675
+ - non-volatile
676
+ - object-oriented
677
+ - optimal
678
+ - optimizing
679
+ - radical
680
+ - real-time
681
+ - reciprocal
682
+ - regional
683
+ - responsive
684
+ - scalable
685
+ - secondary
686
+ - solution-oriented
687
+ - stable
688
+ - static
689
+ - systematic
690
+ - systemic
691
+ - system-worthy
692
+ - tangible
693
+ - tertiary
694
+ - transitional
695
+ - uniform
696
+ - upward-trending
697
+ - user-facing
698
+ - value-added
699
+ - web-enabled
700
+ - well-modulated
701
+ - zero administration
702
+ - zero defect
703
+ - zero tolerance
704
+ -
705
+ - ability
706
+ - access
707
+ - adapter
708
+ - algorithm
709
+ - alliance
710
+ - analyzer
711
+ - application
712
+ - approach
713
+ - architecture
714
+ - archive
715
+ - artificial intelligence
716
+ - array
717
+ - attitude
718
+ - benchmark
719
+ - budgetary management
720
+ - capability
721
+ - capacity
722
+ - challenge
723
+ - circuit
724
+ - collaboration
725
+ - complexity
726
+ - concept
727
+ - conglomeration
728
+ - contingency
729
+ - core
730
+ - customer loyalty
731
+ - database
732
+ - data-warehouse
733
+ - definition
734
+ - emulation
735
+ - encoding
736
+ - encryption
737
+ - extranet
738
+ - firmware
739
+ - flexibility
740
+ - focus group
741
+ - forecast
742
+ - frame
743
+ - framework
744
+ - function
745
+ - functionalities
746
+ - Graphic Interface
747
+ - groupware
748
+ - Graphical User Interface
749
+ - hardware
750
+ - help-desk
751
+ - hierarchy
752
+ - hub
753
+ - implementation
754
+ - info-mediaries
755
+ - infrastructure
756
+ - initiative
757
+ - installation
758
+ - instruction set
759
+ - interface
760
+ - internet solution
761
+ - intranet
762
+ - knowledge user
763
+ - knowledge base
764
+ - local area network
765
+ - leverage
766
+ - matrices
767
+ - matrix
768
+ - methodology
769
+ - middleware
770
+ - migration
771
+ - model
772
+ - moderator
773
+ - monitoring
774
+ - moratorium
775
+ - neural-net
776
+ - open architecture
777
+ - open system
778
+ - orchestration
779
+ - paradigm
780
+ - parallelism
781
+ - policy
782
+ - portal
783
+ - pricing structure
784
+ - process improvement
785
+ - product
786
+ - productivity
787
+ - project
788
+ - projection
789
+ - protocol
790
+ - secured line
791
+ - service-desk
792
+ - software
793
+ - solution
794
+ - standardization
795
+ - strategy
796
+ - structure
797
+ - success
798
+ - superstructure
799
+ - support
800
+ - synergy
801
+ - system engine
802
+ - task-force
803
+ - throughput
804
+ - time-frame
805
+ - toolset
806
+ - utilisation
807
+ - website
808
+ - workforce
53
809
  bs:
54
- - ["implement", "utilize", "integrate", "streamline", "optimize", "evolve", "transform", "embrace", "enable", "orchestrate", "leverage", "reinvent", "aggregate", "architect", "enhance", "incentivize", "morph", "empower", "envisioneer", "monetize", "harness", "facilitate", "seize", "disintermediate", "synergize", "strategize", "deploy", "brand", "grow", "target", "syndicate", "synthesize", "deliver", "mesh", "incubate", "engage", "maximize", "benchmark", "expedite", "reintermediate", "whiteboard", "visualize", "repurpose", "innovate", "scale", "unleash", "drive", "extend", "engineer", "revolutionize", "generate", "exploit", "transition", "e-enable", "iterate", "cultivate", "matrix", "productize", "redefine", "recontextualize"]
55
- - ["clicks-and-mortar", "value-added", "vertical", "proactive", "robust", "revolutionary", "scalable", "leading-edge", "innovative", "intuitive", "strategic", "e-business", "mission-critical", "sticky", "one-to-one", "24/7", "end-to-end", "global", "B2B", "B2C", "granular", "frictionless", "virtual", "viral", "dynamic", "24/365", "best-of-breed", "killer", "magnetic", "bleeding-edge", "web-enabled", "interactive", "dot-com", "sexy", "back-end", "real-time", "efficient", "front-end", "distributed", "seamless", "extensible", "turn-key", "world-class", "open-source", "cross-platform", "cross-media", "synergistic", "bricks-and-clicks", "out-of-the-box", "enterprise", "integrated", "impactful", "wireless", "transparent", "next-generation", "cutting-edge", "user-centric", "visionary", "customized", "ubiquitous", "plug-and-play", "collaborative", "compelling", "holistic", "rich"]
56
- - ["synergies", "web-readiness", "paradigms", "markets", "partnerships", "infrastructures", "platforms", "initiatives", "channels", "eyeballs", "communities", "ROI", "solutions", "e-tailers", "e-services", "action-items", "portals", "niches", "technologies", "content", "vortals", "supply-chains", "convergence", "relationships", "architectures", "interfaces", "e-markets", "e-commerce", "systems", "bandwidth", "infomediaries", "models", "mindshare", "deliverables", "users", "schemas", "networks", "applications", "metrics", "e-business", "functionalities", "experiences", "web services", "methodologies"]
810
+ -
811
+ - implement
812
+ - utilize
813
+ - integrate
814
+ - streamline
815
+ - optimize
816
+ - evolve
817
+ - transform
818
+ - embrace
819
+ - enable
820
+ - orchestrate
821
+ - leverage
822
+ - reinvent
823
+ - aggregate
824
+ - architect
825
+ - enhance
826
+ - incentivize
827
+ - morph
828
+ - empower
829
+ - envisioneer
830
+ - monetize
831
+ - harness
832
+ - facilitate
833
+ - seize
834
+ - disintermediate
835
+ - synergize
836
+ - strategize
837
+ - deploy
838
+ - brand
839
+ - grow
840
+ - target
841
+ - syndicate
842
+ - synthesize
843
+ - deliver
844
+ - mesh
845
+ - incubate
846
+ - engage
847
+ - maximize
848
+ - benchmark
849
+ - expedite
850
+ - reintermediate
851
+ - whiteboard
852
+ - visualize
853
+ - repurpose
854
+ - innovate
855
+ - scale
856
+ - unleash
857
+ - drive
858
+ - extend
859
+ - engineer
860
+ - revolutionize
861
+ - generate
862
+ - exploit
863
+ - transition
864
+ - e-enable
865
+ - iterate
866
+ - cultivate
867
+ - matrix
868
+ - productize
869
+ - redefine
870
+ - recontextualize
871
+ -
872
+ - clicks-and-mortar
873
+ - value-added
874
+ - vertical
875
+ - proactive
876
+ - robust
877
+ - revolutionary
878
+ - scalable
879
+ - leading-edge
880
+ - innovative
881
+ - intuitive
882
+ - strategic
883
+ - e-business
884
+ - mission-critical
885
+ - sticky
886
+ - one-to-one
887
+ - 24/7
888
+ - end-to-end
889
+ - global
890
+ - B2B
891
+ - B2C
892
+ - granular
893
+ - frictionless
894
+ - virtual
895
+ - viral
896
+ - dynamic
897
+ - 24/365
898
+ - best-of-breed
899
+ - killer
900
+ - magnetic
901
+ - bleeding-edge
902
+ - web-enabled
903
+ - interactive
904
+ - dot-com
905
+ - sexy
906
+ - back-end
907
+ - real-time
908
+ - efficient
909
+ - front-end
910
+ - distributed
911
+ - seamless
912
+ - extensible
913
+ - turn-key
914
+ - world-class
915
+ - open-source
916
+ - cross-platform
917
+ - cross-media
918
+ - synergistic
919
+ - bricks-and-clicks
920
+ - out-of-the-box
921
+ - enterprise
922
+ - integrated
923
+ - impactful
924
+ - wireless
925
+ - transparent
926
+ - next-generation
927
+ - cutting-edge
928
+ - user-centric
929
+ - visionary
930
+ - customized
931
+ - ubiquitous
932
+ - plug-and-play
933
+ - collaborative
934
+ - compelling
935
+ - holistic
936
+ - rich
937
+ -
938
+ - synergies
939
+ - web-readiness
940
+ - paradigms
941
+ - markets
942
+ - partnerships
943
+ - infrastructures
944
+ - platforms
945
+ - initiatives
946
+ - channels
947
+ - eyeballs
948
+ - communities
949
+ - ROI
950
+ - solutions
951
+ - e-tailers
952
+ - e-services
953
+ - action-items
954
+ - portals
955
+ - niches
956
+ - technologies
957
+ - content
958
+ - vortals
959
+ - supply-chains
960
+ - convergence
961
+ - relationships
962
+ - architectures
963
+ - interfaces
964
+ - e-markets
965
+ - e-commerce
966
+ - systems
967
+ - bandwidth
968
+ - infomediaries
969
+ - models
970
+ - mindshare
971
+ - deliverables
972
+ - users
973
+ - schemas
974
+ - networks
975
+ - applications
976
+ - metrics
977
+ - e-business
978
+ - functionalities
979
+ - experiences
980
+ - web services
981
+ - methodologies
57
982
  name:
58
983
  - "#{Name.last_name} #{suffix}"
59
984
  - "#{Name.last_name} et #{Name.last_name}"
60
-
61
985
  lorem:
62
- words: [alias, consequatur, aut, perferendis, sit, voluptatem, accusantium, doloremque, aperiam, eaque, ipsa, quae, ab, illo, inventore, veritatis, et, quasi, architecto, beatae, vitae, dicta, sunt, explicabo, aspernatur, aut, odit, aut, fugit, sed, quia, consequuntur, magni, dolores, eos, qui, ratione, voluptatem, sequi, nesciunt, neque, dolorem, ipsum, quia, dolor, sit, amet, consectetur, adipisci, velit, sed, quia, non, numquam, eius, modi, tempora, incidunt, ut, labore, et, dolore, magnam, aliquam, quaerat, voluptatem, ut, enim, ad, minima, veniam, quis, nostrum, exercitationem, ullam, corporis, nemo, enim, ipsam, voluptatem, quia, voluptas, sit, suscipit, laboriosam, nisi, ut, aliquid, ex, ea, commodi, consequatur, quis, autem, vel, eum, iure, reprehenderit, qui, in, ea, voluptate, velit, esse, quam, nihil, molestiae, et, iusto, odio, dignissimos, ducimus, qui, blanditiis, praesentium, laudantium, totam, rem, voluptatum, deleniti, atque, corrupti, quos, dolores, et, quas, molestias, excepturi, sint, occaecati, cupiditate, non, provident, sed, ut, perspiciatis, unde, omnis, iste, natus, error, similique, sunt, in, culpa, qui, officia, deserunt, mollitia, animi, id, est, laborum, et, dolorum, fuga, et, harum, quidem, rerum, facilis, est, et, expedita, distinctio, nam, libero, tempore, cum, soluta, nobis, est, eligendi, optio, cumque, nihil, impedit, quo, porro, quisquam, est, qui, minus, id, quod, maxime, placeat, facere, possimus, omnis, voluptas, assumenda, est, omnis, dolor, repellendus, temporibus, autem, quibusdam, et, aut, consequatur, vel, illum, qui, dolorem, eum, fugiat, quo, voluptas, nulla, pariatur, at, vero, eos, et, accusamus, officiis, debitis, aut, rerum, necessitatibus, saepe, eveniet, ut, et, voluptates, repudiandae, sint, et, molestiae, non, recusandae, itaque, earum, rerum, hic, tenetur, a, sapiente, delectus, ut, aut, reiciendis, voluptatibus, maiores, doloribus, asperiores, repellat]
63
- supplemental: [abbas, abduco, abeo, abscido, absconditus, absens, absorbeo, absque, abstergo, absum, abundans, abutor, accedo, accendo, acceptus, accipio, accommodo, accusator, acer, acerbitas, acervus, acidus, acies, acquiro, acsi, adamo, adaugeo, addo, adduco, ademptio, adeo, adeptio, adfectus, adfero, adficio, adflicto, adhaero, adhuc, adicio, adimpleo, adinventitias, adipiscor, adiuvo, administratio, admiratio, admitto, admoneo, admoveo, adnuo, adopto, adsidue, adstringo, adsuesco, adsum, adulatio, adulescens, adultus, aduro, advenio, adversus, advoco, aedificium, aeger, aegre, aegrotatio, aegrus, aeneus, aequitas, aequus, aer, aestas, aestivus, aestus, aetas, aeternus, ager, aggero, aggredior, agnitio, agnosco, ago, ait, aiunt, alienus, alii, alioqui, aliqua, alius, allatus, alo, alter, altus, alveus, amaritudo, ambitus, ambulo, amicitia, amiculum, amissio, amita, amitto, amo, amor, amoveo, amplexus, amplitudo, amplus, ancilla, angelus, angulus, angustus, animadverto, animi, animus, annus, anser, ante, antea, antepono, antiquus, aperio, aperte, apostolus, apparatus, appello, appono, appositus, approbo, apto, aptus, apud, aqua, ara, aranea, arbitro, arbor, arbustum, arca, arceo, arcesso, arcus, argentum, argumentum, arguo, arma, armarium, armo, aro, ars, articulus, artificiose, arto, arx, ascisco, ascit, asper, aspicio, asporto, assentator, astrum, atavus, ater, atqui, atrocitas, atrox, attero, attollo, attonbitus, auctor, auctus, audacia, audax, audentia, audeo, audio, auditor, aufero, aureus, auris, aurum, aut, autem, autus, auxilium, avaritia, avarus, aveho, averto, avoco, baiulus, balbus, barba, bardus, basium, beatus, bellicus, bellum, bene, beneficium, benevolentia, benigne, bestia, bibo, bis, blandior, bonus, bos, brevis, cado, caecus, caelestis, caelum, calamitas, calcar, calco, calculus, callide, campana, candidus, canis, canonicus, canto, capillus, capio, capitulus, capto, caput, carbo, carcer, careo, caries, cariosus, caritas, carmen, carpo, carus, casso, caste, casus, catena, caterva, cattus, cauda, causa, caute, caveo, cavus, cedo, celebrer, celer, celo, cena, cenaculum, ceno, censura, centum, cerno, cernuus, certe, certo, certus, cervus, cetera, charisma, chirographum, cibo, cibus, cicuta, cilicium, cimentarius, ciminatio, cinis, circumvenio, cito, civis, civitas, clam, clamo, claro, clarus, claudeo, claustrum, clementia, clibanus, coadunatio, coaegresco, coepi, coerceo, cogito, cognatus, cognomen, cogo, cohaero, cohibeo, cohors, colligo, colloco, collum, colo, color, coma, combibo, comburo, comedo, comes, cometes, comis, comitatus, commemoro, comminor, commodo, communis, comparo, compello, complectus, compono, comprehendo, comptus, conatus, concedo, concido, conculco, condico, conduco, confero, confido, conforto, confugo, congregatio, conicio, coniecto, conitor, coniuratio, conor, conqueror, conscendo, conservo, considero, conspergo, constans, consuasor, contabesco, contego, contigo, contra, conturbo, conventus, convoco, copia, copiose, cornu, corona, corpus, correptius, corrigo, corroboro, corrumpo, coruscus, cotidie, crapula, cras, crastinus, creator, creber, crebro, credo, creo, creptio, crepusculum, cresco, creta, cribro, crinis, cruciamentum, crudelis, cruentus, crur, crustulum, crux, cubicularis, cubitum, cubo, cui, cuius, culpa, culpo, cultellus, cultura, cum, cunabula, cunae, cunctatio, cupiditas, cupio, cuppedia, cupressus, cur, cura, curatio, curia, curiositas, curis, curo, curriculum, currus, cursim, curso, cursus, curto, curtus, curvo, curvus, custodia, damnatio, damno, dapifer, debeo, debilito, decens, decerno, decet, decimus, decipio, decor, decretum, decumbo, dedecor, dedico, deduco, defaeco, defendo, defero, defessus, defetiscor, deficio, defigo, defleo, defluo, defungo, degenero, degero, degusto, deinde, delectatio, delego, deleo, delibero, delicate, delinquo, deludo, demens, demergo, demitto, demo, demonstro, demoror, demulceo, demum, denego, denique, dens, denuncio, denuo, deorsum, depereo, depono, depopulo, deporto, depraedor, deprecator, deprimo, depromo, depulso, deputo, derelinquo, derideo, deripio, desidero, desino, desipio, desolo, desparatus, despecto, despirmatio, infit, inflammatio, paens, patior, patria, patrocinor, patruus, pauci, paulatim, pauper, pax, peccatus, pecco, pecto, pectus, pecunia, pecus, peior, pel, ocer, socius, sodalitas, sol, soleo, solio, solitudo, solium, sollers, sollicito, solum, solus, solutio, solvo, somniculosus, somnus, sonitus, sono, sophismata, sopor, sordeo, sortitus, spargo, speciosus, spectaculum, speculum, sperno, spero, spes, spiculum, spiritus, spoliatio, sponte, stabilis, statim, statua, stella, stillicidium, stipes, stips, sto, strenuus, strues, studio, stultus, suadeo, suasoria, sub, subito, subiungo, sublime, subnecto, subseco, substantia, subvenio, succedo, succurro, sufficio, suffoco, suffragium, suggero, sui, sulum, sum, summa, summisse, summopere, sumo, sumptus, supellex, super, suppellex, supplanto, suppono, supra, surculus, surgo, sursum, suscipio, suspendo, sustineo, suus, synagoga, tabella, tabernus, tabesco, tabgo, tabula, taceo, tactus, taedium, talio, talis, talus, tam, tamdiu, tamen, tametsi, tamisium, tamquam, tandem, tantillus, tantum, tardus, tego, temeritas, temperantia, templum, temptatio, tempus, tenax, tendo, teneo, tener, tenuis, tenus, tepesco, tepidus, ter, terebro, teres, terga, tergeo, tergiversatio, tergo, tergum, termes, terminatio, tero, terra, terreo, territo, terror, tersus, tertius, testimonium, texo, textilis, textor, textus, thalassinus, theatrum, theca, thema, theologus, thermae, thesaurus, thesis, thorax, thymbra, thymum, tibi, timidus, timor, titulus, tolero, tollo, tondeo, tonsor, torqueo, torrens, tot, totidem, toties, totus, tracto, trado, traho, trans, tredecim, tremo, trepide, tres, tribuo, tricesimus, triduana, triginta, tripudio, tristis, triumphus, trucido, truculenter, tubineus, tui, tum, tumultus, tunc, turba, turbo, turpe, turpis, tutamen, tutis, tyrannus, uberrime, ubi, ulciscor, ullus, ulterius, ultio, ultra, umbra, umerus, umquam, una, unde, undique, universe, unus, urbanus, urbs, uredo, usitas, usque, ustilo, ustulo, usus, uter, uterque, utilis, utique, utor, utpote, utrimque, utroque, utrum, uxor, vaco, vacuus, vado, vae, valde, valens, valeo, valetudo, validus, vallum, vapulus, varietas, varius, vehemens, vel, velociter, velum, velut, venia, venio, ventito, ventosus, ventus, venustas, ver, verbera, verbum, vere, verecundia, vereor, vergo, veritas, vero, versus, verto, verumtamen, verus, vesco, vesica, vesper, vespillo, vester, vestigium, vestrum, vetus, via, vicinus, vicissitudo, victoria, victus, videlicet, video, viduata, viduo, vigilo, vigor, vilicus, vilis, vilitas, villa, vinco, vinculum, vindico, vinitor, vinum, vir, virga, virgo, viridis, viriliter, virtus, vis, viscus, vita, vitiosus, vitium, vito, vivo, vix, vobis, vociferor, voco, volaticus, volo, volubilis, voluntarius, volup, volutabrum, volva, vomer, vomica, vomito, vorago, vorax, voro, vos, votum, voveo, vox, vulariter, vulgaris, vulgivagus, vulgo, vulgus, vulnero, vulnus, vulpes, vulticulus, vultuosus, xiphias]
64
-
986
+ words:
987
+ - alias
988
+ - consequatur
989
+ - aut
990
+ - perferendis
991
+ - sit
992
+ - voluptatem
993
+ - accusantium
994
+ - doloremque
995
+ - aperiam
996
+ - eaque
997
+ - ipsa
998
+ - quae
999
+ - ab
1000
+ - illo
1001
+ - inventore
1002
+ - veritatis
1003
+ - et
1004
+ - quasi
1005
+ - architecto
1006
+ - beatae
1007
+ - vitae
1008
+ - dicta
1009
+ - sunt
1010
+ - explicabo
1011
+ - aspernatur
1012
+ - aut
1013
+ - odit
1014
+ - aut
1015
+ - fugit
1016
+ - sed
1017
+ - quia
1018
+ - consequuntur
1019
+ - magni
1020
+ - dolores
1021
+ - eos
1022
+ - qui
1023
+ - ratione
1024
+ - voluptatem
1025
+ - sequi
1026
+ - nesciunt
1027
+ - neque
1028
+ - dolorem
1029
+ - ipsum
1030
+ - quia
1031
+ - dolor
1032
+ - sit
1033
+ - amet
1034
+ - consectetur
1035
+ - adipisci
1036
+ - velit
1037
+ - sed
1038
+ - quia
1039
+ - non
1040
+ - numquam
1041
+ - eius
1042
+ - modi
1043
+ - tempora
1044
+ - incidunt
1045
+ - ut
1046
+ - labore
1047
+ - et
1048
+ - dolore
1049
+ - magnam
1050
+ - aliquam
1051
+ - quaerat
1052
+ - voluptatem
1053
+ - ut
1054
+ - enim
1055
+ - ad
1056
+ - minima
1057
+ - veniam
1058
+ - quis
1059
+ - nostrum
1060
+ - exercitationem
1061
+ - ullam
1062
+ - corporis
1063
+ - nemo
1064
+ - enim
1065
+ - ipsam
1066
+ - voluptatem
1067
+ - quia
1068
+ - voluptas
1069
+ - sit
1070
+ - suscipit
1071
+ - laboriosam
1072
+ - nisi
1073
+ - ut
1074
+ - aliquid
1075
+ - ex
1076
+ - ea
1077
+ - commodi
1078
+ - consequatur
1079
+ - quis
1080
+ - autem
1081
+ - vel
1082
+ - eum
1083
+ - iure
1084
+ - reprehenderit
1085
+ - qui
1086
+ - in
1087
+ - ea
1088
+ - voluptate
1089
+ - velit
1090
+ - esse
1091
+ - quam
1092
+ - nihil
1093
+ - molestiae
1094
+ - et
1095
+ - iusto
1096
+ - odio
1097
+ - dignissimos
1098
+ - ducimus
1099
+ - qui
1100
+ - blanditiis
1101
+ - praesentium
1102
+ - laudantium
1103
+ - totam
1104
+ - rem
1105
+ - voluptatum
1106
+ - deleniti
1107
+ - atque
1108
+ - corrupti
1109
+ - quos
1110
+ - dolores
1111
+ - et
1112
+ - quas
1113
+ - molestias
1114
+ - excepturi
1115
+ - sint
1116
+ - occaecati
1117
+ - cupiditate
1118
+ - non
1119
+ - provident
1120
+ - sed
1121
+ - ut
1122
+ - perspiciatis
1123
+ - unde
1124
+ - omnis
1125
+ - iste
1126
+ - natus
1127
+ - error
1128
+ - similique
1129
+ - sunt
1130
+ - in
1131
+ - culpa
1132
+ - qui
1133
+ - officia
1134
+ - deserunt
1135
+ - mollitia
1136
+ - animi
1137
+ - id
1138
+ - est
1139
+ - laborum
1140
+ - et
1141
+ - dolorum
1142
+ - fuga
1143
+ - et
1144
+ - harum
1145
+ - quidem
1146
+ - rerum
1147
+ - facilis
1148
+ - est
1149
+ - et
1150
+ - expedita
1151
+ - distinctio
1152
+ - nam
1153
+ - libero
1154
+ - tempore
1155
+ - cum
1156
+ - soluta
1157
+ - nobis
1158
+ - est
1159
+ - eligendi
1160
+ - optio
1161
+ - cumque
1162
+ - nihil
1163
+ - impedit
1164
+ - quo
1165
+ - porro
1166
+ - quisquam
1167
+ - est
1168
+ - qui
1169
+ - minus
1170
+ - id
1171
+ - quod
1172
+ - maxime
1173
+ - placeat
1174
+ - facere
1175
+ - possimus
1176
+ - omnis
1177
+ - voluptas
1178
+ - assumenda
1179
+ - est
1180
+ - omnis
1181
+ - dolor
1182
+ - repellendus
1183
+ - temporibus
1184
+ - autem
1185
+ - quibusdam
1186
+ - et
1187
+ - aut
1188
+ - consequatur
1189
+ - vel
1190
+ - illum
1191
+ - qui
1192
+ - dolorem
1193
+ - eum
1194
+ - fugiat
1195
+ - quo
1196
+ - voluptas
1197
+ - nulla
1198
+ - pariatur
1199
+ - at
1200
+ - vero
1201
+ - eos
1202
+ - et
1203
+ - accusamus
1204
+ - officiis
1205
+ - debitis
1206
+ - aut
1207
+ - rerum
1208
+ - necessitatibus
1209
+ - saepe
1210
+ - eveniet
1211
+ - ut
1212
+ - et
1213
+ - voluptates
1214
+ - repudiandae
1215
+ - sint
1216
+ - et
1217
+ - molestiae
1218
+ - non
1219
+ - recusandae
1220
+ - itaque
1221
+ - earum
1222
+ - rerum
1223
+ - hic
1224
+ - tenetur
1225
+ - a
1226
+ - sapiente
1227
+ - delectus
1228
+ - ut
1229
+ - aut
1230
+ - reiciendis
1231
+ - voluptatibus
1232
+ - maiores
1233
+ - doloribus
1234
+ - asperiores
1235
+ - repellat
1236
+ supplemental:
1237
+ - abbas
1238
+ - abduco
1239
+ - abeo
1240
+ - abscido
1241
+ - absconditus
1242
+ - absens
1243
+ - absorbeo
1244
+ - absque
1245
+ - abstergo
1246
+ - absum
1247
+ - abundans
1248
+ - abutor
1249
+ - accedo
1250
+ - accendo
1251
+ - acceptus
1252
+ - accipio
1253
+ - accommodo
1254
+ - accusator
1255
+ - acer
1256
+ - acerbitas
1257
+ - acervus
1258
+ - acidus
1259
+ - acies
1260
+ - acquiro
1261
+ - acsi
1262
+ - adamo
1263
+ - adaugeo
1264
+ - addo
1265
+ - adduco
1266
+ - ademptio
1267
+ - adeo
1268
+ - adeptio
1269
+ - adfectus
1270
+ - adfero
1271
+ - adficio
1272
+ - adflicto
1273
+ - adhaero
1274
+ - adhuc
1275
+ - adicio
1276
+ - adimpleo
1277
+ - adinventitias
1278
+ - adipiscor
1279
+ - adiuvo
1280
+ - administratio
1281
+ - admiratio
1282
+ - admitto
1283
+ - admoneo
1284
+ - admoveo
1285
+ - adnuo
1286
+ - adopto
1287
+ - adsidue
1288
+ - adstringo
1289
+ - adsuesco
1290
+ - adsum
1291
+ - adulatio
1292
+ - adulescens
1293
+ - adultus
1294
+ - aduro
1295
+ - advenio
1296
+ - adversus
1297
+ - advoco
1298
+ - aedificium
1299
+ - aeger
1300
+ - aegre
1301
+ - aegrotatio
1302
+ - aegrus
1303
+ - aeneus
1304
+ - aequitas
1305
+ - aequus
1306
+ - aer
1307
+ - aestas
1308
+ - aestivus
1309
+ - aestus
1310
+ - aetas
1311
+ - aeternus
1312
+ - ager
1313
+ - aggero
1314
+ - aggredior
1315
+ - agnitio
1316
+ - agnosco
1317
+ - ago
1318
+ - ait
1319
+ - aiunt
1320
+ - alienus
1321
+ - alii
1322
+ - alioqui
1323
+ - aliqua
1324
+ - alius
1325
+ - allatus
1326
+ - alo
1327
+ - alter
1328
+ - altus
1329
+ - alveus
1330
+ - amaritudo
1331
+ - ambitus
1332
+ - ambulo
1333
+ - amicitia
1334
+ - amiculum
1335
+ - amissio
1336
+ - amita
1337
+ - amitto
1338
+ - amo
1339
+ - amor
1340
+ - amoveo
1341
+ - amplexus
1342
+ - amplitudo
1343
+ - amplus
1344
+ - ancilla
1345
+ - angelus
1346
+ - angulus
1347
+ - angustus
1348
+ - animadverto
1349
+ - animi
1350
+ - animus
1351
+ - annus
1352
+ - anser
1353
+ - ante
1354
+ - antea
1355
+ - antepono
1356
+ - antiquus
1357
+ - aperio
1358
+ - aperte
1359
+ - apostolus
1360
+ - apparatus
1361
+ - appello
1362
+ - appono
1363
+ - appositus
1364
+ - approbo
1365
+ - apto
1366
+ - aptus
1367
+ - apud
1368
+ - aqua
1369
+ - ara
1370
+ - aranea
1371
+ - arbitro
1372
+ - arbor
1373
+ - arbustum
1374
+ - arca
1375
+ - arceo
1376
+ - arcesso
1377
+ - arcus
1378
+ - argentum
1379
+ - argumentum
1380
+ - arguo
1381
+ - arma
1382
+ - armarium
1383
+ - armo
1384
+ - aro
1385
+ - ars
1386
+ - articulus
1387
+ - artificiose
1388
+ - arto
1389
+ - arx
1390
+ - ascisco
1391
+ - ascit
1392
+ - asper
1393
+ - aspicio
1394
+ - asporto
1395
+ - assentator
1396
+ - astrum
1397
+ - atavus
1398
+ - ater
1399
+ - atqui
1400
+ - atrocitas
1401
+ - atrox
1402
+ - attero
1403
+ - attollo
1404
+ - attonbitus
1405
+ - auctor
1406
+ - auctus
1407
+ - audacia
1408
+ - audax
1409
+ - audentia
1410
+ - audeo
1411
+ - audio
1412
+ - auditor
1413
+ - aufero
1414
+ - aureus
1415
+ - auris
1416
+ - aurum
1417
+ - aut
1418
+ - autem
1419
+ - autus
1420
+ - auxilium
1421
+ - avaritia
1422
+ - avarus
1423
+ - aveho
1424
+ - averto
1425
+ - avoco
1426
+ - baiulus
1427
+ - balbus
1428
+ - barba
1429
+ - bardus
1430
+ - basium
1431
+ - beatus
1432
+ - bellicus
1433
+ - bellum
1434
+ - bene
1435
+ - beneficium
1436
+ - benevolentia
1437
+ - benigne
1438
+ - bestia
1439
+ - bibo
1440
+ - bis
1441
+ - blandior
1442
+ - bonus
1443
+ - bos
1444
+ - brevis
1445
+ - cado
1446
+ - caecus
1447
+ - caelestis
1448
+ - caelum
1449
+ - calamitas
1450
+ - calcar
1451
+ - calco
1452
+ - calculus
1453
+ - callide
1454
+ - campana
1455
+ - candidus
1456
+ - canis
1457
+ - canonicus
1458
+ - canto
1459
+ - capillus
1460
+ - capio
1461
+ - capitulus
1462
+ - capto
1463
+ - caput
1464
+ - carbo
1465
+ - carcer
1466
+ - careo
1467
+ - caries
1468
+ - cariosus
1469
+ - caritas
1470
+ - carmen
1471
+ - carpo
1472
+ - carus
1473
+ - casso
1474
+ - caste
1475
+ - casus
1476
+ - catena
1477
+ - caterva
1478
+ - cattus
1479
+ - cauda
1480
+ - causa
1481
+ - caute
1482
+ - caveo
1483
+ - cavus
1484
+ - cedo
1485
+ - celebrer
1486
+ - celer
1487
+ - celo
1488
+ - cena
1489
+ - cenaculum
1490
+ - ceno
1491
+ - censura
1492
+ - centum
1493
+ - cerno
1494
+ - cernuus
1495
+ - certe
1496
+ - certo
1497
+ - certus
1498
+ - cervus
1499
+ - cetera
1500
+ - charisma
1501
+ - chirographum
1502
+ - cibo
1503
+ - cibus
1504
+ - cicuta
1505
+ - cilicium
1506
+ - cimentarius
1507
+ - ciminatio
1508
+ - cinis
1509
+ - circumvenio
1510
+ - cito
1511
+ - civis
1512
+ - civitas
1513
+ - clam
1514
+ - clamo
1515
+ - claro
1516
+ - clarus
1517
+ - claudeo
1518
+ - claustrum
1519
+ - clementia
1520
+ - clibanus
1521
+ - coadunatio
1522
+ - coaegresco
1523
+ - coepi
1524
+ - coerceo
1525
+ - cogito
1526
+ - cognatus
1527
+ - cognomen
1528
+ - cogo
1529
+ - cohaero
1530
+ - cohibeo
1531
+ - cohors
1532
+ - colligo
1533
+ - colloco
1534
+ - collum
1535
+ - colo
1536
+ - color
1537
+ - coma
1538
+ - combibo
1539
+ - comburo
1540
+ - comedo
1541
+ - comes
1542
+ - cometes
1543
+ - comis
1544
+ - comitatus
1545
+ - commemoro
1546
+ - comminor
1547
+ - commodo
1548
+ - communis
1549
+ - comparo
1550
+ - compello
1551
+ - complectus
1552
+ - compono
1553
+ - comprehendo
1554
+ - comptus
1555
+ - conatus
1556
+ - concedo
1557
+ - concido
1558
+ - conculco
1559
+ - condico
1560
+ - conduco
1561
+ - confero
1562
+ - confido
1563
+ - conforto
1564
+ - confugo
1565
+ - congregatio
1566
+ - conicio
1567
+ - coniecto
1568
+ - conitor
1569
+ - coniuratio
1570
+ - conor
1571
+ - conqueror
1572
+ - conscendo
1573
+ - conservo
1574
+ - considero
1575
+ - conspergo
1576
+ - constans
1577
+ - consuasor
1578
+ - contabesco
1579
+ - contego
1580
+ - contigo
1581
+ - contra
1582
+ - conturbo
1583
+ - conventus
1584
+ - convoco
1585
+ - copia
1586
+ - copiose
1587
+ - cornu
1588
+ - corona
1589
+ - corpus
1590
+ - correptius
1591
+ - corrigo
1592
+ - corroboro
1593
+ - corrumpo
1594
+ - coruscus
1595
+ - cotidie
1596
+ - crapula
1597
+ - cras
1598
+ - crastinus
1599
+ - creator
1600
+ - creber
1601
+ - crebro
1602
+ - credo
1603
+ - creo
1604
+ - creptio
1605
+ - crepusculum
1606
+ - cresco
1607
+ - creta
1608
+ - cribro
1609
+ - crinis
1610
+ - cruciamentum
1611
+ - crudelis
1612
+ - cruentus
1613
+ - crur
1614
+ - crustulum
1615
+ - crux
1616
+ - cubicularis
1617
+ - cubitum
1618
+ - cubo
1619
+ - cui
1620
+ - cuius
1621
+ - culpa
1622
+ - culpo
1623
+ - cultellus
1624
+ - cultura
1625
+ - cum
1626
+ - cunabula
1627
+ - cunae
1628
+ - cunctatio
1629
+ - cupiditas
1630
+ - cupio
1631
+ - cuppedia
1632
+ - cupressus
1633
+ - cur
1634
+ - cura
1635
+ - curatio
1636
+ - curia
1637
+ - curiositas
1638
+ - curis
1639
+ - curo
1640
+ - curriculum
1641
+ - currus
1642
+ - cursim
1643
+ - curso
1644
+ - cursus
1645
+ - curto
1646
+ - curtus
1647
+ - curvo
1648
+ - curvus
1649
+ - custodia
1650
+ - damnatio
1651
+ - damno
1652
+ - dapifer
1653
+ - debeo
1654
+ - debilito
1655
+ - decens
1656
+ - decerno
1657
+ - decet
1658
+ - decimus
1659
+ - decipio
1660
+ - decor
1661
+ - decretum
1662
+ - decumbo
1663
+ - dedecor
1664
+ - dedico
1665
+ - deduco
1666
+ - defaeco
1667
+ - defendo
1668
+ - defero
1669
+ - defessus
1670
+ - defetiscor
1671
+ - deficio
1672
+ - defigo
1673
+ - defleo
1674
+ - defluo
1675
+ - defungo
1676
+ - degenero
1677
+ - degero
1678
+ - degusto
1679
+ - deinde
1680
+ - delectatio
1681
+ - delego
1682
+ - deleo
1683
+ - delibero
1684
+ - delicate
1685
+ - delinquo
1686
+ - deludo
1687
+ - demens
1688
+ - demergo
1689
+ - demitto
1690
+ - demo
1691
+ - demonstro
1692
+ - demoror
1693
+ - demulceo
1694
+ - demum
1695
+ - denego
1696
+ - denique
1697
+ - dens
1698
+ - denuncio
1699
+ - denuo
1700
+ - deorsum
1701
+ - depereo
1702
+ - depono
1703
+ - depopulo
1704
+ - deporto
1705
+ - depraedor
1706
+ - deprecator
1707
+ - deprimo
1708
+ - depromo
1709
+ - depulso
1710
+ - deputo
1711
+ - derelinquo
1712
+ - derideo
1713
+ - deripio
1714
+ - desidero
1715
+ - desino
1716
+ - desipio
1717
+ - desolo
1718
+ - desparatus
1719
+ - despecto
1720
+ - despirmatio
1721
+ - infit
1722
+ - inflammatio
1723
+ - paens
1724
+ - patior
1725
+ - patria
1726
+ - patrocinor
1727
+ - patruus
1728
+ - pauci
1729
+ - paulatim
1730
+ - pauper
1731
+ - pax
1732
+ - peccatus
1733
+ - pecco
1734
+ - pecto
1735
+ - pectus
1736
+ - pecunia
1737
+ - pecus
1738
+ - peior
1739
+ - pel
1740
+ - ocer
1741
+ - socius
1742
+ - sodalitas
1743
+ - sol
1744
+ - soleo
1745
+ - solio
1746
+ - solitudo
1747
+ - solium
1748
+ - sollers
1749
+ - sollicito
1750
+ - solum
1751
+ - solus
1752
+ - solutio
1753
+ - solvo
1754
+ - somniculosus
1755
+ - somnus
1756
+ - sonitus
1757
+ - sono
1758
+ - sophismata
1759
+ - sopor
1760
+ - sordeo
1761
+ - sortitus
1762
+ - spargo
1763
+ - speciosus
1764
+ - spectaculum
1765
+ - speculum
1766
+ - sperno
1767
+ - spero
1768
+ - spes
1769
+ - spiculum
1770
+ - spiritus
1771
+ - spoliatio
1772
+ - sponte
1773
+ - stabilis
1774
+ - statim
1775
+ - statua
1776
+ - stella
1777
+ - stillicidium
1778
+ - stipes
1779
+ - stips
1780
+ - sto
1781
+ - strenuus
1782
+ - strues
1783
+ - studio
1784
+ - stultus
1785
+ - suadeo
1786
+ - suasoria
1787
+ - sub
1788
+ - subito
1789
+ - subiungo
1790
+ - sublime
1791
+ - subnecto
1792
+ - subseco
1793
+ - substantia
1794
+ - subvenio
1795
+ - succedo
1796
+ - succurro
1797
+ - sufficio
1798
+ - suffoco
1799
+ - suffragium
1800
+ - suggero
1801
+ - sui
1802
+ - sulum
1803
+ - sum
1804
+ - summa
1805
+ - summisse
1806
+ - summopere
1807
+ - sumo
1808
+ - sumptus
1809
+ - supellex
1810
+ - super
1811
+ - suppellex
1812
+ - supplanto
1813
+ - suppono
1814
+ - supra
1815
+ - surculus
1816
+ - surgo
1817
+ - sursum
1818
+ - suscipio
1819
+ - suspendo
1820
+ - sustineo
1821
+ - suus
1822
+ - synagoga
1823
+ - tabella
1824
+ - tabernus
1825
+ - tabesco
1826
+ - tabgo
1827
+ - tabula
1828
+ - taceo
1829
+ - tactus
1830
+ - taedium
1831
+ - talio
1832
+ - talis
1833
+ - talus
1834
+ - tam
1835
+ - tamdiu
1836
+ - tamen
1837
+ - tametsi
1838
+ - tamisium
1839
+ - tamquam
1840
+ - tandem
1841
+ - tantillus
1842
+ - tantum
1843
+ - tardus
1844
+ - tego
1845
+ - temeritas
1846
+ - temperantia
1847
+ - templum
1848
+ - temptatio
1849
+ - tempus
1850
+ - tenax
1851
+ - tendo
1852
+ - teneo
1853
+ - tener
1854
+ - tenuis
1855
+ - tenus
1856
+ - tepesco
1857
+ - tepidus
1858
+ - ter
1859
+ - terebro
1860
+ - teres
1861
+ - terga
1862
+ - tergeo
1863
+ - tergiversatio
1864
+ - tergo
1865
+ - tergum
1866
+ - termes
1867
+ - terminatio
1868
+ - tero
1869
+ - terra
1870
+ - terreo
1871
+ - territo
1872
+ - terror
1873
+ - tersus
1874
+ - tertius
1875
+ - testimonium
1876
+ - texo
1877
+ - textilis
1878
+ - textor
1879
+ - textus
1880
+ - thalassinus
1881
+ - theatrum
1882
+ - theca
1883
+ - thema
1884
+ - theologus
1885
+ - thermae
1886
+ - thesaurus
1887
+ - thesis
1888
+ - thorax
1889
+ - thymbra
1890
+ - thymum
1891
+ - tibi
1892
+ - timidus
1893
+ - timor
1894
+ - titulus
1895
+ - tolero
1896
+ - tollo
1897
+ - tondeo
1898
+ - tonsor
1899
+ - torqueo
1900
+ - torrens
1901
+ - tot
1902
+ - totidem
1903
+ - toties
1904
+ - totus
1905
+ - tracto
1906
+ - trado
1907
+ - traho
1908
+ - trans
1909
+ - tredecim
1910
+ - tremo
1911
+ - trepide
1912
+ - tres
1913
+ - tribuo
1914
+ - tricesimus
1915
+ - triduana
1916
+ - triginta
1917
+ - tripudio
1918
+ - tristis
1919
+ - triumphus
1920
+ - trucido
1921
+ - truculenter
1922
+ - tubineus
1923
+ - tui
1924
+ - tum
1925
+ - tumultus
1926
+ - tunc
1927
+ - turba
1928
+ - turbo
1929
+ - turpe
1930
+ - turpis
1931
+ - tutamen
1932
+ - tutis
1933
+ - tyrannus
1934
+ - uberrime
1935
+ - ubi
1936
+ - ulciscor
1937
+ - ullus
1938
+ - ulterius
1939
+ - ultio
1940
+ - ultra
1941
+ - umbra
1942
+ - umerus
1943
+ - umquam
1944
+ - una
1945
+ - unde
1946
+ - undique
1947
+ - universe
1948
+ - unus
1949
+ - urbanus
1950
+ - urbs
1951
+ - uredo
1952
+ - usitas
1953
+ - usque
1954
+ - ustilo
1955
+ - ustulo
1956
+ - usus
1957
+ - uter
1958
+ - uterque
1959
+ - utilis
1960
+ - utique
1961
+ - utor
1962
+ - utpote
1963
+ - utrimque
1964
+ - utroque
1965
+ - utrum
1966
+ - uxor
1967
+ - vaco
1968
+ - vacuus
1969
+ - vado
1970
+ - vae
1971
+ - valde
1972
+ - valens
1973
+ - valeo
1974
+ - valetudo
1975
+ - validus
1976
+ - vallum
1977
+ - vapulus
1978
+ - varietas
1979
+ - varius
1980
+ - vehemens
1981
+ - vel
1982
+ - velociter
1983
+ - velum
1984
+ - velut
1985
+ - venia
1986
+ - venio
1987
+ - ventito
1988
+ - ventosus
1989
+ - ventus
1990
+ - venustas
1991
+ - ver
1992
+ - verbera
1993
+ - verbum
1994
+ - vere
1995
+ - verecundia
1996
+ - vereor
1997
+ - vergo
1998
+ - veritas
1999
+ - vero
2000
+ - versus
2001
+ - verto
2002
+ - verumtamen
2003
+ - verus
2004
+ - vesco
2005
+ - vesica
2006
+ - vesper
2007
+ - vespillo
2008
+ - vester
2009
+ - vestigium
2010
+ - vestrum
2011
+ - vetus
2012
+ - via
2013
+ - vicinus
2014
+ - vicissitudo
2015
+ - victoria
2016
+ - victus
2017
+ - videlicet
2018
+ - video
2019
+ - viduata
2020
+ - viduo
2021
+ - vigilo
2022
+ - vigor
2023
+ - vilicus
2024
+ - vilis
2025
+ - vilitas
2026
+ - villa
2027
+ - vinco
2028
+ - vinculum
2029
+ - vindico
2030
+ - vinitor
2031
+ - vinum
2032
+ - vir
2033
+ - virga
2034
+ - virgo
2035
+ - viridis
2036
+ - viriliter
2037
+ - virtus
2038
+ - vis
2039
+ - viscus
2040
+ - vita
2041
+ - vitiosus
2042
+ - vitium
2043
+ - vito
2044
+ - vivo
2045
+ - vix
2046
+ - vobis
2047
+ - vociferor
2048
+ - voco
2049
+ - volaticus
2050
+ - volo
2051
+ - volubilis
2052
+ - voluntarius
2053
+ - volup
2054
+ - volutabrum
2055
+ - volva
2056
+ - vomer
2057
+ - vomica
2058
+ - vomito
2059
+ - vorago
2060
+ - vorax
2061
+ - voro
2062
+ - vos
2063
+ - votum
2064
+ - voveo
2065
+ - vox
2066
+ - vulariter
2067
+ - vulgaris
2068
+ - vulgivagus
2069
+ - vulgo
2070
+ - vulgus
2071
+ - vulnero
2072
+ - vulnus
2073
+ - vulpes
2074
+ - vulticulus
2075
+ - vultuosus
2076
+ - xiphias
65
2077
  name:
66
- first_name: [Enzo, Lucas, Mathis, Nathan, Thomas, Hugo, Théo, Tom, Louis, Raphaël, Clément, Léo, Mathéo, Maxime, Alexandre, Antoine, Yanis, Paul, Baptiste, Alexis, Gabriel, Arthur, Jules, Ethan, Noah, Quentin, Axel, Evan, Mattéo, Romain, Valentin, Maxence, Noa, Adam, Nicolas, Julien, Mael, Pierre, Rayan, Victor, Mohamed, Adrien, Kylian, Sacha, Benjamin, Léa, Clara, Manon, Chloé, Camille, Ines, Sarah, Jade, Lola, Anaïs, Lucie, Océane, Lilou, Marie, Eva, Romane, Lisa, Zoe, Julie, Mathilde, Louise, Juliette, Clémence, Célia, Laura, Lena, Maëlys, Charlotte, Ambre, Maeva, Pauline, Lina, Jeanne, Lou, Noémie, Justine, Louna, Elisa, Alice, Emilie, Carla, Maëlle, Alicia, Mélissa]
67
- last_name: [Martin, Bérnard, Dubois, Thomas, Robért, Richard, Pétit, Durand, Léroy, Moréau, Simon, Laurént, Lefévre, Michél, Garcia, David, Bértrand, Roux, Vincent, Fourniér, Morél, Girard, André, Lévêque , Merciér, Dupont, Lambért, Bonnét, Francois, Martinéz, Légrand, Garniér, Fauré, Rousséau, Blanc, Guérin, Mullér, Hénry, Roussél, Nicolas, Pérrin, Morin, Mathiéu, Clemént, Gauthiér, Dumont, Lopéz, Fontainé, Chevaliér, Robin, Masson, Sanchéz, Gérard, Nguyén, Boyér, Dvnis, Lemairé, Duval, Joly, Gautiér, Rogér,Roché, Roy, Noél, Meyér, Lucas, Méunier,Jéan, Peréz, Marchand, Dufour, Blanchard, Marié, Barbiér, Brun, Dumas, Brunét, Schmitt, Leroux, Colin, Fernandéz, Piérre, Rénard, Arnaud, Rolland, Caron, Aubért, Giraud, Leclérc, Vidal, Bourgéois, Renaud, Lemoiné, Picard, Gaillard, Philippé, Leclércq, Lacroix, Fabré, Dupuis, Oliviér, Rodriguéz, Da silva, Hubért, Louis, Charlés, Guillot, Rivieré, Le gall, Guillaume, Adam, Rey, Moulin, Gonzaléz, Bergér, Lecomté, Ménard, Fléury, Déschamps, Carpéntier, Julién, Bénoit, Paris, Maillard, Marchal, Aubry, Vasséur, Le roux, Rénault, Jacquét, Collét, Prévost, Poiriér, Charpéntier, Royér, Huét, Baron, Dupuy, Pons, Paul, Lainé, Carré, Bréton, Rémy, Schneidér, Pérrot, Guyot,Barré, Marty, Cousin]
68
- prefix: [M, Mme, Mlle, Dr, Prof]
2078
+ first_name:
2079
+ - Enzo
2080
+ - Lucas
2081
+ - Mathis
2082
+ - Nathan
2083
+ - Thomas
2084
+ - Hugo
2085
+ - Théo
2086
+ - Tom
2087
+ - Louis
2088
+ - Raphaël
2089
+ - Clément
2090
+ - Léo
2091
+ - Mathéo
2092
+ - Maxime
2093
+ - Alexandre
2094
+ - Antoine
2095
+ - Yanis
2096
+ - Paul
2097
+ - Baptiste
2098
+ - Alexis
2099
+ - Gabriel
2100
+ - Arthur
2101
+ - Jules
2102
+ - Ethan
2103
+ - Noah
2104
+ - Quentin
2105
+ - Axel
2106
+ - Evan
2107
+ - Mattéo
2108
+ - Romain
2109
+ - Valentin
2110
+ - Maxence
2111
+ - Noa
2112
+ - Adam
2113
+ - Nicolas
2114
+ - Julien
2115
+ - Mael
2116
+ - Pierre
2117
+ - Rayan
2118
+ - Victor
2119
+ - Mohamed
2120
+ - Adrien
2121
+ - Kylian
2122
+ - Sacha
2123
+ - Benjamin
2124
+ - Léa
2125
+ - Clara
2126
+ - Manon
2127
+ - Chloé
2128
+ - Camille
2129
+ - Ines
2130
+ - Sarah
2131
+ - Jade
2132
+ - Lola
2133
+ - Anaïs
2134
+ - Lucie
2135
+ - Océane
2136
+ - Lilou
2137
+ - Marie
2138
+ - Eva
2139
+ - Romane
2140
+ - Lisa
2141
+ - Zoe
2142
+ - Julie
2143
+ - Mathilde
2144
+ - Louise
2145
+ - Juliette
2146
+ - Clémence
2147
+ - Célia
2148
+ - Laura
2149
+ - Lena
2150
+ - Maëlys
2151
+ - Charlotte
2152
+ - Ambre
2153
+ - Maeva
2154
+ - Pauline
2155
+ - Lina
2156
+ - Jeanne
2157
+ - Lou
2158
+ - Noémie
2159
+ - Justine
2160
+ - Louna
2161
+ - Elisa
2162
+ - Alice
2163
+ - Emilie
2164
+ - Carla
2165
+ - Maëlle
2166
+ - Alicia
2167
+ - Mélissa
2168
+ last_name:
2169
+ - Martin
2170
+ - Bérnard
2171
+ - Dubois
2172
+ - Thomas
2173
+ - Robért
2174
+ - Richard
2175
+ - Pétit
2176
+ - Durand
2177
+ - Léroy
2178
+ - Moréau
2179
+ - Simon
2180
+ - Laurént
2181
+ - Lefévre
2182
+ - Michél
2183
+ - Garcia
2184
+ - David
2185
+ - Bértrand
2186
+ - Roux
2187
+ - Vincent
2188
+ - Fourniér
2189
+ - Morél
2190
+ - Girard
2191
+ - André
2192
+ - Lévêque
2193
+ - Merciér
2194
+ - Dupont
2195
+ - Lambért
2196
+ - Bonnét
2197
+ - Francois
2198
+ - Martinéz
2199
+ - Légrand
2200
+ - Garniér
2201
+ - Fauré
2202
+ - Rousséau
2203
+ - Blanc
2204
+ - Guérin
2205
+ - Mullér
2206
+ - Hénry
2207
+ - Roussél
2208
+ - Nicolas
2209
+ - Pérrin
2210
+ - Morin
2211
+ - Mathiéu
2212
+ - Clemént
2213
+ - Gauthiér
2214
+ - Dumont
2215
+ - Lopéz
2216
+ - Fontainé
2217
+ - Chevaliér
2218
+ - Robin
2219
+ - Masson
2220
+ - Sanchéz
2221
+ - Gérard
2222
+ - Nguyén
2223
+ - Boyér
2224
+ - Dvnis
2225
+ - Lemairé
2226
+ - Duval
2227
+ - Joly
2228
+ - Gautiér
2229
+ - Rogér
2230
+ - Roché
2231
+ - Roy
2232
+ - Noél
2233
+ - Meyér
2234
+ - Lucas
2235
+ - Méunier
2236
+ - Jéan
2237
+ - Peréz
2238
+ - Marchand
2239
+ - Dufour
2240
+ - Blanchard
2241
+ - Marié
2242
+ - Barbiér
2243
+ - Brun
2244
+ - Dumas
2245
+ - Brunét
2246
+ - Schmitt
2247
+ - Leroux
2248
+ - Colin
2249
+ - Fernandéz
2250
+ - Piérre
2251
+ - Rénard
2252
+ - Arnaud
2253
+ - Rolland
2254
+ - Caron
2255
+ - Aubért
2256
+ - Giraud
2257
+ - Leclérc
2258
+ - Vidal
2259
+ - Bourgéois
2260
+ - Renaud
2261
+ - Lemoiné
2262
+ - Picard
2263
+ - Gaillard
2264
+ - Philippé
2265
+ - Leclércq
2266
+ - Lacroix
2267
+ - Fabré
2268
+ - Dupuis
2269
+ - Oliviér
2270
+ - Rodriguéz
2271
+ - Da silva
2272
+ - Hubért
2273
+ - Louis
2274
+ - Charlés
2275
+ - Guillot
2276
+ - Rivieré
2277
+ - Le gall
2278
+ - Guillaume
2279
+ - Adam
2280
+ - Rey
2281
+ - Moulin
2282
+ - Gonzaléz
2283
+ - Bergér
2284
+ - Lecomté
2285
+ - Ménard
2286
+ - Fléury
2287
+ - Déschamps
2288
+ - Carpéntier
2289
+ - Julién
2290
+ - Bénoit
2291
+ - Paris
2292
+ - Maillard
2293
+ - Marchal
2294
+ - Aubry
2295
+ - Vasséur
2296
+ - Le roux
2297
+ - Rénault
2298
+ - Jacquét
2299
+ - Collét
2300
+ - Prévost
2301
+ - Poiriér
2302
+ - Charpéntier
2303
+ - Royér
2304
+ - Huét
2305
+ - Baron
2306
+ - Dupuy
2307
+ - Pons
2308
+ - Paul
2309
+ - Lainé
2310
+ - Carré
2311
+ - Bréton
2312
+ - Rémy
2313
+ - Schneidér
2314
+ - Pérrot
2315
+ - Guyot
2316
+ - Barré
2317
+ - Marty
2318
+ - Cousin
2319
+ prefix:
2320
+ - M
2321
+ - Mme
2322
+ - Mlle
2323
+ - Dr
2324
+ - Prof
69
2325
  title:
70
- job: [Superviseur, Executif, Manager, Ingenieur, Specialiste, Directeur, Coordinateur, Administrateur, Architecte, Analyste, Designer, Technicien, Developpeur, Producteur, Consultant, Assistant, Agent, Stagiaire]
2326
+ job:
2327
+ - Superviseur
2328
+ - Executif
2329
+ - Manager
2330
+ - Ingenieur
2331
+ - Specialiste
2332
+ - Directeur
2333
+ - Coordinateur
2334
+ - Administrateur
2335
+ - Architecte
2336
+ - Analyste
2337
+ - Designer
2338
+ - Technicien
2339
+ - Developpeur
2340
+ - Producteur
2341
+ - Consultant
2342
+ - Assistant
2343
+ - Agent
2344
+ - Stagiaire
71
2345
  name:
72
2346
  - "#{prefix} #{first_name} #{last_name}"
73
2347
  - "#{first_name} #{last_name}"
@@ -79,12 +2353,450 @@ fr-CA:
79
2353
  - "#{first_name} #{last_name} #{last_name}"
80
2354
  - "#{first_name} #{last_name} #{last_name}"
81
2355
  book:
82
- title: ['La Discipline des orphelins', 'Le Couloir de tous les mépris', "L'Odeur du sanglier", 'La Promise du voyeur', "L'Odyssée invisible", 'La Soumission comme passion', 'Le Siècle de la rue voisine', 'Le Désir des femmes fortes', 'Pourquoi je mens ?', 'La Peau des savants', 'La progéniture du mal']
2356
+ title:
2357
+ - La Discipline des orphelins
2358
+ - Le Couloir de tous les mépris
2359
+ - L'Odeur du sanglier
2360
+ - La Promise du voyeur
2361
+ - L'Odyssée invisible
2362
+ - La Soumission comme passion
2363
+ - Le Siècle de la rue voisine
2364
+ - Le Désir des femmes fortes
2365
+ - Pourquoi je mens ?
2366
+ - La Peau des savants
2367
+ - La progéniture du mal
83
2368
  author: "#{Name.name}"
84
- publisher: ['Éditions du Soleil', 'La Perdrix', 'Les Éditions jaune turquoise', 'Bordel père et fils', 'Au lecteur éclairé', 'Lire en dormant']
85
- quote: ['Qui vivra verra', 'L’habit ne fait pas le moine', 'Chacun voit midi à sa porte', 'Mieux vaut prévenir que guérir', 'Petit a petit, l’oiseau fait son nid', 'Qui court deux lievres a la fois, n’en prend aucun', 'Qui n’avance pas, recule']
86
-
87
- pokemon:
88
- names: ["Bulbizarre", "Herbizarre", "Florizarre", "Salamèche", "Reptincel", "Dracaufeu", "Carapuce", "Carabaffe", "Tortank", "Chenipan", "Chrysacier", "Papilusion", "Aspicot", "Coconfort", "Dardargnan", "Roucool", "Roucoups", "Roucarnage", "Rattata", "Rattatac", "Piafabec", "Rapasdepic", "Abo", "Arbok", "Pikachu", "Raichu", "Sabelette", "Sablaireau", "Nidoran", "Nidorina", "Nidoqueen", "Nidoran", "Nidorino", "Nidoking", "Mélofée", "Mélodelfe", "Goupix", "Feunard", "Rondoudou", "Grodoudou", "Nosférapti", "Nosféralto", "Mystherbe", "Ortide", "Rafflésia", "Paras", "Parasect", "Mimitoss", "Aéromite", "Taupiqueur", "Triopikeur", "Miaouss", "Persian", "Psykokwak", "Akwakwak", "Férosinge", "Colossinge", "Canidos", "Arcanin", "Ptitard", "Tétarte", "Tartard", "Abra", "Kadabra", "Alakazam", "Machoc", "Machopeur", "Mackogneur", "Chétiflor", "Boustiflor", "Empiflor", "Tentacool", "Tentacruel", "Racaillou", "Gravalanche", "Grolem", "Ponyta", "Galopa", "Ramoloss", "Flagadoss", "Magnéti", "Magnéton", "Canarticho", "Doduo", "Dodrio", "Otaria", "Lamantine", "Tadmorv", "Grotadmorv", "Kokyas", "Crustabri", "Fantominus", "Spectrum", "Ectoplasma", "Onix", "Soporifik", "Hypnomade", "Krabby", "Kraboss", "Voltorb", "Electrode", "Noeunoeuf", "Noadkoko", "Osselait", "Ossatueur", "Kicklee", "Tygnon", "Excelangue", "Smogo", "Smogogo", "Rhinocorne", "Rhinoféros", "Leveinard", "Saquedeneu", "Kangourex", "Hypotrempe", "Hypocéan", "Poissirène", "Poissoroy", "Stari", "Staross", "Mr. Mime", "Insécateur", "Lippoutou", "Elektek", "Magmar", "Scarabrute", "Tauros", "Magicarpe", "Léviator", "Lokhlass", "Métamorph", "Evoli", "Aquali", "Voltali", "Pyroli", "Porygon", "Amonita", "Amonistar", "Kabuto", "Kabutops", "Ptéra", "Ronflex", "Artikodin", "Electhor", "Sulfura", "Minidraco", "Draco", "Dracolosse", "Mewtwo", "Mew"]
89
- locations: ["Arabelle", "Roche-sur-Gliffe", "Flusselles", "Rotombourg", "Quarellis", "Pavonnay", "Ecorcia", "Ville noire", "Ebenelle", "Fort-Vanitas", "Joliberge", "Volucité", "Celadopole", "Célestia", "Azuria", "Ville-Griotte", "Irisia", "Cramois'Île", "Port Tempères", "Mozheim", "Relifac-le-Haut", "La Frescale", "Myokara", "Port Yoneuve", "Rosalia", "Vestigion", "Eternara", "Autéquia", "Zone de Combat", "Île 5", "Floraville", "Amaillide", "Cimetronelle", "Île 4", "Atrium Combat", "Parmanie", "Cromlac'h", "Doublonville", "Unionpolis", "Papeloa", "Flocombe", "Féli-Cité", "Batisques", "Entrelasque", "Vermilava", "Lavanville", "Romant-sous-Bois", "Arpentières", "Bourg-en-Vol", "Nénucrique", "Illumis", "Acajou", "Lavandia", "Parsemille", "Algatia", "Maillard", "Bourg Geon", "Méanville", "Renouet", "Rosyères", "Oliville", "Île 1", "Janusia", "Charbourg", "Pacifiville", "Bourg Palette", "Verchamps", "Clémenti-Ville", "Argenta", "Aire de Détente", "Mérouville", "Portail Safari", "Safrania", "Littorella", "Neuvartault", "Ogoesse", "Île 7", "Yantreizh", "Île 6", "Poivressel", "Auffrac-les-Congères", "Frimapic", "Bonville", "Atalanopolis", "Rivamar", "Aire de Survie", "Île 3", "Bonaugure", "Île 2", "Vaguelone", "Bourg Croquis", "Voilaroc", "Vergazon", "Carmin sur Mer", "Mauville", "Ondes-sur-Mer", "Jadielle", "Forêt Blanche"]
90
- moves: ["Vol-Vie", "Acide", "Acidarmure", "Hâte", "Amnésie", "Onde Boréale", "Pilonnage", "Bouclier", "Patience", "Etreinte", "Morsure", "Blizzard", "Plaquage", "Massd'Os", "Osmerang", "Ecume", "Bulles d'O", "Claquoir", "Poing Comète", "Onde Folie", "Choc Mental", "Constriction", "Conversion", "Riposte", "Pince-Masse", "Coupe", "Boul'Armure", "Tunnel", "Entrave", "Uppercut", "Double-Pied", "Torgnoles", "Reflet", "Damoclès", "Draco-Rage", "Dévorêve", "Bec Vrille", "Séisme", "Bomb'Oeuf", "Flammèche", "Explosion", "Déflagration", "Poing de Feu", "Danse Flamme", "Abîme", "Lance-Flamme", "Flash", "Vol", "Puissance", "Furie", "Combo-Griffe", "Regard Médusant", "Rugissement", "Croissance", "Guillotine", "Tornade", "Armure", "Buée Noire", "Coup d'Boule", "Pied Voltige", "Koud'Korne", "Empal'Korne", "Hydrocanon", "Ultralaser", "Croc de Mort", "Hypnose", "Laser Glace", "Poing-Glace", "Pied Sauté", "Poing Karaté", "Télékinésie", "Vampirisme", "Vampigraine", "Groz'Yeux", "Léchouille", "Mur Lumière", "Grobisou", "Balayage", "Yoga", "Méga-Sangsue", "Ultimawashi", "Ultimapoing", "Métronome", "Copie", "Lilliput", "Mimique", "Brume", "Ombre Nocturne", "Jackpot", "Picpic", "Danse-Fleur", "Dard-Nuée", "Gaz Toxik", "Poudre Poison", "Dard-Venin", "Ecras'Face", "Rafale Psy", "Psyko", "Vague Psy", "Vive-Attaque", "Frénésie", "Tranch'Herbe", "Coupe-Vent", "Soin", "Protection", "Repos", "Hurlement", "Eboulement", "Jet-Pierres", "Mawashi Geri", "Jet de Sable", "Griffe", "Grincement", "Amplitude", "Destruction", "Affûtage", "Berceuse", "Coud'Krâne", "Piqué", "Souplesse", "Tranche", "Poudre Dodo", "Détritus", "Purédpois", "Brouillard", "E-Coque", "Lance-Soleil", "Sonicboom", "Picanon", "Trempette", "Spore", "Ecrasement", "Force", "Sécrétion", "Lutte", "Para-Spore", "Sacrifice", "Clonage", "Croc Fatal", "Ultrason", "Surf", "Météores", "Danse-Lames", "Charge", "Mimi-Queue", "Bélier", "Téléport", "Mania", "Fatal-Foudre", "Poing-Eclair", "Eclair", "Cage-Eclair", "Tonnerre", "Toxic", "Morphing", "Triplattaque", "Double-Dard", "Force Poigne", "Fouet Liane", "Pistolet à O", "Cascade", "Cyclone", "Cru-Aile", "Repli", "Ligotage"]
2369
+ publisher:
2370
+ - Éditions du Soleil
2371
+ - La Perdrix
2372
+ - Les Éditions jaune turquoise
2373
+ - Bordel père et fils
2374
+ - Au lecteur éclairé
2375
+ - Lire en dormant
2376
+ quote:
2377
+ - Qui vivra verra
2378
+ - L’habit ne fait pas le moine
2379
+ - Chacun voit midi à sa porte
2380
+ - Mieux vaut prévenir que guérir
2381
+ - Petit a petit, l’oiseau fait son nid
2382
+ - Qui court deux lievres a la fois, n’en prend aucun
2383
+ - Qui n’avance pas, recule
2384
+ games:
2385
+ pokemon:
2386
+ names:
2387
+ - Bulbizarre
2388
+ - Herbizarre
2389
+ - Florizarre
2390
+ - Salamèche
2391
+ - Reptincel
2392
+ - Dracaufeu
2393
+ - Carapuce
2394
+ - Carabaffe
2395
+ - Tortank
2396
+ - Chenipan
2397
+ - Chrysacier
2398
+ - Papilusion
2399
+ - Aspicot
2400
+ - Coconfort
2401
+ - Dardargnan
2402
+ - Roucool
2403
+ - Roucoups
2404
+ - Roucarnage
2405
+ - Rattata
2406
+ - Rattatac
2407
+ - Piafabec
2408
+ - Rapasdepic
2409
+ - Abo
2410
+ - Arbok
2411
+ - Pikachu
2412
+ - Raichu
2413
+ - Sabelette
2414
+ - Sablaireau
2415
+ - Nidoran
2416
+ - Nidorina
2417
+ - Nidoqueen
2418
+ - Nidoran
2419
+ - Nidorino
2420
+ - Nidoking
2421
+ - Mélofée
2422
+ - Mélodelfe
2423
+ - Goupix
2424
+ - Feunard
2425
+ - Rondoudou
2426
+ - Grodoudou
2427
+ - Nosférapti
2428
+ - Nosféralto
2429
+ - Mystherbe
2430
+ - Ortide
2431
+ - Rafflésia
2432
+ - Paras
2433
+ - Parasect
2434
+ - Mimitoss
2435
+ - Aéromite
2436
+ - Taupiqueur
2437
+ - Triopikeur
2438
+ - Miaouss
2439
+ - Persian
2440
+ - Psykokwak
2441
+ - Akwakwak
2442
+ - Férosinge
2443
+ - Colossinge
2444
+ - Canidos
2445
+ - Arcanin
2446
+ - Ptitard
2447
+ - Tétarte
2448
+ - Tartard
2449
+ - Abra
2450
+ - Kadabra
2451
+ - Alakazam
2452
+ - Machoc
2453
+ - Machopeur
2454
+ - Mackogneur
2455
+ - Chétiflor
2456
+ - Boustiflor
2457
+ - Empiflor
2458
+ - Tentacool
2459
+ - Tentacruel
2460
+ - Racaillou
2461
+ - Gravalanche
2462
+ - Grolem
2463
+ - Ponyta
2464
+ - Galopa
2465
+ - Ramoloss
2466
+ - Flagadoss
2467
+ - Magnéti
2468
+ - Magnéton
2469
+ - Canarticho
2470
+ - Doduo
2471
+ - Dodrio
2472
+ - Otaria
2473
+ - Lamantine
2474
+ - Tadmorv
2475
+ - Grotadmorv
2476
+ - Kokyas
2477
+ - Crustabri
2478
+ - Fantominus
2479
+ - Spectrum
2480
+ - Ectoplasma
2481
+ - Onix
2482
+ - Soporifik
2483
+ - Hypnomade
2484
+ - Krabby
2485
+ - Kraboss
2486
+ - Voltorb
2487
+ - Electrode
2488
+ - Noeunoeuf
2489
+ - Noadkoko
2490
+ - Osselait
2491
+ - Ossatueur
2492
+ - Kicklee
2493
+ - Tygnon
2494
+ - Excelangue
2495
+ - Smogo
2496
+ - Smogogo
2497
+ - Rhinocorne
2498
+ - Rhinoféros
2499
+ - Leveinard
2500
+ - Saquedeneu
2501
+ - Kangourex
2502
+ - Hypotrempe
2503
+ - Hypocéan
2504
+ - Poissirène
2505
+ - Poissoroy
2506
+ - Stari
2507
+ - Staross
2508
+ - Mr. Mime
2509
+ - Insécateur
2510
+ - Lippoutou
2511
+ - Elektek
2512
+ - Magmar
2513
+ - Scarabrute
2514
+ - Tauros
2515
+ - Magicarpe
2516
+ - Léviator
2517
+ - Lokhlass
2518
+ - Métamorph
2519
+ - Evoli
2520
+ - Aquali
2521
+ - Voltali
2522
+ - Pyroli
2523
+ - Porygon
2524
+ - Amonita
2525
+ - Amonistar
2526
+ - Kabuto
2527
+ - Kabutops
2528
+ - Ptéra
2529
+ - Ronflex
2530
+ - Artikodin
2531
+ - Electhor
2532
+ - Sulfura
2533
+ - Minidraco
2534
+ - Draco
2535
+ - Dracolosse
2536
+ - Mewtwo
2537
+ - Mew
2538
+ locations:
2539
+ - Arabelle
2540
+ - Roche-sur-Gliffe
2541
+ - Flusselles
2542
+ - Rotombourg
2543
+ - Quarellis
2544
+ - Pavonnay
2545
+ - Ecorcia
2546
+ - Ville noire
2547
+ - Ebenelle
2548
+ - Fort-Vanitas
2549
+ - Joliberge
2550
+ - Volucité
2551
+ - Celadopole
2552
+ - Célestia
2553
+ - Azuria
2554
+ - Ville-Griotte
2555
+ - Irisia
2556
+ - Cramois'Île
2557
+ - Port Tempères
2558
+ - Mozheim
2559
+ - Relifac-le-Haut
2560
+ - La Frescale
2561
+ - Myokara
2562
+ - Port Yoneuve
2563
+ - Rosalia
2564
+ - Vestigion
2565
+ - Eternara
2566
+ - Autéquia
2567
+ - Zone de Combat
2568
+ - Île 5
2569
+ - Floraville
2570
+ - Amaillide
2571
+ - Cimetronelle
2572
+ - Île 4
2573
+ - Atrium Combat
2574
+ - Parmanie
2575
+ - Cromlac'h
2576
+ - Doublonville
2577
+ - Unionpolis
2578
+ - Papeloa
2579
+ - Flocombe
2580
+ - Féli-Cité
2581
+ - Batisques
2582
+ - Entrelasque
2583
+ - Vermilava
2584
+ - Lavanville
2585
+ - Romant-sous-Bois
2586
+ - Arpentières
2587
+ - Bourg-en-Vol
2588
+ - Nénucrique
2589
+ - Illumis
2590
+ - Acajou
2591
+ - Lavandia
2592
+ - Parsemille
2593
+ - Algatia
2594
+ - Maillard
2595
+ - Bourg Geon
2596
+ - Méanville
2597
+ - Renouet
2598
+ - Rosyères
2599
+ - Oliville
2600
+ - Île 1
2601
+ - Janusia
2602
+ - Charbourg
2603
+ - Pacifiville
2604
+ - Bourg Palette
2605
+ - Verchamps
2606
+ - Clémenti-Ville
2607
+ - Argenta
2608
+ - Aire de Détente
2609
+ - Mérouville
2610
+ - Portail Safari
2611
+ - Safrania
2612
+ - Littorella
2613
+ - Neuvartault
2614
+ - Ogoesse
2615
+ - Île 7
2616
+ - Yantreizh
2617
+ - Île 6
2618
+ - Poivressel
2619
+ - Auffrac-les-Congères
2620
+ - Frimapic
2621
+ - Bonville
2622
+ - Atalanopolis
2623
+ - Rivamar
2624
+ - Aire de Survie
2625
+ - Île 3
2626
+ - Bonaugure
2627
+ - Île 2
2628
+ - Vaguelone
2629
+ - Bourg Croquis
2630
+ - Voilaroc
2631
+ - Vergazon
2632
+ - Carmin sur Mer
2633
+ - Mauville
2634
+ - Ondes-sur-Mer
2635
+ - Jadielle
2636
+ - Forêt Blanche
2637
+ moves:
2638
+ - Vol-Vie
2639
+ - Acide
2640
+ - Acidarmure
2641
+ - Hâte
2642
+ - Amnésie
2643
+ - Onde Boréale
2644
+ - Pilonnage
2645
+ - Bouclier
2646
+ - Patience
2647
+ - Etreinte
2648
+ - Morsure
2649
+ - Blizzard
2650
+ - Plaquage
2651
+ - Massd'Os
2652
+ - Osmerang
2653
+ - Ecume
2654
+ - Bulles d'O
2655
+ - Claquoir
2656
+ - Poing Comète
2657
+ - Onde Folie
2658
+ - Choc Mental
2659
+ - Constriction
2660
+ - Conversion
2661
+ - Riposte
2662
+ - Pince-Masse
2663
+ - Coupe
2664
+ - Boul'Armure
2665
+ - Tunnel
2666
+ - Entrave
2667
+ - Uppercut
2668
+ - Double-Pied
2669
+ - Torgnoles
2670
+ - Reflet
2671
+ - Damoclès
2672
+ - Draco-Rage
2673
+ - Dévorêve
2674
+ - Bec Vrille
2675
+ - Séisme
2676
+ - Bomb'Oeuf
2677
+ - Flammèche
2678
+ - Explosion
2679
+ - Déflagration
2680
+ - Poing de Feu
2681
+ - Danse Flamme
2682
+ - Abîme
2683
+ - Lance-Flamme
2684
+ - Flash
2685
+ - Vol
2686
+ - Puissance
2687
+ - Furie
2688
+ - Combo-Griffe
2689
+ - Regard Médusant
2690
+ - Rugissement
2691
+ - Croissance
2692
+ - Guillotine
2693
+ - Tornade
2694
+ - Armure
2695
+ - Buée Noire
2696
+ - Coup d'Boule
2697
+ - Pied Voltige
2698
+ - Koud'Korne
2699
+ - Empal'Korne
2700
+ - Hydrocanon
2701
+ - Ultralaser
2702
+ - Croc de Mort
2703
+ - Hypnose
2704
+ - Laser Glace
2705
+ - Poing-Glace
2706
+ - Pied Sauté
2707
+ - Poing Karaté
2708
+ - Télékinésie
2709
+ - Vampirisme
2710
+ - Vampigraine
2711
+ - Groz'Yeux
2712
+ - Léchouille
2713
+ - Mur Lumière
2714
+ - Grobisou
2715
+ - Balayage
2716
+ - Yoga
2717
+ - Méga-Sangsue
2718
+ - Ultimawashi
2719
+ - Ultimapoing
2720
+ - Métronome
2721
+ - Copie
2722
+ - Lilliput
2723
+ - Mimique
2724
+ - Brume
2725
+ - Ombre Nocturne
2726
+ - Jackpot
2727
+ - Picpic
2728
+ - Danse-Fleur
2729
+ - Dard-Nuée
2730
+ - Gaz Toxik
2731
+ - Poudre Poison
2732
+ - Dard-Venin
2733
+ - Ecras'Face
2734
+ - Rafale Psy
2735
+ - Psyko
2736
+ - Vague Psy
2737
+ - Vive-Attaque
2738
+ - Frénésie
2739
+ - Tranch'Herbe
2740
+ - Coupe-Vent
2741
+ - Soin
2742
+ - Protection
2743
+ - Repos
2744
+ - Hurlement
2745
+ - Eboulement
2746
+ - Jet-Pierres
2747
+ - Mawashi Geri
2748
+ - Jet de Sable
2749
+ - Griffe
2750
+ - Grincement
2751
+ - Amplitude
2752
+ - Destruction
2753
+ - Affûtage
2754
+ - Berceuse
2755
+ - Coud'Krâne
2756
+ - Piqué
2757
+ - Souplesse
2758
+ - Tranche
2759
+ - Poudre Dodo
2760
+ - Détritus
2761
+ - Purédpois
2762
+ - Brouillard
2763
+ - E-Coque
2764
+ - Lance-Soleil
2765
+ - Sonicboom
2766
+ - Picanon
2767
+ - Trempette
2768
+ - Spore
2769
+ - Ecrasement
2770
+ - Force
2771
+ - Sécrétion
2772
+ - Lutte
2773
+ - Para-Spore
2774
+ - Sacrifice
2775
+ - Clonage
2776
+ - Croc Fatal
2777
+ - Ultrason
2778
+ - Surf
2779
+ - Météores
2780
+ - Danse-Lames
2781
+ - Charge
2782
+ - Mimi-Queue
2783
+ - Bélier
2784
+ - Téléport
2785
+ - Mania
2786
+ - Fatal-Foudre
2787
+ - Poing-Eclair
2788
+ - Eclair
2789
+ - Cage-Eclair
2790
+ - Tonnerre
2791
+ - Toxic
2792
+ - Morphing
2793
+ - Triplattaque
2794
+ - Double-Dard
2795
+ - Force Poigne
2796
+ - Fouet Liane
2797
+ - Pistolet à O
2798
+ - Cascade
2799
+ - Cyclone
2800
+ - Cru-Aile
2801
+ - Repli
2802
+ - Ligotage