random-words 1.0.5 → 1.0.6
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.
- checksums.yaml +4 -4
- data/.rspec_status +148 -39
- data/.rubocop.yml +1 -0
- data/CHANGELOG.md +42 -0
- data/Gemfile.lock +4 -1
- data/README.md +153 -4
- data/bin/randw +195 -49
- data/lib/random-words/array.rb +51 -0
- data/lib/random-words/config.rb +248 -0
- data/lib/random-words/generator.rb +239 -93
- data/lib/random-words/hash.rb +16 -0
- data/lib/random-words/html2markdown.rb +205 -0
- data/lib/random-words/lorem-markdown.rb +398 -0
- data/lib/random-words/number-to-word.rb +137 -0
- data/lib/random-words/source.rb +105 -0
- data/lib/random-words/string.rb +221 -47
- data/lib/random-words/table-cleanup.rb +210 -0
- data/lib/random-words/version.rb +1 -1
- data/lib/random-words/words/1984/adjectives.txt +103 -0
- data/lib/random-words/words/1984/adverbs.txt +92 -0
- data/lib/random-words/words/1984/articles-plural.txt +10 -0
- data/lib/random-words/words/1984/articles-singular.txt +10 -0
- data/lib/random-words/words/1984/clauses.txt +79 -0
- data/lib/random-words/words/1984/config.yml +4 -0
- data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/1984/names.txt +74 -0
- data/lib/random-words/words/1984/nouns-plural.txt +89 -0
- data/lib/random-words/words/1984/nouns-singular.txt +74 -0
- data/lib/random-words/words/1984/numbers.yml +5 -0
- data/lib/random-words/words/1984/prepositions.txt +89 -0
- data/lib/random-words/words/1984/terminators.txt +16 -0
- data/lib/random-words/words/1984/verbs-passive.txt +83 -0
- data/lib/random-words/words/1984/verbs-plural.txt +91 -0
- data/lib/random-words/words/1984/verbs-singular.txt +110 -0
- data/lib/random-words/words/alice/adjectives.txt +80 -0
- data/lib/random-words/words/alice/adverbs.txt +87 -0
- data/lib/random-words/words/alice/articles-plural.txt +10 -0
- data/lib/random-words/words/alice/articles-singular.txt +10 -0
- data/lib/random-words/words/alice/clauses.txt +81 -0
- data/lib/random-words/words/alice/config.yml +4 -0
- data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/alice/names.txt +74 -0
- data/lib/random-words/words/alice/nouns-plural.txt +95 -0
- data/lib/random-words/words/alice/nouns-singular.txt +82 -0
- data/lib/random-words/words/alice/numbers.yml +5 -0
- data/lib/random-words/words/alice/prepositions.txt +45 -0
- data/lib/random-words/words/alice/terminators.txt +16 -0
- data/lib/random-words/words/alice/verbs-passive.txt +495 -0
- data/lib/random-words/words/alice/verbs-plural.txt +115 -0
- data/lib/random-words/words/alice/verbs-singular.txt +97 -0
- data/lib/random-words/words/bacon/clauses.txt +592 -592
- data/lib/random-words/words/bacon/config.yml +4 -0
- data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/bacon/names.txt +74 -0
- data/lib/random-words/words/bacon/numbers.yml +5 -0
- data/lib/random-words/words/bacon/prepositions.txt +45 -0
- data/lib/random-words/words/bacon/terminators.txt +16 -0
- data/lib/random-words/words/corporate/config.yml +4 -0
- data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/corporate/names.txt +74 -0
- data/lib/random-words/words/corporate/numbers.yml +5 -0
- data/lib/random-words/words/corporate/prepositions.txt +45 -0
- data/lib/random-words/words/corporate/terminators.txt +16 -0
- data/lib/random-words/words/doctor/adjectives.txt +92 -0
- data/lib/random-words/words/doctor/adverbs.txt +92 -0
- data/lib/random-words/words/doctor/articles-plural.txt +10 -0
- data/lib/random-words/words/doctor/articles-singular.txt +10 -0
- data/lib/random-words/words/doctor/clauses.txt +83 -0
- data/lib/random-words/words/doctor/config.yml +10 -0
- data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/doctor/names.txt +74 -0
- data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
- data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
- data/lib/random-words/words/doctor/numbers.yml +5 -0
- data/lib/random-words/words/doctor/prepositions.txt +45 -0
- data/lib/random-words/words/doctor/terminators.txt +16 -0
- data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
- data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
- data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
- data/lib/random-words/words/english/clauses.txt +592 -592
- data/lib/random-words/words/english/config.yml +4 -0
- data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/english/names.txt +74 -0
- data/lib/random-words/words/english/numbers.yml +5 -0
- data/lib/random-words/words/english/prepositions.txt +45 -0
- data/lib/random-words/words/english/terminators.txt +16 -0
- data/lib/random-words/words/english/verbs-plural.txt +1 -0
- data/lib/random-words/words/english/verbs-singular.txt +1 -0
- data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
- data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
- data/lib/random-words/words/foulmouth/articles-plural.txt +10 -0
- data/lib/random-words/words/foulmouth/articles-singular.txt +10 -0
- data/lib/random-words/words/foulmouth/clauses.txt +74 -0
- data/lib/random-words/words/foulmouth/config.yml +4 -0
- data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/foulmouth/names.txt +74 -0
- data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
- data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
- data/lib/random-words/words/foulmouth/numbers.yml +5 -0
- data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
- data/lib/random-words/words/foulmouth/terminators.txt +16 -0
- data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
- data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
- data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
- data/lib/random-words/words/hipster/adjectives.txt +100 -0
- data/lib/random-words/words/hipster/adverbs.txt +89 -0
- data/lib/random-words/words/hipster/articles-plural.txt +10 -0
- data/lib/random-words/words/hipster/articles-singular.txt +10 -0
- data/lib/random-words/words/hipster/clauses.txt +180 -0
- data/lib/random-words/words/hipster/config.yml +4 -0
- data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/hipster/names.txt +74 -0
- data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
- data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
- data/lib/random-words/words/hipster/numbers.yml +5 -0
- data/lib/random-words/words/hipster/prepositions.txt +45 -0
- data/lib/random-words/words/hipster/terminators.txt +16 -0
- data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
- data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
- data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
- data/lib/random-words/words/latin/config.yml +4 -0
- data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
- data/lib/random-words/words/latin/names.txt +74 -0
- data/lib/random-words/words/latin/numbers.yml +5 -0
- data/lib/random-words/words/latin/prepositions.txt +18 -0
- data/lib/random-words/words/latin/terminators.txt +16 -0
- data/lib/random-words/words/spanish/adjectives.txt +81 -0
- data/lib/random-words/words/spanish/adverbs.txt +87 -0
- data/lib/random-words/words/spanish/articles-plural.txt +4 -0
- data/lib/random-words/words/spanish/articles-singular.txt +4 -0
- data/lib/random-words/words/spanish/clauses.txt +74 -0
- data/lib/random-words/words/spanish/config.yml +4 -0
- data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
- data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
- data/lib/random-words/words/spanish/names.txt +74 -0
- data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
- data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
- data/lib/random-words/words/spanish/numbers.yml +5 -0
- data/lib/random-words/words/spanish/prepositions.txt +31 -0
- data/lib/random-words/words/spanish/terminators.txt +17 -0
- data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
- data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
- data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
- data/lib/random-words/words/veggie/adjectives.txt +111 -0
- data/lib/random-words/words/veggie/adverbs.txt +81 -0
- data/lib/random-words/words/veggie/articles-plural.txt +10 -0
- data/lib/random-words/words/veggie/articles-singular.txt +10 -0
- data/lib/random-words/words/veggie/clauses.txt +57 -0
- data/lib/random-words/words/veggie/config.yml +4 -0
- data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/veggie/names.txt +74 -0
- data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
- data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
- data/lib/random-words/words/veggie/numbers.yml +5 -0
- data/lib/random-words/words/veggie/prepositions.txt +45 -0
- data/lib/random-words/words/veggie/terminators.txt +16 -0
- data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
- data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
- data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
- data/lib/random-words.rb +28 -0
- data/random-words.gemspec +2 -0
- data/src/_README.md +153 -4
- metadata +168 -7
- data/lib/random-words/words/bacon/numbers.txt +0 -21
- data/lib/random-words/words/corporate/numbers.txt +0 -21
- data/lib/random-words/words/english/numbers.txt +0 -21
- data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,89 @@
|
|
1
|
+
actions
|
2
|
+
agents
|
3
|
+
allegiances
|
4
|
+
alliances
|
5
|
+
amps
|
6
|
+
anxieties
|
7
|
+
associations
|
8
|
+
authorities
|
9
|
+
characters
|
10
|
+
citizens
|
11
|
+
conflicts
|
12
|
+
conspiracies
|
13
|
+
controls
|
14
|
+
crimes
|
15
|
+
declarations
|
16
|
+
dictatorships
|
17
|
+
dilemmas
|
18
|
+
documents
|
19
|
+
dreams
|
20
|
+
dystopias
|
21
|
+
emotions
|
22
|
+
enemies
|
23
|
+
events
|
24
|
+
experiments
|
25
|
+
faces
|
26
|
+
factions
|
27
|
+
feelings
|
28
|
+
governments
|
29
|
+
grievances
|
30
|
+
guards
|
31
|
+
histories
|
32
|
+
hypotheses
|
33
|
+
ideologies
|
34
|
+
illusions
|
35
|
+
images
|
36
|
+
informations
|
37
|
+
inspections
|
38
|
+
interrogations
|
39
|
+
judgments
|
40
|
+
laws
|
41
|
+
lies
|
42
|
+
loyalties
|
43
|
+
manipulations
|
44
|
+
memories
|
45
|
+
messages
|
46
|
+
methods
|
47
|
+
minds
|
48
|
+
narratives
|
49
|
+
news
|
50
|
+
observations
|
51
|
+
operations
|
52
|
+
oppressions
|
53
|
+
organizations
|
54
|
+
parties
|
55
|
+
perceptions
|
56
|
+
philosophies
|
57
|
+
policies
|
58
|
+
positions
|
59
|
+
powers
|
60
|
+
protests
|
61
|
+
punishments
|
62
|
+
reactions
|
63
|
+
realities
|
64
|
+
regimes
|
65
|
+
relationships
|
66
|
+
reports
|
67
|
+
resistances
|
68
|
+
results
|
69
|
+
rituals
|
70
|
+
rules
|
71
|
+
scenarios
|
72
|
+
secrets
|
73
|
+
sentences
|
74
|
+
situations
|
75
|
+
societies
|
76
|
+
strategies
|
77
|
+
surveillance
|
78
|
+
symbols
|
79
|
+
systems
|
80
|
+
technologies
|
81
|
+
thoughts
|
82
|
+
tortures
|
83
|
+
truths
|
84
|
+
unions
|
85
|
+
values
|
86
|
+
visions
|
87
|
+
voices
|
88
|
+
wars
|
89
|
+
worries
|
@@ -0,0 +1,74 @@
|
|
1
|
+
Airstrip One
|
2
|
+
alienation
|
3
|
+
allegiance
|
4
|
+
betrayal
|
5
|
+
Big Brother
|
6
|
+
brainwashing
|
7
|
+
censorship
|
8
|
+
citizen
|
9
|
+
conditions
|
10
|
+
confession
|
11
|
+
conformity
|
12
|
+
consciousness
|
13
|
+
control
|
14
|
+
culture
|
15
|
+
despair
|
16
|
+
disinformation
|
17
|
+
doublethink
|
18
|
+
dreams
|
19
|
+
dystopia
|
20
|
+
existence
|
21
|
+
experience
|
22
|
+
fear
|
23
|
+
freedom
|
24
|
+
futility
|
25
|
+
government
|
26
|
+
history
|
27
|
+
hope
|
28
|
+
identity
|
29
|
+
illusion
|
30
|
+
independence
|
31
|
+
indifference
|
32
|
+
intellect
|
33
|
+
interrogation
|
34
|
+
Julia
|
35
|
+
language
|
36
|
+
lies
|
37
|
+
loyalty
|
38
|
+
manipulation
|
39
|
+
memory
|
40
|
+
Ministry of Love
|
41
|
+
Ministry of Peace
|
42
|
+
Ministry of Plenty
|
43
|
+
Ministry of Truth
|
44
|
+
narrative
|
45
|
+
Newspeak
|
46
|
+
O'Brien
|
47
|
+
Oceania
|
48
|
+
oppression
|
49
|
+
orthodoxy
|
50
|
+
paranoia
|
51
|
+
Party
|
52
|
+
peace
|
53
|
+
prole
|
54
|
+
propaganda
|
55
|
+
reality
|
56
|
+
rebellion
|
57
|
+
repression
|
58
|
+
resistance
|
59
|
+
rhetoric
|
60
|
+
society
|
61
|
+
subliminal
|
62
|
+
submission
|
63
|
+
suffering
|
64
|
+
surveillance
|
65
|
+
telescreen
|
66
|
+
thought
|
67
|
+
thoughtcrime
|
68
|
+
thoughtpolice
|
69
|
+
torture
|
70
|
+
totalitarianism
|
71
|
+
truth
|
72
|
+
uniformity
|
73
|
+
war
|
74
|
+
Winston
|
@@ -0,0 +1,5 @@
|
|
1
|
+
---
|
2
|
+
digits: zero one two three four five six seven eight nine
|
3
|
+
teens: ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen
|
4
|
+
tens: twenty thirty forty fifty sixty seventy eighty ninety
|
5
|
+
places: one ten hundred thousand million billion trillion
|
@@ -0,0 +1,89 @@
|
|
1
|
+
about
|
2
|
+
above
|
3
|
+
according to
|
4
|
+
across
|
5
|
+
after
|
6
|
+
against
|
7
|
+
along
|
8
|
+
alongside
|
9
|
+
among
|
10
|
+
around
|
11
|
+
as a result of
|
12
|
+
as opposed to
|
13
|
+
at
|
14
|
+
at odds with
|
15
|
+
at the mercy of
|
16
|
+
before
|
17
|
+
behind
|
18
|
+
below
|
19
|
+
beneath
|
20
|
+
beside
|
21
|
+
besides
|
22
|
+
between
|
23
|
+
beyond
|
24
|
+
but
|
25
|
+
by
|
26
|
+
by means of
|
27
|
+
despite
|
28
|
+
down
|
29
|
+
due to
|
30
|
+
during
|
31
|
+
except
|
32
|
+
for
|
33
|
+
for the purpose of
|
34
|
+
for the sake of
|
35
|
+
from
|
36
|
+
in
|
37
|
+
in accordance with
|
38
|
+
in addition to
|
39
|
+
in case of
|
40
|
+
in comparison with
|
41
|
+
in connection with
|
42
|
+
in favor of
|
43
|
+
in front of
|
44
|
+
in light of
|
45
|
+
in line with
|
46
|
+
in opposition to
|
47
|
+
in place of
|
48
|
+
in pursuit of
|
49
|
+
in regard to
|
50
|
+
in relation to
|
51
|
+
in response to
|
52
|
+
in search of
|
53
|
+
in spite of
|
54
|
+
in terms of
|
55
|
+
in the face of
|
56
|
+
in the interest of
|
57
|
+
in the midst of
|
58
|
+
in the name of
|
59
|
+
in the wake of
|
60
|
+
in view of
|
61
|
+
inside
|
62
|
+
instead of
|
63
|
+
into
|
64
|
+
like
|
65
|
+
near
|
66
|
+
of
|
67
|
+
off
|
68
|
+
on
|
69
|
+
on account of
|
70
|
+
onto
|
71
|
+
out
|
72
|
+
outside
|
73
|
+
over
|
74
|
+
past
|
75
|
+
prior to
|
76
|
+
since
|
77
|
+
through
|
78
|
+
throughout
|
79
|
+
to
|
80
|
+
toward
|
81
|
+
towards
|
82
|
+
under
|
83
|
+
until
|
84
|
+
up
|
85
|
+
upon
|
86
|
+
with
|
87
|
+
with respect to
|
88
|
+
within
|
89
|
+
without
|
@@ -0,0 +1,83 @@
|
|
1
|
+
was abandoned by
|
2
|
+
was accused by
|
3
|
+
was betrayed by
|
4
|
+
was brainwashed by
|
5
|
+
was captured by
|
6
|
+
was changed by
|
7
|
+
was coerced by
|
8
|
+
was conditioned by
|
9
|
+
was controlled by
|
10
|
+
was convinced by
|
11
|
+
was corrupted by
|
12
|
+
was critiqued by
|
13
|
+
was deceived by
|
14
|
+
was degraded by
|
15
|
+
was denied by
|
16
|
+
was destroyed by
|
17
|
+
was dominated by
|
18
|
+
was encouraged by
|
19
|
+
was executed by
|
20
|
+
was experimented on by
|
21
|
+
was exploited by
|
22
|
+
was exposed by
|
23
|
+
was followed by
|
24
|
+
was forced by
|
25
|
+
was forgotten by
|
26
|
+
was governed by
|
27
|
+
was guided by
|
28
|
+
was harmed by
|
29
|
+
was hidden by
|
30
|
+
was humiliated by
|
31
|
+
was ignored by
|
32
|
+
was influenced by
|
33
|
+
was interrogated by
|
34
|
+
was isolated by
|
35
|
+
was judged by
|
36
|
+
was labeled by
|
37
|
+
was listened to by
|
38
|
+
was manipulated by
|
39
|
+
was misled by
|
40
|
+
was monitored by
|
41
|
+
was motivated by
|
42
|
+
was moved by
|
43
|
+
was oppressed by
|
44
|
+
was ordered by
|
45
|
+
was overridden by
|
46
|
+
was portrayed by
|
47
|
+
was prepared by
|
48
|
+
was presented by
|
49
|
+
was prevented by
|
50
|
+
was processed by
|
51
|
+
was punished by
|
52
|
+
was questioned by
|
53
|
+
was rationalized by
|
54
|
+
was recorded by
|
55
|
+
was reduced by
|
56
|
+
was referenced by
|
57
|
+
was regulated by
|
58
|
+
was reinforced by
|
59
|
+
was rejected by
|
60
|
+
was remembered by
|
61
|
+
was removed by
|
62
|
+
was replicated by
|
63
|
+
was reported by
|
64
|
+
was rescued by
|
65
|
+
was resisted by
|
66
|
+
was restricted by
|
67
|
+
was revealed by
|
68
|
+
was ridiculed by
|
69
|
+
was sanctioned by
|
70
|
+
was scrutinized by
|
71
|
+
was shown by
|
72
|
+
was silenced by
|
73
|
+
was standardized by
|
74
|
+
was surveilled by
|
75
|
+
was tolerated by
|
76
|
+
was tortured by
|
77
|
+
was tracked by
|
78
|
+
was transformed by
|
79
|
+
was valued by
|
80
|
+
was viewed by
|
81
|
+
was warned by
|
82
|
+
was wished by
|
83
|
+
was written by
|
@@ -0,0 +1,91 @@
|
|
1
|
+
adapt
|
2
|
+
analyze
|
3
|
+
attack
|
4
|
+
believe
|
5
|
+
belittle
|
6
|
+
challenge
|
7
|
+
collaborate
|
8
|
+
complicate
|
9
|
+
conform
|
10
|
+
control
|
11
|
+
discuss
|
12
|
+
disrupt
|
13
|
+
dissent
|
14
|
+
document
|
15
|
+
doubt
|
16
|
+
eliminate
|
17
|
+
enforce
|
18
|
+
escape
|
19
|
+
execute
|
20
|
+
experience
|
21
|
+
exploit
|
22
|
+
explore
|
23
|
+
express
|
24
|
+
falsify
|
25
|
+
forget
|
26
|
+
fragment
|
27
|
+
gather
|
28
|
+
hinder
|
29
|
+
hypothesize
|
30
|
+
imagine
|
31
|
+
implement
|
32
|
+
impose
|
33
|
+
imprison
|
34
|
+
infiltrate
|
35
|
+
inform
|
36
|
+
inspect
|
37
|
+
instigate
|
38
|
+
interfere
|
39
|
+
interrogate
|
40
|
+
invade
|
41
|
+
isolate
|
42
|
+
justify
|
43
|
+
link
|
44
|
+
manipulate
|
45
|
+
monitor
|
46
|
+
move
|
47
|
+
negotiate
|
48
|
+
neutralize
|
49
|
+
obfuscate
|
50
|
+
observe
|
51
|
+
oppose
|
52
|
+
organize
|
53
|
+
overhear
|
54
|
+
oversee
|
55
|
+
participate
|
56
|
+
perceive
|
57
|
+
perpetuate
|
58
|
+
plan
|
59
|
+
prescribe
|
60
|
+
proclaim
|
61
|
+
protest
|
62
|
+
question
|
63
|
+
rationalize
|
64
|
+
rebel
|
65
|
+
record
|
66
|
+
redact
|
67
|
+
regulate
|
68
|
+
restructure
|
69
|
+
reveal
|
70
|
+
revise
|
71
|
+
sabotage
|
72
|
+
scapegoat
|
73
|
+
silence
|
74
|
+
subvert
|
75
|
+
suppress
|
76
|
+
surveil
|
77
|
+
survive
|
78
|
+
symbolize
|
79
|
+
threaten
|
80
|
+
torture
|
81
|
+
trace
|
82
|
+
transform
|
83
|
+
translate
|
84
|
+
tweak
|
85
|
+
understand
|
86
|
+
unify
|
87
|
+
validate
|
88
|
+
violate
|
89
|
+
waver
|
90
|
+
witness
|
91
|
+
wonder
|
@@ -0,0 +1,110 @@
|
|
1
|
+
acknowledge
|
2
|
+
advocate
|
3
|
+
alter
|
4
|
+
analyze
|
5
|
+
anatomize
|
6
|
+
anticipate
|
7
|
+
assert
|
8
|
+
believe
|
9
|
+
belittle
|
10
|
+
betray
|
11
|
+
brainwash
|
12
|
+
calculate
|
13
|
+
challenge
|
14
|
+
collaborate
|
15
|
+
commit
|
16
|
+
communicate
|
17
|
+
concede
|
18
|
+
conform
|
19
|
+
conspire
|
20
|
+
contemplate
|
21
|
+
control
|
22
|
+
create
|
23
|
+
criticize
|
24
|
+
debate
|
25
|
+
deceive
|
26
|
+
declare
|
27
|
+
defend
|
28
|
+
defy
|
29
|
+
desire
|
30
|
+
develop
|
31
|
+
disclose
|
32
|
+
discredit
|
33
|
+
disguise
|
34
|
+
disrupt
|
35
|
+
dissuade
|
36
|
+
doubt
|
37
|
+
dream
|
38
|
+
encounter
|
39
|
+
encourage
|
40
|
+
endure
|
41
|
+
enforce
|
42
|
+
engage
|
43
|
+
entrap
|
44
|
+
erase
|
45
|
+
escape
|
46
|
+
examine
|
47
|
+
execute
|
48
|
+
exploit
|
49
|
+
explore
|
50
|
+
fabricate
|
51
|
+
fear
|
52
|
+
forget
|
53
|
+
hide
|
54
|
+
hope
|
55
|
+
illustrate
|
56
|
+
imagine
|
57
|
+
indoctrinate
|
58
|
+
initiate
|
59
|
+
innovate
|
60
|
+
insult
|
61
|
+
interpret
|
62
|
+
interrupt
|
63
|
+
isolate
|
64
|
+
justify
|
65
|
+
long
|
66
|
+
manipulate
|
67
|
+
manufacture
|
68
|
+
modify
|
69
|
+
monitor
|
70
|
+
navigate
|
71
|
+
neutralize
|
72
|
+
obey
|
73
|
+
observe
|
74
|
+
oppose
|
75
|
+
plan
|
76
|
+
predict
|
77
|
+
proclaim
|
78
|
+
project
|
79
|
+
promote
|
80
|
+
pronounce
|
81
|
+
propagandize
|
82
|
+
punish
|
83
|
+
question
|
84
|
+
rebel
|
85
|
+
record
|
86
|
+
reflect
|
87
|
+
regulate
|
88
|
+
remember
|
89
|
+
report
|
90
|
+
resist
|
91
|
+
reveal
|
92
|
+
revise
|
93
|
+
rewrite
|
94
|
+
silence
|
95
|
+
strategize
|
96
|
+
strengthen
|
97
|
+
strive
|
98
|
+
struggle
|
99
|
+
submit
|
100
|
+
suffer
|
101
|
+
suppress
|
102
|
+
surveil
|
103
|
+
terminate
|
104
|
+
testify
|
105
|
+
torture
|
106
|
+
transform
|
107
|
+
visualize
|
108
|
+
weaken
|
109
|
+
witness
|
110
|
+
yearn
|
@@ -0,0 +1,80 @@
|
|
1
|
+
absurd
|
2
|
+
angry
|
3
|
+
anxious
|
4
|
+
beautiful
|
5
|
+
bright
|
6
|
+
brilliant
|
7
|
+
busy
|
8
|
+
calm
|
9
|
+
certain
|
10
|
+
confused
|
11
|
+
curious
|
12
|
+
deep
|
13
|
+
delightful
|
14
|
+
dull
|
15
|
+
eager
|
16
|
+
empty
|
17
|
+
extraordinary
|
18
|
+
faint
|
19
|
+
fearful
|
20
|
+
foolish
|
21
|
+
frightened
|
22
|
+
furry
|
23
|
+
gentle
|
24
|
+
glad
|
25
|
+
good
|
26
|
+
great
|
27
|
+
happy
|
28
|
+
harsh
|
29
|
+
hot
|
30
|
+
huge
|
31
|
+
impossible
|
32
|
+
important
|
33
|
+
interesting
|
34
|
+
joyful
|
35
|
+
kind
|
36
|
+
large
|
37
|
+
lazy
|
38
|
+
light
|
39
|
+
little
|
40
|
+
long
|
41
|
+
loud
|
42
|
+
magical
|
43
|
+
melancholy
|
44
|
+
miserable
|
45
|
+
natural
|
46
|
+
new
|
47
|
+
nonsensical
|
48
|
+
old
|
49
|
+
ordinary
|
50
|
+
patient
|
51
|
+
pleased
|
52
|
+
poor
|
53
|
+
proud
|
54
|
+
quick
|
55
|
+
quiet
|
56
|
+
rude
|
57
|
+
sad
|
58
|
+
savage
|
59
|
+
silly
|
60
|
+
sharp
|
61
|
+
short
|
62
|
+
shy
|
63
|
+
simple
|
64
|
+
sly
|
65
|
+
sudden
|
66
|
+
sullen
|
67
|
+
sweet
|
68
|
+
tall
|
69
|
+
tired
|
70
|
+
tiny
|
71
|
+
tricky
|
72
|
+
troublesome
|
73
|
+
uncommon
|
74
|
+
unpleasant
|
75
|
+
unusual
|
76
|
+
upset
|
77
|
+
very
|
78
|
+
wonderful
|
79
|
+
wretched
|
80
|
+
wrong
|
@@ -0,0 +1,87 @@
|
|
1
|
+
abruptly
|
2
|
+
angrily
|
3
|
+
anxiously
|
4
|
+
ardently
|
5
|
+
assuredly
|
6
|
+
awkwardly
|
7
|
+
barely
|
8
|
+
bravely
|
9
|
+
carefully
|
10
|
+
cheerfully
|
11
|
+
closely
|
12
|
+
curiously
|
13
|
+
deeply
|
14
|
+
definitely
|
15
|
+
doubtfully
|
16
|
+
eagerly
|
17
|
+
easily
|
18
|
+
elegantly
|
19
|
+
enthusiastically
|
20
|
+
even
|
21
|
+
exactly
|
22
|
+
excitedly
|
23
|
+
extremely
|
24
|
+
faintly
|
25
|
+
finally
|
26
|
+
foolishly
|
27
|
+
frequently
|
28
|
+
gently
|
29
|
+
gladly
|
30
|
+
gracefully
|
31
|
+
hastily
|
32
|
+
humbly
|
33
|
+
immediately
|
34
|
+
incredibly
|
35
|
+
intently
|
36
|
+
joyfully
|
37
|
+
justly
|
38
|
+
kindly
|
39
|
+
knee-deep
|
40
|
+
lazily
|
41
|
+
lightly
|
42
|
+
loudly
|
43
|
+
madly
|
44
|
+
merrily
|
45
|
+
mysteriously
|
46
|
+
naturally
|
47
|
+
neatly
|
48
|
+
nervously
|
49
|
+
obviously
|
50
|
+
often
|
51
|
+
openly
|
52
|
+
patiently
|
53
|
+
playfully
|
54
|
+
politely
|
55
|
+
positively
|
56
|
+
proudly
|
57
|
+
quickly
|
58
|
+
quietly
|
59
|
+
readily
|
60
|
+
repeatedly
|
61
|
+
reluctantly
|
62
|
+
rushedly
|
63
|
+
safely
|
64
|
+
sadly
|
65
|
+
sharply
|
66
|
+
silently
|
67
|
+
slowly
|
68
|
+
suddenly
|
69
|
+
suspiciously
|
70
|
+
tenderly
|
71
|
+
thoughtfully
|
72
|
+
tremendously
|
73
|
+
truthfully
|
74
|
+
uncertainly
|
75
|
+
unexpectedly
|
76
|
+
unusually
|
77
|
+
urgently
|
78
|
+
vastly
|
79
|
+
very
|
80
|
+
vividly
|
81
|
+
warmly
|
82
|
+
wearily
|
83
|
+
wildly
|
84
|
+
wisely
|
85
|
+
wonderfully
|
86
|
+
yearningly
|
87
|
+
youthfully
|