aac-metrics 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fbfbfcd5c426a844f692b0cfb1151bd800dc0fe9d679b838a5308479c087b58
4
- data.tar.gz: b056c6c7339b7c8da6d1cba1f3d05e0c27da02aa49958cd186242e570bde7639
3
+ metadata.gz: 5e0e4df471906ea7ba9cb3360c669d1bcd406cf1bf7f8a2539bd12bd50799328
4
+ data.tar.gz: fa5117e3d8fcb8c79b6f34dd58c39fbafc53a8a6f7aea133d77f92c435bec4e8
5
5
  SHA512:
6
- metadata.gz: ee6cb311b8c50c78cda543094f71840e35a119b23c82f42e131f5a2927b393edde3874a823bb2fdc1dc0f6db3d30d480eb65407da50cb0634536668676194257
7
- data.tar.gz: 2d9bf2b511df96879609260448b1de4712146d117853147a9dc591f848b677f59526c0439f7d8a619d108264f0be21412de3761c34f3231eeafde9795efcbf41
6
+ metadata.gz: 791f3c1cd42219e1b3ea5782e32527961feb7bb51fd254eb1e143a003dc3d2254beebe6c81eddcc35828aaaba1afc16699a7800e164084c414d1fe9997379950
7
+ data.tar.gz: '08711fe6c842d436530488a37b4f8079211d17feb3f3aa032ac8f5741aa76e57252b4afc7627d45c87fd7a78927250e53722b9bbed3b52b04d6bcdc68af5caf7'
@@ -4,10 +4,38 @@ require 'digest'
4
4
 
5
5
  module AACMetrics::Loader
6
6
  def self.retrieve(obfset)
7
- if !obfset.match(/\.obfset/)
7
+ if obfset.is_a?(Hash) && obfset['boards']
8
+ json = []
9
+ obfset['boards'].each do |board|
10
+ new_board = {
11
+ "format" => "open-board-0.1",
12
+ "id" => board['id'],
13
+ "buttons" => [],
14
+ "locale" => board['locale'] || 'en',
15
+ "grid" => board['grid'],
16
+ }
17
+ board['buttons'].each do |button|
18
+ new_button = {
19
+ "label" => ((button['vocalization'] || '').length > 0 ? button['vocalization'] : button['label']).to_s.downcase.gsub(/’/, ''),
20
+ "id" => button['id']
21
+ }
22
+ if button['load_board'] && button['load_board']['id']
23
+ new_button['load_board'] = {'id' => button['load_board']['id']}
24
+ end
25
+ new_board['buttons'].push(new_button)
26
+ end
27
+ json << new_board
28
+ end
29
+ return json
30
+ elsif obfset.match(/^http/)
31
+ res = Typhoeus.get(obfset, timeout: 10)
32
+ json = JSON.parse(res.body)
33
+ elsif !obfset.match(/\.obfset/)
8
34
  obfset = Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'sets', obfset + '*.obfset')))[0]
35
+ json = JSON.parse(File.read(obfset))
36
+ else
37
+ json = JSON.parse(File.read(obfset))
9
38
  end
10
- json = JSON.parse(File.read(obfset))
11
39
  base = self.base_words(json[0]['locale'])
12
40
  json.each do |brd|
13
41
  brd['buttons'].each do |btn|
@@ -46,9 +74,9 @@ module AACMetrics::Loader
46
74
  if token
47
75
  path += "?access_token=#{token}"
48
76
  end
49
- req = Typhoeus.get(path)
77
+ req = Typhoeus.get(path, timeout: 10)
50
78
  json = JSON.parse(req.body)
51
- puts path
79
+ # puts path
52
80
  else
53
81
  if !File.exist?(path)
54
82
  orig_path = path
@@ -57,7 +85,7 @@ module AACMetrics::Loader
57
85
  path = File.expand_path(File.join(fn, "..", "..", orig_path))
58
86
  end
59
87
  end
60
- puts "#{path}"
88
+ # puts "#{path}"
61
89
  json = JSON.parse(File.read(path))
62
90
  end
63
91
  if json && json['grid']
@@ -205,7 +233,7 @@ module AACMetrics::Loader
205
233
  'efforts' => sorted_efforts
206
234
  }
207
235
  f = File.open(path, 'w')
208
- f.puts JSON.pretty_generate(res)
236
+ # f.puts JSON.pretty_generate(res)
209
237
  f.close
210
238
  end
211
239
  res
@@ -76,20 +76,92 @@ module AACMetrics::Metrics
76
76
  buttons = known_buttons.to_a.map(&:last).sort_by{|b| b[:effort] }
77
77
  clusters = {}
78
78
  buttons.each do |btn|
79
- puts "#{btn[:label]}\t#{btn[:effort]}" if output
80
79
  clusters[btn[:level]] ||= []
81
80
  clusters[btn[:level]] << btn
82
81
  end
83
- clusters.each do |level, buttons|
84
- puts "HITS: #{level + 1}" if output
85
- puts buttons.map{|b| b[:label] }.join(' ') if output
86
- end
87
- puts "TOTAL BOARDS: #{visited_board_ids.keys.length}" if output
88
- puts "TOTAL WORDS: #{buttons.length}" if output
89
82
  {
90
83
  locale: locale,
84
+ total_boards: visited_board_ids.keys.length,
85
+ total_buttons: buttons.length,
91
86
  buttons: buttons,
92
87
  levels: clusters
93
88
  }
94
89
  end
90
+
91
+ def self.analyze_and_compare(obfset, compset)
92
+ target = AACMetrics::Metrics.analyze(obfset, false)
93
+ res = {}.merge(target)
94
+
95
+ compare = AACMetrics::Metrics.analyze(compset, false)
96
+
97
+ target_words = target[:buttons].map{|b| b[:label] }
98
+ compare_words = compare[:buttons].map{|b| b[:label] }
99
+ efforts = {}
100
+ target[:buttons].each{|b| efforts[b[:label]] = b[:effort] }
101
+ compare[:buttons].each{|b|
102
+ if efforts[b[:label]]
103
+ efforts[b[:label]] += b[:effort]
104
+ efforts[b[:label]] /= 2
105
+ else
106
+ efforts[b[:label]] ||= b[:effort]
107
+ end
108
+ }
109
+
110
+ core_lists = AACMetrics::Loader.core_lists(target[:locale])
111
+ common_words_obj = AACMetrics::Loader.common_words(target[:locale])
112
+ common_words_obj['efforts'].each{|w, e| efforts[w] ||= e }
113
+ common_words = common_words_obj['words']
114
+
115
+ too_easy = []
116
+ too_hard = []
117
+ target[:buttons].each do |btn|
118
+ if btn[:effort] && common_words_obj['efforts'][btn[:label]]
119
+ if btn[:effort] < common_words_obj['efforts'][btn[:label]] - 5
120
+ too_easy << btn[:label]
121
+ elsif btn[:effort] > common_words_obj['efforts'][btn[:label]] + 3
122
+ too_hard << btn[:label]
123
+ end
124
+ end
125
+ end
126
+
127
+ missing = (compare_words - target_words).sort_by{|w| efforts[w] }
128
+ extras = (target_words - compare_words).sort_by{|w| efforts[w] }
129
+ # puts "MISSING WORDS (#{missing.length}):"
130
+ res[:missing_words] = missing
131
+ # puts missing.join(' ')
132
+ # puts "EXTRA WORDS (#{extras.length}):"
133
+ res[:extra_words] = extras
134
+ # puts extras.join(' ')
135
+ overlap = (target_words & compare_words & common_words)
136
+ # puts "OVERLAPPING WORDS (#{overlap.length}):"
137
+ res[:overlapping_words] = overlap
138
+ # puts overlap.join(' ')
139
+ missing = (common_words - target_words)
140
+ # puts "MISSING FROM COMMON (#{missing.length})"
141
+ res[:missing] = {
142
+ :common => {name: "Common Word List", list: missing}
143
+ }
144
+ # puts missing.join(' ')
145
+ core_lists.each do |list|
146
+ missing = []
147
+ list['words'].each do |word|
148
+ words = word.gsub(/’/, '').downcase.split(/\|/)
149
+ if (target_words & words).length == 0
150
+ missing << words[0]
151
+ end
152
+ end
153
+ if missing.length > 0
154
+ # puts "MISSING FROM #{list['id']} (#{missing.length}):"
155
+ res[:missing][list['id']] = {name: list['name'], list: missing}
156
+ # puts missing.join(' ')
157
+ end
158
+ end
159
+ # puts "CONSIDER MAKING EASIER"
160
+ res[:high_effort_words] = too_hard
161
+ # puts too_hard.join(' ')
162
+ # puts "CONSIDER LESS PRIORITY"
163
+ res[:low_effort_words] = too_easy
164
+ # puts too_easy.join(' ')
165
+ res
166
+ end
95
167
  end
