document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <body>
  3. <center>
  4. Name : <input type="text" id="fullname" name="fullname" value=""><br>
  5. <button type="button" onclick="init(0)">Generate Meaning</button></center>
  6. <br>
  7. <center><button type="button" onclick="init(1)">Generate meaning with Random Element</button>
  8. <br>
  9. <br>
  10. Just now I saw a similar thing but using pokemon names, so here is my variant of it.
  11. <br>
  12. <button type="button" onclick="init(2)">Generate meaning with Pokemon</button>
  13. <br>
  14. <br>
  15. <div id="meaning" style="font-weight: bold"></div>
  16. </center>
  17. </body>
  18. <script type="text/javascript">
  19. function init(random) {
  20.  var name = document.getElementsByName(\'fullname\')[0].value;
  21.  var Meaning = \'\';
  22.  //prompt("Please enter your name");
  23.  var loopamnt = 0;
  24.  name = name.toUpperCase()
  25.  //.trim();
  26.  for(i = 0; i < name.length; i++){
  27.    loopamnt += name.charCodeAt(i);
  28.  }
  29.  for(i = 0; i < name.length; i += 2){
  30.   if(name.length % 2 == 0){  
  31.    loopamnt *= name.charCodeAt(i);
  32.    loopamnt = Math.round(loopamnt / name.charCodeAt(i+1));
  33.   } else {
  34.    loopamnt *= name.charCodeAt(i);
  35.    if(!(i == name.length - 1)){
  36.     loopamnt = Math.round(loopamnt / name.charCodeAt(i+1));
  37.    }
  38.   }
  39.  }
  40.  var alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  41.  var first = true;
  42.  for(i = 0; i < name.length; i++){
  43.   for(l = 0; l < alphabet.length; l++){
  44.    if(alphabet.charAt(l) == name.charAt(i)){
  45.     var choice;
  46.     if(random == 1) {
  47.      choice = Math.round(Math.random() * 1000) % words[l].length;
  48.     } else {
  49.      if(random == 2) {      
  50.       choice = loopamnt % pokemon[l].length;
  51.      } else {
  52.       choice = loopamnt % words[l].length;
  53.      }
  54.     }
  55.     if(random == 2) {
  56.   if (first == false) {
  57.   Meaning = Meaning.concat(\', \')
  58.   }
  59.      Meaning = Meaning.concat(pokemon[l][choice]);
  60.   first = false;
  61.      loopamnt += 1;
  62.     } else {
  63.   if (first == false) {
  64.   Meaning = Meaning.concat(\', \')
  65.   }
  66.      Meaning = Meaning.concat(words[l][choice]);
  67.   first = false;
  68.      loopamnt += l;
  69.     }
  70.    }
  71.    loopamnt += 1;
  72.   }
  73.  }
  74.  document.getElementById(\'meaning\').innerText = Meaning;
  75.  document.getElementById(\'meaning\').textContent = Meaning;
  76. }
  77.  
  78. var pokemon = [
  79. ["Abomasnow",
  80. "Abra",
  81. "Absol",
  82. "Accelgor",
  83. "Aegislash",
  84. "Aerodactyl",
  85. "Aggron",
  86. "Aipom",
  87. "Alakazam",
  88. "Alomomola",
  89. "Altaria",
  90. "Amaura",
  91. "Ambipom",
  92. "Amoonguss",
  93. "Ampharos",
  94. "Anorith",
  95. "Arbok",
  96. "Arcanine",
  97. "Arceus",
  98. "Archen",
  99. "Archeops",
  100. "Ariados",
  101. "Armaldo",
  102. "Aromatisse",
  103. "Aron",
  104. "Articuno",
  105. "Audino",
  106. "Aurorus",
  107. "Avalugg",
  108. "Axew",
  109. "Azelf",
  110. "Azumarill",
  111. "Azurill"
  112. ],
  113. ["Bagon",
  114. "Baltoy",
  115. "Banette",
  116. "Barbaracle",
  117. "Barboach",
  118. "Basculin",
  119. "Bastiodon",
  120. "Bayleef",
  121. "Beartic",
  122. "Beautifly",
  123. "Beedrill",
  124. "Beheeyem",
  125. "Beldum",
  126. "Bellossom",
  127. "Bellsprout",
  128. "Bergmite",
  129. "Bibarel",
  130. "Bidoof",
  131. "Binacle",
  132. "Bisharp",
  133. "Blastoise",
  134. "Blaziken",
  135. "Blissey",
  136. "Blitzle",
  137. "Boldore",
  138. "Bonsly",
  139. "Bouffalant",
  140. "Braixen",
  141. "Braviary",
  142. "Breloom",
  143. "Bronzong",
  144. "Bronzor",
  145. "Budew",
  146. "Buizel",
  147. "Bulbasaur",
  148. "Buneary",
  149. "Bunnelby",
  150. "Burmy",
  151. "Butterfree"
  152. ],
  153. ["Cacnea",
  154. "Cacturne",
  155. "Camerupt",
  156. "Carbink",
  157. "Carnivine",
  158. "Carracosta",
  159. "Carvanha",
  160. "Cascoon",
  161. "Castform",
  162. "Caterpie",
  163. "Celebi",
  164. "Chandelure",
  165. "Chansey",
  166. "Charizard",
  167. "Charmander",
  168. "Charmeleon",
  169. "Chatot",
  170. "Cherrim",
  171. "Cherubi",
  172. "Chesnaught",
  173. "Chespin",
  174. "Chikorita",
  175. "Chimchar",
  176. "Chimecho",
  177. "Chinchou",
  178. "Chingling",
  179. "Cinccino",
  180. "Clamperl",
  181. "Clauncher",
  182. "Clawitzer",
  183. "Claydol",
  184. "Clefable",
  185. "Clefairy",
  186. "Cleffa",
  187. "Cloyster",
  188. "Cobalion",
  189. "Cofagrigus",
  190. "Combee",
  191. "Combusken",
  192. "Conkeldurr",
  193. "Corphish",
  194. "Corsola",
  195. "Cottonee",
  196. "Cradily",
  197. "Cranidos",
  198. "Crawdaunt",
  199. "Cresselia",
  200. "Croagunk",
  201. "Crobat",
  202. "Croconaw",
  203. "Crustle",
  204. "Cryogonal",
  205. "Cubchoo",
  206. "Cubone",
  207. "Cyndaquil"
  208. ],
  209. ["Darkrai",
  210. "Darmanitan",
  211. "Darumaka",
  212. "Dedenne",
  213. "Deerling",
  214. "Deino",
  215. "Delcatty",
  216. "Delibird",
  217. "Delphox",
  218. "Deoxys",
  219. "Dewgong",
  220. "Dewott",
  221. "Dialga",
  222. "Diancie",
  223. "Diggersby",
  224. "Diglett",
  225. "Ditto",
  226. "Dodrio",
  227. "Doduo",
  228. "Donphan",
  229. "Doublade",
  230. "Dragalge",
  231. "Dragonair",
  232. "Dragonite",
  233. "Drapion",
  234. "Dratini",
  235. "Drifblim",
  236. "Drifloon",
  237. "Drilbur",
  238. "Drowzee",
  239. "Druddigon",
  240. "Ducklett",
  241. "Dugtrio",
  242. "Dunsparce",
  243. "Duosion",
  244. "Durant",
  245. "Dusclops",
  246. "Dusknoir",
  247. "Duskull",
  248. "Dustox",
  249. "Dwebble"
  250. ],
  251. ["Eelektrik",
  252. "Eelektross",
  253. "Eevee",
  254. "Ekans",
  255. "Electabuzz",
  256. "Electivire",
  257. "Electrike",
  258. "Electrode",
  259. "Elekid",
  260. "Elgyem",
  261. "Emboar",
  262. "Emolga",
  263. "Empoleon",
  264. "Entei",
  265. "Escavalier",
  266. "Espeon",
  267. "Espurr",
  268. "Excadrill",
  269. "Exeggcute",
  270. "Exeggutor",
  271. "Exploud"
  272. ],
  273. ["Farfetch",
  274. "Fearow",
  275. "Feebas",
  276. "Fennekin",
  277. "Feraligatr",
  278. "Ferroseed",
  279. "Ferrothorn",
  280. "Finneon",
  281. "Flaaffy",
  282. "Flab",
  283. "Flareon",
  284. "Fletchinder",
  285. "Fletchling",
  286. "Floatzel",
  287. "Floette",
  288. "Florges",
  289. "Flygon",
  290. "Foongus",
  291. "Forretress",
  292. "Fraxure",
  293. "Frillish",
  294. "Froakie",
  295. "Frogadier",
  296. "Froslass",
  297. "Furfrou",
  298. "Furret"
  299. ],
  300. ["Gabite",
  301. "Gallade",
  302. "Galvantula",
  303. "Garbodor",
  304. "Garchomp",
  305. "Gardevoir",
  306. "Gastly",
  307. "Gastrodon",
  308. "Genesect",
  309. "Gengar",
  310. "Geodude",
  311. "Gible",
  312. "Gigalith",
  313. "Girafarig",
  314. "Giratina",
  315. "Glaceon",
  316. "Glalie",
  317. "Glameow",
  318. "Gligar",
  319. "Gliscor",
  320. "Gloom",
  321. "Gogoat",
  322. "Golbat",
  323. "Goldeen",
  324. "Golduck",
  325. "Golem",
  326. "Golett",
  327. "Golurk",
  328. "Goodra",
  329. "Goomy",
  330. "Gorebyss",
  331. "Gothita",
  332. "Gothitelle",
  333. "Gothorita",
  334. "Gourgeist",
  335. "Granbull",
  336. "Graveler",
  337. "Greninja",
  338. "Grimer",
  339. "Grotle",
  340. "Groudon",
  341. "Grovyle",
  342. "Growlithe",
  343. "Grumpig",
  344. "Gulpin",
  345. "Gurdurr",
  346. "Gyarados"
  347. ],
  348. ["Happiny",
  349. "Hariyama",
  350. "Haunter",
  351. "Hawlucha",
  352. "Haxorus",
  353. "Heatmor",
  354. "Heatran",
  355. "Heliolisk",
  356. "Helioptile",
  357. "Heracross",
  358. "Herdier",
  359. "Hippopotas",
  360. "Hippowdon",
  361. "Hitmonchan",
  362. "Hitmonlee",
  363. "Hitmontop",
  364. "Ho",
  365. "Honchkrow",
  366. "Honedge",
  367. "Hoothoot",
  368. "Hoppip",
  369. "Horsea",
  370. "Houndoom",
  371. "Houndour",
  372. "Huntail",
  373. "Hydreigon",
  374. "Hypno"
  375. ],
  376. ["Igglybuff",
  377. "Illumise",
  378. "Infernape",
  379. "Inkay",
  380. "Ivysaur"
  381. ],
  382. ["Jellicent",
  383. "Jigglypuff",
  384. "Jirachi",
  385. "Jolteon",
  386. "Joltik",
  387. "Jumpluff",
  388. "Jynx"
  389. ],
  390. ["Kabuto",
  391. "Kabutops",
  392. "Kadabra",
  393. "Kakuna",
  394. "Kangaskhan",
  395. "Karrablast",
  396. "Kecleon",
  397. "Keldeo",
  398. "Kingdra",
  399. "Kingler",
  400. "Kirlia",
  401. "Klang",
  402. "Klefki",
  403. "Klink",
  404. "Klinklang",
  405. "Koffing",
  406. "Krabby",
  407. "Kricketot",
  408. "Kricketune",
  409. "Krokorok",
  410. "Krookodile",
  411. "Kyogre",
  412. "Kyurem"
  413. ],
  414. ["Lairon",
  415. "Lampent",
  416. "Landorus",
  417. "Lanturn",
  418. "Lapras",
  419. "Larvesta",
  420. "Larvitar",
  421. "Latias",
  422. "Latios",
  423. "Leafeon",
  424. "Leavanny",
  425. "Ledian",
  426. "Ledyba",
  427. "Lickilicky",
  428. "Lickitung",
  429. "Liepard",
  430. "Lileep",
  431. "Lilligant",
  432. "Lillipup",
  433. "Linoone",
  434. "Litleo",
  435. "Litwick",
  436. "Lombre",
  437. "Lopunny",
  438. "Lotad",
  439. "Loudred",
  440. "Lucario",
  441. "Ludicolo",
  442. "Lugia",
  443. "Lumineon",
  444. "Lunatone",
  445. "Luvdisc",
  446. "Luxio",
  447. "Luxray"
  448. ],
  449. ["Machamp",
  450. "Machoke",
  451. "Machop",
  452. "Magby",
  453. "Magcargo",
  454. "Magikarp",
  455. "Magmar",
  456. "Magmortar",
  457. "Magnemite",
  458. "Magneton",
  459. "Magnezone",
  460. "Makuhita",
  461. "Malamar",
  462. "Mamoswine",
  463. "Manaphy",
  464. "Mandibuzz",
  465. "Manectric",
  466. "Mankey",
  467. "Mantine",
  468. "Mantyke",
  469. "Maractus",
  470. "Mareep",
  471. "Marill",
  472. "Marowak",
  473. "Marshtomp",
  474. "Masquerain",
  475. "Mawile",
  476. "Medicham",
  477. "Meditite",
  478. "Meganium",
  479. "Meloetta",
  480. "Meowstic",
  481. "Meowth",
  482. "Mesprit",
  483. "Metagross",
  484. "Metang",
  485. "Metapod",
  486. "Mewtwo",
  487. "Mew",
  488. "Mienfoo",
  489. "Mienshao",
  490. "Mightyena",
  491. "Milotic",
  492. "Miltank",
  493. "Mime",
  494. "Minccino",
  495. "Minun",
  496. "Misdreavus",
  497. "Mismagius",
  498. "Moltres",
  499. "Monferno",
  500. "Mothim",
  501. "Mr",
  502. "Mudkip",
  503. "Muk",
  504. "Munchlax",
  505. "Munna",
  506. "Murkrow",
  507. "Musharna"
  508. ],
  509. ["Natu",
  510. "Nidoking",
  511. "Nidoqueen",
  512. "Nidoran",
  513. "Nidoran",
  514. "Nidorina",
  515. "Nidorino",
  516. "Nincada",
  517. "Ninetales",
  518. "Ninjask",
  519. "Noctowl",
  520. "Noibat",
  521. "Noivern",
  522. "Nosepass",
  523. "Numel",
  524. "Nuzleaf"
  525. ],
  526. ["Octillery",
  527. "Oddish",
  528. "Omanyte",
  529. "Omastar",
  530. "Onix",
  531. "Oshawott"
  532. ],
  533. ["Pachirisu",
  534. "Palkia",
  535. "Palpitoad",
  536. "Pancham",
  537. "Pangoro",
  538. "Panpour",
  539. "Pansage",
  540. "Pansear",
  541. "Paras",
  542. "Parasect",
  543. "Patrat",
  544. "Pawniard",
  545. "Pelipper",
  546. "Persian",
  547. "Petilil",
  548. "Phanpy",
  549. "Phantump",
  550. "Phione",
  551. "Pichu",
  552. "Pidgeot",
  553. "Pidgeotto",
  554. "Pidgey",
  555. "Pidove",
  556. "Pignite",
  557. "Pikachu",
  558. "Piloswine",
  559. "Pineco",
  560. "Pinsir",
  561. "Piplup",
  562. "Plusle",
  563. "Politoed",
  564. "Poliwag",
  565. "Poliwhirl",
  566. "Poliwrath",
  567. "Ponyta",
  568. "Poochyena",
  569. "Porygon",
  570. "Porygon",
  571. "Porygon",
  572. "Primeape",
  573. "Prinplup",
  574. "Probopass",
  575. "Psyduck",
  576. "Pumpkaboo",
  577. "Pupitar",
  578. "Purrloin",
  579. "Purugly",
  580. "Pyroar"
  581. ],
  582. ["Quagsire",
  583. "Quilava",
  584. "Quilladin",
  585. "Qwilfish"
  586. ],
  587. ["Raichu",
  588. "Raikou",
  589. "Ralts",
  590. "Rampardos",
  591. "Rapidash",
  592. "Raticate",
  593. "Rattata",
  594. "Rayquaza",
  595. "Regice",
  596. "Regigigas",
  597. "Regirock",
  598. "Registeel",
  599. "Relicanth",
  600. "Remoraid",
  601. "Reshiram",
  602. "Reuniclus",
  603. "Rhydon",
  604. "Rhyhorn",
  605. "Rhyperior",
  606. "Riolu",
  607. "Roggenrola",
  608. "Roselia",
  609. "Roserade",
  610. "Rotom",
  611. "Rufflet"
  612. ],
  613. ["Sableye",
  614. "Salamence",
  615. "Samurott",
  616. "Sandile",
  617. "Sandshrew",
  618. "Sandslash",
  619. "Sawk",
  620. "Sawsbuck",
  621. "Scatterbug",
  622. "Sceptile",
  623. "Scizor",
  624. "Scolipede",
  625. "Scrafty",
  626. "Scraggy",
  627. "Scyther",
  628. "Seadra",
  629. "Seaking",
  630. "Sealeo",
  631. "Seedot",
  632. "Seel",
  633. "Seismitoad",
  634. "Sentret",
  635. "Serperior",
  636. "Servine",
  637. "Seviper",
  638. "Sewaddle",
  639. "Sharpedo",
  640. "Shaymin",
  641. "Shedinja",
  642. "Shelgon",
  643. "Shellder",
  644. "Shellos",
  645. "Shelmet",
  646. "Shieldon",
  647. "Shiftry",
  648. "Shinx",
  649. "Shroomish",
  650. "Shuckle",
  651. "Shuppet",
  652. "Sigilyph",
  653. "Silcoon",
  654. "Simipour",
  655. "Simisage",
  656. "Simisear",
  657. "Skarmory",
  658. "Skiddo",
  659. "Skiploom",
  660. "Skitty",
  661. "Skorupi",
  662. "Skrelp",
  663. "Skuntank",
  664. "Slaking",
  665. "Slakoth",
  666. "Sliggoo",
  667. "Slowbro",
  668. "Slowking",
  669. "Slowpoke",
  670. "Slugma",
  671. "Slurpuff",
  672. "Smeargle",
  673. "Smoochum",
  674. "Sneasel",
  675. "Snivy",
  676. "Snorlax",
  677. "Snorunt",
  678. "Snover",
  679. "Snubbull",
  680. "Solosis",
  681. "Solrock",
  682. "Spearow",
  683. "Spewpa",
  684. "Spheal",
  685. "Spinarak",
  686. "Spinda",
  687. "Spiritomb",
  688. "Spoink",
  689. "Spritzee",
  690. "Squirtle",
  691. "Stantler",
  692. "Staraptor",
  693. "Staravia",
  694. "Starly",
  695. "Starmie",
  696. "Staryu",
  697. "Steelix",
  698. "Stoutland",
  699. "Stunfisk",
  700. "Stunky",
  701. "Sudowoodo",
  702. "Suicune",
  703. "Sunflora",
  704. "Sunkern",
  705. "Surskit",
  706. "Swablu",
  707. "Swadloon",
  708. "Swalot",
  709. "Swampert",
  710. "Swanna",
  711. "Swellow",
  712. "Swinub",
  713. "Swirlix",
  714. "Swoobat",
  715. "Sylveon"
  716. ],
  717. ["Taillow",
  718. "Talonflame",
  719. "Tangela",
  720. "Tangrowth",
  721. "Tauros",
  722. "Teddiursa",
  723. "Tentacool",
  724. "Tentacruel",
  725. "Tepig",
  726. "Terrakion",
  727. "Throh",
  728. "Thundurus",
  729. "Timburr",
  730. "Tirtouga",
  731. "Togekiss",
  732. "Togepi",
  733. "Togetic",
  734. "Torchic",
  735. "Torkoal",
  736. "Tornadus",
  737. "Torterra",
  738. "Totodile",
  739. "Toxicroak",
  740. "Tranquill",
  741. "Trapinch",
  742. "Treecko",
  743. "Trevenant",
  744. "Tropius",
  745. "Trubbish",
  746. "Turtwig",
  747. "Tympole",
  748. "Tynamo",
  749. "Typhlosion",
  750. "Tyranitar",
  751. "Tyrantrum",
  752. "Tyrogue",
  753. "Tyrunt"
  754. ],
  755. ["Umbreon",
  756. "Unfezant",
  757. "Unown",
  758. "Ursaring",
  759. "Uxie"
  760. ],
  761. ["Vanillish",
  762. "Vanillite",
  763. "Vanilluxe",
  764. "Vaporeon",
  765. "Venipede",
  766. "Venomoth",
  767. "Venonat",
  768. "Venusaur",
  769. "Vespiquen",
  770. "Vibrava",
  771. "Victini",
  772. "Victreebel",
  773. "Vigoroth",
  774. "Vileplume",
  775. "Virizion",
  776. "Vivillon",
  777. "Volbeat",
  778. "Volcarona",
  779. "Voltorb",
  780. "Vullaby",
  781. "Vulpix"
  782. ],
  783. ["Wailmer",
  784. "Wailord",
  785. "Walrein",
  786. "Wartortle",
  787. "Watchog",
  788. "Weavile",
  789. "Weedle",
  790. "Weepinbell",
  791. "Weezing",
  792. "Whimsicott",
  793. "Whirlipede",
  794. "Whiscash",
  795. "Whismur",
  796. "Wigglytuff",
  797. "Wingull",
  798. "Wobbuffet",
  799. "Woobat",
  800. "Wooper",
  801. "Wormadam",
  802. "Wurmple",
  803. "Wynaut"
  804. ],
  805. [
  806. "Xatu",
  807. "Xerneas"
  808. ],
  809. ["Yamask",
  810. "Yanma",
  811. "Yanmega",
  812. "Yveltal"
  813. ],
  814. ["Zangoose",
  815. "Zapdos",
  816. "Zebstrika",
  817. "Zekrom",
  818. "Zigzagoon",
  819. "Zoroark",
  820. "Zorua",
  821. "Zubat",
  822. "Zweilous",
  823. "Zygarde"
  824. ]
  825. ];
  826.  
  827. var words = [
  828. ["aback"
  829. , "abaft"
  830. , "abandoned"
  831. , "abashed"
  832. , "aberrant"
  833. , "abhorrent"
  834. , "abiding"
  835. , "abject"
  836. , "ablaze"
  837. , "able"
  838. , "abnormal"
  839. , "aboard"
  840. , "aboriginal"
  841. , "abortive"
  842. , "abounding"
  843. , "above"
  844. , "abrasive"
  845. , "abrupt"
  846. , "absent"
  847. , "absolute"
  848. , "absorbed"
  849. , "absorbing"
  850. , "abstract"
  851. , "abstracted"
  852. , "absurd"
  853. , "abundant"
  854. , "abusive"
  855. , "academic"
  856. , "acceptable"
  857. , "accessible"
  858. , "accidental"
  859. , "accounting"
  860. , "accurate"
  861. , "accused"
  862. , "acid"
  863. , "acidic"
  864. , "acoustic"
  865. , "acrid"
  866. , "active"
  867. , "actual"
  868. , "actually"
  869. , "acute"
  870. , "ad hoc"
  871. , "adamant"
  872. , "adaptable"
  873. , "added"
  874. , "addicted"
  875. , "additional"
  876. , "adequate"
  877. , "adhesive"
  878. , "adjacent"
  879. , "adjoining"
  880. , "administrative"
  881. , "adorable"
  882. , "adult"
  883. , "advanced"
  884. , "adventurous"
  885. , "adverse"
  886. , "advisory"
  887. , "aesthetic"
  888. , "afraid"
  889. , "aggregate"
  890. , "aggressive"
  891. , "agonizing"
  892. , "agreeable"
  893. , "agreed"
  894. , "agricultural"
  895. , "ahead"
  896. , "ajar"
  897. , "alcoholic"
  898. , "alert"
  899. , "alien"
  900. , "alike"
  901. , "alive"
  902. , "alleged"
  903. , "allied"
  904. , "alluring"
  905. , "alone"
  906. , "aloof"
  907. , "alright"
  908. , "alternative"
  909. , "amateur"
  910. , "amazing"
  911. , "ambiguous"
  912. , "ambitious"
  913. , "ample"
  914. , "amuck"
  915. , "amused"
  916. , "amusing"
  917. , "ancient"
  918. , "angry"
  919. , "animated"
  920. , "annoyed"
  921. , "annoying"
  922. , "annual"
  923. , "anonymous"
  924. , "anxious"
  925. , "apathetic"
  926. , "appalling"
  927. , "apparent"
  928. , "applicable"
  929. , "applied"
  930. , "appointed"
  931. , "appropriate"
  932. , "approved"
  933. , "aquatic"
  934. , "arbitrary"
  935. , "archaeological"
  936. , "architectural"
  937. , "armed"
  938. , "aromatic"
  939. , "arrogant"
  940. , "artificial"
  941. , "artistic"
  942. , "ashamed"
  943. , "asleep"
  944. , "aspiring"
  945. , "assistant"
  946. , "associated"
  947. , "assorted"
  948. , "astonishing"
  949. , "atomic"
  950. , "attempted"
  951. , "attractive"
  952. , "auspicious"
  953. , "automatic"
  954. , "autonomous"
  955. , "available"
  956. , "average"
  957. , "awake"
  958. , "aware"
  959. , "awesome"
  960. , "awful"
  961. , "awkward"
  962. , "axiomatic"
  963. ],
  964. ["back"
  965. , "bad"
  966. , "balanced"
  967. , "barbarous"
  968. , "bare"
  969. , "bashful"
  970. , "basic"
  971. , "bawdy"
  972. , "beautiful"
  973. , "befitting"
  974. , "belligerent"
  975. , "beneficial"
  976. , "bent"
  977. , "berserk"
  978. , "best"
  979. , "better"
  980. , "bewildered"
  981. , "big"
  982. , "billowy"
  983. , "binding"
  984. , "biological"
  985. , "bite-sized"
  986. , "bitter"
  987. , "bizarre"
  988. , "black"
  989. , "black-and-white"
  990. , "blank"
  991. , "bleak"
  992. , "blind"
  993. , "blonde"
  994. , "bloody"
  995. , "blue"
  996. , "blue-eyed"
  997. , "blushing"
  998. , "bodily"
  999. , "boiling"
  1000. , "bold"
  1001. , "boorish"
  1002. , "bored"
  1003. , "boring"
  1004. , "bottom"
  1005. , "bouncy"
  1006. , "boundless"
  1007. , "bourgeois"
  1008. , "brainy"
  1009. , "brash"
  1010. , "brave"
  1011. , "brawny"
  1012. , "breakable"
  1013. , "breezy"
  1014. , "brief"
  1015. , "bright"
  1016. , "brilliant"
  1017. , "broad"
  1018. , "broken"
  1019. , "brown"
  1020. , "bumpy"
  1021. , "bureaucratic"
  1022. , "burly"
  1023. , "burning"
  1024. , "bustling"
  1025. , "busy"
  1026. ],
  1027. ["cagey"
  1028. , "calculating"
  1029. , "callous"
  1030. , "calm"
  1031. , "capable"
  1032. , "capital"
  1033. , "capricious"
  1034. , "careful"
  1035. , "careless"
  1036. , "caring"
  1037. , "casual"
  1038. , "causal"
  1039. , "cautious"
  1040. , "ceaseless"
  1041. , "central"
  1042. , "certain"
  1043. , "changeable"
  1044. , "changing"
  1045. , "characteristic"
  1046. , "charming"
  1047. , "cheap"
  1048. , "cheerful"
  1049. , "chemical"
  1050. , "chief"
  1051. , "childlike"
  1052. , "chilly"
  1053. , "chivalrous"
  1054. , "chosen"
  1055. , "chronic"
  1056. , "chubby"
  1057. , "chunky"
  1058. , "circular"
  1059. , "civic"
  1060. , "civil"
  1061. , "civilian"
  1062. , "clammy"
  1063. , "classic"
  1064. , "classical"
  1065. , "classy"
  1066. , "clean"
  1067. , "clear"
  1068. , "clerical"
  1069. , "clever"
  1070. , "clinical"
  1071. , "cloistered"
  1072. , "close"
  1073. , "closed"
  1074. , "cloudy"
  1075. , "clumsy"
  1076. , "cluttered"
  1077. , "coastal"
  1078. , "cognitive"
  1079. , "coherent"
  1080. , "cold"
  1081. , "collective"
  1082. , "colonial"
  1083. , "color-blind"
  1084. , "colorful"
  1085. , "colossal"
  1086. , "combative"
  1087. , "combined"
  1088. , "comfortable"
  1089. , "coming"
  1090. , "commercial"
  1091. , "common"
  1092. , "communist"
  1093. , "comparable"
  1094. , "comparative"
  1095. , "compatible"
  1096. , "competent"
  1097. , "competitive"
  1098. , "complementary"
  1099. , "complete"
  1100. , "complex"
  1101. , "complicated"
  1102. , "comprehensive"
  1103. , "compulsory"
  1104. , "conceptual"
  1105. , "concerned"
  1106. , "concrete"
  1107. , "condemned"
  1108. , "confident"
  1109. , "confidential"
  1110. , "confused"
  1111. , "conscious"
  1112. , "conservative"
  1113. , "considerable"
  1114. , "consistent"
  1115. , "constant"
  1116. , "constitutional"
  1117. , "constructive"
  1118. , "contemporary"
  1119. , "content"
  1120. , "continental"
  1121. , "continued"
  1122. , "continuing"
  1123. , "continuous"
  1124. , "contractual"
  1125. , "contrary"
  1126. , "controlled"
  1127. , "controversial"
  1128. , "convenient"
  1129. , "conventional"
  1130. , "convincing"
  1131. , "cooing"
  1132. , "cool"
  1133. , "cooperative"
  1134. , "coordinated"
  1135. , "corporate"
  1136. , "correct"
  1137. , "corresponding"
  1138. , "costly"
  1139. , "courageous"
  1140. , "cowardly"
  1141. , "crabby"
  1142. , "craven"
  1143. , "crazy"
  1144. , "creative"
  1145. , "creepy"
  1146. , "criminal"
  1147. , "critical"
  1148. , "crooked"
  1149. , "crowded"
  1150. , "crucial"
  1151. , "crude"
  1152. , "cruel"
  1153. , "cuddly"
  1154. , "cultural"
  1155. , "cultured"
  1156. , "cumbersome"
  1157. , "curious"
  1158. , "curly"
  1159. , "current"
  1160. , "curved"
  1161. , "curvy"
  1162. , "cut"
  1163. , "cute"
  1164. , "cynical"
  1165. ],
  1166. ["daffy"
  1167. , "daily"
  1168. , "damaged"
  1169. , "damaging"
  1170. , "damp"
  1171. , "dangerous"
  1172. , "dapper"
  1173. , "dark"
  1174. , "dashing"
  1175. , "dazzling"
  1176. , "dead"
  1177. , "deadly"
  1178. , "deadpan"
  1179. , "deaf"
  1180. , "deafening"
  1181. , "dear"
  1182. , "debonair"
  1183. , "decent"
  1184. , "decisive"
  1185. , "decorative"
  1186. , "decorous"
  1187. , "deep"
  1188. , "deeply"
  1189. , "defeated"
  1190. , "defective"
  1191. , "defensive"
  1192. , "defiant"
  1193. , "definite"
  1194. , "deliberate"
  1195. , "delicate"
  1196. , "delicious"
  1197. , "delighted"
  1198. , "delightful"
  1199. , "delirious"
  1200. , "democratic"
  1201. , "demonic"
  1202. , "dense"
  1203. , "departmental"
  1204. , "dependent"
  1205. , "depending"
  1206. , "depressed"
  1207. , "deranged"
  1208. , "descriptive"
  1209. , "deserted"
  1210. , "desirable"
  1211. , "desired"
  1212. , "desperate"
  1213. , "detailed"
  1214. , "determined"
  1215. , "developed"
  1216. , "developing"
  1217. , "devilish"
  1218. , "devoted"
  1219. , "didactic"
  1220. , "different"
  1221. , "differential"
  1222. , "difficult"
  1223. , "digital"
  1224. , "diligent"
  1225. , "diplomatic"
  1226. , "direct"
  1227. , "direful"
  1228. , "dirty"
  1229. , "disabled"
  1230. , "disagreeable"
  1231. , "disastrous"
  1232. , "disciplinary"
  1233. , "discreet"
  1234. , "disgusted"
  1235. , "disgusting"
  1236. , "disillusioned"
  1237. , "dispensable"
  1238. , "distant"
  1239. , "distinct"
  1240. , "distinctive"
  1241. , "distinguished"
  1242. , "distributed"
  1243. , "disturbed"
  1244. , "divergent"
  1245. , "diverse"
  1246. , "divine"
  1247. , "dizzy"
  1248. , "domestic"
  1249. , "dominant"
  1250. , "domineering"
  1251. , "double"
  1252. , "doubtful"
  1253. , "drab"
  1254. , "draconian"
  1255. , "dramatic"
  1256. , "dreadful"
  1257. , "dreary"
  1258. , "driving"
  1259. , "drunk"
  1260. , "dry"
  1261. , "dual"
  1262. , "due"
  1263. , "dull"
  1264. , "dusty"
  1265. , "dynamic"
  1266. , "dysfunctional"
  1267. ],
  1268. ["eager"
  1269. , "early"
  1270. , "earsplitting"
  1271. , "earthy"
  1272. , "eastern"
  1273. , "easy"
  1274. , "eatable"
  1275. , "economic"
  1276. , "educated"
  1277. , "educational"
  1278. , "effective"
  1279. , "efficacious"
  1280. , "efficient"
  1281. , "eight"
  1282. , "elaborate"
  1283. , "elastic"
  1284. , "elated"
  1285. , "elderly"
  1286. , "elected"
  1287. , "electoral"
  1288. , "electric"
  1289. , "electrical"
  1290. , "electronic"
  1291. , "elegant"
  1292. , "elfin"
  1293. , "eligible"
  1294. , "elite"
  1295. , "embarrassed"
  1296. , "embarrassing"
  1297. , "eminent"
  1298. , "emotional"
  1299. , "empirical"
  1300. , "empty"
  1301. , "enchanted"
  1302. , "enchanting"
  1303. , "encouraging"
  1304. , "endless"
  1305. , "endurable"
  1306. , "energetic"
  1307. , "enhanced"
  1308. , "enjoyable"
  1309. , "enormous"
  1310. , "entertaining"
  1311. , "enthusiastic"
  1312. , "entire"
  1313. , "envious"
  1314. , "environmental"
  1315. , "equable"
  1316. , "equal"
  1317. , "equivalent"
  1318. , "erect"
  1319. , "erratic"
  1320. , "essential"
  1321. , "established"
  1322. , "estimated"
  1323. , "eternal"
  1324. , "ethereal"
  1325. , "ethical"
  1326. , "ethnic"
  1327. , "evanescent"
  1328. , "evasive"
  1329. , "even"
  1330. , "eventual"
  1331. , "everyday"
  1332. , "evident"
  1333. , "evil"
  1334. , "evolutionary"
  1335. , "exact"
  1336. , "excellent"
  1337. , "exceptional"
  1338. , "excess"
  1339. , "excessive"
  1340. , "excited"
  1341. , "exciting"
  1342. , "exclusive"
  1343. , "executive"
  1344. , "existing"
  1345. , "exotic"
  1346. , "expected"
  1347. , "expensive"
  1348. , "experienced"
  1349. , "experimental"
  1350. , "expert"
  1351. , "explicit"
  1352. , "express"
  1353. , "extended"
  1354. , "extensive"
  1355. , "external"
  1356. , "extra"
  1357. , "extra-large"
  1358. , "extra-small"
  1359. , "extraordinary"
  1360. , "extreme"
  1361. , "exuberant"
  1362. , "exultant"
  1363. ],
  1364. ["fabulous"
  1365. , "faded"
  1366. , "faint"
  1367. , "fair"
  1368. , "faithful"
  1369. , "fallacious"
  1370. , "false"
  1371. , "familiar"
  1372. , "famous"
  1373. , "fanatical"
  1374. , "fancy"
  1375. , "fantastic"
  1376. , "far"
  1377. , "far-flung"
  1378. , "fascinated"
  1379. , "fascinating"
  1380. , "fashionable"
  1381. , "fast"
  1382. , "fat"
  1383. , "fatal"
  1384. , "faulty"
  1385. , "favorable"
  1386. , "favorite"
  1387. , "fearful"
  1388. , "fearless"
  1389. , "feasible"
  1390. , "federal"
  1391. , "feeble"
  1392. , "feigned"
  1393. , "fellow"
  1394. , "female"
  1395. , "feminine"
  1396. , "fertile"
  1397. , "festive"
  1398. , "few"
  1399. , "fierce"
  1400. , "filthy"
  1401. , "final"
  1402. , "financial"
  1403. , "fine"
  1404. , "finicky"
  1405. , "finished"
  1406. , "firm"
  1407. , "first"
  1408. , "fiscal"
  1409. , "fit"
  1410. , "five"
  1411. , "fixed"
  1412. , "flagrant"
  1413. , "flaky"
  1414. , "flashy"
  1415. , "flat"
  1416. , "flawless"
  1417. , "flexible"
  1418. , "flimsy"
  1419. , "flippant"
  1420. , "flowery"
  1421. , "fluffy"
  1422. , "fluttering"
  1423. , "foamy"
  1424. , "following"
  1425. , "fond"
  1426. , "foolish"
  1427. , "foregoing"
  1428. , "foreign"
  1429. , "forgetful"
  1430. , "formal"
  1431. , "formidable"
  1432. , "forthcoming"
  1433. , "fortunate"
  1434. , "forward"
  1435. , "four"
  1436. , "fragile"
  1437. , "frail"
  1438. , "frantic"
  1439. , "free"
  1440. , "freezing"
  1441. , "frequent"
  1442. , "fresh"
  1443. , "fretful"
  1444. , "friendly"
  1445. , "frightened"
  1446. , "frightening"
  1447. , "front"
  1448. , "frozen"
  1449. , "full"
  1450. , "full-time"
  1451. , "fumbling"
  1452. , "fun"
  1453. , "functional"
  1454. , "fundamental"
  1455. , "funny"
  1456. , "furious"
  1457. , "furry"
  1458. , "furtive"
  1459. , "futile"
  1460. , "future"
  1461. , "futuristic"
  1462. , "fuzzy"
  1463. ],
  1464. ["gabby"
  1465. , "gainful"
  1466. , "gamy"
  1467. , "gaping"
  1468. , "garrulous"
  1469. , "gastric"
  1470. , "gaudy"
  1471. , "gay"
  1472. , "general"
  1473. , "generous"
  1474. , "genetic"
  1475. , "gentle"
  1476. , "genuine"
  1477. , "geographical"
  1478. , "geological"
  1479. , "giant"
  1480. , "giddy"
  1481. , "gifted"
  1482. , "gigantic"
  1483. , "given"
  1484. , "glad"
  1485. , "glamorous"
  1486. , "gleaming"
  1487. , "glib"
  1488. , "glistening"
  1489. , "global"
  1490. , "glorious"
  1491. , "glossy"
  1492. , "godly"
  1493. , "gold"
  1494. , "golden"
  1495. , "good"
  1496. , "goofy"
  1497. , "gorgeous"
  1498. , "gothic"
  1499. , "graceful"
  1500. , "gradual"
  1501. , "grammatical"
  1502. , "grand"
  1503. , "grandiose"
  1504. , "grateful"
  1505. , "gratis"
  1506. , "grave"
  1507. , "gray"
  1508. , "greasy"
  1509. , "great"
  1510. , "greedy"
  1511. , "green"
  1512. , "grey"
  1513. , "grieving"
  1514. , "grim"
  1515. , "groovy"
  1516. , "gross"
  1517. , "grotesque"
  1518. , "grouchy"
  1519. , "growing"
  1520. , "grubby"
  1521. , "gruesome"
  1522. , "grumpy"
  1523. , "guarded"
  1524. , "guiltless"
  1525. , "guilty"
  1526. , "gullible"
  1527. , "gusty"
  1528. , "guttural"
  1529. ],
  1530. ["habitual"
  1531. , "half"
  1532. , "hallowed"
  1533. , "halting"
  1534. , "handicapped"
  1535. , "handsome"
  1536. , "handsomely"
  1537. , "handy"
  1538. , "hanging"
  1539. , "hapless"
  1540. , "happy"
  1541. , "hard"
  1542. , "hard-to-find"
  1543. , "harmful"
  1544. , "harmonious"
  1545. , "harsh"
  1546. , "hateful"
  1547. , "head"
  1548. , "heady"
  1549. , "healthy"
  1550. , "heartbreaking"
  1551. , "heavenly"
  1552. , "heavy"
  1553. , "hellish"
  1554. , "helpful"
  1555. , "helpless"
  1556. , "hesitant"
  1557. , "hidden"
  1558. , "hideous"
  1559. , "high"
  1560. , "high-pitched"
  1561. , "highfalutin"
  1562. , "hilarious"
  1563. , "hissing"
  1564. , "historic"
  1565. , "historical"
  1566. , "holistic"
  1567. , "hollow"
  1568. , "holy"
  1569. , "homeless"
  1570. , "homely"
  1571. , "homogenous"
  1572. , "honest"
  1573. , "honorable"
  1574. , "horizontal"
  1575. , "horrible"
  1576. , "hospitable"
  1577. , "hostile"
  1578. , "hot"
  1579. , "huge"
  1580. , "hulking"
  1581. , "human"
  1582. , "humble"
  1583. , "humdrum"
  1584. , "humorous"
  1585. , "hungry"
  1586. , "hurried"
  1587. , "hurt"
  1588. , "hushed"
  1589. , "husky"
  1590. , "hypnotic"
  1591. , "hysterical"
  1592. ],
  1593. ["icky"
  1594. , "icy"
  1595. , "ideal"
  1596. , "identical"
  1597. , "ideological"
  1598. , "idiotic"
  1599. , "ignorant"
  1600. , "ill"
  1601. , "ill-fated"
  1602. , "ill-informed"
  1603. , "illegal"
  1604. , "illustrious"
  1605. , "imaginary"
  1606. , "imaginative"
  1607. , "immediate"
  1608. , "immense"
  1609. , "imminent"
  1610. , "immune"
  1611. , "impartial"
  1612. , "imperfect"
  1613. , "imperial"
  1614. , "implicit"
  1615. , "impolite"
  1616. , "important"
  1617. , "imported"
  1618. , "impossible"
  1619. , "impressive"
  1620. , "improved"
  1621. , "inadequate"
  1622. , "inappropriate"
  1623. , "incandescent"
  1624. , "incapable"
  1625. , "inclined"
  1626. , "incompetent"
  1627. , "inconclusive"
  1628. , "increased"
  1629. , "increasing"
  1630. , "incredible"
  1631. , "independent"
  1632. , "indigenous"
  1633. , "indirect"
  1634. , "individual"
  1635. , "indoor"
  1636. , "industrial"
  1637. , "industrious"
  1638. , "inevitable"
  1639. , "inexpensive"
  1640. , "infamous"
  1641. , "infinite"
  1642. , "influential"
  1643. , "informal"
  1644. , "inherent"
  1645. , "initial"
  1646. , "injured"
  1647. , "inland"
  1648. , "innate"
  1649. , "inner"
  1650. , "innocent"
  1651. , "innovative"
  1652. , "inquisitive"
  1653. , "insidious"
  1654. , "instant"
  1655. , "instinctive"
  1656. , "institutional"
  1657. , "instrumental"
  1658. , "insufficient"
  1659. , "intact"
  1660. , "integral"
  1661. , "integrated"
  1662. , "intellectual"
  1663. , "intelligent"
  1664. , "intense"
  1665. , "intensive"
  1666. , "intent"
  1667. , "interactive"
  1668. , "interested"
  1669. , "interesting"
  1670. , "interim"
  1671. , "interior"
  1672. , "intermediate"
  1673. , "internal"
  1674. , "international"
  1675. , "intimate"
  1676. , "invaluable"
  1677. , "invincible"
  1678. , "invisible"
  1679. , "involved"
  1680. , "irate"
  1681. , "irrelevant"
  1682. , "irrespective"
  1683. , "irritating"
  1684. , "isolated"
  1685. , "itchy"
  1686. ],
  1687. ["jaded"
  1688. , "jagged"
  1689. , "jazzy"
  1690. , "jealous"
  1691. , "jittery"
  1692. , "jobless"
  1693. , "joint"
  1694. , "jolly"
  1695. , "joyous"
  1696. , "judicial"
  1697. , "judicious"
  1698. , "juicy"
  1699. , "jumbled"
  1700. , "jumpy"
  1701. , "junior"
  1702. , "just"
  1703. , "justified"
  1704. , "juvenile"
  1705. ],
  1706. ["kaput"
  1707. , "keen"
  1708. , "key"
  1709. , "kind"
  1710. , "kindhearted"
  1711. , "kindly"
  1712. , "knotty"
  1713. , "knowing"
  1714. , "knowledgeable"
  1715. , "known"
  1716. ],
  1717. ["labor"
  1718. , "labored"
  1719. , "lackadaisical"
  1720. , "lacking"
  1721. , "lame"
  1722. , "lamentable"
  1723. , "languid"
  1724. , "large"
  1725. , "large-scale"
  1726. , "last"
  1727. , "late"
  1728. , "laughable"
  1729. , "lavish"
  1730. , "lay"
  1731. , "lazy"
  1732. , "leading"
  1733. , "lean"
  1734. , "learned"
  1735. , "left"
  1736. , "legal"
  1737. , "legislative"
  1738. , "legitimate"
  1739. , "lengthy"
  1740. , "lesser"
  1741. , "lethal"
  1742. , "level"
  1743. , "lewd"
  1744. , "lexical"
  1745. , "liable"
  1746. , "liberal"
  1747. , "light"
  1748. , "like"
  1749. , "likeable"
  1750. , "likely"
  1751. , "limited"
  1752. , "limping"
  1753. , "linear"
  1754. , "linguistic"
  1755. , "liquid"
  1756. , "literary"
  1757. , "literate"
  1758. , "little"
  1759. , "live"
  1760. , "lively"
  1761. , "living"
  1762. , "local"
  1763. , "logical"
  1764. , "lone"
  1765. , "lonely"
  1766. , "long"
  1767. , "long-term"
  1768. , "longing"
  1769. , "loose"
  1770. , "lopsided"
  1771. , "lost"
  1772. , "loud"
  1773. , "loutish"
  1774. , "lovely"
  1775. , "loving"
  1776. , "low"
  1777. , "lowly"
  1778. , "loyal"
  1779. , "lucky"
  1780. , "ludicrous"
  1781. , "lumpy"
  1782. , "lush"
  1783. , "luxuriant"
  1784. , "luxury"
  1785. , "lying"
  1786. , "lyrical"
  1787. ],
  1788. ["macabre"
  1789. , "macho"
  1790. , "mad"
  1791. , "maddening"
  1792. , "madly"
  1793. , "magenta"
  1794. , "magic"
  1795. , "magical"
  1796. , "magnetic"
  1797. , "magnificent"
  1798. , "main"
  1799. , "majestic"
  1800. , "major"
  1801. , "makeshift"
  1802. , "male"
  1803. , "malicious"
  1804. , "mammoth"
  1805. , "managerial"
  1806. , "managing"
  1807. , "mandatory"
  1808. , "maniacal"
  1809. , "manual"
  1810. , "manufacturing"
  1811. , "many"
  1812. , "marginal"
  1813. , "marine"
  1814. , "marked"
  1815. , "married"
  1816. , "marvelous"
  1817. , "mass"
  1818. , "massive"
  1819. , "material"
  1820. , "materialistic"
  1821. , "mathematical"
  1822. , "mature"
  1823. , "maximum"
  1824. , "mean"
  1825. , "meaningful"
  1826. , "measly"
  1827. , "meaty"
  1828. , "mechanical"
  1829. , "medical"
  1830. , "medieval"
  1831. , "medium"
  1832. , "meek"
  1833. , "mellow"
  1834. , "melodic"
  1835. , "melted"
  1836. , "memorable"
  1837. , "mental"
  1838. , "merciful"
  1839. , "mere"
  1840. , "messy"
  1841. , "metropolitan"
  1842. , "mid"
  1843. , "middle"
  1844. , "middle-class"
  1845. , "mighty"
  1846. , "mild"
  1847. , "military"
  1848. , "milky"
  1849. , "mindless"
  1850. , "miniature"
  1851. , "minimal"
  1852. , "minimum"
  1853. , "ministerial"
  1854. , "minor"
  1855. , "minute"
  1856. , "miscreant"
  1857. , "miserable"
  1858. , "misleading"
  1859. , "missing"
  1860. , "misty"
  1861. , "mixed"
  1862. , "moaning"
  1863. , "mobile"
  1864. , "moderate"
  1865. , "modern"
  1866. , "modest"
  1867. , "moldy"
  1868. , "molecular"
  1869. , "momentous"
  1870. , "monetary"
  1871. , "monthly"
  1872. , "moral"
  1873. , "motionless"
  1874. , "mountainous"
  1875. , "moving"
  1876. , "muddled"
  1877. , "multiple"
  1878. , "mundane"
  1879. , "municipal"
  1880. , "murky"
  1881. , "mushy"
  1882. , "musical"
  1883. , "mute"
  1884. , "mutual"
  1885. , "mysterious"
  1886. ],
  1887. ["naive"
  1888. , "naked"
  1889. , "nappy"
  1890. , "narrow"
  1891. , "nasty"
  1892. , "national"
  1893. , "native"
  1894. , "natural"
  1895. , "naughty"
  1896. , "nauseating"
  1897. , "naval"
  1898. , "near"
  1899. , "nearby"
  1900. , "neat"
  1901. , "nebulous"
  1902. , "necessary"
  1903. , "needless"
  1904. , "needy"
  1905. , "negative"
  1906. , "neighboring"
  1907. , "neighborly"
  1908. , "nervous"
  1909. , "net"
  1910. , "neutral"
  1911. , "new"
  1912. , "next"
  1913. , "nice"
  1914. , "nifty"
  1915. , "nimble"
  1916. , "nine"
  1917. , "nippy"
  1918. , "noble"
  1919. , "noiseless"
  1920. , "noisy"
  1921. , "nominal"
  1922. , "nonchalant"
  1923. , "nondescript"
  1924. , "nonstop"
  1925. , "normal"
  1926. , "northern"
  1927. , "nostalgic"
  1928. , "nosy"
  1929. , "notable"
  1930. , "noticeable"
  1931. , "notorious"
  1932. , "novel"
  1933. , "noxious"
  1934. , "nuclear"
  1935. , "null"
  1936. , "numberless"
  1937. , "numerous"
  1938. , "nursing"
  1939. , "nutritious"
  1940. , "nutty"
  1941. ],
  1942. ["oafish"
  1943. , "obedient"
  1944. , "obeisant"
  1945. , "obese"
  1946. , "objective"
  1947. , "obnoxious"
  1948. , "obscene"
  1949. , "obscure"
  1950. , "obsequious"
  1951. , "observant"
  1952. , "obsolete"
  1953. , "obtainable"
  1954. , "obvious"
  1955. , "occasional"
  1956. , "occupational"
  1957. , "oceanic"
  1958. , "odd"
  1959. , "offbeat"
  1960. , "offensive"
  1961. , "official"
  1962. , "okay"
  1963. , "old"
  1964. , "old-fashioned"
  1965. , "omniscient"
  1966. , "one"
  1967. , "onerous"
  1968. , "only"
  1969. , "open"
  1970. , "operational"
  1971. , "opposed"
  1972. , "opposite"
  1973. , "optical"
  1974. , "optimal"
  1975. , "optimistic"
  1976. , "optional"
  1977. , "oral"
  1978. , "orange"
  1979. , "ordinary"
  1980. , "organic"
  1981. , "organizational"
  1982. , "original"
  1983. , "orthodox"
  1984. , "ossified"
  1985. , "other"
  1986. , "outdoor"
  1987. , "outer"
  1988. , "outgoing"
  1989. , "outrageous"
  1990. , "outside"
  1991. , "outstanding"
  1992. , "oval"
  1993. , "overall"
  1994. , "overconfident"
  1995. , "overjoyed"
  1996. , "overrated"
  1997. , "overseas"
  1998. , "overt"
  1999. , "overwhelming"
  2000. , "overwrought"
  2001. ],
  2002. ["paid"
  2003. , "painful"
  2004. , "painstaking"
  2005. , "pale"
  2006. , "paltry"
  2007. , "panicky"
  2008. , "panoramic"
  2009. , "papal"
  2010. , "parallel"
  2011. , "parched"
  2012. , "parental"
  2013. , "parliamentary"
  2014. , "parsimonious"
  2015. , "part-time"
  2016. , "partial"
  2017. , "particular"
  2018. , "passionate"
  2019. , "passive"
  2020. , "past"
  2021. , "pastoral"
  2022. , "pathetic"
  2023. , "patient"
  2024. , "payable"
  2025. , "peaceful"
  2026. , "peculiar"
  2027. , "penitent"
  2028. , "perceived"
  2029. , "perfect"
  2030. , "periodic"
  2031. , "permanent"
  2032. , "permissible"
  2033. , "perpetual"
  2034. , "persistent"
  2035. , "personal"
  2036. , "petite"
  2037. , "petty"
  2038. , "philosophical"
  2039. , "phobic"
  2040. , "photographic"
  2041. , "physical"
  2042. , "picayune"
  2043. , "pink"
  2044. , "piquant"
  2045. , "placid"
  2046. , "plain"
  2047. , "planned"
  2048. , "plant"
  2049. , "plastic"
  2050. , "plausible"
  2051. , "pleasant"
  2052. , "pleased"
  2053. , "plucky"
  2054. , "pointless"
  2055. , "poised"
  2056. , "polish"
  2057. , "polite"
  2058. , "political"
  2059. , "poor"
  2060. , "popular"
  2061. , "portable"
  2062. , "positive"
  2063. , "possessive"
  2064. , "possible"
  2065. , "post-war"
  2066. , "potential"
  2067. , "powerful"
  2068. , "practical"
  2069. , "precious"
  2070. , "precise"
  2071. , "predictable"
  2072. , "preferred"
  2073. , "pregnant"
  2074. , "preliminary"
  2075. , "premature"
  2076. , "premier"
  2077. , "premium"
  2078. , "present"
  2079. , "presidential"
  2080. , "pretty"
  2081. , "previous"
  2082. , "pricey"
  2083. , "prickly"
  2084. , "primary"
  2085. , "prime"
  2086. , "primitive"
  2087. , "principal"
  2088. , "printed"
  2089. , "prior"
  2090. , "private"
  2091. , "privileged"
  2092. , "probable"
  2093. , "productive"
  2094. , "professional"
  2095. , "profitable"
  2096. , "profound"
  2097. , "profuse"
  2098. , "progressive"
  2099. , "prolonged"
  2100. , "prominent"
  2101. , "prone"
  2102. , "proper"
  2103. , "proportional"
  2104. , "proposed"
  2105. , "prospective"
  2106. , "protective"
  2107. , "proud"
  2108. , "provincial"
  2109. , "provisional"
  2110. , "psychedelic"
  2111. , "psychiatric"
  2112. , "psychological"
  2113. , "psychotic"
  2114. , "public"
  2115. , "puffy"
  2116. , "pumped"
  2117. , "puny"
  2118. , "pure"
  2119. , "purple"
  2120. , "purring"
  2121. , "pushy"
  2122. , "puzzled"
  2123. , "puzzling"
  2124. ],
  2125. ["quack"
  2126. , "quaint"
  2127. , "qualified"
  2128. , "quantitative"
  2129. , "quarrelsome"
  2130. , "questionable"
  2131. , "quick"
  2132. , "quickest"
  2133. , "quiet"
  2134. , "quirky"
  2135. , "quixotic"
  2136. , "quizzical"
  2137. ],
  2138. ["rabid"
  2139. , "racial"
  2140. , "radical"
  2141. , "ragged"
  2142. , "rainy"
  2143. , "raised"
  2144. , "rambunctious"
  2145. , "rampant"
  2146. , "random"
  2147. , "rapid"
  2148. , "rare"
  2149. , "raspy"
  2150. , "rational"
  2151. , "ratty"
  2152. , "raw"
  2153. , "ready"
  2154. , "real"
  2155. , "realistic"
  2156. , "rear"
  2157. , "reasonable"
  2158. , "rebel"
  2159. , "recent"
  2160. , "receptive"
  2161. , "recondite"
  2162. , "red"
  2163. , "reduced"
  2164. , "redundant"
  2165. , "reflective"
  2166. , "regional"
  2167. , "regular"
  2168. , "regulatory"
  2169. , "related"
  2170. , "relative"
  2171. , "relevant"
  2172. , "reliable"
  2173. , "relieved"
  2174. , "religious"
  2175. , "reluctant"
  2176. , "remaining"
  2177. , "remarkable"
  2178. , "reminiscent"
  2179. , "remote"
  2180. , "renewed"
  2181. , "repeated"
  2182. , "representative"
  2183. , "repulsive"
  2184. , "required"
  2185. , "resident"
  2186. , "residential"
  2187. , "resolute"
  2188. , "resonant"
  2189. , "respectable"
  2190. , "respective"
  2191. , "responsible"
  2192. , "restricted"
  2193. , "restrictive"
  2194. , "resulting"
  2195. , "retail"
  2196. , "retired"
  2197. , "revised"
  2198. , "revolutionary"
  2199. , "rhetorical"
  2200. , "rich"
  2201. , "ridiculous"
  2202. , "right"
  2203. , "righteous"
  2204. , "rightful"
  2205. , "rigid"
  2206. , "ripe"
  2207. , "rising"
  2208. , "ritzy"
  2209. , "rival"
  2210. , "roasted"
  2211. , "robust"
  2212. , "romantic"
  2213. , "roomy"
  2214. , "rotten"
  2215. , "rough"
  2216. , "round"
  2217. , "royal"
  2218. , "rubber"
  2219. , "ruddy"
  2220. , "rude"
  2221. , "ruling"
  2222. , "running"
  2223. , "rural"
  2224. , "rustic"
  2225. , "ruthless"
  2226. ],
  2227. ["sable"
  2228. , "sacred"
  2229. , "sad"
  2230. , "safe"
  2231. , "salty"
  2232. , "same"
  2233. , "sassy"
  2234. , "satisfactory"
  2235. , "satisfied"
  2236. , "satisfying"
  2237. , "savory"
  2238. , "scandalous"
  2239. , "scarce"
  2240. , "scared"
  2241. , "scary"
  2242. , "scattered"
  2243. , "scientific"
  2244. , "scintillating"
  2245. , "scrawny"
  2246. , "screeching"
  2247. , "seasonal"
  2248. , "second"
  2249. , "second-hand"
  2250. , "secondary"
  2251. , "secret"
  2252. , "secretive"
  2253. , "secular"
  2254. , "secure"
  2255. , "sedate"
  2256. , "seemly"
  2257. , "select"
  2258. , "selected"
  2259. , "selective"
  2260. , "selfish"
  2261. , "semantic"
  2262. , "senior"
  2263. , "sensational"
  2264. , "sensible"
  2265. , "sensitive"
  2266. , "separate"
  2267. , "serious"
  2268. , "severe"
  2269. , "shaggy"
  2270. , "shaky"
  2271. , "shallow"
  2272. , "shared"
  2273. , "sharp"
  2274. , "sheer"
  2275. , "shiny"
  2276. , "shivering"
  2277. , "shocked"
  2278. , "shocking"
  2279. , "short"
  2280. , "short-term"
  2281. , "shrill"
  2282. , "shut"
  2283. , "shy"
  2284. , "sick"
  2285. , "significant"
  2286. , "silent"
  2287. , "silky"
  2288. , "silly"
  2289. , "silver"
  2290. , "similar"
  2291. , "simple"
  2292. , "simplistic"
  2293. , "sincere"
  2294. , "single"
  2295. , "six"
  2296. , "skilled"
  2297. , "skillful"
  2298. , "skinny"
  2299. , "sleeping"
  2300. , "sleepy"
  2301. , "slight"
  2302. , "slim"
  2303. , "slimy"
  2304. , "slippery"
  2305. , "sloppy"
  2306. , "slow"
  2307. , "small"
  2308. , "smart"
  2309. , "smelly"
  2310. , "smiling"
  2311. , "smoggy"
  2312. , "smooth"
  2313. , "sneaky"
  2314. , "snobbish"
  2315. , "snotty"
  2316. , "so-called"
  2317. , "social"
  2318. , "socialist"
  2319. , "sociological"
  2320. , "soft"
  2321. , "soggy"
  2322. , "solar"
  2323. , "sole"
  2324. , "solid"
  2325. , "somber"
  2326. , "sophisticated"
  2327. , "sordid"
  2328. , "sore"
  2329. , "sorry"
  2330. , "sound"
  2331. , "sour"
  2332. , "southern"
  2333. , "spare"
  2334. , "sparkling"
  2335. , "spatial"
  2336. , "special"
  2337. , "specialist"
  2338. , "specific"
  2339. , "specified"
  2340. , "spectacular"
  2341. , "spicy"
  2342. , "spiffy"
  2343. , "spiky"
  2344. , "spiritual"
  2345. , "spiteful"
  2346. , "splendid"
  2347. , "spoken"
  2348. , "spontaneous"
  2349. , "spooky"
  2350. , "spotless"
  2351. , "spotted"
  2352. , "spotty"
  2353. , "spurious"
  2354. , "squalid"
  2355. , "square"
  2356. , "squealing"
  2357. , "squeamish"
  2358. , "stable"
  2359. , "staking"
  2360. , "stale"
  2361. , "standard"
  2362. , "standing"
  2363. , "static"
  2364. , "statistical"
  2365. , "statuesque"
  2366. , "statutory"
  2367. , "steadfast"
  2368. , "steady"
  2369. , "steep"
  2370. , "stereotyped"
  2371. , "sterling"
  2372. , "sticky"
  2373. , "stiff"
  2374. , "still"
  2375. , "stimulating"
  2376. , "stingy"
  2377. , "stolen"
  2378. , "stormy"
  2379. , "straight"
  2380. , "straightforward"
  2381. , "strange"
  2382. , "strategic"
  2383. , "strict"
  2384. , "striking"
  2385. , "striped"
  2386. , "strong"
  2387. , "structural"
  2388. , "stunning"
  2389. , "stupendous"
  2390. , "stupid"
  2391. , "sturdy"
  2392. , "subdued"
  2393. , "subject"
  2394. , "subjective"
  2395. , "subsequent"
  2396. , "substantial"
  2397. , "substantive"
  2398. , "subtle"
  2399. , "successful"
  2400. , "successive"
  2401. , "succinct"
  2402. , "sudden"
  2403. , "sufficient"
  2404. , "suitable"
  2405. , "sulky"
  2406. , "sunny"
  2407. , "super"
  2408. , "superb"
  2409. , "superficial"
  2410. , "superior"
  2411. , "supplementary"
  2412. , "supporting"
  2413. , "supposed"
  2414. , "supreme"
  2415. , "sure"
  2416. , "surplus"
  2417. , "surprised"
  2418. , "surprising"
  2419. , "surrounding"
  2420. , "suspicious"
  2421. , "swanky"
  2422. , "sweet"
  2423. , "sweltering"
  2424. , "swift"
  2425. , "symbolic"
  2426. , "sympathetic"
  2427. , "symptomatic"
  2428. , "synonymous"
  2429. , "syntactic"
  2430. , "systematic"
  2431. ],
  2432. ["taboo"
  2433. , "tacit"
  2434. , "tacky"
  2435. , "talented"
  2436. , "tall"
  2437. , "tame"
  2438. , "tan"
  2439. , "tangible"
  2440. , "tangy"
  2441. , "tart"
  2442. , "tasteful"
  2443. , "tasteless"
  2444. , "tasty"
  2445. , "tawdry"
  2446. , "tearful"
  2447. , "technical"
  2448. , "technological"
  2449. , "tedious"
  2450. , "teenage"
  2451. , "teeny"
  2452. , "teeny-tiny"
  2453. , "telling"
  2454. , "temporary"
  2455. , "ten"
  2456. , "tender"
  2457. , "tense"
  2458. , "tenuous"
  2459. , "terminal"
  2460. , "terrible"
  2461. , "terrific"
  2462. , "territorial"
  2463. , "tested"
  2464. , "testy"
  2465. , "thankful"
  2466. , "theoretical"
  2467. , "therapeutic"
  2468. , "thick"
  2469. , "thin"
  2470. , "thinkable"
  2471. , "thinking"
  2472. , "third"
  2473. , "thirsty"
  2474. , "thorough"
  2475. , "thoughtful"
  2476. , "thoughtless"
  2477. , "threatening"
  2478. , "three"
  2479. , "thundering"
  2480. , "tidy"
  2481. , "tight"
  2482. , "tightfisted"
  2483. , "tiny"
  2484. , "tired"
  2485. , "tiresome"
  2486. , "toothsome"
  2487. , "top"
  2488. , "torpid"
  2489. , "total"
  2490. , "tough"
  2491. , "towering"
  2492. , "toxic"
  2493. , "trading"
  2494. , "traditional"
  2495. , "tragic"
  2496. , "trained"
  2497. , "tranquil"
  2498. , "trashy"
  2499. , "tremendous"
  2500. , "tricky"
  2501. , "trite"
  2502. , "trivial"
  2503. , "tropical"
  2504. , "troubled"
  2505. , "truculent"
  2506. , "true"
  2507. , "truthful"
  2508. , "two"
  2509. , "typical"
  2510. ],
  2511. ["ubiquitous"
  2512. , "ugliest"
  2513. , "ugly"
  2514. , "ultimate"
  2515. , "ultra"
  2516. , "unable"
  2517. , "unacceptable"
  2518. , "unaccountable"
  2519. , "unadvised"
  2520. , "unarmed"
  2521. , "unaware"
  2522. , "unbecoming"
  2523. , "unbiased"
  2524. , "uncertain"
  2525. , "unchanged"
  2526. , "unclear"
  2527. , "uncomfortable"
  2528. , "unconscious"
  2529. , "uncovered"
  2530. , "underground"
  2531. , "underlying"
  2532. , "understandable"
  2533. , "understood"
  2534. , "undesirable"
  2535. , "uneasy"
  2536. , "unemployed"
  2537. , "unequal"
  2538. , "unequaled"
  2539. , "uneven"
  2540. , "unexpected"
  2541. , "unfair"
  2542. , "unfamiliar"
  2543. , "unfortunate"
  2544. , "unhappy"
  2545. , "unhealthy"
  2546. , "uniform"
  2547. , "uninterested"
  2548. , "unique"
  2549. , "united"
  2550. , "universal"
  2551. , "unkempt"
  2552. , "unknown"
  2553. , "unlawful"
  2554. , "unlike"
  2555. , "unlikely"
  2556. , "unnatural"
  2557. , "unnecessary"
  2558. , "unpleasant"
  2559. , "unprecedented"
  2560. , "unreasonable"
  2561. , "unruly"
  2562. , "unsightly"
  2563. , "unsuccessful"
  2564. , "unsuitable"
  2565. , "untidy"
  2566. , "unused"
  2567. , "unusual"
  2568. , "unwanted"
  2569. , "unwieldy"
  2570. , "unwilling"
  2571. , "unwritten"
  2572. , "up-to-date"
  2573. , "upbeat"
  2574. , "upper"
  2575. , "uppity"
  2576. , "upset"
  2577. , "uptight"
  2578. , "urban"
  2579. , "urgent"
  2580. , "used"
  2581. , "useful"
  2582. , "useless"
  2583. , "usual"
  2584. , "utopian"
  2585. , "utter"
  2586. , "uttermost"
  2587. ],
  2588. ["vacant"
  2589. , "vacuous"
  2590. , "vagabond"
  2591. , "vague"
  2592. , "vague"
  2593. , "valid"
  2594. , "valuable"
  2595. , "variable"
  2596. , "varied"
  2597. , "various"
  2598. , "varying"
  2599. , "vast"
  2600. , "vengeful"
  2601. , "venomous"
  2602. , "verbal"
  2603. , "verdant"
  2604. , "versed"
  2605. , "vertical"
  2606. , "very"
  2607. , "viable"
  2608. , "vicious"
  2609. , "victorious"
  2610. , "video-taped"
  2611. , "vigor"
  2612. , "vigorous"
  2613. , "violent"
  2614. , "violet"
  2615. , "vivacious"
  2616. , "voiceless"
  2617. , "volatile"
  2618. , "voracious"
  2619. , "vulgar"
  2620. ],
  2621. ["wacky"
  2622. , "waggish"
  2623. , "waiting"
  2624. , "wakeful"
  2625. , "wandering"
  2626. , "wanting"
  2627. , "warlike"
  2628. , "warm"
  2629. , "wary"
  2630. , "wasteful"
  2631. , "watery"
  2632. , "weak"
  2633. , "wealthy"
  2634. , "weary"
  2635. , "well-groomed"
  2636. , "well-made"
  2637. , "well-off"
  2638. , "well-to-do"
  2639. , "wet"
  2640. , "whimsical"
  2641. , "whispering"
  2642. , "white"
  2643. , "whole"
  2644. , "wholesale"
  2645. , "wicked"
  2646. , "wide"
  2647. , "wide-eyed"
  2648. , "wiggly"
  2649. , "wild"
  2650. , "willing"
  2651. , "windy"
  2652. , "wiry"
  2653. , "wise"
  2654. , "wistful"
  2655. , "witty"
  2656. , "woebegone"
  2657. , "womanly"
  2658. , "wonderful"
  2659. , "wooden"
  2660. , "woozy"
  2661. , "workable"
  2662. , "worried"
  2663. , "worthless"
  2664. , "wrathful"
  2665. , "wretched"
  2666. , "wrong"
  2667. , "wry"
  2668. ],
  2669. ["xanthic"
  2670. , "xanthocarpous"
  2671. , "xanthochromic"
  2672. , "xanthous"
  2673. , "xenial"
  2674. , "xenodochial"
  2675. , "xenogenesis"
  2676. , "xenomorphic"
  2677. , "xenophilic"
  2678. , "xenophobic"
  2679. , "xeric"
  2680. , "xerpphilous"
  2681. , "xerophobous"
  2682. , "xerophthalmic"
  2683. , "xerothermic"
  2684. , "xerotic"
  2685. , "xiphoid"
  2686. , "xylary"
  2687. , "xylocarpous"
  2688. , "xylogenous"
  2689. , "xylographical"
  2690. , "xyloid"
  2691. , "xylophagous"
  2692. , "xylophilous"
  2693. , "xylophonic"
  2694. , "xylotomous"
  2695. ],
  2696. ["yellow"
  2697. , "yielding"
  2698. , "young"
  2699. , "youthful"
  2700. , "yummy"
  2701. ],
  2702. ["zany"
  2703. , "zealous"
  2704. , "zesty"
  2705. , "zippy"
  2706. , "zonked"
  2707. ]
  2708. ];
  2709. </script>
  2710. </html>
');