Skip to main content

max / makenotwork

25.2 KB · 2057 lines History Blame Raw
1 //! Curated wordlist for license key generation.
2 //!
3 //! 2048 short common English words (3-6 letters), no offensive or confusable terms.
4 //! Each key picks 5 random words from this list (~55 bits of entropy).
5
6 pub static WORDLIST: [&str; 2048] = [
7 // 2048 words total
8 "ace",
9 "acid",
10 "acme",
11 "acorn",
12 "acre",
13 "act",
14 "add",
15 "adept",
16 "admit",
17 "adopt",
18 "adult",
19 "afar",
20 "aged",
21 "agent",
22 "agile",
23 "aging",
24 "agree",
25 "ahead",
26 "aid",
27 "aim",
28 "air",
29 "aisle",
30 "alarm",
31 "album",
32 "alert",
33 "algae",
34 "align",
35 "alive",
36 "alley",
37 "allot",
38 "allow",
39 "alloy",
40 "aloft",
41 "along",
42 "aloof",
43 "alpha",
44 "alter",
45 "amaze",
46 "amber",
47 "ample",
48 "amuse",
49 "angel",
50 "anger",
51 "angle",
52 "ankle",
53 "annex",
54 "anvil",
55 "apart",
56 "apex",
57 "apple",
58 "apply",
59 "apron",
60 "aqua",
61 "arbor",
62 "arch",
63 "arena",
64 "argue",
65 "arise",
66 "armor",
67 "aroma",
68 "array",
69 "arrow",
70 "art",
71 "ash",
72 "aside",
73 "ask",
74 "asset",
75 "atom",
76 "attic",
77 "audio",
78 "audit",
79 "auto",
80 "avid",
81 "avoid",
82 "await",
83 "awake",
84 "award",
85 "aware",
86 "axis",
87 "azure",
88 "bacon",
89 "badge",
90 "badly",
91 "bagel",
92 "bake",
93 "baker",
94 "balm",
95 "ban",
96 "band",
97 "banjo",
98 "bank",
99 "barn",
100 "baron",
101 "base",
102 "basic",
103 "basin",
104 "basis",
105 "batch",
106 "bath",
107 "bay",
108 "beach",
109 "bead",
110 "beam",
111 "bean",
112 "bear",
113 "beard",
114 "beast",
115 "beat",
116 "bed",
117 "beech",
118 "beef",
119 "beer",
120 "begin",
121 "being",
122 "bell",
123 "belly",
124 "below",
125 "belt",
126 "bench",
127 "bend",
128 "bent",
129 "berry",
130 "best",
131 "bid",
132 "bike",
133 "bill",
134 "bind",
135 "birch",
136 "bird",
137 "birth",
138 "bit",
139 "bite",
140 "black",
141 "blade",
142 "blame",
143 "bland",
144 "blank",
145 "blast",
146 "blaze",
147 "bleak",
148 "bleed",
149 "blend",
150 "bless",
151 "blind",
152 "blink",
153 "bliss",
154 "block",
155 "blond",
156 "bloom",
157 "blown",
158 "blue",
159 "bluff",
160 "blunt",
161 "blur",
162 "blurt",
163 "blush",
164 "board",
165 "boat",
166 "body",
167 "bold",
168 "bolt",
169 "bond",
170 "bone",
171 "bonus",
172 "book",
173 "boost",
174 "boot",
175 "booth",
176 "born",
177 "bound",
178 "bow",
179 "bowl",
180 "box",
181 "brace",
182 "braid",
183 "brain",
184 "brake",
185 "brand",
186 "brass",
187 "brave",
188 "bread",
189 "break",
190 "bred",
191 "breed",
192 "brick",
193 "bride",
194 "brief",
195 "brim",
196 "bring",
197 "brink",
198 "brisk",
199 "broad",
200 "broil",
201 "broke",
202 "brook",
203 "broth",
204 "brown",
205 "brush",
206 "buck",
207 "buddy",
208 "budge",
209 "bug",
210 "build",
211 "built",
212 "bulge",
213 "bulk",
214 "bunch",
215 "buoy",
216 "burn",
217 "burst",
218 "bus",
219 "bush",
220 "busy",
221 "buyer",
222 "cabin",
223 "cable",
224 "cache",
225 "cadet",
226 "cafe",
227 "cage",
228 "cake",
229 "calm",
230 "camel",
231 "camp",
232 "canal",
233 "candy",
234 "cane",
235 "canon",
236 "cape",
237 "car",
238 "card",
239 "cargo",
240 "carry",
241 "cart",
242 "carve",
243 "case",
244 "cash",
245 "cast",
246 "catch",
247 "cater",
248 "cause",
249 "cave",
250 "cease",
251 "cedar",
252 "cell",
253 "cent",
254 "chain",
255 "chair",
256 "chalk",
257 "champ",
258 "chant",
259 "chaos",
260 "charm",
261 "chart",
262 "chase",
263 "cheap",
264 "check",
265 "cheek",
266 "cheer",
267 "chess",
268 "chest",
269 "chew",
270 "chief",
271 "child",
272 "chill",
273 "chime",
274 "chin",
275 "chip",
276 "choir",
277 "chop",
278 "chord",
279 "chore",
280 "chunk",
281 "churn",
282 "cider",
283 "cigar",
284 "cinch",
285 "circa",
286 "cite",
287 "city",
288 "civic",
289 "civil",
290 "claim",
291 "clam",
292 "clamp",
293 "clap",
294 "clash",
295 "clasp",
296 "class",
297 "claw",
298 "clay",
299 "clean",
300 "clear",
301 "clerk",
302 "click",
303 "cliff",
304 "climb",
305 "cling",
306 "clip",
307 "cloak",
308 "clock",
309 "clone",
310 "close",
311 "cloth",
312 "cloud",
313 "clout",
314 "club",
315 "clue",
316 "clump",
317 "coach",
318 "coal",
319 "coast",
320 "coat",
321 "cocoa",
322 "code",
323 "coil",
324 "coin",
325 "cold",
326 "comet",
327 "comic",
328 "comma",
329 "cone",
330 "cook",
331 "cool",
332 "cope",
333 "copy",
334 "coral",
335 "cord",
336 "core",
337 "cork",
338 "corn",
339 "cosy",
340 "couch",
341 "count",
342 "court",
343 "cover",
344 "cozy",
345 "craft",
346 "crane",
347 "crash",
348 "crate",
349 "crawl",
350 "crazy",
351 "creak",
352 "cream",
353 "creek",
354 "creep",
355 "crew",
356 "crisp",
357 "crop",
358 "cross",
359 "crowd",
360 "crown",
361 "crude",
362 "crush",
363 "crust",
364 "cube",
365 "cup",
366 "curb",
367 "cure",
368 "curl",
369 "curve",
370 "cycle",
371 "daily",
372 "dairy",
373 "daisy",
374 "dance",
375 "dare",
376 "dark",
377 "darts",
378 "dash",
379 "data",
380 "date",
381 "dawn",
382 "deal",
383 "dear",
384 "decay",
385 "deck",
386 "decor",
387 "decoy",
388 "deed",
389 "deep",
390 "deer",
391 "delay",
392 "delta",
393 "delve",
394 "demon",
395 "den",
396 "denim",
397 "dense",
398 "deny",
399 "depot",
400 "depth",
401 "derby",
402 "desk",
403 "deter",
404 "detox",
405 "deuce",
406 "dew",
407 "dial",
408 "diary",
409 "dice",
410 "dig",
411 "dim",
412 "dine",
413 "dip",
414 "dirt",
415 "disc",
416 "dish",
417 "ditch",
418 "dive",
419 "dizzy",
420 "dock",
421 "dodge",
422 "doe",
423 "dome",
424 "donor",
425 "donut",
426 "door",
427 "dose",
428 "dot",
429 "doubt",
430 "dough",
431 "dove",
432 "down",
433 "dozen",
434 "draft",
435 "drain",
436 "drake",
437 "drama",
438 "drape",
439 "draw",
440 "drawn",
441 "dream",
442 "dress",
443 "dried",
444 "drift",
445 "drill",
446 "drink",
447 "drive",
448 "drone",
449 "drop",
450 "drove",
451 "drum",
452 "dry",
453 "dual",
454 "duck",
455 "duet",
456 "duke",
457 "dull",
458 "dune",
459 "duo",
460 "dusk",
461 "dust",
462 "dusty",
463 "duty",
464 "dwell",
465 "dyer",
466 "eager",
467 "eagle",
468 "ear",
469 "early",
470 "earn",
471 "earth",
472 "ease",
473 "east",
474 "eaten",
475 "eater",
476 "eave",
477 "ebony",
478 "echo",
479 "edge",
480 "edit",
481 "eel",
482 "eight",
483 "elect",
484 "elite",
485 "elm",
486 "ember",
487 "emit",
488 "empty",
489 "end",
490 "endow",
491 "enemy",
492 "enjoy",
493 "enter",
494 "entry",
495 "envoy",
496 "epic",
497 "equal",
498 "equip",
499 "era",
500 "erase",
501 "error",
502 "erupt",
503 "essay",
504 "ethic",
505 "euro",
506 "eve",
507 "even",
508 "event",
509 "ever",
510 "evict",
511 "evoke",
512 "exact",
513 "exam",
514 "exalt",
515 "excel",
516 "exile",
517 "exist",
518 "exit",
519 "extra",
520 "exult",
521 "eye",
522 "fable",
523 "face",
524 "facet",
525 "fact",
526 "fade",
527 "faint",
528 "fair",
529 "fairy",
530 "faith",
531 "fake",
532 "fall",
533 "fame",
534 "fan",
535 "fancy",
536 "fang",
537 "far",
538 "farm",
539 "fast",
540 "fate",
541 "fauna",
542 "favor",
543 "feast",
544 "feat",
545 "feed",
546 "feel",
547 "fence",
548 "fend",
549 "fern",
550 "ferry",
551 "fest",
552 "fetch",
553 "fever",
554 "few",
555 "fiber",
556 "field",
557 "fig",
558 "file",
559 "fill",
560 "film",
561 "final",
562 "finch",
563 "find",
564 "fine",
565 "fire",
566 "firm",
567 "first",
568 "fish",
569 "fit",
570 "five",
571 "fix",
572 "flag",
573 "flail",
574 "flair",
575 "flake",
576 "flame",
577 "flank",
578 "flap",
579 "flare",
580 "flash",
581 "flask",
582 "flat",
583 "flaw",
584 "flax",
585 "fled",
586 "flee",
587 "fleet",
588 "flesh",
589 "flex",
590 "flick",
591 "fling",
592 "flint",
593 "flip",
594 "float",
595 "flock",
596 "flood",
597 "floor",
598 "flora",
599 "flour",
600 "flow",
601 "flown",
602 "fluff",
603 "fluid",
604 "fluke",
605 "flunk",
606 "flush",
607 "flute",
608 "fly",
609 "foam",
610 "focal",
611 "focus",
612 "fog",
613 "foil",
614 "fold",
615 "folk",
616 "fond",
617 "font",
618 "food",
619 "foot",
620 "forge",
621 "fork",
622 "form",
623 "fort",
624 "forth",
625 "forum",
626 "found",
627 "four",
628 "fowl",
629 "fox",
630 "foyer",
631 "frame",
632 "frank",
633 "freed",
634 "fresh",
635 "frog",
636 "front",
637 "frost",
638 "froze",
639 "fruit",
640 "fuel",
641 "full",
642 "fully",
643 "fun",
644 "fund",
645 "fungi",
646 "funny",
647 "fur",
648 "fury",
649 "fuse",
650 "fussy",
651 "fuzzy",
652 "gain",
653 "gala",
654 "gale",
655 "game",
656 "gamma",
657 "gap",
658 "gape",
659 "gas",
660 "gate",
661 "gauge",
662 "gave",
663 "gavel",
664 "gaze",
665 "gear",
666 "gem",
667 "gene",
668 "genre",
669 "gift",
670 "gild",
671 "gin",
672 "given",
673 "glad",
674 "gland",
675 "glare",
676 "glass",
677 "glaze",
678 "gleam",
679 "glee",
680 "glide",
681 "globe",
682 "gloom",
683 "glory",
684 "gloss",
685 "glove",
686 "glow",
687 "glue",
688 "goat",
689 "gold",
690 "golf",
691 "goose",
692 "gorge",
693 "gown",
694 "grab",
695 "grace",
696 "grade",
697 "grain",
698 "grand",
699 "grant",
700 "grape",
701 "graph",
702 "grasp",
703 "grass",
704 "grave",
705 "gravy",
706 "gray",
707 "graze",
708 "great",
709 "greed",
710 "green",
711 "greet",
712 "grew",
713 "grey",
714 "grief",
715 "grill",
716 "grim",
717 "grin",
718 "grind",
719 "grip",
720 "groan",
721 "groom",
722 "grove",
723 "grow",
724 "grown",
725 "guard",
726 "guess",
727 "guest",
728 "guide",
729 "guild",
730 "guilt",
731 "guise",
732 "gulp",
733 "gum",
734 "guru",
735 "gust",
736 "gut",
737 "gym",
738 "habit",
739 "half",
740 "hall",
741 "halt",
742 "hand",
743 "handy",
744 "hang",
745 "happy",
746 "hard",
747 "harm",
748 "harp",
749 "harsh",
750 "haste",
751 "hasty",
752 "hat",
753 "hatch",
754 "haunt",
755 "haven",
756 "hawk",
757 "hay",
758 "hazel",
759 "head",
760 "heal",
761 "heap",
762 "heart",
763 "heat",
764 "heavy",
765 "hedge",
766 "heel",
767 "held",
768 "helm",
769 "help",
770 "hence",
771 "herb",
772 "herd",
773 "hero",
774 "heron",
775 "hide",
776 "high",
777 "hike",
778 "hill",
779 "hilly",
780 "hinge",
781 "hint",
782 "hip",
783 "hire",
784 "hive",
785 "hobby",
786 "hoist",
787 "hold",
788 "hole",
789 "holly",
790 "home",
791 "honey",
792 "hood",
793 "hook",
794 "hope",
795 "horn",
796 "horse",
797 "host",
798 "hotel",
799 "hound",
800 "hour",
801 "house",
802 "hover",
803 "hub",
804 "huge",
805 "hull",
806 "human",
807 "humid",
808 "humor",
809 "hunt",
810 "hurry",
811 "hut",
812 "hymn",
813 "ice",
814 "icing",
815 "icon",
816 "idea",
817 "ideal",
818 "idiom",
819 "idle",
820 "idly",
821 "image",
822 "imp",
823 "imply",
824 "inbox",
825 "inch",
826 "index",
827 "indie",
828 "infer",
829 "ink",
830 "inlet",
831 "inn",
832 "inner",
833 "input",
834 "ion",
835 "iris",
836 "iron",
837 "isle",
838 "issue",
839 "item",
840 "ivory",
841 "ivy",
842 "jab",
843 "jack",
844 "jade",
845 "jam",
846 "jar",
847 "jaw",
848 "jazz",
849 "jean",
850 "jelly",
851 "jet",
852 "jewel",
853 "jig",
854 "job",
855 "jog",
856 "join",
857 "joint",
858 "joke",
859 "jolly",
860 "jolt",
861 "joy",
862 "judge",
863 "jug",
864 "juice",
865 "juicy",
866 "jump",
867 "karma",
868 "kayak",
869 "keen",
870 "keep",
871 "kept",
872 "key",
873 "kick",
874 "kid",
875 "kind",
876 "king",
877 "kiosk",
878 "kit",
879 "kite",
880 "knack",
881 "knead",
882 "knee",
883 "kneel",
884 "knelt",
885 "knife",
886 "knit",
887 "knob",
888 "knock",
889 "knoll",
890 "knot",
891 "known",
892 "koala",
893 "lace",
894 "lack",
895 "lad",
896 "laden",
897 "lake",
898 "lamb",
899 "lamp",
900 "land",
901 "lane",
902 "lap",
903 "lapse",
904 "large",
905 "laser",
906 "lash",
907 "last",
908 "latch",
909 "late",
910 "later",
911 "lathe",
912 "latte",
913 "laugh",
914 "lava",
915 "lawn",
916 "lay",
917 "layer",
918 "lead",
919 "leaf",
920 "leak",
921 "lean",
922 "leap",
923 "learn",
924 "lease",
925 "least",
926 "ledge",
927 "left",
928 "legal",
929 "lemon",
930 "lend",
931 "lens",
932 "lent",
933 "level",
934 "lever",
935 "lid",
936 "life",
937 "lift",
938 "light",
939 "lilac",
940 "lily",
941 "limb",
942 "lime",
943 "limit",
944 "limp",
945 "line",
946 "linen",
947 "liner",
948 "link",
949 "lint",
950 "lion",
951 "lip",
952 "list",
953 "liter",
954 "live",
955 "liver",
956 "llama",
957 "load",
958 "loaf",
959 "loan",
960 "lobby",
961 "local",
962 "lock",
963 "lodge",
964 "loft",
965 "lofty",
966 "log",
967 "logic",
968 "logo",
969 "lone",
970 "long",
971 "look",
972 "loom",
973 "loop",
974 "loose",
975 "lord",
976 "loss",
977 "lost",
978 "lot",
979 "loud",
980 "love",
981 "lover",
982 "low",
983 "lower",
984 "loyal",
985 "luck",
986 "lucky",
987 "lug",
988 "lunar",
989 "lunch",
990 "lure",
991 "lurk",
992 "lush",
993 "lyric",
994 "mace",
995 "macro",
996 "made",
997 "magic",
998 "maid",
999 "mail",
1000 "main",
1001 "major",
1002 "maker",
1003 "malt",
1004 "mane",
1005 "mango",
1006 "manor",
1007 "map",
1008 "maple",
1009 "march",
1010 "mare",
1011 "mark",
1012 "marsh",
1013 "mask",
1014 "mason",
1015 "mass",
1016 "mast",
1017 "match",
1018 "mate",
1019 "math",
1020 "mayor",
1021 "maze",
1022 "mead",
1023 "meal",
1024 "mean",
1025 "meant",
1026 "media",
1027 "medic",
1028 "meet",
1029 "melon",
1030 "melt",
1031 "memo",
1032 "mend",
1033 "menu",
1034 "mercy",
1035 "merge",
1036 "merit",
1037 "merry",
1038 "mesh",
1039 "messy",
1040 "metal",
1041 "meter",
1042 "mice",
1043 "mid",
1044 "might",
1045 "mild",
1046 "mile",
1047 "milk",
1048 "mill",
1049 "mimic",
1050 "mind",
1051 "mine",
1052 "miner",
1053 "minor",
1054 "mint",
1055 "minus",
1056 "mist",
1057 "misty",
1058 "mite",
1059 "mix",
1060 "mixer",
1061 "moan",
1062 "moat",
1063 "mock",
1064 "model",
1065 "moist",
1066 "mold",
1067 "mole",
1068 "money",
1069 "month",
1070 "mood",
1071 "moon",
1072 "moose",
1073 "mop",
1074 "moral",
1075 "moss",
1076 "motel",
1077 "moth",
1078 "motor",
1079 "motto",
1080 "mound",
1081 "mount",
1082 "mouse",
1083 "mouth",
1084 "move",
1085 "movie",
1086 "mud",
1087 "muddy",
1088 "mug",
1089 "mulch",
1090 "mule",
1091 "mural",
1092 "murky",
1093 "music",
1094 "mute",
1095 "myth",
1096 "nail",
1097 "name",
1098 "nap",
1099 "nasal",
1100 "naval",
1101 "near",
1102 "neat",
1103 "neck",
1104 "need",
1105 "nerve",
1106 "nest",
1107 "net",
1108 "never",
1109 "new",
1110 "newly",
1111 "next",
1112 "nice",
1113 "niche",
1114 "night",
1115 "nine",
1116 "noble",
1117 "nod",
1118 "noise",
1119 "nook",
1120 "noon",
1121 "norm",
1122 "north",
1123 "nose",
1124 "notch",
1125 "note",
1126 "noun",
1127 "novel",
1128 "nudge",
1129 "nurse",
1130 "nut",
1131 "nylon",
1132 "oak",
1133 "oar",
1134 "oasis",
1135 "oat",
1136 "ocean",
1137 "odd",
1138 "odds",
1139 "offer",
1140 "oil",
1141 "oily",
1142 "old",
1143 "olive",
1144 "omega",
1145 "omen",
1146 "once",
1147 "onset",
1148 "ooze",
1149 "open",
1150 "opera",
1151 "optic",
1152 "orbit",
1153 "order",
1154 "ore",
1155 "organ",
1156 "other",
1157 "otter",
1158 "ought",
1159 "ounce",
1160 "outer",
1161 "oval",
1162 "oven",
1163 "over",
1164 "own",
1165 "owner",
1166 "oxide",
1167 "ozone",
1168 "pace",
1169 "pack",
1170 "pad",
1171 "page",
1172 "paid",
1173 "pail",
1174 "pain",
1175 "paint",
1176 "pair",
1177 "palm",
1178 "pan",
1179 "panda",
1180 "panel",
1181 "panic",
1182 "paper",
1183 "park",
1184 "party",
1185 "pass",
1186 "past",
1187 "paste",
1188 "patch",
1189 "path",
1190 "patio",
1191 "pause",
1192 "pave",
1193 "paw",
1194 "pay",
1195 "peace",
1196 "peach",
1197 "peak",
1198 "pear",
1199 "pearl",
1200 "pecan",
1201 "pedal",
1202 "peek",
1203 "peel",
1204 "pen",
1205 "penny",
1206 "perch",
1207 "peril",
1208 "perk",
1209 "perky",
1210 "petal",
1211 "phase",
1212 "phone",
1213 "photo",
1214 "piano",
1215 "pick",
1216 "pie",
1217 "piece",
1218 "pier",
1219 "pig",
1220 "pike",
1221 "pile",
1222 "pilot",
1223 "pin",
1224 "pine",
1225 "pink",
1226 "pinky",
1227 "pint",
1228 "pipe",
1229 "pit",
1230 "pitch",
1231 "pixel",
1232 "pizza",
1233 "place",
1234 "plaid",
1235 "plain",
1236 "plan",
1237 "plane",
1238 "plank",
1239 "plant",
1240 "plate",
1241 "plaza",
1242 "plead",
1243 "pleat",
1244 "plier",
1245 "plot",
1246 "ploy",
1247 "pluck",
1248 "plug",
1249 "plum",
1250 "plumb",
1251 "plume",
1252 "plump",
1253 "plunk",
1254 "plus",
1255 "plush",
1256 "pod",
1257 "poem",
1258 "poet",
1259 "point",
1260 "poise",
1261 "poker",
1262 "polar",
1263 "pole",
1264 "poll",
1265 "polo",
1266 "pond",
1267 "pool",
1268 "pop",
1269 "poppy",
1270 "porch",
1271 "pork",
1272 "port",
1273 "pose",
1274 "poser",
1275 "post",
1276 "pouch",
1277 "pound",
1278 "pour",
1279 "power",
1280 "pray",
1281 "press",
1282 "prey",
1283 "price",
1284 "pride",
1285 "prime",
1286 "print",
1287 "prior",
1288 "prism",
1289 "privy",
1290 "prize",
1291 "probe",
1292 "prong",
1293 "proof",
1294 "prop",
1295 "prose",
1296 "proud",
1297 "prove",
1298 "prowl",
1299 "prune",
1300 "pub",
1301 "pull",
1302 "pulp",
1303 "pulse",
1304 "pump",
1305 "punch",
1306 "pupil",
1307 "puppy",
1308 "pure",
1309 "purge",
1310 "purse",
1311 "push",
1312 "putty",
1313 "quack",
1314 "quad",
1315 "quake",
1316 "qualm",
1317 "queen",
1318 "query",
1319 "quest",
1320 "queue",
1321 "quick",
1322 "quiet",
1323 "quill",
1324 "quilt",
1325 "quirk",
1326 "quit",
1327 "quite",
1328 "quiz",
1329 "quota",
1330 "quote",
1331 "race",
1332 "rack",
1333 "radar",
1334 "radio",
1335 "raft",
1336 "rage",
1337 "raid",
1338 "rail",
1339 "rain",
1340 "rainy",
1341 "raise",
1342 "rally",
1343 "ramp",
1344 "ranch",
1345 "range",
1346 "rank",
1347 "rapid",
1348 "rare",
1349 "rate",
1350 "ratio",
1351 "raven",
1352 "raw",
1353 "ray",
1354 "razor",
1355 "reach",
1356 "react",
1357 "read",
1358 "ready",
1359 "real",
1360 "realm",
1361 "reap",
1362 "rear",
1363 "rebel",
1364 "recap",
1365 "red",
1366 "reed",
1367 "reef",
1368 "reel",
1369 "reign",
1370 "relay",
1371 "relic",
1372 "rely",
1373 "renew",
1374 "rent",
1375 "repay",
1376 "reply",
1377 "reset",
1378 "resin",
1379 "rest",
1380 "retro",
1381 "reuse",
1382 "revel",
1383 "rhyme",
1384 "rib",
1385 "rice",
1386 "rich",
1387 "ride",
1388 "rider",
1389 "ridge",
1390 "rifle",
1391 "right",
1392 "rigid",
1393 "rim",
1394 "rinse",
1395 "riot",
1396 "ripe",
1397 "rise",
1398 "risen",
1399 "risk",
1400 "risky",
1401 "rival",
1402 "river",
1403 "rivet",
1404 "road",
1405 "roam",
1406 "roar",
1407 "roast",
1408 "robe",
1409 "robin",
1410 "robot",
1411 "rock",
1412 "rocky",
1413 "rod",
1414 "rode",
1415 "rogue",
1416 "role",
1417 "roll",
1418 "roof",
1419 "room",
1420 "roomy",
1421 "root",
1422 "rope",
1423 "rose",
1424 "rosy",
1425 "round",
1426 "route",
1427 "rover",
1428 "row",
1429 "royal",
1430 "ruby",
1431 "rug",
1432 "ruin",
1433 "rule",
1434 "ruler",
1435 "run",
1436 "rung",
1437 "rural",
1438 "rush",
1439 "rust",
1440 "rut",
1441 "sack",
1442 "sad",
1443 "sadly",
1444 "safe",
1445 "sage",
1446 "sail",
1447 "saint",
1448 "sake",
1449 "salad",
1450 "sale",
1451 "salon",
1452 "salt",
1453 "salty",
1454 "salve",
1455 "sand",
1456 "sandy",
1457 "sane",
1458 "sap",
1459 "sash",
1460 "sauna",
1461 "save",
1462 "savor",
1463 "saw",
1464 "say",
1465 "scale",
1466 "scan",
1467 "scar",
1468 "scare",
1469 "scarf",
1470 "scene",
1471 "scent",
1472 "scope",
1473 "score",
1474 "scout",
1475 "scowl",
1476 "sea",
1477 "seal",
1478 "seam",
1479 "seat",
1480 "seed",
1481 "self",
1482 "sell",
1483 "send",
1484 "sense",
1485 "sent",
1486 "serve",
1487 "set",
1488 "seven",
1489 "shade",
1490 "shady",
1491 "shaft",
1492 "shake",
1493 "shame",
1494 "shape",
1495 "shard",
1496 "share",
1497 "shark",
1498 "sharp",
1499 "shave",
1500 "shawl",
1501 "shed",
1502 "sheen",
1503 "sheep",
1504 "sheer",
1505 "sheet",
1506 "shelf",
1507 "shell",
1508 "shift",
1509 "shine",
1510 "shiny",
1511 "ship",
1512 "shirt",
1513 "shock",
1514 "shoe",
1515 "shook",
1516 "shoot",
1517 "shop",
1518 "shore",
1519 "short",
1520 "shot",
1521 "shout",
1522 "shove",
1523 "show",
1524 "shown",
1525 "shrub",
1526 "shrug",
1527 "shut",
1528 "shy",
1529 "side",
1530 "siege",
1531 "sift",
1532 "sigh",
1533 "sight",
1534 "sigma",
1535 "sign",
1536 "silk",
1537 "silky",
1538 "silo",
1539 "sing",
1540 "sink",
1541 "sip",
1542 "siren",
1543 "sit",
1544 "site",
1545 "sixth",
1546 "sixty",
1547 "size",
1548 "skate",
1549 "ski",
1550 "skill",
1551 "skin",
1552 "skip",
1553 "skirt",
1554 "skull",
1555 "sky",
1556 "slab",
1557 "slam",
1558 "slant",
1559 "slap",
1560 "slash",
1561 "slate",
1562 "sled",
1563 "sleek",
1564 "sleep",
1565 "sleet",
1566 "slept",
1567 "slice",
1568 "slide",
1569 "slim",
1570 "slime",
1571 "sling",
1572 "slip",
1573 "slit",
1574 "slope",
1575 "slot",
1576 "slow",
1577 "slug",
1578 "slump",
1579 "small",
1580 "smart",
1581 "smash",
1582 "smell",
1583 "smile",
1584 "smirk",
1585 "smith",
1586 "smog",
1587 "smoke",
1588 "smoky",
1589 "snack",
1590 "snag",
1591 "snail",
1592 "snake",
1593 "snap",
1594 "snare",
1595 "sneak",
1596 "snow",
1597 "snowy",
1598 "snug",
1599 "soak",
1600 "soap",
1601 "soar",
1602 "sober",
1603 "sock",
1604 "soda",
1605 "sofa",
1606 "soft",
1607 "soil",
1608 "solar",
1609 "sold",
1610 "sole",
1611 "solid",
1612 "solo",
1613 "solve",
1614 "song",
1615 "soon",
1616 "sort",
1617 "soul",
1618 "sound",
1619 "soup",
1620 "sour",
1621 "south",
1622 "sow",
1623 "space",
1624 "spade",
1625 "span",
1626 "spare",
1627 "spark",
1628 "speak",
1629 "spear",
1630 "spec",
1631 "speed",
1632 "spell",
1633 "spend",
1634 "spent",
1635 "spice",
1636 "spicy",
1637 "spike",
1638 "spill",
1639 "spin",
1640 "spine",
1641 "spoke",
1642 "spoon",
1643 "sport",
1644 "spot",
1645 "spray",
1646 "spree",
1647 "spy",
1648 "squad",
1649 "squid",
1650 "stack",
1651 "staff",
1652 "stage",
1653 "stain",
1654 "stair",
1655 "stake",
1656 "stale",
1657 "stalk",
1658 "stall",
1659 "stamp",
1660 "stand",
1661 "star",
1662 "stare",
1663 "start",
1664 "state",
1665 "stay",
1666 "steak",
1667 "steal",
1668 "steam",
1669 "steel",
1670 "steep",
1671 "steer",
1672 "stem",
1673 "step",
1674 "stern",
1675 "stew",
1676 "stick",
1677 "stiff",
1678 "still",
1679 "sting",
1680 "stint",
1681 "stir",
1682 "stock",
1683 "stoke",
1684 "stole",
1685 "stomp",
1686 "stone",
1687 "stool",
1688 "stop",
1689 "store",
1690 "stork",
1691 "storm",
1692 "story",
1693 "stout",
1694 "stove",
1695 "stow",
1696 "strap",
1697 "straw",
1698 "stray",
1699 "strip",
1700 "strum",
1701 "strut",
1702 "stub",
1703 "stuck",
1704 "study",
1705 "stuff",
1706 "stump",
1707 "stun",
1708 "stung",
1709 "stunt",
1710 "style",
1711 "sugar",
1712 "suit",
1713 "suite",
1714 "sulk",
1715 "sum",
1716 "sunny",
1717 "super",
1718 "surf",
1719 "surge",
1720 "swamp",
1721 "swan",
1722 "swap",
1723 "swarm",
1724 "sway",
1725 "swear",
1726 "sweat",
1727 "sweep",
1728 "sweet",
1729 "swell",
1730 "swept",
1731 "swift",
1732 "swim",
1733 "swing",
1734 "swipe",
1735 "swirl",
1736 "sword",
1737 "syrup",
1738 "table",
1739 "tack",
1740 "tag",
1741 "tail",
1742 "take",
1743 "taken",
1744 "tale",
1745 "talk",
1746 "tall",
1747 "tally",
1748 "talon",
1749 "tank",
1750 "tap",
1751 "tape",
1752 "tart",
1753 "task",
1754 "taste",
1755 "tasty",
1756 "tax",
1757 "tea",
1758 "teach",
1759 "teal",
1760 "team",
1761 "tear",
1762 "teen",
1763 "tell",
1764 "tempo",
1765 "tend",
1766 "tense",
1767 "tent",
1768 "tenth",
1769 "term",
1770 "test",
1771 "text",
1772 "thank",
1773 "thick",
1774 "thief",
1775 "thigh",
1776 "thin",
1777 "thing",
1778 "think",
1779 "third",
1780 "thorn",
1781 "three",
1782 "threw",
1783 "throw",
1784 "thud",
1785 "thumb",
1786 "tide",
1787 "tidy",
1788 "tie",
1789 "tied",
1790 "tiger",
1791 "tight",
1792 "tile",
1793 "till",
1794 "tilt",
1795 "time",
1796 "timer",
1797 "timid",
1798 "tin",
1799 "tiny",
1800 "tip",
1801 "tire",
1802 "tired",
1803 "title",
1804 "toad",
1805 "toast",
1806 "today",
1807 "toe",
1808 "token",
1809 "toll",
1810 "tone",
1811 "tonic",
1812 "tool",
1813 "tooth",
1814 "top",
1815 "topic",
1816 "torch",
1817 "torn",
1818 "total",
1819 "touch",
1820 "tough",
1821 "tour",
1822 "towel",
1823 "tower",
1824 "town",
1825 "toxic",
1826 "trace",
1827 "track",
1828 "trade",
1829 "trail",
1830 "train",
1831 "trait",
1832 "trap",
1833 "trash",
1834 "tray",
1835 "treat",
1836 "tree",
1837 "trend",
1838 "trial",
1839 "tribe",
1840 "trick",
1841 "tried",
1842 "trim",
1843 "trio",
1844 "trip",
1845 "troll",
1846 "troop",
1847 "trot",
1848 "trout",
1849 "truck",
1850 "true",
1851 "truly",
1852 "trunk",
1853 "trust",
1854 "truth",
1855 "try",
1856 "tub",
1857 "tube",
1858 "tuck",
1859 "tulip",
1860 "tuna",
1861 "tune",
1862 "turf",
1863 "turn",
1864 "tutor",
1865 "twig",
1866 "twin",
1867 "twirl",
1868 "twist",
1869 "type",
1870 "ultra",
1871 "uncle",
1872 "under",
1873 "unfit",
1874 "union",
1875 "unite",
1876 "unity",
1877 "until",
1878 "upper",
1879 "upset",
1880 "urban",
1881 "urge",
1882 "usage",
1883 "use",
1884 "user",
1885 "usual",
1886 "utter",
1887 "vague",
1888 "vain",
1889 "valid",
1890 "value",
1891 "valve",
1892 "van",
1893 "vapor",
1894 "vast",
1895 "vault",
1896 "vegan",
1897 "veil",
1898 "vein",
1899 "verse",
1900 "vest",
1901 "veto",
1902 "video",
1903 "view",
1904 "vigor",
1905 "vine",
1906 "vinyl",
1907 "viola",
1908 "viral",
1909 "visit",
1910 "visor",
1911 "vista",
1912 "vital",
1913 "vivid",
1914 "vocal",
1915 "vodka",
1916 "voice",
1917 "void",
1918 "volt",
1919 "voter",
1920 "vouch",
1921 "vow",
1922 "vowel",
1923 "wade",
1924 "wag",
1925 "wage",
1926 "wagon",
1927 "waist",
1928 "wait",
1929 "wake",
1930 "walk",
1931 "wall",
1932 "wand",
1933 "want",
1934 "ward",
1935 "warm",
1936 "warn",
1937 "warp",
1938 "wash",
1939 "wasp",
1940 "waste",
1941 "watch",
1942 "water",
1943 "wave",
1944 "wavy",
1945 "wax",
1946 "way",
1947 "weak",
1948 "wear",
1949 "weary",
1950 "weave",
1951 "web",
1952 "wed",
1953 "wedge",
1954 "weed",
1955 "week",
1956 "weigh",
1957 "weird",
1958 "well",
1959 "west",
1960 "wet",
1961 "whale",
1962 "wheat",
1963 "wheel",
1964 "whim",
1965 "whip",
1966 "whirl",
1967 "white",
1968 "whole",
1969 "wide",
1970 "widen",
1971 "width",
1972 "wield",
1973 "wild",
1974 "win",
1975 "wind",
1976 "wine",
1977 "wing",
1978 "wink",
1979 "wire",
1980 "wired",
1981 "wise",
1982 "wish",
1983 "wit",
1984 "witch",
1985 "wolf",
1986 "won",
1987 "wood",
1988 "woody",
1989 "wool",
1990 "word",
1991 "work",
1992 "world",
1993 "worm",
1994 "worry",
1995 "worth",
1996 "wound",
1997 "woven",
1998 "wrap",
1999 "wren",
2000 "wrist",
2001 "write",
2002 "wrong",
2003 "yacht",
2004 "yard",
2005 "yarn",
2006 "year",
2007 "yeast",
2008 "yield",
2009 "yoga",
2010 "young",
2011 "youth",
2012 "zeal",
2013 "zebra",
2014 "zen",
2015 "zero",
2016 "zest",
2017 "zinc",
2018 "zone",
2019 "zoom",
2020 "afoot",
2021 "aglow",
2022 "amble",
2023 "antic",
2024 "balmy",
2025 "blimp",
2026 "burly",
2027 "caulk",
2028 "chasm",
2029 "crypt",
2030 "ditto",
2031 "dwarf",
2032 "elfin",
2033 "feint",
2034 "filth",
2035 "fjord",
2036 "glyph",
2037 "grimy",
2038 "hyper",
2039 "jiffy",
2040 "nifty",
2041 "rowdy",
2042 "terse",
2043 "topaz",
2044 "agave",
2045 "bijou",
2046 "coypu",
2047 "dryly",
2048 "ether",
2049 "gauze",
2050 "husky",
2051 "ingot",
2052 "jaunt",
2053 "kefir",
2054 "lemur",
2055 "pixie",
2056 ];
2057