@owlmeans/basic-ids 0.1.18-rc.6 → 0.1.18-rc.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,162 @@
1
+ /**
2
+ * Regenerate `src/wordlists/list-a.ts` and `src/wordlists/list-b.ts`.
3
+ *
4
+ * Run: `bun run scripts/curate-wordlists.ts` (needs network access; writes the two source files).
5
+ *
6
+ * The lists are an editorial asset, not a random sample: every word ends up in hostnames, OIDC
7
+ * client ids and support conversations, so the pipeline below screens three ways — a profanity
8
+ * list, a substring screen for words that read badly inside a hostname even when the word itself
9
+ * is innocent, and a frequency floor so nothing unrecognisable survives. Proper nouns are dropped
10
+ * (Moby capitalises them) because a place or brand name makes a poor generic slug, and stopwords
11
+ * are dropped because `not-for` is not a name.
12
+ *
13
+ * Sources (all public, fetched at run time so no corpus is vendored into the repo):
14
+ * - Moby part-of-speech list — github.com/en-wl/wordlist, `pos/part-of-speech.txt`.
15
+ * Tab-separated `word<TAB>|CODES`; N noun, V/t/i verb, A adjective, v adverb.
16
+ * - google-10000-english (USA) — github.com/first20hours/google-10000-english. Primary frequency
17
+ * ranking; the 50k list below only orders what google's 10k does not cover.
18
+ * - FrequencyWords en_50k — github.com/hermitdave/FrequencyWords.
19
+ * - stopwords-en — github.com/stopwords-iso/stopwords-en.
20
+ * - LDNOOBW `en` — github.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words.
21
+ */
22
+ import { writeFileSync } from 'node:fs'
23
+ import { resolve } from 'node:path'
24
+ import { WORDLIST_SIZE } from '../src/consts.js'
25
+
26
+ const SOURCES = {
27
+ moby: 'https://raw.githubusercontent.com/en-wl/wordlist/master/pos/part-of-speech.txt',
28
+ google10k: 'https://raw.githubusercontent.com/first20hours/google-10000-english/master/google-10000-english-usa.txt',
29
+ freq50k: 'https://raw.githubusercontent.com/hermitdave/FrequencyWords/master/content/2018/en/en_50k.txt',
30
+ stopwords: 'https://raw.githubusercontent.com/stopwords-iso/stopwords-en/master/stopwords-en.txt',
31
+ profanity: 'https://raw.githubusercontent.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words/master/en',
32
+ negative: 'https://raw.githubusercontent.com/shekhargulati/sentiment-analysis-python/master/opinion-lexicon-English/negative-words.txt',
33
+ }
34
+
35
+ const WORD = /^[a-z]{3,8}$/
36
+
37
+ /** Innocent words that carry an unfortunate substring once they sit in a public hostname. */
38
+ const BAD_SUBSTRINGS = [
39
+ 'sex', 'nazi', 'rape', 'kill', 'die', 'dead', 'shit', 'fuck', 'cunt', 'porn', 'slut',
40
+ 'whore', 'hell', 'damn', 'crap', 'piss', 'suck', 'gun', 'war', 'drug', 'bomb',
41
+ ]
42
+
43
+ /**
44
+ * Clean, neutrally-ranked words that still make a poor name for somebody's organization. Matched
45
+ * whole, not as substrings — a substring rule here would take `asset`, `class` and `passage` with
46
+ * it, which is how a screen quietly empties the list it is meant to police.
47
+ */
48
+ const BAD_WORDS = [
49
+ 'pee', 'poo', 'butt', 'ass', 'anal', 'bum', 'fart', 'burp', 'snot', 'puke', 'vomit',
50
+ 'funeral', 'coffin', 'corpse', 'tumor', 'tumour', 'cancer', 'plague', 'sewer', 'morgue',
51
+ 'grave', 'tomb', 'autopsy', 'carcass', 'manure', 'urine', 'feces', 'faeces', 'bowel',
52
+ 'rectum', 'groin', 'naked', 'nude', 'booze', 'drunk', 'vodka', 'whisky', 'cigar', 'casino',
53
+ 'gamble', 'curse', 'satan', 'demon', 'ghost', 'zombie', 'virgin', 'sperm', 'uterus',
54
+ 'breast', 'nipple', 'thigh', 'divorce', 'lawsuit', 'prison', 'inmate', 'felony', 'arrest',
55
+ 'arrested', 'combat', 'weapon', 'bullet', 'blade', 'poison', 'venom', 'stab',
56
+ ]
57
+
58
+ const fetchText = async (url: string): Promise<string> => {
59
+ const response = await fetch(url)
60
+ if (!response.ok) {
61
+ throw new Error(`Could not fetch ${url}: ${response.status}`)
62
+ }
63
+
64
+ return await response.text()
65
+ }
66
+
67
+ const lines = (text: string): string[] =>
68
+ text.split('\n').map(line => line.trim()).filter(line => line !== '')
69
+
70
+ const curate = async () => {
71
+ const [moby, google10k, freq50k, stopwords, profanity, negative] = await Promise.all(
72
+ [SOURCES.moby, SOURCES.google10k, SOURCES.freq50k, SOURCES.stopwords, SOURCES.profanity,
73
+ SOURCES.negative].map(fetchText)
74
+ )
75
+
76
+ // Negative-sentiment words are screened out because the slug becomes an organization's public
77
+ // name: `idiotic-spring` is clean by every profanity list and still not a name anyone wants.
78
+ const blocked = new Set(
79
+ [...lines(profanity), ...lines(stopwords), ...BAD_WORDS,
80
+ ...lines(negative).filter(word => !word.startsWith(';'))].map(word => word.toLowerCase())
81
+ )
82
+ const admissible = (word: string): boolean =>
83
+ WORD.test(word) && !blocked.has(word) && !BAD_SUBSTRINGS.some(bad => word.includes(bad))
84
+
85
+ // Frequency rank decides which of several thousand admissible words make the cut. Google's list
86
+ // is the better signal, so it keeps the low ranks and the 50k list only breaks ties below it.
87
+ const rank = new Map<string, number>()
88
+ lines(google10k).forEach((word, index) => {
89
+ const key = word.toLowerCase()
90
+ if (!rank.has(key)) rank.set(key, index)
91
+ })
92
+ lines(freq50k).forEach((line, index) => {
93
+ const key = line.split(' ')[0]?.toLowerCase()
94
+ if (key != null && !rank.has(key)) rank.set(key, 10_000 + index)
95
+ })
96
+
97
+ const A_CODES = ['A', 'v']
98
+ const B_CODES = ['N', 'V', 't', 'i']
99
+ // Value records whether the part of speech is the word's PRIMARY sense — those are picked first,
100
+ // so `list-a` reads as adjectives rather than as nouns that happen to be adjectival.
101
+ const adjectives = new Map<string, boolean>()
102
+ const subjects = new Map<string, boolean>()
103
+
104
+ for (const line of moby.split('\n')) {
105
+ const [rawWord, rawCodes] = line.split('\t')
106
+ if (rawWord == null || rawCodes == null) continue
107
+ const word = rawWord.trim()
108
+ if (word !== word.toLowerCase()) continue // proper noun
109
+ if (!admissible(word)) continue
110
+ const codes = rawCodes.replace(/\|/g, '').trim()
111
+ if (codes === '') continue
112
+ if (A_CODES.some(code => codes.includes(code))) adjectives.set(word, A_CODES.includes(codes[0]))
113
+ if (B_CODES.some(code => codes.includes(code))) subjects.set(word, B_CODES.includes(codes[0]))
114
+ }
115
+
116
+ const pick = (candidates: Map<string, boolean>, exclude: Set<string>): string[] =>
117
+ [...candidates.entries()]
118
+ .filter(([word]) => !exclude.has(word) && rank.has(word))
119
+ .sort(([wordX, primaryX], [wordY, primaryY]) =>
120
+ (Number(primaryY) - Number(primaryX)) || (rank.get(wordX)! - rank.get(wordY)!))
121
+ .slice(0, WORDLIST_SIZE)
122
+ .map(([word]) => word)
123
+
124
+ // A picks first and B excludes its choices, so the two halves of a slug are always distinct.
125
+ const listA = pick(adjectives, new Set())
126
+ const listB = pick(subjects, new Set(listA))
127
+
128
+ for (const [name, list] of [['list-a', listA], ['list-b', listB]] as const) {
129
+ if (list.length !== WORDLIST_SIZE) {
130
+ throw new Error(`${name} came out at ${list.length} words; ${WORDLIST_SIZE} are required`)
131
+ }
132
+ }
133
+
134
+ emit('list-a', 'WORDLIST_A', 'Descriptive half of a word slug — adjectives and adverbs.', listA)
135
+ emit('list-b', 'WORDLIST_B', 'Subject half of a word slug — verbs and nouns.', listB)
136
+ console.log(`Wrote ${listA.length} + ${listB.length} words.`)
137
+ }
138
+
139
+ const emit = (file: string, name: string, summary: string, words: string[]) => {
140
+ const rows: string[] = []
141
+ for (let index = 0; index < words.length; index += 8) {
142
+ rows.push(' ' + words.slice(index, index + 8).map(word => `'${word}'`).join(', ') + ',')
143
+ }
144
+ const body = `/**
145
+ * ${summary}
146
+ *
147
+ * Exactly ${WORDLIST_SIZE} words (11 bits of entropy per pick), each lowercase ASCII, 3-8 characters, and
148
+ * unique within this list. The two lists share no word, so the halves of a slug can never repeat.
149
+ *
150
+ * Curated by \`scripts/curate-wordlists.ts\` from the Moby part-of-speech list, screened against
151
+ * profanity, stopword, negative-sentiment and proper-noun sources. Regenerate with that script
152
+ * rather than editing by hand: \`tests/word-slug.spec.ts\` enforces the invariants above, and a
153
+ * hand-edit that breaks the ${WORDLIST_SIZE} count silently biases slug generation.
154
+ */
155
+ export const ${name}: string[] = [
156
+ ${rows.join('\n')}
157
+ ]
158
+ `
159
+ writeFileSync(resolve(import.meta.dir, '..', 'src', 'wordlists', `${file}.ts`), body)
160
+ }
161
+
162
+ await curate()
package/src/consts.ts CHANGED
@@ -3,3 +3,16 @@ export enum IdStyle {
3
3
  Base58 = 'base58',
4
4
  Base64 = 'base64'
5
5
  }
