cryptozoologist 1.0.0 → 1.1.0
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/CHANGELOG.md +6 -0
- data/README.md +17 -1
- data/lib/cryptozoologist.rb +22 -1
- data/lib/cryptozoologist/configuration.rb +20 -0
- data/lib/cryptozoologist/dictionaries.rb +13 -3
- data/lib/cryptozoologist/dictionaries/animals/common.rb +528 -526
- data/lib/cryptozoologist/dictionaries/animals/mythical.rb +86 -83
- data/lib/cryptozoologist/errors.rb +5 -0
- data/lib/cryptozoologist/version.rb +1 -1
- data/spec/cryptozoologist/configuration_spec.rb +28 -0
- data/spec/cryptozoologist/dictionaries_spec.rb +19 -0
- data/spec/cryptozoologist/dictionary_spec.rb +21 -0
- data/spec/cryptozoologist_spec.rb +17 -0
- data/spec/spec_helper.rb +13 -0
- metadata +45 -13
- data/.gitignore +0 -10
- data/.rspec +0 -2
- data/.ruby-version +0 -1
- data/.travis.yml +0 -6
- data/Gemfile +0 -4
- data/Rakefile +0 -6
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/cryptozoologist.gemspec +0 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 570fbd64cf5f220a49071fcae1c81caf6bc326a5
|
4
|
+
data.tar.gz: ea5573d3408e45bef12310f760411b69c953521d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63aa97f9b8549b968191af3969eb9f8f3a90cb7ba083a9bd6f7cf2603f993e465e6b81de09c9d955552fd49c7200472408f381312d6992bd0f091ca5c475ae23
|
7
|
+
data.tar.gz: b23288082ac4e9386c6c40ad78549260fb6c20ee8f920ffc5adc5ecabd2659f56e7280ebbc187fb3e6c58be14997b5429ac2f4ebee2d12ffb01737e1b823933f
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -32,4 +32,20 @@ Right now, this gem doesn't do much of anything except over architect a series o
|
|
32
32
|
|
33
33
|
dictionary = Cryptozoologist::Dictionary.new
|
34
34
|
animals = dictionary.animals
|
35
|
-
animals.sample
|
35
|
+
animals.sample # => "sun bear"
|
36
|
+
|
37
|
+
**Exclude animal types:**
|
38
|
+
|
39
|
+
Valid types to exclude;
|
40
|
+
|
41
|
+
- `:common`
|
42
|
+
- `:mythical`
|
43
|
+
|
44
|
+
*Note:* you can only exclude one or you wan't have any animals!
|
45
|
+
|
46
|
+
Cryptozoologist.configurre do |config|
|
47
|
+
configu.exclude = [:common]
|
48
|
+
end
|
49
|
+
dictionary = Cryptozoologist::Dictionary.new
|
50
|
+
animals = dictionary.animals
|
51
|
+
animals.sample # => "crumple horned snorkack"
|
data/lib/cryptozoologist.rb
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
require "cryptozoologist/version"
|
2
|
+
require "cryptozoologist/errors"
|
3
|
+
require "cryptozoologist/configuration"
|
2
4
|
|
3
5
|
directory = "#{File.dirname(__FILE__)}/cryptozoologist/dictionaries/*/*.rb"
|
4
6
|
Dir[directory].each { |file| require file }
|
@@ -7,5 +9,24 @@ require "cryptozoologist/dictionary"
|
|
7
9
|
require "cryptozoologist/dictionaries"
|
8
10
|
|
9
11
|
module Cryptozoologist
|
10
|
-
|
12
|
+
class << self
|
13
|
+
attr_accessor :configuration
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.configuration
|
17
|
+
@configuration ||= Configuration.new
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.reset
|
21
|
+
@configuration = Configuration.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.configure
|
25
|
+
yield(configuration)
|
26
|
+
end
|
27
|
+
|
28
|
+
protected
|
29
|
+
def self.dictionaries
|
30
|
+
Dictionaries.library
|
31
|
+
end
|
11
32
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Cryptozoologist
|
2
|
+
class Configuration
|
3
|
+
attr_reader :exclude
|
4
|
+
|
5
|
+
def initialize
|
6
|
+
@exclude = []
|
7
|
+
end
|
8
|
+
|
9
|
+
def exclude=(exclusions)
|
10
|
+
raise Errors::Configuration, "Exclusions must be an array" unless exclusions.is_a?(Array)
|
11
|
+
|
12
|
+
@exclude = exclusions.select { |e| valid_exclusions.include?(e) }
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
def valid_exclusions
|
17
|
+
Cryptozoologist.dictionaries.keys
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -4,12 +4,22 @@ module Cryptozoologist
|
|
4
4
|
|
5
5
|
def animals
|
6
6
|
list = []
|
7
|
-
|
7
|
+
filtered.each { |word_bank| list << word_bank.list }
|
8
8
|
list.flatten
|
9
9
|
end
|
10
10
|
|
11
|
-
|
12
|
-
|
11
|
+
def library
|
12
|
+
{
|
13
|
+
common: Animals::Common,
|
14
|
+
mythical: Animals::Mythical
|
15
|
+
}
|
16
|
+
end
|
17
|
+
|
18
|
+
private def filtered
|
19
|
+
dictionaries = library.reject do |key, value|
|
20
|
+
Cryptozoologist.configuration.exclude.include?(key)
|
21
|
+
end
|
22
|
+
dictionaries.values
|
13
23
|
end
|
14
24
|
end
|
15
25
|
end
|
@@ -2,532 +2,534 @@ module Cryptozoologist
|
|
2
2
|
module Dictionaries
|
3
3
|
module Animals
|
4
4
|
module Common
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
5
|
+
def self.list
|
6
|
+
[
|
7
|
+
"abyssinian",
|
8
|
+
"affenpinscher",
|
9
|
+
"adelie penguin",
|
10
|
+
"afghan hound",
|
11
|
+
"ainu dog",
|
12
|
+
"airedale terrier",
|
13
|
+
"akbash",
|
14
|
+
"akita",
|
15
|
+
"alaskan malamute",
|
16
|
+
"albatross",
|
17
|
+
"aldabra giant tortoise",
|
18
|
+
"alligator",
|
19
|
+
"alpine dachsbracke",
|
20
|
+
"anatolian shepherd dog",
|
21
|
+
"angelfish",
|
22
|
+
"ant",
|
23
|
+
"anteater",
|
24
|
+
"antelope",
|
25
|
+
"appenzeller dog",
|
26
|
+
"arctic fox",
|
27
|
+
"arctic hare",
|
28
|
+
"arctic wolf",
|
29
|
+
"armadillo",
|
30
|
+
"asian elephant",
|
31
|
+
"asian giant hornet",
|
32
|
+
"asian palm civet",
|
33
|
+
"asiatic black bear",
|
34
|
+
"australian shepherd",
|
35
|
+
"avocet",
|
36
|
+
"axolotl",
|
37
|
+
"aye aye",
|
38
|
+
"baboon",
|
39
|
+
"bactrian camel",
|
40
|
+
"badger",
|
41
|
+
"balinese",
|
42
|
+
"banded palm civet",
|
43
|
+
"bandicoot",
|
44
|
+
"barb",
|
45
|
+
"barn owl",
|
46
|
+
"barnacle",
|
47
|
+
"barracuda",
|
48
|
+
"basenji dog",
|
49
|
+
"basking shark",
|
50
|
+
"basset hound",
|
51
|
+
"bat",
|
52
|
+
"bavarian mountain hound",
|
53
|
+
"beagle",
|
54
|
+
"bear",
|
55
|
+
"bearded collie",
|
56
|
+
"bearded dragon",
|
57
|
+
"beaver",
|
58
|
+
"bedlington terrier",
|
59
|
+
"beetle",
|
60
|
+
"bengal tiger",
|
61
|
+
"bernese mountain dog",
|
62
|
+
"bichon frise",
|
63
|
+
"binturong",
|
64
|
+
"bird",
|
65
|
+
"birds of paradise",
|
66
|
+
"birman",
|
67
|
+
"bison",
|
68
|
+
"black bear",
|
69
|
+
"black rhinoceros",
|
70
|
+
"black russian terrier",
|
71
|
+
"black widow spider",
|
72
|
+
"bloodhound",
|
73
|
+
"blue lacy dog",
|
74
|
+
"blue whale",
|
75
|
+
"bluetick coonhound",
|
76
|
+
"bobcat",
|
77
|
+
"bolognese dog",
|
78
|
+
"bombay",
|
79
|
+
"bongo",
|
80
|
+
"bonobo",
|
81
|
+
"booby",
|
82
|
+
"border collie",
|
83
|
+
"border terrier",
|
84
|
+
"bornean orang utan",
|
85
|
+
"borneo elephant",
|
86
|
+
"boston terrier",
|
87
|
+
"bottle nosed dolphin",
|
88
|
+
"boxer dog",
|
89
|
+
"boykin spaniel",
|
90
|
+
"brazilian terrier",
|
91
|
+
"brown bear",
|
92
|
+
"budgerigar",
|
93
|
+
"buffalo",
|
94
|
+
"bull mastiff",
|
95
|
+
"bull shark",
|
96
|
+
"bull terrier",
|
97
|
+
"bulldog",
|
98
|
+
"bullfrog",
|
99
|
+
"bumble bee",
|
100
|
+
"burmese",
|
101
|
+
"burrowing frog",
|
102
|
+
"butterfly",
|
103
|
+
"butterfly fish",
|
104
|
+
"caiman",
|
105
|
+
"caiman lizard",
|
106
|
+
"cairn terrier",
|
107
|
+
"camel",
|
108
|
+
"canaan dog",
|
109
|
+
"capybara",
|
110
|
+
"caracal",
|
111
|
+
"carolina dog",
|
112
|
+
"cassowary",
|
113
|
+
"cat",
|
114
|
+
"caterpillar",
|
115
|
+
"catfish",
|
116
|
+
"cavalier king charles spaniel",
|
117
|
+
"centipede",
|
118
|
+
"cesky fousek",
|
119
|
+
"chameleon",
|
120
|
+
"chamois",
|
121
|
+
"cheetah",
|
122
|
+
"chesapeake bay retriever",
|
123
|
+
"chicken",
|
124
|
+
"chihuahua",
|
125
|
+
"chimpanzee",
|
126
|
+
"chinchilla",
|
127
|
+
"chinese crested dog",
|
128
|
+
"chinook",
|
129
|
+
"chinstrap penguin",
|
130
|
+
"chipmunk",
|
131
|
+
"chow chow",
|
132
|
+
"cichlid",
|
133
|
+
"clouded leopard",
|
134
|
+
"clown fish",
|
135
|
+
"clumber spaniel",
|
136
|
+
"coati",
|
137
|
+
"cockroach",
|
138
|
+
"collared peccary",
|
139
|
+
"collie",
|
140
|
+
"coral",
|
141
|
+
"cottontop tamarin",
|
142
|
+
"cougar",
|
143
|
+
"cow",
|
144
|
+
"coyote",
|
145
|
+
"crab",
|
146
|
+
"crab eating macaque",
|
147
|
+
"crane",
|
148
|
+
"crested penguin",
|
149
|
+
"crocodile",
|
150
|
+
"cross river gorilla",
|
151
|
+
"curly coated retriever",
|
152
|
+
"cuscus",
|
153
|
+
"cuttlefish",
|
154
|
+
"dachshund",
|
155
|
+
"dalmatian",
|
156
|
+
"darwin's frog",
|
157
|
+
"deer",
|
158
|
+
"desert tortoise",
|
159
|
+
"deutsche bracke",
|
160
|
+
"dhole",
|
161
|
+
"dingo",
|
162
|
+
"discus",
|
163
|
+
"doberman pinscher",
|
164
|
+
"dodo",
|
165
|
+
"dog",
|
166
|
+
"dogo argentino",
|
167
|
+
"dogue de bordeaux",
|
168
|
+
"dolphin",
|
169
|
+
"donkey",
|
170
|
+
"dormouse",
|
171
|
+
"dragonfly",
|
172
|
+
"drever",
|
173
|
+
"duck",
|
174
|
+
"dugong",
|
175
|
+
"dunker",
|
176
|
+
"dusky dolphin",
|
177
|
+
"dwarf crocodile",
|
178
|
+
"eagle",
|
179
|
+
"earwig",
|
180
|
+
"eastern gorilla",
|
181
|
+
"eastern lowland gorilla",
|
182
|
+
"echidna",
|
183
|
+
"edible frog",
|
184
|
+
"egyptian mau",
|
185
|
+
"electric eel",
|
186
|
+
"elephant",
|
187
|
+
"elephant seal",
|
188
|
+
"elephant shrew",
|
189
|
+
"emperor penguin",
|
190
|
+
"emperor tamarin",
|
191
|
+
"emu",
|
192
|
+
"english cocker spaniel",
|
193
|
+
"english shepherd",
|
194
|
+
"english springer spaniel",
|
195
|
+
"entlebucher mountain dog",
|
196
|
+
"epagneul pont audemer",
|
197
|
+
"eskimo dog",
|
198
|
+
"estrela mountain dog",
|
199
|
+
"falcon",
|
200
|
+
"fennec fox",
|
201
|
+
"ferret",
|
202
|
+
"field spaniel",
|
203
|
+
"fin whale",
|
204
|
+
"finnish spitz",
|
205
|
+
"fire bellied toad",
|
206
|
+
"fish",
|
207
|
+
"fishing cat",
|
208
|
+
"flamingo",
|
209
|
+
"flat coat retriever",
|
210
|
+
"flounder",
|
211
|
+
"fly",
|
212
|
+
"flying squirrel",
|
213
|
+
"fossa",
|
214
|
+
"fox",
|
215
|
+
"fox terrier",
|
216
|
+
"french bulldog",
|
217
|
+
"frigatebird",
|
218
|
+
"frilled lizard",
|
219
|
+
"frog",
|
220
|
+
"fur seal",
|
221
|
+
"galapagos penguin",
|
222
|
+
"galapagos tortoise",
|
223
|
+
"gar",
|
224
|
+
"gecko",
|
225
|
+
"gentoo penguin",
|
226
|
+
"geoffroys tamarin",
|
227
|
+
"gerbil",
|
228
|
+
"german pinscher",
|
229
|
+
"german shepherd",
|
230
|
+
"gharial",
|
231
|
+
"giant african land snail",
|
232
|
+
"giant clam",
|
233
|
+
"giant panda bear",
|
234
|
+
"giant schnauzer",
|
235
|
+
"gibbon",
|
236
|
+
"gila monster",
|
237
|
+
"giraffe",
|
238
|
+
"glass lizard",
|
239
|
+
"glow worm",
|
240
|
+
"goat",
|
241
|
+
"golden lion tamarin",
|
242
|
+
"golden oriole",
|
243
|
+
"golden retriever",
|
244
|
+
"goose",
|
245
|
+
"gopher",
|
246
|
+
"gorilla",
|
247
|
+
"grasshopper",
|
248
|
+
"great dane",
|
249
|
+
"great white shark",
|
250
|
+
"greater swiss mountain dog",
|
251
|
+
"green bee eater",
|
252
|
+
"greenland dog",
|
253
|
+
"grey mouse lemur",
|
254
|
+
"grey reef shark",
|
255
|
+
"grey seal",
|
256
|
+
"greyhound",
|
257
|
+
"grizzly bear",
|
258
|
+
"grouse",
|
259
|
+
"guinea fowl",
|
260
|
+
"guinea pig",
|
261
|
+
"guppy",
|
262
|
+
"hammerhead shark",
|
263
|
+
"hamster",
|
264
|
+
"hare",
|
265
|
+
"harrier",
|
266
|
+
"havanese",
|
267
|
+
"hedgehog",
|
268
|
+
"hercules beetle",
|
269
|
+
"hermit crab",
|
270
|
+
"heron",
|
271
|
+
"highland cattle",
|
272
|
+
"himalayan",
|
273
|
+
"hippopotamus",
|
274
|
+
"honey bee",
|
275
|
+
"horn shark",
|
276
|
+
"horned frog",
|
277
|
+
"horse",
|
278
|
+
"horseshoe crab",
|
279
|
+
"howler monkey",
|
280
|
+
"human",
|
281
|
+
"humboldt penguin",
|
282
|
+
"hummingbird",
|
283
|
+
"humpback whale",
|
284
|
+
"hyena",
|
285
|
+
"ibis",
|
286
|
+
"ibizan hound",
|
287
|
+
"iguana",
|
288
|
+
"impala",
|
289
|
+
"indochinese tiger",
|
290
|
+
"indri",
|
291
|
+
"insect",
|
292
|
+
"irish setter",
|
293
|
+
"irish wolfhound",
|
294
|
+
"jack russel",
|
295
|
+
"jackal",
|
296
|
+
"jaguar",
|
297
|
+
"japanese chin",
|
298
|
+
"japanese macaque",
|
299
|
+
"javan rhinoceros",
|
300
|
+
"javanese",
|
301
|
+
"jellyfish",
|
302
|
+
"kakapo",
|
303
|
+
"kangaroo",
|
304
|
+
"keel billed toucan",
|
305
|
+
"killer whale",
|
306
|
+
"king crab",
|
307
|
+
"king penguin",
|
308
|
+
"kingfisher",
|
309
|
+
"kiwi",
|
310
|
+
"koala",
|
311
|
+
"komodo dragon",
|
312
|
+
"kudu",
|
313
|
+
"labradoodle",
|
314
|
+
"labrador retriever",
|
315
|
+
"ladybird",
|
316
|
+
"leaf tailed gecko",
|
317
|
+
"lemming",
|
318
|
+
"lemur",
|
319
|
+
"leopard",
|
320
|
+
"leopard cat",
|
321
|
+
"leopard seal",
|
322
|
+
"leopard tortoise",
|
323
|
+
"liger",
|
324
|
+
"lion",
|
325
|
+
"lionfish",
|
326
|
+
"little penguin",
|
327
|
+
"lizard",
|
328
|
+
"llama",
|
329
|
+
"lobster",
|
330
|
+
"long eared owl",
|
331
|
+
"lynx",
|
332
|
+
"macaroni penguin",
|
333
|
+
"macaw",
|
334
|
+
"magellanic penguin",
|
335
|
+
"magpie",
|
336
|
+
"maine coon",
|
337
|
+
"malayan civet",
|
338
|
+
"malayan tiger",
|
339
|
+
"maltese",
|
340
|
+
"manatee",
|
341
|
+
"mandrill",
|
342
|
+
"manta ray",
|
343
|
+
"marine toad",
|
344
|
+
"markhor",
|
345
|
+
"marsh frog",
|
346
|
+
"masked palm civet",
|
347
|
+
"mastiff",
|
348
|
+
"mayfly",
|
349
|
+
"meerkat",
|
350
|
+
"millipede",
|
351
|
+
"minke whale",
|
352
|
+
"mole",
|
353
|
+
"molly",
|
354
|
+
"mongoose",
|
355
|
+
"mongrel",
|
356
|
+
"monitor lizard",
|
357
|
+
"monkey",
|
358
|
+
"monte iberia eleuth",
|
359
|
+
"moorhen",
|
360
|
+
"moose",
|
361
|
+
"moray eel",
|
362
|
+
"moth",
|
363
|
+
"mountain gorilla",
|
364
|
+
"mountain lion",
|
365
|
+
"mouse",
|
366
|
+
"mule",
|
367
|
+
"neanderthal",
|
368
|
+
"neapolitan mastiff",
|
369
|
+
"newfoundland",
|
370
|
+
"newt",
|
371
|
+
"nightingale",
|
372
|
+
"norfolk terrier",
|
373
|
+
"norwegian forest",
|
374
|
+
"numbat",
|
375
|
+
"nurse shark",
|
376
|
+
"ocelot",
|
377
|
+
"octopus",
|
378
|
+
"okapi",
|
379
|
+
"old english sheepdog",
|
380
|
+
"olm",
|
381
|
+
"opossum",
|
382
|
+
"orang utan",
|
383
|
+
"ostrich",
|
384
|
+
"otter",
|
385
|
+
"oyster",
|
386
|
+
"quail",
|
387
|
+
"quetzal",
|
388
|
+
"quokka",
|
389
|
+
"quoll",
|
390
|
+
"rabbit",
|
391
|
+
"raccoon",
|
392
|
+
"raccoon dog",
|
393
|
+
"radiated tortoise",
|
394
|
+
"ragdoll",
|
395
|
+
"rat",
|
396
|
+
"rattlesnake",
|
397
|
+
"red knee tarantula",
|
398
|
+
"red panda",
|
399
|
+
"red wolf",
|
400
|
+
"red handed tamarin",
|
401
|
+
"reindeer",
|
402
|
+
"rhinoceros",
|
403
|
+
"river dolphin",
|
404
|
+
"river turtle",
|
405
|
+
"robin",
|
406
|
+
"rock hyrax",
|
407
|
+
"rockhopper penguin",
|
408
|
+
"roseate spoonbill",
|
409
|
+
"rottweiler",
|
410
|
+
"royal penguin",
|
411
|
+
"russian blue",
|
412
|
+
"sabre toothed tiger",
|
413
|
+
"saint bernard",
|
414
|
+
"salamander",
|
415
|
+
"sand lizard",
|
416
|
+
"saola",
|
417
|
+
"scorpion",
|
418
|
+
"scorpion fish",
|
419
|
+
"sea dragon",
|
420
|
+
"sea lion",
|
421
|
+
"sea otter",
|
422
|
+
"sea slug",
|
423
|
+
"sea squirt",
|
424
|
+
"sea turtle",
|
425
|
+
"sea urchin",
|
426
|
+
"seahorse",
|
427
|
+
"seal",
|
428
|
+
"serval",
|
429
|
+
"sheep",
|
430
|
+
"shih tzu",
|
431
|
+
"shrimp",
|
432
|
+
"siamese",
|
433
|
+
"siamese fighting fish",
|
434
|
+
"siberian",
|
435
|
+
"siberian husky",
|
436
|
+
"siberian tiger",
|
437
|
+
"silver dollar",
|
438
|
+
"skunk",
|
439
|
+
"sloth",
|
440
|
+
"slow worm",
|
441
|
+
"snail",
|
442
|
+
"snake",
|
443
|
+
"snapping turtle",
|
444
|
+
"snowshoe",
|
445
|
+
"snowy owl",
|
446
|
+
"somali",
|
447
|
+
"south china tiger",
|
448
|
+
"spadefoot toad",
|
449
|
+
"sparrow",
|
450
|
+
"spectacled bear",
|
451
|
+
"sperm whale",
|
452
|
+
"spider monkey",
|
453
|
+
"spiny dogfish",
|
454
|
+
"sponge",
|
455
|
+
"squid",
|
456
|
+
"squirrel",
|
457
|
+
"squirrel monkey",
|
458
|
+
"sri lankan elephant",
|
459
|
+
"staffordshire bull terrier",
|
460
|
+
"stag beetle",
|
461
|
+
"starfish",
|
462
|
+
"stellers sea cow",
|
463
|
+
"stick insect",
|
464
|
+
"stingray",
|
465
|
+
"stoat",
|
466
|
+
"striped rocket frog",
|
467
|
+
"sun bear",
|
468
|
+
"swan",
|
469
|
+
"tang",
|
470
|
+
"tapir",
|
471
|
+
"tarsier",
|
472
|
+
"tasmanian devil",
|
473
|
+
"tawny owl",
|
474
|
+
"termite",
|
475
|
+
"tetra",
|
476
|
+
"thorny devil",
|
477
|
+
"tibetan mastiff",
|
478
|
+
"tiffany",
|
479
|
+
"tiger",
|
480
|
+
"tiger salamander",
|
481
|
+
"tiger shark",
|
482
|
+
"tortoise",
|
483
|
+
"toucan",
|
484
|
+
"tree frog",
|
485
|
+
"tropicbird",
|
486
|
+
"tuatara",
|
487
|
+
"turkey",
|
488
|
+
"turkish angora",
|
489
|
+
"uakari",
|
490
|
+
"uguisu",
|
491
|
+
"umbrellabird",
|
492
|
+
"vampire bat",
|
493
|
+
"vervet monkey",
|
494
|
+
"vulture",
|
495
|
+
"wallaby",
|
496
|
+
"walrus",
|
497
|
+
"warthog",
|
498
|
+
"wasp",
|
499
|
+
"water buffalo",
|
500
|
+
"water dragon",
|
501
|
+
"water vole",
|
502
|
+
"weasel",
|
503
|
+
"welsh corgi",
|
504
|
+
"west highland terrier",
|
505
|
+
"western gorilla",
|
506
|
+
"western lowland gorilla",
|
507
|
+
"whale shark",
|
508
|
+
"whippet",
|
509
|
+
"white faced capuchin",
|
510
|
+
"white rhinoceros",
|
511
|
+
"white tiger",
|
512
|
+
"wild boar",
|
513
|
+
"wildebeest",
|
514
|
+
"wolf",
|
515
|
+
"wolverine",
|
516
|
+
"wombat",
|
517
|
+
"woodlouse",
|
518
|
+
"woodpecker",
|
519
|
+
"woolly mammoth",
|
520
|
+
"woolly monkey",
|
521
|
+
"wrasse",
|
522
|
+
"x ray tetra",
|
523
|
+
"yak",
|
524
|
+
"yellow eyed penguin",
|
525
|
+
"yorkshire terrier",
|
526
|
+
"zebra",
|
527
|
+
"zebra shark",
|
528
|
+
"zebu",
|
529
|
+
"zonkey",
|
530
|
+
"zorse"
|
531
|
+
]
|
532
|
+
end
|
531
533
|
end
|
532
534
|
end
|
533
535
|
end
|