forked from intercloud/go-coding-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
1196 lines (1196 loc) · 35.7 KB
/
db.json
1
2
3
4
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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"text": "45000000 is the number of turkeys Americans eat at Thanksgiving annually.",
"number": 45000000,
"found": true,
"type": "trivia"
},
{
"text": "5300 is the number of gum wrappers that Steve Fletcher has, the record for the largest gum wrapper collection.",
"number": 5300,
"found": true,
"type": "trivia"
},
{
"text": "1e+40 is the Eddington–Dirac number.",
"number": 1e+40,
"found": true,
"type": "trivia"
},
{
"text": "60 is the years of marriage until the diamond wedding anniversary.",
"number": 60,
"found": true,
"type": "trivia"
},
{
"text": "235 is the atomic mass number of an important isotope of the element uranium, the fissile isotope which is used as the fuel for nuclear reactors and in some nuclear weapons.",
"number": 235,
"found": true,
"type": "trivia"
},
{
"text": "360000 is the number of words definitions in the New Oxford Dictionary of English.",
"number": 360000,
"found": true,
"type": "trivia"
},
{
"text": "104 is the atomic number of rutherfordium.",
"number": 104,
"found": true,
"type": "trivia"
},
{
"text": "123 is the telephone number of the speaking clock for the correct time in the United Kingdom.",
"number": 123,
"found": true,
"type": "trivia"
},
{
"text": "175 is the atomic number of an element temporarily called Unseptpentium.",
"number": 175,
"found": true,
"type": "trivia"
},
{
"text": "714 is the number of home runs Babe Ruth scored in his career.",
"number": 714,
"found": true,
"type": "trivia"
},
{
"text": "384 is the digest length of the secure hash function SHA-384 (384 is a low power of 2).",
"number": 384,
"found": true,
"type": "trivia"
},
{
"text": "1979 is a song by American alternative rock band The Smashing Pumpkins.",
"number": 1979,
"found": true,
"type": "trivia"
},
{
"text": "8e+60 is the number of Planck time intervals since the Big Bang.",
"number": "8e+60",
"found": true,
"type": "trivia"
},
{
"text": "304 is the record number of wickets taken in English cricket season by Tich Freeman in 1928.",
"number": 304,
"found": true,
"type": "trivia"
},
{
"text": "141 is the number of participants (90 Indians and 51 Pilgrims) at the First Thanksgiving.",
"number": 141,
"found": true,
"type": "trivia"
},
{
"text": "366 is the number of days in a leap year.",
"number": 366,
"found": true,
"type": "trivia"
},
{
"text": "154 is the period in days that the sun follows on gamma-ray flares.",
"number": 154,
"found": true,
"type": "trivia"
},
{
"text": "100000000000 is the number of neurons in the human brain.",
"number": 100000000000,
"found": true,
"type": "trivia"
},
{
"text": "5000 is the number of base pairs in the DNA of the simplest viruses.",
"number": 5000,
"found": true,
"type": "trivia"
},
{
"text": "1000000000000 is the number of bacteria on the surface of the human body.",
"number": 1000000000000,
"found": true,
"type": "trivia"
},
{
"text": "1e+63 is the estimate by Archimedes in The Sand Reckoner of the total number of grains of sand that could fit into the entire cosmos.",
"number": 1e+63,
"found": true,
"type": "trivia"
},
{
"text": "248 is the number of organs in the human body as traditionally depicted.",
"number": 248,
"found": true,
"type": "trivia"
},
{
"text": "77 is the atomic number of iridium.",
"number": 77,
"found": true,
"type": "trivia"
},
{
"text": "3825000 is the number of entries on Wikipedia in the English language.",
"number": 3825000,
"found": true,
"type": "trivia"
},
{
"text": "141 is the number of participants (90 Indians and 51 Pilgrims) at the First Thanksgiving.",
"number": 141,
"found": true,
"type": "trivia"
},
{
"text": "404 is the HTTP status code for \"Not found\", perhaps the most famous HTTP status code.",
"number": 404,
"found": true,
"type": "trivia"
},
{
"text": "328 is the weight in pounds of an ovarian cyst removed from a woman in Galveston, Texas, in 1905, a world record.",
"number": 328,
"found": true,
"type": "trivia"
},
{
"text": "30 is the number of days in the months April, June, September and November (and in unusual circumstances February).",
"number": 30,
"found": true,
"type": "trivia"
},
{
"text": "214 is the SMTP status code for help message.",
"number": 214,
"found": true,
"type": "trivia"
},
{
"text": "90000 is the average number of hairs that redheads have.",
"number": 90000,
"found": true,
"type": "trivia"
},
{
"text": "300 is the number of different beverages the Coca Cola company offers.",
"number": 300,
"found": true,
"type": "trivia"
},
{
"text": "490 is the number of Pokémon available as of the release of Pokémon Diamond and Pearl (excluding event Pokémon).",
"number": 490,
"found": true,
"type": "trivia"
},
{
"text": "179 is the rank of the Anthology 1961-1977 (1992) by Curtis Mayfield and The Impressions on Rolling Stone magazine's list of the 500 greatest albums of all time.",
"number": 179,
"found": true,
"type": "trivia"
},
{
"text": "198 is the rank of Hey Joe (1966) by Jimi Hendrix on Rolling Stone magazine's list of The 500 Greatest Songs of All Time.",
"number": 198,
"found": true,
"type": "trivia"
},
{
"text": "5000 is the number of base pairs in the DNA of the simplest viruses.",
"number": 5000,
"found": true,
"type": "trivia"
},
{
"text": "51 is the atomic number of antimony.",
"number": 51,
"found": true,
"type": "trivia"
},
{
"text": "1362310155 is the total number of items of mail that went through the Canadian postal system in 1950.",
"number": 1362310155,
"found": true,
"type": "trivia"
},
{
"text": "276 is the highest number of rounds in boxing history, in a bare-knuckle fight in 1825 that saw Jack Jones beat Patsy Tunney after 4hr 30min.",
"number": 276,
"found": true,
"type": "trivia"
},
{
"text": "23 is the number of times Julius Caesar was stabbed.",
"number": 23,
"found": true,
"type": "trivia"
},
{
"text": "31 is the number of flavors of Baskin-Robbins ice cream.",
"number": 31,
"found": true,
"type": "trivia"
},
{
"text": "352 is the number of international appearances by Kristine Lilly for the USA women's national soccer team, an all-time record.",
"number": 352,
"found": true,
"type": "trivia"
},
{
"text": "104 is the number of Corinthian columns in the Temple of Olympian Zeus, the largest temple ever built in Greece.",
"number": 104,
"found": true,
"type": "trivia"
},
{
"text": "4 is the number of movements in a symphony.",
"number": 4,
"found": true,
"type": "trivia"
},
{
"text": "103 is the atomic number of lawrencium, an actinide.",
"number": 103,
"found": true,
"type": "trivia"
},
{
"text": "14500 is the number of unique English words occur in the King James Version of the Bible.",
"number": 14500,
"found": true,
"type": "trivia"
},
{
"text": "15 is the number of checkers each side has at the start of a backgammon game.",
"number": 15,
"found": true,
"type": "trivia"
},
{
"text": "83 is the atomic number of bismuth.",
"number": 83,
"found": true,
"type": "trivia"
},
{
"text": "102 is the atomic number of nobelium, an actinide.",
"number": 102,
"found": true,
"type": "trivia"
},
{
"text": "38 is the number of years it took the Israelites to travel from Kadesh Barnea to the Zered valley in Deuteronomy.",
"number": 38,
"found": true,
"type": "trivia"
},
{
"text": "65 is the traditional age for retirement in the United Kingdom, Germany and other countries.",
"number": 65,
"found": true,
"type": "trivia"
},
{
"text": "231 is the number of cubic inches in a U.S. liquid gallon.",
"number": 231,
"found": true,
"type": "trivia"
},
{
"text": "172 is the number that appears on the back of the US $5 dollar bill (in the bushes at the base of the Lincoln Memorial).",
"number": 172,
"found": true,
"type": "trivia"
},
{
"text": "2600 is the length of brink in feet of the Canadian \"Horseshoe\" Falls located in Niagara Falls, Ontario.",
"number": 2600,
"found": true,
"type": "trivia"
},
{
"text": "115 is the atomic number of an element temporarily called ununpentium.",
"number": 115,
"found": true,
"type": "trivia"
},
{
"text": "221 is the house number on Baker Street of the fictional London residence of Sherlock Holmes.",
"number": 221,
"found": true,
"type": "trivia"
},
{
"text": "125000 is the number of average strands of hair in the human head.",
"number": 125000,
"found": true,
"type": "trivia"
},
{
"text": "6.28e+57 is the number of keys in the AES 192 bit key space (symmetric cipher).",
"number": 6.28e+57,
"found": true,
"type": "trivia"
},
{
"text": "78 is the atomic number of platinum.",
"number": 78,
"found": true,
"type": "trivia"
},
{
"text": "29 is the number of attributes existing according to The Strokes in You Only Live Once.",
"number": 29,
"found": true,
"type": "trivia"
},
{
"text": "214 is the first area code of metropolitan Dallas, Texas.",
"number": 214,
"found": true,
"type": "trivia"
},
{
"text": "1500 is the approximate number of peanut butter sandwiches the average American kid will eat by high school graduation.",
"number": 1500,
"found": true,
"type": "trivia"
},
{
"text": "10000 is the gallons of saliva an average human produces in a lifetime.",
"number": 10000,
"found": true,
"type": "trivia"
},
{
"text": "60000000000000000000 is the permutations of a 10-character password on a 95-character set found on standard computer keyboards.",
"number": 60000000000000000000,
"found": true,
"type": "trivia"
},
{
"text": "98 is the temperature (F) of the normal body.",
"number": 98,
"found": true,
"type": "trivia"
},
{
"text": "352 is the number of international appearances by Kristine Lilly for the USA women's national soccer team, an all-time record.",
"number": 352,
"found": true,
"type": "trivia"
},
{
"text": "25 is the minimum age of candidates for election to the United States House of Representatives.",
"number": 25,
"found": true,
"type": "trivia"
},
{
"text": "171 is the atomic number of an element called Ununseptunium.",
"number": 171,
"found": true,
"type": "trivia"
},
{
"text": "26 is the number of letters in the English and Interlingua alphabets.",
"number": 26,
"found": true,
"type": "trivia"
},
{
"text": "61000 is the average number of people airborne over the US at any given hour.",
"number": 61000,
"found": true,
"type": "trivia"
},
{
"text": "27 is the current number of Amendments to the United States Constitution (2012 February).",
"number": 27,
"found": true,
"type": "trivia"
},
{
"text": "69 is the atomic number of thulium, a lanthanide.",
"number": 69,
"found": true,
"type": "trivia"
},
{
"text": "98 is the temperature (F) of the normal body.",
"number": 98,
"found": true,
"type": "trivia"
},
{
"text": "16 is the minimum age that one can drop out of school in most states of the US (however, restrictions apply and vary depending on state).",
"number": 16,
"found": true,
"type": "trivia"
},
{
"text": "190 is the length in minutes of the Right Stuff.",
"number": 190,
"found": true,
"type": "trivia"
},
{
"text": "78 is the number of lines that make up Metatron's Cube.",
"number": 78,
"found": true,
"type": "trivia"
},
{
"text": "161 is the the number of theatrical shorts of Tom and Jerry cartoons between 1940 and 1967.",
"number": 161,
"found": true,
"type": "trivia"
},
{
"text": "177 is the atomic number of an element temporarily called Unseptseptium.",
"number": 177,
"found": true,
"type": "trivia"
},
{
"text": "720 is the number of degrees in two circles (= 2 × 360).",
"number": 720,
"found": true,
"type": "trivia"
},
{
"text": "695 is the number of people dead in the single deadliest tornado in United States history (the F5 Tri-State Tornado in 1925).",
"number": 695,
"found": true,
"type": "trivia"
},
{
"text": "198 is the rank of Hey Joe (1966) by Jimi Hendrix on Rolling Stone magazine's list of The 500 Greatest Songs of All Time.",
"number": 198,
"found": true,
"type": "trivia"
},
{
"text": "115 is the atomic number of an element temporarily called ununpentium.",
"number": 115,
"found": true,
"type": "trivia"
},
{
"text": "562 is the number of Native American (including Alaskan) Nations, or \"Tribes,\" recognized by the USA government.",
"number": 562,
"found": true,
"type": "trivia"
},
{
"text": "5880000 is the number of geographic features named by the NIMA GEOnet Names Server.",
"number": 5880000,
"found": true,
"type": "trivia"
},
{
"text": "72 is the average number of heartbeats per minute for a resting adult.",
"number": 72,
"found": true,
"type": "trivia"
},
{
"text": "712 is the largest known number such that it and its 8th power have no common digits.",
"number": 712,
"found": true,
"type": "trivia"
},
{
"text": "64374 is the number of km in length the greatest mountain range extends from (Arctic Ocean to the Atlantic Ocean).",
"number": 64374,
"found": true,
"type": "trivia"
},
{
"text": "47 is the number of El-Aurians Scotty manages to beam up before their ship is destroyed by the energy ribbon.",
"number": 47,
"found": true,
"type": "trivia"
},
{
"text": "189 is the rank of Brazil in population density.",
"number": 189,
"found": true,
"type": "trivia"
},
{
"text": "152 is the number of diapers solder in a Pampers Swaddlers pack.",
"number": 152,
"found": true,
"type": "trivia"
},
{
"text": "184 is the distance in light years to Eta Aquarii,a star in the constellation Aquarius.",
"number": 184,
"found": true,
"type": "trivia"
},
{
"text": "27 is the number of bones in the human hand.",
"number": 27,
"found": true,
"type": "trivia"
},
{
"text": "714 is the number of home runs Babe Ruth scored in his career.",
"number": 714,
"found": true,
"type": "trivia"
},
{
"text": "9 is the number of circles of Hell in Dante's Divine Comedy.",
"number": 9,
"found": true,
"type": "trivia"
},
{
"text": "9220000000000000000 is the largest number which can fit into a signed (two's complement) 64-bit integer on a computer.",
"number": 9220000000000000000,
"found": true,
"type": "trivia"
},
{
"text": "7e+27 is the number of atoms in the average human body.",
"number": "7e+27",
"found": true,
"type": "trivia"
},
{
"text": "755 is the number of home runs Hank Aaron ended his career with in 1976, a Major League record at the time.",
"number": 755,
"found": true,
"type": "trivia"
},
{
"text": "64 is number of golden disks in the myth of the Tower of Hanoi.",
"number": 64,
"found": true,
"type": "trivia"
},
{
"text": "125000 is the number of average strands of hair in the human head.",
"number": 125000,
"found": true,
"type": "trivia"
},
{
"text": "183 is the rank of Laos in countries by population density.",
"number": 183,
"found": true,
"type": "trivia"
},
{
"text": "1728 is braces were first invented by Pierre Fauchard.",
"number": 1728,
"found": true,
"type": "trivia"
},
{
"text": "194 is the rank of Isle of Man in world population.",
"number": 194,
"found": true,
"type": "trivia"
},
{
"text": "5 is times Muslims pray to Allah a day.",
"number": 5,
"found": true,
"type": "trivia"
},
{
"text": "280000000000000 is the number of possible unique physical addresses.",
"number": 280000000000000,
"found": true,
"type": "trivia"
},
{
"text": "149000000 is the number of kilometres from the Earth the sun is.",
"number": 149000000,
"found": true,
"type": "trivia"
},
{
"text": "695 is the number of people dead in the single deadliest tornado in United States history (the F5 Tri-State Tornado in 1925).",
"number": 695,
"found": true,
"type": "trivia"
},
{
"text": "693 is the number of sections in Ludwig Wittgenstein's Philosophical Investigations.",
"number": 693,
"found": true,
"type": "trivia"
},
{
"text": "396 is the displacement in cubic inches of early Chevrolet Big-Block engines.",
"number": 396,
"found": true,
"type": "trivia"
},
{
"text": "67 is the highest two-digit odd number not presently designating any highway in the Interstate Highway System of the United States.",
"number": 67,
"found": true,
"type": "trivia"
},
{
"text": "525998433 is the number of distinct websites as of November 2011.",
"number": 525998433,
"found": true,
"type": "trivia"
},
{
"text": "5300 is the number of gum wrappers that Steve Fletcher has, the record for the largest gum wrapper collection.",
"number": 5300,
"found": true,
"type": "trivia"
},
{
"text": "749 is the pounds of paper products used by an American individual annually on average.",
"number": 749,
"found": true,
"type": "trivia"
},
{
"text": "17000 is the length in km of bicycle lanes with special bicycle traffic lights in the Netherlands.",
"number": 17000,
"found": true,
"type": "trivia"
},
{
"text": "76 is the atomic number of osmium.",
"number": 76,
"found": true,
"type": "trivia"
},
{
"text": "30000 is the number of distinct Chinese characters.",
"number": 30000,
"found": true,
"type": "trivia"
},
{
"text": "1700 is the weight in pounds that the Kodiak bear can grow up to, a native of Alaska and one of the largest bears.",
"number": 1700,
"found": true,
"type": "trivia"
},
{
"text": "555 is the number of keyboard sonatas written by Domenico Scarlatti, according to the catalog by Ralph Kirkpatrick.",
"number": 555,
"found": true,
"type": "trivia"
},
{
"text": "432 is three-dozen sets of a dozen, making it three gross.",
"number": 432,
"found": true,
"type": "trivia"
},
{
"text": "71 is the number of different characters that can be used with a standard English Keyboard, excluding uppercase letters.",
"number": 71,
"found": true,
"type": "trivia"
},
{
"text": "152 is the number of diapers solder in a Pampers Swaddlers pack.",
"number": 152,
"found": true,
"type": "trivia"
},
{
"text": "361 is the number of positions on a standard 19 x 19 Go board.",
"number": 361,
"found": true,
"type": "trivia"
},
{
"text": "276 is the highest number of rounds in boxing history, in a bare-knuckle fight in 1825 that saw Jack Jones beat Patsy Tunney after 4hr 30min.",
"number": 276,
"found": true,
"type": "trivia"
},
{
"text": "52 is the number of letters in the English alphabet, if majuscules are distinguished from minuscules.",
"number": 52,
"found": true,
"type": "trivia"
},
{
"text": "99 is a common price ending in psychological pricing.",
"number": 99,
"found": true,
"type": "trivia"
},
{
"text": "68 is the ideal temperature (F) for developing black-and-white film.",
"number": 68,
"found": true,
"type": "trivia"
},
{
"text": "1e+36 is the ratio of the electromagnetic to the gravitational forces between two protons.",
"number": 1e+36,
"found": true,
"type": "trivia"
},
{
"text": "126 is the number of years that Gilgamesh reigned according to the Sumerian king list.",
"number": 126,
"found": true,
"type": "trivia"
},
{
"text": "201 is the HTTP status code indicating a new resource was successfully created in response to the request.",
"number": 201,
"found": true,
"type": "trivia"
},
{
"text": "400000000000 is the number of stars in the Milky Way galaxy.",
"number": 400000000000,
"found": true,
"type": "trivia"
},
{
"text": "240 is distinct solutions of the Soma cube puzzle.",
"number": 240,
"found": true,
"type": "trivia"
},
{
"text": "Infinity is the largest value that can be represented in the IEEE double precision floating-point format.",
"number": null,
"found": true,
"type": "trivia"
},
{
"text": "2147483647 is the largest number which can fit into a signed (two's complement) 32-bit integer on a computer.",
"number": 2147483647,
"found": true,
"type": "trivia"
},
{
"text": "1000 is the number of words a picture is worth.",
"number": 1000,
"found": true,
"type": "trivia"
},
{
"text": "207 is the area code for the US state of Maine.",
"number": 207,
"found": true,
"type": "trivia"
},
{
"text": "81 is the number of prayers said in the Rosary in each night.",
"number": 81,
"found": true,
"type": "trivia"
},
{
"text": "58000000 is the number of customers McDonald restaurants serve food and drink to on a daily basis in 2011.",
"number": 58000000,
"found": true,
"type": "trivia"
},
{
"text": "13 is the number of Oscar nominations of actress Meryl Streep, who holds the record for the most Oscar nominated actress.",
"number": 13,
"found": true,
"type": "trivia"
},
{
"text": "172 is the atomic number of an element temporarily called Unseptbium.",
"number": 172,
"found": true,
"type": "trivia"
},
{
"text": "154 is the period in days that the sun follows on gamma-ray flares.",
"number": 154,
"found": true,
"type": "trivia"
},
{
"text": "61000 is the average number of people airborne over the US at any given hour.",
"number": 61000,
"found": true,
"type": "trivia"
},
{
"text": "230 is the common voltage in the European Union.",
"number": 230,
"found": true,
"type": "trivia"
},
{
"text": "614 is the number of Commandments, according to Rabbi Fackenheimin, that should be in Judaism, vs. the traditional 613.",
"number": 614,
"found": true,
"type": "trivia"
},
{
"text": "432 is three-dozen sets of a dozen, making it three gross.",
"number": 432,
"found": true,
"type": "trivia"
},
{
"text": "9 is the number of circles of Hell in Dante's Divine Comedy.",
"number": 9,
"found": true,
"type": "trivia"
},
{
"text": "714 is the number of home runs Babe Ruth scored in his career.",
"number": 714,
"found": true,
"type": "trivia"
},
{
"text": "179 is the rank of Estonia in world population density.",
"number": 179,
"found": true,
"type": "trivia"
},
{
"text": "240 is distinct solutions of the Soma cube puzzle.",
"number": 240,
"found": true,
"type": "trivia"
},
{
"text": "1e+120 is the Shannon number, an estimation of the game-tree complexity of chess.",
"number": 1e+120,
"found": true,
"type": "trivia"
},
{
"text": "1e+150 is the estimation of the game-tree complexity of xiangqi.",
"number": 1e+150,
"found": true,
"type": "trivia"
},
{
"text": "58 is the minimum wind speed (mph) needed to issue a Severe Thunderstorm Warning.",
"number": 58,
"found": true,
"type": "trivia"
},
{
"text": "16 is the number of personality types in the Myers-Briggs classification system.",
"number": 16,
"found": true,
"type": "trivia"
},
{
"text": "4200000 is the number of couples in the United States that live together but are not married.",
"number": 4200000,
"found": true,
"type": "trivia"
},
{
"text": "390 is the speed in feet per second that nerve impulses for muscle position travel at.",
"number": 390,
"found": true,
"type": "trivia"
},
{
"text": "2 is the lowest channel of television in the United States, Canada, Argentina and Mexico on which television signals are broadcast.",
"number": 2,
"found": true,
"type": "trivia"
},
{
"text": "16777216 is the number of different colors that can be generated using the hex code system in HTML.",
"number": 16777216,
"found": true,
"type": "trivia"
},
{
"text": "133 is the number of career touchdowns from 1983 - 1996 of Canadian Football League quarterback Danny Barrett.",
"number": 133,
"found": true,
"type": "trivia"
},
{
"text": "280000000000000 is the number of possible unique physical addresses.",
"number": 280000000000000,
"found": true,
"type": "trivia"
},
{
"text": "192 is the distance in feet the Hampstead London Underground station is below ground level.",
"number": 192,
"found": true,
"type": "trivia"
},
{
"text": "186 is the length of the Judgment at Nuremberg measured in 186 minutes.",
"number": 186,
"found": true,
"type": "trivia"
},
{
"text": "172 is the atomic number of an element temporarily called Unseptbium.",
"number": 172,
"found": true,
"type": "trivia"
},
{
"text": "2055001 is the number of people employed by Wal-mart in 2007.",
"number": 2055001,
"found": true,
"type": "trivia"
},
{
"text": "1982 is the average price for a major league baseball game ticket in 2004 in cents.",
"number": 1982,
"found": true,
"type": "trivia"
},
{
"text": "64374 is the number of km in length the greatest mountain range extends from (Arctic Ocean to the Atlantic Ocean).",
"number": 64374,
"found": true,
"type": "trivia"
},
{
"text": "5e+30 is the number of bacterial cells on Earth.",
"number": "5e+30",
"found": true,
"type": "trivia"
},
{
"text": "270 is the average number of days in human pregnancy.",
"number": 270,
"found": true,
"type": "trivia"
},
{
"text": "171 is the record number of goals scored by France at the 1998 World Cup.",
"number": 171,
"found": true,
"type": "trivia"
},
{
"text": "153 is the frequency in kHz of of the longwave transmitters Donebach, Ingøy, Braşov, and Kenadsa.",
"number": 153,
"found": true,
"type": "trivia"
},
{
"text": "96 is the rating of Skyrim on metacritic.com.",
"number": 96,