babbler 1.0.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MDQ3MjMxMzBkZmIwNDhhZDZmMzQ4ZmQyZGVkZDAwZjA5YzBiOWRhYQ==
4
+ ZWRkYTVlYzFlMWM1NTA1ZDcyNDUzNzE5YmNlYzEyZjQ3NDM5YzIzZQ==
5
5
  data.tar.gz: !binary |-
6
- ZGVmYWM4M2EwNGI0ZDIyNGJlODdkZmJlYzBlYzUxNTVjZDQ5OTI2Zg==
6
+ YjUyZjg4YWRlNWQyZTkyMzE3YWY3YTI1YmE1NDYyZmViYWY5NzViNA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDkxYzQyMWNiOTc2MGQ4NmZjYWZjMDkxNDlmNzY3YWI1NGZlMDE0Y2FmZjFi
10
- NDc3YjQ4YjUxNzY1YTMyNTY3M2E3ODNhOWZhNzM0ODhmNTZhMzkyYTQzZjlj
11
- YmIxN2ViYjE3NzgzZjIxZDRkNjI3ZDA2ZjE3ZGE0YmQwY2JjZTM=
9
+ N2UzYzc2MTMzZGZlZWRkNmY4NjIxMTZkNzFmZTk3MTYxMmZiOTkyYTgxOTFm
10
+ YTM3ZWQ3OGI4NjNjMTcyMjE3ZWViMTliNWQzMzI4YjYzNmIyNDVmMWRiNWRi
11
+ MDNhN2M4OGViMDQ4YzIxNjgxMjBmNDk0YzhiMThjZjY3Mzg2NWE=
12
12
  data.tar.gz: !binary |-
13
- NDE5YmM3Mzg2ZjMyZDU0OTFhNmIzNGI2Yzg1YzdlNWFjMzc3NzI1MjU5MjY1
14
- MzQwNmNkZGQ1ODhjNjg2MWU4NThkYTQwZDBhYmZhZmY5OTY0Y2FmNzdkZmEx
15
- YzAxNTYzY2EwZTczYzE3ZTI3Nzk3ZGYwNzcyYTZhMDA3ZmFiZWI=
13
+ ZWUwZmQ5NzEyYjIzMjA4NTJkNjA2YTMyYWM4YTQ3MTg2ZjRlNTc1OGZlMjg3
14
+ OTRhNzgwYjI3MTQwNjI2ZTJiMTkwNWNmZTBhYzQ4YjRjNmRmYTZjNDAyZDZk
15
+ ZmE0ODcxZTUzNDk1NGJjZWU1ODBkM2JlODhiYjU1YmE0NmYxYWY=
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1 @@
1
+ babbler
@@ -0,0 +1 @@
1
+ 1.9.3
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Babbler
2
2
 
3
- Babbler is a Ruby gem that will make short nonsense phrases for you. The phrases nominally consist of an adjective followed by a noun, though the number of adjectives can be configured. The words in the phrase are common English words.
3
+ Babbler is a Ruby gem that will make short nonsense phrases for you. The phrases nominally consist of an adjective followed by a noun, though the format can be configured. The words in the phrase are common English words.
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,20 +18,26 @@ Or install it yourself as:
18
18
 
19
19
  ## Configuration
20
20
 
21
- To configure Babbler, put the following code in your applications
21
+ To configure Babbler, put the following code in your applications
22
22
  initialization logic (eg. in the config/initializers in a Rails app)
23
-
23
+
24
24
  Babbler.configure do |config|
25
25
  ...
26
26
  end
27
27
 
28
- The following example lists all of the available configuration options,
28
+ The following example lists all of the available configuration options,
29
29
  with the default values shown:
30
30
 
31
31
  Babbler.configure do |config|
32
- # Use a different number of adjectives at the start of the
33
- # phrase, e.g. with a value of 2 you might get 'hard ancient prosecutor'
34
- config.num_adjectives = 1
32
+ # Use a different format for the resulting phrase
33
+ # phrase, e.g. with a value of 'nn' you might get 'prosecutor dog'
34
+ config.format = 'an'
35
+
36
+ # Choose a different word list. Options:
37
+ # :original - the original word list in Babbler
38
+ # :safer_words_1 - the original list with potentially awkward words removed
39
+ # :california_words - words 2nd graders in California are expected to know
40
+ config.word_list = :original
35
41
  end
36
42
 
37
43
  ## Usage
@@ -42,6 +48,8 @@ To get a random babble, type:
42
48
 
43
49
  To always be able to get a specific babble, pass an integer in:
44
50
 
51
+ **Note: This is not guaranteed to be the same result over major versions**
52
+
45
53
  Babbler.babble(42)
46
54
 
47
55
  ## Contributing
data/Rakefile CHANGED
@@ -1,7 +1,24 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
1
+ #!/usr/bin/env rake
3
2
 
4
- RSpec::Core::RakeTask.new
3
+ begin
4
+ require 'bundler/setup'
5
+ rescue LoadError
6
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
7
+ end
8
+
9
+ Bundler::GemHelper.install_tasks
10
+
11
+ require 'rspec/core'
12
+ require 'rspec/core/rake_task'
13
+
14
+ desc "Open an irb session preloaded with this library"
15
+ task :console do
16
+ sh "irb -rubygems -I lib -r babbler.rb"
17
+ end
18
+
19
+ desc "Run all specs in spec directory (excluding plugin specs)"
20
+ RSpec::Core::RakeTask.new(:spec)
5
21
 
6
22
  task :default => :spec
7
- task :test => :spec
23
+ task :test => :spec
24
+
@@ -9,9 +9,9 @@ Gem::Specification.new do |gem|
9
9
  gem.authors = ["JP Slavinsky"]
10
10
  gem.email = ["jpslav@gmail.com"]
11
11
  gem.description = %q{Creates nonsense babble in the form of an adjective plus a noun}