6
+
7
+ /**
8
+ * Word-slug shape: two lowercase words joined by a hyphen, optionally carrying a numeric
9
+ * disambiguation suffix (`brisk-otter`, `brisk-otter-2`).
10
+ *
11
+ * A slug generated this way is a valid DNS label and a valid Kubernetes object-name segment,
12
+ * which is the whole point of preferring it over a random string: the same value can address a
13
+ * host, a namespace and an OIDC client without a second sanitising pass.
14
+ */
15
+ export const WORD_SLUG_SEPARATOR = '-'
16
+
17
+ /** Words per thesaurus. A power of two so an index costs exactly 11 unbiased bits. */
18
+ export const WORDLIST_SIZE = 2048
package/src/helper.ts CHANGED
@@ -1,7 +1,9 @@
1
1
 
2
2
  import { randomBytes } from '@noble/hashes/utils'
3
3
  import { base58, base64urlnopad } from '@scure/base'
4
- import { IdStyle } from './consts.js'
4
+ import { IdStyle, WORDLIST_SIZE, WORD_SLUG_SEPARATOR } from './consts.js'
5
+ import { WORDLIST_A } from './wordlists/list-a.js'
6
+ import { WORDLIST_B } from './wordlists/list-b.js'
5
7
  import { v4 } from 'uuid'
6
8
 
