1 /*
2  * English words for generation of easy to memorize random passphrases.
3  * This list comes from the MakePass passphrase generator developed by
4  * Dianelos Georgoudis <dianelos at tecapro.com>, which was announced on
5  * sci.crypt on 1997/10/24.  Here's a relevant excerpt from that posting:
6  *
7  * > The 4096 words in the word list were chosen according to the following
8  * > criteria:
9  * >    - each word must contain between 3 and 6 characters
10  * >    - each word must be a common English word
11  * >    - each word should be clearly different from each other
12  * >      word, orthographically or semantically
13  * >
14  * > The MakePass word list has been placed in the public domain
15  *
16  * At least two other sci.crypt postings by Dianelos Georgoudis also state
17  * that the word list is in the public domain, and so did the web page at:
18  *
19  * https://web.archive.org/web/%2a/http://www.tecapro.com/makepass.html
20  *
21  * which existed until 2006 and is available from the Wayback Machine as of
22  * this writing (March 2010).  Specifically, the web page said:
23  *
24  * > The MakePass word list has been placed in the public domain.  To download
25  * > a copy click here.  You can use the MakePass word list for many other
26  * > purposes.
27  *
28  * "To download a copy click here" was a link to free/makepass.lst, which is
29  * currently available via the Wayback Machine:
30  *
31  * https://web.archive.org/web/%2a/http://www.tecapro.com/free/makepass.lst
32  *
33  * Further lists of common English words were appended to the end to allow for
34  * subsequent removal of "inappropriate" words from the initial list.
35  *
36  * Even though the original description of the list stated that "each word
37  * must contain between 3 and 6 characters", there were two 7-character words.
38  * These have been removed.
39  *
40  * Many "inappropriate" words have then been moved to near the end of list, so
41  * that they're not used for generated passphrases.
42  *
43  * The code in passwdqc_check.c and passwdqc_random.c makes the following
44  * assumptions about this list:
45  *
46  * - the first 4096 words are for random passphrase generation, and there are
47  * at least this many words present;
48  * - the words are of up to 6 characters long;
49  * - although some words may contain capital letters, no two words differ by
50  * the case of characters alone (e.g., converting the list to all-lowercase
51  * would yield a list of as many unique words);
52  * - the words contain alphabetical characters only;
53  * - if an entire word on this list matches the initial substring of other
54  * word(s) on the list, it is likely placed immediately before those words
55  * (e.g., "bake", "baker", "bakery"), which speeds up the "word-based" check.
56  *
57  * Additionally, the default minimum passphrase length of 11 characters
58  * specified in passwdqc_parse.c has been chosen such that a passphrase
59  * consisting of any three words from this list with two separator
60  * characters will pass the minimum length check.  In other words, this
61  * default assumes that no word is shorter than 3 characters.
62  */
63 
64 #include "wordset_4k.h"
65 
66 const char _passwdqc_wordset_4k[][WORDSET_4K_LENGTH_MAX] = {
67 	"Adam",
68 	"Alaska",
69 	"Alice",
70 	"Amazon",
71 	"Andrew",
72 	"Angola",
73 	"Antony",
74 	"April",
75 	"Arctic",
76 	"Athens",
77 	"Austin",
78 	"Baltic",
79 	"Berlin",
80 	"Bombay",
81 	"Bonn",
82 	"Boston",
83 	"Brazil",
84 	"Burma",
85 	"Cairo",
86 	"Canada",
87 	"Carl",
88 	"Carol",
89 	"Chile",
90 	"China",
91 	"Congo",
92 	"Cuba",
93 	"Cyprus",
94 	"Czech",
95 	"Dallas",
96 	"David",
97 	"Delhi",
98 	"Derby",
99 	"Diana",
100 	"Dublin",
101 	"East",
102 	"Eden",
103 	"Edward",
104 	"Eric",
105 	"Essex",
106 	"Europe",
107 	"Eve",
108 	"France",
109 	"Friday",
110 	"Gemini",
111 	"Geneva",
112 	"George",
113 	"Gloria",
114 	"Gothic",
115 	"Greece",
116 	"Hague",
117 	"Haiti",
118 	"Hanoi",
119 	"Harry",
120 	"Havana",
121 	"Hawaii",
122 	"Henry",
123 	"Hermes",
124 	"Idaho",
125 	"Inca",
126 	"India",
127 	"Iowa",
128 	"Iran",
129 	"Iraq",
130 	"Isaac",
131 	"Isabel",
132 	"Israel",
133 	"Italy",
134 	"Ivan",
135 	"Jack",
136 	"Jacob",
137 	"James",
138 	"Japan",
139 	"Java",
140 	"Jersey",
141 	"Jim",
142 	"John",
143 	"Jordan",
144 	"Joseph",
145 	"Judy",
146 	"July",
147 	"June",
148 	"Kansas",
149 	"Karl",
150 	"Kenya",
151 	"Korea",
152 	"Kuwait",
153 	"Laos",
154 	"Latin",
155 	"Leo",
156 	"Libya",
157 	"Lima",
158 	"Lisbon",
159 	"Liz",
160 	"London",
161 	"Louvre",
162 	"Lucy",
163 	"Luther",
164 	"Madrid",
165 	"Malta",
166 	"Maria",
167 	"Mars",
168 	"Mary",
169 	"Maya",
170 	"Mecca",
171 	"Mexico",
172 	"Miami",
173 	"Mickey",
174 	"Milan",
175 	"Monaco",
176 	"Monday",
177 	"Moscow",
178 	"Munich",
179 	"Naples",
180 	"Nepal",
181 	"Newark",
182 	"Nile",
183 	"North",
184 	"Norway",
185 	"Ohio",
186 	"Oscar",
187 	"Oslo",
188 	"Oxford",
189 	"Panama",
190 	"Paris",
191 	"Paul",
192 	"Peking",
193 	"Peru",
194 	"Peter",
195 	"Philip",
196 	"Poland",
197 	"Prague",
198 	"Quebec",
199 	"Rex",
200 	"Rhine",
201 	"Robert",
202 	"Roman",
203 	"Rome",
204 	"Rosa",
205 	"Russia",
206 	"Sahara",
207 	"Sam",
208 	"Saturn",
209 	"Seoul",
210 	"Somali",
211 	"Spain",
212 	"Sudan",
213 	"Suez",
214 	"Sunday",
215 	"Sweden",
216 	"Sydney",
217 	"Syria",
218 	"Taiwan",
219 	"Tarzan",
220 	"Taurus",
221 	"Tehran",
222 	"Teresa",
223 	"Texas",
224 	"Thomas",
225 	"Tibet",
226 	"Tokyo",
227 	"Tom",
228 	"Turkey",
229 	"Uganda",
230 	"Venice",
231 	"Venus",
232 	"Vienna",
233 	"Viking",
234 	"Virgo",
235 	"Warsaw",
236 	"West",
237 	"Yale",
238 	"Yemen",
239 	"York",
240 	"Zaire",
241 	"Zurich",
242 	"aback",
243 	"abbey",
244 	"abbot",
245 	"abide",
246 	"ablaze",
247 	"able",
248 	"aboard",
249 	"abode",
250 	"abound",
251 	"about",
252 	"above",
253 	"abroad",
254 	"abrupt",
255 	"absent",
256 	"absorb",
257 	"absurd",
258 	"abuse",
259 	"accent",
260 	"accept",
261 	"access",
262 	"accord",
263 	"accuse",
264 	"ace",
265 	"ache",
266 	"aching",
267 	"acid",
268 	"acidic",
269 	"acorn",
270 	"acre",
271 	"across",
272 	"act",
273 	"action",
274 	"active",
275 	"actor",
276 	"actual",
277 	"acute",
278 	"adapt",
279 	"add",
280 	"added",
281 	"addict",
282 	"adept",
283 	"adhere",
284 	"adjust",
285 	"admire",
286 	"admit",
287 	"adobe",
288 	"adopt",
289 	"adrift",
290 	"adult",
291 	"adverb",
292 	"advert",
293 	"aerial",
294 	"afar",
295 	"affair",
296 	"affect",
297 	"afford",
298 	"afield",
299 	"afloat",
300 	"afraid",
301 	"afresh",
302 	"after",
303 	"again",
304 	"age",
305 	"agency",
306 	"agenda",
307 	"agent",
308 	"aghast",
309 	"agile",
310 	"ago",
311 	"agony",
312 	"agree",
313 	"agreed",
314 	"ahead",
315 	"aid",
316 	"aide",
317 	"aim",
318 	"air",
319 	"airman",
320 	"airy",
321 	"akin",
322 	"alarm",
323 	"albeit",
324 	"album",
325 	"alert",
326 	"alibi",
327 	"alien",
328 	"alight",
329 	"align",
330 	"alike",
331 	"alive",
332 	"alkali",
333 	"all",
334 	"alley",
335 	"allied",
336 	"allow",
337 	"alloy",
338 	"ally",
339 	"almond",
340 	"almost",
341 	"aloft",
342 	"alone",
343 	"along",
344 	"aloof",
345 	"aloud",
346 	"alpha",
347 	"alpine",
348 	"also",
349 	"altar",
350 	"alter",
351 	"always",
352 	"amaze",
353 	"amber",
354 	"ambush",
355 	"amen",
356 	"amend",
357 	"amid",
358 	"amidst",
359 	"amiss",
360 	"among",
361 	"amount",
362 	"ample",
363 	"amuse",
364 	"anchor",
365 	"and",
366 	"anew",
367 	"angel",
368 	"anger",
369 	"angle",
370 	"angry",
371 	"animal",
372 	"ankle",
373 	"annoy",
374 	"annual",
375 	"answer",
376 	"anthem",
377 	"anti",
378 	"any",
379 	"anyhow",
380 	"anyway",
381 	"apart",
382 	"apathy",
383 	"apex",
384 	"apiece",
385 	"appeal",
386 	"appear",
387 	"apple",
388 	"apply",
389 	"apron",
390 	"arcade",
391 	"arcane",
392 	"arch",
393 	"ardent",
394 	"are",
395 	"area",
396 	"argue",
397 	"arid",
398 	"arise",
399 	"arm",
400 	"armful",
401 	"armpit",
402 	"army",
403 	"aroma",
404 	"around",
405 	"array",
406 	"arrest",
407 	"arrive",
408 	"arrow",
409 	"arson",
410 	"art",
411 	"artery",
412 	"artful",
413 	"artist",
414 	"ascent",
415 	"ashen",
416 	"ashore",
417 	"aside",
418 	"ask",
419 	"asleep",
420 	"aspect",
421 	"assay",
422 	"assent",
423 	"assert",
424 	"assess",
425 	"asset",
426 	"assign",
427 	"assist",
428 	"assume",
429 	"assure",
430 	"asthma",
431 	"astute",
432 	"asylum",
433 	"ate",
434 	"atlas",
435 	"atom",
436 	"atomic",
437 	"attach",
438 	"attack",
439 	"attain",
440 	"attend",
441 	"attic",
442 	"auburn",
443 	"audio",
444 	"audit",
445 	"august",
446 	"aunt",
447 	"auntie",
448 	"aura",
449 	"author",
450 	"auto",
451 	"autumn",
452 	"avail",
453 	"avenge",
454 	"avenue",
455 	"avert",
456 	"avid",
457 	"avoid",
458 	"await",
459 	"awake",
460 	"awaken",
461 	"award",
462 	"aware",
463 	"awash",
464 	"away",
465 	"awful",
466 	"awhile",
467 	"axes",
468 	"axiom",
469 	"axis",
470 	"axle",
471 	"aye",
472 	"baby",
473 	"back",
474 	"backup",
475 	"bacon",
476 	"bad",
477 	"badge",
478 	"badly",
479 	"bag",
480 	"baggy",
481 	"bail",
482 	"bait",
483 	"bake",
484 	"baker",
485 	"bakery",
486 	"bald",
487 	"ball",
488 	"ballad",
489 	"ballet",
490 	"ballot",
491 	"bamboo",
492 	"ban",
493 	"banal",
494 	"banana",
495 	"band",
496 	"bank",
497 	"bar",
498 	"barber",
499 	"bare",
500 	"barely",
501 	"barge",
502 	"bark",
503 	"barley",
504 	"barn",
505 	"baron",
506 	"barrel",
507 	"barren",
508 	"basalt",
509 	"base",
510 	"basic",
511 	"basil",
512 	"basin",
513 	"basis",
514 	"basket",
515 	"bass",
516 	"bat",
517 	"batch",
518 	"bath",
519 	"baton",
520 	"battle",
521 	"bay",
522 	"beach",
523 	"beacon",
524 	"beak",
525 	"beam",
526 	"bean",
527 	"bear",
528 	"beard",
529 	"beast",
530 	"beat",
531 	"beauty",
532 	"become",
533 	"bed",
534 	"beech",
535 	"beef",
536 	"beefy",
537 	"beep",
538 	"beer",
539 	"beet",
540 	"beetle",
541 	"before",
542 	"beggar",
543 	"begin",
544 	"behalf",
545 	"behave",
546 	"behind",
547 	"beige",
548 	"being",
549 	"belief",
550 	"bell",
551 	"belly",
552 	"belong",
553 	"below",
554 	"belt",
555 	"bench",
556 	"bend",
557 	"benign",
558 	"bent",
559 	"berry",
560 	"berth",
561 	"beset",
562 	"beside",
563 	"best",
564 	"bestow",
565 	"bet",
566 	"beta",
567 	"betray",
568 	"better",
569 	"beware",
570 	"beyond",
571 	"bias",
572 	"biceps",
573 	"bicker",
574 	"bid",
575 	"big",
576 	"bigger",
577 	"bike",
578 	"bile",
579 	"bill",
580 	"binary",
581 	"bind",
582 	"biopsy",
583 	"birch",
584 	"bird",
585 	"birdie",
586 	"birth",
587 	"bishop",
588 	"bit",
589 	"bite",
590 	"bitter",
591 	"blade",
592 	"blame",
593 	"bland",
594 	"blast",
595 	"blaze",
596 	"bleak",
597 	"blend",
598 	"bless",
599 	"blind",
600 	"blink",
601 	"blip",
602 	"bliss",
603 	"blitz",
604 	"block",
605 	"blond",
606 	"blood",
607 	"bloody",
608 	"bloom",
609 	"blot",
610 	"blouse",
611 	"blue",
612 	"bluff",
613 	"blunt",
614 	"blur",
615 	"blush",
616 	"boar",
617 	"board",
618 	"boast",
619 	"boat",
620 	"bodily",
621 	"body",
622 	"bogus",
623 	"boil",
624 	"bold",
625 	"bolt",
626 	"bomb",
627 	"bond",
628 	"bone",
629 	"bonnet",
630 	"bonus",
631 	"bony",
632 	"book",
633 	"boom",
634 	"boost",
635 	"boot",
636 	"booth",
637 	"border",
638 	"bore",
639 	"borrow",
640 	"bosom",
641 	"boss",
642 	"both",
643 	"bother",
644 	"bottle",
645 	"bottom",
646 	"bought",
647 	"bounce",
648 	"bound",
649 	"bounty",
650 	"bout",
651 	"bovine",
652 	"bow",
653 	"bowel",
654 	"bowl",
655 	"box",
656 	"boy",
657 	"boyish",
658 	"brace",
659 	"brain",
660 	"brainy",
661 	"brake",
662 	"bran",
663 	"branch",
664 	"brand",
665 	"brandy",
666 	"brass",
667 	"brave",
668 	"bravo",
669 	"breach",
670 	"bread",
671 	"break",
672 	"breath",
673 	"bred",
674 	"breed",
675 	"breeze",
676 	"brew",
677 	"brick",
678 	"bride",
679 	"bridge",
680 	"brief",
681 	"bright",
682 	"brim",
683 	"brine",
684 	"bring",
685 	"brink",
686 	"brisk",
687 	"broad",
688 	"broke",
689 	"broken",
690 	"bronze",
691 	"brook",
692 	"broom",
693 	"bruise",
694 	"brush",
695 	"brutal",
696 	"brute",
697 	"bubble",
698 	"buck",
699 	"bucket",
700 	"buckle",
701 	"budget",
702 	"buffet",
703 	"buggy",
704 	"build",
705 	"bulb",
706 	"bulge",
707 	"bulk",
708 	"bulky",
709 	"bull",
710 	"bullet",
711 	"bully",
712 	"bump",
713 	"bumpy",
714 	"bunch",
715 	"bundle",
716 	"bunk",
717 	"bunny",
718 	"burden",
719 	"bureau",
720 	"burial",
721 	"buried",
722 	"burly",
723 	"burn",
724 	"burrow",
725 	"burst",
726 	"bury",
727 	"bus",
728 	"bust",
729 	"bustle",
730 	"busy",
731 	"but",
732 	"butler",
733 	"butter",
734 	"button",
735 	"buy",
736 	"buyer",
737 	"buzz",
738 	"bye",
739 	"byte",
740 	"cab",
741 	"cabin",
742 	"cable",
743 	"cache",
744 	"cactus",
745 	"cage",
746 	"cake",
747 	"calf",
748 	"call",
749 	"caller",
750 	"calm",
751 	"calmly",
752 	"came",
753 	"camel",
754 	"camera",
755 	"camp",
756 	"campus",
757 	"can",
758 	"canal",
759 	"canary",
760 	"cancel",
761 	"cancer",
762 	"candid",
763 	"candle",
764 	"candy",
765 	"cane",
766 	"canine",
767 	"canoe",
768 	"canopy",
769 	"canvas",
770 	"canyon",
771 	"cap",
772 	"cape",
773 	"car",
774 	"carbon",
775 	"card",
776 	"care",
777 	"career",
778 	"caress",
779 	"cargo",
780 	"carp",
781 	"carpet",
782 	"carrot",
783 	"carry",
784 	"cart",
785 	"cartel",
786 	"case",
787 	"cash",
788 	"cask",
789 	"cast",
790 	"castle",
791 	"casual",
792 	"cat",
793 	"catch",
794 	"cater",
795 	"cattle",
796 	"caught",
797 	"causal",
798 	"cause",
799 	"cave",
800 	"cease",
801 	"celery",
802 	"cell",
803 	"cellar",
804 	"cement",
805 	"censor",
806 	"census",
807 	"cereal",
808 	"chain",
809 	"chair",
810 	"chalk",
811 	"chalky",
812 	"champ",
813 	"chance",
814 	"change",
815 	"chant",
816 	"chaos",
817 	"chap",
818 	"chapel",
819 	"charge",
820 	"charm",
821 	"chart",
822 	"chase",
823 	"chat",
824 	"cheap",
825 	"cheat",
826 	"check",
827 	"cheek",
828 	"cheeky",
829 	"cheer",
830 	"cheery",
831 	"cheese",
832 	"chef",
833 	"cherry",
834 	"chess",
835 	"chest",
836 	"chew",
837 	"chic",
838 	"chief",
839 	"child",
840 	"chill",
841 	"chilly",
842 	"chin",
843 	"chip",
844 	"choice",
845 	"choir",
846 	"choose",
847 	"chop",
848 	"choppy",
849 	"chord",
850 	"chorus",
851 	"chose",
852 	"chosen",
853 	"chrome",
854 	"chunk",
855 	"chunky",
856 	"cider",
857 	"cigar",
858 	"cinema",
859 	"circa",
860 	"circle",
861 	"circus",
862 	"cite",
863 	"city",
864 	"civic",
865 	"civil",
866 	"clad",
867 	"claim",
868 	"clammy",
869 	"clan",
870 	"clap",
871 	"clash",
872 	"clasp",
873 	"class",
874 	"clause",
875 	"claw",
876 	"clay",
877 	"clean",
878 	"clear",
879 	"clergy",
880 	"clerk",
881 	"clever",
882 	"click",
883 	"client",
884 	"cliff",
885 	"climb",
886 	"clinch",
887 	"cling",
888 	"clinic",
889 	"clip",
890 	"cloak",
891 	"clock",
892 	"clone",
893 	"close",
894 	"closer",
895 	"closet",
896 	"cloth",
897 	"cloud",
898 	"cloudy",
899 	"clout",
900 	"clown",
901 	"club",
902 	"clue",
903 	"clumsy",
904 	"clung",
905 	"clutch",
906 	"coach",
907 	"coal",
908 	"coarse",
909 	"coast",
910 	"coat",
911 	"coax",
912 	"cobalt",
913 	"cobra",
914 	"coca",
915 	"cocoa",
916 	"code",
917 	"coffee",
918 	"coffin",
919 	"cohort",
920 	"coil",
921 	"coin",
922 	"coke",
923 	"cold",
924 	"collar",
925 	"colon",
926 	"colony",
927 	"colt",
928 	"column",
929 	"comb",
930 	"combat",
931 	"come",
932 	"comedy",
933 	"comic",
934 	"commit",
935 	"common",
936 	"compel",
937 	"comply",
938 	"concur",
939 	"cone",
940 	"confer",
941 	"consul",
942 	"convex",
943 	"convey",
944 	"convoy",
945 	"cook",
946 	"cool",
947 	"cope",
948 	"copper",
949 	"copy",
950 	"coral",
951 	"cord",
952 	"core",
953 	"cork",
954 	"corn",
955 	"corner",
956 	"corps",
957 	"corpse",
958 	"corpus",
959 	"cortex",
960 	"cosmic",
961 	"cosmos",
962 	"cost",
963 	"costly",
964 	"cosy",
965 	"cotton",
966 	"couch",
967 	"cough",
968 	"could",
969 	"count",
970 	"county",
971 	"coup",
972 	"couple",
973 	"coupon",
974 	"course",
975 	"court",
976 	"cousin",
977 	"cove",
978 	"cover",
979 	"covert",
980 	"cow",
981 	"coward",
982 	"cowboy",
983 	"crab",
984 	"cradle",
985 	"craft",
986 	"crafty",
987 	"crag",
988 	"crane",
989 	"crap",
990 	"crash",
991 	"crate",
992 	"crater",
993 	"crawl",
994 	"crazy",
995 	"creak",
996 	"cream",
997 	"creamy",
998 	"create",
999 	"credit",
1000 	"creed",
1001 	"creek",
1002 	"creep",
1003 	"creepy",
1004 	"crept",
1005 	"crest",
1006 	"crew",
1007 	"cried",
1008 	"crime",
1009 	"crisis",
1010 	"crisp",
1011 	"critic",
1012 	"croft",
1013 	"crook",
1014 	"crop",
1015 	"cross",
1016 	"crow",
1017 	"crowd",
1018 	"crown",
1019 	"crude",
1020 	"cruel",
1021 	"cruise",
1022 	"crunch",
1023 	"crush",
1024 	"crust",
1025 	"crux",
1026 	"cry",
1027 	"crypt",
1028 	"cube",
1029 	"cubic",
1030 	"cuckoo",
1031 	"cuff",
1032 	"cult",
1033 	"cup",
1034 	"curb",
1035 	"cure",
1036 	"curfew",
1037 	"curl",
1038 	"curry",
1039 	"curse",
1040 	"cursor",
1041 	"curve",
1042 	"custom",
1043 	"cut",
1044 	"cute",
1045 	"cycle",
1046 	"cyclic",
1047 	"cynic",
1048 	"dad",
1049 	"dagger",
1050 	"daily",
1051 	"dairy",
1052 	"daisy",
1053 	"dale",
1054 	"damage",
1055 	"damn",
1056 	"damp",
1057 	"dampen",
1058 	"dance",
1059 	"danger",
1060 	"dare",
1061 	"dark",
1062 	"darken",
1063 	"dash",
1064 	"data",
1065 	"date",
1066 	"dawn",
1067 	"day",
1068 	"dead",
1069 	"deadly",
1070 	"deaf",
1071 	"deal",
1072 	"dealer",
1073 	"dean",
1074 	"dear",
1075 	"death",
1076 	"debate",
1077 	"debit",
1078 	"debris",
1079 	"debt",
1080 	"debtor",
1081 	"decade",
1082 	"decay",
1083 	"decent",
1084 	"decide",
1085 	"deck",
1086 	"decor",
1087 	"decree",
1088 	"deduce",
1089 	"deed",
1090 	"deep",
1091 	"deeply",
1092 	"deer",
1093 	"defeat",
1094 	"defect",
1095 	"defend",
1096 	"defer",
1097 	"define",
1098 	"defy",
1099 	"degree",
1100 	"deity",
1101 	"delay",
1102 	"delete",
1103 	"delta",
1104 	"demand",
1105 	"demise",
1106 	"demo",
1107 	"demon",
1108 	"demure",
1109 	"denial",
1110 	"denote",
1111 	"dense",
1112 	"dental",
1113 	"deny",
1114 	"depart",
1115 	"depend",
1116 	"depict",
1117 	"deploy",
1118 	"depot",
1119 	"depth",
1120 	"deputy",
1121 	"derive",
1122 	"desert",
1123 	"design",
1124 	"desire",
1125 	"desist",
1126 	"desk",
1127 	"detail",
1128 	"detect",
1129 	"deter",
1130 	"detest",
1131 	"detour",
1132 	"device",
1133 	"devise",
1134 	"devoid",
1135 	"devote",
1136 	"devour",
1137 	"dial",
1138 	"diary",
1139 	"dice",
1140 	"dictum",
1141 	"did",
1142 	"die",
1143 	"diesel",
1144 	"diet",
1145 	"differ",
1146 	"digest",
1147 	"digit",
1148 	"dine",
1149 	"dinghy",
1150 	"dinner",
1151 	"diode",
1152 	"dire",
1153 	"direct",
1154 	"dirt",
1155 	"dirty",
1156 	"disc",
1157 	"disco",
1158 	"dish",
1159 	"disk",
1160 	"dismal",
1161 	"dispel",
1162 	"ditch",
1163 	"dive",
1164 	"divert",
1165 	"divide",
1166 	"divine",
1167 	"dizzy",
1168 	"docile",
1169 	"dock",
1170 	"doctor",
1171 	"dog",
1172 	"dogma",
1173 	"dole",
1174 	"doll",
1175 	"dollar",
1176 	"dolly",
1177 	"domain",
1178 	"dome",
1179 	"domino",
1180 	"donate",
1181 	"done",
1182 	"donkey",
1183 	"donor",
1184 	"doom",
1185 	"door",
1186 	"dorsal",
1187 	"dose",
1188 	"double",
1189 	"doubt",
1190 	"dough",
1191 	"dour",
1192 	"dove",
1193 	"down",
1194 	"dozen",
1195 	"draft",
1196 	"drag",
1197 	"dragon",
1198 	"drain",
1199 	"drama",
1200 	"drank",
1201 	"draw",
1202 	"drawer",
1203 	"dread",
1204 	"dream",
1205 	"dreary",
1206 	"dress",
1207 	"drew",
1208 	"dried",
1209 	"drift",
1210 	"drill",
1211 	"drink",
1212 	"drip",
1213 	"drive",
1214 	"driver",
1215 	"drop",
1216 	"drove",
1217 	"drown",
1218 	"drug",
1219 	"drum",
1220 	"drunk",
1221 	"dry",
1222 	"dual",
1223 	"duck",
1224 	"duct",
1225 	"due",
1226 	"duel",
1227 	"duet",
1228 	"duke",
1229 	"dull",
1230 	"duly",
1231 	"dumb",
1232 	"dummy",
1233 	"dump",
1234 	"dune",
1235 	"dung",
1236 	"duress",
1237 	"during",
1238 	"dusk",
1239 	"dust",
1240 	"dusty",
1241 	"duty",
1242 	"dwarf",
1243 	"dwell",
1244 	"dyer",
1245 	"dying",
1246 	"dynamo",
1247 	"each",
1248 	"eager",
1249 	"eagle",
1250 	"ear",
1251 	"earl",
1252 	"early",
1253 	"earn",
1254 	"earth",
1255 	"ease",
1256 	"easel",
1257 	"easily",
1258 	"easy",
1259 	"eat",
1260 	"eaten",
1261 	"eater",
1262 	"echo",
1263 	"eddy",
1264 	"edge",
1265 	"edible",
1266 	"edict",
1267 	"edit",
1268 	"editor",
1269 	"eerie",
1270 	"eerily",
1271 	"effect",
1272 	"effort",
1273 	"egg",
1274 	"ego",
1275 	"eight",
1276 	"eighth",
1277 	"eighty",
1278 	"either",
1279 	"elbow",
1280 	"elder",
1281 	"eldest",
1282 	"elect",
1283 	"eleven",
1284 	"elicit",
1285 	"elite",
1286 	"else",
1287 	"elude",
1288 	"elves",
1289 	"embark",
1290 	"emblem",
1291 	"embryo",
1292 	"emerge",
1293 	"emit",
1294 	"empire",
1295 	"employ",
1296 	"empty",
1297 	"enable",
1298 	"enamel",
1299 	"end",
1300 	"endure",
1301 	"enemy",
1302 	"energy",
1303 	"engage",
1304 	"engine",
1305 	"enjoy",
1306 	"enlist",
1307 	"enough",
1308 	"ensure",
1309 	"entail",
1310 	"enter",
1311 	"entire",
1312 	"entry",
1313 	"envoy",
1314 	"envy",
1315 	"enzyme",
1316 	"epic",
1317 	"epoch",
1318 	"equal",
1319 	"equate",
1320 	"equip",
1321 	"equity",
1322 	"era",
1323 	"erode",
1324 	"errant",
1325 	"error",
1326 	"escape",
1327 	"essay",
1328 	"estate",
1329 	"esteem",
1330 	"ethic",
1331 	"ethnic",
1332 	"evade",
1333 	"even",
1334 	"event",
1335 	"ever",
1336 	"every",
1337 	"evict",
1338 	"evil",
1339 	"evoke",
1340 	"evolve",
1341 	"exact",
1342 	"exam",
1343 	"exceed",
1344 	"excel",
1345 	"except",
1346 	"excess",
1347 	"excise",
1348 	"excite",
1349 	"excuse",
1350 	"exempt",
1351 	"exert",
1352 	"exile",
1353 	"exist",
1354 	"exit",
1355 	"exotic",
1356 	"expand",
1357 	"expect",
1358 	"expert",
1359 	"expire",
1360 	"export",
1361 	"expose",
1362 	"extend",
1363 	"extra",
1364 	"eye",
1365 	"eyed",
1366 	"fabric",
1367 	"face",
1368 	"fact",
1369 	"factor",
1370 	"fade",
1371 	"fail",
1372 	"faint",
1373 	"fair",
1374 	"fairly",
1375 	"fairy",
1376 	"faith",
1377 	"fake",
1378 	"falcon",
1379 	"fall",
1380 	"false",
1381 	"falter",
1382 	"fame",
1383 	"family",
1384 	"famine",
1385 	"famous",
1386 	"fan",
1387 	"fancy",
1388 	"far",
1389 	"farce",
1390 	"fare",
1391 	"farm",
1392 	"farmer",
1393 	"fast",
1394 	"fasten",
1395 	"faster",
1396 	"fat",
1397 	"fatal",
1398 	"fate",
1399 	"father",
1400 	"fatty",
1401 	"fault",
1402 	"faulty",
1403 	"fauna",
1404 	"fear",
1405 	"feast",
1406 	"feat",
1407 	"fed",
1408 	"fee",
1409 	"feeble",
1410 	"feed",
1411 	"feel",
1412 	"feet",
1413 	"fell",
1414 	"fellow",
1415 	"felt",
1416 	"female",
1417 	"fence",
1418 	"fend",
1419 	"ferry",
1420 	"fetal",
1421 	"fetch",
1422 	"feudal",
1423 	"fever",
1424 	"few",
1425 	"fewer",
1426 	"fiance",
1427 	"fiasco",
1428 	"fiddle",
1429 	"field",
1430 	"fiend",
1431 	"fierce",
1432 	"fiery",
1433 	"fifth",
1434 	"fifty",
1435 	"fig",
1436 	"fight",
1437 	"figure",
1438 	"file",
1439 	"fill",
1440 	"filled",
1441 	"filler",
1442 	"film",
1443 	"filter",
1444 	"filth",
1445 	"filthy",
1446 	"final",
1447 	"finale",
1448 	"find",
1449 	"fine",
1450 	"finger",
1451 	"finish",
1452 	"finite",
1453 	"fire",
1454 	"firm",
1455 	"firmly",
1456 	"first",
1457 	"fiscal",
1458 	"fish",
1459 	"fisher",
1460 	"fist",
1461 	"fit",
1462 	"fitful",
1463 	"five",
1464 	"fix",
1465 	"flag",
1466 	"flair",
1467 	"flak",
1468 	"flame",
1469 	"flank",
1470 	"flap",
1471 	"flare",
1472 	"flash",
1473 	"flask",
1474 	"flat",
1475 	"flaw",
1476 	"fled",
1477 	"flee",
1478 	"fleece",
1479 	"fleet",
1480 	"flesh",
1481 	"fleshy",
1482 	"flew",
1483 	"flick",
1484 	"flight",
1485 	"flimsy",
1486 	"flint",
1487 	"float",
1488 	"flock",
1489 	"flood",
1490 	"floor",
1491 	"floppy",
1492 	"flora",
1493 	"floral",
1494 	"flour",
1495 	"flow",
1496 	"flower",
1497 	"fluent",
1498 	"fluffy",
1499 	"fluid",
1500 	"flung",
1501 	"flurry",
1502 	"flush",
1503 	"flute",
1504 	"flux",
1505 	"fly",
1506 	"flyer",
1507 	"foal",
1508 	"foam",
1509 	"focal",
1510 	"focus",
1511 	"fog",
1512 	"foil",
1513 	"fold",
1514 	"folk",
1515 	"follow",
1516 	"folly",
1517 	"fond",
1518 	"fondly",
1519 	"font",
1520 	"food",
1521 	"fool",
1522 	"foot",
1523 	"for",
1524 	"forbid",
1525 	"force",
1526 	"ford",
1527 	"forest",
1528 	"forge",
1529 	"forget",
1530 	"fork",
1531 	"form",
1532 	"formal",
1533 	"format",
1534 	"former",
1535 	"fort",
1536 	"forth",
1537 	"forty",
1538 	"forum",
1539 	"fossil",
1540 	"foster",
1541 	"foul",
1542 	"found",
1543 	"four",
1544 	"fourth",
1545 	"fox",
1546 	"foyer",
1547 	"frail",
1548 	"frame",
1549 	"franc",
1550 	"frank",
1551 	"fraud",
1552 	"free",
1553 	"freed",
1554 	"freely",
1555 	"freer",
1556 	"freeze",
1557 	"frenzy",
1558 	"fresh",
1559 	"friar",
1560 	"fridge",
1561 	"fried",
1562 	"friend",
1563 	"fright",
1564 	"fringe",
1565 	"frock",
1566 	"frog",
1567 	"from",
1568 	"front",
1569 	"frost",
1570 	"frosty",
1571 	"frown",
1572 	"frozen",
1573 	"frugal",
1574 	"fruit",
1575 	"fudge",
1576 	"fuel",
1577 	"fulfil",
1578 	"full",
1579 	"fully",
1580 	"fun",
1581 	"fund",
1582 	"funny",
1583 	"fur",
1584 	"furry",
1585 	"fury",
1586 	"fuse",
1587 	"fusion",
1588 	"fuss",
1589 	"fussy",
1590 	"futile",
1591 	"future",
1592 	"fuzzy",
1593 	"gadget",
1594 	"gain",
1595 	"gala",
1596 	"galaxy",
1597 	"gale",
1598 	"gall",
1599 	"galley",
1600 	"gallon",
1601 	"gallop",
1602 	"gamble",
1603 	"game",
1604 	"gamma",
1605 	"gang",
1606 	"gap",
1607 	"garage",
1608 	"garden",
1609 	"garlic",
1610 	"gas",
1611 	"gasp",
1612 	"gate",
1613 	"gather",
1614 	"gauge",
1615 	"gaunt",
1616 	"gave",
1617 	"gaze",
1618 	"gear",
1619 	"geese",
1620 	"gender",
1621 	"gene",
1622 	"genial",
1623 	"genius",
1624 	"genre",
1625 	"gentle",
1626 	"gently",
1627 	"gentry",
1628 	"genus",
1629 	"get",
1630 	"ghetto",
1631 	"ghost",
1632 	"giant",
1633 	"gift",
1634 	"giggle",
1635 	"gill",
1636 	"gilt",
1637 	"ginger",
1638 	"girl",
1639 	"give",
1640 	"given",
1641 	"glad",
1642 	"glade",
1643 	"glance",
1644 	"gland",
1645 	"glare",
1646 	"glass",
1647 	"glassy",
1648 	"gleam",
1649 	"glee",
1650 	"glide",
1651 	"global",
1652 	"globe",
1653 	"gloom",
1654 	"gloomy",
1655 	"glory",
1656 	"gloss",
1657 	"glossy",
1658 	"glove",
1659 	"glow",
1660 	"glue",
1661 	"goal",
1662 	"goat",
1663 	"gold",
1664 	"golden",
1665 	"golf",
1666 	"gone",
1667 	"gong",
1668 	"good",
1669 	"goose",
1670 	"gorge",
1671 	"gory",
1672 	"gosh",
1673 	"gossip",
1674 	"got",
1675 	"govern",
1676 	"gown",
1677 	"grab",
1678 	"grace",
1679 	"grade",
1680 	"grain",
1681 	"grand",
1682 	"grant",
1683 	"grape",
1684 	"graph",
1685 	"grasp",
1686 	"grass",
1687 	"grassy",
1688 	"grate",
1689 	"grave",
1690 	"gravel",
1691 	"gravy",
1692 	"grease",
1693 	"greasy",
1694 	"great",
1695 	"greed",
1696 	"greedy",
1697 	"green",
1698 	"greet",
1699 	"grew",
1700 	"grid",
1701 	"grief",
1702 	"grill",
1703 	"grim",
1704 	"grin",
1705 	"grind",
1706 	"grip",
1707 	"grit",
1708 	"gritty",
1709 	"groan",
1710 	"groin",
1711 	"groom",
1712 	"groove",
1713 	"gross",
1714 	"ground",
1715 	"group",
1716 	"grove",
1717 	"grow",
1718 	"grown",
1719 	"growth",
1720 	"grudge",
1721 	"grunt",
1722 	"guard",
1723 	"guess",
1724 	"guest",
1725 	"guide",
1726 	"guild",
1727 	"guilt",
1728 	"guilty",
1729 	"guise",
1730 	"guitar",
1731 	"gulf",
1732 	"gully",
1733 	"gun",
1734 	"gunman",
1735 	"guru",
1736 	"gut",
1737 	"guy",
1738 	"habit",
1739 	"hack",
1740 	"had",
1741 	"hail",
1742 	"hair",
1743 	"hairy",
1744 	"hale",
1745 	"half",
1746 	"hall",
1747 	"halt",
1748 	"hamlet",
1749 	"hammer",
1750 	"hand",
1751 	"handle",
1752 	"handy",
1753 	"hang",
1754 	"hangar",
1755 	"happen",
1756 	"happy",
1757 	"harass",
1758 	"hard",
1759 	"harder",
1760 	"hardly",
1761 	"hare",
1762 	"harem",
1763 	"harm",
1764 	"harp",
1765 	"harsh",
1766 	"has",
1767 	"hash",
1768 	"hassle",
1769 	"haste",
1770 	"hasten",
1771 	"hasty",
1772 	"hat",
1773 	"hatch",
1774 	"hate",
1775 	"haul",
1776 	"haunt",
1777 	"have",
1778 	"haven",
1779 	"havoc",
1780 	"hawk",
1781 	"hazard",
1782 	"haze",
1783 	"hazel",
1784 	"hazy",
1785 	"head",
1786 	"heal",
1787 	"health",
1788 	"heap",
1789 	"hear",
1790 	"heard",
1791 	"heart",
1792 	"hearth",
1793 	"hearty",
1794 	"heat",
1795 	"heater",
1796 	"heaven",
1797 	"heavy",
1798 	"heck",
1799 	"hectic",
1800 	"hedge",
1801 	"heel",
1802 	"hefty",
1803 	"height",
1804 	"heir",
1805 	"held",
1806 	"helium",
1807 	"helix",
1808 	"hell",
1809 	"hello",
1810 	"helm",
1811 	"helmet",
1812 	"help",
1813 	"hemp",
1814 	"hence",
1815 	"her",
1816 	"herald",
1817 	"herb",
1818 	"herd",
1819 	"here",
1820 	"hereby",
1821 	"hernia",
1822 	"hero",
1823 	"heroic",
1824 	"hey",
1825 	"heyday",
1826 	"hick",
1827 	"hidden",
1828 	"hide",
1829 	"high",
1830 	"higher",
1831 	"highly",
1832 	"hill",
1833 	"him",
1834 	"hind",
1835 	"hint",
1836 	"hire",
1837 	"his",
1838 	"hiss",
1839 	"hit",
1840 	"hive",
1841 	"hoard",
1842 	"hoarse",
1843 	"hobby",
1844 	"hockey",
1845 	"hold",
1846 	"holder",
1847 	"hole",
1848 	"hollow",
1849 	"holly",
1850 	"holy",
1851 	"home",
1852 	"honest",
1853 	"honey",
1854 	"hood",
1855 	"hook",
1856 	"hope",
1857 	"horn",
1858 	"horrid",
1859 	"horror",
1860 	"horse",
1861 	"hose",
1862 	"host",
1863 	"hot",
1864 	"hotel",
1865 	"hound",
1866 	"hour",
1867 	"house",
1868 	"hover",
1869 	"how",
1870 	"huge",
1871 	"hull",
1872 	"human",
1873 	"humane",
1874 	"humble",
1875 	"humid",
1876 	"hung",
1877 	"hunger",
1878 	"hungry",
1879 	"hunt",
1880 	"hurdle",
1881 	"hurl",
1882 	"hurry",
1883 	"hurt",
1884 	"hush",
1885 	"hut",
1886 	"hybrid",
1887 	"hymn",
1888 	"hyphen",
1889 	"ice",
1890 	"icing",
1891 	"icon",
1892 	"idea",
1893 	"ideal",
1894 	"idiom",
1895 	"idiot",
1896 	"idle",
1897 	"idly",
1898 	"idol",
1899 	"ignite",
1900 	"ignore",
1901 	"ill",
1902 	"image",
1903 	"immune",
1904 	"impact",
1905 	"imply",
1906 	"import",
1907 	"impose",
1908 	"inch",
1909 	"income",
1910 	"incur",
1911 	"indeed",
1912 	"index",
1913 	"indoor",
1914 	"induce",
1915 	"inept",
1916 	"inert",
1917 	"infant",
1918 	"infect",
1919 	"infer",
1920 	"influx",
1921 	"inform",
1922 	"inject",
1923 	"injure",
1924 	"injury",
1925 	"inlaid",
1926 	"inland",
1927 	"inlet",
1928 	"inmate",
1929 	"inn",
1930 	"innate",
1931 	"inner",
1932 	"input",
1933 	"insane",
1934 	"insect",
1935 	"insert",
1936 	"inset",
1937 	"inside",
1938 	"insist",
1939 	"insult",
1940 	"insure",
1941 	"intact",
1942 	"intake",
1943 	"intend",
1944 	"inter",
1945 	"into",
1946 	"invade",
1947 	"invent",
1948 	"invest",
1949 	"invite",
1950 	"invoke",
1951 	"inward",
1952 	"iron",
1953 	"ironic",
1954 	"irony",
1955 	"island",
1956 	"isle",
1957 	"issue",
1958 	"itch",
1959 	"item",
1960 	"itself",
1961 	"ivory",
1962 	"jacket",
1963 	"jade",
1964 	"jaguar",
1965 	"jail",
1966 	"jargon",
1967 	"jaw",
1968 	"jazz",
1969 	"jeep",
1970 	"jelly",
1971 	"jerky",
1972 	"jest",
1973 	"jet",
1974 	"jewel",
1975 	"job",
1976 	"jock",
1977 	"jockey",
1978 	"join",
1979 	"joke",
1980 	"jolly",
1981 	"jolt",
1982 	"joy",
1983 	"joyful",
1984 	"joyous",
1985 	"judge",
1986 	"juice",
1987 	"juicy",
1988 	"jumble",
1989 	"jumbo",
1990 	"jump",
1991 	"jungle",
1992 	"junior",
1993 	"junk",
1994 	"junta",
1995 	"jury",
1996 	"just",
1997 	"karate",
1998 	"keel",
1999 	"keen",
2000 	"keep",
2001 	"keeper",
2002 	"kept",
2003 	"kernel",
2004 	"kettle",
2005 	"key",
2006 	"khaki",
2007 	"kick",
2008 	"kid",
2009 	"kidnap",
2010 	"kidney",
2011 	"kin",
2012 	"kind",
2013 	"kindly",
2014 	"king",
2015 	"kiss",
2016 	"kite",
2017 	"kitten",
2018 	"knack",
2019 	"knee",
2020 	"knew",
2021 	"knife",
2022 	"knight",
2023 	"knit",
2024 	"knob",
2025 	"knock",
2026 	"knot",
2027 	"know",
2028 	"known",
2029 	"label",
2030 	"lace",
2031 	"lack",
2032 	"lad",
2033 	"ladder",
2034 	"laden",
2035 	"lady",
2036 	"lagoon",
2037 	"laity",
2038 	"lake",
2039 	"lamb",
2040 	"lame",
2041 	"lamp",
2042 	"lance",
2043 	"land",
2044 	"lane",
2045 	"lap",
2046 	"lapse",
2047 	"large",
2048 	"larval",
2049 	"laser",
2050 	"last",
2051 	"latch",
2052 	"late",
2053 	"lately",
2054 	"latent",
2055 	"later",
2056 	"latest",
2057 	"latter",
2058 	"laugh",
2059 	"launch",
2060 	"lava",
2061 	"lavish",
2062 	"law",
2063 	"lawful",
2064 	"lawn",
2065 	"lawyer",
2066 	"lay",
2067 	"layer",
2068 	"layman",
2069 	"lazy",
2070 	"lead",
2071 	"leader",
2072 	"leaf",
2073 	"leafy",
2074 	"league",
2075 	"leak",
2076 	"leaky",
2077 	"lean",
2078 	"leap",
2079 	"learn",
2080 	"lease",
2081 	"leash",
2082 	"least",
2083 	"leave",
2084 	"led",
2085 	"ledge",
2086 	"left",
2087 	"leg",
2088 	"legacy",
2089 	"legal",
2090 	"legend",
2091 	"legion",
2092 	"lemon",
2093 	"lend",
2094 	"length",
2095 	"lens",
2096 	"lent",
2097 	"leper",
2098 	"lesion",
2099 	"less",
2100 	"lessen",
2101 	"lesser",
2102 	"lesson",
2103 	"lest",
2104 	"let",
2105 	"lethal",
2106 	"letter",
2107 	"level",
2108 	"lever",
2109 	"levy",
2110 	"lewis",
2111 	"liable",
2112 	"liar",
2113 	"libel",
2114 	"lice",
2115 	"lid",
2116 	"lie",
2117 	"lied",
2118 	"life",
2119 	"lift",
2120 	"light",
2121 	"like",
2122 	"likely",
2123 	"limb",
2124 	"lime",
2125 	"limit",
2126 	"limp",
2127 	"line",
2128 	"linear",
2129 	"linen",
2130 	"linger",
2131 	"link",
2132 	"lion",
2133 	"lip",
2134 	"liquid",
2135 	"liquor",
2136 	"list",
2137 	"listen",
2138 	"lit",
2139 	"live",
2140 	"lively",
2141 	"liver",
2142 	"lizard",
2143 	"load",
2144 	"loaf",
2145 	"loan",
2146 	"lobby",
2147 	"lobe",
2148 	"local",
2149 	"locate",
2150 	"lock",
2151 	"locus",
2152 	"lodge",
2153 	"loft",
2154 	"lofty",
2155 	"log",
2156 	"logic",
2157 	"logo",
2158 	"lone",
2159 	"lonely",
2160 	"long",
2161 	"longer",
2162 	"look",
2163 	"loop",
2164 	"loose",
2165 	"loosen",
2166 	"loot",
2167 	"lord",
2168 	"lorry",
2169 	"lose",
2170 	"loss",
2171 	"lost",
2172 	"lot",
2173 	"lotion",
2174 	"lotus",
2175 	"loud",
2176 	"loudly",
2177 	"lounge",
2178 	"lousy",
2179 	"love",
2180 	"lovely",
2181 	"low",
2182 	"lower",
2183 	"lowest",
2184 	"loyal",
2185 	"lucid",
2186 	"luck",
2187 	"lucky",
2188 	"lull",
2189 	"lump",
2190 	"lumpy",
2191 	"lunacy",
2192 	"lunar",
2193 	"lunch",
2194 	"lung",
2195 	"lure",
2196 	"lurid",
2197 	"lush",
2198 	"lust",
2199 	"lute",
2200 	"luxury",
2201 	"lying",
2202 	"lymph",
2203 	"lynch",
2204 	"lyric",
2205 	"macho",
2206 	"macro",
2207 	"mad",
2208 	"madam",
2209 	"made",
2210 	"mafia",
2211 	"magic",
2212 	"magma",
2213 	"magnet",
2214 	"magnum",
2215 	"maid",
2216 	"maiden",
2217 	"mail",
2218 	"main",
2219 	"mainly",
2220 	"major",
2221 	"make",
2222 	"maker",
2223 	"male",
2224 	"malice",
2225 	"mall",
2226 	"malt",
2227 	"mammal",
2228 	"manage",
2229 	"mane",
2230 	"mania",
2231 	"manic",
2232 	"manner",
2233 	"manor",
2234 	"mantle",
2235 	"manual",
2236 	"manure",
2237 	"many",
2238 	"map",
2239 	"maple",
2240 	"marble",
2241 	"march",
2242 	"mare",
2243 	"margin",
2244 	"marina",
2245 	"mark",
2246 	"market",
2247 	"marry",
2248 	"marsh",
2249 	"martin",
2250 	"martyr",
2251 	"mask",
2252 	"mason",
2253 	"mass",
2254 	"mast",
2255 	"match",
2256 	"mate",
2257 	"matrix",
2258 	"matter",
2259 	"mature",
2260 	"maxim",
2261 	"may",
2262 	"maybe",
2263 	"mayor",
2264 	"maze",
2265 	"mead",
2266 	"meadow",
2267 	"meal",
2268 	"mean",
2269 	"meant",
2270 	"meat",
2271 	"medal",
2272 	"media",
2273 	"median",
2274 	"medic",
2275 	"medium",
2276 	"meet",
2277 	"mellow",
2278 	"melody",
2279 	"melon",
2280 	"melt",
2281 	"member",
2282 	"memo",
2283 	"memory",
2284 	"menace",
2285 	"mend",
2286 	"mental",
2287 	"mentor",
2288 	"menu",
2289 	"mercy",
2290 	"mere",
2291 	"merely",
2292 	"merge",
2293 	"merger",
2294 	"merit",
2295 	"merry",
2296 	"mesh",
2297 	"mess",
2298 	"messy",
2299 	"met",
2300 	"metal",
2301 	"meter",
2302 	"method",
2303 	"methyl",
2304 	"metric",
2305 	"metro",
2306 	"mid",
2307 	"midday",
2308 	"middle",
2309 	"midst",
2310 	"midway",
2311 	"might",
2312 	"mighty",
2313 	"mild",
2314 	"mildew",
2315 	"mile",
2316 	"milk",
2317 	"milky",
2318 	"mill",
2319 	"mimic",
2320 	"mince",
2321 	"mind",
2322 	"mine",
2323 	"mini",
2324 	"mink",
2325 	"minor",
2326 	"mint",
2327 	"minus",
2328 	"minute",
2329 	"mirror",
2330 	"mirth",
2331 	"misery",
2332 	"miss",
2333 	"mist",
2334 	"misty",
2335 	"mite",
2336 	"mix",
2337 	"moan",
2338 	"moat",
2339 	"mobile",
2340 	"mock",
2341 	"mode",
2342 	"model",
2343 	"modem",
2344 	"modern",
2345 	"modest",
2346 	"modify",
2347 	"module",
2348 	"moist",
2349 	"molar",
2350 	"mole",
2351 	"molten",
2352 	"moment",
2353 	"money",
2354 	"monies",
2355 	"monk",
2356 	"monkey",
2357 	"month",
2358 	"mood",
2359 	"moody",
2360 	"moon",
2361 	"moor",
2362 	"moral",
2363 	"morale",
2364 	"morbid",
2365 	"more",
2366 	"morgue",
2367 	"mortal",
2368 	"mortar",
2369 	"mosaic",
2370 	"mosque",
2371 	"moss",
2372 	"most",
2373 	"mostly",
2374 	"moth",
2375 	"mother",
2376 	"motion",
2377 	"motive",
2378 	"motor",
2379 	"mould",
2380 	"mount",
2381 	"mourn",
2382 	"mouse",
2383 	"mouth",
2384 	"move",
2385 	"movie",
2386 	"much",
2387 	"muck",
2388 	"mucus",
2389 	"mud",
2390 	"muddle",
2391 	"muddy",
2392 	"mule",
2393 	"mummy",
2394 	"murky",
2395 	"murmur",
2396 	"muscle",
2397 	"museum",
2398 	"music",
2399 	"mussel",
2400 	"must",
2401 	"mutant",
2402 	"mute",
2403 	"mutiny",
2404 	"mutter",
2405 	"mutton",
2406 	"mutual",
2407 	"muzzle",
2408 	"myopic",
2409 	"myriad",
2410 	"myself",
2411 	"mystic",
2412 	"myth",
2413 	"nadir",
2414 	"nail",
2415 	"name",
2416 	"namely",
2417 	"nape",
2418 	"napkin",
2419 	"narrow",
2420 	"nasal",
2421 	"nasty",
2422 	"nation",
2423 	"native",
2424 	"nature",
2425 	"nausea",
2426 	"naval",
2427 	"nave",
2428 	"navy",
2429 	"near",
2430 	"nearer",
2431 	"nearly",
2432 	"neat",
2433 	"neatly",
2434 	"neck",
2435 	"need",
2436 	"needle",
2437 	"needy",
2438 	"negate",
2439 	"neon",
2440 	"nephew",
2441 	"nerve",
2442 	"nest",
2443 	"neural",
2444 	"never",
2445 	"newly",
2446 	"next",
2447 	"nice",
2448 	"nicely",
2449 	"niche",
2450 	"nickel",
2451 	"niece",
2452 	"night",
2453 	"nimble",
2454 	"nine",
2455 	"ninety",
2456 	"ninth",
2457 	"noble",
2458 	"nobody",
2459 	"node",
2460 	"noise",
2461 	"noisy",
2462 	"non",
2463 	"none",
2464 	"noon",
2465 	"nor",
2466 	"norm",
2467 	"normal",
2468 	"nose",
2469 	"nosy",
2470 	"not",
2471 	"note",
2472 	"notice",
2473 	"notify",
2474 	"notion",
2475 	"nought",
2476 	"noun",
2477 	"novel",
2478 	"novice",
2479 	"now",
2480 	"nozzle",
2481 	"null",
2482 	"numb",
2483 	"number",
2484 	"nurse",
2485 	"nylon",
2486 	"nymph",
2487 	"oak",
2488 	"oasis",
2489 	"oath",
2490 	"obese",
2491 	"obey",
2492 	"object",
2493 	"oblige",
2494 	"oboe",
2495 	"obtain",
2496 	"occult",
2497 	"occupy",
2498 	"occur",
2499 	"ocean",
2500 	"octave",
2501 	"odd",
2502 	"off",
2503 	"offend",
2504 	"offer",
2505 	"office",
2506 	"offset",
2507 	"often",
2508 	"oil",
2509 	"oily",
2510 	"okay",
2511 	"old",
2512 	"older",
2513 	"oldest",
2514 	"olive",
2515 	"omega",
2516 	"omen",
2517 	"omit",
2518 	"once",
2519 	"one",
2520 	"onion",
2521 	"only",
2522 	"onset",
2523 	"onto",
2524 	"onus",
2525 	"onward",
2526 	"opaque",
2527 	"open",
2528 	"openly",
2529 	"opera",
2530 	"oppose",
2531 	"optic",
2532 	"option",
2533 	"oracle",
2534 	"orange",
2535 	"orbit",
2536 	"orchid",
2537 	"ordeal",
2538 	"order",
2539 	"organ",
2540 	"orient",
2541 	"origin",
2542 	"ornate",
2543 	"orphan",
2544 	"other",
2545 	"otter",
2546 	"ought",
2547 	"ounce",
2548 	"our",
2549 	"out",
2550 	"outer",
2551 	"output",
2552 	"outset",
2553 	"oval",
2554 	"oven",
2555 	"over",
2556 	"overt",
2557 	"owe",
2558 	"owing",
2559 	"owl",
2560 	"own",
2561 	"owner",
2562 	"oxide",
2563 	"oxygen",
2564 	"oyster",
2565 	"ozone",
2566 	"pace",
2567 	"pack",
2568 	"packet",
2569 	"pact",
2570 	"paddle",
2571 	"paddy",
2572 	"pagan",
2573 	"page",
2574 	"paid",
2575 	"pain",
2576 	"paint",
2577 	"pair",
2578 	"palace",
2579 	"pale",
2580 	"palm",
2581 	"panel",
2582 	"panic",
2583 	"papa",
2584 	"papal",
2585 	"paper",
2586 	"parade",
2587 	"parcel",
2588 	"pardon",
2589 	"parent",
2590 	"parish",
2591 	"park",
2592 	"parody",
2593 	"parrot",
2594 	"part",
2595 	"partly",
2596 	"party",
2597 	"pass",
2598 	"past",
2599 	"paste",
2600 	"pastel",
2601 	"pastor",
2602 	"pastry",
2603 	"pat",
2604 	"patch",
2605 	"patent",
2606 	"path",
2607 	"patio",
2608 	"patrol",
2609 	"patron",
2610 	"pause",
2611 	"pave",
2612 	"pawn",
2613 	"pay",
2614 	"peace",
2615 	"peach",
2616 	"peak",
2617 	"pear",
2618 	"pearl",
2619 	"pedal",
2620 	"peel",
2621 	"peer",
2622 	"pelvic",
2623 	"pelvis",
2624 	"pen",
2625 	"penal",
2626 	"pence",
2627 	"pencil",
2628 	"penny",
2629 	"people",
2630 	"pepper",
2631 	"per",
2632 	"perch",
2633 	"peril",
2634 	"period",
2635 	"perish",
2636 	"permit",
2637 	"person",
2638 	"pest",
2639 	"petite",
2640 	"petrol",
2641 	"petty",
2642 	"phase",
2643 	"phone",
2644 	"photo",
2645 	"phrase",
2646 	"piano",
2647 	"pick",
2648 	"picket",
2649 	"picnic",
2650 	"pie",
2651 	"piece",
2652 	"pier",
2653 	"pierce",
2654 	"piety",
2655 	"pig",
2656 	"pigeon",
2657 	"piggy",
2658 	"pike",
2659 	"pile",
2660 	"pill",
2661 	"pillar",
2662 	"pillow",
2663 	"pilot",
2664 	"pin",
2665 	"pinch",
2666 	"pine",
2667 	"pink",
2668 	"pint",
2669 	"pious",
2670 	"pipe",
2671 	"pirate",
2672 	"pistol",
2673 	"piston",
2674 	"pit",
2675 	"pitch",
2676 	"pity",
2677 	"pivot",
2678 	"pixel",
2679 	"pizza",
2680 	"place",
2681 	"placid",
2682 	"plague",
2683 	"plain",
2684 	"plan",
2685 	"plane",
2686 	"planet",
2687 	"plank",
2688 	"plant",
2689 	"plasma",
2690 	"plate",
2691 	"play",
2692 	"player",
2693 	"plea",
2694 	"plead",
2695 	"please",
2696 	"pledge",
2697 	"plenty",
2698 	"plenum",
2699 	"plight",
2700 	"plot",
2701 	"ploy",
2702 	"plug",
2703 	"plum",
2704 	"plump",
2705 	"plunge",
2706 	"plural",
2707 	"plus",
2708 	"plush",
2709 	"pocket",
2710 	"poem",
2711 	"poet",
2712 	"poetic",
2713 	"poetry",
2714 	"point",
2715 	"poison",
2716 	"polar",
2717 	"pole",
2718 	"police",
2719 	"policy",
2720 	"polite",
2721 	"poll",
2722 	"pollen",
2723 	"polo",
2724 	"pond",
2725 	"ponder",
2726 	"pony",
2727 	"pool",
2728 	"poor",
2729 	"poorly",
2730 	"pop",
2731 	"pope",
2732 	"poppy",
2733 	"pore",
2734 	"pork",
2735 	"port",
2736 	"portal",
2737 	"pose",
2738 	"posh",
2739 	"post",
2740 	"postal",
2741 	"potato",
2742 	"potent",
2743 	"pouch",
2744 	"pound",
2745 	"pour",
2746 	"powder",
2747 	"power",
2748 	"praise",
2749 	"pray",
2750 	"prayer",
2751 	"preach",
2752 	"prefer",
2753 	"prefix",
2754 	"press",
2755 	"pretty",
2756 	"price",
2757 	"pride",
2758 	"priest",
2759 	"primal",
2760 	"prime",
2761 	"prince",
2762 	"print",
2763 	"prior",
2764 	"prism",
2765 	"prison",
2766 	"privy",
2767 	"prize",
2768 	"probe",
2769 	"profit",
2770 	"prompt",
2771 	"prone",
2772 	"proof",
2773 	"propel",
2774 	"proper",
2775 	"prose",
2776 	"proton",
2777 	"proud",
2778 	"prove",
2779 	"proven",
2780 	"proxy",
2781 	"prune",
2782 	"psalm",
2783 	"pseudo",
2784 	"psyche",
2785 	"pub",
2786 	"public",
2787 	"puff",
2788 	"pull",
2789 	"pulp",
2790 	"pulpit",
2791 	"pulsar",
2792 	"pulse",
2793 	"pump",
2794 	"punch",
2795 	"punish",
2796 	"punk",
2797 	"pupil",
2798 	"puppet",
2799 	"puppy",
2800 	"pure",
2801 	"purely",
2802 	"purge",
2803 	"purify",
2804 	"purple",
2805 	"purse",
2806 	"pursue",
2807 	"push",
2808 	"pushy",
2809 	"put",
2810 	"putt",
2811 	"puzzle",
2812 	"quaint",
2813 	"quake",
2814 	"quarry",
2815 	"quartz",
2816 	"quay",
2817 	"queen",
2818 	"query",
2819 	"quest",
2820 	"queue",
2821 	"quick",
2822 	"quid",
2823 	"quiet",
2824 	"quilt",
2825 	"quirk",
2826 	"quit",
2827 	"quite",
2828 	"quiver",
2829 	"quiz",
2830 	"quota",
2831 	"quote",
2832 	"rabbit",
2833 	"race",
2834 	"racial",
2835 	"racism",
2836 	"rack",
2837 	"racket",
2838 	"radar",
2839 	"radio",
2840 	"radish",
2841 	"radius",
2842 	"raffle",
2843 	"raft",
2844 	"rage",
2845 	"raid",
2846 	"rail",
2847 	"rain",
2848 	"rainy",
2849 	"raise",
2850 	"rally",
2851 	"ramp",
2852 	"random",
2853 	"range",
2854 	"rank",
2855 	"ransom",
2856 	"rapid",
2857 	"rare",
2858 	"rarely",
2859 	"rarity",
2860 	"rash",
2861 	"rat",
2862 	"rate",
2863 	"rather",
2864 	"ratify",
2865 	"ratio",
2866 	"rattle",
2867 	"rave",
2868 	"raven",
2869 	"raw",
2870 	"ray",
2871 	"razor",
2872 	"reach",
2873 	"react",
2874 	"read",
2875 	"reader",
2876 	"ready",
2877 	"real",
2878 	"really",
2879 	"realm",
2880 	"reap",
2881 	"rear",
2882 	"reason",
2883 	"rebel",
2884 	"recall",
2885 	"recent",
2886 	"recess",
2887 	"recipe",
2888 	"reckon",
2889 	"record",
2890 	"recoup",
2891 	"rector",
2892 	"red",
2893 	"redeem",
2894 	"reduce",
2895 	"reed",
2896 	"reef",
2897 	"refer",
2898 	"reform",
2899 	"refuge",
2900 	"refuse",
2901 	"regal",
2902 	"regard",
2903 	"regent",
2904 	"regime",
2905 	"region",
2906 	"regret",
2907 	"reign",
2908 	"reject",
2909 	"relate",
2910 	"relax",
2911 	"relay",
2912 	"relic",
2913 	"relief",
2914 	"relish",
2915 	"rely",
2916 	"remain",
2917 	"remark",
2918 	"remedy",
2919 	"remind",
2920 	"remit",
2921 	"remote",
2922 	"remove",
2923 	"renal",
2924 	"render",
2925 	"rent",
2926 	"rental",
2927 	"repair",
2928 	"repeal",
2929 	"repeat",
2930 	"repent",
2931 	"reply",
2932 	"report",
2933 	"rescue",
2934 	"resent",
2935 	"reside",
2936 	"resign",
2937 	"resin",
2938 	"resist",
2939 	"resort",
2940 	"rest",
2941 	"result",
2942 	"resume",
2943 	"retail",
2944 	"retain",
2945 	"retina",
2946 	"retire",
2947 	"return",
2948 	"reveal",
2949 	"review",
2950 	"revise",
2951 	"revive",
2952 	"revolt",
2953 	"reward",
2954 	"rhino",
2955 	"rhyme",
2956 	"rhythm",
2957 	"ribbon",
2958 	"rice",
2959 	"rich",
2960 	"rick",
2961 	"rid",
2962 	"ride",
2963 	"rider",
2964 	"ridge",
2965 	"rife",
2966 	"rifle",
2967 	"rift",
2968 	"right",
2969 	"rigid",
2970 	"ring",
2971 	"rinse",
2972 	"riot",
2973 	"ripe",
2974 	"ripen",
2975 	"ripple",
2976 	"rise",
2977 	"risk",
2978 	"risky",
2979 	"rite",
2980 	"ritual",
2981 	"rival",
2982 	"river",
2983 	"road",
2984 	"roar",
2985 	"roast",
2986 	"rob",
2987 	"robe",
2988 	"robin",
2989 	"robot",
2990 	"robust",
2991 	"rock",
2992 	"rocket",
2993 	"rocky",
2994 	"rod",
2995 	"rode",
2996 	"rodent",
2997 	"rogue",
2998 	"role",
2999 	"roll",
3000 	"roof",
3001 	"room",
3002 	"root",
3003 	"rope",
3004 	"rose",
3005 	"rosy",
3006 	"rotate",
3007 	"rotor",
3008 	"rotten",
3009 	"rouge",
3010 	"rough",
3011 	"round",
3012 	"route",
3013 	"rover",
3014 	"row",
3015 	"royal",
3016 	"rubble",
3017 	"ruby",
3018 	"rudder",
3019 	"rude",
3020 	"rugby",
3021 	"ruin",
3022 	"rule",
3023 	"ruler",
3024 	"rumble",
3025 	"rump",
3026 	"run",
3027 	"rune",
3028 	"rung",
3029 	"runway",
3030 	"rural",
3031 	"rush",
3032 	"rust",
3033 	"rustic",
3034 	"rusty",
3035 	"sack",
3036 	"sacred",
3037 	"sad",
3038 	"saddle",
3039 	"sadly",
3040 	"safari",
3041 	"safe",
3042 	"safely",
3043 	"safer",
3044 	"safety",
3045 	"saga",
3046 	"sage",
3047 	"said",
3048 	"sail",
3049 	"sailor",
3050 	"saint",
3051 	"sake",
3052 	"salad",
3053 	"salary",
3054 	"sale",
3055 	"saline",
3056 	"saliva",
3057 	"salmon",
3058 	"saloon",
3059 	"salt",
3060 	"salty",
3061 	"salute",
3062 	"same",
3063 	"sample",
3064 	"sand",
3065 	"sandy",
3066 	"sane",
3067 	"sash",
3068 	"satin",
3069 	"satire",
3070 	"sauce",
3071 	"sauna",
3072 	"savage",
3073 	"save",
3074 	"say",
3075 	"scale",
3076 	"scalp",
3077 	"scan",
3078 	"scant",
3079 	"scar",
3080 	"scarce",
3081 	"scare",
3082 	"scarf",
3083 	"scary",
3084 	"scene",
3085 	"scenic",
3086 	"scent",
3087 	"school",
3088 	"scope",
3089 	"score",
3090 	"scorn",
3091 	"scotch",
3092 	"scout",
3093 	"scrap",
3094 	"scream",
3095 	"screen",
3096 	"script",
3097 	"scroll",
3098 	"scrub",
3099 	"scum",
3100 	"sea",
3101 	"seal",
3102 	"seam",
3103 	"seaman",
3104 	"search",
3105 	"season",
3106 	"seat",
3107 	"second",
3108 	"secret",
3109 	"sect",
3110 	"sector",
3111 	"secure",
3112 	"see",
3113 	"seed",
3114 	"seeing",
3115 	"seek",
3116 	"seem",
3117 	"seize",
3118 	"seldom",
3119 	"select",
3120 	"self",
3121 	"sell",
3122 	"seller",
3123 	"semi",
3124 	"senate",
3125 	"send",
3126 	"senile",
3127 	"senior",
3128 	"sense",
3129 	"sensor",
3130 	"sent",
3131 	"sentry",
3132 	"sequel",
3133 	"serene",
3134 	"serial",
3135 	"series",
3136 	"sermon",
3137 	"serum",
3138 	"serve",
3139 	"server",
3140 	"set",
3141 	"settle",
3142 	"seven",
3143 	"severe",
3144 	"sewage",
3145 	"shabby",
3146 	"shade",
3147 	"shadow",
3148 	"shady",
3149 	"shaft",
3150 	"shaggy",
3151 	"shah",
3152 	"shake",
3153 	"shaky",
3154 	"shall",
3155 	"sham",
3156 	"shame",
3157 	"shape",
3158 	"share",
3159 	"shark",
3160 	"sharp",
3161 	"shawl",
3162 	"she",
3163 	"shear",
3164 	"sheen",
3165 	"sheep",
3166 	"sheer",
3167 	"sheet",
3168 	"shelf",
3169 	"shell",
3170 	"sherry",
3171 	"shield",
3172 	"shift",
3173 	"shine",
3174 	"shiny",
3175 	"ship",
3176 	"shire",
3177 	"shirt",
3178 	"shiver",
3179 	"shock",
3180 	"shoe",
3181 	"shook",
3182 	"shoot",
3183 	"shop",
3184 	"shore",
3185 	"short",
3186 	"shot",
3187 	"should",
3188 	"shout",
3189 	"show",
3190 	"shower",
3191 	"shrank",
3192 	"shrewd",
3193 	"shrill",
3194 	"shrimp",
3195 	"shrine",
3196 	"shrink",
3197 	"shrub",
3198 	"shrug",
3199 	"shut",
3200 	"shy",
3201 	"shyly",
3202 	"sick",
3203 	"side",
3204 	"siege",
3205 	"sigh",
3206 	"sight",
3207 	"sigma",
3208 	"sign",
3209 	"signal",
3210 	"silent",
3211 	"silk",
3212 	"silken",
3213 	"silky",
3214 	"sill",
3215 	"silly",
3216 	"silver",
3217 	"simple",
3218 	"simply",
3219 	"since",
3220 	"sinful",
3221 	"sing",
3222 	"singer",
3223 	"single",
3224 	"sink",
3225 	"sir",
3226 	"siren",
3227 	"sister",
3228 	"sit",
3229 	"site",
3230 	"six",
3231 	"sixth",
3232 	"sixty",
3233 	"size",
3234 	"sketch",
3235 	"skill",
3236 	"skin",
3237 	"skinny",
3238 	"skip",
3239 	"skirt",
3240 	"skull",
3241 	"sky",
3242 	"slab",
3243 	"slack",
3244 	"slain",
3245 	"slam",
3246 	"slang",
3247 	"slap",
3248 	"slate",
3249 	"slater",
3250 	"sleek",
3251 	"sleep",
3252 	"sleepy",
3253 	"sleeve",
3254 	"slice",
3255 	"slick",
3256 	"slid",
3257 	"slide",
3258 	"slight",
3259 	"slim",
3260 	"slimy",
3261 	"sling",
3262 	"slip",
3263 	"slit",
3264 	"slogan",
3265 	"slope",
3266 	"sloppy",
3267 	"slot",
3268 	"slow",
3269 	"slowly",
3270 	"slug",
3271 	"slum",
3272 	"slump",
3273 	"smack",
3274 	"small",
3275 	"smart",
3276 	"smash",
3277 	"smear",
3278 	"smell",
3279 	"smelly",
3280 	"smelt",
3281 	"smile",
3282 	"smoke",
3283 	"smoky",
3284 	"smooth",
3285 	"smug",
3286 	"snack",
3287 	"snail",
3288 	"snake",
3289 	"snap",
3290 	"snatch",
3291 	"sneak",
3292 	"snow",
3293 	"snowy",
3294 	"snug",
3295 	"soak",
3296 	"soap",
3297 	"sober",
3298 	"soccer",
3299 	"social",
3300 	"sock",
3301 	"socket",
3302 	"soda",
3303 	"sodden",
3304 	"sodium",
3305 	"sofa",
3306 	"soft",
3307 	"soften",
3308 	"softly",
3309 	"soggy",
3310 	"soil",
3311 	"solar",
3312 	"sold",
3313 	"sole",
3314 	"solely",
3315 	"solemn",
3316 	"solid",
3317 	"solo",
3318 	"solve",
3319 	"some",
3320 	"son",
3321 	"sonar",
3322 	"sonata",
3323 	"song",
3324 	"sonic",
3325 	"soon",
3326 	"sooner",
3327 	"soot",
3328 	"soothe",
3329 	"sordid",
3330 	"sore",
3331 	"sorrow",
3332 	"sorry",
3333 	"sort",
3334 	"soul",
3335 	"sound",
3336 	"soup",
3337 	"sour",
3338 	"source",
3339 	"space",
3340 	"spade",
3341 	"span",
3342 	"spare",
3343 	"spark",
3344 	"sparse",
3345 	"spasm",
3346 	"spat",
3347 	"spate",
3348 	"speak",
3349 	"spear",
3350 	"speech",
3351 	"speed",
3352 	"speedy",
3353 	"spell",
3354 	"spend",
3355 	"sphere",
3356 	"spice",
3357 	"spicy",
3358 	"spider",
3359 	"spiky",
3360 	"spill",
3361 	"spin",
3362 	"spinal",
3363 	"spine",
3364 	"spiral",
3365 	"spirit",
3366 	"spit",
3367 	"spite",
3368 	"splash",
3369 	"split",
3370 	"spoil",
3371 	"spoke",
3372 	"sponge",
3373 	"spoon",
3374 	"sport",
3375 	"spot",
3376 	"spouse",
3377 	"spray",
3378 	"spread",
3379 	"spree",
3380 	"spring",
3381 	"sprint",
3382 	"spur",
3383 	"squad",
3384 	"square",
3385 	"squash",
3386 	"squat",
3387 	"squid",
3388 	"stab",
3389 	"stable",
3390 	"stack",
3391 	"staff",
3392 	"stage",
3393 	"stain",
3394 	"stair",
3395 	"stake",
3396 	"stale",
3397 	"stall",
3398 	"stamp",
3399 	"stance",
3400 	"stand",
3401 	"staple",
3402 	"star",
3403 	"starch",
3404 	"stare",
3405 	"stark",
3406 	"start",
3407 	"starve",
3408 	"state",
3409 	"static",
3410 	"statue",
3411 	"status",
3412 	"stay",
3413 	"stead",
3414 	"steady",
3415 	"steak",
3416 	"steal",
3417 	"steam",
3418 	"steel",
3419 	"steep",
3420 	"steer",
3421 	"stem",
3422 	"stench",
3423 	"step",
3424 	"stereo",
3425 	"stern",
3426 	"stew",
3427 	"stick",
3428 	"sticky",
3429 	"stiff",
3430 	"stifle",
3431 	"stigma",
3432 	"still",
3433 	"sting",
3434 	"stint",
3435 	"stir",
3436 	"stitch",
3437 	"stock",
3438 	"stocky",
3439 	"stone",
3440 	"stony",
3441 	"stool",
3442 	"stop",
3443 	"store",
3444 	"storm",
3445 	"stormy",
3446 	"story",
3447 	"stout",
3448 	"stove",
3449 	"strain",
3450 	"strait",
3451 	"strand",
3452 	"strap",
3453 	"strata",
3454 	"straw",
3455 	"stray",
3456 	"streak",
3457 	"stream",
3458 	"street",
3459 	"stress",
3460 	"strict",
3461 	"stride",
3462 	"strife",
3463 	"strike",
3464 	"string",
3465 	"strive",
3466 	"stroke",
3467 	"stroll",
3468 	"strong",
3469 	"stud",
3470 	"studio",
3471 	"study",
3472 	"stuff",
3473 	"stuffy",
3474 	"stunt",
3475 	"stupid",
3476 	"sturdy",
3477 	"style",
3478 	"submit",
3479 	"subtle",
3480 	"subtly",
3481 	"suburb",
3482 	"such",
3483 	"sudden",
3484 	"sue",
3485 	"suffer",
3486 	"sugar",
3487 	"suit",
3488 	"suite",
3489 	"suitor",
3490 	"sullen",
3491 	"sultan",
3492 	"sum",
3493 	"summer",
3494 	"summit",
3495 	"summon",
3496 	"sun",
3497 	"sunny",
3498 	"sunset",
3499 	"super",
3500 	"superb",
3501 	"supper",
3502 	"supple",
3503 	"supply",
3504 	"sure",
3505 	"surely",
3506 	"surf",
3507 	"surge",
3508 	"survey",
3509 	"suture",
3510 	"swamp",
3511 	"swan",
3512 	"swap",
3513 	"swarm",
3514 	"sway",
3515 	"swear",
3516 	"sweat",
3517 	"sweaty",
3518 	"sweep",
3519 	"sweet",
3520 	"swell",
3521 	"swift",
3522 	"swim",
3523 	"swine",
3524 	"swing",
3525 	"swirl",
3526 	"switch",
3527 	"sword",
3528 	"swore",
3529 	"symbol",
3530 	"synod",
3531 	"syntax",
3532 	"syrup",
3533 	"system",
3534 	"table",
3535 	"tablet",
3536 	"taboo",
3537 	"tacit",
3538 	"tackle",
3539 	"tact",
3540 	"tactic",
3541 	"tail",
3542 	"tailor",
3543 	"take",
3544 	"tale",
3545 	"talent",
3546 	"talk",
3547 	"tall",
3548 	"tally",
3549 	"tame",
3550 	"tandem",
3551 	"tangle",
3552 	"tank",
3553 	"tap",
3554 	"tape",
3555 	"target",
3556 	"tariff",
3557 	"tart",
3558 	"task",
3559 	"taste",
3560 	"tasty",
3561 	"tattoo",
3562 	"taut",
3563 	"tavern",
3564 	"tax",
3565 	"taxi",
3566 	"tea",
3567 	"teach",
3568 	"teak",
3569 	"team",
3570 	"tear",
3571 	"tease",
3572 	"tech",
3573 	"teeth",
3574 	"tell",
3575 	"temper",
3576 	"temple",
3577 	"tempo",
3578 	"tempt",
3579 	"ten",
3580 	"tenant",
3581 	"tend",
3582 	"tender",
3583 	"tendon",
3584 	"tennis",
3585 	"tenor",
3586 	"tense",
3587 	"tensor",
3588 	"tent",
3589 	"tenth",
3590 	"tenure",
3591 	"term",
3592 	"terror",
3593 	"test",
3594 	"text",
3595 	"than",
3596 	"thank",
3597 	"that",
3598 	"the",
3599 	"their",
3600 	"them",
3601 	"theme",
3602 	"then",
3603 	"thence",
3604 	"theory",
3605 	"there",
3606 	"these",
3607 	"thesis",
3608 	"they",
3609 	"thick",
3610 	"thief",
3611 	"thigh",
3612 	"thin",
3613 	"thing",
3614 	"think",
3615 	"third",
3616 	"thirst",
3617 	"thirty",
3618 	"this",
3619 	"thorn",
3620 	"those",
3621 	"though",
3622 	"thread",
3623 	"threat",
3624 	"three",
3625 	"thrill",
3626 	"thrive",
3627 	"throat",
3628 	"throne",
3629 	"throng",
3630 	"throw",
3631 	"thud",
3632 	"thug",
3633 	"thumb",
3634 	"thus",
3635 	"thyme",
3636 	"tick",
3637 	"ticket",
3638 	"tidal",
3639 	"tide",
3640 	"tidy",
3641 	"tie",
3642 	"tier",
3643 	"tiger",
3644 	"tight",
3645 	"tile",
3646 	"till",
3647 	"tilt",
3648 	"timber",
3649 	"time",
3650 	"timid",
3651 	"tin",
3652 	"tiny",
3653 	"tip",
3654 	"tissue",
3655 	"title",
3656 	"toad",
3657 	"toast",
3658 	"today",
3659 	"toilet",
3660 	"token",
3661 	"told",
3662 	"toll",
3663 	"tomato",
3664 	"tomb",
3665 	"tonal",
3666 	"tone",
3667 	"tongue",
3668 	"tonic",
3669 	"too",
3670 	"took",
3671 	"tool",
3672 	"tooth",
3673 	"top",
3674 	"topaz",
3675 	"topic",
3676 	"torch",
3677 	"torque",
3678 	"torso",
3679 	"tort",
3680 	"toss",
3681 	"total",
3682 	"touch",
3683 	"tough",
3684 	"tour",
3685 	"toward",
3686 	"towel",
3687 	"tower",
3688 	"town",
3689 	"toxic",
3690 	"toxin",
3691 	"trace",
3692 	"track",
3693 	"tract",
3694 	"trade",
3695 	"tragic",
3696 	"trail",
3697 	"train",
3698 	"trait",
3699 	"tram",
3700 	"trance",
3701 	"trap",
3702 	"trauma",
3703 	"travel",
3704 	"tray",
3705 	"tread",
3706 	"treat",
3707 	"treaty",
3708 	"treble",
3709 	"tree",
3710 	"trek",
3711 	"tremor",
3712 	"trench",
3713 	"trend",
3714 	"trendy",
3715 	"trial",
3716 	"tribal",
3717 	"tribe",
3718 	"trick",
3719 	"tricky",
3720 	"tried",
3721 	"trifle",
3722 	"trim",
3723 	"trio",
3724 	"trip",
3725 	"triple",
3726 	"troop",
3727 	"trophy",
3728 	"trot",
3729 	"trough",
3730 	"trout",
3731 	"truce",
3732 	"truck",
3733 	"true",
3734 	"truly",
3735 	"trunk",
3736 	"trust",
3737 	"truth",
3738 	"try",
3739 	"tsar",
3740 	"tube",
3741 	"tumble",
3742 	"tuna",
3743 	"tundra",
3744 	"tune",
3745 	"tung",
3746 	"tunic",
3747 	"tunnel",
3748 	"turban",
3749 	"turf",
3750 	"turn",
3751 	"turtle",
3752 	"tutor",
3753 	"tweed",
3754 	"twelve",
3755 	"twenty",
3756 	"twice",
3757 	"twin",
3758 	"twist",
3759 	"two",
3760 	"tycoon",
3761 	"tying",
3762 	"type",
3763 	"tyrant",
3764 	"ugly",
3765 	"ulcer",
3766 	"ultra",
3767 	"umpire",
3768 	"unable",
3769 	"uncle",
3770 	"under",
3771 	"uneasy",
3772 	"unfair",
3773 	"unify",
3774 	"union",
3775 	"unique",
3776 	"unit",
3777 	"unite",
3778 	"unity",
3779 	"unlike",
3780 	"unrest",
3781 	"unruly",
3782 	"until",
3783 	"update",
3784 	"upheld",
3785 	"uphill",
3786 	"uphold",
3787 	"upon",
3788 	"uproar",
3789 	"upset",
3790 	"upshot",
3791 	"uptake",
3792 	"upturn",
3793 	"upward",
3794 	"urban",
3795 	"urge",
3796 	"urgent",
3797 	"urging",
3798 	"usable",
3799 	"usage",
3800 	"use",
3801 	"useful",
3802 	"user",
3803 	"usual",
3804 	"utmost",
3805 	"utter",
3806 	"vacant",
3807 	"vacuum",
3808 	"vague",
3809 	"vain",
3810 	"valet",
3811 	"valid",
3812 	"valley",
3813 	"value",
3814 	"valve",
3815 	"van",
3816 	"vanish",
3817 	"vanity",
3818 	"vary",
3819 	"vase",
3820 	"vast",
3821 	"vat",
3822 	"vault",
3823 	"vector",
3824 	"veil",
3825 	"vein",
3826 	"velvet",
3827 	"vendor",
3828 	"veneer",
3829 	"venom",
3830 	"vent",
3831 	"venue",
3832 	"verb",
3833 	"verbal",
3834 	"verge",
3835 	"verify",
3836 	"verity",
3837 	"verse",
3838 	"versus",
3839 	"very",
3840 	"vessel",
3841 	"vest",
3842 	"veto",
3843 	"via",
3844 	"viable",
3845 	"vicar",
3846 	"vice",
3847 	"victim",
3848 	"victor",
3849 	"video",
3850 	"view",
3851 	"vigil",
3852 	"vile",
3853 	"villa",
3854 	"vine",
3855 	"vinyl",
3856 	"viola",
3857 	"violet",
3858 	"violin",
3859 	"viral",
3860 	"virtue",
3861 	"virus",
3862 	"visa",
3863 	"vision",
3864 	"visit",
3865 	"visual",
3866 	"vital",
3867 	"vivid",
3868 	"vocal",
3869 	"vodka",
3870 	"vogue",
3871 	"voice",
3872 	"void",
3873 	"volley",
3874 	"volume",
3875 	"vomit",
3876 	"vote",
3877 	"vowel",
3878 	"voyage",
3879 	"vulgar",
3880 	"wade",
3881 	"wage",
3882 	"waist",
3883 	"wait",
3884 	"waiter",
3885 	"wake",
3886 	"walk",
3887 	"walker",
3888 	"wall",
3889 	"wallet",
3890 	"walnut",
3891 	"wander",
3892 	"want",
3893 	"war",
3894 	"warden",
3895 	"warm",
3896 	"warmth",
3897 	"warn",
3898 	"warp",
3899 	"wary",
3900 	"was",
3901 	"wash",
3902 	"wasp",
3903 	"waste",
3904 	"watch",
3905 	"water",
3906 	"watery",
3907 	"wave",
3908 	"way",
3909 	"weak",
3910 	"weaken",
3911 	"wealth",
3912 	"weapon",
3913 	"wear",
3914 	"weary",
3915 	"wedge",
3916 	"wee",
3917 	"week",
3918 	"weekly",
3919 	"weep",
3920 	"weight",
3921 	"weird",
3922 	"well",
3923 	"were",
3924 	"wet",
3925 	"whale",
3926 	"wharf",
3927 	"what",
3928 	"wheat",
3929 	"wheel",
3930 	"when",
3931 	"whence",
3932 	"where",
3933 	"which",
3934 	"whiff",
3935 	"whig",
3936 	"while",
3937 	"whim",
3938 	"whip",
3939 	"who",
3940 	"whole",
3941 	"wholly",
3942 	"whom",
3943 	"whose",
3944 	"why",
3945 	"wide",
3946 	"widely",
3947 	"widen",
3948 	"wider",
3949 	"widow",
3950 	"width",
3951 	"wife",
3952 	"wild",
3953 	"wildly",
3954 	"wilful",
3955 	"will",
3956 	"willow",
3957 	"win",
3958 	"wind",
3959 	"window",
3960 	"windy",
3961 	"wine",
3962 	"wing",
3963 	"wink",
3964 	"winner",
3965 	"winter",
3966 	"wipe",
3967 	"wire",
3968 	"wisdom",
3969 	"wise",
3970 	"wish",
3971 	"wit",
3972 	"witch",
3973 	"with",
3974 	"within",
3975 	"witty",
3976 	"wizard",
3977 	"woke",
3978 	"wolf",
3979 	"wolves",
3980 	"woman",
3981 	"womb",
3982 	"won",
3983 	"wonder",
3984 	"wood",
3985 	"wooden",
3986 	"woods",
3987 	"woody",
3988 	"wool",
3989 	"word",
3990 	"work",
3991 	"worker",
3992 	"world",
3993 	"worm",
3994 	"worry",
3995 	"worse",
3996 	"worst",
3997 	"worth",
3998 	"worthy",
3999 	"would",
4000 	"wound",
4001 	"wrap",
4002 	"wrath",
4003 	"wreath",
4004 	"wreck",
4005 	"wright",
4006 	"wrist",
4007 	"writ",
4008 	"write",
4009 	"writer",
4010 	"wrong",
4011 	"xerox",
4012 	"yacht",
4013 	"yard",
4014 	"yarn",
4015 	"yeah",
4016 	"year",
4017 	"yeast",
4018 	"yet",
4019 	"yield",
4020 	"yogurt",
4021 	"yolk",
4022 	"you",
4023 	"young",
4024 	"your",
4025 	"youth",
4026 	"zeal",
4027 	"zebra",
4028 	"zenith",
4029 	"zero",
4030 	"zigzag",
4031 	"zinc",
4032 	"zombie",
4033 	"zone",
4034 	"Africa", /* we had "Europe" */
4035 	"Asia",
4036 	"South", /* we had the other 3, but not this one */
4037 	"anyone", /* some previously missed very common English words */
4038 	"born",
4039 	"its",
4040 	"little",
4041 	"man",
4042 	"new",
4043 	"news",
4044 	"others",
4045 	"yes",
4046 	"admin", /* words common in computing */
4047 	"avatar",
4048 	"codec",
4049 	"laptop",
4050 	"online",
4051 	"tweet",
4052 	"aisle", /* BIP-0039 */
4053 	"amused",
4054 	"arena",
4055 	"armed",
4056 	"banner",
4057 	"boring",
4058 	"buddy",
4059 	"bunker",
4060 	"burger",
4061 	"cannon",
4062 	"casino",
4063 	"churn",
4064 	"clog",
4065 	"clump",
4066 	"coyote",
4067 	"cram",
4068 	"crouch",
4069 	"daring",
4070 	"embody",
4071 	"enact",
4072 	"enrich",
4073 	"enroll",
4074 	"erase",
4075 	"erupt",
4076 	"ethics",
4077 	"fiber",
4078 	"flip",
4079 	"gym",
4080 	"hen",
4081 	"hip",
4082 	"hub",
4083 	"inhale",
4084 	"jar",
4085 	"jeans",
4086 	"kit",
4087 	"kiwi",
4088 	"lab",
4089 	"lumber",
4090 	"lyrics",
4091 	"mango",
4092 	"marine",
4093 	"math",
4094 	"mixed",
4095 	"muffin",
4096 	"naive",
4097 	"net",
4098 	"noodle",
4099 	"nut",
4100 	"odor",
4101 	"panda",
4102 	"peanut",
4103 	"pet",
4104 	"pluck",
4105 	"purity",
4106 	"ranch",
4107 	"renew",
4108 	"reopen",
4109 	"rib",
4110 	"rookie",
4111 	"rubber",
4112 	"rug",
4113 	"salon",
4114 	"scheme",
4115 	"setup",
4116 	"shed",
4117 	"shove",
4118 	"skate",
4119 	"ski",
4120 	"slush",
4121 	"sniff",
4122 	"spawn",
4123 	"spike",
4124 	"spy",
4125 	"stairs",
4126 	"subway",
4127 	"tag",
4128 	"tired",
4129 	"toe",
4130 	"topple",
4131 	"toy",
4132 	"trash",
4133 	"undo",
4134 	"unfold",
4135 	"unlock",
4136 	"unveil",
4137 	"upper",
4138 	"used",
4139 	"wagon",
4140 	"weasel",
4141 	"web",
4142 	"zoo",
4143 	"cookie", /* more previously missed common English words */
4144 	"cop",
4145 	"cops",
4146 	"dig",
4147 	"digger",
4148 	"dining",
4149 	"extent",
4150 	"gifted",
4151 	"hunter",
4152 	"living",
4153 	"lots",
4154 	"makeup",
4155 	"nearby",
4156 	"nod",
4157 	"odds",
4158 	"pan",
4159 	"pant",
4160 	"porch",
4161 	"rating",
4162 	"sales",
4163 	"saving",
4164 	"scared",
4165 	"sin",
4166 	"sinner",
4167 	"sins",
4168 	"terms",
4169 	"thanks",
4170 	"united",
4171 	"unless",
4172 	"viewer",
4173 	"voter",
4174 	"voters",
4175 	"weigh",
4176 	"works",
4177 	"yell",
4178 	"yours",
4179 	"arms", /* gutenberg-19xx-lowercase-words-1000plus.txt top 1000 */
4180 	"asked",
4181 	"became",
4182 	"been",
4183 	"began",
4184 	"books",
4185 	"boys",
4186 	"called",
4187 	"cannot",
4188 	"closed",
4189 	"comes",
4190 	"coming",
4191 	"days",
4192 	"died",
4193 	"does",
4194 	"doing",
4195 	"drawn",
4196 	"ears",
4197 	"eyes",
4198 	"faces",
4199 	"fallen",
4200 	"fixed",
4201 	"girls",
4202 	"giving",
4203 	"goes",
4204 	"going",
4205 	"hands",
4206 	"having",
4207 	"horses",
4208 	"hours",
4209 	"houses",
4210 	"knows",
4211 	"laid",
4212 	"leaves",
4213 	"legs",
4214 	"lifted",
4215 	"liked",
4216 	"lines",
4217 	"lips",
4218 	"lived",
4219 	"lives",
4220 	"looked",
4221 	"looks",
4222 	"loved",
4223 	"makes",
4224 	"making",
4225 	"means",
4226 	"men",
4227 	"miles",
4228 	"months",
4229 	"moved",
4230 	"moving",
4231 	"needed",
4232 	"nodded",
4233 	"opened",
4234 	"papers",
4235 	"passed",
4236 	"paused",
4237 	"picked",
4238 	"placed",
4239 	"places",
4240 	"played",
4241 	"pounds",
4242 	"pulled",
4243 	"raised",
4244 	"ran",
4245 	"rooms",
4246 	"sat",
4247 	"saw",
4248 	"saying",
4249 	"says",
4250 	"seemed",
4251 	"seems",
4252 	"seen",
4253 	"showed",
4254 	"smiled",
4255 	"spent",
4256 	"stared",
4257 	"steps",
4258 	"stood",
4259 	"struck",
4260 	"taken",
4261 	"taking",
4262 	"talked",
4263 	"tears",
4264 	"things",
4265 	"threw",
4266 	"times",
4267 	"trees",
4268 	"trying",
4269 	"turned",
4270 	"waited",
4271 	"walked",
4272 	"walls",
4273 	"wanted",
4274 	"ways",
4275 	"weeks",
4276 	"went",
4277 	"wished",
4278 	"women",
4279 	"words",
4280 	"wore",
4281 	"worked",
4282 	"wrote",
4283 	"years",
4284 	"asking", /* gutenberg-19xx-lowercase-words-1000plus.txt top 2000 */
4285 	"begun",
4286 	"birds",
4287 	"bodies",
4288 	"bones",
4289 	"boots",
4290 	"bowed",
4291 	"built",
4292 	"calls",
4293 	"cards",
4294 	"cared",
4295 	"cases",
4296 	"caused",
4297 	"ceased",
4298 	"chairs",
4299 	"cheeks",
4300 	"clouds",
4301 	"crying",
4302 	"damned",
4303 	"dared",
4304 	"dim",
4305 	"dogs",
4306 	"doors",
4307 	"dreams",
4308 	"driven",
4309 	"ended",
4310 	"ends",
4311 	"events",
4312 	"faced",
4313 	"facts",
4314 	"faded",
4315 	"failed",
4316 	"feared",
4317 	"fields",
4318 	"fired",
4319 	"flying",
4320 	"forced",
4321 	"forgot",
4322 	"formed",
4323 	"fought",
4324 	"gazed",
4325 	"gets",
4326 	"gives",
4327 	"guests",
4328 	"guns",
4329 	"handed",
4330 	"hated",
4331 	"heads",
4332 	"hearts",
4333 	"helped",
4334 	"hers",
4335 	"hills",
4336 	"hoped",
4337 	"ideas",
4338 	"joined",
4339 	"jumped",
4340 	"kissed",
4341 	"knees",
4342 	"ladies",
4343 	"larger",
4344 	"laws",
4345 	"lies",
4346 	"lights",
4347 	"locked",
4348 	"marked",
4349 	"minds",
4350 	"missed",
4351 	"named",
4352 	"names",
4353 	"needs",
4354 	"nerves",
4355 	"nights",
4356 	"noted",
4357 	"notes",
4358 	"ones",
4359 	"orders",
4360 	"parts",
4361 	"pieces",
4362 	"plans",
4363 	"points",
4364 	"powers",
4365 	"proved",
4366 	"pushed",
4367 	"rang",
4368 	"riding",
4369 	"rising",
4370 	"rocks",
4371 	"rolled",
4372 	"rushed",
4373 	"sank",
4374 	"saved",
4375 	"seated",
4376 	"seized",
4377 	"served",
4378 	"ships",
4379 	"shoes",
4380 	"shown",
4381 	"sides",
4382 	"sighed",
4383 	"signs",
4384 	"slept",
4385 	"sought",
4386 	"sounds",
4387 	"spoken",
4388 	"sprang",
4389 	"stars",
4390 	"stayed",
4391 	"stones",
4392 	"stuck",
4393 	"swept",
4394 	"swung",
4395 	"takes",
4396 	"taught",
4397 	"thinks",
4398 	"thrown",
4399 	"tied",
4400 	"turns",
4401 	"voices",
4402 	"wants",
4403 	"waters",
4404 	"whilst",
4405 	"worn",
4406 	"yards",
4407 	"acted", /* gutenberg-19xx-lowercase-words-1000plus.txt top 3000 */
4408 	"acting",
4409 	"ages",
4410 	"arose",
4411 	"banks",
4412 	"beaten",
4413 	"beg",
4414 	"begged",
4415 	"begins",
4416 	"beings",
4417 	"blank",
4418 	"boats",
4419 	"bored",
4420 	"brains",
4421 	"brow",
4422 	"bushes",
4423 	"cars",
4424 	"cent",
4425 	"cities",
4426 	"coldly",
4427 	"cries",
4428 	"cursed",
4429 	"dashed",
4430 	"deeper",
4431 	"depths",
4432 	"duties",
4433 	"easier",
4434 	"eating",
4435 	"eggs",
4436 	"facing",
4437 	"fears",
4438 	"feels",
4439 	"finds",
4440 	"fires",
4441 	"fitted",
4442 	"folded",
4443 	"folks",
4444 	"forces",
4445 	"forms",
4446 	"gained",
4447 	"gasped",
4448 	"gates",
4449 	"gazing",
4450 	"gods",
4451 	"goods",
4452 	"grimly",
4453 	"habits",
4454 	"halted",
4455 	"hatred",
4456 	"heels",
4457 	"hid",
4458 	"hiding",
4459 	"hopes",
4460 	"hoping",
4461 	"inches",
4462 	"jewels",
4463 	"keeps",
4464 	"kinds",
4465 	"landed",
4466 	"lands",
4467 	"likes",
4468 	"limbs",
4469 	"longed",
4470 	"losing",
4471 	"loves",
4472 	"loving",
4473 	"marks",
4474 	"mob",
4475 	"ours",
4476 	"packed",
4477 	"pages",
4478 	"parted",
4479 	"paying",
4480 	"posted",
4481 	"poured",
4482 	"rested",
4483 	"rights",
4484 	"risen",
4485 	"roads",
4486 	"roots",
4487 	"roses",
4488 	"roused",
4489 	"ruined",
4490 	"runs",
4491 	"sailed",
4492 	"sang",
4493 	"sees",
4494 	"senses",
4495 	"shone",
4496 	"shows",
4497 	"signed",
4498 	"sons",
4499 	"sorts",
4500 	"souls",
4501 	"stands",
4502 	"stated",
4503 	"stole",
4504 	"stolen",
4505 	"strode",
4506 	"tables",
4507 	"tells",
4508 	"tones",
4509 	"tore",
4510 	"torn",
4511 	"towns",
4512 	"tracks",
4513 	"troops",
4514 	"urged",
4515 	"using",
4516 	"views",
4517 	"warned",
4518 	"washed",
4519 	"wasted",
4520 	"waved",
4521 	"waves",
4522 	"wicked",
4523 	"winds",
4524 	"wings",
4525 	"wishes",
4526 	"wives",
4527 	"acres", /* gutenberg-19xx-lowercase-words-1000plus.txt top 4000 */
4528 	"acts",
4529 	"adding",
4530 	"aged",
4531 	"amazed",
4532 	"apt",
4533 	"ashes",
4534 	"awoke",
4535 	"backed",
4536 	"backs",
4537 	"bade",
4538 	"bags",
4539 	"bars",
4540 	"based",
4541 	"beasts",
4542 	"beds",
4543 	"bells",
4544 	"bills",
4545 	"bits",
4546 	"blown",
4547 	"blows",
4548 	"borne",
4549 	"boxes",
4550 	"brings",
4551 	"brows",
4552 	"buying",
4553 	"carved",
4554 	"causes",
4555 	"choked",
4556 	"cliffs",
4557 	"coolly",
4558 	"cows",
4559 	"crops",
4560 	"danced",
4561 	"dealt",
4562 	"denied",
4563 	"dimly",
4564 	"dishes",
4565 	"dismay",
4566 	"doubts",
4567 	"drinks",
4568 	"drops",
4569 	"earned",
4570 	"echoed",
4571 	"errand",
4572 	"falls",
4573 	"finest",
4574 	"flames",
4575 	"flies",
4576 	"fools",
4577 	"games",
4578 	"ghosts",
4579 	"gifts",
4580 	"gloves",
4581 	"groups",
4582 	"grows",
4583 	"hanged",
4584 	"hats",
4585 	"hay",
4586 	"headed",
4587 	"hired",
4588 	"holds",
4589 	"holes",
4590 	"homes",
4591 	"intent",
4592 	"issued",
4593 	"jerked",
4594 	"keys",
4595 	"kicked",
4596 	"lamps",
4597 	"lasted",
4598 	"laying",
4599 	"leaped",
4600 	"leapt",
4601 	"liking",
4602 	"lined",
4603 	"loaded",
4604 	"masses",
4605 	"meals",
4606 	"obeyed",
4607 	"outfit",
4608 	"owned",
4609 	"pains",
4610 	"passes",
4611 	"pearls",
4612 	"peered",
4613 	"piled",
4614 	"plains",
4615 	"plants",
4616 	"plays",
4617 	"porter",
4618 	"prayed",
4619 	"puts",
4620 	"races",
4621 	"racing",
4622 	"ragged",
4623 	"rays",
4624 	"rings",
4625 	"roared",
4626 	"robbed",
4627 	"rows",
4628 	"rubbed",
4629 	"ruins",
4630 	"rules",
4631 	"scenes",
4632 	"seas",
4633 	"seats",
4634 	"sets",
4635 	"shaken",
4636 	"shared",
4637 	"sheets",
4638 	"shops",
4639 	"sits",
4640 	"skirts",
4641 	"smiles",
4642 	"smoked",
4643 	"songs",
4644 	"speaks",
4645 	"sticks",
4646 	"stores",
4647 	"sunk",
4648 	"tales",
4649 	"talks",
4650 	"tapped",
4651 	"theirs",
4652 	"tossed",
4653 	"tribes",
4654 	"tricks",
4655 	"unseen",
4656 	"veins",
4657 	"viewed",
4658 	"visits",
4659 	"wages",
4660 	"walks",
4661 	"warmly",
4662 	"waving",
4663 	"wheels",
4664 	"wiped",
4665 	"wits",
4666 	"yelled",
4667 	"yonder",
4668 	"agents", /* the rest of gutenberg-19xx-lowercase-words-1000plus.txt */
4669 	"alas",
4670 	"argued",
4671 	"arts",
4672 	"asks",
4673 	"behold",
4674 	"boiled",
4675 	"boldly",
4676 	"cares",
4677 	"chaps",
4678 	"claims",
4679 	"crimes",
4680 	"crowds",
4681 	"curled",
4682 	"darted",
4683 	"dazed",
4684 	"dined",
4685 	"dug",
4686 	"firing",
4687 	"flowed",
4688 	"francs",
4689 	"gaiety",
4690 	"gaily",
4691 	"git",
4692 	"gladly",
4693 	"glared",
4694 	"hinted",
4695 	"hunted",
4696 	"ink",
4697 	"jobs",
4698 	"judged",
4699 	"keenly",
4700 	"kings",
4701 	"knelt",
4702 	"lacked",
4703 	"leads",
4704 	"morrow",
4705 	"nails",
4706 	"noises",
4707 	"novels",
4708 	"owed",
4709 	"palms",
4710 	"patted",
4711 	"plates",
4712 	"poets",
4713 	"prey",
4714 	"prices",
4715 	"quoted",
4716 	"ranks",
4717 	"risks",
4718 	"rivers",
4719 	"rum",
4720 	"sealed",
4721 	"shaped",
4722 	"shares",
4723 	"shells",
4724 	"shots",
4725 	"spared",
4726 	"spots",
4727 	"starts",
4728 	"states",
4729 	"suited",
4730 	"sworn",
4731 	"tents",
4732 	"tools",
4733 	"traced",
4734 	"traces",
4735 	"trains",
4736 	"tramp",
4737 	"varied",
4738 	"veiled",
4739 	"waking",
4740 	"wax",
4741 	"wept",
4742 	"wiser",
4743 	"worlds",
4744 	"writes",
4745 	"affix", /* eff_short_wordlist_1.txt */
4746 	"aging",
4747 	"aids",
4748 	"ajar",
4749 	"alias",
4750 	"aloe",
4751 	"aloha",
4752 	"amino",
4753 	"aqua",
4754 	"bagel",
4755 	"baked",
4756 	"balmy",
4757 	"banjo",
4758 	"bash",
4759 	"bask",
4760 	"bats",
4761 	"blimp",
4762 	"bloat",
4763 	"blob",
4764 	"blog",
4765 	"blurt",
4766 	"bok",
4767 	"boned",
4768 	"boney",
4769 	"botch",
4770 	"boxer",
4771 	"bribe",
4772 	"broil",
4773 	"bud",
4774 	"bunt",
4775 	"cadet",
4776 	"cameo",
4777 	"canon",
4778 	"carve",
4779 	"cedar",
4780 	"chili",
4781 	"chomp",
4782 	"chow",
4783 	"chuck",
4784 	"chump",
4785 	"chute",
4786 	"cinch",
4787 	"clamp",
4788 	"cleat",
4789 	"cleft",
4790 	"clink",
4791 	"cod",
4792 	"cola",
4793 	"coma",
4794 	"comma",
4795 	"cot",
4796 	"cozy",
4797 	"cramp",
4798 	"crank",
4799 	"crave",
4800 	"creme",
4801 	"crepe",
4802 	"crib",
4803 	"crumb",
4804 	"cub",
4805 	"cupid",
4806 	"curvy",
4807 	"cushy",
4808 	"dab",
4809 	"dandy",
4810 	"darn",
4811 	"dart",
4812 	"debug",
4813 	"decaf",
4814 	"decal",
4815 	"decoy",
4816 	"denim",
4817 	"dent",
4818 	"dill",
4819 	"dime",
4820 	"diner",
4821 	"dingy",
4822 	"ditzy",
4823 	"dodge",
4824 	"donut",
4825 	"dot",
4826 	"dowry",
4827 	"doze",
4828 	"drab",
4829 	"drone",
4830 	"droop",
4831 	"dude",
4832 	"duo",
4833 	"eats",
4834 	"ebay",
4835 	"ebony",
4836 	"ebook",
4837 	"eel",
4838 	"eject",
4839 	"elf",
4840 	"elk",
4841 	"elm",
4842 	"elope",
4843 	"emu",
4844 	"etch",
4845 	"fable",
4846 	"fang",
4847 	"fax",
4848 	"femur",
4849 	"finch",
4850 	"flaky",
4851 	"fling",
4852 	"flop",
4853 	"floss",
4854 	"foe",
4855 	"folic",
4856 	"fray",
4857 	"frill",
4858 	"frisk",
4859 	"froth",
4860 	"froze",
4861 	"gag",
4862 	"gains",
4863 	"gecko",
4864 	"geek",
4865 	"gem",
4866 	"gig",
4867 	"gills",
4868 	"giver",
4869 	"gooey",
4870 	"goofy",
4871 	"gore",
4872 	"grope",
4873 	"growl",
4874 	"grub",
4875 	"gulp",
4876 	"gummy",
4877 	"gush",
4878 	"halo",
4879 	"heave",
4880 	"herbs",
4881 	"hug",
4882 	"hula",
4883 	"hump",
4884 	"hunk",
4885 	"icy",
4886 	"igloo",
4887 	"ion",
4888 	"ivy",
4889 	"jab",
4890 	"jam",
4891 	"jaws",
4892 	"jiffy",
4893 	"jog",
4894 	"jot",
4895 	"junky",
4896 	"juror",
4897 	"keg",
4898 	"kilt",
4899 	"kitty",
4900 	"koala",
4901 	"kung",
4902 	"ladle",
4903 	"lair",
4904 	"lapel",
4905 	"lash",
4906 	"lasso",
4907 	"lilac",
4908 	"lily",
4909 	"limes",
4910 	"lint",
4911 	"lurch",
4912 	"lurk",
4913 	"mace",
4914 	"mama",
4915 	"mardi",
4916 	"mash",
4917 	"mocha",
4918 	"mold",
4919 	"mop",
4920 	"morse",
4921 	"motto",
4922 	"mousy",
4923 	"mower",
4924 	"mug",
4925 	"mulch",
4926 	"mull",
4927 	"mumbo",
4928 	"mural",
4929 	"muse",
4930 	"musky",
4931 	"nacho",
4932 	"nag",
4933 	"nanny",
4934 	"nap",
4935 	"nerd",
4936 	"nutty",
4937 	"oat",
4938 	"ooze",
4939 	"opal",
4940 	"opt",
4941 	"ouch",
4942 	"pager",
4943 	"pants",
4944 	"panty",
4945 	"pasta",
4946 	"payer",
4947 	"pecan",
4948 	"pep",
4949 	"perky",
4950 	"perm",
4951 	"petal",
4952 	"petri",
4953 	"plaza",
4954 	"plow",
4955 	"poach",
4956 	"pod",
4957 	"pogo",
4958 	"poise",
4959 	"poker",
4960 	"polio",
4961 	"polka",
4962 	"poser",
4963 	"pout",
4964 	"prank",
4965 	"prong",
4966 	"props",
4967 	"prude",
4968 	"pry",
4969 	"pug",
4970 	"puma",
4971 	"purr",
4972 	"quack",
4973 	"quill",
4974 	"rabid",
4975 	"rake",
4976 	"rant",
4977 	"ream",
4978 	"recap",
4979 	"remix",
4980 	"repay",
4981 	"repel",
4982 	"rerun",
4983 	"reset",
4984 	"rigor",
4985 	"ritzy",
4986 	"romp",
4987 	"runny",
4988 	"rut",
4989 	"salsa",
4990 	"santa",
4991 	"savor",
4992 	"sax",
4993 	"scam",
4994 	"scoff",
4995 	"scold",
4996 	"scoop",
4997 	"scoot",
4998 	"scowl",
4999 	"scuba",
5000 	"scuff",
5001 	"sedan",
5002 	"sepia",
5003 	"shack",
5004 	"showy",
5005 	"shred",
5006 	"shun",
5007 	"shush",
5008 	"sift",
5009 	"silo",
5010 	"sip",
5011 	"skew",
5012 	"skid",
5013 	"skier",
5014 	"skies",
5015 	"skit",
5016 	"slash",
5017 	"slaw",
5018 	"sled",
5019 	"sleet",
5020 	"slob",
5021 	"slurp",
5022 	"smirk",
5023 	"smog",
5024 	"snare",
5025 	"snarl",
5026 	"sneer",
5027 	"snore",
5028 	"snort",
5029 	"snout",
5030 	"snub",
5031 	"snuff",
5032 	"spew",
5033 	"spied",
5034 	"spiny",
5035 	"spoof",
5036 	"spool",
5037 	"spout",
5038 	"stank",
5039 	"stash",
5040 	"stays",
5041 	"stomp",
5042 	"stoop",
5043 	"strut",
5044 	"stump",
5045 	"stung",
5046 	"suds",
5047 	"sulk",
5048 	"sushi",
5049 	"swab",
5050 	"swipe",
5051 	"swoop",
5052 	"tacky",
5053 	"taco",
5054 	"talon",
5055 	"tamer",
5056 	"taper",
5057 	"taps",
5058 	"tarot",
5059 	"taunt",
5060 	"thaw",
5061 	"theft",
5062 	"thong",
5063 	"throb",
5064 	"thump",
5065 	"tiara",
5066 	"tint",
5067 	"tug",
5068 	"tulip",
5069 	"tummy",
5070 	"tusk",
5071 	"tutu",
5072 	"tux",
5073 	"tweak",
5074 	"twine",
5075 	"twins",
5076 	"twirl",
5077 	"uncut",
5078 	"untie",
5079 	"usher",
5080 	"vegan",
5081 	"visor",
5082 	"vixen",
5083 	"volt",
5084 	"wad",
5085 	"wafer",
5086 	"wager",
5087 	"wand",
5088 	"wavy",
5089 	"whoop",
5090 	"wick",
5091 	"wifi",
5092 	"wilt",
5093 	"wimp",
5094 	"wired",
5095 	"wiry",
5096 	"wispy",
5097 	"wok",
5098 	"woozy",
5099 	"woven",
5100 	"yahoo",
5101 	"yam",
5102 	"yelp",
5103 	"yodel",
5104 	"yoga",
5105 	"yummy",
5106 	"zesty",
5107 	"zippy",
5108 	"zoom",
5109 	"abacus", /* eff_large_wordlist.txt */
5110 	"affirm",
5111 	"aflame",
5112 	"afoot",
5113 	"ahoy",
5114 	"aliens",
5115 	"alto",
5116 	"alumni",
5117 	"amends",
5118 	"amigo",
5119 	"amply",
5120 	"amuck",
5121 	"amulet",
5122 	"amuser",
5123 	"anemia",
5124 	"anemic",
5125 	"angled",
5126 	"angler",
5127 	"angles",
5128 	"anime",
5129 	"annex",
5130 	"antics",
5131 	"antler",
5132 	"antsy",
5133 	"anvil",
5134 	"aorta",
5135 	"apache",
5136 	"aptly",
5137 	"arming",
5138 	"armory",
5139 	"ascend",
5140 	"ashy",
5141 	"askew",
5142 	"aspire",
5143 	"atop",
5144 	"atrium",
5145 	"attest",
5146 	"attire",
5147 	"autism",
5148 	"awning",
5149 	"awry",
5150 	"babble",
5151 	"babied",
5152 	"baboon",
5153 	"backer",
5154 	"badass",
5155 	"baffle",
5156 	"bagful",
5157 	"bagged",
5158 	"baggie",
5159 	"baking",
5160 	"banish",
5161 	"banked",
5162 	"banker",
5163 	"banter",
5164 	"barbed",
5165 	"barman",
5166 	"basics",
5167 	"batboy",
5168 	"bauble",
5169 	"blah",
5170 	"blazer",
5171 	"bleach",
5172 	"bleep",
5173 	"bling",
5174 	"blinks",
5175 	"bluish",
5176 	"blurb",
5177 	"blurry",
5178 	"bobbed",
5179 	"bobble",
5180 	"bobcat",
5181 	"bogged",
5182 	"boggle",
5183 	"bonded",
5184 	"bonsai",
5185 	"booted",
5186 	"bootie",
5187 	"boozy",
5188 	"borax",
5189 	"botany",
5190 	"bouncy",
5191 	"boxcar",
5192 	"boxing",
5193 	"boxy",
5194 	"breezy",
5195 	"briar",
5196 	"broker",
5197 	"bronco",
5198 	"browse",
5199 	"brunch",
5200 	"brunt",
5201 	"bubbly",
5202 	"bucked",
5203 	"buffed",
5204 	"buffer",
5205 	"bulgur",
5206 	"bungee",
5207 	"bunion",
5208 	"busboy",
5209 	"busily",
5210 	"cabana",
5211 	"cabbie",
5212 	"cackle",
5213 	"cacti",
5214 	"caddie",
5215 	"caddy",
5216 	"camper",
5217 	"canned",
5218 	"canola",
5219 	"capped",
5220 	"carat",
5221 	"carded",
5222 	"caring",
5223 	"carton",
5224 	"casing",
5225 	"casket",
5226 	"catchy",
5227 	"catnap",
5228 	"catnip",
5229 	"catsup",
5230 	"catty",
5231 	"caucus",
5232 	"caviar",
5233 	"cavity",
5234 	"chafe",
5235 	"chaste",
5236 	"chatty",
5237 	"cheesy",
5238 	"chemo",
5239 	"cherub",
5240 	"chevy",
5241 	"chewer",
5242 	"chewy",
5243 	"chimp",
5244 	"chirpy",
5245 	"chive",
5246 	"choosy",
5247 	"chubby",
5248 	"chug",
5249 	"chummy",
5250 	"citric",
5251 	"citrus",
5252 	"clamor",
5253 	"clang",
5254 	"clench",
5255 	"clique",
5256 	"clover",
5257 	"clunky",
5258 	"cobweb",
5259 	"coerce",
5260 	"collie",
5261 	"comfy",
5262 	"conch",
5263 	"copied",
5264 	"copier",
5265 	"coping",
5266 	"cornea",
5267 	"corned",
5268 	"corny",
5269 	"corral",
5270 	"corset",
5271 	"cozily",
5272 	"crayon",
5273 	"crazed",
5274 	"crease",
5275 	"creole",
5276 	"crier",
5277 	"crimp",
5278 	"cringe",
5279 	"crispy",
5280 	"croak",
5281 	"crock",
5282 	"croon",
5283 	"crummy",
5284 	"cuddle",
5285 	"cuddly",
5286 	"cupped",
5287 	"curdle",
5288 	"curing",
5289 	"curler",
5290 	"curly",
5291 	"curtly",
5292 	"curtsy",
5293 	"cusp",
5294 	"cussed",
5295 	"cymbal",
5296 	"dainty",
5297 	"dander",
5298 	"dangle",
5299 	"dares",
5300 	"dating",
5301 	"daybed",
5302 	"deacon",
5303 	"debunk",
5304 	"deceit",
5305 	"decode",
5306 	"deduct",
5307 	"deem",
5308 	"deepen",
5309 	"deface",
5310 	"defame",
5311 	"defile",
5312 	"defog",
5313 	"deftly",
5314 	"defuse",
5315 	"deluge",
5316 	"deluxe",
5317 	"demote",
5318 	"deport",
5319 	"depose",
5320 	"derail",
5321 	"deuce",
5322 	"diaper",
5323 	"dicing",
5324 	"dilute",
5325 	"dimmed",
5326 	"dimmer",
5327 	"dimple",
5328 	"dingo",
5329 	"dipped",
5330 	"dipper",
5331 	"disarm",
5332 	"disown",
5333 	"ditto",
5334 	"diving",
5335 	"doable",
5336 	"dodgy",
5337 	"doily",
5338 	"dollop",
5339 	"doodle",
5340 	"doozy",
5341 	"dork",
5342 	"dosage",
5343 	"dotted",
5344 	"douche",
5345 	"dreamt",
5346 	"dreamy",
5347 	"drench",
5348 	"drier",
5349 	"drippy",
5350 	"drool",
5351 	"drudge",
5352 	"dubbed",
5353 	"ducky",
5354 	"duffel",
5355 	"dugout",
5356 	"duh",
5357 	"duller",
5358 	"dupe",
5359 	"duplex",
5360 	"duvet",
5361 	"dweeb",
5362 	"earful",
5363 	"earthy",
5364 	"earwig",
5365 	"easing",
5366 	"eatery",
5367 	"ecard",
5368 	"eclair",
5369 	"edging",
5370 	"edgy",
5371 	"egging",
5372 	"eggnog",
5373 	"elated",
5374 	"elixir",
5375 	"ember",
5376 	"emboss",
5377 	"emcee",
5378 	"emote",
5379 	"encode",
5380 	"encore",
5381 	"ending",
5382 	"engulf",
5383 	"enrage",
5384 	"entity",
5385 	"entomb",
5386 	"entrap",
5387 	"entree",
5388 	"erased",
5389 	"eraser",
5390 	"eskimo",
5391 	"ether",
5392 	"exes",
5393 	"exhale",
5394 	"exhume",
5395 	"expel",
5396 	"expend",
5397 	"extras",
5398 	"fading",
5399 	"faucet",
5400 	"fedora",
5401 	"feisty",
5402 	"feline",
5403 	"fender",
5404 	"ferret",
5405 	"ferris",
5406 	"fervor",
5407 	"fester",
5408 	"filing",
5409 	"finer",
5410 	"flail",
5411 	"flashy",
5412 	"flatly",
5413 	"flier",
5414 	"flinch",
5415 	"fondue",
5416 	"footer",
5417 	"frayed",
5418 	"frays",
5419 	"frolic",
5420 	"frying",
5421 	"gab",
5422 	"gaffe",
5423 	"galore",
5424 	"gaming",
5425 	"gander",
5426 	"gangly",
5427 	"gargle",
5428 	"garnet",
5429 	"garter",
5430 	"gating",
5431 	"gauze",
5432 	"gawk",
5433 	"geiger",
5434 	"gents",
5435 	"gerbil",
5436 	"getup",
5437 	"giblet",
5438 	"giddy",
5439 	"giggly",
5440 	"gilled",
5441 	"girdle",
5442 	"gizmo",
5443 	"glider",
5444 	"glitch",
5445 	"glitzy",
5446 	"gluten",
5447 	"gnarly",
5448 	"gnat",
5449 	"gonad",
5450 	"google",
5451 	"goon",
5452 	"gopher",
5453 	"gorged",
5454 	"gotten",
5455 	"gout",
5456 	"graded",
5457 	"grader",
5458 	"granny",
5459 	"graves",
5460 	"grime",
5461 	"grimy",
5462 	"grinch",
5463 	"groggy",
5464 	"groovy",
5465 	"grout",
5466 	"grower",
5467 	"grunge",
5468 	"gurgle",
5469 	"gusto",
5470 	"gusty",
5471 	"guts",
5472 	"gutter",
5473 	"hacked",
5474 	"hacker",
5475 	"haiku",
5476 	"halved",
5477 	"halves",
5478 	"hamper",
5479 	"hangup",
5480 	"hankie",
5481 	"hanky",
5482 	"hardy",
5483 	"hatbox",
5484 	"hazily",
5485 	"hazing",
5486 	"header",
5487 	"helper",
5488 	"henna",
5489 	"herbal",
5490 	"hermit",
5491 	"hertz",
5492 	"hubcap",
5493 	"huddle",
5494 	"huff",
5495 	"hulk",
5496 	"humbly",
5497 	"hummus",
5498 	"humped",
5499 	"humvee",
5500 	"hurled",
5501 	"hurler",
5502 	"hurray",
5503 	"husked",
5504 	"icky",
5505 	"idiocy",
5506 	"iguana",
5507 	"impale",
5508 	"impart",
5509 	"impish",
5510 	"impure",
5511 	"iodine",
5512 	"iodize",
5513 	"ipad",
5514 	"iphone",
5515 	"ipod",
5516 	"irate",
5517 	"irk",
5518 	"itunes",
5519 	"jackal",
5520 	"jailer",
5521 	"jaunt",
5522 	"jawed",
5523 	"jester",
5524 	"jigsaw",
5525 	"jimmy",
5526 	"jingle",
5527 	"jinx",
5528 	"jogger",
5529 	"jovial",
5530 	"judo",
5531 	"juggle",
5532 	"junkie",
5533 	"jurist",
5534 	"justly",
5535 	"kabob",
5536 	"karma",
5537 	"kebab",
5538 	"kelp",
5539 	"kennel",
5540 	"kiln",
5541 	"kimono",
5542 	"kindle",
5543 	"kisser",
5544 	"knoll",
5545 	"kooky",
5546 	"kosher",
5547 	"kudos",
5548 	"lagged",
5549 	"lanky",
5550 	"lapdog",
5551 	"lapped",
5552 	"lard",
5553 	"lark",
5554 	"lather",
5555 	"laurel",
5556 	"lazily",
5557 	"legged",
5558 	"lego",
5559 	"legume",
5560 	"levers",
5561 	"lifter",
5562 	"lilly",
5563 	"lingo",
5564 	"lining",
5565 	"linked",
5566 	"lisp",
5567 	"litmus",
5568 	"litter",
5569 	"lugged",
5570 	"lushly",
5571 	"luster",
5572 	"lusty",
5573 	"macaw",
5574 	"maggot",
5575 	"maimed",
5576 	"manger",
5577 	"mangle",
5578 	"mangy",
5579 	"manila",
5580 	"manly",
5581 	"manned",
5582 	"mantis",
5583 	"mantra",
5584 	"marlin",
5585 	"maroon",
5586 	"marrow",
5587 	"marshy",
5588 	"mascot",
5589 	"mashed",
5590 	"mating",
5591 	"matron",
5592 	"matted",
5593 	"mauve",
5594 	"mayday",
5595 	"moaner",
5596 	"mocker",
5597 	"mockup",
5598 	"mooing",
5599 	"mooned",
5600 	"mossy",
5601 	"mowing",
5602 	"mulled",
5603 	"mumble",
5604 	"mumps",
5605 	"muppet",
5606 	"mushy",
5607 	"musket",
5608 	"muster",
5609 	"musty",
5610 	"mutate",
5611 	"mutt",
5612 	"naming",
5613 	"napped",
5614 	"nappy",
5615 	"nebula",
5616 	"nectar",
5617 	"nervy",
5618 	"neuron",
5619 	"neuter",
5620 	"nibble",
5621 	"nifty",
5622 	"nimbly",
5623 	"ninja",
5624 	"nuclei",
5625 	"nugget",
5626 	"numbly",
5627 	"nutmeg",
5628 	"nuzzle",
5629 	"oaf",
5630 	"oblong",
5631 	"obtuse",
5632 	"ocelot",
5633 	"octane",
5634 	"ogle",
5635 	"oink",
5636 	"onyx",
5637 	"oops",
5638 	"oozy",
5639 	"outage",
5640 	"outbid",
5641 	"outing",
5642 	"outlet",
5643 	"outwit",
5644 	"ovary",
5645 	"paced",
5646 	"pacify",
5647 	"padded",
5648 	"paging",
5649 	"paltry",
5650 	"pang",
5651 	"pantry",
5652 	"papaya",
5653 	"parka",
5654 	"parlor",
5655 	"parole",
5656 	"pasted",
5657 	"pasty",
5658 	"patchy",
5659 	"pauper",
5660 	"paver",
5661 	"paving",
5662 	"pawing",
5663 	"payday",
5664 	"payee",
5665 	"pebble",
5666 	"pebbly",
5667 	"pectin",
5668 	"pellet",
5669 	"pelt",
5670 	"penpal",
5671 	"pesky",
5672 	"peso",
5673 	"pester",
5674 	"petted",
5675 	"phobia",
5676 	"phoney",
5677 	"phony",
5678 	"plated",
5679 	"pleat",
5680 	"plod",
5681 	"plop",
5682 	"pointy",
5683 	"poking",
5684 	"poncho",
5685 	"poplar",
5686 	"popper",
5687 	"porous",
5688 	"portly",
5689 	"posing",
5690 	"possum",
5691 	"poster",
5692 	"pounce",
5693 	"powwow",
5694 	"pox",
5695 	"prance",
5696 	"precut",
5697 	"prelaw",
5698 	"prepay",
5699 	"preppy",
5700 	"preset",
5701 	"prewar",
5702 	"pried",
5703 	"primer",
5704 	"primp",
5705 	"prissy",
5706 	"pronto",
5707 	"proofs",
5708 	"prozac",
5709 	"pucker",
5710 	"pueblo",
5711 	"pumice",
5712 	"pummel",
5713 	"purist",
5714 	"pusher",
5715 	"pushup",
5716 	"python",
5717 	"quail",
5718 	"qualm",
5719 	"quench",
5720 	"racoon",
5721 	"radial",
5722 	"raging",
5723 	"raider",
5724 	"raisin",
5725 	"raking",
5726 	"ramble",
5727 	"ramrod",
5728 	"ranged",
5729 	"ranger",
5730 	"ranked",
5731 	"rants",
5732 	"rascal",
5733 	"ravage",
5734 	"ravine",
5735 	"raving",
5736 	"rebate",
5737 	"reboot",
5738 	"reborn",
5739 	"rebuff",
5740 	"recant",
5741 	"recast",
5742 	"recede",
5743 	"recite",
5744 	"recoil",
5745 	"recopy",
5746 	"refill",
5747 	"reflex",
5748 	"reflux",
5749 	"refold",
5750 	"refund",
5751 	"refute",
5752 	"regain",
5753 	"reggae",
5754 	"rehab",
5755 	"reheat",
5756 	"rehire",
5757 	"rejoin",
5758 	"relive",
5759 	"reload",
5760 	"relock",
5761 	"remake",
5762 	"remold",
5763 	"rename",
5764 	"rented",
5765 	"renter",
5766 	"repave",
5767 	"replay",
5768 	"repose",
5769 	"repost",
5770 	"reps",
5771 	"resale",
5772 	"reseal",
5773 	"resend",
5774 	"resize",
5775 	"retake",
5776 	"retold",
5777 	"retool",
5778 	"retry",
5779 	"retype",
5780 	"reuse",
5781 	"reverb",
5782 	"revert",
5783 	"revoke",
5784 	"rewash",
5785 	"rewind",
5786 	"rewire",
5787 	"reword",
5788 	"rework",
5789 	"rewrap",
5790 	"riches",
5791 	"richly",
5792 	"ridden",
5793 	"rimmed",
5794 	"rind",
5795 	"rink",
5796 	"roamer",
5797 	"rocker",
5798 	"roping",
5799 	"roster",
5800 	"roving",
5801 	"ruckus",
5802 	"rumor",
5803 	"runner",
5804 	"runt",
5805 	"ruse",
5806 	"sadden",
5807 	"saggy",
5808 	"salami",
5809 	"sandal",
5810 	"sanded",
5811 	"sappy",
5812 	"sassy",
5813 	"saucy",
5814 	"savior",
5815 	"scabby",
5816 	"scion",
5817 	"scone",
5818 	"scorch",
5819 	"scored",
5820 	"scorer",
5821 	"scouts",
5822 	"scribe",
5823 	"scurvy",
5824 	"sedate",
5825 	"seduce",
5826 	"septic",
5827 	"septum",
5828 	"sesame",
5829 	"shaded",
5830 	"shale",
5831 	"shank",
5832 	"shanty",
5833 	"sheath",
5834 	"shelve",
5835 	"shifty",
5836 	"shimmy",
5837 	"shorts",
5838 	"shorty",
5839 	"shriek",
5840 	"shrubs",
5841 	"shrunk",
5842 	"siding",
5843 	"sierra",
5844 	"siesta",
5845 	"silica",
5846 	"silt",
5847 	"simile",
5848 	"sitcom",
5849 	"sitter",
5850 	"sizing",
5851 	"sizzle",
5852 	"skater",
5853 	"skewed",
5854 	"skewer",
5855 	"skied",
5856 	"skiing",
5857 	"skype",
5858 	"slacks",
5859 	"sliced",
5860 	"slicer",
5861 	"slider",
5862 	"slinky",
5863 	"sliver",
5864 	"sloped",
5865 	"sludge",
5866 	"sly",
5867 	"smite",
5868 	"smith",
5869 	"smock",
5870 	"smudge",
5871 	"smudgy",
5872 	"smugly",
5873 	"snazzy",
5874 	"sneeze",
5875 	"snide",
5876 	"snitch",
5877 	"snooze",
5878 	"snugly",
5879 	"specks",
5880 	"sphinx",
5881 	"spiffy",
5882 	"spilt",
5883 	"spleen",
5884 	"splice",
5885 	"spoils",
5886 	"spongy",
5887 	"spooky",
5888 	"spore",
5889 	"sports",
5890 	"sporty",
5891 	"spotty",
5892 	"sprain",
5893 	"sprawl",
5894 	"sprig",
5895 	"sprite",
5896 	"sprout",
5897 	"spruce",
5898 	"sprung",
5899 	"spry",
5900 	"spud",
5901 	"squall",
5902 	"squeak",
5903 	"squint",
5904 	"squire",
5905 	"starry",
5906 	"steed",
5907 	"stilt",
5908 	"stingy",
5909 	"stinky",
5910 	"stoic",
5911 	"stoke",
5912 	"stooge",
5913 	"strep",
5914 	"strewn",
5915 	"strobe",
5916 	"strum",
5917 	"strung",
5918 	"stucco",
5919 	"stupor",
5920 	"stylus",
5921 	"suave",
5922 	"sublet",
5923 	"subpar",
5924 	"sudoku",
5925 	"suffix",
5926 	"suing",
5927 	"sulfur",
5928 	"sultry",
5929 	"surfer",
5930 	"swerve",
5931 	"swivel",
5932 	"swoosh",
5933 	"tabby",
5934 	"talcum",
5935 	"tamale",
5936 	"tamper",
5937 	"tanned",
5938 	"tarmac",
5939 	"tartar",
5940 	"tartly",
5941 	"tassel",
5942 	"tattle",
5943 	"thinly",
5944 	"thrash",
5945 	"thrift",
5946 	"tibia",
5947 	"tidbit",
5948 	"tiling",
5949 	"timing",
5950 	"tingle",
5951 	"tingly",
5952 	"tinker",
5953 	"tinsel",
5954 	"tipoff",
5955 	"tipped",
5956 	"tipper",
5957 	"tiptop",
5958 	"tiring",
5959 	"traps",
5960 	"triage",
5961 	"tripod",
5962 	"trowel",
5963 	"trunks",
5964 	"tubby",
5965 	"turret",
5966 	"twerp",
5967 	"twig",
5968 	"twisty",
5969 	"twitch",
5970 	"tyke",
5971 	"udder",
5972 	"unbend",
5973 	"unbent",
5974 	"unclad",
5975 	"unclip",
5976 	"unclog",
5977 	"uncork",
5978 	"undead",
5979 	"undone",
5980 	"unease",
5981 	"uneven",
5982 	"unglue",
5983 	"unholy",
5984 	"unhook",
5985 	"unison",
5986 	"unkind",
5987 	"unlit",
5988 	"unmade",
5989 	"unpack",
5990 	"unpaid",
5991 	"unplug",
5992 	"unread",
5993 	"unreal",
5994 	"unripe",
5995 	"unroll",
5996 	"unsafe",
5997 	"unsaid",
5998 	"unsent",
5999 	"unsnap",
6000 	"unsold",
6001 	"unsure",
6002 	"untidy",
6003 	"untold",
6004 	"untrue",
6005 	"unused",
6006 	"unwary",
6007 	"unwed",
6008 	"unwell",
6009 	"unwind",
6010 	"unworn",
6011 	"unzip",
6012 	"upbeat",
6013 	"upload",
6014 	"uproot",
6015 	"upside",
6016 	"uptown",
6017 	"upwind",
6018 	"urchin",
6019 	"utopia",
6020 	"vacate",
6021 	"valium",
6022 	"vastly",
6023 	"veal",
6024 	"veggie",
6025 	"velcro",
6026 	"vibes",
6027 	"viper",
6028 	"vista",
6029 	"voting",
6030 	"vowed",
6031 	"waffle",
6032 	"waged",
6033 	"waggle",
6034 	"walrus",
6035 	"waltz",
6036 	"wasabi",
6037 	"washer",
6038 	"whacky",
6039 	"wham",
6040 	"whinny",
6041 	"whiny",
6042 	"whoops",
6043 	"widget",
6044 	"wilder",
6045 	"willed",
6046 	"wince",
6047 	"wiring",
6048 	"wobble",
6049 	"wobbly",
6050 	"woof",
6051 	"wooing",
6052 	"wow",
6053 	"wrench",
6054 	"xbox",
6055 	"yearly",
6056 	"yen",
6057 	"yin",
6058 	"yippee",
6059 	"zap",
6060 	"zen",
6061 	"zips",
6062 	"zit",
6063 	"zodiac",
6064 	"zoning",
6065 	"abyss", /* eff_short_wordlist_2_0.txt */
6066 	"algae",
6067 	"amoeba",
6068 	"anklet",
6069 	"apnea",
6070 	"azalea",
6071 	"boiler",
6072 	"cashew",
6073 	"dibs",
6074 	"dozed",
6075 	"dryer",
6076 	"edged",
6077 	"eulogy",
6078 	"fillet",
6079 	"foggy",
6080 	"geyser",
6081 	"iconic",
6082 	"jetski",
6083 	"kayak",
6084 	"kiosk",
6085 	"llama",
6086 	"luau",
6087 	"ocular",
6088 	"oomph",
6089 	"owlish",
6090 	"peony",
6091 	"pewter",
6092 	"pulley",
6093 	"scythe",
6094 	"shovel",
6095 	"skulk",
6096 	"sloth",
6097 	"tirade",
6098 	"trucks",
6099 	"tryout",
6100 	"tuxedo",
6101 	"untied",
6102 	"upkeep",
6103 	"wakeup",
6104 	"yuppie",
6105 	"zealot",
6106 	"bush", /* these two were merely words, now may be taken as referring to specific people */
6107 	"trump",
6108 	"church", /* religious references (more of these are among the capitalized words below) */
6109 	"devil",
6110 	"devils",
6111 	"easter",
6112 	"gospel",
6113 	"satan",
6114 	"black", /* races, skin colors, and ethnicities */
6115 	"blacks",
6116 	"brown",
6117 	"white",
6118 	"yellow",
6119 	"Afghan", /* assorted capitalized words undesirable in passphrases, including: */
6120 	"Allah", /* religious references */
6121 	"Anglo", /* ethnicities, nationalities (but country names stay), other categories of people */
6122 	"Arab",
6123 	"Asian",
6124 	"Bach", /* specific people */
6125 	"Basque",
6126 	"Bible",
6127 	"Briton",
6128 	"Buddha",
6129 	"Caesar",
6130 	"Celtic",
6131 	"Christ",
6132 	"Danish",
6133 	"Darwin",
6134 	"Dutch",
6135 	"Exodus",
6136 	"French",
6137 	"Gandhi",
6138 	"Gaul",
6139 	"German",
6140 	"God",
6141 	"Greek",
6142 	"Hebrew",
6143 	"Hindu",
6144 	"Hitler",
6145 	"Indian",
6146 	"Irish",
6147 	"Islam",
6148 	"Jesus",
6149 	"Jewish",
6150 	"Judas",
6151 	"Koran",
6152 	"Madame", /* has an inappropriate meaning */
6153 	"Moses",
6154 	"Moslem",
6155 	"Mrs", /* abbreviation */
6156 	"Muslim",
6157 	"Nazi",
6158 	"Nobel",
6159 	"Pascal",
6160 	"Polish",
6161 	"Ritz", /* brands (the EFF lists also include some, but might not be reached) */
6162 	"Saudi",
6163 	"Saxon",
6164 	"Scot",
6165 	"Sony", /* "Amazon" stayed for its original meaning */
6166 	"Soviet",
6167 	"Stalin",
6168 	"Swiss",
6169 	"Turk",
6170 	"abort", /* generally politically incorrect */
6171 	"master",
6172 	"slave",
6173 	"slaves",
6174 	"booze", /* some references to drugs and alcohol (but specific drink names stay above) */
6175 	"crack",
6176 	"heroin",
6177 	"joint",
6178 	"opium",
6179 	"pot",
6180 	"weed",
6181 	"kill", /* violence */
6182 	"killed",
6183 	"killer",
6184 	"murder",
6185 	"rape",
6186 	"arouse", /* obscene, intimate anatomy, sexually explicit or suggestive */
6187 	"ass",
6188 	"babe",
6189 	"bang",
6190 	"bitch",
6191 	"blew",
6192 	"blow",
6193 	"breast",
6194 	"butt",
6195 	"carnal",
6196 	"cervix",
6197 	"chick",
6198 	"climax",
6199 	"cock",
6200 	"daddy",
6201 	"erect",
6202 	"erotic",
6203 	"escort",
6204 	"facial",
6205 	"flirt",
6206 	"gay",
6207 	"gigolo",
6208 	"horny",
6209 	"incest",
6210 	"lick",
6211 	"lover",
6212 	"lovers",
6213 	"naked",
6214 	"nude",
6215 	"oral",
6216 	"orgasm",
6217 	"penis",
6218 	"piss",
6219 	"pussy",
6220 	"queer",
6221 	"rectal",
6222 	"sadism",
6223 	"screw",
6224 	"sex",
6225 	"sexual",
6226 	"sexy",
6227 	"shit",
6228 	"sperm",
6229 	"squirt",
6230 	"strip",
6231 	"suck",
6232 	"thrust", /* Ubuntu bug 1407629 claims "Probe!thrust6scorn" is inappropriate */
6233 	"urine",
6234 	"uterus", /* "womb" is on EFF lists, so assumed OK - more figurative than anatomical */
6235 	"vagina",
6236 	"virgin",
6237 	"whore",
6238 	"advice", /* too similar */
6239 	"advise",
6240 	"armor", /* multiple spellings */
6241 	"armour",
6242 	"burned",
6243 	"burnt",
6244 	"center",
6245 	"centre",
6246 	"cheque", /* or "check", which is preserved above for different meaning */
6247 	"color",
6248 	"colour",
6249 	"email", /* or "e-mail" */
6250 	"favor",
6251 	"favour",
6252 	"flavor", /* or "flavour" */
6253 	"gipsy",
6254 	"gray",
6255 	"grey",
6256 	"gypsy",
6257 	"harbor", /* or "harbour" */
6258 	"hippie",
6259 	"hippy",
6260 	"honor",
6261 	"honour",
6262 	"humor",
6263 	"humour",
6264 	"labor",
6265 	"labour",
6266 	"leaned",
6267 	"leant",
6268 	"learnt", /* or "learned" */
6269 	"mom",
6270 	"mum",
6271 	"tire",
6272 	"tyre",
6273 	"vapor",
6274 	"vapour",
6275 	"whisky", /* or "whiskey" */
6276 	"yoyo", /* or "yo-yo" */
6277 	"etc", /* Latin, not English */
6278 #if 0 /* obsolete, dialectal, and non-words from gutenberg-19xx-lowercase-words-1000plus.txt */
6279 	"des",
6280 	"ere",
6281 	"fer",
6282 	"fro",
6283 	"hath",
6284 	"thee",
6285 	"thet",
6286 	"thou",
6287 	"thy",
6288 	"unto",
6289 	"von",
6290 	"wid",
6291 	"yer",
6292 	"html", /* obvious noise from how gutenberg-19xx-lowercase-words-1000plus.txt was created */
6293 	"http",
6294 	"txt",
6295 #endif
6296 	"" /* end of list marker */
6297 };
6298