12
- gem.summary = %q{Creates nonsense babble in the form of an adjective plus a noun.
13
- Useful for creating code phrases or random names. The words are
14
- limited to common ones, so the number of unique combinations is
12
+ gem.summary = %q{Creates nonsense babble in the form of an adjective plus a noun.
13
+ Useful for creating code phrases or random names. The words are
14
+ limited to common ones, so the number of unique combinations is
15
15
  only around 5e6.}
16
16
  gem.homepage = "http://github.com/lml/babbler"
17
17
 
@@ -20,6 +20,8 @@ Gem::Specification.new do |gem|
20
20
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
21
21
  gem.require_paths = ["lib"]
22
22
 
23
- gem.add_development_dependency 'rake'
23
+ gem.add_development_dependency "rake"
24
24
  gem.add_development_dependency "rspec"
25
+ gem.add_development_dependency "rspec-mocks"
26
+ gem.add_development_dependency "pry"
25
27
  end
@@ -1,34 +1,55 @@
1
1
  require "babbler/version"
2
- require "babbler/words"
2
+ require "babbler/original_words"
3
+ require "babbler/safer_words_1"
4
+ require "babbler/california_words"
3
5
 
4
6
  module Babbler
5
7
 
6
- class << self
8
+ class << self
7
9
 
8
10
  def babble(seed = nil)
9
11
  prng = Random.new(seed || Random.new_seed)
10
12
 
11
- adjectives = []
12
- Babbler.config.num_adjectives.times do
13
- adjectives.push(ADJECTIVES[prng.rand(ADJECTIVES.length)])
13
+ babble_words = supported_formats.collect do |f|
14
+ send("format_#{f}")[prng.rand(send("format_#{f}").length)]
14
15
  end
15
- noun = NOUNS[prng.rand(NOUNS.length)]
16
16
 
17
- "#{adjectives.join(' ')} #{noun}"
17
+ babble_words.join(' ')
18
18
  end
19
-
19
+
20
+ def words
21
+ case Babbler.config.word_list
22
+ when :original
23
+ ORIGINAL_WORDS
24
+ when :safer_words_1
25
+ SAFER_WORDS_1
26
+ when :california_words
27
+ CALIFORNIA_WORDS
28
+ else
29
+ raise NameError, "Unknown 'word_list' configuration: #{Babbler.config.word_list}"
30
+ end
31
+ end
32
+
33
+ def adjectives
34
+ words[:adjectives]
35
+ end
36
+
37
+ def nouns
38
+ words[:nouns]
39
+ end
40
+
20
41
  ###########################################################################
21
42
  #
22
43
  # Configuration machinery.
23
44
  #
24
- # To configure Babbler, put the following code in your applications
45
+ # To configure Babbler, put the following code in your applications
25
46
  # initialization logic (eg. in the config/initializers in a Rails app)
26
47
  #
27
48
  # Babbler.configure do |config|
28
49
  # ...
29
50
  # end
30
51
  #
31
-
52
+
32
53
  def configure
33
54
  yield config
34
55
  end
@@ -38,13 +59,25 @@ module Babbler
38
59
  end
39
60
 
40
61
  class Configuration
41
- attr_accessor :num_adjectives
62
+ attr_accessor :format
63
+ attr_accessor :word_list
42
64
 
43
- def initialize
44
- @num_adjectives = 1
65
+ def initialize
66
+ @format = 'an'
67
+ @word_list = :original
45
68
  super
46
69
  end
47
70
  end
48
-
71
+
72
+ private
73
+ alias :format_a :adjectives
74
+ alias :format_n :nouns
75
+
76
+ def supported_formats
77
+ sanitized = (Babbler.config.format || '').downcase
78
+ formats = sanitized.split('').reject { |i| i.match(/[^an]/) }
79
+ formats.any? ? formats : ['a', 'n']
80
+ end
81
+
49
82
  end
50
83
  end
@@ -0,0 +1,2085 @@
1
+ module Babbler
2
+
3
+ # Safe words were taken froma list of nouns and adjectives every Grade 2
4
+ # graduate is expected to know in the state of California circa 2015.
5
+
6
+ CALIFORNIA_WORDS = {
7
+ adjectives: %w(
8
+ wise
9
+ wistful
10
+ misty
11
+ rapid
12
+ absurd
13
+ satisfying
14
+ steady
15
+ parsimonious
16
+ pale
17
+ nine
18
+ jittery
19
+ amazing
20
+ madly
21
+ plastic
22
+ spotted
23
+ groovy
24
+ abaft
25
+ fine
26
+ spotless
27
+ level
28
+ unused
29
+ adaptable
30
+ silent
31
+ resolute
32
+ healthy
33
+ nippy
34
+ deep
35
+ instinctive
36
+ wretched
37
+ stormy
38
+ judicious
39
+ statuesque
40
+ organic
41
+ detailed
42
+ brash
43
+ small
44
+ callous
45
+ tangy
46
+ toothsome
47
+ outrageous
48
+ yellow
49
+ charming
50
+ eager
51
+ symptomatic
52
+ aspiring
53
+ warlike
54
+ curvy
55
+ bashful
56
+ dark
57
+ parallel
58
+ obedient
59
+ furtive
60
+ gratis
61
+ scintillating
62
+ wiry
63
+ well-groomed
64
+ foolish
65
+ bizarre
66
+ bumpy
67
+ lopsided
68
+ wide
69
+ impolite
70
+ deranged
71
+ pathetic
72
+ zealous
73
+ cagey
74
+ hungry
75
+ new
76
+ narrow
77
+ busy
78
+ bawdy
79
+ lackadaisical
80
+ aboriginal
81
+ great
82
+ hurried
83
+ brave
84
+ receptive
85
+ fertile
86
+ first
87
+ accurate
88
+ purple
89
+ easy
90
+ verdant
91
+ cluttered
92
+ faithful
93
+ handy
94
+ sedate
95
+ scattered
96
+ unbiased
97
+ amuck
98
+ free
99
+ barbarous
100
+ rightful
101
+ volatile
102
+ forgetful
103
+ smart
104
+ gainful
105
+ vigorous
106
+ unwritten
107
+ mysterious
108
+ acceptable
109
+ horrible
110
+ real
111
+ waggish
112
+ tasteless
113
+ berserk
114
+ nimble
115
+ lively
116
+ maddening
117
+ abstracted
118
+ shaggy
119
+ steep
120
+ lewd
121
+ cloudy
122
+ massive
123
+ lavish
124
+ far
125
+ drunk
126
+ false
127
+ giant
128
+ wakeful
129
+ mixed
130
+ scrawny
131
+ frail
132
+ idiotic
133
+ filthy
134
+ necessary
135
+ embarrassed
136
+ spiffy
137
+ wicked
138
+ obtainable
139
+ scandalous
140
+ enthusiastic
141
+ enchanting
142
+ known
143
+ general
144
+ foregoing
145
+ tasty
146
+ crowded
147
+ different
148
+ venomous
149
+ probable
150
+ angry
151
+ equal
152
+ parched
153
+ awesome
154
+ vivacious
155
+ guttural
156
+ fluffy
157
+ cruel
158
+ tight
159
+ sudden
160
+ milky
161
+ sable
162
+ smelly
163
+ lovely
164
+ obeisant
165
+ uncovered
166
+ fluttering
167
+ jazzy
168
+ befitting
169
+ enormous
170
+ present
171
+ willing
172
+ sore
173
+ agonizing
174
+ thankful
175
+ mute
176
+ ahead
177
+ fabulous
178
+ adjoining
179
+ juvenile
180
+ damaged
181
+ miscreant
182
+ scary
183
+ breezy
184
+ perpetual
185
+ grandiose
186
+ slimy
187
+ changeable
188
+ electric
189
+ familiar
190
+ snotty
191
+ lame
192
+ dramatic
193
+ private
194
+ whispering
195
+ puffy
196
+ excited
197
+ wet
198
+ dear
199
+ thick
200
+ fallacious
201
+ grey
202
+ thoughtful
203
+ teeny
204
+ imperfect
205
+ clean
206
+ moldy
207
+ nappy
208
+ capricious
209
+ defiant
210
+ troubled
211
+ rough
212
+ clumsy
213
+ chunky
214
+ majestic
215
+ economic
216
+ classy
217
+ debonair
218
+ unequal
219
+ ill
220
+ gruesome
221
+ depressed
222
+ gabby
223
+ extra-small
224
+ goofy
225
+ bustling
226
+ glamorous
227
+ violent
228
+ wary
229
+ sordid
230
+ inconclusive
231
+ marvelous
232
+ bent
233
+ stingy
234
+ picayune
235
+ modern
236
+ lonely
237
+ tasteful
238
+ languid
239
+ stupendous
240
+ right
241
+ cool
242
+ awake
243
+ flat
244
+ last
245
+ drab
246
+ exclusive
247
+ thirsty
248
+ physical
249
+ funny
250
+ descriptive
251
+ bouncy
252
+ exotic
253
+ chemical
254
+ ashamed
255
+ female
256
+ important
257
+ anxious
258
+ thundering
259
+ dusty
260
+ snobbish
261
+ unarmed
262
+ jolly
263
+ cloistered
264
+ sad
265
+ precious
266
+ dull
267
+ old
268
+ evasive
269
+ bored
270
+ wrathful
271
+ daffy
272
+ beneficial
273
+ unable
274
+ long-term
275
+ lying
276
+ nondescript
277
+ permissible
278
+ screeching
279
+ tender
280
+ quick
281
+ shallow
282
+ humorous
283
+ nervous
284
+ three
285
+ lively
286
+ ugly
287
+ optimal
288
+ gifted
289
+ spiritual
290
+ half
291
+ large
292
+ grotesque
293
+ aback
294
+ somber
295
+ painstaking
296
+ pushy
297
+ second-hand
298
+ kaput
299
+ guiltless
300
+ normal
301
+ incompetent
302
+ mindless
303
+ combative
304
+ blue-eyed
305
+ scientific
306
+ delicious
307
+ tense
308
+ greasy
309
+ functional
310
+ vulgar
311
+ violet
312
+ soft
313
+ cuddly
314
+ fearless
315
+ fragile
316
+ testy
317
+ lucky
318
+ coherent
319
+ hilarious
320
+ ceaseless
321
+ previous
322
+ aboard
323
+ average
324
+ tough
325
+ calculating
326
+ momentous
327
+ quarrelsome
328
+ murky
329
+ alleged
330
+ auspicious
331
+ quirky
332
+ married
333
+ jealous
334
+ reminiscent
335
+ stiff
336
+ icy
337
+ assorted
338
+ erratic
339
+ woozy
340
+ same
341
+ educated
342
+ fixed
343
+ regular
344
+ spurious
345
+ mere
346
+ nonstop
347
+ salty
348
+ relieved
349
+ robust
350
+ strong
351
+ confused
352
+ arrogant
353
+ magenta
354
+ determined
355
+ acrid
356
+ dusty
357
+ burly
358
+ terrible
359
+ voracious
360
+ lethal
361
+ youthful
362
+ wholesale
363
+ breakable
364
+ loud
365
+ workable
366
+ left
367
+ incredible
368
+ godly
369
+ interesting
370
+ profuse
371
+ honorable
372
+ alluring
373
+ true
374
+ kindly
375
+ better
376
+ ethereal
377
+ resonant
378
+ sincere
379
+ dependent
380
+ weary
381
+ mushy
382
+ colorful
383
+ divergent
384
+ juicy
385
+ fascinated
386
+ sturdy
387
+ soggy
388
+ wandering
389
+ accessible
390
+ nosy
391
+ vagabond
392
+ ripe
393
+ long
394
+ synonymous
395
+ responsible
396
+ excellent
397
+ halting
398
+ zany
399
+ loving
400
+ afraid
401
+ fretful
402
+ abrasive
403
+ tiresome
404
+ best
405
+ taboo
406
+ billowy
407
+ innate
408
+ sour
409
+ scared
410
+ ugliest
411
+ scarce
412
+ disturbed
413
+ faulty
414
+ phobic
415
+ brawny
416
+ hanging
417
+ abrupt
418
+ dangerous
419
+ lowly
420
+ boiling
421
+ meek
422
+ adhesive
423
+ petite
424
+ upset
425
+ hideous
426
+ dead
427
+ panoramic
428
+ bewildered
429
+ actually
430
+ careless
431
+ gleaming
432
+ abashed
433
+ smiling
434
+ neat
435
+ peaceful
436
+ perfect
437
+ loutish
438
+ sweet
439
+ material
440
+ five
441
+ imported
442
+ lyrical
443
+ tacky
444
+ utopian
445
+ wacky
446
+ boorish
447
+ humdrum
448
+ exuberant
449
+ tan
450
+ impossible
451
+ full
452
+ unequaled
453
+ rigid
454
+ cooing
455
+ daily
456
+ belligerent
457
+ abusive
458
+ acidic
459
+ hissing
460
+ creepy
461
+ gamy
462
+ annoyed
463
+ able
464
+ tawdry
465
+ exciting
466
+ disagreeable
467
+ opposite
468
+ spotty
469
+ adamant
470
+ acid
471
+ null
472
+ standing
473
+ axiomatic
474
+ truthful
475
+ zippy
476
+ thoughtless
477
+ nutty
478
+ ritzy
479
+ useless
480
+ unique
481
+ sleepy
482
+ adorable
483
+ ubiquitous
484
+ knotty
485
+ tested
486
+ defective
487
+ ordinary
488
+ fair
489
+ wide-eyed
490
+ subdued
491
+ grumpy
492
+ concerned
493
+ certain
494
+ innocent
495
+ damp
496
+ ready
497
+ stereotyped
498
+ tremendous
499
+ famous
500
+ tired
501
+ pretty
502
+ red
503
+ complex
504
+ discreet
505
+ craven
506
+ disgusted
507
+ doubtful
508
+ nonchalant
509
+ young
510
+ few
511
+ cumbersome
512
+ vacuous
513
+ pumped
514
+ witty
515
+ various
516
+ little
517
+ happy
518
+ tricky
519
+ torpid
520
+ icky
521
+ tedious
522
+ hysterical
523
+ steadfast
524
+ mighty
525
+ penitent
526
+ alert
527
+ succinct
528
+ tidy
529
+ ill-fated
530
+ lacking
531
+ hulking
532
+ delightful
533
+ sick
534
+ questionable
535
+ careful
536
+ whimsical
537
+ efficient
538
+ many
539
+ messy
540
+ puzzling
541
+ imminent
542
+ four
543
+ unaccountable
544
+ uptight
545
+ labored
546
+ overrated
547
+ omniscient
548
+ freezing
549
+ grateful
550
+ tearful
551
+ even
552
+ ambitious
553
+ valuable
554
+ next
555
+ glossy
556
+ pleasant
557
+ abject
558
+ intelligent
559
+ calm
560
+ faded
561
+ magical
562
+ itchy
563
+ recondite
564
+ brainy
565
+ oceanic
566
+ ignorant
567
+ future
568
+ vengeful
569
+ undesirable
570
+ kindhearted
571
+ empty
572
+ crooked
573
+ wasteful
574
+ truculent
575
+ remarkable
576
+ versed
577
+ lamentable
578
+ stale
579
+ oval
580
+ polite
581
+ garrulous
582
+ placid
583
+ bloody
584
+ domineering
585
+ hollow
586
+ successful
587
+ habitual
588
+ overwrought
589
+ dynamic
590
+ lean
591
+ fuzzy
592
+ clear
593
+ paltry
594
+ earthy
595
+ rabid
596
+ spectacular
597
+ holistic
598
+ warm
599
+ evanescent
600
+ raspy
601
+ quack
602
+ whole
603
+ near
604
+ marked
605
+ unwieldy
606
+ woebegone
607
+ likeable
608
+ offbeat
609
+ sneaky
610
+ heady
611
+ petite
612
+ special
613
+ childlike
614
+ unnatural
615
+ sassy
616
+ invincible
617
+ complete
618
+ delicate
619
+ silly
620
+ vague
621
+ delirious
622
+ outstanding
623
+ deafening
624
+ subsequent
625
+ imaginary
626
+ tightfisted
627
+ keen
628
+ ten
629
+ ajar
630
+ worthless
631
+ exultant
632
+ tall
633
+ incandescent
634
+ worried
635
+ separate
636
+ elite
637
+ temporary
638
+ sore
639
+ jobless
640
+ astonishing
641
+ maniacal
642
+ unknown
643
+ hushed
644
+ shrill
645
+ trashy
646
+ quaint
647
+ fearful
648
+ aggressive
649
+ bright
650
+ well-off
651
+ knowing
652
+ entertaining
653
+ apathetic
654
+ poised
655
+ fancy
656
+ wrong
657
+ harmonious
658
+ curved
659
+ bitter
660
+ heavy
661
+ limping
662
+ glistening
663
+ spiky
664
+ decisive
665
+ zesty
666
+ dreary
667
+ joyous
668
+ repulsive
669
+ ancient
670
+ miniature
671
+ nasty
672
+ chubby
673
+ wealthy
674
+ male
675
+ hateful
676
+ gusty
677
+ materialistic
678
+ unruly
679
+ cute
680
+ outgoing
681
+ ablaze
682
+ ludicrous
683
+ attractive
684
+ obese
685
+ flashy
686
+ dispensable
687
+ hot
688
+ obsolete
689
+ envious
690
+ pricey
691
+ closed
692
+ selfish
693
+ comfortable
694
+ grieving
695
+ pink
696
+ green
697
+ painful
698
+ low
699
+ therapeutic
700
+ strange
701
+ protective
702
+ legal
703
+ dapper
704
+ clammy
705
+ macho
706
+ plant
707
+ ambiguous
708
+ oafish
709
+ eight
710
+ hard
711
+ defeated
712
+ graceful
713
+ jumpy
714
+ tart
715
+ reflective
716
+ slow
717
+ grouchy
718
+ crabby
719
+ psychotic
720
+ luxuriant
721
+ voiceless
722
+ unkempt
723
+ lush
724
+ cheap
725
+ sparkling
726
+ superficial
727
+ dashing
728
+ historical
729
+ feeble
730
+ fierce
731
+ aromatic
732
+ rampant
733
+ uninterested
734
+ adventurous
735
+ cynical
736
+ fanatical
737
+ plausible
738
+ insidious
739
+ quickest
740
+ smoggy
741
+ laughable
742
+ deadpan
743
+ harsh
744
+ demonic
745
+ gigantic
746
+ understood
747
+ moaning
748
+ equable
749
+ deeply
750
+ flowery
751
+ greedy
752
+ ruddy
753
+ helpless
754
+ substantial
755
+ decorous
756
+ squalid
757
+ elderly
758
+ amusing
759
+ shivering
760
+ malicious
761
+ tenuous
762
+ numerous
763
+ unadvised
764
+ gentle
765
+ flimsy
766
+ abundant
767
+ longing
768
+ elfin
769
+ talented
770
+ festive
771
+ thinkable
772
+ shy
773
+ rustic
774
+ clever
775
+ shocking
776
+ redundant
777
+ selective
778
+ old-fashioned
779
+ boring
780
+ swanky
781
+ towering
782
+ wild
783
+ two
784
+ gorgeous
785
+ observant
786
+ learned
787
+ extra-large
788
+ knowledgeable
789
+ rural
790
+ chilly
791
+ striped
792
+ expensive
793
+ slippery
794
+ secretive
795
+ sharp
796
+ jagged
797
+ immense
798
+ overt
799
+ minor
800
+ uttermost
801
+ serious
802
+ irate
803
+ unsuitable
804
+ purring
805
+ broken
806
+ rude
807
+ mean
808
+ secret
809
+ impartial
810
+ brown
811
+ kind
812
+ tense
813
+ thirsty
814
+ cowardly
815
+ furry
816
+ earsplitting
817
+ heavenly
818
+ naive
819
+ futuristic
820
+ fantastic
821
+ absent
822
+ coordinated
823
+ sulky
824
+ hallowed
825
+ nifty
826
+ good
827
+ unhealthy
828
+ simplistic
829
+ plain
830
+ flawless
831
+ wooden
832
+ conscious
833
+ open
834
+ crazy
835
+ infamous
836
+ alive
837
+ well-to-do
838
+ quizzical
839
+ beautiful
840
+ dizzy
841
+ nice
842
+ six
843
+ fumbling
844
+ quixotic
845
+ past
846
+ abnormal
847
+ sophisticated
848
+ wonderful
849
+ homely
850
+ periodic
851
+ aloof
852
+ uneven
853
+ piquant
854
+ smooth
855
+ courageous
856
+ agreeable
857
+ cold
858
+ pointless
859
+ slim
860
+ waiting
861
+ diligent
862
+ short
863
+ big
864
+ direful
865
+ handsome
866
+ animated
867
+ white
868
+ devilish
869
+ handsomely
870
+ helpful
871
+ rhetorical
872
+ jumbled
873
+ foamy
874
+ zonked
875
+ huge
876
+ righteous
877
+ obscene
878
+ round
879
+ natural
880
+ inexpensive
881
+ unusual
882
+ melodic
883
+ stupid
884
+ yielding
885
+ high-pitched
886
+ overjoyed
887
+ noiseless
888
+ uppity
889
+ guarded
890
+ automatic
891
+ mature
892
+ straight
893
+ nutritious
894
+ and
895
+ upbeat
896
+ simple
897
+ seemly
898
+ silent
899
+ racial
900
+ abounding
901
+ premium
902
+ cultured
903
+ rich
904
+ stimulating
905
+ superb
906
+ damaging
907
+ makeshift
908
+ spicy
909
+ distinct
910
+ bright
911
+ abiding
912
+ faint
913
+ utter
914
+ ratty
915
+ mellow
916
+ giddy
917
+ erect
918
+ melted
919
+ aquatic
920
+ ruthless
921
+ obsequious
922
+ nauseating
923
+ hapless
924
+ spiteful
925
+ noisy
926
+ unsightly
927
+ super
928
+ threatening
929
+ victorious
930
+ illustrious
931
+ safe
932
+ teeny-tiny
933
+ hesitant
934
+ wry
935
+ available
936
+ common
937
+ lumpy
938
+ puzzled
939
+ loose
940
+ third
941
+ absorbing
942
+ tangible
943
+ cheerful
944
+ skillful
945
+ merciful
946
+ hard-to-find
947
+ wiggly
948
+ neighborly
949
+ panicky
950
+ hospitable
951
+ amused
952
+ trite
953
+ capable
954
+ enchanted
955
+ frightened
956
+ frightening
957
+ solid
958
+ efficacious
959
+ fast
960
+ roomy
961
+ far-flung
962
+ used
963
+ tame
964
+ spooky
965
+ noxious
966
+ sticky
967
+ typical
968
+ elated
969
+ macabre
970
+ ragged
971
+ flaky
972
+ untidy
973
+ hypnotic
974
+ plucky
975
+ husky
976
+ tacit
977
+ terrific
978
+ hurt
979
+ cute
980
+ didactic
981
+ swift
982
+ thin
983
+ curly
984
+ staking
985
+ prickly
986
+ shiny
987
+ living
988
+ silky
989
+ possible
990
+ literate
991
+ cautious
992
+ odd
993
+ disastrous
994
+ dysfunctional
995
+ boundless
996
+ fresh
997
+ obnoxious
998
+ splendid
999
+ rebel
1000
+ ultra
1001
+ one
1002
+ powerful
1003
+ fortunate
1004
+ brief
1005
+ late
1006
+ high
1007
+ motionless
1008
+ elegant
1009
+ cut
1010
+ nebulous
1011
+ telling
1012
+ second
1013
+ friendly
1014
+ supreme
1015
+ inquisitive
1016
+ shaky
1017
+ homeless
1018
+ yummy
1019
+ tranquil
1020
+ numberless
1021
+ meaty
1022
+ draconian
1023
+ heartbreaking
1024
+ frantic
1025
+ tiny
1026
+ endurable
1027
+ puny
1028
+ measly
1029
+ proud
1030
+ illegal
1031
+ possessive
1032
+ glib
1033
+ romantic
1034
+ medical
1035
+ weak
1036
+ absorbed
1037
+ abandoned
1038
+ sloppy
1039
+ energetic
1040
+ alcoholic
1041
+ aware
1042
+ public
1043
+ orange
1044
+ like
1045
+ colossal
1046
+ muddled
1047
+ lazy
1048
+ internal
1049
+ alike
1050
+ cooperative
1051
+ hellish
1052
+ fat
1053
+ windy
1054
+ bad
1055
+ needy
1056
+ overconfident
1057
+ acoustic
1058
+ disillusioned
1059
+ useful
1060
+ onerous
1061
+ disgusting
1062
+ magnificent
1063
+ gray
1064
+ curious
1065
+ chief
1066
+ dry
1067
+ jaded
1068
+ wanting
1069
+ sweltering
1070
+ abortive
1071
+ flippant
1072
+ dirty
1073
+ broad
1074
+ watery
1075
+ irritating
1076
+ accidental
1077
+ bite-sized
1078
+ early
1079
+ blushing
1080
+ eatable
1081
+ grubby
1082
+ adhoc
1083
+ quiet
1084
+ skinny
1085
+ glorious
1086
+ industrious
1087
+ mundane
1088
+ rare
1089
+ poor
1090
+ savory
1091
+ needless
1092
+ squealing
1093
+ ossified
1094
+ productive
1095
+ highfalutin
1096
+ mountainous
1097
+ military
1098
+ frequent
1099
+ rambunctious
1100
+ naughty
1101
+ vast
1102
+ nostalgic
1103
+ encouraging
1104
+ blue
1105
+ roasted
1106
+ squeamish
1107
+ shut
1108
+ unbecoming
1109
+ political
1110
+ light
1111
+ annoying
1112
+ difficult
1113
+ ill-informed
1114
+ well-made
1115
+ gaudy
1116
+ pastoral
1117
+ royal
1118
+ gullible
1119
+ square
1120
+ condemned
1121
+ deserted
1122
+ psychedelic
1123
+ dazzling
1124
+ eminent
1125
+ caring
1126
+ flagrant
1127
+ gaping
1128
+ rainy
1129
+ chivalrous
1130
+ rotten
1131
+ elastic
1132
+ feigned
1133
+ mammoth
1134
+ addicted
1135
+ awful
1136
+ finicky
1137
+ ),
1138
+
1139
+ nouns: %w(
1140
+ anger
1141
+ basketball
1142
+ match
1143
+ pear
1144
+ drum
1145
+ profit
1146
+ offer
1147
+ observation
1148
+ feeling
1149
+ drop
1150
+ sense
1151
+ clock
1152
+ jail
1153
+ feast
1154
+ joke
1155
+ force
1156
+ hour
1157
+ afterthought
1158
+ hen
1159
+ burst
1160
+ straw
1161
+ wax
1162
+ oatmeal
1163
+ letter
1164
+ cherry
1165
+ drink
1166
+ bird
1167
+ expert
1168
+ glue
1169
+ thought
1170
+ cellar
1171
+ rings
1172
+ clocks
1173
+ memory
1174
+ horse
1175
+ apple
1176
+ field
1177
+ park
1178
+ road
1179
+ map
1180
+ order
1181
+ bikes
1182
+ lace
1183
+ house
1184
+ balance
1185
+ writer
1186
+ night
1187
+ theory
1188
+ tax
1189
+ harbor
1190
+ sort
1191
+ beginner
1192
+ bear
1193
+ things
1194
+ cup
1195
+ pet
1196
+ lake
1197
+ stream
1198
+ hope
1199
+ fight
1200
+ achiever
1201
+ calendar
1202
+ silk
1203
+ jellyfish
1204
+ plot
1205
+ snakes
1206
+ waste
1207
+ breakfast
1208
+ impulse
1209
+ cheese
1210
+ current
1211
+ group
1212
+ rule
1213
+ pest
1214
+ goat
1215
+ kiss
1216
+ plants
1217
+ meal
1218
+ pail
1219
+ linen
1220
+ kick
1221
+ ant
1222
+ fowl
1223
+ discovery
1224
+ hospital
1225
+ vein
1226
+ income
1227
+ sofa
1228
+ card
1229
+ pin
1230
+ beam
1231
+ story
1232
+ quiet
1233
+ cows
1234
+ can
1235
+ bubble
1236
+ fireman
1237
+ direction
1238
+ rake
1239
+ cattle
1240
+ wing
1241
+ argument
1242
+ care
1243
+ vessel
1244
+ guitar
1245
+ notebook
1246
+ system
1247
+ coast
1248
+ cub
1249
+ room
1250
+ cherries
1251
+ porter
1252
+ pies
1253
+ flowers
1254
+ process
1255
+ leather
1256
+ hydrant
1257
+ sack
1258
+ stone
1259
+ fifth
1260
+ crack
1261
+ bead
1262
+ zinc
1263
+ coal
1264
+ route
1265
+ rub
1266
+ credit
1267
+ chess
1268
+ coat
1269
+ cloud
1270
+ garden
1271
+ protest
1272
+ dogs
1273
+ thunder
1274
+ popcorn
1275
+ curve
1276
+ self
1277
+ door
1278
+ finger
1279
+ mark
1280
+ disgust
1281
+ mice
1282
+ move
1283
+ pleasure
1284
+ goldfish
1285
+ relation
1286
+ hat
1287
+ lip
1288
+ degree
1289
+ band
1290
+ act
1291
+ interest
1292
+ knee
1293
+ knowledge
1294
+ rabbits
1295
+ flame
1296
+ camp
1297
+ comb
1298
+ water
1299
+ prison
1300
+ cannon
1301
+ crowd
1302
+ stomach
1303
+ seed
1304
+ discussion
1305
+ beggar
1306
+ silver
1307
+ bait
1308
+ exchange
1309
+ talk
1310
+ camera
1311
+ change
1312
+ head
1313
+ list
1314
+ tray
1315
+ reading
1316
+ tub
1317
+ glass
1318
+ bun
1319
+ pie
1320
+ cream
1321
+ distribution
1322
+ flag
1323
+ quartz
1324
+ pipe
1325
+ work
1326
+ grain
1327
+ plane
1328
+ bread
1329
+ shoe
1330
+ control
1331
+ page
1332
+ operation
1333
+ scissors
1334
+ curtain
1335
+ monkey
1336
+ trail
1337
+ wheel
1338
+ wash
1339
+ stage
1340
+ idea
1341
+ range
1342
+ shock
1343
+ song
1344
+ record
1345
+ faucet
1346
+ snails
1347
+ disease
1348
+ skate
1349
+ pump
1350
+ industry
1351
+ cap
1352
+ shade
1353
+ town
1354
+ bridge
1355
+ coach
1356
+ name
1357
+ party
1358
+ blow
1359
+ boats
1360
+ chickens
1361
+ car
1362
+ legs
1363
+ steel
1364
+ design
1365
+ trip
1366
+ patch
1367
+ crime
1368
+ airport
1369
+ manager
1370
+ zipper
1371
+ throat
1372
+ flower
1373
+ ship
1374
+ hook
1375
+ territory
1376
+ grip
1377
+ paper
1378
+ plant
1379
+ army
1380
+ machine
1381
+ box
1382
+ trousers
1383
+ earthquake
1384
+ letters
1385
+ giants
1386
+ honey
1387
+ end
1388
+ print
1389
+ treatment
1390
+ rock
1391
+ library
1392
+ dog
1393
+ feather
1394
+ time
1395
+ walk
1396
+ juice
1397
+ playground
1398
+ furniture
1399
+ reason
1400
+ front
1401
+ dirt
1402
+ title
1403
+ light
1404
+ sponge
1405
+ turkey
1406
+ roof
1407
+ wish
1408
+ soup
1409
+ weather
1410
+ mailbox
1411
+ yarn
1412
+ turn
1413
+ show
1414
+ condition
1415
+ police
1416
+ worm
1417
+ cobweb
1418
+ summer
1419
+ sail
1420
+ drug
1421
+ corn
1422
+ word
1423
+ dock
1424
+ riddle
1425
+ attack
1426
+ trick
1427
+ toe
1428
+ hearing
1429
+ dinner
1430
+ plough
1431
+ jeans
1432
+ shelf
1433
+ cakes
1434
+ heart
1435
+ donkey
1436
+ cave
1437
+ angle
1438
+ flight
1439
+ smell
1440
+ mine
1441
+ development
1442
+ position
1443
+ sound
1444
+ geese
1445
+ believe
1446
+ rabbit
1447
+ branch
1448
+ trouble
1449
+ pancake
1450
+ planes
1451
+ amount
1452
+ hill
1453
+ brain
1454
+ cats
1455
+ belief
1456
+ clam
1457
+ voyage
1458
+ hammer
1459
+ pen
1460
+ kite
1461
+ lizards
1462
+ bag
1463
+ sink
1464
+ agreement
1465
+ drain
1466
+ glove
1467
+ bedroom
1468
+ competition
1469
+ laborer
1470
+ test
1471
+ jelly
1472
+ magic
1473
+ channel
1474
+ destruction
1475
+ aftermath
1476
+ fly
1477
+ side
1478
+ wealth
1479
+ increase
1480
+ view
1481
+ produce
1482
+ border
1483
+ tent
1484
+ war
1485
+ oil
1486
+ window
1487
+ railway
1488
+ ice
1489
+ creator
1490
+ pencil
1491
+ invention
1492
+ lift
1493
+ crown
1494
+ metal
1495
+ chance
1496
+ baseball
1497
+ body
1498
+ morning
1499
+ face
1500
+ decision
1501
+ birthday
1502
+ quarter
1503
+ ducks
1504
+ vacation
1505
+ laugh
1506
+ step
1507
+ place
1508
+ string
1509
+ eyes
1510
+ arithmetic
1511
+ thread
1512
+ sock
1513
+ fruit
1514
+ low
1515
+ fuel
1516
+ yard
1517
+ scarf
1518
+ seat
1519
+ jewel
1520
+ kitty
1521
+ wren
1522
+ yak
1523
+ quiver
1524
+ day
1525
+ shop
1526
+ weight
1527
+ health
1528
+ mint
1529
+ key
1530
+ event
1531
+ chicken
1532
+ ground
1533
+ bit
1534
+ milk
1535
+ parent
1536
+ smile
1537
+ feet
1538
+ cover
1539
+ spiders
1540
+ verse
1541
+ skirt
1542
+ potato
1543
+ stew
1544
+ sweater
1545
+ guide
1546
+ jar
1547
+ store
1548
+ bottle
1549
+ bean
1550
+ maid
1551
+ kittens
1552
+ parcel
1553
+ mountain
1554
+ leaf
1555
+ fan
1556
+ jump
1557
+ history
1558
+ connection
1559
+ approval
1560
+ sneeze
1561
+ lunchroom
1562
+ balloon
1563
+ advice
1564
+ lead
1565
+ wrench
1566
+ toothbrush
1567
+ paste
1568
+ toothpaste
1569
+ run
1570
+ rate
1571
+ example
1572
+ neck
1573
+ nest
1574
+ robin
1575
+ arm
1576
+ suggestion
1577
+ teeth
1578
+ attempt
1579
+ finger
1580
+ spring
1581
+ sea
1582
+ crayon
1583
+ substance
1584
+ scarecrow
1585
+ join
1586
+ smoke
1587
+ horn
1588
+ nation
1589
+ screw
1590
+ farm
1591
+ existence
1592
+ ink
1593
+ pickle
1594
+ houses
1595
+ wound
1596
+ bulb
1597
+ reward
1598
+ friend
1599
+ owner
1600
+ trade
1601
+ cabbage
1602
+ bed
1603
+ marble
1604
+ way
1605
+ egg
1606
+ queen
1607
+ hobbies
1608
+ cars
1609
+ brush
1610
+ advertisement
1611
+ sheet
1612
+ cow
1613
+ mass
1614
+ week
1615
+ shape
1616
+ apparel
1617
+ duck
1618
+ ornament
1619
+ copy
1620
+ snow
1621
+ clouds
1622
+ nose
1623
+ comfort
1624
+ fairies
1625
+ station
1626
+ pig
1627
+ lunch
1628
+ sleet
1629
+ power
1630
+ amusement
1631
+ tree
1632
+ shirt
1633
+ price
1634
+ teaching
1635
+ pan
1636
+ loss
1637
+ friction
1638
+ chair
1639
+ toys
1640
+ toad
1641
+ learning
1642
+ stitch
1643
+ ball
1644
+ chain
1645
+ gold
1646
+ brass
1647
+ lawyer
1648
+ pull
1649
+ pot
1650
+ star
1651
+ square
1652
+ mitten
1653
+ rose
1654
+ button
1655
+ behavior
1656
+ fiction
1657
+ look
1658
+ fork
1659
+ blade
1660
+ sticks
1661
+ error
1662
+ tin
1663
+ arch
1664
+ account
1665
+ spark
1666
+ veil
1667
+ whistle
1668
+ mind
1669
+ ear
1670
+ expansion
1671
+ oven
1672
+ iron
1673
+ copper
1674
+ experience
1675
+ heat
1676
+ rest
1677
+ judge
1678
+ cable
1679
+ start
1680
+ bucket
1681
+ effect
1682
+ ladybug
1683
+ picture
1684
+ kettle
1685
+ fog
1686
+ nerve
1687
+ use
1688
+ bat
1689
+ caption
1690
+ floor
1691
+ tomatoes
1692
+ tendency
1693
+ brick
1694
+ building
1695
+ soda
1696
+ liquid
1697
+ thumb
1698
+ voice
1699
+ slope
1700
+ vegetable
1701
+ creature
1702
+ sheep
1703
+ icicle
1704
+ touch
1705
+ man
1706
+ bone
1707
+ rod
1708
+ bite
1709
+ surprise
1710
+ push
1711
+ insect
1712
+ fall
1713
+ education
1714
+ space
1715
+ throne
1716
+ answer
1717
+ back
1718
+ quilt
1719
+ downtown
1720
+ tooth
1721
+ representative
1722
+ lamp
1723
+ country
1724
+ cent
1725
+ land
1726
+ collar
1727
+ digestion
1728
+ locket
1729
+ rifle
1730
+ rhythm
1731
+ books
1732
+ growth
1733
+ regret
1734
+ church
1735
+ action
1736
+ cook
1737
+ stocking
1738
+ toes
1739
+ crate
1740
+ gate
1741
+ smash
1742
+ quince
1743
+ snake
1744
+ knife
1745
+ society
1746
+ crow
1747
+ powder
1748
+ farmer
1749
+ tail
1750
+ science
1751
+ flock
1752
+ cloth
1753
+ hole
1754
+ airplane
1755
+ burn
1756
+ eye
1757
+ wall
1758
+ pets
1759
+ ocean
1760
+ shake
1761
+ basin
1762
+ shame
1763
+ pollution
1764
+ zoo
1765
+ wine
1766
+ bike
1767
+ actor
1768
+ zephyr
1769
+ berry
1770
+ business
1771
+ wood
1772
+ meeting
1773
+ bath
1774
+ tank
1775
+ north
1776
+ bee
1777
+ knot
1778
+ taste
1779
+ beef
1780
+ fold
1781
+ opinion
1782
+ wind
1783
+ lock
1784
+ brake
1785
+ cushion
1786
+ detail
1787
+ leg
1788
+ appliance
1789
+ fire
1790
+ truck
1791
+ table
1792
+ food
1793
+ dust
1794
+ soap
1795
+ activity
1796
+ muscle
1797
+ purpose
1798
+ respect
1799
+ cast
1800
+ organization
1801
+ top
1802
+ slip
1803
+ hose
1804
+ trees
1805
+ meat
1806
+ umbrella
1807
+ drawer
1808
+ sun
1809
+ music
1810
+ form
1811
+ cart
1812
+ swim
1813
+ debt
1814
+ rat
1815
+ good-bye
1816
+ songs
1817
+ oranges
1818
+ breath
1819
+ bushes
1820
+ nut
1821
+ journey
1822
+ reaction
1823
+ wire
1824
+ noise
1825
+ volleyball
1826
+ beds
1827
+ selection
1828
+ school
1829
+ structure
1830
+ note
1831
+ spoon
1832
+ roll
1833
+ temper
1834
+ size
1835
+ flesh
1836
+ toy
1837
+ vest
1838
+ tiger
1839
+ attention
1840
+ instrument
1841
+ fact
1842
+ color
1843
+ mist
1844
+ bell
1845
+ swing
1846
+ humor
1847
+ team
1848
+ volcano
1849
+ dinosaurs
1850
+ cork
1851
+ part
1852
+ holiday
1853
+ quill
1854
+ carpenter
1855
+ cake
1856
+ mask
1857
+ writing
1858
+ dress
1859
+ rain
1860
+ ghost
1861
+ clover
1862
+ trains
1863
+ loaf
1864
+ prose
1865
+ help
1866
+ goose
1867
+ owl
1868
+ adjustment
1869
+ doctor
1870
+ wrist
1871
+ payment
1872
+ governor
1873
+ wool
1874
+ coil
1875
+ boundary
1876
+ passenger
1877
+ train
1878
+ deer
1879
+ hand
1880
+ yoke
1881
+ birds
1882
+ bells
1883
+ crib
1884
+ motion
1885
+ tramp
1886
+ insurance
1887
+ spade
1888
+ polish
1889
+ banana
1890
+ twig
1891
+ apparatus
1892
+ rice
1893
+ company
1894
+ nail
1895
+ snail
1896
+ art
1897
+ acoustics
1898
+ sugar
1899
+ news
1900
+ ticket
1901
+ cough
1902
+ poison
1903
+ apples
1904
+ trucks
1905
+ desire
1906
+ cracker
1907
+ crush
1908
+ edge
1909
+ board
1910
+ badge
1911
+ tongue
1912
+ committee
1913
+ rail
1914
+ sand
1915
+ van
1916
+ support
1917
+ twist
1918
+ frame
1919
+ island
1920
+ attraction
1921
+ eggs
1922
+ chin
1923
+ zebra
1924
+ air
1925
+ division
1926
+ frog
1927
+ partner
1928
+ texture
1929
+ spy
1930
+ game
1931
+ afternoon
1932
+ driving
1933
+ friends
1934
+ level
1935
+ month
1936
+ carriage
1937
+ hair
1938
+ recess
1939
+ year
1940
+ thrill
1941
+ beast
1942
+ jam
1943
+ pigs
1944
+ basket
1945
+ receipt
1946
+ cord
1947
+ underwear
1948
+ play
1949
+ alarm
1950
+ whip
1951
+ lumber
1952
+ grade
1953
+ scale
1954
+ limit
1955
+ visitor
1956
+ plastic
1957
+ question
1958
+ unit
1959
+ elbow
1960
+ fear
1961
+ giraffe
1962
+ cat
1963
+ grass
1964
+ pizzas
1965
+ plate
1966
+ cemetery
1967
+ flavor
1968
+ office
1969
+ hall
1970
+ market
1971
+ ray
1972
+ river
1973
+ cactus
1974
+ steam
1975
+ net
1976
+ harmony
1977
+ bears
1978
+ yam
1979
+ class
1980
+ club
1981
+ transport
1982
+ pocket
1983
+ vase
1984
+ request
1985
+ comparison
1986
+ value
1987
+ battle
1988
+ root
1989
+ moon
1990
+ authority
1991
+ doll
1992
+ scent
1993
+ thing
1994
+ suit
1995
+ stranger
1996
+ plantation
1997
+ beetle
1998
+ hot
1999
+ boat
2000
+ line
2001
+ spot
2002
+ desk
2003
+ home
2004
+ shoes
2005
+ kitten
2006
+ stop
2007
+ wilderness
2008
+ watch
2009
+ winter
2010
+ lettuce
2011
+ sleep
2012
+ circle
2013
+ horses
2014
+ salt
2015
+ cry
2016
+ property
2017
+ canvas
2018
+ bomb
2019
+ hands
2020
+ rainstorm
2021
+ butter
2022
+ chalk
2023
+ base
2024
+ quicksand
2025
+ book
2026
+ love
2027
+ celery
2028
+ mom
2029
+ fish
2030
+ ring
2031
+ statement
2032
+ sidewalk
2033
+ stretch
2034
+ street
2035
+ foot
2036
+ person
2037
+ money
2038
+ number
2039
+ distance
2040
+ calculator
2041
+ orange
2042
+ dolls
2043
+ eggnog
2044
+ crook
2045
+ ants
2046
+ stove
2047
+ sky
2048
+ seashore
2049
+ waves
2050
+ stem
2051
+ earth
2052
+ boot
2053
+ mouth
2054
+ sign
2055
+ peace
2056
+ wave
2057
+ minister
2058
+ stick
2059
+ dime
2060
+ measure
2061
+ needle
2062
+ squirrel
2063
+ animal
2064
+ engine
2065
+ cause
2066
+ need
2067
+ middle
2068
+ minute
2069
+ stamp
2070
+ haircut
2071
+ point
2072
+ frogs
2073
+ scene
2074
+ government
2075
+ language
2076
+ balls
2077
+ fang
2078
+ alley
2079
+ addition
2080
+ chairs
2081
+ grape
2082
+ skin
2083
+ )
2084
+ }
2085
+ end