7
9
  export const createRandomPrefix = (length: number = 6, format: IdStyle = IdStyle.Base58): string => {
@@ -20,3 +22,43 @@ export const createIdOfLength = (length: number = 6, format: IdStyle = IdStyle.B
20
22
  }
21
23
 
22
24
  export const uuid = (): string => v4()
25
+
26
+ /**
27
+ * A human-readable slug: one descriptive word, one subject word — `civil-format`, `raised-earth`.
28
+ *
29
+ * This exists because the values it replaces are read by people. An organization slug turns up in
30
+ * hostnames, OIDC client ids and support conversations, and a 16-character Base58 string is
31
+ * unquotable over the phone and unrecognisable in a list. Two words out of 2048 each give 22 bits
32
+ * of entropy — far short of a secret, and deliberately so: uniqueness here is settled by a unique
33
+ * index and `nextSlugCandidate`, not by entropy. Never use this for anything that must be
34
+ * unguessable (nonces, secrets, tokens) — `createIdOfLength` is that function.
35
+ */
36
+ export const generateWordSlug = (): string => {
37
+ const [a, b] = pickWords(2)
38
+
39
+ return `${WORDLIST_A[a]}${WORD_SLUG_SEPARATOR}${WORDLIST_B[b]}`
40
+ }
41
+
42
+ /**
43
+ * The n-th candidate for an occupied slug: `brisk-otter`, `brisk-otter-2`, `brisk-otter-3`.
44
+ *
45
+ * The first attempt is the bare name — a suffix appears only once something already answers to it,
46
+ * so the common case keeps the name it was given. Callers own the availability test (a unique
47
+ * index, a registry claim) and walk this until one is free.
48
+ */
49
+ export const nextSlugCandidate = (base: string, attempt: number): string =>
50
+ attempt < 2 ? base : `${base}${WORD_SLUG_SEPARATOR}${attempt}`
51
+
52
+ /**
53
+ * Uniform indices into a 2048-entry list. 2048 is a power of two, so masking 16 random bits down
54
+ * to 11 is unbiased — no rejection loop, and no modulo skew toward the front of the list.
55
+ */
56
+ const pickWords = (count: number): number[] => {
57
+ const bytes = randomBytes(count * 2)
58
+ const indices: number[] = []
59
+ for (let i = 0; i < count; ++i) {
60
+ indices.push(((bytes[i * 2] << 8) | bytes[i * 2 + 1]) & (WORDLIST_SIZE - 1))
61
+ }
62
+
63
+ return indices
64
+ }
package/src/index.ts CHANGED
@@ -1,3 +1,5 @@
1
1
 
2
2
  export * from './helper.js'
3
3
  export * from './consts.js'
4
+ export * from './wordlists/list-a.js'
5
+ export * from './wordlists/list-b.js'
@@ -0,0 +1,269 @@
1
+ /**
2
+ * Descriptive half of a word slug — adjectives and adverbs.
3
+ *
4
+ * Exactly 2048 words (11 bits of entropy per pick), each lowercase ASCII, 3-8 characters, and
5
+ * unique within this list. The two lists share no word, so the halves of a slug can never repeat.
6
+ *
7
+ * Curated by `scripts/curate-wordlists.ts` from the Moby part-of-speech list, screened against
8
+ * profanity, stopword, negative-sentiment and proper-noun sources. Regenerate with that script
9
+ * rather than editing by hand: `tests/word-slug.spec.ts` enforces the invariants above, and a
10
+ * hand-edit that breaks the 2048 count silently biases slug generation.
11
+ */
12
+ export const WORDLIST_A: string[] = [
13
+ 'public', 'days', 'united', 'real', 'local', 'national', 'black', 'special',
14
+ 'current', 'personal', 'white', 'level', 'digital', 'previous', 'main', 'private',
15
+ 'teen', 'advanced', 'left', 'gay', 'human', 'hot', 'medical', 'complete',
16
+ 'mobile', 'legal', 'social', 'august', 'single', 'easy', 'listed', 'popular',
17
+ 'central', 'original', 'common', 'specific', 'living', 'called', 'short', 'powered',
18
+ 'daily', 'natural', 'official', 'pro', 'federal', 'final', 'adult', 'true',
19
+ 'fast', 'global', 'economic', 'included', 'wide', 'simple', 'quick', 'annual',
20
+ 'basic', 'active', 'designed', 'western', 'regional', 'double', 'mature', 'running',
21
+ 'military', 'pre', 'huge', 'middle', 'coming', 'nice', 'foreign', 'super',
22
+ 'male', 'multiple', 'late', 'female', 'primary', 'friendly', 'physical', 'happy',
23
+ 'safe', 'unique', 'prior', 'ready', 'regular', 'secure', 'simply', 'larger',
24
+ 'anti', 'strong', 'perfect', 'classic', 'involved', 'extra', 'existing', 'selected',
25
+ 'joined', 'valid', 'modern', 'senior', 'grand', 'cool', 'normal', 'entire',
26
+ 'leading', 'positive', 'abstract', 'pass', 'multi', 'academic', 'expected', 'pacific',
27
+ 'northern', 'proposed', 'outdoor', 'deep', 'reported', 'hit', 'mini', 'internal',
28
+ 'detailed', 'moving', 'pretty', 'southern', 'medium', 'virtual', 'remote', 'external',
29
+ 'visual', 'manual', 'fair', 'civil', 'fixed', 'finally', 'electric', 'worth',
30
+ 'creative', 'accepted', 'flat', 'helpful', 'monthly', 'musical', 'colorado', 'royal',
31
+ 'clean', 'largest', 'relevant', 'applied', 'weekly', 'allowed', 'firm', 'random',
32
+ 'clinical', 'lowest', 'highly', 'patient', 'actual', 'persons', 'cultural', 'easily',
33
+ 'oral', 'closed', 'initial', 'optional', 'driving', 'mid', 'soft', 'fresh',
34
+ 'growing', 'eastern', 'signed', 'upper', 'prime', 'informed', 'urban', 'sorted',
35
+ 'heavy', 'covered', 'solid', 'rich', 'marine', 'intended', 'smart', 'racing',
36
+ 'missing', 'domestic', 'mental', 'extended', 'native', 'owned', 'played', 'equal',
37
+ 'matching', 'variable', 'golden', 'portable', 'earlier', 'nuclear', 'powerful', 'passed',
38
+ 'stated', 'decided', 'graphic', 'winning', 'straight', 'prepared', 'void', 'alert',
39
+ 'sweet', 'dry', 'eligible', 'faster', 'frank', 'rural', 'shared', 'forced',
40
+ 'secret', 'healthy', 'married', 'gratis', 'postal', 'ultimate', 'minor', 'reduced',
41
+ 'rare', 'extreme', 'removed', 'dual', 'famous', 'dynamic', 'junior', 'agreed',
42
+ 'proper', 'nearby', 'outdoors', 'printed', 'easier', 'optical', 'relative', 'amazing',
43
+ 'recorded', 'finished', 'yeah', 'fourth', 'generic', 'mixed', 'compact', 'accurate',
44
+ 'managing', 'raw', 'walking', 'sharp', 'assigned', 'raised', 'directed', 'sporting',
45
+ 'totally', 'organic', 'tony', 'advisory', 'wet', 'matt', 'speaking', 'plain',
46
+ 'holy', 'fiscal', 'filled', 'dental', 'ancient', 'learned', 'historic', 'attached',
47
+ 'upcoming', 'linear', 'edited', 'constant', 'jewish', 'linked', 'pure', 'treated',
48
+ 'tested', 'exact', 'formal', 'micro', 'supreme', 'ultra', 'gray', 'charged',
49
+ 'broad', 'terminal', 'nights', 'properly', 'saving', 'newly', 'suitable', 'typical',
50
+ 'catholic', 'solar', 'reliable', 'biggest', 'memorial', 'twin', 'pregnant', 'cellular',
51
+ 'flexible', 'numerous', 'superior', 'granted', 'magnetic', 'massive', 'employed', 'bright',
52
+ 'formed', 'rapid', 'hairy', 'smooth', 'narrow', 'acting', 'grey', 'parallel',
53
+ 'amended', 'bold', 'drinking', 'blank', 'enhanced', 'deluxe', 'aged', 'lived',
54
+ 'pursuant', 'tight', 'flying', 'cute', 'marked', 'measured', 'roman', 'valuable',
55
+ 'busy', 'stereo', 'tiny', 'liberal', 'usual', 'ongoing', 'exciting', 'oriented',
56
+ 'quiet', 'comic', 'familiar', 'capable', 'elected', 'ethnic', 'vertical', 'absolute',
57
+ 'anytime', 'alive', 'genetic', 'tropical', 'mutual', 'everyday', 'checked', 'visible',
58
+ 'obvious', 'passing', 'awesome', 'desired', 'healing', 'funded', 'rolling', 'adequate',
59
+ 'stopped', 'closely', 'drawn', 'overseas', 'mod', 'nearest', 'partial', 'ranking',
60
+ 'sublime', 'glad', 'trusted', 'supposed', 'ordinary', 'knowing', 'tall', 'athletic',
61
+ 'thermal', 'vital', 'telling', 'coastal', 'lucky', 'expanded', 'casual', 'grown',
62
+ 'lovely', 'indoor', 'armed', 'partly', 'exposed', 'loaded', 'founded', 'moral',
63
+ 'trained', 'wooden', 'tough', 'diverse', 'sole', 'divided', 'wise', 'pleased',
64
+ 'genuine', 'bigger', 'romantic', 'revealed', 'barry', 'sized', 'silent', 'literary',
65
+ 'meta', 'facial', 'dated', 'noble', 'earned', 'islamic', 'teenage', 'triple',
66
+ 'secured', 'wearing', 'mounted', 'median', 'animated', 'judicial', 'engaged', 'binary',
67
+ 'attended', 'picked', 'assumed', 'moderate', 'rapidly', 'vast', 'careful', 'tracked',
68
+ 'minimal', 'declared', 'handheld', 'greatly', 'commonly', 'pleasant', 'suddenly', 'olympic',
69
+ 'outer', 'lite', 'acute', 'honest', 'logical', 'payable', 'detected', 'juvenile',
70
+ 'acoustic', 'locked', 'adjusted', 'pulled', 'shaped', 'seasonal', 'painted', 'ethical',
71
+ 'floral', 'neutral', 'equally', 'resolved', 'frequent', 'trim', 'untitled', 'optimal',
72
+ 'distinct', 'civic', 'colored', 'herbal', 'loving', 'elegant', 'opposed', 'solely',
73
+ 'headed', 'repeated', 'atomic', 'weekends', 'sixth', 'deviant', 'sandy', 'crucial',
74
+ 'adjacent', 'exotic', 'surgical', 'proved', 'imperial', 'stylish', 'slim', 'offshore',
75
+ 'alt', 'finest', 'apparent', 'midi', 'ranked', 'packed', 'excited', 'tied',
76
+ 'timely', 'explicit', 'spatial', 'prompt', 'precious', 'annually', 'sunny', 'lang',
77
+ 'advised', 'interim', 'assisted', 'divine', 'locally', 'sacred', 'composed', 'occupied',
78
+ 'ripe', 'enabling', 'vocal', 'nuts', 'implied', 'guided', 'tender', 'unsigned',
79
+ 'integral', 'absent', 'imported', 'contrary', 'fancy', 'martial', 'gathered', 'dramatic',
80
+ 'surely', 'bare', 'assuming', 'monetary', 'elderly', 'mono', 'floating', 'hottest',
81
+ 'alleged', 'bridal', 'tribal', 'curious', 'stunning', 'actively', 'fastest', 'injured',
82
+ 'wired', 'immune', 'rarely', 'steady', 'wider', 'publicly', 'hourly', 'handed',
83
+ 'informal', 'heavily', 'devoted', 'randy', 'naval', 'decent', 'shortly', 'innocent',
84
+ 'cordless', 'boolean', 'circular', 'handy', 'gorgeous', 'superb', 'calm', 'copied',
85
+ 'troy', 'fitted', 'oriental', 'artistic', 'polar', 'precise', 'colonial', 'slight',
86
+ 'indirect', 'deeply', 'eyed', 'racial', 'safely', 'finite', 'durable', 'allied',
87
+ 'mailed', 'arctic', 'seventh', 'soonest', 'neo', 'fitting', 'mere', 'elder',
88
+ 'sonic', 'zoning', 'mighty', 'dominant', 'robust', 'alpine', 'fabulous', 'alias',
89
+ 'oval', 'maritime', 'periodic', 'overhead', 'incoming', 'eternal', 'metric', 'varied',
90
+ 'sudden', 'lyric', 'matched', 'rational', 'chubby', 'gentle', 'worthy', 'enormous',
91
+ 'insured', 'yea', 'freely', 'mild', 'infinite', 'legally', 'adapted', 'barely',
92
+ 'retained', 'modular', 'sheer', 'roughly', 'floppy', 'aerial', 'lasting', 'pushed',
93
+ 'evident', 'ana', 'blessed', 'italic', 'merry', 'valued', 'jake', 'peaceful',
94
+ 'altered', 'scenic', 'refined', 'acrylic', 'rolled', 'alike', 'homeless', 'hungry',
95
+ 'metallic', 'blocked', 'parental', 'lesser', 'pressing', 'apt', 'dressed', 'prepaid',
96
+ 'weighted', 'plastics', 'cleared', 'coated', 'aquatic', 'striking', 'assured', 'biblical',
97
+ 'ambient', 'limiting', 'viral', 'laden', 'pushing', 'bald', 'grateful', 'swift',
98
+ 'focal', 'distant', 'magical', 'manually', 'centered', 'yearly', 'petite', 'rotary',
99
+ 'discrete', 'boxed', 'cubic', 'intimate', 'keen', 'adaptive', 'generous', 'heated',
100
+ 'cardiac', 'suited', 'numeric', 'kinda', 'educated', 'proudly', 'inserted', 'suburban',
101
+ 'cingular', 'julian', 'charming', 'titled', 'endorsed', 'engaging', 'deferred', 'polished',
102
+ 'gently', 'securely', 'endless', 'figured', 'cooked', 'pressed', 'sic', 'cir',
103
+ 'neural', 'wan', 'handmade', 'nested', 'verbal', 'temporal', 'brave', 'subtle',
104
+ 'blond', 'earliest', 'stuffed', 'touched', 'alright', 'crying', 'yep', 'grunting',
105
+ 'upstairs', 'asleep', 'murdered', 'honestly', 'handsome', 'nope', 'sooner', 'groaning',
106
+ 'clever', 'gasping', 'beloved', 'terrific', 'quietly', 'shy', 'crossed', 'wounded',
107
+ 'aboard', 'beaten', 'touching', 'frankly', 'sounded', 'cleaned', 'busted', 'loyal',
108
+ 'landed', 'invented', 'moaning', 'reverend', 'softly', 'punished', 'thirsty', 'washed',
109
+ 'stabbed', 'nicely', 'happily', 'catching', 'chin', 'obsessed', 'halfway', 'riley',
110
+ 'booked', 'pops', 'delicate', 'nowadays', 'unfair', 'polite', 'bonnie', 'hooked',
111
+ 'happier', 'raining', 'deserved', 'splendid', 'parked', 'muffled', 'roaring', 'humble',
112
+ 'adorable', 'spotted', 'planted', 'faithful', 'corporal', 'luckily', 'drowned', 'honored',
113
+ 'wee', 'kindly', 'neat', 'psychic', 'glorious', 'fooling', 'thrilled', 'loudly',
114
+ 'woody', 'jolly', 'vanished', 'offended', 'secretly', 'mortal', 'haunted', 'smashed',
115
+ 'wealthy', 'deceased', 'sleepy', 'almighty', 'tasty', 'inviting', 'cracking', 'harmless',
116
+ 'relaxed', 'nicer', 'seated', 'stressed', 'rattling', 'resting', 'howling', 'choking',
117
+ 'quicker', 'shiny', 'lifted', 'awhile', 'sneaking', 'blamed', 'mentally', 'intact',
118
+ 'immortal', 'amusing', 'deserted', 'modest', 'tearing', 'thankful', 'wally', 'heavenly',
119
+ 'flowing', 'rushed', 'gracious', 'lightly', 'trusting', 'gladly', 'healed', 'happiest',
120
+ 'amazed', 'dexter', 'forensic', 'eighth', 'abducted', 'stinking', 'oui', 'freed',
121
+ 'echoing', 'destined', 'invested', 'yelled', 'filmed', 'lively', 'ava', 'tidy',
122
+ 'classy', 'bananas', 'cheerful', 'cosmic', 'heroic', 'spicy', 'bats', 'prettier',
123
+ 'discreet', 'slipping', 'purely', 'profound', 'cunning', 'sounding', 'definite', 'ninth',
124
+ 'hunted', 'cozy', 'gifted', 'solitary', 'yummy', 'smashing', 'daring', 'dearly',
125
+ 'curly', 'erased', 'hotter', 'stoned', 'slippery', 'ripping', 'sane', 'melted',
126
+ 'juicy', 'eerie', 'freaky', 'nicest', 'butch', 'ashore', 'wrecked', 'cautious',
127
+ 'mute', 'glowing', 'slick', 'unarmed', 'tactical', 'relaxing', 'traded', 'feminine',
128
+ 'gigantic', 'tenth', 'eldest', 'easiest', 'shouted', 'fearless', 'flooded', 'openly',
129
+ 'soaked', 'severely', 'boiled', 'merciful', 'fishy', 'hale', 'homemade', 'weeping',
130
+ 'legit', 'hardy', 'guarded', 'firmly', 'calmly', 'immense', 'stinky', 'tuned',
131
+ 'repaired', 'urgently', 'unlocked', 'salty', 'crackers', 'smoothly', 'severed', 'rainy',
132
+ 'bouncing', 'stabbing', 'clanging', 'heavier', 'manly', 'onboard', 'tempting', 'stranded',
133
+ 'spinal', 'blinded', 'cheeky', 'tame', 'titanic', 'damp', 'doubled', 'macho',
134
+ 'mornings', 'uptight', 'sideways', 'lowered', 'sweeping', 'evenings', 'orderly', 'marian',
135
+ 'upright', 'reborn', 'utmost', 'remotely', 'iced', 'honoured', 'shaggy', 'grilled',
136
+ 'probable', 'stirring', 'extinct', 'tightly', 'vacant', 'colorful', 'daft', 'milky',
137
+ 'wiser', 'taped', 'sliding', 'fiery', 'departed', 'charmed', 'spiral', 'posh',
138
+ 'manifest', 'crisp', 'icy', 'seldom', 'poetic', 'hacking', 'canned', 'chopping',
139
+ 'tucked', 'imminent', 'masked', 'armored', 'volcanic', 'airborne', 'staged', 'lunar',
140
+ 'rightful', 'chained', 'gabby', 'hopeful', 'flipping', 'flaming', 'welcomed', 'retiring',
141
+ 'silently', 'windy', 'strapped', 'firstly', 'nearer', 'audible', 'roasted', 'formally',
142
+ 'onstage', 'comfy', 'thumping', 'clanking', 'nosy', 'horribly', 'fluffy', 'underway',
143
+ 'corny', 'sacked', 'wedded', 'decisive', 'symbolic', 'pierced', 'vivid', 'folded',
144
+ 'chic', 'fertile', 'righty', 'sedative', 'reversed', 'newborn', 'absorbed', 'clinking',
145
+ 'cornered', 'uptown', 'viable', 'covert', 'mystical', 'unreal', 'gallant', 'tripping',
146
+ 'mellow', 'opposing', 'whacked', 'afar', 'indoors', 'homey', 'stained', 'elevated',
147
+ 'socially', 'enlisted', 'emptied', 'misty', 'witty', 'rested', 'renowned', 'speedy',
148
+ 'squared', 'earthly', 'credible', 'pinched', 'overly', 'cutest', 'rosy', 'unsolved',
149
+ 'joyful', 'rightly', 'barefoot', 'foremost', 'vaguely', 'playful', 'cerebral', 'hallowed',
150
+ 'slimy', 'wisely', 'truthful', 'moist', 'flushed', 'lifelong', 'licked', 'rhythmic',
151
+ 'drying', 'unseen', 'underage', 'booming', 'yonder', 'anyplace', 'aloud', 'nauseous',
152
+ 'funniest', 'sterile', 'pitched', 'minded', 'loony', 'marital', 'amused', 'politely',
153
+ 'graceful', 'groovy', 'crowned', 'majestic', 'colossal', 'morally', 'apiece', 'upstate',
154
+ 'casually', 'youthful', 'lawful', 'stacked', 'awakened', 'elusive', 'flawless', 'esteemed',
155
+ 'moira', 'tossing', 'lodged', 'blinking', 'valiant', 'crispy', 'radiant', 'furry',
156
+ 'pronto', 'edible', 'uncommon', 'weakened', 'bodily', 'rounded', 'bonded', 'mastered',
157
+ 'pleasing', 'craziest', 'blooming', 'finer', 'inland', 'humbly', 'dashing', 'hammered',
158
+ 'galactic', 'wronged', 'snappy', 'bravely', 'steadily', 'blushing', 'insides', 'maternal',
159
+ 'festive', 'brushed', 'carefree', 'saline', 'edgy', 'homesick', 'steamed', 'coloured',
160
+ 'tensed', 'doubting', 'funnier', 'worldly', 'pushy', 'frontal', 'piercing', 'stamped',
161
+ 'potent', 'unharmed', 'culinary', 'nonstop', 'prone', 'crazier', 'blindly', 'diabetic',
162
+ 'muscular', 'unborn', 'hind', 'dodgy', 'drenched', 'virtuous', 'grizzly', 'gaga',
163
+ 'wacky', 'disposed', 'deranged', 'rebuilt', 'kosher', 'hotshot', 'sordid', 'luckiest',
164
+ 'tidal', 'rowdy', 'wondrous', 'humane', 'painless', 'waved', 'pickled', 'potty',
165
+ 'indebted', 'sensual', 'rugged', 'joyous', 'molten', 'frosty', 'renewed', 'snowy',
166
+ 'slashed', 'freshly', 'literal', 'solemnly', 'fancied', 'penal', 'nutty', 'prudent',
167
+ 'bearded', 'foggy', 'hearty', 'bolted', 'bossy', 'beheaded', 'cosy', 'branded',
168
+ 'aft', 'sighted', 'seasoned', 'pious', 'steaming', 'quaint', 'anew', 'teeny',
169
+ 'breached', 'thriving', 'swiftly', 'ample', 'serene', 'fore', 'vibrant', 'barbed',
170
+ 'ecstatic', 'weakly', 'punctual', 'girly', 'lush', 'earnest', 'noir', 'sturdy',
171
+ 'molested', 'piled', 'selfless', 'sassy', 'barred', 'scheming', 'outgoing', 'perished',
172
+ 'headless', 'shortest', 'ruptured', 'privy', 'uncanny', 'cooled', 'vested', 'trampled',
173
+ 'orthodox', 'unheard', 'flashy', 'plucked', 'yawning', 'faraway', 'clipped', 'singular',
174
+ 'pilar', 'lovable', 'coy', 'primal', 'narrowed', 'dormant', 'foxy', 'chilled',
175
+ 'crazed', 'surreal', 'afloat', 'sadistic', 'iconic', 'occult', 'rooted', 'catchy',
176
+ 'feisty', 'plainly', 'spiked', 'mythical', 'unpaid', 'neatly', 'duly', 'nameless',
177
+ 'outdated', 'abed', 'dreaded', 'hatched', 'patched', 'brightly', 'pappy', 'breathed',
178
+ 'powdered', 'honorary', 'midway', 'detached', 'tum', 'quickest', 'cashed', 'teased',
179
+ 'stitched', 'dyed', 'outright', 'nasal', 'enduring', 'winged', 'dreamy', 'vigilant',
180
+ 'paired', 'demented', 'scrubbed', 'porky', 'stellar', 'tiniest', 'shrewd', 'tres',
181
+ 'uphill', 'stalked', 'squashed', 'jailed', 'ghostly', 'bubbly', 'drilled', 'fatter',
182
+ 'soaring', 'benign', 'aligned', 'mildly', 'boldly', 'puffy', 'daffy', 'erect',
183
+ 'mutually', 'canine', 'reformed', 'spirited', 'bouncy', 'hurried', 'fragrant', 'spotless',
184
+ 'merrily', 'rounding', 'wholly', 'hugely', 'lowering', 'phoney', 'cuter', 'papal',
185
+ 'fluent', 'lax', 'sweetly', 'slender', 'unholy', 'pubic', 'vaginal', 'lucid',
186
+ 'skinned', 'diverted', 'freeing', 'tangible', 'bipolar', 'devout', 'crunchy', 'unmarked',
187
+ 'abundant', 'nightly', 'candid', 'visually', 'mayan', 'faintly', 'tolerant', 'rotating',
188
+ 'devoured', 'communal', 'polluted', 'plotted', 'smoky', 'meek', 'unloaded', 'plump',
189
+ 'trendy', 'creamy', 'goddam', 'cultured', 'toasted', 'smeared', 'doubling', 'bonny',
190
+ 'stout', 'eminent', 'seasick', 'elastic', 'pristine', 'lateral', 'prying', 'diseased',
191
+ 'ruddy', 'forcibly', 'petit', 'coronary', 'stocked', 'satanic', 'liege', 'septic',
192
+ 'timeless', 'airtight', 'jazzy', 'militant', 'darned', 'perk', 'sensory', 'docked',
193
+ 'oily', 'corky', 'fetching', 'eagerly', 'peachy', 'bestowed', 'nigh', 'poached',
194
+ 'snug', 'lawfully', 'thrice', 'residual', 'striped', 'cavalier', 'lenient', 'perky',
195
+ 'prodigal', 'smacking', 'secluded', 'plural', 'scrawny', 'manned', 'awaited', 'chatty',
196
+ 'spacious', 'cuddly', 'furthest', 'soggy', 'regal', 'adrift', 'silky', 'dink',
197
+ 'parched', 'raiding', 'soiled', 'fruity', 'purest', 'withered', 'rumored', 'botched',
198
+ 'pinto', 'immersed', 'tamed', 'seismic', 'bowed', 'shakily', 'swaying', 'quirky',
199
+ 'fiercely', 'ordained', 'lovingly', 'carnal', 'wobbly', 'aired', 'merrier', 'starry',
200
+ 'chaste', 'poised', 'rustic', 'celsius', 'lastly', 'vigorous', 'scented', 'busiest',
201
+ 'fined', 'agile', 'grasping', 'tubby', 'bony', 'diligent', 'secular', 'watery',
202
+ 'dopey', 'dashed', 'ticklish', 'ideally', 'widowed', 'salted', 'lofty', 'tipsy',
203
+ 'rigorous', 'swirling', 'matey', 'fated', 'fetal', 'famously', 'bene', 'sicker',
204
+ 'labored', 'ironed', 'tempered', 'hypnotic', 'lavish', 'hooded', 'clement', 'looted',
205
+ 'frisky', 'cryptic', 'sculpted', 'favored', 'curled', 'pelvic', 'tasteful', 'platonic',
206
+ 'humorous', 'roasting', 'braver', 'hushed', 'dotty', 'matured', 'orphaned', 'chipper',
207
+ 'upstream', 'ish', 'autistic', 'atop', 'redeemed', 'vascular', 'watered', 'nitro',
208
+ 'tailed', 'combed', 'kindred', 'humanoid', 'cheery', 'fab', 'nursed', 'maxi',
209
+ 'hearted', 'uniquely', 'pied', 'tenderly', 'depicted', 'pesky', 'clouded', 'optic',
210
+ 'lacy', 'dotted', 'crowning', 'saucy', 'presto', 'fiddling', 'humbled', 'untold',
211
+ 'spouting', 'hippy', 'froggy', 'sparing', 'eloquent', 'rusted', 'burdened', 'beaming',
212
+ 'mangy', 'inherent', 'sparkly', 'pampered', 'angelic', 'wishful', 'armoured', 'sedate',
213
+ 'inbound', 'fro', 'sanitary', 'evilly', 'bitty', 'sociable', 'splashed', 'fruitful',
214
+ 'uttered', 'queasy', 'scorched', 'latent', 'famed', 'groping', 'olden', 'godless',
215
+ 'gummy', 'luminous', 'vee', 'spaced', 'gastric', 'pained', 'auld', 'jugular',
216
+ 'soundly', 'farthest', 'snoopy', 'backdoor', 'scorned', 'vastly', 'tinny', 'cordial',
217
+ 'chummy', 'adoptive', 'scruffy', 'coveted', 'astute', 'tranquil', 'hep', 'hormonal',
218
+ 'towering', 'conjugal', 'blended', 'crusty', 'luscious', 'cleverly', 'unspoken', 'dainty',
219
+ 'rarest', 'wisest', 'degraded', 'ingested', 'loosely', 'runny', 'exalted', 'twelfth',
220
+ 'grubby', 'nautical', 'clerical', 'clingy', 'leary', 'astral', 'renal', 'teeming',
221
+ 'afoot', 'feral', 'coherent', 'peddling', 'gushing', 'gory', 'luckier', 'faceless',
222
+ 'finely', 'nifty', 'prickly', 'gnarly', 'cissy', 'fastened', 'longtime', 'padded',
223
+ 'tanned', 'glaring', 'snotty', 'newfound', 'heartily', 'heaviest', 'pearly', 'idly',
224
+ 'angered', 'primed', 'fondly', 'engulfed', 'baggy', 'arguably', 'paternal', 'whacking',
225
+ 'nimble', 'soulful', 'intrepid', 'corned', 'angrier', 'patented', 'doable', 'battled',
226
+ 'rotted', 'docile', 'poignant', 'humanly', 'etched', 'blissful', 'innate', 'outlawed',
227
+ 'loosened', 'decently', 'booted', 'comatose', 'aided', 'swindled', 'emptying', 'cervical',
228
+ 'usable', 'shielded', 'sporty', 'idling', 'inverted', 'shifty', 'ablaze', 'doubly',
229
+ 'anterior', 'brisk', 'ardent', 'woolly', 'watchful', 'ratty', 'cuffed', 'feasible',
230
+ 'cranial', 'undying', 'glazed', 'stony', 'wedged', 'femoral', 'woozy', 'thyroid',
231
+ 'steamy', 'endowed', 'husky', 'attained', 'unused', 'soulless', 'amorous', 'peaked',
232
+ 'reigning', 'sultry', 'flowery', 'alluring', 'gooey', 'oft', 'gradual', 'verbally',
233
+ 'adhesive', 'chewy', 'willful', 'moldy', 'takeaway', 'adorned', 'notable', 'endo',
234
+ 'seared', 'faux', 'icky', 'mucking', 'suave', 'unmanned', 'disowned', 'puffed',
235
+ 'prius', 'breezy', 'likeable', 'bosnian', 'rancid', 'eleventh', 'littered', 'pasty',
236
+ 'brainy', 'looney', 'cloaked', 'lashed', 'bloomed', 'squishy', 'outdone', 'feudal',
237
+ 'arterial', 'horsey', 'bearable', 'winking', 'uncalled', 'virile', 'surly', 'singled',
238
+ 'ethereal', 'credited', 'fouled', 'hairless', 'racking', 'decked', 'rudely', 'rousing',
239
+ 'sentient', 'willed', 'feline', 'mindful', 'drowsy', 'derelict', 'pivotal', 'genital',
240
+ 'arty', 'assorted', 'kinetic', 'homely', 'perched', 'flabby', 'dolce', 'choosy',
241
+ 'sleek', 'vividly', 'nitrous', 'walled', 'hoarse', 'wetting', 'myriad', 'supple',
242
+ 'molded', 'versed', 'wordy', 'unbroken', 'awry', 'tilted', 'veiled', 'halted',
243
+ 'smarty', 'bavarian', 'empties', 'fingered', 'impacted', 'moonlit', 'starred', 'sodding',
244
+ 'cushy', 'wheeled', 'tireless', 'groomed', 'solvent', 'gutsy', 'largo', 'adept',
245
+ 'busier', 'stewed', 'unsaid', 'silvery', 'tinted', 'muddled', 'tailored', 'upriver',
246
+ 'groggy', 'looser', 'akin', 'lovesick', 'likable', 'resolute', 'avid', 'conveyed',
247
+ 'gilded', 'lumbar', 'sizable', 'aloft', 'aortic', 'filial', 'epidural', 'rectal',
248
+ 'reactive', 'jilted', 'mignon', 'uncut', 'nominal', 'bluntly', 'takedown', 'dicey',
249
+ 'softened', 'deathly', 'nee', 'westside', 'modeled', 'blooded', 'nuptial', 'fatherly',
250
+ 'grueling', 'buttoned', 'totaled', 'jinxed', 'zig', 'pally', 'hunky', 'knitted',
251
+ 'unturned', 'putrid', 'sappy', 'ravenous', 'schooled', 'haired', 'afresh', 'stumpy',
252
+ 'reasoned', 'lifelike', 'lustful', 'clawed', 'ortho', 'clenched', 'raspy', 'keyed',
253
+ 'wavy', 'stately', 'bionic', 'allo', 'elated', 'grassy', 'tutti', 'syne',
254
+ 'ungodly', 'dirtier', 'freudian', 'baal', 'abject', 'bleached', 'digested', 'oceanic',
255
+ 'thirdly', 'cleanly', 'fizzy', 'unafraid', 'prenatal', 'snooty', 'hilly', 'foiled',
256
+ 'unopened', 'hydrated', 'factual', 'nomadic', 'argyle', 'reputed', 'odious', 'scoured',
257
+ 'subtly', 'tabby', 'sweated', 'drier', 'abiding', 'ornery', 'arid', 'royally',
258
+ 'vexed', 'flavored', 'roan', 'boned', 'frayed', 'uppity', 'clammy', 'frosted',
259
+ 'thoracic', 'plowed', 'hygienic', 'inbred', 'upscale', 'foaming', 'punchy', 'fey',
260
+ 'billed', 'favoured', 'viennese', 'unnamed', 'dutiful', 'raggedy', 'plucky', 'noblest',
261
+ 'untidy', 'gentler', 'lovelier', 'godly', 'habitual', 'loopy', 'tactful', 'airy',
262
+ 'swanky', 'peppy', 'eventual', 'heady', 'radial', 'tingly', 'herding', 'idyllic',
263
+ 'meaty', 'hereto', 'affluent', 'prissy', 'treble', 'telford', 'weepy', 'censored',
264
+ 'trig', 'prolific', 'lyrical', 'leftist', 'raucous', 'marooned', 'restful', 'tamer',
265
+ 'wrinkly', 'amicable', 'skeletal', 'wetter', 'fleshy', 'remiss', 'tectonic', 'elective',
266
+ 'dirtiest', 'bushy', 'balding', 'catty', 'saintly', 'truer', 'dapper', 'wry',
267
+ 'mirrored', 'palpable', 'oiled', 'beady', 'geared', 'unending', 'cohesive', 'trifling',
268
+ 'justly', 'sizeable', 'ajar', 'writhing', 'iffy', 'unveiled', 'choral', 'scaled',
269
+ ]