@@ -1,1580 +0,0 @@
1
- {
2
- "files": [
3
- "l84f-e9fafa55d4.common.en.obfset",
4
- "qc60-61bbf6171e.common.en.obfset",
5
- "sfy-c45a81c416.common.en.obfset",
6
- "wp80-dad3aeda5e.common.en.obfset"
7
- ],
8
- "words": [
9
- "the",
10
- "i",
11
- "on",
12
- "to",
13
- "off",
14
- "my",
15
- "and",
16
- "a",
17
- "yes",
18
- "mine",
19
- "no",
20
- "you",
21
- "me",
22
- "please",
23
- "clear",
24
- "come",
25
- "thank you",
26
- "he",
27
- "we",
28
- "more",
29
- "good",
30
- "help",
31
- "if",
32
- "for",
33
- "hello",
34
- "okay",
35
- "of",
36
- "she",
37
- "bad",
38
- "ask",
39
- "his",
40
- "all",
41
- "what",
42
- "you're welcome",
43
- "that",
44
- "have",
45
- "say",
46
- "bottom",
47
- "question",
48
- "want",
49
- "this",
50
- "from",
51
- "an",
52
- "now",
53
- "in",
54
- "when",
55
- "up",
56
- "go",
57
- "play",
58
- "like",
59
- "where",
60
- "out",
61
- "get",
62
- "bank",
63
- "it",
64
- "so",
65
- "top",
66
- "him",
67
- "home",
68
- "eat",
69
- "dad",
70
- "our",
71
- "take",
72
- "who",
73
- "brother",
74
- "face",
75
- "head",
76
- "last",
77
- "again",
78
- "her",
79
- "there",
80
- "place",
81
- "ear",
82
- "they",
83
- "mom",
84
- "do",
85
- "hospital",
86
- "even",
87
- "us",
88
- "eye",
89
- "or",
90
- "family",
91
- "bedroom",
92
- "drink",
93
- "bag",
94
- "at",
95
- "bathroom",
96
- "post office",
97
- "really",
98
- "down",
99
- "only",
100
- "time",
101
- "bottle",
102
- "but",
103
- "after",
104
- "library",
105
- "not",
106
- "can",
107
- "box",
108
- "body",
109
- "farm",
110
- "their",
111
- "very",
112
- "why",
113
- "by",
114
- "park",
115
- "before",
116
- "always",
117
- "thing",
118
- "today",
119
- "talk",
120
- "put",
121
- "day",
122
- "around",
123
- "away",
124
- "sister",
125
- "brown",
126
- "them",
127
- "about",
128
- "mall",
129
- "middle",
130
- "whose",
131
- "don't",
132
- "these",
133
- "tomorrow",
134
- "yesterday",
135
- "fun",
136
- "work",
137
- "other",
138
- "did",
139
- "as",
140
- "night",
141
- "blue",
142
- "through",
143
- "bed",
144
- "black",
145
- "boy",
146
- "happy",
147
- "kitchen",
148
- "dining room",
149
- "tonight",
150
- "maybe",
151
- "neck",
152
- "orange",
153
- "hat",
154
- "under",
155
- "green",
156
- "hair",
157
- "easy",
158
- "never",
159
- "much",
160
- "gas station",
161
- "big",
162
- "parent",
163
- "call",
164
- "nose",
165
- "will",
166
- "arm",
167
- "basket",
168
- "outside",
169
- "airport",
170
- "here",
171
- "mouth",
172
- "sad",
173
- "live",
174
- "pink",
175
- "know",
176
- "some",
177
- "belt",
178
- "clothes",
179
- "church",
180
- "behind",
181
- "enough",
182
- "house",
183
- "back",
184
- "is",
185
- "little",
186
- "mad",
187
- "girl",
188
- "sick",
189
- "pants",
190
- "child",
191
- "funny",
192
- "meet",
193
- "animal",
194
- "elbow",
195
- "people",
196
- "man",
197
- "room",
198
- "give",
199
- "red",
200
- "office",
201
- "hungry",
202
- "wear",
203
- "read",
204
- "because",
205
- "purple",
206
- "book",
207
- "living room",
208
- "person",
209
- "school",
210
- "should",
211
- "friend",
212
- "dinosaur",
213
- "with",
214
- "teeth",
215
- "bug",
216
- "dollar",
217
- "over",
218
- "tongue",
219
- "long",
220
- "look",
221
- "could",
222
- "done",
223
- "color",
224
- "fast",
225
- "phone",
226
- "finger",
227
- "computer",
228
- "many",
229
- "hand",
230
- "moon",
231
- "until",
232
- "yellow",
233
- "which",
234
- "bird",
235
- "chair",
236
- "game",
237
- "left",
238
- "white",
239
- "beach",
240
- "math",
241
- "how",
242
- "woman",
243
- "sorry",
244
- "alligator",
245
- "closet",
246
- "then",
247
- "ready",
248
- "stop",
249
- "finished",
250
- "space",
251
- "stegosaurus",
252
- "would",
253
- "those",
254
- "bring",
255
- "store",
256
- "desk",
257
- "month",
258
- "hear",
259
- "bus",
260
- "see",
261
- "thirsty",
262
- "new",
263
- "may",
264
- "bear",
265
- "nice",
266
- "table",
267
- "country",
268
- "cat",
269
- "couch",
270
- "gloves",
271
- "answer",
272
- "building",
273
- "triceratops",
274
- "foot",
275
- "mean",
276
- "bored",
277
- "sit",
278
- "homework",
279
- "dog",
280
- "tired",
281
- "medicine",
282
- "wheelchair",
283
- "early",
284
- "right",
285
- "cool",
286
- "earth",
287
- "picture",
288
- "dresser",
289
- "story",
290
- "excited",
291
- "old",
292
- "jewelry",
293
- "pool",
294
- "bell",
295
- "furniture",
296
- "scarf",
297
- "leg",
298
- "wrong",
299
- "meeting",
300
- "love",
301
- "turn",
302
- "tyrannosaurus rex",
303
- "might",
304
- "write",
305
- "breakfast",
306
- "milk",
307
- "afternoon",
308
- "gold",
309
- "radio",
310
- "food",
311
- "count",
312
- "make",
313
- "island",
314
- "run",
315
- "frog",
316
- "skirt",
317
- "money",
318
- "different",
319
- "hot",
320
- "quiet",
321
- "joke",
322
- "ride",
323
- "battery",
324
- "mercury",
325
- "dress",
326
- "year",
327
- "week",
328
- "baby",
329
- "mars",
330
- "water",
331
- "slow",
332
- "elephant",
333
- "proud",
334
- "silver",
335
- "shorts",
336
- "jupiter",
337
- "pen",
338
- "buy",
339
- "first",
340
- "same",
341
- "leave",
342
- "problem",
343
- "think",
344
- "great",
345
- "let",
346
- "pencil",
347
- "late",
348
- "busy",
349
- "pet",
350
- "appliance",
351
- "saturn",
352
- "deer",
353
- "giraffe",
354
- "history",
355
- "camel",
356
- "draw",
357
- "science",
358
- "venus",
359
- "window",
360
- "monday",
361
- "morning",
362
- "camera",
363
- "clean",
364
- "neptune",
365
- "toy",
366
- "any",
367
- "able",
368
- "chicken",
369
- "hurt",
370
- "front",
371
- "friday",
372
- "journal",
373
- "find",
374
- "shy",
375
- "tell",
376
- "close",
377
- "bowl",
378
- "cold",
379
- "though",
380
- "add",
381
- "side",
382
- "uranus",
383
- "doctor",
384
- "sleep",
385
- "toe",
386
- "music",
387
- "start",
388
- "quarter",
389
- "bike",
390
- "news",
391
- "end",
392
- "sing",
393
- "hammer",
394
- "luggage",
395
- "coffee",
396
- "cow",
397
- "ice",
398
- "fall",
399
- "scared",
400
- "learn",
401
- "drawer",
402
- "baseball",
403
- "every",
404
- "awesome",
405
- "birthday",
406
- "sunday",
407
- "door",
408
- "try",
409
- "heart",
410
- "flower",
411
- "cake",
412
- "full",
413
- "leaf",
414
- "banana",
415
- "way",
416
- "must",
417
- "slide",
418
- "car",
419
- "stand",
420
- "therapy",
421
- "apple",
422
- "word",
423
- "open",
424
- "dishwasher",
425
- "kiss",
426
- "iced tea",
427
- "underwear",
428
- "pajamas",
429
- "clock",
430
- "basketball",
431
- "drive",
432
- "crayon",
433
- "airplane",
434
- "juice",
435
- "mirror",
436
- "later",
437
- "tuesday",
438
- "horse",
439
- "saturday",
440
- "thursday",
441
- "balloon",
442
- "blanket",
443
- "cookie",
444
- "april",
445
- "nurse",
446
- "fruit",
447
- "dirty",
448
- "vacation",
449
- "february",
450
- "bath",
451
- "letter",
452
- "grass",
453
- "present",
454
- "dolphin",
455
- "remember",
456
- "neighbor",
457
- "grasshopper",
458
- "lion",
459
- "speak",
460
- "pull",
461
- "loud",
462
- "watch",
463
- "shower",
464
- "lemonade",
465
- "dance",
466
- "best",
467
- "ladybug",
468
- "crab",
469
- "lunch",
470
- "wednesday",
471
- "teacher",
472
- "circle",
473
- "yard",
474
- "tree",
475
- "march",
476
- "january",
477
- "screwdriver",
478
- "fish",
479
- "spring",
480
- "ambulance",
481
- "chips",
482
- "rabbit",
483
- "ocean",
484
- "song",
485
- "toilet",
486
- "football",
487
- "light",
488
- "dinner",
489
- "drum",
490
- "bowling",
491
- "pillow",
492
- "snack",
493
- "piano",
494
- "few",
495
- "paint",
496
- "job",
497
- "trampoline",
498
- "octopus",
499
- "august",
500
- "sun",
501
- "soft",
502
- "brownie",
503
- "change",
504
- "coke",
505
- "summer",
506
- "world",
507
- "dessert",
508
- "broom",
509
- "jump",
510
- "idea",
511
- "cup",
512
- "crazy",
513
- "believe",
514
- "pretty",
515
- "lobster",
516
- "kind",
517
- "broccoli",
518
- "goldfish",
519
- "test",
520
- "june",
521
- "snake",
522
- "careful",
523
- "ketchup",
524
- "real",
525
- "wrench",
526
- "soap",
527
- "storm",
528
- "plant",
529
- "bleed",
530
- "plate",
531
- "ladder",
532
- "empty",
533
- "mustard",
534
- "helicopter",
535
- "pig",
536
- "fly",
537
- "nuts",
538
- "july",
539
- "square",
540
- "clam",
541
- "december",
542
- "straw",
543
- "push",
544
- "cereal",
545
- "sink",
546
- "cook",
547
- "button",
548
- "listen",
549
- "floor",
550
- "boat",
551
- "shampoo",
552
- "name",
553
- "match",
554
- "gymnastics",
555
- "rectangle",
556
- "argue",
557
- "stove",
558
- "smile",
559
- "weather",
560
- "diamond",
561
- "peanut butter",
562
- "lemon",
563
- "puzzle",
564
- "short",
565
- "scooter",
566
- "salsa",
567
- "bacon",
568
- "carrot",
569
- "river",
570
- "oval",
571
- "wind",
572
- "follow",
573
- "holiday",
574
- "paper",
575
- "mountain",
576
- "popcorn",
577
- "squirrel",
578
- "sheep",
579
- "fork",
580
- "show",
581
- "wait",
582
- "truck",
583
- "milkshake",
584
- "spider",
585
- "knife",
586
- "pizza",
587
- "tea",
588
- "honey",
589
- "hill",
590
- "november",
591
- "scissors",
592
- "burrito",
593
- "turkey",
594
- "october",
595
- "alive",
596
- "cupcake",
597
- "rose",
598
- "visit",
599
- "corn",
600
- "rainbow",
601
- "shop",
602
- "winter",
603
- "understand",
604
- "motorcycle",
605
- "laundry",
606
- "star",
607
- "use",
608
- "september",
609
- "napkin",
610
- "golf",
611
- "cloudy",
612
- "hide",
613
- "jelly",
614
- "bite",
615
- "ice cream",
616
- "lightning",
617
- "astronaut",
618
- "stairs",
619
- "dryer",
620
- "date",
621
- "salt",
622
- "forest",
623
- "silly",
624
- "spoon",
625
- "soccer",
626
- "cut",
627
- "guess",
628
- "stay",
629
- "student",
630
- "cucumber",
631
- "hot dog",
632
- "deodorant",
633
- "triangle",
634
- "amazing",
635
- "tape",
636
- "tiger",
637
- "oatmeal",
638
- "starfish",
639
- "beef",
640
- "party",
641
- "zebra",
642
- "microwave",
643
- "bake",
644
- "meat",
645
- "tornado",
646
- "cheat",
647
- "glue",
648
- "foggy",
649
- "toothbrush",
650
- "dark",
651
- "young",
652
- "sugar",
653
- "walk",
654
- "toothpaste",
655
- "toilet paper",
656
- "taste",
657
- "hold",
658
- "pan",
659
- "pepper",
660
- "pie",
661
- "dead",
662
- "keep",
663
- "lift",
664
- "false",
665
- "imagine",
666
- "train",
667
- "shark",
668
- "shovel",
669
- "brush",
670
- "tie",
671
- "thunder",
672
- "sled",
673
- "rice",
674
- "mail carrier",
675
- "pasta",
676
- "police car",
677
- "lettuce",
678
- "easter",
679
- "near",
680
- "sandwich",
681
- "taxi",
682
- "far",
683
- "yogurt",
684
- "groundhog day",
685
- "catch",
686
- "choose",
687
- "save",
688
- "teach",
689
- "happen",
690
- "ham",
691
- "low",
692
- "high",
693
- "drop",
694
- "swim",
695
- "saw",
696
- "sunscreen",
697
- "point",
698
- "vegetable",
699
- "french toast",
700
- "pray",
701
- "pyramid",
702
- "shrimp",
703
- "yell",
704
- "embarrassed",
705
- "build",
706
- "hug",
707
- "rain",
708
- "expensive",
709
- "french fries",
710
- "salad",
711
- "video game",
712
- "wash",
713
- "sausage",
714
- "move",
715
- "grilled cheese",
716
- "laugh",
717
- "pick",
718
- "miss",
719
- "climb",
720
- "share",
721
- "steak",
722
- "sure",
723
- "glass",
724
- "snow",
725
- "potato",
726
- "spaghetti",
727
- "stormy",
728
- "wonderful",
729
- "pilot",
730
- "grow",
731
- "celery",
732
- "dumb",
733
- "cry",
734
- "tennis",
735
- "strawberry",
736
- "submarine",
737
- "scratch",
738
- "pretend",
739
- "towel",
740
- "break",
741
- "dream",
742
- "fix",
743
- "trouble",
744
- "windy",
745
- "avocado",
746
- "lasagna",
747
- "travel",
748
- "true",
749
- "decorate",
750
- "shake",
751
- "canoe",
752
- "wet",
753
- "print",
754
- "dirt",
755
- "halloween",
756
- "race",
757
- "less",
758
- "weak",
759
- "using",
760
- "tomato",
761
- "comfortable",
762
- "interesting",
763
- "least",
764
- "christmas",
765
- "taco",
766
- "lose",
767
- "touch",
768
- "ugly",
769
- "plumber",
770
- "smart",
771
- "dry",
772
- "itchy",
773
- "zip",
774
- "difficult",
775
- "fold",
776
- "crawl",
777
- "relax",
778
- "soup",
779
- "study",
780
- "tall",
781
- "suck",
782
- "throw",
783
- "strong",
784
- "rock",
785
- "iron",
786
- "pour",
787
- "thanksgiving",
788
- "vanilla",
789
- "win",
790
- "stir",
791
- "round",
792
- "step"
793
- ],
794
- "efforts": {
795
- "the": 3.6858611293021597,
796
- "i": 3.7005846199433314,
797
- "on": 3.855469553949467,
798
- "to": 4.151746003928611,
799
- "off": 4.173514368639024,
800
- "my": 4.183083100148762,
801
- "and": 4.200733095084329,
802
- "a": 4.34889890516573,
803
- "yes": 4.3660684421485225,
804
- "mine": 4.403999191758521,
805
- "no": 4.604594718511781,
806
- "you": 4.739078302706087,
807
- "me": 4.751689182577779,
808
- "please": 5.053736559916536,
809
- "clear": 5.222154424792429,
810
- "come": 5.585967586087849,
811
- "thank you": 5.592246506602323,
812
- "he": 5.668707803021929,
813
- "we": 5.777821523904267,
814
- "more": 5.848098089903849,
815
- "good": 5.876540208427421,
816
- "help": 6.0067422900462475,
817
- "if": 6.1041983273253955,
818
- "for": 6.142115171925316,
819
- "hello": 6.170685078862364,
820
- "okay": 6.189913925152784,
821
- "of": 6.235620163310994,
822
- "she": 6.2701714182086485,
823
- "bad": 6.295368069549384,
824
- "ask": 6.362725622353889,
825
- "his": 6.414609230485911,
826
- "all": 6.45423343151323,
827
- "what": 6.455944819367581,
828
- "you're welcome": 6.468421498894237,
829
- "that": 6.485907785502919,
830
- "have": 6.505156547544745,
831
- "say": 6.537192505119297,
832
- "bottom": 6.541040866561556,
833
- "question": 6.553485519353394,
834
- "want": 6.5717496528432315,
835
- "this": 6.60569217970503,
836
- "from": 6.650770321611979,
837
- "an": 6.6560497733259645,
838
- "now": 6.661058909845096,
839
- "in": 6.681132611732213,
840
- "when": 6.685183200517877,
841
- "up": 6.697909374111106,
842
- "go": 6.69915841481791,
843
- "play": 6.722959833992141,
844
- "like": 6.756582652372287,
845
- "where": 6.7805857936621825,
846
- "out": 6.840521677614864,
847
- "get": 6.849895611929096,
848
- "bank": 6.870743050398675,
849
- "it": 6.873381811034477,
850
- "so": 6.9117162559598775,
851
- "top": 6.9472052818395955,
852
- "him": 6.95178230451709,
853
- "home": 6.955011506107895,
854
- "eat": 6.962037317980044,
855
- "dad": 6.97855088612805,
856
- "our": 7.045488177862792,
857
- "take": 7.066316866243728,
858
- "who": 7.073005818770226,
859
- "brother": 7.07482277240928,
860
- "face": 7.085615301552953,
861
- "head": 7.085938351287681,
862
- "last": 7.106912039394395,
863
- "again": 7.1144444920855126,
864
- "her": 7.127979796033188,
865
- "there": 7.138243684462341,
866
- "place": 7.157984454580858,
867
- "ear": 7.160368246514017,
868
- "they": 7.167116126934452,
869
- "mom": 7.1713732476101955,
870
- "do": 7.187624030432709,
871
- "hospital": 7.190650200819482,
872
- "even": 7.219517884645827,
873
- "us": 7.278495178466028,
874
- "eye": 7.282822308198679,
875
- "or": 7.302521255493801,
876
- "family": 7.310748013931809,
877
- "bedroom": 7.322827935973833,
878
- "drink": 7.331840771397904,
879
- "bag": 7.3516572505357045,
880
- "at": 7.361851212064234,
881
- "bathroom": 7.378515768562347,
882
- "post office": 7.394462747412248,
883
- "really": 7.395786301138132,
884
- "down": 7.395973686949504,
885
- "only": 7.398401960484362,
886
- "time": 7.399790799068027,
887
- "bottle": 7.409957126365697,
888
- "but": 7.410622582467212,
889
- "after": 7.410955697293276,
890
- "library": 7.421022689345081,
891
- "not": 7.428518712275859,
892
- "can": 7.438873756794558,
893
- "box": 7.445707568186037,
894
- "body": 7.44931334184713,
895
- "farm": 7.489432396953032,
896
- "their": 7.512183628490728,
897
- "very": 7.519329333774652,
898
- "why": 7.520337133275386,
899
- "by": 7.53371676506073,
900
- "park": 7.5365212047485635,
901
- "before": 7.5370371459239,
902
- "always": 7.553224023618752,
903
- "thing": 7.559585808893224,
904
- "today": 7.563968873051402,
905
- "talk": 7.566300806494115,
906
- "put": 7.58456889303597,
907
- "day": 7.586977235402163,
908
- "around": 7.595652888973963,
909
- "away": 7.60694979366716,
910
- "sister": 7.613539974007994,
911
- "brown": 7.618205005834233,
912
- "them": 7.61832951276638,
913
- "about": 7.618694861508724,
914
- "mall": 7.630127273622153,
915
- "middle": 7.631464885319592,
916
- "whose": 7.638359286109317,
917
- "don't": 7.641428762593438,
918
- "these": 7.642613742622344,
919
- "tomorrow": 7.661370269485174,
920
- "yesterday": 7.662139590281613,
921
- "fun": 7.662405087095596,
922
- "work": 7.666532459853267,
923
- "other": 7.671740897333301,
924
- "did": 7.697272781545713,
925
- "as": 7.719598483309564,
926
- "night": 7.720873929567232,
927
- "blue": 7.744523468845755,
928
- "through": 7.746183849964639,
929
- "bed": 7.772433524656083,
930
- "black": 7.788423806136468,
931
- "boy": 7.7894221358759435,
932
- "happy": 7.792889307134869,
933
- "kitchen": 7.845949565952816,
934
- "dining room": 7.851645996611886,
935
- "tonight": 7.855634779122923,
936
- "maybe": 7.8560563591381705,
937
- "neck": 7.8576069940324,
938
- "orange": 7.861642188806006,
939
- "hat": 7.88888141132777,
940
- "under": 7.891567154096307,
941
- "green": 7.893590295845627,
942
- "hair": 7.899746704094973,
943
- "easy": 7.905054167760392,
944
- "never": 7.906103264985145,
945
- "much": 7.907041201653943,
946
- "gas station": 7.916516449571887,
947
- "big": 7.919340322655223,
948
- "parent": 7.919504065647388,
949
- "call": 7.927034265146458,
950
- "nose": 7.9281871494233345,
951
- "will": 7.931336192012559,
952
- "arm": 7.9419508747529175,
953
- "basket": 7.981567618206421,
954
- "outside": 7.983942776227906,
955
- "airport": 8.004381419750153,
956
- "here": 8.0055500116267,
957
- "mouth": 8.025119678007368,
958
- "sad": 8.030510813117598,
959
- "live": 8.03807091546616,
960
- "pink": 8.043879482066178,
961
- "know": 8.045201543873857,
962
- "some": 8.045835196442592,
963
- "belt": 8.050064639662729,
964
- "clothes": 8.05894420361663,
965
- "church": 8.064415490663102,
966
- "behind": 8.084445107465578,
967
- "enough": 8.090152602402524,
968
- "house": 8.093124058611707,
969
- "back": 8.094626510616237,
970
- "is": 8.1058155200277,
971
- "little": 8.11212762641994,
972
- "mad": 8.112894414791477,
973
- "girl": 8.121626031194541,
974
- "sick": 8.144003466249075,
975
- "pants": 8.151132151776048,
976
- "child": 8.189610753416929,
977
- "funny": 8.19290193738252,
978
- "meet": 8.227946597574066,
979
- "animal": 8.235945773199065,
980
- "elbow": 8.255119125047843,
981
- "people": 8.264604568925956,
982
- "man": 8.278299976694534,
983
- "room": 8.279032171352505,
984
- "give": 8.279689271830978,
985
- "red": 8.30241445824621,
986
- "office": 8.30604624237947,
987
- "hungry": 8.314293252079722,
988
- "wear": 8.321424807307338,
989
- "read": 8.32385954552764,
990
- "because": 8.324374487784384,
991
- "purple": 8.330336617232534,
992
- "book": 8.330381310913525,
993
- "living room": 8.368470782369567,
994
- "person": 8.375021623967942,
995
- "school": 8.38053662406525,
996
- "should": 8.382527784397936,
997
- "friend": 8.38406012830101,
998
- "dinosaur": 8.396138358689011,
999
- "with": 8.39999418360265,
1000
- "teeth": 8.412822295828363,
1001
- "bug": 8.42755314105957,
1002
- "dollar": 8.431933488298817,
1003
- "over": 8.438638944504248,
1004
- "tongue": 8.466512925632491,
1005
- "long": 8.46683554556899,
1006
- "look": 8.468691459878166,
1007
- "could": 8.47768555291541,
1008
- "done": 8.483671472201062,
1009
- "color": 8.486326550139317,
1010
- "fast": 8.491998034842378,
1011
- "phone": 8.515531446051103,
1012
- "finger": 8.518438249094919,
1013
- "computer": 8.524229450670365,
1014
- "many": 8.530618883468842,
1015
- "hand": 8.582334032173916,
1016
- "moon": 8.595371990208392,
1017
- "until": 8.595572198061905,
1018
- "yellow": 8.596251595805317,
1019
- "which": 8.606596165516823,
1020
- "bird": 8.641096719265748,
1021
- "chair": 8.644112283087777,
1022
- "game": 8.646335551521375,
1023
- "left": 8.654268304483388,
1024
- "white": 8.684859503114563,
1025
- "beach": 8.690508570190122,
1026
- "math": 8.69279221463045,
1027
- "how": 8.727646863711996,
1028
- "woman": 8.731048669736555,
1029
- "sorry": 8.749038809511585,
1030
- "alligator": 8.75059607150722,
1031
- "closet": 8.770891160400254,
1032
- "then": 8.791460081009472,
1033
- "ready": 8.79421789660034,
1034
- "stop": 8.80144443930378,
1035
- "finished": 8.802049832679625,
1036
- "space": 8.812771666924199,
1037
- "stegosaurus": 8.851343874171977,
1038
- "would": 8.863390827263459,
1039
- "those": 8.867452525455766,
1040
- "bring": 8.886724834225603,
1041
- "store": 8.91727522874291,
1042
- "desk": 8.918012780730146,
1043
- "month": 8.921297425934286,
1044
- "hear": 8.93105820484574,
1045
- "bus": 8.949856336200076,
1046
- "see": 8.954520734544351,
1047
- "thirsty": 8.959675476886957,
1048
- "new": 8.971865510097341,
1049
- "may": 8.981569576376788,
1050
- "bear": 8.996472266992066,
1051
- "nice": 9.006257600106157,
1052
- "table": 9.0096633550046,
1053
- "country": 9.027486472862407,
1054
- "cat": 9.037243702229489,
1055
- "couch": 9.04122108333608,
1056
- "gloves": 9.046209241941153,
1057
- "answer": 9.067470924653254,
1058
- "building": 9.072973966355763,
1059
- "triceratops": 9.073216926343447,
1060
- "foot": 9.07924702573058,
1061
- "mean": 9.083816820803937,
1062
- "bored": 9.09177734610474,
1063
- "sit": 9.093400885981188,
1064
- "homework": 9.094963849297931,
1065
- "dog": 9.106762109619277,
1066
- "tired": 9.128971439902786,
1067
- "medicine": 9.148477026892186,
1068
- "wheelchair": 9.152704535800039,
1069
- "early": 9.153965802078918,
1070
- "right": 9.1568414815699,
1071
- "cool": 9.157075252044095,
1072
- "earth": 9.157630583976438,
1073
- "picture": 9.162702961879344,
1074
- "dresser": 9.16604589789265,
1075
- "story": 9.168702572926506,
1076
- "excited": 9.169116335983304,
1077
- "old": 9.209963608264417,
1078
- "jewelry": 9.212975053145337,
1079
- "pool": 9.213781737180216,
1080
- "bell": 9.215147116926396,
1081
- "furniture": 9.216398708392179,
1082
- "scarf": 9.236085490597342,
1083
- "leg": 9.243880070618864,
1084
- "wrong": 9.250385498792877,
1085
- "meeting": 9.254203168853712,
1086
- "love": 9.256596192477033,
1087
- "turn": 9.26335845437277,
1088
- "tyrannosaurus rex": 9.267701354180117,
1089
- "might": 9.272125210298835,
1090
- "write": 9.275090522987686,
1091
- "breakfast": 9.27903052609339,
1092
- "milk": 9.28650829843522,
1093
- "afternoon": 9.288638898289674,
1094
- "gold": 9.298917466408453,
1095
- "radio": 9.300004904936921,
1096
- "food": 9.304769079936687,
1097
- "count": 9.309856681150734,
1098
- "make": 9.30989198732327,
1099
- "island": 9.310813323271924,
1100
- "run": 9.326223187841986,
1101
- "frog": 9.335449713425682,
1102
- "skirt": 9.338400144235601,
1103
- "money": 9.342198801183832,
1104
- "different": 9.35509830582657,
1105
- "hot": 9.358392131734876,
1106
- "quiet": 9.359020024964895,
1107
- "joke": 9.38577545080835,
1108
- "ride": 9.38738047045689,
1109
- "battery": 9.391721714812613,
1110
- "mercury": 9.391802510312864,
1111
- "dress": 9.395231405317555,
1112
- "year": 9.402347943866241,
1113
- "week": 9.407180571431368,
1114
- "baby": 9.414509790120492,
1115
- "mars": 9.424875651862518,
1116
- "water": 9.425250170396769,
1117
- "slow": 9.431534221402565,
1118
- "elephant": 9.442964879849951,
1119
- "proud": 9.45192465456168,
1120
- "silver": 9.452667311934707,
1121
- "shorts": 9.4529312051,
1122
- "jupiter": 9.454682913001522,
1123
- "pen": 9.457183637535293,
1124
- "buy": 9.479920266809588,
1125
- "first": 9.48227092558251,
1126
- "same": 9.48478471147879,
1127
- "leave": 9.49541874685468,
1128
- "problem": 9.502257274061604,
1129
- "think": 9.506853445651386,
1130
- "great": 9.517079579346468,
1131
- "let": 9.520090265078002,
1132
- "pencil": 9.534067795477053,
1133
- "late": 9.538034891851428,
1134
- "busy": 9.53806801548556,
1135
- "pet": 9.538413746540966,
1136
- "appliance": 9.54128697985519,
1137
- "saturn": 9.548924622841968,
1138
- "deer": 9.555166321301119,
1139
- "giraffe": 9.563287973178472,
1140
- "history": 9.56587188171747,
1141
- "camel": 9.570534082293976,
1142
- "draw": 9.574653897819978,
1143
- "science": 9.57498295700314,
1144
- "venus": 9.588453742295133,
1145
- "window": 9.588931261103358,
1146
- "monday": 9.589404129154266,
1147
- "morning": 9.597850146898402,
1148
- "camera": 9.599988057493388,
1149
- "clean": 9.601010603896746,
1150
- "neptune": 9.604153828173628,
1151
- "toy": 9.619558156799275,
1152
- "any": 9.621749911059972,
1153
- "able": 9.636790031891916,
1154
- "chicken": 9.637241013880555,
1155
- "hurt": 9.644617887966556,
1156
- "front": 9.672915145083213,
1157
- "friday": 9.675809796237873,
1158
- "journal": 9.696659806873392,
1159
- "find": 9.697243530943306,
1160
- "shy": 9.697707152301742,
1161
- "tell": 9.7074601192255,
1162
- "close": 9.715143522750203,
1163
- "bowl": 9.715667986762453,
1164
- "cold": 9.720600350938536,
1165
- "though": 9.727417423401475,
1166
- "add": 9.728957588455788,
1167
- "side": 9.730665139110505,
1168
- "uranus": 9.737184924489377,
1169
- "doctor": 9.748365413064706,
1170
- "sleep": 9.767657971355861,
1171
- "toe": 9.782242371469613,
1172
- "music": 9.785890958315761,
1173
- "start": 9.788563092653009,
1174
- "quarter": 9.791506083003927,
1175
- "bike": 9.794197163978122,
1176
- "news": 9.82041340941413,
1177
- "end": 9.843182759583865,
1178
- "sing": 9.844841346169286,
1179
- "hammer": 9.846402546215776,
1180
- "luggage": 9.847422752955591,
1181
- "coffee": 9.853343181360266,
1182
- "cow": 9.860545516009505,
1183
- "ice": 9.863517215947914,
1184
- "fall": 9.89598484250309,
1185
- "scared": 9.900217074600182,
1186
- "learn": 9.902781943718825,
1187
- "drawer": 9.904962797101561,
1188
- "baseball": 9.906580973328127,
1189
- "every": 9.917120474930563,
1190
- "awesome": 9.918919570649814,
1191
- "birthday": 9.927659892063879,
1192
- "sunday": 9.945153916655622,
1193
- "door": 9.959521433655725,
1194
- "try": 9.961957872712667,
1195
- "heart": 9.966689211530218,
1196
- "flower": 9.978718995339579,
1197
- "cake": 9.988771137182965,
1198
- "full": 9.991240656211026,
1199
- "leaf": 9.992533576022673,
1200
- "banana": 9.998045070848692,
1201
- "way": 10.004555705592594,
1202
- "must": 10.005245826103824,
1203
- "slide": 10.008415488072,
1204
- "car": 10.011512481482384,
1205
- "stand": 10.016718666478281,
1206
- "therapy": 10.024841345233025,
1207
- "apple": 10.031907721174006,
1208
- "word": 10.060423731484962,
1209
- "open": 10.064381759153484,
1210
- "dishwasher": 10.065473106426595,
1211
- "kiss": 10.066916602532487,
1212
- "iced tea": 10.067070131869952,
1213
- "underwear": 10.073443079165544,
1214
- "pajamas": 10.087630582789009,
1215
- "clock": 10.094350661826246,
1216
- "basketball": 10.097817230145026,
1217
- "drive": 10.108541767791671,
1218
- "crayon": 10.113160097380401,
1219
- "airplane": 10.115858407940623,
1220
- "juice": 10.120514232492349,
1221
- "mirror": 10.122693736495892,
1222
- "later": 10.126428205268633,
1223
- "tuesday": 10.129336720816221,
1224
- "horse": 10.138191677175232,
1225
- "saturday": 10.141093432506608,
1226
- "thursday": 10.152646536045642,
1227
- "balloon": 10.15815694826149,
1228
- "blanket": 10.160839947894424,
1229
- "cookie": 10.16996322305979,
1230
- "april": 10.170269338971917,
1231
- "nurse": 10.175769912855415,
1232
- "fruit": 10.177791463489504,
1233
- "dirty": 10.179598043924717,
1234
- "vacation": 10.189187484988596,
1235
- "february": 10.19205814313232,
1236
- "bath": 10.193888839858126,
1237
- "letter": 10.196822706699525,
1238
- "grass": 10.203610122866017,
1239
- "present": 10.210590666933136,
1240
- "dolphin": 10.226405685268336,
1241
- "remember": 10.247685606885632,
1242
- "neighbor": 10.255867992016661,
1243
- "grasshopper": 10.261185674024789,
1244
- "lion": 10.267070188175666,
1245
- "speak": 10.268637183956429,
1246
- "pull": 10.275585765897734,
1247
- "loud": 10.277194213757681,
1248
- "watch": 10.27891052973273,
1249
- "shower": 10.288331542064604,
1250
- "lemonade": 10.290036158952704,
1251
- "dance": 10.300523035483932,
1252
- "best": 10.302113991028257,
1253
- "ladybug": 10.30674313403484,
1254
- "crab": 10.310173644664243,
1255
- "lunch": 10.310193852786558,
1256
- "wednesday": 10.310865266449374,
1257
- "teacher": 10.312794439284225,
1258
- "circle": 10.319805416646398,
1259
- "yard": 10.333303947124975,
1260
- "tree": 10.346092644154936,
1261
- "march": 10.350808019758047,
1262
- "january": 10.354480183631521,
1263
- "screwdriver": 10.361028905350215,
1264
- "fish": 10.364267410375957,
1265
- "spring": 10.375769853037951,
1266
- "ambulance": 10.388312126979422,
1267
- "chips": 10.396545454435115,
1268
- "rabbit": 10.399226565512409,
1269
- "ocean": 10.399606444857895,
1270
- "song": 10.40753257973045,
1271
- "toilet": 10.425480167959172,
1272
- "football": 10.431719197202064,
1273
- "light": 10.439083869388876,
1274
- "dinner": 10.450424858518232,
1275
- "drum": 10.457621206390552,
1276
- "bowling": 10.463619864612552,
1277
- "pillow": 10.471531015045374,
1278
- "snack": 10.492194266341722,
1279
- "piano": 10.492644932872516,
1280
- "few": 10.494549008499316,
1281
- "paint": 10.496721537713219,
1282
- "job": 10.498734265484709,
1283
- "trampoline": 10.504082238841791,
1284
- "octopus": 10.508768791048261,
1285
- "august": 10.514331367139375,
1286
- "sun": 10.517619883888607,
1287
- "soft": 10.520859963649297,
1288
- "brownie": 10.52968709508132,
1289
- "change": 10.538661255996798,
1290
- "coke": 10.555809328881951,
1291
- "summer": 10.55658601720496,
1292
- "world": 10.562479195359947,
1293
- "dessert": 10.569595170993184,
1294
- "broom": 10.569877946567038,
1295
- "jump": 10.575551508331541,
1296
- "idea": 10.576234687812494,
1297
- "cup": 10.57866693485889,
1298
- "crazy": 10.595445921012601,
1299
- "believe": 10.601352820382134,
1300
- "pretty": 10.605284640889465,
1301
- "lobster": 10.607330146208525,
1302
- "kind": 10.607520278246485,
1303
- "broccoli": 10.610794347089065,
1304
- "goldfish": 10.625287174889207,
1305
- "test": 10.633347077406762,
1306
- "june": 10.634099819129357,
1307
- "snake": 10.635321407916896,
1308
- "careful": 10.636391633060384,
1309
- "ketchup": 10.640551301973888,
1310
- "real": 10.649598834931075,
1311
- "wrench": 10.650276513505279,
1312
- "soap": 10.653637999240704,
1313
- "storm": 10.655505459947646,
1314
- "plant": 10.657412327072995,
1315
- "bleed": 10.666413706282508,
1316
- "plate": 10.690792926308278,
1317
- "ladder": 10.693452036419117,
1318
- "empty": 10.694411756799754,
1319
- "mustard": 10.721597363540683,
1320
- "helicopter": 10.722845214927553,
1321
- "pig": 10.730400661389934,
1322
- "fly": 10.736459988907631,
1323
- "nuts": 10.746860303205226,
1324
- "july": 10.75317658158173,
1325
- "square": 10.754834078463874,
1326
- "clam": 10.763651235105106,
1327
- "december": 10.770985749809405,
1328
- "straw": 10.787393328553947,
1329
- "push": 10.787442088453766,
1330
- "cereal": 10.79143774396747,
1331
- "sink": 10.792488665717553,
1332
- "cook": 10.796466429296288,
1333
- "button": 10.810028340854085,
1334
- "listen": 10.814379458612583,
1335
- "floor": 10.816344135522222,
1336
- "boat": 10.82081380835799,
1337
- "shampoo": 10.821135304614675,
1338
- "name": 10.824559293307349,
1339
- "match": 10.83004043391147,
1340
- "gymnastics": 10.843761045436517,
1341
- "rectangle": 10.856341964360114,
1342
- "argue": 10.869428564215589,
1343
- "stove": 10.875739930266258,
1344
- "smile": 10.9027353115038,
1345
- "weather": 10.908463859512462,
1346
- "diamond": 10.912606871642154,
1347
- "peanut butter": 10.916906791140743,
1348
- "lemon": 10.92098481275807,
1349
- "puzzle": 10.930149694677487,
1350
- "short": 10.936114767390576,
1351
- "scooter": 10.94155763114949,
1352
- "salsa": 10.942196374382565,
1353
- "bacon": 10.944272258335056,
1354
- "carrot": 10.94585241214668,
1355
- "river": 10.949348300877475,
1356
- "oval": 10.952322940662441,
1357
- "wind": 10.95632919574376,
1358
- "follow": 10.959806422999906,
1359
- "holiday": 10.962314751219147,
1360
- "paper": 10.968054566810517,
1361
- "mountain": 10.979933004017584,
1362
- "popcorn": 10.982385292343219,
1363
- "squirrel": 10.995049156812158,
1364
- "sheep": 10.998142576956386,
1365
- "fork": 11.000044625555406,
1366
- "show": 11.000596541107818,
1367
- "wait": 11.002235052219095,
1368
- "truck": 11.015936886251769,
1369
- "milkshake": 11.027872294647981,
1370
- "spider": 11.035505983963393,
1371
- "knife": 11.035740496275487,
1372
- "pizza": 11.036421631643904,
1373
- "tea": 11.042469990517617,
1374
- "honey": 11.04703930339072,
1375
- "hill": 11.058430976402342,
1376
- "november": 11.063766268343455,
1377
- "scissors": 11.069212949640196,
1378
- "burrito": 11.069343822118144,
1379
- "turkey": 11.071481247970071,
1380
- "october": 11.073358447742836,
1381
- "alive": 11.073436283687084,
1382
- "cupcake": 11.074475387490413,
1383
- "rose": 11.082864228242954,
1384
- "visit": 11.084638876068556,
1385
- "corn": 11.092211676284736,
1386
- "rainbow": 11.092760473285164,
1387
- "shop": 11.094939590183216,
1388
- "winter": 11.09612422544703,
1389
- "understand": 11.09856352530775,
1390
- "motorcycle": 11.116449797214049,
1391
- "laundry": 11.120074935059888,
1392
- "star": 11.127700146964663,
1393
- "use": 11.13133892837567,
1394
- "september": 11.132349508069758,
1395
- "napkin": 11.133645640633866,
1396
- "golf": 11.134154445558378,
1397
- "cloudy": 11.136117030516674,
1398
- "hide": 11.139687630220175,
1399
- "jelly": 11.142427821947845,
1400
- "bite": 11.1497647393799,
1401
- "ice cream": 11.152729971675702,
1402
- "lightning": 11.163870607681027,
1403
- "astronaut": 11.173366546134929,
1404
- "stairs": 11.174603086732358,
1405
- "dryer": 11.178342291368141,
1406
- "date": 11.180323596565025,
1407
- "salt": 11.186543842451613,
1408
- "forest": 11.19252118052975,
1409
- "silly": 11.206234470035088,
1410
- "spoon": 11.207780226611307,
1411
- "soccer": 11.215005655057993,
1412
- "cut": 11.226390799843065,
1413
- "guess": 11.226551789761645,
1414
- "stay": 11.235772195650574,
1415
- "student": 11.236564280461137,
1416
- "cucumber": 11.24828924683829,
1417
- "hot dog": 11.261090427538983,
1418
- "deodorant": 11.265363966798702,
1419
- "triangle": 11.271577796822775,
1420
- "amazing": 11.279845466197365,
1421
- "tape": 11.284625662825023,
1422
- "tiger": 11.287180379303829,
1423
- "oatmeal": 11.292860453251151,
1424
- "starfish": 11.29455765913526,
1425
- "beef": 11.304229473692413,
1426
- "party": 11.311731907931991,
1427
- "zebra": 11.31266222212805,
1428
- "microwave": 11.31337049147568,
1429
- "bake": 11.315400803396162,
1430
- "meat": 11.327429905271666,
1431
- "tornado": 11.353225739488032,
1432
- "cheat": 11.366037364879917,
1433
- "glue": 11.37302380365896,
1434
- "foggy": 11.382587047066265,
1435
- "toothbrush": 11.392179777332174,
1436
- "dark": 11.39829057358,
1437
- "young": 11.413095135775052,
1438
- "sugar": 11.420468879761026,
1439
- "walk": 11.463504055917138,
1440
- "toothpaste": 11.465058616796856,
1441
- "toilet paper": 11.46664286867139,
1442
- "taste": 11.468970718072562,
1443
- "hold": 11.47360962990123,
1444
- "pan": 11.4839632070621,
1445
- "pepper": 11.486712759836857,
1446
- "pie": 11.503493954598174,
1447
- "dead": 11.509176665064034,
1448
- "keep": 11.521090423426157,
1449
- "lift": 11.526588979871885,
1450
- "false": 11.534964320228745,
1451
- "imagine": 11.538046640575725,
1452
- "train": 11.538596472911056,
1453
- "shark": 11.547885336643553,
1454
- "shovel": 11.551656336195029,
1455
- "brush": 11.564473688036987,
1456
- "tie": 11.566645211618065,
1457
- "thunder": 11.575830119009009,
1458
- "sled": 11.585899196038618,
1459
- "rice": 11.590781295148883,
1460
- "mail carrier": 11.60272627213596,
1461
- "pasta": 11.618513105269907,
1462
- "police car": 11.61904488656972,
1463
- "lettuce": 11.619757147089532,
1464
- "easter": 11.632708268679334,
1465
- "near": 11.635716814267333,
1466
- "sandwich": 11.642530695712484,
1467
- "taxi": 11.658959034883907,
1468
- "far": 11.66820533981057,
1469
- "yogurt": 11.672084713177526,
1470
- "groundhog day": 11.675001371195634,
1471
- "catch": 11.69766126248948,
1472
- "choose": 11.71412910069299,
1473
- "save": 11.724924427706767,
1474
- "teach": 11.72614360900185,
1475
- "happen": 11.752818361919172,
1476
- "ham": 11.760292072096178,
1477
- "low": 11.762340983562503,
1478
- "high": 11.779386716622302,
1479
- "drop": 11.797403985395821,
1480
- "swim": 11.801230677843842,
1481
- "saw": 11.804616891775206,
1482
- "sunscreen": 11.831296834763382,
1483
- "point": 11.847912646684788,
1484
- "vegetable": 11.855072940555273,
1485
- "french toast": 11.856849622322073,
1486
- "pray": 11.875323505333762,
1487
- "pyramid": 11.882168801017912,
1488
- "shrimp": 11.890894675467731,
1489
- "yell": 11.90981128656706,
1490
- "embarrassed": 11.932801889925358,
1491
- "build": 11.933504831715291,
1492
- "hug": 11.93568299221057,
1493
- "rain": 11.941700598922289,
1494
- "expensive": 11.943662808261248,
1495
- "french fries": 11.952169431549434,
1496
- "salad": 11.96303169328966,
1497
- "video game": 11.975760984672503,
1498
- "wash": 11.981877886219344,
1499
- "sausage": 11.987485550916187,
1500
- "move": 12.001049083562823,
1501
- "grilled cheese": 12.006794608074316,
1502
- "laugh": 12.027253261575375,
1503
- "pick": 12.034010507281604,
1504
- "miss": 12.065487425641082,
1505
- "climb": 12.07726538688382,
1506
- "share": 12.079361723286915,
1507
- "steak": 12.100468154776639,
1508
- "sure": 12.10080695920136,
1509
- "glass": 12.101019691673898,
1510
- "snow": 12.112191338227168,
1511
- "potato": 12.127606703137161,
1512
- "spaghetti": 12.128550317820256,
1513
- "stormy": 12.142275399986097,
1514
- "wonderful": 12.145707134513103,
1515
- "pilot": 12.15711004008678,
1516
- "grow": 12.157167088727935,
1517
- "celery": 12.17621619576324,
1518
- "dumb": 12.1835630233652,
1519
- "cry": 12.198399483743014,
1520
- "tennis": 12.19906236443471,
1521
- "strawberry": 12.21320411829527,
1522
- "submarine": 12.214739162472254,
1523
- "scratch": 12.224271359109233,
1524
- "pretend": 12.229392225201556,
1525
- "towel": 12.239644510189772,
1526
- "break": 12.25431616097567,
1527
- "dream": 12.254965780217935,
1528
- "fix": 12.26442584221801,
1529
- "trouble": 12.27183810921642,
1530
- "windy": 12.287383171904805,
1531
- "avocado": 12.299409314272976,
1532
- "lasagna": 12.309888243132008,
1533
- "travel": 12.31806619555075,
1534
- "true": 12.32280028057551,
1535
- "decorate": 12.357221146898228,
1536
- "shake": 12.377237017981443,
1537
- "canoe": 12.377800401689164,
1538
- "wet": 12.379292891894593,
1539
- "print": 12.38383896909411,
1540
- "dirt": 12.410890118090373,
1541
- "halloween": 12.420959727524593,
1542
- "race": 12.435665365020473,
1543
- "less": 12.442555019443422,
1544
- "weak": 12.462149389786298,
1545
- "using": 12.46963630405727,
1546
- "tomato": 12.479329848907666,
1547
- "comfortable": 12.529903389004492,
1548
- "interesting": 12.531474360309957,
1549
- "least": 12.564092246389595,
1550
- "christmas": 12.58116231822013,
1551
- "taco": 12.603413878801689,
1552
- "lose": 12.62758619523161,
1553
- "touch": 12.631958793740667,
1554
- "ugly": 12.650776540102187,
1555
- "plumber": 12.677272844475537,
1556
- "smart": 12.685719907076477,
1557
- "dry": 12.704664619533755,
1558
- "itchy": 12.739465982767939,
1559
- "zip": 12.751553052249173,
1560
- "difficult": 12.764099907062894,
1561
- "fold": 12.778596212804986,
1562
- "crawl": 12.796733094101398,
1563
- "relax": 12.813440282947797,
1564
- "soup": 12.829764242612075,
1565
- "study": 12.96568079878338,
1566
- "tall": 12.981659454096647,
1567
- "suck": 13.012954971403467,
1568
- "throw": 13.024943352703856,
1569
- "strong": 13.03737171345625,
1570
- "rock": 13.113609013097983,
1571
- "iron": 13.135348861211597,
1572
- "pour": 13.226156982776764,
1573
- "thanksgiving": 13.243236019254478,
1574
- "vanilla": 13.2623230812071,
1575
- "win": 13.479492281036189,
1576
- "stir": 13.58606807256437,
1577
- "round": 13.61229856808025,
1578
- "step": 13.74654835812758
1579
- }
1580
- }